@lexical/overflow 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.
@@ -8,7 +8,13 @@
8
8
 
9
9
  var lexical = require('lexical');
10
10
 
11
- /** @module @lexical/overflow */
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
  /** @noInheritDoc */
13
19
  class OverflowNode extends lexical.ElementNode {
14
20
  static getType() {
@@ -6,7 +6,13 @@
6
6
  */
7
7
  import { ElementNode, $applyNodeReplacement } from 'lexical';
8
8
 
9
- /** @module @lexical/overflow */
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
  /** @noInheritDoc */
11
17
  class OverflowNode extends ElementNode {
12
18
  static getType() {
package/index.d.ts CHANGED
@@ -1,4 +1,3 @@
1
- /** @module @lexical/overflow */
2
1
  /**
3
2
  * Copyright (c) Meta Platforms, Inc. and affiliates.
4
3
  *
package/package.json CHANGED
@@ -8,7 +8,7 @@
8
8
  "overflow"
9
9
  ],
10
10
  "license": "MIT",
11
- "version": "0.14.3",
11
+ "version": "0.14.4",
12
12
  "main": "LexicalOverflow.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": "./LexicalOverflow.dev.mjs",
26
+ "production": "./LexicalOverflow.prod.mjs",
25
27
  "node": "./LexicalOverflow.node.mjs",
26
28
  "default": "./LexicalOverflow.mjs"
27
29
  },
28
30
  "require": {
29
31
  "types": "./index.d.ts",
32
+ "development": "./LexicalOverflow.dev.js",
33
+ "production": "./LexicalOverflow.prod.js",
30
34
  "default": "./LexicalOverflow.js"
31
35
  }
32
36
  }
33
37
  },
34
38
  "dependencies": {
35
- "lexical": "0.14.3"
39
+ "lexical": "0.14.4"
36
40
  }
37
41
  }