@lexical/overflow 0.50.1-nightly.20260916.0 → 0.51.0

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +12 -1
  2. package/package.json +2 -2
package/dist/index.d.ts CHANGED
@@ -10,7 +10,18 @@ export type SerializedOverflowNode = SerializedElementNode;
10
10
  /** @noInheritDoc */
11
11
  export declare class OverflowNode extends ElementNode {
12
12
  /** @internal */
13
- $config(): import("lexical").BaseStaticNodeConfig & {
13
+ $config(): import("lexical").BaseStaticNodeConfig & import("lexical").StaticNodeConfigAccessor<{
14
+ readonly $transform: (node: ElementNode) => void;
15
+ readonly extends: typeof LexicalNode;
16
+ readonly generated: import("lexical").GeneratedJSONFactory;
17
+ readonly json: import("lexical").NodeSerializationSchema<ElementNode, {
18
+ readonly direction?: "ltr" | "rtl" | null | undefined;
19
+ readonly format?: "" | "left" | "start" | "center" | "right" | "end" | "justify" | undefined;
20
+ readonly indent?: string | number | undefined;
21
+ readonly textFormat?: string | number | undefined;
22
+ readonly textStyle?: string | undefined;
23
+ }>;
24
+ }> & {
14
25
  readonly overflow?: {
15
26
  readonly $transform: (node: OverflowNode) => void;
16
27
  readonly extends: typeof ElementNode;
package/package.json CHANGED
@@ -8,7 +8,7 @@
8
8
  "overflow"
9
9
  ],
10
10
  "license": "MIT",
11
- "version": "0.50.1-nightly.20260916.0",
11
+ "version": "0.51.0",
12
12
  "main": "./dist/LexicalOverflow.js",
13
13
  "types": "./dist/typescript-too-old.d.ts",
14
14
  "repository": {
@@ -29,7 +29,7 @@
29
29
  }
30
30
  },
31
31
  "dependencies": {
32
- "lexical": "0.50.1-nightly.20260916.0"
32
+ "lexical": "0.51.0"
33
33
  },
34
34
  "files": [
35
35
  "dist",