@lexical/markdown 0.14.3 → 0.14.4

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.
@@ -989,7 +989,13 @@ const LINK = {
989
989
  type: 'text-match'
990
990
  };
991
991
 
992
- /** @module @lexical/markdown */
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:
@@ -987,7 +987,13 @@ const LINK = {
987
987
  type: 'text-match'
988
988
  };
989
989
 
990
- /** @module @lexical/markdown */
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
@@ -1,4 +1,3 @@
1
- /** @module @lexical/markdown */
2
1
  /**
3
2
  * Copyright (c) Meta Platforms, Inc. and affiliates.
4
3
  *
package/package.json CHANGED
@@ -8,17 +8,17 @@
8
8
  "markdown"
9
9
  ],
10
10
  "license": "MIT",
11
- "version": "0.14.3",
11
+ "version": "0.14.4",
12
12
  "main": "LexicalMarkdown.js",
13
13
  "types": "index.d.ts",
14
14
  "dependencies": {
15
- "@lexical/code": "0.14.3",
16
- "@lexical/link": "0.14.3",
17
- "@lexical/list": "0.14.3",
18
- "@lexical/rich-text": "0.14.3",
19
- "@lexical/text": "0.14.3",
20
- "@lexical/utils": "0.14.3",
21
- "lexical": "0.14.3"
15
+ "@lexical/code": "0.14.4",
16
+ "@lexical/link": "0.14.4",
17
+ "@lexical/list": "0.14.4",
18
+ "@lexical/rich-text": "0.14.4",
19
+ "@lexical/text": "0.14.4",
20
+ "@lexical/utils": "0.14.4",
21
+ "lexical": "0.14.4"
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
  }