@lexical/markdown 0.14.3 → 0.14.5
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/LexicalMarkdown.dev.js +7 -1
- package/LexicalMarkdown.dev.mjs +7 -1
- package/index.d.ts +0 -1
- package/package.json +12 -8
package/LexicalMarkdown.dev.js
CHANGED
|
@@ -989,7 +989,13 @@ const LINK = {
|
|
|
989
989
|
type: 'text-match'
|
|
990
990
|
};
|
|
991
991
|
|
|
992
|
-
/**
|
|
992
|
+
/**
|
|
993
|
+
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
994
|
+
*
|
|
995
|
+
* This source code is licensed under the MIT license found in the
|
|
996
|
+
* LICENSE file in the root directory of this source tree.
|
|
997
|
+
*
|
|
998
|
+
*/
|
|
993
999
|
const ELEMENT_TRANSFORMERS = [HEADING, QUOTE, CODE, UNORDERED_LIST, ORDERED_LIST];
|
|
994
1000
|
|
|
995
1001
|
// Order of text format transformers matters:
|
package/LexicalMarkdown.dev.mjs
CHANGED
|
@@ -987,7 +987,13 @@ const LINK = {
|
|
|
987
987
|
type: 'text-match'
|
|
988
988
|
};
|
|
989
989
|
|
|
990
|
-
/**
|
|
990
|
+
/**
|
|
991
|
+
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
992
|
+
*
|
|
993
|
+
* This source code is licensed under the MIT license found in the
|
|
994
|
+
* LICENSE file in the root directory of this source tree.
|
|
995
|
+
*
|
|
996
|
+
*/
|
|
991
997
|
const ELEMENT_TRANSFORMERS = [HEADING, QUOTE, CODE, UNORDERED_LIST, ORDERED_LIST];
|
|
992
998
|
|
|
993
999
|
// Order of text format transformers matters:
|
package/index.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -8,17 +8,17 @@
|
|
|
8
8
|
"markdown"
|
|
9
9
|
],
|
|
10
10
|
"license": "MIT",
|
|
11
|
-
"version": "0.14.
|
|
11
|
+
"version": "0.14.5",
|
|
12
12
|
"main": "LexicalMarkdown.js",
|
|
13
13
|
"types": "index.d.ts",
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"@lexical/code": "0.14.
|
|
16
|
-
"@lexical/link": "0.14.
|
|
17
|
-
"@lexical/list": "0.14.
|
|
18
|
-
"@lexical/rich-text": "0.14.
|
|
19
|
-
"@lexical/text": "0.14.
|
|
20
|
-
"@lexical/utils": "0.14.
|
|
21
|
-
"lexical": "0.14.
|
|
15
|
+
"@lexical/code": "0.14.5",
|
|
16
|
+
"@lexical/link": "0.14.5",
|
|
17
|
+
"@lexical/list": "0.14.5",
|
|
18
|
+
"@lexical/rich-text": "0.14.5",
|
|
19
|
+
"@lexical/text": "0.14.5",
|
|
20
|
+
"@lexical/utils": "0.14.5",
|
|
21
|
+
"lexical": "0.14.5"
|
|
22
22
|
},
|
|
23
23
|
"repository": {
|
|
24
24
|
"type": "git",
|
|
@@ -31,11 +31,15 @@
|
|
|
31
31
|
".": {
|
|
32
32
|
"import": {
|
|
33
33
|
"types": "./index.d.ts",
|
|
34
|
+
"development": "./LexicalMarkdown.dev.mjs",
|
|
35
|
+
"production": "./LexicalMarkdown.prod.mjs",
|
|
34
36
|
"node": "./LexicalMarkdown.node.mjs",
|
|
35
37
|
"default": "./LexicalMarkdown.mjs"
|
|
36
38
|
},
|
|
37
39
|
"require": {
|
|
38
40
|
"types": "./index.d.ts",
|
|
41
|
+
"development": "./LexicalMarkdown.dev.js",
|
|
42
|
+
"production": "./LexicalMarkdown.prod.js",
|
|
39
43
|
"default": "./LexicalMarkdown.js"
|
|
40
44
|
}
|
|
41
45
|
}
|