@webiny/lexical-converter 5.40.6-beta.3 → 5.41.0-beta.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.
@@ -2,7 +2,7 @@ import { CreateEditorArgs, SerializedEditorState, LexicalNode } from "lexical";
2
2
  interface LexicalStateTransformerConfig {
3
3
  editorConfig?: Pick<CreateEditorArgs, "nodes" | "theme">;
4
4
  }
5
- export declare type FlatStateWithHTML = Array<{
5
+ export type FlatStateWithHTML = Array<{
6
6
  node: LexicalNode;
7
7
  html: string;
8
8
  }>;
package/package.json CHANGED
@@ -1,16 +1,16 @@
1
1
  {
2
2
  "name": "@webiny/lexical-converter",
3
- "version": "5.40.6-beta.3",
3
+ "version": "5.41.0-beta.0",
4
4
  "dependencies": {
5
5
  "@lexical/headless": "0.16.1",
6
6
  "@lexical/html": "0.16.1",
7
- "@webiny/lexical-nodes": "5.40.6-beta.3",
7
+ "@webiny/lexical-nodes": "5.41.0-beta.0",
8
8
  "lexical": "0.16.1"
9
9
  },
10
10
  "devDependencies": {
11
11
  "@types/jsdom": "^21.1.6",
12
- "@webiny/cli": "5.40.6-beta.3",
13
- "@webiny/project-utils": "5.40.6-beta.3",
12
+ "@webiny/cli": "5.41.0-beta.0",
13
+ "@webiny/project-utils": "5.41.0-beta.0",
14
14
  "jsdom": "24.0.0"
15
15
  },
16
16
  "publishConfig": {
@@ -22,5 +22,5 @@
22
22
  "watch": "yarn webiny run watch"
23
23
  },
24
24
  "test": "jest --verbose --runInBand --detectOpenHandles --forceExit",
25
- "gitHead": "f9da84b373e62f9f269599c4301e5e4418a98d51"
25
+ "gitHead": "9ce5e75fc577aa4de2cf08d5ca734b3c98fe65b6"
26
26
  }
package/types.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import { CreateEditorArgs, LexicalNode } from "lexical";
2
- export declare type NodeMapper = (node: LexicalNode) => LexicalNode;
2
+ export type NodeMapper = (node: LexicalNode) => LexicalNode;
3
3
  export interface ParserConfigurationOptions {
4
4
  editorConfig?: Pick<CreateEditorArgs, "nodes" | "theme">;
5
5
  nodeMapper?: NodeMapper;