webiny 6.4.0-beta.2 → 6.4.0-beta.3
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/file-manager.d.ts +1 -0
- package/admin/file-manager.js +1 -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 +0 -1
- package/admin/ui.js +0 -1
- package/admin/website-builder/lexical.d.ts +18 -17
- package/admin/website-builder/lexical.js +3 -2
- package/api/webhooks.d.ts +0 -1
- package/api/webhooks.js +0 -1
- package/package.json +43 -41
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 @@
|
|
|
1
|
+
export { FileUrlFormatter } from "@webiny/app-file-manager/features/fileUrlFormatter/abstractions.js";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { FileUrlFormatter } from "@webiny/app-file-manager/features/fileUrlFormatter/abstractions.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
|
@@ -66,5 +66,4 @@ export { useHotkeys } from "@webiny/app-admin/hooks/useHotkeys.js";
|
|
|
66
66
|
export { useDialogs } from "@webiny/app-admin/components/Dialogs/useDialogs.js";
|
|
67
67
|
export { Logo } from "@webiny/app-admin/base/ui/Logo.js";
|
|
68
68
|
export { TenantSelector } from "@webiny/app-admin/base/ui/TenantSelector.js";
|
|
69
|
-
export { LexicalEditor } from "@webiny/app-admin/components/LexicalEditor/LexicalEditor.js";
|
|
70
69
|
export { AdminLayout } from "@webiny/app-admin/components/AdminLayout.js";
|
package/admin/ui.js
CHANGED
|
@@ -65,5 +65,4 @@ export { useHotkeys } from "@webiny/app-admin/hooks/useHotkeys.js";
|
|
|
65
65
|
export { useDialogs } from "@webiny/app-admin/components/Dialogs/useDialogs.js";
|
|
66
66
|
export { Logo } from "@webiny/app-admin/base/ui/Logo.js";
|
|
67
67
|
export { TenantSelector } from "@webiny/app-admin/base/ui/TenantSelector.js";
|
|
68
|
-
export { LexicalEditor } from "@webiny/app-admin/components/LexicalEditor/LexicalEditor.js";
|
|
69
68
|
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/api/webhooks.d.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
export { WebhookSignPayload, WebhookVerifyPayload, WebhookDispatcher, WebhookFactory, WebhookProvider } from "@webiny/api-core/features/webhooks/index.js";
|
|
2
1
|
export type { Webhook, WebhookCmsEntry, WebhookCmsEntryValues } from "@webiny/webhooks/api/domain/Webhook.js";
|
|
3
2
|
export type { WebhookDelivery, WebhookDeliveryCmsEntry, WebhookDeliveryCmsEntryValues, WebhookDeliveryStatus } from "@webiny/webhooks/api/domain/WebhookDelivery.js";
|
|
4
3
|
export type { IWebhookPayload } from "@webiny/webhooks/api/features/SendWebhookTask/types.js";
|
package/api/webhooks.js
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.3",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -9,46 +9,47 @@
|
|
|
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/handler
|
|
37
|
-
"@webiny/
|
|
38
|
-
"@webiny/
|
|
39
|
-
"@webiny/
|
|
40
|
-
"@webiny/project
|
|
41
|
-
"@webiny/project-aws
|
|
42
|
-
"@webiny/
|
|
43
|
-
"@webiny/
|
|
44
|
-
"@webiny/
|
|
45
|
-
"@webiny/
|
|
46
|
-
"@webiny/
|
|
47
|
-
"@webiny/
|
|
12
|
+
"@webiny/admin-ui": "6.4.0-beta.3",
|
|
13
|
+
"@webiny/api-aco": "6.4.0-beta.3",
|
|
14
|
+
"@webiny/api-core": "6.4.0-beta.3",
|
|
15
|
+
"@webiny/api-file-manager": "6.4.0-beta.3",
|
|
16
|
+
"@webiny/api-headless-cms": "6.4.0-beta.3",
|
|
17
|
+
"@webiny/api-headless-cms-ddb-es": "6.4.0-beta.3",
|
|
18
|
+
"@webiny/api-headless-cms-scheduler": "6.4.0-beta.3",
|
|
19
|
+
"@webiny/api-mailer": "6.4.0-beta.3",
|
|
20
|
+
"@webiny/api-opensearch": "6.4.0-beta.3",
|
|
21
|
+
"@webiny/api-scheduler": "6.4.0-beta.3",
|
|
22
|
+
"@webiny/api-website-builder": "6.4.0-beta.3",
|
|
23
|
+
"@webiny/api-website-builder-scheduler": "6.4.0-beta.3",
|
|
24
|
+
"@webiny/api-websockets": "6.4.0-beta.3",
|
|
25
|
+
"@webiny/app": "6.4.0-beta.3",
|
|
26
|
+
"@webiny/app-aco": "6.4.0-beta.3",
|
|
27
|
+
"@webiny/app-admin": "6.4.0-beta.3",
|
|
28
|
+
"@webiny/app-file-manager": "6.4.0-beta.3",
|
|
29
|
+
"@webiny/app-headless-cms": "6.4.0-beta.3",
|
|
30
|
+
"@webiny/app-headless-cms-common": "6.4.0-beta.3",
|
|
31
|
+
"@webiny/app-website-builder": "6.4.0-beta.3",
|
|
32
|
+
"@webiny/cli-core": "6.4.0-beta.3",
|
|
33
|
+
"@webiny/db-dynamodb": "6.4.0-beta.3",
|
|
34
|
+
"@webiny/feature": "6.4.0-beta.3",
|
|
35
|
+
"@webiny/form": "6.4.0-beta.3",
|
|
36
|
+
"@webiny/handler": "6.4.0-beta.3",
|
|
37
|
+
"@webiny/handler-graphql": "6.4.0-beta.3",
|
|
38
|
+
"@webiny/languages": "6.4.0-beta.3",
|
|
39
|
+
"@webiny/lexical-editor": "6.4.0-beta.3",
|
|
40
|
+
"@webiny/project": "6.4.0-beta.3",
|
|
41
|
+
"@webiny/project-aws": "6.4.0-beta.3",
|
|
42
|
+
"@webiny/project-aws-template": "6.4.0-beta.3",
|
|
43
|
+
"@webiny/tasks": "6.4.0-beta.3",
|
|
44
|
+
"@webiny/tenant-manager": "6.4.0-beta.3",
|
|
45
|
+
"@webiny/utils": "6.4.0-beta.3",
|
|
46
|
+
"@webiny/validation": "6.4.0-beta.3",
|
|
47
|
+
"@webiny/webhooks": "6.4.0-beta.3",
|
|
48
|
+
"@webiny/website-builder-sdk": "6.4.0-beta.3",
|
|
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.3",
|
|
52
53
|
"rimraf": "6.1.3",
|
|
53
54
|
"typescript": "6.0.3"
|
|
54
55
|
},
|
|
@@ -63,7 +64,7 @@
|
|
|
63
64
|
]
|
|
64
65
|
}
|
|
65
66
|
},
|
|
66
|
-
"gitHead": "
|
|
67
|
+
"gitHead": "2e58681d4344024bfb60e6180338e2f154ec87f0",
|
|
67
68
|
"exports": {
|
|
68
69
|
"./configs/tsconfig.json": "./configs/tsconfig.json",
|
|
69
70
|
"./global.d.ts": "./global.d.ts",
|
|
@@ -115,6 +116,7 @@
|
|
|
115
116
|
"./admin/configs": "./admin/configs.js",
|
|
116
117
|
"./admin/form": "./admin/form.js",
|
|
117
118
|
"./admin/tenancy": "./admin/tenancy.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",
|
|
@@ -127,13 +129,13 @@
|
|
|
127
129
|
"./admin/website-builder/page/editor": "./admin/website-builder/page/editor.js",
|
|
128
130
|
"./admin/website-builder/page/list": "./admin/website-builder/page/list.js",
|
|
129
131
|
"./admin/website-builder/redirect/list": "./admin/website-builder/redirect/list.js",
|
|
132
|
+
"./admin/file-manager": "./admin/file-manager.js",
|
|
130
133
|
"./admin/website-builder": "./admin/website-builder.js",
|
|
131
134
|
"./cli/command": "./cli/command.js",
|
|
132
135
|
"./cli": "./cli.js",
|
|
133
136
|
"./api/db": "./api/db.js",
|
|
134
137
|
"./admin/languages": "./admin/languages.js",
|
|
135
138
|
"./api/languages": "./api/languages.js",
|
|
136
|
-
"./admin/lexical": "./admin/lexical.js",
|
|
137
139
|
"./infra/admin": "./infra/admin.js",
|
|
138
140
|
"./infra/api": "./infra/api.js",
|
|
139
141
|
"./infra/core": "./infra/core.js",
|
|
@@ -141,5 +143,5 @@
|
|
|
141
143
|
"./extensions": "./extensions.js",
|
|
142
144
|
"./api/tenant-manager": "./api/tenant-manager.js"
|
|
143
145
|
},
|
|
144
|
-
"exportGenerationHash": "
|
|
146
|
+
"exportGenerationHash": "c481b9ad13ea252fbf3363914473e2958a1078dd31d2e6086b4a47ba069b1dd3"
|
|
145
147
|
}
|