@webiny/lexical-editor 5.39.3 → 5.40.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.
|
@@ -28,4 +28,9 @@ export interface RichTextEditorProps {
|
|
|
28
28
|
/**
|
|
29
29
|
* @description Main editor container
|
|
30
30
|
*/
|
|
31
|
-
export declare const RichTextEditor: import("@webiny/react-composition").
|
|
31
|
+
export declare const RichTextEditor: import("@webiny/react-composition").GenericComponent<RichTextEditorProps> & {
|
|
32
|
+
original: import("@webiny/react-composition").GenericComponent<RichTextEditorProps>;
|
|
33
|
+
originalName: string;
|
|
34
|
+
} & {
|
|
35
|
+
createDecorator: (decorator: import("@webiny/react-composition").Decorator<(props: RichTextEditorProps) => JSX.Element | null>) => (props: unknown) => JSX.Element;
|
|
36
|
+
};
|
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
import React from "react";
|
|
2
|
-
export declare const FontColorPicker: import("@webiny/react-composition").
|
|
2
|
+
export declare const FontColorPicker: import("@webiny/react-composition").GenericComponent<any> & {
|
|
3
|
+
original: import("@webiny/react-composition").GenericComponent<any>;
|
|
4
|
+
originalName: string;
|
|
5
|
+
} & {
|
|
6
|
+
createDecorator: (decorator: import("@webiny/react-composition").Decorator<(props: any) => JSX.Element | null>) => (props: unknown) => JSX.Element;
|
|
7
|
+
};
|
|
3
8
|
interface FontActionColorPicker {
|
|
4
9
|
element: JSX.Element;
|
|
5
10
|
}
|
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
import React from "react";
|
|
2
|
-
export declare const BaseTextAlignmentDropDown: import("@webiny/react-composition").
|
|
2
|
+
export declare const BaseTextAlignmentDropDown: import("@webiny/react-composition").GenericComponent<any> & {
|
|
3
|
+
original: import("@webiny/react-composition").GenericComponent<any>;
|
|
4
|
+
originalName: string;
|
|
5
|
+
} & {
|
|
6
|
+
createDecorator: (decorator: import("@webiny/react-composition").Decorator<(props: any) => JSX.Element | null>) => (props: unknown) => JSX.Element;
|
|
7
|
+
};
|
|
3
8
|
interface TextAlignmentActionDropdownProps {
|
|
4
9
|
element: JSX.Element;
|
|
5
10
|
}
|
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
import React from "react";
|
|
2
|
-
export declare const BaseTypographyActionDropDown: import("@webiny/react-composition").
|
|
2
|
+
export declare const BaseTypographyActionDropDown: import("@webiny/react-composition").GenericComponent<any> & {
|
|
3
|
+
original: import("@webiny/react-composition").GenericComponent<any>;
|
|
4
|
+
originalName: string;
|
|
5
|
+
} & {
|
|
6
|
+
createDecorator: (decorator: import("@webiny/react-composition").Decorator<(props: any) => JSX.Element | null>) => (props: unknown) => JSX.Element;
|
|
7
|
+
};
|
|
3
8
|
interface TypographyActionDropdownProps {
|
|
4
9
|
element: JSX.Element;
|
|
5
10
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webiny/lexical-editor",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.40.0-beta.0",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "https://github.com/webiny/webiny-js.git"
|
|
@@ -14,17 +14,17 @@
|
|
|
14
14
|
"@lexical/rich-text": "0.12.2",
|
|
15
15
|
"@lexical/selection": "0.12.2",
|
|
16
16
|
"@lexical/utils": "0.12.2",
|
|
17
|
-
"@webiny/lexical-nodes": "5.
|
|
18
|
-
"@webiny/lexical-theme": "5.
|
|
19
|
-
"@webiny/react-composition": "5.
|
|
20
|
-
"@webiny/react-properties": "5.
|
|
17
|
+
"@webiny/lexical-nodes": "5.40.0-beta.0",
|
|
18
|
+
"@webiny/lexical-theme": "5.40.0-beta.0",
|
|
19
|
+
"@webiny/react-composition": "5.40.0-beta.0",
|
|
20
|
+
"@webiny/react-properties": "5.40.0-beta.0",
|
|
21
21
|
"lexical": "0.12.2",
|
|
22
22
|
"react": "17.0.2",
|
|
23
23
|
"react-dom": "17.0.2"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
|
-
"@webiny/cli": "5.
|
|
27
|
-
"@webiny/project-utils": "5.
|
|
26
|
+
"@webiny/cli": "5.40.0-beta.0",
|
|
27
|
+
"@webiny/project-utils": "5.40.0-beta.0"
|
|
28
28
|
},
|
|
29
29
|
"publishConfig": {
|
|
30
30
|
"access": "public",
|
|
@@ -34,5 +34,5 @@
|
|
|
34
34
|
"build": "yarn webiny run build",
|
|
35
35
|
"watch": "yarn webiny run watch"
|
|
36
36
|
},
|
|
37
|
-
"gitHead": "
|
|
37
|
+
"gitHead": "d716758f56ca020dfaf8147cd908dddfaaf0937f"
|
|
38
38
|
}
|