webiny 6.4.0-beta.2 → 6.4.0-beta.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.
- package/admin/cms/lexical.d.ts +17 -15
- package/admin/cms/lexical.js +2 -1
- package/admin/ui/file-manager.d.ts +5 -0
- package/admin/ui/file-manager.js +3 -0
- package/admin/{lexical.d.ts → ui/lexical.d.ts} +1 -0
- package/admin/{lexical.js → ui/lexical.js} +1 -0
- package/admin/ui.d.ts +1 -1
- package/admin/ui.js +1 -1
- package/admin/website-builder/lexical.d.ts +18 -17
- package/admin/website-builder/lexical.js +3 -2
- package/global.d.ts +1 -1
- package/package.json +47 -43
package/admin/cms/lexical.d.ts
CHANGED
|
@@ -1,16 +1,18 @@
|
|
|
1
|
+
export { LexicalEditor } from "@webiny/app-headless-cms/admin/components/LexicalCmsEditor/LexicalEditor.js";
|
|
2
|
+
export type { LexicalEditorProps } from "@webiny/app-headless-cms/admin/components/LexicalCmsEditor/LexicalEditor.js";
|
|
1
3
|
export { LexicalEditorConfig } from "@webiny/app-headless-cms/admin/lexicalConfig/LexicalEditorConfig.js";
|
|
2
|
-
export { useLexicalEditorConfig } from "@webiny/lexical-editor/exports/admin/lexical.js";
|
|
3
|
-
export { LexicalHtmlRenderer } from "@webiny/lexical-editor/exports/admin/lexical.js";
|
|
4
|
-
export { getNodeFromSelection } from "@webiny/lexical-editor/exports/admin/lexical.js";
|
|
5
|
-
export { useCurrentElement } from "@webiny/lexical-editor/exports/admin/lexical.js";
|
|
6
|
-
export { useCurrentSelection } from "@webiny/lexical-editor/exports/admin/lexical.js";
|
|
7
|
-
export { useDeriveValueFromSelection } from "@webiny/lexical-editor/exports/admin/lexical.js";
|
|
8
|
-
export { useRichTextEditor } from "@webiny/lexical-editor/exports/admin/lexical.js";
|
|
9
|
-
export { useFontColorPicker } from "@webiny/lexical-editor/exports/admin/lexical.js";
|
|
10
|
-
export { useTextAlignmentAction } from "@webiny/lexical-editor/exports/admin/lexical.js";
|
|
11
|
-
export { useTypographyAction } from "@webiny/lexical-editor/exports/admin/lexical.js";
|
|
12
|
-
export { useIsMounted } from "@webiny/lexical-editor/exports/admin/lexical.js";
|
|
13
|
-
export { Divider } from "@webiny/lexical-editor/exports/admin/lexical.js";
|
|
14
|
-
export { DropDownItem } from "@webiny/lexical-editor/exports/admin/lexical.js";
|
|
15
|
-
export { DropDown } from "@webiny/lexical-editor/exports/admin/lexical.js";
|
|
16
|
-
export type { Klass, LexicalNode } from "@webiny/lexical-editor/exports/admin/lexical.js";
|
|
4
|
+
export { useLexicalEditorConfig } from "@webiny/lexical-editor/exports/admin/ui/lexical.js";
|
|
5
|
+
export { LexicalHtmlRenderer } from "@webiny/lexical-editor/exports/admin/ui/lexical.js";
|
|
6
|
+
export { getNodeFromSelection } from "@webiny/lexical-editor/exports/admin/ui/lexical.js";
|
|
7
|
+
export { useCurrentElement } from "@webiny/lexical-editor/exports/admin/ui/lexical.js";
|
|
8
|
+
export { useCurrentSelection } from "@webiny/lexical-editor/exports/admin/ui/lexical.js";
|
|
9
|
+
export { useDeriveValueFromSelection } from "@webiny/lexical-editor/exports/admin/ui/lexical.js";
|
|
10
|
+
export { useRichTextEditor } from "@webiny/lexical-editor/exports/admin/ui/lexical.js";
|
|
11
|
+
export { useFontColorPicker } from "@webiny/lexical-editor/exports/admin/ui/lexical.js";
|
|
12
|
+
export { useTextAlignmentAction } from "@webiny/lexical-editor/exports/admin/ui/lexical.js";
|
|
13
|
+
export { useTypographyAction } from "@webiny/lexical-editor/exports/admin/ui/lexical.js";
|
|
14
|
+
export { useIsMounted } from "@webiny/lexical-editor/exports/admin/ui/lexical.js";
|
|
15
|
+
export { Divider } from "@webiny/lexical-editor/exports/admin/ui/lexical.js";
|
|
16
|
+
export { DropDownItem } from "@webiny/lexical-editor/exports/admin/ui/lexical.js";
|
|
17
|
+
export { DropDown } from "@webiny/lexical-editor/exports/admin/ui/lexical.js";
|
|
18
|
+
export type { Klass, LexicalNode } from "@webiny/lexical-editor/exports/admin/ui/lexical.js";
|
package/admin/cms/lexical.js
CHANGED
|
@@ -1,2 +1,3 @@
|
|
|
1
|
+
export { LexicalEditor } from "@webiny/app-headless-cms/admin/components/LexicalCmsEditor/LexicalEditor.js";
|
|
1
2
|
export { LexicalEditorConfig } from "@webiny/app-headless-cms/admin/lexicalConfig/LexicalEditorConfig.js";
|
|
2
|
-
export { Divider, DropDown, DropDownItem, LexicalHtmlRenderer, getNodeFromSelection, useCurrentElement, useCurrentSelection, useDeriveValueFromSelection, useFontColorPicker, useIsMounted, useLexicalEditorConfig, useRichTextEditor, useTextAlignmentAction, useTypographyAction } from "@webiny/lexical-editor/exports/admin/lexical.js";
|
|
3
|
+
export { Divider, DropDown, DropDownItem, LexicalHtmlRenderer, getNodeFromSelection, useCurrentElement, useCurrentSelection, useDeriveValueFromSelection, useFontColorPicker, useIsMounted, useLexicalEditorConfig, useRichTextEditor, useTextAlignmentAction, useTypographyAction } from "@webiny/lexical-editor/exports/admin/ui/lexical.js";
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
export { FileUrlFormatter } from "@webiny/app-admin/features/fileUrlFormatter/abstractions.js";
|
|
2
|
+
export { FileManager } from "@webiny/app-admin/base/ui/FileManager.js";
|
|
3
|
+
export type { FileManagerFileItem } from "@webiny/app-admin/base/ui/FileManager.js";
|
|
4
|
+
export { FileManagerViewConfig as FileManagerConfig } from "@webiny/app-file-manager/presentation/config/FileManagerViewConfig.js";
|
|
5
|
+
export { useFileManagerConfig } from "@webiny/app-file-manager/presentation/config/FileManagerViewConfig.js";
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
export { FileUrlFormatter } from "@webiny/app-admin/features/fileUrlFormatter/abstractions.js";
|
|
2
|
+
export { FileManager } from "@webiny/app-admin/base/ui/FileManager.js";
|
|
3
|
+
export { FileManagerViewConfig as FileManagerConfig, useFileManagerConfig } from "@webiny/app-file-manager/presentation/config/FileManagerViewConfig.js";
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
export { LexicalEditor } from "@webiny/app-admin/components/LexicalEditor/LexicalEditor.js";
|
|
1
2
|
export { LexicalHtmlRenderer } from "@webiny/lexical-editor/components/LexicalHtmlRenderer.js";
|
|
2
3
|
export { getNodeFromSelection } from "@webiny/lexical-editor/hooks/index.js";
|
|
3
4
|
export { useCurrentElement } from "@webiny/lexical-editor/hooks/index.js";
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
export { LexicalEditor } from "@webiny/app-admin/components/LexicalEditor/LexicalEditor.js";
|
|
1
2
|
export { LexicalHtmlRenderer } from "@webiny/lexical-editor/components/LexicalHtmlRenderer.js";
|
|
2
3
|
export { getNodeFromSelection, useCurrentElement, useCurrentSelection, useDeriveValueFromSelection, useFontColorPicker, useIsMounted, useRichTextEditor, useTextAlignmentAction, useTypographyAction } from "@webiny/lexical-editor/hooks/index.js";
|
|
3
4
|
export { Divider } from "@webiny/lexical-editor/ui/Divider.js";
|
package/admin/ui.d.ts
CHANGED
|
@@ -17,6 +17,7 @@ export { Drawer } from "@webiny/admin-ui/Drawer/index.js";
|
|
|
17
17
|
export { DropdownMenu } from "@webiny/admin-ui/DropdownMenu/index.js";
|
|
18
18
|
export { DynamicFieldset } from "@webiny/admin-ui/DynamicFieldset/index.js";
|
|
19
19
|
export { FilePicker } from "@webiny/admin-ui/FilePicker/index.js";
|
|
20
|
+
export { FillViewportHeight, FillViewportWidth, FillViewport } from "@webiny/admin-ui/FillViewport/index.js";
|
|
20
21
|
export { Grid } from "@webiny/admin-ui/Grid/index.js";
|
|
21
22
|
export { HeaderBar } from "@webiny/admin-ui/HeaderBar/index.js";
|
|
22
23
|
export { Heading } from "@webiny/admin-ui/Heading/index.js";
|
|
@@ -66,5 +67,4 @@ export { useHotkeys } from "@webiny/app-admin/hooks/useHotkeys.js";
|
|
|
66
67
|
export { useDialogs } from "@webiny/app-admin/components/Dialogs/useDialogs.js";
|
|
67
68
|
export { Logo } from "@webiny/app-admin/base/ui/Logo.js";
|
|
68
69
|
export { TenantSelector } from "@webiny/app-admin/base/ui/TenantSelector.js";
|
|
69
|
-
export { LexicalEditor } from "@webiny/app-admin/components/LexicalEditor/LexicalEditor.js";
|
|
70
70
|
export { AdminLayout } from "@webiny/app-admin/components/AdminLayout.js";
|
package/admin/ui.js
CHANGED
|
@@ -17,6 +17,7 @@ export { Drawer } from "@webiny/admin-ui/Drawer/index.js";
|
|
|
17
17
|
export { DropdownMenu } from "@webiny/admin-ui/DropdownMenu/index.js";
|
|
18
18
|
export { DynamicFieldset } from "@webiny/admin-ui/DynamicFieldset/index.js";
|
|
19
19
|
export { FilePicker } from "@webiny/admin-ui/FilePicker/index.js";
|
|
20
|
+
export { FillViewport, FillViewportHeight, FillViewportWidth } from "@webiny/admin-ui/FillViewport/index.js";
|
|
20
21
|
export { Grid } from "@webiny/admin-ui/Grid/index.js";
|
|
21
22
|
export { HeaderBar } from "@webiny/admin-ui/HeaderBar/index.js";
|
|
22
23
|
export { Heading } from "@webiny/admin-ui/Heading/index.js";
|
|
@@ -65,5 +66,4 @@ export { useHotkeys } from "@webiny/app-admin/hooks/useHotkeys.js";
|
|
|
65
66
|
export { useDialogs } from "@webiny/app-admin/components/Dialogs/useDialogs.js";
|
|
66
67
|
export { Logo } from "@webiny/app-admin/base/ui/Logo.js";
|
|
67
68
|
export { TenantSelector } from "@webiny/app-admin/base/ui/TenantSelector.js";
|
|
68
|
-
export { LexicalEditor } from "@webiny/app-admin/components/LexicalEditor/LexicalEditor.js";
|
|
69
69
|
export { AdminLayout } from "@webiny/app-admin/components/AdminLayout.js";
|
|
@@ -1,17 +1,18 @@
|
|
|
1
|
-
export {
|
|
2
|
-
export {
|
|
3
|
-
export {
|
|
4
|
-
export {
|
|
5
|
-
export {
|
|
6
|
-
export {
|
|
7
|
-
export {
|
|
8
|
-
export {
|
|
9
|
-
export {
|
|
10
|
-
export {
|
|
11
|
-
export {
|
|
12
|
-
export {
|
|
13
|
-
export {
|
|
14
|
-
export {
|
|
15
|
-
export {
|
|
16
|
-
export {
|
|
17
|
-
export
|
|
1
|
+
export { LexicalEditorConfig } from "@webiny/app-website-builder/inputRenderers/LexicalInput/LexicalEditorConfig.js";
|
|
2
|
+
export { LexicalEditor } from "@webiny/app-website-builder/inputRenderers/LexicalInput/LexicalEditor.js";
|
|
3
|
+
export type { LexicalEditorProps } from "@webiny/app-website-builder/inputRenderers/LexicalInput/LexicalEditor.js";
|
|
4
|
+
export { useLexicalEditorConfig } from "@webiny/lexical-editor/exports/admin/ui/lexical.js";
|
|
5
|
+
export { LexicalHtmlRenderer } from "@webiny/lexical-editor/exports/admin/ui/lexical.js";
|
|
6
|
+
export { getNodeFromSelection } from "@webiny/lexical-editor/exports/admin/ui/lexical.js";
|
|
7
|
+
export { useCurrentElement } from "@webiny/lexical-editor/exports/admin/ui/lexical.js";
|
|
8
|
+
export { useCurrentSelection } from "@webiny/lexical-editor/exports/admin/ui/lexical.js";
|
|
9
|
+
export { useDeriveValueFromSelection } from "@webiny/lexical-editor/exports/admin/ui/lexical.js";
|
|
10
|
+
export { useRichTextEditor } from "@webiny/lexical-editor/exports/admin/ui/lexical.js";
|
|
11
|
+
export { useFontColorPicker } from "@webiny/lexical-editor/exports/admin/ui/lexical.js";
|
|
12
|
+
export { useTextAlignmentAction } from "@webiny/lexical-editor/exports/admin/ui/lexical.js";
|
|
13
|
+
export { useTypographyAction } from "@webiny/lexical-editor/exports/admin/ui/lexical.js";
|
|
14
|
+
export { useIsMounted } from "@webiny/lexical-editor/exports/admin/ui/lexical.js";
|
|
15
|
+
export { Divider } from "@webiny/lexical-editor/exports/admin/ui/lexical.js";
|
|
16
|
+
export { DropDownItem } from "@webiny/lexical-editor/exports/admin/ui/lexical.js";
|
|
17
|
+
export { DropDown } from "@webiny/lexical-editor/exports/admin/ui/lexical.js";
|
|
18
|
+
export type { Klass, LexicalNode } from "@webiny/lexical-editor/exports/admin/ui/lexical.js";
|
|
@@ -1,2 +1,3 @@
|
|
|
1
|
-
export {
|
|
2
|
-
export {
|
|
1
|
+
export { LexicalEditorConfig } from "@webiny/app-website-builder/inputRenderers/LexicalInput/LexicalEditorConfig.js";
|
|
2
|
+
export { LexicalEditor } from "@webiny/app-website-builder/inputRenderers/LexicalInput/LexicalEditor.js";
|
|
3
|
+
export { Divider, DropDown, DropDownItem, LexicalHtmlRenderer, getNodeFromSelection, useCurrentElement, useCurrentSelection, useDeriveValueFromSelection, useFontColorPicker, useIsMounted, useLexicalEditorConfig, useRichTextEditor, useTextAlignmentAction, useTypographyAction } from "@webiny/lexical-editor/exports/admin/ui/lexical.js";
|
package/global.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "webiny",
|
|
3
|
-
"version": "6.4.0-beta.
|
|
3
|
+
"version": "6.4.0-beta.4",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -9,52 +9,52 @@
|
|
|
9
9
|
"description": "This package contains Webiny extensions.",
|
|
10
10
|
"license": "MIT",
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"@webiny/admin-ui": "6.4.0-beta.
|
|
13
|
-
"@webiny/api-aco": "6.4.0-beta.
|
|
14
|
-
"@webiny/api-core": "6.4.0-beta.
|
|
15
|
-
"@webiny/api-file-manager": "6.4.0-beta.
|
|
16
|
-
"@webiny/api-headless-cms": "6.4.0-beta.
|
|
17
|
-
"@webiny/api-headless-cms-ddb-es": "6.4.0-beta.
|
|
18
|
-
"@webiny/api-headless-cms-scheduler": "6.4.0-beta.
|
|
19
|
-
"@webiny/api-mailer": "6.4.0-beta.
|
|
20
|
-
"@webiny/api-opensearch": "6.4.0-beta.
|
|
21
|
-
"@webiny/api-scheduler": "6.4.0-beta.
|
|
22
|
-
"@webiny/api-website-builder": "6.4.0-beta.
|
|
23
|
-
"@webiny/api-website-builder-scheduler": "6.4.0-beta.
|
|
24
|
-
"@webiny/api-websockets": "6.4.0-beta.
|
|
25
|
-
"@webiny/app": "6.4.0-beta.
|
|
26
|
-
"@webiny/app-aco": "6.4.0-beta.
|
|
27
|
-
"@webiny/app-admin": "6.4.0-beta.
|
|
28
|
-
"@webiny/app-
|
|
29
|
-
"@webiny/app-headless-cms
|
|
30
|
-
"@webiny/app-
|
|
31
|
-
"@webiny/
|
|
32
|
-
"@webiny/
|
|
33
|
-
"@webiny/
|
|
34
|
-
"@webiny/
|
|
35
|
-
"@webiny/
|
|
36
|
-
"@webiny/
|
|
37
|
-
"@webiny/
|
|
38
|
-
"@webiny/
|
|
39
|
-
"@webiny/
|
|
40
|
-
"@webiny/
|
|
41
|
-
"@webiny/project
|
|
42
|
-
"@webiny/
|
|
43
|
-
"@webiny/
|
|
44
|
-
"@webiny/
|
|
45
|
-
"@webiny/
|
|
46
|
-
"@webiny/
|
|
47
|
-
"@webiny/
|
|
12
|
+
"@webiny/admin-ui": "6.4.0-beta.4",
|
|
13
|
+
"@webiny/api-aco": "6.4.0-beta.4",
|
|
14
|
+
"@webiny/api-core": "6.4.0-beta.4",
|
|
15
|
+
"@webiny/api-file-manager": "6.4.0-beta.4",
|
|
16
|
+
"@webiny/api-headless-cms": "6.4.0-beta.4",
|
|
17
|
+
"@webiny/api-headless-cms-ddb-es": "6.4.0-beta.4",
|
|
18
|
+
"@webiny/api-headless-cms-scheduler": "6.4.0-beta.4",
|
|
19
|
+
"@webiny/api-mailer": "6.4.0-beta.4",
|
|
20
|
+
"@webiny/api-opensearch": "6.4.0-beta.4",
|
|
21
|
+
"@webiny/api-scheduler": "6.4.0-beta.4",
|
|
22
|
+
"@webiny/api-website-builder": "6.4.0-beta.4",
|
|
23
|
+
"@webiny/api-website-builder-scheduler": "6.4.0-beta.4",
|
|
24
|
+
"@webiny/api-websockets": "6.4.0-beta.4",
|
|
25
|
+
"@webiny/app": "6.4.0-beta.4",
|
|
26
|
+
"@webiny/app-aco": "6.4.0-beta.4",
|
|
27
|
+
"@webiny/app-admin": "6.4.0-beta.4",
|
|
28
|
+
"@webiny/app-file-manager": "6.4.0-beta.4",
|
|
29
|
+
"@webiny/app-headless-cms": "6.4.0-beta.4",
|
|
30
|
+
"@webiny/app-headless-cms-common": "6.4.0-beta.4",
|
|
31
|
+
"@webiny/app-website-builder": "6.4.0-beta.4",
|
|
32
|
+
"@webiny/background-tasks": "6.4.0-beta.4",
|
|
33
|
+
"@webiny/cli-core": "6.4.0-beta.4",
|
|
34
|
+
"@webiny/db-dynamodb": "6.4.0-beta.4",
|
|
35
|
+
"@webiny/feature": "6.4.0-beta.4",
|
|
36
|
+
"@webiny/form": "6.4.0-beta.4",
|
|
37
|
+
"@webiny/handler": "6.4.0-beta.4",
|
|
38
|
+
"@webiny/handler-graphql": "6.4.0-beta.4",
|
|
39
|
+
"@webiny/languages": "6.4.0-beta.4",
|
|
40
|
+
"@webiny/lexical-editor": "6.4.0-beta.4",
|
|
41
|
+
"@webiny/project": "6.4.0-beta.4",
|
|
42
|
+
"@webiny/project-aws": "6.4.0-beta.4",
|
|
43
|
+
"@webiny/project-aws-template": "6.4.0-beta.4",
|
|
44
|
+
"@webiny/tenant-manager": "6.4.0-beta.4",
|
|
45
|
+
"@webiny/utils": "6.4.0-beta.4",
|
|
46
|
+
"@webiny/validation": "6.4.0-beta.4",
|
|
47
|
+
"@webiny/webhooks": "6.4.0-beta.4",
|
|
48
|
+
"@webiny/website-builder-sdk": "6.4.0-beta.4",
|
|
48
49
|
"react": "18.3.1"
|
|
49
50
|
},
|
|
50
51
|
"devDependencies": {
|
|
51
|
-
"@webiny/build-tools": "6.4.0-beta.
|
|
52
|
+
"@webiny/build-tools": "6.4.0-beta.4",
|
|
52
53
|
"rimraf": "6.1.3",
|
|
53
54
|
"typescript": "6.0.3"
|
|
54
55
|
},
|
|
55
56
|
"publishConfig": {
|
|
56
|
-
"access": "public"
|
|
57
|
-
"directory": "dist"
|
|
57
|
+
"access": "public"
|
|
58
58
|
},
|
|
59
59
|
"adio": {
|
|
60
60
|
"ignore": {
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
]
|
|
64
64
|
}
|
|
65
65
|
},
|
|
66
|
-
"gitHead": "
|
|
66
|
+
"gitHead": "8476da73b653c89cc1474d968baf55c1b0ae0e5f",
|
|
67
67
|
"exports": {
|
|
68
68
|
"./configs/tsconfig.json": "./configs/tsconfig.json",
|
|
69
69
|
"./global.d.ts": "./global.d.ts",
|
|
@@ -115,6 +115,8 @@
|
|
|
115
115
|
"./admin/configs": "./admin/configs.js",
|
|
116
116
|
"./admin/form": "./admin/form.js",
|
|
117
117
|
"./admin/tenancy": "./admin/tenancy.js",
|
|
118
|
+
"./admin/ui/file-manager": "./admin/ui/file-manager.js",
|
|
119
|
+
"./admin/ui/lexical": "./admin/ui/lexical.js",
|
|
118
120
|
"./admin/cms/entry/editor": "./admin/cms/entry/editor.js",
|
|
119
121
|
"./admin/cms/entry/list": "./admin/cms/entry/list.js",
|
|
120
122
|
"./admin/cms/field-renderers/common": "./admin/cms/field-renderers/common.js",
|
|
@@ -133,7 +135,6 @@
|
|
|
133
135
|
"./api/db": "./api/db.js",
|
|
134
136
|
"./admin/languages": "./admin/languages.js",
|
|
135
137
|
"./api/languages": "./api/languages.js",
|
|
136
|
-
"./admin/lexical": "./admin/lexical.js",
|
|
137
138
|
"./infra/admin": "./infra/admin.js",
|
|
138
139
|
"./infra/api": "./infra/api.js",
|
|
139
140
|
"./infra/core": "./infra/core.js",
|
|
@@ -141,5 +142,8 @@
|
|
|
141
142
|
"./extensions": "./extensions.js",
|
|
142
143
|
"./api/tenant-manager": "./api/tenant-manager.js"
|
|
143
144
|
},
|
|
144
|
-
"exportGenerationHash": "
|
|
145
|
+
"exportGenerationHash": "a9e9428800c668172653eb3821a9ac0a0abab1a1f0ee06c19356f7c9b80b6818",
|
|
146
|
+
"webiny": {
|
|
147
|
+
"publishFrom": "dist"
|
|
148
|
+
}
|
|
145
149
|
}
|