@lexical/mark 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/LexicalMark.dev.js +7 -1
- package/LexicalMark.dev.mjs +7 -1
- package/index.d.ts +0 -1
- package/package.json +7 -3
package/LexicalMark.dev.js
CHANGED
|
@@ -153,7 +153,13 @@ function $isMarkNode(node) {
|
|
|
153
153
|
return node instanceof MarkNode;
|
|
154
154
|
}
|
|
155
155
|
|
|
156
|
-
/**
|
|
156
|
+
/**
|
|
157
|
+
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
158
|
+
*
|
|
159
|
+
* This source code is licensed under the MIT license found in the
|
|
160
|
+
* LICENSE file in the root directory of this source tree.
|
|
161
|
+
*
|
|
162
|
+
*/
|
|
157
163
|
function $unwrapMarkNode(node) {
|
|
158
164
|
const children = node.getChildren();
|
|
159
165
|
let target = null;
|
package/LexicalMark.dev.mjs
CHANGED
|
@@ -151,7 +151,13 @@ function $isMarkNode(node) {
|
|
|
151
151
|
return node instanceof MarkNode;
|
|
152
152
|
}
|
|
153
153
|
|
|
154
|
-
/**
|
|
154
|
+
/**
|
|
155
|
+
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
156
|
+
*
|
|
157
|
+
* This source code is licensed under the MIT license found in the
|
|
158
|
+
* LICENSE file in the root directory of this source tree.
|
|
159
|
+
*
|
|
160
|
+
*/
|
|
155
161
|
function $unwrapMarkNode(node) {
|
|
156
162
|
const children = node.getChildren();
|
|
157
163
|
let target = null;
|
package/index.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -8,12 +8,12 @@
|
|
|
8
8
|
"mark"
|
|
9
9
|
],
|
|
10
10
|
"license": "MIT",
|
|
11
|
-
"version": "0.14.
|
|
11
|
+
"version": "0.14.5",
|
|
12
12
|
"main": "LexicalMark.js",
|
|
13
13
|
"types": "index.d.ts",
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"@lexical/utils": "0.14.
|
|
16
|
-
"lexical": "0.14.
|
|
15
|
+
"@lexical/utils": "0.14.5",
|
|
16
|
+
"lexical": "0.14.5"
|
|
17
17
|
},
|
|
18
18
|
"repository": {
|
|
19
19
|
"type": "git",
|
|
@@ -26,11 +26,15 @@
|
|
|
26
26
|
".": {
|
|
27
27
|
"import": {
|
|
28
28
|
"types": "./index.d.ts",
|
|
29
|
+
"development": "./LexicalMark.dev.mjs",
|
|
30
|
+
"production": "./LexicalMark.prod.mjs",
|
|
29
31
|
"node": "./LexicalMark.node.mjs",
|
|
30
32
|
"default": "./LexicalMark.mjs"
|
|
31
33
|
},
|
|
32
34
|
"require": {
|
|
33
35
|
"types": "./index.d.ts",
|
|
36
|
+
"development": "./LexicalMark.dev.js",
|
|
37
|
+
"production": "./LexicalMark.prod.js",
|
|
34
38
|
"default": "./LexicalMark.js"
|
|
35
39
|
}
|
|
36
40
|
}
|