@webiny/app-serverless-cms 5.35.0-beta.1 → 5.35.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.
- package/Admin.js +2 -1
- package/Admin.js.map +1 -1
- package/package.json +26 -26
package/Admin.js
CHANGED
|
@@ -31,6 +31,7 @@ var _lexicalEditorPbElement = require("@webiny/lexical-editor-pb-element");
|
|
|
31
31
|
var _lexicalEditorActions = require("@webiny/lexical-editor-actions");
|
|
32
32
|
var _appMailer = require("@webiny/app-mailer");
|
|
33
33
|
var _appAco = require("@webiny/app-aco");
|
|
34
|
+
var _utils = require("@webiny/app-page-builder/utils");
|
|
34
35
|
var App = function App(props) {
|
|
35
36
|
var createApolloClient = props.createApolloClient || _apolloClientFactory.createApolloClient;
|
|
36
37
|
var ViewCompositionProvider = (0, _ViewCompositionProvider.createViewCompositionProvider)();
|
|
@@ -41,7 +42,7 @@ var App = function App(props) {
|
|
|
41
42
|
createApolloClient: createApolloClient
|
|
42
43
|
}), /*#__PURE__*/_react.default.createElement(_appI18n.I18N, null), /*#__PURE__*/_react.default.createElement(_appI18nContent.I18NContent, null), /*#__PURE__*/_react.default.createElement(_appAdmin.Provider, {
|
|
43
44
|
hoc: ViewCompositionProvider
|
|
44
|
-
}), /*#__PURE__*/_react.default.createElement(_appPageBuilder.PageBuilder, null), /*#__PURE__*/_react.default.createElement(_lexicalEditorPbElement.LexicalEditorPlugin, null), /*#__PURE__*/_react.default.createElement(_lexicalEditorActions.LexicalEditorActions, null), /*#__PURE__*/_react.default.createElement(_appFormBuilder.FormBuilder, null), /*#__PURE__*/_react.default.createElement(_appHeadlessCms.HeadlessCMS, {
|
|
45
|
+
}), /*#__PURE__*/_react.default.createElement(_appPageBuilder.PageBuilder, null), !_utils.isLegacyRenderingEngine && /*#__PURE__*/_react.default.createElement(_lexicalEditorPbElement.LexicalEditorPlugin, null), !_utils.isLegacyRenderingEngine && /*#__PURE__*/_react.default.createElement(_lexicalEditorActions.LexicalEditorActions, null), /*#__PURE__*/_react.default.createElement(_appFormBuilder.FormBuilder, null), /*#__PURE__*/_react.default.createElement(_appHeadlessCms.HeadlessCMS, {
|
|
45
46
|
createApolloClient: createApolloClient
|
|
46
47
|
}), /*#__PURE__*/_react.default.createElement(_appApw.AdvancedPublishingWorkflow, null), /*#__PURE__*/_react.default.createElement(_appTenantManager.TenantManager, null), /*#__PURE__*/_react.default.createElement(_appMailer.Module, null), /*#__PURE__*/_react.default.createElement(_appAco.ACOProvider, null), props.children);
|
|
47
48
|
};
|
package/Admin.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["App","props","createApolloClient","defaultApolloClientFactory","ViewCompositionProvider","createViewCompositionProvider","plugins","register","imagePlugin","fileStorageS3Plugin","apolloLinks","children","Admin","memo"],"sources":["Admin.tsx"],"sourcesContent":["import React, { memo } from \"react\";\nimport { plugins } from \"@webiny/plugins\";\nimport {\n Admin as BaseAdmin,\n AdminProps as BaseAdminProps,\n AppInstaller,\n Provider\n} from \"@webiny/app-admin\";\nimport { Tenancy } from \"@webiny/app-tenancy\";\nimport { Security } from \"@webiny/app-security\";\nimport { I18N } from \"@webiny/app-i18n\";\nimport { I18NContent } from \"@webiny/app-i18n-content\";\nimport { PageBuilder } from \"@webiny/app-page-builder\";\nimport { FormBuilder } from \"@webiny/app-form-builder\";\nimport { HeadlessCMS } from \"@webiny/app-headless-cms\";\nimport { RMWC } from \"@webiny/app-admin-rmwc\";\nimport { FileManager } from \"@webiny/app-file-manager/app\";\nimport { GraphQLPlayground } from \"@webiny/app-graphql-playground\";\nimport { AccessManagement } from \"@webiny/app-security-access-management\";\nimport { imagePlugin } from \"@webiny/app/plugins\";\nimport fileStorageS3Plugin from \"@webiny/app-file-manager-s3\";\nimport { createApolloClient as defaultApolloClientFactory } from \"./apolloClientFactory\";\nimport apolloLinks from \"./apolloLinks\";\nimport { createViewCompositionProvider } from \"@webiny/app-admin/base/providers/ViewCompositionProvider\";\nimport { AdvancedPublishingWorkflow } from \"@webiny/app-apw\";\nimport { TenantManager } from \"@webiny/app-tenant-manager\";\nimport { LexicalEditorPlugin } from \"@webiny/lexical-editor-pb-element\";\nimport { LexicalEditorActions } from \"@webiny/lexical-editor-actions\";\nimport { Module as MailerSettings } from \"@webiny/app-mailer\";\nimport { ACOProvider } from \"@webiny/app-aco\";\n\nexport interface AdminProps extends Omit<BaseAdminProps, \"createApolloClient\"> {\n createApolloClient?: BaseAdminProps[\"createApolloClient\"];\n}\n\nconst App = (props: AdminProps) => {\n const createApolloClient = props.createApolloClient || defaultApolloClientFactory;\n const ViewCompositionProvider = createViewCompositionProvider();\n\n plugins.register(imagePlugin(), fileStorageS3Plugin(), apolloLinks);\n\n return (\n <BaseAdmin createApolloClient={createApolloClient}>\n <RMWC />\n <Tenancy />\n <Security />\n <AccessManagement />\n <AppInstaller />\n <FileManager />\n <GraphQLPlayground createApolloClient={createApolloClient} />\n <I18N />\n <I18NContent />\n <Provider hoc={ViewCompositionProvider} />\n <PageBuilder />\n <LexicalEditorPlugin
|
|
1
|
+
{"version":3,"names":["App","props","createApolloClient","defaultApolloClientFactory","ViewCompositionProvider","createViewCompositionProvider","plugins","register","imagePlugin","fileStorageS3Plugin","apolloLinks","isLegacyRenderingEngine","children","Admin","memo"],"sources":["Admin.tsx"],"sourcesContent":["import React, { memo } from \"react\";\nimport { plugins } from \"@webiny/plugins\";\nimport {\n Admin as BaseAdmin,\n AdminProps as BaseAdminProps,\n AppInstaller,\n Provider\n} from \"@webiny/app-admin\";\nimport { Tenancy } from \"@webiny/app-tenancy\";\nimport { Security } from \"@webiny/app-security\";\nimport { I18N } from \"@webiny/app-i18n\";\nimport { I18NContent } from \"@webiny/app-i18n-content\";\nimport { PageBuilder } from \"@webiny/app-page-builder\";\nimport { FormBuilder } from \"@webiny/app-form-builder\";\nimport { HeadlessCMS } from \"@webiny/app-headless-cms\";\nimport { RMWC } from \"@webiny/app-admin-rmwc\";\nimport { FileManager } from \"@webiny/app-file-manager/app\";\nimport { GraphQLPlayground } from \"@webiny/app-graphql-playground\";\nimport { AccessManagement } from \"@webiny/app-security-access-management\";\nimport { imagePlugin } from \"@webiny/app/plugins\";\nimport fileStorageS3Plugin from \"@webiny/app-file-manager-s3\";\nimport { createApolloClient as defaultApolloClientFactory } from \"./apolloClientFactory\";\nimport apolloLinks from \"./apolloLinks\";\nimport { createViewCompositionProvider } from \"@webiny/app-admin/base/providers/ViewCompositionProvider\";\nimport { AdvancedPublishingWorkflow } from \"@webiny/app-apw\";\nimport { TenantManager } from \"@webiny/app-tenant-manager\";\nimport { LexicalEditorPlugin } from \"@webiny/lexical-editor-pb-element\";\nimport { LexicalEditorActions } from \"@webiny/lexical-editor-actions\";\nimport { Module as MailerSettings } from \"@webiny/app-mailer\";\nimport { ACOProvider } from \"@webiny/app-aco\";\nimport { isLegacyRenderingEngine } from \"@webiny/app-page-builder/utils\";\n\nexport interface AdminProps extends Omit<BaseAdminProps, \"createApolloClient\"> {\n createApolloClient?: BaseAdminProps[\"createApolloClient\"];\n}\n\nconst App = (props: AdminProps) => {\n const createApolloClient = props.createApolloClient || defaultApolloClientFactory;\n const ViewCompositionProvider = createViewCompositionProvider();\n\n plugins.register(imagePlugin(), fileStorageS3Plugin(), apolloLinks);\n\n return (\n <BaseAdmin createApolloClient={createApolloClient}>\n <RMWC />\n <Tenancy />\n <Security />\n <AccessManagement />\n <AppInstaller />\n <FileManager />\n <GraphQLPlayground createApolloClient={createApolloClient} />\n <I18N />\n <I18NContent />\n <Provider hoc={ViewCompositionProvider} />\n <PageBuilder />\n\n {!isLegacyRenderingEngine && <LexicalEditorPlugin />}\n {!isLegacyRenderingEngine && <LexicalEditorActions />}\n\n <FormBuilder />\n <HeadlessCMS createApolloClient={createApolloClient} />\n <AdvancedPublishingWorkflow />\n <TenantManager />\n <MailerSettings />\n <ACOProvider />\n {props.children}\n </BaseAdmin>\n );\n};\n\nexport const Admin = memo<AdminProps>(App);\n"],"mappings":";;;;;;;;AAAA;AACA;AACA;AAMA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAMA,IAAMA,GAAG,GAAG,SAANA,GAAG,CAAIC,KAAiB,EAAK;EAC/B,IAAMC,kBAAkB,GAAGD,KAAK,CAACC,kBAAkB,IAAIC,uCAA0B;EACjF,IAAMC,uBAAuB,GAAG,IAAAC,sDAA6B,GAAE;EAE/DC,gBAAO,CAACC,QAAQ,CAAC,IAAAC,qBAAW,GAAE,EAAE,IAAAC,wBAAmB,GAAE,EAAEC,oBAAW,CAAC;EAEnE,oBACI,6BAAC,eAAS;IAAC,kBAAkB,EAAER;EAAmB,gBAC9C,6BAAC,kBAAI,OAAG,eACR,6BAAC,mBAAO,OAAG,eACX,6BAAC,qBAAQ,OAAG,eACZ,6BAAC,6CAAgB,OAAG,eACpB,6BAAC,sBAAY,OAAG,eAChB,6BAAC,gBAAW,OAAG,eACf,6BAAC,uCAAiB;IAAC,kBAAkB,EAAEA;EAAmB,EAAG,eAC7D,6BAAC,aAAI,OAAG,eACR,6BAAC,2BAAW,OAAG,eACf,6BAAC,kBAAQ;IAAC,GAAG,EAAEE;EAAwB,EAAG,eAC1C,6BAAC,2BAAW,OAAG,EAEd,CAACO,8BAAuB,iBAAI,6BAAC,2CAAmB,OAAG,EACnD,CAACA,8BAAuB,iBAAI,6BAAC,0CAAoB,OAAG,eAErD,6BAAC,2BAAW,OAAG,eACf,6BAAC,2BAAW;IAAC,kBAAkB,EAAET;EAAmB,EAAG,eACvD,6BAAC,kCAA0B,OAAG,eAC9B,6BAAC,+BAAa,OAAG,eACjB,6BAAC,iBAAc,OAAG,eAClB,6BAAC,mBAAW,OAAG,EACdD,KAAK,CAACW,QAAQ,CACP;AAEpB,CAAC;AAEM,IAAMC,KAAK,gBAAG,IAAAC,WAAI,EAAad,GAAG,CAAC;AAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webiny/app-serverless-cms",
|
|
3
|
-
"version": "5.35.0
|
|
3
|
+
"version": "5.35.0",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -10,28 +10,28 @@
|
|
|
10
10
|
"license": "MIT",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@babel/runtime": "7.20.13",
|
|
13
|
-
"@emotion/react": "11.10.
|
|
14
|
-
"@webiny/app": "5.35.0
|
|
15
|
-
"@webiny/app-aco": "5.35.0
|
|
16
|
-
"@webiny/app-admin": "5.35.0
|
|
17
|
-
"@webiny/app-admin-rmwc": "5.35.0
|
|
18
|
-
"@webiny/app-apw": "5.35.0
|
|
19
|
-
"@webiny/app-file-manager": "5.35.0
|
|
20
|
-
"@webiny/app-file-manager-s3": "5.35.0
|
|
21
|
-
"@webiny/app-form-builder": "5.35.0
|
|
22
|
-
"@webiny/app-graphql-playground": "5.35.0
|
|
23
|
-
"@webiny/app-headless-cms": "5.35.0
|
|
24
|
-
"@webiny/app-i18n": "5.35.0
|
|
25
|
-
"@webiny/app-i18n-content": "5.35.0
|
|
26
|
-
"@webiny/app-mailer": "5.35.0
|
|
27
|
-
"@webiny/app-page-builder": "5.35.0
|
|
28
|
-
"@webiny/app-security": "5.35.0
|
|
29
|
-
"@webiny/app-security-access-management": "5.35.0
|
|
30
|
-
"@webiny/app-tenancy": "5.35.0
|
|
31
|
-
"@webiny/app-tenant-manager": "5.35.0
|
|
32
|
-
"@webiny/lexical-editor-actions": "5.35.0
|
|
33
|
-
"@webiny/lexical-editor-pb-element": "5.35.0
|
|
34
|
-
"@webiny/plugins": "5.35.0
|
|
13
|
+
"@emotion/react": "11.10.8",
|
|
14
|
+
"@webiny/app": "5.35.0",
|
|
15
|
+
"@webiny/app-aco": "5.35.0",
|
|
16
|
+
"@webiny/app-admin": "5.35.0",
|
|
17
|
+
"@webiny/app-admin-rmwc": "5.35.0",
|
|
18
|
+
"@webiny/app-apw": "5.35.0",
|
|
19
|
+
"@webiny/app-file-manager": "5.35.0",
|
|
20
|
+
"@webiny/app-file-manager-s3": "5.35.0",
|
|
21
|
+
"@webiny/app-form-builder": "5.35.0",
|
|
22
|
+
"@webiny/app-graphql-playground": "5.35.0",
|
|
23
|
+
"@webiny/app-headless-cms": "5.35.0",
|
|
24
|
+
"@webiny/app-i18n": "5.35.0",
|
|
25
|
+
"@webiny/app-i18n-content": "5.35.0",
|
|
26
|
+
"@webiny/app-mailer": "5.35.0",
|
|
27
|
+
"@webiny/app-page-builder": "5.35.0",
|
|
28
|
+
"@webiny/app-security": "5.35.0",
|
|
29
|
+
"@webiny/app-security-access-management": "5.35.0",
|
|
30
|
+
"@webiny/app-tenancy": "5.35.0",
|
|
31
|
+
"@webiny/app-tenant-manager": "5.35.0",
|
|
32
|
+
"@webiny/lexical-editor-actions": "5.35.0",
|
|
33
|
+
"@webiny/lexical-editor-pb-element": "5.35.0",
|
|
34
|
+
"@webiny/plugins": "5.35.0",
|
|
35
35
|
"apollo-cache": "1.3.5",
|
|
36
36
|
"apollo-client": "2.6.10",
|
|
37
37
|
"apollo-link": "1.2.14",
|
|
@@ -46,8 +46,8 @@
|
|
|
46
46
|
"@babel/preset-env": "^7.19.4",
|
|
47
47
|
"@babel/preset-react": "^7.0.0",
|
|
48
48
|
"@babel/preset-typescript": "^7.18.6",
|
|
49
|
-
"@webiny/cli": "^5.35.0
|
|
50
|
-
"@webiny/project-utils": "^5.35.0
|
|
49
|
+
"@webiny/cli": "^5.35.0",
|
|
50
|
+
"@webiny/project-utils": "^5.35.0",
|
|
51
51
|
"babel-plugin-emotion": "^9.2.8",
|
|
52
52
|
"babel-plugin-named-asset-import": "^1.0.0-next.3e165448",
|
|
53
53
|
"rimraf": "^3.0.2",
|
|
@@ -67,5 +67,5 @@
|
|
|
67
67
|
"removeViewBox": false
|
|
68
68
|
}
|
|
69
69
|
},
|
|
70
|
-
"gitHead": "
|
|
70
|
+
"gitHead": "948cd1e05978e0ed25137ace7dd6c15ed0bf2cca"
|
|
71
71
|
}
|