@lexical/react 0.3.10 → 0.4.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.
- package/DEPRECATED_useLexical.dev.js +2 -2
- package/DEPRECATED_useLexical.prod.js +2 -2
- package/DEPRECATED_useLexicalCanShowPlaceholder.dev.js +2 -2
- package/DEPRECATED_useLexicalCanShowPlaceholder.prod.js +2 -2
- package/DEPRECATED_useLexicalEditor.dev.js +2 -2
- package/DEPRECATED_useLexicalEditor.prod.js +2 -2
- package/LexicalAutoEmbedPlugin.d.ts +1 -1
- package/LexicalAutoEmbedPlugin.dev.js +3 -337
- package/LexicalAutoEmbedPlugin.js.flow +72 -0
- package/LexicalAutoEmbedPlugin.prod.js +5 -15
- package/LexicalCheckListPlugin.dev.js +2 -2
- package/LexicalCheckListPlugin.prod.js +2 -2
- package/LexicalCollaborationPlugin.dev.js +2 -1
- package/LexicalCollaborationPlugin.js.flow +1 -16
- package/LexicalComposer.d.ts +1 -1
- package/LexicalComposer.dev.js +3 -3
- package/LexicalComposer.prod.js +3 -3
- package/LexicalContentEditable.dev.js +11 -11
- package/LexicalContentEditable.prod.js +2 -2
- package/LexicalHorizontalRuleNode.dev.js +47 -3
- package/LexicalHorizontalRuleNode.prod.js +5 -3
- package/LexicalMarkdownShortcutPlugin.d.ts +1 -0
- package/LexicalMarkdownShortcutPlugin.dev.js +2 -0
- package/LexicalMarkdownShortcutPlugin.js.flow +2 -0
- package/LexicalMarkdownShortcutPlugin.prod.js +2 -2
- package/LexicalOnChangePlugin.dev.js +1 -1
- package/LexicalOnChangePlugin.js.flow +1 -1
- package/LexicalPlainTextPlugin.dev.js +2 -2
- package/LexicalPlainTextPlugin.prod.js +2 -2
- package/LexicalRichTextPlugin.dev.js +2 -2
- package/LexicalRichTextPlugin.prod.js +2 -2
- package/LexicalTypeaheadMenuPlugin.d.ts +3 -3
- package/LexicalTypeaheadMenuPlugin.dev.js +12 -13
- package/LexicalTypeaheadMenuPlugin.js.flow +99 -0
- package/LexicalTypeaheadMenuPlugin.prod.js +14 -14
- package/package.json +19 -19
package/package.json
CHANGED
|
@@ -8,28 +8,28 @@
|
|
|
8
8
|
"rich-text"
|
|
9
9
|
],
|
|
10
10
|
"license": "MIT",
|
|
11
|
-
"version": "0.
|
|
11
|
+
"version": "0.4.1",
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@lexical/clipboard": "0.
|
|
14
|
-
"@lexical/code": "0.
|
|
15
|
-
"@lexical/dragon": "0.
|
|
16
|
-
"@lexical/hashtag": "0.
|
|
17
|
-
"@lexical/history": "0.
|
|
18
|
-
"@lexical/link": "0.
|
|
19
|
-
"@lexical/list": "0.
|
|
20
|
-
"@lexical/mark": "0.
|
|
21
|
-
"@lexical/markdown": "0.
|
|
22
|
-
"@lexical/overflow": "0.
|
|
23
|
-
"@lexical/plain-text": "0.
|
|
24
|
-
"@lexical/rich-text": "0.
|
|
25
|
-
"@lexical/selection": "0.
|
|
26
|
-
"@lexical/table": "0.
|
|
27
|
-
"@lexical/text": "0.
|
|
28
|
-
"@lexical/utils": "0.
|
|
29
|
-
"@lexical/yjs": "0.
|
|
13
|
+
"@lexical/clipboard": "0.4.1",
|
|
14
|
+
"@lexical/code": "0.4.1",
|
|
15
|
+
"@lexical/dragon": "0.4.1",
|
|
16
|
+
"@lexical/hashtag": "0.4.1",
|
|
17
|
+
"@lexical/history": "0.4.1",
|
|
18
|
+
"@lexical/link": "0.4.1",
|
|
19
|
+
"@lexical/list": "0.4.1",
|
|
20
|
+
"@lexical/mark": "0.4.1",
|
|
21
|
+
"@lexical/markdown": "0.4.1",
|
|
22
|
+
"@lexical/overflow": "0.4.1",
|
|
23
|
+
"@lexical/plain-text": "0.4.1",
|
|
24
|
+
"@lexical/rich-text": "0.4.1",
|
|
25
|
+
"@lexical/selection": "0.4.1",
|
|
26
|
+
"@lexical/table": "0.4.1",
|
|
27
|
+
"@lexical/text": "0.4.1",
|
|
28
|
+
"@lexical/utils": "0.4.1",
|
|
29
|
+
"@lexical/yjs": "0.4.1"
|
|
30
30
|
},
|
|
31
31
|
"peerDependencies": {
|
|
32
|
-
"lexical": "0.
|
|
32
|
+
"lexical": "0.4.1",
|
|
33
33
|
"react": ">=17.x",
|
|
34
34
|
"react-dom": ">=17.x"
|
|
35
35
|
},
|