@webiny/app-serverless-cms 0.0.0-unstable.496cf268ac → 0.0.0-unstable.606fc9c866
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/apolloLinks.d.ts +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/apolloLinks.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ConsoleLinkPlugin } from "@webiny/app/plugins/ConsoleLinkPlugin";
|
|
2
2
|
import { NetworkErrorLinkPlugin } from "@webiny/app/plugins/NetworkErrorLinkPlugin";
|
|
3
3
|
import { OmitTypenameLinkPlugin } from "@webiny/app/plugins/OmitTypenameLinkPlugin";
|
|
4
|
-
declare const _default: (
|
|
4
|
+
declare const _default: (ConsoleLinkPlugin | NetworkErrorLinkPlugin | OmitTypenameLinkPlugin)[];
|
|
5
5
|
export default _default;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webiny/app-serverless-cms",
|
|
3
|
-
"version": "0.0.0-unstable.
|
|
3
|
+
"version": "0.0.0-unstable.606fc9c866",
|
|
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": "0.0.0-unstable.
|
|
15
|
-
"@webiny/app-aco": "0.0.0-unstable.
|
|
16
|
-
"@webiny/app-admin": "0.0.0-unstable.
|
|
17
|
-
"@webiny/app-admin-rmwc": "0.0.0-unstable.
|
|
18
|
-
"@webiny/app-apw": "0.0.0-unstable.
|
|
19
|
-
"@webiny/app-file-manager": "0.0.0-unstable.
|
|
20
|
-
"@webiny/app-file-manager-s3": "0.0.0-unstable.
|
|
21
|
-
"@webiny/app-form-builder": "0.0.0-unstable.
|
|
22
|
-
"@webiny/app-graphql-playground": "0.0.0-unstable.
|
|
23
|
-
"@webiny/app-headless-cms": "0.0.0-unstable.
|
|
24
|
-
"@webiny/app-i18n": "0.0.0-unstable.
|
|
25
|
-
"@webiny/app-i18n-content": "0.0.0-unstable.
|
|
26
|
-
"@webiny/app-mailer": "0.0.0-unstable.
|
|
27
|
-
"@webiny/app-page-builder": "0.0.0-unstable.
|
|
28
|
-
"@webiny/app-security": "0.0.0-unstable.
|
|
29
|
-
"@webiny/app-security-access-management": "0.0.0-unstable.
|
|
30
|
-
"@webiny/app-tenancy": "0.0.0-unstable.
|
|
31
|
-
"@webiny/app-tenant-manager": "0.0.0-unstable.
|
|
32
|
-
"@webiny/lexical-editor-actions": "0.0.0-unstable.
|
|
33
|
-
"@webiny/lexical-editor-pb-element": "0.0.0-unstable.
|
|
34
|
-
"@webiny/plugins": "0.0.0-unstable.
|
|
13
|
+
"@emotion/react": "11.10.8",
|
|
14
|
+
"@webiny/app": "0.0.0-unstable.606fc9c866",
|
|
15
|
+
"@webiny/app-aco": "0.0.0-unstable.606fc9c866",
|
|
16
|
+
"@webiny/app-admin": "0.0.0-unstable.606fc9c866",
|
|
17
|
+
"@webiny/app-admin-rmwc": "0.0.0-unstable.606fc9c866",
|
|
18
|
+
"@webiny/app-apw": "0.0.0-unstable.606fc9c866",
|
|
19
|
+
"@webiny/app-file-manager": "0.0.0-unstable.606fc9c866",
|
|
20
|
+
"@webiny/app-file-manager-s3": "0.0.0-unstable.606fc9c866",
|
|
21
|
+
"@webiny/app-form-builder": "0.0.0-unstable.606fc9c866",
|
|
22
|
+
"@webiny/app-graphql-playground": "0.0.0-unstable.606fc9c866",
|
|
23
|
+
"@webiny/app-headless-cms": "0.0.0-unstable.606fc9c866",
|
|
24
|
+
"@webiny/app-i18n": "0.0.0-unstable.606fc9c866",
|
|
25
|
+
"@webiny/app-i18n-content": "0.0.0-unstable.606fc9c866",
|
|
26
|
+
"@webiny/app-mailer": "0.0.0-unstable.606fc9c866",
|
|
27
|
+
"@webiny/app-page-builder": "0.0.0-unstable.606fc9c866",
|
|
28
|
+
"@webiny/app-security": "0.0.0-unstable.606fc9c866",
|
|
29
|
+
"@webiny/app-security-access-management": "0.0.0-unstable.606fc9c866",
|
|
30
|
+
"@webiny/app-tenancy": "0.0.0-unstable.606fc9c866",
|
|
31
|
+
"@webiny/app-tenant-manager": "0.0.0-unstable.606fc9c866",
|
|
32
|
+
"@webiny/lexical-editor-actions": "0.0.0-unstable.606fc9c866",
|
|
33
|
+
"@webiny/lexical-editor-pb-element": "0.0.0-unstable.606fc9c866",
|
|
34
|
+
"@webiny/plugins": "0.0.0-unstable.606fc9c866",
|
|
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": "^0.0.0-unstable.
|
|
50
|
-
"@webiny/project-utils": "^0.0.0-unstable.
|
|
49
|
+
"@webiny/cli": "^0.0.0-unstable.606fc9c866",
|
|
50
|
+
"@webiny/project-utils": "^0.0.0-unstable.606fc9c866",
|
|
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": "606fc9c866aec436f24983abc9bdaf02af2b8746"
|
|
71
71
|
}
|