@lexical/yjs 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.
package/LexicalYjs.dev.js CHANGED
@@ -1558,7 +1558,13 @@ function syncLexicalUpdateToYjs(binding, provider, prevEditorState, currEditorSt
1558
1558
  });
1559
1559
  }
1560
1560
 
1561
- /** @module @lexical/yjs */
1561
+ /**
1562
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
1563
+ *
1564
+ * This source code is licensed under the MIT license found in the
1565
+ * LICENSE file in the root directory of this source tree.
1566
+ *
1567
+ */
1562
1568
  const CONNECTED_COMMAND = lexical.createCommand('CONNECTED_COMMAND');
1563
1569
  const TOGGLE_CONNECT_COMMAND = lexical.createCommand('TOGGLE_CONNECT_COMMAND');
1564
1570
  function createUndoManager(binding, root) {
@@ -1556,7 +1556,13 @@ function syncLexicalUpdateToYjs(binding, provider, prevEditorState, currEditorSt
1556
1556
  });
1557
1557
  }
1558
1558
 
1559
- /** @module @lexical/yjs */
1559
+ /**
1560
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
1561
+ *
1562
+ * This source code is licensed under the MIT license found in the
1563
+ * LICENSE file in the root directory of this source tree.
1564
+ *
1565
+ */
1560
1566
  const CONNECTED_COMMAND = createCommand('CONNECTED_COMMAND');
1561
1567
  const TOGGLE_CONNECT_COMMAND = createCommand('TOGGLE_CONNECT_COMMAND');
1562
1568
  function createUndoManager(binding, root) {
package/index.d.ts CHANGED
@@ -1,4 +1,3 @@
1
- /** @module @lexical/yjs */
2
1
  /**
3
2
  * Copyright (c) Meta Platforms, Inc. and affiliates.
4
3
  *
package/package.json CHANGED
@@ -11,12 +11,12 @@
11
11
  "crdt"
12
12
  ],
13
13
  "license": "MIT",
14
- "version": "0.14.3",
14
+ "version": "0.14.4",
15
15
  "main": "LexicalYjs.js",
16
16
  "types": "index.d.ts",
17
17
  "dependencies": {
18
- "@lexical/offset": "0.14.3",
19
- "lexical": "0.14.3"
18
+ "@lexical/offset": "0.14.4",
19
+ "lexical": "0.14.4"
20
20
  },
21
21
  "peerDependencies": {
22
22
  "yjs": ">=13.5.22"
@@ -32,11 +32,15 @@
32
32
  ".": {
33
33
  "import": {
34
34
  "types": "./index.d.ts",
35
+ "development": "./LexicalYjs.dev.mjs",
36
+ "production": "./LexicalYjs.prod.mjs",
35
37
  "node": "./LexicalYjs.node.mjs",
36
38
  "default": "./LexicalYjs.mjs"
37
39
  },
38
40
  "require": {
39
41
  "types": "./index.d.ts",
42
+ "development": "./LexicalYjs.dev.js",
43
+ "production": "./LexicalYjs.prod.js",
40
44
  "default": "./LexicalYjs.js"
41
45
  }
42
46
  }