@webiny/app-serverless-cms 6.0.0-rc.2 → 6.0.0-rc.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.js +2 -1
- package/Admin.js.map +1 -1
- package/package.json +26 -25
package/Admin.js
CHANGED
|
@@ -4,6 +4,7 @@ import { HeadlessCMS } from "@webiny/app-headless-cms";
|
|
|
4
4
|
import { AdminUI } from "@webiny/app-admin-ui";
|
|
5
5
|
import { FileManager } from "@webiny/app-file-manager/app.js";
|
|
6
6
|
import { GraphQLPlayground } from "@webiny/app-graphql-playground";
|
|
7
|
+
import { SdkPlayground } from "@webiny/app-sdk-playground";
|
|
7
8
|
import { AccessManagement } from "@webiny/app-security-access-management";
|
|
8
9
|
import { imagePlugin } from "@webiny/app/plugins/index.js";
|
|
9
10
|
import fileStorageS3Plugin from "@webiny/app-file-manager-s3";
|
|
@@ -30,7 +31,7 @@ const App = props => {
|
|
|
30
31
|
createLegacyPlugins: createLegacyPlugins
|
|
31
32
|
}, /*#__PURE__*/React.createElement(AdminUI, null), /*#__PURE__*/React.createElement(AccessManagement, null), /*#__PURE__*/React.createElement(SystemInstallerProvider, null), /*#__PURE__*/React.createElement(FileManager, null), /*#__PURE__*/React.createElement(GraphQLPlayground, {
|
|
32
33
|
createApolloClient: createApolloClient
|
|
33
|
-
}), /*#__PURE__*/React.createElement(Websockets, null), /*#__PURE__*/React.createElement(RecordLocking, null), /*#__PURE__*/React.createElement(LexicalEditorActions, null), /*#__PURE__*/React.createElement(HeadlessCMS, {
|
|
34
|
+
}), /*#__PURE__*/React.createElement(SdkPlayground, null), /*#__PURE__*/React.createElement(Websockets, null), /*#__PURE__*/React.createElement(RecordLocking, null), /*#__PURE__*/React.createElement(LexicalEditorActions, null), /*#__PURE__*/React.createElement(HeadlessCMS, {
|
|
34
35
|
createApolloClient: createApolloClient
|
|
35
36
|
}), /*#__PURE__*/React.createElement(AuditLogs, null), /*#__PURE__*/React.createElement(MailerSettings, null), /*#__PURE__*/React.createElement(SchedulerConfigs, null), /*#__PURE__*/React.createElement(TrashBinConfigs, null), /*#__PURE__*/React.createElement(AdvancedContentOrganisation, null), /*#__PURE__*/React.createElement(WebsiteBuilder, null), /*#__PURE__*/React.createElement(WorkflowComponents.App.WorkflowsAdminApp, null), /*#__PURE__*/React.createElement(CmsWorkflows, null), /*#__PURE__*/React.createElement(WebsiteBuilderWorkflows, null), props.children);
|
|
36
37
|
};
|
package/Admin.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["React","memo","Admin","BaseAdmin","SystemInstallerProvider","HeadlessCMS","AdminUI","FileManager","GraphQLPlayground","AccessManagement","imagePlugin","fileStorageS3Plugin","createApolloClient","apolloLinks","AuditLogs","LexicalEditorActions","Module","MailerSettings","Websockets","RecordLocking","TrashBinConfigs","AdvancedContentOrganisation","Extension","WebsiteBuilder","SchedulerConfigs","Components","WorkflowComponents","CmsWorkflows","WebsiteBuilderWorkflows","App","props","createLegacyPlugins","container","createElement","WorkflowsAdminApp","children"],"sources":["Admin.tsx"],"sourcesContent":["import React, { memo } from \"react\";\nimport type { AdminProps as BaseAdminProps } from \"@webiny/app-admin\";\nimport { Admin as BaseAdmin, SystemInstallerProvider } from \"@webiny/app-admin\";\nimport { HeadlessCMS } from \"@webiny/app-headless-cms\";\nimport { AdminUI } from \"@webiny/app-admin-ui\";\nimport { FileManager } from \"@webiny/app-file-manager/app.js\";\nimport { GraphQLPlayground } from \"@webiny/app-graphql-playground\";\nimport { AccessManagement } from \"@webiny/app-security-access-management\";\nimport { imagePlugin } from \"@webiny/app/plugins/index.js\";\nimport fileStorageS3Plugin from \"@webiny/app-file-manager-s3\";\nimport { createApolloClient } from \"./apolloClientFactory.js\";\nimport apolloLinks from \"./apolloLinks.js\";\nimport { AuditLogs } from \"@webiny/app-audit-logs\";\nimport { LexicalEditorActions } from \"@webiny/lexical-editor-actions\";\nimport { Module as MailerSettings } from \"@webiny/app-mailer\";\nimport { Websockets } from \"@webiny/app-websockets\";\nimport { RecordLocking } from \"@webiny/app-record-locking\";\nimport { TrashBinConfigs } from \"@webiny/app-trash-bin\";\nimport { AdvancedContentOrganisation } from \"@webiny/app-aco\";\nimport { Extension as WebsiteBuilder } from \"@webiny/app-website-builder/Extension.js\";\nimport { SchedulerConfigs } from \"@webiny/app-headless-cms-scheduler\";\nimport { Components as WorkflowComponents } from \"@webiny/app-workflows\";\nimport { CmsWorkflows } from \"@webiny/app-headless-cms-workflows\";\nimport { WebsiteBuilderWorkflows } from \"@webiny/app-website-builder-workflows\";\nimport { Container } from \"@webiny/di\";\nimport type { PluginCollection } from \"@webiny/plugins/types.js\";\n\nexport interface AdminProps\n extends Omit<BaseAdminProps, \"createApolloClient\" | \"createLegacyPlugins\"> {\n children?: React.ReactNode;\n}\n\nconst App = (props: AdminProps) => {\n const createLegacyPlugins = (container: Container): PluginCollection => {\n return [imagePlugin(), fileStorageS3Plugin(), apolloLinks(container)];\n };\n\n return (\n <BaseAdmin\n createApolloClient={createApolloClient}\n createLegacyPlugins={createLegacyPlugins}\n >\n <AdminUI />\n <AccessManagement />\n <SystemInstallerProvider />\n <FileManager />\n <GraphQLPlayground createApolloClient={createApolloClient} />\n <Websockets />\n <RecordLocking />\n <LexicalEditorActions />\n <HeadlessCMS createApolloClient={createApolloClient} />\n <AuditLogs />\n <MailerSettings />\n <SchedulerConfigs />\n <TrashBinConfigs />\n <AdvancedContentOrganisation />\n <WebsiteBuilder />\n <WorkflowComponents.App.WorkflowsAdminApp />\n <CmsWorkflows />\n <WebsiteBuilderWorkflows />\n {props.children}\n </BaseAdmin>\n );\n};\n\nexport const Admin = memo<AdminProps>(App);\n"],"mappings":"AAAA,OAAOA,KAAK,IAAIC,IAAI,QAAQ,OAAO;AAEnC,SAASC,KAAK,IAAIC,SAAS,EAAEC,uBAAuB,QAAQ,mBAAmB;AAC/E,SAASC,WAAW,QAAQ,0BAA0B;AACtD,SAASC,OAAO,QAAQ,sBAAsB;AAC9C,SAASC,WAAW,QAAQ,iCAAiC;AAC7D,SAASC,iBAAiB,QAAQ,gCAAgC;AAClE,SAASC,gBAAgB,QAAQ,wCAAwC;AACzE,SAASC,WAAW,QAAQ,8BAA8B;AAC1D,OAAOC,mBAAmB,MAAM,6BAA6B;AAC7D,SAASC,kBAAkB;AAC3B,OAAOC,WAAW;AAClB,SAASC,SAAS,QAAQ,wBAAwB;AAClD,SAASC,oBAAoB,QAAQ,gCAAgC;AACrE,SAASC,MAAM,IAAIC,cAAc,QAAQ,oBAAoB;AAC7D,SAASC,UAAU,QAAQ,wBAAwB;AACnD,SAASC,aAAa,QAAQ,4BAA4B;AAC1D,SAASC,eAAe,QAAQ,uBAAuB;AACvD,SAASC,2BAA2B,QAAQ,iBAAiB;AAC7D,SAASC,SAAS,IAAIC,cAAc,QAAQ,0CAA0C;AACtF,SAASC,gBAAgB,QAAQ,oCAAoC;AACrE,SAASC,UAAU,IAAIC,kBAAkB,QAAQ,uBAAuB;AACxE,SAASC,YAAY,QAAQ,oCAAoC;AACjE,SAASC,uBAAuB,QAAQ,uCAAuC;AAS/E,MAAMC,GAAG,GAAIC,KAAiB,IAAK;EAC/B,MAAMC,mBAAmB,GAAIC,SAAoB,IAAuB;IACpE,OAAO,CAACtB,WAAW,CAAC,CAAC,EAAEC,mBAAmB,CAAC,CAAC,EAAEE,WAAW,CAACmB,SAAS,CAAC,CAAC;EACzE,CAAC;EAED,
|
|
1
|
+
{"version":3,"names":["React","memo","Admin","BaseAdmin","SystemInstallerProvider","HeadlessCMS","AdminUI","FileManager","GraphQLPlayground","SdkPlayground","AccessManagement","imagePlugin","fileStorageS3Plugin","createApolloClient","apolloLinks","AuditLogs","LexicalEditorActions","Module","MailerSettings","Websockets","RecordLocking","TrashBinConfigs","AdvancedContentOrganisation","Extension","WebsiteBuilder","SchedulerConfigs","Components","WorkflowComponents","CmsWorkflows","WebsiteBuilderWorkflows","App","props","createLegacyPlugins","container","createElement","WorkflowsAdminApp","children"],"sources":["Admin.tsx"],"sourcesContent":["import React, { memo } from \"react\";\nimport type { AdminProps as BaseAdminProps } from \"@webiny/app-admin\";\nimport { Admin as BaseAdmin, SystemInstallerProvider } from \"@webiny/app-admin\";\nimport { HeadlessCMS } from \"@webiny/app-headless-cms\";\nimport { AdminUI } from \"@webiny/app-admin-ui\";\nimport { FileManager } from \"@webiny/app-file-manager/app.js\";\nimport { GraphQLPlayground } from \"@webiny/app-graphql-playground\";\nimport { SdkPlayground } from \"@webiny/app-sdk-playground\";\nimport { AccessManagement } from \"@webiny/app-security-access-management\";\nimport { imagePlugin } from \"@webiny/app/plugins/index.js\";\nimport fileStorageS3Plugin from \"@webiny/app-file-manager-s3\";\nimport { createApolloClient } from \"./apolloClientFactory.js\";\nimport apolloLinks from \"./apolloLinks.js\";\nimport { AuditLogs } from \"@webiny/app-audit-logs\";\nimport { LexicalEditorActions } from \"@webiny/lexical-editor-actions\";\nimport { Module as MailerSettings } from \"@webiny/app-mailer\";\nimport { Websockets } from \"@webiny/app-websockets\";\nimport { RecordLocking } from \"@webiny/app-record-locking\";\nimport { TrashBinConfigs } from \"@webiny/app-trash-bin\";\nimport { AdvancedContentOrganisation } from \"@webiny/app-aco\";\nimport { Extension as WebsiteBuilder } from \"@webiny/app-website-builder/Extension.js\";\nimport { SchedulerConfigs } from \"@webiny/app-headless-cms-scheduler\";\nimport { Components as WorkflowComponents } from \"@webiny/app-workflows\";\nimport { CmsWorkflows } from \"@webiny/app-headless-cms-workflows\";\nimport { WebsiteBuilderWorkflows } from \"@webiny/app-website-builder-workflows\";\nimport { Container } from \"@webiny/di\";\nimport type { PluginCollection } from \"@webiny/plugins/types.js\";\n\nexport interface AdminProps\n extends Omit<BaseAdminProps, \"createApolloClient\" | \"createLegacyPlugins\"> {\n children?: React.ReactNode;\n}\n\nconst App = (props: AdminProps) => {\n const createLegacyPlugins = (container: Container): PluginCollection => {\n return [imagePlugin(), fileStorageS3Plugin(), apolloLinks(container)];\n };\n\n return (\n <BaseAdmin\n createApolloClient={createApolloClient}\n createLegacyPlugins={createLegacyPlugins}\n >\n <AdminUI />\n <AccessManagement />\n <SystemInstallerProvider />\n <FileManager />\n <GraphQLPlayground createApolloClient={createApolloClient} />\n <SdkPlayground />\n <Websockets />\n <RecordLocking />\n <LexicalEditorActions />\n <HeadlessCMS createApolloClient={createApolloClient} />\n <AuditLogs />\n <MailerSettings />\n <SchedulerConfigs />\n <TrashBinConfigs />\n <AdvancedContentOrganisation />\n <WebsiteBuilder />\n <WorkflowComponents.App.WorkflowsAdminApp />\n <CmsWorkflows />\n <WebsiteBuilderWorkflows />\n {props.children}\n </BaseAdmin>\n );\n};\n\nexport const Admin = memo<AdminProps>(App);\n"],"mappings":"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","ignoreList":[]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webiny/app-serverless-cms",
|
|
3
|
-
"version": "6.0.0-rc.
|
|
3
|
+
"version": "6.0.0-rc.3",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"repository": {
|
|
@@ -11,29 +11,30 @@
|
|
|
11
11
|
"license": "MIT",
|
|
12
12
|
"dependencies": {
|
|
13
13
|
"@emotion/react": "11.10.8",
|
|
14
|
-
"@webiny/app": "6.0.0-rc.
|
|
15
|
-
"@webiny/app-aco": "6.0.0-rc.
|
|
16
|
-
"@webiny/app-admin": "6.0.0-rc.
|
|
17
|
-
"@webiny/app-admin-ui": "6.0.0-rc.
|
|
18
|
-
"@webiny/app-audit-logs": "6.0.0-rc.
|
|
19
|
-
"@webiny/app-file-manager": "6.0.0-rc.
|
|
20
|
-
"@webiny/app-file-manager-s3": "6.0.0-rc.
|
|
21
|
-
"@webiny/app-graphql-playground": "6.0.0-rc.
|
|
22
|
-
"@webiny/app-headless-cms": "6.0.0-rc.
|
|
23
|
-
"@webiny/app-headless-cms-scheduler": "6.0.0-rc.
|
|
24
|
-
"@webiny/app-headless-cms-workflows": "6.0.0-rc.
|
|
25
|
-
"@webiny/app-mailer": "6.0.0-rc.
|
|
26
|
-
"@webiny/app-record-locking": "6.0.0-rc.
|
|
27
|
-
"@webiny/app-
|
|
28
|
-
"@webiny/app-
|
|
29
|
-
"@webiny/app-
|
|
30
|
-
"@webiny/app-website-builder
|
|
31
|
-
"@webiny/app-
|
|
32
|
-
"@webiny/app-
|
|
14
|
+
"@webiny/app": "6.0.0-rc.3",
|
|
15
|
+
"@webiny/app-aco": "6.0.0-rc.3",
|
|
16
|
+
"@webiny/app-admin": "6.0.0-rc.3",
|
|
17
|
+
"@webiny/app-admin-ui": "6.0.0-rc.3",
|
|
18
|
+
"@webiny/app-audit-logs": "6.0.0-rc.3",
|
|
19
|
+
"@webiny/app-file-manager": "6.0.0-rc.3",
|
|
20
|
+
"@webiny/app-file-manager-s3": "6.0.0-rc.3",
|
|
21
|
+
"@webiny/app-graphql-playground": "6.0.0-rc.3",
|
|
22
|
+
"@webiny/app-headless-cms": "6.0.0-rc.3",
|
|
23
|
+
"@webiny/app-headless-cms-scheduler": "6.0.0-rc.3",
|
|
24
|
+
"@webiny/app-headless-cms-workflows": "6.0.0-rc.3",
|
|
25
|
+
"@webiny/app-mailer": "6.0.0-rc.3",
|
|
26
|
+
"@webiny/app-record-locking": "6.0.0-rc.3",
|
|
27
|
+
"@webiny/app-sdk-playground": "6.0.0-rc.3",
|
|
28
|
+
"@webiny/app-security-access-management": "6.0.0-rc.3",
|
|
29
|
+
"@webiny/app-trash-bin": "6.0.0-rc.3",
|
|
30
|
+
"@webiny/app-website-builder": "6.0.0-rc.3",
|
|
31
|
+
"@webiny/app-website-builder-workflows": "6.0.0-rc.3",
|
|
32
|
+
"@webiny/app-websockets": "6.0.0-rc.3",
|
|
33
|
+
"@webiny/app-workflows": "6.0.0-rc.3",
|
|
33
34
|
"@webiny/di": "0.2.3",
|
|
34
|
-
"@webiny/lexical-editor-actions": "6.0.0-rc.
|
|
35
|
-
"@webiny/lexical-theme": "6.0.0-rc.
|
|
36
|
-
"@webiny/plugins": "6.0.0-rc.
|
|
35
|
+
"@webiny/lexical-editor-actions": "6.0.0-rc.3",
|
|
36
|
+
"@webiny/lexical-theme": "6.0.0-rc.3",
|
|
37
|
+
"@webiny/plugins": "6.0.0-rc.3",
|
|
37
38
|
"apollo-cache": "1.3.5",
|
|
38
39
|
"apollo-client": "2.6.10",
|
|
39
40
|
"apollo-link": "1.2.14",
|
|
@@ -44,7 +45,7 @@
|
|
|
44
45
|
},
|
|
45
46
|
"devDependencies": {
|
|
46
47
|
"@emotion/babel-plugin": "11.13.5",
|
|
47
|
-
"@webiny/build-tools": "6.0.0-rc.
|
|
48
|
+
"@webiny/build-tools": "6.0.0-rc.3",
|
|
48
49
|
"rimraf": "6.1.3",
|
|
49
50
|
"typescript": "5.9.3"
|
|
50
51
|
},
|
|
@@ -64,5 +65,5 @@
|
|
|
64
65
|
]
|
|
65
66
|
}
|
|
66
67
|
},
|
|
67
|
-
"gitHead": "
|
|
68
|
+
"gitHead": "228fe25e1a17f248d566bce1c33d11c291955513"
|
|
68
69
|
}
|