Description
Lexical version: 0.3.5, react.
With recent updates from 0.3.3 to 0.3.5 I now get this warning in the console:
initialEditorState on RichTextPlugin is deprecated and will be removed soon. Use LexicalComposer initialEditorState instead
So I went to github and the documentation website, searching for information on initialEditorState.
But found nothing.
So I thought: Well, let's just try doing what the warning says.
I moved
initialEditorState={value ? JSON.stringify(value) : undefined}
from RichTextPlugin
to LexicalComposer
.
Now the warning disappears, as expected. But initial state is not set. Which is unexpected.
The value I am passing in was created with state.current?.toJSON()
from state updated with the newState
returned by the onChange of the OnChangePlugin
. This works fine in the RichTextPlugin
.
Please help me find the documentation, so I can try to solve this. Or could it be a bug?
The only thing I found was the pull-request. From what I can tell in the code, simply moving the initialEditorState declaration should work.