@lexical/headless 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/LexicalHeadless.dev.js +7 -1
- package/LexicalHeadless.dev.mjs +7 -1
- package/index.d.ts +0 -1
- package/package.json +6 -2
package/LexicalHeadless.dev.js
CHANGED
|
@@ -8,7 +8,13 @@
|
|
|
8
8
|
|
|
9
9
|
var lexical = require('lexical');
|
|
10
10
|
|
|
11
|
-
/**
|
|
11
|
+
/**
|
|
12
|
+
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
13
|
+
*
|
|
14
|
+
* This source code is licensed under the MIT license found in the
|
|
15
|
+
* LICENSE file in the root directory of this source tree.
|
|
16
|
+
*
|
|
17
|
+
*/
|
|
12
18
|
|
|
13
19
|
/**
|
|
14
20
|
* Generates a headless editor that allows lexical to be used without the need for a DOM, eg in Node.js.
|
package/LexicalHeadless.dev.mjs
CHANGED
|
@@ -6,7 +6,13 @@
|
|
|
6
6
|
*/
|
|
7
7
|
import { createEditor } from 'lexical';
|
|
8
8
|
|
|
9
|
-
/**
|
|
9
|
+
/**
|
|
10
|
+
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
11
|
+
*
|
|
12
|
+
* This source code is licensed under the MIT license found in the
|
|
13
|
+
* LICENSE file in the root directory of this source tree.
|
|
14
|
+
*
|
|
15
|
+
*/
|
|
10
16
|
|
|
11
17
|
/**
|
|
12
18
|
* Generates a headless editor that allows lexical to be used without the need for a DOM, eg in Node.js.
|
package/index.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"headless"
|
|
9
9
|
],
|
|
10
10
|
"license": "MIT",
|
|
11
|
-
"version": "0.14.
|
|
11
|
+
"version": "0.14.5",
|
|
12
12
|
"main": "LexicalHeadless.js",
|
|
13
13
|
"types": "index.d.ts",
|
|
14
14
|
"repository": {
|
|
@@ -22,16 +22,20 @@
|
|
|
22
22
|
".": {
|
|
23
23
|
"import": {
|
|
24
24
|
"types": "./index.d.ts",
|
|
25
|
+
"development": "./LexicalHeadless.dev.mjs",
|
|
26
|
+
"production": "./LexicalHeadless.prod.mjs",
|
|
25
27
|
"node": "./LexicalHeadless.node.mjs",
|
|
26
28
|
"default": "./LexicalHeadless.mjs"
|
|
27
29
|
},
|
|
28
30
|
"require": {
|
|
29
31
|
"types": "./index.d.ts",
|
|
32
|
+
"development": "./LexicalHeadless.dev.js",
|
|
33
|
+
"production": "./LexicalHeadless.prod.js",
|
|
30
34
|
"default": "./LexicalHeadless.js"
|
|
31
35
|
}
|
|
32
36
|
}
|
|
33
37
|
},
|
|
34
38
|
"dependencies": {
|
|
35
|
-
"lexical": "0.14.
|
|
39
|
+
"lexical": "0.14.5"
|
|
36
40
|
}
|
|
37
41
|
}
|