@lexical/react 0.5.1-next.0 → 0.5.1-next.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +3 -3
  2. package/package.json +19 -19
package/README.md CHANGED
@@ -73,11 +73,11 @@ function Editor() {
73
73
 
74
74
  return (
75
75
  <LexicalComposer initialConfig={initialConfig}>
76
- <LexicalPlainTextPlugin
77
- contentEditable={<LexicalContentEditable />}
76
+ <PlainTextPlugin
77
+ contentEditable={<ContentEditable />}
78
78
  placeholder={<div>Enter some text...</div>}
79
79
  />
80
- <LexicalOnChangePlugin onChange={onChange} />
80
+ <OnChangePlugin onChange={onChange} />
81
81
  <HistoryPlugin />
82
82
  <MyCustomAutoFocusPlugin />
83
83
  </LexicalComposer>
package/package.json CHANGED
@@ -8,28 +8,28 @@
8
8
  "rich-text"
9
9
  ],
10
10
  "license": "MIT",
11
- "version": "0.5.1-next.0",
11
+ "version": "0.5.1-next.1",
12
12
  "dependencies": {
13
- "@lexical/clipboard": "0.5.1-next.0",
14
- "@lexical/code": "0.5.1-next.0",
15
- "@lexical/dragon": "0.5.1-next.0",
16
- "@lexical/hashtag": "0.5.1-next.0",
17
- "@lexical/history": "0.5.1-next.0",
18
- "@lexical/link": "0.5.1-next.0",
19
- "@lexical/list": "0.5.1-next.0",
20
- "@lexical/mark": "0.5.1-next.0",
21
- "@lexical/markdown": "0.5.1-next.0",
22
- "@lexical/overflow": "0.5.1-next.0",
23
- "@lexical/plain-text": "0.5.1-next.0",
24
- "@lexical/rich-text": "0.5.1-next.0",
25
- "@lexical/selection": "0.5.1-next.0",
26
- "@lexical/table": "0.5.1-next.0",
27
- "@lexical/text": "0.5.1-next.0",
28
- "@lexical/utils": "0.5.1-next.0",
29
- "@lexical/yjs": "0.5.1-next.0"
13
+ "@lexical/clipboard": "0.5.1-next.1",
14
+ "@lexical/code": "0.5.1-next.1",
15
+ "@lexical/dragon": "0.5.1-next.1",
16
+ "@lexical/hashtag": "0.5.1-next.1",
17
+ "@lexical/history": "0.5.1-next.1",
18
+ "@lexical/link": "0.5.1-next.1",
19
+ "@lexical/list": "0.5.1-next.1",
20
+ "@lexical/mark": "0.5.1-next.1",
21
+ "@lexical/markdown": "0.5.1-next.1",
22
+ "@lexical/overflow": "0.5.1-next.1",
23
+ "@lexical/plain-text": "0.5.1-next.1",
24
+ "@lexical/rich-text": "0.5.1-next.1",
25
+ "@lexical/selection": "0.5.1-next.1",
26
+ "@lexical/table": "0.5.1-next.1",
27
+ "@lexical/text": "0.5.1-next.1",
28
+ "@lexical/utils": "0.5.1-next.1",
29
+ "@lexical/yjs": "0.5.1-next.1"
30
30
  },
31
31
  "peerDependencies": {
32
- "lexical": "0.5.1-next.0",
32
+ "lexical": "0.5.1-next.1",
33
33
  "react": ">=17.x",
34
34
  "react-dom": ">=17.x"
35
35
  },