@strapi/admin 4.15.0-alpha.0 → 4.15.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintrc.js +4 -1
- package/admin/.eslintrc.js +28 -0
- package/admin/custom.d.ts +28 -0
- package/admin/src/StrapiApp.js +27 -28
- package/admin/src/components/AuthenticatedApp.tsx +187 -0
- package/admin/src/components/ConfigurationProvider.tsx +68 -0
- package/admin/src/components/{DragLayer/DragLayer.js → DragLayer.tsx} +18 -10
- package/admin/src/components/GuidedTour/Homepage.tsx +111 -0
- package/admin/src/components/GuidedTour/Modal.tsx +303 -0
- package/admin/src/components/GuidedTour/Ornaments.tsx +74 -0
- package/admin/src/components/GuidedTour/Provider.tsx +253 -0
- package/admin/src/components/GuidedTour/{layout.js → constants.ts} +13 -3
- package/admin/src/components/LanguageProvider.tsx +130 -0
- package/admin/src/components/{LeftMenu/index.js → LeftMenu.tsx} +23 -18
- package/admin/src/components/{NpsSurvey/index.js → NpsSurvey.tsx} +68 -21
- package/admin/src/components/PluginsInitializer.tsx +124 -0
- package/admin/src/components/PrivateRoute.tsx +42 -0
- package/admin/src/components/Providers.tsx +125 -0
- package/admin/src/components/RBACProvider.tsx +124 -0
- package/admin/src/components/Theme.tsx +41 -0
- package/admin/src/components/ThemeToggleProvider.tsx +64 -0
- package/admin/src/components/{UnauthenticatedLogo/index.js → UnauthenticatedLogo.tsx} +3 -5
- package/admin/src/components/{LocalesProvider/__mocks__/useLocalesProvider.js → __mocks__/LanguageProvider.ts} +3 -1
- package/admin/src/{constants.js → constants.ts} +48 -0
- package/admin/src/content-manager/components/BlocksEditor/BlocksInput/index.js +68 -9
- package/admin/src/content-manager/components/BlocksEditor/Toolbar/index.js +433 -202
- package/admin/src/content-manager/components/BlocksEditor/hooks/useBlocksStore.js +463 -135
- package/admin/src/content-manager/components/BlocksEditor/hooks/useModifiersStore.js +23 -6
- package/admin/src/content-manager/components/BlocksEditor/index.js +97 -20
- package/admin/src/content-manager/components/BlocksEditor/plugins/index.js +4 -0
- package/admin/src/content-manager/components/BlocksEditor/plugins/withLinks.js +61 -0
- package/admin/src/content-manager/components/BlocksEditor/plugins/withStrapiSchema.js +33 -0
- package/admin/src/content-manager/components/BlocksEditor/utils/links.js +90 -0
- package/admin/src/content-manager/components/InputUID/index.js +1 -1
- package/admin/src/content-manager/hooks/useAllowedAttributes.js +9 -1
- package/admin/src/content-manager/pages/App/selectors.js +1 -1
- package/admin/src/content-manager/pages/App/useContentManagerInitData.js +3 -1
- package/admin/src/content-manager/pages/EditSettingsView/index.js +1 -0
- package/admin/src/content-manager/pages/EditSettingsView/utils/createPossibleMainFieldsForModelsAndComponents.js +1 -0
- package/admin/src/content-manager/pages/EditView/selectors.js +1 -1
- package/admin/src/content-manager/pages/EditViewLayoutManager/index.js +3 -1
- package/admin/src/content-manager/pages/ListSettingsView/constants.js +1 -0
- package/admin/src/content-manager/pages/ListView/components/Body/index.js +53 -56
- package/admin/src/content-manager/pages/ListView/components/BulkActionButtons/SelectedEntriesModal/index.js +5 -3
- package/admin/src/content-manager/pages/ListView/components/TableRows/index.js +1 -1
- package/admin/src/content-manager/pages/ListView/index.js +35 -51
- package/admin/src/content-manager/pages/ListView/selectors.js +1 -1
- package/admin/src/content-manager/utils/checkIfAttributeIsDisplayable.js +1 -1
- package/admin/src/content-manager/utils/schema.js +2 -2
- package/admin/src/contexts/admin.ts +19 -0
- package/admin/src/contexts/apiTokenPermissions.tsx +64 -0
- package/admin/src/contexts/configuration.ts +25 -0
- package/admin/src/contexts/themeToggle.ts +18 -0
- package/admin/src/core/store/configure.ts +91 -0
- package/admin/src/core/store/hooks.ts +15 -0
- package/admin/src/hooks/{useConfigurations/__mocks__/index.js → __mocks__/useConfigurations.ts} +4 -2
- package/admin/src/hooks/index.js +0 -8
- package/admin/src/hooks/{useAdminRoles/index.js → useAdminRoles.ts} +26 -10
- package/admin/src/hooks/useAdminUsers.ts +64 -0
- package/admin/src/hooks/useConfiguration.ts +5 -0
- package/admin/src/hooks/{useContentTypes/useContentTypes.js → useContentTypes.ts} +39 -16
- package/admin/src/hooks/useDebounce.ts +17 -0
- package/admin/src/hooks/{useEnterprise/useEnterprise.js → useEnterprise.ts} +15 -5
- package/admin/src/hooks/useLicenseLimitNotification.ts +3 -0
- package/admin/src/hooks/useMenu.ts +153 -0
- package/admin/src/hooks/useSettingsForm/index.js +14 -2
- package/admin/src/hooks/useSettingsMenu/constants.js +39 -0
- package/admin/src/hooks/useThemeToggle.ts +9 -0
- package/admin/src/index.js +7 -6
- package/admin/src/layouts/{AppLayout/index.js → AppLayout.tsx} +7 -10
- package/admin/src/layouts/UnauthenticatedLayout.tsx +77 -0
- package/admin/src/pages/Admin/index.js +15 -8
- package/admin/src/pages/App/index.js +13 -8
- package/admin/src/pages/App/selectors.js +1 -1
- package/admin/src/pages/AuthPage/components/ForgotPassword/index.js +3 -2
- package/admin/src/pages/AuthPage/components/ForgotPasswordSuccess/index.js +3 -2
- package/admin/src/pages/AuthPage/components/Login/BaseLogin.js +1 -1
- package/admin/src/pages/AuthPage/components/Login/index.js +1 -1
- package/admin/src/pages/AuthPage/components/Oops/index.js +3 -2
- package/admin/src/pages/AuthPage/components/Register/index.js +30 -35
- package/admin/src/pages/AuthPage/components/ResetPassword/index.js +3 -2
- package/admin/src/pages/AuthPage/index.js +4 -5
- package/admin/src/pages/HomePage/index.js +6 -3
- package/admin/src/pages/{InternalErrorPage/index.js → InternalErrorPage.tsx} +10 -6
- package/admin/src/pages/MarketplacePage/components/NpmPackageCard/index.js +0 -2
- package/admin/src/pages/MarketplacePage/hooks/__mocks__/useNavigatorOnline.ts +1 -0
- package/admin/src/{hooks/useNavigatorOnLine/index.js → pages/MarketplacePage/hooks/useNavigatorOnline.ts} +4 -6
- package/admin/src/pages/MarketplacePage/index.js +3 -3
- package/admin/src/pages/{NotFoundPage/index.js → NotFoundPage.tsx} +9 -7
- package/admin/src/pages/ProfilePage/components/Preferences/index.js +23 -9
- package/admin/src/pages/ProfilePage/index.js +4 -4
- package/admin/src/pages/SettingsPage/components/SettingsNav/index.js +20 -0
- package/admin/src/pages/SettingsPage/components/Tokens/Regenerate/index.js +1 -1
- package/admin/src/pages/SettingsPage/components/Tokens/Table/index.js +119 -87
- package/admin/src/pages/SettingsPage/constants.js +33 -0
- package/admin/src/{hooks/useRegenerate/index.js → pages/SettingsPage/hooks/useRegenerate.ts} +13 -7
- package/admin/src/pages/SettingsPage/index.js +2 -2
- package/admin/src/pages/SettingsPage/pages/ApiTokens/EditView/components/ActionBoundRoutes/index.js +1 -1
- package/admin/src/pages/SettingsPage/pages/ApiTokens/EditView/components/CollapsableContentType/index.js +1 -1
- package/admin/src/pages/SettingsPage/pages/ApiTokens/EditView/components/Permissions/index.js +1 -1
- package/admin/src/pages/SettingsPage/pages/ApiTokens/EditView/components/Regenerate/index.js +1 -1
- package/admin/src/pages/SettingsPage/pages/ApiTokens/EditView/index.js +2 -2
- package/admin/src/pages/SettingsPage/pages/ApplicationInfosPage/components/CustomizationInfos/index.js +2 -2
- package/admin/src/pages/SettingsPage/pages/ApplicationInfosPage/index.js +2 -2
- package/admin/src/pages/SettingsPage/pages/AuditLogs/SalesPage.js +50 -0
- package/admin/src/pages/SettingsPage/pages/ReviewWorkflows/SalesPage.js +53 -0
- package/admin/src/pages/SettingsPage/pages/Roles/CreatePage/index.js +1 -1
- package/admin/src/pages/SettingsPage/pages/Roles/EditPage/components/ConditionsModal/index.js +1 -1
- package/admin/src/pages/SettingsPage/pages/Roles/EditPage/components/ContentTypeCollapse/Collapse/index.js +1 -1
- package/admin/src/pages/SettingsPage/pages/Roles/EditPage/components/ContentTypeCollapse/CollapsePropertyMatrix/ActionRow/index.js +1 -1
- package/admin/src/pages/SettingsPage/pages/Roles/EditPage/components/ContentTypeCollapse/CollapsePropertyMatrix/SubActionRow/index.js +1 -1
- package/admin/src/pages/SettingsPage/pages/Roles/EditPage/components/GlobalActions/index.js +1 -1
- package/admin/src/pages/SettingsPage/pages/Roles/EditPage/components/PermissionsDataManagerProvider/index.js +1 -1
- package/admin/src/pages/SettingsPage/pages/Roles/EditPage/components/PluginsAndSettings/SubCategory/index.js +1 -1
- package/admin/src/pages/SettingsPage/pages/Roles/EditPage/hooks/usePermissionsDataManager.ts +28 -0
- package/admin/src/pages/SettingsPage/pages/Roles/EditPage/index.js +1 -1
- package/admin/src/{hooks/useAdminRolePermissions/index.js → pages/SettingsPage/pages/Roles/hooks/useAdminRolePermissions.ts} +13 -6
- package/admin/src/pages/SettingsPage/pages/SingleSignOn/SalesPage.js +53 -0
- package/admin/src/pages/SettingsPage/pages/TransferTokens/EditView/index.js +1 -1
- package/admin/src/pages/SettingsPage/pages/TransferTokens/ListView/index.js +3 -5
- package/admin/src/pages/SettingsPage/pages/Users/EditPage/index.js +2 -1
- package/admin/src/pages/SettingsPage/pages/Users/ListPage/DynamicTable/TableRows/index.js +1 -1
- package/admin/src/pages/{UseCasePage/index.js → UseCasePage.tsx} +10 -12
- package/admin/src/shared/hooks/index.js +0 -1
- package/admin/src/shared/hooks/useInjectionZone/index.js +2 -2
- package/admin/src/translations/en.json +13 -0
- package/admin/src/types/adminAPI.ts +29 -0
- package/admin/src/utils/createRoute.tsx +54 -0
- package/admin/src/utils/formatAPIErrors.ts +18 -0
- package/admin/src/utils/getFullName.ts +3 -0
- package/admin/src/utils/{uniqueAdminHash.js → hashAdminUserEmail.ts} +6 -3
- package/admin/src/utils/makeUniqueRoutes.ts +11 -0
- package/admin/tsconfig.build.json +4 -0
- package/admin/tsconfig.json +11 -0
- package/build/0cd5f8915b265d5b1856.png +0 -0
- package/build/1049.ecc10c97.chunk.js +1 -0
- package/build/1217.96155682.chunk.js +35 -0
- package/build/1227.947ceaf9.chunk.js +1 -0
- package/build/1306.2699df52.chunk.js +79 -0
- package/build/135.ad267b59.chunk.js +1 -0
- package/build/1386.eabd8a1e.chunk.js +7 -0
- package/build/1727.b49f0713.chunk.js +1 -0
- package/build/1835.eaa696ba.chunk.js +1 -0
- package/build/19eb2dfcf2603eb55733.png +0 -0
- package/build/2325.d705b39a.chunk.js +1 -0
- package/build/2379.7ce8e110.chunk.js +1 -0
- package/build/2395.acb961a8.chunk.js +26 -0
- package/build/2421.79e5b3d0.chunk.js +1 -0
- package/build/267.073a3bcb.chunk.js +1 -0
- package/build/27d16aefee06412db90a.png +0 -0
- package/build/2801.4711ea5a.chunk.js +1 -0
- package/build/2878.145ebf7c.chunk.js +1 -0
- package/build/2950.216f2e89.chunk.js +1 -0
- package/build/2953.284a63c0.chunk.js +1 -0
- package/build/3019.fde2e1be.chunk.js +181 -0
- package/build/3100.2ba4df95.chunk.js +1 -0
- package/build/311.cb0884bb.chunk.js +1 -0
- package/build/3460.8644e608.chunk.js +146 -0
- package/build/3483.db8c1520.chunk.js +1 -0
- package/build/3911.488fbde3.chunk.js +95 -0
- package/build/4174.49cedb6a.chunk.js +1 -0
- package/build/4429.7f044dc7.chunk.js +1 -0
- package/build/4555.c883d697.chunk.js +1 -0
- package/build/4663.b906cc10.chunk.js +1 -0
- package/build/4732.149f5f8f.chunk.js +1 -0
- package/build/4916.480053a6.chunk.js +1 -0
- package/build/4996.d285c30b.chunk.js +1 -0
- package/build/502.f536f78b.chunk.js +1 -0
- package/build/570.2f3b4c56.chunk.js +1 -0
- package/build/5858.493b31ec.chunk.js +1 -0
- package/build/6158.c3c13c20.chunk.js +1 -0
- package/build/6345.334e7678.chunk.js +1 -0
- package/build/6453.4160b5b7.chunk.js +1 -0
- package/build/7030.b98dcedf.chunk.js +1 -0
- package/build/70674f63fc3904c20de0.svg +7 -0
- package/build/7448.6fd14dd3.chunk.js +1 -0
- package/build/7464.579564ac.chunk.js +1 -0
- package/build/7735.9e7c9fdd.chunk.js +10 -0
- package/build/78.dcc6df5c.chunk.js +1 -0
- package/build/7811.fdbe09af.chunk.js +103 -0
- package/build/782.7243b183.chunk.js +1 -0
- package/build/7849.2a500ed8.chunk.js +1 -0
- package/build/7897.63ba0a00.chunk.js +6 -0
- package/build/7e9af4fb7e723fcebf1f.svg +48 -0
- package/build/8162.7d1100a0.chunk.js +1 -0
- package/build/8276.9abe4679.chunk.js +26 -0
- package/build/8773.ee67141c.chunk.js +48 -0
- package/build/8980.f0045cc1.chunk.js +1 -0
- package/build/9077.2cc01ac8.chunk.js +105 -0
- package/build/9153.42c1428a.chunk.js +1 -0
- package/build/918.54414509.chunk.js +1 -0
- package/build/9218.b2d367f8.chunk.js +1 -0
- package/build/9285.5f174057.chunk.js +1 -0
- package/build/9547.62987774.chunk.js +1 -0
- package/build/9754.b4e73779.chunk.js +1 -0
- package/build/9d5d788027e86620c234.svg +5 -0
- package/build/Admin-authenticatedApp.059dc48f.chunk.js +79 -0
- package/build/Admin_InternalErrorPage.06eeef20.chunk.js +1 -0
- package/build/Admin_homePage.56b9eb3f.chunk.js +81 -0
- package/build/Admin_marketplace.d693a435.chunk.js +44 -0
- package/build/Admin_pluginsPage.ae2c872a.chunk.js +6 -0
- package/build/Admin_profilePage.89099d5b.chunk.js +13 -0
- package/build/Admin_settingsPage.88c45586.chunk.js +12 -0
- package/build/Upload_ConfigureTheView.44f28145.chunk.js +1 -0
- package/build/admin-app.990e112f.chunk.js +69 -0
- package/build/admin-edit-roles-page.4e1eb4a9.chunk.js +267 -0
- package/build/admin-edit-users.5b91404e.chunk.js +10 -0
- package/build/admin-roles-list.89dd94fe.chunk.js +22 -0
- package/build/admin-users.7be4fc5f.chunk.js +11 -0
- package/build/api-tokens-create-page.571920e5.chunk.js +1 -0
- package/build/api-tokens-edit-page.cbdc81b1.chunk.js +1 -0
- package/build/api-tokens-list-page.de0c49e8.chunk.js +16 -0
- package/build/ar-json.74e40bc7.chunk.js +1 -0
- package/build/audit-logs-sales-page.2955db88.chunk.js +1 -0
- package/build/audit-logs-settings-page.b0cb5164.chunk.js +1 -0
- package/build/bb3108f7fd1e6179bde1.svg +1 -0
- package/build/bb4d0d527bdfb161bc5a.svg +1 -0
- package/build/ca-json.fc6001d3.chunk.js +1 -0
- package/build/content-manager.de7ae330.chunk.js +1241 -0
- package/build/content-type-builder-list-view.6c8d3213.chunk.js +211 -0
- package/build/content-type-builder-translation-ar-json.3e808e2f.chunk.js +1 -0
- package/build/content-type-builder-translation-cs-json.1ef9e106.chunk.js +1 -0
- package/build/content-type-builder-translation-de-json.63fcff7b.chunk.js +1 -0
- package/build/content-type-builder-translation-dk-json.fd626b67.chunk.js +1 -0
- package/build/content-type-builder-translation-en-json.74d80f18.chunk.js +1 -0
- package/build/content-type-builder-translation-es-json.a4a361a9.chunk.js +1 -0
- package/build/content-type-builder-translation-fr-json.499c3a46.chunk.js +1 -0
- package/build/content-type-builder-translation-id-json.65255f93.chunk.js +1 -0
- package/build/content-type-builder-translation-it-json.e268ab74.chunk.js +1 -0
- package/build/content-type-builder-translation-ja-json.9be0d5b2.chunk.js +1 -0
- package/build/content-type-builder-translation-ko-json.04cb309d.chunk.js +1 -0
- package/build/content-type-builder-translation-ms-json.f6b743b9.chunk.js +1 -0
- package/build/content-type-builder-translation-nl-json.997fe8cc.chunk.js +1 -0
- package/build/content-type-builder-translation-pl-json.634f638b.chunk.js +1 -0
- package/build/content-type-builder-translation-pt-BR-json.6a95dc71.chunk.js +1 -0
- package/build/content-type-builder-translation-pt-json.ddb44f8c.chunk.js +1 -0
- package/build/content-type-builder-translation-ru-json.3af65503.chunk.js +1 -0
- package/build/content-type-builder-translation-sk-json.c6078082.chunk.js +1 -0
- package/build/content-type-builder-translation-sv-json.a6df2462.chunk.js +1 -0
- package/build/content-type-builder-translation-th-json.122277cc.chunk.js +1 -0
- package/build/content-type-builder-translation-tr-json.41f44f77.chunk.js +1 -0
- package/build/content-type-builder-translation-uk-json.e1315acd.chunk.js +1 -0
- package/build/content-type-builder-translation-zh-Hans-json.6ff57db6.chunk.js +1 -0
- package/build/content-type-builder-translation-zh-json.3532b962.chunk.js +1 -0
- package/build/content-type-builder.0bc97051.chunk.js +136 -0
- package/build/cs-json.4b44411c.chunk.js +1 -0
- package/build/de-json.e72545cf.chunk.js +1 -0
- package/build/dk-json.e77140ef.chunk.js +1 -0
- package/build/email-settings-page.07712efc.chunk.js +11 -0
- package/build/en-json.5b907f67.chunk.js +1 -0
- package/build/es-json.b1f2284b.chunk.js +1 -0
- package/build/eu-json.63d0a898.chunk.js +1 -0
- package/build/fr-json.33c6428b.chunk.js +1 -0
- package/build/gu-json.7efe8cc2.chunk.js +1 -0
- package/build/he-json.3cf0b48a.chunk.js +1 -0
- package/build/hi-json.0d633692.chunk.js +1 -0
- package/build/highlight.js.28a1547e.chunk.js +85 -0
- package/build/hu-json.c74b6a1e.chunk.js +1 -0
- package/build/i18n-settings-page.5c34f012.chunk.js +9 -0
- package/build/i18n-translation-de-json.362384a6.chunk.js +1 -0
- package/build/i18n-translation-dk-json.89401417.chunk.js +1 -0
- package/build/i18n-translation-en-json.1ec7becf.chunk.js +1 -0
- package/build/i18n-translation-es-json.87b494d1.chunk.js +1 -0
- package/build/i18n-translation-fr-json.57ddc77e.chunk.js +1 -0
- package/build/i18n-translation-ko-json.ef4f9471.chunk.js +1 -0
- package/build/i18n-translation-pl-json.dfac513d.chunk.js +1 -0
- package/build/i18n-translation-ru-json.a3dbc125.chunk.js +1 -0
- package/build/i18n-translation-tr-json.3bfc812f.chunk.js +1 -0
- package/build/i18n-translation-zh-Hans-json.757ce62d.chunk.js +1 -0
- package/build/i18n-translation-zh-json.bef2dc07.chunk.js +1 -0
- package/build/id-json.41e07c46.chunk.js +1 -0
- package/build/index.html +1 -0
- package/build/it-json.bfe27ed8.chunk.js +1 -0
- package/build/ja-json.e1959a1c.chunk.js +1 -0
- package/build/ko-json.ce5d6d94.chunk.js +1 -0
- package/build/main.f84563f1.js +2665 -0
- package/build/ml-json.940d7ace.chunk.js +1 -0
- package/build/ms-json.0eddffd9.chunk.js +1 -0
- package/build/nl-json.fe38f0fb.chunk.js +1 -0
- package/build/no-json.19a2dbfa.chunk.js +1 -0
- package/build/pl-json.d55e8e78.chunk.js +1 -0
- package/build/pt-BR-json.ae0a0d2e.chunk.js +1 -0
- package/build/pt-json.ee554a41.chunk.js +1 -0
- package/build/review-workflows-sales-page.f46a8f00.chunk.js +1 -0
- package/build/review-workflows-settings-create-view.d0544fb0.chunk.js +1 -0
- package/build/review-workflows-settings-edit-view.aabf49ef.chunk.js +1 -0
- package/build/review-workflows-settings-list-view.8b0525ab.chunk.js +56 -0
- package/build/ru-json.1c976644.chunk.js +1 -0
- package/build/runtime~main.270fd45f.js +2 -0
- package/build/sa-json.2c03ef4e.chunk.js +1 -0
- package/build/sk-json.b41847e8.chunk.js +1 -0
- package/build/sso-sales-page.ef22e469.chunk.js +1 -0
- package/build/sso-settings-page.21e16ae4.chunk.js +1 -0
- package/build/sv-json.568cb7ae.chunk.js +1 -0
- package/build/th-json.5f659396.chunk.js +1 -0
- package/build/tr-json.c9f22432.chunk.js +1 -0
- package/build/transfer-tokens-create-page.3366204d.chunk.js +1 -0
- package/build/transfer-tokens-edit-page.15cf0f73.chunk.js +1 -0
- package/build/transfer-tokens-list-page.0bc0e682.chunk.js +16 -0
- package/build/uk-json.b7e38370.chunk.js +1 -0
- package/build/upload-settings.1319dca0.chunk.js +14 -0
- package/build/upload-translation-ca-json.57954414.chunk.js +1 -0
- package/build/upload-translation-de-json.420c943b.chunk.js +1 -0
- package/build/upload-translation-dk-json.bbb2fa05.chunk.js +1 -0
- package/build/upload-translation-en-json.8b7573ce.chunk.js +1 -0
- package/build/upload-translation-es-json.ba2eb03a.chunk.js +1 -0
- package/build/upload-translation-fr-json.baab9911.chunk.js +1 -0
- package/build/upload-translation-he-json.0a830937.chunk.js +1 -0
- package/build/upload-translation-it-json.e87d7966.chunk.js +1 -0
- package/build/upload-translation-ja-json.44b88e7a.chunk.js +1 -0
- package/build/upload-translation-ko-json.a52eab64.chunk.js +1 -0
- package/build/upload-translation-ms-json.74f6d746.chunk.js +1 -0
- package/build/upload-translation-pl-json.426f31c9.chunk.js +1 -0
- package/build/upload-translation-pt-BR-json.d1704f0b.chunk.js +1 -0
- package/build/upload-translation-pt-json.6b937fdf.chunk.js +1 -0
- package/build/upload-translation-ru-json.675f6b93.chunk.js +1 -0
- package/build/upload-translation-sk-json.483a18f6.chunk.js +1 -0
- package/build/upload-translation-th-json.98d35574.chunk.js +1 -0
- package/build/upload-translation-tr-json.74117e5c.chunk.js +1 -0
- package/build/upload-translation-uk-json.9950466a.chunk.js +1 -0
- package/build/upload-translation-zh-Hans-json.db163b6b.chunk.js +1 -0
- package/build/upload-translation-zh-json.e1dd6eb2.chunk.js +1 -0
- package/build/upload.1ced11be.chunk.js +58 -0
- package/build/users-advanced-settings-page.8e657084.chunk.js +9 -0
- package/build/users-email-settings-page.e57745e5.chunk.js +9 -0
- package/build/users-permissions-translation-ar-json.7d87d54d.chunk.js +1 -0
- package/build/users-permissions-translation-cs-json.7e23424a.chunk.js +1 -0
- package/build/users-permissions-translation-de-json.a6fb670f.chunk.js +1 -0
- package/build/users-permissions-translation-dk-json.60e50f48.chunk.js +1 -0
- package/build/users-permissions-translation-en-json.4b302272.chunk.js +1 -0
- package/build/users-permissions-translation-es-json.35007573.chunk.js +1 -0
- package/build/users-permissions-translation-fr-json.7e55bbbb.chunk.js +1 -0
- package/build/users-permissions-translation-id-json.a5a0fb59.chunk.js +1 -0
- package/build/users-permissions-translation-it-json.0705465d.chunk.js +1 -0
- package/build/users-permissions-translation-ja-json.891fe76e.chunk.js +1 -0
- package/build/users-permissions-translation-ko-json.357d7a33.chunk.js +1 -0
- package/build/users-permissions-translation-ms-json.c83f87c4.chunk.js +1 -0
- package/build/users-permissions-translation-nl-json.c9f92a3c.chunk.js +1 -0
- package/build/users-permissions-translation-pl-json.0a7287d1.chunk.js +1 -0
- package/build/users-permissions-translation-pt-BR-json.1b6d2920.chunk.js +1 -0
- package/build/users-permissions-translation-pt-json.a7eda429.chunk.js +1 -0
- package/build/users-permissions-translation-ru-json.8e883c67.chunk.js +1 -0
- package/build/users-permissions-translation-sk-json.7f37180f.chunk.js +1 -0
- package/build/users-permissions-translation-sv-json.17187818.chunk.js +1 -0
- package/build/users-permissions-translation-th-json.1e9c0247.chunk.js +1 -0
- package/build/users-permissions-translation-tr-json.2bd7ff98.chunk.js +1 -0
- package/build/users-permissions-translation-uk-json.6a0a1572.chunk.js +1 -0
- package/build/users-permissions-translation-vi-json.6722a8a2.chunk.js +1 -0
- package/build/users-permissions-translation-zh-Hans-json.8d82c809.chunk.js +1 -0
- package/build/users-permissions-translation-zh-json.7978eaa6.chunk.js +1 -0
- package/build/users-providers-settings-page.55796d13.chunk.js +14 -0
- package/build/users-roles-settings-page.57079245.chunk.js +55 -0
- package/build/vi-json.ee4c5537.chunk.js +1 -0
- package/build/webhook-edit-page.3a28b2e7.chunk.js +33 -0
- package/build/webhook-list-page.ee80767b.chunk.js +63 -0
- package/build/zh-Hans-json.97efd015.chunk.js +1 -0
- package/build/zh-json.bfc2e036.chunk.js +1 -0
- package/ee/admin/hooks/{useLicenseLimitNotification.js → useLicenseLimitNotification.ts} +4 -4
- package/ee/admin/pages/AuthPage/components/Login/index.js +1 -1
- package/ee/admin/pages/AuthPage/components/Providers/index.js +3 -2
- package/ee/admin/pages/SettingsPage/pages/ReviewWorkflows/selectors.js +1 -1
- package/ee/admin/pages/SettingsPage/pages/Users/ListPage/index.js +1 -3
- package/ee/server/bootstrap.js +1 -1
- package/ee/server/controllers/admin.js +1 -1
- package/ee/server/controllers/user.js +1 -1
- package/ee/server/destroy.js +1 -1
- package/ee/server/register.js +1 -1
- package/ee/server/routes/utils.js +1 -1
- package/ee/server/services/audit-logs.js +1 -1
- package/ee/server/services/passport/sso.js +1 -1
- package/ee/server/services/passport.js +1 -1
- package/ee/server/services/seat-enforcement.js +1 -1
- package/ee/server/utils/sso-lock.js +1 -1
- package/ee/server/validation/role.js +1 -1
- package/ee/server/validation/user.js +1 -1
- package/jest.config.front.js +4 -0
- package/package.json +28 -22
- package/scripts/build.js +6 -2
- package/server/controllers/admin.js +4 -3
- package/shared/entities.ts +33 -0
- package/shared/permissions.ts +52 -0
- package/shared/schema.ts +9 -0
- package/webpack.config.js +1 -0
- package/admin/src/components/AuthenticatedApp/index.js +0 -120
- package/admin/src/components/AuthenticatedApp/utils/api.js +0 -85
- package/admin/src/components/AuthenticatedApp/utils/checkLatestStrapiVersion.js +0 -11
- package/admin/src/components/ConfigurationsProvider/index.js +0 -66
- package/admin/src/components/ConfigurationsProvider/reducer.js +0 -29
- package/admin/src/components/DragLayer/index.js +0 -1
- package/admin/src/components/GlobalStyle/index.js +0 -9
- package/admin/src/components/GuidedTour/Homepage/components/Step.js +0 -61
- package/admin/src/components/GuidedTour/Homepage/components/Stepper.js +0 -61
- package/admin/src/components/GuidedTour/Homepage/index.js +0 -71
- package/admin/src/components/GuidedTour/Modal/components/Content.js +0 -66
- package/admin/src/components/GuidedTour/Modal/components/Modal.js +0 -72
- package/admin/src/components/GuidedTour/Modal/components/StepNumberWithPadding.js +0 -26
- package/admin/src/components/GuidedTour/Modal/components/Stepper.js +0 -118
- package/admin/src/components/GuidedTour/Modal/index.js +0 -94
- package/admin/src/components/GuidedTour/Modal/reducer.js +0 -29
- package/admin/src/components/GuidedTour/Stepper/StepLine.js +0 -29
- package/admin/src/components/GuidedTour/Stepper/StepNumber.js +0 -71
- package/admin/src/components/GuidedTour/constants.js +0 -3
- package/admin/src/components/GuidedTour/index.js +0 -102
- package/admin/src/components/GuidedTour/init.js +0 -37
- package/admin/src/components/GuidedTour/reducer.js +0 -50
- package/admin/src/components/GuidedTour/utils/arePreviousSectionsDone.js +0 -13
- package/admin/src/components/GuidedTour/utils/arePreviousStepsDone.js +0 -12
- package/admin/src/components/GuidedTour/utils/isGuidedTourCompleted.js +0 -6
- package/admin/src/components/GuidedTour/utils/persistStateToLocaleStorage.js +0 -34
- package/admin/src/components/LanguageProvider/index.js +0 -54
- package/admin/src/components/LanguageProvider/init.js +0 -13
- package/admin/src/components/LanguageProvider/reducer.js +0 -30
- package/admin/src/components/LanguageProvider/utils/localStorageKey.js +0 -3
- package/admin/src/components/LocalesProvider/context.js +0 -5
- package/admin/src/components/LocalesProvider/index.js +0 -21
- package/admin/src/components/LocalesProvider/useLocalesProvider.js +0 -11
- package/admin/src/components/NpsSurvey/hooks/useNpsSurveySettings.js +0 -17
- package/admin/src/components/PluginsInitializer/index.js +0 -68
- package/admin/src/components/PluginsInitializer/init.js +0 -11
- package/admin/src/components/PluginsInitializer/reducer.js +0 -22
- package/admin/src/components/PrivateRoute/index.js +0 -46
- package/admin/src/components/Providers/index.js +0 -156
- package/admin/src/components/RBACProvider/actions.js +0 -10
- package/admin/src/components/RBACProvider/constants.js +0 -2
- package/admin/src/components/RBACProvider/index.js +0 -39
- package/admin/src/components/RBACProvider/reducer.js +0 -51
- package/admin/src/components/Theme/index.js +0 -26
- package/admin/src/components/ThemeToggleProvider/index.js +0 -79
- package/admin/src/contexts/Admin/index.js +0 -5
- package/admin/src/contexts/ApiTokenPermissions/index.js +0 -25
- package/admin/src/contexts/Configurations/index.js +0 -5
- package/admin/src/contexts/MarketPlace/index.js +0 -18
- package/admin/src/contexts/PermisssionsDataManagerContext/index.js +0 -5
- package/admin/src/contexts/ThemeToggle/index.js +0 -5
- package/admin/src/contexts/index.js +0 -4
- package/admin/src/core/store/configureStore.js +0 -47
- package/admin/src/exposedHooks.js +0 -27
- package/admin/src/hooks/useAdminRoles/__mocks__/index.js +0 -5
- package/admin/src/hooks/useAdminUsers/index.js +0 -1
- package/admin/src/hooks/useAdminUsers/useAdminUsers.js +0 -47
- package/admin/src/hooks/useConfigurations/index.js +0 -11
- package/admin/src/hooks/useContentTypes/index.js +0 -1
- package/admin/src/hooks/useDebounce/index.js +0 -19
- package/admin/src/hooks/useEnterprise/index.js +0 -1
- package/admin/src/hooks/useLicenseLimitNotification/index.js +0 -5
- package/admin/src/hooks/useMenu/index.js +0 -86
- package/admin/src/hooks/useMenu/utils/checkPermissions.js +0 -13
- package/admin/src/hooks/useMenu/utils/getGeneralLinks.js +0 -31
- package/admin/src/hooks/useMenu/utils/getPluginSectionLinks.js +0 -17
- package/admin/src/hooks/usePermissionsDataManager/index.js +0 -7
- package/admin/src/hooks/useReleaseNotification/index.js +0 -31
- package/admin/src/hooks/useReleaseNotification/utils/api.js +0 -20
- package/admin/src/hooks/useReleaseNotification/utils/checkLatestStrapiVersion.js +0 -11
- package/admin/src/hooks/useThemeToggle/index.js +0 -11
- package/admin/src/injectionZones.js +0 -25
- package/admin/src/layouts/UnauthenticatedLayout/LocaleToggle/index.js +0 -29
- package/admin/src/layouts/UnauthenticatedLayout/index.js +0 -55
- package/admin/src/reducers.js +0 -23
- package/admin/src/shared/hooks/useAdminProvider/index.js +0 -11
- package/admin/src/tsconfig.json +0 -10
- package/admin/src/utils/checkFormValidity.js +0 -15
- package/admin/src/utils/createRoute.js +0 -47
- package/admin/src/utils/formatAPIErrors.js +0 -17
- package/admin/src/utils/getAttributesToDisplay.js +0 -19
- package/admin/src/utils/getExistingActions.js +0 -32
- package/admin/src/utils/getFullName.js +0 -9
- package/admin/src/utils/index.js +0 -9
- package/admin/src/utils/makeUniqueRoutes.js +0 -6
- package/admin/src/utils/sortLinks.js +0 -5
- /package/admin/src/hooks/{useAdminUsers/__mocks__/index.js → __mocks__/useAdminUsers.ts} +0 -0
- /package/admin/src/hooks/{useContentTypes/__mocks__/index.js → __mocks__/useContentTypes.ts} +0 -0
- /package/admin/src/{hooks/useAdminRolePermissions/__mocks__/index.js → pages/SettingsPage/pages/Roles/hooks/__mocks__/useAdminRolePermissions.ts} +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";(self.webpackChunk_strapi_admin=self.webpackChunk_strapi_admin||[]).push([[3100],{73100:function(i,e,n){n.r(e),n.d(e,{ADMIN_PERMISSIONS_EE:function(){return a}});const a={settings:{auditLogs:{main:[{action:"admin::audit-logs.read",subject:null}],read:[{action:"admin::audit-logs.read",subject:null}]},"review-workflows":{main:[{action:"admin::review-workflows.read",subject:null}],create:[{action:"admin::review-workflows.create",subject:null}],delete:[{action:"admin::review-workflows.delete",subject:null}],update:[{action:"admin::review-workflows.update",subject:null}]},sso:{main:[{action:"admin::provider-login.read",subject:null}],read:[{action:"admin::provider-login.read",subject:null}],update:[{action:"admin::provider-login.update",subject:null}]}}}}}]);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";(self.webpackChunk_strapi_admin=self.webpackChunk_strapi_admin||[]).push([[311],{40311:function(t,s,e){e.r(s),e.d(s,{FORM_INITIAL_VALUES:function(){return i},ROLE_LAYOUT:function(){return n}});const i={...window.strapi.features.isEnabled(window.strapi.features.SSO)?{useSSORegistration:!0}:{}},n=[...window.strapi.features.isEnabled(window.strapi.features.SSO)?[{intlLabel:{id:"Settings.permissions.users.form.sso",defaultMessage:"Connect with SSO"},hint:{id:"Settings.permissions.users.form.sso.description",defaultMessage:"When enabled (ON), users can login via SSO"},name:"useSSORegistration",type:"bool",size:{col:6,xs:12}}]:[]]}}]);
|
|
@@ -0,0 +1,146 @@
|
|
|
1
|
+
(self.webpackChunk_strapi_admin=self.webpackChunk_strapi_admin||[]).push([[3460],{86434:function(T,g,t){"use strict";t.d(g,{F:function(){return m}});var e=t(32735),a=t(96192),o=t(67879),f=t(20108);const m=(r={},p={})=>{const{id:l="",...i}=r,{get:s}=(0,a.kY)(),{locale:c}=(0,o.Z)(),v=(0,a.Xe)(c,{sensitivity:"base"}),{data:d,error:u,isError:n,isLoading:y,refetch:S}=(0,f.useQuery)(["roles",l,i],async()=>{const{data:P}=await s(`/admin/roles/${l??""}`,{params:i});return P},p);return{roles:e.useMemo(()=>{let P=[];return d&&(Array.isArray(d.data)?P=d.data:P=[d.data]),[...P].sort((C,W)=>v.compare(C.name,W.name))},[d,v]),error:u,isError:n,isLoading:y,refetch:S}}},80006:function(T,g,t){"use strict";t.d(g,{G:function(){return m}});var e=t(32735),a=t(96192),o=t(59177),f=t(20108);function m(){const{get:r}=(0,a.kY)(),{formatAPIError:p}=(0,a.So)(),l=(0,a.lm)(),i=(0,f.useQueries)([{queryKey:["content-manager","components"],async queryFn(){const{data:{data:n}}=await r("/content-manager/components");return n},onError(n){n instanceof o.d7&&l({type:"warning",message:p(n)})}},{queryKey:["content-manager","content-types"],async queryFn(){const{data:{data:n}}=await r("/content-manager/content-types");return n},onError(n){n instanceof o.d7&&l({type:"warning",message:p(n)})}}]),[s,c]=i,v=s.isLoading||c.isLoading,d=e.useMemo(()=>(c?.data??[]).filter(n=>n.kind==="collectionType"&&n.isDisplayed),[c?.data]),u=e.useMemo(()=>(c?.data??[]).filter(n=>n.kind!=="collectionType"&&n.isDisplayed),[c?.data]);return{isLoading:v,components:e.useMemo(()=>s?.data??[],[s?.data]),collectionTypes:d,singleTypes:u}}},61234:function(T,g,t){"use strict";t.d(g,{v:function(){return o}});var e=t(32735),a=t(40986);function o(f,m){const r=(0,a.oR)();(0,e.useEffect)(()=>{r.injectReducer(f,m)},[r,f,m])}},98866:function(T,g,t){"use strict";t.d(g,{q:function(){return f}});var e=t(32735),a=t(96192),o=t(20108);function f({enabled:m}={enabled:!0}){const{get:r}=(0,a.kY)(),{data:p,isError:l,isLoading:i}=(0,o.useQuery)(["ee","license-limit-info"],async()=>{const{data:{data:v}}=await r("/admin/license-limit-information");return v},{enabled:m}),s=e.useMemo(()=>p??{},[p]),c=e.useCallback(v=>(s?.features??[]).find(u=>u.name===v)?.options??{},[s?.features]);return{license:s,getFeature:c,isError:l,isLoading:i}}},77061:function(T,g,t){"use strict";t.d(g,{CI:function(){return r},ES:function(){return a},FP:function(){return i},Js:function(){return c},Lk:function(){return d},Mu:function(){return l},PP:function(){return f},Pz:function(){return v},_V:function(){return m},fC:function(){return o},rI:function(){return s},wt:function(){return u},xn:function(){return p}});var e=t(2121);function a(n){return{type:e.bc,payload:{id:n}}}function o({workflow:n}){return{type:e.qZ,payload:n}}function f({workflows:n}){return{type:e.QM,payload:n}}function m(n){return{type:e.x4,payload:{stageId:n}}}function r(n={}){return{type:e.Ot,payload:n}}function p(n,y){return{type:e.Nj,payload:{stageId:n,...y}}}function l(n){return{type:e.k_,payload:n}}function i(n,y){return{type:e.$k,payload:{newIndex:y,oldIndex:n}}}function s(n){return{type:e.VS,payload:n}}function c(){return{type:e.gu}}function v(n){return{type:e.yq,payload:n}}function d(n){return{type:e.zn,payload:n}}function u(n){return{type:e.rg,payload:n}}},27187:function(T,g,t){"use strict";t.d(g,{eJ:function(){return A},lx:function(){return C},h4:function(){return O},fC:function(){return W}});var e=t(32735),a=t(99226),o=t(95162),f=t(56932),m=t(64092),r=t(96192),p=t(70788),l=t(67879),i=t(61575),s=t(2121),c=t(84642),v=t(8365),d=t(91917),u=t(60216),n=t.n(u),y=t(8471);const S=(0,y.ZP)(c.k)`
|
|
2
|
+
svg path {
|
|
3
|
+
fill: ${({theme:w})=>w.colors.neutral600};
|
|
4
|
+
}
|
|
5
|
+
`;function x({name:w}){return e.createElement(c.k,{background:"primary100",borderStyle:"dashed",borderColor:"primary600",borderWidth:"1px",gap:3,hasRadius:!0,padding:3,shadow:"tableShadow",width:(0,r.Q1)(300)},e.createElement(S,{alignItems:"center",background:"neutral200",borderRadius:"50%",height:6,justifyContent:"center",width:6},e.createElement(d.Z,{width:`${8/16}rem`})),e.createElement(v.Z,{fontWeight:"bold"},w))}x.propTypes={name:n().string.isRequired};function P({type:w,item:R}){switch(w){case s.uL.STAGE:return e.createElement(x,{...R});default:return null}}function C(){return e.createElement(i.r,{renderItem:P})}function W({children:w}){return e.createElement(a.A,null,e.createElement(o.o,{tabIndex:-1},e.createElement(f.D,null,w)))}function A({href:w}){const{formatMessage:R}=(0,l.Z)();return e.createElement(r.rU,{startIcon:e.createElement(p.Z,null),to:w},R({id:"global.back",defaultMessage:"Back"}))}function O({title:w,subtitle:R,navigationAction:I,primaryAction:B}){return e.createElement(e.Fragment,null,e.createElement(r.SL,{name:w}),e.createElement(m.T,{navigationAction:I,primaryAction:B,title:w,subtitle:R}))}},90562:function(T,g,t){"use strict";t.d(g,{uT:function(){return P},fC:function(){return A},Dx:function(){return x}});var e=t(32735),a=t(8365),o=t(84642),f=t(21223),m=t(87674),r=t(77981),p=t(14763),l=t(90431),i=t(98610),s=t(60216),c=t.n(s),v=t(67879),d=t(8471),u=t.p+"0cd5f8915b265d5b1856.png";const n="limits-title",y="https://strapi.io/pricing-cloud",S="https://strapi.io/contact-sales";function x({children:O}){return e.createElement(a.Z,{variant:"alpha",id:n},O)}x.propTypes={children:c().node.isRequired};function P({children:O}){return e.createElement(a.Z,{variant:"omega"},O)}P.propTypes={children:c().node.isRequired};function C(){const{formatMessage:O}=(0,v.Z)();return e.createElement(o.k,{gap:2,paddingTop:4},e.createElement(l.Q,{variant:"default",isExternal:!0,href:y},O({id:"Settings.review-workflows.limit.cta.learn",defaultMessage:"Learn more"})),e.createElement(l.Q,{variant:"tertiary",isExternal:!0,href:S},O({id:"Settings.review-workflows.limit.cta.sales",defaultMessage:"Contact Sales"})))}const W=d.ZP.img`
|
|
6
|
+
// Margin top|right reverse the padding of ModalBody
|
|
7
|
+
margin-right: ${({theme:O})=>`-${O.spaces[7]}`};
|
|
8
|
+
margin-top: ${({theme:O})=>`-${O.spaces[7]}`};
|
|
9
|
+
width: 360px;
|
|
10
|
+
`;function A({children:O,isOpen:w,onClose:R}){const{formatMessage:I}=(0,v.Z)();return w?e.createElement(f.P,{labelledBy:n},e.createElement(m.f,null,e.createElement(o.k,{gap:2,paddingLeft:7,position:"relative"},e.createElement(o.k,{alignItems:"start",direction:"column",gap:2,width:"60%"},O,e.createElement(C,null)),e.createElement(o.k,{justifyContent:"end",height:"100%",width:"40%"},e.createElement(W,{src:u,"aria-hidden":!0,alt:"",loading:"lazy"}),e.createElement(r.x,{display:"flex",position:"absolute",right:0,top:0},e.createElement(p.h,{icon:e.createElement(i.Z,null),"aria-label":I({id:"global.close",defaultMessage:"Close"}),onClick:R})))))):null}A.defaultProps={isOpen:!1},A.propTypes={children:c().node.isRequired,isOpen:c().bool,onClose:c().func.isRequired}},45594:function(T,g,t){"use strict";t.d(g,{U:function(){return ae}});var e=t(32735),a=t(77981),o=t(84642),f=t(96192),m=t(60216),r=t.n(m),p=t(67879),l=t(40986),i=t(8471),s=t(77061),c=t(8365),v=t(3042);const d=(0,i.ZP)(v.Z)`
|
|
11
|
+
> circle {
|
|
12
|
+
fill: ${({theme:E})=>E.colors.neutral150};
|
|
13
|
+
}
|
|
14
|
+
> path {
|
|
15
|
+
fill: ${({theme:E})=>E.colors.neutral600};
|
|
16
|
+
}
|
|
17
|
+
`,u=(0,i.ZP)(a.x)`
|
|
18
|
+
border-radius: 26px;
|
|
19
|
+
|
|
20
|
+
svg {
|
|
21
|
+
height: ${({theme:E})=>E.spaces[6]};
|
|
22
|
+
width: ${({theme:E})=>E.spaces[6]};
|
|
23
|
+
|
|
24
|
+
> path {
|
|
25
|
+
fill: ${({theme:E})=>E.colors.neutral600};
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
&:hover {
|
|
30
|
+
color: ${({theme:E})=>E.colors.primary600} !important;
|
|
31
|
+
${c.Z} {
|
|
32
|
+
color: ${({theme:E})=>E.colors.primary600} !important;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
${d} {
|
|
36
|
+
> circle {
|
|
37
|
+
fill: ${({theme:E})=>E.colors.primary600};
|
|
38
|
+
}
|
|
39
|
+
> path {
|
|
40
|
+
fill: ${({theme:E})=>E.colors.neutral100};
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
&:active {
|
|
46
|
+
${c.Z} {
|
|
47
|
+
color: ${({theme:E})=>E.colors.primary600};
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
${d} {
|
|
51
|
+
> circle {
|
|
52
|
+
fill: ${({theme:E})=>E.colors.primary600};
|
|
53
|
+
}
|
|
54
|
+
> path {
|
|
55
|
+
fill: ${({theme:E})=>E.colors.neutral100};
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
`;function n({children:E,...$}){return e.createElement(u,{as:"button",background:"neutral0",border:"neutral150",paddingBottom:3,paddingLeft:4,paddingRight:4,paddingTop:3,shadow:"filterShadow",...$},e.createElement(o.k,{gap:2},e.createElement(d,{"aria-hidden":!0}),e.createElement(c.Z,{variant:"pi",fontWeight:"bold",textColor:"neutral500"},E)))}n.propTypes={children:r().node.isRequired};var y=t(74323),S=t(14763),x=t(99320),P=t(9435),C=t(9379),W=t(79624),A=t(10710),O=t(97037),w=t(2846),R=t(4987),I=t(49086),B=t(98202),G=t(75322),H=t(37405),Z=t(94958),K=t(92802),V=t(51968),X=t(69242),M=t(69997),b=t(2121),z=t(46111),k=t(68886);const J=(0,i.ZP)(y.ML)`
|
|
60
|
+
padding-left: ${({theme:E})=>E.spaces[7]};
|
|
61
|
+
`,q=(0,i.ZP)(o.k)`
|
|
62
|
+
> * {
|
|
63
|
+
flex-grow: 1;
|
|
64
|
+
}
|
|
65
|
+
`,Ee=(0,i.ZP)(I.sN)`
|
|
66
|
+
color: ${({theme:E})=>E.colors.danger600};
|
|
67
|
+
`,ve=(0,i.ZP)(B.xz)`
|
|
68
|
+
:hover,
|
|
69
|
+
:focus {
|
|
70
|
+
background-color: ${({theme:E})=>E.colors.neutral100};
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
> span {
|
|
74
|
+
font-size: 0;
|
|
75
|
+
}
|
|
76
|
+
`,he=(0,i.ZP)(S.h)`
|
|
77
|
+
align-items: center;
|
|
78
|
+
border-radius: ${({theme:E})=>E.borderRadius};
|
|
79
|
+
display: flex;
|
|
80
|
+
justify-content: center;
|
|
81
|
+
|
|
82
|
+
:hover,
|
|
83
|
+
:focus {
|
|
84
|
+
background-color: ${({theme:E})=>E.colors.neutral100};
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
svg {
|
|
88
|
+
height: auto;
|
|
89
|
+
width: ${({theme:E})=>E.spaces[3]}};
|
|
90
|
+
}
|
|
91
|
+
`,ye=(0,k.s)();function we(){return e.createElement(a.x,{background:"primary100",borderStyle:"dashed",borderColor:"primary600",borderWidth:"1px",display:"block",hasRadius:!0,padding:6,shadow:"tableShadow"})}function ce({id:E,index:$,canDelete:j,canReorder:re,canUpdate:U,isOpen:se=!1,stagesCount:Q}){const Y=h=>`${h+1} of ${Q}`,ee=h=>{te(D({id:"dnd.grab-item",defaultMessage:"{item}, grabbed. Current position in list: {position}. Press up and down arrow to change position, Spacebar to drop, Escape to cancel."},{item:N.value,position:Y(h)}))},Se=h=>{te(D({id:"dnd.drop-item",defaultMessage:"{item}, dropped. Final position in list: {position}."},{item:N.value,position:Y(h)}))},Me=()=>{te(D({id:"dnd.cancel-item",defaultMessage:"{item}, dropped. Re-order cancelled."},{item:N.value}))},Oe=(h,L)=>{te(D({id:"dnd.reorder",defaultMessage:"{item}, moved. New position in list: {position}."},{item:N.value,position:Y(h)})),F((0,s.FP)(L,h))},Pe=()=>{ie(!0)},[de,te]=e.useState(null),{formatMessage:D}=(0,p.Z)(),{trackUsage:Ce}=(0,f.rS)(),F=(0,l.I0)(),Ae=(0,f.lm)(),[le,xe]=e.useState(se),[Re,ie]=e.useState(!1),[N,ue,De]=(0,K.U$)(`stages.${$}.name`),[ne,fe,We]=(0,K.U$)(`stages.${$}.color`),[_,me,Ie]=(0,K.U$)(`stages.${$}.permissions`),Le=(0,l.v9)(z.g$),[{handlerId:ke,isDragging:be,handleKeyDown:Be},$e,Ze,Ue,ge]=(0,X.Y9)(re,{index:$,item:{name:N.value},onGrabItem:ee,onDropItem:Se,onMoveItem:Oe,onCancel:Me,type:b.uL.STAGE}),Ke=(0,M.FE)($e,Ze),Ne=ye.map(({hex:h,name:L})=>({value:h,label:D({id:"Settings.review-workflows.stage.color.name",defaultMessage:"{name}"},{name:L}),color:h})),{themeColorName:je}=(0,k.k)(ne.value)??{},pe=Le.filter(h=>h.code!=="strapi-super-admin");return e.useEffect(()=>{ge((0,V.rX)(),{captureDraggingState:!1})},[ge,$]),e.createElement(a.x,{ref:Ke},de&&e.createElement(x.T,{"aria-live":"assertive"},de),be?e.createElement(we,null):e.createElement(P.U,{size:"S",variant:"primary",onToggle:()=>{xe(!le),le||Ce("willEditStage")},expanded:le,shadow:"tableShadow",error:ue.error??fe?.error??me?.error??!1,hasErrorMessage:!1},e.createElement(C.B,{title:N.value,togglePosition:"left",action:(j||U)&&e.createElement(o.k,null,e.createElement(B.fC,null,e.createElement(ve,{size:"S",endIcon:null,paddingLeft:2,paddingRight:2},e.createElement(G.Z,{"aria-hidden":!0,focusable:!1}),e.createElement(x.T,{as:"span"},D({id:"[tbdb].components.DynamicZone.more-actions",defaultMessage:"More actions"}))),e.createElement(B.VY,{popoverPlacement:"bottom-end",zIndex:2},e.createElement(B.rl,null,U&&e.createElement(I.sN,{onClick:()=>F((0,s.ES)(E))},D({id:"Settings.review-workflows.stage.delete",defaultMessage:"Duplicate stage"})),j&&e.createElement(Ee,{onClick:()=>F((0,s._V)(E))},D({id:"Settings.review-workflows.stage.delete",defaultMessage:"Delete"}))))),U&&e.createElement(he,{background:"transparent",forwardedAs:"div",hasRadius:!0,role:"button",noBorder:!0,tabIndex:0,"data-handler-id":ke,ref:Ue,label:D({id:"Settings.review-workflows.stage.drag",defaultMessage:"Drag"}),onClick:h=>h.stopPropagation(),onKeyDown:Be},e.createElement(H.Z,null)))}),e.createElement(W.v,{padding:6,background:"neutral0",hasRadius:!0},e.createElement(A.r,{gap:4},e.createElement(O.P,{col:6},e.createElement(w.o,{...N,id:N.name,disabled:!U,label:D({id:"Settings.review-workflows.stage.name.label",defaultMessage:"Stage name"}),error:ue.error??!1,onChange:h=>{De.setValue(h.target.value),F((0,s.xn)(E,{name:h.target.value}))},required:!0})),e.createElement(O.P,{col:6},e.createElement(R.q4,{disabled:!U,error:fe?.error??!1,id:ne.name,required:!0,label:D({id:"content-manager.reviewWorkflows.stage.color",defaultMessage:"Color"}),onChange:h=>{We.setValue(h),F((0,s.xn)(E,{color:h}))},value:ne.value.toUpperCase(),startIcon:e.createElement(o.k,{as:"span",height:2,background:ne.value,borderColor:je==="neutral0"?"neutral150":"transparent",hasRadius:!0,shrink:0,width:2})},Ne.map(({value:h,label:L,color:oe})=>{const{themeColorName:Fe}=(0,k.k)(oe);return e.createElement(R.ag,{value:h,key:h,startIcon:e.createElement(o.k,{as:"span",height:2,background:oe,borderColor:Fe==="neutral0"?"neutral150":"transparent",hasRadius:!0,shrink:0,width:2})},L)}))),e.createElement(O.P,{col:6},pe.length===0?e.createElement(f.X0,{description:{id:"Settings.review-workflows.stage.permissions.noPermissions.description",defaultMessage:"You don\u2019t have the permission to see roles"},intlLabel:{id:"Settings.review-workflows.stage.permissions.label",defaultMessage:"Roles that can change this stage"},name:_.name}):e.createElement(o.k,{alignItems:"flex-end",gap:3},e.createElement(q,{grow:1},e.createElement(y.NU,{..._,disabled:!U,error:me.error??!1,id:_.name,label:D({id:"Settings.review-workflows.stage.permissions.label",defaultMessage:"Roles that can change this stage"}),onChange:h=>{const L=h.map(oe=>({role:parseInt(oe,10),action:"admin::review-workflows.stage.transition"}));Ie.setValue(L),F((0,s.xn)(E,{permissions:L}))},placeholder:D({id:"Settings.review-workflows.stage.permissions.placeholder",defaultMessage:"Select a role"}),required:!0,value:(_.value??[]).map(h=>`${h.role}`),withTags:!0},[{label:D({id:"Settings.review-workflows.stage.permissions.allRoles.label",defaultMessage:"All roles"}),children:pe.map(h=>({value:`${h.id}`,label:h.name}))}].map(h=>"children"in h?e.createElement(y.Ab,{key:h.label,label:h.label,values:h.children.map(L=>L.value)},h.children.map(L=>e.createElement(J,{key:L.value,value:L.value},L.label))):e.createElement(y.ML,{key:h.value,value:h.value},h.label)))),e.createElement(S.h,{disabled:!U,icon:e.createElement(Z.Z,null),label:D({id:"Settings.review-workflows.stage.permissions.apply.label",defaultMessage:"Apply to all stages"}),size:"L",variant:"secondary",onClick:()=>Pe(_.value)})))))),e.createElement(f.QH.Root,{iconRightButton:null,isOpen:Re,onToggleDialog:()=>ie(!1),onConfirm:()=>{F((0,s.Mu)({permissions:_.value})),ie(!1),Ae({type:"success",message:D({id:"Settings.review-workflows.page.edit.confirm.stages.permissions.copy.success",defaultMessage:"Applied roles to all other stages of the workflow"})})},variantRightButton:"primary"},e.createElement(f.QH.Body,null,e.createElement(c.Z,{textAlign:"center",variant:"omega"},D({id:"Settings.review-workflows.page.edit.confirm.stages.permissions.copy",defaultMessage:"Roles that can change that stage will be applied to all the other stages."})))))}ce.propTypes=r().shape({id:r().number.isRequired,color:r().string.isRequired,canDelete:r().bool.isRequired,canReorder:r().bool.isRequired,canUpdate:r().bool.isRequired,stagesCount:r().number.isRequired}).isRequired;const Te=(0,i.ZP)(a.x)`
|
|
92
|
+
transform: translateX(-50%);
|
|
93
|
+
`;function ae({canDelete:E,canUpdate:$,stages:j}){const{formatMessage:re}=(0,p.Z)(),U=(0,l.I0)(),{trackUsage:se}=(0,f.rS)();return e.createElement(o.k,{direction:"column",gap:6,width:"100%"},e.createElement(a.x,{position:"relative",spacing:4,width:"100%"},e.createElement(Te,{background:"neutral200",height:"100%",left:"50%",position:"absolute",top:"0",width:2,zIndex:1}),e.createElement(o.k,{direction:"column",alignItems:"stretch",gap:6,zIndex:2,position:"relative",as:"ol"},j.map((Q,Y)=>{const ee=Q?.id??Q.__temp_key__;return e.createElement(a.x,{key:`stage-${ee}`,as:"li"},e.createElement(ce,{id:ee,index:Y,isOpen:!Q.id,canDelete:j.length>1&&E,canReorder:j.length>1,canUpdate:$,stagesCount:j.length}))}))),$&&e.createElement(n,{type:"button",onClick:()=>{U((0,s.CI)({name:""})),se("willCreateStage")}},re({id:"Settings.review-workflows.stage.add",defaultMessage:"Add new stage"})))}ae.defaultProps={canDelete:!0,canUpdate:!0,stages:[]},ae.propTypes={canDelete:r().bool,canUpdate:r().bool,stages:r().arrayOf(r().shape({id:r().number,__temp_key__:r().number,name:r().string.isRequired}))}},165:function(T,g,t){"use strict";t.d(g,{Y:function(){return x}});var e=t(32735),a=t(74323),o=t(8365),f=t(10710),m=t(97037),r=t(2846),p=t(96192),l=t(92802),i=t(60216),s=t.n(i),c=t(67879),v=t(40986),d=t(8471),u=t(77061),n=t(46111);const y=(0,d.ZP)(a.ML)`
|
|
94
|
+
padding-left: ${({theme:P})=>P.spaces[7]};
|
|
95
|
+
`,S=(0,d.ZP)(o.Z)`
|
|
96
|
+
font-style: italic;
|
|
97
|
+
`;function x({canUpdate:P}){const{formatMessage:C,locale:W}=(0,c.Z)(),A=(0,v.I0)(),{collectionTypes:O,singleTypes:w}=(0,v.v9)(n.HK),R=(0,v.v9)(n.DV),I=(0,v.v9)(n.D6),[B,G,H]=(0,l.U$)("name"),[Z,K,V]=(0,l.U$)("contentTypes"),X=(0,p.Xe)(W,{sensitivity:"base"});return e.createElement(f.r,{background:"neutral0",hasRadius:!0,gap:4,padding:6,shadow:"tableShadow"},e.createElement(m.P,{col:6},e.createElement(r.o,{...B,id:B.name,disabled:!P,label:C({id:"Settings.review-workflows.workflow.name.label",defaultMessage:"Workflow Name"}),error:G.error??!1,onChange:M=>{A((0,u.rI)({name:M.target.value})),H.setValue(M.target.value)},required:!0})),e.createElement(m.P,{col:6},e.createElement(a.NU,{...Z,customizeContent:M=>C({id:"Settings.review-workflows.workflow.contentTypes.displayValue",defaultMessage:"{count} {count, plural, one {content type} other {content types}} selected"},{count:M.length}),disabled:!P,error:K.error??!1,id:Z.name,label:C({id:"Settings.review-workflows.workflow.contentTypes.label",defaultMessage:"Associated to"}),onChange:M=>{A((0,u.rI)({contentTypes:M})),V.setValue(M)},placeholder:C({id:"Settings.review-workflows.workflow.contentTypes.placeholder",defaultMessage:"Select"})},[...O.length>0?[{label:C({id:"Settings.review-workflows.workflow.contentTypes.collectionTypes.label",defaultMessage:"Collection Types"}),children:[...O].sort((M,b)=>X.compare(M.info.displayName,b.info.displayName)).map(M=>({label:M.info.displayName,value:M.uid}))}]:[],...w.length>0?[{label:C({id:"Settings.review-workflows.workflow.contentTypes.singleTypes.label",defaultMessage:"Single Types"}),children:[...w].map(M=>({label:M.info.displayName,value:M.uid}))}]:[]].map(M=>"children"in M?e.createElement(a.Ab,{key:M.label,label:M.label,values:M.children.map(b=>b.value.toString())},M.children.map(b=>{const{name:z}=I.find(k=>(R&&k.id!==R.id||!R)&&k.contentTypes.includes(b.value))??{};return e.createElement(y,{key:b.value,value:b.value},C({id:"Settings.review-workflows.workflow.contentTypes.assigned.notice",defaultMessage:"{label} {name, select, undefined {} other {<i>(assigned to <em>{name}</em> workflow)</i>}}"},{label:b.label,name:z,em:(...k)=>e.createElement(o.Z,{as:"em",fontWeight:"bold"},k),i:(...k)=>e.createElement(S,null,k)}))})):e.createElement(a.ML,{key:M.value,value:M.value},M.label)))))}x.defaultProps={canUpdate:!0},x.propTypes={canUpdate:s().bool}},2121:function(T,g,t){"use strict";t.d(g,{$k:function(){return u},Ef:function(){return P},FT:function(){return S},Nj:function(){return v},Ot:function(){return s},QM:function(){return l},VS:function(){return n},_X:function(){return C},bc:function(){return c},gu:function(){return o},k_:function(){return d},lv:function(){return y},qZ:function(){return p},rg:function(){return m},sN:function(){return a},uL:function(){return x},x4:function(){return i},yq:function(){return f},zn:function(){return r}});var e=t(41865);const a="settings_review-workflows",o="Settings/Review_Workflows/RESET_WORKFLOW",f="Settings/Review_Workflows/SET_CONTENT_TYPES",m="Settings/Review_Workflows/SET_IS_LOADING",r="Settings/Review_Workflows/SET_ROLES",p="Settings/Review_Workflows/SET_WORKFLOW",l="Settings/Review_Workflows/SET_WORKFLOWS",i="Settings/Review_Workflows/WORKFLOW_DELETE_STAGE",s="Settings/Review_Workflows/WORKFLOW_ADD_STAGE",c="Settings/Review_Workflows/WORKFLOW_CLONE_STAGE",v="Settings/Review_Workflows/WORKFLOW_UPDATE_STAGE",d="Settings/Review_Workflows/WORKFLOW_UPDATE_STAGES",u="Settings/Review_Workflows/WORKFLOW_UPDATE_STAGE_POSITION",n="Settings/Review_Workflows/WORKFLOW_UPDATE",y={primary600:"Blue",primary200:"Lilac",alternative600:"Violet",alternative200:"Lavender",success600:"Green",success200:"Pale Green",danger500:"Cherry",danger200:"Pink",warning600:"Orange",warning200:"Yellow",secondary600:"Teal",secondary200:"Baby Blue",neutral400:"Gray",neutral0:"White"},S=e.W.colors.primary600,x={STAGE:"stage"},P="numberOfWorkflows",C="stagesPerWorkflow"},32329:function(T,g,t){"use strict";t.d(g,{n:function(){return f}});var e=t(32735),a=t(96192),o=t(20108);function f(m={}){const{get:r}=(0,a.kY)(),{id:p="",...l}=m,i={populate:"stages"},{data:s,isLoading:c,status:v,refetch:d}=(0,o.useQuery)(["review-workflows","workflows",p],async()=>(await r(`/admin/review-workflows/workflows/${p}`,{params:{...i,...l}})).data),u=e.useMemo(()=>p&&s?.data?[s.data]:Array.isArray(s?.data)?s.data:[],[s?.data,p]);return{meta:e.useMemo(()=>s?.meta??{},[s?.meta]),workflows:u,isLoading:c,status:v,refetch:d}}},79989:function(T,g,t){"use strict";t.d(g,{E:function(){return o},I:function(){return f}});var e=t(97889),a=t(2121);const o={serverState:{contentTypes:{collectionTypes:[],singleTypes:[]},roles:[],workflow:null,workflows:[]},clientState:{currentWorkflow:{data:{name:"",contentTypes:[],stages:[],permissions:void 0}},isLoading:!0}};function f(r=o,p){return(0,e.Uy)(r,l=>{const{payload:i}=p;switch(p.type){case a.yq:{l.serverState.contentTypes=i;break}case a.rg:{l.clientState.isLoading=i;break}case a.zn:{l.serverState.roles=i;break}case a.qZ:{const s=i;s&&(l.serverState.workflow=s,l.clientState.currentWorkflow.data={...s,stages:s.stages.map(c=>({...c,color:c?.color??a.FT}))});break}case a.QM:{l.serverState.workflows=i;break}case a.gu:{l.clientState=o.clientState,l.serverState=o.serverState;break}case a.x4:{const{stageId:s}=i,{currentWorkflow:c}=r.clientState;l.clientState.currentWorkflow.data.stages=c.data.stages.filter(v=>(v?.id??v.__temp_key__)!==s);break}case a.Ot:{const{currentWorkflow:s}=r.clientState;s.data||(l.clientState.currentWorkflow.data={stages:[]});const c=m(l.clientState.currentWorkflow.data.stages);l.clientState.currentWorkflow.data.stages.push({...i,color:i?.color??a.FT,__temp_key__:c});break}case a.bc:{const{currentWorkflow:s}=r.clientState,{id:c}=i,v=s.data.stages.findIndex(u=>(u?.id??u?.__temp_key__)===c),d=s.data.stages[v];l.clientState.currentWorkflow.data.stages.splice(v+1,0,{...d,id:void 0,__temp_key__:m(l.clientState.currentWorkflow.data.stages)});break}case a.Nj:{const{currentWorkflow:s}=r.clientState,{stageId:c,...v}=i;l.clientState.currentWorkflow.data.stages=s.data.stages.map(d=>(d.id??d.__temp_key__)===c?{...d,...v}:d);break}case a.k_:{const{currentWorkflow:s}=r.clientState;l.clientState.currentWorkflow.data.stages=s.data.stages.map(c=>({...c,...i}));break}case a.$k:{const{currentWorkflow:{data:{stages:s}}}=r.clientState,{newIndex:c,oldIndex:v}=i;if(c>=0&&c<s.length){const d=s[v];let u=[...s];u.splice(v,1),u.splice(c,0,d),l.clientState.currentWorkflow.data.stages=u}break}case a.VS:{l.clientState.currentWorkflow.data={...l.clientState.currentWorkflow.data,...i};break}default:break}})}const m=(r=[])=>{const p=r.map(l=>l.id??l.__temp_key__);return Math.max(...p,-1)+1}},46111:function(T,g,t){"use strict";t.d(g,{CA:function(){return v},D6:function(){return s},DV:function(){return i},HK:function(){return p},RR:function(){return u},bH:function(){return c},g$:function(){return l},xU:function(){return d}});var e=t(98178),a=t(89793),o=t.n(a),f=t(2121),m=t(79989);const r=n=>n[f.sN]??m.E,p=(0,e.P1)(r,({serverState:{contentTypes:n}})=>n),l=(0,e.P1)(r,({serverState:{roles:n}})=>n),i=(0,e.P1)(r,({clientState:{currentWorkflow:n}})=>n.data),s=(0,e.P1)(r,({serverState:{workflows:n}})=>n),c=(0,e.P1)(r,({serverState:n,clientState:{currentWorkflow:y}})=>!o()(n.workflow,y.data)),v=(0,e.P1)(r,({serverState:n,clientState:{currentWorkflow:y}})=>!(n.workflow?.stages??[]).every(S=>!!y.data.stages.find(({id:x})=>x===S.id))),d=(0,e.P1)(r,({clientState:{isLoading:n}})=>n),u=(0,e.P1)(r,({serverState:n})=>n)},68886:function(T,g,t){"use strict";t.d(g,{k:function(){return o},s:function(){return f}});var e=t(41865),a=t(2121);function o(m){if(!m)return null;const p=Object.entries(e.W.colors).filter(([,l])=>l.toUpperCase()===m.toUpperCase()).reduce((l,[i])=>(a.lv?.[i]&&(l=i),l),null);return p?{themeColorName:p,name:a.lv[p]}:null}function f(){return Object.entries(a.lv).map(([m,r])=>({hex:e.W.colors[m].toUpperCase(),name:r}))}},82920:function(T,g,t){"use strict";t.d(g,{V:function(){return f}});var e=t(3040),a=t.n(e),o=t(24346);async function f({values:m,formatMessage:r}){const p=o.Ry({contentTypes:o.IX().of(o.Z_()),name:o.Z_().max(255,r({id:"Settings.review-workflows.validation.name.max-length",defaultMessage:"Name can not be longer than 255 characters"})).required(),stages:o.IX().of(o.Ry().shape({name:o.Z_().required(r({id:"Settings.review-workflows.validation.stage.name",defaultMessage:"Name is required"})).max(255,r({id:"Settings.review-workflows.validation.stage.max-length",defaultMessage:"Name can not be longer than 255 characters"})).test("unique-name",r({id:"Settings.review-workflows.validation.stage.duplicate",defaultMessage:"Stage name must be unique"}),function(l){const{options:{context:i}}=this;return i.stages.filter(s=>s.name===l).length===1}),color:o.Z_().required(r({id:"Settings.review-workflows.validation.stage.color",defaultMessage:"Color is required"})).matches(/^#(?:[0-9a-fA-F]{3}){1,2}$/i),permissions:o.IX(o.Ry({role:o.Rx().strict().typeError(r({id:"Settings.review-workflows.validation.stage.permissions.role.number",defaultMessage:"Role must be of type number"})).required,action:o.Z_().required({id:"Settings.review-workflows.validation.stage.permissions.action.required",defaultMessage:"Action is a required argument"})})).strict()})).min(1)});try{return await p.validate(m,{abortEarly:!1,context:m}),!0}catch(l){let i={};return l instanceof o.p8&&l.inner.forEach(s=>{a()(i,s.path,s.message)}),i}}},51355:function(T,g,t){var e=t(94318),a=t(3387),o="[object Boolean]";function f(m){return m===!0||m===!1||a(m)&&e(m)==o}T.exports=f},95919:function(T,g,t){var e=t(80022);function a(o){return e(o)&&o!=+o}T.exports=a},80022:function(T,g,t){var e=t(94318),a=t(3387),o="[object Number]";function f(m){return typeof m=="number"||a(m)&&e(m)==o}T.exports=f},9435:function(T,g,t){"use strict";t.d(g,{U:function(){return v},y:function(){return s}});var e=t(74512),a=t(32735),o=t(8471),f=t(85612),m=t(37808),r=t(8365),p=t(84642),l=t(77981);const i=({theme:d,expanded:u,variant:n,disabled:y,error:S})=>S?`1px solid ${d.colors.danger600} !important`:y?`1px solid ${d.colors.neutral150}`:u?`1px solid ${d.colors.primary600}`:n==="primary"?`1px solid ${d.colors.neutral0}`:`1px solid ${d.colors.neutral100}`,s=(0,o.ZP)(r.Z)``,c=(0,o.ZP)(l.x)`
|
|
98
|
+
border: ${i};
|
|
99
|
+
|
|
100
|
+
&:hover:not([aria-disabled='true']) {
|
|
101
|
+
border: 1px solid ${({theme:d})=>d.colors.primary600};
|
|
102
|
+
|
|
103
|
+
${s} {
|
|
104
|
+
color: ${({theme:d,expanded:u})=>u?void 0:d.colors.primary700};
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
${r.Z} {
|
|
108
|
+
color: ${({theme:d,expanded:u})=>u?void 0:d.colors.primary600};
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
& > ${p.k} {
|
|
112
|
+
background: ${({theme:d})=>d.colors.primary100};
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
[data-strapi-dropdown='true'] {
|
|
116
|
+
background: ${({theme:d})=>d.colors.primary200};
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
`,v=({children:d,disabled:u=!1,error:n,expanded:y=!1,hasErrorMessage:S=!0,id:x,onToggle:P,toggle:C,size:W="M",variant:A="primary",shadow:O})=>{const w=(0,m.M)(x),R=a.useMemo(()=>({expanded:y,onToggle:P,toggle:C,id:w,size:W,variant:A,disabled:u}),[u,y,w,P,W,C,A]);return(0,e.jsxs)(f.S.Provider,{value:R,children:[(0,e.jsx)(c,{"data-strapi-expanded":y,disabled:u,"aria-disabled":u,expanded:y,hasRadius:!0,variant:A,error:n,shadow:O,children:d}),n&&S&&(0,e.jsx)(l.x,{paddingTop:1,children:(0,e.jsx)(r.Z,{variant:"pi",textColor:"danger600",children:n})})]})}},79624:function(T,g,t){"use strict";t.d(g,{v:function(){return f}});var e=t(74512),a=t(85612),o=t(77981);const f=({children:m,...r})=>{const{expanded:p,id:l}=(0,a.A)();if(!p)return null;const i=`accordion-content-${l}`,s=`accordion-label-${l}`,c=`accordion-desc-${l}`;return(0,e.jsx)(o.x,{role:"region",id:i,"aria-labelledby":s,"aria-describedby":c,...r,children:m})}},85612:function(T,g,t){"use strict";t.d(g,{A:function(){return o},S:function(){return a}});var e=t(32735);const a=(0,e.createContext)({disabled:!1,expanded:!1,id:"",size:"M",variant:"primary"}),o=()=>(0,e.useContext)(a)},9379:function(T,g,t){"use strict";t.d(g,{B:function(){return d}});var e=t(74512),a=t(91917),o=t(8471),f=t(9435),m=t(85612);const r=({expanded:u,disabled:n,variant:y})=>{let S="neutral100";return u?S="primary100":n?S="neutral150":y==="primary"&&(S="neutral0"),S};var p=t(43743),l=t(18129),i=t(84642),s=t(8365);const c=(0,o.ZP)(p.A)`
|
|
120
|
+
text-align: left;
|
|
121
|
+
|
|
122
|
+
// necessary to make the ellipsis prop work on the title
|
|
123
|
+
> span {
|
|
124
|
+
max-width: 100%;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
svg {
|
|
128
|
+
width: ${14/16}rem;
|
|
129
|
+
height: ${14/16}rem;
|
|
130
|
+
|
|
131
|
+
path {
|
|
132
|
+
fill: ${({theme:u,expanded:n})=>n?u.colors.primary600:u.colors.neutral500};
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
`,v=(0,o.ZP)(i.k)`
|
|
136
|
+
min-height: ${({theme:u,size:n})=>u.sizes.accordions[n]};
|
|
137
|
+
border-radius: ${({theme:u,expanded:n})=>n?`${u.borderRadius} ${u.borderRadius} 0 0`:u.borderRadius};
|
|
138
|
+
|
|
139
|
+
&:hover {
|
|
140
|
+
svg {
|
|
141
|
+
path {
|
|
142
|
+
fill: ${({theme:u})=>u.colors.primary600};
|
|
143
|
+
}
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
`,d=({title:u,description:n,as:y="span",togglePosition:S="right",action:x,...P})=>{const{onToggle:C,toggle:W,expanded:A,id:O,size:w,variant:R,disabled:I}=(0,m.A)(),B=`accordion-content-${O}`,G=`accordion-label-${O}`,H=`accordion-desc-${O}`,Z=w==="M"?6:4,K=w==="M"?Z:Z-2,V=r({expanded:A,disabled:I,variant:R}),M={as:y,fontWeight:w==="S"?"bold":void 0,id:G,textColor:A?"primary600":"neutral700",ellipsis:!0,variant:w==="M"?"delta":void 0},b=A?"primary600":"neutral600",z=A?"primary200":"neutral200",k=w==="M"?`${32/16}rem`:`${24/16}rem`,J=()=>{I||(W&&!C?(console.warn('Deprecation warning: Usage of "toggle" prop in Accordion component is deprecated. This is discouraged and will be removed in the next major release. Please use "onToggle" instead'),W()):C&&C())},q=(0,e.jsx)(i.k,{justifyContent:"center",borderRadius:"50%",height:k,width:k,transform:A?"rotate(180deg)":void 0,"data-strapi-dropdown":!0,"aria-hidden":!0,as:"span",background:z,cursor:I?"not-allowed":"pointer",onClick:J,shrink:0,children:(0,e.jsx)(l.J,{as:a.Z,width:w==="M"?`${11/16}rem`:`${8/16}rem`,color:A?"primary600":"neutral600"})});return(0,e.jsx)(v,{paddingBottom:K,paddingLeft:Z,paddingRight:Z,paddingTop:K,background:V,expanded:A,size:w,justifyContent:"space-between",cursor:I?"not-allowed":"",children:(0,e.jsxs)(i.k,{gap:3,flex:1,maxWidth:"100%",children:[S==="left"&&q,(0,e.jsx)(c,{onClick:J,"aria-disabled":I,"aria-expanded":A,"aria-controls":B,"aria-labelledby":G,"data-strapi-accordion-toggle":!0,expanded:A,type:"button",flex:1,minWidth:0,...P,children:(0,e.jsxs)(e.Fragment,{children:[(0,e.jsx)(f.y,{...M,children:u}),n&&(0,e.jsx)(s.Z,{as:"p",id:H,textColor:b,children:n})]})}),S==="right"&&(0,e.jsxs)(i.k,{gap:3,children:[q,x]}),S==="left"&&x]})})}},70788:function(T,g,t){"use strict";t.d(g,{Z:function(){return o}});var e=t(74512);const a=f=>(0,e.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...f,children:(0,e.jsx)("path",{fill:"#212134",d:"M24 13.3a.2.2 0 0 1-.2.2H5.74l8.239 8.239a.2.2 0 0 1 0 .282L12.14 23.86a.2.2 0 0 1-.282 0L.14 12.14a.2.2 0 0 1 0-.282L11.86.14a.2.2 0 0 1 .282 0L13.98 1.98a.2.2 0 0 1 0 .282L5.74 10.5H23.8c.11 0 .2.09.2.2v2.6Z"})}),o=a},37405:function(T,g,t){"use strict";t.d(g,{Z:function(){return o}});var e=t(74512);const a=f=>(0,e.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...f,children:[(0,e.jsx)("path",{fill:"#212134",d:"M16.563 5.587a2.503 2.503 0 1 0 0-5.007 2.503 2.503 0 0 0 0 5.007Z"}),(0,e.jsx)("path",{fill:"#212134",d:"M18.487 3.083c-.012.788-.487 1.513-1.229 1.797a1.954 1.954 0 0 1-2.184-.574A1.943 1.943 0 0 1 14.9 2.11c.4-.684 1.2-1.066 1.981-.927a1.954 1.954 0 0 1 1.606 1.9c.011.748 1.17.748 1.158 0A3.138 3.138 0 0 0 17.565.17c-1.176-.423-2.567-.03-3.36.933-.83 1.002-.968 2.45-.284 3.575.678 1.124 1.993 1.674 3.273 1.431 1.432-.272 2.428-1.593 2.451-3.019.012-.753-1.147-.753-1.158-.006ZM16.563 14.372a2.503 2.503 0 1 0 0-5.007 2.503 2.503 0 0 0 0 5.007Z"}),(0,e.jsx)("path",{fill:"#212134",d:"M18.487 11.867c-.012.789-.487 1.513-1.229 1.797a1.954 1.954 0 0 1-2.184-.574 1.943 1.943 0 0 1-.174-2.196c.4-.684 1.2-1.066 1.981-.927.928.156 1.588.968 1.606 1.9.011.748 1.17.748 1.158 0a3.138 3.138 0 0 0-2.08-2.914c-1.176-.423-2.567-.029-3.36.933-.83 1.002-.968 2.45-.284 3.575.678 1.124 1.993 1.675 3.273 1.431 1.432-.272 2.428-1.593 2.451-3.019.012-.753-1.147-.753-1.158-.005ZM16.563 23.392a2.503 2.503 0 1 0 0-5.006 2.503 2.503 0 0 0 0 5.006Z"}),(0,e.jsx)("path",{fill:"#212134",d:"M18.487 20.89c-.012.787-.487 1.512-1.229 1.796a1.954 1.954 0 0 1-2.184-.574 1.943 1.943 0 0 1-.174-2.196c.4-.684 1.2-1.066 1.981-.927.928.156 1.588.967 1.606 1.9.011.748 1.17.748 1.158 0a3.138 3.138 0 0 0-2.08-2.914c-1.176-.423-2.567-.03-3.36.933-.83 1.002-.968 2.45-.284 3.575.678 1.124 1.993 1.674 3.273 1.431 1.432-.272 2.428-1.593 2.451-3.019.012-.753-1.147-.753-1.158-.006ZM7.378 5.622a2.503 2.503 0 1 0 0-5.007 2.503 2.503 0 0 0 0 5.007Z"}),(0,e.jsx)("path",{fill:"#212134",d:"M9.302 3.119c-.011.788-.486 1.512-1.228 1.796a1.954 1.954 0 0 1-2.185-.574 1.943 1.943 0 0 1-.173-2.196c.4-.684 1.199-1.066 1.981-.927a1.943 1.943 0 0 1 1.605 1.9c.012.748 1.17.748 1.16 0A3.138 3.138 0 0 0 8.38.205c-1.176-.423-2.567-.029-3.36.933-.83 1.002-.968 2.45-.285 3.575.678 1.124 1.994 1.675 3.274 1.431 1.431-.272 2.428-1.593 2.451-3.019.012-.753-1.147-.753-1.159-.005ZM7.378 14.406a2.503 2.503 0 1 0 0-5.006 2.503 2.503 0 0 0 0 5.006Z"}),(0,e.jsx)("path",{fill:"#212134",d:"M9.302 11.902c-.011.788-.486 1.513-1.228 1.797a1.954 1.954 0 0 1-2.185-.574 1.943 1.943 0 0 1-.173-2.196c.4-.684 1.199-1.066 1.981-.927a1.943 1.943 0 0 1 1.605 1.9c.012.748 1.17.748 1.16 0A3.138 3.138 0 0 0 8.38 8.988c-1.176-.423-2.567-.03-3.36.933-.83 1.002-.968 2.45-.285 3.575.678 1.124 1.994 1.674 3.274 1.431 1.431-.272 2.428-1.593 2.451-3.019.012-.753-1.147-.753-1.159-.006ZM7.378 23.427a2.503 2.503 0 1 0 0-5.007 2.503 2.503 0 0 0 0 5.007Z"}),(0,e.jsx)("path",{fill:"#212134",d:"M9.302 20.924c-.011.788-.486 1.513-1.228 1.797a1.954 1.954 0 0 1-2.185-.574 1.943 1.943 0 0 1-.173-2.196c.4-.684 1.199-1.066 1.981-.927.933.156 1.594.967 1.605 1.9.012.748 1.17.748 1.16 0A3.139 3.139 0 0 0 8.38 18.01c-1.176-.423-2.567-.03-3.36.933-.83 1.002-.968 2.45-.285 3.569.678 1.124 1.994 1.675 3.274 1.431 1.431-.272 2.428-1.593 2.451-3.019.012-.747-1.147-.747-1.159 0Z"})]}),o=a},75322:function(T,g,t){"use strict";t.d(g,{Z:function(){return o}});var e=t(74512);const a=f=>(0,e.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...f,children:(0,e.jsx)("path",{fill:"#32324D",d:"M3.5 14.6a2.6 2.6 0 1 0 0-5.2 2.6 2.6 0 0 0 0 5.2Zm8.5 0a2.6 2.6 0 1 0 0-5.2 2.6 2.6 0 0 0 0 5.2Zm8.5 0a2.6 2.6 0 1 0 0-5.2 2.6 2.6 0 0 0 0 5.2Z"})}),o=a},3042:function(T,g,t){"use strict";t.d(g,{Z:function(){return o}});var e=t(74512);const a=f=>(0,e.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...f,children:[(0,e.jsx)("circle",{cx:12,cy:12,r:12,fill:"#212134"}),(0,e.jsx)("path",{fill:"#F6F6F9",d:"M17 12.569c0 .124-.1.224-.225.224h-3.981v3.982c0 .124-.101.225-.226.225h-1.136a.225.225 0 0 1-.226-.225v-3.981H7.226A.225.225 0 0 1 7 12.567v-1.136c0-.125.1-.226.225-.226h3.982V7.226c0-.124.1-.225.224-.225h1.138c.124 0 .224.1.224.225v3.982h3.982c.124 0 .225.1.225.224v1.138Z"})]}),o=a},59177:function(T,g,t){"use strict";t.d(g,{d7:function(){return o}});var e=t(84306);const{Axios:a,AxiosError:o,CanceledError:f,isCancel:m,CancelToken:r,VERSION:p,all:l,Cancel:i,isAxiosError:s,spread:c,toFormData:v,AxiosHeaders:d,HttpStatusCode:u,formToJSON:n,getAdapter:y,mergeConfig:S}=e.default}}]);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";(self.webpackChunk_strapi_admin=self.webpackChunk_strapi_admin||[]).push([[3483],{11009:function(a,o,n){n.r(o),n.d(o,{ROUTES_EE:function(){return s}});const s=[...window.strapi.features.isEnabled(window.strapi.features.AUDIT_LOGS)?[{async Component(){return await n.e(2812).then(n.bind(n,1487))},to:"/settings/audit-logs",exact:!0}]:[],...window.strapi.features.isEnabled(window.strapi.features.REVIEW_WORKFLOWS)?[{async Component(){return await n.e(349).then(n.bind(n,32033))},to:"/settings/review-workflows",exact:!0},{async Component(){return await Promise.all([n.e(9218),n.e(3460),n.e(8936)]).then(n.bind(n,80252))},to:"/settings/review-workflows/create",exact:!0},{async Component(){return await Promise.all([n.e(9218),n.e(3460),n.e(4409)]).then(n.bind(n,45696))},to:"/settings/review-workflows/:workflowId",exact:!0}]:[],...window.strapi.features.isEnabled(window.strapi.features.SSO)?[{async Component(){return await n.e(302).then(n.bind(n,68951))},to:"/settings/single-sign-on",exact:!0}]:[]]}}]);
|
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
(self.webpackChunk_strapi_admin=self.webpackChunk_strapi_admin||[]).push([[3911],{88058:function(c,u,n){var t=n(87650);function e(r,o){var s=r==null?0:r.length;return!!s&&t(r,o,0)>-1}c.exports=e},37431:function(c){function u(n,t,e){for(var r=-1,o=n==null?0:n.length;++r<o;)if(e(t,n[r]))return!0;return!1}c.exports=u},91096:function(c,u,n){var t=n(61124),e=n(88058),r=n(37431),o=n(26460),s=n(76535),l=n(30555),i=200;function x(m,E,_,g){var a=-1,d=e,p=!0,f=m.length,h=[],M=E.length;if(!f)return h;_&&(E=o(E,s(_))),g?(d=r,p=!1):E.length>=i&&(d=l,p=!1,E=new t(E));n:for(;++a<f;){var v=m[a],j=_==null?v:_(v);if(v=g||v!==0?v:0,p&&j===j){for(var P=M;P--;)if(E[P]===j)continue n;h.push(v)}else d(E,j,g)||h.push(v)}return h}c.exports=x},56671:function(c,u,n){var t=n(35897),e=n(74741),r=e(t);c.exports=r},60528:function(c){function u(n,t,e,r){for(var o=n.length,s=e+(r?1:-1);r?s--:++s<o;)if(t(n[s],s,n))return s;return-1}c.exports=u},87650:function(c,u,n){var t=n(60528),e=n(25556),r=n(54256);function o(s,l,i){return l===l?r(s,l,i):t(s,e,i)}c.exports=o},25556:function(c){function u(n){return n!==n}c.exports=u},52920:function(c,u,n){var t=n(56671),e=n(81580);function r(o,s){var l=-1,i=e(o)?Array(o.length):[];return t(o,function(x,m,E){i[++l]=s(x,m,E)}),i}c.exports=r},50690:function(c,u,n){var t=n(26460),e=n(80166),r=n(88904),o=n(52920),s=n(36024),l=n(76535),i=n(1397),x=n(15362),m=n(77236);function E(_,g,a){g.length?g=t(g,function(f){return m(f)?function(h){return e(h,f.length===1?f[0]:f)}:f}):g=[x];var d=-1;g=t(g,l(r));var p=o(_,function(f,h,M){var v=t(g,function(j){return j(f)});return{criteria:v,index:++d,value:f}});return s(p,function(f,h){return i(f,h,a)})}c.exports=E},36024:function(c){function u(n,t){var e=n.length;for(n.sort(t);e--;)n[e]=n[e].value;return n}c.exports=u},40709:function(c,u,n){var t=n(22945);function e(r,o){if(r!==o){var s=r!==void 0,l=r===null,i=r===r,x=t(r),m=o!==void 0,E=o===null,_=o===o,g=t(o);if(!E&&!g&&!x&&r>o||x&&m&&_&&!E&&!g||l&&m&&_||!s&&_||!i)return 1;if(!l&&!x&&!g&&r<o||g&&s&&i&&!l&&!x||E&&s&&i||!m&&i||!_)return-1}return 0}c.exports=e},1397:function(c,u,n){var t=n(40709);function e(r,o,s){for(var l=-1,i=r.criteria,x=o.criteria,m=i.length,E=s.length;++l<m;){var _=t(i[l],x[l]);if(_){if(l>=E)return _;var g=s[l];return _*(g=="desc"?-1:1)}}return r.index-o.index}c.exports=e},74741:function(c,u,n){var t=n(81580);function e(r,o){return function(s,l){if(s==null)return s;if(!t(s))return r(s,l);for(var i=s.length,x=o?i:-1,m=Object(s);(o?x--:++x<i)&&l(m[x],x,m)!==!1;);return s}}c.exports=e},54256:function(c){function u(n,t,e){for(var r=e-1,o=n.length;++r<o;)if(n[r]===t)return r;return-1}c.exports=u},37213:function(c,u,n){var t=n(26460),e=n(88904),r=n(52920),o=n(77236);function s(l,i){var x=o(l)?t:r;return x(l,e(i,3))}c.exports=s},98978:function(c,u,n){var t=n(40314),e=n(50690),r=n(94569),o=n(63108),s=r(function(l,i){if(l==null)return[];var x=i.length;return x>1&&o(l,i[0],i[1])?i=[]:x>2&&o(i[0],i[1],i[2])&&(i=[i[0]]),e(l,t(i,1),[])});c.exports=s},15738:function(c,u,n){var t=n(4293);function e(r){var o=r==null?0:r.length;return o?t(r,1,o):[]}c.exports=e},88708:function(c,u,n){var t=n(4293),e=n(25225);function r(o,s,l){return o&&o.length?(s=l||s===void 0?1:e(s),t(o,0,s<0?0:s)):[]}c.exports=r},86205:function(c,u,n){var t=n(91096),e=n(94569),r=n(99747),o=e(function(s,l){return r(s)?t(s,l):[]});c.exports=o},9435:function(c,u,n){"use strict";n.d(u,{U:function(){return g},y:function(){return E}});var t=n(74512),e=n(32735),r=n(8471),o=n(85612),s=n(37808),l=n(8365),i=n(84642),x=n(77981);const m=({theme:a,expanded:d,variant:p,disabled:f,error:h})=>h?`1px solid ${a.colors.danger600} !important`:f?`1px solid ${a.colors.neutral150}`:d?`1px solid ${a.colors.primary600}`:p==="primary"?`1px solid ${a.colors.neutral0}`:`1px solid ${a.colors.neutral100}`,E=(0,r.ZP)(l.Z)``,_=(0,r.ZP)(x.x)`
|
|
2
|
+
border: ${m};
|
|
3
|
+
|
|
4
|
+
&:hover:not([aria-disabled='true']) {
|
|
5
|
+
border: 1px solid ${({theme:a})=>a.colors.primary600};
|
|
6
|
+
|
|
7
|
+
${E} {
|
|
8
|
+
color: ${({theme:a,expanded:d})=>d?void 0:a.colors.primary700};
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
${l.Z} {
|
|
12
|
+
color: ${({theme:a,expanded:d})=>d?void 0:a.colors.primary600};
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
& > ${i.k} {
|
|
16
|
+
background: ${({theme:a})=>a.colors.primary100};
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
[data-strapi-dropdown='true'] {
|
|
20
|
+
background: ${({theme:a})=>a.colors.primary200};
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
`,g=({children:a,disabled:d=!1,error:p,expanded:f=!1,hasErrorMessage:h=!0,id:M,onToggle:v,toggle:j,size:P="M",variant:O="primary",shadow:C})=>{const B=(0,s.M)(M),y=e.useMemo(()=>({expanded:f,onToggle:v,toggle:j,id:B,size:P,variant:O,disabled:d}),[d,f,B,v,P,j,O]);return(0,t.jsxs)(o.S.Provider,{value:y,children:[(0,t.jsx)(_,{"data-strapi-expanded":f,disabled:d,"aria-disabled":d,expanded:f,hasRadius:!0,variant:O,error:p,shadow:C,children:a}),p&&h&&(0,t.jsx)(x.x,{paddingTop:1,children:(0,t.jsx)(l.Z,{variant:"pi",textColor:"danger600",children:p})})]})}},79624:function(c,u,n){"use strict";n.d(u,{v:function(){return o}});var t=n(74512),e=n(85612),r=n(77981);const o=({children:s,...l})=>{const{expanded:i,id:x}=(0,e.A)();if(!i)return null;const m=`accordion-content-${x}`,E=`accordion-label-${x}`,_=`accordion-desc-${x}`;return(0,t.jsx)(r.x,{role:"region",id:m,"aria-labelledby":E,"aria-describedby":_,...l,children:s})}},85612:function(c,u,n){"use strict";n.d(u,{A:function(){return r},S:function(){return e}});var t=n(32735);const e=(0,t.createContext)({disabled:!1,expanded:!1,id:"",size:"M",variant:"primary"}),r=()=>(0,t.useContext)(e)},9379:function(c,u,n){"use strict";n.d(u,{B:function(){return a}});var t=n(74512),e=n(91917),r=n(8471),o=n(9435),s=n(85612);const l=({expanded:d,disabled:p,variant:f})=>{let h="neutral100";return d?h="primary100":p?h="neutral150":f==="primary"&&(h="neutral0"),h};var i=n(43743),x=n(18129),m=n(84642),E=n(8365);const _=(0,r.ZP)(i.A)`
|
|
24
|
+
text-align: left;
|
|
25
|
+
|
|
26
|
+
// necessary to make the ellipsis prop work on the title
|
|
27
|
+
> span {
|
|
28
|
+
max-width: 100%;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
svg {
|
|
32
|
+
width: ${14/16}rem;
|
|
33
|
+
height: ${14/16}rem;
|
|
34
|
+
|
|
35
|
+
path {
|
|
36
|
+
fill: ${({theme:d,expanded:p})=>p?d.colors.primary600:d.colors.neutral500};
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
`,g=(0,r.ZP)(m.k)`
|
|
40
|
+
min-height: ${({theme:d,size:p})=>d.sizes.accordions[p]};
|
|
41
|
+
border-radius: ${({theme:d,expanded:p})=>p?`${d.borderRadius} ${d.borderRadius} 0 0`:d.borderRadius};
|
|
42
|
+
|
|
43
|
+
&:hover {
|
|
44
|
+
svg {
|
|
45
|
+
path {
|
|
46
|
+
fill: ${({theme:d})=>d.colors.primary600};
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
`,a=({title:d,description:p,as:f="span",togglePosition:h="right",action:M,...v})=>{const{onToggle:j,toggle:P,expanded:O,id:C,size:B,variant:y,disabled:D}=(0,s.A)(),$=`accordion-content-${C}`,R=`accordion-label-${C}`,I=`accordion-desc-${C}`,L=B==="M"?6:4,A=B==="M"?L:L-2,U=l({expanded:O,disabled:D,variant:y}),K={as:f,fontWeight:B==="S"?"bold":void 0,id:R,textColor:O?"primary600":"neutral700",ellipsis:!0,variant:B==="M"?"delta":void 0},Z=O?"primary600":"neutral600",w=O?"primary200":"neutral200",T=B==="M"?`${32/16}rem`:`${24/16}rem`,b=()=>{D||(P&&!j?(console.warn('Deprecation warning: Usage of "toggle" prop in Accordion component is deprecated. This is discouraged and will be removed in the next major release. Please use "onToggle" instead'),P()):j&&j())},W=(0,t.jsx)(m.k,{justifyContent:"center",borderRadius:"50%",height:T,width:T,transform:O?"rotate(180deg)":void 0,"data-strapi-dropdown":!0,"aria-hidden":!0,as:"span",background:w,cursor:D?"not-allowed":"pointer",onClick:b,shrink:0,children:(0,t.jsx)(x.J,{as:e.Z,width:B==="M"?`${11/16}rem`:`${8/16}rem`,color:O?"primary600":"neutral600"})});return(0,t.jsx)(g,{paddingBottom:A,paddingLeft:L,paddingRight:L,paddingTop:A,background:U,expanded:O,size:B,justifyContent:"space-between",cursor:D?"not-allowed":"",children:(0,t.jsxs)(m.k,{gap:3,flex:1,maxWidth:"100%",children:[h==="left"&&W,(0,t.jsx)(_,{onClick:b,"aria-disabled":D,"aria-expanded":O,"aria-controls":$,"aria-labelledby":R,"data-strapi-accordion-toggle":!0,expanded:O,type:"button",flex:1,minWidth:0,...v,children:(0,t.jsxs)(t.Fragment,{children:[(0,t.jsx)(o.y,{...K,children:d}),p&&(0,t.jsx)(E.Z,{as:"p",id:I,textColor:Z,children:p})]})}),h==="right"&&(0,t.jsxs)(m.k,{gap:3,children:[W,M]}),h==="left"&&M]})})}},95181:function(c,u,n){"use strict";n.d(u,{Z:function(){return r}});var t=n(74512),e=n(84642);const r=({startActions:o,endActions:s})=>!o&&!s?null:(0,t.jsxs)(e.k,{justifyContent:"space-between",alignItems:"flex-start",paddingBottom:4,paddingLeft:10,paddingRight:10,children:[(0,t.jsx)(e.k,{gap:2,wrap:"wrap",children:o}),(0,t.jsx)(e.k,{gap:2,shrink:0,wrap:"wrap",children:s})]})},56932:function(c,u,n){"use strict";n.d(u,{D:function(){return r}});var t=n(74512),e=n(77981);const r=({children:o})=>(0,t.jsx)(e.x,{paddingLeft:10,paddingRight:10,children:o})},64092:function(c,u,n){"use strict";n.d(u,{T:function(){return E}});var t=n(74512),e=n(32735),r=n(8471);const o=a=>{const d=(0,e.useRef)(null),[p,f]=(0,e.useState)(!0),h=([M])=>{f(M.isIntersecting)};return(0,e.useEffect)(()=>{const M=d.current,v=new IntersectionObserver(h,a);return M&&v.observe(d.current),()=>{M&&v.disconnect()}},[d,a]),[d,p]};var s=n(81957);const l=(a,d)=>{const p=(0,s.W)(d);(0,e.useLayoutEffect)(()=>{const f=new ResizeObserver(p);return Array.isArray(a)?a.forEach(h=>{h.current&&f.observe(h.current)}):a.current&&f.observe(a.current),()=>{f.disconnect()}},[a,p])};var i=n(77981),x=n(84642),m=n(8365);const E=a=>{const d=(0,e.useRef)(null),[p,f]=(0,e.useState)(null),[h,M]=o({root:null,rootMargin:"0px",threshold:0});return l(h,()=>{h.current&&f(h.current.getBoundingClientRect())}),(0,e.useEffect)(()=>{d.current&&f(d.current.getBoundingClientRect())},[d]),(0,t.jsxs)(t.Fragment,{children:[(0,t.jsx)("div",{style:{height:p?.height},ref:h,children:M&&(0,t.jsx)(g,{ref:d,...a})}),!M&&(0,t.jsx)(g,{...a,sticky:!0,width:p?.width})]})};E.displayName="HeaderLayout";const _=(0,r.ZP)(i.x)`
|
|
51
|
+
width: ${({width:a})=>a?`${a/16}rem`:void 0};
|
|
52
|
+
z-index: ${({theme:a})=>a.zIndices[1]};
|
|
53
|
+
`,g=e.forwardRef(({navigationAction:a,primaryAction:d,secondaryAction:p,subtitle:f,title:h,sticky:M,width:v,...j},P)=>{const O=typeof f=="string";return M?(0,t.jsx)(_,{paddingLeft:6,paddingRight:6,paddingTop:3,paddingBottom:3,position:"fixed",top:0,right:0,background:"neutral0",shadow:"tableShadow",width:v,"data-strapi-header-sticky":!0,children:(0,t.jsxs)(x.k,{justifyContent:"space-between",children:[(0,t.jsxs)(x.k,{children:[a&&(0,t.jsx)(i.x,{paddingRight:3,children:a}),(0,t.jsxs)(i.x,{children:[(0,t.jsx)(m.Z,{variant:"beta",as:"h1",...j,children:h}),O?(0,t.jsx)(m.Z,{variant:"pi",textColor:"neutral600",children:f}):f]}),p?(0,t.jsx)(i.x,{paddingLeft:4,children:p}):null]}),(0,t.jsx)(x.k,{children:d?(0,t.jsx)(i.x,{paddingLeft:2,children:d}):void 0})]})}):(0,t.jsxs)(i.x,{ref:P,paddingLeft:10,paddingRight:10,paddingBottom:8,paddingTop:a?6:8,background:"neutral100","data-strapi-header":!0,children:[a?(0,t.jsx)(i.x,{paddingBottom:2,children:a}):null,(0,t.jsxs)(x.k,{justifyContent:"space-between",children:[(0,t.jsxs)(x.k,{minWidth:0,children:[(0,t.jsx)(m.Z,{as:"h1",variant:"alpha",...j,children:h}),p?(0,t.jsx)(i.x,{paddingLeft:4,children:p}):null]}),d]}),O?(0,t.jsx)(m.Z,{variant:"epsilon",textColor:"neutral600",as:"p",children:f}):f]})})},99226:function(c,u,n){"use strict";n.d(u,{A:function(){return l}});var t=n(74512),e=n(8471),r=n(77981);const o=(0,e.ZP)(r.x)`
|
|
54
|
+
display: grid;
|
|
55
|
+
grid-template-columns: ${({hasSideNav:i})=>i?"auto 1fr":"1fr"};
|
|
56
|
+
`,s=(0,e.ZP)(r.x)`
|
|
57
|
+
overflow-x: hidden;
|
|
58
|
+
`,l=({sideNav:i,children:x})=>(0,t.jsxs)(o,{hasSideNav:Boolean(i),children:[i,(0,t.jsx)(s,{paddingBottom:10,children:x})]})},84458:function(c,u,n){"use strict";n.d(u,{r:function(){return _}});var t=n(74512),e=n(32735),r=n(95441),o=n(14911),s=n(8471),l=n(59619),i=n(8365),x=n(77981);const m=s.ZP.a`
|
|
59
|
+
display: inline-flex;
|
|
60
|
+
align-items: center;
|
|
61
|
+
text-decoration: none;
|
|
62
|
+
pointer-events: ${({disabled:g})=>g?"none":void 0};
|
|
63
|
+
color: ${({disabled:g,theme:a})=>g?a.colors.neutral600:a.colors.primary600};
|
|
64
|
+
|
|
65
|
+
svg path {
|
|
66
|
+
transition: fill 150ms ease-out;
|
|
67
|
+
fill: currentColor;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
svg {
|
|
71
|
+
font-size: ${10/16}rem;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
${i.Z} {
|
|
75
|
+
transition: color 150ms ease-out;
|
|
76
|
+
color: currentColor;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
&:hover {
|
|
80
|
+
color: ${({theme:g})=>g.colors.primary500};
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
&:active {
|
|
84
|
+
color: ${({theme:g})=>g.colors.primary700};
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
${l.BF};
|
|
88
|
+
`,E=(0,s.ZP)(x.x)`
|
|
89
|
+
display: flex;
|
|
90
|
+
`,_=e.forwardRef(({children:g,href:a,to:d,disabled:p=!1,startIcon:f,endIcon:h,...M},v)=>{const j=a?"_blank":void 0,P=a?"noreferrer noopener":void 0;return(0,t.jsxs)(m,{as:d&&!p?o.OL:"a",target:j,rel:P,to:p?void 0:d,href:p?"#":a,disabled:p,ref:v,...M,children:[f&&(0,t.jsx)(E,{as:"span","aria-hidden":!0,paddingRight:2,children:f}),(0,t.jsx)(i.Z,{children:g}),h&&!a&&(0,t.jsx)(E,{as:"span","aria-hidden":!0,paddingLeft:2,children:h}),a&&(0,t.jsx)(E,{as:"span","aria-hidden":!0,paddingLeft:2,children:(0,t.jsx)(r.Z,{})})]})})},95162:function(c,u,n){"use strict";n.d(u,{o:function(){return s}});var t=n(74512),e=n(8471),r=n(77981);const o=(0,e.ZP)(r.x)`
|
|
91
|
+
// To prevent global outline on focus visible to force an outline when Main is focused
|
|
92
|
+
&:focus-visible {
|
|
93
|
+
outline: none;
|
|
94
|
+
}
|
|
95
|
+
`,s=({labelledBy:l="main-content-title",...i})=>(0,t.jsx)(o,{"aria-labelledby":l,as:"main",id:"main-content",tabIndex:-1,...i})},70788:function(c,u,n){"use strict";n.d(u,{Z:function(){return r}});var t=n(74512);const e=o=>(0,t.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...o,children:(0,t.jsx)("path",{fill:"#212134",d:"M24 13.3a.2.2 0 0 1-.2.2H5.74l8.239 8.239a.2.2 0 0 1 0 .282L12.14 23.86a.2.2 0 0 1-.282 0L.14 12.14a.2.2 0 0 1 0-.282L11.86.14a.2.2 0 0 1 .282 0L13.98 1.98a.2.2 0 0 1 0 .282L5.74 10.5H23.8c.11 0 .2.09.2.2v2.6Z"})}),r=e},19594:function(c,u,n){"use strict";n.d(u,{Z:function(){return r}});var t=n(74512);const e=o=>(0,t.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...o,children:(0,t.jsx)("path",{fill:"#212134",fillRule:"evenodd",d:"M2.68 9.192c-.6.276-2.114 1.18-2.306 1.303a.792.792 0 0 0-.374.68v1.65a.797.797 0 0 0 .384.687c.254.16 1.73 1.042 2.306 1.303l.744 1.8c-.24.634-.67 2.333-.72 2.554a.797.797 0 0 0 .216.744l1.167 1.166a.801.801 0 0 0 .744.216l.03-.008c.36-.092 1.946-.498 2.523-.712l1.8.744c.276.6 1.181 2.115 1.304 2.307a.805.805 0 0 0 .679.374h1.649a.797.797 0 0 0 .686-.384c.16-.254 1.042-1.73 1.303-2.306l1.8-.744c.634.24 2.333.67 2.554.72a.797.797 0 0 0 .744-.216l1.166-1.167a.803.803 0 0 0 .216-.744l-.008-.03c-.092-.36-.498-1.946-.712-2.523l.744-1.8c.6-.276 2.115-1.181 2.307-1.304a.804.804 0 0 0 .374-.679v-1.649a.796.796 0 0 0-.382-.679c-.254-.16-1.73-1.041-2.306-1.303l-.744-1.8c.24-.634.67-2.333.72-2.554a.796.796 0 0 0-.216-.744l-1.166-1.173a.802.802 0 0 0-.744-.216l-.03.008c-.361.092-1.947.498-2.524.712l-1.8-.744c-.276-.6-1.18-2.115-1.303-2.307a.803.803 0 0 0-.68-.374h-1.65a.797.797 0 0 0-.68.382c-.16.254-1.041 1.73-1.303 2.306l-1.8.744c-.634-.24-2.333-.67-2.554-.72a.797.797 0 0 0-.744.216L2.921 4.094a.802.802 0 0 0-.216.744l.008.03c.092.361.498 1.947.712 2.524l-.744 1.8ZM12 17a5 5 0 1 0 0-10 5 5 0 0 0 0 10Z",clipRule:"evenodd"})}),r=e}}]);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";(self.webpackChunk_strapi_admin=self.webpackChunk_strapi_admin||[]).push([[4174],{84174:function(v,l,e){e.r(l),e.d(l,{REVIEW_WORKFLOW_FILTERS:function(){return w}});var o=e(69997),t=e(32735),E=e(70843),c=e(8241),a=e(60216),r=e.n(a),n=e(67879),i=e(48586),u=e(62089);const s=({value:T,onChange:W})=>{const{formatMessage:A}=(0,n.Z)(),{users:_,isLoading:C}=(0,u.R)();return t.createElement(E.hQ,{value:T,"aria-label":A({id:"content-manager.components.Filters.usersSelect.label",defaultMessage:"Search and select an user to filter"}),onChange:W,loading:C},_.map(d=>t.createElement(c.O,{key:d.id,value:d.id.toString()},(0,i.G)(d,A))))};s.propTypes={onChange:r().func.isRequired,value:r().string},s.defaultProps={value:""};var f=e(4987),O=e(84642),g=e(8365),S=e(35547),R=e(32329),L=e(68886);const m=({value:T,onChange:W,uid:A})=>{const{formatMessage:_}=(0,n.Z)(),{workflows:[C],isLoading:d}=(0,R.n)({filters:{contentTypes:A}});return t.createElement(f.q4,{"aria-label":_({id:"content-manager.components.Filters.reviewWorkflows.label",defaultMessage:"Search and select an workflow stage to filter"}),value:T,onChange:W,loading:d,customizeContent:()=>t.createElement(O.k,{as:"span",justifyContent:"space-between",alignItems:"center",width:"100%"},t.createElement(g.Z,{textColor:"neutral800",ellipsis:!0},T),d?t.createElement(S.a,{small:!0,style:{display:"flex"}}):null)},(C?.stages??[]).map(({id:P,color:p,name:I})=>{const{themeColorName:y}=(0,L.k)(p);return t.createElement(f.ag,{key:P,startIcon:t.createElement(O.k,{height:2,background:p,borderColor:y==="neutral0"?"neutral150":"transparent",hasRadius:!0,shrink:0,width:2}),value:I},I)}))};m.defaultProps={value:""},m.propTypes={onChange:r().func.isRequired,uid:r().string.isRequired,value:r().string};const w=[{fieldSchema:{type:"relation",mainField:{name:"name",schema:{type:"string"}}},metadatas:{customInput:m,label:{id:(0,o.OB)("containers.ListPage.table-headers.reviewWorkflows.stage"),defaultMessage:"Review stage"}},name:"strapi_stage"},{fieldSchema:{type:"relation",mainField:{name:"id",schema:{type:"int"}}},metadatas:{customInput:s,customOperators:[{intlLabel:{id:"components.FilterOptions.FILTER_TYPES.$eq",defaultMessage:"is"},value:"$eq"},{intlLabel:{id:"components.FilterOptions.FILTER_TYPES.$ne",defaultMessage:"is not"},value:"$ne"}],label:{id:(0,o.OB)("containers.ListPage.table-headers.reviewWorkflows.assignee.label"),defaultMessage:"Assignee"}},name:"strapi_assignee"}]},2121:function(v,l,e){e.d(l,{$k:function(){return S},Ef:function(){return T},FT:function(){return m},Nj:function(){return O},Ot:function(){return s},QM:function(){return i},VS:function(){return R},_X:function(){return W},bc:function(){return f},gu:function(){return E},k_:function(){return g},lv:function(){return L},qZ:function(){return n},rg:function(){return a},sN:function(){return t},uL:function(){return w},x4:function(){return u},yq:function(){return c},zn:function(){return r}});var o=e(41865);const t="settings_review-workflows",E="Settings/Review_Workflows/RESET_WORKFLOW",c="Settings/Review_Workflows/SET_CONTENT_TYPES",a="Settings/Review_Workflows/SET_IS_LOADING",r="Settings/Review_Workflows/SET_ROLES",n="Settings/Review_Workflows/SET_WORKFLOW",i="Settings/Review_Workflows/SET_WORKFLOWS",u="Settings/Review_Workflows/WORKFLOW_DELETE_STAGE",s="Settings/Review_Workflows/WORKFLOW_ADD_STAGE",f="Settings/Review_Workflows/WORKFLOW_CLONE_STAGE",O="Settings/Review_Workflows/WORKFLOW_UPDATE_STAGE",g="Settings/Review_Workflows/WORKFLOW_UPDATE_STAGES",S="Settings/Review_Workflows/WORKFLOW_UPDATE_STAGE_POSITION",R="Settings/Review_Workflows/WORKFLOW_UPDATE",L={primary600:"Blue",primary200:"Lilac",alternative600:"Violet",alternative200:"Lavender",success600:"Green",success200:"Pale Green",danger500:"Cherry",danger200:"Pink",warning600:"Orange",warning200:"Yellow",secondary600:"Teal",secondary200:"Baby Blue",neutral400:"Gray",neutral0:"White"},m=o.W.colors.primary600,w={STAGE:"stage"},T="numberOfWorkflows",W="stagesPerWorkflow"},32329:function(v,l,e){e.d(l,{n:function(){return c}});var o=e(32735),t=e(96192),E=e(20108);function c(a={}){const{get:r}=(0,t.kY)(),{id:n="",...i}=a,u={populate:"stages"},{data:s,isLoading:f,status:O,refetch:g}=(0,E.useQuery)(["review-workflows","workflows",n],async()=>(await r(`/admin/review-workflows/workflows/${n}`,{params:{...u,...i}})).data),S=o.useMemo(()=>n&&s?.data?[s.data]:Array.isArray(s?.data)?s.data:[],[s?.data,n]);return{meta:o.useMemo(()=>s?.meta??{},[s?.meta]),workflows:S,isLoading:f,status:O,refetch:g}}},68886:function(v,l,e){e.d(l,{k:function(){return E},s:function(){return c}});var o=e(41865),t=e(2121);function E(a){if(!a)return null;const n=Object.entries(o.W.colors).filter(([,i])=>i.toUpperCase()===a.toUpperCase()).reduce((i,[u])=>(t.lv?.[u]&&(i=u),i),null);return n?{themeColorName:n,name:t.lv[n]}:null}function c(){return Object.entries(t.lv).map(([a,r])=>({hex:o.W.colors[a].toUpperCase(),name:r}))}}}]);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";(self.webpackChunk_strapi_admin=self.webpackChunk_strapi_admin||[]).push([[4429],{34429:function(e,u,i){i.r(u),i.d(u,{default:function(){return t}});const t={"Settings.email.plugin.button.test-email":"\u30E1\u30FC\u30EB\u9001\u4FE1\u306E\u30C6\u30B9\u30C8","Settings.email.plugin.label.defaultFrom":"\u30C7\u30D5\u30A9\u30EB\u30C8\u306E\u9001\u4FE1\u30A2\u30C9\u30EC\u30B9","Settings.email.plugin.label.defaultReplyTo":"\u30C7\u30D5\u30A9\u30EB\u30C8\u306E\u8FD4\u4FE1\u30A2\u30C9\u30EC\u30B9","Settings.email.plugin.label.provider":"E\u30E1\u30FC\u30EB\u3000\u30D7\u30ED\u30D0\u30A4\u30C0","Settings.email.plugin.label.testAddress":"\u30E1\u30FC\u30EB\u9001\u4FE1\u306E\u30C6\u30B9\u30C8\u3092\u3059\u308B","Settings.email.plugin.notification.config.error":"E\u30E1\u30FC\u30EB\u306E\u8A2D\u5B9A\u306E\u53D6\u5F97\u306B\u5931\u6557\u3057\u307E\u3057\u305F","Settings.email.plugin.notification.data.loaded":"E\u30E1\u30FC\u30EB\u306E\u8A2D\u5B9A\u30C7\u30FC\u30BF\u306F\u3059\u3067\u306B\u53D6\u5F97\u6E08\u307F\u3067\u3059","Settings.email.plugin.notification.test.error":"{to}\u3078\u306E\u30C6\u30B9\u30C8\u30E1\u30FC\u30B9\u306E\u9001\u4FE1\u306B\u5931\u6557\u3057\u307E\u3057\u305F","Settings.email.plugin.notification.test.success":"\u30C6\u30B9\u30C8\u30E1\u30FC\u30B9\u306E\u9001\u4FE1\u306B\u6210\u529F\u3057\u307E\u3057\u305F\u3001{to}\u306E\u30E1\u30FC\u30EB\u30DC\u30C3\u30AF\u30B9\u3092\u78BA\u8A8D\u3057\u3066\u304F\u3060\u3055\u3044","Settings.email.plugin.placeholder.defaultFrom":"\u4F8B: Strapi No-Reply <no-reply@strapi.io>","Settings.email.plugin.placeholder.defaultReplyTo":"\u4F8B: Strapi <example@strapi.io>","Settings.email.plugin.placeholder.testAddress":"\u4F8B: developer@example.com","Settings.email.plugin.subTitle":"E\u30E1\u30FC\u30EB\u30D7\u30E9\u30B0\u30A4\u30F3\u306E\u8A2D\u5B9A\u306E\u30C6\u30B9\u30C8","Settings.email.plugin.text.configuration":"\u3053\u306E\u30D7\u30E9\u30B0\u30A4\u30F3\u306F{file}\u30D5\u30A1\u30A4\u30EB\u3092\u7528\u3044\u3066\u69CB\u6210\u3055\u308C\u307E\u3057\u305F\u3001\u3053\u306E\u30EA\u30F3\u30AF {link}\u3000\u306E\u30C9\u30AD\u30E5\u30E1\u30F3\u30C8\u3092\u78BA\u8A8D\u3057\u3066\u304F\u3060\u3055\u3044\u3002","Settings.email.plugin.title":"E\u30E1\u30FC\u30EB\u306E\u8A2D\u5B9A","Settings.email.plugin.title.config":"\u69CB\u6210","Settings.email.plugin.title.test":"\u30C6\u30B9\u30C8\u30E1\u30FC\u30EB\u306E\u9001\u4FE1","SettingsNav.link.settings":"\u8A2D\u5B9A","SettingsNav.section-label":"E\u30E1\u30FC\u30EB\u3000\u30D7\u30E9\u30B0\u30A4\u30F3","components.Input.error.validation.email":"\u3053\u308C\u306F\u7121\u52B9\u306AE\u30E1\u30FC\u30EB\u30A2\u30C9\u30EC\u30B9\u3067\u3059"}}}]);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";(self.webpackChunk_strapi_admin=self.webpackChunk_strapi_admin||[]).push([[4555],{24555:function(t,n,u){u.r(n),u.d(n,{default:function(){return s}});const s={}}}]);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";(self.webpackChunk_strapi_admin=self.webpackChunk_strapi_admin||[]).push([[4663],{24663:function(l,e,i){i.r(e),i.d(e,{default:function(){return t}});const t={"Settings.email.plugin.button.test-email":"Send test e-mail","Settings.email.plugin.label.defaultFrom":"Standard afsender e-mail","Settings.email.plugin.label.defaultReplyTo":"Standard svar e-mail","Settings.email.plugin.label.provider":"E-mail provider","Settings.email.plugin.label.testAddress":"Modtager e-mail","Settings.email.plugin.notification.config.error":"Fejlede i at hente e-mail konfiguration","Settings.email.plugin.notification.data.loaded":"E-mail indstillinger er blevet hentet","Settings.email.plugin.notification.test.error":"Fejlede ved udsendelse af test mail til {to}","Settings.email.plugin.notification.test.success":"E-mail test lykkedes, tjek indbakken hos {to}","Settings.email.plugin.placeholder.defaultFrom":"f.eks. Strapi No-Reply <no-reply@strapi.io>","Settings.email.plugin.placeholder.defaultReplyTo":"f.eks. Strapi <example@strapi.io>","Settings.email.plugin.placeholder.testAddress":"f.eks. developer@example.com","Settings.email.plugin.subTitle":"Test indstillingerne for Email plugin","Settings.email.plugin.text.configuration":"Pluginnet er konfigureret igennem {file} filen, tjek {link} for dokumentation.","Settings.email.plugin.title":"Konfiguration","Settings.email.plugin.title.config":"Konfiguration","Settings.email.plugin.title.test":"Test e-mail modtagelse","SettingsNav.link.settings":"Indstillinger","SettingsNav.section-label":"E-mail plugin","components.Input.error.validation.email":"Dette er en ugyldig e-mail"}}}]);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
(self.webpackChunk_strapi_admin=self.webpackChunk_strapi_admin||[]).push([[4732],{84802:function(l){function i(t,n,_,e){for(var s=-1,c=t==null?0:t.length;++s<c;){var h=t[s];n(e,h,_(h),t)}return e}l.exports=i},88058:function(l,i,t){var n=t(87650);function _(e,s){var c=e==null?0:e.length;return!!c&&n(e,s,0)>-1}l.exports=_},37431:function(l){function i(t,n,_){for(var e=-1,s=t==null?0:t.length;++e<s;)if(_(n,t[e]))return!0;return!1}l.exports=i},23089:function(l,i,t){var n=t(61712),_=n("length");l.exports=_},62435:function(l,i,t){var n=t(56671);function _(e,s,c,h){return n(e,function(r,o,a){s(h,r,c(r),a)}),h}l.exports=_},60528:function(l){function i(t,n,_,e){for(var s=t.length,c=_+(e?1:-1);e?c--:++c<s;)if(n(t[c],c,t))return c;return-1}l.exports=i},87650:function(l,i,t){var n=t(60528),_=t(25556),e=t(54256);function s(c,h,r){return h===h?e(c,h,r):n(c,_,r)}l.exports=s},25556:function(l){function i(t){return t!==t}l.exports=i},84351:function(l,i,t){var n=t(61124),_=t(88058),e=t(37431),s=t(30555),c=t(58491),h=t(66350),r=200;function o(a,u,w){var E=-1,f=_,g=a.length,Z=!0,m=[],v=m;if(w)Z=!1,f=e;else if(g>=r){var M=u?null:c(a);if(M)return h(M);Z=!1,f=s,v=new n}else v=u?[]:m;t:for(;++E<g;){var d=a[E],x=u?u(d):d;if(d=w||d!==0?d:0,Z&&x===x){for(var p=v.length;p--;)if(v[p]===x)continue t;u&&v.push(x),m.push(d)}else f(v,x,w)||(v!==m&&v.push(x),m.push(d))}return m}l.exports=o},85580:function(l,i,t){var n=t(84802),_=t(62435),e=t(88904),s=t(77236);function c(h,r){return function(o,a){var u=s(o)?n:_,w=r?r():{};return u(o,h,e(a,2),w)}}l.exports=c},58491:function(l,i,t){var n=t(69902),_=t(13581),e=t(66350),s=1/0,c=n&&1/e(new n([,-0]))[1]==s?function(h){return new n(h)}:_;l.exports=c},54256:function(l){function i(t,n,_){for(var e=_-1,s=t.length;++e<s;)if(t[e]===n)return e;return-1}l.exports=i},38788:function(l,i,t){var n=t(23089),_=t(34327),e=t(71286);function s(c){return _(c)?e(c):n(c)}l.exports=s},71286:function(l){var i="\\ud800-\\udfff",t="\\u0300-\\u036f",n="\\ufe20-\\ufe2f",_="\\u20d0-\\u20ff",e=t+n+_,s="\\ufe0e\\ufe0f",c="["+i+"]",h="["+e+"]",r="\\ud83c[\\udffb-\\udfff]",o="(?:"+h+"|"+r+")",a="[^"+i+"]",u="(?:\\ud83c[\\udde6-\\uddff]){2}",w="[\\ud800-\\udbff][\\udc00-\\udfff]",E="\\u200d",f=o+"?",g="["+s+"]?",Z="(?:"+E+"(?:"+[a,u,w].join("|")+")"+g+f+")*",m=g+f+Z,v="(?:"+[a+h+"?",h,u,w,c].join("|")+")",M=RegExp(r+"(?="+r+")|"+v+m,"g");function d(x){for(var p=M.lastIndex=0;M.test(x);)++p;return p}l.exports=d},81346:function(l,i,t){var n=t(40999),_=t(85580),e=Object.prototype,s=e.hasOwnProperty,c=_(function(h,r,o){s.call(h,o)?h[o].push(r):n(h,o,[r])});l.exports=c},34461:function(l,i,t){var n=t(94318),_=t(77236),e=t(3387),s="[object String]";function c(h){return typeof h=="string"||!_(h)&&e(h)&&n(h)==s}l.exports=c},13581:function(l){function i(){}l.exports=i},61868:function(l,i,t){var n=t(78803),_=t(26686),e=t(81580),s=t(34461),c=t(38788),h="[object Map]",r="[object Set]";function o(a){if(a==null)return 0;if(e(a))return s(a)?c(a):a.length;var u=_(a);return u==h||u==r?a.size:n(a).length}l.exports=o},59578:function(l,i,t){var n=t(41119);function _(e){return n(e).toLowerCase()}l.exports=_},91815:function(l,i,t){var n=t(84351);function _(e){return e&&e.length?n(e):[]}l.exports=_},8241:function(l,i,t){"use strict";t.d(i,{O:function(){return _}});var n=t(70843);const _=n.Wx},98851:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...s,children:(0,n.jsx)("path",{fill:"#212134",d:"M12 2a8.5 8.5 0 0 1 8.5 8.5c0 6.5-5.5 12-8.5 12s-8.5-5.5-8.5-12A8.5 8.5 0 0 1 12 2Zm5.5 10a4.5 4.5 0 0 0-4.475 4.975 4.5 4.5 0 0 0 4.95-4.95A4.54 4.54 0 0 0 17.5 12Zm-11 0c-.16 0-.319.008-.475.025a4.5 4.5 0 0 0 4.95 4.95A4.5 4.5 0 0 0 6.5 12Z"})}),e=_},88454:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...s,children:(0,n.jsx)("path",{fill:"#8E8EA9",d:"M14 10v4h-4v-4h4Zm2 0h5v4h-5v-4Zm-2 11h-4v-5h4v5Zm2 0v-5h5v4a1 1 0 0 1-1 1h-4ZM14 3v5h-4V3h4Zm2 0h4a1 1 0 0 1 1 1v4h-5V3Zm-8 7v4H3v-4h5Zm0 11H4a1 1 0 0 1-1-1v-4h5v5ZM8 3v5H3V4a1 1 0 0 1 1-1h4Z"})}),e=_},60860:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...s,children:(0,n.jsx)("path",{fill:"#212134",d:"M3 10h18v10.004c0 .55-.445.996-.993.996H3.993A.994.994 0 0 1 3 20.004V10Zm6 2v2h6v-2H9ZM2 4c0-.552.455-1 .992-1h18.016c.548 0 .992.444.992 1v4H2V4Z"})}),e=_},72480:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...s,children:(0,n.jsx)("path",{fill:"#212134",d:"M13.3 0c.11 0 .2.09.2.2v18.06l8.238-8.239a.2.2 0 0 1 .283 0l1.837 1.838a.2.2 0 0 1 0 .282L12.141 23.86a.2.2 0 0 1-.283 0L.141 12.14a.2.2 0 0 1 0-.282l1.837-1.838a.2.2 0 0 1 .283 0L10.5 18.26V.2c0-.11.09-.2.2-.2h2.6Z"})}),e=_},70788:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...s,children:(0,n.jsx)("path",{fill:"#212134",d:"M24 13.3a.2.2 0 0 1-.2.2H5.74l8.239 8.239a.2.2 0 0 1 0 .282L12.14 23.86a.2.2 0 0 1-.282 0L.14 12.14a.2.2 0 0 1 0-.282L11.86.14a.2.2 0 0 1 .282 0L13.98 1.98a.2.2 0 0 1 0 .282L5.74 10.5H23.8c.11 0 .2.09.2.2v2.6Z"})}),e=_},23381:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...s,children:(0,n.jsx)("path",{fill:"#212134",d:"M10.7 24a.2.2 0 0 1-.2-.2V5.74L2.26 13.979a.2.2 0 0 1-.283 0L.141 12.14a.2.2 0 0 1 0-.282L11.858.14a.2.2 0 0 1 .283 0L23.858 11.86a.2.2 0 0 1 0 .282l-1.837 1.838a.2.2 0 0 1-.283 0L13.5 5.74V23.8a.2.2 0 0 1-.2.2h-2.6Z"})}),e=_},32095:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...s,children:(0,n.jsx)("path",{fill:"#212134",d:"M14 13.5V8a4 4 0 1 0-8 0v5.5a6.5 6.5 0 0 0 13 0V4h2v9.5a8.5 8.5 0 1 1-17 0V8a6 6 0 1 1 12 0v5.5a3.5 3.5 0 1 1-7 0V8h2v5.5a1.5 1.5 0 1 0 3 0Z"})}),e=_},87436:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...s,children:(0,n.jsx)("path",{fill:"#212134",d:"M22 20H2v-2h1v-6.969C3 6.043 7.03 2 12 2s9 4.043 9 9.031V18h1v2ZM9.5 21h5a2.5 2.5 0 0 1-5 0Z"})}),e=_},73892:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...s,children:(0,n.jsx)("path",{fill:"#32324D",fillRule:"evenodd",d:"M7.4 1.2H4.2v21.6h3.2V1.2Zm11.6 6a6 6 0 0 1-1.5 4 6.4 6.4 0 0 1-3.8 11.6H7.4v-3.2h6.3c1.8 0 3.3-1.4 3.3-3.2 0-1.8-1.5-3.2-3.3-3.2H7.4V10H13a2.8 2.8 0 0 0 0-5.6H7.4V1.2H13a6 6 0 0 1 6 6Z",clipRule:"evenodd"})}),e=_},54342:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 32 24",...s,children:[(0,n.jsx)("rect",{width:31,height:23,x:.5,y:.5,fill:"#EAFBE7",stroke:"#C6F0C2",rx:2.5}),(0,n.jsx)("path",{fill:"#328048",d:"M19.5 7h-7A4.505 4.505 0 0 0 8 11.5c0 2.481 2.019 4.5 4.5 4.5h7c2.481 0 4.5-2.019 4.5-4.5S21.981 7 19.5 7Zm0 8a3.5 3.5 0 1 1 0-7 3.5 3.5 0 0 1 0 7Z"})]}),e=_},1586:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...s,children:(0,n.jsx)("path",{fill:"#212134",d:"M7 5V2a1 1 0 0 1 1-1h8a1 1 0 0 1 1 1v3h4a1 1 0 0 1 1 1v14a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V6a1 1 0 0 1 1-1h4Zm10 8v-3h-2v3H9v-3H7v3H4v6h16v-6h-3ZM9 3v2h6V3H9Z"})}),e=_},2651:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...s,children:(0,n.jsx)("path",{fill:"#212134",d:"m13.289 6.216 4.939-3.841a1 1 0 0 1 1.32.082l2.995 2.994a1 1 0 0 1 .082 1.321l-3.84 4.938a7.504 7.504 0 0 1-7.283 9.292C8 21.002 3.5 19.5 1 18c3.98-3 3.047-4.81 3.5-6.5 1.058-3.95 4.842-6.257 8.789-5.284Zm3.413 1.879c.065.063.13.128.193.194l1.135 1.134 2.475-3.182-1.746-1.746-3.182 2.475 1.125 1.125Z"})}),e=_},44494:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...s,children:(0,n.jsx)("path",{fill:"#32324D",fillRule:"evenodd",d:"M3.64 7.23a2.14 2.14 0 1 1 0-4.27 2.14 2.14 0 0 1 0 4.27Zm4.98-3.25H22.5v2.37H8.62V3.98Zm-7.12 8.1a2.14 2.14 0 1 0 4.27 0 2.14 2.14 0 0 0-4.27 0Zm2.14 9.04a2.14 2.14 0 1 1 0-4.27 2.14 2.14 0 0 1 0 4.27ZM22.5 10.87H8.62v2.37H22.5v-2.37Zm-13.88 6.9H22.5v2.37H8.62v-2.37Z",clipRule:"evenodd"})}),e=_},5894:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...s,children:(0,n.jsx)("path",{fill:"#212134",d:"M19 20H5v1a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1v-9l2.513-6.702A2 2 0 0 1 6.386 4h11.228a2 2 0 0 1 1.873 1.298L22 12v9a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1v-1ZM4.136 12h15.728l-2.25-6H6.386l-2.25 6ZM6.5 17a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Zm11 0a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z"})}),e=_},88026:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...s,children:(0,n.jsx)("path",{fill:"#212134",d:"M3 3h18a1 1 0 0 1 1 1v16a1 1 0 0 1-1 1h-6c0-.67-.051-1.338-.153-2H20V5H4v3.153A13.1 13.1 0 0 0 2 8V4a1 1 0 0 1 1-1Zm10 18h-2a9 9 0 0 0-9-9v-2c6.075 0 11 4.925 11 11Zm-4 0H7a5 5 0 0 0-5-5v-2a7 7 0 0 1 7 7Zm-4 0H2v-3a3 3 0 0 1 3 3Zm9.373-4A13.033 13.033 0 0 0 6 8.627V7h12v10h-3.627Z"})}),e=_},94852:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...s,children:(0,n.jsx)("path",{fill:"#212134",d:"M16 16a3 3 0 1 1 0 6 3 3 0 0 1 0-6ZM6 12c2.21 0 4 1.79 4 4s-1.79 4-4 4-4-1.79-4-4 1.79-4 4-4Zm8.5-10a5.5 5.5 0 1 1 0 11 5.5 5.5 0 0 1 0-11Z"})}),e=_},72911:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...s,children:(0,n.jsx)("path",{fill:"#212134",d:"M11 2.05v3.02a7 7 0 1 0 5.192 12.536l2.137 2.137A9.966 9.966 0 0 1 12 22C6.477 22 2 17.523 2 12c0-5.185 3.947-9.449 9-9.95ZM21.95 13a9.947 9.947 0 0 1-2.207 5.328l-2.137-2.136A6.958 6.958 0 0 0 18.929 13h3.022-.001ZM13.002 2.05a10.004 10.004 0 0 1 8.95 8.95H18.93a7.005 7.005 0 0 0-5.928-5.929V2.049v.001Z"})}),e=_},37781:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...s,children:(0,n.jsx)("path",{fill:"#212134",d:"M11 2.05V13h10.95c-.501 5.053-4.765 9-9.95 9-5.523 0-10-4.477-10-10 0-5.185 3.947-9.449 9-9.95Zm2-1.507C18.553 1.02 22.979 5.447 23.457 11H13V.543Z"})}),e=_},24591:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...s,children:(0,n.jsx)("path",{fill:"#212134",d:"M17 7a8.003 8.003 0 0 0-7.493 5.19l1.874.703A6.002 6.002 0 0 1 23.001 15a6 6 0 0 1-6 6H7A6 6 0 0 1 5.007 9.339a7 7 0 0 1 13.757-2.143A8.027 8.027 0 0 0 17 7Z"})}),e=_},68620:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...s,children:(0,n.jsx)("path",{fill:"#32324D",d:"m9.8 15.5-6.3-3.7 6.3-3.6V5.3l-8.8 5v3l8.8 5v-2.8Zm4.4-7 6.3 3.6-6.3 3.7v2.9l8.8-5.1v-2.9l-8.8-5v2.8Z"})}),e=_},39638:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 22 22",...s,children:(0,n.jsx)("path",{fill:"#32324D",d:"M5 5H0v2.5h7.5V0H5v5Zm17 0h-5.1V0h-2.5v7.5h7.5V5ZM7.5 14.4H0v2.5h5v5h2.5v-7.5Zm9.4 2.5h5v-2.5h-7.5v7.5h2.5v-5Z"})}),e=_},17110:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",viewBox:"0 0 24 24",...s,children:(0,n.jsx)("path",{fillRule:"evenodd",d:"M3.98.027a4.485 4.485 0 0 0-1.64.507C.885 1.308 0 2.802 0 4.485 0 6.759 1.577 8.628 3.828 9.02c.267.047.715.06 2.037.06H7.56v5.84H5.95c-.928 0-1.762.019-1.97.044a4.474 4.474 0 0 0-1.445.435C.974 16.165 0 17.747 0 19.515c0 1.229.451 2.328 1.304 3.181a4.387 4.387 0 0 0 6.234.002c.573-.572.945-1.225 1.174-2.058l.105-.38.014-2.01.014-2.01h6.31l.014 2.01.014 2.01.105.38c.39 1.419 1.329 2.5 2.624 3.022.536.217.902.296 1.491.326a4.345 4.345 0 0 0 3.294-1.293c.85-.85 1.303-1.955 1.303-3.18 0-2.327-1.7-4.271-3.98-4.551-.208-.025-1.042-.044-1.97-.044h-1.61V9.08h1.695c1.832 0 2.058-.019 2.712-.224C22.719 8.269 24 6.492 24 4.485c0-1.185-.44-2.297-1.231-3.109C21.429-.001 19.426-.381 17.73.42c-1.244.588-2.069 1.58-2.442 2.94l-.105.38-.014 2.03-.014 2.03h-6.31l-.014-2.03-.014-2.03-.105-.38C8.427 2.323 7.877 1.498 7.06.883 6.712.621 5.998.269 5.6.163 5.094.028 4.427-.028 3.98.027m1.132 1.317c.932.192 1.765.871 2.185 1.782.249.539.263.691.263 2.816v1.906l-1.73-.019c-1.853-.02-1.992-.034-2.509-.242-.422-.171-.689-.355-1.081-.747-.526-.527-.779-.982-.902-1.625-.077-.399-.074-1.102.006-1.487.234-1.136 1.227-2.14 2.357-2.382a4.203 4.203 0 0 1 1.411-.002m15.16 0c1.15.237 2.147 1.234 2.384 2.384.08.385.083 1.088.006 1.487-.123.643-.376 1.098-.902 1.625-.392.392-.659.576-1.081.747-.517.208-.656.222-2.509.242l-1.73.019V5.942c0-2.125.014-2.277.263-2.816.414-.898 1.247-1.584 2.158-1.78a4.203 4.203 0 0 1 1.411-.002M15.16 12v2.96H8.84V9.04h6.32V12m-7.6 6.082c0 2.099-.015 2.254-.263 2.792a3.182 3.182 0 0 1-2.19 1.788c-.36.081-1.019.079-1.392-.005-1.16-.26-2.136-1.241-2.371-2.385-.129-.622-.063-1.504.15-2.032.347-.859 1.148-1.614 2.017-1.898.371-.121.558-.133 2.319-.137l1.73-.005v1.882m12.86-1.766c.943.314 1.728 1.037 2.086 1.924.208.516.279 1.426.156 2.007a3.185 3.185 0 0 1-2.377 2.41c-.373.084-1.032.086-1.392.005a3.182 3.182 0 0 1-2.19-1.788c-.248-.538-.263-.693-.263-2.795v-1.884l1.85.014c1.811.014 1.856.016 2.13.107"})}),e=_},79334:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 32 24",...s,children:[(0,n.jsx)("rect",{width:31,height:23,x:.5,y:.5,fill:"#F6F6F9",stroke:"#DCDCE4",rx:2.5}),(0,n.jsx)("path",{fill:"#666687",fillRule:"evenodd",d:"M13.535 8.768c0 .116-.011.229-.032.339l3.013 1.776 2.985-1.76a1.768 1.768 0 1 1 .519.93l-2.982 1.757v2.477a1.768 1.768 0 1 1-1.048-.044v-2.435l-2.997-1.767a1.768 1.768 0 1 1 .542-1.274Z",clipRule:"evenodd"}),(0,n.jsx)("path",{fill:"#666687",d:"m13.503 9.107-.05-.01-.006.035.03.018.026-.043Zm3.013 1.776-.025.043.025.014.025-.014-.025-.043Zm2.985-1.76.025.044.031-.018-.007-.035-.05.01Zm.518.93.035-.036-.027-.026-.033.02.026.042Zm-2.98 1.757-.026-.043-.025.014v.029h.05Zm0 2.477h-.05v.035l.032.012.017-.047Zm-1.049-.044.013.048.037-.01v-.038h-.05Zm0-2.435h.05v-.029l-.024-.014-.026.043Zm-2.997-1.767.025-.043-.033-.019-.027.027.035.035Zm.559-.925c.022-.113.033-.23.033-.348h-.1c0 .112-.01.223-.031.33l.098.018Zm2.99 1.723-3.014-1.775-.05.086 3.013 1.775.05-.086Zm2.933-1.758-2.984 1.758.05.086 2.985-1.758-.05-.086Zm-.06-.313c0 .125.013.247.037.366l.098-.02a1.723 1.723 0 0 1-.035-.346h-.1Zm1.818-1.818a1.818 1.818 0 0 0-1.818 1.818h.1c0-.949.769-1.718 1.718-1.718v-.1Zm1.817 1.818a1.818 1.818 0 0 0-1.817-1.818v.1c.948 0 1.717.769 1.717 1.718h.1Zm-1.817 1.817a1.818 1.818 0 0 0 1.817-1.817h-.1c0 .948-.769 1.717-1.717 1.717v.1Zm-1.248-.495c.326.307.765.495 1.248.495v-.1c-.457 0-.872-.178-1.18-.468l-.068.073Zm-2.921 1.763 2.98-1.757-.05-.086-2.981 1.757.05.086Zm.024 2.434V11.81h-.1v2.477h.1Zm-.067.047a1.718 1.718 0 0 1 1.14 1.618h.1c0-.79-.503-1.46-1.206-1.712l-.034.094Zm1.14 1.618c0 .948-.77 1.717-1.718 1.717v.1a1.817 1.817 0 0 0 1.817-1.817h-.1Zm-1.718 1.717a1.718 1.718 0 0 1-1.718-1.717h-.1c0 1.004.814 1.817 1.818 1.817v-.1Zm-1.718-1.717c0-.797.543-1.467 1.278-1.66l-.026-.098a1.818 1.818 0 0 0-1.352 1.758h.1Zm1.215-4.144v2.435h.1v-2.435h-.1Zm-2.973-1.723 2.998 1.766.05-.086-2.997-1.767-.05.087Zm-1.2.5c.49 0 .934-.193 1.26-.507l-.069-.072c-.309.296-.728.48-1.19.48v.1ZM9.95 8.768c0 1.003.814 1.817 1.818 1.817v-.1a1.718 1.718 0 0 1-1.718-1.717h-.1Zm1.818-1.818A1.818 1.818 0 0 0 9.95 8.768h.1c0-.949.769-1.718 1.717-1.718v-.1Zm1.817 1.818a1.818 1.818 0 0 0-1.818-1.818v.1c.95 0 1.718.769 1.718 1.718h.1Z"})]}),e=_},40685:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...s,children:(0,n.jsx)("path",{fill:"#8E8EA9",d:"M8 5h3v9H8v3H6v-3H3V5h3V2h2v3Zm10 5h3v9h-3v3h-2v-3h-3v-9h3V7h2v3Z"})}),e=_},9362:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...s,children:(0,n.jsx)("path",{fill:"#212134",d:"M2.8 5.2 7 8l4.186-5.86a1 1 0 0 1 1.628 0L17 8l4.2-2.8a1 1 0 0 1 1.547.95l-1.643 13.967a1 1 0 0 1-.993.883H3.889a1 1 0 0 1-.993-.883L1.253 6.149A1 1 0 0 1 2.8 5.2ZM12 15a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z"})}),e=_},83708:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",viewBox:"0 0 448 512",...s,children:(0,n.jsx)("path",{fill:"#212134",d:"M216.3 2c4.8-2.6 10.5-2.6 15.3 0l190.7 104c5.1 2.8 8.3 8.2 8.3 14s-3.2 11.2-8.3 14L231.7 238c-4.8 2.6-10.5 2.6-15.3 0L25.7 134c-5.1-2.8-8.3-8.2-8.3-14s3.2-11.2 8.3-14L216.3 2zM23.7 170l176 96c5.1 2.8 8.3 8.2 8.3 14v216c0 5.6-3 10.9-7.8 13.8s-10.9 3-15.8.3L8.3 414c-5.1-2.8-8.3-8.1-8.3-14V184c0-5.6 3-10.9 7.8-13.8s10.9-3 15.8-.3zm400.7 0c5-2.7 11-2.6 15.8.3s7.8 8.1 7.8 13.8V400c0 5.9-3.2 11.2-8.3 14l-176 96c-5 2.7-11 2.6-15.8-.3s-7.8-8.1-7.8-13.8V280c0-5.9 3.2-11.2 8.3-14l176-96z"})}),e=_},6665:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...s,children:(0,n.jsx)("path",{fill:"#212134",d:"M5 3h15a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2h-2v3a4 4 0 0 1-4 4H8a4 4 0 0 1-4-4V4a1 1 0 0 1 1-1Zm13 2v3h2V5h-2ZM2 19h18v2H2v-2Z"})}),e=_},66846:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...s,children:(0,n.jsx)("path",{fill:"#212134",d:"M13.91 12.36 17 20.854l-2.818 1.026-3.092-8.494-4.172 3.156 1.49-14.909 10.726 10.463-5.224.264Z"})}),e=_},70146:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...s,children:(0,n.jsx)("path",{fill:"#212134",d:"M3 13h8V3H3v10Zm0 8h8v-6H3v6Zm10 0h8V11h-8v10Zm0-18v6h8V3h-8Z"})}),e=_},80031:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...s,children:(0,n.jsx)("path",{fill:"#212134",d:"M21 9.5v3c0 2.485-4.03 4.5-9 4.5s-9-2.015-9-4.5v-3c0 2.485 4.03 4.5 9 4.5s9-2.015 9-4.5Zm-18 5c0 2.485 4.03 4.5 9 4.5s9-2.015 9-4.5v3c0 2.485-4.03 4.5-9 4.5s-9-2.015-9-4.5v-3Zm9-2.5c-4.97 0-9-2.015-9-4.5S7.03 3 12 3s9 2.015 9 4.5-4.03 4.5-9 4.5Z"})}),e=_},44298:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 32 24",...s,children:[(0,n.jsx)("path",{fill:"#FDF4DC",stroke:"#FAE7B9",d:"M.5 3A2.5 2.5 0 0 1 3 .5h26A2.5 2.5 0 0 1 31.5 3v18a2.5 2.5 0 0 1-2.5 2.5H3A2.5 2.5 0 0 1 .5 21V3Z"}),(0,n.jsx)("path",{fill:"#D9822F",fillRule:"evenodd",d:"M11.934 7.495V6h1.45v1.495h5.232V6h1.45v1.495h.314c1.385 0 1.602.249 1.62 1.463V16.5c0 1.062-.096 1.5-1.4 1.5h-9.19c-1.306 0-1.41-.318-1.41-1.607V9.105c.018-1.025.117-1.61 1.5-1.61h.434Zm-.774 8.687c0 .406.123.433.388.433h8.953c.265 0 .34-.007.34-.413v-6.087c-.008-.314-.11-.369-.316-.369h-9.072c-.206 0-.296.045-.293.287v6.15Z",clipRule:"evenodd"})]}),e=_},13713:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...s,children:(0,n.jsx)("path",{fill:"#212134",d:"M16.8 19 14 22.5 11.2 19H6a1 1 0 0 1-1-1V7.103a1 1 0 0 1 1-1h16a1 1 0 0 1 1 1V18a1 1 0 0 1-1 1h-5.2ZM2 2h17v2H3v11H1V3a1 1 0 0 1 1-1Z"})}),e=_},37455:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...s,children:(0,n.jsx)("path",{fill:"#212134",d:"M8 3v2H6v4c0 2.21 1.79 4 4 4s4-1.79 4-4V5h-2V3h3a1 1 0 0 1 1 1v5a6.002 6.002 0 0 1-5 5.917V16.5a3.5 3.5 0 0 0 6.775 1.237 3 3 0 1 1 2.049.148A5.5 5.5 0 0 1 9 16.5v-1.583A6 6 0 0 1 4 9V4a1 1 0 0 1 1-1h3Z"})}),e=_},28385:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 32 24",...s,children:[(0,n.jsx)("rect",{width:31,height:23,x:.5,y:.5,fill:"#F6F6F9",stroke:"#DCDCE4",rx:2.5}),(0,n.jsx)("path",{fill:"#666687",d:"M20.573 8c-1.484 0-2.666.745-3.397 1.37l-.026.023-.416.452.919 1.51.68-.682c.711-.6 1.506-.93 2.24-.93 1.48 0 2.685 1.171 2.685 2.612 0 1.44-1.205 2.613-2.685 2.613-2.25 0-3.78-2.974-3.795-3.004C16.69 11.784 14.75 8 11.428 8 8.985 8 7 9.954 7 12.355c0 2.401 1.986 4.355 4.427 4.355 1.196 0 2.373-.476 3.404-1.376l.022-.02.413-.45-.919-1.51-.683.686c-.712.616-1.465.928-2.237.928-1.48 0-2.685-1.172-2.685-2.613 0-1.44 1.205-2.613 2.685-2.613 2.25 0 3.78 2.974 3.795 3.004.088.18 2.028 3.964 5.35 3.964 2.442 0 4.428-1.954 4.428-4.355C25 9.954 23.014 8 20.573 8Z"})]}),e=_},80016:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 32 24",...s,children:[(0,n.jsx)("rect",{width:31,height:23,x:.5,y:.5,fill:"#FCECEA",stroke:"#F5C0B8",rx:2.5}),(0,n.jsx)("path",{fill:"#D02B20",d:"M16.767 17.49c.724 0 1.428-.089 1.962-.253v-1.093c-.383.143-1.128.239-1.86.239-2.905 0-4.744-1.764-4.744-4.546v-.014c0-2.734 1.839-4.641 4.484-4.641 2.598 0 4.307 1.62 4.307 4.088v.013c0 1.402-.444 2.304-1.135 2.304-.417 0-.656-.287-.656-.772V9.157h-1.38v.82h-.124c-.273-.608-.868-.97-1.6-.97-1.367 0-2.296 1.135-2.296 2.789v.014c0 1.73.943 2.884 2.365 2.884.793 0 1.353-.362 1.64-1.052h.123l.007.04c.158.636.78 1.033 1.62 1.033 1.655 0 2.687-1.367 2.687-3.534v-.014c0-3.008-2.242-5.072-5.517-5.072-3.418 0-5.776 2.324-5.776 5.694v.014c0 3.431 2.331 5.687 5.893 5.687Zm-.342-4.053c-.718 0-1.149-.602-1.149-1.586v-.014c0-.991.431-1.586 1.156-1.586.724 0 1.182.608 1.182 1.586v.014c0 .977-.458 1.585-1.19 1.585Z"})]}),e=_},84951:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...s,children:(0,n.jsx)("path",{fill:"#212134",d:"M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10Zm-4-9a4 4 0 1 0 8 0H8Zm0-2a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Zm8 0a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z"})}),e=_},87816:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...s,children:(0,n.jsx)("path",{fill:"#212134",d:"M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10Zm-5-5h2a3 3 0 0 1 6 0h2a5 5 0 1 0-10 0Zm1-6a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Zm8 0a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z"})}),e=_},60384:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 32 24",...s,children:[(0,n.jsx)("rect",{width:31,height:23,x:.5,y:.5,fill:"#F6ECFC",stroke:"#E0C1F4",rx:2.5}),(0,n.jsx)("path",{fill:"#9736E8",fillRule:"evenodd",d:"M10.167 7a1.167 1.167 0 1 0 0 2.333 1.167 1.167 0 0 0 0-2.333Zm0 4.03a1.167 1.167 0 1 0 0 2.334 1.167 1.167 0 0 0 0-2.334ZM9 16.23a1.167 1.167 0 1 1 2.333 0 1.167 1.167 0 0 1-2.333 0Zm4.005-9.02a.4.4 0 0 0-.4.4v1.11c0 .22.18.4.4.4H22.6a.4.4 0 0 0 .4-.4V7.61a.4.4 0 0 0-.4-.4h-9.594Zm-.399 4.432a.4.4 0 0 1 .4-.4H22.6c.22 0 .4.18.4.4v1.11a.4.4 0 0 1-.4.4h-9.594a.4.4 0 0 1-.4-.4v-1.11Zm.4 3.63a.4.4 0 0 0-.4.4v1.11c0 .22.18.4.4.4H22.6a.4.4 0 0 0 .4-.4v-1.11a.4.4 0 0 0-.4-.4h-9.594Z",clipRule:"evenodd"})]}),e=_},50720:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...s,children:[(0,n.jsx)("path",{fill:"#32324D",d:"M0 2.8A.8.8 0 0 1 .8 2h22.4a.8.8 0 0 1 .8.8v2.71a1 1 0 0 1-1 1H1a1 1 0 0 1-1-1V2.8Z"}),(0,n.jsx)("path",{fill:"#32324D",d:"M1.922 7.991C.197 6.675 0 6.252 0 5.289h23.953c.305 1.363-1.594 2.506-2.297 3.125-1.953 1.363-6.253 4.36-7.828 5.45-1.575 1.09-3.031.455-3.562 0-2.063-1.41-6.62-4.557-8.344-5.873ZM22.8 18H1.2c-.663 0-1.2.471-1.2 1.053v1.894C0 21.529.537 22 1.2 22h21.6c.663 0 1.2-.471 1.2-1.053v-1.894c0-.582-.537-1.053-1.2-1.053Z"}),(0,n.jsx)("path",{fill:"#32324D",d:"M0 9.555v10.972h24V9.554c-2.633 1.95-8.367 6.113-9.96 7.166-1.595 1.052-3.352.438-4.032 0L0 9.555Z"})]}),e=_},62864:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...s,children:(0,n.jsx)("path",{fill:"#32324D",d:"M15.5 3.5h5v5H23V1h-7.5v2.5Zm5 17h-5V23H23v-7.5h-2.5v5Zm-17-17h5V1H1v7.5h2.5v-5ZM1 23.3h7.5v-2.5h-5v-5H1v7.5Z"})}),e=_},12350:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...s,children:(0,n.jsx)("path",{fill:"#8E8EA9",d:"M21 2C6 2 4 16 3 22h1.998c.666-3.333 2.333-5.166 5.002-5.5 4-.5 7-4 8-7l-1.5-1 1-1c1-1 2.004-2.5 3.5-5.5Z"})}),e=_},19211:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 32",...s,children:(0,n.jsx)("path",{fill:"#D02B20",fillRule:"evenodd",d:"M23.305 8.118 16.39.74C15.947.27 15.347 0 14.747 0H2.337c-.632 0-1.2.27-1.642.741A2.529 2.529 0 0 0 0 2.493v27.014C0 30.888 1.042 32 2.337 32h19.326C22.958 32 24 30.888 24 29.507V9.87c0-.64-.253-1.28-.695-1.751Zm-1.326.606h-5.116c-.568 0-1.042-.505-1.042-1.111V2.189l6.158 6.535Zm-.316 21.828H2.337c-.537 0-.98-.472-.98-1.045V2.493c0-.27.096-.54.285-.741a.949.949 0 0 1 .695-.304h12.126v6.165c0 1.414 1.074 2.56 2.4 2.56h5.78v19.334c0 .573-.443 1.045-.98 1.045ZM10.477 19.734 6.512 23.7a.73.73 0 0 0 0 1.024.73.73 0 0 0 1.023 0l3.965-3.965 3.965 3.965a.73.73 0 0 0 1.023 0 .73.73 0 0 0 0-1.024l-3.965-3.965 4.2-4.2a.73.73 0 0 0 0-1.023c-.28-.279-.768-.255-1.047.024L11.5 18.71l-4.176-4.176c-.28-.28-.768-.303-1.047-.024a.73.73 0 0 0 0 1.024l4.2 4.2Z",clipRule:"evenodd"})}),e=_},27840:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...s,children:(0,n.jsx)("path",{fill:"#212134",d:"M18.901 10a3 3 0 0 0 4.075 1.113 3.5 3.5 0 0 1-1.975 3.55V21h-6v-2a3 3 0 0 0-5.996-.176L9 19v2H3v-6.336a3.5 3.5 0 0 1-1.979-3.553A2.999 2.999 0 0 0 5.098 10h13.803Zm-1.865-7a3.5 3.5 0 0 0 4.446 2.86 3.5 3.5 0 0 1-3.29 3.135L18 9H6a3.5 3.5 0 0 1-3.482-3.14A3.5 3.5 0 0 0 6.964 3h10.072Z"})}),e=_},75337:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...s,children:(0,n.jsx)("path",{fill:"#212134",d:"M15 2a4 4 0 0 1 3.464 6.001L23 8v2h-2v10a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V10H1V8l4.536.001A4 4 0 0 1 12 3.355 3.983 3.983 0 0 1 15 2Zm-2 8h-2v10h2V10ZM9 4a2 2 0 0 0-.15 3.995L9 8h2V6a2 2 0 0 0-1.697-1.977l-.154-.018L9 4Zm6 0a2 2 0 0 0-1.995 1.85L13 6v2h2a2 2 0 0 0 1.995-1.85L17 6a2 2 0 0 0-2-2Z"})}),e=_},9568:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...s,children:(0,n.jsx)("path",{fill:"#8E8EA9",d:"M13 21h5v2H6v-2h5v-1.05a10.001 10.001 0 0 1-7.684-4.988l1.737-.992A8 8 0 1 0 15.97 3.053l.992-1.737A9.996 9.996 0 0 1 22 10c0 5.185-3.947 9.449-9 9.95V21Zm-1-4a7 7 0 1 1 0-14 7 7 0 0 1 0 14Z"})}),e=_},22523:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...s,children:(0,n.jsx)("path",{fill:"#212134",d:"M9.33 11.5h2.17A4.5 4.5 0 0 1 16 16H8.999L9 17h8v-1a5.579 5.579 0 0 0-.886-3H19a5 5 0 0 1 4.516 2.851C21.151 18.972 17.322 21 13 21c-2.761 0-5.1-.59-7-1.625v-9.304A6.967 6.967 0 0 1 9.33 11.5ZM4 9a1 1 0 0 1 .993.883L5 10v9a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1v-9a1 1 0 0 1 1-1h2Zm9.646-5.425L14 3.93l.354-.354a2.5 2.5 0 1 1 3.535 3.536L14 11l-3.89-3.89a2.5 2.5 0 1 1 3.536-3.535Z"})}),e=_},73981:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...s,children:(0,n.jsx)("path",{fill:"#212134",d:"m7.784 14 .42-4H4V8h4.415l.525-5h2.011l-.525 5h3.989l.525-5h2.011l-.525 5H20v2h-3.784l-.42 4H20v2h-4.415l-.525 5h-2.011l.525-5H9.585l-.525 5H7.049l.525-5H4v-2h3.784Zm2.011 0h3.99l.42-4h-3.99l-.42 4Z"})}),e=_},64745:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...s,children:(0,n.jsx)("path",{fill:"#212134",d:"M4 12h3a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-7C2 6.477 6.477 2 12 2s10 4.477 10 10v7a2 2 0 0 1-2 2h-3a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2h3a8 8 0 0 0-16 0Z"})}),e=_},44130:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...s,children:(0,n.jsx)("path",{fill:"#212134",d:"M16.5 3C19.538 3 22 5.5 22 9c0 7-7.5 11-10 12.5C9.5 20 2 16 2 9c0-3.5 2.5-6 5.5-6C9.36 3 11 4 12 5c1-1 2.64-2 4.5-2Z"})}),e=_},85406:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...s,children:(0,n.jsx)("path",{fill:"#212134",d:"M20 20a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1v-9H1l10.327-9.388a1 1 0 0 1 1.346 0L23 11h-3v9Z"})}),e=_},51098:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...s,children:(0,n.jsx)("path",{fill:"#32324D",d:"M19.7 1H9.4v3h3.1l-4 16H4.2v3h10.3v-3h-3.3l4.2-16h4.2V1Z"})}),e=_},19455:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 32 24",...s,children:[(0,n.jsx)("rect",{width:31,height:23,x:.5,y:.5,fill:"#EAF5FF",stroke:"#B8E1FF",rx:2.5}),(0,n.jsx)("path",{fill:"#0C75AF",fillRule:"evenodd",d:"M8.243 11.907v.157c.835.093 1.287.516 1.287 1.223V14.5c0 .693.236.959.855.959h.216V16.5h-.364c-1.459 0-2.078-.56-2.078-1.857v-.973c0-.722-.314-.992-1.159-1.002v-1.366c.84-.005 1.16-.275 1.16-1.002v-.968c0-1.282.618-1.832 2.077-1.832h.364v1.041h-.216c-.624 0-.855.266-.855.958v1.184c0 .713-.452 1.135-1.287 1.224Zm15.804.181v-.157c-.835-.088-1.287-.51-1.287-1.223V9.495c0-.693-.236-.954-.855-.954h-.216V7.5h.363c1.454 0 2.073.56 2.073 1.852v.973c0 .722.32.997 1.165 1.002v1.366c-.845.005-1.165.28-1.165 1.002v.973c0 1.282-.613 1.832-2.073 1.832h-.363v-1.046h.216c.619 0 .855-.26.855-.954v-1.188c0-.708.452-1.13 1.287-1.224ZM13.15 13a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm4-1a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm2 1a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z",clipRule:"evenodd"})]}),e=_},42815:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...s,children:(0,n.jsx)("path",{fill:"#8E8EA9",d:"M17 14h-4.34a6 6 0 1 1 0-4H23v4h-2v4h-4v-4ZM7 14a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z"})}),e=_},9780:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...s,children:(0,n.jsx)("path",{fill:"#212134",d:"M4.8.2c0-.11.09-.2.2-.2h18.8c.11 0 .2.09.2.2v4.4a.2.2 0 0 1-.2.2H5a.2.2 0 0 1-.2-.2V.2ZM0 9.8c0-.11.09-.2.2-.2H19c.11 0 .2.09.2.2v4.4a.2.2 0 0 1-.2.2H.2a.2.2 0 0 1-.2-.2V9.8ZM5 19.2a.2.2 0 0 0-.2.2v4.4c0 .11.09.2.2.2h18.8a.2.2 0 0 0 .2-.2v-4.4a.2.2 0 0 0-.2-.2H5Z"})}),e=_},47763:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...s,children:(0,n.jsx)("path",{fill:"#212134",d:"M11 18H7.941c-.297-1.273-1.637-2.314-2.187-3a8 8 0 1 1 12.49.002c-.55.685-1.888 1.726-2.185 2.998H13v-5h-2v5Zm5 2v1a2 2 0 0 1-2 2h-4a2 2 0 0 1-2-2v-1h8Z"})}),e=_},17037:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...s,children:(0,n.jsx)("path",{fill:"#212134",d:"m15.224 15.508-2.213 4.65a.6.6 0 0 1-.977.155l-3.542-3.739a.6.6 0 0 0-.357-.182l-5.107-.668a.6.6 0 0 1-.449-.881l2.462-4.524a.6.6 0 0 0 .062-.396L4.16 4.86a.6.6 0 0 1 .7-.7l5.063.943a.6.6 0 0 0 .396-.062l4.524-2.462a.6.6 0 0 1 .881.45l.668 5.106a.6.6 0 0 0 .182.357l3.739 3.542a.601.601 0 0 1-.155.977l-4.65 2.213a.6.6 0 0 0-.284.284Zm.797 1.927 1.414-1.414 4.243 4.242-1.415 1.415-4.242-4.243Z"})}),e=_},46051:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...s,children:[(0,n.jsx)("path",{fill:"#212134",fillRule:"evenodd",d:"M20.4 14.4a2.4 2.4 0 1 0 0-4.8 2.4 2.4 0 0 0 0 4.8Zm0 1.2a3.6 3.6 0 1 0 0-7.2 3.6 3.6 0 0 0 0 7.2ZM3.6 14.4a2.4 2.4 0 1 0 0-4.8 2.4 2.4 0 0 0 0 4.8Zm0 1.2a3.6 3.6 0 1 0 0-7.2 3.6 3.6 0 0 0 0 7.2ZM20.4 22.8a2.4 2.4 0 1 0 0-4.8 2.4 2.4 0 0 0 0 4.8Zm0 1.2a3.6 3.6 0 1 0 0-7.2 3.6 3.6 0 0 0 0 7.2ZM20.4 6a2.4 2.4 0 1 0 0-4.8 2.4 2.4 0 0 0 0 4.8Zm0 1.2a3.6 3.6 0 1 0 0-7.2 3.6 3.6 0 0 0 0 7.2Z",clipRule:"evenodd"}),(0,n.jsx)("path",{fill:"#212134",d:"M6.24 11.28H18v1.44H6.24v-1.44Z"}),(0,n.jsx)("path",{fill:"#212134",fillRule:"evenodd",d:"M3.6 22.8a2.4 2.4 0 1 1 0-4.8 2.4 2.4 0 0 1 0 4.8Zm0 1.2a3.6 3.6 0 1 1 0-7.2 3.6 3.6 0 0 1 0 7.2ZM3.6 6a2.4 2.4 0 1 1 0-4.8 2.4 2.4 0 0 1 0 4.8Zm0 1.2a3.6 3.6 0 1 1 0-7.2 3.6 3.6 0 0 1 0 7.2Z",clipRule:"evenodd"}),(0,n.jsx)("path",{fill:"#212134",d:"M18.328 13.863 6.49 19.765l-.652-1.307 11.838-5.902.652 1.307ZM18.358 10.078 6.398 4.115l-.646 1.294 11.961 5.963.645-1.294Z"}),(0,n.jsx)("path",{fill:"#212134",d:"M18.323 18.83 6.252 12.813l-.643 1.29 12.071 6.019.643-1.29ZM18.136 5.228 6.207 11.176l-.653-1.311 11.928-5.948.654 1.311Z"})]}),e=_},91528:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 25",...s,children:[(0,n.jsx)("path",{fill:"#212134",d:"M17.76 11.28H6v1.44h11.76v-1.44Z"}),(0,n.jsx)("path",{fill:"#212134",d:"M18.129 10.699 9.782 4.523l-.86 1.162 8.347 6.177.86-1.163ZM18.101 13.354 9.755 19.53l-.864-1.167 8.347-6.176.863 1.167Z"}),(0,n.jsx)("path",{fill:"#212134",fillRule:"evenodd",d:"M20.4 14.399a2.4 2.4 0 1 1 0-4.8 2.4 2.4 0 0 1 0 4.8Zm0 1.2a3.6 3.6 0 1 1 0-7.2 3.6 3.6 0 0 1 0 7.2ZM3.6 14.399a2.4 2.4 0 1 1 0-4.8 2.4 2.4 0 0 1 0 4.8Zm0 1.2a3.6 3.6 0 1 1 0-7.2 3.6 3.6 0 0 1 0 7.2ZM7.2 22.8a2.4 2.4 0 1 1 0-4.8 2.4 2.4 0 0 1 0 4.8Zm0 1.2a3.6 3.6 0 1 1 0-7.2 3.6 3.6 0 0 1 0 7.2ZM7.2 6a2.4 2.4 0 1 1 0-4.8 2.4 2.4 0 0 1 0 4.8Zm0 1.2a3.6 3.6 0 1 1 0-7.2 3.6 3.6 0 0 1 0 7.2Z",clipRule:"evenodd"})]}),e=_},9137:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...s,children:[(0,n.jsx)("path",{fill:"#212134",fillRule:"evenodd",d:"M3.6 14.132a2.4 2.4 0 1 0 0-4.8 2.4 2.4 0 0 0 0 4.8Zm0 1.2a3.6 3.6 0 1 0 0-7.2 3.6 3.6 0 0 0 0 7.2Z",clipRule:"evenodd"}),(0,n.jsx)("path",{fill:"#212134",d:"M6.24 11.011h13.44v1.44H6.24v-1.44Z"}),(0,n.jsx)("path",{fill:"#212134",d:"m5.872 10.43 8.347-6.176.86 1.163-8.347 6.176-.86-1.162ZM5.9 13.087l8.346 6.177.864-1.168-8.347-6.176-.864 1.167ZM18.72 8.613l5.28 3.12-5.28 3.12v-6.24Z"}),(0,n.jsx)("path",{fill:"#212134",d:"M12.72 2.633 18.82 2 16.43 7.649 12.72 2.633ZM12.72 21.307l6.1.633-2.389-5.649-3.711 5.016Z"})]}),e=_},32119:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 32 24",...s,children:[(0,n.jsx)("rect",{width:31,height:23,x:.5,y:.5,fill:"#F6ECFC",stroke:"#E0C1F4",rx:2.5}),(0,n.jsx)("path",{fill:"#9736E8",fillRule:"evenodd",d:"M22 8.759a2 2 0 0 0-2-2h-8c-1.105 0-2 .902-2 2.006v6.068a2 2 0 0 0 .985 1.724l3.66-3.74 3.31 3.381 1.471-1.502 1.731 1.769c.51-.363.843-.958.843-1.632V8.76ZM18.5 9c-.84 0-1.5.66-1.5 1.5s.66 1.5 1.5 1.5 1.5-.66 1.5-1.5S19.34 9 18.5 9Z",clipRule:"evenodd"})]}),e=_},3448:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...s,children:(0,n.jsx)("path",{fill:"#12100E",fillRule:"evenodd",d:"M2 0h20a2 2 0 0 1 2 2v20a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V2a2 2 0 0 1 2-2Zm3.524 7.5a.624.624 0 0 1 .203.527v7.126a.82.82 0 0 1-.218.707l-1.694 2.054v.271h4.803v-.27L6.924 15.86a.85.85 0 0 1-.233-.707V8.99l4.215 9.195h.49l3.62-9.195v7.33c0 .195 0 .232-.128.36l-1.302 1.265v.27h6.322v-.27l-1.257-1.235a.376.376 0 0 1-.143-.36V7.281a.376.376 0 0 1 .143-.362l1.288-1.234v-.27h-4.457l-3.176 7.923-3.613-7.924H4.019v.271L5.524 7.5Z",clipRule:"evenodd"})}),e=_},73136:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...s,children:(0,n.jsx)("path",{fill:"#212134",d:"M12 1a5 5 0 0 1 5 5v4a5 5 0 1 1-10 0V6a5 5 0 0 1 5-5ZM3.055 11H5.07a7.002 7.002 0 0 0 13.858 0h2.016A9.003 9.003 0 0 1 13 18.945V23h-2v-4.055A9.004 9.004 0 0 1 3.055 11Z"})}),e=_},94140:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...s,children:(0,n.jsx)("path",{fill:"#212134",d:"M13 18v2h4v2H7v-2h4v-2H2.992A1 1 0 0 1 2 16.993V4.007C2 3.451 2.455 3 2.992 3h18.016c.548 0 .992.449.992 1.007v12.986c0 .556-.455 1.007-.992 1.007H13Z"})}),e=_},3115:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...s,children:(0,n.jsx)("path",{fill:"#212134",d:"M11.38 2.019a7.5 7.5 0 1 0 10.6 10.6C21.662 17.854 17.316 22 12.001 22 6.477 22 2 17.523 2 12c0-5.315 4.146-9.661 9.38-9.981Z"})}),e=_},30279:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...s,children:(0,n.jsx)("path",{fill:"#212134",d:"M20 3v14a4 4 0 1 1-2-3.465V6H9v11a4 4 0 1 1-2-3.465V3h13Z"})}),e=_},28868:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 32 24",...s,children:[(0,n.jsx)("rect",{width:31,height:23,x:.5,y:.5,fill:"#FCECEA",stroke:"#F5C0B8",rx:2.5}),(0,n.jsx)("path",{fill:"#D02B20",d:"M9.815 16h1.475V8.954H9.82L8 10.22v1.328l1.729-1.201h.087V16Zm3.394 0h5.083v-1.187h-3.106v-.112l1.304-1.216c1.284-1.186 1.7-1.85 1.7-2.651v-.015c0-1.215-1.016-2.046-2.466-2.046-1.543 0-2.598.928-2.598 2.28l.005.02h1.362v-.024c0-.67.474-1.128 1.162-1.128.674 0 1.084.42 1.084 1.02v.015c0 .493-.268.85-1.26 1.812l-2.27 2.24V16Zm9.067.156c1.646 0 2.744-.864 2.744-2.143v-.01c0-.957-.683-1.563-1.733-1.66v-.03c.825-.17 1.47-.742 1.47-1.62v-.01c0-1.123-.977-1.885-2.49-1.885-1.48 0-2.471.82-2.574 2.08l-.005.059h1.358l.005-.044c.058-.586.522-.962 1.216-.962.693 0 1.098.361 1.098.947v.01c0 .571-.478.962-1.22.962h-.787v1.05h.806c.855 0 1.357.37 1.357 1.044v.01c0 .596-.493 1.016-1.245 1.016-.761 0-1.264-.39-1.328-.938l-.005-.053h-1.41l.004.063c.098 1.26 1.148 2.114 2.74 2.114Z"})]}),e=_},15558:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 25",...s,children:[(0,n.jsx)("path",{fill:"#212134",d:"M6.24 11.28H18v1.44H6.24v-1.44Z"}),(0,n.jsx)("path",{fill:"#212134",d:"m5.871 10.699 8.347-6.176.86 1.162-8.347 6.177-.86-1.163ZM5.899 13.354l8.346 6.176.864-1.167-8.347-6.176-.863 1.167Z"}),(0,n.jsx)("path",{fill:"#212134",fillRule:"evenodd",d:"M3.6 14.399a2.4 2.4 0 1 0 0-4.8 2.4 2.4 0 0 0 0 4.8Zm0 1.2a3.6 3.6 0 1 0 0-7.2 3.6 3.6 0 0 0 0 7.2ZM20.4 14.399a2.4 2.4 0 1 0 0-4.8 2.4 2.4 0 0 0 0 4.8Zm0 1.2a3.6 3.6 0 1 0 0-7.2 3.6 3.6 0 0 0 0 7.2ZM16.8 22.8a2.4 2.4 0 1 0 0-4.8 2.4 2.4 0 0 0 0 4.8Zm0 1.2a3.6 3.6 0 1 0 0-7.2 3.6 3.6 0 0 0 0 7.2ZM16.8 6a2.4 2.4 0 1 0 0-4.8 2.4 2.4 0 0 0 0 4.8Zm0 1.2a3.6 3.6 0 1 0 0-7.2 3.6 3.6 0 0 0 0 7.2Z",clipRule:"evenodd"})]}),e=_},46528:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...s,children:[(0,n.jsx)("path",{fill:"#212134",fillRule:"evenodd",d:"M3.6 14a2.4 2.4 0 1 0 0-4.8 2.4 2.4 0 0 0 0 4.8Zm0 1.2a3.6 3.6 0 1 0 0-7.2 3.6 3.6 0 0 0 0 7.2ZM20.4 14a2.4 2.4 0 1 0 0-4.8 2.4 2.4 0 0 0 0 4.8Zm0 1.2a3.6 3.6 0 1 0 0-7.2 3.6 3.6 0 0 0 0 7.2Z",clipRule:"evenodd"}),(0,n.jsx)("path",{fill:"#212134",d:"M6.24 10.881H18v1.44H6.24v-1.44Z"})]}),e=_},41186:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...s,children:(0,n.jsx)("path",{fill:"#212134",fillRule:"evenodd",d:"M7.128 12.321a3.601 3.601 0 1 1 0-1.44H18.72v-2.4L24 11.6l-5.28 3.12v-2.4H7.128ZM6 11.6a2.4 2.4 0 1 1-4.8 0 2.4 2.4 0 0 1 4.8 0Z",clipRule:"evenodd"})}),e=_},73896:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...s,children:(0,n.jsx)("path",{fill:"#212134",d:"M12 2c5.522 0 10 3.978 10 8.889a5.558 5.558 0 0 1-5.556 5.555h-1.966c-.922 0-1.667.745-1.667 1.667 0 .422.167.811.422 1.1.267.3.434.689.434 1.122C13.667 21.256 12.9 22 12 22 6.478 22 2 17.522 2 12S6.478 2 12 2ZM7.5 12a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Zm9 0a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3ZM12 9a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z"})}),e=_},18489:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...s,children:(0,n.jsx)("path",{fill:"#212134",d:"M4 3h16a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1Zm2 9h6a1 1 0 0 1 1 1v3h1v6h-4v-6h1v-2H5a1 1 0 0 1-1-1v-2h2v1Zm11.732 1.732 1.768-1.768 1.768 1.768a2.5 2.5 0 1 1-3.536 0Z"})}),e=_},81904:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...s,children:(0,n.jsx)("path",{fill:"#212134",d:"M21 16.42v3.536a1 1 0 0 1-.93.998c-.437.03-.794.046-1.07.046-8.837 0-16-7.163-16-16 0-.276.015-.633.046-1.07A1 1 0 0 1 4.044 3H7.58a.5.5 0 0 1 .498.45c.023.23.044.413.064.552A13.9 13.9 0 0 0 9.35 8.003c.095.2.033.439-.147.567l-2.158 1.542a13.047 13.047 0 0 0 6.844 6.844l1.54-2.154a.462.462 0 0 1 .573-.149 13.9 13.9 0 0 0 4 1.205c.139.02.322.042.55.064a.5.5 0 0 1 .449.498H21Z"})}),e=_},59151:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...s,children:(0,n.jsx)("path",{fill:"#32324D",fillRule:"evenodd",d:"M2.719 19.316V4.682H21.28v14.634H2.72ZM1 3.288c0-.192.154-.348.344-.348h21.312c.19 0 .344.156.344.348V20.71a.346.346 0 0 1-.344.349H1.344a.346.346 0 0 1-.344-.35V3.29Zm14.812 8.02a1.919 1.919 0 1 0 0-3.837 1.919 1.919 0 0 0 0 3.837ZM5.443 17.263h12.783a.547.547 0 0 0 .456-.87l-1.763-2.394a.547.547 0 0 0-.825-.072l-1.812 1.725-4.206-5.71a.547.547 0 0 0-.9.025L4.972 16.42a.547.547 0 0 0 .472.844Z",clipRule:"evenodd"})}),e=_},3747:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...s,children:(0,n.jsx)("path",{fill:"#212134",d:"m22.314 10.172-1.415 1.414-.707-.707-4.242 4.242-.707 3.536-1.415 1.414-4.242-4.243-4.95 4.95-1.414-1.414 4.95-4.95-4.243-4.242 1.414-1.415L8.88 8.05l4.242-4.242-.707-.707 1.414-1.415 8.485 8.486Z"})}),e=_},77021:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...s,children:(0,n.jsx)("path",{fill:"#212134",d:"M18.364 17.364 12 23.728l-6.364-6.364a9 9 0 1 1 12.728 0ZM12 13a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z"})}),e=_},42627:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...s,children:(0,n.jsx)("path",{fill:"#212134",d:"M14 8.947 22 14v2l-8-2.526v5.36l3 1.666V22l-4.5-1L8 22v-1.5l3-1.667v-5.36L3 16v-2l8-5.053V3.5a1.5 1.5 0 1 1 3 0v5.447Z"})}),e=_},3718:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...s,children:(0,n.jsx)("path",{fill:"#212134",d:"m10.9 2.1 9.9 1.415 1.413 9.9-9.192 9.192a1 1 0 0 1-1.414 0l-9.9-9.9a1 1 0 0 1 0-1.414L10.9 2.1Zm2.828 8.486a2 2 0 1 0 2.828-2.83 2 2 0 0 0-2.828 2.83Z"})}),e=_},98378:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...s,children:(0,n.jsx)("path",{fill:"#32324D",d:"M10.479 6.329c-1.206.642-2.267 1.655-2.992 2.788-.758 1.185-1.161 2.521-.951 3.715l.03.175.173-.04a4.1 4.1 0 0 1 1.713.01c.62.137 1.21.425 1.607.923.538.683.805 1.527.805 2.516 0 1.133-.358 2.022-1.089 2.674-.737.658-1.674.992-2.811.992-2.573 0-4.432-2.067-4.825-5.3C1.523 9.74 5.075 5.72 8.757 3.914l1.722 2.415Zm7.16 6.503.03.175.173-.04a4.076 4.076 0 0 1 1.707.01c.618.137 1.21.425 1.613.924.538.683.804 1.527.804 2.515 0 1.133-.358 2.022-1.088 2.674-.737.658-1.675.992-2.812.992-2.572 0-4.417-2.067-4.811-5.3-.616-5.043 2.923-9.062 6.605-10.868l1.721 2.415c-1.205.642-2.266 1.655-2.991 2.788-.759 1.185-1.162 2.521-.952 3.715Z"})}),e=_},95556:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 32 24",...s,children:[(0,n.jsx)("path",{fill:"#F0F0FF",stroke:"#D9D8FF",d:"M.5 3A2.5 2.5 0 0 1 3 .5h26A2.5 2.5 0 0 1 31.5 3v18a2.5 2.5 0 0 1-2.5 2.5H3A2.5 2.5 0 0 1 .5 21V3Z"}),(0,n.jsx)("path",{fill:"#4945FF",fillRule:"evenodd",d:"M21.375 16.316c.417-.407.625-.904.625-1.492 0-.589-.206-1.089-.618-1.5l-1.53-1.53a2.042 2.042 0 0 0-1.5-.617 2.06 2.06 0 0 0-1.529.646l-.646-.646c.43-.422.646-.934.646-1.537a2.03 2.03 0 0 0-.61-1.493l-1.515-1.522a2.014 2.014 0 0 0-1.5-.625 2.03 2.03 0 0 0-1.492.61l-1.081 1.074A2.006 2.006 0 0 0 10 9.176c0 .589.206 1.089.618 1.5l1.53 1.53c.41.412.91.617 1.5.617a2.06 2.06 0 0 0 1.529-.646l.646.646a2.069 2.069 0 0 0-.646 1.537c0 .588.203 1.086.61 1.493l1.514 1.522c.407.417.907.625 1.5.625a2.03 2.03 0 0 0 1.493-.61l1.081-1.074Zm-5.956-6.678a.68.68 0 0 0-.205-.5l-1.515-1.522a.68.68 0 0 0-.5-.206.71.71 0 0 0-.5.199l-1.081 1.073a.672.672 0 0 0-.206.493.68.68 0 0 0 .206.5l1.53 1.53a.678.678 0 0 0 .5.198.71.71 0 0 0 .529-.228l-.14-.136a4.46 4.46 0 0 1-.158-.158 1.756 1.756 0 0 1-.11-.14.593.593 0 0 1-.122-.39.68.68 0 0 1 .206-.5.68.68 0 0 1 .5-.206.59.59 0 0 1 .39.121c.064.047.11.084.14.111.03.027.082.08.158.158l.136.14a.713.713 0 0 0 .242-.537Zm5.168 5.187a.68.68 0 0 0-.206-.5l-1.529-1.53a.68.68 0 0 0-.5-.205.7.7 0 0 0-.53.235l.14.136c.079.076.132.129.159.158.027.03.063.076.11.14a.591.591 0 0 1 .121.39.681.681 0 0 1-.206.5.681.681 0 0 1-.5.206.591.591 0 0 1-.39-.121 1.746 1.746 0 0 1-.14-.111 4.395 4.395 0 0 1-.157-.158 20.642 20.642 0 0 0-.136-.14.714.714 0 0 0-.037 1.037l1.515 1.522a.678.678 0 0 0 .5.198.708.708 0 0 0 .5-.19l1.08-1.074a.672.672 0 0 0 .206-.493Z",clipRule:"evenodd"})]}),e=_},95412:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...s,children:(0,n.jsx)("path",{fill:"#212134",d:"M6 4h15a1 1 0 0 1 1 1v7h-2V6H6v3L1 5l5-4v3Zm12 16H3a1 1 0 0 1-1-1v-7h2v6h14v-3l5 4-5 4v-3Z"})}),e=_},61131:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...s,children:(0,n.jsx)("path",{fill:"#212134",d:"M21 2v20h-2v-8h-3V7a5 5 0 0 1 5-5ZM9 13.9V22H7v-8.1A5.002 5.002 0 0 1 3 9V3h2v7h2V3h2v7h2V3h2v6a5.002 5.002 0 0 1-4 4.9Z"})}),e=_},29806:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...s,children:(0,n.jsx)("path",{fill:"#212134",d:"M8.498 20h7.004A6.523 6.523 0 0 1 12 23.502 6.523 6.523 0 0 1 8.498 20ZM18 14.805l2 2.268V19H4v-1.927l2-2.268V9c0-3.483 2.504-6.447 6-7.545C15.496 2.553 18 5.517 18 9v5.805ZM12 11a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z"})}),e=_},37982:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 8 9",...s,children:(0,n.jsx)("path",{fill:"#212134",d:"M8 .23a.1.1 0 0 0-.1-.1H5.55a.39.39 0 0 0-.39.39v2.35c0 .05.05.1.1.1h.58a.1.1 0 0 0 .1-.1V1.62c.72.55.97 1.17 1.06 2.08.09.9-.29 1.8-.9 2.47C5.49 6.85 4.9 7 4 7h-.16a.1.1 0 0 0-.1.1v.8c0 .05.05.1.1.1H4A4 4 0 0 0 6.52.9H7.9A.1.1 0 0 0 8 .8V.23ZM2.84 7.49V5.13a.1.1 0 0 0-.1-.1h-.58a.1.1 0 0 0-.1.1v1.25C1.34 5.83 1.08 5.21 1 4.31c-.09-.91.2-1.8.82-2.48.6-.67 1.27-.86 2.18-.86h.14c.06 0 .12-.04.12-.1V.1a.1.1 0 0 0-.1-.1H4a4 4 0 0 0-2.53 7.1H.1a.1.1 0 0 0-.1.1v.57c0 .06.04.1.1.1h2.35a.39.39 0 0 0 .39-.38Z"})}),e=_},23044:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...s,children:(0,n.jsx)("path",{fill:"#212134",d:"m12 14.121-2.317 2.317a4 4 0 1 1-2.12-2.121L9.88 12 4.21 6.333a2 2 0 0 1 0-2.829l.708-.707L12 9.88l7.081-7.082.708.707a1.999 1.999 0 0 1 0 2.829L14.12 12l2.317 2.317a4 4 0 1 1-2.12 2.121L12 14.12v.001ZM6 20a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm12 0a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z"})}),e=_},42778:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...s,children:(0,n.jsx)("path",{fill:"#212134",d:"M22 7v2.5a6.499 6.499 0 0 1-6.5 6.5H13v5h-2v-7l.019-1A6.5 6.5 0 0 1 17.5 7H22ZM6 3a7.004 7.004 0 0 1 6.643 4.786A7.477 7.477 0 0 0 10.016 13H9a7 7 0 0 1-7-7V3h4Z"})}),e=_},19815:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...s,children:(0,n.jsx)("path",{fill:"#212134",d:"M4 3h16a1 1 0 0 1 1 1v7H3V4a1 1 0 0 1 1-1ZM3 13h18v7a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1v-7Zm4 3v2h3v-2H7ZM7 6v2h3V6H7Z"})}),e=_},96151:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...s,children:(0,n.jsx)("path",{fill:"#212134",fillRule:"evenodd",d:"M11.738 23.966C4.905 21.624 0 18.49 0 11.043V3.772c0-.331.275-.6.615-.6C4.971 3.17 9.159 1.792 11.647.074A.516.516 0 0 1 11.942 0h.115c.103 0 .21.016.295.074 2.535 1.72 6.676 3.096 11.033 3.098.34 0 .615.269.615.6v7.271c0 7.447-4.906 10.582-11.739 12.923a.63.63 0 0 1-.204.034h-.115a.631.631 0 0 1-.204-.034Zm.16-11.175c-2.944 0-5.334 1.153-5.334 4.003H17.23c0-2.85-2.39-4.003-5.333-4.003ZM12 6.188a2.501 2.501 0 0 1 0 5 2.501 2.501 0 0 1 0-5Z",clipRule:"evenodd"})}),e=_},10291:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...s,children:(0,n.jsx)("path",{fill:"#212134",d:"m14.515 5 2.606-2.607a1 1 0 0 1 1.415 0l4.242 4.243a1 1 0 0 1 0 1.414L19 11.828V21a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1v-9.172L1.222 8.05a1 1 0 0 1 0-1.414l4.242-4.243a1 1 0 0 1 1.415 0L9.485 5h5.03Z"})}),e=_},90517:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...s,children:(0,n.jsx)("path",{fill:"#212134",d:"M13 17v3h5v2H6v-2h5v-3H4a1 1 0 0 1-1-1V4H2V2h20v2h-1v12a1 1 0 0 1-1 1h-7ZM10 6v7l5-3.5L10 6Z"})}),e=_},83997:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...s,children:(0,n.jsx)("path",{fill:"#212134",d:"m20.083 10.5 1.202.721a.501.501 0 0 1 0 .858L12 17.65l-9.285-5.571a.5.5 0 0 1 0-.858l1.202-.721L12 15.35l8.083-4.85Zm0 4.7 1.202.721a.501.501 0 0 1 0 .858l-8.77 5.262a1 1 0 0 1-1.03 0l-8.77-5.262a.5.5 0 0 1 0-.858l1.202-.721L12 20.05l8.083-4.85ZM12.514 1.309l8.771 5.262a.5.5 0 0 1 0 .858L12 13 2.715 7.429a.5.5 0 0 1 0-.858l8.77-5.262a1 1 0 0 1 1.03 0Z"})}),e=_},57918:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...s,children:(0,n.jsx)("path",{fill:"#212134",d:"m12 18.26-7.053 3.948 1.575-7.928L.587 8.792l8.027-.952L12 .5l3.386 7.34 8.027.952-5.935 5.488 1.575 7.928L12 18.26Z"})}),e=_},62996:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...s,children:(0,n.jsx)("path",{fill:"#212134",d:"M22 20v2H2v-2h1v-6.758A4.496 4.496 0 0 1 1 9.5c0-.827.224-1.624.633-2.303L4.345 2.5a1 1 0 0 1 .866-.5H18.79a1 1 0 0 1 .866.5l2.702 4.682A4.496 4.496 0 0 1 21 13.242V20h1ZM5.789 4 3.356 8.213a2.5 2.5 0 0 0 4.466 2.216c.335-.837 1.52-.837 1.856 0a2.5 2.5 0 0 0 4.644 0c.335-.837 1.52-.837 1.856 0a2.501 2.501 0 1 0 4.457-2.232L18.21 4H5.789Z"})}),e=_},98128:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...s,children:(0,n.jsx)("path",{fill:"#32324D",d:"M16.39 2.17c.68.1 1.17.2 1.46.39.39.2.58.39.78.58.2.3.3.78.39 1.18l.78 3.5h1.95V1H2.84l-.59 6.83H4l.98-3.9a5 5 0 0 1 .39-.98c.2-.2.49-.39.88-.58.39-.1.88-.3 1.56-.3.58 0 1.36-.1 2.34-.1v8.78h-7.8v1.95h7.8v7.41c0 .2.1.3-.1.39-.2.1-.39.2-.88.2l-2.04.39-.1 1.36h9.94l-.1-1.36-2.04-.3c-.49 0-.69-.1-.78-.2-.2-.09-.1-.19-.1-.38V12.7h7.8v-1.95h-7.8V1.97c.98 0 1.85.1 2.44.2Z"})}),e=_},42912:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...s,children:(0,n.jsx)("path",{fill:"#212134",d:"M12 18a6 6 0 1 1 0-12 6 6 0 0 1 0 12ZM11 1h2v3h-2V1Zm0 19h2v3h-2v-3ZM3.515 4.929l1.414-1.414L7.05 5.636 5.636 7.05 3.515 4.93v-.001ZM16.95 18.364l1.414-1.414 2.121 2.121-1.414 1.414-2.121-2.121Zm2.121-14.85 1.414 1.415-2.121 2.121-1.414-1.414 2.121-2.121v-.001ZM5.636 16.95l1.414 1.414-2.121 2.121-1.414-1.414 2.121-2.121ZM23 11v2h-3v-2h3ZM4 11v2H1v-2h3Z"})}),e=_},65558:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...s,children:(0,n.jsx)("path",{fill:"#212134",d:"M15.414 5h5.594c.548 0 .992.445.992 1v14c0 .552-.455 1-.992 1H2.992A.996.996 0 0 1 2 20V6c0-.552.455-1 .992-1h5.594L6.05 2.464 7.464 1.05 11.414 5h1.172l3.95-3.95 1.414 1.414L15.414 5Z"})}),e=_},58316:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 32 24",...s,children:[(0,n.jsx)("rect",{width:31,height:23,x:.5,y:.5,fill:"#EAFBE7",stroke:"#C6F0C2",rx:2.5}),(0,n.jsx)("path",{fill:"#328048",d:"M8.62 16h1.857l.627-2.05h2.982l.627 2.05h1.863l-2.941-8.455h-2.08L8.619 16Zm3.925-6.768h.105l1.032 3.393h-2.174l1.037-3.393ZM21.65 16.1c1.612 0 2.62-1.26 2.62-3.323v-.011c0-2.075-.985-3.323-2.62-3.323-.884 0-1.605.434-1.933 1.137h-.106V7.082h-1.71V16h1.71v-1.002h.106c.334.697 1.02 1.102 1.933 1.102Zm-.585-1.418c-.903 0-1.471-.715-1.471-1.899v-.011c0-1.184.574-1.91 1.47-1.91.903 0 1.465.726 1.465 1.904v.011c0 1.19-.556 1.905-1.465 1.905Z"})]}),e=_},17994:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...s,children:(0,n.jsx)("path",{fill:"#212134",d:"M22 15h-3V3h3a1 1 0 0 1 1 1v10a1 1 0 0 1-1 1Zm-5.293 1.293-6.4 6.4a.5.5 0 0 1-.654.047L8.8 22.1a1.5 1.5 0 0 1-.553-1.57L9.4 16H3a2 2 0 0 1-2-2v-2.104a2 2 0 0 1 .15-.762L4.246 3.62A1 1 0 0 1 5.17 3H16a1 1 0 0 1 1 1v11.586a1 1 0 0 1-.293.707Z"})}),e=_},78420:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...s,children:(0,n.jsx)("path",{fill:"#212134",d:"M2 9h3v12H2a1 1 0 0 1-1-1V10a1 1 0 0 1 1-1Zm5.293-1.293 6.4-6.4a.5.5 0 0 1 .654-.047l.853.64a1.5 1.5 0 0 1 .553 1.57L14.6 8H21a2 2 0 0 1 2 2v2.104a2 2 0 0 1-.15.762l-3.095 7.515a1 1 0 0 1-.925.619H8a1 1 0 0 1-1-1V8.414a1 1 0 0 1 .293-.707Z"})}),e=_},56549:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...s,children:(0,n.jsx)("path",{fill:"#212134",d:"m17.2 20 1.8 1.5v.5H5v-.5L6.8 20H5a2 2 0 0 1-2-2V7a4 4 0 0 1 4-4h10a4 4 0 0 1 4 4v11a2 2 0 0 1-2 2h-1.8ZM11 12V5H7a2 2 0 0 0-2 2v5h6Zm2 0h6V7a2 2 0 0 0-2-2h-4v7Zm-5.5 6a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Zm9 0a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z"})}),e=_},86399:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...s,children:(0,n.jsx)("path",{fill:"#1DA1F2",d:"M24 4.557a9.83 9.83 0 0 1-2.828.775 4.932 4.932 0 0 0 2.165-2.724 9.864 9.864 0 0 1-3.127 1.195 4.916 4.916 0 0 0-3.594-1.555c-3.179 0-5.515 2.966-4.797 6.045A13.978 13.978 0 0 1 1.671 3.149a4.93 4.93 0 0 0 1.523 6.574 4.903 4.903 0 0 1-2.229-.616c-.054 2.281 1.581 4.415 3.949 4.89a4.935 4.935 0 0 1-2.224.084 4.928 4.928 0 0 0 4.6 3.419A9.9 9.9 0 0 1 0 19.54a13.94 13.94 0 0 0 7.548 2.212c9.142 0 14.307-7.721 13.995-14.646A10.025 10.025 0 0 0 24 4.557Z"})}),e=_},27369:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...s,children:(0,n.jsx)("path",{fill:"#8E8EA9",d:"m17.654 1.7-2.782 2.533a9.138 9.138 0 0 1 3.49 1.973c3.512 3.2 3.512 8.388 0 11.588-2.592 2.36-6.598 3.862-12.016 4.506l2.782-2.533a9.138 9.138 0 0 1-3.49-1.973c-3.512-3.2-3.533-8.369 0-11.588C8.23 3.846 12.237 2.344 17.655 1.7h-.001ZM12 8c-2.485 0-4.5 1.79-4.5 4s2.015 4 4.5 4 4.5-1.79 4.5-4-2.015-4-4.5-4Z"})}),e=_},50756:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 32 24",...s,children:[(0,n.jsx)("path",{fill:"#F0F0FF",stroke:"#D9D8FF",d:"M.5 3A2.5 2.5 0 0 1 3 .5h26A2.5 2.5 0 0 1 31.5 3v18a2.5 2.5 0 0 1-2.5 2.5H3A2.5 2.5 0 0 1 .5 21V3Z"}),(0,n.jsx)("path",{fill:"#4945FF",d:"M14.907 9.438c0 .375 0 .738.118 1.078-1.243 1.46-4.526 5.317-4.832 5.611a.582.582 0 0 0-.193.433c0 .245.15.481.277.614.19.2 1.004.952 1.154.808.444-.433.533-.548.715-.727.274-.268-.029-.816.066-1.039.096-.222.197-.265.361-.3.165-.034.456.084.684.087.24.003.369-.098.548-.265.144-.133.248-.257.25-.45.007-.26-.368-.603-.089-.877.28-.274.684.178.981.144.297-.035.658-.447.695-.623.038-.176-.337-.629-.28-.886.02-.086.197-.288.33-.317.132-.029.72.199.853.17.162-.034.35-.205.502-.3.447.193.854.271 1.376.271C20.4 12.87 22 11.33 22 9.432 22 7.534 20.399 6 18.423 6s-3.516 1.54-3.516 3.438Zm5.247-.669a.923.923 0 1 1-1.847 0 .923.923 0 0 1 1.847 0Z"})]}),e=_},13424:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...s,children:(0,n.jsx)("path",{fill:"#32324D",d:"M12 17.3c1.99 0 3.9-.74 5.3-2.07a6.9 6.9 0 0 0 2.2-5.01V1h-3v9.22c0 1.13-.47 2.2-1.32 3A4.63 4.63 0 0 1 12 14.48c-1.2 0-2.34-.45-3.18-1.24a4.14 4.14 0 0 1-1.32-3.01V1h-3v9.22a6.9 6.9 0 0 0 2.2 5.01 7.73 7.73 0 0 0 5.3 2.08Zm9.75 2.14H2.25v2.83h19.5v-2.83Z"})}),e=_},12681:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...s,children:(0,n.jsx)("path",{fill:"#8E8EA9",d:"M20 22H4v-2a5 5 0 0 1 5-5h6a5 5 0 0 1 5 5v2Zm-8-9A6 6 0 1 1 12 .998 6 6 0 0 1 12 13Z"})}),e=_},69826:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...s,children:(0,n.jsx)("path",{fill:"#212134",d:"M5.889 16H2a1 1 0 0 1-1-1V9a1 1 0 0 1 1-1h3.889l5.294-4.332a.5.5 0 0 1 .817.387v15.89a.5.5 0 0 1-.817.387L5.89 16h-.001Zm14.525-4 3.536 3.536-1.414 1.414L19 13.414l-3.536 3.536-1.414-1.414L17.586 12 14.05 8.464l1.414-1.414L19 10.586l3.536-3.536 1.414 1.414L20.414 12Z"})}),e=_},24322:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...s,children:(0,n.jsx)("path",{fill:"#212134",d:"M5.889 16H2a1 1 0 0 1-1-1V9a1 1 0 0 1 1-1h3.889l5.294-4.332a.5.5 0 0 1 .817.387v15.89a.5.5 0 0 1-.817.387L5.89 16h-.001Zm13.517 4.134-1.416-1.416A8.977 8.977 0 0 0 21 12a8.983 8.983 0 0 0-3.304-6.968l1.42-1.42A10.977 10.977 0 0 1 23 12c0 3.223-1.386 6.122-3.594 8.134Zm-3.543-3.543-1.422-1.422A3.992 3.992 0 0 0 16 12c0-1.43-.75-2.685-1.88-3.392l1.439-1.439A5.99 5.99 0 0 1 18 12c0 1.842-.83 3.49-2.137 4.591Z"})}),e=_},19637:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...s,children:(0,n.jsx)("path",{fill:"#212134",d:"m7.617 8.712 3.205-2.328c.36-.263.797-.398 1.243-.384a2.616 2.616 0 0 1 2.427 1.82c.186.583.356.977.51 1.182A4.992 4.992 0 0 0 19 11v2a6.987 6.987 0 0 1-5.402-2.547l-.697 3.955 2.061 1.73 2.223 6.108-1.88.684-2.04-5.604-3.39-2.845a2 2 0 0 1-.713-1.904l.509-2.885-.677.492-2.127 2.928-1.618-1.176L7.6 8.7l.017.012ZM13.5 5.5a2 2 0 1 1 0-4 2 2 0 0 1 0 4Zm-2.972 13.181-3.214 3.83-1.532-1.285 2.976-3.546.746-2.18 1.791 1.5-.767 1.681Z"})}),e=_},50322:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const _=s=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...s,children:(0,n.jsx)("path",{fill:"#212134",fillRule:"evenodd",d:"M16.557 6.762a2.381 2.381 0 1 0 0-4.762 2.381 2.381 0 0 0 0 4.762Zm-2.655-.5a.962.962 0 0 1 .12.066l2.397 1.556a.952.952 0 0 1 .28 1.318l-2.536 3.905c.07.104.138.212.201.322h4.67c.056 0 .112.005.165.016a1.258 1.258 0 0 1 1.044 1.807l-2.492 5.103a1.258 1.258 0 0 1-2.26-1.104L17.077 16h-1.957a5.714 5.714 0 1 1-5.017-5.387l1.818-2.798-1.642-1.067-1.173 1.463a.96.96 0 0 1-1.525-1.165L8.94 5.182a1.905 1.905 0 0 1 2.593-.465l.246.163-.002.002 2.125 1.38ZM9.414 20.095a3.81 3.81 0 1 0 0-7.619 3.81 3.81 0 0 0 0 7.62Z",clipRule:"evenodd"})}),e=_}}]);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";(self.webpackChunk_strapi_admin=self.webpackChunk_strapi_admin||[]).push([[4916],{54916:function(l,e,i){i.r(e),i.d(e,{default:function(){return a},link:function(){return t}});const t="Link",a={link:t,"Settings.email.plugin.button.test-email":"Enviar e-mail de teste","Settings.email.plugin.label.defaultFrom":"E-mail do remetente padr\xE3o","Settings.email.plugin.label.defaultReplyTo":"E-mail de resposta padr\xE3o","Settings.email.plugin.label.provider":"Provedor de E-mail","Settings.email.plugin.label.testAddress":"E-mail do destinat\xE1rio","Settings.email.plugin.notification.config.error":"Falha ao recuperar a configura\xE7\xE3o de e-mail","Settings.email.plugin.notification.data.loaded":"Os dados de configura\xE7\xF5es de e-mail foram carregados","Settings.email.plugin.notification.test.error":"Falha ao enviar um e-mail de teste para {to}","Settings.email.plugin.notification.test.success":"Teste de e-mail bem-sucedido, verifique a caixa de correio {to}","Settings.email.plugin.placeholder.defaultFrom":"ex: Strapi No-Reply <no-reply@strapi.io>","Settings.email.plugin.placeholder.defaultReplyTo":"ex: Strapi <example@strapi.io>","Settings.email.plugin.placeholder.testAddress":"ex: developer@example.com","Settings.email.plugin.subTitle":"Teste as configura\xE7\xF5es do plug-in de e-mail","Settings.email.plugin.text.configuration":"O plugin \xE9 configurado atrav\xE9s do ficheiro {file}, acede a este {link} para a documenta\xE7\xE3o.","Settings.email.plugin.title":"Configura\xE7\xE3o","Settings.email.plugin.title.config":"Configura\xE7\xE3o","Settings.email.plugin.title.test":"Testar entrega de e-mail","SettingsNav.link.settings":"Defini\xE7\xF5es","SettingsNav.section-label":"Plug-in de e-mail","components.Input.error.validation.email":"Este \xE9 um e-mail inv\xE1lido"}}}]);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";(self.webpackChunk_strapi_admin=self.webpackChunk_strapi_admin||[]).push([[4996],{4996:function(a,i,e){e.r(i),e.d(i,{default:function(){return t}});const t={"Settings.email.plugin.button.test-email":"Wy\u015Blij testowy email","Settings.email.plugin.label.defaultFrom":"Domy\u015Blny nadawca","Settings.email.plugin.label.defaultReplyTo":"Domy\u015Blny obiorca","Settings.email.plugin.label.provider":"Dostawca","Settings.email.plugin.label.testAddress":"Odbiorca","Settings.email.plugin.notification.config.error":"Nie uda\u0142o si\u0119 uzyska\u0107 konfiguracji email","Settings.email.plugin.notification.data.loaded":"Dane dotycz\u0105ce ustawie\u0144 email zosta\u0142y za\u0142adowane","Settings.email.plugin.notification.test.error":"Nie uda\u0142o si\u0119 wys\u0142a\u0107 testowego maila do {to}","Settings.email.plugin.notification.test.success":"Testowy email wys\u0142any, sprawd\u017A skrzynk\u0119: {to}","Settings.email.plugin.placeholder.defaultFrom":"np: Strapi No-Reply <no-reply@strapi.io>","Settings.email.plugin.placeholder.defaultReplyTo":"np: Strapi <example@strapi.io>","Settings.email.plugin.placeholder.testAddress":"np: developer@example.com","Settings.email.plugin.subTitle":"Sprawd\u017A ustawienia dla testowego maila","Settings.email.plugin.text.configuration":"Ten plugin jest skonfigurowany w pliku {file}, sprawd\u017A {link} do dokumentacji.","Settings.email.plugin.title":"Ustawienia","Settings.email.plugin.title.config":"Ustawienia","Settings.email.plugin.title.test":"Przetestuj dostarczanie maila","SettingsNav.link.settings":"Ustawienia","SettingsNav.section-label":"Plugin e-mail","components.Input.error.validation.email":"Ten email jest niepoprawny."}}}]);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";(self.webpackChunk_strapi_admin=self.webpackChunk_strapi_admin||[]).push([[502],{98866:function(C,_,t){t.d(_,{q:function(){return o}});var e=t(32735),l=t(96192),s=t(20108);function o({enabled:d}={enabled:!0}){const{get:c}=(0,l.kY)(),{data:r,isError:n,isLoading:m}=(0,s.useQuery)(["ee","license-limit-info"],async()=>{const{data:{data:i}}=await c("/admin/license-limit-information");return i},{enabled:d}),a=e.useMemo(()=>r??{},[r]),u=e.useCallback(i=>(a?.features??[]).find(M=>M.name===i)?.options??{},[a?.features]);return{license:a,getFeature:u,isError:n,isLoading:m}}},50502:function(C,_,t){t.r(_),t.d(_,{AdminSeatInfoEE:function(){return I}});var e=t(32735),l=t(97037),s=t(8365),o=t(84642),d=t(11349),c=t(18129),r=t(41190),n=t(96192),m=t(42567),a=t(95441),u=t(67879),i=t(40986),O=t(30305),M=t(98866);const p="https://cloud.strapi.io/profile/billing",f="https://strapi.io/billing/request-seats",I=()=>{const{formatMessage:E}=(0,u.Z)(),A=(0,i.v9)(O._),{isLoading:D,allowedActions:{canRead:R,canCreate:U,canUpdate:v,canDelete:B}}=(0,n.ss)(A.settings.users),{license:{licenseLimitStatus:T,enforcementUserCount:g,permittedSeats:L,isHostedOnStrapiCloud:P},isError:W,isLoading:K}=(0,M.q)({enabled:!D&&R&&U&&v&&B});return W||(D||K)||!L?null:e.createElement(l.P,{col:6,s:12},e.createElement(s.Z,{variant:"sigma",textColor:"neutral600"},E({id:"Settings.application.admin-seats",defaultMessage:"Admin seats"})),e.createElement(o.k,{gap:2},e.createElement(o.k,null,e.createElement(s.Z,{as:"p"},E({id:"Settings.application.ee.admin-seats.count",defaultMessage:"<text>{enforcementUserCount}</text>/{permittedSeats}"},{permittedSeats:L,enforcementUserCount:g,text:h=>e.createElement(s.Z,{fontWeight:"semiBold",textColor:g>L?"danger500":null},h)}))),T==="OVER_LIMIT"&&e.createElement(d.u,{description:E({id:"Settings.application.ee.admin-seats.at-limit-tooltip",defaultMessage:"At limit: add seats to invite more users"})},e.createElement(c.J,{width:`${(0,n.Q1)(14)}rem`,height:`${(0,n.Q1)(14)}rem`,color:"danger500",as:m.Z}))),e.createElement(r.r,{href:P?p:f,isExternal:!0,endIcon:e.createElement(a.Z,null)},E({id:"Settings.application.ee.admin-seats.add-seats",defaultMessage:"{isHostedOnStrapiCloud, select, true {Add seats} other {Contact sales}}"},{isHostedOnStrapiCloud:P})))}}}]);
|