@webiny/app-headless-cms 6.4.4-beta.5 → 6.4.4-beta.7
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/ContentEntryEditorConfig.js +7 -7
- package/admin/components/FieldEditor/FieldEditorContext.js +5 -5
- package/admin/hooks/useContentModels.js +2 -2
- package/admin/plugins/fieldRenderers/ref/advanced/components/AdvancedMultipleReferenceField.js +3 -3
- package/admin/plugins/fieldRenderers/ref/advanced/components/AdvancedSingleReferenceField.js +2 -2
- package/admin/views/contentEntries/ContentEntry/FullScreenContentEntry/FullScreenContentEntry.js +3 -3
- package/admin/views/contentModelGroups/ContentModelGroupsDataList.js +4 -4
- package/admin/views/contentModelGroups/ContentModelGroupsForm.js +5 -5
- package/admin/views/contentModels/NewContentModelDialog.js +3 -3
- package/package.json +31 -31
|
@@ -11,7 +11,7 @@ import { SingletonContentEntry } from "./admin/views/contentEntries/ContentEntry
|
|
|
11
11
|
import { useSingletonContentEntry } from "./admin/views/contentEntries/hooks/useSingletonContentEntry.js";
|
|
12
12
|
import { ContentEntryFormMeta, ContentEntryFormTitle } from "./admin/views/contentEntries/ContentEntry/FullScreenContentEntry/FullScreenContentEntryHeaderLeft.js";
|
|
13
13
|
import { SingleValueItemContainer } from "./admin/plugins/fieldRenderers/dynamicZone/SingleValueDynamicZone.js";
|
|
14
|
-
import * as
|
|
14
|
+
import * as __rspack_external__admin_plugins_fieldRenderers_dynamicZone_index_js_d38e5c4d from "./admin/plugins/fieldRenderers/dynamicZone/index.js";
|
|
15
15
|
const ContentEntryEditorConfig_ContentEntryEditorConfig = Object.assign(ContentEntryEditorConfig, {
|
|
16
16
|
ContentEntry: Object.assign(ContentEntry, {
|
|
17
17
|
useContentEntry: useContentEntry,
|
|
@@ -36,18 +36,18 @@ const ContentEntryEditorConfig_ContentEntryEditorConfig = Object.assign(ContentE
|
|
|
36
36
|
},
|
|
37
37
|
DynamicZone: {
|
|
38
38
|
Template: {
|
|
39
|
-
useTemplate:
|
|
39
|
+
useTemplate: __rspack_external__admin_plugins_fieldRenderers_dynamicZone_index_js_d38e5c4d.useTemplate
|
|
40
40
|
},
|
|
41
|
-
Container:
|
|
41
|
+
Container: __rspack_external__admin_plugins_fieldRenderers_dynamicZone_index_js_d38e5c4d.DynamicZoneContainer,
|
|
42
42
|
SingleValue: {
|
|
43
43
|
ItemContainer: SingleValueItemContainer
|
|
44
44
|
},
|
|
45
45
|
MultiValue: {
|
|
46
|
-
Container:
|
|
47
|
-
ItemContainer:
|
|
48
|
-
Item:
|
|
46
|
+
Container: __rspack_external__admin_plugins_fieldRenderers_dynamicZone_index_js_d38e5c4d.MultiValueContainer,
|
|
47
|
+
ItemContainer: __rspack_external__admin_plugins_fieldRenderers_dynamicZone_index_js_d38e5c4d.MultiValueItemContainer,
|
|
48
|
+
Item: __rspack_external__admin_plugins_fieldRenderers_dynamicZone_index_js_d38e5c4d.MultiValueItem
|
|
49
49
|
},
|
|
50
|
-
TemplateGallery:
|
|
50
|
+
TemplateGallery: __rspack_external__admin_plugins_fieldRenderers_dynamicZone_index_js_d38e5c4d.TemplateGallery
|
|
51
51
|
}
|
|
52
52
|
}
|
|
53
53
|
});
|
|
@@ -5,7 +5,7 @@ import { isLayoutField } from "@webiny/app-headless-cms-common/types/model.js";
|
|
|
5
5
|
import { plugins } from "@webiny/plugins";
|
|
6
6
|
import { useModelFieldEditor } from "./useModelFieldEditor.js";
|
|
7
7
|
import { generateAlphaNumericLowerCaseId } from "@webiny/utils";
|
|
8
|
-
import * as
|
|
8
|
+
import * as __rspack_external__utils_index_js_d2e4ad7a from "./utils/index.js";
|
|
9
9
|
const FieldEditorContext = /*#__PURE__*/ react.createContext(void 0);
|
|
10
10
|
const maxGenerateIdIterations = 100;
|
|
11
11
|
const generateFieldId = (layout)=>{
|
|
@@ -147,7 +147,7 @@ const FieldEditorProvider = ({ parent, fields, layout, onChange, children })=>{
|
|
|
147
147
|
...prev,
|
|
148
148
|
fields: (prev.fields || []).concat(field)
|
|
149
149
|
};
|
|
150
|
-
return
|
|
150
|
+
return __rspack_external__utils_index_js_d2e4ad7a.moveField({
|
|
151
151
|
field,
|
|
152
152
|
position,
|
|
153
153
|
data: next
|
|
@@ -155,14 +155,14 @@ const FieldEditorProvider = ({ parent, fields, layout, onChange, children })=>{
|
|
|
155
155
|
});
|
|
156
156
|
};
|
|
157
157
|
const moveField = ({ field, position })=>{
|
|
158
|
-
setState((data)=>
|
|
158
|
+
setState((data)=>__rspack_external__utils_index_js_d2e4ad7a.moveField({
|
|
159
159
|
field,
|
|
160
160
|
position,
|
|
161
161
|
data
|
|
162
162
|
}));
|
|
163
163
|
};
|
|
164
164
|
const moveRow = (source, destination)=>{
|
|
165
|
-
setState((data)=>
|
|
165
|
+
setState((data)=>__rspack_external__utils_index_js_d2e4ad7a.moveRow({
|
|
166
166
|
data,
|
|
167
167
|
source,
|
|
168
168
|
destination
|
|
@@ -175,7 +175,7 @@ const FieldEditorProvider = ({ parent, fields, layout, onChange, children })=>{
|
|
|
175
175
|
});
|
|
176
176
|
};
|
|
177
177
|
const deleteField = (field)=>{
|
|
178
|
-
setState((data)=>
|
|
178
|
+
setState((data)=>__rspack_external__utils_index_js_d2e4ad7a.deleteField({
|
|
179
179
|
field,
|
|
180
180
|
data
|
|
181
181
|
}));
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { useQuery } from "./index.js";
|
|
2
2
|
import { useMemo } from "react";
|
|
3
|
-
import * as
|
|
3
|
+
import * as __rspack_external__viewsGraphql_js_da218dba from "../viewsGraphql.js";
|
|
4
4
|
const useContentModels = ()=>{
|
|
5
|
-
const { data, loading, error: apolloError, refetch } = useQuery(
|
|
5
|
+
const { data, loading, error: apolloError, refetch } = useQuery(__rspack_external__viewsGraphql_js_da218dba.LIST_CONTENT_MODELS, {
|
|
6
6
|
variables: {
|
|
7
7
|
includeBeingDeleted: true,
|
|
8
8
|
includePlugins: true
|
package/admin/plugins/fieldRenderers/ref/advanced/components/AdvancedMultipleReferenceField.js
CHANGED
|
@@ -10,7 +10,7 @@ import { Entries } from "./Entries.js";
|
|
|
10
10
|
import { NewReferencedEntryDialog } from "../../components/NewReferencedEntryDialog.js";
|
|
11
11
|
import { FormComponentErrorMessage, FormComponentLabel } from "@webiny/admin-ui";
|
|
12
12
|
import { CanEditField, useFieldEffectiveRules } from "@webiny/app-headless-cms-common";
|
|
13
|
-
import * as
|
|
13
|
+
import * as __rspack_external__viewsGraphql_js_4e5031e4 from "../../../../../viewsGraphql.js";
|
|
14
14
|
const AdvancedMultipleReferenceField = (props)=>{
|
|
15
15
|
const { bind } = props;
|
|
16
16
|
const { showSnackbar } = useSnackbar();
|
|
@@ -24,7 +24,7 @@ const AdvancedMultipleReferenceField = (props)=>{
|
|
|
24
24
|
const [linkEntryDialogModel, setLinkEntryDialogModel] = useState(null);
|
|
25
25
|
const [newEntryDialogModel, setNewEntryDialogModel] = useState(null);
|
|
26
26
|
const [loadedModels, setLoadedModels] = useState([]);
|
|
27
|
-
const { data, loading: loadingModels } = useQuery(
|
|
27
|
+
const { data, loading: loadingModels } = useQuery(__rspack_external__viewsGraphql_js_4e5031e4.LIST_CONTENT_MODELS, {
|
|
28
28
|
context: requestContext
|
|
29
29
|
});
|
|
30
30
|
useEffect(()=>{
|
|
@@ -34,7 +34,7 @@ const AdvancedMultipleReferenceField = (props)=>{
|
|
|
34
34
|
showSnackbar(data.listContentModels.error.message);
|
|
35
35
|
return;
|
|
36
36
|
}
|
|
37
|
-
setLoadedModels((0,
|
|
37
|
+
setLoadedModels((0, __rspack_external__viewsGraphql_js_4e5031e4.withoutBeingDeletedModels)(data.listContentModels.data));
|
|
38
38
|
}, [
|
|
39
39
|
data
|
|
40
40
|
]);
|
package/admin/plugins/fieldRenderers/ref/advanced/components/AdvancedSingleReferenceField.js
CHANGED
|
@@ -8,7 +8,7 @@ import { useSnackbar } from "@webiny/app-admin";
|
|
|
8
8
|
import { NewReferencedEntryDialog } from "../../components/NewReferencedEntryDialog.js";
|
|
9
9
|
import { FormComponentErrorMessage, FormComponentLabel, OverlayLoader } from "@webiny/admin-ui";
|
|
10
10
|
import { CanEditField, useFieldEffectiveRules } from "@webiny/app-headless-cms-common";
|
|
11
|
-
import * as
|
|
11
|
+
import * as __rspack_external__viewsGraphql_js_4e5031e4 from "../../../../../viewsGraphql.js";
|
|
12
12
|
const AdvancedSingleReferenceField = (props)=>{
|
|
13
13
|
const { bind } = props;
|
|
14
14
|
const { showSnackbar } = useSnackbar();
|
|
@@ -18,7 +18,7 @@ const AdvancedSingleReferenceField = (props)=>{
|
|
|
18
18
|
const [newEntryDialogModel, setNewEntryDialogModel] = useState(null);
|
|
19
19
|
const [loadedModels, setLoadedModels] = useState([]);
|
|
20
20
|
const requestContext = useModelFieldGraphqlContext();
|
|
21
|
-
const { data, loading: loadingModels } = useQuery(
|
|
21
|
+
const { data, loading: loadingModels } = useQuery(__rspack_external__viewsGraphql_js_4e5031e4.LIST_CONTENT_MODELS, {
|
|
22
22
|
context: requestContext
|
|
23
23
|
});
|
|
24
24
|
useEffect(()=>{
|
package/admin/views/contentEntries/ContentEntry/FullScreenContentEntry/FullScreenContentEntry.js
CHANGED
|
@@ -6,7 +6,7 @@ import { FullScreenContentEntryProvider } from "./useFullScreenContentEntry.js";
|
|
|
6
6
|
import { ContentEntryEditorConfig } from "../../../../../ContentEntryEditorConfig.js";
|
|
7
7
|
import { useContentEntryEditorConfig } from "../../../../config/contentEntries/index.js";
|
|
8
8
|
import { HeaderBar } from "@webiny/admin-ui";
|
|
9
|
-
import * as
|
|
9
|
+
import * as __rspack_external__FullScreenContentEntry_styled_js_2086b485 from "./FullScreenContentEntry.styled.js";
|
|
10
10
|
const { ContentEntry: FullScreenContentEntry_ContentEntry } = ContentEntryEditorConfig;
|
|
11
11
|
const FullScreenContentEntryDecorator = FullScreenContentEntry_ContentEntry.createDecorator((Original)=>function() {
|
|
12
12
|
const { width } = useContentEntryEditorConfig();
|
|
@@ -14,12 +14,12 @@ const FullScreenContentEntryDecorator = FullScreenContentEntry_ContentEntry.crea
|
|
|
14
14
|
return /*#__PURE__*/ react.createElement(FullScreenContentEntryProvider, {
|
|
15
15
|
openRevisionList: openRevisionList,
|
|
16
16
|
isRevisionListOpen: isRevisionListOpen
|
|
17
|
-
}, /*#__PURE__*/ react.createElement(
|
|
17
|
+
}, /*#__PURE__*/ react.createElement(__rspack_external__FullScreenContentEntry_styled_js_2086b485.Container, null, /*#__PURE__*/ react.createElement(HeaderBar, {
|
|
18
18
|
start: /*#__PURE__*/ react.createElement(FullScreenContentEntryHeaderLeft, null),
|
|
19
19
|
end: /*#__PURE__*/ react.createElement("div", {
|
|
20
20
|
id: "cms-content-entry-header-right"
|
|
21
21
|
})
|
|
22
|
-
}), /*#__PURE__*/ react.createElement(
|
|
22
|
+
}), /*#__PURE__*/ react.createElement(__rspack_external__FullScreenContentEntry_styled_js_2086b485.Content, null, /*#__PURE__*/ react.createElement(__rspack_external__FullScreenContentEntry_styled_js_2086b485.ContentFormWrapper, null, /*#__PURE__*/ react.createElement(__rspack_external__FullScreenContentEntry_styled_js_2086b485.ContentFormInner, {
|
|
23
23
|
width: width
|
|
24
24
|
}, /*#__PURE__*/ react.createElement(Original, null)))), /*#__PURE__*/ react.createElement(RevisionListDrawer, null)));
|
|
25
25
|
});
|
|
@@ -9,7 +9,7 @@ import { SearchUI, useConfirmationDialog, useRouter, useSnackbar } from "@webiny
|
|
|
9
9
|
import { useApolloClient, usePermission, useQuery } from "../../hooks/index.js";
|
|
10
10
|
import { deserializeSorters } from "../utils.js";
|
|
11
11
|
import { Routes } from "../../../routes.js";
|
|
12
|
-
import * as
|
|
12
|
+
import * as __rspack_external__graphql_js_205648b8 from "./graphql.js";
|
|
13
13
|
const t = i18n.ns("app-headless-cms/admin/content-model-groups/data-list");
|
|
14
14
|
const SORTERS = [
|
|
15
15
|
{
|
|
@@ -35,7 +35,7 @@ const ContentModelGroupsDataList = ({ canCreate })=>{
|
|
|
35
35
|
const { goToRoute } = useRouter();
|
|
36
36
|
const { showSnackbar } = useSnackbar();
|
|
37
37
|
const client = useApolloClient();
|
|
38
|
-
const listQuery = useQuery(
|
|
38
|
+
const listQuery = useQuery(__rspack_external__graphql_js_205648b8.LIST_CONTENT_MODEL_GROUPS);
|
|
39
39
|
const { showConfirmation } = useConfirmationDialog({
|
|
40
40
|
dataTestId: "cms.contentModelGroup.list-item.delete-dialog"
|
|
41
41
|
});
|
|
@@ -59,7 +59,7 @@ const ContentModelGroupsDataList = ({ canCreate })=>{
|
|
|
59
59
|
const deleteItem = useCallback((group)=>{
|
|
60
60
|
showConfirmation(async ()=>{
|
|
61
61
|
const response = await client.mutate({
|
|
62
|
-
mutation:
|
|
62
|
+
mutation: __rspack_external__graphql_js_205648b8.DELETE_CONTENT_MODEL_GROUP,
|
|
63
63
|
variables: {
|
|
64
64
|
id: group.id
|
|
65
65
|
},
|
|
@@ -67,7 +67,7 @@ const ContentModelGroupsDataList = ({ canCreate })=>{
|
|
|
67
67
|
const { error } = data.deleteContentModelGroup;
|
|
68
68
|
if (error) return void showSnackbar(error.message);
|
|
69
69
|
const gqlParams = {
|
|
70
|
-
query:
|
|
70
|
+
query: __rspack_external__graphql_js_205648b8.LIST_CONTENT_MODEL_GROUPS
|
|
71
71
|
};
|
|
72
72
|
const result = cache.readQuery(gqlParams);
|
|
73
73
|
if (!result || !result.listContentModelGroups) return;
|
|
@@ -11,7 +11,7 @@ import { ReactComponent as add_18px_svg_ReactComponent } from "@webiny/app-admin
|
|
|
11
11
|
import { useMutation, usePermission, useQuery } from "../../hooks/index.js";
|
|
12
12
|
import { Button, Grid, Input, OverlayLoader, Textarea, Tooltip } from "@webiny/admin-ui";
|
|
13
13
|
import { Routes } from "../../../routes.js";
|
|
14
|
-
import * as
|
|
14
|
+
import * as __rspack_external__graphql_js_205648b8 from "./graphql.js";
|
|
15
15
|
const t = i18n.ns("app-headless-cms/admin/content-model-groups/form");
|
|
16
16
|
const ContentModelGroupsForm = ({ canCreate })=>{
|
|
17
17
|
const { goToRoute } = useRouter();
|
|
@@ -20,7 +20,7 @@ const ContentModelGroupsForm = ({ canCreate })=>{
|
|
|
20
20
|
const { canEdit } = usePermission();
|
|
21
21
|
const newEntry = true === route.params.new;
|
|
22
22
|
const id = route.params.id;
|
|
23
|
-
const getQuery = useQuery(
|
|
23
|
+
const getQuery = useQuery(__rspack_external__graphql_js_205648b8.GET_CONTENT_MODEL_GROUP, {
|
|
24
24
|
variables: {
|
|
25
25
|
id: id
|
|
26
26
|
},
|
|
@@ -34,11 +34,11 @@ const ContentModelGroupsForm = ({ canCreate })=>{
|
|
|
34
34
|
}
|
|
35
35
|
}
|
|
36
36
|
});
|
|
37
|
-
const [create, createMutation] = useMutation(
|
|
37
|
+
const [create, createMutation] = useMutation(__rspack_external__graphql_js_205648b8.CREATE_CONTENT_MODEL_GROUP, {
|
|
38
38
|
update (cache, { data }) {
|
|
39
39
|
if (!data || data.contentModelGroup.error) return;
|
|
40
40
|
const gqlParams = {
|
|
41
|
-
query:
|
|
41
|
+
query: __rspack_external__graphql_js_205648b8.LIST_CONTENT_MODEL_GROUPS
|
|
42
42
|
};
|
|
43
43
|
const result = cache.readQuery(gqlParams);
|
|
44
44
|
if (!result || !result.listContentModelGroups) return;
|
|
@@ -57,7 +57,7 @@ const ContentModelGroupsForm = ({ canCreate })=>{
|
|
|
57
57
|
});
|
|
58
58
|
}
|
|
59
59
|
});
|
|
60
|
-
const [update, updateMutation] = useMutation(
|
|
60
|
+
const [update, updateMutation] = useMutation(__rspack_external__graphql_js_205648b8.UPDATE_CONTENT_MODEL_GROUP);
|
|
61
61
|
const loading = [
|
|
62
62
|
getQuery,
|
|
63
63
|
createMutation,
|
|
@@ -11,14 +11,14 @@ import { createApiNameValidator } from "./helpers/apiNameValidator.js";
|
|
|
11
11
|
import { createNameValidator } from "./helpers/nameValidator.js";
|
|
12
12
|
import { IconPicker } from "../../components/IconPicker.js";
|
|
13
13
|
import { Routes } from "../../../routes.js";
|
|
14
|
-
import * as
|
|
14
|
+
import * as __rspack_external__viewsGraphql_js_3871fa27 from "../../viewsGraphql.js";
|
|
15
15
|
const t = i18n.ns("app-headless-cms/admin/views/content-models/new-content-model-dialog");
|
|
16
16
|
const NewContentModelDialog = ({ open, onClose })=>{
|
|
17
17
|
const [loading, setLoading] = react.useState(false);
|
|
18
18
|
const { showSnackbar } = useSnackbar();
|
|
19
19
|
const { goToRoute } = useRouter();
|
|
20
20
|
const client = useApolloClient();
|
|
21
|
-
const [createContentModel] = useMutation(
|
|
21
|
+
const [createContentModel] = useMutation(__rspack_external__viewsGraphql_js_3871fa27.CREATE_CONTENT_MODEL, {
|
|
22
22
|
onCompleted (data) {
|
|
23
23
|
setLoading(false);
|
|
24
24
|
if (!data) return void showSnackbar("Missing data on Create Content Model Mutation Response.");
|
|
@@ -40,7 +40,7 @@ const NewContentModelDialog = ({ open, onClose })=>{
|
|
|
40
40
|
addModelToGroupCache(cache, model);
|
|
41
41
|
}
|
|
42
42
|
});
|
|
43
|
-
const listMenuGroupsQuery = useQuery(
|
|
43
|
+
const listMenuGroupsQuery = useQuery(__rspack_external__viewsGraphql_js_3871fa27.LIST_MENU_CONTENT_GROUPS_MODELS, {
|
|
44
44
|
skip: !open
|
|
45
45
|
});
|
|
46
46
|
const groups = useMemo(()=>listMenuGroupsQuery.data?.listContentModelGroups?.data || [], [
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webiny/app-headless-cms",
|
|
3
|
-
"version": "6.4.4-beta.
|
|
3
|
+
"version": "6.4.4-beta.7",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": "./index.js",
|
|
@@ -22,34 +22,34 @@
|
|
|
22
22
|
"@emotion/css": "11.13.5",
|
|
23
23
|
"@emotion/react": "11.14.0",
|
|
24
24
|
"@emotion/styled": "11.14.1",
|
|
25
|
-
"@fortawesome/fontawesome-common-types": "7.
|
|
26
|
-
"@fortawesome/fontawesome-svg-core": "7.
|
|
27
|
-
"@fortawesome/free-brands-svg-icons": "7.
|
|
28
|
-
"@fortawesome/free-regular-svg-icons": "7.
|
|
29
|
-
"@fortawesome/free-solid-svg-icons": "7.
|
|
30
|
-
"@fortawesome/react-fontawesome": "3.
|
|
31
|
-
"@lexical/utils": "0.
|
|
25
|
+
"@fortawesome/fontawesome-common-types": "7.3.0",
|
|
26
|
+
"@fortawesome/fontawesome-svg-core": "7.3.0",
|
|
27
|
+
"@fortawesome/free-brands-svg-icons": "7.3.0",
|
|
28
|
+
"@fortawesome/free-regular-svg-icons": "7.3.0",
|
|
29
|
+
"@fortawesome/free-solid-svg-icons": "7.3.0",
|
|
30
|
+
"@fortawesome/react-fontawesome": "3.4.0",
|
|
31
|
+
"@lexical/utils": "0.46.0",
|
|
32
32
|
"@svgr/webpack": "8.1.0",
|
|
33
|
-
"@types/react": "18.3.
|
|
34
|
-
"@webiny/admin-ui": "6.4.4-beta.
|
|
35
|
-
"@webiny/app": "6.4.4-beta.
|
|
36
|
-
"@webiny/app-aco": "6.4.4-beta.
|
|
37
|
-
"@webiny/app-admin": "6.4.4-beta.
|
|
38
|
-
"@webiny/app-graphql-playground": "6.4.4-beta.
|
|
39
|
-
"@webiny/app-headless-cms-common": "6.4.4-beta.
|
|
40
|
-
"@webiny/app-trash-bin": "6.4.4-beta.
|
|
41
|
-
"@webiny/error": "6.4.4-beta.
|
|
42
|
-
"@webiny/feature": "6.4.4-beta.
|
|
43
|
-
"@webiny/form": "6.4.4-beta.
|
|
44
|
-
"@webiny/icons": "6.4.4-beta.
|
|
45
|
-
"@webiny/lexical-converter": "6.4.4-beta.
|
|
46
|
-
"@webiny/lexical-editor": "6.4.4-beta.
|
|
47
|
-
"@webiny/lexical-nodes": "6.4.4-beta.
|
|
48
|
-
"@webiny/plugins": "6.4.4-beta.
|
|
49
|
-
"@webiny/react-composition": "6.4.4-beta.
|
|
50
|
-
"@webiny/react-properties": "6.4.4-beta.
|
|
51
|
-
"@webiny/utils": "6.4.4-beta.
|
|
52
|
-
"@webiny/validation": "6.4.4-beta.
|
|
33
|
+
"@types/react": "18.3.31",
|
|
34
|
+
"@webiny/admin-ui": "6.4.4-beta.7",
|
|
35
|
+
"@webiny/app": "6.4.4-beta.7",
|
|
36
|
+
"@webiny/app-aco": "6.4.4-beta.7",
|
|
37
|
+
"@webiny/app-admin": "6.4.4-beta.7",
|
|
38
|
+
"@webiny/app-graphql-playground": "6.4.4-beta.7",
|
|
39
|
+
"@webiny/app-headless-cms-common": "6.4.4-beta.7",
|
|
40
|
+
"@webiny/app-trash-bin": "6.4.4-beta.7",
|
|
41
|
+
"@webiny/error": "6.4.4-beta.7",
|
|
42
|
+
"@webiny/feature": "6.4.4-beta.7",
|
|
43
|
+
"@webiny/form": "6.4.4-beta.7",
|
|
44
|
+
"@webiny/icons": "6.4.4-beta.7",
|
|
45
|
+
"@webiny/lexical-converter": "6.4.4-beta.7",
|
|
46
|
+
"@webiny/lexical-editor": "6.4.4-beta.7",
|
|
47
|
+
"@webiny/lexical-nodes": "6.4.4-beta.7",
|
|
48
|
+
"@webiny/plugins": "6.4.4-beta.7",
|
|
49
|
+
"@webiny/react-composition": "6.4.4-beta.7",
|
|
50
|
+
"@webiny/react-properties": "6.4.4-beta.7",
|
|
51
|
+
"@webiny/utils": "6.4.4-beta.7",
|
|
52
|
+
"@webiny/validation": "6.4.4-beta.7",
|
|
53
53
|
"apollo-cache": "1.3.5",
|
|
54
54
|
"apollo-client": "2.6.10",
|
|
55
55
|
"apollo-link": "1.2.14",
|
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
"dnd-core": "16.0.1",
|
|
59
59
|
"dot-prop-immutable": "2.1.1",
|
|
60
60
|
"graphql": "16.14.2",
|
|
61
|
-
"graphql-tag": "2.12.
|
|
61
|
+
"graphql-tag": "2.12.7",
|
|
62
62
|
"lodash": "4.18.1",
|
|
63
63
|
"mobx": "6.16.1",
|
|
64
64
|
"mobx-react-lite": "4.1.1",
|
|
@@ -71,10 +71,10 @@
|
|
|
71
71
|
"zod": "4.4.3"
|
|
72
72
|
},
|
|
73
73
|
"devDependencies": {
|
|
74
|
-
"@webiny/build-tools": "6.4.4-beta.
|
|
74
|
+
"@webiny/build-tools": "6.4.4-beta.7",
|
|
75
75
|
"rimraf": "6.1.3",
|
|
76
76
|
"typescript": "6.0.3",
|
|
77
|
-
"vitest": "4.1.
|
|
77
|
+
"vitest": "4.1.10"
|
|
78
78
|
},
|
|
79
79
|
"publishConfig": {
|
|
80
80
|
"access": "public"
|