@lexical/overflow 0.3.10 → 0.4.1
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/LexicalOverflow.dev.js +3 -7
- package/index.d.ts +2 -0
- package/package.json +2 -2
package/LexicalOverflow.dev.js
CHANGED
|
@@ -8,13 +8,9 @@
|
|
|
8
8
|
|
|
9
9
|
var lexical = require('lexical');
|
|
10
10
|
|
|
11
|
-
/**
|
|
12
|
-
|
|
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
|
-
*/
|
|
11
|
+
/** @module @lexical/overflow */
|
|
12
|
+
|
|
13
|
+
/** @noInheritDoc */
|
|
18
14
|
class OverflowNode extends lexical.ElementNode {
|
|
19
15
|
static getType() {
|
|
20
16
|
return 'overflow';
|
package/index.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/** @module @lexical/overflow */
|
|
1
2
|
/**
|
|
2
3
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
3
4
|
*
|
|
@@ -11,6 +12,7 @@ export declare type SerializedOverflowNode = Spread<{
|
|
|
11
12
|
type: 'overflow';
|
|
12
13
|
version: 1;
|
|
13
14
|
}, SerializedElementNode>;
|
|
15
|
+
/** @noInheritDoc */
|
|
14
16
|
export declare class OverflowNode extends ElementNode {
|
|
15
17
|
static getType(): string;
|
|
16
18
|
static clone(node: OverflowNode): OverflowNode;
|
package/package.json
CHANGED