@strapi/admin 4.2.0-beta.0 → 4.2.0-beta.1
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/src/assets/images/icon_offline-cloud.svg +5 -0
- package/admin/src/components/AuthenticatedApp/utils/api.js +1 -1
- package/admin/src/components/AutoReloadOverlayBlockerProvider/Blocker.js +1 -1
- package/admin/src/components/LeftMenu/index.js +2 -2
- package/admin/src/content-manager/components/CollectionTypeFormWrapper/index.js +17 -3
- package/admin/src/content-manager/components/ComponentInitializer/index.js +9 -4
- package/admin/src/content-manager/components/DynamicTable/CellContent/RelationMultiple/index.js +135 -0
- package/admin/src/content-manager/components/DynamicTable/CellContent/RelationSingle/index.js +32 -0
- package/admin/src/content-manager/components/DynamicTable/CellContent/RepeatableComponent/index.js +62 -0
- package/admin/src/content-manager/components/DynamicTable/CellContent/SingleComponent/index.js +37 -0
- package/admin/src/content-manager/components/DynamicTable/CellContent/index.js +52 -27
- package/admin/src/content-manager/components/DynamicTable/CellContent/utils/hasContent.js +64 -0
- package/admin/src/content-manager/components/DynamicTable/CellContent/utils/isSingleRelation.js +3 -0
- package/admin/src/content-manager/components/DynamicTable/TableRows/index.js +1 -1
- package/admin/src/content-manager/components/EditViewDataManagerProvider/index.js +37 -37
- package/admin/src/content-manager/components/EditViewDataManagerProvider/utils/getAPIInnerError.js +18 -0
- package/admin/src/content-manager/components/EditViewDataManagerProvider/utils/handleAPIError.js +15 -0
- package/admin/src/content-manager/components/EditViewDataManagerProvider/utils/index.js +0 -1
- package/admin/src/content-manager/components/EditViewDataManagerProvider/utils/schema.js +9 -7
- package/admin/src/content-manager/components/FieldComponent/index.js +0 -1
- package/admin/src/content-manager/components/InputUID/index.js +1 -5
- package/admin/src/content-manager/components/Inputs/index.js +4 -6
- package/admin/src/content-manager/components/RepeatableComponent/AccordionGroupCustom/index.js +3 -1
- package/admin/src/content-manager/components/RepeatableComponent/index.js +3 -18
- package/admin/src/content-manager/components/RepeatableComponent/utils/getComponentErrorKeys.js +10 -0
- package/admin/src/content-manager/components/SelectMany/index.js +1 -1
- package/admin/src/content-manager/components/SelectOne/index.js +1 -1
- package/admin/src/content-manager/components/SingleTypeFormWrapper/index.js +15 -3
- package/admin/src/content-manager/components/Wysiwyg/index.js +3 -4
- package/admin/src/content-manager/hooks/useFetchContentTypeLayout/utils/formatLayouts.js +23 -2
- package/admin/src/content-manager/pages/EditSettingsView/components/FieldButtonContent.js +1 -1
- package/admin/src/content-manager/pages/EditSettingsView/components/FormModal.js +1 -1
- package/admin/src/content-manager/pages/EditSettingsView/components/ModalForm.js +6 -1
- package/admin/src/content-manager/pages/EditSettingsView/index.js +3 -3
- package/admin/src/content-manager/pages/EditSettingsView/utils/layout.js +7 -1
- package/admin/src/content-manager/pages/EditView/DeleteLink/index.js +1 -4
- package/admin/src/content-manager/pages/EditView/DraftAndPublishBadge/index.js +1 -4
- package/admin/src/content-manager/pages/EditView/Header/index.js +1 -1
- package/admin/src/content-manager/pages/ListSettingsView/components/EditFieldForm.js +1 -1
- package/admin/src/content-manager/pages/ListSettingsView/index.js +2 -2
- package/admin/src/content-manager/pages/ListView/actions.js +2 -1
- package/admin/src/content-manager/pages/ListView/index.js +2 -5
- package/admin/src/content-manager/pages/ListView/reducer.js +55 -21
- package/admin/src/content-manager/pages/ListView/selectors.js +3 -6
- package/admin/src/content-manager/pages/ListViewLayoutManager/index.js +1 -1
- package/admin/src/content-manager/testUtils/data.js +5 -1
- package/admin/src/content-manager/utils/checkIfAttributeIsDisplayable.js +1 -1
- package/admin/src/content-manager/utils/isFieldTypeNumber.js +3 -0
- package/admin/src/hooks/useMenu/reducer.js +3 -3
- package/admin/src/hooks/useNavigatorOnLine/index.js +31 -0
- package/admin/src/hooks/useReleaseNotification/index.js +1 -1
- package/admin/src/hooks/useSettingsMenu/init.js +2 -2
- package/admin/src/layouts/UnauthenticatedLayout/index.js +1 -1
- package/admin/src/pages/Admin/Onboarding/index.js +1 -1
- package/admin/src/pages/Admin/index.js +15 -5
- package/admin/src/pages/App/constants.js +1 -0
- package/admin/src/pages/App/index.js +17 -3
- package/admin/src/pages/App/reducer.js +22 -0
- package/admin/src/pages/AuthPage/components/Login/BaseLogin.js +1 -1
- package/admin/src/pages/AuthPage/components/Register/index.js +6 -6
- package/admin/src/pages/AuthPage/components/ResetPassword/index.js +3 -3
- package/admin/src/pages/HomePage/ContentBlocks.js +1 -1
- package/admin/src/pages/HomePage/SocialLinks.js +1 -4
- package/admin/src/pages/InstalledPluginsPage/Plugins.js +3 -3
- package/admin/src/pages/InstalledPluginsPage/index.js +1 -1
- package/admin/src/pages/MarketplacePage/components/MissingPluginBanner/index.js +40 -0
- package/admin/src/pages/MarketplacePage/components/PageHeader/index.js +46 -0
- package/admin/src/pages/MarketplacePage/components/PluginCard/InstallPluginButton.js +66 -0
- package/admin/src/pages/MarketplacePage/components/PluginCard/index.js +13 -36
- package/admin/src/pages/MarketplacePage/index.js +65 -27
- package/admin/src/pages/ProfilePage/index.js +5 -5
- package/admin/src/pages/SettingsPage/components/SettingsNav/index.js +1 -1
- package/admin/src/pages/SettingsPage/index.js +1 -1
- package/admin/src/pages/SettingsPage/pages/ApiTokens/EditView/components/LoadingView/index.js +1 -1
- package/admin/src/pages/SettingsPage/pages/ApiTokens/EditView/index.js +3 -3
- package/admin/src/pages/SettingsPage/pages/ApiTokens/ListView/DynamicTable/DeleteButton/index.js +1 -1
- package/admin/src/pages/SettingsPage/pages/ApplicationInfosPage/index.js +1 -1
- package/admin/src/pages/SettingsPage/pages/Roles/EditPage/components/ConditionsButton/index.js +1 -1
- package/admin/src/pages/SettingsPage/pages/Roles/EditPage/components/RoleForm/index.js +3 -3
- package/admin/src/pages/SettingsPage/pages/Roles/EditPage/index.js +2 -2
- package/admin/src/pages/SettingsPage/pages/Roles/ListPage/index.js +6 -6
- package/admin/src/pages/SettingsPage/pages/Users/EditPage/index.js +5 -5
- package/admin/src/pages/SettingsPage/pages/Users/EditPage/utils/layout.js +1 -1
- package/admin/src/pages/SettingsPage/pages/Users/ListPage/DynamicTable/TableRows/index.js +1 -1
- package/admin/src/pages/SettingsPage/pages/Users/ListPage/ModalForm/index.js +1 -1
- package/admin/src/pages/SettingsPage/pages/Users/ListPage/ModalForm/utils/stepper.js +1 -1
- package/admin/src/pages/SettingsPage/pages/Users/ListPage/index.js +1 -1
- package/admin/src/pages/SettingsPage/pages/Webhooks/EditView/components/WebhookForm/index.js +3 -3
- package/admin/src/pages/SettingsPage/pages/Webhooks/ListView/index.js +7 -7
- package/admin/src/pages/UseCasePage/index.js +2 -2
- package/admin/src/reducers.js +4 -2
- package/admin/src/translations/ar.json +0 -6
- package/admin/src/translations/cs.json +0 -8
- package/admin/src/translations/de.json +244 -49
- package/admin/src/translations/dk.json +0 -53
- package/admin/src/translations/en.json +87 -99
- package/admin/src/translations/es.json +0 -53
- package/admin/src/translations/fr.json +0 -56
- package/admin/src/translations/he.json +0 -24
- package/admin/src/translations/hu.json +0 -53
- package/admin/src/translations/id.json +0 -21
- package/admin/src/translations/it.json +0 -22
- package/admin/src/translations/ja.json +0 -53
- package/admin/src/translations/ko.json +0 -56
- package/admin/src/translations/ms.json +0 -12
- package/admin/src/translations/nl.json +0 -53
- package/admin/src/translations/no.json +0 -22
- package/admin/src/translations/pl.json +0 -26
- package/admin/src/translations/pt-BR.json +0 -53
- package/admin/src/translations/pt.json +0 -13
- package/admin/src/translations/ru.json +0 -25
- package/admin/src/translations/sk.json +0 -21
- package/admin/src/translations/sv.json +0 -6
- package/admin/src/translations/th.json +0 -21
- package/admin/src/translations/tr.json +0 -13
- package/admin/src/translations/uk.json +0 -12
- package/admin/src/translations/vi.json +1 -10
- package/admin/src/translations/zh-Hans.json +0 -53
- package/admin/src/translations/zh.json +0 -56
- package/admin/src/tsconfig.json +10 -0
- package/build/1856.e2bce2e8.chunk.js +171 -0
- package/build/2481.5fe150c7.chunk.js +184 -0
- package/build/272.d442e5ca.chunk.js +349 -0
- package/build/2912.5a7b0406.chunk.js +252 -0
- package/build/306.28d21ab8.chunk.js +896 -0
- package/build/4073.4765687b.chunk.js +1 -0
- package/build/4715.7f616cf6.chunk.js +387 -0
- package/build/4800.d3ebc81d.chunk.js +1 -0
- package/build/497.2ba35e90.chunk.js +284 -0
- package/build/4982.91235074.chunk.js +310 -0
- package/build/6229.f558fd19.chunk.js +194 -0
- package/build/6404.25d0f0d8.chunk.js +508 -0
- package/build/6925.fafef528.chunk.js +761 -0
- package/build/7841.0d73dde1.chunk.js +252 -0
- package/build/7863.996e70df.chunk.js +112 -0
- package/build/8469.3af1823d.chunk.js +1 -0
- package/build/9298.dab64a1b.chunk.js +345 -0
- package/build/948.d64fb515.chunk.js +2 -0
- package/build/9853.6cc1043a.chunk.js +354 -0
- package/build/9988.9b6e1d79.chunk.js +161 -0
- package/build/Admin-authenticatedApp.d26b3032.chunk.js +80 -0
- package/build/Admin_homePage.fc4a8408.chunk.js +71 -0
- package/build/Admin_marketplace.c406a140.chunk.js +11 -0
- package/build/Admin_pluginsPage.788fb2f6.chunk.js +1 -0
- package/build/Admin_profilePage.27191ed2.chunk.js +15 -0
- package/build/Admin_settingsPage.c40fdef1.chunk.js +170 -0
- package/build/a6b842e0b6d2b61135d1.svg +5 -0
- package/build/admin-edit-roles-page.c69fe8ab.chunk.js +1 -0
- package/build/admin-edit-users.be232f6b.chunk.js +10 -0
- package/build/admin-users.47d06d24.chunk.js +11 -0
- package/build/api-tokens-create-page.9774f0fe.chunk.js +1 -0
- package/build/api-tokens-edit-page.8f03c9a1.chunk.js +1 -0
- package/build/api-tokens-list-page.126fbca6.chunk.js +15 -0
- package/build/ar-json.d4cb26d9.chunk.js +1 -0
- package/build/codemirror-addon-closebrackets.c0f97916.chunk.js +2 -0
- package/build/codemirror-addon-lint-js.7c35dcb0.chunk.js +1 -0
- package/build/codemirror-addon-lint.505ff1d4.chunk.js +1 -0
- package/build/codemirror-addon-mark-selection.653e904d.chunk.js +1 -0
- package/build/codemirror-css.b467b1de.chunk.js +346 -0
- package/build/codemirror-javacript.41bdefda.chunk.js +1 -0
- package/build/codemirror-theme.cf9f9eb6.chunk.js +34 -0
- package/build/content-manager.ca66b566.chunk.js +1204 -0
- package/build/content-type-builder-translation-ar-json.142327af.chunk.js +1 -0
- package/build/content-type-builder-translation-cs-json.4aafb972.chunk.js +1 -0
- package/build/content-type-builder-translation-de-json.0d7696b9.chunk.js +1 -0
- package/build/content-type-builder-translation-dk-json.4729f055.chunk.js +1 -0
- package/build/content-type-builder-translation-en-json.e5110288.chunk.js +1 -0
- package/build/content-type-builder-translation-es-json.333cf47f.chunk.js +1 -0
- package/build/content-type-builder-translation-fr-json.aa6eeea8.chunk.js +1 -0
- package/build/content-type-builder-translation-id-json.7c00a32a.chunk.js +1 -0
- package/build/content-type-builder-translation-it-json.a906b389.chunk.js +1 -0
- package/build/content-type-builder-translation-ja-json.87f71930.chunk.js +1 -0
- package/build/content-type-builder-translation-ko-json.51201b12.chunk.js +1 -0
- package/build/content-type-builder-translation-ms-json.963a1a01.chunk.js +1 -0
- package/build/content-type-builder-translation-nl-json.c46c8f30.chunk.js +1 -0
- package/build/content-type-builder-translation-pl-json.a866acda.chunk.js +1 -0
- package/build/content-type-builder-translation-pt-BR-json.5739a2aa.chunk.js +1 -0
- package/build/content-type-builder-translation-pt-json.766bd747.chunk.js +1 -0
- package/build/content-type-builder-translation-ru-json.cf8d7c5c.chunk.js +1 -0
- package/build/content-type-builder-translation-sk-json.3a6defe0.chunk.js +1 -0
- package/build/content-type-builder-translation-th-json.c96a2d3f.chunk.js +1 -0
- package/build/content-type-builder-translation-tr-json.2e52bc60.chunk.js +1 -0
- package/build/content-type-builder-translation-uk-json.d8c0b6dd.chunk.js +1 -0
- package/build/content-type-builder-translation-zh-Hans-json.92a27f59.chunk.js +1 -0
- package/build/content-type-builder-translation-zh-json.2cc55621.chunk.js +1 -0
- package/build/content-type-builder.d12fd5cd.chunk.js +141 -0
- package/build/cropper-css.ecc0d670.chunk.js +306 -0
- package/build/cs-json.c8f28ba8.chunk.js +1 -0
- package/build/de-json.0b92acd2.chunk.js +1 -0
- package/build/dk-json.9f1bc016.chunk.js +1 -0
- package/build/email-settings-page.d807edfd.chunk.js +103 -0
- package/build/{email-translation-de-json.559a7d5f.chunk.js → email-translation-ar-json.c624512d.chunk.js} +1 -1
- package/build/{email-translation-ar-json.95d90eb4.chunk.js → email-translation-cs-json.cb18caab.chunk.js} +1 -1
- package/build/{email-translation-it-json.3de61cb6.chunk.js → email-translation-de-json.54743260.chunk.js} +1 -1
- package/build/{email-translation-dk-json.f8a595bf.chunk.js → email-translation-dk-json.f323fe4e.chunk.js} +1 -1
- package/build/{email-translation-en-json.fa0dc92b.chunk.js → email-translation-en-json.6da7e388.chunk.js} +1 -1
- package/build/{email-translation-es-json.eb303dea.chunk.js → email-translation-es-json.9021417d.chunk.js} +1 -1
- package/build/{email-translation-fr-json.49c3c888.chunk.js → email-translation-fr-json.9f125db0.chunk.js} +1 -1
- package/build/email-translation-id-json.3bcae5f5.chunk.js +1 -0
- package/build/{email-translation-cs-json.dfd1f3f2.chunk.js → email-translation-it-json.6ffd1774.chunk.js} +1 -1
- package/build/email-translation-ja-json.72b3f73c.chunk.js +1 -0
- package/build/email-translation-ko-json.e61d4e7a.chunk.js +1 -0
- package/build/email-translation-ms-json.b2b11e05.chunk.js +1 -0
- package/build/email-translation-nl-json.5349635f.chunk.js +1 -0
- package/build/email-translation-pl-json.6da50d0f.chunk.js +1 -0
- package/build/email-translation-pt-BR-json.2c98ab20.chunk.js +1 -0
- package/build/email-translation-pt-json.959ea070.chunk.js +1 -0
- package/build/email-translation-ru-json.d508cf3e.chunk.js +1 -0
- package/build/email-translation-sk-json.fa1fd4b3.chunk.js +1 -0
- package/build/email-translation-th-json.989cfecc.chunk.js +1 -0
- package/build/email-translation-tr-json.87f2feb3.chunk.js +1 -0
- package/build/email-translation-uk-json.0396a803.chunk.js +1 -0
- package/build/email-translation-vi-json.c0d8c414.chunk.js +1 -0
- package/build/email-translation-zh-Hans-json.b463cb25.chunk.js +1 -0
- package/build/email-translation-zh-json.3455468b.chunk.js +1 -0
- package/build/en-json.3e1a222e.chunk.js +1 -0
- package/build/es-json.2a5a9fc1.chunk.js +1 -0
- package/build/fontawesome-css-all.04f33619.chunk.js +4618 -0
- package/build/fontawesome-css.477ba714.chunk.js +6 -0
- package/build/fontawesome-js.252cc5f3.chunk.js +7 -0
- package/build/fr-json.84064a0b.chunk.js +1 -0
- package/build/he-json.d40da459.chunk.js +1 -0
- package/build/highlight.js.3381ffc3.chunk.js +86 -0
- package/build/hu-json.c81ce352.chunk.js +1 -0
- package/build/i18n-settings-page.c8f3b78b.chunk.js +101 -0
- package/build/i18n-translation-de-json.92534555.chunk.js +1 -0
- package/build/{i18n-translation-dk-json.ecf02d28.chunk.js → i18n-translation-dk-json.54f410ca.chunk.js} +1 -1
- package/build/{i18n-translation-en-json.4d823f62.chunk.js → i18n-translation-en-json.85bc892c.chunk.js} +1 -1
- package/build/i18n-translation-es-json.488206ae.chunk.js +1 -0
- package/build/i18n-translation-fr-json.0839d68d.chunk.js +1 -0
- package/build/i18n-translation-ko-json.d0bc1203.chunk.js +1 -0
- package/build/i18n-translation-zh-Hans-json.560a98e3.chunk.js +1 -0
- package/build/id-json.fad45d17.chunk.js +1 -0
- package/build/index.html +1 -1
- package/build/it-json.12df4cdf.chunk.js +1 -0
- package/build/ja-json.850237e9.chunk.js +1 -0
- package/build/ko-json.2f3d256e.chunk.js +1 -0
- package/build/main.36da7eeb.js +7918 -0
- package/build/ms-json.836ed013.chunk.js +1 -0
- package/build/nl-json.465b173f.chunk.js +1 -0
- package/build/no-json.e8749dd4.chunk.js +1 -0
- package/build/pl-json.94f05d2c.chunk.js +1 -0
- package/build/pt-BR-json.6301d49b.chunk.js +1 -0
- package/build/pt-json.c23020ab.chunk.js +1 -0
- package/build/ru-json.4560906c.chunk.js +1 -0
- package/build/runtime~main.251e9cca.js +2 -0
- package/build/sk-json.5b33afc2.chunk.js +1 -0
- package/build/sso-settings-page.dfb0b917.chunk.js +1 -0
- package/build/sv-json.cdcac02d.chunk.js +1 -0
- package/build/th-json.3aadaec6.chunk.js +1 -0
- package/build/tr-json.276e59fe.chunk.js +1 -0
- package/build/uk-json.5b5b9c27.chunk.js +1 -0
- package/build/upload-settings.17202e3b.chunk.js +101 -0
- package/build/upload-translation-de-json.b642da08.chunk.js +1 -0
- package/build/upload-translation-dk-json.fc61df13.chunk.js +1 -0
- package/build/upload-translation-en-json.59269508.chunk.js +1 -0
- package/build/upload-translation-es-json.8ec935ef.chunk.js +1 -0
- package/build/upload-translation-fr-json.eb9b4f84.chunk.js +1 -0
- package/build/upload-translation-he-json.c226f2dc.chunk.js +1 -0
- package/build/upload-translation-it-json.8e58456e.chunk.js +1 -0
- package/build/upload-translation-ja-json.1378a2e7.chunk.js +1 -0
- package/build/upload-translation-ko-json.5e06e112.chunk.js +1 -0
- package/build/upload-translation-ms-json.dc3bf0d7.chunk.js +1 -0
- package/build/upload-translation-pl-json.6071e38c.chunk.js +1 -0
- package/build/upload-translation-pt-BR-json.7e8d9550.chunk.js +1 -0
- package/build/upload-translation-ru-json.da2529f3.chunk.js +1 -0
- package/build/upload-translation-sk-json.bfdf4f09.chunk.js +1 -0
- package/build/upload-translation-th-json.6a48b826.chunk.js +1 -0
- package/build/upload-translation-uk-json.6fb09148.chunk.js +1 -0
- package/build/upload-translation-zh-Hans-json.c9622577.chunk.js +1 -0
- package/build/upload-translation-zh-json.711f804b.chunk.js +1 -0
- package/build/upload.d647d59d.chunk.js +105 -0
- package/build/users-advanced-settings-page.22690469.chunk.js +101 -0
- package/build/users-email-settings-page.0a096388.chunk.js +1 -0
- package/build/users-permissions-translation-ar-json.e8123ed2.chunk.js +1 -0
- package/build/users-permissions-translation-cs-json.e6649c5f.chunk.js +1 -0
- package/build/users-permissions-translation-de-json.c3628843.chunk.js +1 -0
- package/build/users-permissions-translation-dk-json.fe39c74b.chunk.js +1 -0
- package/build/users-permissions-translation-en-json.3fe86528.chunk.js +1 -0
- package/build/users-permissions-translation-es-json.1bb9cde2.chunk.js +1 -0
- package/build/users-permissions-translation-fr-json.172aa69f.chunk.js +1 -0
- package/build/users-permissions-translation-id-json.5aadd143.chunk.js +1 -0
- package/build/users-permissions-translation-it-json.7d377480.chunk.js +1 -0
- package/build/users-permissions-translation-ja-json.4967badf.chunk.js +1 -0
- package/build/users-permissions-translation-ko-json.3be77775.chunk.js +1 -0
- package/build/users-permissions-translation-ms-json.ea8a2baf.chunk.js +1 -0
- package/build/users-permissions-translation-nl-json.d638c4ce.chunk.js +1 -0
- package/build/users-permissions-translation-pl-json.3c4fe81c.chunk.js +1 -0
- package/build/users-permissions-translation-pt-BR-json.f6791a86.chunk.js +1 -0
- package/build/users-permissions-translation-pt-json.38afed04.chunk.js +1 -0
- package/build/users-permissions-translation-ru-json.319d51ef.chunk.js +1 -0
- package/build/users-permissions-translation-sk-json.ba1cd385.chunk.js +1 -0
- package/build/users-permissions-translation-sv-json.83c60841.chunk.js +1 -0
- package/build/users-permissions-translation-th-json.68873214.chunk.js +1 -0
- package/build/users-permissions-translation-tr-json.cdc49a3c.chunk.js +1 -0
- package/build/users-permissions-translation-uk-json.63eaa01c.chunk.js +1 -0
- package/build/users-permissions-translation-vi-json.dccc02fc.chunk.js +1 -0
- package/build/users-permissions-translation-zh-Hans-json.c3fd301b.chunk.js +1 -0
- package/build/users-permissions-translation-zh-json.e03ae2a4.chunk.js +1 -0
- package/build/users-providers-settings-page.bfe7755a.chunk.js +1 -0
- package/build/users-roles-settings-page.487f3346.chunk.js +30 -0
- package/build/vi-json.3d14e91e.chunk.js +1 -0
- package/build/webhook-edit-page.043fe03f.chunk.js +23 -0
- package/build/webhook-list-page.2d2d71a1.chunk.js +132 -0
- package/build/zh-Hans-json.c84ce330.chunk.js +1 -0
- package/build/zh-json.96bf6019.chunk.js +1 -0
- package/ee/admin/pages/AuthPage/components/Providers/SSOProviders.js +1 -1
- package/ee/admin/pages/SettingsPage/SingleSignOn/index.js +2 -2
- package/ee/admin/pages/SettingsPage/pages/Roles/CreatePage/index.js +5 -5
- package/ee/admin/pages/SettingsPage/pages/Roles/ListPage/index.js +6 -6
- package/index.js +32 -27
- package/package.json +10 -12
- package/scripts/build.js +32 -4
- package/server/bootstrap.js +9 -7
- package/server/config/index.js +0 -1
- package/server/controllers/admin.js +22 -1
- package/server/policies/index.js +1 -0
- package/server/policies/isTelemetryEnabled.js +16 -0
- package/server/routes/admin.js +9 -0
- package/server/services/api-token.js +15 -14
- package/server/services/token.js +13 -0
- package/server/validation/permission.js +5 -1
- package/utils/create-cache-dir.js +60 -15
- package/utils/get-custom-app-config-file.js +23 -0
- package/utils/get-plugins-path.js +26 -0
- package/utils/should-build-admin.js +7 -6
- package/utils/watch-admin-files.js +4 -1
- package/webpack.config.js +100 -91
- package/admin/src/content-manager/components/DynamicTable/CellContent/Relation/PopoverContent.js +0 -87
- package/admin/src/content-manager/components/DynamicTable/CellContent/Relation/index.js +0 -107
- package/admin/src/content-manager/components/EditViewDataManagerProvider/utils/getYupInnerErrors.js +0 -17
- package/build/1094.e1db3a1a.chunk.js +0 -1
- package/build/1454.f065d92a.chunk.js +0 -2
- package/build/1454.f065d92a.chunk.js.LICENSE.txt +0 -7
- package/build/1856.a30bd09b.chunk.js +0 -1
- package/build/2481.4eae9408.chunk.js +0 -1
- package/build/2912.c5f76e65.chunk.js +0 -1
- package/build/4362.b3d67035.chunk.js +0 -1
- package/build/4715.8a2db02a.chunk.js +0 -1
- package/build/4800.f4a1384a.chunk.js +0 -1
- package/build/497.3fcf6196.chunk.js +0 -1
- package/build/4982.601f6196.chunk.js +0 -1
- package/build/6404.3c2d0a81.chunk.js +0 -1
- package/build/6925.bd694b04.chunk.js +0 -2
- package/build/6925.bd694b04.chunk.js.LICENSE.txt +0 -5
- package/build/7841.490dbbf1.chunk.js +0 -1
- package/build/8042.1d66811a.chunk.js +0 -2
- package/build/8042.1d66811a.chunk.js.LICENSE.txt +0 -4
- package/build/8469.8d819a3c.chunk.js +0 -1
- package/build/849.17f011e8.chunk.js +0 -1
- package/build/9235.ced8aebf.chunk.js +0 -1
- package/build/9260.4233fae2.chunk.js +0 -2
- package/build/9260.4233fae2.chunk.js.LICENSE.txt +0 -15
- package/build/9853.6ff595fa.chunk.js +0 -1
- package/build/9988.fe838ba6.chunk.js +0 -2
- package/build/9988.fe838ba6.chunk.js.LICENSE.txt +0 -9
- package/build/Admin-authenticatedApp.16bed71f.chunk.js +0 -1
- package/build/Admin_homePage.fd1fc572.chunk.js +0 -1
- package/build/Admin_marketplace.89a0a014.chunk.js +0 -1
- package/build/Admin_pluginsPage.97a514db.chunk.js +0 -1
- package/build/Admin_profilePage.d7192d06.chunk.js +0 -1
- package/build/Admin_settingsPage.a8c7ded5.chunk.js +0 -1
- package/build/admin-edit-roles-page.49b6f01d.chunk.js +0 -1
- package/build/admin-edit-users.381e4a0d.chunk.js +0 -1
- package/build/admin-users.2740c223.chunk.js +0 -1
- package/build/api-tokens-create-page.db17bb39.chunk.js +0 -1
- package/build/api-tokens-edit-page.c7299a77.chunk.js +0 -1
- package/build/api-tokens-list-page.26a05a21.chunk.js +0 -1
- package/build/ar-json.6a2565af.chunk.js +0 -1
- package/build/codemirror-addon-closebrackets.0cfe64d0.chunk.js +0 -1
- package/build/codemirror-addon-lint-js.a6eeef9c.chunk.js +0 -1
- package/build/codemirror-addon-lint.91580cda.chunk.js +0 -1
- package/build/codemirror-addon-mark-selection.4dca121f.chunk.js +0 -1
- package/build/codemirror-css.48b438c9.chunk.js +0 -1
- package/build/codemirror-javacript.8c7c015d.chunk.js +0 -1
- package/build/codemirror-theme.b5559efc.chunk.js +0 -1
- package/build/content-manager.f1c46a88.chunk.js +0 -1
- package/build/content-type-builder-translation-ar-json.f1fedc12.chunk.js +0 -1
- package/build/content-type-builder-translation-cs-json.89f7272e.chunk.js +0 -1
- package/build/content-type-builder-translation-de-json.0205697c.chunk.js +0 -1
- package/build/content-type-builder-translation-dk-json.235ff56e.chunk.js +0 -1
- package/build/content-type-builder-translation-en-json.8034dab6.chunk.js +0 -1
- package/build/content-type-builder-translation-es-json.13b2e2aa.chunk.js +0 -1
- package/build/content-type-builder-translation-fr-json.bee621f7.chunk.js +0 -1
- package/build/content-type-builder-translation-id-json.2fbf4f8c.chunk.js +0 -1
- package/build/content-type-builder-translation-it-json.a1afd7a9.chunk.js +0 -1
- package/build/content-type-builder-translation-ja-json.1459fb88.chunk.js +0 -1
- package/build/content-type-builder-translation-ko-json.d2080111.chunk.js +0 -1
- package/build/content-type-builder-translation-ms-json.048122eb.chunk.js +0 -1
- package/build/content-type-builder-translation-nl-json.8d59e86b.chunk.js +0 -1
- package/build/content-type-builder-translation-pl-json.01dc068c.chunk.js +0 -1
- package/build/content-type-builder-translation-pt-BR-json.d311d056.chunk.js +0 -1
- package/build/content-type-builder-translation-pt-json.4893266f.chunk.js +0 -1
- package/build/content-type-builder-translation-ru-json.1285874d.chunk.js +0 -1
- package/build/content-type-builder-translation-sk-json.0064156b.chunk.js +0 -1
- package/build/content-type-builder-translation-th-json.5f690524.chunk.js +0 -1
- package/build/content-type-builder-translation-tr-json.696283a5.chunk.js +0 -1
- package/build/content-type-builder-translation-uk-json.87496bf9.chunk.js +0 -1
- package/build/content-type-builder-translation-zh-Hans-json.283c640e.chunk.js +0 -1
- package/build/content-type-builder-translation-zh-json.77aa2275.chunk.js +0 -1
- package/build/content-type-builder.cda4ba3c.chunk.js +0 -1
- package/build/cropper-css.ace19575.chunk.js +0 -1
- package/build/cs-json.8df09876.chunk.js +0 -1
- package/build/de-json.6e14f607.chunk.js +0 -1
- package/build/dk-json.be388470.chunk.js +0 -1
- package/build/email-settings-page.40ee2bda.chunk.js +0 -1
- package/build/email-translation-id-json.e3c2101d.chunk.js +0 -1
- package/build/email-translation-ja-json.66337e44.chunk.js +0 -1
- package/build/email-translation-ko-json.52bbd7b4.chunk.js +0 -1
- package/build/email-translation-ms-json.e39256df.chunk.js +0 -1
- package/build/email-translation-nl-json.12d28adb.chunk.js +0 -1
- package/build/email-translation-pl-json.9585a84e.chunk.js +0 -1
- package/build/email-translation-pt-BR-json.6c04b3ef.chunk.js +0 -1
- package/build/email-translation-pt-json.0239be04.chunk.js +0 -1
- package/build/email-translation-ru-json.f3b4fecc.chunk.js +0 -1
- package/build/email-translation-sk-json.76dbaaa6.chunk.js +0 -1
- package/build/email-translation-th-json.25ad73e7.chunk.js +0 -1
- package/build/email-translation-tr-json.ae04a9f2.chunk.js +0 -1
- package/build/email-translation-uk-json.03b27b08.chunk.js +0 -1
- package/build/email-translation-vi-json.3e1dd5b3.chunk.js +0 -1
- package/build/email-translation-zh-Hans-json.0df4ca59.chunk.js +0 -1
- package/build/email-translation-zh-json.82978eb0.chunk.js +0 -1
- package/build/en-json.73a610d6.chunk.js +0 -1
- package/build/es-json.61553168.chunk.js +0 -1
- package/build/fontawesome-css-all.3b89f909.chunk.js +0 -1
- package/build/fontawesome-css.36cff9ae.chunk.js +0 -1
- package/build/fontawesome-js.2639263c.chunk.js +0 -2
- package/build/fontawesome-js.2639263c.chunk.js.LICENSE.txt +0 -4
- package/build/fr-json.a9ce0700.chunk.js +0 -1
- package/build/he-json.1742494e.chunk.js +0 -1
- package/build/highlight.js.6321cb45.chunk.js +0 -1
- package/build/hu-json.e667d285.chunk.js +0 -1
- package/build/i18n-settings-page.c4018651.chunk.js +0 -1
- package/build/i18n-translation-de-json.c5c9054f.chunk.js +0 -1
- package/build/i18n-translation-es-json.7049afa2.chunk.js +0 -1
- package/build/i18n-translation-fr-json.c6367bc9.chunk.js +0 -1
- package/build/i18n-translation-ko-json.aecb7e01.chunk.js +0 -1
- package/build/i18n-translation-zh-Hans-json.258b2e1a.chunk.js +0 -1
- package/build/id-json.d87ebb20.chunk.js +0 -1
- package/build/it-json.a2880b81.chunk.js +0 -1
- package/build/ja-json.e13f04e8.chunk.js +0 -1
- package/build/ko-json.2200c9c9.chunk.js +0 -1
- package/build/main.12d62562.js +0 -2
- package/build/main.12d62562.js.LICENSE.txt +0 -91
- package/build/ms-json.3a062984.chunk.js +0 -1
- package/build/nl-json.30ce02cb.chunk.js +0 -1
- package/build/no-json.9af40e9d.chunk.js +0 -1
- package/build/pl-json.fd373053.chunk.js +0 -1
- package/build/pt-BR-json.30e2d716.chunk.js +0 -1
- package/build/pt-json.3aaf9e05.chunk.js +0 -1
- package/build/ru-json.78c56e1c.chunk.js +0 -1
- package/build/runtime~main.21bf3a67.js +0 -1
- package/build/sk-json.c0bf144c.chunk.js +0 -1
- package/build/sso-settings-page.121dd0a6.chunk.js +0 -1
- package/build/sv-json.aad187b9.chunk.js +0 -1
- package/build/th-json.e2b4a0fb.chunk.js +0 -1
- package/build/tr-json.0add11cd.chunk.js +0 -1
- package/build/uk-json.eb78e77e.chunk.js +0 -1
- package/build/upload-settings.4401f36d.chunk.js +0 -1
- package/build/upload-translation-de-json.1308dce5.chunk.js +0 -1
- package/build/upload-translation-dk-json.0d4e855f.chunk.js +0 -1
- package/build/upload-translation-en-json.c334dd82.chunk.js +0 -1
- package/build/upload-translation-es-json.81b13eac.chunk.js +0 -1
- package/build/upload-translation-fr-json.1bec79ec.chunk.js +0 -1
- package/build/upload-translation-he-json.1d28982f.chunk.js +0 -1
- package/build/upload-translation-it-json.7d4bdc5a.chunk.js +0 -1
- package/build/upload-translation-ja-json.97fcacd8.chunk.js +0 -1
- package/build/upload-translation-ko-json.d7345fe1.chunk.js +0 -1
- package/build/upload-translation-ms-json.081effd5.chunk.js +0 -1
- package/build/upload-translation-pl-json.2dfe78bb.chunk.js +0 -1
- package/build/upload-translation-pt-BR-json.65936d7b.chunk.js +0 -1
- package/build/upload-translation-ru-json.2d3b6f69.chunk.js +0 -1
- package/build/upload-translation-sk-json.f15c7fd6.chunk.js +0 -1
- package/build/upload-translation-th-json.6d3c2370.chunk.js +0 -1
- package/build/upload-translation-uk-json.a6c38449.chunk.js +0 -1
- package/build/upload-translation-zh-Hans-json.f6b26c45.chunk.js +0 -1
- package/build/upload-translation-zh-json.06052336.chunk.js +0 -1
- package/build/upload.5a2dded7.chunk.js +0 -1
- package/build/users-advanced-settings-page.8905d8d8.chunk.js +0 -1
- package/build/users-email-settings-page.5abb9575.chunk.js +0 -1
- package/build/users-permissions-translation-ar-json.bdddd0d7.chunk.js +0 -1
- package/build/users-permissions-translation-cs-json.7881d3ff.chunk.js +0 -1
- package/build/users-permissions-translation-de-json.8d53c619.chunk.js +0 -1
- package/build/users-permissions-translation-dk-json.89d41c4b.chunk.js +0 -1
- package/build/users-permissions-translation-en-json.21b0fd2f.chunk.js +0 -1
- package/build/users-permissions-translation-es-json.a4f81eaa.chunk.js +0 -1
- package/build/users-permissions-translation-fr-json.a2172545.chunk.js +0 -1
- package/build/users-permissions-translation-id-json.8f17982a.chunk.js +0 -1
- package/build/users-permissions-translation-it-json.87952a24.chunk.js +0 -1
- package/build/users-permissions-translation-ja-json.5915d9ef.chunk.js +0 -1
- package/build/users-permissions-translation-ko-json.f1ca6cc4.chunk.js +0 -1
- package/build/users-permissions-translation-ms-json.2268324c.chunk.js +0 -1
- package/build/users-permissions-translation-nl-json.4e1231dd.chunk.js +0 -1
- package/build/users-permissions-translation-pl-json.107638b5.chunk.js +0 -1
- package/build/users-permissions-translation-pt-BR-json.8dafc053.chunk.js +0 -1
- package/build/users-permissions-translation-pt-json.3322464f.chunk.js +0 -1
- package/build/users-permissions-translation-ru-json.5709c5a0.chunk.js +0 -1
- package/build/users-permissions-translation-sk-json.fe7cc044.chunk.js +0 -1
- package/build/users-permissions-translation-sv-json.e7e1684b.chunk.js +0 -1
- package/build/users-permissions-translation-th-json.bb544ee3.chunk.js +0 -1
- package/build/users-permissions-translation-tr-json.30f3ca90.chunk.js +0 -1
- package/build/users-permissions-translation-uk-json.634f2569.chunk.js +0 -1
- package/build/users-permissions-translation-vi-json.605d88bc.chunk.js +0 -1
- package/build/users-permissions-translation-zh-Hans-json.85480dab.chunk.js +0 -1
- package/build/users-permissions-translation-zh-json.99932731.chunk.js +0 -1
- package/build/users-providers-settings-page.368893ed.chunk.js +0 -1
- package/build/users-roles-settings-page.a2f6277a.chunk.js +0 -1
- package/build/vi-json.1e850069.chunk.js +0 -1
- package/build/webhook-edit-page.d170eda1.chunk.js +0 -1
- package/build/webhook-list-page.c21b5a9a.chunk.js +0 -1
- package/build/zh-Hans-json.55f6475b.chunk.js +0 -1
- package/build/zh-json.c3c2b225.chunk.js +0 -1
- package/server/config/api-token.js +0 -7
|
@@ -7,11 +7,9 @@
|
|
|
7
7
|
"Auth.form.button.go-home": "回到首頁",
|
|
8
8
|
"Auth.form.button.login": "登入",
|
|
9
9
|
"Auth.form.button.login.providers.error": "無法透過所選的驗證方式連接你的帳號。",
|
|
10
|
-
"Auth.form.button.login.providers.see-more": "查看更多",
|
|
11
10
|
"Auth.form.button.login.strapi": "透過 Strapi 登入",
|
|
12
11
|
"Auth.form.button.password-recovery": "找回密碼",
|
|
13
12
|
"Auth.form.button.register": "準備開始",
|
|
14
|
-
"Auth.form.button.reset-password": "更改密碼",
|
|
15
13
|
"Auth.form.confirmPassword.label": "再確認一次密碼",
|
|
16
14
|
"Auth.form.currentPassword.label": "目前密碼",
|
|
17
15
|
"Auth.form.email.label": "電子郵件",
|
|
@@ -39,7 +37,6 @@
|
|
|
39
37
|
"Auth.form.lastname.placeholder": "例如 Doe",
|
|
40
38
|
"Auth.form.password.hide-password": "隱藏密碼",
|
|
41
39
|
"Auth.form.password.hint": "密碼至少要有 8 個字元, 1 個大寫字母, 1 個小寫字母和 1 個數字。",
|
|
42
|
-
"Auth.form.password.label": "密碼",
|
|
43
40
|
"Auth.form.password.show-password": "顯示密碼",
|
|
44
41
|
"Auth.form.register.news.label": "有新功能和改進時通知我 (打勾表示你接受 {terms} 和 {policy})。",
|
|
45
42
|
"Auth.form.register.subtitle": "你填寫的的帳號資料只用在管理後台的身份驗證,所有儲存的資料都放在你的資料庫中。",
|
|
@@ -57,7 +54,6 @@
|
|
|
57
54
|
"Auth.login.sso.subtitle": "透過 SSO 登入你的帳號",
|
|
58
55
|
"Auth.privacy-policy-agreement.policy": "隱私權政策",
|
|
59
56
|
"Auth.privacy-policy-agreement.terms": "服務條款",
|
|
60
|
-
"Auth.reset-password.title": "重設密碼",
|
|
61
57
|
"Content Manager": "資料管理",
|
|
62
58
|
"Content Type Builder": "內容型別建立",
|
|
63
59
|
"Documentation": "文件",
|
|
@@ -88,14 +84,12 @@
|
|
|
88
84
|
"Settings.apiTokens.copy.lastWarning": "請務必複製這個 token,,錯過就不會再顯示了!",
|
|
89
85
|
"Settings.apiTokens.create": "新增",
|
|
90
86
|
"Settings.apiTokens.description": "已產生可使用 API 的 Tokens 列表",
|
|
91
|
-
"Settings.apiTokens.details": "詳細資料",
|
|
92
87
|
"Settings.apiTokens.emptyStateLayout": "你還沒有任何內容...",
|
|
93
88
|
"Settings.apiTokens.notification.copied": "Token 已經複製到剪貼簿。",
|
|
94
89
|
"Settings.apiTokens.title": "API Tokens",
|
|
95
90
|
"Settings.apiTokens.types.full-access": "完全控制",
|
|
96
91
|
"Settings.apiTokens.types.read-only": "唯讀",
|
|
97
92
|
"Settings.application.description": "查看你的專案詳細資料",
|
|
98
|
-
"Settings.application.details": "詳細資料",
|
|
99
93
|
"Settings.application.edition-title": "目前方案",
|
|
100
94
|
"Settings.application.get-help": "取得協助",
|
|
101
95
|
"Settings.application.link-pricing": "查看全部價格",
|
|
@@ -118,8 +112,6 @@
|
|
|
118
112
|
"Settings.permissions.conditions.none-selected": "隨時",
|
|
119
113
|
"Settings.permissions.conditions.or": "或",
|
|
120
114
|
"Settings.permissions.conditions.when": "當",
|
|
121
|
-
"Settings.permissions.menu.link.roles.label": "角色",
|
|
122
|
-
"Settings.permissions.menu.link.users.label": "使用者",
|
|
123
115
|
"Settings.permissions.select-all-by-permission": "選擇所有 {label} 權限",
|
|
124
116
|
"Settings.permissions.select-by-permission": "選擇 {label} 權限",
|
|
125
117
|
"Settings.permissions.users.create": "新增使用者",
|
|
@@ -129,7 +121,6 @@
|
|
|
129
121
|
"Settings.permissions.users.form.sso": "透過 SSO 登入",
|
|
130
122
|
"Settings.permissions.users.form.sso.description": "當啟動這個選項時 (ON),使用者可以透過 SSO 登入",
|
|
131
123
|
"Settings.permissions.users.listview.header.subtitle": "找到 {number, plural, =0 {# users} one {# user } other {# users}}",
|
|
132
|
-
"Settings.permissions.users.listview.header.title": "使用者",
|
|
133
124
|
"Settings.permissions.users.tabs.label": "分頁權限",
|
|
134
125
|
"Settings.profile.form.notify.data.loaded": "你的個人檔案資料已經載入",
|
|
135
126
|
"Settings.profile.form.section.experience.clear.select": "清除已選的介面語言",
|
|
@@ -139,9 +130,7 @@
|
|
|
139
130
|
"Settings.profile.form.section.experience.interfaceLanguageHelp": "只有你的介面會變為所選擇的語言。如果要為你的團隊提供其他語言,請參考此 {documentation}。",
|
|
140
131
|
"Settings.profile.form.section.experience.title": "體驗",
|
|
141
132
|
"Settings.profile.form.section.helmet.title": "使用者個人檔案",
|
|
142
|
-
"Settings.profile.form.section.password.title": "改變密碼",
|
|
143
133
|
"Settings.profile.form.section.profile.page.title": "個人檔案頁面",
|
|
144
|
-
"Settings.profile.form.section.profile.title": "個人檔案",
|
|
145
134
|
"Settings.roles.create.description": "定義賦予角色的權限",
|
|
146
135
|
"Settings.roles.create.title": "新增角色",
|
|
147
136
|
"Settings.roles.created": "角色已新增",
|
|
@@ -149,8 +138,6 @@
|
|
|
149
138
|
"Settings.roles.form.button.users-with-role": "{number, plural, =0 {# 使用者} one {# 使用者} other {# 使用者}} 是這個角色",
|
|
150
139
|
"Settings.roles.form.created": "已新增",
|
|
151
140
|
"Settings.roles.form.description": "角色的名字與描述",
|
|
152
|
-
"Settings.roles.form.input.description": "描述",
|
|
153
|
-
"Settings.roles.form.input.name": "名稱",
|
|
154
141
|
"Settings.roles.form.permission.property-label": "{label} 權限",
|
|
155
142
|
"Settings.roles.form.permissions.attributesPermissions": "欄位權限",
|
|
156
143
|
"Settings.roles.form.permissions.create": "新增",
|
|
@@ -158,14 +145,8 @@
|
|
|
158
145
|
"Settings.roles.form.permissions.publish": "發布",
|
|
159
146
|
"Settings.roles.form.permissions.read": "讀取",
|
|
160
147
|
"Settings.roles.form.permissions.update": "更新",
|
|
161
|
-
"Settings.roles.form.title": "詳細資料",
|
|
162
148
|
"Settings.roles.list.button.add": "加入新的角色",
|
|
163
149
|
"Settings.roles.list.description": "角色列表",
|
|
164
|
-
"Settings.roles.list.header.actions": "動作",
|
|
165
|
-
"Settings.roles.list.header.description": "描述",
|
|
166
|
-
"Settings.roles.list.header.name": "名稱",
|
|
167
|
-
"Settings.roles.list.header.users": "使用者",
|
|
168
|
-
"Settings.roles.title": "角色",
|
|
169
150
|
"Settings.roles.title.singular": "角色",
|
|
170
151
|
"Settings.sso.description": "調整 Single Sign-On 功能的設定",
|
|
171
152
|
"Settings.sso.form.defaultRole.description": "它將新驗證的使用者附加到所選角色",
|
|
@@ -173,30 +154,23 @@
|
|
|
173
154
|
"Settings.sso.form.defaultRole.label": "預設角色",
|
|
174
155
|
"Settings.sso.form.registration.description": "SSO 登入帳號不存在時就新增使用者",
|
|
175
156
|
"Settings.sso.form.registration.label": "自動註冊",
|
|
176
|
-
"Settings.sso.form.settings.title": "設定",
|
|
177
157
|
"Settings.sso.title": "Single Sign-On",
|
|
178
158
|
"Settings.webhooks.create": "新增 webhook",
|
|
179
159
|
"Settings.webhooks.create.header": "新增一個 Header",
|
|
180
160
|
"Settings.webhooks.created": "Webhook 已新增",
|
|
181
|
-
"Settings.webhooks.disabled": "關閉",
|
|
182
|
-
"Settings.webhooks.enabled": "啟動",
|
|
183
161
|
"Settings.webhooks.event.publish-tooltip": "此事件僅適用於啟用了草稿/發布系統的內容",
|
|
184
162
|
"Settings.webhooks.events.create": "新增",
|
|
185
|
-
"Settings.webhooks.events.delete": "刪除",
|
|
186
163
|
"Settings.webhooks.events.update": "更新",
|
|
187
164
|
"Settings.webhooks.form.events": "事件",
|
|
188
165
|
"Settings.webhooks.form.headers": "Headers",
|
|
189
|
-
"Settings.webhooks.form.name": "名稱",
|
|
190
166
|
"Settings.webhooks.form.url": "Url",
|
|
191
167
|
"Settings.webhooks.headers.remove": "移除 header 第 {number} 行",
|
|
192
168
|
"Settings.webhooks.key": "Key",
|
|
193
|
-
"Settings.webhooks.list.all-entries.select": "選擇全部資料",
|
|
194
169
|
"Settings.webhooks.list.button.add": "新增新的 webhook",
|
|
195
170
|
"Settings.webhooks.list.description": "獲得 POST 更新通知",
|
|
196
171
|
"Settings.webhooks.list.empty.description": "新增你第一個 webhook",
|
|
197
172
|
"Settings.webhooks.list.empty.link": "參考我們的文件",
|
|
198
173
|
"Settings.webhooks.list.empty.title": "這裡還沒有 webhook",
|
|
199
|
-
"Settings.webhooks.list.select": "選擇",
|
|
200
174
|
"Settings.webhooks.list.th.actions": "動作",
|
|
201
175
|
"Settings.webhooks.list.th.status": "狀態",
|
|
202
176
|
"Settings.webhooks.singular": "webhook",
|
|
@@ -217,38 +191,25 @@
|
|
|
217
191
|
"Users.components.List.empty": "還沒有使用者...",
|
|
218
192
|
"Users.components.List.empty.withFilters": "沒有符合篩選條件的使用者...",
|
|
219
193
|
"Users.components.List.empty.withSearch": "沒有符合搜尋條件 ({search}) 的使用者...",
|
|
220
|
-
"admin.pages.MarketPlacePage.blog.link": "閱讀我們的部落格文章",
|
|
221
|
-
"admin.pages.MarketPlacePage.coming-soon.1": "讓 Strapi 變更棒的方法。",
|
|
222
|
-
"admin.pages.MarketPlacePage.coming-soon.2": "敬請期待。",
|
|
223
|
-
"admin.pages.MarketPlacePage.content.subtitle": "新的市集可以幫你從 Strapi 得到更多好處,我們正在努力提供探索及安裝的最佳體驗。",
|
|
224
|
-
"admin.pages.MarketPlacePage.content.subtitle.published": "線上市集幫助你充分使用 Strapi 的功能。此外,我們正在努力提供直接從應用程式探索和安裝擴充功能的最佳體驗。",
|
|
225
194
|
"admin.pages.MarketPlacePage.helmet": "市集 - 擴充功能",
|
|
226
|
-
"admin.pages.MarketPlacePage.illustration": "市集插圖",
|
|
227
|
-
"admin.pages.MarketPlacePage.market.link": "瀏覽線上市集",
|
|
228
|
-
"admin.pages.MarketPlacePage.published": "在這裡",
|
|
229
195
|
"admin.pages.MarketPlacePage.submit.plugin.link": "申請你的擴充功能",
|
|
230
196
|
"admin.pages.MarketPlacePage.subtitle": "充分利用 Strapi",
|
|
231
|
-
"admin.pages.MarketPlacePage.title": "市集",
|
|
232
197
|
"anErrorOccurred": "唉呀! 發生一些問題,請再試一次。",
|
|
233
198
|
"app.component.CopyToClipboard.label": "複製到剪貼簿",
|
|
234
199
|
"app.component.search.label": "搜尋 {target}",
|
|
235
|
-
"app.component.table.delete": "刪除 {target}",
|
|
236
200
|
"app.component.table.duplicate": "建立副本 {target}",
|
|
237
201
|
"app.component.table.edit": "編輯 {target}",
|
|
238
|
-
"app.component.table.select.all-entries": "全選所有項目",
|
|
239
202
|
"app.component.table.select.one-entry": "選擇 {target}",
|
|
240
203
|
"app.components.BlockLink.blog": "部落格",
|
|
241
204
|
"app.components.BlockLink.blog.content": "閱讀關於 Strapi 和相關的最新資訊",
|
|
242
205
|
"app.components.BlockLink.code": "範例",
|
|
243
206
|
"app.components.BlockLink.code.content": "透過測試社群開發的真實專案而學習。",
|
|
244
|
-
"app.components.BlockLink.documentation": "文件",
|
|
245
207
|
"app.components.BlockLink.documentation.content": "探索基礎觀念、指南和分解步驟說明。",
|
|
246
208
|
"app.components.BlockLink.tutorial": "引導",
|
|
247
209
|
"app.components.BlockLink.tutorial.content": "跟著手把手的教學引導使用和客製 Strapi",
|
|
248
210
|
"app.components.Button.cancel": "取消",
|
|
249
211
|
"app.components.Button.confirm": "確認",
|
|
250
212
|
"app.components.Button.reset": "重設",
|
|
251
|
-
"app.components.Button.save": "儲存",
|
|
252
213
|
"app.components.ComingSoonPage.comingSoon": "即將推出",
|
|
253
214
|
"app.components.ConfirmDialog.title": "確認",
|
|
254
215
|
"app.components.DownloadInfo.download": "下載中...",
|
|
@@ -256,7 +217,6 @@
|
|
|
256
217
|
"app.components.EmptyAttributes.title": "這裡還沒有任何欄位",
|
|
257
218
|
"app.components.EmptyStateLayout.content-document": "找不到資料",
|
|
258
219
|
"app.components.EmptyStateLayout.content-permissions": "你沒有權限存取這個內容",
|
|
259
|
-
"app.components.HeaderLayout.link.go-back": "返回",
|
|
260
220
|
"app.components.HomePage.button.blog": "到部落格上閱讀更多",
|
|
261
221
|
"app.components.HomePage.community": "探索開發社群",
|
|
262
222
|
"app.components.HomePage.community.content": "在不同的社群中與其他成員、貢獻者以及開發者討論。",
|
|
@@ -283,24 +243,18 @@
|
|
|
283
243
|
"app.components.LeftMenu.logout": "登出",
|
|
284
244
|
"app.components.LeftMenu.navbrand.title": "Strapi 控制台",
|
|
285
245
|
"app.components.LeftMenu.navbrand.workplace": "工作區",
|
|
286
|
-
"app.components.LeftMenu.profile": "個人檔案",
|
|
287
|
-
"app.components.LeftMenuFooter.documentation": "文件",
|
|
288
246
|
"app.components.LeftMenuFooter.help": "說明",
|
|
289
247
|
"app.components.LeftMenuFooter.poweredBy": "Powered by ",
|
|
290
248
|
"app.components.LeftMenuLinkContainer.collectionTypes": "集合型別",
|
|
291
249
|
"app.components.LeftMenuLinkContainer.configuration": "設定",
|
|
292
250
|
"app.components.LeftMenuLinkContainer.general": "一般",
|
|
293
|
-
"app.components.LeftMenuLinkContainer.installNewPlugin": "市集",
|
|
294
|
-
"app.components.LeftMenuLinkContainer.listPlugins": "擴充功能",
|
|
295
251
|
"app.components.LeftMenuLinkContainer.noPluginsInstalled": "目前沒有安裝任何擴充功能",
|
|
296
252
|
"app.components.LeftMenuLinkContainer.plugins": "擴充功能",
|
|
297
|
-
"app.components.LeftMenuLinkContainer.settings": "設定",
|
|
298
253
|
"app.components.LeftMenuLinkContainer.singleTypes": "單筆型別",
|
|
299
254
|
"app.components.ListPluginsPage.deletePlugin.description": "解除安裝擴充功能可能需要幾秒鐘的時間。",
|
|
300
255
|
"app.components.ListPluginsPage.deletePlugin.title": "解除安裝",
|
|
301
256
|
"app.components.ListPluginsPage.description": "這個專案安裝的擴充功能列表",
|
|
302
257
|
"app.components.ListPluginsPage.helmet.title": "擴充功能列表",
|
|
303
|
-
"app.components.ListPluginsPage.title": "擴充功能",
|
|
304
258
|
"app.components.Logout.logout": "登出",
|
|
305
259
|
"app.components.Logout.profile": "個人檔案",
|
|
306
260
|
"app.components.MarketplaceBanner": "在 Strapi Awesome 上發現社群建構的擴充套件,以及更多可驅動您的專案的精彩內容。",
|
|
@@ -332,7 +286,6 @@
|
|
|
332
286
|
"app.components.Users.MagicLink.connect": "將此連結傳送給使用者讓他可以開通帳號。",
|
|
333
287
|
"app.components.Users.MagicLink.connect.sso": "將此連結傳送給使用者讓他可以透過 SSO 登入。",
|
|
334
288
|
"app.components.Users.ModalCreateBody.block-title.details": "詳細資料",
|
|
335
|
-
"app.components.Users.ModalCreateBody.block-title.login": "登入設定",
|
|
336
289
|
"app.components.Users.ModalCreateBody.block-title.roles": "使用者的角色",
|
|
337
290
|
"app.components.Users.ModalCreateBody.block-title.roles.description": "您的使用者可以有一個或多個角色",
|
|
338
291
|
"app.components.Users.SortPicker.button-label": "排序按照",
|
|
@@ -344,7 +297,6 @@
|
|
|
344
297
|
"app.components.Users.SortPicker.sortby.lastname_desc": "姓氏 (Z 到 A)",
|
|
345
298
|
"app.components.Users.SortPicker.sortby.username_asc": "使用者名稱 (A 到 Z)",
|
|
346
299
|
"app.components.Users.SortPicker.sortby.username_desc": "使用者名稱 (Z 到 A)",
|
|
347
|
-
"app.components.go-back": "返回",
|
|
348
300
|
"app.components.listPlugins.button": "安裝新的擴充功能",
|
|
349
301
|
"app.components.listPlugins.title.none": "目前沒有安裝任何擴充功能",
|
|
350
302
|
"app.components.listPluginsPage.deletePlugin.error": "解除安裝擴充功能時發生了錯誤",
|
|
@@ -364,7 +316,6 @@
|
|
|
364
316
|
"app.utils.add-filter": "新增篩選器",
|
|
365
317
|
"app.utils.close-label": "關閉",
|
|
366
318
|
"app.utils.defaultMessage": " ",
|
|
367
|
-
"app.utils.delete": "刪除",
|
|
368
319
|
"app.utils.duplicate": "建立副本",
|
|
369
320
|
"app.utils.edit": "編輯",
|
|
370
321
|
"app.utils.errors.file-too-big.message": "檔案容量太大了",
|
|
@@ -426,8 +377,6 @@
|
|
|
426
377
|
"components.ProductionBlocker.description": "基於安全考量,我們需要在其他環境關閉這個擴充功能",
|
|
427
378
|
"components.ProductionBlocker.header": "這個擴充功能只能在開發環境中使用",
|
|
428
379
|
"components.Search.placeholder": "搜尋...",
|
|
429
|
-
"components.Select.placeholder": "選擇",
|
|
430
|
-
"components.TableHeader.actions-label": "動作",
|
|
431
380
|
"components.TableHeader.sort": "以 {label} 排序",
|
|
432
381
|
"components.Wysiwyg.ToggleMode.markdown-mode": "Markdown 模式",
|
|
433
382
|
"components.Wysiwyg.ToggleMode.preview-mode": "預覽模式",
|
|
@@ -629,7 +578,6 @@
|
|
|
629
578
|
"content-manager.permissions.not-allowed.update": "你不被允許查看文件",
|
|
630
579
|
"content-manager.plugin.description.long": "快速瀏覽、編輯、刪除資料庫的資料",
|
|
631
580
|
"content-manager.plugin.description.short": "快速瀏覽、編輯、刪除資料庫的資料",
|
|
632
|
-
"content-manager.plugin.name": "內容管理",
|
|
633
581
|
"content-manager.popUpWarning.bodyMessage.contentType.delete": "您確定要刪除這筆資料嗎?",
|
|
634
582
|
"content-manager.popUpWarning.bodyMessage.contentType.delete.all": "您確定要刪除這些資料嗎?",
|
|
635
583
|
"content-manager.popUpWarning.warning.cancelAllSettings": "您確定要放棄變更?",
|
|
@@ -645,10 +593,7 @@
|
|
|
645
593
|
"content-manager.success.record.save": "已儲存",
|
|
646
594
|
"content-manager.success.record.unpublish": "取消發佈",
|
|
647
595
|
"content-manager.utils.data-loaded": "這個{number, plural, =1 {項目} other {項目}}載入成功",
|
|
648
|
-
"form.button.continue": "繼續",
|
|
649
596
|
"form.button.done": "完成",
|
|
650
|
-
"form.button.finish": "完成",
|
|
651
|
-
"form.button.save": "儲存",
|
|
652
597
|
"global.prompt.unsaved": "您確定要離開網頁嗎?您的所有未存擋的編輯都會消失",
|
|
653
598
|
"notification.contentType.relations.conflict": "內容型別有關聯衝突",
|
|
654
599
|
"notification.default.title": "訊息:",
|
|
@@ -661,7 +606,6 @@
|
|
|
661
606
|
"notification.success.delete": "該項已被刪除",
|
|
662
607
|
"notification.success.saved": "已儲存",
|
|
663
608
|
"notification.success.title": "成功:",
|
|
664
|
-
"notification.version.update.link": "看更多",
|
|
665
609
|
"notification.version.update.message": "有新版本的 Strapi 可用!",
|
|
666
610
|
"notification.warning.title": "警告:",
|
|
667
611
|
"or": "或",
|
|
@@ -0,0 +1,171 @@
|
|
|
1
|
+
(self.webpackChunk_strapi_admin=self.webpackChunk_strapi_admin||[]).push([[1856],{11856:(V,on,I)=>{"use strict";V.exports=I(34796)},34796:function(V,on,I){(function(Z,X){V.exports=X(I(32735),I(19615))})(this,function(Z,X){return function(o){var f={};function t(a){if(f[a])return f[a].exports;var i=f[a]={i:a,l:!1,exports:{}};return o[a].call(i.exports,i,i.exports,t),i.l=!0,i.exports}return t.m=o,t.c=f,t.d=function(a,i,c){t.o(a,i)||Object.defineProperty(a,i,{enumerable:!0,get:c})},t.r=function(a){typeof Symbol!="undefined"&&Symbol.toStringTag&&Object.defineProperty(a,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(a,"__esModule",{value:!0})},t.t=function(a,i){if(1&i&&(a=t(a)),8&i||4&i&&typeof a=="object"&&a&&a.__esModule)return a;var c=Object.create(null);if(t.r(c),Object.defineProperty(c,"default",{enumerable:!0,value:a}),2&i&&typeof a!="string")for(var s in a)t.d(c,s,function(e){return a[e]}.bind(null,s));return c},t.n=function(a){var i=a&&a.__esModule?function(){return a.default}:function(){return a};return t.d(i,"a",i),i},t.o=function(a,i){return Object.prototype.hasOwnProperty.call(a,i)},t.p="",t(t.s=96)}({0:function(o,f,t){o.exports=t(17)()},1:function(o,f){o.exports=Z},10:function(o,f,t){var a=t(23),i=t(24),c=t(20),s=t(25);o.exports=function(e,u){return a(e)||i(e,u)||c(e,u)||s()},o.exports.default=o.exports,o.exports.__esModule=!0},13:function(o,f){function t(a){return typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?(o.exports=t=function(i){return typeof i},o.exports.default=o.exports,o.exports.__esModule=!0):(o.exports=t=function(i){return i&&typeof Symbol=="function"&&i.constructor===Symbol&&i!==Symbol.prototype?"symbol":typeof i},o.exports.default=o.exports,o.exports.__esModule=!0),t(a)}o.exports=t,o.exports.default=o.exports,o.exports.__esModule=!0},17:function(o,f,t){"use strict";var a=t(18);function i(){}function c(){}c.resetWarningCache=i,o.exports=function(){function s(m,d,y,p,n,r){if(r!==a){var l=new Error("Calling PropTypes validators directly is not supported by the `prop-types` package. Use PropTypes.checkPropTypes() to call them. Read more at http://fb.me/use-check-prop-types");throw l.name="Invariant Violation",l}}function e(){return s}s.isRequired=s;var u={array:s,bool:s,func:s,number:s,object:s,string:s,symbol:s,any:s,arrayOf:e,element:s,elementType:s,instanceOf:e,node:s,objectOf:e,oneOf:e,oneOfType:e,shape:e,exact:e,checkPropTypes:c,resetWarningCache:i};return u.PropTypes=u,u}},18:function(o,f,t){"use strict";o.exports="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED"},19:function(o,f){o.exports=function(t,a){(a==null||a>t.length)&&(a=t.length);for(var i=0,c=new Array(a);i<a;i++)c[i]=t[i];return c},o.exports.default=o.exports,o.exports.__esModule=!0},2:function(o,f){o.exports=X},20:function(o,f,t){var a=t(19);o.exports=function(i,c){if(i){if(typeof i=="string")return a(i,c);var s=Object.prototype.toString.call(i).slice(8,-1);return s==="Object"&&i.constructor&&(s=i.constructor.name),s==="Map"||s==="Set"?Array.from(i):s==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(s)?a(i,c):void 0}},o.exports.default=o.exports,o.exports.__esModule=!0},22:function(o,f){o.exports=function(t,a){if(t==null)return{};var i,c,s={},e=Object.keys(t);for(c=0;c<e.length;c++)i=e[c],a.indexOf(i)>=0||(s[i]=t[i]);return s},o.exports.default=o.exports,o.exports.__esModule=!0},23:function(o,f){o.exports=function(t){if(Array.isArray(t))return t},o.exports.default=o.exports,o.exports.__esModule=!0},24:function(o,f){o.exports=function(t,a){var i=t==null?null:typeof Symbol!="undefined"&&t[Symbol.iterator]||t["@@iterator"];if(i!=null){var c,s,e=[],u=!0,m=!1;try{for(i=i.call(t);!(u=(c=i.next()).done)&&(e.push(c.value),!a||e.length!==a);u=!0);}catch(d){m=!0,s=d}finally{try{u||i.return==null||i.return()}finally{if(m)throw s}}return e}},o.exports.default=o.exports,o.exports.__esModule=!0},25:function(o,f){o.exports=function(){throw new TypeError(`Invalid attempt to destructure non-iterable instance.
|
|
2
|
+
In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)},o.exports.default=o.exports,o.exports.__esModule=!0},3:function(o,f){o.exports=function(t,a){return a||(a=t.slice(0)),Object.freeze(Object.defineProperties(t,{raw:{value:Object.freeze(a)}}))},o.exports.default=o.exports,o.exports.__esModule=!0},4:function(o,f,t){"use strict";t.r(f),t.d(f,"Box",function(){return p});var a,i=t(3),c=t.n(i),s=t(0),e=t.n(s),u=t(2),m=t.n(u),d=t(7),y={color:!0},p=m.a.div.withConfig({shouldForwardProp:function(n,r){return!y[n]&&r(n)}})(a||(a=c()([`
|
|
3
|
+
// Font
|
|
4
|
+
font-size: `,`;
|
|
5
|
+
|
|
6
|
+
// Colors
|
|
7
|
+
background: `,`;
|
|
8
|
+
color: `,`;
|
|
9
|
+
|
|
10
|
+
// Spaces
|
|
11
|
+
`,`
|
|
12
|
+
`,`
|
|
13
|
+
`,`
|
|
14
|
+
`,`
|
|
15
|
+
`,`
|
|
16
|
+
`,`
|
|
17
|
+
`,`
|
|
18
|
+
`,`
|
|
19
|
+
`,`
|
|
20
|
+
|
|
21
|
+
// Responsive hiding
|
|
22
|
+
`,`
|
|
23
|
+
`,`
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
// Borders
|
|
27
|
+
border-radius: `,`;
|
|
28
|
+
border-style: `,`;
|
|
29
|
+
border-width: `,`;
|
|
30
|
+
border-color: `,`;
|
|
31
|
+
border: `,`;
|
|
32
|
+
|
|
33
|
+
// Shadows
|
|
34
|
+
box-shadow: `,`;
|
|
35
|
+
|
|
36
|
+
// Handlers
|
|
37
|
+
pointer-events: `,`;
|
|
38
|
+
&:hover {
|
|
39
|
+
`,`
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
// Display
|
|
43
|
+
display: `,`;
|
|
44
|
+
|
|
45
|
+
// Position
|
|
46
|
+
position: `,`;
|
|
47
|
+
left: `,`;
|
|
48
|
+
right: `,`;
|
|
49
|
+
top: `,`;
|
|
50
|
+
bottom: `,`;
|
|
51
|
+
z-index: `,`;
|
|
52
|
+
overflow: `,`;
|
|
53
|
+
cursor: `,`;
|
|
54
|
+
|
|
55
|
+
// Size
|
|
56
|
+
width: `,`;
|
|
57
|
+
max-width: `,`;
|
|
58
|
+
min-width: `,`;
|
|
59
|
+
height: `,`;
|
|
60
|
+
max-height: `,`;
|
|
61
|
+
min-height: `,`;
|
|
62
|
+
|
|
63
|
+
// Animation
|
|
64
|
+
transition: `,`;
|
|
65
|
+
transform: `,`;
|
|
66
|
+
animation: `,`;
|
|
67
|
+
|
|
68
|
+
//Flexbox children props
|
|
69
|
+
flex-shrink: `,`;
|
|
70
|
+
flex-grow: `,`;
|
|
71
|
+
flex-basis: `,`;
|
|
72
|
+
flex: `,`;
|
|
73
|
+
|
|
74
|
+
// Text
|
|
75
|
+
text-align: `,`;
|
|
76
|
+
text-transform: `,`;
|
|
77
|
+
line-height: `,`;
|
|
78
|
+
|
|
79
|
+
// Cursor
|
|
80
|
+
cursor: `,`;
|
|
81
|
+
`])),function(n){var r=n.fontSize;return n.theme.fontSizes[r]||r},function(n){var r=n.theme,l=n.background;return r.colors[l]},function(n){var r=n.theme,l=n.color;return r.colors[l]},function(n){var r=n.theme,l=n.padding;return Object(d.a)("padding",l,r)},function(n){var r=n.theme,l=n.paddingTop;return Object(d.a)("padding-top",l,r)},function(n){var r=n.theme,l=n.paddingRight;return Object(d.a)("padding-right",l,r)},function(n){var r=n.theme,l=n.paddingBottom;return Object(d.a)("padding-bottom",l,r)},function(n){var r=n.theme,l=n.paddingLeft;return Object(d.a)("padding-left",l,r)},function(n){var r=n.theme,l=n.marginLeft;return Object(d.a)("margin-left",l,r)},function(n){var r=n.theme,l=n.marginRight;return Object(d.a)("margin-right",l,r)},function(n){var r=n.theme,l=n.marginTop;return Object(d.a)("margin-top",l,r)},function(n){var r=n.theme,l=n.marginBottom;return Object(d.a)("margin-bottom",l,r)},function(n){var r=n.theme;return n.hiddenS?"".concat(r.mediaQueries.tablet," { display: none; }"):void 0},function(n){var r=n.theme;return n.hiddenXS?"".concat(r.mediaQueries.mobile," { display: none; }"):void 0},function(n){var r=n.theme,l=n.hasRadius,x=n.borderRadius;return l?r.borderRadius:x},function(n){return n.borderStyle},function(n){return n.borderWidth},function(n){var r=n.borderColor;return n.theme.colors[r]},function(n){var r=n.theme,l=n.borderColor,x=n.borderStyle,O=n.borderWidth;if(l&&!x&&!O)return"1px solid ".concat(r.colors[l])},function(n){var r=n.theme,l=n.shadow;return r.shadows[l]},function(n){return n.pointerEvents},function(n){var r=n._hover,l=n.theme;return r?r(l):void 0},function(n){return n.display},function(n){return n.position},function(n){var r=n.left;return n.theme.spaces[r]||r},function(n){var r=n.right;return n.theme.spaces[r]||r},function(n){var r=n.top;return n.theme.spaces[r]||r},function(n){var r=n.bottom;return n.theme.spaces[r]||r},function(n){return n.zIndex},function(n){return n.overflow},function(n){return n.cursor},function(n){var r=n.width;return n.theme.spaces[r]||r},function(n){var r=n.maxWidth;return n.theme.spaces[r]||r},function(n){var r=n.minWidth;return n.theme.spaces[r]||r},function(n){var r=n.height;return n.theme.spaces[r]||r},function(n){var r=n.maxHeight;return n.theme.spaces[r]||r},function(n){var r=n.minHeight;return n.theme.spaces[r]||r},function(n){return n.transition},function(n){return n.transform},function(n){return n.animation},function(n){return n.shrink},function(n){return n.grow},function(n){return n.basis},function(n){return n.flex},function(n){return n.textAlign},function(n){return n.textTransform},function(n){return n.lineHeight},function(n){return n.cursor});p.displayName="Box",p.defaultProps={background:void 0,borderColor:void 0,color:void 0,hiddenS:!1,hiddenXS:!1,padding:void 0,paddingTop:void 0,paddingRight:void 0,paddingBottom:void 0,paddingLeft:void 0,hasRadius:!1,shadow:void 0,children:null,shrink:void 0,grow:void 0,basis:void 0,flex:void 0,_hover:function(){}},p.propTypes={_hover:e.a.func,background:e.a.string,basis:e.a.oneOfType([e.a.string,e.a.string]),borderColor:e.a.string,children:e.a.oneOfType([e.a.node,e.a.string]),color:e.a.string,flex:e.a.oneOfType([e.a.string,e.a.string]),grow:e.a.oneOfType([e.a.string,e.a.string]),hasRadius:e.a.bool,hiddenS:e.a.bool,hiddenXS:e.a.bool,padding:e.a.oneOfType([e.a.number,e.a.arrayOf(e.a.number)]),paddingBottom:e.a.oneOfType([e.a.number,e.a.arrayOf(e.a.number)]),paddingLeft:e.a.oneOfType([e.a.number,e.a.arrayOf(e.a.number)]),paddingRight:e.a.oneOfType([e.a.number,e.a.arrayOf(e.a.number)]),paddingTop:e.a.oneOfType([e.a.number,e.a.arrayOf(e.a.number)]),shadow:e.a.string,shrink:e.a.oneOfType([e.a.string,e.a.string])}},47:function(o,f,t){"use strict";t.d(f,"a",function(){return i});var a=t(1),i=function(c,s){Object(a.useEffect)(function(){var e=new ResizeObserver(s);return Array.isArray(c)?c.map(function(u){return e.observe(u.current)}):e.observe(c.current),function(){e.disconnect()}},[])}},49:function(o,f,t){"use strict";t.r(f),t.d(f,"Grid",function(){return k}),t.d(f,"GridItem",function(){return P});var a,i=t(6),c=t.n(i),s=t(5),e=t.n(s),u=t(3),m=t.n(u),d=t(1),y=t.n(d),p=t(2),n=t.n(p),r=t(0),l=t.n(r),x=Object(d.createContext)({gap:0,gridCols:12}),O=t(4),W=t(7),S=["gap","gridCols"],F=n()(O.Box)(a||(a=m()([`
|
|
82
|
+
display: grid;
|
|
83
|
+
grid-template-columns: repeat(`,`, 1fr);
|
|
84
|
+
`,`
|
|
85
|
+
`])),function(h){return h.gridCols},function(h){var j=h.theme,w=h.gap;return Object(W.a)("gap",w,j)}),k=function(h){var j=h.gap,w=h.gridCols,L=e()(h,S);return y.a.createElement(x.Provider,{value:{gap:j,gridCols:w}},y.a.createElement(F,c()({gap:j,gridCols:w},L)))};k.defaultProps={gap:0,gridCols:12},k.propTypes={gap:l.a.oneOfType([l.a.number,l.a.arrayOf(l.a.number)]),gridCols:l.a.number};var R,N=["col","xs","s"],q=n.a.div(R||(R=m()([`
|
|
86
|
+
grid-column: span `,`;
|
|
87
|
+
max-width: 100%;
|
|
88
|
+
|
|
89
|
+
`,` {
|
|
90
|
+
grid-column: span `,`;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
`,` {
|
|
94
|
+
grid-column: span `,`;
|
|
95
|
+
}
|
|
96
|
+
`])),function(h){return h.col},function(h){return h.theme.mediaQueries.tablet},function(h){return h.s},function(h){return h.theme.mediaQueries.mobile},function(h){return h.xs}),P=function(h){var j=h.col,w=h.xs,L=h.s,A=e()(h,N),C=Object(d.useContext)(x),Y=C.gap,$=C.gridCols;return y.a.createElement(q,{gap:Y,gridCols:$,col:j,xs:w,s:L},y.a.createElement(O.Box,A))};P.defaultProps={col:void 0,s:void 0,xs:void 0},P.propTypes={col:l.a.number,s:l.a.number,xs:l.a.number}},5:function(o,f,t){var a=t(22);o.exports=function(i,c){if(i==null)return{};var s,e,u=a(i,c);if(Object.getOwnPropertySymbols){var m=Object.getOwnPropertySymbols(i);for(e=0;e<m.length;e++)s=m[e],c.indexOf(s)>=0||Object.prototype.propertyIsEnumerable.call(i,s)&&(u[s]=i[s])}return u},o.exports.default=o.exports,o.exports.__esModule=!0},6:function(o,f){function t(){return o.exports=t=Object.assign||function(a){for(var i=1;i<arguments.length;i++){var c=arguments[i];for(var s in c)Object.prototype.hasOwnProperty.call(c,s)&&(a[s]=c[s])}return a},o.exports.default=o.exports,o.exports.__esModule=!0,t.apply(this,arguments)}o.exports=t,o.exports.default=o.exports,o.exports.__esModule=!0},7:function(o,f,t){"use strict";var a=t(10),i=t.n(a),c=t(13),s=t.n(c);f.a=function(e,u,m){var d=u;if(Array.isArray(u)||s()(u)!=="object"||(d=[u==null?void 0:u.desktop,u==null?void 0:u.tablet,u==null?void 0:u.mobile]),d!==void 0){if(Array.isArray(d)){var y=d,p=i()(y,3),n=p[0],r=p[1],l=p[2],x="".concat(e,": ").concat(m.spaces[n],";");return r!==void 0&&(x+="".concat(m.mediaQueries.tablet,`{
|
|
97
|
+
`).concat(e,": ").concat(m.spaces[r],`;
|
|
98
|
+
}`)),l!==void 0&&(x+="".concat(m.mediaQueries.mobile,`{
|
|
99
|
+
`).concat(e,": ").concat(m.spaces[l],`;
|
|
100
|
+
}`)),x}var O=m.spaces[d]||d;return"".concat(e,": ").concat(O,";")}}},8:function(o,f,t){"use strict";t.r(f),t.d(f,"Typography",function(){return y});var a,i=t(3),c=t.n(i),s=t(0),e=t.n(s),u=t(2),m=["alpha","beta","delta","epsilon","omega","pi","sigma"],d={fontSize:!0,fontWeight:!0},y=t.n(u).a.span.withConfig({shouldForwardProp:function(p,n){return!d[p]&&n(p)}})(a||(a=c()([`
|
|
101
|
+
font-weight: `,`;
|
|
102
|
+
font-size: `,`;
|
|
103
|
+
line-height: `,`;
|
|
104
|
+
color: `,`;
|
|
105
|
+
text-transform: `,`;
|
|
106
|
+
`,`
|
|
107
|
+
`,`
|
|
108
|
+
`])),function(p){var n=p.theme,r=p.fontWeight;return n.fontWeights[r]},function(p){var n=p.theme,r=p.fontSize;return n.fontSizes[r]},function(p){var n=p.theme,r=p.lineHeight;return n.lineHeights[r]},function(p){var n=p.theme,r=p.textColor;return n.colors[r||"neutral800"]},function(p){return p.textTransform},function(p){return p.ellipsis&&`
|
|
109
|
+
display: block;
|
|
110
|
+
white-space: nowrap;
|
|
111
|
+
overflow: hidden;
|
|
112
|
+
text-overflow: ellipsis;
|
|
113
|
+
`},function(p){var n=p.variant,r=p.theme;switch(n){case"alpha":return`
|
|
114
|
+
font-weight: `.concat(r.fontWeights.bold,`;
|
|
115
|
+
font-size: `).concat(r.fontSizes[5],`;
|
|
116
|
+
line-height: `).concat(r.lineHeights[2],`;
|
|
117
|
+
`);case"beta":return`
|
|
118
|
+
font-weight: `.concat(r.fontWeights.bold,`;
|
|
119
|
+
font-size: `).concat(r.fontSizes[4],`;
|
|
120
|
+
line-height: `).concat(r.lineHeights[1],`;
|
|
121
|
+
`);case"delta":return`
|
|
122
|
+
font-weight: `.concat(r.fontWeights.semiBold,`;
|
|
123
|
+
font-size: `).concat(r.fontSizes[3],`;
|
|
124
|
+
line-height: `).concat(r.lineHeights[2],`;
|
|
125
|
+
`);case"epsilon":return`
|
|
126
|
+
font-size: `.concat(r.fontSizes[3],`;
|
|
127
|
+
line-height: `).concat(r.lineHeights[6],`;
|
|
128
|
+
`);case"omega":return`
|
|
129
|
+
font-size: `.concat(r.fontSizes[2],`;
|
|
130
|
+
line-height: `).concat(r.lineHeights[4],`;
|
|
131
|
+
`);case"pi":return`
|
|
132
|
+
font-size: `.concat(r.fontSizes[1],`;
|
|
133
|
+
line-height: `).concat(r.lineHeights[3],`;
|
|
134
|
+
`);case"sigma":return`
|
|
135
|
+
font-weight: `.concat(r.fontWeights.bold,`;
|
|
136
|
+
font-size: `).concat(r.fontSizes[0],`;
|
|
137
|
+
line-height: `).concat(r.lineHeights[5],`;
|
|
138
|
+
text-transform: uppercase;
|
|
139
|
+
`);default:return`
|
|
140
|
+
font-size: `.concat(r.fontSizes[2],`;
|
|
141
|
+
`)}});y.defaultProps={fontWeight:void 0,fontSize:void 0,lineHeight:void 0,textColor:void 0,textTransform:void 0,variant:"omega"},y.propTypes={fontSize:e.a.oneOfType([e.a.number,e.a.string]),fontWeight:e.a.string,lineHeight:e.a.oneOfType([e.a.number,e.a.string]),textColor:e.a.string,textTransform:e.a.string,variant:e.a.oneOf(m)}},9:function(o,f,t){"use strict";t.r(f),t.d(f,"Flex",function(){return p});var a,i=t(3),c=t.n(i),s=t(0),e=t.n(s),u=t(2),m=t.n(u),d=t(4),y={direction:!0},p=m()(d.Box).withConfig({shouldForwardProp:function(n,r){return!y[n]&&r(n)}})(a||(a=c()([`
|
|
142
|
+
display: `,`;
|
|
143
|
+
flex-direction: `,`;
|
|
144
|
+
justify-content: `,`;
|
|
145
|
+
align-items: `,`;
|
|
146
|
+
flex-wrap: `,`;
|
|
147
|
+
`])),function(n){return n.inline?"inline-flex":"flex"},function(n){return n.direction},function(n){return n.justifyContent},function(n){return n.alignItems},function(n){return n.wrap});p.defaultProps={alignItems:"center",basis:void 0,direction:"row",inline:!1,justifyContent:void 0,reverse:!1,wrap:void 0},p.propTypes={alignItems:e.a.string,basis:e.a.oneOfType([e.a.string,e.a.number]),direction:e.a.string,inline:e.a.bool,justifyContent:e.a.string,reverse:e.a.bool,wrap:e.a.string}},96:function(o,f,t){"use strict";t.r(f),t.d(f,"Layout",function(){return x}),t.d(f,"ActionLayout",function(){return R}),t.d(f,"ContentLayout",function(){return N}),t.d(f,"HeaderLayout",function(){return G}),t.d(f,"BaseHeaderLayout",function(){return B}),t.d(f,"TwoColsLayout",function(){return tn}),t.d(f,"GridLayout",function(){return en});var a,i,c=t(3),s=t.n(c),e=t(1),u=t.n(e),m=t(0),d=t.n(m),y=t(2),p=t.n(y),n=t(4),r=p()(n.Box)(a||(a=s()([`
|
|
148
|
+
display: grid;
|
|
149
|
+
grid-template-columns: `,`;
|
|
150
|
+
`])),function(g){return g.hasSideNav?"auto 1fr":"1fr"}),l=p()(n.Box)(i||(i=s()([`
|
|
151
|
+
overflow-x: hidden;
|
|
152
|
+
`]))),x=function(g){var v=g.sideNav,b=g.children;return u.a.createElement(r,{hasSideNav:Boolean(v)},v,u.a.createElement(l,{paddingBottom:10},b))};x.defaultProps={sideNav:void 0},x.propTypes={children:d.a.node.isRequired,sideNav:d.a.node};var O,W,S=t(9),F=p()(S.Flex)(O||(O=s()([`
|
|
153
|
+
& > * + * {
|
|
154
|
+
margin-left: `,`;
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
margin-left: `,`;
|
|
158
|
+
`])),function(g){return g.theme.spaces[2]},function(g){return g.pullRight?"auto":void 0}),k=p()(F)(W||(W=s()([`
|
|
159
|
+
flex-shrink: 0;
|
|
160
|
+
`]))),R=function(g){var v=g.startActions,b=g.endActions;return v||b?u.a.createElement(n.Box,{paddingLeft:10,paddingRight:10},u.a.createElement(n.Box,{paddingBottom:4},u.a.createElement(S.Flex,{justifyContent:"space-between",alignItems:"flex-start"},v&&u.a.createElement(F,{wrap:"wrap"},v),b&&u.a.createElement(k,{pullRight:!0},b)))):null};R.defaultProps={endActions:void 0,startActions:void 0},R.propTypes={endActions:d.a.node,startActions:d.a.node};var N=function(g){var v=g.children;return u.a.createElement(n.Box,{paddingLeft:10,paddingRight:10},v)};N.propTypes={children:d.a.node.isRequired};var q,P=t(5),h=t.n(P),j=t(6),w=t.n(j),L=t(10),A=t.n(L),C=t(8),Y=t(47),$=["navigationAction","primaryAction","secondaryAction","subtitle","title","sticky","width"],an=function(){var g=Object(e.useRef)(null),v=Object(e.useState)(null),b=A()(v,2),E=b[0],T=b[1],_=function(M){var Q=Object(e.useRef)(null),sn=Object(e.useState)(!0),rn=A()(sn,2),cn=rn[0],dn=rn[1],ln=function(D){var U=A()(D,1)[0];dn(U.isIntersecting)};return Object(e.useEffect)(function(){var D=Q.current,U=new IntersectionObserver(ln,M);return D&&U.observe(Q.current),function(){D&&U.disconnect()}},[Q,M]),[Q,cn]}({root:null,rootMargin:"0px",threshold:0}),H=A()(_,2),z=H[0],K=H[1];return Object(Y.a)(z,function(){z.current&&T(z.current.getBoundingClientRect())}),Object(e.useEffect)(function(){g.current&&T(g.current.getBoundingClientRect())},[g]),{containerRef:z,isVisible:K,baseHeaderLayoutRef:g,headerSize:E}},G=function(g){var v=an(),b=v.containerRef,E=v.isVisible,T=v.baseHeaderLayoutRef,_=v.headerSize;return u.a.createElement(u.a.Fragment,null,u.a.createElement("div",{style:{height:_==null?void 0:_.height},ref:b},E&&u.a.createElement(B,w()({ref:T},g))),!E&&u.a.createElement(B,w()({},g,{sticky:!0,width:_==null?void 0:_.width})))};G.displayName="HeaderLayout";var un=p()(n.Box)(q||(q=s()([`
|
|
161
|
+
position: fixed;
|
|
162
|
+
top: 0;
|
|
163
|
+
right: 0;
|
|
164
|
+
width: `,`px;
|
|
165
|
+
z-index: 4;
|
|
166
|
+
box-shadow: `,`;
|
|
167
|
+
`])),function(g){return g.width},function(g){return g.theme.shadows.tableShadow}),B=u.a.forwardRef(function(g,v){var b=g.navigationAction,E=g.primaryAction,T=g.secondaryAction,_=g.subtitle,H=g.title,z=g.sticky,K=g.width,M=h()(g,$);return z?u.a.createElement(un,{paddingLeft:6,paddingRight:6,paddingTop:3,paddingBottom:3,background:"neutral0",width:K,"data-strapi-header-sticky":!0},u.a.createElement(S.Flex,{justifyContent:"space-between"},u.a.createElement(S.Flex,null,b&&u.a.createElement(n.Box,{paddingRight:3},b),u.a.createElement(n.Box,null,u.a.createElement(C.Typography,w()({variant:"beta",as:"h1"},M),H),u.a.createElement(C.Typography,{variant:"pi",textColor:"neutral600"},_)),T?u.a.createElement(n.Box,{paddingLeft:4},T):null),u.a.createElement(S.Flex,null,E?u.a.createElement(n.Box,{paddingLeft:2},E):void 0))):u.a.createElement(n.Box,{ref:v,paddingLeft:10,paddingRight:10,paddingBottom:8,paddingTop:b?6:8,background:"neutral100","data-strapi-header":!0},b?u.a.createElement(n.Box,{paddingBottom:2},b):null,u.a.createElement(S.Flex,{justifyContent:"space-between"},u.a.createElement(S.Flex,null,u.a.createElement(C.Typography,w()({as:"h1",variant:"alpha"},M),H),T?u.a.createElement(n.Box,{paddingLeft:4},T):null),E),u.a.createElement(C.Typography,{variant:"epsilon",textColor:"neutral600",as:"p"},_))});B.displayName="BaseHeaderLayout",B.defaultProps={navigationAction:void 0,primaryAction:void 0,secondaryAction:void 0,subtitle:void 0,sticky:!1,width:void 0},B.propTypes={navigationAction:d.a.node,primaryAction:d.a.node,secondaryAction:d.a.node,sticky:d.a.bool,subtitle:d.a.string,title:d.a.string.isRequired,width:d.a.number},G.defaultProps={navigationAction:void 0,primaryAction:void 0,secondaryAction:void 0,subtitle:void 0},G.propTypes={navigationAction:d.a.node,primaryAction:d.a.node,secondaryAction:d.a.node,subtitle:d.a.string,title:d.a.string.isRequired};var nn,J=t(49),tn=function(g){var v=g.startCol,b=g.endCol;return u.a.createElement(J.Grid,{gap:4},u.a.createElement(J.GridItem,{col:9,s:12},u.a.createElement(n.Box,{hasRadius:!0,background:"neutral0",shadow:"tableShadow"},v)),u.a.createElement(J.GridItem,{col:3,s:12},u.a.createElement(n.Box,{hasRadius:!0,background:"neutral0",shadow:"tableShadow"},b)))};tn.propTypes={endCol:d.a.node.isRequired,startCol:d.a.node.isRequired};var en=p.a.div(nn||(nn=s()([`
|
|
168
|
+
display: grid;
|
|
169
|
+
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
|
|
170
|
+
grid-gap: `,`;
|
|
171
|
+
`])),function(g){return g.theme.spaces[4]});en.propTypes={children:d.a.node.isRequired}}})})}}]);
|