From ff9b66b8b4c1eb1aa340c66e76642aa348ca6412 Mon Sep 17 00:00:00 2001 From: Valeriia Maltseva Date: Wed, 20 Nov 2024 10:54:57 +0100 Subject: [PATCH 1/6] added the Fullpath field --- .../js/src/core/app/config/services/index.ts | 2 + .../types/dynamic-type-listing-asset-link.tsx | 26 + .../modules/element/dynamic-types/index.ts | 6 + .../entrypoints.json | 14 + .../manifest.json | 1746 +++++++++++++++++ .../105.js | 2 - .../105.js.LICENSE.txt | 16 - .../core-dll.css | 16 - .../core-dll.js | 2 - .../core-dll.js.LICENSE.txt | 133 -- .../entrypoints.json | 12 - .../fonts/Lato-Bold.636be8de.ttf | Bin 73332 -> 0 bytes .../fonts/Lato-Light.c7400fca.ttf | Bin 77208 -> 0 bytes .../fonts/Lato-Regular.9d883d54.ttf | Bin 75152 -> 0 bytes .../manifest.json | 1742 ---------------- .../entrypoints.json | 9 - .../manifest.json | 3 - .../vendor.js | 2 - .../vendor.js.LICENSE.txt | 190 -- .../entrypoints.json | 9 - .../main.js | 2 - .../main.js.LICENSE.txt | 16 - .../manifest.json | 3 - 23 files changed, 1794 insertions(+), 2157 deletions(-) create mode 100644 assets/js/src/core/modules/element/dynamic-types/defintinitions/listing/types/dynamic-type-listing-asset-link.tsx create mode 100644 public/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/entrypoints.json create mode 100644 public/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/manifest.json delete mode 100644 public/build/356f28db-348d-4b9e-b8e7-f0acae94f589/105.js delete mode 100644 public/build/356f28db-348d-4b9e-b8e7-f0acae94f589/105.js.LICENSE.txt delete mode 100644 public/build/356f28db-348d-4b9e-b8e7-f0acae94f589/core-dll.css delete mode 100644 public/build/356f28db-348d-4b9e-b8e7-f0acae94f589/core-dll.js delete mode 100644 public/build/356f28db-348d-4b9e-b8e7-f0acae94f589/core-dll.js.LICENSE.txt delete mode 100644 public/build/356f28db-348d-4b9e-b8e7-f0acae94f589/entrypoints.json delete mode 100644 public/build/356f28db-348d-4b9e-b8e7-f0acae94f589/fonts/Lato-Bold.636be8de.ttf delete mode 100644 public/build/356f28db-348d-4b9e-b8e7-f0acae94f589/fonts/Lato-Light.c7400fca.ttf delete mode 100644 public/build/356f28db-348d-4b9e-b8e7-f0acae94f589/fonts/Lato-Regular.9d883d54.ttf delete mode 100644 public/build/356f28db-348d-4b9e-b8e7-f0acae94f589/manifest.json delete mode 100644 public/build/63b933f6-14be-49d7-afcb-0a169573c113/entrypoints.json delete mode 100644 public/build/63b933f6-14be-49d7-afcb-0a169573c113/manifest.json delete mode 100644 public/build/63b933f6-14be-49d7-afcb-0a169573c113/vendor.js delete mode 100644 public/build/63b933f6-14be-49d7-afcb-0a169573c113/vendor.js.LICENSE.txt delete mode 100644 public/build/b671b4e0-28e4-4343-b8ca-2caf4ded9445/entrypoints.json delete mode 100644 public/build/b671b4e0-28e4-4343-b8ca-2caf4ded9445/main.js delete mode 100644 public/build/b671b4e0-28e4-4343-b8ca-2caf4ded9445/main.js.LICENSE.txt delete mode 100644 public/build/b671b4e0-28e4-4343-b8ca-2caf4ded9445/manifest.json diff --git a/assets/js/src/core/app/config/services/index.ts b/assets/js/src/core/app/config/services/index.ts index acb4e1632..7a2e42c70 100644 --- a/assets/js/src/core/app/config/services/index.ts +++ b/assets/js/src/core/app/config/services/index.ts @@ -28,6 +28,7 @@ import { ComponentRegistry } from '@Pimcore/modules/app/component-registry/compo import { ObjectTabManager } from '@Pimcore/modules/data-object/editor/types/object/tab-manager/object-tab-manager' import { DynamicTypeFieldFilterRegistry } from '@Pimcore/modules/element/dynamic-types/defintinitions/field-filters/dynamic-type-field-filter-registry' import { DynamicTypeListingRegistry } from '@Pimcore/modules/element/dynamic-types/defintinitions/listing/dynamic-type-listing-registry' +import { DynamicTypeListingAssetLink } from '@Pimcore/modules/element/dynamic-types/defintinitions/listing/types/dynamic-type-listing-asset-link' import { serviceIds } from '@Pimcore/app/config/services/service-ids' import { DynamicTypeFieldFilterText } from '@Pimcore/modules/element/dynamic-types/defintinitions/field-filters/types/text/dynamic-type-field-filter-text' import { DynamicTypeFieldFilterNumber } from '@Pimcore/modules/element/dynamic-types/defintinitions/field-filters/types/number/dynamic-type-field-filter-number' @@ -159,6 +160,7 @@ container.bind(serviceIds['DynamicTypes/GridCell/AssetVersionPreviewFieldLabel'] // dynamic types listing container.bind(serviceIds['DynamicTypes/ListingRegistry']).to(DynamicTypeListingRegistry).inSingletonScope() +container.bind(serviceIds['DynamicTypes/Listing/Text']).to(DynamicTypeListingAssetLink).inSingletonScope() // Metadata registry container.bind(serviceIds['DynamicTypes/MetadataRegistry']).to(DynamicTypeMetaDataRegistry).inSingletonScope() diff --git a/assets/js/src/core/modules/element/dynamic-types/defintinitions/listing/types/dynamic-type-listing-asset-link.tsx b/assets/js/src/core/modules/element/dynamic-types/defintinitions/listing/types/dynamic-type-listing-asset-link.tsx new file mode 100644 index 000000000..c0234971e --- /dev/null +++ b/assets/js/src/core/modules/element/dynamic-types/defintinitions/listing/types/dynamic-type-listing-asset-link.tsx @@ -0,0 +1,26 @@ +/** +* Pimcore +* +* This source file is available under two different licenses: +* - Pimcore Open Core License (POCL) +* - Pimcore Commercial License (PCL) +* Full copyright and license information is available in +* LICENSE.md which is distributed with this source code. +* +* @copyright Copyright (c) Pimcore GmbH (http://www.pimcore.org) +* @license https://github.com/pimcore/studio-ui-bundle/blob/1.x/LICENSE.md POCL and PCL +*/ + +import { inject, injectable } from 'inversify' +import { DynamicTypeListingAbstract } from '../dynamic-type-listing-abstract' +import { DynamicTypeGridCellAbstract } from '../../grid-cell/dynamic-type-grid-cell-abstract' +import { serviceIds } from '@Pimcore/app/config/services/service-ids' +import { DynamicTypeFieldFilterAbstract } from '../../field-filters/dynamic-type-field-filter-abstract' + +@injectable() +export class DynamicTypeListingAssetLink extends DynamicTypeListingAbstract { + readonly id = 'asset-link' + + @inject(serviceIds['DynamicTypes/GridCell/AssetLink']) protected dynamicTypeGridCellType: DynamicTypeGridCellAbstract + @inject(serviceIds['DynamicTypes/FieldFilter/Text']) protected dynamicTypeFieldFilterType: DynamicTypeFieldFilterAbstract +} diff --git a/assets/js/src/core/modules/element/dynamic-types/index.ts b/assets/js/src/core/modules/element/dynamic-types/index.ts index 82588d2a2..bc50eb72a 100644 --- a/assets/js/src/core/modules/element/dynamic-types/index.ts +++ b/assets/js/src/core/modules/element/dynamic-types/index.ts @@ -86,6 +86,8 @@ import { type DynamicTypeObjectDataTime } from '@Pimcore/modules/element/dynamic import { type DynamicTypeObjectDataExternalImage } from '@Pimcore/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-external-image' import { type DynamicTypeObjectDataBlock } from './defintinitions/objects/data-related/types/dynamic-type-object-data-block' import { type DynamicTypeObjectDataLocalizedFields } from './defintinitions/objects/data-related/types/dynamic-type-object-data-localized-fields' +import { type DynamicTypeListingRegistry } from '@Pimcore/modules/element/dynamic-types/defintinitions/listing/dynamic-type-listing-registry' +import { type DynamicTypeListingAssetLink } from '@Pimcore/modules/element/dynamic-types/defintinitions/listing/types/dynamic-type-listing-asset-link' moduleSystem.registerModule({ onInit () { @@ -96,6 +98,10 @@ moduleSystem.registerModule({ fieldFilterRegistry.registerDynamicType(container.get(serviceIds['DynamicTypes/FieldFilter/Select'])) fieldFilterRegistry.registerDynamicType(container.get(serviceIds['DynamicTypes/FieldFilter/Datetime'])) + const listingRegistry = container.get(serviceIds['DynamicTypes/ListingRegistry']) + + listingRegistry.registerDynamicType(container.get(serviceIds['DynamicTypes/Listing/Text'])) + const GridCellRegistry = container.get(serviceIds['DynamicTypes/GridCellRegistry']) GridCellRegistry.registerDynamicType(container.get(serviceIds['DynamicTypes/GridCell/Text'])) diff --git a/public/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/entrypoints.json b/public/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/entrypoints.json new file mode 100644 index 000000000..046b1d04f --- /dev/null +++ b/public/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/entrypoints.json @@ -0,0 +1,14 @@ +{ + "entrypoints": { + "main": { + "css": [ + "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/vendors-node_modules_dnd-kit_modifiers_dist_modifiers_esm_js-node_modules_dnd-kit_sortable_di-4ab954.css", + "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/main.css" + ], + "js": [ + "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/vendors-node_modules_dnd-kit_modifiers_dist_modifiers_esm_js-node_modules_dnd-kit_sortable_di-4ab954.js", + "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/main.js" + ] + } + } +} \ No newline at end of file diff --git a/public/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/manifest.json b/public/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/manifest.json new file mode 100644 index 000000000..bd8d4ac8a --- /dev/null +++ b/public/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/manifest.json @@ -0,0 +1,1746 @@ +{ + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/main.css": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/main.css", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/main.js": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/main.js", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/js_src_core_app_public-api_index_ts.js": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/js_src_core_app_public-api_index_ts.js", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/vendors-node_modules_dnd-kit_modifiers_dist_modifiers_esm_js-node_modules_dnd-kit_sortable_di-4ab954.css": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/vendors-node_modules_dnd-kit_modifiers_dist_modifiers_esm_js-node_modules_dnd-kit_sortable_di-4ab954.css", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/vendors-node_modules_dnd-kit_modifiers_dist_modifiers_esm_js-node_modules_dnd-kit_sortable_di-4ab954.js": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/vendors-node_modules_dnd-kit_modifiers_dist_modifiers_esm_js-node_modules_dnd-kit_sortable_di-4ab954.js", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/fonts/Lato-Light.ttf": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/fonts/Lato-Light.c7400fca.ttf", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/fonts/Lato-Regular.ttf": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/fonts/Lato-Regular.9d883d54.ttf", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/fonts/Lato-Bold.ttf": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/fonts/Lato-Bold.636be8de.ttf", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/asset-api-slice.gen.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/asset-api-slice.gen.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/asset-api-slice-enhanced.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/asset-api-slice-enhanced.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/asset-draft-slice.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/asset-draft-slice.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/auth/user/user-api-slice.gen.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/auth/user/user-api-slice.gen.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/data-object-api-slice.gen.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/data-object-api-slice.gen.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/data-object-draft-slice.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/data-object-draft-slice.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/asset-api-slice.gen.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/asset-api-slice.gen.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/test-utils/test-utils.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/test-utils/test-utils.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/versions/version-api-slice.gen.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/versions/version-api-slice.gen.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/tags/tags-api-slice.gen.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/tags/tags-api-slice.gen.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/data-object-api-slice-enhanced.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/data-object-api-slice-enhanced.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/data-object-api-slice.gen.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/data-object-api-slice.gen.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/versions/version-api-slice-enhanced.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/versions/version-api-slice-enhanced.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/notes-and-events/notes-and-events-api-slice.gen.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/notes-and-events/notes-and-events-api-slice.gen.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/properties/properties-api-slice.gen.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/properties/properties-api-slice.gen.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/auth/user/user-api-slice.gen.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/auth/user/user-api-slice.gen.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/sdk/main.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/sdk/main.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/schedule/schedule-api-slice.gen.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/schedule/schedule-api-slice.gen.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/notes-and-events/notes-and-events-api-slice-enhanced.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/notes-and-events/notes-and-events-api-slice-enhanced.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/app/theme/utils/themes/default-theme.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/app/theme/utils/themes/default-theme.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/element-api-slice.gen.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/element-api-slice.gen.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/app/config/services/service-ids.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/app/config/services/service-ids.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/schedule/schedule-api-slice-enhanced.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/schedule/schedule-api-slice-enhanced.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/list-provider.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/list-provider.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/workflow/workflow-api-slice.gen.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/workflow/workflow-api-slice.gen.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/versions/version-api-slice.gen.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/versions/version-api-slice.gen.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/properties/properties-api-slice-enhanced.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/properties/properties-api-slice-enhanced.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/dropdown/dropdown.stories.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/dropdown/dropdown.stories.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/app/api/pimcore/tags.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/app/api/pimcore/tags.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/execution-engine/execution-engine-slice.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/execution-engine/execution-engine-slice.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/app/settings/settings-slice.gen.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/app/settings/settings-slice.gen.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/tree-element/tree-element.stories.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/tree-element/tree-element.stories.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/notes-and-events/notes-and-events-api-slice.gen.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/notes-and-events/notes-and-events-api-slice.gen.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/draft/hooks/use-custom-metadata.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/draft/hooks/use-custom-metadata.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/auth/authorization-api-slice.gen.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/auth/authorization-api-slice.gen.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/list-provider.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/list-provider.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/asset-thumbnails-api-slice.gen.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/asset-thumbnails-api-slice.gen.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/tags/tags-api-slice.gen.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/tags/tags-api-slice.gen.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/grid.stories.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/grid.stories.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/properties/properties-api-slice.gen.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/properties/properties-api-slice.gen.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/dependencies/dependencies-api-slice.gen.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/dependencies/dependencies-api-slice.gen.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/hooks/use-list.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/hooks/use-list.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/draft/hooks/use-schedules.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/draft/hooks/use-schedules.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/draft/hooks/use-properties.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/draft/hooks/use-properties.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/draft/hooks/use-image-settings.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/draft/hooks/use-image-settings.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/flex/flex.stories.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/flex/flex.stories.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/dependencies/dependencies-api-slice-enhanced.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/dependencies/dependencies-api-slice-enhanced.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/shared-tab-manager/tabs/custom-metadata/settings-slice.gen.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/shared-tab-manager/tabs/custom-metadata/settings-slice.gen.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/workflow/workflow-api-slice.gen.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/workflow/workflow-api-slice.gen.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/schedule/schedule-api-slice.gen.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/schedule/schedule-api-slice.gen.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/element-tree/element-tree.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/element-tree/element-tree.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/split-layout/split-layout.stories.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/split-layout/split-layout.stories.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/accordion/accordion.stories.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/accordion/accordion.stories.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/app/translations/translations-api-slice.gen.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/app/translations/translations-api-slice.gen.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/dropdown/dropdown.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/dropdown/dropdown.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/draft/hooks/use-custom-metadata.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/draft/hooks/use-custom-metadata.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/draft/hooks/use-schedules.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/draft/hooks/use-schedules.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/draft/hooks/use-trackable-changes.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/draft/hooks/use-trackable-changes.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/card/card.stories.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/card/card.stories.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/tag/tag.stories.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/tag/tag.stories.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/hooks/use-element-draft.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/hooks/use-element-draft.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/services/type-registry.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/services/type-registry.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/draft/hooks/use-properties.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/draft/hooks/use-properties.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/types/components/types.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/types/components/types.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/hooks/use-asset-draft.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/hooks/use-asset-draft.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/app/store/index.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/app/store/index.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/form/form.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/form/form.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/shared-tab-manager/tabs/versions/details-functions.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/shared-tab-manager/tabs/versions/details-functions.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/element-tree/element-tree.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/element-tree/element-tree.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/meta-data/dynamic-type-metadata-abstract.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/meta-data/dynamic-type-metadata-abstract.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/element-api-slice.gen.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/element-api-slice.gen.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/toolbar/tools/mercure-api-slice.gen.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/toolbar/tools/mercure-api-slice.gen.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/dropdown/dropdown.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/dropdown/dropdown.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/actions/zip-download/use-zip-download.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/actions/zip-download/use-zip-download.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/hooks/use-data-object-draft.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/hooks/use-data-object-draft.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/asset-draft-slice.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/asset-draft-slice.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/draft/hooks/use-image-settings.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/draft/hooks/use-image-settings.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/alert/alert.stories.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/alert/alert.stories.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/listing/dynamic-type-listing-abstract.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/listing/dynamic-type-listing-abstract.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/workflow/workflow-api-slice-enhanced.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/workflow/workflow-api-slice-enhanced.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/hooks/use-list.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/hooks/use-list.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/sidebar/filters/hooks/use-filters.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/sidebar/filters/hooks/use-filters.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/button-group/button-group.stories.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/button-group/button-group.stories.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/abstract/dynamic-type-object-data-abstract-numeric.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/abstract/dynamic-type-object-data-abstract-numeric.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/versions/create-version-accordion-item-functions.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/versions/create-version-accordion-item-functions.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/box/box.stories.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/box/box.stories.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/types/components/types.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/types/components/types.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/modal/form-modal/hooks/use-form-modal.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/modal/form-modal/hooks/use-form-modal.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/versions/versions-view.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/versions/versions-view.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/dynamic-type-object-data-abstract.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/dynamic-type-object-data-abstract.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/modal/info-modal.stories.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/modal/info-modal.stories.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/draft/hooks/use-tabs.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/draft/hooks/use-tabs.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/select/select.stories.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/select/select.stories.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/grid-container.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/grid-container.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/grid.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/grid.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/app/component-registry/component-registry.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/app/component-registry/component-registry.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/tree-element/tree-element.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/tree-element/tree-element.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/data-object-draft-slice.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/data-object-draft-slice.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/tree/hooks/use-node-api-hook.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/tree/hooks/use-node-api-hook.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/widget-manager/hooks/use-context-menu.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/widget-manager/hooks/use-context-menu.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/abstract/dynamic-type-object-data-abstract-date.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/abstract/dynamic-type-object-data-abstract-date.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/tree/hooks/use-node-api-hook.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/tree/hooks/use-node-api-hook.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/accordion/accordion.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/accordion/accordion.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/services/type-registry.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/services/type-registry.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/sidebar/sidebar.stories.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/sidebar/sidebar.stories.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/draft/hooks/use-trackable-changes.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/draft/hooks/use-trackable-changes.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/dependencies/dependencies-api-slice.gen.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/dependencies/dependencies-api-slice.gen.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/dropdown/selection/selection-provider.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/dropdown/selection/selection-provider.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/abstract/dynamic-type-object-data-abstract-select.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/abstract/dynamic-type-object-data-abstract-select.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/actions/lock/use-lock.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/actions/lock/use-lock.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/lib/event-bus/index.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/lib/event-bus/index.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-datetime.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-datetime.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/date-picker/date-picker.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/date-picker/date-picker.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/toolbar/workflow-log-modal/workflow-provider.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/toolbar/workflow-log-modal/workflow-provider.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-slider.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-slider.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/video/tab-manager/tabs/preview/sidebar/tabs/details/details-view.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/video/tab-manager/tabs/preview/sidebar/tabs/details/details-view.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/actions/copy-paste/use-copy-paste.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/actions/copy-paste/use-copy-paste.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-boolean-select.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-boolean-select.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-date.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-date.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/box/box.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/box/box.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/select/select.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/select/select.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-numeric-range.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-numeric-range.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/tabs/tabs.stories.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/tabs/tabs.stories.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/widget-manager/services/widget-registry.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/widget-manager/services/widget-registry.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/date-picker/date-range-picker.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/date-picker/date-range-picker.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/meta-data/types/dynamic-type-meta-data-document.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/meta-data/types/dynamic-type-meta-data-document.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-input.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-input.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/meta-data/types/dynamic-type-meta-data-asset.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/meta-data/types/dynamic-type-meta-data-asset.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/meta-data/types/dynamic-type-meta-data-object.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/meta-data/types/dynamic-type-meta-data-object.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/meta-data/types/dynamic-type-meta-data-select.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/meta-data/types/dynamic-type-meta-data-select.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/meta-data/types/dynamic-type-meta-data-date.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/meta-data/types/dynamic-type-meta-data-date.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/resolver/hooks/use-dynamic-type-resolver.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/resolver/hooks/use-dynamic-type-resolver.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/resolver/dynamic-type-resolver.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/resolver/dynamic-type-resolver.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/app/settings/settings-slice.gen.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/app/settings/settings-slice.gen.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/compact/compact.stories.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/compact/compact.stories.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/button/button.stories.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/button/button.stories.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/services/component-registry.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/services/component-registry.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/meta-data/types/dynamic-type-meta-data-checkbox.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/meta-data/types/dynamic-type-meta-data-checkbox.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/meta-data/types/dynamic-type-meta-data-textarea.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/meta-data/types/dynamic-type-meta-data-textarea.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/modal/useModal/index.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/modal/useModal/index.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/auth/authorization-api-slice.gen.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/auth/authorization-api-slice.gen.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/toolbar/tools/batch-edit-modal/hooks/use-batch-edit.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/toolbar/tools/batch-edit-modal/hooks/use-batch-edit.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/shared-tab-manager/tabs/versions/details-functions.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/shared-tab-manager/tabs/versions/details-functions.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/meta-data/types/dynamic-type-meta-data-input.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/meta-data/types/dynamic-type-meta-data-input.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/drag-and-drop/context-provider.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/drag-and-drop/context-provider.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/helpers/gridHelpers.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/helpers/gridHelpers.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/widget-manager/hooks/use-widget-manager.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/widget-manager/hooks/use-widget-manager.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/modal/alert-modal/hooks/use-alert-modal.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/modal/alert-modal/hooks/use-alert-modal.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/registry/provider/dynamic-type-registry-provider.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/registry/provider/dynamic-type-registry-provider.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/tree-element/tree-element.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/tree-element/tree-element.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/app/component-registry/component-registry.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/app/component-registry/component-registry.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/tabs/editor-tabs.stories.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/tabs/editor-tabs.stories.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/types/filterTypes.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/types/filterTypes.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/content-toolbar-sidebar-layout/content-toolbar-sidebar-layout.stories.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/content-toolbar-sidebar-layout/content-toolbar-sidebar-layout.stories.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/tags/hooks/use-optimistic-update.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/tags/hooks/use-optimistic-update.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/numeric-range/numeric-range.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/numeric-range/numeric-range.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-rgba-color.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-rgba-color.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/sidebar/sidebar-manager.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/sidebar/sidebar-manager.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/sidebar/filters/hooks/use-filters.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/sidebar/filters/hooks/use-filters.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/element-tree/node/tree-node.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/element-tree/node/tree-node.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/layout-related/dynamic-type-object-layout-abstract.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/layout-related/dynamic-type-object-layout-abstract.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/metadata-type-provider/services/metadata-type-registry.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/metadata-type-provider/services/metadata-type-registry.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/modal/form-modal/hooks/use-form-modal.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/modal/form-modal/hooks/use-form-modal.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/drag-and-drop/hooks/use-sortable-context.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/drag-and-drop/hooks/use-sortable-context.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/modal/form-modal/form-modal.stories.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/modal/form-modal/form-modal.stories.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/app/plugin-system/plugin-system.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/app/plugin-system/plugin-system.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/tags/components/tags-tree/tags-tree.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/tags/components/tags-tree/tags-tree.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/image/tab-manager/tabs/preview/sidebar/tabs/details/details-view.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/image/tab-manager/tabs/preview/sidebar/tabs/details/details-view.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/content/content.stories.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/content/content.stories.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/versions/versions-container.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/versions/versions-container.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/notes-and-events/notes-and-events-view.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/notes-and-events/notes-and-events-view.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/focal-point/context/focal-point-context.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/focal-point/context/focal-point-context.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/icon-library/services/icon-library.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/icon-library/services/icon-library.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/toolbar/workflow-log-modal/hooks/use-workflow.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/toolbar/workflow-log-modal/hooks/use-workflow.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/drag-and-drop/callback-registry.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/drag-and-drop/callback-registry.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/app/global-context/global-context-slice.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/app/global-context/global-context-slice.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-external-image.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-external-image.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/field-filters/dynamic-type-field-filter-abstract.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/field-filters/dynamic-type-field-filter-abstract.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/split/split.stories.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/split/split.stories.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/widget-manager/widget-manager-view.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/widget-manager/widget-manager-view.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/registry/dynamic-type-registry-abstract.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/registry/dynamic-type-registry-abstract.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/upload/upload.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/upload/upload.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/icon-button/icon-button.stories.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/icon-button/icon-button.stories.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/pagination/pagination.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/pagination/pagination.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/abstract/dynamic-type-object-data-abstract-multiselect.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/abstract/dynamic-type-object-data-abstract-multiselect.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/hooks/use-element-api.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/hooks/use-element-api.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/icon-text-button/icon-text-button.stories.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/icon-text-button/icon-text-button.stories.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/sidebar/grid-config/views/edit-view.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/sidebar/grid-config/views/edit-view.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/sdk/main.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/sdk/main.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/grid-cell/grid-row.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/grid-cell/grid-row.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/hooks/use-element-draft.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/hooks/use-element-draft.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/shared-tab-manager/tabs/versions/single-view/single-view-ui.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/shared-tab-manager/tabs/versions/single-view/single-view-ui.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/content/content.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/content/content.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/meta-data/dynamic-type-metadata-abstract.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/meta-data/dynamic-type-metadata-abstract.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/shared-tab-manager/tabs/custom-metadata/settings-slice.gen.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/shared-tab-manager/tabs/custom-metadata/settings-slice.gen.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/toolbar/tools/batch-edit-modal/batch-edit-provider.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/toolbar/tools/batch-edit-modal/batch-edit-provider.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/abstract/dynamic-type-object-data-abstract-numeric.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/abstract/dynamic-type-object-data-abstract-numeric.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/utils/hooks/use-server-side-event.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/utils/hooks/use-server-side-event.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/drag-and-drop/droppable.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/drag-and-drop/droppable.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/sidebar/grid-config/grid-config-provider.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/sidebar/grid-config/grid-config-provider.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/actions/delete/use-delete.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/actions/delete/use-delete.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/dynamic-type-grid-cell-abstract.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/dynamic-type-grid-cell-abstract.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-date-range.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-date-range.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/modal/modal.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/modal/modal.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/asset-thumbnails-api-slice.gen.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/asset-thumbnails-api-slice.gen.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/actions/add-folder/use-add-folder.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/actions/add-folder/use-add-folder.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/actions/rename/use-rename.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/actions/rename/use-rename.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/hooks/use-global-data-object-context.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/hooks/use-global-data-object-context.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-textarea.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-textarea.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/modal/footer/modal-footer.stories.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/modal/footer/modal-footer.stories.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/field-filters/dynamic-type-field-filter-registry.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/field-filters/dynamic-type-field-filter-registry.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/upload/upload-provider.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/upload/upload-provider.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-time.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-time.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/field-filters/types/datetime/dynamic-type-field-filter-datetime.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/field-filters/types/datetime/dynamic-type-field-filter-datetime.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/tag-list/tag-list.stories.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/tag-list/tag-list.stories.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/editor/types/object/tab-manager/tabs/edit/providers/form-list-provider/form-list-provider.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/editor/types/object/tab-manager/tabs/edit/providers/form-list-provider/form-list-provider.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/pimcore-video/pimcore-video.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/pimcore-video/pimcore-video.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/versions/create-version-accordion-item-functions.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/versions/create-version-accordion-item-functions.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/field-filters/types/number/dynamic-type-field-filter-number.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/field-filters/types/number/dynamic-type-field-filter-number.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/field-filters/types/select/dynamic-type-field-filter-select.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/field-filters/types/select/dynamic-type-field-filter-select.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/dynamic-type-grid-cell-registry.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/dynamic-type-grid-cell-registry.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-password.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-password.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/pql-query-input/pql-query-input.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/pql-query-input/pql-query-input.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/versions/version-details-props.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/versions/version-details-props.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-consent.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-consent.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/upload/hook/use-file-uploader.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/upload/hook/use-file-uploader.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/bootstrap.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/bootstrap.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/horizontal-scroll/horizontal-scroll.stories.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/horizontal-scroll/horizontal-scroll.stories.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/abstract/dynamic-type-object-data-abstract-input.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/abstract/dynamic-type-object-data-abstract-input.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/sidebar/filters/hooks/use-pql-query-filter.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/sidebar/filters/hooks/use-pql-query-filter.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/field-filters/types/text/dynamic-type-field-filter-text.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/field-filters/types/text/dynamic-type-field-filter-text.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/tab-manager/interface/IElementEditorTabManager.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/tab-manager/interface/IElementEditorTabManager.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/execution-engine/jobs/abstact-job.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/execution-engine/jobs/abstact-job.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/pagination/pagination.stories.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/pagination/pagination.stories.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/split-layout/split-layout.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/split-layout/split-layout.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/edit-mode/editable-cell-context.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/edit-mode/editable-cell-context.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/components/localized-fields/localized-fields.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/components/localized-fields/localized-fields.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/actions/zip-download/use-zip-download.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/actions/zip-download/use-zip-download.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/stack-list/stack-list-item.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/stack-list/stack-list-item.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/hooks/use-global-asset-context.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/hooks/use-global-asset-context.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/dependencies/components/table/table.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/dependencies/components/table/table.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/utils/date-time.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/utils/date-time.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/date-picker/time-picker.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/date-picker/time-picker.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/dynamic-type-object-data-abstract.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/dynamic-type-object-data-abstract.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/toolbar/workflow-log-modal/hooks/use-submit-workflow.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/toolbar/workflow-log-modal/hooks/use-submit-workflow.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/hooks/use-asset-draft.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/hooks/use-asset-draft.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-localized-fields.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-localized-fields.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/hooks/use-global-element-context.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/hooks/use-global-element-context.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/services/type-registry.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/services/type-registry.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/layout-related/types/dynamic-type-object-layout-field-container.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/layout-related/types/dynamic-type-object-layout-field-container.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/dependencies/components/pagination/pagination.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/dependencies/components/pagination/pagination.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/types/_versions/dynamic-type-grid-cell-asset-version-preview-field-label.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/types/_versions/dynamic-type-grid-cell-asset-version-preview-field-label.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/preview-card/preview-card.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/preview-card/preview-card.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/tabs/editor-tabs.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/tabs/editor-tabs.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/actions/refresh-tree/use-refresh-tree.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/actions/refresh-tree/use-refresh-tree.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/abstract/dynamic-type-object-data-abstract-select.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/abstract/dynamic-type-object-data-abstract-select.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/widget-manager/widget/widget-view.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/widget-manager/widget/widget-view.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/lib/dependency-injection/index.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/lib/dependency-injection/index.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/metadata-type-provider/metadata-types/data-object.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/metadata-type-provider/metadata-types/data-object.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/pagination/inline-textfield/inline-textfield.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/pagination/inline-textfield/inline-textfield.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/date-picker/utils/date-picker-utils.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/date-picker/utils/date-picker-utils.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/metadata-type-provider/metadata-types/document.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/metadata-type-provider/metadata-types/document.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/metadata-type-provider/metadata-types/asset.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/metadata-type-provider/metadata-types/asset.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/editor/toolbar/language-selection/provider/language-selection-provider.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/editor/toolbar/language-selection/provider/language-selection-provider.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/layout-related/components/tabpanel/tabpanel.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/layout-related/components/tabpanel/tabpanel.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/app/store/index.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/app/store/index.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/types/_meta-data/dynamic-type-grid-cell-asset-custom-metadata-value.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/types/_meta-data/dynamic-type-grid-cell-asset-custom-metadata-value.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/app/api/pimcore/index.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/app/api/pimcore/index.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/notes-and-events/modal/add-note-modal.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/notes-and-events/modal/add-note-modal.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/types/_meta-data/dynamic-type-grid-cell-asset-custom-metadata-icon.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/types/_meta-data/dynamic-type-grid-cell-asset-custom-metadata-icon.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/notification/notification.stories.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/notification/notification.stories.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/layout-related/components/panel/panel.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/layout-related/components/panel/panel.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/tag-list/tag-list.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/tag-list/tag-list.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/tags/components/tags-tree/hooks/use-create-tree-structure.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/tags/components/tags-tree/hooks/use-create-tree-structure.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/icon-text-button/icon-text-button.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/icon-text-button/icon-text-button.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/app/depency-injection/index.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/app/depency-injection/index.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/card/card.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/card/card.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/sidebar/filters/filter-provider.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/sidebar/filters/filter-provider.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/field-filters/components/dynamic-type-field-filter-datetime-component.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/field-filters/components/dynamic-type-field-filter-datetime-component.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/types/_schedule/dynamic-type-grid-cell-schedule-actions-select.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/types/_schedule/dynamic-type-grid-cell-schedule-actions-select.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/components/block/block.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/components/block/block.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/hooks/use-data-object-draft.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/hooks/use-data-object-draft.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/tab-manager/tab-manager.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/tab-manager/tab-manager.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/draft/hooks/use-tabs.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/draft/hooks/use-tabs.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/listing/dynamic-type-listing-abstract.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/listing/dynamic-type-listing-abstract.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/components/localized-fields/provider/localized-fields-provider/localized-fields-provider.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/components/localized-fields/provider/localized-fields-provider/localized-fields-provider.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/box/box.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/box/box.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/grid-container.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/grid-container.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/types/_dependencies/dynamic-type-grid-cell-dependency-type-icon.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/types/_dependencies/dynamic-type-grid-cell-dependency-type-icon.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/sort-button/sort-button.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/sort-button/sort-button.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/widget-manager/hooks/use-context-menu.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/widget-manager/hooks/use-context-menu.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/layout-related/types/dynamic-type-object-layout-accordion.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/layout-related/types/dynamic-type-object-layout-accordion.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/icon-button/icon-button.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/icon-button/icon-button.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/execution-engine/notification/job/job-view.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/execution-engine/notification/job/job-view.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/pimcore-audio/pimcore-audio.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/pimcore-audio/pimcore-audio.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/types/_schedule/dynamic-type-grid-cell-version-id-select.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/types/_schedule/dynamic-type-grid-cell-version-id-select.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/abstract/dynamic-type-object-data-abstract-date.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/abstract/dynamic-type-object-data-abstract-date.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/lib/event-bus/index.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/lib/event-bus/index.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/grid.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/grid.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/actions/lock/use-lock.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/actions/lock/use-lock.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/layout-related/types/dynamic-type-object-layout-tabpanel.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/layout-related/types/dynamic-type-object-layout-tabpanel.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/execution-engine/jobs/zip-upload/factory.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/execution-engine/jobs/zip-upload/factory.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/app/module-system/module-system.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/app/module-system/module-system.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/types/language-select/dynamic-type-grid-cell-language-select.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/types/language-select/dynamic-type-grid-cell-language-select.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/widget-manager/widget/widget-container.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/widget-manager/widget/widget-container.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/tab-manager/interface/IEditorTab.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/tab-manager/interface/IEditorTab.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/execution-engine/jobs/download/factory.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/execution-engine/jobs/download/factory.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/sidebar/sidebar.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/sidebar/sidebar.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/sidebar/grid-config/hooks/use-grid-config.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/sidebar/grid-config/hooks/use-grid-config.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/metadata-type-provider/metadata-types/checkbox.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/metadata-type-provider/metadata-types/checkbox.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/types/_properties/dynamic-type-grid-cell-property-value.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/types/_properties/dynamic-type-grid-cell-property-value.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/metadata-type-provider/metadata-types/textarea.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/metadata-type-provider/metadata-types/textarea.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-block.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-block.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/switch/switch.stories.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/switch/switch.stories.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/index.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/index.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/select/select-cell.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/select/select-cell.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/types/_properties/dynamic-type-grid-cell-property-icon.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/types/_properties/dynamic-type-grid-cell-property-icon.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/types/asset-actions/dynamic-type-grid-cell-asset-preview.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/types/asset-actions/dynamic-type-grid-cell-asset-preview.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/types/asset-preview/dynamic-type-grid-cell-asset-preview.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/types/asset-preview/dynamic-type-grid-cell-asset-preview.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/types/document-link/dynamic-type-grid-cell-document-link.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/types/document-link/dynamic-type-grid-cell-document-link.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/accordion-timeline/accordion-timeline.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/accordion-timeline/accordion-timeline.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/metadata-type-provider/metadata-types/select.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/metadata-type-provider/metadata-types/select.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/layout-related/components/accordion/accordion.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/layout-related/components/accordion/accordion.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/types/open-element/dynamic-type-grid-cell-open-element.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/types/open-element/dynamic-type-grid-cell-open-element.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/metadata-type-provider/metadata-types/input.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/metadata-type-provider/metadata-types/input.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/tabs/editor-tabs.icon-wrapper.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/tabs/editor-tabs.icon-wrapper.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/metadata-type-provider/metadata-types/date.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/metadata-type-provider/metadata-types/date.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/types/object-link/dynamic-type-grid-cell-object-link.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/types/object-link/dynamic-type-grid-cell-object-link.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/search-input/search-input.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/search-input/search-input.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/layout-related/types/dynamic-type-object-layout-fieldset.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/layout-related/types/dynamic-type-object-layout-fieldset.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/actions/copy-paste/use-copy-paste.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/actions/copy-paste/use-copy-paste.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/layout-related/types/dynamic-type-object-layout-region.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/layout-related/types/dynamic-type-object-layout-region.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/types/asset-link/dynamic-type-grid-cell-asset-link.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/types/asset-link/dynamic-type-grid-cell-asset-link.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/layout-related/components/region/region.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/layout-related/components/region/region.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/execution-engine/jobs/delete/factory.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/execution-engine/jobs/delete/factory.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/focal-point/components/draggable-item/draggable-item.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/focal-point/components/draggable-item/draggable-item.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/versions/versions-view.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/versions/versions-view.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/text-editor/text-editor.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/text-editor/text-editor.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/notification/content/action-list/action-list.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/notification/content/action-list/action-list.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/types/date-time/dynamic-type-grid-cell-date-time.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/types/date-time/dynamic-type-grid-cell-date-time.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/video/tab-manager/tabs/preview/preview-container.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/video/tab-manager/tabs/preview/preview-container.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/types/checkbox/dynamic-type-grid-cell-checkbox.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/types/checkbox/dynamic-type-grid-cell-checkbox.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/execution-engine/jobs/clone/factory.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/execution-engine/jobs/clone/factory.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/widget-manager/services/widget-registry.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/widget-manager/services/widget-registry.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/grid-context.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/grid-context.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/language-selection/language-selection.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/language-selection/language-selection.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/sidebar/filters/hooks/use-include-descendants-filter.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/sidebar/filters/hooks/use-include-descendants-filter.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/tag/tag.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/tag/tag.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/layout-related/types/dynamic-type-object-layout-panel.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/layout-related/types/dynamic-type-object-layout-panel.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/modal/alert-modal/alert-modal.stories.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/modal/alert-modal/alert-modal.stories.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/schedule/hooks/use-save-schedules.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/schedule/hooks/use-save-schedules.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/types/textarea/dynamic-type-grid-cell-text.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/types/textarea/dynamic-type-grid-cell-text.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/tree-element/tree-element-item.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/tree-element/tree-element-item.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/types/select/dynamic-type-grid-cell-select.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/types/select/dynamic-type-grid-cell-select.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tab-definitions.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tab-definitions.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/accordion/accordion.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/accordion/accordion.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/dropdown/selection/hooks/use-selection.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/dropdown/selection/hooks/use-selection.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/preview-card/preview-card.stories.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/preview-card/preview-card.stories.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/layout-related/types/dynamic-type-object-layout-text.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/layout-related/types/dynamic-type-object-layout-text.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/date-picker/date-range-picker.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/date-picker/date-range-picker.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/types/text/dynamic-type-grid-cell-text.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/types/text/dynamic-type-grid-cell-text.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/dropdown/item/types/default/default-item.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/dropdown/item/types/default/default-item.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/types/date/dynamic-type-grid-cell-date.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/types/date/dynamic-type-grid-cell-date.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/types/time/dynamic-type-grid-cell-time.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/types/time/dynamic-type-grid-cell-time.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/types/select/select-cell.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/types/select/select-cell.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/grid-cell/grid-cell.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/grid-cell/grid-cell.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/_versions/preview-field-label-cell/preview-field-label-cell.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/_versions/preview-field-label-cell/preview-field-label-cell.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/components/block/block-content.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/components/block/block-content.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/sidebar/filters/hooks/use-search-filter.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/sidebar/filters/hooks/use-search-filter.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/text/text.stories.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/text/text.stories.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/app/api/pimcore/tags.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/app/api/pimcore/tags.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/meta-data/dynamic-type-metadata-registry.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/meta-data/dynamic-type-metadata-registry.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/breadcrumb/breadcrumb.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/breadcrumb/breadcrumb.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/select/select.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/select/select.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/app/settings/settings-slice.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/app/settings/settings-slice.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/sidebar/grid-config/forms/save-form.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/sidebar/grid-config/forms/save-form.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/pql-query-input/pql-query-input.stories.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/pql-query-input/pql-query-input.stories.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/execution-engine/services/job-component-registry.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/execution-engine/services/job-component-registry.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/layout-related/components/field-container/field-container.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/layout-related/components/field-container/field-container.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/toolbar/toolbar.stories.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/toolbar/toolbar.stories.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/auth/user/user-slice.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/auth/user/user-slice.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/dropdown-button/dropdown-button.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/dropdown-button/dropdown-button.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/types/element-cell/element-cell.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/types/element-cell/element-cell.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/field-filters/components/dynamic-type-field-filter-number-component.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/field-filters/components/dynamic-type-field-filter-number-component.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/field-filters/components/dynamic-type-field-filter-select-component.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/field-filters/components/dynamic-type-field-filter-select-component.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/element-cell/element-cell.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/element-cell/element-cell.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/hooks/use-element-helper.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/hooks/use-element-helper.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/modal/alert-modal/hooks/use-alert-modal.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/modal/alert-modal/hooks/use-alert-modal.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/sidebar/sidebar-manager.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/sidebar/sidebar-manager.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/progressbar/progressbar.stories.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/progressbar/progressbar.stories.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/toolbar/grid-toolbar-container.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/toolbar/grid-toolbar-container.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/data-object-provider.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/data-object-provider.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/execution-engine/jobs/delete/notification-job-container.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/execution-engine/jobs/delete/notification-job-container.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/dropdown/selection/selection-provider.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/dropdown/selection/selection-provider.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/layout-related/components/text/text.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/layout-related/components/text/text.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/space/space.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/space/space.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/video/tab-manager/tabs/preview/sidebar/tabs/details/details.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/video/tab-manager/tabs/preview/sidebar/tabs/details/details.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/field-filters/components/dynamic-type-field-filter-text-component.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/field-filters/components/dynamic-type-field-filter-text-component.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/asset-preview/asset-preview-cell.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/asset-preview/asset-preview-cell.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/execution-engine/jobs/default/factory.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/execution-engine/jobs/default/factory.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/execution-engine/jobs/clone/notification-job-container.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/execution-engine/jobs/clone/notification-job-container.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/icon/icon.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/icon/icon.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/stack-list/stack-list.stories.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/stack-list/stack-list.stories.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/widget-manager/title/tab-title-view.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/widget-manager/title/tab-title-view.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/utils/hooks/use-css-container/use-css-container.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/utils/hooks/use-css-container/use-css-container.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/progressbar/progressbar.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/progressbar/progressbar.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/slider/slider.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/slider/slider.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-language-multiselect.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-language-multiselect.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/text-editor/detect-language.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/text-editor/detect-language.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-country-multiselect.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-country-multiselect.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/breadcrumb/breadcrumb.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/breadcrumb/breadcrumb.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/date-picker/date-picker.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/date-picker/date-picker.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/tags/components/tags-tree/tags-tree-container.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/tags/components/tags-tree/tags-tree-container.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/drag-and-drop/draggable.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/drag-and-drop/draggable.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/widget-manager/context-menu/context-menu.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/widget-manager/context-menu/context-menu.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/toolbar/tools/batch-edit-modal/default-batch-edit.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/toolbar/tools/batch-edit-modal/default-batch-edit.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/sidebar/filters/field-filters/field-filters-list-container.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/sidebar/filters/field-filters/field-filters-list-container.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/components/external-image/external-image.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/components/external-image/external-image.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/sidebar/tag-filters/tag-filters-provider.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/sidebar/tag-filters/tag-filters-provider.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/editor/types/object/tab-manager/tabs/edit/components/layout-component.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/editor/types/object/tab-manager/tabs/edit/components/layout-component.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/toolbar/tools/csv-modal/create-csv-form/create-csv-form.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/toolbar/tools/csv-modal/create-csv-form/create-csv-form.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/detached-tab/detached-tab-content.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/detached-tab/detached-tab-content.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/app/public-api/index.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/app/public-api/index.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/drag-and-drop/callback-registry.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/drag-and-drop/callback-registry.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/flex/flex.stories.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/flex/flex.stories.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/toolbar/workflow-menu/workflow-transition-group.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/toolbar/workflow-menu/workflow-transition-group.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/types/filterTypes.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/types/filterTypes.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/dropdown/dropdown-inner.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/dropdown/dropdown-inner.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/components/consent/consent.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/components/consent/consent.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-multiselect.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-multiselect.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/document/tab-manager/document-tab-manager.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/document/tab-manager/document-tab-manager.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/editor/types/object/tab-manager/tabs/edit/components/data-component.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/editor/types/object/tab-manager/tabs/edit/components/data-component.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/layout-related/dynamic-type-object-layout-registry.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/layout-related/dynamic-type-object-layout-registry.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/notes-and-events/form/add-note-form.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/notes-and-events/form/add-note-form.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/flex/flex.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/flex/flex.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/archive/tab-manager/archive-tab-manager.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/archive/tab-manager/archive-tab-manager.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/unknown/tab-manager/unknown-tab-manager.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/unknown/tab-manager/unknown-tab-manager.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/resizer/resizer.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/resizer/resizer.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/split-layout/components/item/split-layout-item.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/split-layout/components/item/split-layout-item.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/image/tab-manager/tabs/preview/sidebar/tabs/details/hooks/use-details-view-data.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/image/tab-manager/tabs/preview/sidebar/tabs/details/hooks/use-details-view-data.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/keyboard-navigation/use-keyboard-navigation.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/keyboard-navigation/use-keyboard-navigation.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/toolbar/workflow-log-modal/workflow-provider.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/toolbar/workflow-log-modal/workflow-provider.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/editor/types/folder/tab-manager/folder-tab-manager.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/editor/types/folder/tab-manager/folder-tab-manager.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/editor/types/object/tab-manager/object-tab-manager.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/editor/types/object/tab-manager/object-tab-manager.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/execution-engine/jobs/zip-upload/notification-job-container.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/execution-engine/jobs/zip-upload/notification-job-container.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/stack-list/stack-list.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/stack-list/stack-list.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/video/tab-manager/tabs/preview/sidebar/tabs/details/details-view.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/video/tab-manager/tabs/preview/sidebar/tabs/details/details-view.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/audio/tab-manager/audio-tab-manager.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/audio/tab-manager/audio-tab-manager.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/image/tab-manager/image-tab-manager.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/image/tab-manager/image-tab-manager.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/video/tab-manager/video-tab-manager.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/video/tab-manager/video-tab-manager.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/hooks/use-data-object-helper.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/hooks/use-data-object-helper.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/resolver/hooks/use-dynamic-type-resolver.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/resolver/hooks/use-dynamic-type-resolver.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/content-toolbar-sidebar-layout/content-toolbar-sidebar-layout.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/content-toolbar-sidebar-layout/content-toolbar-sidebar-layout.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/image-zoom/image-zoom.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/image-zoom/image-zoom.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/region/region.stories.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/region/region.stories.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/toolbar/tools/batch-edit-modal/hooks/use-batch-edit.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/toolbar/tools/batch-edit-modal/hooks/use-batch-edit.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/asset-provider.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/asset-provider.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/text/tab-manager/text-tab-manager.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/text/tab-manager/text-tab-manager.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/execution-engine/jobs/download/notification-job-container.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/execution-engine/jobs/download/notification-job-container.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/switch/switch.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/switch/switch.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/app/theme/utils/themes/default-theme.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/app/theme/utils/themes/default-theme.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/editor/types/object/tab-manager/tabs/edit/components/object-component.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/editor/types/object/tab-manager/tabs/edit/components/object-component.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/tree/context-menu/context-menu.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/tree/context-menu/context-menu.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/drag-and-drop/droppable-context-provider.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/drag-and-drop/droppable-context-provider.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/image/tab-manager/tabs/preview/preview-view.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/image/tab-manager/tabs/preview/preview-view.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/focal-point/focal-point.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/focal-point/focal-point.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/dynamic-type-object-data-registry.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/dynamic-type-object-data-registry.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/workflow-card/workflow-card.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/workflow-card/workflow-card.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/element-helper.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/element-helper.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/pagination/size-changer/size-changer.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/pagination/size-changer/size-changer.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/editor/types/object/tab-manager/tabs/edit/components/root-component.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/editor/types/object/tab-manager/tabs/edit/components/root-component.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/accordion-timeline/accordion-timeline.stories.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/accordion-timeline/accordion-timeline.stories.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/default-cell.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/default-cell.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/image/tab-manager/tabs/preview/sidebar/buttons/focal-point.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/image/tab-manager/tabs/preview/sidebar/buttons/focal-point.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/search-input/search-input.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/search-input/search-input.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/tree/hooks/use-node-api-hook.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/tree/hooks/use-node-api-hook.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-numeric.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-numeric.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-language.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-language.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/segmented/segmented.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/segmented/segmented.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-firstname.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-firstname.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/dropdown/item/types/group/group-item.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/dropdown/item/types/group/group-item.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/split-layout/components/divider/divider.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/split-layout/components/divider/divider.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-country.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-country.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-lastname.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-lastname.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-gender.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-gender.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-select.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-select.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/dropdown/item/types/sub-menu/sub-menu-item.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/dropdown/item/types/sub-menu/sub-menu-item.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/tree/hooks/use-node-api-hook.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/tree/hooks/use-node-api-hook.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/execution-engine/hooks/useJobs.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/execution-engine/hooks/useJobs.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/modal/modal-title/modal-title.stories.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/modal/modal-title/modal-title.stories.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/modal/footer/modal-footer.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/modal/footer/modal-footer.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-user.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-user.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-email.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-email.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/icon-library/services/icon-library.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/icon-library/services/icon-library.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/sidebar/grid-config/views/save-view.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/sidebar/grid-config/views/save-view.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/widget-manager/hooks/use-widget-manager.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/widget-manager/hooks/use-widget-manager.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/element-tree/expander/tree-expander.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/element-tree/expander/tree-expander.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/toolbar/tools/batch-edit-modal/batch-edit-provider.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/toolbar/tools/batch-edit-modal/batch-edit-provider.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/image/tab-manager/tabs/preview/sidebar/tabs/details/details-view.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/image/tab-manager/tabs/preview/sidebar/tabs/details/details-view.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/edit-mode/use-edit-mode.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/edit-mode/use-edit-mode.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/listing/dynamic-type-listing-registry.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/listing/dynamic-type-listing-registry.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/split/split.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/split/split.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/widget-manager/title/tab-title-outer-container.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/widget-manager/title/tab-title-outer-container.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/toolbar/toolbar.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/toolbar/toolbar.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/shared-tab-manager/tabs/versions/comparison-view/comparison-view-ui.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/shared-tab-manager/tabs/versions/comparison-view/comparison-view-ui.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/sidebar/grid-config/grid-config-list.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/sidebar/grid-config/grid-config-list.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/widget-manager/widget-manager-container.stories.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/widget-manager/widget-manager-container.stories.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/properties/components/table/table.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/properties/components/table/table.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/tree/search/search-container.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/tree/search/search-container.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/element-tree/node/content/tree-node-content.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/element-tree/node/content/tree-node-content.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/text/tab-manager/tabs/edit/edit-view.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/text/tab-manager/tabs/edit/edit-view.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/preview/flex-container.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/preview/flex-container.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/toolbar/tools/batch-edit-modal/batch-edit-modal.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/toolbar/tools/batch-edit-modal/batch-edit-modal.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/widget-manager/title/border-title-view.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/widget-manager/title/border-title-view.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/hooks/use-asset-helper.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/hooks/use-asset-helper.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/sanitize-html/sanitize-html.stories.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/sanitize-html/sanitize-html.stories.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/login-form/login-form.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/login-form/login-form.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/widget-manager/utils/widget-registry.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/widget-manager/utils/widget-registry.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/date-picker/date-range-picker.stories.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/date-picker/date-range-picker.stories.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/element-tree/node/tree-node.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/element-tree/node/tree-node.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/image/tab-manager/tabs/preview/sidebar/tabs/details/details.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/image/tab-manager/tabs/preview/sidebar/tabs/details/details.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/sidebar/filters/field-filters/filter-types/default-filter.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/sidebar/filters/field-filters/filter-types/default-filter.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/image/tab-manager/tabs/preview/preview-container.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/image/tab-manager/tabs/preview/preview-container.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-slider.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-slider.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/split-layout/components/divider/divider.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/split-layout/components/divider/divider.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/pagination/size-changer/size-changer.stories.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/pagination/size-changer/size-changer.stories.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/sidebar/tag-filters/hooks/use-tag-filters.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/sidebar/tag-filters/hooks/use-tag-filters.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/paragraph/paragraph.stories.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/paragraph/paragraph.stories.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/shared-tab-manager/tabs/custom-metadata/components/table/table.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/shared-tab-manager/tabs/custom-metadata/components/table/table.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/shared-tab-manager/tabs/versions/single-view/single-view.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/shared-tab-manager/tabs/versions/single-view/single-view.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/editor/shared-tab-manager/tabs/versions/single-view/single-view.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/editor/shared-tab-manager/tabs/versions/single-view/single-view.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/sidebar/sidebar-container.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/sidebar/sidebar-container.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/form-item-wrapper/form-item-wrapper.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/form-item-wrapper/form-item-wrapper.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/layout-related/views/accordion-view.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/layout-related/views/accordion-view.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/language-selection/language-selection.stories.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/language-selection/language-selection.stories.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/utils/relative-time.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/utils/relative-time.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/button-group/button-group.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/button-group/button-group.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/drag-and-drop/collision-detection/boundingRectIntersection.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/drag-and-drop/collision-detection/boundingRectIntersection.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/sidebar/filters/filter-container.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/sidebar/filters/filter-container.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/drag-and-drop/__STORIES__/dnd-demo-droppable-content.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/drag-and-drop/__STORIES__/dnd-demo-droppable-content.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/widget-manager/widget-manager-view.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/widget-manager/widget-manager-view.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/components/external-image/footer.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/components/external-image/footer.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/element-toolbar/element-toolbar.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/element-toolbar/element-toolbar.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/types/checkbox/checkbox-cell.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/types/checkbox/checkbox-cell.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/app/translations/translations-api-slice.gen.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/app/translations/translations-api-slice.gen.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/checkbox/checkbox-cell.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/checkbox/checkbox-cell.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/button/button.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/button/button.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/types/checkbox/checkbox-cell.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/types/checkbox/checkbox-cell.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/region/components/region-item/region-item.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/region/components/region-item/region-item.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/services/component-registry.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/services/component-registry.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/checkbox/checkbox-cell.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/checkbox/checkbox-cell.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/tabs/editor-tabs.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/tabs/editor-tabs.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/widget-manager/title/tab-title-container.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/widget-manager/title/tab-title-container.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/slider/slider.stories.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/slider/slider.stories.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/title/title.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/title/title.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/element-api-slice-enhanced.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/element-api-slice-enhanced.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/date-picker/time-picker.stories.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/date-picker/time-picker.stories.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/accordion/accordion.stories.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/accordion/accordion.stories.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/shared-tab-manager/tabs/versions/comparison-view/comparison-view.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/shared-tab-manager/tabs/versions/comparison-view/comparison-view.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/editor/shared-tab-manager/tabs/versions/comparison-view/comparison-view.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/editor/shared-tab-manager/tabs/versions/comparison-view/comparison-view.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/sidebar/tag-filters/tags-tree-filters-container.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/sidebar/tag-filters/tags-tree-filters-container.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/pimcore-video/pimcore-video.stories.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/pimcore-video/pimcore-video.stories.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/toolbar/grid-toolbar-view.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/toolbar/grid-toolbar-view.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/layouts/tabs-toolbar-view.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/layouts/tabs-toolbar-view.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/drag-and-drop/context-provider.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/drag-and-drop/context-provider.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/types/element-cell/element-cell.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/types/element-cell/element-cell.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/element-cell/element-cell.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/element-cell/element-cell.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/tags/components/assigned-tags/assigned-tags.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/tags/components/assigned-tags/assigned-tags.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/image-target/image-target.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/image-target/image-target.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/numeric-range/numeric-range.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/numeric-range/numeric-range.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/region/region.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/region/region.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/search-input/search-input.stories.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/search-input/search-input.stories.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/constants/filters.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/constants/filters.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/layout-related/views/base-view.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/layout-related/views/base-view.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/utils/hooks/use-css-container/use-css-container.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/utils/hooks/use-css-container/use-css-container.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/shared-tab-manager/tab-definitions.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/shared-tab-manager/tab-definitions.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/icon/icon.stories.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/icon/icon.stories.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/image-zoom/image-zoom.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/image-zoom/image-zoom.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/pagination/inline-textfield/inline-textfield.stories.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/pagination/inline-textfield/inline-textfield.stories.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/app/plugin-system/plugin-system.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/app/plugin-system/plugin-system.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/preview/flex-container-view.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/preview/flex-container-view.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-input.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-input.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/accordion/accordion.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/accordion/accordion.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs-container.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs-container.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/editor-container.stories.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/editor-container.stories.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/paragraph/paragraph.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/paragraph/paragraph.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/types/element-cell/element-cell-content.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/types/element-cell/element-cell-content.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/spin/spin.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/spin/spin.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/element-cell/element-cell-content.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/element-cell/element-cell-content.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/meta-data/types/dynamic-type-meta-data-asset.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/meta-data/types/dynamic-type-meta-data-asset.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/resolver/dynamic-type-resolver.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/resolver/dynamic-type-resolver.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/tags/components/tags-tree/tags-tree.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/tags/components/tags-tree/tags-tree.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/utils/polling-helper.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/utils/polling-helper.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/tabs/tabs.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/tabs/tabs.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/editor/toolbar/language-selection/provider/use-language-selection.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/editor/toolbar/language-selection/provider/use-language-selection.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/date/date-cell.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/date/date-cell.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/drag-and-drop/droppable.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/drag-and-drop/droppable.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/sanitize-html/sanitize-html.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/sanitize-html/sanitize-html.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/types/text/text-cell.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/types/text/text-cell.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/text/text-cell.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/text/text-cell.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/components/localized-fields/provider/localized-fields-provider/use-localized-fields.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/components/localized-fields/provider/localized-fields-provider/use-localized-fields.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/modal/useModal/index.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/modal/useModal/index.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/tree-element/tree-element.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/tree-element/tree-element.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/horizontal-scroll/horizontal-scroll.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/horizontal-scroll/horizontal-scroll.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/upload/upload.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/upload/upload.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/date-picker/date-picker.stories.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/date-picker/date-picker.stories.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/drag-and-drop/hooks/use-droppable.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/drag-and-drop/hooks/use-droppable.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/tree/node/with-draggable.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/tree/node/with-draggable.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/tree/node/with-draggable.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/tree/node/with-draggable.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/focal-point/context/focal-point-context.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/focal-point/context/focal-point-context.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/sidebar/filters/hooks/use-pql-query-filter.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/sidebar/filters/hooks/use-pql-query-filter.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-rgba-color.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-rgba-color.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/utils/type-utils.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/utils/type-utils.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/drag-and-drop/drag-overlay.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/drag-and-drop/drag-overlay.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/vertical-timeline/vertical-timeline.stories.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/vertical-timeline/vertical-timeline.stories.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/video/tab-manager/tabs/preview/sidebar/tabs/details/droppable-content.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/video/tab-manager/tabs/preview/sidebar/tabs/details/droppable-content.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/editor/types/object/tab-manager/tabs/edit/edit-container.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/editor/types/object/tab-manager/tabs/edit/edit-container.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/utils/helpers.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/utils/helpers.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/modal/modal.stories.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/modal/modal.stories.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/no-content/no-content.stories.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/no-content/no-content.stories.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/flex/flex.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/flex/flex.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/metadata-type-provider/services/metadata-type-registry.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/metadata-type-provider/services/metadata-type-registry.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/tags/hooks/use-shortcut-actions.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/tags/hooks/use-shortcut-actions.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/image-target/image-target.stories.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/image-target/image-target.stories.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/pimcore-image/pimcore-image.stories.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/pimcore-image/pimcore-image.stories.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/hooks/use-element-context.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/hooks/use-element-context.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/permissions/permission-helper.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/permissions/permission-helper.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/dropdown/item/utils/dropdown-item.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/dropdown/item/utils/dropdown-item.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/modal/modal-title/modal-title.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/modal/modal-title/modal-title.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/region/components/region-item/region-item.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/region/components/region-item/region-item.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/widget-manager/widget-manager-inner-container.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/widget-manager/widget-manager-inner-container.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/flex/utils/mapGapToTokenValue.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/flex/utils/mapGapToTokenValue.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/title/title-container.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/title/title-container.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/editor/title/title-container.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/editor/title/title-container.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/tabs/hooks/use-detach-tab.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/tabs/hooks/use-detach-tab.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/compact/compact.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/compact/compact.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/element-tree/list/tree-list.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/element-tree/list/tree-list.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/drag-and-drop/hooks/use-sortable-context.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/drag-and-drop/hooks/use-sortable-context.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/element-tree/list/tree-list.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/element-tree/list/tree-list.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/form-item-wrapper/form-item-wrapper.stories.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/form-item-wrapper/form-item-wrapper.stories.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/views/image/image-view.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/views/image/image-view.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/tree/search/search-container.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/tree/search/search-container.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/tree/search/search-container.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/tree/search/search-container.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/focal-point/components/draggable-item/draggable-item.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/focal-point/components/draggable-item/draggable-item.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/types/date/date-cell.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/types/date/date-cell.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/modal/modal.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/modal/modal.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-external-image.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-external-image.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/pimcore-document/pimcore-document.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/pimcore-document/pimcore-document.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/helpers/gridHelpers.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/helpers/gridHelpers.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/pimcore-video/pimcore-video.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/pimcore-video/pimcore-video.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/toolbar/workflow-menu/workflow-transition-group.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/toolbar/workflow-menu/workflow-transition-group.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/pimcore-audio/pimcore-audio.stories.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/pimcore-audio/pimcore-audio.stories.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/text-editor/text-editor.stories.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/text-editor/text-editor.stories.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/tree/pager/pager-container.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/tree/pager/pager-container.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/space/space.stories.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/space/space.stories.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/open-element/open-element-cell.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/open-element/open-element-cell.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/meta-data/types/dynamic-type-meta-data-document.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/meta-data/types/dynamic-type-meta-data-document.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/horizontal-scroll/horizontal-scroll.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/horizontal-scroll/horizontal-scroll.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/vertical-timeline/vertical-timeline.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/vertical-timeline/vertical-timeline.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/pimcore-image/pimcore-image.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/pimcore-image/pimcore-image.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/utils/currency.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/utils/currency.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/text/text.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/text/text.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/tree/context-menu/context-menu.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/tree/context-menu/context-menu.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/meta-data/types/dynamic-type-meta-data-object.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/meta-data/types/dynamic-type-meta-data-object.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/meta-data/types/dynamic-type-meta-data-select.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/meta-data/types/dynamic-type-meta-data-select.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/layout-related/views/card-view.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/layout-related/views/card-view.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/element-toolbar/element-toolbar.stories.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/element-toolbar/element-toolbar.stories.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/meta-data/types/dynamic-type-meta-data-date.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/meta-data/types/dynamic-type-meta-data-date.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-boolean-select.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-boolean-select.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/widget-manager/widget/title/title-view.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/widget-manager/widget/title/title-view.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/header/header.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/header/header.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/auth/login-page.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/auth/login-page.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/meta-data/types/dynamic-type-meta-data-checkbox.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/meta-data/types/dynamic-type-meta-data-checkbox.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-numeric-range.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-numeric-range.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/breadcrumb/breadcrumb.stories.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/breadcrumb/breadcrumb.stories.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/message/message.stories.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/message/message.stories.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/region/region.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/region/region.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/utils/number.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/utils/number.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/pql-query-input/pql-query-input.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/pql-query-input/pql-query-input.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/lib/dependency-injection/index.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/lib/dependency-injection/index.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/_meta-data/value-select/value-select-cell.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/_meta-data/value-select/value-select-cell.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/_properties/value-select/value-select-cell.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/_properties/value-select/value-select-cell.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/asset-actions/asset-actions.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/asset-actions/asset-actions.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/formatted-date-time/formatted-date-time.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/formatted-date-time/formatted-date-time.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/grid-cell/grid-row.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/grid-cell/grid-row.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/editor/types/object/tab-manager/tabs/edit/providers/form-list-provider/use-form-list.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/editor/types/object/tab-manager/tabs/edit/providers/form-list-provider/use-form-list.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/dropdown/dropdown.stories.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/dropdown/dropdown.stories.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/tree/tree-container.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/tree/tree-container.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/tree/tree-container.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/tree/tree-container.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/_schedule/version-id-cell/version-id-cell.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/_schedule/version-id-cell/version-id-cell.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/editor-container.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/editor-container.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/editor/editor-container.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/editor/editor-container.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/spin/spin.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/spin/spin.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/_dependencies/type-icon-cell.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/_dependencies/type-icon-cell.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/_meta-data/type-icon-cell/type-icon-cell.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/_meta-data/type-icon-cell/type-icon-cell.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/_properties/type-icon-cell/type-icon-cell.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/_properties/type-icon-cell/type-icon-cell.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/types/language-select/language-cell.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/types/language-select/language-cell.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/types/textarea/textarea-cell.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/types/textarea/textarea-cell.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/sidebar/grid-config/views/edit-view.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/sidebar/grid-config/views/edit-view.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/language-select/language-cell.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/language-select/language-cell.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/textarea/textarea-cell.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/textarea/textarea-cell.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/app/global-provider.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/app/global-provider.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/app/theme/theme-provider.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/app/theme/theme-provider.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/_schedule/actions-cell/actions-cell.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/_schedule/actions-cell/actions-cell.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/video/tab-manager/tabs/preview/preview-view.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/video/tab-manager/tabs/preview/preview-view.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-datetime.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-datetime.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/execution-engine/jobs/abstact-job.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/execution-engine/jobs/abstact-job.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/formatted-date-time/formatted-date-time.stories.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/formatted-date-time/formatted-date-time.stories.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/breadcrumb/hooks/use-breadcrumb-size.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/breadcrumb/hooks/use-breadcrumb-size.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/image/tab-manager/tabs/preview/sidebar/index.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/image/tab-manager/tabs/preview/sidebar/index.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/video/tab-manager/tabs/preview/sidebar/index.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/video/tab-manager/tabs/preview/sidebar/index.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/execution-engine/notification/job/job.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/execution-engine/notification/job/job.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/sidebar/grid-config/grid-config-provider.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/sidebar/grid-config/grid-config-provider.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/toolbar/tools/csv-modal/csv-modal.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/toolbar/tools/csv-modal/csv-modal.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/auth/permission-helper.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/auth/permission-helper.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/_meta-data/value-cell/value-cell.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/_meta-data/value-cell/value-cell.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/_properties/value-cell/value-cell.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/_properties/value-cell/value-cell.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/schedule/components/table/table.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/schedule/components/table/table.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/tag/tag.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/tag/tag.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/title/title.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/title/title.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/detached-tab/detached-tab.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/detached-tab/detached-tab.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/verify-cell-update.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/verify-cell-update.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/app/config/app-config.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/app/config/app-config.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/content-toolbar-sidebar-layout/content-toolbar-sidebar-layout.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/content-toolbar-sidebar-layout/content-toolbar-sidebar-layout.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/formatted-date/formatted-date.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/formatted-date/formatted-date.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/actions/delete/use-delete.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/actions/delete/use-delete.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/time/time-cell.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/time/time-cell.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/dropdown-button/dropdown-button.stories.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/dropdown-button/dropdown-button.stories.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/formatted-date/formatted-date.stories.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/formatted-date/formatted-date.stories.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/formatted-time/formatted-time.stories.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/formatted-time/formatted-time.stories.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/services/type-registry.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/services/type-registry.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/execution-engine/jobs/default/notification-job-container.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/execution-engine/jobs/default/notification-job-container.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/pagination/pagination.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/pagination/pagination.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-date.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-date.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/tab-manager/interface/IEditorTabManager.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/tab-manager/interface/IEditorTabManager.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/utils/hooks/use-click-outside.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/utils/hooks/use-click-outside.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/content/content.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/content/content.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/numeric-range/number-range.stories.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/numeric-range/number-range.stories.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/pimcore-document/pimcore-document.stories.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/pimcore-document/pimcore-document.stories.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/segmented/segmented.stories.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/segmented/segmented.stories.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/widget-manager/utils/widget-manager-factory.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/widget-manager/utils/widget-manager-factory.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/alert/alert.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/alert/alert.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/dropdown/selection/selection-button.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/dropdown/selection/selection-button.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/helpers.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/helpers.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/toolbar/tools/mercure-api-slice.gen.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/toolbar/tools/mercure-api-slice.gen.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/formatted-time/formatted-time.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/formatted-time/formatted-time.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/tree/tree-container.stories.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/tree/tree-container.stories.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/tree/tree-container.stories.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/tree/tree-container.stories.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/title/title.stories.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/title/title.stories.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/notes-and-events/modal/add-note-modal.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/notes-and-events/modal/add-note-modal.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/dropdown/item/types/custom/custom-item.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/dropdown/item/types/custom/custom-item.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/types/open-element/open-element-cell.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/types/open-element/open-element-cell.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/detached-tab/detached-tab.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/detached-tab/detached-tab.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/notes-and-events/notes-and-events-view.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/notes-and-events/notes-and-events-view.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/tab-manager/interface/IEditorTab.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/tab-manager/interface/IEditorTab.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/utils/query-string.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/utils/query-string.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/use-grid.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/use-grid.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/views/icon/icon-view.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/views/icon/icon-view.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/audio/tab-manager/tabs/preview/preview-view.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/audio/tab-manager/tabs/preview/preview-view.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/document/tab-manager/tabs/preview/preview-view.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/document/tab-manager/tabs/preview/preview-view.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/image/tab-manager/tabs/preview/preview-view.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/image/tab-manager/tabs/preview/preview-view.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/app/app-loader.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/app/app-loader.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/app/settings/hooks/use-settings.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/app/settings/hooks/use-settings.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/folder-tab-manager.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/folder-tab-manager.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/tags/utils/flattn-tags-array.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/tags/utils/flattn-tags-array.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/editor/types/object/tab-manager/tabs/edit/providers/form-list-provider/form-list-provider.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/editor/types/object/tab-manager/tabs/edit/providers/form-list-provider/form-list-provider.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/components/external-image/external-image.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/components/external-image/external-image.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/pagination/inline-textfield/inline-textfield.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/pagination/inline-textfield/inline-textfield.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/pimcore-document/pimcore-document.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/pimcore-document/pimcore-document.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/meta-data/types/dynamic-type-meta-data-textarea.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/meta-data/types/dynamic-type-meta-data-textarea.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/dropdown/item/types/divider/divider-item.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/dropdown/item/types/divider/divider-item.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/language-selection/langguage-selection.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/language-selection/langguage-selection.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/drag-and-drop/__STORIES__/dnd-demo-droppable-content.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/drag-and-drop/__STORIES__/dnd-demo-droppable-content.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/split-layout/components/item/split-layout-item.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/split-layout/components/item/split-layout-item.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/dropdown/selection/selection-button.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/dropdown/selection/selection-button.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/element-toolbar/element-toolbar.skeleton.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/element-toolbar/element-toolbar.skeleton.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/image-target/image-target.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/image-target/image-target.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/message/useMessage/index.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/message/useMessage/index.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/notification/content/action-list/action-list.style.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/notification/content/action-list/action-list.style.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/field-filters/dynamic-type-field-filter-abstract.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/field-filters/dynamic-type-field-filter-abstract.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/types/time/time-cell.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/types/time/time-cell.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/no-content/no-content.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/no-content/no-content.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/app/base-layout/right-sidebar-view.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/app/base-layout/right-sidebar-view.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/text/tab-manager/tabs/edit/edit-container.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/text/tab-manager/tabs/edit/edit-container.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-textarea.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-textarea.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/layouts/tabs-toolbar-view.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/layouts/tabs-toolbar-view.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/tab-manager/interface/types/IElementEditorTab.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/tab-manager/interface/types/IElementEditorTab.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/modal/file-list/file-list.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/modal/file-list/file-list.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/shared-tab-manager/tabs/versions/comparison-view/comparison-view-ui.style.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/shared-tab-manager/tabs/versions/comparison-view/comparison-view-ui.style.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/stack-list/stack-list-item.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/stack-list/stack-list-item.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/upload/upload-list/upload-list.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/upload/upload-list/upload-list.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/app/base-layout/left-sidebar-view.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/app/base-layout/left-sidebar-view.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/layout-related/dynamic-type-object-layout-abstract.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/layout-related/dynamic-type-object-layout-abstract.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/upload/hook/use-file-uploader.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/upload/hook/use-file-uploader.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/button-group/button-group.stories.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/button-group/button-group.stories.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/types/textarea/textarea-cell.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/types/textarea/textarea-cell.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/image/tab-manager/tabs/preview/sidebar/sidebar-manager.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/image/tab-manager/tabs/preview/sidebar/sidebar-manager.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/video/tab-manager/tabs/preview/sidebar/sidebar-manager.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/video/tab-manager/tabs/preview/sidebar/sidebar-manager.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/actions/rename/use-rename.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/actions/rename/use-rename.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/textarea/textarea-cell.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/textarea/textarea-cell.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/meta-data/types/dynamic-type-meta-data-input.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/meta-data/types/dynamic-type-meta-data-input.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/tabs/editor-tabs.skeleton.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/tabs/editor-tabs.skeleton.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/hooks/use-element-api.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/hooks/use-element-api.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/breadcrumb/breadcrumb.skeleton.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/breadcrumb/breadcrumb.skeleton.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/app/base-layout/base-layout-view.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/app/base-layout/base-layout-view.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/tags/hooks/use-optimistic-update.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/tags/hooks/use-optimistic-update.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/default-cell.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/default-cell.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/workflow-card/workflow-card.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/workflow-card/workflow-card.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/abstract/dynamic-type-object-data-abstract-input.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/abstract/dynamic-type-object-data-abstract-input.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/dropdown/item/types/default/default-item.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/dropdown/item/types/default/default-item.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/types/select/select-cell.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/types/select/select-cell.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/vertical-timeline/vertical-timeline.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/vertical-timeline/vertical-timeline.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/select/select-cell.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/select/select-cell.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/registry/provider/dynamic-type-registry-provider.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/registry/provider/dynamic-type-registry-provider.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/utils/date-time.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/utils/date-time.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/button-group/button-group.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/button-group/button-group.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/split-layout/split-layout.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/split-layout/split-layout.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/workflow-card/workflow-card.stories.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/workflow-card/workflow-card.stories.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/toolbar/workflow-log-modal/hooks/use-submit-workflow.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/toolbar/workflow-log-modal/hooks/use-submit-workflow.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/drag-and-drop/drag-overlay.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/drag-and-drop/drag-overlay.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/notification/notification.style.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/notification/notification.style.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/utils/hooks/use-element-resize.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/utils/hooks/use-element-resize.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/accordion-timeline/accordion-timeline.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/accordion-timeline/accordion-timeline.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/badge/badge.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/badge/badge.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/element-toolbar/element-toolbar.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/element-toolbar/element-toolbar.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/upload/upload-list/upload-list.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/upload/upload-list/upload-list.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/actions/add-folder/use-add-folder.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/actions/add-folder/use-add-folder.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/_schedule/version-id-cell/version-id-cell.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/_schedule/version-id-cell/version-id-cell.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/widget-manager/widget/title/title-view.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/widget-manager/widget/title/title-view.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/card/card.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/card/card.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/types/open-element/open-element-cell.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/types/open-element/open-element-cell.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/views/icon/icon-view.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/views/icon/icon-view.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/image-zoom/image-zoom.stories.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/image-zoom/image-zoom.stories.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/login-form/login-form.stories.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/login-form/login-form.stories.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/progressbar/progressbar.style.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/progressbar/progressbar.style.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/video/tab-manager/tabs/preview/preview-container.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/video/tab-manager/tabs/preview/preview-container.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/open-element/open-element-cell.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/open-element/open-element-cell.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/versions/versions-view.style.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/versions/versions-view.style.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/background/background.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/background/background.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/dropdown/item/types/group/group-item.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/dropdown/item/types/group/group-item.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/types/date/date-cell.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/types/date/date-cell.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/types/text/text-cell.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/types/text/text-cell.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/types/time/time-cell.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/types/time/time-cell.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/pagination/pagination.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/pagination/pagination.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/stack-list/stack-list.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/stack-list/stack-list.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/date/date-cell.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/date/date-cell.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/text/text-cell.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/text/text-cell.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/time/time-cell.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/time/time-cell.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/execution-engine/notification/job/job-view.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/execution-engine/notification/job/job-view.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/widget-manager/title/tab-title-view.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/widget-manager/title/tab-title-view.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/pagination/size-changer/size-changer.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/pagination/size-changer/size-changer.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/segmented/segmented.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/segmented/segmented.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/main.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/main.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/audio/tab-manager/tabs/preview/preview-view.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/audio/tab-manager/tabs/preview/preview-view.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/document/tab-manager/tabs/preview/preview-view.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/document/tab-manager/tabs/preview/preview-view.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/video/tab-manager/tabs/preview/preview-view.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/video/tab-manager/tabs/preview/preview-view.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/drag-and-drop/droppable.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/drag-and-drop/droppable.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/element-tree/node/tree-node.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/element-tree/node/tree-node.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/icon-button/icon-button.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/icon-button/icon-button.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/modal/file-list/file-list.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/modal/file-list/file-list.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/modal/footer/modal-footer.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/modal/footer/modal-footer.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/pimcore-image/pimcore-image.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/pimcore-image/pimcore-image.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/sort-button/sort-button.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/sort-button/sort-button.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/editor/shared-tab-manager/tab-definitions.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/editor/shared-tab-manager/tab-definitions.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/components/consent/consent.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/components/consent/consent.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/widget-manager/widget/widget-view.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/widget-manager/widget/widget-view.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/utils/hooks/use-server-side-event.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/utils/hooks/use-server-side-event.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/__stories__/icon-library/icon-library-overview.stories.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/__stories__/icon-library/icon-library-overview.stories.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/element-tree/element-tree.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/element-tree/element-tree.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/focal-point/provider/focal-point-provider.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/focal-point/provider/focal-point-provider.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/no-content/no-content.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/no-content/no-content.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/text-editor/text-editor.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/text-editor/text-editor.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/dropdown/dropdown.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/dropdown/dropdown.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/views/image/image-view.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/views/image/image-view.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/preview-card/preview-card.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/preview-card/preview-card.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/shared-tab-manager/tabs/versions/single-view/single-view-ui.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/shared-tab-manager/tabs/versions/single-view/single-view-ui.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/text/tab-manager/tabs/edit/edit-view.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/text/tab-manager/tabs/edit/edit-view.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/dependencies/components/pagination/skeleton.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/dependencies/components/pagination/skeleton.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/execution-engine/notification/job-list/job-list.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/execution-engine/notification/job-list/job-list.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/content/content.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/content/content.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/dropdown/selection/hooks/use-selection.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/dropdown/selection/hooks/use-selection.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/resizer/resizer.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/resizer/resizer.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/toolbar/toolbar.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/toolbar/toolbar.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/notification/useNotification/index.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/notification/useNotification/index.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/sidebar/sidebar.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/sidebar/sidebar.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/utils/files.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/utils/files.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/button/button.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/button/button.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/header/header.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/header/header.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/login-form/login-form-style.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/login-form/login-form-style.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/message/message.style.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/message/message.style.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/upload/upload.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/upload/upload.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/tags/components/tags-tree/tags-tree.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/tags/components/tags-tree/tags-tree.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/card/card.stories.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/card/card.stories.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/tag/tag.stories.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/tag/tag.stories.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/_versions/preview-field-label-cell/preview-field-label-cell.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/_versions/preview-field-label-cell/preview-field-label-cell.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/alert/alert.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/alert/alert.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/space/space.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/space/space.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/split/split.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/split/split.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/sidebar/filters/hooks/use-search-filter.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/sidebar/filters/hooks/use-search-filter.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/properties/components/table/table.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/properties/components/table/table.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/schedule/components/table/table.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/schedule/components/table/table.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/modal/modal.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/modal/modal.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/card/card.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/card/card.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/drag-and-drop/drag-and-drop.stories.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/drag-and-drop/drag-and-drop.stories.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/grid.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/grid.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/logo/logo.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/logo/logo.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/tabs/tabs.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/tabs/tabs.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/dependencies/components/table/table.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/dependencies/components/table/table.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/box/box.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/box/box.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/focal-point/focal-point.stories.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/focal-point/focal-point.stories.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/sort-button/sort-button.stories.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/sort-button/sort-button.stories.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/app/api/pimcore/route.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/app/api/pimcore/route.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/background/background.stories.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/background/background.stories.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/stack-list/stack-list-item.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/stack-list/stack-list-item.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/constants/systemTypes.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/constants/systemTypes.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/metadata-type-provider/index.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/metadata-type-provider/index.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-password.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-password.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/registry/dynamic-type-registry-abstract.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/registry/dynamic-type-registry-abstract.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/editor/widget.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/editor/widget.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/hooks/use-data-object.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/hooks/use-data-object.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-consent.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-consent.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/upload/upload-provider.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/upload/upload-provider.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/dynamic-type-grid-cell-abstract.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/dynamic-type-grid-cell-abstract.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/components/localized-fields/provider/localized-fields-provider/localized-fields-provider.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/components/localized-fields/provider/localized-fields-provider/localized-fields-provider.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/execution-engine/index.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/execution-engine/index.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/form/form.stories.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/form/form.stories.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/app/router/router.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/app/router/router.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/widget.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/widget.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/editor/types/object/tab-manager/tabs/edit/components/object-component.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/editor/types/object/tab-manager/tabs/edit/components/object-component.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-localized-fields.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-localized-fields.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/pql-query-input/pql-query-input.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/pql-query-input/pql-query-input.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/pimcore-audio/pimcore-audio.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/pimcore-audio/pimcore-audio.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/app/config/date-time.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/app/config/date-time.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/notification/content/action-list/action-list.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/notification/content/action-list/action-list.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/widget-manager/utils/widget-manager-inner-model.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/widget-manager/utils/widget-manager-inner-model.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/widget-manager/utils/widget-manager-outer-model.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/widget-manager/utils/widget-manager-outer-model.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/widget-manager/widget-manager-view.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/widget-manager/widget-manager-view.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/select/select-cell.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/select/select-cell.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/preview-card/preview-card.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/preview-card/preview-card.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/sidebar/grid-config/hooks/use-grid-config.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/sidebar/grid-config/hooks/use-grid-config.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/toolbar/grid-toolbar-container.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/toolbar/grid-toolbar-container.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/hooks/use-global-data-object-context.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/hooks/use-global-data-object-context.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/layout-related/components/tabpanel/tabpanel.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/layout-related/components/tabpanel/tabpanel.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/date-picker/time-picker.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/date-picker/time-picker.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/shared-tab-manager/tabs/embedded-metadata/embedded-metadata-container.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/shared-tab-manager/tabs/embedded-metadata/embedded-metadata-container.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/audio/tab-manager/tabs/preview/preview-container.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/audio/tab-manager/tabs/preview/preview-container.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/document/tab-manager/tabs/preview/preview-container.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/document/tab-manager/tabs/preview/preview-container.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/preview/preview-container.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/preview/preview-container.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/execution-engine/jobs/zip-upload/factory.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/execution-engine/jobs/zip-upload/factory.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/execution-engine/notification/job/job-view.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/execution-engine/notification/job/job-view.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/drag-and-drop/draggable.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/drag-and-drop/draggable.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/image/tab-manager/tabs/preview/sidebar/tabs/details/details-container.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/image/tab-manager/tabs/preview/sidebar/tabs/details/details-container.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/video/tab-manager/tabs/preview/sidebar/tabs/details/details-container.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/video/tab-manager/tabs/preview/sidebar/tabs/details/details-container.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/auth/hooks/use-user.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/auth/hooks/use-user.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/notes-and-events/notes-and-events-container.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/notes-and-events/notes-and-events-container.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/execution-engine/jobs/download/factory.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/execution-engine/jobs/download/factory.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/shared-tab-manager/tabs/custom-metadata/custom-metadata-container.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/shared-tab-manager/tabs/custom-metadata/custom-metadata-container.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/sidebar/tag-filters/tag-filters-container-inner.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/sidebar/tag-filters/tag-filters-container-inner.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/abstract/dynamic-type-object-data-abstract-multiselect.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/abstract/dynamic-type-object-data-abstract-multiselect.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/layout-related/components/panel/panel.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/layout-related/components/panel/panel.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/styles/global.styles.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/styles/global.styles.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/execution-engine/jobs/delete/factory.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/execution-engine/jobs/delete/factory.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/utils/css.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/utils/css.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/editor/index.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/editor/index.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/versions/versions-container.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/versions/versions-container.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/execution-engine/jobs/clone/factory.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/execution-engine/jobs/clone/factory.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/toolbar/tools/batch-edit-modal/batch-edit-list-container.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/toolbar/tools/batch-edit-modal/batch-edit-list-container.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/element-toolbar/element-toolbar.skeleton.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/element-toolbar/element-toolbar.skeleton.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/list-container.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/list-container.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/text/tab-manager/tabs/edit/edit-container.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/text/tab-manager/tabs/edit/edit-container.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/dependencies/dependencies-container.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/dependencies/dependencies-container.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/widget-manager/widget-manager-container.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/widget-manager/widget-manager-container.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/sidebar/filters/field-filters/field-filters-container.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/sidebar/filters/field-filters/field-filters-container.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/sidebar/filters/filter-provider.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/sidebar/filters/filter-provider.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/layout-related/types/dynamic-type-object-layout-field-container.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/layout-related/types/dynamic-type-object-layout-field-container.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/index.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/index.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/sidebar/filters/filter-container-inner.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/sidebar/filters/filter-container-inner.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/dependencies/components/pagination/pagination.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/dependencies/components/pagination/pagination.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/tags/components/tags-tree/hooks/use-create-tree-structure.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/tags/components/tags-tree/hooks/use-create-tree-structure.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/__stories__/icon-library/icon-library-overview.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/__stories__/icon-library/icon-library-overview.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/date-picker/utils/date-picker-utils.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/date-picker/utils/date-picker-utils.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/sidebar/tag-filters/tag-filters-container.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/sidebar/tag-filters/tag-filters-container.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/hooks/use-global-asset-context.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/hooks/use-global-asset-context.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/types/_versions/dynamic-type-grid-cell-asset-version-preview-field-label.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/types/_versions/dynamic-type-grid-cell-asset-version-preview-field-label.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/asset-api-slice-enhanced.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/asset-api-slice-enhanced.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/hooks/use-asset.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/hooks/use-asset.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/properties/properties-container.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/properties/properties-container.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/toolbar/workflow-menu/workflow-menu.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/toolbar/workflow-menu/workflow-menu.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/list-container-inner.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/list-container-inner.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/schedule/schedule-container.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/schedule/schedule-container.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/workflow/workflow-container.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/workflow/workflow-container.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/tabs/editor-tabs.skeleton.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/tabs/editor-tabs.skeleton.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/breadcrumb/breadcrumb.skeleton.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/breadcrumb/breadcrumb.skeleton.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/editor/types/object/tab-manager/tabs/edit/components/layout-component.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/editor/types/object/tab-manager/tabs/edit/components/layout-component.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/background/background.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/background/background.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/toolbar/context-menu/context-menu.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/toolbar/context-menu/context-menu.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/editor/toolbar/context-menu/context-menu.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/editor/toolbar/context-menu/context-menu.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/layout-related/components/text/text.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/layout-related/components/text/text.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/tab-manager/interface/IElementEditorTabManager.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/tab-manager/interface/IElementEditorTabManager.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/toolbar/tools/csv-modal/create-csv-form/create-csv-form.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/toolbar/tools/csv-modal/create-csv-form/create-csv-form.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/editor/toolbar/language-selection/language-selection.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/editor/toolbar/language-selection/language-selection.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/editor/types/object/tab-manager/tabs/edit/components/data-component.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/editor/types/object/tab-manager/tabs/edit/components/data-component.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/app/base-layout/right-sidebar-view.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/app/base-layout/right-sidebar-view.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/toolbar/workflow-log-modal/workflow-log-modal.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/toolbar/workflow-log-modal/workflow-log-modal.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/field-filters/dynamic-type-field-filter-registry.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/field-filters/dynamic-type-field-filter-registry.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-date-range.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-date-range.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/app/base-layout/left-sidebar-view.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/app/base-layout/left-sidebar-view.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/sidebar/grid-config/grid-config-inner.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/sidebar/grid-config/grid-config-inner.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/asset-preview/asset-preview-cell.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/asset-preview/asset-preview-cell.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/dependencies/components/required-by-panel/required-by-panel.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/dependencies/components/required-by-panel/required-by-panel.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/__stories__/spacing/spacing-overview.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/__stories__/spacing/spacing-overview.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/focal-point/components/draggable-item/draggable-item.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/focal-point/components/draggable-item/draggable-item.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/image/tab-manager/tabs/preview/sidebar/tabs/details/hooks/use-details-view-data.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/image/tab-manager/tabs/preview/sidebar/tabs/details/hooks/use-details-view-data.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/editor/toolbar/language-selection/provider/language-selection-provider.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/editor/toolbar/language-selection/provider/language-selection-provider.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/app/base-layout/base-layout-view.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/app/base-layout/base-layout-view.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/image/tab-manager/tabs/edit/edit-container.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/image/tab-manager/tabs/edit/edit-container.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/tags/tags-container.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/tags/tags-container.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/execution-engine/topics.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/execution-engine/topics.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/toolbar/tools/grid-selections.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/toolbar/tools/grid-selections.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/types/_meta-data/dynamic-type-grid-cell-asset-custom-metadata-value.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/types/_meta-data/dynamic-type-grid-cell-asset-custom-metadata-value.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/layout-related/components/accordion/accordion.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/layout-related/components/accordion/accordion.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/detached-tab/missing-context.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/detached-tab/missing-context.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/types/_meta-data/dynamic-type-grid-cell-asset-custom-metadata-icon.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/types/_meta-data/dynamic-type-grid-cell-asset-custom-metadata-icon.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/components/block/block-content.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/components/block/block-content.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/dependencies/components/requires-panel/requires-panel.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/dependencies/components/requires-panel/requires-panel.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/widget-manager/widget/widget-container.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/widget-manager/widget/widget-container.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/dynamic-type-grid-cell-registry.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/dynamic-type-grid-cell-registry.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/dependencies/components/pagination/skeleton.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/dependencies/components/pagination/skeleton.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/widget-manager/widget/widget-view.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/widget-manager/widget/widget-view.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/field-filters/types/datetime/dynamic-type-field-filter-datetime.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/field-filters/types/datetime/dynamic-type-field-filter-datetime.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/icon-text-button/icon-text-button.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/icon-text-button/icon-text-button.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/slider/slider.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/slider/slider.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/tree-element/tree-element-item.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/tree-element/tree-element-item.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/ant-design/hooks/use-css-component-hash.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/ant-design/hooks/use-css-component-hash.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/components/localized-fields/localized-fields.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/components/localized-fields/localized-fields.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/execution-engine/notification/notification.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/execution-engine/notification/notification.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/app/default-page.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/app/default-page.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/toolbar/tools/grid-actions.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/toolbar/tools/grid-actions.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/layout-related/types/dynamic-type-object-layout-accordion.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/layout-related/types/dynamic-type-object-layout-accordion.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/versions/version-details-props.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/versions/version-details-props.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/sidebar/filters/hooks/use-include-descendants-filter.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/sidebar/filters/hooks/use-include-descendants-filter.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/sidebar/grid-config/grid-config.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/sidebar/grid-config/grid-config.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-time.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-time.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/layout-related/types/dynamic-type-object-layout-fieldset.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/layout-related/types/dynamic-type-object-layout-fieldset.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/layout-related/types/dynamic-type-object-layout-tabpanel.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/layout-related/types/dynamic-type-object-layout-tabpanel.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/types/select/select-cell.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/types/select/select-cell.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/index.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/index.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/element-cell/element-cell.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/element-cell/element-cell.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/types/_schedule/dynamic-type-grid-cell-schedule-actions-select.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/types/_schedule/dynamic-type-grid-cell-schedule-actions-select.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/toolbar/tools/grid-tools.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/toolbar/tools/grid-tools.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/auth/login-page.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/auth/login-page.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/field-filters/types/number/dynamic-type-field-filter-number.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/field-filters/types/number/dynamic-type-field-filter-number.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/field-filters/types/select/dynamic-type-field-filter-select.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/field-filters/types/select/dynamic-type-field-filter-select.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/types/_dependencies/dynamic-type-grid-cell-dependency-type-icon.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/types/_dependencies/dynamic-type-grid-cell-dependency-type-icon.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/layout-related/types/dynamic-type-object-layout-region.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/layout-related/types/dynamic-type-object-layout-region.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/utils/data-unit.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/utils/data-unit.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/toolbar/toolbar.stories.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/toolbar/toolbar.stories.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/app/app-view.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/app/app-view.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/layout-related/types/dynamic-type-object-layout-panel.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/layout-related/types/dynamic-type-object-layout-panel.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/execution-engine/notification/job-list/job-list.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/execution-engine/notification/job-list/job-list.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/select/select.stories.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/select/select.stories.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/tag-list/tag-list.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/tag-list/tag-list.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/toolbar/toolbar.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/toolbar/toolbar.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/editor/toolbar/toolbar.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/editor/toolbar/toolbar.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/toolbar/workflow-log-modal/hooks/use-workflow.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/toolbar/workflow-log-modal/hooks/use-workflow.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/field-filters/types/text/dynamic-type-field-filter-text.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/field-filters/types/text/dynamic-type-field-filter-text.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/layout-related/types/dynamic-type-object-layout-text.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/layout-related/types/dynamic-type-object-layout-text.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/icon-button/icon-button.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/icon-button/icon-button.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/sort-button/sort-button.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/sort-button/sort-button.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/split-layout/split-layout.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/split-layout/split-layout.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/types/language-select/dynamic-type-grid-cell-language-select.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/types/language-select/dynamic-type-grid-cell-language-select.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-block.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-block.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/alert/alert.stories.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/alert/alert.stories.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/actions/refresh-tree/use-refresh-tree.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/actions/refresh-tree/use-refresh-tree.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/widget-manager/hooks/use-is-active-main-widget.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/widget-manager/hooks/use-is-active-main-widget.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/utils/hooks/use-pagination.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/utils/hooks/use-pagination.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/app/module-system/module-system.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/app/module-system/module-system.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/logo/logo.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/logo/logo.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/types/_schedule/dynamic-type-grid-cell-version-id-select.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/types/_schedule/dynamic-type-grid-cell-version-id-select.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/types/_properties/dynamic-type-grid-cell-property-value.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/types/_properties/dynamic-type-grid-cell-property-value.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/types/asset-actions/dynamic-type-grid-cell-asset-preview.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/types/asset-actions/dynamic-type-grid-cell-asset-preview.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/types/asset-preview/dynamic-type-grid-cell-asset-preview.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/types/asset-preview/dynamic-type-grid-cell-asset-preview.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/types/document-link/dynamic-type-grid-cell-document-link.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/types/document-link/dynamic-type-grid-cell-document-link.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/grid.stories.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/grid.stories.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/utils/hooks/use-previous.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/utils/hooks/use-previous.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/types/element-type.d.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/types/element-type.d.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/types/_properties/dynamic-type-grid-cell-property-icon.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/types/_properties/dynamic-type-grid-cell-property-icon.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/dependencies/components/table/table.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/dependencies/components/table/table.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/tabs/editor-tabs.icon-wrapper.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/tabs/editor-tabs.icon-wrapper.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/auth/hooks/use-is-authenticated.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/auth/hooks/use-is-authenticated.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/types/open-element/dynamic-type-grid-cell-open-element.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/types/open-element/dynamic-type-grid-cell-open-element.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/dropdown/item/types/default/default-item.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/dropdown/item/types/default/default-item.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/pagination/inline-textfield/inline-textfield.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/pagination/inline-textfield/inline-textfield.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/execution-engine/jobs/default/factory.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/execution-engine/jobs/default/factory.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/test-utils/test-utils.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/test-utils/test-utils.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/types/object-link/dynamic-type-grid-cell-object-link.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/types/object-link/dynamic-type-grid-cell-object-link.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/metadata-type-provider/metadata-types/data-object.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/metadata-type-provider/metadata-types/data-object.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/split-layout/split-layout.stories.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/split-layout/split-layout.stories.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/tabs/editor-tabs.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/tabs/editor-tabs.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/types/asset-link/dynamic-type-grid-cell-asset-link.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/types/asset-link/dynamic-type-grid-cell-asset-link.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/components/external-image/footer.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/components/external-image/footer.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/resizer/resizer.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/resizer/resizer.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/tag/tag.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/tag/tag.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/metadata-type-provider/metadata-types/document.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/metadata-type-provider/metadata-types/document.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/grid-cell/grid-cell.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/grid-cell/grid-cell.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/types/date-time/dynamic-type-grid-cell-date-time.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/types/date-time/dynamic-type-grid-cell-date-time.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/layout-related/components/field-container/field-container.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/layout-related/components/field-container/field-container.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/edit-mode/editable-cell-context.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/edit-mode/editable-cell-context.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/schedule/hooks/use-save-schedules.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/schedule/hooks/use-save-schedules.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/layout-related/views/base-view.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/layout-related/views/base-view.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/auth/hooks/use-middleware.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/auth/hooks/use-middleware.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/types/checkbox/dynamic-type-grid-cell-checkbox.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/types/checkbox/dynamic-type-grid-cell-checkbox.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/modal/info-modal.stories.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/modal/info-modal.stories.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/image/tab-manager/tabs/preview/preview-container.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/image/tab-manager/tabs/preview/preview-container.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/execution-engine/jobs/factory-helper.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/execution-engine/jobs/factory-helper.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/metadata-type-provider/metadata-types/asset.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/metadata-type-provider/metadata-types/asset.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/components/block/block.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/components/block/block.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/sidebar/grid-config/views/save-view.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/sidebar/grid-config/views/save-view.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/sidebar/tag-filters/tag-filters-provider.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/sidebar/tag-filters/tag-filters-provider.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/types/select/dynamic-type-grid-cell-select.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/types/select/dynamic-type-grid-cell-select.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/execution-engine/services/job-component-registry.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/execution-engine/services/job-component-registry.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/sidebar/sidebar.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/sidebar/sidebar.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/execution-engine/hooks/useJobs.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/execution-engine/hooks/useJobs.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/app/i18n/index.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/app/i18n/index.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/types/textarea/dynamic-type-grid-cell-text.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/types/textarea/dynamic-type-grid-cell-text.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/types/element-cell/element-cell.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/types/element-cell/element-cell.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/tab-manager/tab-manager.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/tab-manager/tab-manager.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/app/utils/app-runner.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/app/utils/app-runner.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/types/date/dynamic-type-grid-cell-date.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/types/date/dynamic-type-grid-cell-date.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/types/text/dynamic-type-grid-cell-text.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/types/text/dynamic-type-grid-cell-text.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/types/time/dynamic-type-grid-cell-time.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/types/time/dynamic-type-grid-cell-time.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/hooks/use-element-helper.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/hooks/use-element-helper.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/layout-related/views/accordion-view.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/layout-related/views/accordion-view.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/region/region.stories.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/region/region.stories.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/sidebar/filters/field-filters/field-filters-list-container.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/sidebar/filters/field-filters/field-filters-list-container.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/index.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/index.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/compact/compact.stories.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/compact/compact.stories.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/content-toolbar-sidebar-layout/content-toolbar-sidebar-layout.stories.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/content-toolbar-sidebar-layout/content-toolbar-sidebar-layout.stories.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/utils/uuid.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/utils/uuid.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/execution-engine/jobs/zip-upload/notification-job-container.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/execution-engine/jobs/zip-upload/notification-job-container.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/execution-engine/jobs/download/notification-job-container.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/execution-engine/jobs/download/notification-job-container.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/accordion-timeline/accordion-timeline.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/accordion-timeline/accordion-timeline.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/detached-tab/detached-tab-content.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/detached-tab/detached-tab-content.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/notes-and-events/form/add-note-form.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/notes-and-events/form/add-note-form.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/execution-engine/jobs/delete/notification-job-container.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/execution-engine/jobs/delete/notification-job-container.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/execution-engine/jobs/clone/notification-job-container.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/execution-engine/jobs/clone/notification-job-container.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/drag-and-drop/draggable.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/drag-and-drop/draggable.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/tree-element/tree-element.stories.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/tree-element/tree-element.stories.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/icon/icon.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/icon/icon.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/toolbar/grid-toolbar-view.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/toolbar/grid-toolbar-view.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/language-selection/language-selection.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/language-selection/language-selection.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/search-input/search-input.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/search-input/search-input.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/space/space.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/space/space.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/field-filters/components/dynamic-type-field-filter-datetime-component.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/field-filters/components/dynamic-type-field-filter-datetime-component.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/test-utils/jest-setup.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/test-utils/jest-setup.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/image/tab-manager/tabs/preview/sidebar/buttons/focal-point.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/image/tab-manager/tabs/preview/sidebar/buttons/focal-point.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/tags/components/tags-tree/tags-tree-container.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/tags/components/tags-tree/tags-tree-container.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/dropdown-button/dropdown-button.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/dropdown-button/dropdown-button.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/dropdown/dropdown-inner.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/dropdown/dropdown-inner.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/element-tree/expander/tree-expander.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/element-tree/expander/tree-expander.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/sidebar/filters/field-filters/filter-types/default-filter.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/sidebar/filters/field-filters/filter-types/default-filter.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/shared-tab-manager/tabs/versions/comparison-view/comparison-view-ui.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/shared-tab-manager/tabs/versions/comparison-view/comparison-view-ui.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/toolbar/tools/batch-edit-modal/batch-edit-modal.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/toolbar/tools/batch-edit-modal/batch-edit-modal.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/text/tab-manager/tabs/edit/edit-view.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/text/tab-manager/tabs/edit/edit-view.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tab-definitions.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tab-definitions.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/sidebar/tag-filters/hooks/use-tag-filters.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/sidebar/tag-filters/hooks/use-tag-filters.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/field-filters/components/dynamic-type-field-filter-number-component.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/field-filters/components/dynamic-type-field-filter-number-component.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/field-filters/components/dynamic-type-field-filter-select-component.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/field-filters/components/dynamic-type-field-filter-select-component.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/preview/flex-container-view.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/preview/flex-container-view.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/toolbar/tools/batch-edit-modal/default-batch-edit.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/toolbar/tools/batch-edit-modal/default-batch-edit.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/widget-manager/title/tab-title-view.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/widget-manager/title/tab-title-view.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/split-layout/components/item/split-layout-item.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/split-layout/components/item/split-layout-item.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/field-filters/components/dynamic-type-field-filter-text-component.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/field-filters/components/dynamic-type-field-filter-text-component.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/grid-context.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/grid-context.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/sanitize-html/sanitize-html.stories.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/sanitize-html/sanitize-html.stories.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/text-editor/text-editor.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/text-editor/text-editor.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/components/localized-fields/provider/localized-fields-provider/use-localized-fields.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/components/localized-fields/provider/localized-fields-provider/use-localized-fields.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/app/config/services/index.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/app/config/services/index.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/box/box.stories.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/box/box.stories.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/index.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/index.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/archive/index.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/archive/index.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/audio/index.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/audio/index.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/document/index.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/document/index.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/index.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/index.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/image/index.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/image/index.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/text/index.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/text/index.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/unknown/index.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/unknown/index.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/video/index.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/video/index.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/metadata-type-provider/metadata-types/checkbox.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/metadata-type-provider/metadata-types/checkbox.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/metadata-type-provider/metadata-types/textarea.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/metadata-type-provider/metadata-types/textarea.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/tree/index.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/tree/index.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/editor/types/folder/index.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/editor/types/folder/index.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/editor/types/object/index.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/editor/types/object/index.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/tree/index.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/tree/index.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/index.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/index.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/index.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/index.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/icon-library/index.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/icon-library/index.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/content-toolbar-sidebar-layout/content-toolbar-sidebar-layout.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/content-toolbar-sidebar-layout/content-toolbar-sidebar-layout.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/drag-and-drop/collision-detection/boundingRectIntersection.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/drag-and-drop/collision-detection/boundingRectIntersection.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/stack-list/stack-list.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/stack-list/stack-list.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/sidebar/grid-config/forms/save-form.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/sidebar/grid-config/forms/save-form.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/data-object-provider.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/data-object-provider.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/breadcrumb/breadcrumb.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/breadcrumb/breadcrumb.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/hooks/use-global-element-context.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/hooks/use-global-element-context.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/metadata-type-provider/metadata-types/select.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/metadata-type-provider/metadata-types/select.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/content/content.stories.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/content/content.stories.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/metadata-type-provider/metadata-types/input.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/metadata-type-provider/metadata-types/input.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/layout-related/components/region/region.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/layout-related/components/region/region.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/widget-manager/utils/widget-registry.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/widget-manager/utils/widget-registry.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/sidebar/grid-config/grid-config-list.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/sidebar/grid-config/grid-config-list.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/checkbox/checkbox-cell.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/checkbox/checkbox-cell.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/pagination/size-changer/size-changer.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/pagination/size-changer/size-changer.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/metadata-type-provider/metadata-types/date.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/metadata-type-provider/metadata-types/date.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/date-picker/date-range-picker.stories.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/date-picker/date-range-picker.stories.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/icon-text-button/icon-text-button.stories.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/icon-text-button/icon-text-button.stories.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/select/select.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/select/select.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/horizontal-scroll/horizontal-scroll.stories.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/horizontal-scroll/horizontal-scroll.stories.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/preview/flex-container.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/preview/flex-container.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/utils/hooks/use-css-container/use-css-container.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/utils/hooks/use-css-container/use-css-container.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/meta-data/dynamic-type-metadata-registry.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/meta-data/dynamic-type-metadata-registry.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/region/components/region-item/region-item.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/region/components/region-item/region-item.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/sidebar/filters/filter-container.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/sidebar/filters/filter-container.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/dropdown/item/types/sub-menu/sub-menu-item.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/dropdown/item/types/sub-menu/sub-menu-item.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/split/split.stories.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/split/split.stories.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/layout-related/views/card-view.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/layout-related/views/card-view.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/dropdown/item/types/group/group-item.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/dropdown/item/types/group/group-item.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/modal/footer/modal-footer.stories.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/modal/footer/modal-footer.stories.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/sidebar/sidebar-container.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/sidebar/sidebar-container.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/text-editor/detect-language.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/text-editor/detect-language.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/toolbar/toolbar.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/toolbar/toolbar.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/date-picker/time-picker.stories.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/date-picker/time-picker.stories.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/toolbar/tools/csv-modal/csv-modal.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/toolbar/tools/csv-modal/csv-modal.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/date-picker/date-picker.stories.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/date-picker/date-picker.stories.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/tag-list/tag-list.stories.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/tag-list/tag-list.stories.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/bootstrap.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/bootstrap.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/split-layout/components/divider/divider.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/split-layout/components/divider/divider.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/editor/types/object/tab-manager/tabs/edit/components/root-component.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/editor/types/object/tab-manager/tabs/edit/components/root-component.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/execution-engine/execution-engine-slice.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/execution-engine/execution-engine-slice.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/app/public-api/index.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/app/public-api/index.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/keyboard-navigation/use-keyboard-navigation.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/keyboard-navigation/use-keyboard-navigation.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/icon-button/icon-button.stories.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/icon-button/icon-button.stories.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/asset-provider.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/asset-provider.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/flex/flex.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/flex/flex.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/properties/components/table/table.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/properties/components/table/table.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/tree/search/search-container.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/tree/search/search-container.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/progressbar/progressbar.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/progressbar/progressbar.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/split/split.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/split/split.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/default-cell.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/default-cell.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/versions/version-api-slice-enhanced.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/versions/version-api-slice-enhanced.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/button/button.stories.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/button/button.stories.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/layout-related/dynamic-type-object-layout-registry.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/layout-related/dynamic-type-object-layout-registry.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/switch/switch.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/switch/switch.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/tabs/tabs.stories.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/tabs/tabs.stories.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/data-object-api-slice-enhanced.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/data-object-api-slice-enhanced.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/form/form.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/form/form.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/edit-mode/use-edit-mode.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/edit-mode/use-edit-mode.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/video/tab-manager/tabs/preview/preview-view.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/video/tab-manager/tabs/preview/preview-view.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/tree/context-menu/context-menu.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/tree/context-menu/context-menu.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/notes-and-events/notes-and-events-api-slice-enhanced.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/notes-and-events/notes-and-events-api-slice-enhanced.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/date/date-cell.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/date/date-cell.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/widget-manager/title/tab-title-container.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/widget-manager/title/tab-title-container.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/login-form/login-form.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/login-form/login-form.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/widget-manager/title/tab-title-outer-container.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/widget-manager/title/tab-title-outer-container.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/dynamic-type-object-data-registry.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/dynamic-type-object-data-registry.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/layouts/tabs-toolbar-view.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/layouts/tabs-toolbar-view.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/toolbar/workflow-menu/workflow-transition-group.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/toolbar/workflow-menu/workflow-transition-group.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/hooks/use-data-object-helper.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/hooks/use-data-object-helper.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/modal/form-modal/form-modal.stories.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/modal/form-modal/form-modal.stories.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/modal/footer/modal-footer.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/modal/footer/modal-footer.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/shared-tab-manager/tabs/custom-metadata/components/table/table.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/shared-tab-manager/tabs/custom-metadata/components/table/table.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-language-multiselect.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-language-multiselect.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/switch/switch.stories.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/switch/switch.stories.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/types/checkbox/checkbox-cell.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/types/checkbox/checkbox-cell.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-country-multiselect.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-country-multiselect.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/utils/relative-time.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/utils/relative-time.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/button-group/button-group.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/button-group/button-group.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/image-zoom/image-zoom.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/image-zoom/image-zoom.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/pql-query-input/pql-query-input.stories.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/pql-query-input/pql-query-input.stories.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/flex/utils/mapGapToTokenValue.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/flex/utils/mapGapToTokenValue.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/modal/alert-modal/alert-modal.stories.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/modal/alert-modal/alert-modal.stories.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/form-item-wrapper/form-item-wrapper.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/form-item-wrapper/form-item-wrapper.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/views/image/image-view.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/views/image/image-view.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/_properties/value-select/value-select-cell.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/_properties/value-select/value-select-cell.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/widget-manager/widget/title/title-view.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/widget-manager/widget/title/title-view.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/sidebar/sidebar.stories.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/sidebar/sidebar.stories.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/_meta-data/value-select/value-select-cell.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/_meta-data/value-select/value-select-cell.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/text/text-cell.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/text/text-cell.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/constants/filters.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/constants/filters.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/sidebar/tag-filters/tags-tree-filters-container.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/sidebar/tag-filters/tags-tree-filters-container.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/editor/types/object/tab-manager/tabs/edit/providers/form-list-provider/use-form-list.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/editor/types/object/tab-manager/tabs/edit/providers/form-list-provider/use-form-list.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/_schedule/version-id-cell/version-id-cell.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/_schedule/version-id-cell/version-id-cell.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/widget-manager/title/border-title-view.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/widget-manager/title/border-title-view.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/accordion-timeline/accordion-timeline.stories.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/accordion-timeline/accordion-timeline.stories.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/form-item-wrapper/form-item-wrapper.stories.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/form-item-wrapper/form-item-wrapper.stories.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/image-target/image-target.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/image-target/image-target.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/notification/notification.stories.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/notification/notification.stories.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/_properties/type-icon-cell/type-icon-cell.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/_properties/type-icon-cell/type-icon-cell.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/_meta-data/type-icon-cell/type-icon-cell.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/_meta-data/type-icon-cell/type-icon-cell.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/element-tree/node/content/tree-node-content.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/element-tree/node/content/tree-node-content.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/focal-point/focal-point.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/focal-point/focal-point.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/tags/components/assigned-tags/assigned-tags.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/tags/components/assigned-tags/assigned-tags.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/segmented/segmented.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/segmented/segmented.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/tags/hooks/use-shortcut-actions.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/tags/hooks/use-shortcut-actions.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-multiselect.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-multiselect.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/app/global-context/global-context-slice.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/app/global-context/global-context-slice.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/hooks/use-asset-helper.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/hooks/use-asset-helper.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/_schedule/actions-cell/actions-cell.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/_schedule/actions-cell/actions-cell.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/listing/dynamic-type-listing-registry.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/listing/dynamic-type-listing-registry.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/document/tab-manager/tabs/preview/preview-view.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/document/tab-manager/tabs/preview/preview-view.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/editor/types/object/tab-manager/tabs/edit/edit-container.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/editor/types/object/tab-manager/tabs/edit/edit-container.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/utils/polling-helper.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/utils/polling-helper.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/modal/modal.stories.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/modal/modal.stories.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/image/tab-manager/tabs/preview/preview-view.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/image/tab-manager/tabs/preview/preview-view.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/open-element/open-element-cell.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/open-element/open-element-cell.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-firstname.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-firstname.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/tabs/hooks/use-detach-tab.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/tabs/hooks/use-detach-tab.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/sanitize-html/sanitize-html.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/sanitize-html/sanitize-html.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/audio/tab-manager/tabs/preview/preview-view.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/audio/tab-manager/tabs/preview/preview-view.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/_properties/value-cell/value-cell.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/_properties/value-cell/value-cell.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/video/tab-manager/tabs/preview/sidebar/tabs/details/droppable-content.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/video/tab-manager/tabs/preview/sidebar/tabs/details/droppable-content.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/_meta-data/value-cell/value-cell.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/_meta-data/value-cell/value-cell.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-language.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-language.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-lastname.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-lastname.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/asset-actions/asset-actions.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/asset-actions/asset-actions.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-country.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-country.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-numeric.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-numeric.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/schedule/schedule-api-slice-enhanced.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/schedule/schedule-api-slice-enhanced.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/tabs/editor-tabs.stories.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/tabs/editor-tabs.stories.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/editor/shared-tab-manager/tabs/versions/comparison-view/comparison-view.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/editor/shared-tab-manager/tabs/versions/comparison-view/comparison-view.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/_dependencies/type-icon-cell.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/_dependencies/type-icon-cell.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/language-select/language-cell.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/language-select/language-cell.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-gender.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-gender.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-select.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-select.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/header/header.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/header/header.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/title/title.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/title/title.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-email.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-email.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/shared-tab-manager/tabs/versions/comparison-view/comparison-view.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/shared-tab-manager/tabs/versions/comparison-view/comparison-view.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-user.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/objects/data-related/types/dynamic-type-object-data-user.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/textarea/textarea-cell.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/textarea/textarea-cell.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/element-helper.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/element-helper.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/utils/helpers.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/utils/helpers.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/drag-and-drop/droppable-context-provider.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/drag-and-drop/droppable-context-provider.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/dropdown/item/utils/dropdown-item.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/dropdown/item/utils/dropdown-item.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/region/region.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/region/region.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/element-cell/element-cell-content.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/element-cell/element-cell-content.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/types/date/date-cell.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/types/date/date-cell.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/preview-card/preview-card.stories.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/preview-card/preview-card.stories.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/auth/user/user-slice.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/auth/user/user-slice.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/editor/toolbar/language-selection/provider/use-language-selection.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/editor/toolbar/language-selection/provider/use-language-selection.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/horizontal-scroll/horizontal-scroll.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/horizontal-scroll/horizontal-scroll.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/text/text.stories.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/text/text.stories.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/vertical-timeline/vertical-timeline.stories.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/vertical-timeline/vertical-timeline.stories.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/modal/modal-title/modal-title.stories.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/modal/modal-title/modal-title.stories.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/editor/shared-tab-manager/tabs/versions/single-view/single-view.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/editor/shared-tab-manager/tabs/versions/single-view/single-view.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/modal/modal-title/modal-title.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/modal/modal-title/modal-title.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/editor-container.stories.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/editor-container.stories.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/image/tab-manager/tabs/preview/sidebar/tabs/details/details-container.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/image/tab-manager/tabs/preview/sidebar/tabs/details/details-container.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/video/tab-manager/tabs/preview/sidebar/tabs/details/details-container.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/video/tab-manager/tabs/preview/sidebar/tabs/details/details-container.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/widget-manager/context-menu/context-menu.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/widget-manager/context-menu/context-menu.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/shared-tab-manager/tabs/versions/single-view/single-view.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/shared-tab-manager/tabs/versions/single-view/single-view.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/document/tab-manager/document-tab-manager.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/document/tab-manager/document-tab-manager.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/toolbar/tools/batch-edit-modal/batch-edit-list-container.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/toolbar/tools/batch-edit-modal/batch-edit-list-container.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/time/time-cell.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/time/time-cell.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/editor/types/folder/tab-manager/folder-tab-manager.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/editor/types/folder/tab-manager/folder-tab-manager.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/editor/types/object/tab-manager/object-tab-manager.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/editor/types/object/tab-manager/object-tab-manager.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/schedule/components/table/table.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/schedule/components/table/table.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/workflow-card/workflow-card.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/workflow-card/workflow-card.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/archive/tab-manager/archive-tab-manager.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/archive/tab-manager/archive-tab-manager.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/unknown/tab-manager/unknown-tab-manager.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/unknown/tab-manager/unknown-tab-manager.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/formatted-date-time/formatted-date-time.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/formatted-date-time/formatted-date-time.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/progressbar/progressbar.stories.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/progressbar/progressbar.stories.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/shared-tab-manager/tab-definitions.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/shared-tab-manager/tab-definitions.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/drag-and-drop/drag-overlay.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/drag-and-drop/drag-overlay.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/search-input/search-input.stories.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/search-input/search-input.stories.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/types/text/text-cell.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/types/text/text-cell.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/pagination/pagination.stories.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/pagination/pagination.stories.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/sidebar/filters/field-filters/field-filters-container.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/sidebar/filters/field-filters/field-filters-container.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/properties/properties-api-slice-enhanced.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/properties/properties-api-slice-enhanced.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/stack-list/stack-list.stories.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/stack-list/stack-list.stories.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/drag-and-drop/__STORIES__/dnd-demo-droppable-content.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/drag-and-drop/__STORIES__/dnd-demo-droppable-content.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/language-selection/language-selection.stories.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/language-selection/language-selection.stories.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/app/settings/settings-slice.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/app/settings/settings-slice.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/editor/editor-container.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/editor/editor-container.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/pagination/inline-textfield/inline-textfield.stories.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/pagination/inline-textfield/inline-textfield.stories.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/audio/tab-manager/audio-tab-manager.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/audio/tab-manager/audio-tab-manager.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/sidebar/tag-filters/tag-filters-container-inner.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/sidebar/tag-filters/tag-filters-container-inner.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/image/tab-manager/image-tab-manager.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/image/tab-manager/image-tab-manager.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/video/tab-manager/video-tab-manager.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/video/tab-manager/video-tab-manager.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/tree/search/search-container.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/tree/search/search-container.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/execution-engine/jobs/default/notification-job-container.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/execution-engine/jobs/default/notification-job-container.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/widget-manager/widget-manager-container.stories.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/widget-manager/widget-manager-container.stories.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/element-tree/list/tree-list.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/element-tree/list/tree-list.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/pagination/size-changer/size-changer.stories.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/pagination/size-changer/size-changer.stories.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/widget-manager/utils/widget-manager-factory.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/widget-manager/utils/widget-manager-factory.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/no-content/no-content.stories.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/no-content/no-content.stories.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/paragraph/paragraph.stories.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/paragraph/paragraph.stories.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/spin/spin.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/spin/spin.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/text/tab-manager/text-tab-manager.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/text/tab-manager/text-tab-manager.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/tree/node/with-draggable.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/tree/node/with-draggable.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/tree/tree-container.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/tree/tree-container.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/pimcore-document/pimcore-document.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/pimcore-document/pimcore-document.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/editor-container.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/editor-container.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/tree/pager/pager-container.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/tree/pager/pager-container.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/tree/search/search-container.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/tree/search/search-container.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/dependencies/dependencies-api-slice-enhanced.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/dependencies/dependencies-api-slice-enhanced.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/utils/currency.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/utils/currency.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/formatted-date-time/formatted-date-time.stories.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/formatted-date-time/formatted-date-time.stories.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/tabs/tabs.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/tabs/tabs.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/hooks/use-element-context.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/hooks/use-element-context.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/views/icon/icon-view.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/views/icon/icon-view.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/types/open-element/open-element-cell.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/types/open-element/open-element-cell.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/document/tab-manager/tabs/preview/preview-container.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/document/tab-manager/tabs/preview/preview-container.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/drag-and-drop/hooks/use-droppable.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/drag-and-drop/hooks/use-droppable.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/tree/node/with-draggable.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/tree/node/with-draggable.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/tree/tree-container.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/tree/tree-container.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/execution-engine/notification/job/job.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/execution-engine/notification/job/job.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/utils/number.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/utils/number.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/button/button.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/button/button.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/paragraph/paragraph.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/paragraph/paragraph.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/preview/preview-container.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/preview/preview-container.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/tab-manager/interface/IEditorTabManager.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/tab-manager/interface/IEditorTabManager.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/__stories__/icon-library/icon-library-overview.stories.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/__stories__/icon-library/icon-library-overview.stories.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/element-api-slice-enhanced.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/element-api-slice-enhanced.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/formatted-date/formatted-date.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/formatted-date/formatted-date.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/audio/tab-manager/tabs/preview/preview-container.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/audio/tab-manager/tabs/preview/preview-container.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/sidebar/filters/filter-container-inner.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/sidebar/filters/filter-container-inner.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/index.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/index.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/sidebar/tag-filters/tag-filters-container.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/sidebar/tag-filters/tag-filters-container.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/types/language-select/language-cell.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/types/language-select/language-cell.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/pimcore-image/pimcore-image.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/pimcore-image/pimcore-image.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/vertical-timeline/vertical-timeline.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/vertical-timeline/vertical-timeline.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/dependencies/components/required-by-panel/required-by-panel.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/dependencies/components/required-by-panel/required-by-panel.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/dropdown/selection/selection-button.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/dropdown/selection/selection-button.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/pimcore-document/pimcore-document.stories.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/pimcore-document/pimcore-document.stories.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/element-toolbar/element-toolbar.stories.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/element-toolbar/element-toolbar.stories.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs-container.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs-container.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/space/space.stories.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/space/space.stories.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/widget-manager/widget-manager-inner-container.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/widget-manager/widget-manager-inner-container.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/dropdown-button/dropdown-button.stories.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/dropdown-button/dropdown-button.stories.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/types/textarea/textarea-cell.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/types/textarea/textarea-cell.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/tree/tree-container.stories.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/tree/tree-container.stories.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/tags/utils/flattn-tags-array.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/tags/utils/flattn-tags-array.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/app/config/services/service-ids.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/app/config/services/service-ids.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/types/element-cell/element-cell-content.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/types/element-cell/element-cell-content.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/pimcore-video/pimcore-video.stories.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/pimcore-video/pimcore-video.stories.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/detached-tab/detached-tab.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/detached-tab/detached-tab.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/formatted-date/formatted-date.stories.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/formatted-date/formatted-date.stories.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/formatted-time/formatted-time.stories.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/formatted-time/formatted-time.stories.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/sidebar/grid-config/grid-config-inner.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/sidebar/grid-config/grid-config-inner.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/pimcore-audio/pimcore-audio.stories.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/pimcore-audio/pimcore-audio.stories.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/pimcore-image/pimcore-image.stories.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/pimcore-image/pimcore-image.stories.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/dependencies/components/requires-panel/requires-panel.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/dependencies/components/requires-panel/requires-panel.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/verify-cell-update.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/verify-cell-update.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/utils/type-utils.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/utils/type-utils.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/dropdown/item/types/custom/custom-item.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/dropdown/item/types/custom/custom-item.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/notes-and-events/notes-and-events-container.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/notes-and-events/notes-and-events-container.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/image-target/image-target.stories.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/image-target/image-target.stories.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/shared-tab-manager/tabs/embedded-metadata/embedded-metadata-container.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/shared-tab-manager/tabs/embedded-metadata/embedded-metadata-container.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/list-container.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/list-container.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/text/tab-manager/tabs/edit/edit-container.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/text/tab-manager/tabs/edit/edit-container.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/tree/tree-container.stories.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/tree/tree-container.stories.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/editor/title/title-container.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/editor/title/title-container.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/element-toolbar/element-toolbar.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/element-toolbar/element-toolbar.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/numeric-range/number-range.stories.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/numeric-range/number-range.stories.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/workflow-card/workflow-card.stories.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/workflow-card/workflow-card.stories.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/drag-and-drop/drag-and-drop.stories.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/drag-and-drop/drag-and-drop.stories.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/dropdown/item/types/divider/divider-item.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/dropdown/item/types/divider/divider-item.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/text-editor/text-editor.stories.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/text-editor/text-editor.stories.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/text/text.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/text/text.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/shared-tab-manager/tabs/custom-metadata/custom-metadata-container.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/shared-tab-manager/tabs/custom-metadata/custom-metadata-container.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/tree/context-menu/context-menu.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/tree/context-menu/context-menu.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/detached-tab/detached-tab.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/detached-tab/detached-tab.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/breadcrumb/breadcrumb.stories.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/breadcrumb/breadcrumb.stories.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/compact/compact.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/compact/compact.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/types/time/time-cell.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/types/time/time-cell.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/title/title-container.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/title/title-container.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/toolbar/tools/grid-selections.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/toolbar/tools/grid-selections.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/app/config/app-config.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/app/config/app-config.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/focal-point/focal-point.stories.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/focal-point/focal-point.stories.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/image-zoom/image-zoom.stories.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/image-zoom/image-zoom.stories.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/login-form/login-form.stories.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/login-form/login-form.stories.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/sort-button/sort-button.stories.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/sort-button/sort-button.stories.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/app/theme/theme-provider.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/app/theme/theme-provider.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/sidebar/grid-config/grid-config.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/sidebar/grid-config/grid-config.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/segmented/segmented.stories.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/segmented/segmented.stories.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/toolbar/tools/grid-actions.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/toolbar/tools/grid-actions.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/workflow/workflow-api-slice-enhanced.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/workflow/workflow-api-slice-enhanced.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/background/background.stories.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/background/background.stories.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/app/global-provider.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/app/global-provider.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/image/tab-manager/tabs/preview/sidebar/sidebar-manager.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/image/tab-manager/tabs/preview/sidebar/sidebar-manager.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/video/tab-manager/tabs/preview/sidebar/sidebar-manager.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/video/tab-manager/tabs/preview/sidebar/sidebar-manager.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/widget-manager/widget-manager-view.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/widget-manager/widget-manager-view.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/list-container-inner.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/list-container-inner.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/dependencies/components/pagination/skeleton.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/dependencies/components/pagination/skeleton.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/dependencies/dependencies-container.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/dependencies/dependencies-container.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/message/message.stories.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/message/message.stories.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/slider/slider.stories.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/slider/slider.stories.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/formatted-time/formatted-time.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/formatted-time/formatted-time.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/toolbar/tools/grid-tools.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/toolbar/tools/grid-tools.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/_schedule/version-id-cell/version-id-cell.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/_schedule/version-id-cell/version-id-cell.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/properties/properties-container.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/properties/properties-container.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/upload/upload-list/upload-list.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/upload/upload-list/upload-list.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/utils/hooks/use-click-outside.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/utils/hooks/use-click-outside.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/permissions/permission-helper.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/permissions/permission-helper.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/icon/icon.stories.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/icon/icon.stories.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/modal/file-list/file-list.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/modal/file-list/file-list.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/no-content/no-content.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/no-content/no-content.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/title/title.stories.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/title/title.stories.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/schedule/schedule-container.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/schedule/schedule-container.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/tab-manager/interface/types/IElementEditorTab.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/tab-manager/interface/types/IElementEditorTab.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/constants/systemTypes.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/tabs/list/constants/systemTypes.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/workflow/workflow-container.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/workflow/workflow-container.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/utils/query-string.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/utils/query-string.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/app/app-loader.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/app/app-loader.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/form/form.stories.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/form/form.stories.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/utils/hooks/use-element-resize.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/utils/hooks/use-element-resize.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/image/tab-manager/tabs/edit/edit-container.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/image/tab-manager/tabs/edit/edit-container.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/image/tab-manager/tabs/preview/sidebar/index.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/image/tab-manager/tabs/preview/sidebar/index.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/video/tab-manager/tabs/preview/sidebar/index.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/video/tab-manager/tabs/preview/sidebar/index.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/open-element/open-element-cell.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/open-element/open-element-cell.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/editor/toolbar/language-selection/language-selection.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/editor/toolbar/language-selection/language-selection.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/folder-tab-manager.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/tab-manager/folder-tab-manager.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/widget-manager/utils/widget-manager-inner-model.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/widget-manager/utils/widget-manager-inner-model.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/widget-manager/utils/widget-manager-outer-model.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/widget-manager/utils/widget-manager-outer-model.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/detached-tab/missing-context.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/detached-tab/missing-context.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/alert/alert.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/alert/alert.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/toolbar/workflow-log-modal/workflow-log-modal.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/toolbar/workflow-log-modal/workflow-log-modal.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/video/tab-manager/tabs/preview/sidebar/tabs/details/details.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/video/tab-manager/tabs/preview/sidebar/tabs/details/details.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/tags/tags-container.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/tags/tags-container.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/focal-point/provider/focal-point-provider.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/focal-point/provider/focal-point-provider.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/image/tab-manager/tabs/preview/sidebar/tabs/details/details.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/image/tab-manager/tabs/preview/sidebar/tabs/details/details.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/editor/shared-tab-manager/tab-definitions.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/editor/shared-tab-manager/tab-definitions.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/element-cell/element-cell.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/element-cell/element-cell.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/utils/hooks/use-css-container/use-css-container.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/utils/hooks/use-css-container/use-css-container.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/shared-tab-manager/tabs/versions/comparison-view/comparison-view-ui.style.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/shared-tab-manager/tabs/versions/comparison-view/comparison-view-ui.style.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/checkbox/checkbox-cell.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/checkbox/checkbox-cell.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/dependencies/components/pagination/skeleton.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/dependencies/components/pagination/skeleton.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/textarea/textarea-cell.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/textarea/textarea-cell.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/region/components/region-item/region-item.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/region/components/region-item/region-item.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/utils/files.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/utils/files.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/hooks/use-data-object.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/hooks/use-data-object.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/badge/badge.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/badge/badge.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/auth/permission-helper.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/auth/permission-helper.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/use-grid.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/use-grid.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/message/useMessage/index.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/message/useMessage/index.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/notification/useNotification/index.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/notification/useNotification/index.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/editor/toolbar/context-menu/context-menu.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/editor/toolbar/context-menu/context-menu.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/select/select-cell.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/select/select-cell.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/tags/components/tags-tree/tags-tree.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/tags/components/tags-tree/tags-tree.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/toolbar/workflow-menu/workflow-menu.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/toolbar/workflow-menu/workflow-menu.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/main.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/main.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/toolbar/context-menu/context-menu.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/toolbar/context-menu/context-menu.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/element-toolbar/element-toolbar.skeleton.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/element-toolbar/element-toolbar.skeleton.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/flex/flex.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/flex/flex.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/date/date-cell.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/date/date-cell.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/text/text-cell.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/text/text-cell.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/time/time-cell.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/grid-cell/components/time/time-cell.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/dependencies/components/table/table.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/dependencies/components/table/table.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/breadcrumb/hooks/use-breadcrumb-size.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/breadcrumb/hooks/use-breadcrumb-size.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/helpers.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/helpers.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/properties/components/table/table.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/properties/components/table/table.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/tabs/editor-tabs.skeleton.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/tabs/editor-tabs.skeleton.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/content-toolbar-sidebar-layout/content-toolbar-sidebar-layout.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/content-toolbar-sidebar-layout/content-toolbar-sidebar-layout.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/document/tab-manager/tabs/preview/preview-view.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/document/tab-manager/tabs/preview/preview-view.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/image/tab-manager/tabs/preview/preview-view.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/image/tab-manager/tabs/preview/preview-view.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/schedule/components/table/table.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/schedule/components/table/table.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/tree-element/tree-element.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/tree-element/tree-element.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/toolbar/workflow-menu/workflow-transition-group.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/toolbar/workflow-menu/workflow-transition-group.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/widget-manager/widget-manager-container.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/widget-manager/widget-manager-container.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/text/tab-manager/tabs/edit/edit-container.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/text/tab-manager/tabs/edit/edit-container.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/video/tab-manager/tabs/preview/preview-view.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/video/tab-manager/tabs/preview/preview-view.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/background/background.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/background/background.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/audio/tab-manager/tabs/preview/preview-view.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/audio/tab-manager/tabs/preview/preview-view.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/__stories__/icon-library/icon-library-overview.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/__stories__/icon-library/icon-library-overview.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/app/settings/hooks/use-settings.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/app/settings/hooks/use-settings.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/execution-engine/notification/job-list/job-list.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/execution-engine/notification/job-list/job-list.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/app/config/date-time.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/app/config/date-time.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/execution-engine/notification/notification.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/execution-engine/notification/notification.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/versions/versions-view.style.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/shared-tab-manager/tabs/versions/versions-view.style.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/execution-engine/topics.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/execution-engine/topics.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/drag-and-drop/__STORIES__/dnd-demo-droppable-content.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/drag-and-drop/__STORIES__/dnd-demo-droppable-content.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/app/base-layout/right-sidebar-view.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/app/base-layout/right-sidebar-view.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/select/select.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/select/select.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/metadata-type-provider/index.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/metadata-type-provider/index.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/breadcrumb/breadcrumb.skeleton.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/breadcrumb/breadcrumb.skeleton.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/text/tab-manager/tabs/edit/edit-view.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/text/tab-manager/tabs/edit/edit-view.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/app/base-layout/left-sidebar-view.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/app/base-layout/left-sidebar-view.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/types/open-element/open-element-cell.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/types/open-element/open-element-cell.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/app/base-layout/base-layout-view.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/app/base-layout/base-layout-view.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/focal-point/components/draggable-item/draggable-item.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/focal-point/components/draggable-item/draggable-item.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/editor/toolbar/toolbar.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/editor/toolbar/toolbar.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/app/api/pimcore/route.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/app/api/pimcore/route.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/app/depency-injection/index.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/app/depency-injection/index.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/editor/widget.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/editor/widget.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/hooks/use-asset.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/hooks/use-asset.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/__stories__/spacing/spacing-overview.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/__stories__/spacing/spacing-overview.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/split-layout/components/item/split-layout-item.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/split-layout/components/item/split-layout-item.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/types/element-cell/element-cell.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/types/element-cell/element-cell.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/toolbar/toolbar.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/toolbar/toolbar.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/widget.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/widget.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/types/checkbox/checkbox-cell.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/types/checkbox/checkbox-cell.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/region/region.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/region/region.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/ant-design/hooks/use-css-component-hash.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/ant-design/hooks/use-css-component-hash.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/auth/hooks/use-user.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/auth/hooks/use-user.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/execution-engine/index.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/execution-engine/index.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/element-toolbar/element-toolbar.skeleton.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/element-toolbar/element-toolbar.skeleton.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/types/textarea/textarea-cell.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/types/textarea/textarea-cell.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/pagination/inline-textfield/inline-textfield.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/pagination/inline-textfield/inline-textfield.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/dropdown/item/types/default/default-item.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/dropdown/item/types/default/default-item.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/tabs/editor-tabs.skeleton.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/tabs/editor-tabs.skeleton.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/widget-manager/hooks/use-is-active-main-widget.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/widget-manager/hooks/use-is-active-main-widget.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/notification/content/action-list/action-list.style.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/notification/content/action-list/action-list.style.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/layouts/tabs-toolbar-view.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/layouts/tabs-toolbar-view.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/execution-engine/notification/job-list/job-list.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/execution-engine/notification/job-list/job-list.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/types/select/select-cell.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/types/select/select-cell.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/language-selection/langguage-selection.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/language-selection/langguage-selection.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/dropdown/item/types/group/group-item.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/dropdown/item/types/group/group-item.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/split-layout/components/divider/divider.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/split-layout/components/divider/divider.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/accordion-timeline/accordion-timeline.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/accordion-timeline/accordion-timeline.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/dropdown/selection/selection-button.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/dropdown/selection/selection-button.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/views/image/image-view.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/views/image/image-view.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/horizontal-scroll/horizontal-scroll.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/horizontal-scroll/horizontal-scroll.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/execution-engine/notification/job/job-view.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/execution-engine/notification/job/job-view.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/vertical-timeline/vertical-timeline.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/vertical-timeline/vertical-timeline.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/app/default-page.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/app/default-page.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/types/date/date-cell.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/types/date/date-cell.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/types/text/text-cell.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/types/text/text-cell.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/types/time/time-cell.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/types/time/time-cell.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/app/base-layout/right-sidebar-view.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/app/base-layout/right-sidebar-view.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/pagination/size-changer/size-changer.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/pagination/size-changer/size-changer.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/views/icon/icon-view.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/views/icon/icon-view.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/pimcore-document/pimcore-document.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/pimcore-document/pimcore-document.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/app/base-layout/left-sidebar-view.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/app/base-layout/left-sidebar-view.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/widget-manager/widget/title/title-view.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/widget-manager/widget/title/title-view.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/breadcrumb/breadcrumb.skeleton.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/breadcrumb/breadcrumb.skeleton.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/auth/login-page.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/auth/login-page.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/utils/css.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/utils/css.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/element-toolbar/element-toolbar.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/element-toolbar/element-toolbar.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/tabs/editor-tabs.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/tabs/editor-tabs.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/widget-manager/title/tab-title-view.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/widget-manager/title/tab-title-view.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/pql-query-input/pql-query-input.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/pql-query-input/pql-query-input.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/app/base-layout/base-layout-view.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/app/base-layout/base-layout-view.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/app/app-view.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/app/app-view.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/widget-manager/widget/widget-view.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/widget-manager/widget/widget-view.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/upload/upload-list/upload-list.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/upload/upload-list/upload-list.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/stack-list/stack-list-item.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/stack-list/stack-list-item.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/auth/hooks/use-is-authenticated.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/auth/hooks/use-is-authenticated.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/default-cell.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/columns/default-cell.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/modal/footer/modal-footer.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/modal/footer/modal-footer.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/search-input/search-input.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/search-input/search-input.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/element-tree/list/tree-list.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/element-tree/list/tree-list.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/logo/logo.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/logo/logo.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/pimcore-image/pimcore-image.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/pimcore-image/pimcore-image.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/workflow-card/workflow-card.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/workflow-card/workflow-card.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/element-tree/node/tree-node.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/element-tree/node/tree-node.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/utils/hooks/use-pagination.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/utils/hooks/use-pagination.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/button-group/button-group.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/button-group/button-group.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/drag-and-drop/drag-overlay.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/drag-and-drop/drag-overlay.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/image-target/image-target.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/image-target/image-target.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/preview-card/preview-card.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/preview-card/preview-card.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/split-layout/split-layout.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/split-layout/split-layout.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/modal/file-list/file-list.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/modal/file-list/file-list.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/execution-engine/jobs/factory-helper.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/execution-engine/jobs/factory-helper.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/utils/data-unit.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/utils/data-unit.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/breadcrumb/breadcrumb.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/breadcrumb/breadcrumb.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/element-tree/element-tree.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/element-tree/element-tree.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/image-zoom/image-zoom.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/image-zoom/image-zoom.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/icon-button/icon-button.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/icon-button/icon-button.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/notification/notification.style.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/notification/notification.style.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/sort-button/sort-button.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/sort-button/sort-button.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/index.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/index.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/text-editor/text-editor.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/text-editor/text-editor.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/drag-and-drop/draggable.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/drag-and-drop/draggable.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/drag-and-drop/droppable.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/drag-and-drop/droppable.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/progressbar/progressbar.style.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/progressbar/progressbar.style.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/app/router/router.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/app/router/router.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/no-content/no-content.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/no-content/no-content.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/pagination/pagination.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/pagination/pagination.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/accordion/accordion.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/accordion/accordion.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/background/background.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/background/background.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/resizer/resizer.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/resizer/resizer.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/login-form/login-form-style.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/login-form/login-form-style.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/stack-list/stack-list.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/stack-list/stack-list.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/segmented/segmented.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/segmented/segmented.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/auth/hooks/use-middleware.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/auth/hooks/use-middleware.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/editor/index.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/editor/index.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/dropdown/dropdown.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/dropdown/dropdown.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/auth/login-page.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/auth/login-page.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/content/content.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/content/content.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/toolbar/toolbar.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/toolbar/toolbar.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/sidebar/sidebar.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/sidebar/sidebar.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/button/button.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/button/button.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/header/header.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/header/header.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/message/message.style.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/message/message.style.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/upload/upload.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/upload/upload.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/app/utils/app-runner.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/app/utils/app-runner.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/index.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/index.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/alert/alert.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/alert/alert.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/modal/modal.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/modal/modal.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/space/space.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/space/space.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/split/split.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/split/split.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/title/title.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/title/title.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/spin/spin.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/spin/spin.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/card/card.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/card/card.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/types/element-type.d.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/types/element-type.d.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/app/i18n/index.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/app/i18n/index.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/tabs/tabs.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/tabs/tabs.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/grid.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/grid.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/logo/logo.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/logo/logo.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/tag/tag.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/tag/tag.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/box/box.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/box/box.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/utils/hooks/use-previous.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/utils/hooks/use-previous.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/styles/global.styles.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/styles/global.styles.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/app/api/pimcore/index.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/app/api/pimcore/index.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/editor/types/folder/index.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/editor/types/folder/index.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/editor/types/object/index.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/editor/types/object/index.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/document/index.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/document/index.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/archive/index.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/archive/index.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/unknown/index.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/unknown/index.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/index.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/folder/index.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/audio/index.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/audio/index.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/image/index.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/image/index.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/video/index.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/video/index.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/text/index.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/editor/types/text/index.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/index.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/index.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/utils/uuid.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/utils/uuid.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/index.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/index.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/tree/index.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/data-object/tree/index.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/index.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/editor/index.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/app/config/services/index.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/app/config/services/index.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/test-utils/jest-setup.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/test-utils/jest-setup.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/tree/index.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/asset/tree/index.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/icon-library/index.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/icon-library/index.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/index.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/components/grid/index.d.ts.map", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/listing/types/dynamic-type-listing-asset-link.d.ts": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/listing/types/dynamic-type-listing-asset-link.d.ts", + "build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/listing/types/dynamic-type-listing-asset-link.d.ts.map": "http://localhost:3030/build/10b185d5-b09e-41e3-a7c0-22df6e82b343/../../../assets/dist/build/types/js/src/core/modules/element/dynamic-types/defintinitions/listing/types/dynamic-type-listing-asset-link.d.ts.map" +} \ No newline at end of file diff --git a/public/build/356f28db-348d-4b9e-b8e7-f0acae94f589/105.js b/public/build/356f28db-348d-4b9e-b8e7-f0acae94f589/105.js deleted file mode 100644 index 266afc33a..000000000 --- a/public/build/356f28db-348d-4b9e-b8e7-f0acae94f589/105.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 105.js.LICENSE.txt */ -"use strict";(self.webpackChunkstudio_core=self.webpackChunkstudio_core||[]).push([[105],{78105:(e,s,c)=>{c.r(s),c.d(s,{Pimcore:()=>t});var i=c(81690),r=c(19387),n=c(54088),t={container:i.container,serviceIds:n.serviceIds,pluginSystem:r.pluginSystem}}}]); \ No newline at end of file diff --git a/public/build/356f28db-348d-4b9e-b8e7-f0acae94f589/105.js.LICENSE.txt b/public/build/356f28db-348d-4b9e-b8e7-f0acae94f589/105.js.LICENSE.txt deleted file mode 100644 index 6c9b00cfe..000000000 --- a/public/build/356f28db-348d-4b9e-b8e7-f0acae94f589/105.js.LICENSE.txt +++ /dev/null @@ -1,16 +0,0 @@ -/*! - * - * /** - * * Pimcore - * * - * * This source file is available under two different licenses: - * * - Pimcore Open Core License (POCL) - * * - Pimcore Commercial License (PCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (http://www.pimcore.org) - * * @license https://github.com/pimcore/studio-ui-bundle/blob/1.x/LICENSE.md POCL and PCL - * * / - * - */ diff --git a/public/build/356f28db-348d-4b9e-b8e7-f0acae94f589/core-dll.css b/public/build/356f28db-348d-4b9e-b8e7-f0acae94f589/core-dll.css deleted file mode 100644 index 72c0c22f4..000000000 --- a/public/build/356f28db-348d-4b9e-b8e7-f0acae94f589/core-dll.css +++ /dev/null @@ -1,16 +0,0 @@ -/*! - * - * /** - * * Pimcore - * * - * * This source file is available under two different licenses: - * * - Pimcore Open Core License (POCL) - * * - Pimcore Commercial License (PCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (http://www.pimcore.org) - * * @license https://github.com/pimcore/studio-ui-bundle/blob/1.x/LICENSE.md POCL and PCL - * * / - * - */.flexlayout__layout{--color-text:#000;--color-background:#fff;--color-base:#fff;--color-1:#f7f7f7;--color-2:#f0f0f0;--color-3:#e9e9e9;--color-4:#e2e2e2;--color-5:#dbdbdb;--color-6:#d4d4d4;--color-drag1:#5f86c4;--color-drag2:#77a677;--color-drag1-background:rgba(95,134,196,.1);--color-drag2-background:rgba(119,166,119,.075);--font-size:medium;--font-family:Roboto,Arial,sans-serif;--color-overflow:gray;--color-icon:gray;--color-tabset-background:var(--color-background);--color-tabset-background-selected:var(--color-1);--color-tabset-background-maximized:var(--color-6);--color-tabset-divider-line:var(--color-4);--color-tabset-header-background:var(--color-background);--color-tabset-header:var(--color-text);--color-border-background:var(--color-background);--color-border-divider-line:var(--color-4);--color-tab-selected:var(--color-text);--color-tab-selected-background:var(--color-4);--color-tab-unselected:gray;--color-tab-unselected-background:transparent;--color-tab-textbox:var(--color-text);--color-tab-textbox-background:var(--color-3);--color-border-tab-selected:var(--color-text);--color-border-tab-selected-background:var(--color-4);--color-border-tab-unselected:gray;--color-border-tab-unselected-background:var(--color-2);--color-splitter:var(--color-1);--color-splitter-hover:var(--color-4);--color-splitter-drag:var(--color-4);--color-drag-rect-border:var(--color-6);--color-drag-rect-background:var(--color-4);--color-drag-rect:var(--color-text);--color-popup-border:var(--color-6);--color-popup-unselected:var(--color-text);--color-popup-unselected-background:#fff;--color-popup-selected:var(--color-text);--color-popup-selected-background:var(--color-3);--color-edge-marker:#aaa;--color-edge-icon:#555;bottom:0;left:0;overflow:hidden;position:absolute;right:0;top:0}.flexlayout__splitter{background-color:var(--color-splitter)}@media (hover:hover){.flexlayout__splitter:hover{background-color:var(--color-splitter-hover);transition:background-color .1s ease-in;transition-delay:.05s}}.flexlayout__splitter_border{z-index:10}.flexlayout__splitter_drag{background-color:var(--color-splitter-drag);z-index:1000}.flexlayout__splitter_extra{background-color:transparent}.flexlayout__outline_rect{background:var(--color-drag1-background);border:2px solid var(--color-drag1);border-radius:5px;box-sizing:border-box;pointer-events:none;position:absolute;z-index:1000}.flexlayout__outline_rect_edge{background:var(--color-drag2-background);border:2px solid var(--color-drag2);border-radius:5px;box-sizing:border-box;pointer-events:none;z-index:1000}.flexlayout__edge_rect{align-items:center;background-color:var(--color-edge-marker);pointer-events:none}.flexlayout__drag_rect,.flexlayout__edge_rect{display:flex;justify-content:center;position:absolute;z-index:1000}.flexlayout__drag_rect{background-color:var(--color-drag-rect-background);border:2px solid var(--color-drag-rect-border);border-radius:5px;color:var(--color-drag-rect);cursor:move;opacity:.9;padding:.3em 1em;text-align:center;word-wrap:break-word}.flexlayout__drag_rect,.flexlayout__tabset{box-sizing:border-box;flex-direction:column;font-family:var(--font-family);font-size:var(--font-size);overflow:hidden}.flexlayout__tabset{background-color:var(--color-tabset-background);display:flex}.flexlayout__tabset_tab_divider{width:4px}.flexlayout__tabset_content{align-items:center;display:flex;flex-grow:1;justify-content:center}.flexlayout__tabset_header{align-items:center;background-color:var(--color-tabset-header-background);border-bottom:1px solid var(--color-tabset-divider-line);box-sizing:border-box;color:var(--color-tabset-header);display:flex;padding:3px 3px 3px 5px}.flexlayout__tabset_header_content{flex-grow:1}.flexlayout__tabset_tabbar_outer{background-color:var(--color-tabset-background);box-sizing:border-box;display:flex;overflow:hidden}.flexlayout__tabset_tabbar_outer_top{border-bottom:1px solid var(--color-tabset-divider-line)}.flexlayout__tabset_tabbar_outer_bottom{border-top:1px solid var(--color-tabset-divider-line)}.flexlayout__tabset_tabbar_inner{box-sizing:border-box;display:flex;flex-grow:1;overflow:hidden;position:relative}.flexlayout__tabset_tabbar_inner_tab_container{bottom:0;box-sizing:border-box;display:flex;padding-left:4px;padding-right:4px;position:absolute;top:0;width:10000px}.flexlayout__tabset_tabbar_inner_tab_container_top{border-top:2px solid transparent}.flexlayout__tabset_tabbar_inner_tab_container_bottom{border-bottom:2px solid transparent}.flexlayout__tabset-selected{background-color:var(--color-tabset-background-selected)}.flexlayout__tabset-maximized{background-color:var(--color-tabset-background-maximized)}.flexlayout__tab_button_stamp{align-items:center;box-sizing:border-box;display:inline-flex;gap:.3em;white-space:nowrap}.flexlayout__tab{background-color:var(--color-background);box-sizing:border-box;color:var(--color-text);overflow:auto;position:absolute}.flexlayout__tab_button{padding:3px .5em}.flexlayout__tab_button,.flexlayout__tab_button_stretch{align-items:center;box-sizing:border-box;cursor:pointer;display:flex;gap:.3em}.flexlayout__tab_button_stretch{background-color:transparent;color:var(--color-tab-selected);padding:3px 0;width:100%;text-wrap:nowrap}@media (hover:hover){.flexlayout__tab_button_stretch:hover{color:var(--color-tab-selected)}}.flexlayout__tab_button--selected{background-color:var(--color-tab-selected-background);color:var(--color-tab-selected)}@media (hover:hover){.flexlayout__tab_button:hover{background-color:var(--color-tab-selected-background);color:var(--color-tab-selected)}}.flexlayout__tab_button--unselected{background-color:var(--color-tab-unselected-background);color:var(--color-tab-unselected);color:gray}.flexlayout__tab_button_content,.flexlayout__tab_button_leading{display:flex}.flexlayout__tab_button_textbox{background-color:var(--color-tab-textbox-background);border:none;border:1px inset var(--color-1);border-radius:3px;color:var(--color-tab-textbox);font-family:var(--font-family);font-size:var(--font-size);width:10em}.flexlayout__tab_button_textbox:focus{outline:none}.flexlayout__tab_button_trailing{border-radius:4px;display:flex;visibility:hidden}.flexlayout__tab_button_trailing:hover{background-color:var(--color-3)}@media (hover:hover){.flexlayout__tab_button:hover .flexlayout__tab_button_trailing{visibility:visible}}.flexlayout__tab_button--selected .flexlayout__tab_button_trailing{visibility:visible}.flexlayout__tab_button_overflow{align-items:center;background-color:transparent;border:none;color:var(--color-overflow);display:flex;font-size:inherit}.flexlayout__tab_toolbar{align-items:center;display:flex;gap:.3em;padding-left:.5em;padding-right:.3em}.flexlayout__tab_toolbar_button{background-color:transparent;border:none;border-radius:4px;font-size:inherit;margin:0;outline:none;padding:1px}@media (hover:hover){.flexlayout__tab_toolbar_button:hover{background-color:var(--color-2)}}.flexlayout__tab_toolbar_sticky_buttons_container{align-items:center;display:flex;gap:.3em;padding-left:5px}.flexlayout__tab_floating{background-color:var(--color-background);box-sizing:border-box;color:var(--color-text);position:absolute}.flexlayout__tab_floating,.flexlayout__tab_floating_inner{align-items:center;display:flex;justify-content:center;overflow:auto}.flexlayout__tab_floating_inner{flex-direction:column}.flexlayout__tab_floating_inner div{margin-bottom:5px;text-align:center}.flexlayout__tab_floating_inner div a{color:#4169e1}.flexlayout__border{background-color:var(--color-border-background);box-sizing:border-box;color:var(--color-border);display:flex;font-family:var(--font-family);font-size:var(--font-size);overflow:hidden}.flexlayout__border_top{align-items:center;border-bottom:1px solid var(--color-border-divider-line)}.flexlayout__border_bottom{align-items:center;border-top:1px solid var(--color-border-divider-line)}.flexlayout__border_left{align-content:center;border-right:1px solid var(--color-border-divider-line);flex-direction:column}.flexlayout__border_right{align-content:center;border-left:1px solid var(--color-border-divider-line);flex-direction:column}.flexlayout__border_inner{box-sizing:border-box;display:flex;flex-grow:1;overflow:hidden;position:relative}.flexlayout__border_inner_tab_container{bottom:0;box-sizing:border-box;display:flex;padding-left:2px;padding-right:2px;position:absolute;top:0;white-space:nowrap;width:10000px}.flexlayout__border_inner_tab_container_right{transform:rotate(90deg);transform-origin:top left}.flexlayout__border_inner_tab_container_left{flex-direction:row-reverse;transform:rotate(-90deg);transform-origin:top right}.flexlayout__border_tab_divider{width:4px}.flexlayout__border_button{align-items:center;box-sizing:border-box;cursor:pointer;display:flex;gap:.3em;margin:2px 0;padding:3px .5em;white-space:nowrap}.flexlayout__border_button--selected{background-color:var(--color-border-tab-selected-background);color:var(--color-border-tab-selected)}@media (hover:hover){.flexlayout__border_button:hover{background-color:var(--color-border-tab-selected-background);color:var(--color-border-tab-selected)}}.flexlayout__border_button--unselected{background-color:var(--color-border-tab-unselected-background);color:var(--color-border-tab-unselected)}.flexlayout__border_button_content,.flexlayout__border_button_leading{display:flex}.flexlayout__border_button_trailing{border-radius:4px;display:flex;visibility:hidden}.flexlayout__border_button_trailing:hover{background-color:var(--color-3)}@media (hover:hover){.flexlayout__border_button:hover .flexlayout__border_button_trailing{visibility:visible}}.flexlayout__border_button--selected .flexlayout__border_button_trailing{visibility:visible}.flexlayout__border_toolbar{align-items:center;display:flex;gap:.3em}.flexlayout__border_toolbar_left,.flexlayout__border_toolbar_right{flex-direction:column;padding-bottom:.3em;padding-top:.5em}.flexlayout__border_toolbar_bottom,.flexlayout__border_toolbar_top{padding-left:.5em;padding-right:.3em}.flexlayout__border_toolbar_button{background-color:transparent;border:none;border-radius:4px;font-size:inherit;outline:none;padding:1px}@media (hover:hover){.flexlayout__border_toolbar_button:hover{background-color:var(--color-2)}}.flexlayout__border_toolbar_button_overflow{align-items:center;background-color:transparent;border:none;color:var(--color-overflow);display:flex;font-size:inherit}.flexlayout__popup_menu{font-family:var(--font-family);font-size:var(--font-size)}.flexlayout__popup_menu_item{border-radius:2px;cursor:pointer;padding:2px .5em;white-space:nowrap}@media (hover:hover){.flexlayout__popup_menu_item:hover{background-color:var(--color-6)}}.flexlayout__popup_menu_container{background:var(--color-popup-unselected-background);border:1px solid var(--color-popup-border);border-radius:3px;box-shadow:inset 0 0 5px rgba(0,0,0,.15);color:var(--color-popup-unselected);max-height:50%;min-width:100px;overflow:auto;padding:2px;position:absolute;z-index:1000}.flexlayout__floating_window _body{height:100%}.flexlayout__floating_window_content,.flexlayout__floating_window_tab{bottom:0;left:0;position:absolute;right:0;top:0}.flexlayout__floating_window_tab{background-color:var(--color-background);box-sizing:border-box;color:var(--color-text);overflow:auto}.flexlayout__error_boundary_container{bottom:0;display:flex;justify-content:center;left:0;position:absolute;right:0;top:0}.flexlayout__error_boundary_content{align-items:center;display:flex}.flexlayout__tabset_sizer{padding-top:5px}.flexlayout__tabset_header_sizer,.flexlayout__tabset_sizer{font-family:var(--font-family);font-size:var(--font-size);padding-bottom:3px}.flexlayout__tabset_header_sizer{padding-top:3px}.flexlayout__border_sizer{font-family:var(--font-family);font-size:var(--font-size);padding-bottom:5px;padding-top:6px}@font-face{font-family:Lato;src:url(/bundles/pimcorestudioui/build/356f28db-348d-4b9e-b8e7-f0acae94f589/fonts/Lato-Regular.9d883d54.ttf)}@font-face{font-family:Lato;font-weight:300;src:url(/bundles/pimcorestudioui/build/356f28db-348d-4b9e-b8e7-f0acae94f589/fonts/Lato-Light.c7400fca.ttf)}@font-face{font-family:Lato;font-weight:700;src:url(/bundles/pimcorestudioui/build/356f28db-348d-4b9e-b8e7-f0acae94f589/fonts/Lato-Bold.636be8de.ttf)}*{box-sizing:border-box}.ant-message{bottom:20px!important;position:absolute;top:unset!important}@keyframes moveUp{0%{opacity:0;transform:translateY(30%)}to{opacity:1;transform:translateY(0)}}.ant-message .ant-message-move-up-appear,.ant-message .ant-message-move-up-enter{animation-name:moveUp}.ant-message .ant-message-move-up-leave{animation-direction:reverse;animation-name:moveUp} \ No newline at end of file diff --git a/public/build/356f28db-348d-4b9e-b8e7-f0acae94f589/core-dll.js b/public/build/356f28db-348d-4b9e-b8e7-f0acae94f589/core-dll.js deleted file mode 100644 index 4bed854db..000000000 --- a/public/build/356f28db-348d-4b9e-b8e7-f0acae94f589/core-dll.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see core-dll.js.LICENSE.txt */ -var studio_core;(()=>{var e,t,n,r,o,i,a,s,l={79752:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>y});var r=n(41191),o=2,i=.16,a=.05,s=.05,l=.15,c=5,u=4,d=[{index:7,opacity:.15},{index:6,opacity:.25},{index:5,opacity:.3},{index:5,opacity:.45},{index:5,opacity:.65},{index:5,opacity:.85},{index:4,opacity:.9},{index:3,opacity:.95},{index:2,opacity:.97},{index:1,opacity:.98}];function f(e){var t=e.r,n=e.g,o=e.b,i=(0,r.rgbToHsv)(t,n,o);return{h:360*i.h,s:i.s,v:i.v}}function h(e){var t=e.r,n=e.g,o=e.b;return"#".concat((0,r.rgbToHex)(t,n,o,!1))}function p(e,t,n){var r;return(r=Math.round(e.h)>=60&&Math.round(e.h)<=240?n?Math.round(e.h)-o*t:Math.round(e.h)+o*t:n?Math.round(e.h)+o*t:Math.round(e.h)-o*t)<0?r+=360:r>=360&&(r-=360),r}function m(e,t,n){return 0===e.h&&0===e.s?e.s:((r=n?e.s-i*t:t===u?e.s+i:e.s+a*t)>1&&(r=1),n&&t===c&&r>.1&&(r=.1),r<.06&&(r=.06),Number(r.toFixed(2)));var r}function g(e,t,n){var r;return(r=n?e.v+s*t:e.v-l*t)>1&&(r=1),Number(r.toFixed(2))}function y(e){for(var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=[],o=(0,r.inputToRGB)(e),i=c;i>0;i-=1){var a=f(o),s=h((0,r.inputToRGB)({h:p(a,i,!0),s:m(a,i,!0),v:g(a,i,!0)}));n.push(s)}n.push(h(o));for(var l=1;l<=u;l+=1){var y=f(o),v=h((0,r.inputToRGB)({h:p(y,l),s:m(y,l),v:g(y,l)}));n.push(v)}return"dark"===t.theme?d.map((function(e){var o,i,a,s=e.index,l=e.opacity;return h((o=(0,r.inputToRGB)(t.backgroundColor||"#141414"),i=(0,r.inputToRGB)(n[s]),a=100*l/100,{r:(i.r-o.r)*a+o.r,g:(i.g-o.g)*a+o.g,b:(i.b-o.b)*a+o.b}))})):n}},11305:(e,t,n)=>{"use strict";n.r(t),n.d(t,{blue:()=>m,cyan:()=>p,geekblue:()=>g,generate:()=>r.default,gold:()=>c,gray:()=>O,green:()=>h,grey:()=>b,lime:()=>f,magenta:()=>v,orange:()=>u,presetDarkPalettes:()=>a,presetPalettes:()=>i,presetPrimaryColors:()=>o,purple:()=>y,red:()=>s,volcano:()=>l,yellow:()=>d});var r=n(79752),o={red:"#F5222D",volcano:"#FA541C",orange:"#FA8C16",gold:"#FAAD14",yellow:"#FADB14",lime:"#A0D911",green:"#52C41A",cyan:"#13C2C2",blue:"#1677FF",geekblue:"#2F54EB",purple:"#722ED1",magenta:"#EB2F96",grey:"#666666"},i={},a={};Object.keys(o).forEach((function(e){i[e]=(0,r.default)(o[e]),i[e].primary=i[e][5],a[e]=(0,r.default)(o[e],{theme:"dark",backgroundColor:"#141414"}),a[e].primary=a[e][5]}));var s=i.red,l=i.volcano,c=i.gold,u=i.orange,d=i.yellow,f=i.lime,h=i.green,p=i.cyan,m=i.blue,g=i.geekblue,y=i.purple,v=i.magenta,b=i.grey,O=i.grey},43481:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>l,pathKey:()=>s});var r=n(15671),o=n(43144),i=n(4942),a="%";function s(e){return e.join(a)}const l=function(){function e(t){(0,r.default)(this,e),(0,i.default)(this,"instanceId",void 0),(0,i.default)(this,"cache",new Map),this.instanceId=t}return(0,o.default)(e,[{key:"get",value:function(e){return this.opGet(s(e))}},{key:"opGet",value:function(e){return this.cache.get(e)||null}},{key:"update",value:function(e,t){return this.opUpdate(s(e),t)}},{key:"opUpdate",value:function(e,t){var n=t(this.cache.get(e));null===n?this.cache.delete(e):this.cache.set(e,n)}}]),e}()},22236:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>a});var r=n(15671),o=n(43144),i=n(4942);const a=function(){function e(t,n){(0,r.default)(this,e),(0,i.default)(this,"name",void 0),(0,i.default)(this,"style",void 0),(0,i.default)(this,"_keyframe",!0),this.name=t,this.style=n}return(0,o.default)(e,[{key:"getName",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"";return e?"".concat(e,"-").concat(this.name):this.name}}]),e}()},61052:(e,t,n)=>{"use strict";n.r(t),n.d(t,{ATTR_CACHE_PATH:()=>f,ATTR_MARK:()=>d,ATTR_TOKEN:()=>u,CSS_IN_JS_INSTANCE:()=>h,StyleProvider:()=>g,createCache:()=>p,default:()=>y});var r=n(1413),o=n(45987),i=n(56982),a=n(91881),s=n(36198),l=n(43481),c=["children"],u="data-token-hash",d="data-css-hash",f="data-cache-path",h="__cssinjs_instance__";function p(){var e=Math.random().toString(12).slice(2);if("undefined"!=typeof document&&document.head&&document.body){var t=document.body.querySelectorAll("style[".concat(d,"]"))||[],n=document.head.firstChild;Array.from(t).forEach((function(t){t[h]=t[h]||e,t[h]===e&&document.head.insertBefore(t,n)}));var r={};Array.from(document.querySelectorAll("style[".concat(d,"]"))).forEach((function(t){var n,o=t.getAttribute(d);r[o]?t[h]===e&&(null===(n=t.parentNode)||void 0===n||n.removeChild(t)):r[o]=!0}))}return new l.default(e)}var m=s.createContext({hashPriority:"low",cache:p(),defaultCache:!0}),g=function(e){var t=e.children,n=(0,o.default)(e,c),l=s.useContext(m),u=(0,i.default)((function(){var e=(0,r.default)({},l);Object.keys(n).forEach((function(t){var r=n[t];void 0!==n[t]&&(e[t]=r)}));var t=n.cache;return e.cache=e.cache||p(),e.defaultCache=!t&&l.defaultCache,e}),[l,n],(function(e,t){return!(0,a.default)(e[0],t[0],!0)||!(0,a.default)(e[1],t[1],!0)}));return s.createElement(m.Provider,{value:u},t)};const y=m},73098:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>h});var r,o=n(93324),i=n(4942),a=n(79942),s=n(4522),l=n(78195),c=n(43449),u=n(58356),d=(r={},(0,i.default)(r,l.STYLE_PREFIX,l.extract),(0,i.default)(r,a.TOKEN_PREFIX,a.extract),(0,i.default)(r,s.CSS_VAR_PREFIX,s.extract),r);function f(e){return null!==e}function h(e,t){var n="boolean"==typeof t?{plain:t}:t||{},r=n.plain,a=void 0!==r&&r,s=n.types,l=void 0===s?["style","token","cssVar"]:s,h=new RegExp("^(".concat(("string"==typeof l?[l]:l).join("|"),")%")),p=Array.from(e.cache.keys()).filter((function(e){return h.test(e)})),m={},g={},y="";return p.map((function(t){var n=t.replace(h,"").replace(/%/g,"|"),r=t.split("%"),i=(0,o.default)(r,1)[0],s=(0,d[i])(e.cache.get(t)[1],m,{plain:a});if(!s)return null;var l=(0,o.default)(s,3),c=l[0],u=l[1],f=l[2];return t.startsWith("style")&&(g[n]=u),[c,f]})).filter(f).sort((function(e,t){return(0,o.default)(e,1)[0]-(0,o.default)(t,1)[0]})).forEach((function(e){var t=(0,o.default)(e,2)[1];y+=t})),y+=(0,c.toStyleStr)(".".concat(u.ATTR_CACHE_MAP,'{content:"').concat((0,u.serialize)(g),'";}'),void 0,void 0,(0,i.default)({},u.ATTR_CACHE_MAP,u.ATTR_CACHE_MAP),a)}},4522:(e,t,n)=>{"use strict";n.r(t),n.d(t,{CSS_VAR_PREFIX:()=>f,default:()=>p,extract:()=>h});var r=n(93324),o=n(89062),i=n(44958),a=n(36198),s=n(61052),l=n(43449),c=n(11154),u=n(6507),d=n(78195),f="cssVar",h=function(e,t,n){var o=(0,r.default)(e,4),i=o[1],a=o[2],s=o[3],c=(n||{}).plain;if(!i)return null;var u={"data-rc-order":"prependQueue","data-rc-priority":"".concat(-999)};return[-999,a,(0,l.toStyleStr)(i,s,a,u,c)]};const p=function(e,t){var n=e.key,h=e.prefix,p=e.unitless,m=e.ignore,g=e.token,y=e.scope,v=void 0===y?"":y,b=(0,a.useContext)(s.default),O=b.cache.instanceId,w=b.container,S=g._tokenKey,x=[].concat((0,o.default)(e.path),[n,v,S]);return(0,u.default)(f,x,(function(){var e=t(),o=(0,c.transformToken)(e,n,{prefix:h,unitless:p,ignore:m,scope:v}),i=(0,r.default)(o,2),a=i[0],s=i[1];return[a,s,(0,d.uniqueHash)(x,s),n]}),(function(e){var t=(0,r.default)(e,3)[2];l.isClientSide&&(0,i.removeCSS)(t,{mark:s.ATTR_MARK})}),(function(e){var t=(0,r.default)(e,3),o=t[1],a=t[2];if(o){var l=(0,i.updateCSS)(o,a,{mark:s.ATTR_MARK,prepend:"queue",attachTo:w,priority:-999});l[s.CSS_IN_JS_INSTANCE]=O,l.setAttribute(s.ATTR_TOKEN,n)}}))}},79942:(e,t,n)=>{"use strict";n.r(t),n.d(t,{TOKEN_PREFIX:()=>b,default:()=>O,extract:()=>w,getComputedToken:()=>v});var r=n(93324),o=n(89062),i=n(1413),a=n(62506),s=n(44958),l=n(36198),c=n(61052),u=n(43449),d=n(11154),f=n(6507),h={},p="css",m=new Map;var g=0;function y(e,t){m.set(e,(m.get(e)||0)-1);var n=Array.from(m.keys()),r=n.filter((function(e){return(m.get(e)||0)<=0}));n.length-r.length>g&&r.forEach((function(e){!function(e,t){"undefined"!=typeof document&&document.querySelectorAll("style[".concat(c.ATTR_TOKEN,'="').concat(e,'"]')).forEach((function(e){var n;e[c.CSS_IN_JS_INSTANCE]===t&&(null===(n=e.parentNode)||void 0===n||n.removeChild(e))}))}(e,t),m.delete(e)}))}var v=function(e,t,n,r){var o=n.getDerivativeToken(e),a=(0,i.default)((0,i.default)({},o),t);return r&&(a=r(a)),a},b="token";function O(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},g=(0,l.useContext)(c.default),O=g.cache.instanceId,w=g.container,S=n.salt,x=void 0===S?"":S,E=n.override,T=void 0===E?h:E,C=n.formatToken,P=n.getComputedToken,_=n.cssVar,k=(0,u.memoResult)((function(){return Object.assign.apply(Object,[{}].concat((0,o.default)(t)))}),t),j=(0,u.flattenToken)(k),A=(0,u.flattenToken)(T),R=_?(0,u.flattenToken)(_):"";return(0,f.default)(b,[x,e.id,j,A,R],(function(){var t,n=P?P(k,T,e):v(k,T,e,C),o=(0,i.default)({},n),s="";if(_){var l=(0,d.transformToken)(n,_.key,{prefix:_.prefix,ignore:_.ignore,unitless:_.unitless,preserve:_.preserve}),c=(0,r.default)(l,2);n=c[0],s=c[1]}var f=(0,u.token2key)(n,x);n._tokenKey=f,o._tokenKey=(0,u.token2key)(o,x);var h=null!==(t=null==_?void 0:_.key)&&void 0!==t?t:f;n._themeKey=h,function(e){m.set(e,(m.get(e)||0)+1)}(h);var g="".concat(p,"-").concat((0,a.default)(f));return n._hashId=g,[n,g,o,s,(null==_?void 0:_.key)||""]}),(function(e){y(e[0]._themeKey,O)}),(function(e){var t=(0,r.default)(e,4),n=t[0],o=t[3];if(_&&o){var i=(0,s.updateCSS)(o,(0,a.default)("css-variables-".concat(n._themeKey)),{mark:c.ATTR_MARK,prepend:"queue",attachTo:w,priority:-999});i[c.CSS_IN_JS_INSTANCE]=O,i.setAttribute(c.ATTR_TOKEN,n._themeKey)}}))}var w=function(e,t,n){var o=(0,r.default)(e,5),i=o[2],a=o[3],s=o[4],l=(n||{}).plain;if(!a)return null;var c=i._tokenKey,d={"data-rc-order":"prependQueue","data-rc-priority":"".concat(-999)};return[-999,c,(0,u.toStyleStr)(a,s,c,d,l)]}},28204:(e,t,n)=>{"use strict";var r;n.r(t),n.d(t,{default:()=>l});var o=n(1413),i=n(8410),a=n(36198),s=(0,o.default)({},r||(r=n.t(a,2))).useInsertionEffect;const l=s?function(e,t,n){return s((function(){return e(),t()}),n)}:function(e,t,n){a.useMemo(e,n),(0,i.default)((function(){return t(!0)}),n)}},31364:(e,t,n)=>{"use strict";var r;n.r(t),n.d(t,{default:()=>a});var o=n(1413),i=(n(80334),n(36198));const a=void 0!==(0,o.default)({},r||(r=n.t(i,2))).useInsertionEffect?function(e){var t=[],n=!1;return i.useEffect((function(){return n=!1,function(){n=!0,t.length&&t.forEach((function(e){return e()}))}}),e),function(e){n||t.push(e)}}:function(){return function(e){e()}}},6507:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>d});var r=n(93324),o=n(89062),i=n(36198),a=n(43481),s=n(61052),l=n(28204),c=n(31364),u=n(70265);function d(e,t,n,d,f){var h=i.useContext(s.default).cache,p=[e].concat((0,o.default)(t)),m=(0,a.pathKey)(p),g=(0,c.default)([m]),y=((0,u.default)(),function(e){h.opUpdate(m,(function(t){var o=t||[void 0,void 0],i=(0,r.default)(o,2),a=i[0];var s=[void 0===a?0:a,i[1]||n()];return e?e(s):s}))});i.useMemo((function(){y()}),[m]);var v=h.opGet(m)[1];return(0,l.default)((function(){null==f||f(v)}),(function(e){return y((function(t){var n=(0,r.default)(t,2),o=n[0],i=n[1];return e&&0===o&&(null==f||f(v)),[o+1,i]})),function(){h.opUpdate(m,(function(t){var n=t||[],o=(0,r.default)(n,2),i=o[0],a=void 0===i?0:i,s=o[1];return 0===a-1?(g((function(){!e&&h.opGet(m)||null==d||d(s,!1)})),null):[a-1,s]}))}}),[m]),v}},70265:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>r});const r=function(){return!1}},78195:(e,t,n)=>{"use strict";n.r(t),n.d(t,{STYLE_PREFIX:()=>x,default:()=>E,extract:()=>T,normalizeStyle:()=>b,parseStyle:()=>O,uniqueHash:()=>w});var r=n(87462),o=n(4942),i=n(1413),a=n(93324),s=n(89062),l=n(71002),c=n(62506),u=n(44958),d=n(36198),f=n(40351),h=n(40913),p=(n(56596),n(61052)),m=n(43449),g=n(58356),y=n(6507),v="_multi_value_";function b(e){return(0,h.serialize)((0,h.compile)(e),h.stringify).replace(/\{%%%\:[^;];}/g,";")}var O=function e(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{root:!0,parentSelectors:[]},o=r.root,c=r.injectHash,u=r.parentSelectors,d=n.hashId,h=n.layer,p=(n.path,n.hashPriority),m=n.transformers,g=void 0===m?[]:m,y=(n.linters,""),b={};function O(t){var r=t.getName(d);if(!b[r]){var o=e(t.style,n,{root:!1,parentSelectors:u}),i=(0,a.default)(o,1)[0];b[r]="@keyframes ".concat(t.getName(d)).concat(i)}}var w=function e(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[];return t.forEach((function(t){Array.isArray(t)?e(t,n):t&&n.push(t)})),n}(Array.isArray(t)?t:[t]);return w.forEach((function(t){var r="string"!=typeof t||o?t:{};if("string"==typeof r)y+="".concat(r,"\n");else if(r._keyframe)O(r);else{var h=g.reduce((function(e,t){var n;return(null==t||null===(n=t.visit)||void 0===n?void 0:n.call(t,e))||e}),r);Object.keys(h).forEach((function(t){var r=h[t];if("object"!==(0,l.default)(r)||!r||"animationName"===t&&r._keyframe||function(e){return"object"===(0,l.default)(e)&&e&&("_skip_check_"in e||v in e)}(r)){var m;function _(e,t){var n=e.replace(/[A-Z]/g,(function(e){return"-".concat(e.toLowerCase())})),r=t;f.default[e]||"number"!=typeof r||0===r||(r="".concat(r,"px")),"animationName"===e&&null!=t&&t._keyframe&&(O(t),r=t.getName(d)),y+="".concat(n,":").concat(r,";")}var g=null!==(m=null==r?void 0:r.value)&&void 0!==m?m:r;"object"===(0,l.default)(r)&&null!=r&&r[v]&&Array.isArray(g)?g.forEach((function(e){_(t,e)})):_(t,g)}else{var w=!1,S=t.trim(),x=!1;(o||c)&&d?S.startsWith("@")?w=!0:S=function(e,t,n){if(!t)return e;var r=".".concat(t),o="low"===n?":where(".concat(r,")"):r;return e.split(",").map((function(e){var t,n=e.trim().split(/\s+/),r=n[0]||"",i=(null===(t=r.match(/^\w+/))||void 0===t?void 0:t[0])||"";return[r="".concat(i).concat(o).concat(r.slice(i.length))].concat((0,s.default)(n.slice(1))).join(" ")})).join(",")}(t,d,p):!o||d||"&"!==S&&""!==S||(S="",x=!0);var E=e(r,n,{root:x,injectHash:w,parentSelectors:[].concat((0,s.default)(u),[S])}),T=(0,a.default)(E,2),C=T[0],P=T[1];b=(0,i.default)((0,i.default)({},b),P),y+="".concat(S).concat(C)}}))}})),o?h&&(y="@layer ".concat(h.name," {").concat(y,"}"),h.dependencies&&(b["@layer ".concat(h.name)]=h.dependencies.map((function(e){return"@layer ".concat(e,", ").concat(h.name,";")})).join("\n"))):y="{".concat(y,"}"),[y,b]};function w(e,t){return(0,c.default)("".concat(e.join("%")).concat(t))}function S(){return null}var x="style";function E(e,t){var n=e.token,l=e.path,c=e.hashId,f=e.layer,h=e.nonce,v=e.clientOnly,E=e.order,T=void 0===E?0:E,C=d.useContext(p.default),P=C.autoClear,_=(C.mock,C.defaultCache),k=C.hashPriority,j=C.container,A=C.ssrInline,R=C.transformers,D=C.linters,L=C.cache,I=C.layer,M=n._tokenKey,N=[M];I&&N.push("layer"),N.push.apply(N,(0,s.default)(l));var $=m.isClientSide;var B=(0,y.default)(x,N,(function(){var e=N.join("|");if((0,g.existPath)(e)){var n=(0,g.getStyleAndHash)(e),r=(0,a.default)(n,2),o=r[0],i=r[1];if(o)return[o,M,i,{},v,T]}var s=t(),u=O(s,{hashId:c,hashPriority:k,layer:I?f:void 0,path:l.join("-"),transformers:R,linters:D}),d=(0,a.default)(u,2),h=d[0],p=d[1],m=b(h),y=w(N,m);return[m,M,y,p,v,T]}),(function(e,t){var n=(0,a.default)(e,3)[2];(t||P)&&m.isClientSide&&(0,u.removeCSS)(n,{mark:p.ATTR_MARK})}),(function(e){var t=(0,a.default)(e,4),n=t[0],r=(t[1],t[2]),o=t[3];if($&&n!==g.CSS_FILE_STYLE){var s={mark:p.ATTR_MARK,prepend:!I&&"queue",attachTo:j,priority:T},l="function"==typeof h?h():h;l&&(s.csp={nonce:l});var c=[],d=[];Object.keys(o).forEach((function(e){e.startsWith("@layer")?c.push(e):d.push(e)})),c.forEach((function(e){(0,u.updateCSS)(b(o[e]),"_layer-".concat(e),(0,i.default)((0,i.default)({},s),{},{prepend:!0}))}));var f=(0,u.updateCSS)(n,r,s);f[p.CSS_IN_JS_INSTANCE]=L.instanceId,f.setAttribute(p.ATTR_TOKEN,M),d.forEach((function(e){(0,u.updateCSS)(b(o[e]),"_effect-".concat(e),s)}))}})),F=(0,a.default)(B,3),Q=F[0],z=F[1],V=F[2];return function(e){var t,n;A&&!$&&_?t=d.createElement("style",(0,r.default)({},(n={},(0,o.default)(n,p.ATTR_TOKEN,z),(0,o.default)(n,p.ATTR_MARK,V),n),{dangerouslySetInnerHTML:{__html:Q}})):t=d.createElement(S,null);return d.createElement(d.Fragment,null,t,e)}}var T=function(e,t,n){var r=(0,a.default)(e,6),o=r[0],i=r[1],s=r[2],l=r[3],c=r[4],u=r[5],d=(n||{}).plain;if(c)return null;var f=o,h={"data-rc-order":"prependQueue","data-rc-priority":"".concat(u)};return f=(0,m.toStyleStr)(o,i,s,h,d),l&&Object.keys(l).forEach((function(e){if(!t[e]){t[e]=!0;var n=b(l[e]),r=(0,m.toStyleStr)(n,i,"_effect-".concat(e),h,d);e.startsWith("@layer")?f=r+f:f+=r}})),[u,s,f]}},78419:(e,t,n)=>{"use strict";n.r(t),n.d(t,{Keyframes:()=>s.default,NaNLinter:()=>l.NaNLinter,StyleProvider:()=>c.StyleProvider,Theme:()=>u.Theme,_experimental:()=>m,createCache:()=>c.createCache,createTheme:()=>u.createTheme,extractStyle:()=>r.default,getComputedToken:()=>o.getComputedToken,legacyLogicalPropertiesTransformer:()=>d.default,legacyNotSelectorLinter:()=>l.legacyNotSelectorLinter,logicalPropertiesLinter:()=>l.logicalPropertiesLinter,parentSelectorLinter:()=>l.parentSelectorLinter,px2remTransformer:()=>f.default,token2CSSVar:()=>p.token2CSSVar,unit:()=>h.unit,useCSSVarRegister:()=>i.default,useCacheToken:()=>o.default,useStyleRegister:()=>a.default});var r=n(73098),o=n(79942),i=n(4522),a=n(78195),s=n(22236),l=n(56596),c=n(61052),u=n(81671),d=n(41202),f=n(10376),h=n(43449),p=n(11154),m={supportModernCSS:function(){return(0,h.supportWhere)()&&(0,h.supportLogicProps)()}}},76564:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>o});var r=n(88132);const o=function(e,t,n){("string"==typeof t&&/NaN/g.test(t)||Number.isNaN(t))&&(0,r.lintWarning)("Unexpected 'NaN' in property '".concat(e,": ").concat(t,"'."),n)}},82352:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>o});var r=n(88132);const o=function(e,t,n){if("content"===e){("string"!=typeof t||-1===["normal","none","initial","inherit","unset"].indexOf(t)&&!/(attr|counters?|url|(((repeating-)?(linear|radial))|conic)-gradient)\(|(no-)?(open|close)-quote/.test(t)&&(t.charAt(0)!==t.charAt(t.length-1)||'"'!==t.charAt(0)&&"'"!==t.charAt(0)))&&(0,r.lintWarning)("You seem to be using a value for 'content' without quotes, try replacing it with `content: '\"".concat(t,"\"'`."),n)}}},64238:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>o});var r=n(88132);const o=function(e,t,n){"animation"===e&&n.hashId&&"none"!==t&&(0,r.lintWarning)("You seem to be using hashed animation '".concat(t,"', in which case 'animationName' with Keyframe as value is recommended."),n)}},56596:(e,t,n)=>{"use strict";n.r(t),n.d(t,{NaNLinter:()=>s.default,contentQuotesLinter:()=>r.default,hashedAnimationLinter:()=>o.default,legacyNotSelectorLinter:()=>i.default,logicalPropertiesLinter:()=>a.default,parentSelectorLinter:()=>l.default});var r=n(82352),o=n(64238),i=n(41190),a=n(62745),s=n(76564),l=n(68102)},41190:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(88132);function o(e){var t;return((null===(t=e.match(/:not\(([^)]*)\)/))||void 0===t?void 0:t[1])||"").split(/(\[[^[]*])|(?=[.#])/).filter((function(e){return e})).length>1}const i=function(e,t,n){var i=function(e){return e.parentSelectors.reduce((function(e,t){return e?t.includes("&")?t.replace(/&/g,e):"".concat(e," ").concat(t):t}),"")}(n),a=i.match(/:not\([^)]*\)/g)||[];a.length>0&&a.some(o)&&(0,r.lintWarning)("Concat ':not' selector not support in legacy browsers.",n)}},62745:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>o});var r=n(88132);const o=function(e,t,n){switch(e){case"marginLeft":case"marginRight":case"paddingLeft":case"paddingRight":case"left":case"right":case"borderLeft":case"borderLeftWidth":case"borderLeftStyle":case"borderLeftColor":case"borderRight":case"borderRightWidth":case"borderRightStyle":case"borderRightColor":case"borderTopLeftRadius":case"borderTopRightRadius":case"borderBottomLeftRadius":case"borderBottomRightRadius":return void(0,r.lintWarning)("You seem to be using non-logical property '".concat(e,"' which is not compatible with RTL mode. Please use logical properties and values instead. For more information: https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Logical_Properties."),n);case"margin":case"padding":case"borderWidth":case"borderStyle":if("string"==typeof t){var o=t.split(" ").map((function(e){return e.trim()}));4===o.length&&o[1]!==o[3]&&(0,r.lintWarning)("You seem to be using '".concat(e,"' property with different left ").concat(e," and right ").concat(e,", which is not compatible with RTL mode. Please use logical properties and values instead. For more information: https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Logical_Properties."),n)}return;case"clear":case"textAlign":return void("left"!==t&&"right"!==t||(0,r.lintWarning)("You seem to be using non-logical value '".concat(t,"' of ").concat(e,", which is not compatible with RTL mode. Please use logical properties and values instead. For more information: https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Logical_Properties."),n));case"borderRadius":if("string"==typeof t)t.split("/").map((function(e){return e.trim()})).reduce((function(e,t){if(e)return e;var n=t.split(" ").map((function(e){return e.trim()}));return n.length>=2&&n[0]!==n[1]||(3===n.length&&n[1]!==n[2]||(4===n.length&&n[2]!==n[3]||e))}),!1)&&(0,r.lintWarning)("You seem to be using non-logical value '".concat(t,"' of ").concat(e,", which is not compatible with RTL mode. Please use logical properties and values instead. For more information: https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Logical_Properties."),n);return}}},68102:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>o});var r=n(88132);const o=function(e,t,n){n.parentSelectors.some((function(e){return e.split(",").some((function(e){return e.split("&").length>2}))}))&&(0,r.lintWarning)("Should not use more than one `&` in a selector.",n)}},88132:(e,t,n)=>{"use strict";n.r(t),n.d(t,{lintWarning:()=>o});var r=n(80334);function o(e,t){var n=t.path,o=t.parentSelectors;(0,r.default)(!1,"[Ant Design CSS-in-JS] ".concat(n?"Error in ".concat(n,": "):"").concat(e).concat(o.length?" Selector: ".concat(o.join(" | ")):""))}},80960:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>l});var r=n(15671),o=n(43144),i=n(4942),a=n(80334),s=0,l=function(){function e(t){(0,r.default)(this,e),(0,i.default)(this,"derivatives",void 0),(0,i.default)(this,"id",void 0),this.derivatives=Array.isArray(t)?t:[t],this.id=s,0===t.length&&(0,a.warning)(t.length>0,"[Ant Design CSS-in-JS] Theme should have at least one derivative function."),s+=1}return(0,o.default)(e,[{key:"getDerivativeToken",value:function(e){return this.derivatives.reduce((function(t,n){return n(e,t)}),void 0)}}]),e}()},34286:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>l,sameDerivativeOption:()=>s});var r=n(93324),o=n(15671),i=n(43144),a=n(4942);function s(e,t){if(e.length!==t.length)return!1;for(var n=0;n1&&void 0!==arguments[1]&&arguments[1],o={map:this.cache};return e.forEach((function(e){var t;o?o=null===(t=o)||void 0===t||null===(t=t.map)||void 0===t?void 0:t.get(e):o=void 0})),null!==(t=o)&&void 0!==t&&t.value&&r&&(o.value[1]=this.cacheCallTimes++),null===(n=o)||void 0===n?void 0:n.value}},{key:"get",value:function(e){var t;return null===(t=this.internalGet(e,!0))||void 0===t?void 0:t[0]}},{key:"has",value:function(e){return!!this.internalGet(e)}},{key:"set",value:function(t,n){var o=this;if(!this.has(t)){if(this.size()+1>e.MAX_CACHE_SIZE+e.MAX_CACHE_OFFSET){var i=this.keys.reduce((function(e,t){var n=(0,r.default)(e,2)[1];return o.internalGet(t)[1]{"use strict";n.r(t),n.d(t,{default:()=>a});var r=n(34286),o=n(80960),i=new r.default;function a(e){var t=Array.isArray(e)?e:[e];return i.has(t)||i.set(t,new o.default(t)),i.get(t)}},81671:(e,t,n)=>{"use strict";n.r(t),n.d(t,{Theme:()=>o.default,ThemeCache:()=>i.default,createTheme:()=>r.default});var r=n(3705),o=n(80960),i=n(34286)},41202:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>s});var r=n(93324);function o(e){return e.notSplit=!0,e}var i={inset:["top","right","bottom","left"],insetBlock:["top","bottom"],insetBlockStart:["top"],insetBlockEnd:["bottom"],insetInline:["left","right"],insetInlineStart:["left"],insetInlineEnd:["right"],marginBlock:["marginTop","marginBottom"],marginBlockStart:["marginTop"],marginBlockEnd:["marginBottom"],marginInline:["marginLeft","marginRight"],marginInlineStart:["marginLeft"],marginInlineEnd:["marginRight"],paddingBlock:["paddingTop","paddingBottom"],paddingBlockStart:["paddingTop"],paddingBlockEnd:["paddingBottom"],paddingInline:["paddingLeft","paddingRight"],paddingInlineStart:["paddingLeft"],paddingInlineEnd:["paddingRight"],borderBlock:o(["borderTop","borderBottom"]),borderBlockStart:o(["borderTop"]),borderBlockEnd:o(["borderBottom"]),borderInline:o(["borderLeft","borderRight"]),borderInlineStart:o(["borderLeft"]),borderInlineEnd:o(["borderRight"]),borderBlockWidth:["borderTopWidth","borderBottomWidth"],borderBlockStartWidth:["borderTopWidth"],borderBlockEndWidth:["borderBottomWidth"],borderInlineWidth:["borderLeftWidth","borderRightWidth"],borderInlineStartWidth:["borderLeftWidth"],borderInlineEndWidth:["borderRightWidth"],borderBlockStyle:["borderTopStyle","borderBottomStyle"],borderBlockStartStyle:["borderTopStyle"],borderBlockEndStyle:["borderBottomStyle"],borderInlineStyle:["borderLeftStyle","borderRightStyle"],borderInlineStartStyle:["borderLeftStyle"],borderInlineEndStyle:["borderRightStyle"],borderBlockColor:["borderTopColor","borderBottomColor"],borderBlockStartColor:["borderTopColor"],borderBlockEndColor:["borderBottomColor"],borderInlineColor:["borderLeftColor","borderRightColor"],borderInlineStartColor:["borderLeftColor"],borderInlineEndColor:["borderRightColor"],borderStartStartRadius:["borderTopLeftRadius"],borderStartEndRadius:["borderTopRightRadius"],borderEndStartRadius:["borderBottomLeftRadius"],borderEndEndRadius:["borderBottomRightRadius"]};function a(e,t){var n=e;return t&&(n="".concat(n," !important")),{_skip_check_:!0,value:n}}const s={visit:function(e){var t={};return Object.keys(e).forEach((function(n){var o=e[n],s=i[n];if(!s||"number"!=typeof o&&"string"!=typeof o)t[n]=o;else{var l=function(e){if("number"==typeof e)return[[e],!1];var t=String(e).trim(),n=t.match(/(.*)(!important)/),r=(n?n[1]:t).trim().split(/\s+/),o=[],i=0;return[r.reduce((function(e,t){if(t.includes("(")||t.includes(")")){var n=t.split("(").length-1,r=t.split(")").length-1;i+=n-r}return i>=0&&o.push(t),0===i&&(e.push(o.join(" ")),o=[]),e}),[]),!!n]}(o),c=(0,r.default)(l,2),u=c[0],d=c[1];s.length&&s.notSplit?s.forEach((function(e){t[e]=a(o,d)})):1===s.length?t[s[0]]=a(u[0],d):2===s.length?s.forEach((function(e,n){var r;t[e]=a(null!==(r=u[n])&&void 0!==r?r:u[0],d)})):4===s.length?s.forEach((function(e,n){var r,o;t[e]=a(null!==(r=null!==(o=u[n])&&void 0!==o?o:u[n-2])&&void 0!==r?r:u[0],d)})):t[n]=o}})),t}}},10376:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>s});var r=n(93324),o=n(1413),i=n(40351),a=/url\([^)]+\)|var\([^)]+\)|(\d*\.?\d+)px/g;const s=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=e.rootValue,n=void 0===t?16:t,s=e.precision,l=void 0===s?5:s,c=e.mediaQuery,u=void 0!==c&&c,d=function(e,t){if(!t)return e;var r=parseFloat(t);if(r<=1)return e;var o=function(e,t){var n=Math.pow(10,t+1),r=Math.floor(e*n);return 10*Math.round(r/10)/n}(r/n,l);return"".concat(o,"rem")};return{visit:function(e){var t=(0,o.default)({},e);return Object.entries(e).forEach((function(e){var n=(0,r.default)(e,2),o=n[0],s=n[1];if("string"==typeof s&&s.includes("px")){var l=s.replace(a,d);t[o]=l}i.default[o]||"number"!=typeof s||0===s||(t[o]="".concat(s,"px").replace(a,d));var c=o.trim();if(c.startsWith("@")&&c.includes("px")&&u){var f=o.replace(a,d);t[f]=t[o],delete t[o]}})),t}}}},58356:(e,t,n)=>{"use strict";n.r(t),n.d(t,{ATTR_CACHE_MAP:()=>s,CSS_FILE_STYLE:()=>l,existPath:()=>h,getStyleAndHash:()=>p,prepare:()=>f,reset:()=>d,serialize:()=>c});var r,o=n(93324),i=n(98924),a=n(61052),s="data-ant-cssinjs-cache-path",l="_FILE_STYLE__";function c(e){return Object.keys(e).map((function(t){var n=e[t];return"".concat(t,":").concat(n)})).join(";")}var u=!0;function d(e){r=e,u=!(arguments.length>1&&void 0!==arguments[1])||arguments[1]}function f(){if(!r&&(r={},(0,i.default)())){var e=document.createElement("div");e.className=s,e.style.position="fixed",e.style.visibility="hidden",e.style.top="-9999px",document.body.appendChild(e);var t=getComputedStyle(e).content||"";(t=t.replace(/^"/,"").replace(/"$/,"")).split(";").forEach((function(e){var t=e.split(":"),n=(0,o.default)(t,2),i=n[0],a=n[1];r[i]=a}));var n,a=document.querySelector("style[".concat(s,"]"));if(a)u=!1,null===(n=a.parentNode)||void 0===n||n.removeChild(a);document.body.removeChild(e)}}function h(e){return f(),!!r[e]}function p(e){var t=r[e],n=null;if(t&&(0,i.default)())if(u)n=l;else{var o=document.querySelector("style[".concat(a.ATTR_MARK,'="').concat(r[e],'"]'));o?n=o.innerHTML:delete r[e]}return[n,t]}},11154:(e,t,n)=>{"use strict";n.r(t),n.d(t,{serializeCSSVar:()=>i,token2CSSVar:()=>o,transformToken:()=>a});var r=n(93324),o=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"";return"--".concat(t?"".concat(t,"-"):"").concat(e).replace(/([a-z0-9])([A-Z])/g,"$1-$2").replace(/([A-Z]+)([A-Z][a-z0-9]+)/g,"$1-$2").replace(/([a-z])([A-Z0-9])/g,"$1-$2").toLowerCase()},i=function(e,t,n){return Object.keys(e).length?".".concat(t).concat(null!=n&&n.scope?".".concat(n.scope):"","{").concat(Object.entries(e).map((function(e){var t=(0,r.default)(e,2),n=t[0],o=t[1];return"".concat(n,":").concat(o,";")})).join(""),"}"):""},a=function(e,t,n){var a={},s={};return Object.entries(e).forEach((function(e){var t,i,l=(0,r.default)(e,2),c=l[0],u=l[1];if(null!=n&&null!==(t=n.preserve)&&void 0!==t&&t[c])s[c]=u;else if(!("string"!=typeof u&&"number"!=typeof u||null!=n&&null!==(i=n.ignore)&&void 0!==i&&i[c])){var d,f=o(c,null==n?void 0:n.prefix);a[f]="number"!=typeof u||null!=n&&null!==(d=n.unitless)&&void 0!==d&&d[c]?String(u):"".concat(u,"px"),s[c]="var(".concat(f,")")}})),[s,i(a,t,{scope:null==n?void 0:n.scope})]}},43449:(e,t,n)=>{"use strict";n.r(t),n.d(t,{flattenToken:()=>m,isClientSide:()=>C,memoResult:()=>h,supportLayer:()=>w,supportLogicProps:()=>T,supportWhere:()=>x,toStyleStr:()=>_,token2key:()=>g,unit:()=>P});var r=n(4942),o=n(1413),i=n(71002),a=n(62506),s=n(98924),l=n(44958),c=n(61052),u=n(81671),d=new WeakMap,f={};function h(e,t){for(var n=d,r=0;r1&&void 0!==arguments[1]&&arguments[1],n=p.get(e)||"";return n||(Object.keys(e).forEach((function(r){var o=e[r];n+=r,o instanceof u.Theme?n+=o.id:o&&"object"===(0,i.default)(o)?n+=m(o,t):n+=o})),t&&(n=(0,a.default)(n)),p.set(e,n)),n}function g(e,t){return(0,a.default)("".concat(t,"_").concat(m(e,!0)))}var y="random-".concat(Date.now(),"-").concat(Math.random()).replace(/\./g,""),v="_bAmBoO_";function b(e,t,n){if((0,s.default)()){var r,o;(0,l.updateCSS)(e,y);var i=document.createElement("div");i.style.position="fixed",i.style.left="0",i.style.top="0",null==t||t(i),document.body.appendChild(i);var a=n?n(i):null===(r=getComputedStyle(i).content)||void 0===r?void 0:r.includes(v);return null===(o=i.parentNode)||void 0===o||o.removeChild(i),(0,l.removeCSS)(y),a}return!1}var O=void 0;function w(){return void 0===O&&(O=b("@layer ".concat(y," { .").concat(y,' { content: "').concat(v,'"!important; } }'),(function(e){e.className=y}))),O}var S=void 0;function x(){return void 0===S&&(S=b(":where(.".concat(y,') { content: "').concat(v,'"!important; }'),(function(e){e.className=y}))),S}var E=void 0;function T(){return void 0===E&&(E=b(".".concat(y," { inset-block: 93px !important; }"),(function(e){e.className=y}),(function(e){return"93px"===getComputedStyle(e).bottom}))),E}var C=(0,s.default)();function P(e){return"number"==typeof e?"".concat(e,"px"):e}function _(e,t,n){var i,a=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{};if(arguments.length>4&&void 0!==arguments[4]&&arguments[4])return e;var s=(0,o.default)((0,o.default)({},a),{},(i={},(0,r.default)(i,c.ATTR_TOKEN,t),(0,r.default)(i,c.ATTR_MARK,n),i)),l=Object.keys(s).map((function(e){var t=s[e];return t?"".concat(e,'="').concat(t,'"'):null})).filter((function(e){return e})).join(" ");return"")}},1085:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>r});const r={icon:{tag:"svg",attrs:{"fill-rule":"evenodd",viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M512 64c247.4 0 448 200.6 448 448S759.4 960 512 960 64 759.4 64 512 264.6 64 512 64zm127.98 274.82h-.04l-.08.06L512 466.75 384.14 338.88c-.04-.05-.06-.06-.08-.06a.12.12 0 00-.07 0c-.03 0-.05.01-.09.05l-45.02 45.02a.2.2 0 00-.05.09.12.12 0 000 .07v.02a.27.27 0 00.06.06L466.75 512 338.88 639.86c-.05.04-.06.06-.06.08a.12.12 0 000 .07c0 .03.01.05.05.09l45.02 45.02a.2.2 0 00.09.05.12.12 0 00.07 0c.02 0 .04-.01.08-.05L512 557.25l127.86 127.87c.04.04.06.05.08.05a.12.12 0 00.07 0c.03 0 .05-.01.09-.05l45.02-45.02a.2.2 0 00.05-.09.12.12 0 000-.07v-.02a.27.27 0 00-.05-.06L557.25 512l127.87-127.86c.04-.04.05-.06.05-.08a.12.12 0 000-.07c0-.03-.01-.05-.05-.09l-45.02-45.02a.2.2 0 00-.09-.05.12.12 0 00-.07 0z"}}]},name:"close-circle",theme:"filled"}},15294:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>r});const r={icon:{tag:"svg",attrs:{viewBox:"0 0 1024 1024",focusable:"false"},children:[{tag:"path",attrs:{d:"M988 548c-19.9 0-36-16.1-36-36 0-59.4-11.6-117-34.6-171.3a440.45 440.45 0 00-94.3-139.9 437.71 437.71 0 00-139.9-94.3C629 83.6 571.4 72 512 72c-19.9 0-36-16.1-36-36s16.1-36 36-36c69.1 0 136.2 13.5 199.3 40.3C772.3 66 827 103 874 150c47 47 83.9 101.8 109.7 162.7 26.7 63.1 40.2 130.2 40.2 199.3.1 19.9-16 36-35.9 36z"}}]},name:"loading",theme:"outlined"}},509:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>r});const r={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M909.6 854.5L649.9 594.8C690.2 542.7 712 479 712 412c0-80.2-31.3-155.4-87.9-212.1-56.6-56.7-132-87.9-212.1-87.9s-155.5 31.3-212.1 87.9C143.2 256.5 112 331.8 112 412c0 80.1 31.3 155.5 87.9 212.1C256.5 680.8 331.8 712 412 712c67 0 130.6-21.8 182.7-62l259.7 259.6a8.2 8.2 0 0011.6 0l43.6-43.5a8.2 8.2 0 000-11.6zM570.4 570.4C528 612.7 471.8 636 412 636s-116-23.3-158.4-65.6C211.3 528 188 471.8 188 412s23.3-116.1 65.6-158.4C296 211.3 352.2 188 412 188s116.1 23.2 158.4 65.6S636 352.2 636 412s-23.3 116.1-65.6 158.4z"}}]},name:"search",theme:"outlined"}},13401:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>y});var r=n(87462),o=n(93324),i=n(4942),a=n(45987),s=n(36198),l=n(93967),c=n.n(l),u=n(11305),d=n(63017),f=n(58784),h=n(59068),p=n(41755),m=["className","icon","spin","rotate","tabIndex","onClick","twoToneColor"];(0,h.setTwoToneColor)(u.blue.primary);var g=s.forwardRef((function(e,t){var n=e.className,l=e.icon,u=e.spin,h=e.rotate,g=e.tabIndex,y=e.onClick,v=e.twoToneColor,b=(0,a.default)(e,m),O=s.useContext(d.default),w=O.prefixCls,S=void 0===w?"anticon":w,x=O.rootClassName,E=c()(x,S,(0,i.default)((0,i.default)({},"".concat(S,"-").concat(l.name),!!l.name),"".concat(S,"-spin"),!!u||"loading"===l.name),n),T=g;void 0===T&&y&&(T=-1);var C=h?{msTransform:"rotate(".concat(h,"deg)"),transform:"rotate(".concat(h,"deg)")}:void 0,P=(0,p.normalizeTwoToneColors)(v),_=(0,o.default)(P,2),k=_[0],j=_[1];return s.createElement("span",(0,r.default)({role:"img","aria-label":l.name},b,{ref:t,tabIndex:T,onClick:y,className:E}),s.createElement(f.default,{icon:l,primaryColor:k,secondaryColor:j,style:C}))}));g.displayName="AntdIcon",g.getTwoToneColor=h.getTwoToneColor,g.setTwoToneColor=h.setTwoToneColor;const y=g},63017:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>r});const r=(0,n(36198).createContext)({})},58784:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>u});var r=n(45987),o=n(1413),i=n(36198),a=n(41755),s=["icon","className","onClick","style","primaryColor","secondaryColor"],l={primaryColor:"#333",secondaryColor:"#E6E6E6",calculated:!1};var c=function(e){var t=e.icon,n=e.className,c=e.onClick,u=e.style,d=e.primaryColor,f=e.secondaryColor,h=(0,r.default)(e,s),p=i.useRef(),m=l;if(d&&(m={primaryColor:d,secondaryColor:f||(0,a.getSecondaryColor)(d)}),(0,a.useInsertStyles)(p),(0,a.warning)((0,a.isIconDefinition)(t),"icon should be icon definiton, but got ".concat(t)),!(0,a.isIconDefinition)(t))return null;var g=t;return g&&"function"==typeof g.icon&&(g=(0,o.default)((0,o.default)({},g),{},{icon:g.icon(m.primaryColor,m.secondaryColor)})),(0,a.generate)(g.icon,"svg-".concat(g.name),(0,o.default)((0,o.default)({className:n,onClick:c,style:u,"data-icon":g.name,width:"1em",height:"1em",fill:"currentColor","aria-hidden":"true"},h),{},{ref:p}))};c.displayName="IconReact",c.getTwoToneColors=function(){return(0,o.default)({},l)},c.setTwoToneColors=function(e){var t=e.primaryColor,n=e.secondaryColor;l.primaryColor=t,l.secondaryColor=n||(0,a.getSecondaryColor)(t),l.calculated=!!n};const u=c},59068:(e,t,n)=>{"use strict";n.r(t),n.d(t,{getTwoToneColor:()=>s,setTwoToneColor:()=>a});var r=n(93324),o=n(58784),i=n(41755);function a(e){var t=(0,i.normalizeTwoToneColors)(e),n=(0,r.default)(t,2),a=n[0],s=n[1];return o.default.setTwoToneColors({primaryColor:a,secondaryColor:s})}function s(){var e=o.default.getTwoToneColors();return e.calculated?[e.primaryColor,e.secondaryColor]:e.primaryColor}},8913:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>l});var r=n(87462),o=n(36198),i=n(1085),a=n(13401),s=function(e,t){return o.createElement(a.default,(0,r.default)({},e,{ref:t,icon:i.default}))};const l=o.forwardRef(s)},79090:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>l});var r=n(87462),o=n(36198),i=n(15294),a=n(13401),s=function(e,t){return o.createElement(a.default,(0,r.default)({},e,{ref:t,icon:i.default}))};const l=o.forwardRef(s)},40110:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>l});var r=n(87462),o=n(36198),i=n(509),a=n(13401),s=function(e,t){return o.createElement(a.default,(0,r.default)({},e,{ref:t,icon:i.default}))};const l=o.forwardRef(s)},41755:(e,t,n)=>{"use strict";n.r(t),n.d(t,{generate:()=>p,getSecondaryColor:()=>m,iconStyles:()=>v,isIconDefinition:()=>f,normalizeAttrs:()=>h,normalizeTwoToneColors:()=>g,svgBaseProps:()=>y,useInsertStyles:()=>b,warning:()=>d});var r=n(1413),o=n(71002),i=n(11305),a=n(44958),s=n(27571),l=n(80334),c=n(36198),u=n(63017);function d(e,t){(0,l.default)(e,"[@ant-design/icons] ".concat(t))}function f(e){return"object"===(0,o.default)(e)&&"string"==typeof e.name&&"string"==typeof e.theme&&("object"===(0,o.default)(e.icon)||"function"==typeof e.icon)}function h(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return Object.keys(e).reduce((function(t,n){var r,o=e[n];if("class"===n)t.className=o,delete t.class;else delete t[n],t[(r=n,r.replace(/-(.)/g,(function(e,t){return t.toUpperCase()})))]=o;return t}),{})}function p(e,t,n){return n?c.createElement(e.tag,(0,r.default)((0,r.default)({key:t},h(e.attrs)),n),(e.children||[]).map((function(n,r){return p(n,"".concat(t,"-").concat(e.tag,"-").concat(r))}))):c.createElement(e.tag,(0,r.default)({key:t},h(e.attrs)),(e.children||[]).map((function(n,r){return p(n,"".concat(t,"-").concat(e.tag,"-").concat(r))})))}function m(e){return(0,i.generate)(e)[0]}function g(e){return e?Array.isArray(e)?e:[e]:[]}var y={width:"1em",height:"1em",fill:"currentColor","aria-hidden":"true",focusable:"false"},v="\n.anticon {\n display: inline-flex;\n align-items: center;\n color: inherit;\n font-style: normal;\n line-height: 0;\n text-align: center;\n text-transform: none;\n vertical-align: -0.125em;\n text-rendering: optimizeLegibility;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n\n.anticon > * {\n line-height: 1;\n}\n\n.anticon svg {\n display: inline-block;\n}\n\n.anticon::before {\n display: none;\n}\n\n.anticon .anticon-icon {\n display: block;\n}\n\n.anticon[tabindex] {\n cursor: pointer;\n}\n\n.anticon-spin::before,\n.anticon-spin {\n display: inline-block;\n -webkit-animation: loadingCircle 1s infinite linear;\n animation: loadingCircle 1s infinite linear;\n}\n\n@-webkit-keyframes loadingCircle {\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n\n@keyframes loadingCircle {\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n",b=function(e){var t=(0,c.useContext)(u.default),n=t.csp,r=t.prefixCls,o=v;r&&(o=o.replace(/anticon/g,r)),(0,c.useEffect)((function(){var t=e.current,r=(0,s.getShadowRoot)(t);(0,a.updateCSS)(o,"@ant-design-icons",{prepend:!0,csp:n,attachTo:r})}),[])}},86500:(e,t,n)=>{"use strict";n.r(t),n.d(t,{convertDecimalToHex:()=>h,convertHexToDecimal:()=>p,hslToRgb:()=>s,hsvToRgb:()=>c,numberInputToObject:()=>g,parseIntFromHex:()=>m,rgbToHex:()=>u,rgbToHsl:()=>i,rgbToHsv:()=>l,rgbToRgb:()=>o,rgbaToArgbHex:()=>f,rgbaToHex:()=>d});var r=n(90279);function o(e,t,n){return{r:255*(0,r.bound01)(e,255),g:255*(0,r.bound01)(t,255),b:255*(0,r.bound01)(n,255)}}function i(e,t,n){e=(0,r.bound01)(e,255),t=(0,r.bound01)(t,255),n=(0,r.bound01)(n,255);var o=Math.max(e,t,n),i=Math.min(e,t,n),a=0,s=0,l=(o+i)/2;if(o===i)s=0,a=0;else{var c=o-i;switch(s=l>.5?c/(2-o-i):c/(o+i),o){case e:a=(t-n)/c+(t1&&(n-=1),n<1/6?e+6*n*(t-e):n<.5?t:n<2/3?e+(t-e)*(2/3-n)*6:e}function s(e,t,n){var o,i,s;if(e=(0,r.bound01)(e,360),t=(0,r.bound01)(t,100),n=(0,r.bound01)(n,100),0===t)i=n,s=n,o=n;else{var l=n<.5?n*(1+t):n+t-n*t,c=2*n-l;o=a(c,l,e+1/3),i=a(c,l,e),s=a(c,l,e-1/3)}return{r:255*o,g:255*i,b:255*s}}function l(e,t,n){e=(0,r.bound01)(e,255),t=(0,r.bound01)(t,255),n=(0,r.bound01)(n,255);var o=Math.max(e,t,n),i=Math.min(e,t,n),a=0,s=o,l=o-i,c=0===o?0:l/o;if(o===i)a=0;else{switch(o){case e:a=(t-n)/l+(t>16,g:(65280&e)>>8,b:255&e}}},48701:(e,t,n)=>{"use strict";n.r(t),n.d(t,{names:()=>r});var r={aliceblue:"#f0f8ff",antiquewhite:"#faebd7",aqua:"#00ffff",aquamarine:"#7fffd4",azure:"#f0ffff",beige:"#f5f5dc",bisque:"#ffe4c4",black:"#000000",blanchedalmond:"#ffebcd",blue:"#0000ff",blueviolet:"#8a2be2",brown:"#a52a2a",burlywood:"#deb887",cadetblue:"#5f9ea0",chartreuse:"#7fff00",chocolate:"#d2691e",coral:"#ff7f50",cornflowerblue:"#6495ed",cornsilk:"#fff8dc",crimson:"#dc143c",cyan:"#00ffff",darkblue:"#00008b",darkcyan:"#008b8b",darkgoldenrod:"#b8860b",darkgray:"#a9a9a9",darkgreen:"#006400",darkgrey:"#a9a9a9",darkkhaki:"#bdb76b",darkmagenta:"#8b008b",darkolivegreen:"#556b2f",darkorange:"#ff8c00",darkorchid:"#9932cc",darkred:"#8b0000",darksalmon:"#e9967a",darkseagreen:"#8fbc8f",darkslateblue:"#483d8b",darkslategray:"#2f4f4f",darkslategrey:"#2f4f4f",darkturquoise:"#00ced1",darkviolet:"#9400d3",deeppink:"#ff1493",deepskyblue:"#00bfff",dimgray:"#696969",dimgrey:"#696969",dodgerblue:"#1e90ff",firebrick:"#b22222",floralwhite:"#fffaf0",forestgreen:"#228b22",fuchsia:"#ff00ff",gainsboro:"#dcdcdc",ghostwhite:"#f8f8ff",goldenrod:"#daa520",gold:"#ffd700",gray:"#808080",green:"#008000",greenyellow:"#adff2f",grey:"#808080",honeydew:"#f0fff0",hotpink:"#ff69b4",indianred:"#cd5c5c",indigo:"#4b0082",ivory:"#fffff0",khaki:"#f0e68c",lavenderblush:"#fff0f5",lavender:"#e6e6fa",lawngreen:"#7cfc00",lemonchiffon:"#fffacd",lightblue:"#add8e6",lightcoral:"#f08080",lightcyan:"#e0ffff",lightgoldenrodyellow:"#fafad2",lightgray:"#d3d3d3",lightgreen:"#90ee90",lightgrey:"#d3d3d3",lightpink:"#ffb6c1",lightsalmon:"#ffa07a",lightseagreen:"#20b2aa",lightskyblue:"#87cefa",lightslategray:"#778899",lightslategrey:"#778899",lightsteelblue:"#b0c4de",lightyellow:"#ffffe0",lime:"#00ff00",limegreen:"#32cd32",linen:"#faf0e6",magenta:"#ff00ff",maroon:"#800000",mediumaquamarine:"#66cdaa",mediumblue:"#0000cd",mediumorchid:"#ba55d3",mediumpurple:"#9370db",mediumseagreen:"#3cb371",mediumslateblue:"#7b68ee",mediumspringgreen:"#00fa9a",mediumturquoise:"#48d1cc",mediumvioletred:"#c71585",midnightblue:"#191970",mintcream:"#f5fffa",mistyrose:"#ffe4e1",moccasin:"#ffe4b5",navajowhite:"#ffdead",navy:"#000080",oldlace:"#fdf5e6",olive:"#808000",olivedrab:"#6b8e23",orange:"#ffa500",orangered:"#ff4500",orchid:"#da70d6",palegoldenrod:"#eee8aa",palegreen:"#98fb98",paleturquoise:"#afeeee",palevioletred:"#db7093",papayawhip:"#ffefd5",peachpuff:"#ffdab9",peru:"#cd853f",pink:"#ffc0cb",plum:"#dda0dd",powderblue:"#b0e0e6",purple:"#800080",rebeccapurple:"#663399",red:"#ff0000",rosybrown:"#bc8f8f",royalblue:"#4169e1",saddlebrown:"#8b4513",salmon:"#fa8072",sandybrown:"#f4a460",seagreen:"#2e8b57",seashell:"#fff5ee",sienna:"#a0522d",silver:"#c0c0c0",skyblue:"#87ceeb",slateblue:"#6a5acd",slategray:"#708090",slategrey:"#708090",snow:"#fffafa",springgreen:"#00ff7f",steelblue:"#4682b4",tan:"#d2b48c",teal:"#008080",thistle:"#d8bfd8",tomato:"#ff6347",turquoise:"#40e0d0",violet:"#ee82ee",wheat:"#f5deb3",white:"#ffffff",whitesmoke:"#f5f5f5",yellow:"#ffff00",yellowgreen:"#9acd32"}},1350:(e,t,n)=>{"use strict";n.r(t),n.d(t,{inputToRGB:()=>a,isValidCSSUnit:()=>f,stringInputToObject:()=>d});var r=n(86500),o=n(48701),i=n(90279);function a(e){var t={r:0,g:0,b:0},n=1,o=null,a=null,s=null,l=!1,c=!1;return"string"==typeof e&&(e=d(e)),"object"==typeof e&&(f(e.r)&&f(e.g)&&f(e.b)?(t=(0,r.rgbToRgb)(e.r,e.g,e.b),l=!0,c="%"===String(e.r).substr(-1)?"prgb":"rgb"):f(e.h)&&f(e.s)&&f(e.v)?(o=(0,i.convertToPercentage)(e.s),a=(0,i.convertToPercentage)(e.v),t=(0,r.hsvToRgb)(e.h,o,a),l=!0,c="hsv"):f(e.h)&&f(e.s)&&f(e.l)&&(o=(0,i.convertToPercentage)(e.s),s=(0,i.convertToPercentage)(e.l),t=(0,r.hslToRgb)(e.h,o,s),l=!0,c="hsl"),Object.prototype.hasOwnProperty.call(e,"a")&&(n=e.a)),n=(0,i.boundAlpha)(n),{ok:l,format:e.format||c,r:Math.min(255,Math.max(t.r,0)),g:Math.min(255,Math.max(t.g,0)),b:Math.min(255,Math.max(t.b,0)),a:n}}var s="(?:".concat("[-\\+]?\\d*\\.\\d+%?",")|(?:").concat("[-\\+]?\\d+%?",")"),l="[\\s|\\(]+(".concat(s,")[,|\\s]+(").concat(s,")[,|\\s]+(").concat(s,")\\s*\\)?"),c="[\\s|\\(]+(".concat(s,")[,|\\s]+(").concat(s,")[,|\\s]+(").concat(s,")[,|\\s]+(").concat(s,")\\s*\\)?"),u={CSS_UNIT:new RegExp(s),rgb:new RegExp("rgb"+l),rgba:new RegExp("rgba"+c),hsl:new RegExp("hsl"+l),hsla:new RegExp("hsla"+c),hsv:new RegExp("hsv"+l),hsva:new RegExp("hsva"+c),hex3:/^#?([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,hex6:/^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/,hex4:/^#?([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,hex8:/^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/};function d(e){if(0===(e=e.trim().toLowerCase()).length)return!1;var t=!1;if(o.names[e])e=o.names[e],t=!0;else if("transparent"===e)return{r:0,g:0,b:0,a:0,format:"name"};var n=u.rgb.exec(e);return n?{r:n[1],g:n[2],b:n[3]}:(n=u.rgba.exec(e))?{r:n[1],g:n[2],b:n[3],a:n[4]}:(n=u.hsl.exec(e))?{h:n[1],s:n[2],l:n[3]}:(n=u.hsla.exec(e))?{h:n[1],s:n[2],l:n[3],a:n[4]}:(n=u.hsv.exec(e))?{h:n[1],s:n[2],v:n[3]}:(n=u.hsva.exec(e))?{h:n[1],s:n[2],v:n[3],a:n[4]}:(n=u.hex8.exec(e))?{r:(0,r.parseIntFromHex)(n[1]),g:(0,r.parseIntFromHex)(n[2]),b:(0,r.parseIntFromHex)(n[3]),a:(0,r.convertHexToDecimal)(n[4]),format:t?"name":"hex8"}:(n=u.hex6.exec(e))?{r:(0,r.parseIntFromHex)(n[1]),g:(0,r.parseIntFromHex)(n[2]),b:(0,r.parseIntFromHex)(n[3]),format:t?"name":"hex"}:(n=u.hex4.exec(e))?{r:(0,r.parseIntFromHex)(n[1]+n[1]),g:(0,r.parseIntFromHex)(n[2]+n[2]),b:(0,r.parseIntFromHex)(n[3]+n[3]),a:(0,r.convertHexToDecimal)(n[4]+n[4]),format:t?"name":"hex8"}:!!(n=u.hex3.exec(e))&&{r:(0,r.parseIntFromHex)(n[1]+n[1]),g:(0,r.parseIntFromHex)(n[2]+n[2]),b:(0,r.parseIntFromHex)(n[3]+n[3]),format:t?"name":"hex"}}function f(e){return Boolean(u.CSS_UNIT.exec(String(e)))}},98840:(e,t,n)=>{"use strict";n.r(t),n.d(t,{fromRatio:()=>i,legacyRandom:()=>a});var r=n(10274),o=n(90279);function i(e,t){var n={r:(0,o.convertToPercentage)(e.r),g:(0,o.convertToPercentage)(e.g),b:(0,o.convertToPercentage)(e.b)};return void 0!==e.a&&(n.a=Number(e.a)),new r.TinyColor(n,t)}function a(){return new r.TinyColor({r:Math.random(),g:Math.random(),b:Math.random()})}},10274:(e,t,n)=>{"use strict";n.r(t),n.d(t,{TinyColor:()=>s,tinycolor:()=>l});var r=n(86500),o=n(48701),i=n(1350),a=n(90279),s=function(){function e(t,n){var o;if(void 0===t&&(t=""),void 0===n&&(n={}),t instanceof e)return t;"number"==typeof t&&(t=(0,r.numberInputToObject)(t)),this.originalInput=t;var a=(0,i.inputToRGB)(t);this.originalInput=t,this.r=a.r,this.g=a.g,this.b=a.b,this.a=a.a,this.roundA=Math.round(100*this.a)/100,this.format=null!==(o=n.format)&&void 0!==o?o:a.format,this.gradientType=n.gradientType,this.r<1&&(this.r=Math.round(this.r)),this.g<1&&(this.g=Math.round(this.g)),this.b<1&&(this.b=Math.round(this.b)),this.isValid=a.ok}return e.prototype.isDark=function(){return this.getBrightness()<128},e.prototype.isLight=function(){return!this.isDark()},e.prototype.getBrightness=function(){var e=this.toRgb();return(299*e.r+587*e.g+114*e.b)/1e3},e.prototype.getLuminance=function(){var e=this.toRgb(),t=e.r/255,n=e.g/255,r=e.b/255;return.2126*(t<=.03928?t/12.92:Math.pow((t+.055)/1.055,2.4))+.7152*(n<=.03928?n/12.92:Math.pow((n+.055)/1.055,2.4))+.0722*(r<=.03928?r/12.92:Math.pow((r+.055)/1.055,2.4))},e.prototype.getAlpha=function(){return this.a},e.prototype.setAlpha=function(e){return this.a=(0,a.boundAlpha)(e),this.roundA=Math.round(100*this.a)/100,this},e.prototype.isMonochrome=function(){return 0===this.toHsl().s},e.prototype.toHsv=function(){var e=(0,r.rgbToHsv)(this.r,this.g,this.b);return{h:360*e.h,s:e.s,v:e.v,a:this.a}},e.prototype.toHsvString=function(){var e=(0,r.rgbToHsv)(this.r,this.g,this.b),t=Math.round(360*e.h),n=Math.round(100*e.s),o=Math.round(100*e.v);return 1===this.a?"hsv(".concat(t,", ").concat(n,"%, ").concat(o,"%)"):"hsva(".concat(t,", ").concat(n,"%, ").concat(o,"%, ").concat(this.roundA,")")},e.prototype.toHsl=function(){var e=(0,r.rgbToHsl)(this.r,this.g,this.b);return{h:360*e.h,s:e.s,l:e.l,a:this.a}},e.prototype.toHslString=function(){var e=(0,r.rgbToHsl)(this.r,this.g,this.b),t=Math.round(360*e.h),n=Math.round(100*e.s),o=Math.round(100*e.l);return 1===this.a?"hsl(".concat(t,", ").concat(n,"%, ").concat(o,"%)"):"hsla(".concat(t,", ").concat(n,"%, ").concat(o,"%, ").concat(this.roundA,")")},e.prototype.toHex=function(e){return void 0===e&&(e=!1),(0,r.rgbToHex)(this.r,this.g,this.b,e)},e.prototype.toHexString=function(e){return void 0===e&&(e=!1),"#"+this.toHex(e)},e.prototype.toHex8=function(e){return void 0===e&&(e=!1),(0,r.rgbaToHex)(this.r,this.g,this.b,this.a,e)},e.prototype.toHex8String=function(e){return void 0===e&&(e=!1),"#"+this.toHex8(e)},e.prototype.toHexShortString=function(e){return void 0===e&&(e=!1),1===this.a?this.toHexString(e):this.toHex8String(e)},e.prototype.toRgb=function(){return{r:Math.round(this.r),g:Math.round(this.g),b:Math.round(this.b),a:this.a}},e.prototype.toRgbString=function(){var e=Math.round(this.r),t=Math.round(this.g),n=Math.round(this.b);return 1===this.a?"rgb(".concat(e,", ").concat(t,", ").concat(n,")"):"rgba(".concat(e,", ").concat(t,", ").concat(n,", ").concat(this.roundA,")")},e.prototype.toPercentageRgb=function(){var e=function(e){return"".concat(Math.round(100*(0,a.bound01)(e,255)),"%")};return{r:e(this.r),g:e(this.g),b:e(this.b),a:this.a}},e.prototype.toPercentageRgbString=function(){var e=function(e){return Math.round(100*(0,a.bound01)(e,255))};return 1===this.a?"rgb(".concat(e(this.r),"%, ").concat(e(this.g),"%, ").concat(e(this.b),"%)"):"rgba(".concat(e(this.r),"%, ").concat(e(this.g),"%, ").concat(e(this.b),"%, ").concat(this.roundA,")")},e.prototype.toName=function(){if(0===this.a)return"transparent";if(this.a<1)return!1;for(var e="#"+(0,r.rgbToHex)(this.r,this.g,this.b,!1),t=0,n=Object.entries(o.names);t=0;return t||!r||!e.startsWith("hex")&&"name"!==e?("rgb"===e&&(n=this.toRgbString()),"prgb"===e&&(n=this.toPercentageRgbString()),"hex"!==e&&"hex6"!==e||(n=this.toHexString()),"hex3"===e&&(n=this.toHexString(!0)),"hex4"===e&&(n=this.toHex8String(!0)),"hex8"===e&&(n=this.toHex8String()),"name"===e&&(n=this.toName()),"hsl"===e&&(n=this.toHslString()),"hsv"===e&&(n=this.toHsvString()),n||this.toHexString()):"name"===e&&0===this.a?this.toName():this.toRgbString()},e.prototype.toNumber=function(){return(Math.round(this.r)<<16)+(Math.round(this.g)<<8)+Math.round(this.b)},e.prototype.clone=function(){return new e(this.toString())},e.prototype.lighten=function(t){void 0===t&&(t=10);var n=this.toHsl();return n.l+=t/100,n.l=(0,a.clamp01)(n.l),new e(n)},e.prototype.brighten=function(t){void 0===t&&(t=10);var n=this.toRgb();return n.r=Math.max(0,Math.min(255,n.r-Math.round(-t/100*255))),n.g=Math.max(0,Math.min(255,n.g-Math.round(-t/100*255))),n.b=Math.max(0,Math.min(255,n.b-Math.round(-t/100*255))),new e(n)},e.prototype.darken=function(t){void 0===t&&(t=10);var n=this.toHsl();return n.l-=t/100,n.l=(0,a.clamp01)(n.l),new e(n)},e.prototype.tint=function(e){return void 0===e&&(e=10),this.mix("white",e)},e.prototype.shade=function(e){return void 0===e&&(e=10),this.mix("black",e)},e.prototype.desaturate=function(t){void 0===t&&(t=10);var n=this.toHsl();return n.s-=t/100,n.s=(0,a.clamp01)(n.s),new e(n)},e.prototype.saturate=function(t){void 0===t&&(t=10);var n=this.toHsl();return n.s+=t/100,n.s=(0,a.clamp01)(n.s),new e(n)},e.prototype.greyscale=function(){return this.desaturate(100)},e.prototype.spin=function(t){var n=this.toHsl(),r=(n.h+t)%360;return n.h=r<0?360+r:r,new e(n)},e.prototype.mix=function(t,n){void 0===n&&(n=50);var r=this.toRgb(),o=new e(t).toRgb(),i=n/100;return new e({r:(o.r-r.r)*i+r.r,g:(o.g-r.g)*i+r.g,b:(o.b-r.b)*i+r.b,a:(o.a-r.a)*i+r.a})},e.prototype.analogous=function(t,n){void 0===t&&(t=6),void 0===n&&(n=30);var r=this.toHsl(),o=360/n,i=[this];for(r.h=(r.h-(o*t>>1)+720)%360;--t;)r.h=(r.h+o)%360,i.push(new e(r));return i},e.prototype.complement=function(){var t=this.toHsl();return t.h=(t.h+180)%360,new e(t)},e.prototype.monochromatic=function(t){void 0===t&&(t=6);for(var n=this.toHsv(),r=n.h,o=n.s,i=n.v,a=[],s=1/t;t--;)a.push(new e({h:r,s:o,v:i})),i=(i+s)%1;return a},e.prototype.splitcomplement=function(){var t=this.toHsl(),n=t.h;return[this,new e({h:(n+72)%360,s:t.s,l:t.l}),new e({h:(n+216)%360,s:t.s,l:t.l})]},e.prototype.onBackground=function(t){var n=this.toRgb(),r=new e(t).toRgb(),o=n.a+r.a*(1-n.a);return new e({r:(n.r*n.a+r.r*r.a*(1-n.a))/o,g:(n.g*n.a+r.g*r.a*(1-n.a))/o,b:(n.b*n.a+r.b*r.a*(1-n.a))/o,a:o})},e.prototype.triad=function(){return this.polyad(3)},e.prototype.tetrad=function(){return this.polyad(4)},e.prototype.polyad=function(t){for(var n=this.toHsl(),r=n.h,o=[this],i=360/t,a=1;a{"use strict";n.r(t)},41191:(e,t,n)=>{"use strict";n.r(t),n.d(t,{TinyColor:()=>r.TinyColor,bounds:()=>c.bounds,convertDecimalToHex:()=>u.convertDecimalToHex,convertHexToDecimal:()=>u.convertHexToDecimal,default:()=>d,fromRatio:()=>s.fromRatio,hslToRgb:()=>u.hslToRgb,hsvToRgb:()=>u.hsvToRgb,inputToRGB:()=>l.inputToRGB,isReadable:()=>i.isReadable,isValidCSSUnit:()=>l.isValidCSSUnit,legacyRandom:()=>s.legacyRandom,mostReadable:()=>i.mostReadable,names:()=>o.names,numberInputToObject:()=>u.numberInputToObject,parseIntFromHex:()=>u.parseIntFromHex,random:()=>c.random,readability:()=>i.readability,rgbToHex:()=>u.rgbToHex,rgbToHsl:()=>u.rgbToHsl,rgbToHsv:()=>u.rgbToHsv,rgbToRgb:()=>u.rgbToRgb,rgbaToArgbHex:()=>u.rgbaToArgbHex,rgbaToHex:()=>u.rgbaToHex,stringInputToObject:()=>l.stringInputToObject,tinycolor:()=>r.tinycolor,toMsFilter:()=>a.toMsFilter});var r=n(10274),o=n(48701),i=n(47816),a=n(39258),s=n(98840),l=n(1350),c=n(96624),u=(n(76721),n(86500));const d=r.tinycolor},96624:(e,t,n)=>{"use strict";n.r(t),n.d(t,{bounds:()=>l,random:()=>o});var r=n(10274);function o(e){if(void 0===e&&(e={}),void 0!==e.count&&null!==e.count){var t=e.count,n=[];for(e.count=void 0;t>n.length;)e.count=null,e.seed&&(e.seed+=1),n.push(o(e));return e.count=t,n}var c=function(e,t){var n=a(function(e){var t=parseInt(e,10);if(!Number.isNaN(t)&&t<360&&t>0)return[t,t];if("string"==typeof e){var n=l.find((function(t){return t.name===e}));if(n){var o=s(n);if(o.hueRange)return o.hueRange}var i=new r.TinyColor(e);if(i.isValid){var a=i.toHsv().h;return[a,a]}}return[0,360]}(e),t);n<0&&(n=360+n);return n}(e.hue,e.seed),u=function(e,t){if("monochrome"===t.hue)return 0;if("random"===t.luminosity)return a([0,100],t.seed);var n=i(e).saturationRange,r=n[0],o=n[1];switch(t.luminosity){case"bright":r=55;break;case"dark":r=o-10;break;case"light":o=55}return a([r,o],t.seed)}(c,e),d=function(e,t,n){var r=function(e,t){for(var n=i(e).lowerBounds,r=0;r=o&&t<=s){var c=(l-a)/(s-o);return c*t+(a-c*o)}}return 0}(e,t),o=100;switch(n.luminosity){case"dark":o=r+20;break;case"light":r=(o+r)/2;break;case"random":r=0,o=100}return a([r,o],n.seed)}(c,u,e),f={h:c,s:u,v:d};return void 0!==e.alpha&&(f.a=e.alpha),new r.TinyColor(f)}function i(e){e>=334&&e<=360&&(e-=360);for(var t=0,n=l;t=r.hueRange[0]&&e<=r.hueRange[1])return r}throw Error("Color not found")}function a(e,t){if(void 0===t)return Math.floor(e[0]+Math.random()*(e[1]+1-e[0]));var n=e[1]||1,r=e[0]||0,o=(t=(9301*t+49297)%233280)/233280;return Math.floor(r+o*(n-r))}function s(e){var t=e.lowerBounds[0][0],n=e.lowerBounds[e.lowerBounds.length-1][0],r=e.lowerBounds[e.lowerBounds.length-1][1],o=e.lowerBounds[0][1];return{name:e.name,hueRange:e.hueRange,lowerBounds:e.lowerBounds,saturationRange:[t,n],brightnessRange:[r,o]}}var l=[{name:"monochrome",hueRange:null,lowerBounds:[[0,0],[100,0]]},{name:"red",hueRange:[-26,18],lowerBounds:[[20,100],[30,92],[40,89],[50,85],[60,78],[70,70],[80,60],[90,55],[100,50]]},{name:"orange",hueRange:[19,46],lowerBounds:[[20,100],[30,93],[40,88],[50,86],[60,85],[70,70],[100,70]]},{name:"yellow",hueRange:[47,62],lowerBounds:[[25,100],[40,94],[50,89],[60,86],[70,84],[80,82],[90,80],[100,75]]},{name:"green",hueRange:[63,178],lowerBounds:[[30,100],[40,90],[50,85],[60,81],[70,74],[80,64],[90,50],[100,40]]},{name:"blue",hueRange:[179,257],lowerBounds:[[20,100],[30,86],[40,80],[50,74],[60,60],[70,52],[80,44],[90,39],[100,35]]},{name:"purple",hueRange:[258,282],lowerBounds:[[20,100],[30,87],[40,79],[50,70],[60,65],[70,59],[80,52],[90,45],[100,42]]},{name:"pink",hueRange:[283,334],lowerBounds:[[20,100],[30,90],[40,86],[60,84],[80,80],[90,75],[100,73]]}]},47816:(e,t,n)=>{"use strict";n.r(t),n.d(t,{isReadable:()=>i,mostReadable:()=>a,readability:()=>o});var r=n(10274);function o(e,t){var n=new r.TinyColor(e),o=new r.TinyColor(t);return(Math.max(n.getLuminance(),o.getLuminance())+.05)/(Math.min(n.getLuminance(),o.getLuminance())+.05)}function i(e,t,n){var r,i;void 0===n&&(n={level:"AA",size:"small"});var a=o(e,t);switch((null!==(r=n.level)&&void 0!==r?r:"AA")+(null!==(i=n.size)&&void 0!==i?i:"small")){case"AAsmall":case"AAAlarge":return a>=4.5;case"AAlarge":return a>=3;case"AAAsmall":return a>=7;default:return!1}}function a(e,t,n){void 0===n&&(n={includeFallbackColors:!1,level:"AA",size:"small"});for(var s=null,l=0,c=n.includeFallbackColors,u=n.level,d=n.size,f=0,h=t;fl&&(l=m,s=new r.TinyColor(p))}return i(e,s,{level:u,size:d})||!c?s:(n.includeFallbackColors=!1,a(e,["#fff","#000"],n))}},39258:(e,t,n)=>{"use strict";n.r(t),n.d(t,{toMsFilter:()=>i});var r=n(86500),o=n(10274);function i(e,t){var n=new o.TinyColor(e),i="#"+(0,r.rgbaToArgbHex)(n.r,n.g,n.b,n.a),a=i,s=n.gradientType?"GradientType = 1, ":"";if(t){var l=new o.TinyColor(t);a="#"+(0,r.rgbaToArgbHex)(l.r,l.g,l.b,l.a)}return"progid:DXImageTransform.Microsoft.gradient(".concat(s,"startColorstr=").concat(i,",endColorstr=").concat(a,")")}},90279:(e,t,n)=>{"use strict";function r(e,t){i(e)&&(e="100%");var n=a(e);return e=360===t?e:Math.min(t,Math.max(0,parseFloat(e))),n&&(e=parseInt(String(e*t),10)/100),Math.abs(e-t)<1e-6?1:e=360===t?(e<0?e%t+t:e%t)/parseFloat(String(t)):e%t/parseFloat(String(t))}function o(e){return Math.min(1,Math.max(0,e))}function i(e){return"string"==typeof e&&-1!==e.indexOf(".")&&1===parseFloat(e)}function a(e){return"string"==typeof e&&-1!==e.indexOf("%")}function s(e){return e=parseFloat(e),(isNaN(e)||e<0||e>1)&&(e=1),e}function l(e){return e<=1?"".concat(100*Number(e),"%"):e}function c(e){return 1===e.length?"0"+e:String(e)}n.r(t),n.d(t,{bound01:()=>r,boundAlpha:()=>s,clamp01:()=>o,convertToPercentage:()=>l,isOnePointZero:()=>i,isPercentage:()=>a,pad2:()=>c})},42617:(e,t,n)=>{"use strict";n.r(t),n.d(t,{HiddenText:()=>i,LiveRegion:()=>a,useAnnouncement:()=>s});var r=n(36198);const o={display:"none"};function i(e){let{id:t,value:n}=e;return r.createElement("div",{id:t,style:o},n)}function a(e){let{id:t,announcement:n,ariaLiveType:o="assertive"}=e;return r.createElement("div",{id:t,style:{position:"fixed",width:1,height:1,margin:-1,border:0,padding:0,overflow:"hidden",clip:"rect(0 0 0 0)",clipPath:"inset(100%)",whiteSpace:"nowrap"},role:"status","aria-live":o,"aria-atomic":!0},n)}function s(){const[e,t]=(0,r.useState)("");return{announce:(0,r.useCallback)((e=>{null!=e&&t(e)}),[]),announcement:e}}},94697:(e,t,n)=>{"use strict";n.r(t),n.d(t,{AutoScrollActivator:()=>ve,DndContext:()=>qe,DragOverlay:()=>pt,KeyboardCode:()=>ne,KeyboardSensor:()=>se,MeasuringFrequency:()=>xe,MeasuringStrategy:()=>Se,MouseSensor:()=>me,PointerSensor:()=>fe,TouchSensor:()=>ye,TraversalOrder:()=>be,applyModifiers:()=>We,closestCenter:()=>E,closestCorners:()=>T,defaultAnnouncements:()=>u,defaultCoordinates:()=>g,defaultDropAnimation:()=>ut,defaultDropAnimationSideEffects:()=>ct,defaultScreenReaderInstructions:()=>c,getClientRect:()=>I,getFirstCollision:()=>S,getScrollableAncestors:()=>N,pointerWithin:()=>k,rectIntersection:()=>P,useDndContext:()=>Je,useDndMonitor:()=>l,useDraggable:()=>Ke,useDroppable:()=>nt,useSensor:()=>p,useSensors:()=>m});var r=n(36198),o=n(18348),i=n(24285),a=n(42617);const s=(0,r.createContext)(null);function l(e){const t=(0,r.useContext)(s);(0,r.useEffect)((()=>{if(!t)throw new Error("useDndMonitor must be used within a children of ");return t(e)}),[e,t])}const c={draggable:"\n To pick up a draggable item, press the space bar.\n While dragging, use the arrow keys to move the item.\n Press space again to drop the item in its new position, or press escape to cancel.\n "},u={onDragStart(e){let{active:t}=e;return"Picked up draggable item "+t.id+"."},onDragOver(e){let{active:t,over:n}=e;return n?"Draggable item "+t.id+" was moved over droppable area "+n.id+".":"Draggable item "+t.id+" is no longer over a droppable area."},onDragEnd(e){let{active:t,over:n}=e;return n?"Draggable item "+t.id+" was dropped over droppable area "+n.id:"Draggable item "+t.id+" was dropped."},onDragCancel(e){let{active:t}=e;return"Dragging was cancelled. Draggable item "+t.id+" was dropped."}};function d(e){let{announcements:t=u,container:n,hiddenTextDescribedById:s,screenReaderInstructions:d=c}=e;const{announce:f,announcement:h}=(0,a.useAnnouncement)(),p=(0,i.useUniqueId)("DndLiveRegion"),[m,g]=(0,r.useState)(!1);if((0,r.useEffect)((()=>{g(!0)}),[]),l((0,r.useMemo)((()=>({onDragStart(e){let{active:n}=e;f(t.onDragStart({active:n}))},onDragMove(e){let{active:n,over:r}=e;t.onDragMove&&f(t.onDragMove({active:n,over:r}))},onDragOver(e){let{active:n,over:r}=e;f(t.onDragOver({active:n,over:r}))},onDragEnd(e){let{active:n,over:r}=e;f(t.onDragEnd({active:n,over:r}))},onDragCancel(e){let{active:n,over:r}=e;f(t.onDragCancel({active:n,over:r}))}})),[f,t])),!m)return null;const y=r.createElement(r.Fragment,null,r.createElement(a.HiddenText,{id:s,value:d.draggable}),r.createElement(a.LiveRegion,{id:p,announcement:h}));return n?(0,o.createPortal)(y,n):y}var f;function h(){}function p(e,t){return(0,r.useMemo)((()=>({sensor:e,options:null!=t?t:{}})),[e,t])}function m(){for(var e=arguments.length,t=new Array(e),n=0;n[...t].filter((e=>null!=e))),[...t])}!function(e){e.DragStart="dragStart",e.DragMove="dragMove",e.DragEnd="dragEnd",e.DragCancel="dragCancel",e.DragOver="dragOver",e.RegisterDroppable="registerDroppable",e.SetDroppableDisabled="setDroppableDisabled",e.UnregisterDroppable="unregisterDroppable"}(f||(f={}));const g=Object.freeze({x:0,y:0});function y(e,t){return Math.sqrt(Math.pow(e.x-t.x,2)+Math.pow(e.y-t.y,2))}function v(e,t){const n=(0,i.getEventCoordinates)(e);if(!n)return"0 0";return(n.x-t.left)/t.width*100+"% "+(n.y-t.top)/t.height*100+"%"}function b(e,t){let{data:{value:n}}=e,{data:{value:r}}=t;return n-r}function O(e,t){let{data:{value:n}}=e,{data:{value:r}}=t;return r-n}function w(e){let{left:t,top:n,height:r,width:o}=e;return[{x:t,y:n},{x:t+o,y:n},{x:t,y:n+r},{x:t+o,y:n+r}]}function S(e,t){if(!e||0===e.length)return null;const[n]=e;return t?n[t]:n}function x(e,t,n){return void 0===t&&(t=e.left),void 0===n&&(n=e.top),{x:t+.5*e.width,y:n+.5*e.height}}const E=e=>{let{collisionRect:t,droppableRects:n,droppableContainers:r}=e;const o=x(t,t.left,t.top),i=[];for(const e of r){const{id:t}=e,r=n.get(t);if(r){const n=y(x(r),o);i.push({id:t,data:{droppableContainer:e,value:n}})}}return i.sort(b)},T=e=>{let{collisionRect:t,droppableRects:n,droppableContainers:r}=e;const o=w(t),i=[];for(const e of r){const{id:t}=e,r=n.get(t);if(r){const n=w(r),a=o.reduce(((e,t,r)=>e+y(n[r],t)),0),s=Number((a/4).toFixed(4));i.push({id:t,data:{droppableContainer:e,value:s}})}}return i.sort(b)};function C(e,t){const n=Math.max(t.top,e.top),r=Math.max(t.left,e.left),o=Math.min(t.left+t.width,e.left+e.width),i=Math.min(t.top+t.height,e.top+e.height),a=o-r,s=i-n;if(r{let{collisionRect:t,droppableRects:n,droppableContainers:r}=e;const o=[];for(const e of r){const{id:r}=e,i=n.get(r);if(i){const n=C(i,t);n>0&&o.push({id:r,data:{droppableContainer:e,value:n}})}}return o.sort(O)};function _(e,t){const{top:n,left:r,bottom:o,right:i}=t;return n<=e.y&&e.y<=o&&r<=e.x&&e.x<=i}const k=e=>{let{droppableContainers:t,droppableRects:n,pointerCoordinates:r}=e;if(!r)return[];const o=[];for(const e of t){const{id:t}=e,i=n.get(t);if(i&&_(r,i)){const n=w(i).reduce(((e,t)=>e+y(r,t)),0),a=Number((n/4).toFixed(4));o.push({id:t,data:{droppableContainer:e,value:a}})}}return o.sort(b)};function j(e,t){return e&&t?{x:e.left-t.left,y:e.top-t.top}:g}function A(e){return function(t){for(var n=arguments.length,r=new Array(n>1?n-1:0),o=1;o({...t,top:t.top+e*n.y,bottom:t.bottom+e*n.y,left:t.left+e*n.x,right:t.right+e*n.x})),{...t})}}const R=A(1);function D(e){if(e.startsWith("matrix3d(")){const t=e.slice(9,-1).split(/, /);return{x:+t[12],y:+t[13],scaleX:+t[0],scaleY:+t[5]}}if(e.startsWith("matrix(")){const t=e.slice(7,-1).split(/, /);return{x:+t[4],y:+t[5],scaleX:+t[0],scaleY:+t[3]}}return null}const L={ignoreTransform:!1};function I(e,t){void 0===t&&(t=L);let n=e.getBoundingClientRect();if(t.ignoreTransform){const{transform:t,transformOrigin:r}=(0,i.getWindow)(e).getComputedStyle(e);t&&(n=function(e,t,n){const r=D(t);if(!r)return e;const{scaleX:o,scaleY:i,x:a,y:s}=r,l=e.left-a-(1-o)*parseFloat(n),c=e.top-s-(1-i)*parseFloat(n.slice(n.indexOf(" ")+1)),u=o?e.width/o:e.width,d=i?e.height/i:e.height;return{width:u,height:d,top:c,right:l+u,bottom:c+d,left:l}}(n,t,r))}const{top:r,left:o,width:a,height:s,bottom:l,right:c}=n;return{top:r,left:o,width:a,height:s,bottom:l,right:c}}function M(e){return I(e,{ignoreTransform:!0})}function N(e,t){const n=[];return e?function r(o){if(null!=t&&n.length>=t)return n;if(!o)return n;if((0,i.isDocument)(o)&&null!=o.scrollingElement&&!n.includes(o.scrollingElement))return n.push(o.scrollingElement),n;if(!(0,i.isHTMLElement)(o)||(0,i.isSVGElement)(o))return n;if(n.includes(o))return n;const a=(0,i.getWindow)(e).getComputedStyle(o);return o!==e&&function(e,t){void 0===t&&(t=(0,i.getWindow)(e).getComputedStyle(e));const n=/(auto|scroll|overlay)/;return["overflow","overflowX","overflowY"].some((e=>{const r=t[e];return"string"==typeof r&&n.test(r)}))}(o,a)&&n.push(o),function(e,t){return void 0===t&&(t=(0,i.getWindow)(e).getComputedStyle(e)),"fixed"===t.position}(o,a)?n:r(o.parentNode)}(e):n}function $(e){const[t]=N(e,1);return null!=t?t:null}function B(e){return i.canUseDOM&&e?(0,i.isWindow)(e)?e:(0,i.isNode)(e)?(0,i.isDocument)(e)||e===(0,i.getOwnerDocument)(e).scrollingElement?window:(0,i.isHTMLElement)(e)?e:null:null:null}function F(e){return(0,i.isWindow)(e)?e.scrollX:e.scrollLeft}function Q(e){return(0,i.isWindow)(e)?e.scrollY:e.scrollTop}function z(e){return{x:F(e),y:Q(e)}}var V;function U(e){return!(!i.canUseDOM||!e)&&e===document.scrollingElement}function W(e){const t={x:0,y:0},n=U(e)?{height:window.innerHeight,width:window.innerWidth}:{height:e.clientHeight,width:e.clientWidth},r={x:e.scrollWidth-n.width,y:e.scrollHeight-n.height};return{isTop:e.scrollTop<=t.y,isLeft:e.scrollLeft<=t.x,isBottom:e.scrollTop>=r.y,isRight:e.scrollLeft>=r.x,maxScroll:r,minScroll:t}}!function(e){e[e.Forward=1]="Forward",e[e.Backward=-1]="Backward"}(V||(V={}));const G={x:.2,y:.2};function X(e,t,n,r,o){let{top:i,left:a,right:s,bottom:l}=n;void 0===r&&(r=10),void 0===o&&(o=G);const{isTop:c,isBottom:u,isLeft:d,isRight:f}=W(e),h={x:0,y:0},p={x:0,y:0},m=t.height*o.y,g=t.width*o.x;return!c&&i<=t.top+m?(h.y=V.Backward,p.y=r*Math.abs((t.top+m-i)/m)):!u&&l>=t.bottom-m&&(h.y=V.Forward,p.y=r*Math.abs((t.bottom-m-l)/m)),!f&&s>=t.right-g?(h.x=V.Forward,p.x=r*Math.abs((t.right-g-s)/g)):!d&&a<=t.left+g&&(h.x=V.Backward,p.x=r*Math.abs((t.left+g-a)/g)),{direction:h,speed:p}}function q(e){if(e===document.scrollingElement){const{innerWidth:e,innerHeight:t}=window;return{top:0,left:0,right:e,bottom:t,width:e,height:t}}const{top:t,left:n,right:r,bottom:o}=e.getBoundingClientRect();return{top:t,left:n,right:r,bottom:o,width:e.clientWidth,height:e.clientHeight}}function H(e){return e.reduce(((e,t)=>(0,i.add)(e,z(t))),g)}function Z(e,t){if(void 0===t&&(t=I),!e)return;const{top:n,left:r,bottom:o,right:i}=t(e);$(e)&&(o<=0||i<=0||n>=window.innerHeight||r>=window.innerWidth)&&e.scrollIntoView({block:"center",inline:"center"})}const Y=[["x",["left","right"],function(e){return e.reduce(((e,t)=>e+F(t)),0)}],["y",["top","bottom"],function(e){return e.reduce(((e,t)=>e+Q(t)),0)}]];class K{constructor(e,t){this.rect=void 0,this.width=void 0,this.height=void 0,this.top=void 0,this.bottom=void 0,this.right=void 0,this.left=void 0;const n=N(t),r=H(n);this.rect={...e},this.width=e.width,this.height=e.height;for(const[e,t,o]of Y)for(const i of t)Object.defineProperty(this,i,{get:()=>{const t=o(n),a=r[e]-t;return this.rect[i]+a},enumerable:!0});Object.defineProperty(this,"rect",{enumerable:!1})}}class J{constructor(e){this.target=void 0,this.listeners=[],this.removeAll=()=>{this.listeners.forEach((e=>{var t;return null==(t=this.target)?void 0:t.removeEventListener(...e)}))},this.target=e}add(e,t,n){var r;null==(r=this.target)||r.addEventListener(e,t,n),this.listeners.push([e,t,n])}}function ee(e,t){const n=Math.abs(e.x),r=Math.abs(e.y);return"number"==typeof t?Math.sqrt(n**2+r**2)>t:"x"in t&&"y"in t?n>t.x&&r>t.y:"x"in t?n>t.x:"y"in t&&r>t.y}var te,ne;function re(e){e.preventDefault()}function oe(e){e.stopPropagation()}!function(e){e.Click="click",e.DragStart="dragstart",e.Keydown="keydown",e.ContextMenu="contextmenu",e.Resize="resize",e.SelectionChange="selectionchange",e.VisibilityChange="visibilitychange"}(te||(te={})),function(e){e.Space="Space",e.Down="ArrowDown",e.Right="ArrowRight",e.Left="ArrowLeft",e.Up="ArrowUp",e.Esc="Escape",e.Enter="Enter"}(ne||(ne={}));const ie={start:[ne.Space,ne.Enter],cancel:[ne.Esc],end:[ne.Space,ne.Enter]},ae=(e,t)=>{let{currentCoordinates:n}=t;switch(e.code){case ne.Right:return{...n,x:n.x+25};case ne.Left:return{...n,x:n.x-25};case ne.Down:return{...n,y:n.y+25};case ne.Up:return{...n,y:n.y-25}}};class se{constructor(e){this.props=void 0,this.autoScrollEnabled=!1,this.referenceCoordinates=void 0,this.listeners=void 0,this.windowListeners=void 0,this.props=e;const{event:{target:t}}=e;this.props=e,this.listeners=new J((0,i.getOwnerDocument)(t)),this.windowListeners=new J((0,i.getWindow)(t)),this.handleKeyDown=this.handleKeyDown.bind(this),this.handleCancel=this.handleCancel.bind(this),this.attach()}attach(){this.handleStart(),this.windowListeners.add(te.Resize,this.handleCancel),this.windowListeners.add(te.VisibilityChange,this.handleCancel),setTimeout((()=>this.listeners.add(te.Keydown,this.handleKeyDown)))}handleStart(){const{activeNode:e,onStart:t}=this.props,n=e.node.current;n&&Z(n),t(g)}handleKeyDown(e){if((0,i.isKeyboardEvent)(e)){const{active:t,context:n,options:r}=this.props,{keyboardCodes:o=ie,coordinateGetter:a=ae,scrollBehavior:s="smooth"}=r,{code:l}=e;if(o.end.includes(l))return void this.handleEnd(e);if(o.cancel.includes(l))return void this.handleCancel(e);const{collisionRect:c}=n.current,u=c?{x:c.left,y:c.top}:g;this.referenceCoordinates||(this.referenceCoordinates=u);const d=a(e,{active:t,context:n.current,currentCoordinates:u});if(d){const t=(0,i.subtract)(d,u),r={x:0,y:0},{scrollableAncestors:o}=n.current;for(const n of o){const o=e.code,{isTop:i,isRight:a,isLeft:l,isBottom:c,maxScroll:u,minScroll:f}=W(n),h=q(n),p={x:Math.min(o===ne.Right?h.right-h.width/2:h.right,Math.max(o===ne.Right?h.left:h.left+h.width/2,d.x)),y:Math.min(o===ne.Down?h.bottom-h.height/2:h.bottom,Math.max(o===ne.Down?h.top:h.top+h.height/2,d.y))},m=o===ne.Right&&!a||o===ne.Left&&!l,g=o===ne.Down&&!c||o===ne.Up&&!i;if(m&&p.x!==d.x){const e=n.scrollLeft+t.x,i=o===ne.Right&&e<=u.x||o===ne.Left&&e>=f.x;if(i&&!t.y)return void n.scrollTo({left:e,behavior:s});r.x=i?n.scrollLeft-e:o===ne.Right?n.scrollLeft-u.x:n.scrollLeft-f.x,r.x&&n.scrollBy({left:-r.x,behavior:s});break}if(g&&p.y!==d.y){const e=n.scrollTop+t.y,i=o===ne.Down&&e<=u.y||o===ne.Up&&e>=f.y;if(i&&!t.x)return void n.scrollTo({top:e,behavior:s});r.y=i?n.scrollTop-e:o===ne.Down?n.scrollTop-u.y:n.scrollTop-f.y,r.y&&n.scrollBy({top:-r.y,behavior:s});break}}this.handleMove(e,(0,i.add)((0,i.subtract)(d,this.referenceCoordinates),r))}}}handleMove(e,t){const{onMove:n}=this.props;e.preventDefault(),n(t)}handleEnd(e){const{onEnd:t}=this.props;e.preventDefault(),this.detach(),t()}handleCancel(e){const{onCancel:t}=this.props;e.preventDefault(),this.detach(),t()}detach(){this.listeners.removeAll(),this.windowListeners.removeAll()}}function le(e){return Boolean(e&&"distance"in e)}function ce(e){return Boolean(e&&"delay"in e)}se.activators=[{eventName:"onKeyDown",handler:(e,t,n)=>{let{keyboardCodes:r=ie,onActivation:o}=t,{active:i}=n;const{code:a}=e.nativeEvent;if(r.start.includes(a)){const t=i.activatorNode.current;return(!t||e.target===t)&&(e.preventDefault(),null==o||o({event:e.nativeEvent}),!0)}return!1}}];class ue{constructor(e,t,n){var r;void 0===n&&(n=function(e){const{EventTarget:t}=(0,i.getWindow)(e);return e instanceof t?e:(0,i.getOwnerDocument)(e)}(e.event.target)),this.props=void 0,this.events=void 0,this.autoScrollEnabled=!0,this.document=void 0,this.activated=!1,this.initialCoordinates=void 0,this.timeoutId=null,this.listeners=void 0,this.documentListeners=void 0,this.windowListeners=void 0,this.props=e,this.events=t;const{event:o}=e,{target:a}=o;this.props=e,this.events=t,this.document=(0,i.getOwnerDocument)(a),this.documentListeners=new J(this.document),this.listeners=new J(n),this.windowListeners=new J((0,i.getWindow)(a)),this.initialCoordinates=null!=(r=(0,i.getEventCoordinates)(o))?r:g,this.handleStart=this.handleStart.bind(this),this.handleMove=this.handleMove.bind(this),this.handleEnd=this.handleEnd.bind(this),this.handleCancel=this.handleCancel.bind(this),this.handleKeydown=this.handleKeydown.bind(this),this.removeTextSelection=this.removeTextSelection.bind(this),this.attach()}attach(){const{events:e,props:{options:{activationConstraint:t,bypassActivationConstraint:n}}}=this;if(this.listeners.add(e.move.name,this.handleMove,{passive:!1}),this.listeners.add(e.end.name,this.handleEnd),this.windowListeners.add(te.Resize,this.handleCancel),this.windowListeners.add(te.DragStart,re),this.windowListeners.add(te.VisibilityChange,this.handleCancel),this.windowListeners.add(te.ContextMenu,re),this.documentListeners.add(te.Keydown,this.handleKeydown),t){if(null!=n&&n({event:this.props.event,activeNode:this.props.activeNode,options:this.props.options}))return this.handleStart();if(ce(t))return void(this.timeoutId=setTimeout(this.handleStart,t.delay));if(le(t))return}this.handleStart()}detach(){this.listeners.removeAll(),this.windowListeners.removeAll(),setTimeout(this.documentListeners.removeAll,50),null!==this.timeoutId&&(clearTimeout(this.timeoutId),this.timeoutId=null)}handleStart(){const{initialCoordinates:e}=this,{onStart:t}=this.props;e&&(this.activated=!0,this.documentListeners.add(te.Click,oe,{capture:!0}),this.removeTextSelection(),this.documentListeners.add(te.SelectionChange,this.removeTextSelection),t(e))}handleMove(e){var t;const{activated:n,initialCoordinates:r,props:o}=this,{onMove:a,options:{activationConstraint:s}}=o;if(!r)return;const l=null!=(t=(0,i.getEventCoordinates)(e))?t:g,c=(0,i.subtract)(r,l);if(!n&&s){if(le(s)){if(null!=s.tolerance&&ee(c,s.tolerance))return this.handleCancel();if(ee(c,s.distance))return this.handleStart()}return ce(s)&&ee(c,s.tolerance)?this.handleCancel():void 0}e.cancelable&&e.preventDefault(),a(l)}handleEnd(){const{onEnd:e}=this.props;this.detach(),e()}handleCancel(){const{onCancel:e}=this.props;this.detach(),e()}handleKeydown(e){e.code===ne.Esc&&this.handleCancel()}removeTextSelection(){var e;null==(e=this.document.getSelection())||e.removeAllRanges()}}const de={move:{name:"pointermove"},end:{name:"pointerup"}};class fe extends ue{constructor(e){const{event:t}=e,n=(0,i.getOwnerDocument)(t.target);super(e,de,n)}}fe.activators=[{eventName:"onPointerDown",handler:(e,t)=>{let{nativeEvent:n}=e,{onActivation:r}=t;return!(!n.isPrimary||0!==n.button)&&(null==r||r({event:n}),!0)}}];const he={move:{name:"mousemove"},end:{name:"mouseup"}};var pe;!function(e){e[e.RightClick=2]="RightClick"}(pe||(pe={}));class me extends ue{constructor(e){super(e,he,(0,i.getOwnerDocument)(e.event.target))}}me.activators=[{eventName:"onMouseDown",handler:(e,t)=>{let{nativeEvent:n}=e,{onActivation:r}=t;return n.button!==pe.RightClick&&(null==r||r({event:n}),!0)}}];const ge={move:{name:"touchmove"},end:{name:"touchend"}};class ye extends ue{constructor(e){super(e,ge)}static setup(){return window.addEventListener(ge.move.name,e,{capture:!1,passive:!1}),function(){window.removeEventListener(ge.move.name,e)};function e(){}}}var ve,be;function Oe(e){let{acceleration:t,activator:n=ve.Pointer,canScroll:o,draggingRect:a,enabled:s,interval:l=5,order:c=be.TreeOrder,pointerCoordinates:u,scrollableAncestors:d,scrollableAncestorRects:f,delta:h,threshold:p}=e;const m=function(e){let{delta:t,disabled:n}=e;const r=(0,i.usePrevious)(t);return(0,i.useLazyMemo)((e=>{if(n||!r||!e)return we;const o={x:Math.sign(t.x-r.x),y:Math.sign(t.y-r.y)};return{x:{[V.Backward]:e.x[V.Backward]||-1===o.x,[V.Forward]:e.x[V.Forward]||1===o.x},y:{[V.Backward]:e.y[V.Backward]||-1===o.y,[V.Forward]:e.y[V.Forward]||1===o.y}}}),[n,t,r])}({delta:h,disabled:!s}),[g,y]=(0,i.useInterval)(),v=(0,r.useRef)({x:0,y:0}),b=(0,r.useRef)({x:0,y:0}),O=(0,r.useMemo)((()=>{switch(n){case ve.Pointer:return u?{top:u.y,bottom:u.y,left:u.x,right:u.x}:null;case ve.DraggableRect:return a}}),[n,a,u]),w=(0,r.useRef)(null),S=(0,r.useCallback)((()=>{const e=w.current;if(!e)return;const t=v.current.x*b.current.x,n=v.current.y*b.current.y;e.scrollBy(t,n)}),[]),x=(0,r.useMemo)((()=>c===be.TreeOrder?[...d].reverse():d),[c,d]);(0,r.useEffect)((()=>{if(s&&d.length&&O){for(const e of x){if(!1===(null==o?void 0:o(e)))continue;const n=d.indexOf(e),r=f[n];if(!r)continue;const{direction:i,speed:a}=X(e,r,O,t,p);for(const e of["x","y"])m[e][i[e]]||(a[e]=0,i[e]=0);if(a.x>0||a.y>0)return y(),w.current=e,g(S,l),v.current=a,void(b.current=i)}v.current={x:0,y:0},b.current={x:0,y:0},y()}else y()}),[t,S,o,y,s,l,JSON.stringify(O),JSON.stringify(m),g,d,x,f,JSON.stringify(p)])}ye.activators=[{eventName:"onTouchStart",handler:(e,t)=>{let{nativeEvent:n}=e,{onActivation:r}=t;const{touches:o}=n;return!(o.length>1)&&(null==r||r({event:n}),!0)}}],function(e){e[e.Pointer=0]="Pointer",e[e.DraggableRect=1]="DraggableRect"}(ve||(ve={})),function(e){e[e.TreeOrder=0]="TreeOrder",e[e.ReversedTreeOrder=1]="ReversedTreeOrder"}(be||(be={}));const we={x:{[V.Backward]:!1,[V.Forward]:!1},y:{[V.Backward]:!1,[V.Forward]:!1}};var Se,xe;!function(e){e[e.Always=0]="Always",e[e.BeforeDragging=1]="BeforeDragging",e[e.WhileDragging=2]="WhileDragging"}(Se||(Se={})),function(e){e.Optimized="optimized"}(xe||(xe={}));const Ee=new Map;function Te(e,t){return(0,i.useLazyMemo)((n=>e?n||("function"==typeof t?t(e):e):null),[t,e])}function Ce(e){let{callback:t,disabled:n}=e;const o=(0,i.useEvent)(t),a=(0,r.useMemo)((()=>{if(n||"undefined"==typeof window||void 0===window.ResizeObserver)return;const{ResizeObserver:e}=window;return new e(o)}),[n]);return(0,r.useEffect)((()=>()=>null==a?void 0:a.disconnect()),[a]),a}function Pe(e){return new K(I(e),e)}function _e(e,t,n){void 0===t&&(t=Pe);const[o,a]=(0,r.useReducer)((function(r){if(!e)return null;var o;if(!1===e.isConnected)return null!=(o=null!=r?r:n)?o:null;const i=t(e);if(JSON.stringify(r)===JSON.stringify(i))return r;return i}),null),s=function(e){let{callback:t,disabled:n}=e;const o=(0,i.useEvent)(t),a=(0,r.useMemo)((()=>{if(n||"undefined"==typeof window||void 0===window.MutationObserver)return;const{MutationObserver:e}=window;return new e(o)}),[o,n]);return(0,r.useEffect)((()=>()=>null==a?void 0:a.disconnect()),[a]),a}({callback(t){if(e)for(const n of t){const{type:t,target:r}=n;if("childList"===t&&r instanceof HTMLElement&&r.contains(e)){a();break}}}}),l=Ce({callback:a});return(0,i.useIsomorphicLayoutEffect)((()=>{a(),e?(null==l||l.observe(e),null==s||s.observe(document.body,{childList:!0,subtree:!0})):(null==l||l.disconnect(),null==s||s.disconnect())}),[e]),o}const ke=[];function je(e,t){void 0===t&&(t=[]);const n=(0,r.useRef)(null);return(0,r.useEffect)((()=>{n.current=null}),t),(0,r.useEffect)((()=>{const t=e!==g;t&&!n.current&&(n.current=e),!t&&n.current&&(n.current=null)}),[e]),n.current?(0,i.subtract)(e,n.current):g}function Ae(e){return(0,r.useMemo)((()=>e?function(e){const t=e.innerWidth,n=e.innerHeight;return{top:0,left:0,right:t,bottom:n,width:t,height:n}}(e):null),[e])}const Re=[];function De(e){if(!e)return null;if(e.children.length>1)return e;const t=e.children[0];return(0,i.isHTMLElement)(t)?t:e}const Le=[{sensor:fe,options:{}},{sensor:se,options:{}}],Ie={current:{}},Me={draggable:{measure:M},droppable:{measure:M,strategy:Se.WhileDragging,frequency:xe.Optimized},dragOverlay:{measure:I}};class Ne extends Map{get(e){var t;return null!=e&&null!=(t=super.get(e))?t:void 0}toArray(){return Array.from(this.values())}getEnabled(){return this.toArray().filter((e=>{let{disabled:t}=e;return!t}))}getNodeFor(e){var t,n;return null!=(t=null==(n=this.get(e))?void 0:n.node.current)?t:void 0}}const $e={activatorEvent:null,active:null,activeNode:null,activeNodeRect:null,collisions:null,containerNodeRect:null,draggableNodes:new Map,droppableRects:new Map,droppableContainers:new Ne,over:null,dragOverlay:{nodeRef:{current:null},rect:null,setRef:h},scrollableAncestors:[],scrollableAncestorRects:[],measuringConfiguration:Me,measureDroppableContainers:h,windowRect:null,measuringScheduled:!1},Be={activatorEvent:null,activators:[],active:null,activeNodeRect:null,ariaDescribedById:{draggable:""},dispatch:h,draggableNodes:new Map,over:null,measureDroppableContainers:h},Fe=(0,r.createContext)(Be),Qe=(0,r.createContext)($e);function ze(){return{draggable:{active:null,initialCoordinates:{x:0,y:0},nodes:new Map,translate:{x:0,y:0}},droppable:{containers:new Ne}}}function Ve(e,t){switch(t.type){case f.DragStart:return{...e,draggable:{...e.draggable,initialCoordinates:t.initialCoordinates,active:t.active}};case f.DragMove:return e.draggable.active?{...e,draggable:{...e.draggable,translate:{x:t.coordinates.x-e.draggable.initialCoordinates.x,y:t.coordinates.y-e.draggable.initialCoordinates.y}}}:e;case f.DragEnd:case f.DragCancel:return{...e,draggable:{...e.draggable,active:null,initialCoordinates:{x:0,y:0},translate:{x:0,y:0}}};case f.RegisterDroppable:{const{element:n}=t,{id:r}=n,o=new Ne(e.droppable.containers);return o.set(r,n),{...e,droppable:{...e.droppable,containers:o}}}case f.SetDroppableDisabled:{const{id:n,key:r,disabled:o}=t,i=e.droppable.containers.get(n);if(!i||r!==i.key)return e;const a=new Ne(e.droppable.containers);return a.set(n,{...i,disabled:o}),{...e,droppable:{...e.droppable,containers:a}}}case f.UnregisterDroppable:{const{id:n,key:r}=t,o=e.droppable.containers.get(n);if(!o||r!==o.key)return e;const i=new Ne(e.droppable.containers);return i.delete(n),{...e,droppable:{...e.droppable,containers:i}}}default:return e}}function Ue(e){let{disabled:t}=e;const{active:n,activatorEvent:o,draggableNodes:a}=(0,r.useContext)(Fe),s=(0,i.usePrevious)(o),l=(0,i.usePrevious)(null==n?void 0:n.id);return(0,r.useEffect)((()=>{if(!t&&!o&&s&&null!=l){if(!(0,i.isKeyboardEvent)(s))return;if(document.activeElement===s.target)return;const e=a.get(l);if(!e)return;const{activatorNode:t,node:n}=e;if(!t.current&&!n.current)return;requestAnimationFrame((()=>{for(const e of[t.current,n.current]){if(!e)continue;const t=(0,i.findFirstFocusableNode)(e);if(t){t.focus();break}}}))}}),[o,t,a,l,s]),null}function We(e,t){let{transform:n,...r}=t;return null!=e&&e.length?e.reduce(((e,t)=>t({transform:e,...r})),n):n}const Ge=(0,r.createContext)({...g,scaleX:1,scaleY:1});var Xe;!function(e){e[e.Uninitialized=0]="Uninitialized",e[e.Initializing=1]="Initializing",e[e.Initialized=2]="Initialized"}(Xe||(Xe={}));const qe=(0,r.memo)((function(e){var t,n,a,l;let{id:c,accessibility:u,autoScroll:h=!0,children:p,sensors:m=Le,collisionDetection:y=P,measuring:v,modifiers:b,...O}=e;const w=(0,r.useReducer)(Ve,void 0,ze),[x,E]=w,[T,C]=function(){const[e]=(0,r.useState)((()=>new Set)),t=(0,r.useCallback)((t=>(e.add(t),()=>e.delete(t))),[e]);return[(0,r.useCallback)((t=>{let{type:n,event:r}=t;e.forEach((e=>{var t;return null==(t=e[n])?void 0:t.call(e,r)}))}),[e]),t]}(),[_,k]=(0,r.useState)(Xe.Uninitialized),A=_===Xe.Initialized,{draggable:{active:D,nodes:L,translate:M},droppable:{containers:F}}=x,Q=D?L.get(D):null,V=(0,r.useRef)({initial:null,translated:null}),W=(0,r.useMemo)((()=>{var e;return null!=D?{id:D,data:null!=(e=null==Q?void 0:Q.data)?e:Ie,rect:V}:null}),[D,Q]),G=(0,r.useRef)(null),[X,q]=(0,r.useState)(null),[Z,Y]=(0,r.useState)(null),J=(0,i.useLatestValue)(O,Object.values(O)),ee=(0,i.useUniqueId)("DndDescribedBy",c),te=(0,r.useMemo)((()=>F.getEnabled()),[F]),ne=(re=v,(0,r.useMemo)((()=>({draggable:{...Me.draggable,...null==re?void 0:re.draggable},droppable:{...Me.droppable,...null==re?void 0:re.droppable},dragOverlay:{...Me.dragOverlay,...null==re?void 0:re.dragOverlay}})),[null==re?void 0:re.draggable,null==re?void 0:re.droppable,null==re?void 0:re.dragOverlay]));var re;const{droppableRects:oe,measureDroppableContainers:ie,measuringScheduled:ae}=function(e,t){let{dragging:n,dependencies:o,config:a}=t;const[s,l]=(0,r.useState)(null),{frequency:c,measure:u,strategy:d}=a,f=(0,r.useRef)(e),h=function(){switch(d){case Se.Always:return!1;case Se.BeforeDragging:return n;default:return!n}}(),p=(0,i.useLatestValue)(h),m=(0,r.useCallback)((function(e){void 0===e&&(e=[]),p.current||l((t=>null===t?e:t.concat(e.filter((e=>!t.includes(e))))))}),[p]),g=(0,r.useRef)(null),y=(0,i.useLazyMemo)((t=>{if(h&&!n)return Ee;if(!t||t===Ee||f.current!==e||null!=s){const t=new Map;for(let n of e){if(!n)continue;if(s&&s.length>0&&!s.includes(n.id)&&n.rect.current){t.set(n.id,n.rect.current);continue}const e=n.node.current,r=e?new K(u(e),e):null;n.rect.current=r,r&&t.set(n.id,r)}return t}return t}),[e,s,n,h,u]);return(0,r.useEffect)((()=>{f.current=e}),[e]),(0,r.useEffect)((()=>{h||m()}),[n,h]),(0,r.useEffect)((()=>{s&&s.length>0&&l(null)}),[JSON.stringify(s)]),(0,r.useEffect)((()=>{h||"number"!=typeof c||null!==g.current||(g.current=setTimeout((()=>{m(),g.current=null}),c))}),[c,h,m,...o]),{droppableRects:y,measureDroppableContainers:m,measuringScheduled:null!=s}}(te,{dragging:A,dependencies:[M.x,M.y],config:ne.droppable}),se=function(e,t){const n=null!==t?e.get(t):void 0,r=n?n.node.current:null;return(0,i.useLazyMemo)((e=>{var n;return null===t?null:null!=(n=null!=r?r:e)?n:null}),[r,t])}(L,D),le=(0,r.useMemo)((()=>Z?(0,i.getEventCoordinates)(Z):null),[Z]),ce=function(){const e=!1===(null==X?void 0:X.autoScrollEnabled),t="object"==typeof h?!1===h.enabled:!1===h,n=A&&!e&&!t;if("object"==typeof h)return{...h,enabled:n};return{enabled:n}}(),ue=function(e,t){return Te(e,t)}(se,ne.draggable.measure);!function(e){let{activeNode:t,measure:n,initialRect:o,config:a=!0}=e;const s=(0,r.useRef)(!1),{x:l,y:c}="boolean"==typeof a?{x:a,y:a}:a;(0,i.useIsomorphicLayoutEffect)((()=>{if(!l&&!c||!t)return void(s.current=!1);if(s.current||!o)return;const e=null==t?void 0:t.node.current;if(!e||!1===e.isConnected)return;const r=j(n(e),o);if(l||(r.x=0),c||(r.y=0),s.current=!0,Math.abs(r.x)>0||Math.abs(r.y)>0){const t=$(e);t&&t.scrollBy({top:r.y,left:r.x})}}),[t,l,c,o,n])}({activeNode:D?L.get(D):null,config:ce.layoutShiftCompensation,initialRect:ue,measure:ne.draggable.measure});const de=_e(se,ne.draggable.measure,ue),fe=_e(se?se.parentElement:null),he=(0,r.useRef)({activatorEvent:null,active:null,activeNode:se,collisionRect:null,collisions:null,droppableRects:oe,draggableNodes:L,draggingNode:null,draggingNodeRect:null,droppableContainers:F,over:null,scrollableAncestors:[],scrollAdjustedTranslate:null}),pe=F.getNodeFor(null==(t=he.current.over)?void 0:t.id),me=function(e){let{measure:t}=e;const[n,o]=(0,r.useState)(null),a=Ce({callback:(0,r.useCallback)((e=>{for(const{target:n}of e)if((0,i.isHTMLElement)(n)){o((e=>{const r=t(n);return e?{...e,width:r.width,height:r.height}:r}));break}}),[t])}),s=(0,r.useCallback)((e=>{const n=De(e);null==a||a.disconnect(),n&&(null==a||a.observe(n)),o(n?t(n):null)}),[t,a]),[l,c]=(0,i.useNodeRef)(s);return(0,r.useMemo)((()=>({nodeRef:l,rect:n,setRef:c})),[n,l,c])}({measure:ne.dragOverlay.measure}),ge=null!=(n=me.nodeRef.current)?n:se,ye=A?null!=(a=me.rect)?a:de:null,ve=Boolean(me.nodeRef.current&&me.rect),be=j(we=ve?null:de,Te(we));var we;const xe=Ae(ge?(0,i.getWindow)(ge):null),Pe=function(e){const t=(0,r.useRef)(e),n=(0,i.useLazyMemo)((n=>e?n&&n!==ke&&e&&t.current&&e.parentNode===t.current.parentNode?n:N(e):ke),[e]);return(0,r.useEffect)((()=>{t.current=e}),[e]),n}(A?null!=pe?pe:se:null),Ne=function(e,t){void 0===t&&(t=I);const[n]=e,o=Ae(n?(0,i.getWindow)(n):null),[a,s]=(0,r.useReducer)((function(){return e.length?e.map((e=>U(e)?o:new K(t(e),e))):Re}),Re),l=Ce({callback:s});return e.length>0&&a===Re&&s(),(0,i.useIsomorphicLayoutEffect)((()=>{e.length?e.forEach((e=>null==l?void 0:l.observe(e))):(null==l||l.disconnect(),s())}),[e]),a}(Pe),$e=We(b,{transform:{x:M.x-be.x,y:M.y-be.y,scaleX:1,scaleY:1},activatorEvent:Z,active:W,activeNodeRect:de,containerNodeRect:fe,draggingNodeRect:ye,over:he.current.over,overlayNodeRect:me.rect,scrollableAncestors:Pe,scrollableAncestorRects:Ne,windowRect:xe}),Be=le?(0,i.add)(le,M):null,qe=function(e){const[t,n]=(0,r.useState)(null),o=(0,r.useRef)(e),a=(0,r.useCallback)((e=>{const t=B(e.target);t&&n((e=>e?(e.set(t,z(t)),new Map(e)):null))}),[]);return(0,r.useEffect)((()=>{const t=o.current;if(e!==t){r(t);const i=e.map((e=>{const t=B(e);return t?(t.addEventListener("scroll",a,{passive:!0}),[t,z(t)]):null})).filter((e=>null!=e));n(i.length?new Map(i):null),o.current=e}return()=>{r(e),r(t)};function r(e){e.forEach((e=>{const t=B(e);null==t||t.removeEventListener("scroll",a)}))}}),[a,e]),(0,r.useMemo)((()=>e.length?t?Array.from(t.values()).reduce(((e,t)=>(0,i.add)(e,t)),g):H(e):g),[e,t])}(Pe),He=je(qe),Ze=je(qe,[de]),Ye=(0,i.add)($e,He),Ke=ye?R(ye,$e):null,Je=W&&Ke?y({active:W,collisionRect:Ke,droppableRects:oe,droppableContainers:te,pointerCoordinates:Be}):null,et=S(Je,"id"),[tt,nt]=(0,r.useState)(null),rt=function(e,t,n){return{...e,scaleX:t&&n?t.width/n.width:1,scaleY:t&&n?t.height/n.height:1}}(ve?$e:(0,i.add)($e,Ze),null!=(l=null==tt?void 0:tt.rect)?l:null,de),ot=(0,r.useCallback)(((e,t)=>{let{sensor:n,options:r}=t;if(null==G.current)return;const i=L.get(G.current);if(!i)return;const a=e.nativeEvent,s=new n({active:G.current,activeNode:i,event:a,options:r,context:he,onStart(e){const t=G.current;if(null==t)return;const n=L.get(t);if(!n)return;const{onDragStart:r}=J.current,i={active:{id:t,data:n.data,rect:V}};(0,o.unstable_batchedUpdates)((()=>{null==r||r(i),k(Xe.Initializing),E({type:f.DragStart,initialCoordinates:e,active:t}),T({type:"onDragStart",event:i})}))},onMove(e){E({type:f.DragMove,coordinates:e})},onEnd:l(f.DragEnd),onCancel:l(f.DragCancel)});function l(e){return async function(){const{active:t,collisions:n,over:r,scrollAdjustedTranslate:i}=he.current;let s=null;if(t&&i){const{cancelDrop:o}=J.current;if(s={activatorEvent:a,active:t,collisions:n,delta:i,over:r},e===f.DragEnd&&"function"==typeof o){await Promise.resolve(o(s))&&(e=f.DragCancel)}}G.current=null,(0,o.unstable_batchedUpdates)((()=>{E({type:e}),k(Xe.Uninitialized),nt(null),q(null),Y(null);const t=e===f.DragEnd?"onDragEnd":"onDragCancel";if(s){const e=J.current[t];null==e||e(s),T({type:t,event:s})}}))}}(0,o.unstable_batchedUpdates)((()=>{q(s),Y(e.nativeEvent)}))}),[L]),it=(0,r.useCallback)(((e,t)=>(n,r)=>{const o=n.nativeEvent,i=L.get(r);if(null!==G.current||!i||o.dndKit||o.defaultPrevented)return;const a={active:i};!0===e(n,t.options,a)&&(o.dndKit={capturedBy:t.sensor},G.current=r,ot(n,t))}),[L,ot]),at=function(e,t){return(0,r.useMemo)((()=>e.reduce(((e,n)=>{const{sensor:r}=n;return[...e,...r.activators.map((e=>({eventName:e.eventName,handler:t(e.handler,n)})))]}),[])),[e,t])}(m,it);!function(e){(0,r.useEffect)((()=>{if(!i.canUseDOM)return;const t=e.map((e=>{let{sensor:t}=e;return null==t.setup?void 0:t.setup()}));return()=>{for(const e of t)null==e||e()}}),e.map((e=>{let{sensor:t}=e;return t})))}(m),(0,i.useIsomorphicLayoutEffect)((()=>{de&&_===Xe.Initializing&&k(Xe.Initialized)}),[de,_]),(0,r.useEffect)((()=>{const{onDragMove:e}=J.current,{active:t,activatorEvent:n,collisions:r,over:i}=he.current;if(!t||!n)return;const a={active:t,activatorEvent:n,collisions:r,delta:{x:Ye.x,y:Ye.y},over:i};(0,o.unstable_batchedUpdates)((()=>{null==e||e(a),T({type:"onDragMove",event:a})}))}),[Ye.x,Ye.y]),(0,r.useEffect)((()=>{const{active:e,activatorEvent:t,collisions:n,droppableContainers:r,scrollAdjustedTranslate:i}=he.current;if(!e||null==G.current||!t||!i)return;const{onDragOver:a}=J.current,s=r.get(et),l=s&&s.rect.current?{id:s.id,rect:s.rect.current,data:s.data,disabled:s.disabled}:null,c={active:e,activatorEvent:t,collisions:n,delta:{x:i.x,y:i.y},over:l};(0,o.unstable_batchedUpdates)((()=>{nt(l),null==a||a(c),T({type:"onDragOver",event:c})}))}),[et]),(0,i.useIsomorphicLayoutEffect)((()=>{he.current={activatorEvent:Z,active:W,activeNode:se,collisionRect:Ke,collisions:Je,droppableRects:oe,draggableNodes:L,draggingNode:ge,draggingNodeRect:ye,droppableContainers:F,over:tt,scrollableAncestors:Pe,scrollAdjustedTranslate:Ye},V.current={initial:ye,translated:Ke}}),[W,se,Je,Ke,L,ge,ye,oe,F,tt,Pe,Ye]),Oe({...ce,delta:M,draggingRect:Ke,pointerCoordinates:Be,scrollableAncestors:Pe,scrollableAncestorRects:Ne});const st=(0,r.useMemo)((()=>({active:W,activeNode:se,activeNodeRect:de,activatorEvent:Z,collisions:Je,containerNodeRect:fe,dragOverlay:me,draggableNodes:L,droppableContainers:F,droppableRects:oe,over:tt,measureDroppableContainers:ie,scrollableAncestors:Pe,scrollableAncestorRects:Ne,measuringConfiguration:ne,measuringScheduled:ae,windowRect:xe})),[W,se,de,Z,Je,fe,me,L,F,oe,tt,ie,Pe,Ne,ne,ae,xe]),lt=(0,r.useMemo)((()=>({activatorEvent:Z,activators:at,active:W,activeNodeRect:de,ariaDescribedById:{draggable:ee},dispatch:E,draggableNodes:L,over:tt,measureDroppableContainers:ie})),[Z,at,W,de,E,ee,L,tt,ie]);return r.createElement(s.Provider,{value:C},r.createElement(Fe.Provider,{value:lt},r.createElement(Qe.Provider,{value:st},r.createElement(Ge.Provider,{value:rt},p)),r.createElement(Ue,{disabled:!1===(null==u?void 0:u.restoreFocus)})),r.createElement(d,{...u,hiddenTextDescribedById:ee}))})),He=(0,r.createContext)(null),Ze="button",Ye="Droppable";function Ke(e){let{id:t,data:n,disabled:o=!1,attributes:a}=e;const s=(0,i.useUniqueId)(Ye),{activators:l,activatorEvent:c,active:u,activeNodeRect:d,ariaDescribedById:f,draggableNodes:h,over:p}=(0,r.useContext)(Fe),{role:m=Ze,roleDescription:g="draggable",tabIndex:y=0}=null!=a?a:{},v=(null==u?void 0:u.id)===t,b=(0,r.useContext)(v?Ge:He),[O,w]=(0,i.useNodeRef)(),[S,x]=(0,i.useNodeRef)(),E=function(e,t){return(0,r.useMemo)((()=>e.reduce(((e,n)=>{let{eventName:r,handler:o}=n;return e[r]=e=>{o(e,t)},e}),{})),[e,t])}(l,t),T=(0,i.useLatestValue)(n);(0,i.useIsomorphicLayoutEffect)((()=>(h.set(t,{id:t,key:s,node:O,activatorNode:S,data:T}),()=>{const e=h.get(t);e&&e.key===s&&h.delete(t)})),[h,t]);return{active:u,activatorEvent:c,activeNodeRect:d,attributes:(0,r.useMemo)((()=>({role:m,tabIndex:y,"aria-disabled":o,"aria-pressed":!(!v||m!==Ze)||void 0,"aria-roledescription":g,"aria-describedby":f.draggable})),[o,m,y,v,g,f.draggable]),isDragging:v,listeners:o?void 0:E,node:O,over:p,setNodeRef:w,setActivatorNodeRef:x,transform:b}}function Je(){return(0,r.useContext)(Qe)}const et="Droppable",tt={timeout:25};function nt(e){let{data:t,disabled:n=!1,id:o,resizeObserverConfig:a}=e;const s=(0,i.useUniqueId)(et),{active:l,dispatch:c,over:u,measureDroppableContainers:d}=(0,r.useContext)(Fe),h=(0,r.useRef)({disabled:n}),p=(0,r.useRef)(!1),m=(0,r.useRef)(null),g=(0,r.useRef)(null),{disabled:y,updateMeasurementsFor:v,timeout:b}={...tt,...a},O=(0,i.useLatestValue)(null!=v?v:o),w=Ce({callback:(0,r.useCallback)((()=>{p.current?(null!=g.current&&clearTimeout(g.current),g.current=setTimeout((()=>{d(Array.isArray(O.current)?O.current:[O.current]),g.current=null}),b)):p.current=!0}),[b]),disabled:y||!l}),S=(0,r.useCallback)(((e,t)=>{w&&(t&&(w.unobserve(t),p.current=!1),e&&w.observe(e))}),[w]),[x,E]=(0,i.useNodeRef)(S),T=(0,i.useLatestValue)(t);return(0,r.useEffect)((()=>{w&&x.current&&(w.disconnect(),p.current=!1,w.observe(x.current))}),[x,w]),(0,i.useIsomorphicLayoutEffect)((()=>(c({type:f.RegisterDroppable,element:{id:o,key:s,disabled:n,node:x,rect:m,data:T}}),()=>c({type:f.UnregisterDroppable,key:s,id:o}))),[o]),(0,r.useEffect)((()=>{n!==h.current.disabled&&(c({type:f.SetDroppableDisabled,id:o,key:s,disabled:n}),h.current.disabled=n)}),[o,s,n,c]),{active:l,rect:m,isOver:(null==u?void 0:u.id)===o,node:x,over:u,setNodeRef:E}}function rt(e){let{animation:t,children:n}=e;const[o,a]=(0,r.useState)(null),[s,l]=(0,r.useState)(null),c=(0,i.usePrevious)(n);return n||o||!c||a(c),(0,i.useIsomorphicLayoutEffect)((()=>{if(!s)return;const e=null==o?void 0:o.key,n=null==o?void 0:o.props.id;null!=e&&null!=n?Promise.resolve(t(n,s)).then((()=>{a(null)})):a(null)}),[t,o,s]),r.createElement(r.Fragment,null,n,o?(0,r.cloneElement)(o,{ref:l}):null)}const ot={x:0,y:0,scaleX:1,scaleY:1};function it(e){let{children:t}=e;return r.createElement(Fe.Provider,{value:Be},r.createElement(Ge.Provider,{value:ot},t))}const at={position:"fixed",touchAction:"none"},st=e=>(0,i.isKeyboardEvent)(e)?"transform 250ms ease":void 0,lt=(0,r.forwardRef)(((e,t)=>{let{as:n,activatorEvent:o,adjustScale:a,children:s,className:l,rect:c,style:u,transform:d,transition:f=st}=e;if(!c)return null;const h=a?d:{...d,scaleX:1,scaleY:1},p={...at,width:c.width,height:c.height,top:c.top,left:c.left,transform:i.CSS.Transform.toString(h),transformOrigin:a&&o?v(o,c):void 0,transition:"function"==typeof f?f(o):f,...u};return r.createElement(n,{className:l,style:p,ref:t},s)})),ct=e=>t=>{let{active:n,dragOverlay:r}=t;const o={},{styles:i,className:a}=e;if(null!=i&&i.active)for(const[e,t]of Object.entries(i.active))void 0!==t&&(o[e]=n.node.style.getPropertyValue(e),n.node.style.setProperty(e,t));if(null!=i&&i.dragOverlay)for(const[e,t]of Object.entries(i.dragOverlay))void 0!==t&&r.node.style.setProperty(e,t);return null!=a&&a.active&&n.node.classList.add(a.active),null!=a&&a.dragOverlay&&r.node.classList.add(a.dragOverlay),function(){for(const[e,t]of Object.entries(o))n.node.style.setProperty(e,t);null!=a&&a.active&&n.node.classList.remove(a.active)}},ut={duration:250,easing:"ease",keyframes:e=>{let{transform:{initial:t,final:n}}=e;return[{transform:i.CSS.Transform.toString(t)},{transform:i.CSS.Transform.toString(n)}]},sideEffects:ct({styles:{active:{opacity:"0"}}})};function dt(e){let{config:t,draggableNodes:n,droppableContainers:r,measuringConfiguration:o}=e;return(0,i.useEvent)(((e,a)=>{if(null===t)return;const s=n.get(e);if(!s)return;const l=s.node.current;if(!l)return;const c=De(a);if(!c)return;const{transform:u}=(0,i.getWindow)(a).getComputedStyle(a),d=D(u);if(!d)return;const f="function"==typeof t?t:function(e){const{duration:t,easing:n,sideEffects:r,keyframes:o}={...ut,...e};return e=>{let{active:i,dragOverlay:a,transform:s,...l}=e;if(!t)return;const c={x:a.rect.left-i.rect.left,y:a.rect.top-i.rect.top},u={scaleX:1!==s.scaleX?i.rect.width*s.scaleX/a.rect.width:1,scaleY:1!==s.scaleY?i.rect.height*s.scaleY/a.rect.height:1},d={x:s.x-c.x,y:s.y-c.y,...u},f=o({...l,active:i,dragOverlay:a,transform:{initial:s,final:d}}),[h]=f,p=f[f.length-1];if(JSON.stringify(h)===JSON.stringify(p))return;const m=null==r?void 0:r({active:i,dragOverlay:a,...l}),g=a.node.animate(f,{duration:t,easing:n,fill:"forwards"});return new Promise((e=>{g.onfinish=()=>{null==m||m(),e()}}))}}(t);return Z(l,o.draggable.measure),f({active:{id:e,data:s.data,node:l,rect:o.draggable.measure(l)},draggableNodes:n,dragOverlay:{node:a,rect:o.dragOverlay.measure(c)},droppableContainers:r,measuringConfiguration:o,transform:d})}))}let ft=0;function ht(e){return(0,r.useMemo)((()=>{if(null!=e)return ft++,ft}),[e])}const pt=r.memo((e=>{let{adjustScale:t=!1,children:n,dropAnimation:o,style:i,transition:a,modifiers:s,wrapperElement:l="div",className:c,zIndex:u=999}=e;const{activatorEvent:d,active:f,activeNodeRect:h,containerNodeRect:p,draggableNodes:m,droppableContainers:g,dragOverlay:y,over:v,measuringConfiguration:b,scrollableAncestors:O,scrollableAncestorRects:w,windowRect:S}=Je(),x=(0,r.useContext)(Ge),E=ht(null==f?void 0:f.id),T=We(s,{activatorEvent:d,active:f,activeNodeRect:h,containerNodeRect:p,draggingNodeRect:y.rect,over:v,overlayNodeRect:y.rect,scrollableAncestors:O,scrollableAncestorRects:w,transform:x,windowRect:S}),C=Te(h),P=dt({config:o,draggableNodes:m,droppableContainers:g,measuringConfiguration:b}),_=C?y.setRef:void 0;return r.createElement(it,null,r.createElement(rt,{animation:P},f&&E?r.createElement(lt,{key:E,id:f.id,ref:_,as:l,activatorEvent:d,adjustScale:t,className:c,transition:a,rect:C,style:{zIndex:u,...i},transform:T},n):null))}))},32339:(e,t,n)=>{"use strict";n.r(t),n.d(t,{createSnapModifier:()=>o,restrictToFirstScrollableAncestor:()=>l,restrictToHorizontalAxis:()=>i,restrictToParentElement:()=>s,restrictToVerticalAxis:()=>c,restrictToWindowEdges:()=>u,snapCenterToCursor:()=>d});var r=n(24285);function o(e){return t=>{let{transform:n}=t;return{...n,x:Math.ceil(n.x/e)*e,y:Math.ceil(n.y/e)*e}}}const i=e=>{let{transform:t}=e;return{...t,y:0}};function a(e,t,n){const r={...e};return t.top+e.y<=n.top?r.y=n.top-t.top:t.bottom+e.y>=n.top+n.height&&(r.y=n.top+n.height-t.bottom),t.left+e.x<=n.left?r.x=n.left-t.left:t.right+e.x>=n.left+n.width&&(r.x=n.left+n.width-t.right),r}const s=e=>{let{containerNodeRect:t,draggingNodeRect:n,transform:r}=e;return n&&t?a(r,n,t):r},l=e=>{let{draggingNodeRect:t,transform:n,scrollableAncestorRects:r}=e;const o=r[0];return t&&o?a(n,t,o):n},c=e=>{let{transform:t}=e;return{...t,x:0}},u=e=>{let{transform:t,draggingNodeRect:n,windowRect:r}=e;return n&&r?a(t,n,r):t},d=e=>{let{activatorEvent:t,draggingNodeRect:n,transform:o}=e;if(n&&t){const e=(0,r.getEventCoordinates)(t);if(!e)return o;const i=e.x-n.left,a=e.y-n.top;return{...o,x:o.x+i-n.width/2,y:o.y+a-n.height/2}}return o}},45587:(e,t,n)=>{"use strict";n.r(t),n.d(t,{SortableContext:()=>v,arrayMove:()=>a,arraySwap:()=>s,defaultAnimateLayoutChanges:()=>O,defaultNewIndexGetter:()=>b,hasSortableData:()=>C,horizontalListSortingStrategy:()=>d,rectSortingStrategy:()=>f,rectSwappingStrategy:()=>h,sortableKeyboardCoordinates:()=>_,useSortable:()=>T,verticalListSortingStrategy:()=>m});var r=n(36198),o=n(94697),i=n(24285);function a(e,t,n){const r=e.slice();return r.splice(n<0?r.length+n:n,0,r.splice(t,1)[0]),r}function s(e,t,n){const r=e.slice();return r[t]=e[n],r[n]=e[t],r}function l(e,t){return e.reduce(((e,n,r)=>{const o=t.get(n);return o&&(e[r]=o),e}),Array(e.length))}function c(e){return null!==e&&e>=0}const u={scaleX:1,scaleY:1},d=e=>{var t;let{rects:n,activeNodeRect:r,activeIndex:o,overIndex:i,index:a}=e;const s=null!=(t=n[o])?t:r;if(!s)return null;const l=function(e,t,n){const r=e[t],o=e[t-1],i=e[t+1];if(!r||!o&&!i)return 0;if(no&&a<=i?{x:-s.width-l,y:0,...u}:a=i?{x:s.width+l,y:0,...u}:{x:0,y:0,...u}};const f=e=>{let{rects:t,activeIndex:n,overIndex:r,index:o}=e;const i=a(t,r,n),s=t[o],l=i[o];return l&&s?{x:l.left-s.left,y:l.top-s.top,scaleX:l.width/s.width,scaleY:l.height/s.height}:null},h=e=>{let t,n,{activeIndex:r,index:o,rects:i,overIndex:a}=e;return o===r&&(t=i[o],n=i[a]),o===a&&(t=i[o],n=i[r]),n&&t?{x:n.left-t.left,y:n.top-t.top,scaleX:n.width/t.width,scaleY:n.height/t.height}:null},p={scaleX:1,scaleY:1},m=e=>{var t;let{activeIndex:n,activeNodeRect:r,index:o,rects:i,overIndex:a}=e;const s=null!=(t=i[n])?t:r;if(!s)return null;if(o===n){const e=i[a];return e?{x:0,y:nn&&o<=a?{x:0,y:-s.height-l,...p}:o=a?{x:0,y:s.height+l,...p}:{x:0,y:0,...p}};const g="Sortable",y=r.createContext({activeIndex:-1,containerId:g,disableTransforms:!1,items:[],overIndex:-1,useDragOverlay:!1,sortedRects:[],strategy:f,disabled:{draggable:!1,droppable:!1}});function v(e){let{children:t,id:n,items:a,strategy:s=f,disabled:c=!1}=e;const{active:u,dragOverlay:d,droppableRects:h,over:p,measureDroppableContainers:m}=(0,o.useDndContext)(),v=(0,i.useUniqueId)(g,n),b=Boolean(null!==d.rect),O=(0,r.useMemo)((()=>a.map((e=>"object"==typeof e&&"id"in e?e.id:e))),[a]),w=null!=u,S=u?O.indexOf(u.id):-1,x=p?O.indexOf(p.id):-1,E=(0,r.useRef)(O),T=!function(e,t){if(e===t)return!0;if(e.length!==t.length)return!1;for(let n=0;n{T&&w&&m(O)}),[T,O,w,m]),(0,r.useEffect)((()=>{E.current=O}),[O]);const _=(0,r.useMemo)((()=>({activeIndex:S,containerId:v,disabled:P,disableTransforms:C,items:O,overIndex:x,useDragOverlay:b,sortedRects:l(O,h),strategy:s})),[S,v,P.draggable,P.droppable,C,O,x,h,b,s]);return r.createElement(y.Provider,{value:_},t)}const b=e=>{let{id:t,items:n,activeIndex:r,overIndex:o}=e;return a(n,r,o).indexOf(t)},O=e=>{let{containerId:t,isSorting:n,wasDragging:r,index:o,items:i,newIndex:a,previousItems:s,previousContainerId:l,transition:c}=e;return!(!c||!r)&&((s===i||o!==a)&&(!!n||a!==o&&t===l))},w={duration:200,easing:"ease"},S="transform",x=i.CSS.Transition.toString({property:S,duration:0,easing:"linear"}),E={roleDescription:"sortable"};function T(e){let{animateLayoutChanges:t=O,attributes:n,disabled:a,data:s,getNewIndex:l=b,id:u,strategy:d,resizeObserverConfig:f,transition:h=w}=e;const{items:p,containerId:m,activeIndex:g,disabled:v,disableTransforms:T,sortedRects:C,overIndex:P,useDragOverlay:_,strategy:k}=(0,r.useContext)(y),j=function(e,t){var n,r;if("boolean"==typeof e)return{draggable:e,droppable:!1};return{draggable:null!=(n=null==e?void 0:e.draggable)?n:t.draggable,droppable:null!=(r=null==e?void 0:e.droppable)?r:t.droppable}}(a,v),A=p.indexOf(u),R=(0,r.useMemo)((()=>({sortable:{containerId:m,index:A,items:p},...s})),[m,s,A,p]),D=(0,r.useMemo)((()=>p.slice(p.indexOf(u))),[p,u]),{rect:L,node:I,isOver:M,setNodeRef:N}=(0,o.useDroppable)({id:u,data:R,disabled:j.droppable,resizeObserverConfig:{updateMeasurementsFor:D,...f}}),{active:$,activatorEvent:B,activeNodeRect:F,attributes:Q,setNodeRef:z,listeners:V,isDragging:U,over:W,setActivatorNodeRef:G,transform:X}=(0,o.useDraggable)({id:u,data:R,attributes:{...E,...n},disabled:j.draggable}),q=(0,i.useCombinedRefs)(N,z),H=Boolean($),Z=H&&!T&&c(g)&&c(P),Y=!_&&U,K=Y&&Z?X:null,J=Z?null!=K?K:(null!=d?d:k)({rects:C,activeNodeRect:F,activeIndex:g,overIndex:P,index:A}):null,ee=c(g)&&c(P)?l({id:u,items:p,activeIndex:g,overIndex:P}):A,te=null==$?void 0:$.id,ne=(0,r.useRef)({activeId:te,items:p,newIndex:ee,containerId:m}),re=p!==ne.current.items,oe=t({active:$,containerId:m,isDragging:U,isSorting:H,id:u,index:A,items:p,newIndex:ne.current.newIndex,previousItems:ne.current.items,previousContainerId:ne.current.containerId,transition:h,wasDragging:null!=ne.current.activeId}),ie=function(e){let{disabled:t,index:n,node:a,rect:s}=e;const[l,c]=(0,r.useState)(null),u=(0,r.useRef)(n);return(0,i.useIsomorphicLayoutEffect)((()=>{if(!t&&n!==u.current&&a.current){const e=s.current;if(e){const t=(0,o.getClientRect)(a.current,{ignoreTransform:!0}),n={x:e.left-t.left,y:e.top-t.top,scaleX:e.width/t.width,scaleY:e.height/t.height};(n.x||n.y)&&c(n)}}n!==u.current&&(u.current=n)}),[t,n,a,s]),(0,r.useEffect)((()=>{l&&c(null)}),[l]),l}({disabled:!oe,index:A,node:I,rect:L});return(0,r.useEffect)((()=>{H&&ne.current.newIndex!==ee&&(ne.current.newIndex=ee),m!==ne.current.containerId&&(ne.current.containerId=m),p!==ne.current.items&&(ne.current.items=p)}),[H,ee,m,p]),(0,r.useEffect)((()=>{if(te===ne.current.activeId)return;if(te&&!ne.current.activeId)return void(ne.current.activeId=te);const e=setTimeout((()=>{ne.current.activeId=te}),50);return()=>clearTimeout(e)}),[te]),{active:$,activeIndex:g,attributes:Q,data:R,rect:L,index:A,newIndex:ee,items:p,isOver:M,isSorting:H,isDragging:U,listeners:V,node:I,overIndex:P,over:W,setNodeRef:q,setActivatorNodeRef:G,setDroppableNodeRef:N,setDraggableNodeRef:z,transform:null!=ie?ie:J,transition:function(){if(ie||re&&ne.current.newIndex===A)return x;if(Y&&!(0,i.isKeyboardEvent)(B)||!h)return;if(H||oe)return i.CSS.Transition.toString({...h,property:S});return}()}}function C(e){if(!e)return!1;const t=e.data.current;return!!(t&&"sortable"in t&&"object"==typeof t.sortable&&"containerId"in t.sortable&&"items"in t.sortable&&"index"in t.sortable)}const P=[o.KeyboardCode.Down,o.KeyboardCode.Right,o.KeyboardCode.Up,o.KeyboardCode.Left],_=(e,t)=>{let{context:{active:n,collisionRect:r,droppableRects:a,droppableContainers:s,over:l,scrollableAncestors:c}}=t;if(P.includes(e.code)){if(e.preventDefault(),!n||!r)return;const t=[];s.getEnabled().forEach((n=>{if(!n||null!=n&&n.disabled)return;const i=a.get(n.id);if(i)switch(e.code){case o.KeyboardCode.Down:r.topi.top&&t.push(n);break;case o.KeyboardCode.Left:r.left>i.left&&t.push(n);break;case o.KeyboardCode.Right:r.left1&&(d=u[1].id),null!=d){const e=s.get(n.id),t=s.get(d),l=t?a.get(t.id):null,u=null==t?void 0:t.node.current;if(u&&l&&e&&t){const n=(0,o.getScrollableAncestors)(u).some(((e,t)=>c[t]!==e)),a=k(e,t),s=function(e,t){if(!C(e)||!C(t))return!1;if(!k(e,t))return!1;return e.data.current.sortable.index{"use strict";n.r(t),n.d(t,{CSS:()=>k,add:()=>x,canUseDOM:()=>i,findFirstFocusableNode:()=>A,getEventCoordinates:()=>_,getOwnerDocument:()=>f,getWindow:()=>l,hasViewportRelativeCoordinates:()=>T,isDocument:()=>c,isHTMLElement:()=>u,isKeyboardEvent:()=>C,isNode:()=>s,isSVGElement:()=>d,isTouchEvent:()=>P,isWindow:()=>a,subtract:()=>E,useCombinedRefs:()=>o,useEvent:()=>p,useInterval:()=>m,useIsomorphicLayoutEffect:()=>h,useLatestValue:()=>g,useLazyMemo:()=>y,useNodeRef:()=>v,usePrevious:()=>b,useUniqueId:()=>w});var r=n(36198);function o(){for(var e=arguments.length,t=new Array(e),n=0;ne=>{t.forEach((t=>t(e)))}),t)}const i="undefined"!=typeof window&&void 0!==window.document&&void 0!==window.document.createElement;function a(e){const t=Object.prototype.toString.call(e);return"[object Window]"===t||"[object global]"===t}function s(e){return"nodeType"in e}function l(e){var t,n;return e?a(e)?e:s(e)&&null!=(t=null==(n=e.ownerDocument)?void 0:n.defaultView)?t:window:window}function c(e){const{Document:t}=l(e);return e instanceof t}function u(e){return!a(e)&&e instanceof l(e).HTMLElement}function d(e){return e instanceof l(e).SVGElement}function f(e){return e?a(e)?e.document:s(e)?c(e)?e:u(e)||d(e)?e.ownerDocument:document:document:document}const h=i?r.useLayoutEffect:r.useEffect;function p(e){const t=(0,r.useRef)(e);return h((()=>{t.current=e})),(0,r.useCallback)((function(){for(var e=arguments.length,n=new Array(e),r=0;r{e.current=setInterval(t,n)}),[]),(0,r.useCallback)((()=>{null!==e.current&&(clearInterval(e.current),e.current=null)}),[])]}function g(e,t){void 0===t&&(t=[e]);const n=(0,r.useRef)(e);return h((()=>{n.current!==e&&(n.current=e)}),t),n}function y(e,t){const n=(0,r.useRef)();return(0,r.useMemo)((()=>{const t=e(n.current);return n.current=t,t}),[...t])}function v(e){const t=p(e),n=(0,r.useRef)(null),o=(0,r.useCallback)((e=>{e!==n.current&&(null==t||t(e,n.current)),n.current=e}),[]);return[n,o]}function b(e){const t=(0,r.useRef)();return(0,r.useEffect)((()=>{t.current=e}),[e]),t.current}let O={};function w(e,t){return(0,r.useMemo)((()=>{if(t)return t;const n=null==O[e]?0:O[e]+1;return O[e]=n,e+"-"+n}),[e,t])}function S(e){return function(t){for(var n=arguments.length,r=new Array(n>1?n-1:0),o=1;o{const r=Object.entries(n);for(const[n,o]of r){const r=t[n];null!=r&&(t[n]=r+e*o)}return t}),{...t})}}const x=S(1),E=S(-1);function T(e){return"clientX"in e&&"clientY"in e}function C(e){if(!e)return!1;const{KeyboardEvent:t}=l(e.target);return t&&e instanceof t}function P(e){if(!e)return!1;const{TouchEvent:t}=l(e.target);return t&&e instanceof t}function _(e){if(P(e)){if(e.touches&&e.touches.length){const{clientX:t,clientY:n}=e.touches[0];return{x:t,y:n}}if(e.changedTouches&&e.changedTouches.length){const{clientX:t,clientY:n}=e.changedTouches[0];return{x:t,y:n}}}return T(e)?{x:e.clientX,y:e.clientY}:null}const k=Object.freeze({Translate:{toString(e){if(!e)return;const{x:t,y:n}=e;return"translate3d("+(t?Math.round(t):0)+"px, "+(n?Math.round(n):0)+"px, 0)"}},Scale:{toString(e){if(!e)return;const{scaleX:t,scaleY:n}=e;return"scaleX("+t+") scaleY("+n+")"}},Transform:{toString(e){if(e)return[k.Translate.toString(e),k.Scale.toString(e)].join(" ")}},Transition:{toString(e){let{property:t,duration:n,easing:r}=e;return t+" "+n+"ms "+r}}}),j="a,frame,iframe,input:not([type=hidden]):not(:disabled),select:not(:disabled),textarea:not(:disabled),button:not(:disabled),*[tabindex]";function A(e){return e.matches(j)?e:e.querySelector(j)}},62506:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>r});const r=function(e){for(var t,n=0,r=0,o=e.length;o>=4;++r,o-=4)t=1540483477*(65535&(t=255&e.charCodeAt(r)|(255&e.charCodeAt(++r))<<8|(255&e.charCodeAt(++r))<<16|(255&e.charCodeAt(++r))<<24))+(59797*(t>>>16)<<16),n=1540483477*(65535&(t^=t>>>24))+(59797*(t>>>16)<<16)^1540483477*(65535&n)+(59797*(n>>>16)<<16);switch(o){case 3:n^=(255&e.charCodeAt(r+2))<<16;case 2:n^=(255&e.charCodeAt(r+1))<<8;case 1:n=1540483477*(65535&(n^=255&e.charCodeAt(r)))+(59797*(n>>>16)<<16)}return(((n=1540483477*(65535&(n^=n>>>13))+(59797*(n>>>16)<<16))^n>>>15)>>>0).toString(36)}},40351:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>r});const r={animationIterationCount:1,borderImageOutset:1,borderImageSlice:1,borderImageWidth:1,boxFlex:1,boxFlexGroup:1,boxOrdinalGroup:1,columnCount:1,columns:1,flex:1,flexGrow:1,flexPositive:1,flexShrink:1,flexNegative:1,flexOrder:1,gridRow:1,gridRowEnd:1,gridRowSpan:1,gridRowStart:1,gridColumn:1,gridColumnEnd:1,gridColumnSpan:1,gridColumnStart:1,msGridRow:1,msGridRowSpan:1,msGridColumn:1,msGridColumnSpan:1,fontWeight:1,lineHeight:1,opacity:1,order:1,orphans:1,tabSize:1,widows:1,zIndex:1,zoom:1,WebkitLineClamp:1,fillOpacity:1,floodOpacity:1,stopOpacity:1,strokeDasharray:1,strokeDashoffset:1,strokeMiterlimit:1,strokeOpacity:1,strokeWidth:1}},54572:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>h});var r=n(1413),o=n(89062),i=n(71002),a=n(15671),s=n(43144),l=n(4942),c=n(70580),u=n(45197),d=n(82781),f=(n(28811),function(){function e(t){(0,a.default)(this,e),(0,l.default)(this,"rules",null),(0,l.default)(this,"_messages",c.messages),this.define(t)}return(0,s.default)(e,[{key:"define",value:function(e){var t=this;if(!e)throw new Error("Cannot configure a schema with no rules");if("object"!==(0,i.default)(e)||Array.isArray(e))throw new Error("Rules must be an object");this.rules={},Object.keys(e).forEach((function(n){var r=e[n];t.rules[n]=Array.isArray(r)?r:[r]}))}},{key:"messages",value:function(e){return e&&(this._messages=(0,u.deepMerge)((0,c.newMessages)(),e)),this._messages}},{key:"validate",value:function(t){var n=this,a=t,s=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},l=arguments.length>2&&void 0!==arguments[2]?arguments[2]:function(){};if("function"==typeof s&&(l=s,s={}),!this.rules||0===Object.keys(this.rules).length)return l&&l(null,a),Promise.resolve(a);if(s.messages){var d=this.messages();d===c.messages&&(d=(0,c.newMessages)()),(0,u.deepMerge)(d,s.messages),s.messages=d}else s.messages=this.messages();var f={};(s.keys||Object.keys(this.rules)).forEach((function(e){var o=n.rules[e],s=a[e];o.forEach((function(o){var l=o;if("function"==typeof l.transform){a===t&&(a=(0,r.default)({},a)),s=a[e]=l.transform(s);var c=l.type||(Array.isArray(s)?"array":(0,i.default)(s));(0,u.isEmptyValue)(s,c)||(l.type=c)}(l="function"==typeof l?{validator:l}:(0,r.default)({},l)).validator=n.getValidationMethod(l),l.validator&&(l.field=e,l.fullField=l.fullField||e,l.type=n.getType(l),f[e]=f[e]||[],f[e].push({rule:l,value:s,source:a,field:e}))}))}));var h={};return(0,u.asyncMap)(f,s,(function(t,n){var l,c=t.rule,d=!("object"!==c.type&&"array"!==c.type||"object"!==(0,i.default)(c.fields)&&"object"!==(0,i.default)(c.defaultField));function f(e,t){return(0,r.default)((0,r.default)({},t),{},{fullField:"".concat(c.fullField,".").concat(e),fullFields:c.fullFields?[].concat((0,o.default)(c.fullFields),[e]):[e]})}function p(){var i=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],l=Array.isArray(i)?i:[i];!s.suppressWarning&&l.length&&e.warning("async-validator:",l),l.length&&void 0!==c.message&&(l=[].concat(c.message));var p=l.map((0,u.complementError)(c,a));if(s.first&&p.length)return h[c.field]=1,n(p);if(d){if(c.required&&!t.value)return void 0!==c.message?p=[].concat(c.message).map((0,u.complementError)(c,a)):s.error&&(p=[s.error(c,(0,u.format)(s.messages.required,c.field))]),n(p);var m={};c.defaultField&&Object.keys(t.value).map((function(e){m[e]=c.defaultField})),m=(0,r.default)((0,r.default)({},m),t.rule.fields);var g={};Object.keys(m).forEach((function(e){var t=m[e],n=Array.isArray(t)?t:[t];g[e]=n.map(f.bind(null,e))}));var y=new e(g);y.messages(s.messages),t.rule.options&&(t.rule.options.messages=s.messages,t.rule.options.error=s.error),y.validate(t.value,t.rule.options||s,(function(e){var t=[];p&&p.length&&t.push.apply(t,(0,o.default)(p)),e&&e.length&&t.push.apply(t,(0,o.default)(e)),n(t.length?t:null)}))}else n(p)}if(d=d&&(c.required||!c.required&&t.value),c.field=t.field,c.asyncValidator)l=c.asyncValidator(c,t.value,p,t.source,s);else if(c.validator){try{l=c.validator(c,t.value,p,t.source,s)}catch(e){var m,g;null===(m=(g=console).error)||void 0===m||m.call(g,e),s.suppressValidatorError||setTimeout((function(){throw e}),0),p(e.message)}!0===l?p():!1===l?p("function"==typeof c.message?c.message(c.fullField||c.field):c.message||"".concat(c.fullField||c.field," fails")):l instanceof Array?p(l):l instanceof Error&&p(l.message)}l&&l.then&&l.then((function(){return p()}),(function(e){return p(e)}))}),(function(e){!function(e){for(var t,n,r=[],i={},s=0;s{"use strict";n.r(t)},70580:(e,t,n)=>{"use strict";function r(){return{default:"Validation error on field %s",required:"%s is required",enum:"%s must be one of %s",whitespace:"%s cannot be empty",date:{format:"%s date %s is invalid for format %s",parse:"%s date could not be parsed, %s is invalid ",invalid:"%s date %s is invalid"},types:{string:"%s is not a %s",method:"%s is not a %s (function)",array:"%s is not an %s",object:"%s is not an %s",number:"%s is not a %s",date:"%s is not a %s",boolean:"%s is not a %s",integer:"%s is not an %s",float:"%s is not a %s",regexp:"%s is not a valid %s",email:"%s is not a valid %s",url:"%s is not a valid %s",hex:"%s is not a valid %s"},string:{len:"%s must be exactly %s characters",min:"%s must be at least %s characters",max:"%s cannot be longer than %s characters",range:"%s must be between %s and %s characters"},number:{len:"%s must equal %s",min:"%s cannot be less than %s",max:"%s cannot be greater than %s",range:"%s must be between %s and %s"},array:{len:"%s must be exactly %s in length",min:"%s cannot be less than %s in length",max:"%s cannot be greater than %s in length",range:"%s must be between %s and %s in length"},pattern:{mismatch:"%s value %s does not match pattern %s"},clone:function(){var e=JSON.parse(JSON.stringify(this));return e.clone=this.clone,e}}}n.r(t),n.d(t,{messages:()=>o,newMessages:()=>r});var o=r()},70122:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(45197),o="enum";const i=function(e,t,n,i,a){e[o]=Array.isArray(e[o])?e[o]:[],-1===e[o].indexOf(t)&&i.push((0,r.format)(a.messages[o],e.fullField,e[o].join(", ")))}},66758:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>c});var r=n(70122),o=n(3885),i=n(45575),a=n(28766),s=n(6126),l=n(53898);const c={required:a.default,whitespace:l.default,type:s.default,range:i.default,enum:r.default,pattern:o.default}},3885:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>o});var r=n(45197);const o=function(e,t,n,o,i){if(e.pattern)if(e.pattern instanceof RegExp)e.pattern.lastIndex=0,e.pattern.test(t)||o.push((0,r.format)(i.messages.pattern.mismatch,e.fullField,t,e.pattern));else if("string"==typeof e.pattern){new RegExp(e.pattern).test(t)||o.push((0,r.format)(i.messages.pattern.mismatch,e.fullField,t,e.pattern))}}},45575:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>o});var r=n(45197);const o=function(e,t,n,o,i){var a="number"==typeof e.len,s="number"==typeof e.min,l="number"==typeof e.max,c=t,u=null,d="number"==typeof t,f="string"==typeof t,h=Array.isArray(t);if(d?u="number":f?u="string":h&&(u="array"),!u)return!1;h&&(c=t.length),f&&(c=t.replace(/[\uD800-\uDBFF][\uDC00-\uDFFF]/g,"_").length),a?c!==e.len&&o.push((0,r.format)(i.messages[u].len,e.fullField,e.len)):s&&!l&&ce.max?o.push((0,r.format)(i.messages[u].max,e.fullField,e.max)):s&&l&&(ce.max)&&o.push((0,r.format)(i.messages[u].range,e.fullField,e.min,e.max))}},28766:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>o});var r=n(45197);const o=function(e,t,n,o,i,a){!e.required||n.hasOwnProperty(e.field)&&!(0,r.isEmptyValue)(t,a||e.type)||o.push((0,r.format)(i.messages.required,e.fullField))}},6126:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>u});var r=n(71002),o=n(45197),i=n(28766),a=n(63274),s=/^(([^<>()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}])|(([a-zA-Z\-0-9\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]+\.)+[a-zA-Z\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]{2,}))$/,l=/^#?([a-f0-9]{6}|[a-f0-9]{3})$/i,c={integer:function(e){return c.number(e)&&parseInt(e,10)===e},float:function(e){return c.number(e)&&!c.integer(e)},array:function(e){return Array.isArray(e)},regexp:function(e){if(e instanceof RegExp)return!0;try{return!!new RegExp(e)}catch(e){return!1}},date:function(e){return"function"==typeof e.getTime&&"function"==typeof e.getMonth&&"function"==typeof e.getYear&&!isNaN(e.getTime())},number:function(e){return!isNaN(e)&&"number"==typeof e},object:function(e){return"object"===(0,r.default)(e)&&!c.array(e)},method:function(e){return"function"==typeof e},email:function(e){return"string"==typeof e&&e.length<=320&&!!e.match(s)},url:function(e){return"string"==typeof e&&e.length<=2048&&!!e.match((0,a.default)())},hex:function(e){return"string"==typeof e&&!!e.match(l)}};const u=function(e,t,n,a,s){if(e.required&&void 0===t)(0,i.default)(e,t,n,a,s);else{var l=e.type;["integer","float","array","regexp","object","method","email","number","date","url","hex"].indexOf(l)>-1?c[l](t)||a.push((0,o.format)(s.messages.types[l],e.fullField,e.type)):l&&(0,r.default)(t)!==e.type&&a.push((0,o.format)(s.messages.types[l],e.fullField,e.type))}}},63274:(e,t,n)=>{"use strict";var r;n.r(t),n.d(t,{default:()=>o});const o=function(){if(r)return r;var e="[a-fA-F\\d:]",t=function(t){return t&&t.includeBoundaries?"(?:(?<=\\s|^)(?=".concat(e,")|(?<=").concat(e,")(?=\\s|$))"):""},n="(?:25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]\\d|\\d)(?:\\.(?:25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]\\d|\\d)){3}",o="[a-fA-F\\d]{1,4}",i="\n(?:\n(?:".concat(o,":){7}(?:").concat(o,"|:)| // 1:2:3:4:5:6:7:: 1:2:3:4:5:6:7:8\n(?:").concat(o,":){6}(?:").concat(n,"|:").concat(o,"|:)| // 1:2:3:4:5:6:: 1:2:3:4:5:6::8 1:2:3:4:5:6::8 1:2:3:4:5:6::1.2.3.4\n(?:").concat(o,":){5}(?::").concat(n,"|(?::").concat(o,"){1,2}|:)| // 1:2:3:4:5:: 1:2:3:4:5::7:8 1:2:3:4:5::8 1:2:3:4:5::7:1.2.3.4\n(?:").concat(o,":){4}(?:(?::").concat(o,"){0,1}:").concat(n,"|(?::").concat(o,"){1,3}|:)| // 1:2:3:4:: 1:2:3:4::6:7:8 1:2:3:4::8 1:2:3:4::6:7:1.2.3.4\n(?:").concat(o,":){3}(?:(?::").concat(o,"){0,2}:").concat(n,"|(?::").concat(o,"){1,4}|:)| // 1:2:3:: 1:2:3::5:6:7:8 1:2:3::8 1:2:3::5:6:7:1.2.3.4\n(?:").concat(o,":){2}(?:(?::").concat(o,"){0,3}:").concat(n,"|(?::").concat(o,"){1,5}|:)| // 1:2:: 1:2::4:5:6:7:8 1:2::8 1:2::4:5:6:7:1.2.3.4\n(?:").concat(o,":){1}(?:(?::").concat(o,"){0,4}:").concat(n,"|(?::").concat(o,"){1,6}|:)| // 1:: 1::3:4:5:6:7:8 1::8 1::3:4:5:6:7:1.2.3.4\n(?::(?:(?::").concat(o,"){0,5}:").concat(n,"|(?::").concat(o,"){1,7}|:)) // ::2:3:4:5:6:7:8 ::2:3:4:5:6:7:8 ::8 ::1.2.3.4\n)(?:%[0-9a-zA-Z]{1,})? // %eth0 %1\n").replace(/\s*\/\/.*$/gm,"").replace(/\n/g,"").trim(),a=new RegExp("(?:^".concat(n,"$)|(?:^").concat(i,"$)")),s=new RegExp("^".concat(n,"$")),l=new RegExp("^".concat(i,"$")),c=function(e){return e&&e.exact?a:new RegExp("(?:".concat(t(e)).concat(n).concat(t(e),")|(?:").concat(t(e)).concat(i).concat(t(e),")"),"g")};c.v4=function(e){return e&&e.exact?s:new RegExp("".concat(t(e)).concat(n).concat(t(e)),"g")},c.v6=function(e){return e&&e.exact?l:new RegExp("".concat(t(e)).concat(i).concat(t(e)),"g")};var u=c.v4().source,d=c.v6().source,f="(?:".concat("(?:(?:[a-z]+:)?//)","|www\\.)").concat("(?:\\S+(?::\\S*)?@)?","(?:localhost|").concat(u,"|").concat(d,"|").concat("(?:(?:[a-z\\u00a1-\\uffff0-9][-_]*)*[a-z\\u00a1-\\uffff0-9]+)").concat("(?:\\.(?:[a-z\\u00a1-\\uffff0-9]-*)*[a-z\\u00a1-\\uffff0-9]+)*").concat("(?:\\.(?:[a-z\\u00a1-\\uffff]{2,}))",")").concat("(?::\\d{2,5})?").concat('(?:[/?#][^\\s"]*)?');return r=new RegExp("(?:^".concat(f,"$)"),"i")}},53898:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>o});var r=n(45197);const o=function(e,t,n,o,i){(/^\s+$/.test(t)||""===t)&&o.push((0,r.format)(i.messages.whitespace,e.fullField))}},45197:(e,t,n)=>{"use strict";n.r(t),n.d(t,{AsyncValidationError:()=>O,asyncMap:()=>w,complementError:()=>S,convertFieldsError:()=>m,deepMerge:()=>x,format:()=>g,isEmptyObject:()=>v,isEmptyValue:()=>y,warning:()=>p});var r=n(1413),o=n(71002),i=n(43144),a=n(15671),s=n(97326),l=n(60136),c=n(29388),u=n(7112),d=n(4942),f=n(89062),h=/%[sdj%]/g,p=function(){};function m(e){if(!e||!e.length)return null;var t={};return e.forEach((function(e){var n=e.field;t[n]=t[n]||[],t[n].push(e)})),t}function g(e){for(var t=arguments.length,n=new Array(t>1?t-1:0),r=1;r=i)return e;switch(e){case"%s":return String(n[o++]);case"%d":return Number(n[o++]);case"%j":try{return JSON.stringify(n[o++])}catch(e){return"[Circular]"}break;default:return e}})):e}function y(e,t){return null==e||(!("array"!==t||!Array.isArray(e)||e.length)||!(!function(e){return"string"===e||"url"===e||"hex"===e||"email"===e||"date"===e||"pattern"===e}(t)||"string"!=typeof e||e))}function v(e){return 0===Object.keys(e).length}function b(e,t,n){var r=0,o=e.length;!function i(a){if(a&&a.length)n(a);else{var s=r;r+=1,s{"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(66758),o=n(45197);const i=function(e,t,n,i,a){var s=[];if(e.required||!e.required&&i.hasOwnProperty(e.field)){if((0,o.isEmptyValue)(t)&&!e.required)return n();r.default.required(e,t,i,s,a)}n(s)}},63519:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>o});var r=n(66758);const o=function(e,t,n,o,i){var a=[];if(e.required||!e.required&&o.hasOwnProperty(e.field)){if(null==t&&!e.required)return n();r.default.required(e,t,o,a,i,"array"),null!=t&&(r.default.type(e,t,o,a,i),r.default.range(e,t,o,a,i))}n(a)}},4301:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(66758),o=n(45197);const i=function(e,t,n,i,a){var s=[];if(e.required||!e.required&&i.hasOwnProperty(e.field)){if((0,o.isEmptyValue)(t)&&!e.required)return n();r.default.required(e,t,i,s,a),void 0!==t&&r.default.type(e,t,i,s,a)}n(s)}},75378:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(66758),o=n(45197);const i=function(e,t,n,i,a){var s=[];if(e.required||!e.required&&i.hasOwnProperty(e.field)){if((0,o.isEmptyValue)(t,"date")&&!e.required)return n();var l;if(r.default.required(e,t,i,s,a),!(0,o.isEmptyValue)(t,"date"))l=t instanceof Date?t:new Date(t),r.default.type(e,l,i,s,a),l&&r.default.range(e,l.getTime(),i,s,a)}n(s)}},80588:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(66758),o=n(45197);const i=function(e,t,n,i,a){var s=[];if(e.required||!e.required&&i.hasOwnProperty(e.field)){if((0,o.isEmptyValue)(t)&&!e.required)return n();r.default.required(e,t,i,s,a),void 0!==t&&r.default.enum(e,t,i,s,a)}n(s)}},85806:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(66758),o=n(45197);const i=function(e,t,n,i,a){var s=[];if(e.required||!e.required&&i.hasOwnProperty(e.field)){if((0,o.isEmptyValue)(t)&&!e.required)return n();r.default.required(e,t,i,s,a),void 0!==t&&(r.default.type(e,t,i,s,a),r.default.range(e,t,i,s,a))}n(s)}},82781:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>v});var r=n(86329),o=n(63519),i=n(4301),a=n(75378),s=n(80588),l=n(85806),c=n(77394),u=n(38767),d=n(85764),f=n(12377),h=n(68585),p=n(15976),m=n(99185),g=n(96246),y=n(30142);const v={string:g.default,method:u.default,number:d.default,boolean:i.default,regexp:p.default,integer:c.default,float:l.default,array:o.default,object:f.default,enum:s.default,pattern:h.default,date:a.default,url:y.default,hex:y.default,email:y.default,required:m.default,any:r.default}},77394:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(66758),o=n(45197);const i=function(e,t,n,i,a){var s=[];if(e.required||!e.required&&i.hasOwnProperty(e.field)){if((0,o.isEmptyValue)(t)&&!e.required)return n();r.default.required(e,t,i,s,a),void 0!==t&&(r.default.type(e,t,i,s,a),r.default.range(e,t,i,s,a))}n(s)}},38767:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(66758),o=n(45197);const i=function(e,t,n,i,a){var s=[];if(e.required||!e.required&&i.hasOwnProperty(e.field)){if((0,o.isEmptyValue)(t)&&!e.required)return n();r.default.required(e,t,i,s,a),void 0!==t&&r.default.type(e,t,i,s,a)}n(s)}},85764:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(66758),o=n(45197);const i=function(e,t,n,i,a){var s=[];if(e.required||!e.required&&i.hasOwnProperty(e.field)){if(""===t&&(t=void 0),(0,o.isEmptyValue)(t)&&!e.required)return n();r.default.required(e,t,i,s,a),void 0!==t&&(r.default.type(e,t,i,s,a),r.default.range(e,t,i,s,a))}n(s)}},12377:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(66758),o=n(45197);const i=function(e,t,n,i,a){var s=[];if(e.required||!e.required&&i.hasOwnProperty(e.field)){if((0,o.isEmptyValue)(t)&&!e.required)return n();r.default.required(e,t,i,s,a),void 0!==t&&r.default.type(e,t,i,s,a)}n(s)}},68585:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(66758),o=n(45197);const i=function(e,t,n,i,a){var s=[];if(e.required||!e.required&&i.hasOwnProperty(e.field)){if((0,o.isEmptyValue)(t,"string")&&!e.required)return n();r.default.required(e,t,i,s,a),(0,o.isEmptyValue)(t,"string")||r.default.pattern(e,t,i,s,a)}n(s)}},15976:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(66758),o=n(45197);const i=function(e,t,n,i,a){var s=[];if(e.required||!e.required&&i.hasOwnProperty(e.field)){if((0,o.isEmptyValue)(t)&&!e.required)return n();r.default.required(e,t,i,s,a),(0,o.isEmptyValue)(t)||r.default.type(e,t,i,s,a)}n(s)}},99185:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(71002),o=n(66758);const i=function(e,t,n,i,a){var s=[],l=Array.isArray(t)?"array":(0,r.default)(t);o.default.required(e,t,i,s,a,l),n(s)}},96246:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(66758),o=n(45197);const i=function(e,t,n,i,a){var s=[];if(e.required||!e.required&&i.hasOwnProperty(e.field)){if((0,o.isEmptyValue)(t,"string")&&!e.required)return n();r.default.required(e,t,i,s,a,"string"),(0,o.isEmptyValue)(t,"string")||(r.default.type(e,t,i,s,a),r.default.range(e,t,i,s,a),r.default.pattern(e,t,i,s,a),!0===e.whitespace&&r.default.whitespace(e,t,i,s,a))}n(s)}},30142:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(66758),o=n(45197);const i=function(e,t,n,i,a){var s=e.type,l=[];if(e.required||!e.required&&i.hasOwnProperty(e.field)){if((0,o.isEmptyValue)(t,s)&&!e.required)return n();r.default.required(e,t,i,l,a,s),(0,o.isEmptyValue)(t,s)||r.default.type(e,t,i,l,a)}n(l)}},12599:(e,t,n)=>{"use strict";function r(){return r=Object.assign?Object.assign.bind():function(e){for(var t=1;tX,Action:()=>o,IDLE_BLOCKER:()=>ce,IDLE_FETCHER:()=>le,IDLE_NAVIGATION:()=>se,UNSAFE_DEFERRED_SYMBOL:()=>pe,UNSAFE_DeferredData:()=>q,UNSAFE_ErrorResponseImpl:()=>J,UNSAFE_convertRouteMatchToUiMatch:()=>O,UNSAFE_convertRoutesToDataRoutes:()=>v,UNSAFE_getResolveToMatches:()=>B,UNSAFE_invariant:()=>c,UNSAFE_warning:()=>u,createBrowserHistory:()=>s,createHashHistory:()=>l,createMemoryHistory:()=>a,createPath:()=>h,createRouter:()=>he,createStaticHandler:()=>me,defer:()=>Z,generatePath:()=>R,getStaticContextFromError:()=>ge,getToPathname:()=>Q,isDeferredData:()=>Ge,isRouteErrorResponse:()=>ee,joinPaths:()=>z,json:()=>G,matchPath:()=>D,matchRoutes:()=>b,normalizePathname:()=>V,parsePath:()=>p,redirect:()=>Y,redirectDocument:()=>K,resolvePath:()=>M,resolveTo:()=>F,stripBasename:()=>I}),function(e){e.Pop="POP",e.Push="PUSH",e.Replace="REPLACE"}(o||(o={}));const i="popstate";function a(e){void 0===e&&(e={});let t,{initialEntries:n=["/"],initialIndex:r,v5Compat:i=!1}=e;t=n.map(((e,t)=>m(e,"string"==typeof e?null:e.state,0===t?"default":void 0)));let a=c(null==r?t.length-1:r),s=o.Pop,l=null;function c(e){return Math.min(Math.max(e,0),t.length-1)}function d(){return t[a]}function m(e,n,r){void 0===n&&(n=null);let o=f(t?d().pathname:"/",e,n,r);return u("/"===o.pathname.charAt(0),"relative pathnames are not supported in memory history: "+JSON.stringify(e)),o}function g(e){return"string"==typeof e?e:h(e)}return{get index(){return a},get action(){return s},get location(){return d()},createHref:g,createURL:e=>new URL(g(e),"http://localhost"),encodeLocation(e){let t="string"==typeof e?p(e):e;return{pathname:t.pathname||"",search:t.search||"",hash:t.hash||""}},push(e,n){s=o.Push;let r=m(e,n);a+=1,t.splice(a,t.length,r),i&&l&&l({action:s,location:r,delta:1})},replace(e,n){s=o.Replace;let r=m(e,n);t[a]=r,i&&l&&l({action:s,location:r,delta:0})},go(e){s=o.Pop;let n=c(a+e),r=t[n];a=n,l&&l({action:s,location:r,delta:e})},listen:e=>(l=e,()=>{l=null})}}function s(e){return void 0===e&&(e={}),m((function(e,t){let{pathname:n,search:r,hash:o}=e.location;return f("",{pathname:n,search:r,hash:o},t.state&&t.state.usr||null,t.state&&t.state.key||"default")}),(function(e,t){return"string"==typeof t?t:h(t)}),null,e)}function l(e){return void 0===e&&(e={}),m((function(e,t){let{pathname:n="/",search:r="",hash:o=""}=p(e.location.hash.substr(1));return n.startsWith("/")||n.startsWith(".")||(n="/"+n),f("",{pathname:n,search:r,hash:o},t.state&&t.state.usr||null,t.state&&t.state.key||"default")}),(function(e,t){let n=e.document.querySelector("base"),r="";if(n&&n.getAttribute("href")){let t=e.location.href,n=t.indexOf("#");r=-1===n?t:t.slice(0,n)}return r+"#"+("string"==typeof t?t:h(t))}),(function(e,t){u("/"===e.pathname.charAt(0),"relative pathnames are not supported in hash history.push("+JSON.stringify(t)+")")}),e)}function c(e,t){if(!1===e||null==e)throw new Error(t)}function u(e,t){if(!e){"undefined"!=typeof console&&console.warn(t);try{throw new Error(t)}catch(e){}}}function d(e,t){return{usr:e.state,key:e.key,idx:t}}function f(e,t,n,o){return void 0===n&&(n=null),r({pathname:"string"==typeof e?e:e.pathname,search:"",hash:""},"string"==typeof t?p(t):t,{state:n,key:t&&t.key||o||Math.random().toString(36).substr(2,8)})}function h(e){let{pathname:t="/",search:n="",hash:r=""}=e;return n&&"?"!==n&&(t+="?"===n.charAt(0)?n:"?"+n),r&&"#"!==r&&(t+="#"===r.charAt(0)?r:"#"+r),t}function p(e){let t={};if(e){let n=e.indexOf("#");n>=0&&(t.hash=e.substr(n),e=e.substr(0,n));let r=e.indexOf("?");r>=0&&(t.search=e.substr(r),e=e.substr(0,r)),e&&(t.pathname=e)}return t}function m(e,t,n,a){void 0===a&&(a={});let{window:s=document.defaultView,v5Compat:l=!1}=a,u=s.history,p=o.Pop,m=null,g=y();function y(){return(u.state||{idx:null}).idx}function v(){p=o.Pop;let e=y(),t=null==e?null:e-g;g=e,m&&m({action:p,location:O.location,delta:t})}function b(e){let t="null"!==s.location.origin?s.location.origin:s.location.href,n="string"==typeof e?e:h(e);return n=n.replace(/ $/,"%20"),c(t,"No window.location.(origin|href) available to create URL for href: "+n),new URL(n,t)}null==g&&(g=0,u.replaceState(r({},u.state,{idx:g}),""));let O={get action(){return p},get location(){return e(s,u)},listen(e){if(m)throw new Error("A history only accepts one active listener");return s.addEventListener(i,v),m=e,()=>{s.removeEventListener(i,v),m=null}},createHref:e=>t(s,e),createURL:b,encodeLocation(e){let t=b(e);return{pathname:t.pathname,search:t.search,hash:t.hash}},push:function(e,t){p=o.Push;let r=f(O.location,e,t);n&&n(r,e),g=y()+1;let i=d(r,g),a=O.createHref(r);try{u.pushState(i,"",a)}catch(e){if(e instanceof DOMException&&"DataCloneError"===e.name)throw e;s.location.assign(a)}l&&m&&m({action:p,location:O.location,delta:1})},replace:function(e,t){p=o.Replace;let r=f(O.location,e,t);n&&n(r,e),g=y();let i=d(r,g),a=O.createHref(r);u.replaceState(i,"",a),l&&m&&m({action:p,location:O.location,delta:0})},go:e=>u.go(e)};return O}var g;!function(e){e.data="data",e.deferred="deferred",e.redirect="redirect",e.error="error"}(g||(g={}));const y=new Set(["lazy","caseSensitive","path","id","index","children"]);function v(e,t,n,o){return void 0===n&&(n=[]),void 0===o&&(o={}),e.map(((e,i)=>{let a=[...n,i],s="string"==typeof e.id?e.id:a.join("-");if(c(!0!==e.index||!e.children,"Cannot specify children on an index route"),c(!o[s],'Found a route id collision on id "'+s+"\". Route id's must be globally unique within Data Router usages"),function(e){return!0===e.index}(e)){let n=r({},e,t(e),{id:s});return o[s]=n,n}{let n=r({},e,t(e),{id:s,children:void 0});return o[s]=n,e.children&&(n.children=v(e.children,t,a,o)),n}}))}function b(e,t,n){void 0===n&&(n="/");let r=I(("string"==typeof t?p(t):t).pathname||"/",n);if(null==r)return null;let o=w(e);!function(e){e.sort(((e,t)=>e.score!==t.score?t.score-e.score:function(e,t){let n=e.length===t.length&&e.slice(0,-1).every(((e,n)=>e===t[n]));return n?e[e.length-1]-t[t.length-1]:0}(e.routesMeta.map((e=>e.childrenIndex)),t.routesMeta.map((e=>e.childrenIndex)))))}(o);let i=null;for(let e=0;null==i&&e{let a={relativePath:void 0===i?e.path||"":i,caseSensitive:!0===e.caseSensitive,childrenIndex:o,route:e};a.relativePath.startsWith("/")&&(c(a.relativePath.startsWith(r),'Absolute route path "'+a.relativePath+'" nested under path "'+r+'" is not valid. An absolute child route path must start with the combined path of all its parent routes.'),a.relativePath=a.relativePath.slice(r.length));let s=z([r,a.relativePath]),l=n.concat(a);e.children&&e.children.length>0&&(c(!0!==e.index,'Index routes must not have child routes. Please remove all child routes from route path "'+s+'".'),w(e.children,t,l,s)),(null!=e.path||e.index)&&t.push({path:s,score:j(s,e.index),routesMeta:l})};return e.forEach(((e,t)=>{var n;if(""!==e.path&&null!=(n=e.path)&&n.includes("?"))for(let n of S(e.path))o(e,t,n);else o(e,t)})),t}function S(e){let t=e.split("/");if(0===t.length)return[];let[n,...r]=t,o=n.endsWith("?"),i=n.replace(/\?$/,"");if(0===r.length)return o?[i,""]:[i];let a=S(r.join("/")),s=[];return s.push(...a.map((e=>""===e?i:[i,e].join("/")))),o&&s.push(...a),s.map((t=>e.startsWith("/")&&""===t?"/":t))}const x=/^:[\w-]+$/,E=3,T=2,C=1,P=10,_=-2,k=e=>"*"===e;function j(e,t){let n=e.split("/"),r=n.length;return n.some(k)&&(r+=_),t&&(r+=T),n.filter((e=>!k(e))).reduce(((e,t)=>e+(x.test(t)?E:""===t?C:P)),r)}function A(e,t){let{routesMeta:n}=e,r={},o="/",i=[];for(let e=0;enull==e?"":"string"==typeof e?e:String(e);return r+n.split(/\/+/).map(((e,n,r)=>{if(n===r.length-1&&"*"===e){return o(t["*"])}const i=e.match(/^:([\w-]+)(\??)$/);if(i){const[,e,n]=i;let r=t[e];return c("?"===n||null!=r,'Missing ":'+e+'" param'),o(r)}return e.replace(/\?$/g,"")})).filter((e=>!!e)).join("/")}function D(e,t){"string"==typeof e&&(e={path:e,caseSensitive:!1,end:!0});let[n,r]=function(e,t,n){void 0===t&&(t=!1);void 0===n&&(n=!0);u("*"===e||!e.endsWith("*")||e.endsWith("/*"),'Route path "'+e+'" will be treated as if it were "'+e.replace(/\*$/,"/*")+'" because the `*` character must always follow a `/` in the pattern. To get rid of this warning, please change the route path to "'+e.replace(/\*$/,"/*")+'".');let r=[],o="^"+e.replace(/\/*\*?$/,"").replace(/^\/*/,"/").replace(/[\\.*+^${}|()[\]]/g,"\\$&").replace(/\/:([\w-]+)(\?)?/g,((e,t,n)=>(r.push({paramName:t,isOptional:null!=n}),n?"/?([^\\/]+)?":"/([^\\/]+)")));e.endsWith("*")?(r.push({paramName:"*"}),o+="*"===e||"/*"===e?"(.*)$":"(?:\\/(.+)|\\/*)$"):n?o+="\\/*$":""!==e&&"/"!==e&&(o+="(?:(?=\\/|$))");let i=new RegExp(o,t?void 0:"i");return[i,r]}(e.path,e.caseSensitive,e.end),o=t.match(n);if(!o)return null;let i=o[0],a=i.replace(/(.)\/+$/,"$1"),s=o.slice(1);return{params:r.reduce(((e,t,n)=>{let{paramName:r,isOptional:o}=t;if("*"===r){let e=s[n]||"";a=i.slice(0,i.length-e.length).replace(/(.)\/+$/,"$1")}const l=s[n];return e[r]=o&&!l?void 0:(l||"").replace(/%2F/g,"/"),e}),{}),pathname:i,pathnameBase:a,pattern:e}}function L(e){try{return e.split("/").map((e=>decodeURIComponent(e).replace(/\//g,"%2F"))).join("/")}catch(t){return u(!1,'The URL path "'+e+'" could not be decoded because it is is a malformed URL segment. This is probably due to a bad percent encoding ('+t+")."),e}}function I(e,t){if("/"===t)return e;if(!e.toLowerCase().startsWith(t.toLowerCase()))return null;let n=t.endsWith("/")?t.length-1:t.length,r=e.charAt(n);return r&&"/"!==r?null:e.slice(n)||"/"}function M(e,t){void 0===t&&(t="/");let{pathname:n,search:r="",hash:o=""}="string"==typeof e?p(e):e,i=n?n.startsWith("/")?n:function(e,t){let n=t.replace(/\/+$/,"").split("/");return e.split("/").forEach((e=>{".."===e?n.length>1&&n.pop():"."!==e&&n.push(e)})),n.length>1?n.join("/"):"/"}(n,t):t;return{pathname:i,search:U(r),hash:W(o)}}function N(e,t,n,r){return"Cannot include a '"+e+"' character in a manually specified `to."+t+"` field ["+JSON.stringify(r)+"]. Please separate it out to the `to."+n+'` field. Alternatively you may provide the full path as a string in and the router will parse it for you.'}function $(e){return e.filter(((e,t)=>0===t||e.route.path&&e.route.path.length>0))}function B(e,t){let n=$(e);return t?n.map(((t,n)=>n===e.length-1?t.pathname:t.pathnameBase)):n.map((e=>e.pathnameBase))}function F(e,t,n,o){let i;void 0===o&&(o=!1),"string"==typeof e?i=p(e):(i=r({},e),c(!i.pathname||!i.pathname.includes("?"),N("?","pathname","search",i)),c(!i.pathname||!i.pathname.includes("#"),N("#","pathname","hash",i)),c(!i.search||!i.search.includes("#"),N("#","search","hash",i)));let a,s=""===e||""===i.pathname,l=s?"/":i.pathname;if(null==l)a=n;else{let e=t.length-1;if(!o&&l.startsWith("..")){let t=l.split("/");for(;".."===t[0];)t.shift(),e-=1;i.pathname=t.join("/")}a=e>=0?t[e]:"/"}let u=M(i,a),d=l&&"/"!==l&&l.endsWith("/"),f=(s||"."===l)&&n.endsWith("/");return u.pathname.endsWith("/")||!d&&!f||(u.pathname+="/"),u}function Q(e){return""===e||""===e.pathname?"/":"string"==typeof e?p(e).pathname:e.pathname}const z=e=>e.join("/").replace(/\/\/+/g,"/"),V=e=>e.replace(/\/+$/,"").replace(/^\/*/,"/"),U=e=>e&&"?"!==e?e.startsWith("?")?e:"?"+e:"",W=e=>e&&"#"!==e?e.startsWith("#")?e:"#"+e:"",G=function(e,t){void 0===t&&(t={});let n="number"==typeof t?{status:t}:t,o=new Headers(n.headers);return o.has("Content-Type")||o.set("Content-Type","application/json; charset=utf-8"),new Response(JSON.stringify(e),r({},n,{headers:o}))};class X extends Error{}class q{constructor(e,t){let n;this.pendingKeysSet=new Set,this.subscribers=new Set,this.deferredKeys=[],c(e&&"object"==typeof e&&!Array.isArray(e),"defer() only accepts plain objects"),this.abortPromise=new Promise(((e,t)=>n=t)),this.controller=new AbortController;let r=()=>n(new X("Deferred data aborted"));this.unlistenAbortSignal=()=>this.controller.signal.removeEventListener("abort",r),this.controller.signal.addEventListener("abort",r),this.data=Object.entries(e).reduce(((e,t)=>{let[n,r]=t;return Object.assign(e,{[n]:this.trackPromise(n,r)})}),{}),this.done&&this.unlistenAbortSignal(),this.init=t}trackPromise(e,t){if(!(t instanceof Promise))return t;this.deferredKeys.push(e),this.pendingKeysSet.add(e);let n=Promise.race([t,this.abortPromise]).then((t=>this.onSettle(n,e,void 0,t)),(t=>this.onSettle(n,e,t)));return n.catch((()=>{})),Object.defineProperty(n,"_tracked",{get:()=>!0}),n}onSettle(e,t,n,r){if(this.controller.signal.aborted&&n instanceof X)return this.unlistenAbortSignal(),Object.defineProperty(e,"_error",{get:()=>n}),Promise.reject(n);if(this.pendingKeysSet.delete(t),this.done&&this.unlistenAbortSignal(),void 0===n&&void 0===r){let n=new Error('Deferred data for key "'+t+'" resolved/rejected with `undefined`, you must resolve/reject with a value or `null`.');return Object.defineProperty(e,"_error",{get:()=>n}),this.emit(!1,t),Promise.reject(n)}return void 0===r?(Object.defineProperty(e,"_error",{get:()=>n}),this.emit(!1,t),Promise.reject(n)):(Object.defineProperty(e,"_data",{get:()=>r}),this.emit(!1,t),r)}emit(e,t){this.subscribers.forEach((n=>n(e,t)))}subscribe(e){return this.subscribers.add(e),()=>this.subscribers.delete(e)}cancel(){this.controller.abort(),this.pendingKeysSet.forEach(((e,t)=>this.pendingKeysSet.delete(t))),this.emit(!0)}async resolveData(e){let t=!1;if(!this.done){let n=()=>this.cancel();e.addEventListener("abort",n),t=await new Promise((t=>{this.subscribe((r=>{e.removeEventListener("abort",n),(r||this.done)&&t(r)}))}))}return t}get done(){return 0===this.pendingKeysSet.size}get unwrappedData(){return c(null!==this.data&&this.done,"Can only unwrap data on initialized and settled deferreds"),Object.entries(this.data).reduce(((e,t)=>{let[n,r]=t;return Object.assign(e,{[n]:H(r)})}),{})}get pendingKeys(){return Array.from(this.pendingKeysSet)}}function H(e){if(!function(e){return e instanceof Promise&&!0===e._tracked}(e))return e;if(e._error)throw e._error;return e._data}const Z=function(e,t){return void 0===t&&(t={}),new q(e,"number"==typeof t?{status:t}:t)},Y=function(e,t){void 0===t&&(t=302);let n=t;"number"==typeof n?n={status:n}:void 0===n.status&&(n.status=302);let o=new Headers(n.headers);return o.set("Location",e),new Response(null,r({},n,{headers:o}))},K=(e,t)=>{let n=Y(e,t);return n.headers.set("X-Remix-Reload-Document","true"),n};class J{constructor(e,t,n,r){void 0===r&&(r=!1),this.status=e,this.statusText=t||"",this.internal=r,n instanceof Error?(this.data=n.toString(),this.error=n):this.data=n}}function ee(e){return null!=e&&"number"==typeof e.status&&"string"==typeof e.statusText&&"boolean"==typeof e.internal&&"data"in e}const te=["post","put","patch","delete"],ne=new Set(te),re=["get",...te],oe=new Set(re),ie=new Set([301,302,303,307,308]),ae=new Set([307,308]),se={state:"idle",location:void 0,formMethod:void 0,formAction:void 0,formEncType:void 0,formData:void 0,json:void 0,text:void 0},le={state:"idle",data:void 0,formMethod:void 0,formAction:void 0,formEncType:void 0,formData:void 0,json:void 0,text:void 0},ce={state:"unblocked",proceed:void 0,reset:void 0,location:void 0},ue=/^(?:[a-z][a-z0-9+.-]*:|\/\/)/i,de=e=>({hasErrorBoundary:Boolean(e.hasErrorBoundary)}),fe="remix-router-transitions";function he(e){const t=e.window?e.window:"undefined"!=typeof window?window:void 0,n=void 0!==t&&void 0!==t.document&&void 0!==t.document.createElement,i=!n;let a;if(c(e.routes.length>0,"You must provide a non-empty routes array to createRouter"),e.mapRouteProperties)a=e.mapRouteProperties;else if(e.detectErrorBoundary){let t=e.detectErrorBoundary;a=e=>({hasErrorBoundary:t(e)})}else a=de;let s,l,d={},h=v(e.routes,a,void 0,d),p=e.basename||"/",m=e.unstable_dataStrategy||Te,y=r({v7_fetcherPersist:!1,v7_normalizeFormMethod:!1,v7_partialHydration:!1,v7_prependBasename:!1,v7_relativeSplatPath:!1,unstable_skipActionErrorRevalidation:!1},e.future),w=null,S=new Set,x=null,E=null,T=null,C=null!=e.hydrationData,P=b(h,e.history.location,p),_=null;if(null==P){let t=Be(404,{pathname:e.history.location.pathname}),{matches:n,route:r}=$e(h);P=n,_={[r.id]:t}}let k,j=P.some((e=>e.route.lazy)),A=P.some((e=>e.route.loader));if(j)l=!1;else if(A)if(y.v7_partialHydration){let t=e.hydrationData?e.hydrationData.loaderData:null,n=e.hydrationData?e.hydrationData.errors:null,r=e=>!e.route.loader||("function"!=typeof e.route.loader||!0!==e.route.loader.hydrate)&&(t&&void 0!==t[e.route.id]||n&&void 0!==n[e.route.id]);if(n){let e=P.findIndex((e=>void 0!==n[e.route.id]));l=P.slice(0,e+1).every(r)}else l=P.every(r)}else l=null!=e.hydrationData;else l=!0;let R,D={historyAction:e.history.action,location:e.history.location,matches:P,initialized:l,navigation:se,restoreScrollPosition:null==e.hydrationData&&null,preventScrollReset:!1,revalidation:"idle",loaderData:e.hydrationData&&e.hydrationData.loaderData||{},actionData:e.hydrationData&&e.hydrationData.actionData||null,errors:e.hydrationData&&e.hydrationData.errors||_,fetchers:new Map,blockers:new Map},L=o.Pop,M=!1,N=!1,$=new Map,B=null,F=!1,Q=!1,z=[],V=[],U=new Map,W=0,G=-1,X=new Map,q=new Set,H=new Map,Z=new Map,Y=new Set,K=new Map,J=new Map,ee=!1;function te(e,t){void 0===t&&(t={}),D=r({},D,e);let n=[],o=[];y.v7_fetcherPersist&&D.fetchers.forEach(((e,t)=>{"idle"===e.state&&(Y.has(t)?o.push(t):n.push(t))})),[...S].forEach((e=>e(D,{deletedFetchers:o,unstable_viewTransitionOpts:t.viewTransitionOpts,unstable_flushSync:!0===t.flushSync}))),y.v7_fetcherPersist&&(n.forEach((e=>D.fetchers.delete(e))),o.forEach((e=>Oe(e))))}function ne(t,n,i){var a,l;let c,{flushSync:u}=void 0===i?{}:i,d=null!=D.actionData&&null!=D.navigation.formMethod&&He(D.navigation.formMethod)&&"loading"===D.navigation.state&&!0!==(null==(a=t.state)?void 0:a._isRedirect);c=n.actionData?Object.keys(n.actionData).length>0?n.actionData:null:d?D.actionData:null;let f=n.loaderData?Ie(D.loaderData,n.loaderData,n.matches||[],n.errors):D.loaderData,p=D.blockers;p.size>0&&(p=new Map(p),p.forEach(((e,t)=>p.set(t,ce))));let m,g=!0===M||null!=D.navigation.formMethod&&He(D.navigation.formMethod)&&!0!==(null==(l=t.state)?void 0:l._isRedirect);if(s&&(h=s,s=void 0),F||L===o.Pop||(L===o.Push?e.history.push(t,t.state):L===o.Replace&&e.history.replace(t,t.state)),L===o.Pop){let e=$.get(D.location.pathname);e&&e.has(t.pathname)?m={currentLocation:D.location,nextLocation:t}:$.has(t.pathname)&&(m={currentLocation:t,nextLocation:D.location})}else if(N){let e=$.get(D.location.pathname);e?e.add(t.pathname):(e=new Set([t.pathname]),$.set(D.location.pathname,e)),m={currentLocation:D.location,nextLocation:t}}te(r({},n,{actionData:c,loaderData:f,historyAction:L,location:t,initialized:!0,navigation:se,revalidation:"idle",restoreScrollPosition:qe(t,n.matches||D.matches),preventScrollReset:g,blockers:p}),{viewTransitionOpts:m,flushSync:!0===u}),L=o.Pop,M=!1,N=!1,F=!1,Q=!1,z=[],V=[]}async function re(t,n,i){R&&R.abort(),R=null,L=t,F=!0===(i&&i.startUninterruptedRevalidation),function(e,t){if(x&&T){let n=Xe(e,t);x[n]=T()}}(D.location,D.matches),M=!0===(i&&i.preventScrollReset),N=!0===(i&&i.enableViewTransition);let a=s||h,l=i&&i.overrideNavigation,c=b(a,n,p),u=!0===(i&&i.flushSync);if(!c){let e=Be(404,{pathname:n.pathname}),{matches:t,route:r}=$e(a);return Ge(),void ne(n,{matches:t,loaderData:{},errors:{[r.id]:e}},{flushSync:u})}if(D.initialized&&!Q&&function(e,t){if(e.pathname!==t.pathname||e.search!==t.search)return!1;if(""===e.hash)return""!==t.hash;if(e.hash===t.hash)return!0;if(""!==t.hash)return!0;return!1}(D.location,n)&&!(i&&i.submission&&He(i.submission.formMethod)))return void ne(n,{matches:c},{flushSync:u});R=new AbortController;let d,f=je(e.history,n,R.signal,i&&i.submission);if(i&&i.pendingError)d=[Ne(c).route.id,{type:g.error,error:i.pendingError}];else if(i&&i.submission&&He(i.submission.formMethod)){let t=await async function(e,t,n,r,i){void 0===i&&(i={});pe();let a,s=function(e,t){let n={state:"submitting",location:e,formMethod:t.formMethod,formAction:t.formAction,formEncType:t.formEncType,formData:t.formData,json:t.json,text:t.text};return n}(t,n);te({navigation:s},{flushSync:!0===i.flushSync});let l=Je(r,t);if(l.route.action||l.route.lazy){if(a=(await ie("action",e,[l],r))[0],e.signal.aborted)return{shortCircuited:!0}}else a={type:g.error,error:Be(405,{method:e.method,pathname:t.pathname,routeId:l.route.id})};if(We(a)){let t;if(i&&null!=i.replace)t=i.replace;else{t=ke(a.response.headers.get("Location"),new URL(e.url),p)===D.location.pathname+D.location.search}return await oe(e,a,{submission:n,replace:t}),{shortCircuited:!0}}if(Ve(a))throw Be(400,{type:"defer-action"});if(Ue(a)){let e=Ne(r,l.route.id);return!0!==(i&&i.replace)&&(L=o.Push),{pendingActionResult:[e.route.id,a]}}return{pendingActionResult:[l.route.id,a]}}(f,n,i.submission,c,{replace:i.replace,flushSync:u});if(t.shortCircuited)return;d=t.pendingActionResult,l=tt(n,i.submission),u=!1,f=je(e.history,f.url,f.signal)}let{shortCircuited:m,loaderData:v,errors:O}=await async function(t,n,o,i,a,l,c,u,d,f){let m=i||tt(n,a),g=a||l||et(m),v=s||h,[b,O]=we(e.history,D,o,g,n,y.v7_partialHydration&&!0===u,y.unstable_skipActionErrorRevalidation,Q,z,V,Y,H,q,v,p,f);if(Ge((e=>!(o&&o.some((t=>t.route.id===e)))||b&&b.some((t=>t.route.id===e)))),G=++W,0===b.length&&0===O.length){let e=Ee();return ne(n,r({matches:o,loaderData:{},errors:f&&Ue(f[1])?{[f[0]]:f[1].error}:null},Me(f),e?{fetchers:new Map(D.fetchers)}:{}),{flushSync:d}),{shortCircuited:!0}}if(!(F||y.v7_partialHydration&&u)){let e;O.forEach((e=>{let t=D.fetchers.get(e.key),n=nt(void 0,t?t.data:void 0);D.fetchers.set(e.key,n)})),f&&!Ue(f[1])?e={[f[0]]:f[1].data}:D.actionData&&(e=0===Object.keys(D.actionData).length?null:D.actionData),te(r({navigation:m},void 0!==e?{actionData:e}:{},O.length>0?{fetchers:new Map(D.fetchers)}:{}),{flushSync:d})}O.forEach((e=>{U.has(e.key)&&Se(e.key),e.controller&&U.set(e.key,e.controller)}));let w=()=>O.forEach((e=>Se(e.key)));R&&R.signal.addEventListener("abort",w);let{loaderResults:S,fetcherResults:x}=await he(D.matches,o,b,O,t);if(t.signal.aborted)return{shortCircuited:!0};R&&R.signal.removeEventListener("abort",w);O.forEach((e=>U.delete(e.key)));let E=Fe([...S,...x]);if(E){if(E.idx>=b.length){let e=O[E.idx-b.length].key;q.add(e)}return await oe(t,E.result,{replace:c}),{shortCircuited:!0}}let{loaderData:T,errors:C}=Le(D,o,b,S,f,O,x,K);K.forEach(((e,t)=>{e.subscribe((n=>{(n||e.done)&&K.delete(t)}))})),y.v7_partialHydration&&u&&D.errors&&Object.entries(D.errors).filter((e=>{let[t]=e;return!b.some((e=>e.route.id===t))})).forEach((e=>{let[t,n]=e;C=Object.assign(C||{},{[t]:n})}));let P=Ee(),_=Ae(G),k=P||_||O.length>0;return r({loaderData:T,errors:C},k?{fetchers:new Map(D.fetchers)}:{})}(f,n,c,l,i&&i.submission,i&&i.fetcherSubmission,i&&i.replace,i&&!0===i.initialHydration,u,d);m||(R=null,ne(n,r({matches:c},Me(d),{loaderData:v,errors:O})))}async function oe(i,a,s){let{submission:l,fetcherSubmission:u,replace:d}=void 0===s?{}:s;a.response.headers.has("X-Remix-Revalidate")&&(Q=!0);let h=a.response.headers.get("Location");c(h,"Expected a Location header on the redirect Response"),h=ke(h,new URL(i.url),p);let m=f(D.location,h,{_isRedirect:!0});if(n){let n=!1;if(a.response.headers.has("X-Remix-Reload-Document"))n=!0;else if(ue.test(h)){const r=e.history.createURL(h);n=r.origin!==t.location.origin||null==I(r.pathname,p)}if(n)return void(d?t.location.replace(h):t.location.assign(h))}R=null;let g=!0===d?o.Replace:o.Push,{formMethod:y,formAction:v,formEncType:b}=D.navigation;!l&&!u&&y&&v&&b&&(l=et(D.navigation));let O=l||u;if(ae.has(a.response.status)&&O&&He(O.formMethod))await re(g,m,{submission:r({},O,{formAction:h}),preventScrollReset:M});else{let e=tt(m,l);await re(g,m,{overrideNavigation:e,fetcherSubmission:u,preventScrollReset:M})}}async function ie(e,t,n,r){try{let o=await Ce(m,e,t,n,r,d,a);return await Promise.all(o.map(((e,o)=>{if(ze(e)){let i=e.result;return{type:g.redirect,response:_e(i,t,n[o].route.id,r,p,y.v7_relativeSplatPath)}}return Pe(e)})))}catch(e){return n.map((()=>({type:g.error,error:e})))}}async function he(t,n,r,o,i){let[a,...s]=await Promise.all([r.length?ie("loader",i,r,n):[],...o.map((t=>{if(t.matches&&t.match&&t.controller){return ie("loader",je(e.history,t.path,t.controller.signal),[t.match],t.matches).then((e=>e[0]))}return Promise.resolve({type:g.error,error:Be(404,{pathname:t.path})})}))]);return await Promise.all([Ze(t,r,a,a.map((()=>i.signal)),!1,D.loaderData),Ze(t,o.map((e=>e.match)),s,o.map((e=>e.controller?e.controller.signal:null)),!0)]),{loaderResults:a,fetcherResults:s}}function pe(){Q=!0,z.push(...Ge()),H.forEach(((e,t)=>{U.has(t)&&(V.push(t),Se(t))}))}function me(e,t,n){void 0===n&&(n={}),D.fetchers.set(e,t),te({fetchers:new Map(D.fetchers)},{flushSync:!0===(n&&n.flushSync)})}function ge(e,t,n,r){void 0===r&&(r={});let o=Ne(D.matches,t);Oe(e),te({errors:{[o.route.id]:n},fetchers:new Map(D.fetchers)},{flushSync:!0===(r&&r.flushSync)})}function ye(e){return y.v7_fetcherPersist&&(Z.set(e,(Z.get(e)||0)+1),Y.has(e)&&Y.delete(e)),D.fetchers.get(e)||le}function Oe(e){let t=D.fetchers.get(e);!U.has(e)||t&&"loading"===t.state&&X.has(e)||Se(e),H.delete(e),X.delete(e),q.delete(e),Y.delete(e),D.fetchers.delete(e)}function Se(e){let t=U.get(e);c(t,"Expected fetch controller: "+e),t.abort(),U.delete(e)}function xe(e){for(let t of e){let e=rt(ye(t).data);D.fetchers.set(t,e)}}function Ee(){let e=[],t=!1;for(let n of q){let r=D.fetchers.get(n);c(r,"Expected fetcher: "+n),"loading"===r.state&&(q.delete(n),e.push(n),t=!0)}return xe(e),t}function Ae(e){let t=[];for(let[n,r]of X)if(r0}function Re(e){D.blockers.delete(e),J.delete(e)}function De(e,t){let n=D.blockers.get(e)||ce;c("unblocked"===n.state&&"blocked"===t.state||"blocked"===n.state&&"blocked"===t.state||"blocked"===n.state&&"proceeding"===t.state||"blocked"===n.state&&"unblocked"===t.state||"proceeding"===n.state&&"unblocked"===t.state,"Invalid blocker state transition: "+n.state+" -> "+t.state);let r=new Map(D.blockers);r.set(e,t),te({blockers:r})}function Qe(e){let{currentLocation:t,nextLocation:n,historyAction:r}=e;if(0===J.size)return;J.size>1&&u(!1,"A router only supports one blocker at a time");let o=Array.from(J.entries()),[i,a]=o[o.length-1],s=D.blockers.get(i);return s&&"proceeding"===s.state?void 0:a({currentLocation:t,nextLocation:n,historyAction:r})?i:void 0}function Ge(e){let t=[];return K.forEach(((n,r)=>{e&&!e(r)||(n.cancel(),t.push(r),K.delete(r))})),t}function Xe(e,t){if(E){return E(e,t.map((e=>O(e,D.loaderData))))||e.key}return e.key}function qe(e,t){if(x){let n=Xe(e,t),r=x[n];if("number"==typeof r)return r}return null}return k={get basename(){return p},get future(){return y},get state(){return D},get routes(){return h},get window(){return t},initialize:function(){if(w=e.history.listen((t=>{let{action:n,location:r,delta:o}=t;if(ee)return void(ee=!1);u(0===J.size||null!=o,"You are trying to use a blocker on a POP navigation to a location that was not created by @remix-run/router. This will fail silently in production. This can happen if you are navigating outside the router via `window.history.pushState`/`window.location.hash` instead of using router navigation APIs. This can also happen if you are using createHashRouter and the user manually changes the URL.");let i=Qe({currentLocation:D.location,nextLocation:r,historyAction:n});return i&&null!=o?(ee=!0,e.history.go(-1*o),void De(i,{state:"blocked",location:r,proceed(){De(i,{state:"proceeding",proceed:void 0,reset:void 0,location:r}),e.history.go(o)},reset(){let e=new Map(D.blockers);e.set(i,ce),te({blockers:e})}})):re(n,r)})),n){!function(e,t){try{let n=e.sessionStorage.getItem(fe);if(n){let e=JSON.parse(n);for(let[n,r]of Object.entries(e||{}))r&&Array.isArray(r)&&t.set(n,new Set(r||[]))}}catch(e){}}(t,$);let e=()=>function(e,t){if(t.size>0){let n={};for(let[e,r]of t)n[e]=[...r];try{e.sessionStorage.setItem(fe,JSON.stringify(n))}catch(e){u(!1,"Failed to save applied view transitions in sessionStorage ("+e+").")}}}(t,$);t.addEventListener("pagehide",e),B=()=>t.removeEventListener("pagehide",e)}return D.initialized||re(o.Pop,D.location,{initialHydration:!0}),k},subscribe:function(e){return S.add(e),()=>S.delete(e)},enableScrollRestoration:function(e,t,n){if(x=e,T=t,E=n||null,!C&&D.navigation===se){C=!0;let e=qe(D.location,D.matches);null!=e&&te({restoreScrollPosition:e})}return()=>{x=null,T=null,E=null}},navigate:async function t(n,i){if("number"==typeof n)return void e.history.go(n);let a=ve(D.location,D.matches,p,y.v7_prependBasename,n,y.v7_relativeSplatPath,null==i?void 0:i.fromRouteId,null==i?void 0:i.relative),{path:s,submission:l,error:c}=be(y.v7_normalizeFormMethod,!1,a,i),u=D.location,d=f(D.location,s,i&&i.state);d=r({},d,e.history.encodeLocation(d));let h=i&&null!=i.replace?i.replace:void 0,m=o.Push;!0===h?m=o.Replace:!1===h||null!=l&&He(l.formMethod)&&l.formAction===D.location.pathname+D.location.search&&(m=o.Replace);let g=i&&"preventScrollReset"in i?!0===i.preventScrollReset:void 0,v=!0===(i&&i.unstable_flushSync),b=Qe({currentLocation:u,nextLocation:d,historyAction:m});if(!b)return await re(m,d,{submission:l,pendingError:c,preventScrollReset:g,replace:i&&i.replace,enableViewTransition:i&&i.unstable_viewTransition,flushSync:v});De(b,{state:"blocked",location:d,proceed(){De(b,{state:"proceeding",proceed:void 0,reset:void 0,location:d}),t(n,i)},reset(){let e=new Map(D.blockers);e.set(b,ce),te({blockers:e})}})},fetch:function(t,n,r,o){if(i)throw new Error("router.fetch() was called during the server render, but it shouldn't be. You are likely calling a useFetcher() method in the body of your component. Try moving it to a useEffect or a callback.");U.has(t)&&Se(t);let a=!0===(o&&o.unstable_flushSync),l=s||h,u=ve(D.location,D.matches,p,y.v7_prependBasename,r,y.v7_relativeSplatPath,n,null==o?void 0:o.relative),d=b(l,u,p);if(!d)return void ge(t,n,Be(404,{pathname:u}),{flushSync:a});let{path:f,submission:m,error:g}=be(y.v7_normalizeFormMethod,!0,u,o);if(g)return void ge(t,n,g,{flushSync:a});let v=Je(d,f);M=!0===(o&&o.preventScrollReset),m&&He(m.formMethod)?async function(t,n,r,o,i,a,l){if(pe(),H.delete(t),!o.route.action&&!o.route.lazy){let e=Be(405,{method:l.formMethod,pathname:r,routeId:n});return void ge(t,n,e,{flushSync:a})}let u=D.fetchers.get(t);me(t,function(e,t){let n={state:"submitting",formMethod:e.formMethod,formAction:e.formAction,formEncType:e.formEncType,formData:e.formData,json:e.json,text:e.text,data:t?t.data:void 0};return n}(l,u),{flushSync:a});let d=new AbortController,f=je(e.history,r,d.signal,l);U.set(t,d);let m=W,g=await ie("action",f,[o],i),v=g[0];if(f.signal.aborted)return void(U.get(t)===d&&U.delete(t));if(y.v7_fetcherPersist&&Y.has(t)){if(We(v)||Ue(v))return void me(t,rt(void 0))}else{if(We(v))return U.delete(t),G>m?void me(t,rt(void 0)):(q.add(t),me(t,nt(l)),oe(f,v,{fetcherSubmission:l}));if(Ue(v))return void ge(t,n,v.error)}if(Ve(v))throw Be(400,{type:"defer-action"});let O=D.navigation.location||D.location,w=je(e.history,O,d.signal),S=s||h,x="idle"!==D.navigation.state?b(S,D.navigation.location,p):D.matches;c(x,"Didn't find any matches after fetcher action");let E=++W;X.set(t,E);let T=nt(l,v.data);D.fetchers.set(t,T);let[C,P]=we(e.history,D,x,l,O,!1,y.unstable_skipActionErrorRevalidation,Q,z,V,Y,H,q,S,p,[o.route.id,v]);P.filter((e=>e.key!==t)).forEach((e=>{let t=e.key,n=D.fetchers.get(t),r=nt(void 0,n?n.data:void 0);D.fetchers.set(t,r),U.has(t)&&Se(t),e.controller&&U.set(t,e.controller)})),te({fetchers:new Map(D.fetchers)});let _=()=>P.forEach((e=>Se(e.key)));d.signal.addEventListener("abort",_);let{loaderResults:k,fetcherResults:j}=await he(D.matches,x,C,P,w);if(d.signal.aborted)return;d.signal.removeEventListener("abort",_),X.delete(t),U.delete(t),P.forEach((e=>U.delete(e.key)));let A=Fe([...k,...j]);if(A){if(A.idx>=C.length){let e=P[A.idx-C.length].key;q.add(e)}return oe(w,A.result)}let{loaderData:I,errors:M}=Le(D,D.matches,C,k,void 0,P,j,K);if(D.fetchers.has(t)){let e=rt(v.data);D.fetchers.set(t,e)}Ae(E),"loading"===D.navigation.state&&E>G?(c(L,"Expected pending action"),R&&R.abort(),ne(D.navigation.location,{matches:x,loaderData:I,errors:M,fetchers:new Map(D.fetchers)})):(te({errors:M,loaderData:Ie(D.loaderData,I,x,M),fetchers:new Map(D.fetchers)}),Q=!1)}(t,n,f,v,d,a,m):(H.set(t,{routeId:n,path:f}),async function(t,n,r,o,i,a,s){let l=D.fetchers.get(t);me(t,nt(s,l?l.data:void 0),{flushSync:a});let u=new AbortController,d=je(e.history,r,u.signal);U.set(t,u);let f=W,h=await ie("loader",d,[o],i),p=h[0];Ve(p)&&(p=await Ye(p,d.signal,!0)||p);U.get(t)===u&&U.delete(t);if(d.signal.aborted)return;if(Y.has(t))return void me(t,rt(void 0));if(We(p))return G>f?void me(t,rt(void 0)):(q.add(t),void await oe(d,p));if(Ue(p))return void ge(t,n,p.error);c(!Ve(p),"Unhandled fetcher deferred data"),me(t,rt(p.data))}(t,n,f,v,d,a,m))},revalidate:function(){pe(),te({revalidation:"loading"}),"submitting"!==D.navigation.state&&("idle"!==D.navigation.state?re(L||D.historyAction,D.navigation.location,{overrideNavigation:D.navigation}):re(D.historyAction,D.location,{startUninterruptedRevalidation:!0}))},createHref:t=>e.history.createHref(t),encodeLocation:t=>e.history.encodeLocation(t),getFetcher:ye,deleteFetcher:function(e){if(y.v7_fetcherPersist){let t=(Z.get(e)||0)-1;t<=0?(Z.delete(e),Y.add(e)):Z.set(e,t)}else Oe(e);te({fetchers:new Map(D.fetchers)})},dispose:function(){w&&w(),B&&B(),S.clear(),R&&R.abort(),D.fetchers.forEach(((e,t)=>Oe(t))),D.blockers.forEach(((e,t)=>Re(t)))},getBlocker:function(e,t){let n=D.blockers.get(e)||ce;return J.get(e)!==t&&J.set(e,t),n},deleteBlocker:Re,_internalFetchControllers:U,_internalActiveDeferreds:K,_internalSetRoutes:function(e){d={},s=v(e,a,void 0,d)}},k}const pe=Symbol("deferred");function me(e,t){c(e.length>0,"You must provide a non-empty routes array to createStaticHandler");let n,o={},i=(t?t.basename:null)||"/";if(null!=t&&t.mapRouteProperties)n=t.mapRouteProperties;else if(null!=t&&t.detectErrorBoundary){let e=t.detectErrorBoundary;n=t=>({hasErrorBoundary:e(t)})}else n=de;let a=r({v7_relativeSplatPath:!1,v7_throwAbortReason:!1},t?t.future:null),s=v(e,n,void 0,o);async function l(e,t,n,o,i,s,l){c(e.signal,"query()/queryRoute() requests must contain an AbortController signal");try{if(He(e.method.toLowerCase())){let c=await async function(e,t,n,o,i,s,l){let c;if(n.route.action||n.route.lazy){c=(await d("action",e,[n],t,l,o,i))[0],e.signal.aborted&&ye(e,l,a)}else{let t=Be(405,{method:e.method,pathname:new URL(e.url).pathname,routeId:n.route.id});if(l)throw t;c={type:g.error,error:t}}if(We(c))throw new Response(null,{status:c.response.status,headers:{Location:c.response.headers.get("Location")}});if(Ve(c)){let e=Be(400,{type:"defer-action"});if(l)throw e;c={type:g.error,error:e}}if(l){if(Ue(c))throw c.error;return{matches:[n],loaderData:{},actionData:{[n.route.id]:c.data},errors:null,statusCode:200,loaderHeaders:{},actionHeaders:{},activeDeferreds:null}}let f=new Request(e.url,{headers:e.headers,redirect:e.redirect,signal:e.signal});if(Ue(c)){let e=s?n:Ne(t,n.route.id);return r({},await u(f,t,o,i,s,null,[e.route.id,c]),{statusCode:ee(c.error)?c.error.status:null!=c.statusCode?c.statusCode:500,actionData:null,actionHeaders:r({},c.headers?{[n.route.id]:c.headers}:{})})}let h=await u(f,t,o,i,s,null);return r({},h,{actionData:{[n.route.id]:c.data}},c.statusCode?{statusCode:c.statusCode}:{},{actionHeaders:c.headers?{[n.route.id]:c.headers}:{}})}(e,n,l||Je(n,t),o,i,s,null!=l);return c}let c=await u(e,n,o,i,s,l);return Xe(c)?c:r({},c,{actionData:null,actionHeaders:{}})}catch(e){if(null!=(f=e)&&"object"==typeof f&&"type"in f&&"result"in f&&(f.type===g.data||f.type===g.error)&&Xe(e.result)){if(e.type===g.error)throw e.result;return e.result}if(function(e){if(!Xe(e))return!1;let t=e.status,n=e.headers.get("Location");return t>=300&&t<=399&&null!=n}(e))return e;throw e}var f}async function u(e,t,n,o,i,s,l){let c=null!=s;if(c&&(null==s||!s.route.loader)&&(null==s||!s.route.lazy))throw Be(400,{method:e.method,pathname:new URL(e.url).pathname,routeId:null==s?void 0:s.route.id});let u=(s?[s]:l&&Ue(l[1])?Oe(t,l[0]):t).filter((e=>e.route.loader||e.route.lazy));if(0===u.length)return{matches:t,loaderData:t.reduce(((e,t)=>Object.assign(e,{[t.route.id]:null})),{}),errors:l&&Ue(l[1])?{[l[0]]:l[1].error}:null,statusCode:200,loaderHeaders:{},activeDeferreds:null};let f=await d("loader",e,u,t,c,n,o);e.signal.aborted&&ye(e,c,a);let h=new Map,p=De(t,u,f,l,h,i),m=new Set(u.map((e=>e.route.id)));return t.forEach((e=>{m.has(e.route.id)||(p.loaderData[e.route.id]=null)})),r({},p,{matches:t,activeDeferreds:h.size>0?Object.fromEntries(h.entries()):null})}async function d(e,t,r,s,l,c,u){let d=await Ce(u||Te,e,t,r,s,o,n,c);return await Promise.all(d.map(((e,n)=>{if(ze(e)){throw _e(e.result,t,r[n].route.id,s,i,a.v7_relativeSplatPath)}if(Xe(e.result)&&l)throw e;return Pe(e)})))}return{dataRoutes:s,query:async function(e,t){let{requestContext:n,skipLoaderErrorBubbling:o,unstable_dataStrategy:a}=void 0===t?{}:t,c=new URL(e.url),u=e.method,d=f("",h(c),null,"default"),p=b(s,d,i);if(!qe(u)&&"HEAD"!==u){let e=Be(405,{method:u}),{matches:t,route:n}=$e(s);return{basename:i,location:d,matches:t,loaderData:{},actionData:null,errors:{[n.id]:e},statusCode:e.status,loaderHeaders:{},actionHeaders:{},activeDeferreds:null}}if(!p){let e=Be(404,{pathname:d.pathname}),{matches:t,route:n}=$e(s);return{basename:i,location:d,matches:t,loaderData:{},actionData:null,errors:{[n.id]:e},statusCode:e.status,loaderHeaders:{},actionHeaders:{},activeDeferreds:null}}let m=await l(e,d,p,n,a||null,!0===o,null);return Xe(m)?m:r({location:d,basename:i},m)},queryRoute:async function(e,t){let{routeId:n,requestContext:r,unstable_dataStrategy:o}=void 0===t?{}:t,a=new URL(e.url),c=e.method,u=f("",h(a),null,"default"),d=b(s,u,i);if(!qe(c)&&"HEAD"!==c&&"OPTIONS"!==c)throw Be(405,{method:c});if(!d)throw Be(404,{pathname:u.pathname});let p=n?d.find((e=>e.route.id===n)):Je(d,u);if(n&&!p)throw Be(403,{pathname:u.pathname,routeId:n});if(!p)throw Be(404,{pathname:u.pathname});let m=await l(e,u,d,r,o||null,!1,p);if(Xe(m))return m;let g=m.errors?Object.values(m.errors)[0]:void 0;if(void 0!==g)throw g;if(m.actionData)return Object.values(m.actionData)[0];if(m.loaderData){var y;let e=Object.values(m.loaderData)[0];return null!=(y=m.activeDeferreds)&&y[p.route.id]&&(e[pe]=m.activeDeferreds[p.route.id]),e}}}}function ge(e,t,n){return r({},t,{statusCode:ee(n)?n.status:500,errors:{[t._deepestRenderedBoundaryId||e[0].id]:n}})}function ye(e,t,n){if(n.v7_throwAbortReason&&void 0!==e.signal.reason)throw e.signal.reason;throw new Error((t?"queryRoute":"query")+"() call aborted: "+e.method+" "+e.url)}function ve(e,t,n,r,o,i,a,s){let l,c;if(a){l=[];for(let e of t)if(l.push(e),e.route.id===a){c=e;break}}else l=t,c=t[t.length-1];let u=F(o||".",B(l,i),I(e.pathname,n)||e.pathname,"path"===s);return null==o&&(u.search=e.search,u.hash=e.hash),null!=o&&""!==o&&"."!==o||!c||!c.route.index||Ke(u.search)||(u.search=u.search?u.search.replace(/^\?/,"?index&"):"?index"),r&&"/"!==n&&(u.pathname="/"===u.pathname?n:z([n,u.pathname])),h(u)}function be(e,t,n,r){if(!r||!function(e){return null!=e&&("formData"in e&&null!=e.formData||"body"in e&&void 0!==e.body)}(r))return{path:n};if(r.formMethod&&!qe(r.formMethod))return{path:n,error:Be(405,{method:r.formMethod})};let o,i,a=()=>({path:n,error:Be(400,{type:"invalid-body"})}),s=r.formMethod||"get",l=e?s.toUpperCase():s.toLowerCase(),u=Qe(n);if(void 0!==r.body){if("text/plain"===r.formEncType){if(!He(l))return a();let e="string"==typeof r.body?r.body:r.body instanceof FormData||r.body instanceof URLSearchParams?Array.from(r.body.entries()).reduce(((e,t)=>{let[n,r]=t;return""+e+n+"="+r+"\n"}),""):String(r.body);return{path:n,submission:{formMethod:l,formAction:u,formEncType:r.formEncType,formData:void 0,json:void 0,text:e}}}if("application/json"===r.formEncType){if(!He(l))return a();try{let e="string"==typeof r.body?JSON.parse(r.body):r.body;return{path:n,submission:{formMethod:l,formAction:u,formEncType:r.formEncType,formData:void 0,json:e,text:void 0}}}catch(e){return a()}}}if(c("function"==typeof FormData,"FormData is not available in this environment"),r.formData)o=Ae(r.formData),i=r.formData;else if(r.body instanceof FormData)o=Ae(r.body),i=r.body;else if(r.body instanceof URLSearchParams)o=r.body,i=Re(o);else if(null==r.body)o=new URLSearchParams,i=new FormData;else try{o=new URLSearchParams(r.body),i=Re(o)}catch(e){return a()}let d={formMethod:l,formAction:u,formEncType:r&&r.formEncType||"application/x-www-form-urlencoded",formData:i,json:void 0,text:void 0};if(He(d.formMethod))return{path:n,submission:d};let f=p(n);return t&&f.search&&Ke(f.search)&&o.append("index",""),f.search="?"+o,{path:h(f),submission:d}}function Oe(e,t){let n=e;if(t){let r=e.findIndex((e=>e.route.id===t));r>=0&&(n=e.slice(0,r))}return n}function we(e,t,n,o,i,a,s,l,c,u,d,f,h,p,m,g){let y=g?Ue(g[1])?g[1].error:g[1].data:void 0,v=e.createURL(t.location),O=e.createURL(i),w=g&&Ue(g[1])?g[0]:void 0,S=w?Oe(n,w):n,x=g?g[1].statusCode:void 0,E=s&&x&&x>=400,T=S.filter(((e,n)=>{let{route:i}=e;if(i.lazy)return!0;if(null==i.loader)return!1;if(a)return!("function"==typeof i.loader&&!i.loader.hydrate)||void 0===t.loaderData[i.id]&&(!t.errors||void 0===t.errors[i.id]);if(function(e,t,n){let r=!t||n.route.id!==t.route.id,o=void 0===e[n.route.id];return r||o}(t.loaderData,t.matches[n],e)||c.some((t=>t===e.route.id)))return!0;let s=t.matches[n],u=e;return xe(e,r({currentUrl:v,currentParams:s.params,nextUrl:O,nextParams:u.params},o,{actionResult:y,unstable_actionStatus:x,defaultShouldRevalidate:!E&&(l||v.pathname+v.search===O.pathname+O.search||v.search!==O.search||Se(s,u))}))})),C=[];return f.forEach(((e,i)=>{if(a||!n.some((t=>t.route.id===e.routeId))||d.has(i))return;let s=b(p,e.path,m);if(!s)return void C.push({key:i,routeId:e.routeId,path:e.path,matches:null,match:null,controller:null});let c=t.fetchers.get(i),f=Je(s,e.path),g=!1;g=!h.has(i)&&(!!u.includes(i)||(c&&"idle"!==c.state&&void 0===c.data?l:xe(f,r({currentUrl:v,currentParams:t.matches[t.matches.length-1].params,nextUrl:O,nextParams:n[n.length-1].params},o,{actionResult:y,unstable_actionStatus:x,defaultShouldRevalidate:!E&&l})))),g&&C.push({key:i,routeId:e.routeId,path:e.path,matches:s,match:f,controller:new AbortController})})),[T,C]}function Se(e,t){let n=e.route.path;return e.pathname!==t.pathname||null!=n&&n.endsWith("*")&&e.params["*"]!==t.params["*"]}function xe(e,t){if(e.route.shouldRevalidate){let n=e.route.shouldRevalidate(t);if("boolean"==typeof n)return n}return t.defaultShouldRevalidate}async function Ee(e,t,n){if(!e.lazy)return;let o=await e.lazy();if(!e.lazy)return;let i=n[e.id];c(i,"No route found in manifest");let a={};for(let e in o){let t=void 0!==i[e]&&"hasErrorBoundary"!==e;u(!t,'Route "'+i.id+'" has a static property "'+e+'" defined but its lazy function is also returning a value for this property. The lazy route property "'+e+'" will be ignored.'),t||y.has(e)||(a[e]=o[e])}Object.assign(i,a),Object.assign(i,r({},t(i),{lazy:void 0}))}function Te(e){return Promise.all(e.matches.map((e=>e.resolve())))}async function Ce(e,t,n,o,i,a,s,l){let u=o.reduce(((e,t)=>e.add(t.route.id)),new Set),d=new Set,f=await e({matches:i.map((e=>{let o=u.has(e.route.id);return r({},e,{shouldLoad:o,resolve:r=>(d.add(e.route.id),o?async function(e,t,n,r,o,i,a){let s,l,u=r=>{let o,s=new Promise(((e,t)=>o=t));l=()=>o(),t.signal.addEventListener("abort",l);let c,u=o=>"function"!=typeof r?Promise.reject(new Error('You cannot call the handler for a route which defines a boolean "'+e+'" [routeId: '+n.route.id+"]")):r({request:t,params:n.params,context:a},...void 0!==o?[o]:[]);return c=i?i((e=>u(e))):(async()=>{try{return{type:"data",result:await u()}}catch(e){return{type:"error",result:e}}})(),Promise.race([c,s])};try{let i=n.route[e];if(n.route.lazy)if(i){let e,[t]=await Promise.all([u(i).catch((t=>{e=t})),Ee(n.route,o,r)]);if(void 0!==e)throw e;s=t}else{if(await Ee(n.route,o,r),i=n.route[e],!i){if("action"===e){let e=new URL(t.url),r=e.pathname+e.search;throw Be(405,{method:t.method,pathname:r,routeId:n.route.id})}return{type:g.data,result:void 0}}s=await u(i)}else{if(!i){let e=new URL(t.url);throw Be(404,{pathname:e.pathname+e.search})}s=await u(i)}c(void 0!==s.result,"You defined "+("action"===e?"an action":"a loader")+' for route "'+n.route.id+"\" but didn't return anything from your `"+e+"` function. Please return a value or `null`.")}catch(e){return{type:g.error,result:e}}finally{l&&t.signal.removeEventListener("abort",l)}return s}(t,n,e,a,s,r,l):Promise.resolve({type:g.data,result:void 0}))})})),request:n,params:i[0].params,context:l});return i.forEach((e=>c(d.has(e.route.id),'`match.resolve()` was not called for route id "'+e.route.id+'". You must call `match.resolve()` on every match passed to `dataStrategy` to ensure all routes are properly loaded.'))),f.filter(((e,t)=>u.has(i[t].route.id)))}async function Pe(e){let{result:t,type:n,status:r}=e;if(Xe(t)){let e;try{let n=t.headers.get("Content-Type");e=n&&/\bapplication\/json\b/.test(n)?null==t.body?null:await t.json():await t.text()}catch(e){return{type:g.error,error:e}}return n===g.error?{type:g.error,error:new J(t.status,t.statusText,e),statusCode:t.status,headers:t.headers}:{type:g.data,data:e,statusCode:t.status,headers:t.headers}}return n===g.error?{type:g.error,error:t,statusCode:ee(t)?t.status:r}:Ge(t)?{type:g.deferred,deferredData:t,statusCode:null==(o=t.init)?void 0:o.status,headers:(null==(i=t.init)?void 0:i.headers)&&new Headers(t.init.headers)}:{type:g.data,data:t,statusCode:r};var o,i}function _e(e,t,n,r,o,i){let a=e.headers.get("Location");if(c(a,"Redirects returned/thrown from loaders/actions must have a Location header"),!ue.test(a)){let s=r.slice(0,r.findIndex((e=>e.route.id===n))+1);a=ve(new URL(t.url),s,o,!0,a,i),e.headers.set("Location",a)}return e}function ke(e,t,n){if(ue.test(e)){let r=e,o=r.startsWith("//")?new URL(t.protocol+r):new URL(r),i=null!=I(o.pathname,n);if(o.origin===t.origin&&i)return o.pathname+o.search+o.hash}return e}function je(e,t,n,r){let o=e.createURL(Qe(t)).toString(),i={signal:n};if(r&&He(r.formMethod)){let{formMethod:e,formEncType:t}=r;i.method=e.toUpperCase(),"application/json"===t?(i.headers=new Headers({"Content-Type":t}),i.body=JSON.stringify(r.json)):"text/plain"===t?i.body=r.text:"application/x-www-form-urlencoded"===t&&r.formData?i.body=Ae(r.formData):i.body=r.formData}return new Request(o,i)}function Ae(e){let t=new URLSearchParams;for(let[n,r]of e.entries())t.append(n,"string"==typeof r?r:r.name);return t}function Re(e){let t=new FormData;for(let[n,r]of e.entries())t.append(n,r);return t}function De(e,t,n,r,o,i){let a,s={},l=null,u=!1,d={},f=r&&Ue(r[1])?r[1].error:void 0;return n.forEach(((n,r)=>{let h=t[r].route.id;if(c(!We(n),"Cannot handle redirect results in processLoaderData"),Ue(n)){let t=n.error;if(void 0!==f&&(t=f,f=void 0),l=l||{},i)l[h]=t;else{let n=Ne(e,h);null==l[n.route.id]&&(l[n.route.id]=t)}s[h]=void 0,u||(u=!0,a=ee(n.error)?n.error.status:500),n.headers&&(d[h]=n.headers)}else Ve(n)?(o.set(h,n.deferredData),s[h]=n.deferredData.data,null==n.statusCode||200===n.statusCode||u||(a=n.statusCode),n.headers&&(d[h]=n.headers)):(s[h]=n.data,n.statusCode&&200!==n.statusCode&&!u&&(a=n.statusCode),n.headers&&(d[h]=n.headers))})),void 0!==f&&r&&(l={[r[0]]:f},s[r[0]]=void 0),{loaderData:s,errors:l,statusCode:a||200,loaderHeaders:d}}function Le(e,t,n,o,i,a,s,l){let{loaderData:u,errors:d}=De(t,n,o,i,l,!1);for(let t=0;te.route.id===t))+1):[...e]).reverse().find((e=>!0===e.route.hasErrorBoundary))||e[0]}function $e(e){let t=1===e.length?e[0]:e.find((e=>e.index||!e.path||"/"===e.path))||{id:"__shim-error-route__"};return{matches:[{params:{},pathname:"",pathnameBase:"",route:t}],route:t}}function Be(e,t){let{pathname:n,routeId:r,method:o,type:i}=void 0===t?{}:t,a="Unknown Server Error",s="Unknown @remix-run/router error";return 400===e?(a="Bad Request",o&&n&&r?s="You made a "+o+' request to "'+n+'" but did not provide a `loader` for route "'+r+'", so there is no way to handle the request.':"defer-action"===i?s="defer() is not supported in actions":"invalid-body"===i&&(s="Unable to encode submission body")):403===e?(a="Forbidden",s='Route "'+r+'" does not match URL "'+n+'"'):404===e?(a="Not Found",s='No route matches URL "'+n+'"'):405===e&&(a="Method Not Allowed",o&&n&&r?s="You made a "+o.toUpperCase()+' request to "'+n+'" but did not provide an `action` for route "'+r+'", so there is no way to handle the request.':o&&(s='Invalid request method "'+o.toUpperCase()+'"')),new J(e||500,a,new Error(s),!0)}function Fe(e){for(let t=e.length-1;t>=0;t--){let n=e[t];if(We(n))return{result:n,idx:t}}}function Qe(e){return h(r({},"string"==typeof e?p(e):e,{hash:""}))}function ze(e){return Xe(e.result)&&ie.has(e.result.status)}function Ve(e){return e.type===g.deferred}function Ue(e){return e.type===g.error}function We(e){return(e&&e.type)===g.redirect}function Ge(e){let t=e;return t&&"object"==typeof t&&"object"==typeof t.data&&"function"==typeof t.subscribe&&"function"==typeof t.cancel&&"function"==typeof t.resolveData}function Xe(e){return null!=e&&"number"==typeof e.status&&"string"==typeof e.statusText&&"object"==typeof e.headers&&void 0!==e.body}function qe(e){return oe.has(e.toLowerCase())}function He(e){return ne.has(e.toLowerCase())}async function Ze(e,t,n,r,o,i){for(let a=0;ae.route.id===l.route.id)),d=null!=u&&!Se(u,l)&&void 0!==(i&&i[l.route.id]);if(Ve(s)&&(o||d)){let e=r[a];c(e,"Expected an AbortSignal for revalidating fetcher deferred result"),await Ye(s,e,o).then((e=>{e&&(n[a]=e||n[a])}))}}}async function Ye(e,t,n){if(void 0===n&&(n=!1),!await e.deferredData.resolveData(t)){if(n)try{return{type:g.data,data:e.deferredData.unwrappedData}}catch(e){return{type:g.error,error:e}}return{type:g.data,data:e.deferredData.data}}}function Ke(e){return new URLSearchParams(e).getAll("index").some((e=>""===e))}function Je(e,t){let n="string"==typeof t?p(t).search:t.search;if(e[e.length-1].route.index&&Ke(n||""))return e[e.length-1];let r=$(e);return r[r.length-1]}function et(e){let{formMethod:t,formAction:n,formEncType:r,text:o,formData:i,json:a}=e;if(t&&n&&r)return null!=o?{formMethod:t,formAction:n,formEncType:r,formData:void 0,json:void 0,text:o}:null!=i?{formMethod:t,formAction:n,formEncType:r,formData:i,json:void 0,text:void 0}:void 0!==a?{formMethod:t,formAction:n,formEncType:r,formData:void 0,json:a,text:void 0}:void 0}function tt(e,t){if(t){return{state:"loading",location:e,formMethod:t.formMethod,formAction:t.formAction,formEncType:t.formEncType,formData:t.formData,json:t.json,text:t.text}}return{state:"loading",location:e,formMethod:void 0,formAction:void 0,formEncType:void 0,formData:void 0,json:void 0,text:void 0}}function nt(e,t){if(e){return{state:"loading",formMethod:e.formMethod,formAction:e.formAction,formEncType:e.formEncType,formData:e.formData,json:e.json,text:e.text,data:t}}return{state:"loading",formMethod:void 0,formAction:void 0,formEncType:void 0,formData:void 0,json:void 0,text:void 0,data:t}}function rt(e){return{state:"idle",formMethod:void 0,formAction:void 0,formEncType:void 0,formData:void 0,json:void 0,text:void 0,data:e}}},79608:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>a});var r,o=n(36198);function i(){return i=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>a});var r,o=n(36198);function i(){return i=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>a});var r,o=n(36198);function i(){return i=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>a});var r,o=n(36198);function i(){return i=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>a});var r,o=n(36198);function i(){return i=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>a});var r,o=n(36198);function i(){return i=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>a});var r,o=n(36198);function i(){return i=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>a});var r,o=n(36198);function i(){return i=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>a});var r,o=n(36198);function i(){return i=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>s});var r,o,i=n(36198);function a(){return a=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>a});var r,o=n(36198);function i(){return i=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>a});var r,o=n(36198);function i(){return i=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>a});var r,o=n(36198);function i(){return i=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>a});var r,o=n(36198);function i(){return i=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>a});var r,o=n(36198);function i(){return i=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>a});var r,o=n(36198);function i(){return i=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>a});var r,o=n(36198);function i(){return i=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>a});var r,o=n(36198);function i(){return i=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>a});var r,o=n(36198);function i(){return i=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>a});var r,o=n(36198);function i(){return i=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>a});var r,o=n(36198);function i(){return i=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>a});var r,o=n(36198);function i(){return i=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>a});var r,o=n(36198);function i(){return i=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>a});var r,o=n(36198);function i(){return i=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>s});var r,o,i=n(36198);function a(){return a=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>s});var r,o,i=n(36198);function a(){return a=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>a});var r,o=n(36198);function i(){return i=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>a});var r,o=n(36198);function i(){return i=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>l});var r,o,i,a=n(36198);function s(){return s=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>a});var r,o=n(36198);function i(){return i=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>s});var r,o,i=n(36198);function a(){return a=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>a});var r,o=n(36198);function i(){return i=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>s});var r,o,i=n(36198);function a(){return a=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>a});var r,o=n(36198);function i(){return i=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>a});var r,o=n(36198);function i(){return i=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>a});var r,o=n(36198);function i(){return i=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>a});var r,o=n(36198);function i(){return i=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>a});var r,o=n(36198);function i(){return i=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>a});var r,o=n(36198);function i(){return i=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>a});var r,o=n(36198);function i(){return i=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>a});var r,o=n(36198);function i(){return i=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>a});var r,o=n(36198);function i(){return i=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>a});var r,o=n(36198);function i(){return i=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>a});var r,o=n(36198);function i(){return i=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>c});var r,o,i,a,s=n(36198);function l(){return l=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>c});var r,o,i,a,s=n(36198);function l(){return l=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>a});var r,o=n(36198);function i(){return i=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>a});var r,o=n(36198);function i(){return i=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>a});var r,o=n(36198);function i(){return i=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>a});var r,o=n(36198);function i(){return i=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>a});var r,o=n(36198);function i(){return i=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>l});var r,o,i,a=n(36198);function s(){return s=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>a});var r,o=n(36198);function i(){return i=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>a});var r,o=n(36198);function i(){return i=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>a});var r,o=n(36198);function i(){return i=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>a});var r,o=n(36198);function i(){return i=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>a});var r,o=n(36198);function i(){return i=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>a});var r,o=n(36198);function i(){return i=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>a});var r,o=n(36198);function i(){return i=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>a});var r,o=n(36198);function i(){return i=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>a});var r,o=n(36198);function i(){return i=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>a});var r,o=n(36198);function i(){return i=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>a});var r,o=n(36198);function i(){return i=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>a});var r,o=n(36198);function i(){return i=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>s});var r,o,i=n(36198);function a(){return a=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>a});var r,o=n(36198);function i(){return i=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>a});var r,o=n(36198);function i(){return i=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>a});var r,o=n(36198);function i(){return i=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>a});var r,o=n(36198);function i(){return i=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>a});var r,o=n(36198);function i(){return i=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>s});var r,o,i=n(36198);function a(){return a=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>a});var r,o=n(36198);function i(){return i=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>a});var r,o=n(36198);function i(){return i=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>s});var r,o,i=n(36198);function a(){return a=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>a});var r,o=n(36198);function i(){return i=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>a});var r,o=n(36198);function i(){return i=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>a});var r,o=n(36198);function i(){return i=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>s});var r,o,i=n(36198);function a(){return a=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>s});var r,o,i=n(36198);function a(){return a=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>a});var r,o=n(36198);function i(){return i=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>s});var r,o,i=n(36198);function a(){return a=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>a});var r,o=n(36198);function i(){return i=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>s});var r,o,i=n(36198);function a(){return a=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>a});var r,o=n(36198);function i(){return i=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>a});var r,o=n(36198);function i(){return i=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>a});var r,o=n(36198);function i(){return i=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>a});var r,o=n(36198);function i(){return i=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>a});var r,o=n(36198);function i(){return i=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>a});var r,o=n(36198);function i(){return i=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>a});var r,o=n(36198);function i(){return i=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>a});var r,o=n(36198);function i(){return i=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>a});var r,o=n(36198);function i(){return i=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>a});var r,o=n(36198);function i(){return i=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>c});var r,o,i,a,s=n(36198);function l(){return l=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>s});var r,o,i=n(36198);function a(){return a=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>s});var r,o,i=n(36198);function a(){return a=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>a});var r,o=n(36198);function i(){return i=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>a});var r,o=n(36198);function i(){return i=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>a});var r,o=n(36198);function i(){return i=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>a});var r,o=n(36198);function i(){return i=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>a});var r,o=n(36198);function i(){return i=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>a});var r,o=n(36198);function i(){return i=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>a});var r,o=n(36198);function i(){return i=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>a});var r,o=n(36198);function i(){return i=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>a});var r,o=n(36198);function i(){return i=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>a});var r,o=n(36198);function i(){return i=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>a});var r,o=n(36198);function i(){return i=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>s});var r,o,i=n(36198);function a(){return a=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>a});var r,o=n(36198);function i(){return i=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>a});var r,o=n(36198);function i(){return i=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{default:()=>a});var r,o=n(36198);function i(){return i=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";n.r(t),n.d(t,{basicSetup:()=>u,minimalSetup:()=>d});var r=n(47421),o=n(78120),i=n(45383),a=n(49892),s=n(34790),l=n(59119),c=n(28519),u=function(e){void 0===e&&(e={});var{crosshairCursor:t=!1}=e,n=[];!1!==e.closeBracketsKeymap&&(n=n.concat(s.closeBracketsKeymap)),!1!==e.defaultKeymap&&(n=n.concat(i.defaultKeymap)),!1!==e.searchKeymap&&(n=n.concat(a.searchKeymap)),!1!==e.historyKeymap&&(n=n.concat(i.historyKeymap)),!1!==e.foldKeymap&&(n=n.concat(l.foldKeymap)),!1!==e.completionKeymap&&(n=n.concat(s.completionKeymap)),!1!==e.lintKeymap&&(n=n.concat(c.lintKeymap));var u=[];return!1!==e.lineNumbers&&u.push((0,r.lineNumbers)()),!1!==e.highlightActiveLineGutter&&u.push((0,r.highlightActiveLineGutter)()),!1!==e.highlightSpecialChars&&u.push((0,r.highlightSpecialChars)()),!1!==e.history&&u.push((0,i.history)()),!1!==e.foldGutter&&u.push((0,l.foldGutter)()),!1!==e.drawSelection&&u.push((0,r.drawSelection)()),!1!==e.dropCursor&&u.push((0,r.dropCursor)()),!1!==e.allowMultipleSelections&&u.push(o.EditorState.allowMultipleSelections.of(!0)),!1!==e.indentOnInput&&u.push((0,l.indentOnInput)()),!1!==e.syntaxHighlighting&&u.push((0,l.syntaxHighlighting)(l.defaultHighlightStyle,{fallback:!0})),!1!==e.bracketMatching&&u.push((0,l.bracketMatching)()),!1!==e.closeBrackets&&u.push((0,s.closeBrackets)()),!1!==e.autocompletion&&u.push((0,s.autocompletion)()),!1!==e.rectangularSelection&&u.push((0,r.rectangularSelection)()),!1!==t&&u.push((0,r.crosshairCursor)()),!1!==e.highlightActiveLine&&u.push((0,r.highlightActiveLine)()),!1!==e.highlightSelectionMatches&&u.push((0,a.highlightSelectionMatches)()),e.tabSize&&"number"==typeof e.tabSize&&u.push(l.indentUnit.of(" ".repeat(e.tabSize))),u.concat([r.keymap.of(n.flat())]).filter(Boolean)},d=function(e){void 0===e&&(e={});var t=[];!1!==e.defaultKeymap&&(t=t.concat(i.defaultKeymap)),!1!==e.historyKeymap&&(t=t.concat(i.historyKeymap));var n=[];return!1!==e.highlightSpecialChars&&n.push((0,r.highlightSpecialChars)()),!1!==e.history&&n.push((0,i.history)()),!1!==e.drawSelection&&n.push((0,r.drawSelection)()),!1!==e.syntaxHighlighting&&n.push((0,l.syntaxHighlighting)(l.defaultHighlightStyle,{fallback:!0})),n.concat([r.keymap.of(t.flat())]).filter(Boolean)}},3891:(e,t,n)=>{"use strict";n.r(t),n.d(t,{color:()=>a.color,defaultLightThemeOption:()=>l.defaultLightThemeOption,getDefaultExtensions:()=>c,oneDark:()=>a.oneDark,oneDarkHighlightStyle:()=>a.oneDarkHighlightStyle,oneDarkTheme:()=>a.oneDarkTheme});var r=n(45383),o=n(15643),i=n(47421),a=n(23732),s=n(78120),l=n(86915),c=function(e){void 0===e&&(e={});var{indentWithTab:t=!0,editable:n=!0,readOnly:c=!1,theme:u="light",placeholder:d="",basicSetup:f=!0}=e,h=[];switch(t&&h.unshift(i.keymap.of([r.indentWithTab])),f&&("boolean"==typeof f?h.unshift((0,o.basicSetup)()):h.unshift((0,o.basicSetup)(f))),d&&h.unshift((0,i.placeholder)(d)),u){case"light":h.push(l.defaultLightThemeOption);break;case"dark":h.push(a.oneDark);break;case"none":break;default:h.push(u)}return!1===n&&h.push(i.EditorView.editable.of(!1)),c&&h.push(s.EditorState.readOnly.of(!0)),[...h]}},5770:(e,t,n)=>{"use strict";n.r(t),n.d(t,{Annotation:()=>c.Annotation,AnnotationType:()=>c.AnnotationType,BidiSpan:()=>l.BidiSpan,BlockInfo:()=>l.BlockInfo,BlockType:()=>l.BlockType,ChangeDesc:()=>c.ChangeDesc,ChangeSet:()=>c.ChangeSet,CharCategory:()=>c.CharCategory,Compartment:()=>c.Compartment,Decoration:()=>l.Decoration,Direction:()=>l.Direction,EditorSelection:()=>c.EditorSelection,EditorState:()=>c.EditorState,EditorView:()=>l.EditorView,Facet:()=>c.Facet,GutterMarker:()=>l.GutterMarker,Line:()=>c.Line,MapMode:()=>c.MapMode,MatchDecorator:()=>l.MatchDecorator,Prec:()=>c.Prec,Range:()=>c.Range,RangeSet:()=>c.RangeSet,RangeSetBuilder:()=>c.RangeSetBuilder,RangeValue:()=>c.RangeValue,RectangleMarker:()=>l.RectangleMarker,SelectionRange:()=>c.SelectionRange,StateEffect:()=>c.StateEffect,StateEffectType:()=>c.StateEffectType,StateField:()=>c.StateField,Text:()=>c.Text,Transaction:()=>c.Transaction,ViewPlugin:()=>l.ViewPlugin,ViewUpdate:()=>l.ViewUpdate,WidgetType:()=>l.WidgetType,__test:()=>l.__test,basicSetup:()=>u.basicSetup,closeHoverTooltips:()=>l.closeHoverTooltips,codePointAt:()=>c.codePointAt,codePointSize:()=>c.codePointSize,color:()=>d.color,combineConfig:()=>c.combineConfig,countColumn:()=>c.countColumn,crosshairCursor:()=>l.crosshairCursor,default:()=>m,defaultLightThemeOption:()=>d.defaultLightThemeOption,drawSelection:()=>l.drawSelection,dropCursor:()=>l.dropCursor,findClusterBreak:()=>c.findClusterBreak,findColumn:()=>c.findColumn,fromCodePoint:()=>c.fromCodePoint,getDefaultExtensions:()=>d.getDefaultExtensions,getDrawSelectionConfig:()=>l.getDrawSelectionConfig,getPanel:()=>l.getPanel,getStatistics:()=>f.getStatistics,getTooltip:()=>l.getTooltip,gutter:()=>l.gutter,gutterLineClass:()=>l.gutterLineClass,gutterWidgetClass:()=>l.gutterWidgetClass,gutters:()=>l.gutters,hasHoverTooltips:()=>l.hasHoverTooltips,highlightActiveLine:()=>l.highlightActiveLine,highlightActiveLineGutter:()=>l.highlightActiveLineGutter,highlightSpecialChars:()=>l.highlightSpecialChars,highlightTrailingWhitespace:()=>l.highlightTrailingWhitespace,highlightWhitespace:()=>l.highlightWhitespace,hoverTooltip:()=>l.hoverTooltip,keymap:()=>l.keymap,layer:()=>l.layer,lineNumberMarkers:()=>l.lineNumberMarkers,lineNumberWidgetMarker:()=>l.lineNumberWidgetMarker,lineNumbers:()=>l.lineNumbers,logException:()=>l.logException,minimalSetup:()=>u.minimalSetup,oneDark:()=>d.oneDark,oneDarkHighlightStyle:()=>d.oneDarkHighlightStyle,oneDarkTheme:()=>d.oneDarkTheme,panels:()=>l.panels,placeholder:()=>l.placeholder,rectangularSelection:()=>l.rectangularSelection,repositionTooltips:()=>l.repositionTooltips,runScopeHandlers:()=>l.runScopeHandlers,scrollPastEnd:()=>l.scrollPastEnd,showPanel:()=>l.showPanel,showTooltip:()=>l.showTooltip,tooltips:()=>l.tooltips,useCodeMirror:()=>a.useCodeMirror});var r=n(87462),o=n(63366),i=n(36198),a=n(57871),s=n(85893),l=n(47421),c=n(78120),u=n(15643),d=n(3891),f=n(74241),h=["className","value","selection","extensions","onChange","onStatistics","onCreateEditor","onUpdate","autoFocus","theme","height","minHeight","maxHeight","width","minWidth","maxWidth","basicSetup","placeholder","indentWithTab","editable","readOnly","root","initialState"],p=(0,i.forwardRef)(((e,t)=>{var{className:n,value:l="",selection:c,extensions:u=[],onChange:d,onStatistics:f,onCreateEditor:p,onUpdate:m,autoFocus:g,theme:y="light",height:v,minHeight:b,maxHeight:O,width:w,minWidth:S,maxWidth:x,basicSetup:E,placeholder:T,indentWithTab:C,editable:P,readOnly:_,root:k,initialState:j}=e,A=(0,o.default)(e,h),R=(0,i.useRef)(null),{state:D,view:L,container:I}=(0,a.useCodeMirror)({container:R.current,root:k,value:l,autoFocus:g,theme:y,height:v,minHeight:b,maxHeight:O,width:w,minWidth:S,maxWidth:x,basicSetup:E,placeholder:T,indentWithTab:C,editable:P,readOnly:_,selection:c,onChange:d,onStatistics:f,onCreateEditor:p,onUpdate:m,extensions:u,initialState:j});if((0,i.useImperativeHandle)(t,(()=>({editor:R.current,state:D,view:L})),[R,I,D,L]),"string"!=typeof l)throw new Error("value must be typeof string but got "+typeof l);var M="string"==typeof y?"cm-theme-"+y:"cm-theme";return(0,s.jsx)("div",(0,r.default)({ref:R,className:M+(n?" "+n:"")},A))}));p.displayName="CodeMirror";const m=p},86915:(e,t,n)=>{"use strict";n.r(t),n.d(t,{defaultLightThemeOption:()=>r});var r=n(47421).EditorView.theme({"&":{backgroundColor:"#fff"}},{dark:!1})},57871:(e,t,n)=>{"use strict";n.r(t),n.d(t,{useCodeMirror:()=>u});var r=n(36198),o=n(78120),i=n(47421),a=n(3891),s=n(74241),l=o.Annotation.define(),c=[];function u(e){var{value:t,selection:n,onChange:u,onStatistics:d,onCreateEditor:f,onUpdate:h,extensions:p=c,autoFocus:m,theme:g="light",height:y=null,minHeight:v=null,maxHeight:b=null,width:O=null,minWidth:w=null,maxWidth:S=null,placeholder:x="",editable:E=!0,readOnly:T=!1,indentWithTab:C=!0,basicSetup:P=!0,root:_,initialState:k}=e,[j,A]=(0,r.useState)(),[R,D]=(0,r.useState)(),[L,I]=(0,r.useState)(),M=i.EditorView.theme({"&":{height:y,minHeight:v,maxHeight:b,width:O,minWidth:w,maxWidth:S},"& .cm-scroller":{height:"100% !important"}}),N=[i.EditorView.updateListener.of((e=>{if(e.docChanged&&"function"==typeof u&&!e.transactions.some((e=>e.annotation(l)))){var t=e.state.doc.toString();u(t,e)}d&&d((0,s.getStatistics)(e))})),M,...(0,a.getDefaultExtensions)({theme:g,editable:E,readOnly:T,placeholder:x,indentWithTab:C,basicSetup:P})];return h&&"function"==typeof h&&N.push(i.EditorView.updateListener.of(h)),N=N.concat(p),(0,r.useEffect)((()=>{if(j&&!L){var e={doc:t,selection:n,extensions:N},r=k?o.EditorState.fromJSON(k.json,e,k.fields):o.EditorState.create(e);if(I(r),!R){var a=new i.EditorView({state:r,parent:j,root:_});D(a),f&&f(a,r)}}return()=>{R&&(I(void 0),D(void 0))}}),[j,L]),(0,r.useEffect)((()=>A(e.container)),[e.container]),(0,r.useEffect)((()=>()=>{R&&(R.destroy(),D(void 0))}),[R]),(0,r.useEffect)((()=>{m&&R&&R.focus()}),[m,R]),(0,r.useEffect)((()=>{R&&R.dispatch({effects:o.StateEffect.reconfigure.of(N)})}),[g,p,y,v,b,O,w,S,x,E,T,C,P,u,h]),(0,r.useEffect)((()=>{if(void 0!==t){var e=R?R.state.doc.toString():"";R&&t!==e&&R.dispatch({changes:{from:0,to:e.length,insert:t||""},annotations:[l.of(!0)]})}}),[t,R]),{state:L,setState:I,view:R,setView:D,container:j,setContainer:A}}},74241:(e,t,n)=>{"use strict";n.r(t),n.d(t,{getStatistics:()=>r});var r=e=>({line:e.state.doc.lineAt(e.state.selection.main.from),lineCount:e.state.doc.lines,lineBreak:e.state.lineBreak,length:e.state.doc.length,readOnly:e.state.readOnly,tabSize:e.state.tabSize,selection:e.state.selection,selectionAsSingle:e.state.selection.asSingle().main,ranges:e.state.selection.ranges,selectionCode:e.state.sliceDoc(e.state.selection.main.from,e.state.selection.main.to),selections:e.state.selection.ranges.map((t=>e.state.sliceDoc(t.from,t.to))),selectedText:e.state.selection.ranges.some((e=>!e.empty))})},78290:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(36198),o=n(8913);const i=e=>{let t;return"object"==typeof e&&(null==e?void 0:e.clearIcon)?t=e:e&&(t={clearIcon:r.createElement(o.default,null)}),t}},96159:(e,t,n)=>{"use strict";n.r(t),n.d(t,{cloneElement:()=>a,isFragment:()=>o,replaceElement:()=>i});var r=n(36198);function o(e){return e&&r.isValidElement(e)&&e.type===r.Fragment}const i=(e,t,n)=>r.isValidElement(e)?r.cloneElement(e,"function"==typeof n?n(e.props||{}):n):t;function a(e,t){return i(e,e,t)}},9708:(e,t,n)=>{"use strict";n.r(t),n.d(t,{getMergedStatus:()=>a,getStatusClassNames:()=>i});var r=n(93967),o=n.n(r);function i(e,t,n){return o()({[`${e}-status-success`]:"success"===t,[`${e}-status-warning`]:"warning"===t,[`${e}-status-error`]:"error"===t,[`${e}-status-validating`]:"validating"===t,[`${e}-has-feedback`]:n})}const a=(e,t)=>t||e},27288:(e,t,n)=>{"use strict";n.r(t),n.d(t,{WarningContext:()=>c,default:()=>d,devUseWarning:()=>u,noop:()=>i,resetWarned:()=>s});var r=n(36198),o=n(80334);function i(){}let a=null;function s(){a=null,(0,o.resetWarned)()}let l=i;const c=r.createContext({}),u=()=>{const e=()=>{};return e.deprecated=i,e},d=l},11443:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>h});var r=n(36198),o=n(93967),i=n.n(o),a=n(93587),s=n(75164),l=n(38135),c=n(17415),u=n(30190);function d(e){return Number.isNaN(e)?0:e}const f=e=>{const{className:t,target:n,component:o}=e,f=r.useRef(null),[h,p]=r.useState(null),[m,g]=r.useState([]),[y,v]=r.useState(0),[b,O]=r.useState(0),[w,S]=r.useState(0),[x,E]=r.useState(0),[T,C]=r.useState(!1),P={left:y,top:b,width:w,height:x,borderRadius:m.map((e=>`${e}px`)).join(" ")};function _(){const e=getComputedStyle(n);p((0,u.getTargetWaveColor)(n));const t="static"===e.position,{borderLeftWidth:r,borderTopWidth:o}=e;v(t?n.offsetLeft:d(-parseFloat(r))),O(t?n.offsetTop:d(-parseFloat(o))),S(n.offsetWidth),E(n.offsetHeight);const{borderTopLeftRadius:i,borderTopRightRadius:a,borderBottomLeftRadius:s,borderBottomRightRadius:l}=e;g([i,a,l,s].map((e=>d(parseFloat(e)))))}if(h&&(P["--wave-color"]=h),r.useEffect((()=>{if(n){const e=(0,s.default)((()=>{_(),C(!0)}));let t;return"undefined"!=typeof ResizeObserver&&(t=new ResizeObserver(_),t.observe(n)),()=>{s.default.cancel(e),null==t||t.disconnect()}}}),[]),!T)return null;const k=("Checkbox"===o||"Radio"===o)&&(null==n?void 0:n.classList.contains(c.TARGET_CLS));return r.createElement(a.default,{visible:!0,motionAppear:!0,motionName:"wave-motion",motionDeadline:5e3,onAppearEnd:(e,t)=>{var n;if(t.deadline||"opacity"===t.propertyName){const e=null===(n=f.current)||void 0===n?void 0:n.parentElement;(0,l.unmount)(e).then((()=>{null==e||e.remove()}))}return!1}},(e=>{let{className:n}=e;return r.createElement("div",{ref:f,className:i()(t,{"wave-quick":k},n),style:P})}))},h=(e,t)=>{var n;const{component:o}=t;if("Checkbox"===o&&!(null===(n=e.querySelector("input"))||void 0===n?void 0:n.checked))return;const i=document.createElement("div");i.style.position="absolute",i.style.left="0px",i.style.top="0px",null==e||e.insertBefore(i,null==e?void 0:e.firstChild),(0,l.render)(r.createElement(f,Object.assign({},t,{target:e})),i)}},3378:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>f});var r=n(36198),o=n(93967),i=n.n(o),a=n(5110),s=n(42550),l=n(49134),c=n(96159),u=n(55521),d=n(98345);const f=e=>{const{children:t,disabled:n,component:o}=e,{getPrefixCls:f}=(0,r.useContext)(l.ConfigContext),h=(0,r.useRef)(null),p=f("wave"),[,m]=(0,u.default)(p),g=(0,d.default)(h,i()(p,m),o);if(r.useEffect((()=>{const e=h.current;if(!e||1!==e.nodeType||n)return;const t=t=>{!(0,a.default)(t.target)||!e.getAttribute||e.getAttribute("disabled")||e.disabled||e.className.includes("disabled")||e.className.includes("-leave")||g(t)};return e.addEventListener("click",t,!0),()=>{e.removeEventListener("click",t,!0)}}),[n]),!r.isValidElement(t))return null!=t?t:null;const y=(0,s.supportRef)(t)?(0,s.composeRef)(t.ref,h):h;return(0,c.cloneElement)(t,{ref:y})}},17415:(e,t,n)=>{"use strict";n.r(t),n.d(t,{TARGET_CLS:()=>r});const r="ant-wave-target"},55521:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(12641);const o=e=>{const{componentCls:t,colorPrimary:n}=e;return{[t]:{position:"absolute",background:"transparent",pointerEvents:"none",boxSizing:"border-box",color:`var(--wave-color, ${n})`,boxShadow:"0 0 0 0 currentcolor",opacity:.2,"&.wave-motion-appear":{transition:[`box-shadow 0.4s ${e.motionEaseOutCirc}`,`opacity 2s ${e.motionEaseOutCirc}`].join(","),"&-active":{boxShadow:"0 0 0 6px currentcolor",opacity:0},"&.wave-quick":{transition:[`box-shadow ${e.motionDurationSlow} ${e.motionEaseInOut}`,`opacity ${e.motionDurationSlow} ${e.motionEaseInOut}`].join(",")}}}}},i=(0,r.genComponentStyleHook)("Wave",(e=>[o(e)]))},98345:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>u});var r=n(36198),o=n(56790),i=n(75164),a=n(49134),s=n(29691),l=n(17415),c=n(11443);const u=(e,t,n)=>{const{wave:u}=r.useContext(a.ConfigContext),[,d,f]=(0,s.default)(),h=(0,o.useEvent)((r=>{const o=e.current;if((null==u?void 0:u.disabled)||!o)return;const i=o.querySelector(`.${l.TARGET_CLS}`)||o,{showEffect:a}=u||{};(a||c.default)(i,{className:t,token:d,component:n,event:r,hashId:f})})),p=r.useRef();return e=>{i.default.cancel(p.current),p.current=(0,i.default)((()=>{h(e)}))}}},30190:(e,t,n)=>{"use strict";function r(e){const t=(e||"").match(/rgba?\((\d*), (\d*), (\d*)(, [\d.]*)?\)/);return!(t&&t[1]&&t[2]&&t[3])||!(t[1]===t[2]&&t[2]===t[3])}function o(e){return e&&"#fff"!==e&&"#ffffff"!==e&&"rgb(255, 255, 255)"!==e&&"rgba(255, 255, 255, 1)"!==e&&r(e)&&!/rgba\((?:\d*, ){3}0\)/.test(e)&&"transparent"!==e}function i(e){const{borderTopColor:t,borderColor:n,backgroundColor:r}=getComputedStyle(e);return o(t)?t:o(n)?n:o(r)?r:null}n.r(t),n.d(t,{getTargetWaveColor:()=>i,isNotGrey:()=>r,isValidWaveColor:()=>o})},6508:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>a});var r=n(36198),o=n(93967),i=n.n(o);const a=(0,r.forwardRef)(((e,t)=>{const{className:n,style:o,children:a,prefixCls:s}=e,l=i()(`${s}-icon`,n);return r.createElement("span",{ref:t,className:l,style:o},a)}))},44942:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>f});var r=n(36198),o=n(79090),i=n(93967),a=n.n(i),s=n(93587),l=n(6508);const c=(0,r.forwardRef)(((e,t)=>{const{prefixCls:n,className:i,style:s,iconClassName:c,iconPosition:u="start"}=e,d=a()(i,{[`${n}-loading-icon-end`]:"end"===u,[`${n}-loading-icon`]:"start"===u});return r.createElement(l.default,{prefixCls:n,className:d,style:s,ref:t},r.createElement(o.default,{className:c}))})),u=()=>({width:0,opacity:0,transform:"scale(0)"}),d=e=>({width:e.scrollWidth,opacity:1,transform:"scale(1)"}),f=e=>{const{prefixCls:t,loading:n,existIcon:o,className:i,style:a,iconPosition:l}=e,f=!!n;return o?r.createElement(c,{prefixCls:t,className:i,style:a,iconPosition:l}):r.createElement(s.default,{visible:f,motionName:`${t}-loading-icon-motion`,motionLeave:f,removeOnLeave:!0,onAppearStart:u,onAppearActive:d,onEnterStart:u,onEnterActive:d,onLeaveStart:d,onLeaveActive:u},((e,n)=>{let{className:o,style:s}=e;return r.createElement(c,{prefixCls:t,className:i,style:Object.assign(Object.assign({},a),s),ref:n,iconClassName:o,iconPosition:l})}))}},95658:(e,t,n)=>{"use strict";n.r(t),n.d(t,{GroupSizeContext:()=>c,default:()=>u});var r=n(36198),o=n(93967),i=n.n(o),a=(n(27288),n(49134)),s=n(12641),l=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&t.indexOf(r)<0&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var o=0;for(r=Object.getOwnPropertySymbols(e);o{const{getPrefixCls:t,direction:n}=r.useContext(a.ConfigContext),{prefixCls:o,size:u,className:d}=e,f=l(e,["prefixCls","size","className"]),h=t("btn-group",o),[,,p]=(0,s.useToken)();let m="";switch(u){case"large":m="lg";break;case"small":m="sm"}const g=i()(h,{[`${h}-${m}`]:m,[`${h}-rtl`]:"rtl"===n},d,p);return r.createElement(c.Provider,{value:u},r.createElement("div",Object.assign({},f,{className:g})))}},97447:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>w});var r=n(36198),o=n(93967),i=n.n(o),a=n(98423),s=n(42550),l=(n(27288),n(3378)),c=n(49134),u=n(98866),d=n(98675),f=n(4173),h=n(95658),p=n(33671),m=n(6508),g=n(44942),y=n(57663),v=n(15600),b=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&t.indexOf(r)<0&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var o=0;for(r=Object.getOwnPropertySymbols(e);o{var n,o,O;const{loading:w=!1,prefixCls:S,type:x,danger:E,shape:T="default",size:C,styles:P,disabled:_,className:k,rootClassName:j,children:A,icon:R,iconPosition:D="start",ghost:L=!1,block:I=!1,htmlType:M="button",classNames:N,style:$={},autoInsertSpace:B}=e,F=b(e,["loading","prefixCls","type","danger","shape","size","styles","disabled","className","rootClassName","children","icon","iconPosition","ghost","block","htmlType","classNames","style","autoInsertSpace"]),Q=x||"default",{getPrefixCls:z,direction:V,button:U}=(0,r.useContext)(c.ConfigContext),W=null===(n=null!=B?B:null==U?void 0:U.autoInsertSpace)||void 0===n||n,G=z("btn",S),[X,q,H]=(0,y.default)(G),Z=(0,r.useContext)(u.default),Y=null!=_?_:Z,K=(0,r.useContext)(h.GroupSizeContext),J=(0,r.useMemo)((()=>function(e){if("object"==typeof e&&e){let t=null==e?void 0:e.delay;return t=Number.isNaN(t)||"number"!=typeof t?0:t,{loading:t<=0,delay:t}}return{loading:!!e,delay:0}}(w)),[w]),[ee,te]=(0,r.useState)(J.loading),[ne,re]=(0,r.useState)(!1),oe=(0,r.createRef)(),ie=(0,s.composeRef)(t,oe),ae=1===r.Children.count(A)&&!R&&!(0,p.isUnBorderedButtonType)(Q);(0,r.useEffect)((()=>{let e=null;return J.delay>0?e=setTimeout((()=>{e=null,te(!0)}),J.delay):te(J.loading),function(){e&&(clearTimeout(e),e=null)}}),[J]),(0,r.useEffect)((()=>{if(!ie||!ie.current||!W)return;const e=ie.current.textContent;ae&&(0,p.isTwoCNChar)(e)?ne||re(!0):ne&&re(!1)}),[ie]);const se=t=>{const{onClick:n}=e;ee||Y?t.preventDefault():null==n||n(t)};const{compactSize:le,compactItemClassnames:ce}=(0,f.useCompactItemContext)(G,V),ue={large:"lg",small:"sm",middle:void 0},de=(0,d.default)((e=>{var t,n;return null!==(n=null!==(t=null!=C?C:le)&&void 0!==t?t:K)&&void 0!==n?n:e})),fe=de&&ue[de]||"",he=ee?"loading":R,pe=(0,a.default)(F,["navigate"]),me=i()(G,q,H,{[`${G}-${T}`]:"default"!==T&&T,[`${G}-${Q}`]:Q,[`${G}-${fe}`]:fe,[`${G}-icon-only`]:!A&&0!==A&&!!he,[`${G}-background-ghost`]:L&&!(0,p.isUnBorderedButtonType)(Q),[`${G}-loading`]:ee,[`${G}-two-chinese-chars`]:ne&&W&&!ee,[`${G}-block`]:I,[`${G}-dangerous`]:!!E,[`${G}-rtl`]:"rtl"===V},ce,k,j,null==U?void 0:U.className),ge=Object.assign(Object.assign({},null==U?void 0:U.style),$),ye="end"===D&&A&&0!==A&&he,ve=i()(null==N?void 0:N.icon,null===(o=null==U?void 0:U.classNames)||void 0===o?void 0:o.icon,{[`${G}-icon-end`]:ye}),be=Object.assign(Object.assign({},(null==P?void 0:P.icon)||{}),(null===(O=null==U?void 0:U.styles)||void 0===O?void 0:O.icon)||{}),Oe=R&&!ee?r.createElement(m.default,{prefixCls:G,className:ve,style:be},R):r.createElement(g.default,{existIcon:!!R,prefixCls:G,loading:!!ee,iconPosition:D}),we=A||0===A?(0,p.spaceChildren)(A,ae&&W):null,Se=(e,t)=>{const n="rtl"===V,o="start"===D&&!n||"end"===D&&n;return r.createElement(r.Fragment,null,o?e:t,o?t:e)};if(void 0!==pe.href)return X(r.createElement("a",Object.assign({},pe,{className:i()(me,{[`${G}-disabled`]:Y}),href:Y?void 0:pe.href,style:ge,onClick:se,ref:ie,tabIndex:Y?-1:0}),Se(Oe,we)));let xe=r.createElement("button",Object.assign({},F,{type:M,className:me,style:ge,onClick:se,disabled:Y,ref:ie}),Se(Oe,we),!!ce&&r.createElement(v.default,{key:"compact",prefixCls:G}));return(0,p.isUnBorderedButtonType)(Q)||(xe=r.createElement(l.default,{component:"Button",disabled:!!ee},xe)),X(xe)}));O.Group=h.default,O.__ANT_BUTTON=!0;const w=O},33671:(e,t,n)=>{"use strict";n.r(t),n.d(t,{convertLegacyProps:()=>s,isString:()=>l,isTwoCNChar:()=>a,isUnBorderedButtonType:()=>c,spaceChildren:()=>u});var r=n(36198),o=n(96159);const i=/^[\u4e00-\u9fa5]{2}$/,a=i.test.bind(i);function s(e){return"danger"===e?{danger:!0}:{type:e}}function l(e){return"string"==typeof e}function c(e){return"text"===e||"link"===e}function u(e,t){let n=!1;const i=[];return r.Children.forEach(e,(e=>{const t=typeof e,r="string"===t||"number"===t;if(n&&r){const t=i.length-1,n=i[t];i[t]=`${n}${e}`}else i.push(e);n=r})),r.Children.map(i,(e=>function(e,t){if(null==e)return;const n=t?" ":"";return"string"!=typeof e&&"number"!=typeof e&&l(e.type)&&a(e.props.children)?(0,o.cloneElement)(e,{children:e.props.children.split("").join(n)}):l(e)?a(e)?r.createElement("span",null,e.split("").join(n)):r.createElement("span",null,e):(0,o.isFragment)(e)?r.createElement("span",null,e):e}(e,t)))}},71577:(e,t,n)=>{"use strict";n.r(t),n.d(t,{convertLegacyProps:()=>o.convertLegacyProps,default:()=>i,isString:()=>o.isString,isTwoCNChar:()=>o.isTwoCNChar,isUnBorderedButtonType:()=>o.isUnBorderedButtonType,spaceChildren:()=>o.spaceChildren});var r=n(97447),o=n(33671);const i=r.default},15600:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>c});var r=n(78419),o=n(80110),i=n(54228),a=n(12641),s=n(54287);const l=e=>{const{componentCls:t,calc:n}=e;return{[t]:{[`&-compact-item${t}-primary`]:{[`&:not([disabled]) + ${t}-compact-item${t}-primary:not([disabled])`]:{position:"relative","&:before":{position:"absolute",top:n(e.lineWidth).mul(-1).equal(),insetInlineStart:n(e.lineWidth).mul(-1).equal(),display:"inline-block",width:e.lineWidth,height:`calc(100% + ${(0,r.unit)(e.lineWidth)} * 2)`,backgroundColor:e.colorPrimaryHover,content:'""'}}},"&-compact-vertical-item":{[`&${t}-primary`]:{[`&:not([disabled]) + ${t}-compact-vertical-item${t}-primary:not([disabled])`]:{position:"relative","&:before":{position:"absolute",top:n(e.lineWidth).mul(-1).equal(),insetInlineStart:n(e.lineWidth).mul(-1).equal(),display:"inline-block",width:`calc(100% + ${(0,r.unit)(e.lineWidth)} * 2)`,height:e.lineWidth,backgroundColor:e.colorPrimaryHover,content:'""'}}}}}}},c=(0,a.genSubStyleComponent)(["Button","compact"],(e=>{const t=(0,s.prepareToken)(e);return[(0,o.genCompactItemStyle)(t),(0,i.genCompactItemVerticalStyle)(t),l(t)]}),s.prepareComponentToken)},74145:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>o});const r=(e,t)=>({[`> span, > ${e}`]:{"&:not(:last-child)":{[`&, & > ${e}`]:{"&:not(:disabled)":{borderInlineEndColor:t}}},"&:not(:first-child)":{[`&, & > ${e}`]:{"&:not(:disabled)":{borderInlineStartColor:t}}}}}),o=e=>{const{componentCls:t,fontSize:n,lineWidth:o,groupBorderColor:i,colorErrorHover:a}=e;return{[`${t}-group`]:[{position:"relative",display:"inline-flex",[`> span, > ${t}`]:{"&:not(:last-child)":{[`&, & > ${t}`]:{borderStartEndRadius:0,borderEndEndRadius:0}},"&:not(:first-child)":{marginInlineStart:e.calc(o).mul(-1).equal(),[`&, & > ${t}`]:{borderStartStartRadius:0,borderEndStartRadius:0}}},[t]:{position:"relative",zIndex:1,"&:hover,\n &:focus,\n &:active":{zIndex:2},"&[disabled]":{zIndex:0}},[`${t}-icon-only`]:{fontSize:n}},r(`${t}-primary`,i),r(`${t}-danger`,a)]}}},57663:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>_});var r=n(78419),o=n(14747),i=n(12641),a=n(74145),s=n(54287);const l=e=>{const{componentCls:t,iconCls:n,fontWeight:i}=e;return{[t]:{outline:"none",position:"relative",display:"inline-block",fontWeight:i,whiteSpace:"nowrap",textAlign:"center",backgroundImage:"none",background:"transparent",border:`${(0,r.unit)(e.lineWidth)} ${e.lineType} transparent`,cursor:"pointer",transition:`all ${e.motionDurationMid} ${e.motionEaseInOut}`,userSelect:"none",touchAction:"manipulation",color:e.colorText,"&:disabled > *":{pointerEvents:"none"},"> span":{display:"inline-block"},[`${t}-icon`]:{lineHeight:0,"&-end":{marginInlineStart:e.marginXS}},[`> ${n} + span, > span + ${n}`]:{marginInlineStart:e.marginXS},[`&:not(${t}-icon-only) > ${t}-icon`]:{[`&${t}-loading-icon, &:not(:last-child)`]:{marginInlineEnd:e.marginXS},[`&${t}-loading-icon-end`]:{marginInlineStart:e.marginXS}},"> a":{color:"currentColor"},"&:not(:disabled)":Object.assign({},(0,o.genFocusStyle)(e)),[`&${t}-two-chinese-chars::first-letter`]:{letterSpacing:"0.34em"},[`&${t}-two-chinese-chars > *:not(${n})`]:{marginInlineEnd:"-0.34em",letterSpacing:"0.34em"},[`&-icon-only${t}-compact-item`]:{flex:"none"}}}},c=(e,t,n)=>({[`&:not(:disabled):not(${e}-disabled)`]:{"&:hover":t,"&:active":n}}),u=e=>({minWidth:e.controlHeight,paddingInlineStart:0,paddingInlineEnd:0,borderRadius:"50%"}),d=e=>({borderRadius:e.controlHeight,paddingInlineStart:e.calc(e.controlHeight).div(2).equal(),paddingInlineEnd:e.calc(e.controlHeight).div(2).equal()}),f=e=>({cursor:"not-allowed",borderColor:e.borderColorDisabled,color:e.colorTextDisabled,background:e.colorBgContainerDisabled,boxShadow:"none"}),h=(e,t,n,r,o,i,a,s)=>({[`&${e}-background-ghost`]:Object.assign(Object.assign({color:n||void 0,background:t,borderColor:r||void 0,boxShadow:"none"},c(e,Object.assign({background:t},a),Object.assign({background:t},s))),{"&:disabled":{cursor:"not-allowed",color:o||void 0,borderColor:i||void 0}})}),p=e=>({[`&:disabled, &${e.componentCls}-disabled`]:Object.assign({},f(e))}),m=e=>Object.assign({},p(e)),g=e=>({[`&:disabled, &${e.componentCls}-disabled`]:{cursor:"not-allowed",color:e.colorTextDisabled}}),y=e=>Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({},m(e)),{background:e.defaultBg,borderColor:e.defaultBorderColor,color:e.defaultColor,boxShadow:e.defaultShadow}),c(e.componentCls,{color:e.defaultHoverColor,borderColor:e.defaultHoverBorderColor,background:e.defaultHoverBg},{color:e.defaultActiveColor,borderColor:e.defaultActiveBorderColor,background:e.defaultActiveBg})),h(e.componentCls,e.ghostBg,e.defaultGhostColor,e.defaultGhostBorderColor,e.colorTextDisabled,e.colorBorder)),{[`&${e.componentCls}-dangerous`]:Object.assign(Object.assign(Object.assign({color:e.colorError,borderColor:e.colorError},c(e.componentCls,{color:e.colorErrorHover,borderColor:e.colorErrorBorderHover},{color:e.colorErrorActive,borderColor:e.colorErrorActive})),h(e.componentCls,e.ghostBg,e.colorError,e.colorError,e.colorTextDisabled,e.colorBorder)),p(e))}),v=e=>Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({},m(e)),{color:e.primaryColor,background:e.colorPrimary,boxShadow:e.primaryShadow}),c(e.componentCls,{color:e.colorTextLightSolid,background:e.colorPrimaryHover},{color:e.colorTextLightSolid,background:e.colorPrimaryActive})),h(e.componentCls,e.ghostBg,e.colorPrimary,e.colorPrimary,e.colorTextDisabled,e.colorBorder,{color:e.colorPrimaryHover,borderColor:e.colorPrimaryHover},{color:e.colorPrimaryActive,borderColor:e.colorPrimaryActive})),{[`&${e.componentCls}-dangerous`]:Object.assign(Object.assign(Object.assign({background:e.colorError,boxShadow:e.dangerShadow,color:e.dangerColor},c(e.componentCls,{background:e.colorErrorHover},{background:e.colorErrorActive})),h(e.componentCls,e.ghostBg,e.colorError,e.colorError,e.colorTextDisabled,e.colorBorder,{color:e.colorErrorHover,borderColor:e.colorErrorHover},{color:e.colorErrorActive,borderColor:e.colorErrorActive})),p(e))}),b=e=>Object.assign(Object.assign({},y(e)),{borderStyle:"dashed"}),O=e=>Object.assign(Object.assign(Object.assign({color:e.colorLink},c(e.componentCls,{color:e.colorLinkHover,background:e.linkHoverBg},{color:e.colorLinkActive})),g(e)),{[`&${e.componentCls}-dangerous`]:Object.assign(Object.assign({color:e.colorError},c(e.componentCls,{color:e.colorErrorHover},{color:e.colorErrorActive})),g(e))}),w=e=>Object.assign(Object.assign(Object.assign({},c(e.componentCls,{color:e.colorText,background:e.textHoverBg},{color:e.colorText,background:e.colorBgTextActive})),g(e)),{[`&${e.componentCls}-dangerous`]:Object.assign(Object.assign({color:e.colorError},g(e)),c(e.componentCls,{color:e.colorErrorHover,background:e.colorErrorBg},{color:e.colorErrorHover,background:e.colorErrorBg}))}),S=e=>{const{componentCls:t}=e;return{[`${t}-default`]:y(e),[`${t}-primary`]:v(e),[`${t}-dashed`]:b(e),[`${t}-link`]:O(e),[`${t}-text`]:w(e),[`${t}-ghost`]:h(e.componentCls,e.ghostBg,e.colorBgContainer,e.colorBgContainer,e.colorTextDisabled,e.colorBorder)}},x=function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"";const{componentCls:n,controlHeight:o,fontSize:i,lineHeight:a,borderRadius:s,buttonPaddingHorizontal:l,iconCls:c,buttonPaddingVertical:f}=e,h=`${n}-icon-only`;return[{[`${t}`]:{fontSize:i,lineHeight:a,height:o,padding:`${(0,r.unit)(f)} ${(0,r.unit)(l)}`,borderRadius:s,[`&${h}`]:{display:"inline-flex",alignItems:"center",justifyContent:"center",width:o,paddingInlineStart:0,paddingInlineEnd:0,[`&${n}-round`]:{width:"auto"},[c]:{fontSize:e.buttonIconOnlyFontSize}},[`&${n}-loading`]:{opacity:e.opacityLoading,cursor:"default"},[`${n}-loading-icon`]:{transition:`width ${e.motionDurationSlow} ${e.motionEaseInOut}, opacity ${e.motionDurationSlow} ${e.motionEaseInOut}`}}},{[`${n}${n}-circle${t}`]:u(e)},{[`${n}${n}-round${t}`]:d(e)}]},E=e=>{const t=(0,i.mergeToken)(e,{fontSize:e.contentFontSize,lineHeight:e.contentLineHeight});return x(t,e.componentCls)},T=e=>{const t=(0,i.mergeToken)(e,{controlHeight:e.controlHeightSM,fontSize:e.contentFontSizeSM,lineHeight:e.contentLineHeightSM,padding:e.paddingXS,buttonPaddingHorizontal:e.paddingInlineSM,buttonPaddingVertical:e.paddingBlockSM,borderRadius:e.borderRadiusSM,buttonIconOnlyFontSize:e.onlyIconSizeSM});return x(t,`${e.componentCls}-sm`)},C=e=>{const t=(0,i.mergeToken)(e,{controlHeight:e.controlHeightLG,fontSize:e.contentFontSizeLG,lineHeight:e.contentLineHeightLG,buttonPaddingHorizontal:e.paddingInlineLG,buttonPaddingVertical:e.paddingBlockLG,borderRadius:e.borderRadiusLG,buttonIconOnlyFontSize:e.onlyIconSizeLG});return x(t,`${e.componentCls}-lg`)},P=e=>{const{componentCls:t}=e;return{[t]:{[`&${t}-block`]:{width:"100%"}}}},_=(0,i.genStyleHooks)("Button",(e=>{const t=(0,s.prepareToken)(e);return[l(t),E(t),T(t),C(t),P(t),S(t),(0,a.default)(t)]}),s.prepareComponentToken,{unitless:{fontWeight:!0,contentLineHeight:!0,contentLineHeightSM:!0,contentLineHeightLG:!0}})},54287:(e,t,n)=>{"use strict";n.r(t),n.d(t,{prepareComponentToken:()=>i,prepareToken:()=>o});var r=n(12641);const o=e=>{const{paddingInline:t,onlyIconSize:n,paddingBlock:o}=e;return(0,r.mergeToken)(e,{buttonPaddingHorizontal:t,buttonPaddingVertical:o,buttonIconOnlyFontSize:n})},i=e=>{var t,n,o,i,a,s;const l=null!==(t=e.contentFontSize)&&void 0!==t?t:e.fontSize,c=null!==(n=e.contentFontSizeSM)&&void 0!==n?n:e.fontSize,u=null!==(o=e.contentFontSizeLG)&&void 0!==o?o:e.fontSizeLG,d=null!==(i=e.contentLineHeight)&&void 0!==i?i:(0,r.getLineHeight)(l),f=null!==(a=e.contentLineHeightSM)&&void 0!==a?a:(0,r.getLineHeight)(c),h=null!==(s=e.contentLineHeightLG)&&void 0!==s?s:(0,r.getLineHeight)(u);return{fontWeight:400,defaultShadow:`0 ${e.controlOutlineWidth}px 0 ${e.controlTmpOutline}`,primaryShadow:`0 ${e.controlOutlineWidth}px 0 ${e.controlOutline}`,dangerShadow:`0 ${e.controlOutlineWidth}px 0 ${e.colorErrorOutline}`,primaryColor:e.colorTextLightSolid,dangerColor:e.colorTextLightSolid,borderColorDisabled:e.colorBorder,defaultGhostColor:e.colorBgContainer,ghostBg:"transparent",defaultGhostBorderColor:e.colorBgContainer,paddingInline:e.paddingContentHorizontal-e.lineWidth,paddingInlineLG:e.paddingContentHorizontal-e.lineWidth,paddingInlineSM:8-e.lineWidth,onlyIconSize:e.fontSizeLG,onlyIconSizeSM:e.fontSizeLG-2,onlyIconSizeLG:e.fontSizeLG+2,groupBorderColor:e.colorPrimaryHover,linkHoverBg:"transparent",textHoverBg:e.colorBgTextHover,defaultColor:e.colorText,defaultBg:e.colorBgContainer,defaultBorderColor:e.colorBorder,defaultBorderColorDisabled:e.colorBorder,defaultHoverBg:e.colorBgContainer,defaultHoverColor:e.colorPrimaryHover,defaultHoverBorderColor:e.colorPrimaryHover,defaultActiveBg:e.colorBgContainer,defaultActiveColor:e.colorPrimaryActive,defaultActiveBorderColor:e.colorPrimaryActive,contentFontSize:l,contentFontSizeSM:c,contentFontSizeLG:u,contentLineHeight:d,contentLineHeightSM:f,contentLineHeightLG:h,paddingBlock:Math.max((e.controlHeight-l*d)/2-e.lineWidth,0),paddingBlockSM:Math.max((e.controlHeightSM-c*f)/2-e.lineWidth,0),paddingBlockLG:Math.max((e.controlHeightLG-u*h)/2-e.lineWidth,0)}}},74228:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>r});const r=n(9674).default},46256:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>l});var r=n(36198),o=n(93967),i=n.n(o),a=n(49134),s=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&t.indexOf(r)<0&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var o=0;for(r=Object.getOwnPropertySymbols(e);o{const{prefixCls:t,className:n,avatar:o,title:l,description:c}=e,u=s(e,["prefixCls","className","avatar","title","description"]),{getPrefixCls:d}=r.useContext(a.ConfigContext),f=d("card",t),h=i()(`${f}-meta`,n),p=o?r.createElement("div",{className:`${f}-meta-avatar`},o):null,m=l?r.createElement("div",{className:`${f}-meta-title`},l):null,g=c?r.createElement("div",{className:`${f}-meta-description`},c):null,y=m||g?r.createElement("div",{className:`${f}-meta-detail`},m,g):null;return r.createElement("div",Object.assign({},u,{className:h}),p,y)}},98866:(e,t,n)=>{"use strict";n.r(t),n.d(t,{DisabledContextProvider:()=>i,default:()=>a});var r=n(36198);const o=r.createContext(!1),i=e=>{let{children:t,disabled:n}=e;const i=r.useContext(o);return r.createElement(o.Provider,{value:null!=n?n:i},t)},a=o},69868:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>a});var r=n(36198),o=n(93587),i=n(12641);function a(e){const{children:t}=e,[,n]=(0,i.useToken)(),{motion:a}=n,s=r.useRef(!1);return s.current=s.current||!1===a,s.current?r.createElement(o.Provider,{motion:a},t):t}},31435:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>r});n(36198),n(27288);const r=()=>null},97647:(e,t,n)=>{"use strict";n.r(t),n.d(t,{SizeContextProvider:()=>i,default:()=>a});var r=n(36198);const o=r.createContext(void 0),i=e=>{let{children:t,size:n}=e;const i=r.useContext(o);return r.createElement(o.Provider,{value:n||i},t)},a=o},32925:(e,t,n)=>{"use strict";n.r(t),n.d(t,{getStyle:()=>l,registerTheme:()=>c});var r=n(11305),o=n(41191),i=n(98924),a=n(44958);n(27288);const s=`-ant-${Date.now()}-${Math.random()}`;function l(e,t){const n={},i=(e,t)=>{let n=e.clone();return n=(null==t?void 0:t(n))||n,n.toRgbString()},a=(e,t)=>{const a=new o.TinyColor(e),s=(0,r.generate)(a.toRgbString());n[`${t}-color`]=i(a),n[`${t}-color-disabled`]=s[1],n[`${t}-color-hover`]=s[4],n[`${t}-color-active`]=s[6],n[`${t}-color-outline`]=a.clone().setAlpha(.2).toRgbString(),n[`${t}-color-deprecated-bg`]=s[0],n[`${t}-color-deprecated-border`]=s[2]};if(t.primaryColor){a(t.primaryColor,"primary");const e=new o.TinyColor(t.primaryColor),s=(0,r.generate)(e.toRgbString());s.forEach(((e,t)=>{n[`primary-${t+1}`]=e})),n["primary-color-deprecated-l-35"]=i(e,(e=>e.lighten(35))),n["primary-color-deprecated-l-20"]=i(e,(e=>e.lighten(20))),n["primary-color-deprecated-t-20"]=i(e,(e=>e.tint(20))),n["primary-color-deprecated-t-50"]=i(e,(e=>e.tint(50))),n["primary-color-deprecated-f-12"]=i(e,(e=>e.setAlpha(.12*e.getAlpha())));const l=new o.TinyColor(s[0]);n["primary-color-active-deprecated-f-30"]=i(l,(e=>e.setAlpha(.3*e.getAlpha()))),n["primary-color-active-deprecated-d-02"]=i(l,(e=>e.darken(2)))}t.successColor&&a(t.successColor,"success"),t.warningColor&&a(t.warningColor,"warning"),t.errorColor&&a(t.errorColor,"error"),t.infoColor&&a(t.infoColor,"info");return`\n :root {\n ${Object.keys(n).map((t=>`--${e}-${t}: ${n[t]};`)).join("\n")}\n }\n `.trim()}function c(e,t){const n=l(e,t);(0,i.default)()&&(0,a.updateCSS)(n,`${s}-dynamic-theme`)}},35792:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>o});var r=n(12641);const o=e=>{const[,,,,t]=(0,r.useToken)();return t?`${e}-css-var`:""}},95247:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>a});var r=n(36198),o=n(98866),i=n(97647);const a=function(){return{componentDisabled:(0,r.useContext)(o.default),componentSize:(0,r.useContext)(i.default)}}},98675:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(36198),o=n(97647);const i=e=>{const t=r.useContext(o.default);return r.useMemo((()=>e?"string"==typeof e?null!=e?e:t:e instanceof Function?e(t):t:t),[e,t])}},47871:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>l});var r=n(56982),o=n(91881),i=n(27288),a=n(12641),s=n(32969);function l(e,t,n){var l;(0,i.devUseWarning)("ConfigProvider");const c=e||{},u=!1!==c.inherit&&t?t:Object.assign(Object.assign({},a.defaultConfig),{hashed:null!==(l=null==t?void 0:t.hashed)&&void 0!==l?l:a.defaultConfig.hashed,cssVar:null==t?void 0:t.cssVar}),d=(0,s.default)();return(0,r.default)((()=>{var r,o;if(!e)return t;const i=Object.assign({},u.components);Object.keys(e.components||{}).forEach((t=>{i[t]=Object.assign(Object.assign({},i[t]),e.components[t])}));const a=`css-var-${d.replace(/:/g,"")}`,s=(null!==(r=c.cssVar)&&void 0!==r?r:u.cssVar)&&Object.assign(Object.assign(Object.assign({prefix:null==n?void 0:n.prefixCls},"object"==typeof u.cssVar?u.cssVar:{}),"object"==typeof c.cssVar?c.cssVar:{}),{key:"object"==typeof c.cssVar&&(null===(o=c.cssVar)||void 0===o?void 0:o.key)||a});return Object.assign(Object.assign(Object.assign({},u),c),{token:Object.assign(Object.assign({},u.token),c.token),components:i,cssVar:s})}),[c,u],((e,t)=>e.some(((e,n)=>{const r=t[n];return!(0,o.default)(e,r,!0)}))))}},32969:(e,t,n)=>{"use strict";var r;n.r(t),n.d(t,{default:()=>s});var o=n(36198);const i=Object.assign({},r||(r=n.t(o,2))),{useId:a}=i,s=void 0===a?()=>"":a},49134:(e,t,n)=>{"use strict";n.r(t),n.d(t,{ConfigConsumer:()=>m.ConfigConsumer,ConfigContext:()=>m.ConfigContext,configConsumerProps:()=>C,default:()=>$,defaultIconPrefixCls:()=>m.defaultIconPrefixCls,defaultPrefixCls:()=>_,globalConfig:()=>I,warnContext:()=>T});var r=n(36198),o=n(78419),i=n(63017),a=n(56982),s=n(8880),l=n(27288),c=n(37920),u=n(94634),d=n(76745),f=n(40378),h=n(33083),p=n(2790),m=n(25157),g=n(32925),y=n(98866),v=n(95247),b=n(47871),O=n(69868),w=n(31435),S=n(97647),x=n(84305),E=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&t.indexOf(r)<0&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var o=0;for(r=Object.getOwnPropertySymbols(e);o({getPrefixCls:(e,t)=>t||(e?`${D()}-${e}`:D()),getIconPrefixCls:L,getRootPrefixCls:()=>k||D(),getTheme:()=>A,holderRender:R}),M=e=>{const{children:t,csp:n,autoInsertSpaceInButton:d,alert:g,anchor:v,form:T,locale:C,componentSize:_,direction:k,space:j,virtual:A,dropdownMatchSelectWidth:R,popupMatchSelectWidth:D,popupOverflow:L,legacyLocale:I,parentContext:M,iconPrefixCls:N,theme:$,componentDisabled:B,segmented:F,statistic:Q,spin:z,calendar:V,carousel:U,cascader:W,collapse:G,typography:X,checkbox:q,descriptions:H,divider:Z,drawer:Y,skeleton:K,steps:J,image:ee,layout:te,list:ne,mentions:re,modal:oe,progress:ie,result:ae,slider:se,breadcrumb:le,menu:ce,pagination:ue,input:de,textArea:fe,empty:he,badge:pe,radio:me,rate:ge,switch:ye,transfer:ve,avatar:be,message:Oe,tag:we,table:Se,card:xe,tabs:Ee,timeline:Te,timePicker:Ce,upload:Pe,notification:_e,tree:ke,colorPicker:je,datePicker:Ae,rangePicker:Re,flex:De,wave:Le,dropdown:Ie,warning:Me,tour:Ne,floatButtonGroup:$e}=e,Be=r.useCallback(((t,n)=>{const{prefixCls:r}=e;if(n)return n;const o=r||M.getPrefixCls("");return t?`${o}-${t}`:o}),[M.getPrefixCls,e.prefixCls]),Fe=N||M.iconPrefixCls||m.defaultIconPrefixCls,Qe=n||M.csp;(0,x.default)(Fe,Qe);const ze=(0,b.default)($,M.theme,{prefixCls:Be("")});const Ve={csp:Qe,autoInsertSpaceInButton:d,alert:g,anchor:v,locale:C||I,direction:k,space:j,virtual:A,popupMatchSelectWidth:null!=D?D:R,popupOverflow:L,getPrefixCls:Be,iconPrefixCls:Fe,theme:ze,segmented:F,statistic:Q,spin:z,calendar:V,carousel:U,cascader:W,collapse:G,typography:X,checkbox:q,descriptions:H,divider:Z,drawer:Y,skeleton:K,steps:J,image:ee,input:de,textArea:fe,layout:te,list:ne,mentions:re,modal:oe,progress:ie,result:ae,slider:se,breadcrumb:le,menu:ce,pagination:ue,empty:he,badge:pe,radio:me,rate:ge,switch:ye,transfer:ve,avatar:be,message:Oe,tag:we,table:Se,card:xe,tabs:Ee,timeline:Te,timePicker:Ce,upload:Pe,notification:_e,tree:ke,colorPicker:je,datePicker:Ae,rangePicker:Re,flex:De,wave:Le,dropdown:Ie,warning:Me,tour:Ne,floatButtonGroup:$e};const Ue=Object.assign({},M);Object.keys(Ve).forEach((e=>{void 0!==Ve[e]&&(Ue[e]=Ve[e])})),P.forEach((t=>{const n=e[t];n&&(Ue[t]=n)})),void 0!==d&&(Ue.button=Object.assign({autoInsertSpace:d},Ue.button));const We=(0,a.default)((()=>Ue),Ue,((e,t)=>{const n=Object.keys(e),r=Object.keys(t);return n.length!==r.length||n.some((n=>e[n]!==t[n]))})),Ge=r.useMemo((()=>({prefixCls:Fe,csp:Qe})),[Fe,Qe]);let Xe=r.createElement(r.Fragment,null,r.createElement(w.default,{dropdownMatchSelectWidth:R}),t);const qe=r.useMemo((()=>{var e,t,n,r;return(0,s.merge)((null===(e=f.default.Form)||void 0===e?void 0:e.defaultValidateMessages)||{},(null===(n=null===(t=We.locale)||void 0===t?void 0:t.Form)||void 0===n?void 0:n.defaultValidateMessages)||{},(null===(r=We.form)||void 0===r?void 0:r.validateMessages)||{},(null==T?void 0:T.validateMessages)||{})}),[We,null==T?void 0:T.validateMessages]);Object.keys(qe).length>0&&(Xe=r.createElement(c.default.Provider,{value:qe},Xe)),C&&(Xe=r.createElement(u.default,{locale:C,_ANT_MARK__:u.ANT_MARK},Xe)),(Fe||Qe)&&(Xe=r.createElement(i.default.Provider,{value:Ge},Xe)),_&&(Xe=r.createElement(S.SizeContextProvider,{size:_},Xe)),Xe=r.createElement(O.default,null,Xe);const He=r.useMemo((()=>{const e=ze||{},{algorithm:t,token:n,components:r,cssVar:i}=e,a=E(e,["algorithm","token","components","cssVar"]),s=t&&(!Array.isArray(t)||t.length>0)?(0,o.createTheme)(t):h.defaultTheme,l={};Object.entries(r||{}).forEach((e=>{let[t,n]=e;const r=Object.assign({},n);"algorithm"in r&&(!0===r.algorithm?r.theme=s:(Array.isArray(r.algorithm)||"function"==typeof r.algorithm)&&(r.theme=(0,o.createTheme)(r.algorithm)),delete r.algorithm),l[t]=r}));const c=Object.assign(Object.assign({},p.default),n);return Object.assign(Object.assign({},a),{theme:s,token:c,components:l,override:Object.assign({override:c},l),cssVar:i})}),[ze]);return $&&(Xe=r.createElement(h.DesignTokenContext.Provider,{value:He},Xe)),We.warning&&(Xe=r.createElement(l.WarningContext.Provider,{value:We.warning},Xe)),void 0!==B&&(Xe=r.createElement(y.DisabledContextProvider,{disabled:B},Xe)),r.createElement(m.ConfigContext.Provider,{value:We},Xe)},N=e=>{const t=r.useContext(m.ConfigContext),n=r.useContext(d.default);return r.createElement(M,Object.assign({parentContext:t,legacyLocale:n},e))};N.ConfigContext=m.ConfigContext,N.SizeContext=S.default,N.config=e=>{const{prefixCls:t,iconPrefixCls:n,theme:r,holderRender:o}=e;void 0!==t&&(k=t),void 0!==n&&(j=n),"holderRender"in e&&(R=o),r&&(!function(e){return Object.keys(e).some((e=>e.endsWith("Color")))}(r)?A=r:(0,g.registerTheme)(D(),r))},N.useConfig=v.default,Object.defineProperty(N,"SizeContext",{get:()=>S.default});const $=N},84305:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>r.useResetIconStyle});var r=n(12641)},9674:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(18758),o=n(42115);const i={lang:Object.assign({placeholder:"Select date",yearPlaceholder:"Select year",quarterPlaceholder:"Select quarter",monthPlaceholder:"Select month",weekPlaceholder:"Select week",rangePlaceholder:["Start date","End date"],rangeYearPlaceholder:["Start year","End year"],rangeQuarterPlaceholder:["Start quarter","End quarter"],rangeMonthPlaceholder:["Start month","End month"],rangeWeekPlaceholder:["Start week","End week"]},r.default),timePickerLocale:Object.assign({},o.default)}},47974:(e,t,n)=>{"use strict";n.r(t),n.d(t,{List:()=>a.List,default:()=>v,useForm:()=>h.default,useWatch:()=>a.useWatch});var r=n(36198),o=n(93967),i=n.n(o),a=n(6077),s=n(49134),l=n(98866),c=n(35792),u=n(98675),d=n(97647),f=n(65223),h=n(4584),p=(n(85694),n(64390)),m=n(37920),g=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&t.indexOf(r)<0&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var o=0;for(r=Object.getOwnPropertySymbols(e);o{const n=r.useContext(l.default),{getPrefixCls:o,direction:y,form:v}=r.useContext(s.ConfigContext),{prefixCls:b,className:O,rootClassName:w,size:S,disabled:x=n,form:E,colon:T,labelAlign:C,labelWrap:P,labelCol:_,wrapperCol:k,hideRequiredMark:j,layout:A="horizontal",scrollToFirstError:R,requiredMark:D,onFinishFailed:L,name:I,style:M,feedbackIcons:N,variant:$}=e,B=g(e,["prefixCls","className","rootClassName","size","disabled","form","colon","labelAlign","labelWrap","labelCol","wrapperCol","hideRequiredMark","layout","scrollToFirstError","requiredMark","onFinishFailed","name","style","feedbackIcons","variant"]),F=(0,u.default)(S),Q=r.useContext(m.default);const z=(0,r.useMemo)((()=>void 0!==D?D:!j&&(!v||void 0===v.requiredMark||v.requiredMark)),[j,D,v]),V=null!=T?T:null==v?void 0:v.colon,U=o("form",b),W=(0,c.default)(U),[G,X,q]=(0,p.default)(U,W),H=i()(U,`${U}-${A}`,{[`${U}-hide-required-mark`]:!1===z,[`${U}-rtl`]:"rtl"===y,[`${U}-${F}`]:F},q,W,X,null==v?void 0:v.className,O,w),[Z]=(0,h.default)(E),{__INTERNAL__:Y}=Z;Y.name=I;const K=(0,r.useMemo)((()=>({name:I,labelAlign:C,labelCol:_,labelWrap:P,wrapperCol:k,vertical:"vertical"===A,colon:V,requiredMark:z,itemRef:Y.itemRef,form:Z,feedbackIcons:N})),[I,C,_,k,A,V,z,Z,N]);r.useImperativeHandle(t,(()=>Z));const J=(e,t)=>{if(e){let n={block:"nearest"};"object"==typeof e&&(n=e),Z.scrollToField(t,n)}};return G(r.createElement(f.VariantContext.Provider,{value:$},r.createElement(l.DisabledContextProvider,{disabled:x},r.createElement(d.default.Provider,{value:F},r.createElement(f.FormProvider,{validateMessages:Q},r.createElement(f.FormContext.Provider,{value:K},r.createElement(a.default,Object.assign({id:I},B,{name:I,onFinishFailed:e=>{if(null==L||L(e),e.errorFields.length){const t=e.errorFields[0].name;if(void 0!==R)return void J(R,t);v&&void 0!==v.scrollToFirstError&&J(v.scrollToFirstError,t)}},form:Z,style:Object.assign(Object.assign({},null==v?void 0:v.style),M),className:H}))))))))};const v=r.forwardRef(y)},65223:(e,t,n)=>{"use strict";n.r(t),n.d(t,{FormContext:()=>a,FormItemInputContext:()=>u,FormItemPrefixContext:()=>c,FormProvider:()=>l,NoFormStyle:()=>d,NoStyleItemContext:()=>s,VariantContext:()=>f});var r=n(36198),o=n(6077),i=n(98423);const a=r.createContext({labelAlign:"right",vertical:!1,itemRef:()=>{}}),s=r.createContext(null),l=e=>{const t=(0,i.default)(e,["prefixCls"]);return r.createElement(o.FormProvider,Object.assign({},t))},c=r.createContext({prefixCls:""}),u=r.createContext({});const d=e=>{let{children:t,status:n,override:o}=e;const i=(0,r.useContext)(u),a=(0,r.useMemo)((()=>{const e=Object.assign({},i);return o&&delete e.isFormItemInput,n&&(delete e.status,delete e.hasFeedback,delete e.feedbackIcon),e}),[n,o,i]);return r.createElement(u.Provider,{value:a},t)},f=(0,r.createContext)(void 0)},4584:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>l});var r=n(36198),o=n(6077),i=n(18965),a=n(80993);function s(e){return(0,a.toArray)(e).join("_")}function l(e){const[t]=(0,o.useForm)(),n=r.useRef({}),l=r.useMemo((()=>null!=e?e:Object.assign(Object.assign({},t),{__INTERNAL__:{itemRef:e=>t=>{const r=s(e);t?n.current[r]=t:delete n.current[r]}},scrollToField:function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};const n=function(e,t){const n=t.getFieldInstance(e);if(n instanceof HTMLElement)return n;if((null==n?void 0:n.nativeElement)instanceof HTMLElement)return n.nativeElement;const r=(0,a.getFieldId)((0,a.toArray)(e),t.__INTERNAL__.name);return r?document.getElementById(r):void 0}(e,l);n&&(0,i.default)(n,Object.assign({scrollMode:"if-needed",block:"nearest"},t))},getFieldInstance:e=>{const t=s(e);return n.current[t]}})),[e,t]);return[l]}},85694:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>a});var r=n(36198),o=n(27288);const i={};function a(e){let{name:t}=e;(0,o.devUseWarning)("Form");(0,r.useEffect)((()=>{if(t)return i[t]=(i[t]||0)+1,()=>{i[t]-=1}}),[t])}},27833:(e,t,n)=>{"use strict";n.r(t),n.d(t,{Variants:()=>i,default:()=>a});var r=n(36198),o=n(65223);const i=["outlined","borderless","filled"],a=function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:void 0;const n=(0,r.useContext)(o.VariantContext);let a;a=void 0!==e?e:!1===t?"borderless":null!=n?n:"outlined";return[a,i.includes(a)]}},27040:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>r});const r=e=>{const{componentCls:t}=e,n=`${t}-show-help-item`;return{[`${t}-show-help`]:{transition:`opacity ${e.motionDurationSlow} ${e.motionEaseInOut}`,"&-appear, &-enter":{opacity:0,"&-active":{opacity:1}},"&-leave":{opacity:1,"&-active":{opacity:0}},[n]:{overflow:"hidden",transition:`height ${e.motionDurationSlow} ${e.motionEaseInOut},\n opacity ${e.motionDurationSlow} ${e.motionEaseInOut},\n transform ${e.motionDurationSlow} ${e.motionEaseInOut} !important`,[`&${n}-appear, &${n}-enter`]:{transform:"translateY(-5px)",opacity:0,"&-active":{transform:"translateY(0)",opacity:1}},[`&${n}-leave-active`]:{transform:"translateY(-5px)"}}}}}},64390:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>b,prepareComponentToken:()=>y,prepareToken:()=>v});var r=n(78419),o=n(14747),i=n(97229),a=n(12641),s=n(27040);const l=e=>({legend:{display:"block",width:"100%",marginBottom:e.marginLG,padding:0,color:e.colorTextDescription,fontSize:e.fontSizeLG,lineHeight:"inherit",border:0,borderBottom:`${(0,r.unit)(e.lineWidth)} ${e.lineType} ${e.colorBorder}`},'input[type="search"]':{boxSizing:"border-box"},'input[type="radio"], input[type="checkbox"]':{lineHeight:"normal"},'input[type="file"]':{display:"block"},'input[type="range"]':{display:"block",width:"100%"},"select[multiple], select[size]":{height:"auto"},"input[type='file']:focus,\n input[type='radio']:focus,\n input[type='checkbox']:focus":{outline:0,boxShadow:`0 0 0 ${(0,r.unit)(e.controlOutlineWidth)} ${e.controlOutline}`},output:{display:"block",paddingTop:15,color:e.colorText,fontSize:e.fontSize,lineHeight:e.lineHeight}}),c=(e,t)=>{const{formItemCls:n}=e;return{[n]:{[`${n}-label > label`]:{height:t},[`${n}-control-input`]:{minHeight:t}}}},u=e=>{const{componentCls:t}=e;return{[e.componentCls]:Object.assign(Object.assign(Object.assign({},(0,o.resetComponent)(e)),l(e)),{[`${t}-text`]:{display:"inline-block",paddingInlineEnd:e.paddingSM},"&-small":Object.assign({},c(e,e.controlHeightSM)),"&-large":Object.assign({},c(e,e.controlHeightLG))})}},d=e=>{const{formItemCls:t,iconCls:n,componentCls:r,rootPrefixCls:a,labelRequiredMarkColor:s,labelColor:l,labelFontSize:c,labelHeight:u,labelColonMarginInlineStart:d,labelColonMarginInlineEnd:f,itemMarginBottom:h}=e;return{[t]:Object.assign(Object.assign({},(0,o.resetComponent)(e)),{marginBottom:h,verticalAlign:"top","&-with-help":{transition:"none"},[`&-hidden,\n &-hidden.${a}-row`]:{display:"none"},"&-has-warning":{[`${t}-split`]:{color:e.colorError}},"&-has-error":{[`${t}-split`]:{color:e.colorWarning}},[`${t}-label`]:{flexGrow:0,overflow:"hidden",whiteSpace:"nowrap",textAlign:"end",verticalAlign:"middle","&-left":{textAlign:"start"},"&-wrap":{overflow:"unset",lineHeight:e.lineHeight,whiteSpace:"unset"},"> label":{position:"relative",display:"inline-flex",alignItems:"center",maxWidth:"100%",height:u,color:l,fontSize:c,[`> ${n}`]:{fontSize:e.fontSize,verticalAlign:"top"},[`&${t}-required:not(${t}-required-mark-optional)::before`]:{display:"inline-block",marginInlineEnd:e.marginXXS,color:s,fontSize:e.fontSize,fontFamily:"SimSun, sans-serif",lineHeight:1,content:'"*"',[`${r}-hide-required-mark &`]:{display:"none"}},[`${t}-optional`]:{display:"inline-block",marginInlineStart:e.marginXXS,color:e.colorTextDescription,[`${r}-hide-required-mark &`]:{display:"none"}},[`${t}-tooltip`]:{color:e.colorTextDescription,cursor:"help",writingMode:"horizontal-tb",marginInlineStart:e.marginXXS},"&::after":{content:'":"',position:"relative",marginBlock:0,marginInlineStart:d,marginInlineEnd:f},[`&${t}-no-colon::after`]:{content:'"\\a0"'}}},[`${t}-control`]:{"--ant-display":"flex",flexDirection:"column",flexGrow:1,[`&:first-child:not([class^="'${a}-col-'"]):not([class*="' ${a}-col-'"])`]:{width:"100%"},"&-input":{position:"relative",display:"flex",alignItems:"center",minHeight:e.controlHeight,"&-content":{flex:"auto",maxWidth:"100%"}}},[t]:{"&-explain, &-extra":{clear:"both",color:e.colorTextDescription,fontSize:e.fontSize,lineHeight:e.lineHeight},"&-explain-connected":{width:"100%"},"&-extra":{minHeight:e.controlHeightSM,transition:`color ${e.motionDurationMid} ${e.motionEaseOut}`},"&-explain":{"&-error":{color:e.colorError},"&-warning":{color:e.colorWarning}}},[`&-with-help ${t}-explain`]:{height:"auto",opacity:1},[`${t}-feedback-icon`]:{fontSize:e.fontSize,textAlign:"center",visibility:"visible",animationName:i.zoomIn,animationDuration:e.motionDurationMid,animationTimingFunction:e.motionEaseOutBack,pointerEvents:"none","&-success":{color:e.colorSuccess},"&-error":{color:e.colorError},"&-warning":{color:e.colorWarning},"&-validating":{color:e.colorPrimary}}})}},f=e=>{const{componentCls:t,formItemCls:n}=e;return{[`${t}-horizontal`]:{[`${n}-label`]:{flexGrow:0},[`${n}-control`]:{flex:"1 1 0",minWidth:0},[`${n}-label[class$='-24'], ${n}-label[class*='-24 ']`]:{[`& + ${n}-control`]:{minWidth:"unset"}}}}},h=e=>{const{componentCls:t,formItemCls:n,inlineItemMarginBottom:r}=e;return{[`${t}-inline`]:{display:"flex",flexWrap:"wrap",[n]:{flex:"none",marginInlineEnd:e.margin,marginBottom:r,"&-row":{flexWrap:"nowrap"},[`> ${n}-label,\n > ${n}-control`]:{display:"inline-block",verticalAlign:"top"},[`> ${n}-label`]:{flex:"none"},[`${t}-text`]:{display:"inline-block"},[`${n}-has-feedback`]:{display:"inline-block"}}}}},p=e=>({padding:e.verticalLabelPadding,margin:e.verticalLabelMargin,whiteSpace:"initial",textAlign:"start","> label":{margin:0,"&::after":{visibility:"hidden"}}}),m=e=>{const{componentCls:t,formItemCls:n,rootPrefixCls:r}=e;return{[`${n} ${n}-label`]:p(e),[`${t}:not(${t}-inline)`]:{[n]:{flexWrap:"wrap",[`${n}-label, ${n}-control`]:{[`&:not([class*=" ${r}-col-xs"])`]:{flex:"0 0 100%",maxWidth:"100%"}}}}}},g=e=>{const{componentCls:t,formItemCls:n,rootPrefixCls:o}=e;return{[`${t}-vertical`]:{[n]:{"&-row":{flexDirection:"column"},"&-label > label":{height:"auto"},[`${t}-item-control`]:{width:"100%"}}},[`${t}-vertical ${n}-label,\n .${o}-col-24${n}-label,\n .${o}-col-xl-24${n}-label`]:p(e),[`@media (max-width: ${(0,r.unit)(e.screenXSMax)})`]:[m(e),{[t]:{[`.${o}-col-xs-24${n}-label`]:p(e)}}],[`@media (max-width: ${(0,r.unit)(e.screenSMMax)})`]:{[t]:{[`.${o}-col-sm-24${n}-label`]:p(e)}},[`@media (max-width: ${(0,r.unit)(e.screenMDMax)})`]:{[t]:{[`.${o}-col-md-24${n}-label`]:p(e)}},[`@media (max-width: ${(0,r.unit)(e.screenLGMax)})`]:{[t]:{[`.${o}-col-lg-24${n}-label`]:p(e)}}}},y=e=>({labelRequiredMarkColor:e.colorError,labelColor:e.colorTextHeading,labelFontSize:e.fontSize,labelHeight:e.controlHeight,labelColonMarginInlineStart:e.marginXXS/2,labelColonMarginInlineEnd:e.marginXS,itemMarginBottom:e.marginLG,verticalLabelPadding:`0 0 ${e.paddingXS}px`,verticalLabelMargin:0,inlineItemMarginBottom:0}),v=(e,t)=>(0,a.mergeToken)(e,{formItemCls:`${e.componentCls}-item`,rootPrefixCls:t}),b=(0,a.genStyleHooks)("Form",((e,t)=>{let{rootPrefixCls:n}=t;const r=v(e,n);return[u(r),d(r),(0,s.default)(r),f(r),h(r),g(r),(0,i.genCollapseMotion)(r),i.zoomIn]}),y,{order:-1e3})},80993:(e,t,n)=>{"use strict";n.r(t),n.d(t,{getFieldId:()=>a,getStatus:()=>s,toArray:()=>i});const r=["parentNode"],o="form_item";function i(e){return void 0===e||!1===e?[]:Array.isArray(e)?e:[e]}function a(e,t){if(!e.length)return;const n=e.join("_");if(t)return`${t}_${n}`;return r.includes(n)?`${o}_${n}`:n}function s(e,t,n,r,o,i){let a=r;return void 0!==i?a=i:n.validating?a="validating":e.length?a="error":t.length?a="warning":(n.touched||o&&n.validated)&&(a="success"),a}},37920:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>r});const r=(0,n(36198).createContext)(void 0)},77749:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>S,triggerFocus:()=>w});var r=n(36198),o=n(93967),i=n.n(o),a=n(10584),s=n(42550),l=n(78290),c=n(9708),u=(n(27288),n(49134)),d=n(98866),f=n(35792),h=n(98675),p=n(65223),m=n(27833),g=n(4173),y=n(72922),v=n(47673),b=n(57737),O=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&t.indexOf(r)<0&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var o=0;for(r=Object.getOwnPropertySymbols(e);o{var n;const{prefixCls:o,bordered:w=!0,status:S,size:x,disabled:E,onBlur:T,onFocus:C,suffix:P,allowClear:_,addonAfter:k,addonBefore:j,className:A,style:R,styles:D,rootClassName:L,onChange:I,classNames:M,variant:N}=e,$=O(e,["prefixCls","bordered","status","size","disabled","onBlur","onFocus","suffix","allowClear","addonAfter","addonBefore","className","style","styles","rootClassName","onChange","classNames","variant"]);const{getPrefixCls:B,direction:F,input:Q}=r.useContext(u.ConfigContext),z=B("input",o),V=(0,r.useRef)(null),U=(0,f.default)(z),[W,G,X]=(0,v.default)(z,U),{compactSize:q,compactItemClassnames:H}=(0,g.useCompactItemContext)(z,F),Z=(0,h.default)((e=>{var t;return null!==(t=null!=x?x:q)&&void 0!==t?t:e})),Y=r.useContext(d.default),K=null!=E?E:Y,{status:J,hasFeedback:ee,feedbackIcon:te}=(0,r.useContext)(p.FormItemInputContext),ne=(0,c.getMergedStatus)(J,S),re=(0,b.hasPrefixSuffix)(e)||!!ee;(0,r.useRef)(re);const oe=(0,y.default)(V,!0),ie=(ee||P)&&r.createElement(r.Fragment,null,P,ee&&te),ae=(0,l.default)(null!=_?_:null==Q?void 0:Q.allowClear),[se,le]=(0,m.default)(N,w);return W(r.createElement(a.default,Object.assign({ref:(0,s.composeRef)(t,V),prefixCls:z,autoComplete:null==Q?void 0:Q.autoComplete},$,{disabled:K,onBlur:e=>{oe(),null==T||T(e)},onFocus:e=>{oe(),null==C||C(e)},style:Object.assign(Object.assign({},null==Q?void 0:Q.style),R),styles:Object.assign(Object.assign({},null==Q?void 0:Q.styles),D),suffix:ie,allowClear:ae,className:i()(A,L,X,U,H,null==Q?void 0:Q.className),onChange:e=>{oe(),null==I||I(e)},addonAfter:k&&r.createElement(g.NoCompactStyle,null,r.createElement(p.NoFormStyle,{override:!0,status:!0},k)),addonBefore:j&&r.createElement(g.NoCompactStyle,null,r.createElement(p.NoFormStyle,{override:!0,status:!0},j)),classNames:Object.assign(Object.assign(Object.assign({},M),null==Q?void 0:Q.classNames),{input:i()({[`${z}-sm`]:"small"===Z,[`${z}-lg`]:"large"===Z,[`${z}-rtl`]:"rtl"===F},null==M?void 0:M.input,null===(n=null==Q?void 0:Q.classNames)||void 0===n?void 0:n.input,G),variant:i()({[`${z}-${se}`]:le},(0,c.getStatusClassNames)(z,ne)),affixWrapper:i()({[`${z}-affix-wrapper-sm`]:"small"===Z,[`${z}-affix-wrapper-lg`]:"large"===Z,[`${z}-affix-wrapper-rtl`]:"rtl"===F},G),wrapper:i()({[`${z}-group-rtl`]:"rtl"===F},G),groupWrapper:i()({[`${z}-group-wrapper-sm`]:"small"===Z,[`${z}-group-wrapper-lg`]:"large"===Z,[`${z}-group-wrapper-rtl`]:"rtl"===F,[`${z}-group-wrapper-${se}`]:le},(0,c.getStatusClassNames)(`${z}-group-wrapper`,ne,ee),G)})})))}))},53988:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>m});var r=n(36198),o=n(40110),i=n(93967),a=n.n(i),s=n(42550),l=n(96159),c=n(71577),u=n(49134),d=n(98675),f=n(4173),h=n(77749),p=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&t.indexOf(r)<0&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var o=0;for(r=Object.getOwnPropertySymbols(e);o{const{prefixCls:n,inputPrefixCls:i,className:m,size:g,suffix:y,enterButton:v=!1,addonAfter:b,loading:O,disabled:w,onSearch:S,onChange:x,onCompositionStart:E,onCompositionEnd:T}=e,C=p(e,["prefixCls","inputPrefixCls","className","size","suffix","enterButton","addonAfter","loading","disabled","onSearch","onChange","onCompositionStart","onCompositionEnd"]),{getPrefixCls:P,direction:_}=r.useContext(u.ConfigContext),k=r.useRef(!1),j=P("input-search",n),A=P("input",i),{compactSize:R}=(0,f.useCompactItemContext)(j,_),D=(0,d.default)((e=>{var t;return null!==(t=null!=g?g:R)&&void 0!==t?t:e})),L=r.useRef(null),I=e=>{var t;document.activeElement===(null===(t=L.current)||void 0===t?void 0:t.input)&&e.preventDefault()},M=e=>{var t,n;S&&S(null===(n=null===(t=L.current)||void 0===t?void 0:t.input)||void 0===n?void 0:n.value,e,{source:"input"})},N="boolean"==typeof v?r.createElement(o.default,null):null,$=`${j}-button`;let B;const F=v||{},Q=F.type&&!0===F.type.__ANT_BUTTON;B=Q||"button"===F.type?(0,l.cloneElement)(F,Object.assign({onMouseDown:I,onClick:e=>{var t,n;null===(n=null===(t=null==F?void 0:F.props)||void 0===t?void 0:t.onClick)||void 0===n||n.call(t,e),M(e)},key:"enterButton"},Q?{className:$,size:D}:{})):r.createElement(c.default,{className:$,type:v?"primary":void 0,size:D,disabled:w,key:"enterButton",onMouseDown:I,onClick:M,loading:O,icon:N},v),b&&(B=[B,(0,l.cloneElement)(b,{key:"addonAfter"})]);const z=a()(j,{[`${j}-rtl`]:"rtl"===_,[`${j}-${D}`]:!!D,[`${j}-with-button`]:!!v},m);return r.createElement(h.default,Object.assign({ref:(0,s.composeRef)(L,t),onPressEnter:e=>{k.current||O||M(e)}},C,{size:D,onCompositionStart:e=>{k.current=!0,null==E||E(e)},onCompositionEnd:e=>{k.current=!1,null==T||T(e)},prefixCls:A,addonAfter:B,suffix:y,onChange:e=>{e&&e.target&&"click"===e.type&&S&&S(e.target.value,e,{source:"clear"}),x&&x(e)},className:z,disabled:w}))}))},96330:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>v});var r=n(36198),o=n(93967),i=n.n(o),a=n(11682),s=n(78290),l=n(9708),c=(n(27288),n(49134)),u=n(98866),d=n(35792),f=n(98675),h=n(65223),p=n(27833),m=n(77749),g=n(47673),y=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&t.indexOf(r)<0&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var o=0;for(r=Object.getOwnPropertySymbols(e);o{var n,o;const{prefixCls:v,bordered:b=!0,size:O,disabled:w,status:S,allowClear:x,classNames:E,rootClassName:T,className:C,style:P,styles:_,variant:k}=e,j=y(e,["prefixCls","bordered","size","disabled","status","allowClear","classNames","rootClassName","className","style","styles","variant"]);const{getPrefixCls:A,direction:R,textArea:D}=r.useContext(c.ConfigContext),L=(0,f.default)(O),I=r.useContext(u.default),M=null!=w?w:I,{status:N,hasFeedback:$,feedbackIcon:B}=r.useContext(h.FormItemInputContext),F=(0,l.getMergedStatus)(N,S),Q=r.useRef(null);r.useImperativeHandle(t,(()=>{var e;return{resizableTextArea:null===(e=Q.current)||void 0===e?void 0:e.resizableTextArea,focus:e=>{var t,n;(0,m.triggerFocus)(null===(n=null===(t=Q.current)||void 0===t?void 0:t.resizableTextArea)||void 0===n?void 0:n.textArea,e)},blur:()=>{var e;return null===(e=Q.current)||void 0===e?void 0:e.blur()}}}));const z=A("input",v),V=(0,d.default)(z),[U,W,G]=(0,g.default)(z,V),[X,q]=(0,p.default)(k,b),H=(0,s.default)(null!=x?x:null==D?void 0:D.allowClear);return U(r.createElement(a.default,Object.assign({autoComplete:null==D?void 0:D.autoComplete},j,{style:Object.assign(Object.assign({},null==D?void 0:D.style),P),styles:Object.assign(Object.assign({},null==D?void 0:D.styles),_),disabled:M,allowClear:H,className:i()(G,V,C,T,null==D?void 0:D.className),classNames:Object.assign(Object.assign(Object.assign({},E),null==D?void 0:D.classNames),{textarea:i()({[`${z}-sm`]:"small"===L,[`${z}-lg`]:"large"===L},W,null==E?void 0:E.textarea,null===(n=null==D?void 0:D.classNames)||void 0===n?void 0:n.textarea),variant:i()({[`${z}-${X}`]:q},(0,l.getStatusClassNames)(z,F)),affixWrapper:i()(`${z}-textarea-affix-wrapper`,{[`${z}-affix-wrapper-rtl`]:"rtl"===R,[`${z}-affix-wrapper-sm`]:"small"===L,[`${z}-affix-wrapper-lg`]:"large"===L,[`${z}-textarea-show-count`]:e.showCount||(null===(o=e.count)||void 0===o?void 0:o.show)},W)}),prefixCls:z,suffix:$&&r.createElement("span",{className:`${z}-textarea-suffix`},B),ref:Q})))}))},72922:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>o});var r=n(36198);function o(e,t){const n=(0,r.useRef)([]),o=()=>{n.current.push(setTimeout((()=>{var t,n,r,o;(null===(t=e.current)||void 0===t?void 0:t.input)&&"password"===(null===(n=e.current)||void 0===n?void 0:n.input.getAttribute("type"))&&(null===(r=e.current)||void 0===r?void 0:r.input.hasAttribute("value"))&&(null===(o=e.current)||void 0===o||o.input.removeAttribute("value"))})))};return(0,r.useEffect)((()=>(t&&o(),()=>n.current.forEach((e=>{e&&clearTimeout(e)})))),[]),o}},47673:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>S,genActiveStyle:()=>u,genBasicInputStyle:()=>h,genInputGroupStyle:()=>p,genInputSmallStyle:()=>f,genPlaceholderStyle:()=>c,initComponentToken:()=>s.initComponentToken,initInputToken:()=>s.initInputToken});var r=n(78419),o=n(14747),i=n(80110),a=n(12641),s=n(20353),l=n(93900);const c=e=>({"&::-moz-placeholder":{opacity:1},"&::placeholder":{color:e,userSelect:"none"},"&:placeholder-shown":{textOverflow:"ellipsis"}}),u=e=>({borderColor:e.activeBorderColor,boxShadow:e.activeShadow,outline:0,backgroundColor:e.activeBg}),d=e=>{const{paddingBlockLG:t,lineHeightLG:n,borderRadiusLG:o,paddingInlineLG:i}=e;return{padding:`${(0,r.unit)(t)} ${(0,r.unit)(i)}`,fontSize:e.inputFontSizeLG,lineHeight:n,borderRadius:o}},f=e=>({padding:`${(0,r.unit)(e.paddingBlockSM)} ${(0,r.unit)(e.paddingInlineSM)}`,fontSize:e.inputFontSizeSM,borderRadius:e.borderRadiusSM}),h=e=>Object.assign(Object.assign({position:"relative",display:"inline-block",width:"100%",minWidth:0,padding:`${(0,r.unit)(e.paddingBlock)} ${(0,r.unit)(e.paddingInline)}`,color:e.colorText,fontSize:e.inputFontSize,lineHeight:e.lineHeight,borderRadius:e.borderRadius,transition:`all ${e.motionDurationMid}`},c(e.colorTextPlaceholder)),{"textarea&":{maxWidth:"100%",height:"auto",minHeight:e.controlHeight,lineHeight:e.lineHeight,verticalAlign:"bottom",transition:`all ${e.motionDurationSlow}, height 0s`,resize:"vertical"},"&-lg":Object.assign({},d(e)),"&-sm":Object.assign({},f(e)),"&-rtl":{direction:"rtl"},"&-textarea-rtl":{direction:"rtl"}}),p=e=>{const{componentCls:t,antCls:n}=e;return{position:"relative",display:"table",width:"100%",borderCollapse:"separate",borderSpacing:0,"&[class*='col-']":{paddingInlineEnd:e.paddingXS,"&:last-child":{paddingInlineEnd:0}},[`&-lg ${t}, &-lg > ${t}-group-addon`]:Object.assign({},d(e)),[`&-sm ${t}, &-sm > ${t}-group-addon`]:Object.assign({},f(e)),[`&-lg ${n}-select-single ${n}-select-selector`]:{height:e.controlHeightLG},[`&-sm ${n}-select-single ${n}-select-selector`]:{height:e.controlHeightSM},[`> ${t}`]:{display:"table-cell","&:not(:first-child):not(:last-child)":{borderRadius:0}},[`${t}-group`]:{"&-addon, &-wrap":{display:"table-cell",width:1,whiteSpace:"nowrap",verticalAlign:"middle","&:not(:first-child):not(:last-child)":{borderRadius:0}},"&-wrap > *":{display:"block !important"},"&-addon":{position:"relative",padding:`0 ${(0,r.unit)(e.paddingInline)}`,color:e.colorText,fontWeight:"normal",fontSize:e.inputFontSize,textAlign:"center",borderRadius:e.borderRadius,transition:`all ${e.motionDurationSlow}`,lineHeight:1,[`${n}-select`]:{margin:`${(0,r.unit)(e.calc(e.paddingBlock).add(1).mul(-1).equal())} ${(0,r.unit)(e.calc(e.paddingInline).mul(-1).equal())}`,[`&${n}-select-single:not(${n}-select-customize-input):not(${n}-pagination-size-changer)`]:{[`${n}-select-selector`]:{backgroundColor:"inherit",border:`${(0,r.unit)(e.lineWidth)} ${e.lineType} transparent`,boxShadow:"none"}},"&-open, &-focused":{[`${n}-select-selector`]:{color:e.colorPrimary}}},[`${n}-cascader-picker`]:{margin:`-9px ${(0,r.unit)(e.calc(e.paddingInline).mul(-1).equal())}`,backgroundColor:"transparent",[`${n}-cascader-input`]:{textAlign:"start",border:0,boxShadow:"none"}}}},[`${t}`]:{width:"100%",marginBottom:0,textAlign:"inherit","&:focus":{zIndex:1,borderInlineEndWidth:1},"&:hover":{zIndex:1,borderInlineEndWidth:1,[`${t}-search-with-button &`]:{zIndex:0}}},[`> ${t}:first-child, ${t}-group-addon:first-child`]:{borderStartEndRadius:0,borderEndEndRadius:0,[`${n}-select ${n}-select-selector`]:{borderStartEndRadius:0,borderEndEndRadius:0}},[`> ${t}-affix-wrapper`]:{[`&:not(:first-child) ${t}`]:{borderStartStartRadius:0,borderEndStartRadius:0},[`&:not(:last-child) ${t}`]:{borderStartEndRadius:0,borderEndEndRadius:0}},[`> ${t}:last-child, ${t}-group-addon:last-child`]:{borderStartStartRadius:0,borderEndStartRadius:0,[`${n}-select ${n}-select-selector`]:{borderStartStartRadius:0,borderEndStartRadius:0}},[`${t}-affix-wrapper`]:{"&:not(:last-child)":{borderStartEndRadius:0,borderEndEndRadius:0,[`${t}-search &`]:{borderStartStartRadius:e.borderRadius,borderEndStartRadius:e.borderRadius}},[`&:not(:first-child), ${t}-search &:not(:first-child)`]:{borderStartStartRadius:0,borderEndStartRadius:0}},[`&${t}-group-compact`]:Object.assign(Object.assign({display:"block"},(0,o.clearFix)()),{[`${t}-group-addon, ${t}-group-wrap, > ${t}`]:{"&:not(:first-child):not(:last-child)":{borderInlineEndWidth:e.lineWidth,"&:hover":{zIndex:1},"&:focus":{zIndex:1}}},"& > *":{display:"inline-block",float:"none",verticalAlign:"top",borderRadius:0},[`\n & > ${t}-affix-wrapper,\n & > ${t}-number-affix-wrapper,\n & > ${n}-picker-range\n `]:{display:"inline-flex"},"& > *:not(:last-child)":{marginInlineEnd:e.calc(e.lineWidth).mul(-1).equal(),borderInlineEndWidth:e.lineWidth},[`${t}`]:{float:"none"},[`& > ${n}-select > ${n}-select-selector,\n & > ${n}-select-auto-complete ${t},\n & > ${n}-cascader-picker ${t},\n & > ${t}-group-wrapper ${t}`]:{borderInlineEndWidth:e.lineWidth,borderRadius:0,"&:hover":{zIndex:1},"&:focus":{zIndex:1}},[`& > ${n}-select-focused`]:{zIndex:1},[`& > ${n}-select > ${n}-select-arrow`]:{zIndex:1},[`& > *:first-child,\n & > ${n}-select:first-child > ${n}-select-selector,\n & > ${n}-select-auto-complete:first-child ${t},\n & > ${n}-cascader-picker:first-child ${t}`]:{borderStartStartRadius:e.borderRadius,borderEndStartRadius:e.borderRadius},[`& > *:last-child,\n & > ${n}-select:last-child > ${n}-select-selector,\n & > ${n}-cascader-picker:last-child ${t},\n & > ${n}-cascader-picker-focused:last-child ${t}`]:{borderInlineEndWidth:e.lineWidth,borderStartEndRadius:e.borderRadius,borderEndEndRadius:e.borderRadius},[`& > ${n}-select-auto-complete ${t}`]:{verticalAlign:"top"},[`${t}-group-wrapper + ${t}-group-wrapper`]:{marginInlineStart:e.calc(e.lineWidth).mul(-1).equal(),[`${t}-affix-wrapper`]:{borderRadius:0}},[`${t}-group-wrapper:not(:last-child)`]:{[`&${t}-search > ${t}-group`]:{[`& > ${t}-group-addon > ${t}-search-button`]:{borderRadius:0},[`& > ${t}`]:{borderStartStartRadius:e.borderRadius,borderStartEndRadius:0,borderEndEndRadius:0,borderEndStartRadius:e.borderRadius}}}})}},m=e=>{const{componentCls:t,controlHeightSM:n,lineWidth:r,calc:i}=e,a=i(n).sub(i(r).mul(2)).sub(16).div(2).equal();return{[t]:Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({},(0,o.resetComponent)(e)),h(e)),(0,l.genOutlinedStyle)(e)),(0,l.genFilledStyle)(e)),(0,l.genBorderlessStyle)(e)),{'&[type="color"]':{height:e.controlHeight,[`&${t}-lg`]:{height:e.controlHeightLG},[`&${t}-sm`]:{height:n,paddingTop:a,paddingBottom:a}},'&[type="search"]::-webkit-search-cancel-button, &[type="search"]::-webkit-search-decoration':{"-webkit-appearance":"none"}})}},g=e=>{const{componentCls:t}=e;return{[`${t}-clear-icon`]:{margin:0,color:e.colorTextQuaternary,fontSize:e.fontSizeIcon,verticalAlign:-1,cursor:"pointer",transition:`color ${e.motionDurationSlow}`,"&:hover":{color:e.colorTextTertiary},"&:active":{color:e.colorText},"&-hidden":{visibility:"hidden"},"&-has-suffix":{margin:`0 ${(0,r.unit)(e.inputAffixPadding)}`}}}},y=e=>{const{componentCls:t,inputAffixPadding:n,colorTextDescription:r,motionDurationSlow:o,colorIcon:i,colorIconHover:a,iconCls:s}=e;return{[`${t}-affix-wrapper`]:Object.assign(Object.assign(Object.assign(Object.assign({},h(e)),{display:"inline-flex",[`&:not(${t}-disabled):hover`]:{zIndex:1,[`${t}-search-with-button &`]:{zIndex:0}},"&-focused, &:focus":{zIndex:1},[`> input${t}`]:{padding:0},[`> input${t}, > textarea${t}`]:{fontSize:"inherit",border:"none",borderRadius:0,outline:"none",background:"transparent",color:"inherit","&::-ms-reveal":{display:"none"},"&:focus":{boxShadow:"none !important"}},"&::before":{display:"inline-block",width:0,visibility:"hidden",content:'"\\a0"'},[`${t}`]:{"&-prefix, &-suffix":{display:"flex",flex:"none",alignItems:"center","> *:not(:last-child)":{marginInlineEnd:e.paddingXS}},"&-show-count-suffix":{color:r},"&-show-count-has-suffix":{marginInlineEnd:e.paddingXXS},"&-prefix":{marginInlineEnd:n},"&-suffix":{marginInlineStart:n}}}),g(e)),{[`${s}${t}-password-icon`]:{color:i,cursor:"pointer",transition:`all ${o}`,"&:hover":{color:a}}})}},v=e=>{const{componentCls:t,borderRadiusLG:n,borderRadiusSM:r}=e;return{[`${t}-group`]:Object.assign(Object.assign(Object.assign({},(0,o.resetComponent)(e)),p(e)),{"&-rtl":{direction:"rtl"},"&-wrapper":Object.assign(Object.assign(Object.assign({display:"inline-block",width:"100%",textAlign:"start",verticalAlign:"top","&-rtl":{direction:"rtl"},"&-lg":{[`${t}-group-addon`]:{borderRadius:n,fontSize:e.inputFontSizeLG}},"&-sm":{[`${t}-group-addon`]:{borderRadius:r}}},(0,l.genOutlinedGroupStyle)(e)),(0,l.genFilledGroupStyle)(e)),{[`&:not(${t}-compact-first-item):not(${t}-compact-last-item)${t}-compact-item`]:{[`${t}, ${t}-group-addon`]:{borderRadius:0}},[`&:not(${t}-compact-last-item)${t}-compact-first-item`]:{[`${t}, ${t}-group-addon`]:{borderStartEndRadius:0,borderEndEndRadius:0}},[`&:not(${t}-compact-first-item)${t}-compact-last-item`]:{[`${t}, ${t}-group-addon`]:{borderStartStartRadius:0,borderEndStartRadius:0}},[`&:not(${t}-compact-last-item)${t}-compact-item`]:{[`${t}-affix-wrapper`]:{borderStartEndRadius:0,borderEndEndRadius:0}}})})}},b=e=>{const{componentCls:t,antCls:n}=e,r=`${t}-search`;return{[r]:{[`${t}`]:{"&:hover, &:focus":{borderColor:e.colorPrimaryHover,[`+ ${t}-group-addon ${r}-button:not(${n}-btn-primary)`]:{borderInlineStartColor:e.colorPrimaryHover}}},[`${t}-affix-wrapper`]:{borderRadius:0},[`${t}-lg`]:{lineHeight:e.calc(e.lineHeightLG).sub(2e-4).equal({unit:!1})},[`> ${t}-group`]:{[`> ${t}-group-addon:last-child`]:{insetInlineStart:-1,padding:0,border:0,[`${r}-button`]:{marginInlineEnd:-1,paddingTop:0,paddingBottom:0,borderStartStartRadius:0,borderStartEndRadius:e.borderRadius,borderEndEndRadius:e.borderRadius,borderEndStartRadius:0,boxShadow:"none"},[`${r}-button:not(${n}-btn-primary)`]:{color:e.colorTextDescription,"&:hover":{color:e.colorPrimaryHover},"&:active":{color:e.colorPrimaryActive},[`&${n}-btn-loading::before`]:{insetInlineStart:0,insetInlineEnd:0,insetBlockStart:0,insetBlockEnd:0}}}},[`${r}-button`]:{height:e.controlHeight,"&:hover, &:focus":{zIndex:1}},[`&-large ${r}-button`]:{height:e.controlHeightLG},[`&-small ${r}-button`]:{height:e.controlHeightSM},"&-rtl":{direction:"rtl"},[`&${t}-compact-item`]:{[`&:not(${t}-compact-last-item)`]:{[`${t}-group-addon`]:{[`${t}-search-button`]:{marginInlineEnd:e.calc(e.lineWidth).mul(-1).equal(),borderRadius:0}}},[`&:not(${t}-compact-first-item)`]:{[`${t},${t}-affix-wrapper`]:{borderRadius:0}},[`> ${t}-group-addon ${t}-search-button,\n > ${t},\n ${t}-affix-wrapper`]:{"&:hover,&:focus,&:active":{zIndex:2}},[`> ${t}-affix-wrapper-focused`]:{zIndex:2}}}}},O=e=>{const{componentCls:t,paddingLG:n}=e,r=`${t}-textarea`;return{[r]:{position:"relative","&-show-count":{[`> ${t}`]:{height:"100%"},[`${t}-data-count`]:{position:"absolute",bottom:e.calc(e.fontSize).mul(e.lineHeight).mul(-1).equal(),insetInlineEnd:0,color:e.colorTextDescription,whiteSpace:"nowrap",pointerEvents:"none"}},"&-allow-clear":{[`> ${t}`]:{paddingInlineEnd:n}},[`&-affix-wrapper${r}-has-feedback`]:{[`${t}`]:{paddingInlineEnd:n}},[`&-affix-wrapper${t}-affix-wrapper`]:{padding:0,[`> textarea${t}`]:{fontSize:"inherit",border:"none",outline:"none",background:"transparent","&:focus":{boxShadow:"none !important"}},[`${t}-suffix`]:{margin:0,"> *:not(:last-child)":{marginInline:0},[`${t}-clear-icon`]:{position:"absolute",insetInlineEnd:e.paddingXS,insetBlockStart:e.paddingXS},[`${r}-suffix`]:{position:"absolute",top:0,insetInlineEnd:e.paddingInline,bottom:0,zIndex:1,display:"inline-flex",alignItems:"center",margin:"auto",pointerEvents:"none"}}}}}},w=e=>{const{componentCls:t}=e;return{[`${t}-out-of-range`]:{[`&, & input, & textarea, ${t}-show-count-suffix, ${t}-data-count`]:{color:e.colorError}}}},S=(0,a.genStyleHooks)("Input",(e=>{const t=(0,a.mergeToken)(e,(0,s.initInputToken)(e));return[m(t),O(t),y(t),v(t),b(t),w(t),(0,i.genCompactItemStyle)(t)]}),s.initComponentToken,{resetFont:!1})},20353:(e,t,n)=>{"use strict";n.r(t),n.d(t,{initComponentToken:()=>i,initInputToken:()=>o});var r=n(12641);function o(e){return(0,r.mergeToken)(e,{inputAffixPadding:e.paddingXXS})}const i=e=>{const{controlHeight:t,fontSize:n,lineHeight:r,lineWidth:o,controlHeightSM:i,controlHeightLG:a,fontSizeLG:s,lineHeightLG:l,paddingSM:c,controlPaddingHorizontalSM:u,controlPaddingHorizontal:d,colorFillAlter:f,colorPrimaryHover:h,colorPrimary:p,controlOutlineWidth:m,controlOutline:g,colorErrorOutline:y,colorWarningOutline:v,colorBgContainer:b}=e;return{paddingBlock:Math.max(Math.round((t-n*r)/2*10)/10-o,0),paddingBlockSM:Math.max(Math.round((i-n*r)/2*10)/10-o,0),paddingBlockLG:Math.ceil((a-s*l)/2*10)/10-o,paddingInline:c-o,paddingInlineSM:u-o,paddingInlineLG:d-o,addonBg:f,activeBorderColor:p,hoverBorderColor:h,activeShadow:`0 0 0 ${m}px ${g}`,errorActiveShadow:`0 0 0 ${m}px ${y}`,warningActiveShadow:`0 0 0 ${m}px ${v}`,hoverBg:b,activeBg:b,inputFontSize:n,inputFontSizeLG:s,inputFontSizeSM:n}}},93900:(e,t,n)=>{"use strict";n.r(t),n.d(t,{genBaseOutlinedStyle:()=>s,genBorderlessStyle:()=>f,genDisabledStyle:()=>a,genFilledGroupStyle:()=>y,genFilledStyle:()=>m,genHoverStyle:()=>i,genOutlinedGroupStyle:()=>d,genOutlinedStyle:()=>c});var r=n(78419),o=n(12641);const i=e=>({borderColor:e.hoverBorderColor,backgroundColor:e.hoverBg}),a=e=>({color:e.colorTextDisabled,backgroundColor:e.colorBgContainerDisabled,borderColor:e.colorBorder,boxShadow:"none",cursor:"not-allowed",opacity:1,"input[disabled], textarea[disabled]":{cursor:"not-allowed"},"&:hover:not([disabled])":Object.assign({},i((0,o.mergeToken)(e,{hoverBorderColor:e.colorBorder,hoverBg:e.colorBgContainerDisabled})))}),s=(e,t)=>({background:e.colorBgContainer,borderWidth:e.lineWidth,borderStyle:e.lineType,borderColor:t.borderColor,"&:hover":{borderColor:t.hoverBorderColor,backgroundColor:e.hoverBg},"&:focus, &:focus-within":{borderColor:t.activeBorderColor,boxShadow:t.activeShadow,outline:0,backgroundColor:e.activeBg}}),l=(e,t)=>({[`&${e.componentCls}-status-${t.status}:not(${e.componentCls}-disabled)`]:Object.assign(Object.assign({},s(e,t)),{[`${e.componentCls}-prefix, ${e.componentCls}-suffix`]:{color:t.affixColor}}),[`&${e.componentCls}-status-${t.status}${e.componentCls}-disabled`]:{borderColor:t.borderColor}}),c=(e,t)=>({"&-outlined":Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({},s(e,{borderColor:e.colorBorder,hoverBorderColor:e.hoverBorderColor,activeBorderColor:e.activeBorderColor,activeShadow:e.activeShadow})),{[`&${e.componentCls}-disabled, &[disabled]`]:Object.assign({},a(e))}),l(e,{status:"error",borderColor:e.colorError,hoverBorderColor:e.colorErrorBorderHover,activeBorderColor:e.colorError,activeShadow:e.errorActiveShadow,affixColor:e.colorError})),l(e,{status:"warning",borderColor:e.colorWarning,hoverBorderColor:e.colorWarningBorderHover,activeBorderColor:e.colorWarning,activeShadow:e.warningActiveShadow,affixColor:e.colorWarning})),t)}),u=(e,t)=>({[`&${e.componentCls}-group-wrapper-status-${t.status}`]:{[`${e.componentCls}-group-addon`]:{borderColor:t.addonBorderColor,color:t.addonColor}}}),d=e=>({"&-outlined":Object.assign(Object.assign(Object.assign({[`${e.componentCls}-group`]:{"&-addon":{background:e.addonBg,border:`${(0,r.unit)(e.lineWidth)} ${e.lineType} ${e.colorBorder}`},"&-addon:first-child":{borderInlineEnd:0},"&-addon:last-child":{borderInlineStart:0}}},u(e,{status:"error",addonBorderColor:e.colorError,addonColor:e.colorErrorText})),u(e,{status:"warning",addonBorderColor:e.colorWarning,addonColor:e.colorWarningText})),{[`&${e.componentCls}-group-wrapper-disabled`]:{[`${e.componentCls}-group-addon`]:Object.assign({},a(e))}})}),f=(e,t)=>({"&-borderless":Object.assign({background:"transparent",border:"none","&:focus, &:focus-within":{outline:"none"},[`&${e.componentCls}-disabled, &[disabled]`]:{color:e.colorTextDisabled}},t)}),h=(e,t)=>({background:t.bg,borderWidth:e.lineWidth,borderStyle:e.lineType,borderColor:"transparent","input&, & input, textarea&, & textarea":{color:null==t?void 0:t.inputColor},"&:hover":{background:t.hoverBg},"&:focus, &:focus-within":{outline:0,borderColor:t.activeBorderColor,backgroundColor:e.activeBg}}),p=(e,t)=>({[`&${e.componentCls}-status-${t.status}:not(${e.componentCls}-disabled)`]:Object.assign(Object.assign({},h(e,t)),{[`${e.componentCls}-prefix, ${e.componentCls}-suffix`]:{color:t.affixColor}})}),m=(e,t)=>({"&-filled":Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({},h(e,{bg:e.colorFillTertiary,hoverBg:e.colorFillSecondary,activeBorderColor:e.colorPrimary})),{[`&${e.componentCls}-disabled, &[disabled]`]:Object.assign({},a(e))}),p(e,{status:"error",bg:e.colorErrorBg,hoverBg:e.colorErrorBgHover,activeBorderColor:e.colorError,inputColor:e.colorErrorText,affixColor:e.colorError})),p(e,{status:"warning",bg:e.colorWarningBg,hoverBg:e.colorWarningBgHover,activeBorderColor:e.colorWarning,inputColor:e.colorWarningText,affixColor:e.colorWarning})),t)}),g=(e,t)=>({[`&${e.componentCls}-group-wrapper-status-${t.status}`]:{[`${e.componentCls}-group-addon`]:{background:t.addonBg,color:t.addonColor}}}),y=e=>({"&-filled":Object.assign(Object.assign(Object.assign({[`${e.componentCls}-group`]:{"&-addon":{background:e.colorFillTertiary},[`${e.componentCls}-filled:not(:focus):not(:focus-within)`]:{"&:not(:first-child)":{borderInlineStart:`${(0,r.unit)(e.lineWidth)} ${e.lineType} ${e.colorSplit}`},"&:not(:last-child)":{borderInlineEnd:`${(0,r.unit)(e.lineWidth)} ${e.lineType} ${e.colorSplit}`}}}},g(e,{status:"error",addonBg:e.colorErrorBg,addonColor:e.colorErrorText})),g(e,{status:"warning",addonBg:e.colorWarningBg,addonColor:e.colorWarningText})),{[`&${e.componentCls}-group-wrapper-disabled`]:{[`${e.componentCls}-group`]:{"&-addon":{background:e.colorFillTertiary,color:e.colorTextDisabled},"&-addon:first-child":{borderInlineStart:`${(0,r.unit)(e.lineWidth)} ${e.lineType} ${e.colorBorder}`,borderTop:`${(0,r.unit)(e.lineWidth)} ${e.lineType} ${e.colorBorder}`,borderBottom:`${(0,r.unit)(e.lineWidth)} ${e.lineType} ${e.colorBorder}`},"&-addon:last-child":{borderInlineEnd:`${(0,r.unit)(e.lineWidth)} ${e.lineType} ${e.colorBorder}`,borderTop:`${(0,r.unit)(e.lineWidth)} ${e.lineType} ${e.colorBorder}`,borderBottom:`${(0,r.unit)(e.lineWidth)} ${e.lineType} ${e.colorBorder}`}}}})})},57737:(e,t,n)=>{"use strict";function r(e){return!!(e.prefix||e.suffix||e.allowClear||e.showCount)}n.r(t),n.d(t,{hasPrefixSuffix:()=>r})},76745:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>r});const r=(0,n(36198).createContext)(void 0)},40378:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>l});var r=n(62906),o=n(74228),i=n(9674),a=n(42115);const s="${label} is not a valid ${type}",l={locale:"en",Pagination:r.default,DatePicker:i.default,TimePicker:a.default,Calendar:o.default,global:{placeholder:"Please select"},Table:{filterTitle:"Filter menu",filterConfirm:"OK",filterReset:"Reset",filterEmptyText:"No filters",filterCheckall:"Select all items",filterSearchPlaceholder:"Search in filters",emptyText:"No data",selectAll:"Select current page",selectInvert:"Invert current page",selectNone:"Clear all data",selectionAll:"Select all data",sortTitle:"Sort",expand:"Expand row",collapse:"Collapse row",triggerDesc:"Click to sort descending",triggerAsc:"Click to sort ascending",cancelSort:"Click to cancel sorting"},Tour:{Next:"Next",Previous:"Previous",Finish:"Finish"},Modal:{okText:"OK",cancelText:"Cancel",justOkText:"OK"},Popconfirm:{okText:"OK",cancelText:"Cancel"},Transfer:{titles:["",""],searchPlaceholder:"Search here",itemUnit:"item",itemsUnit:"items",remove:"Remove",selectCurrent:"Select current page",removeCurrent:"Remove current page",selectAll:"Select all data",deselectAll:"Deselect all data",removeAll:"Remove all data",selectInvert:"Invert current page"},Upload:{uploading:"Uploading...",removeFile:"Remove file",uploadError:"Upload error",previewFile:"Preview file",downloadFile:"Download file"},Empty:{description:"No data"},Icon:{icon:"icon"},Text:{edit:"Edit",copy:"Copy",copied:"Copied",expand:"Expand",collapse:"Collapse"},Form:{optional:"(optional)",defaultValidateMessages:{default:"Field validation error for ${label}",required:"Please enter ${label}",enum:"${label} must be one of [${enum}]",whitespace:"${label} cannot be a blank character",date:{format:"${label} date format is invalid",parse:"${label} cannot be converted to a date",invalid:"${label} is an invalid date"},types:{string:s,method:s,array:s,object:s,number:s,date:s,boolean:s,integer:s,float:s,regexp:s,email:s,url:s,hex:s},string:{len:"${label} must be ${len} characters",min:"${label} must be at least ${min} characters",max:"${label} must be up to ${max} characters",range:"${label} must be between ${min}-${max} characters"},number:{len:"${label} must be equal to ${len}",min:"${label} must be minimum ${min}",max:"${label} must be maximum ${max}",range:"${label} must be between ${min}-${max}"},array:{len:"Must be ${len} ${label}",min:"At least ${min} ${label}",max:"At most ${max} ${label}",range:"The amount of ${label} must be between ${min}-${max}"},pattern:{mismatch:"${label} does not match the pattern ${pattern}"}}},Image:{preview:"Preview"},QRCode:{expired:"QR code expired",refresh:"Refresh",scanned:"Scanned"},ColorPicker:{presetEmpty:"Empty"}}},94634:(e,t,n)=>{"use strict";n.r(t),n.d(t,{ANT_MARK:()=>s,default:()=>l,useLocale:()=>a.default});var r=n(36198),o=(n(27288),n(83008)),i=n(76745),a=n(10110);const s="internalMark";const l=e=>{const{locale:t={},children:n,_ANT_MARK__:a}=e;r.useEffect((()=>(0,o.changeConfirmLocale)(t&&t.Modal)),[t]);const s=r.useMemo((()=>Object.assign(Object.assign({},t),{exist:!0})),[t]);return r.createElement(i.default.Provider,{value:s},n)}},10110:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>a});var r=n(36198),o=n(76745),i=n(40378);const a=(e,t)=>{const n=r.useContext(o.default);return[r.useMemo((()=>{var r;const o=t||i.default[e],a=null!==(r=null==n?void 0:n[e])&&void 0!==r?r:{};return Object.assign(Object.assign({},"function"==typeof o?o():o),a||{})}),[e,t,n]),r.useMemo((()=>{const e=null==n?void 0:n.locale;return(null==n?void 0:n.exist)&&!e?i.default.locale:e}),[n])]}},83008:(e,t,n)=>{"use strict";n.r(t),n.d(t,{changeConfirmLocale:()=>s,getConfirmLocale:()=>l});var r=n(40378);let o=Object.assign({},r.default.Modal),i=[];const a=()=>i.reduce(((e,t)=>Object.assign(Object.assign({},e),t)),r.default.Modal);function s(e){if(e){const t=Object.assign({},e);return i.push(t),o=a(),()=>{i=i.filter((e=>e!==t)),o=a()}}o=Object.assign({},r.default.Modal)}function l(){return o}},4173:(e,t,n)=>{"use strict";n.r(t),n.d(t,{NoCompactStyle:()=>h,SpaceCompactItemContext:()=>d,default:()=>m,useCompactItemContext:()=>f});var r=n(36198),o=n(93967),i=n.n(o),a=n(50344),s=n(49134),l=n(98675),c=n(49111),u=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&t.indexOf(r)<0&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var o=0;for(r=Object.getOwnPropertySymbols(e);o{const n=r.useContext(d),o=r.useMemo((()=>{if(!n)return"";const{compactDirection:r,isFirstItem:o,isLastItem:a}=n,s="vertical"===r?"-vertical-":"-";return i()(`${e}-compact${s}item`,{[`${e}-compact${s}first-item`]:o,[`${e}-compact${s}last-item`]:a,[`${e}-compact${s}item-rtl`]:"rtl"===t})}),[e,t,n]);return{compactSize:null==n?void 0:n.compactSize,compactDirection:null==n?void 0:n.compactDirection,compactItemClassnames:o}},h=e=>{let{children:t}=e;return r.createElement(d.Provider,{value:null},t)},p=e=>{var{children:t}=e,n=u(e,["children"]);return r.createElement(d.Provider,{value:n},t)},m=e=>{const{getPrefixCls:t,direction:n}=r.useContext(s.ConfigContext),{size:o,direction:f,block:h,prefixCls:m,className:g,rootClassName:y,children:v}=e,b=u(e,["size","direction","block","prefixCls","className","rootClassName","children"]),O=(0,l.default)((e=>null!=o?o:e)),w=t("space-compact",m),[S,x]=(0,c.default)(w),E=i()(w,x,{[`${w}-rtl`]:"rtl"===n,[`${w}-block`]:h,[`${w}-vertical`]:"vertical"===f},g,y),T=r.useContext(d),C=(0,a.default)(v),P=r.useMemo((()=>C.map(((e,t)=>{const n=e&&e.key||`${w}-item-${t}`;return r.createElement(p,{key:n,compactSize:O,compactDirection:f,isFirstItem:0===t&&(!T||(null==T?void 0:T.isFirstItem)),isLastItem:t===C.length-1&&(!T||(null==T?void 0:T.isLastItem))},e)}))),[o,C,T]);return 0===C.length?null:S(r.createElement("div",Object.assign({className:E},b),P))}},66564:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>r});const r=e=>{const{componentCls:t}=e;return{[t]:{"&-block":{display:"flex",width:"100%"},"&-vertical":{flexDirection:"column"}}}}},49111:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>l,prepareComponentToken:()=>s});var r=n(12641),o=n(66564);const i=e=>{const{componentCls:t,antCls:n}=e;return{[t]:{display:"inline-flex","&-rtl":{direction:"rtl"},"&-vertical":{flexDirection:"column"},"&-align":{flexDirection:"column","&-center":{alignItems:"center"},"&-start":{alignItems:"flex-start"},"&-end":{alignItems:"flex-end"},"&-baseline":{alignItems:"baseline"}},[`${t}-item:empty`]:{display:"none"},[`${t}-item > ${n}-badge-not-a-wrapper:only-child`]:{display:"block"}}}},a=e=>{const{componentCls:t}=e;return{[t]:{"&-gap-row-small":{rowGap:e.spaceGapSmallSize},"&-gap-row-middle":{rowGap:e.spaceGapMiddleSize},"&-gap-row-large":{rowGap:e.spaceGapLargeSize},"&-gap-col-small":{columnGap:e.spaceGapSmallSize},"&-gap-col-middle":{columnGap:e.spaceGapMiddleSize},"&-gap-col-large":{columnGap:e.spaceGapLargeSize}}}},s=()=>({}),l=(0,r.genStyleHooks)("Space",(e=>{const t=(0,r.mergeToken)(e,{spaceGapSmallSize:e.paddingXS,spaceGapMiddleSize:e.padding,spaceGapLargeSize:e.paddingLG});return[i(t),a(t),(0,o.default)(t)]}),(()=>({})),{resetStyle:!1})},54228:(e,t,n)=>{"use strict";function r(e,t){return{[`&-item:not(${t}-last-item)`]:{marginBottom:e.calc(e.lineWidth).mul(-1).equal()},"&-item":{"&:hover,&:focus,&:active":{zIndex:2},"&[disabled]":{zIndex:0}}}}function o(e){const t=`${e.componentCls}-compact-vertical`;return{[t]:Object.assign(Object.assign({},r(e,t)),(n=e.componentCls,o=t,{[`&-item:not(${o}-first-item):not(${o}-last-item)`]:{borderRadius:0},[`&-item${o}-first-item:not(${o}-last-item)`]:{[`&, &${n}-sm, &${n}-lg`]:{borderEndEndRadius:0,borderEndStartRadius:0}},[`&-item${o}-last-item:not(${o}-first-item)`]:{[`&, &${n}-sm, &${n}-lg`]:{borderStartStartRadius:0,borderStartEndRadius:0}}}))};var n,o}n.r(t),n.d(t,{genCompactItemVerticalStyle:()=>o})},80110:(e,t,n)=>{"use strict";function r(e,t,n){const{focusElCls:r,focus:o,borderElCls:i}=n,a=i?"> *":"",s=["hover",o?"focus":null,"active"].filter(Boolean).map((e=>`&:${e} ${a}`)).join(",");return{[`&-item:not(${t}-last-item)`]:{marginInlineEnd:e.calc(e.lineWidth).mul(-1).equal()},"&-item":Object.assign(Object.assign({[s]:{zIndex:2}},r?{[`&${r}`]:{zIndex:2}}:{}),{[`&[disabled] ${a}`]:{zIndex:0}})}}function o(e,t,n){const{borderElCls:r}=n,o=r?`> ${r}`:"";return{[`&-item:not(${t}-first-item):not(${t}-last-item) ${o}`]:{borderRadius:0},[`&-item:not(${t}-last-item)${t}-first-item`]:{[`& ${o}, &${e}-sm ${o}, &${e}-lg ${o}`]:{borderStartEndRadius:0,borderEndEndRadius:0}},[`&-item:not(${t}-first-item)${t}-last-item`]:{[`& ${o}, &${e}-sm ${o}, &${e}-lg ${o}`]:{borderStartStartRadius:0,borderEndStartRadius:0}}}}function i(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{focus:!0};const{componentCls:n}=e,i=`${n}-compact`;return{[i]:Object.assign(Object.assign({},r(e,i,t)),o(n,i,t))}}n.r(t),n.d(t,{genCompactItemStyle:()=>i})},14747:(e,t,n)=>{"use strict";n.r(t),n.d(t,{clearFix:()=>l,genCommonStyle:()=>u,genFocusOutline:()=>d,genFocusStyle:()=>f,genLinkStyle:()=>c,operationUnit:()=>o.operationUnit,resetComponent:()=>a,resetIcon:()=>s,textEllipsis:()=>i});var r=n(78419),o=n(49867);const i={overflow:"hidden",whiteSpace:"nowrap",textOverflow:"ellipsis"},a=function(e){let t=arguments.length>1&&void 0!==arguments[1]&&arguments[1];return{boxSizing:"border-box",margin:0,padding:0,color:e.colorText,fontSize:e.fontSize,lineHeight:e.lineHeight,listStyle:"none",fontFamily:t?"inherit":e.fontFamily}},s=()=>({display:"inline-flex",alignItems:"center",color:"inherit",fontStyle:"normal",lineHeight:0,textAlign:"center",textTransform:"none",verticalAlign:"-0.125em",textRendering:"optimizeLegibility","-webkit-font-smoothing":"antialiased","-moz-osx-font-smoothing":"grayscale","> *":{lineHeight:1},svg:{display:"inline-block"}}),l=()=>({"&::before":{display:"table",content:'""'},"&::after":{display:"table",clear:"both",content:'""'}}),c=e=>({a:{color:e.colorLink,textDecoration:e.linkDecoration,backgroundColor:"transparent",outline:"none",cursor:"pointer",transition:`color ${e.motionDurationSlow}`,"-webkit-text-decoration-skip":"objects","&:hover":{color:e.colorLinkHover},"&:active":{color:e.colorLinkActive},"&:active,\n &:hover":{textDecoration:e.linkHoverDecoration,outline:0},"&:focus":{textDecoration:e.linkFocusDecoration,outline:0},"&[disabled]":{color:e.colorTextDisabled,cursor:"not-allowed"}}}),u=(e,t,n,r)=>{const o=`[class^="${t}"], [class*=" ${t}"]`,i=n?`.${n}`:o,a={boxSizing:"border-box","&::before, &::after":{boxSizing:"border-box"}};let s={};return!1!==r&&(s={fontFamily:e.fontFamily,fontSize:e.fontSize}),{[i]:Object.assign(Object.assign(Object.assign({},s),a),{[o]:a})}},d=e=>({outline:`${(0,r.unit)(e.lineWidthFocus)} solid ${e.colorPrimaryBorder}`,outlineOffset:1,transition:"outline-offset 0s, outline 0s"}),f=e=>({"&:focus-visible":Object.assign({},d(e))})},33507:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>r});const r=e=>({[e.componentCls]:{[`${e.antCls}-motion-collapse-legacy`]:{overflow:"hidden","&-active":{transition:`height ${e.motionDurationMid} ${e.motionEaseInOut},\n opacity ${e.motionDurationMid} ${e.motionEaseInOut} !important`}},[`${e.antCls}-motion-collapse`]:{overflow:"hidden",transition:`height ${e.motionDurationMid} ${e.motionEaseInOut},\n opacity ${e.motionDurationMid} ${e.motionEaseInOut} !important`}}})},16932:(e,t,n)=>{"use strict";n.r(t),n.d(t,{fadeIn:()=>i,fadeOut:()=>a,initFadeMotion:()=>s});var r=n(78419),o=n(93590);const i=new r.Keyframes("antFadeIn",{"0%":{opacity:0},"100%":{opacity:1}}),a=new r.Keyframes("antFadeOut",{"0%":{opacity:1},"100%":{opacity:0}}),s=function(e){let t=arguments.length>1&&void 0!==arguments[1]&&arguments[1];const{antCls:n}=e,r=`${n}-fade`,s=t?"&":"";return[(0,o.initMotion)(r,i,a,e.motionDurationMid,t),{[`\n ${s}${r}-enter,\n ${s}${r}-appear\n `]:{opacity:0,animationTimingFunction:"linear"},[`${s}${r}-leave`]:{animationTimingFunction:"linear"}}]}},97229:(e,t,n)=>{"use strict";n.r(t),n.d(t,{fadeIn:()=>o.fadeIn,fadeOut:()=>o.fadeOut,genCollapseMotion:()=>r.default,initFadeMotion:()=>o.initFadeMotion,initMoveMotion:()=>i.initMoveMotion,initSlideMotion:()=>a.initSlideMotion,initZoomMotion:()=>s.initZoomMotion,moveDownIn:()=>i.moveDownIn,moveDownOut:()=>i.moveDownOut,moveLeftIn:()=>i.moveLeftIn,moveLeftOut:()=>i.moveLeftOut,moveRightIn:()=>i.moveRightIn,moveRightOut:()=>i.moveRightOut,moveUpIn:()=>i.moveUpIn,moveUpOut:()=>i.moveUpOut,slideDownIn:()=>a.slideDownIn,slideDownOut:()=>a.slideDownOut,slideLeftIn:()=>a.slideLeftIn,slideLeftOut:()=>a.slideLeftOut,slideRightIn:()=>a.slideRightIn,slideRightOut:()=>a.slideRightOut,slideUpIn:()=>a.slideUpIn,slideUpOut:()=>a.slideUpOut,zoomBigIn:()=>s.zoomBigIn,zoomBigOut:()=>s.zoomBigOut,zoomDownIn:()=>s.zoomDownIn,zoomDownOut:()=>s.zoomDownOut,zoomIn:()=>s.zoomIn,zoomLeftIn:()=>s.zoomLeftIn,zoomLeftOut:()=>s.zoomLeftOut,zoomOut:()=>s.zoomOut,zoomRightIn:()=>s.zoomRightIn,zoomRightOut:()=>s.zoomRightOut,zoomUpIn:()=>s.zoomUpIn,zoomUpOut:()=>s.zoomUpOut});var r=n(33507),o=n(16932),i=n(33297),a=n(67771),s=n(50438)},93590:(e,t,n)=>{"use strict";n.r(t),n.d(t,{initMotion:()=>i});const r=e=>({animationDuration:e,animationFillMode:"both"}),o=e=>({animationDuration:e,animationFillMode:"both"}),i=function(e,t,n,i){const a=arguments.length>4&&void 0!==arguments[4]&&arguments[4]?"&":"";return{[`\n ${a}${e}-enter,\n ${a}${e}-appear\n `]:Object.assign(Object.assign({},r(i)),{animationPlayState:"paused"}),[`${a}${e}-leave`]:Object.assign(Object.assign({},o(i)),{animationPlayState:"paused"}),[`\n ${a}${e}-enter${e}-enter-active,\n ${a}${e}-appear${e}-appear-active\n `]:{animationName:t,animationPlayState:"running"},[`${a}${e}-leave${e}-leave-active`]:{animationName:n,animationPlayState:"running",pointerEvents:"none"}}}},33297:(e,t,n)=>{"use strict";n.r(t),n.d(t,{initMoveMotion:()=>p,moveDownIn:()=>i,moveDownOut:()=>a,moveLeftIn:()=>s,moveLeftOut:()=>l,moveRightIn:()=>c,moveRightOut:()=>u,moveUpIn:()=>d,moveUpOut:()=>f});var r=n(78419),o=n(93590);const i=new r.Keyframes("antMoveDownIn",{"0%":{transform:"translate3d(0, 100%, 0)",transformOrigin:"0 0",opacity:0},"100%":{transform:"translate3d(0, 0, 0)",transformOrigin:"0 0",opacity:1}}),a=new r.Keyframes("antMoveDownOut",{"0%":{transform:"translate3d(0, 0, 0)",transformOrigin:"0 0",opacity:1},"100%":{transform:"translate3d(0, 100%, 0)",transformOrigin:"0 0",opacity:0}}),s=new r.Keyframes("antMoveLeftIn",{"0%":{transform:"translate3d(-100%, 0, 0)",transformOrigin:"0 0",opacity:0},"100%":{transform:"translate3d(0, 0, 0)",transformOrigin:"0 0",opacity:1}}),l=new r.Keyframes("antMoveLeftOut",{"0%":{transform:"translate3d(0, 0, 0)",transformOrigin:"0 0",opacity:1},"100%":{transform:"translate3d(-100%, 0, 0)",transformOrigin:"0 0",opacity:0}}),c=new r.Keyframes("antMoveRightIn",{"0%":{transform:"translate3d(100%, 0, 0)",transformOrigin:"0 0",opacity:0},"100%":{transform:"translate3d(0, 0, 0)",transformOrigin:"0 0",opacity:1}}),u=new r.Keyframes("antMoveRightOut",{"0%":{transform:"translate3d(0, 0, 0)",transformOrigin:"0 0",opacity:1},"100%":{transform:"translate3d(100%, 0, 0)",transformOrigin:"0 0",opacity:0}}),d=new r.Keyframes("antMoveUpIn",{"0%":{transform:"translate3d(0, -100%, 0)",transformOrigin:"0 0",opacity:0},"100%":{transform:"translate3d(0, 0, 0)",transformOrigin:"0 0",opacity:1}}),f=new r.Keyframes("antMoveUpOut",{"0%":{transform:"translate3d(0, 0, 0)",transformOrigin:"0 0",opacity:1},"100%":{transform:"translate3d(0, -100%, 0)",transformOrigin:"0 0",opacity:0}}),h={"move-up":{inKeyframes:d,outKeyframes:f},"move-down":{inKeyframes:i,outKeyframes:a},"move-left":{inKeyframes:s,outKeyframes:l},"move-right":{inKeyframes:c,outKeyframes:u}},p=(e,t)=>{const{antCls:n}=e,r=`${n}-${t}`,{inKeyframes:i,outKeyframes:a}=h[t];return[(0,o.initMotion)(r,i,a,e.motionDurationMid),{[`\n ${r}-enter,\n ${r}-appear\n `]:{opacity:0,animationTimingFunction:e.motionEaseOutCirc},[`${r}-leave`]:{animationTimingFunction:e.motionEaseInOutCirc}}]}},67771:(e,t,n)=>{"use strict";n.r(t),n.d(t,{initSlideMotion:()=>p,slideDownIn:()=>s,slideDownOut:()=>l,slideLeftIn:()=>c,slideLeftOut:()=>u,slideRightIn:()=>d,slideRightOut:()=>f,slideUpIn:()=>i,slideUpOut:()=>a});var r=n(78419),o=n(93590);const i=new r.Keyframes("antSlideUpIn",{"0%":{transform:"scaleY(0.8)",transformOrigin:"0% 0%",opacity:0},"100%":{transform:"scaleY(1)",transformOrigin:"0% 0%",opacity:1}}),a=new r.Keyframes("antSlideUpOut",{"0%":{transform:"scaleY(1)",transformOrigin:"0% 0%",opacity:1},"100%":{transform:"scaleY(0.8)",transformOrigin:"0% 0%",opacity:0}}),s=new r.Keyframes("antSlideDownIn",{"0%":{transform:"scaleY(0.8)",transformOrigin:"100% 100%",opacity:0},"100%":{transform:"scaleY(1)",transformOrigin:"100% 100%",opacity:1}}),l=new r.Keyframes("antSlideDownOut",{"0%":{transform:"scaleY(1)",transformOrigin:"100% 100%",opacity:1},"100%":{transform:"scaleY(0.8)",transformOrigin:"100% 100%",opacity:0}}),c=new r.Keyframes("antSlideLeftIn",{"0%":{transform:"scaleX(0.8)",transformOrigin:"0% 0%",opacity:0},"100%":{transform:"scaleX(1)",transformOrigin:"0% 0%",opacity:1}}),u=new r.Keyframes("antSlideLeftOut",{"0%":{transform:"scaleX(1)",transformOrigin:"0% 0%",opacity:1},"100%":{transform:"scaleX(0.8)",transformOrigin:"0% 0%",opacity:0}}),d=new r.Keyframes("antSlideRightIn",{"0%":{transform:"scaleX(0.8)",transformOrigin:"100% 0%",opacity:0},"100%":{transform:"scaleX(1)",transformOrigin:"100% 0%",opacity:1}}),f=new r.Keyframes("antSlideRightOut",{"0%":{transform:"scaleX(1)",transformOrigin:"100% 0%",opacity:1},"100%":{transform:"scaleX(0.8)",transformOrigin:"100% 0%",opacity:0}}),h={"slide-up":{inKeyframes:i,outKeyframes:a},"slide-down":{inKeyframes:s,outKeyframes:l},"slide-left":{inKeyframes:c,outKeyframes:u},"slide-right":{inKeyframes:d,outKeyframes:f}},p=(e,t)=>{const{antCls:n}=e,r=`${n}-${t}`,{inKeyframes:i,outKeyframes:a}=h[t];return[(0,o.initMotion)(r,i,a,e.motionDurationMid),{[`\n ${r}-enter,\n ${r}-appear\n `]:{transform:"scale(0)",transformOrigin:"0% 0%",opacity:0,animationTimingFunction:e.motionEaseOutQuint,"&-prepare":{transform:"scale(1)"}},[`${r}-leave`]:{animationTimingFunction:e.motionEaseInQuint}}]}},50438:(e,t,n)=>{"use strict";n.r(t),n.d(t,{initZoomMotion:()=>v,zoomBigIn:()=>s,zoomBigOut:()=>l,zoomDownIn:()=>m,zoomDownOut:()=>g,zoomIn:()=>i,zoomLeftIn:()=>d,zoomLeftOut:()=>f,zoomOut:()=>a,zoomRightIn:()=>h,zoomRightOut:()=>p,zoomUpIn:()=>c,zoomUpOut:()=>u});var r=n(78419),o=n(93590);const i=new r.Keyframes("antZoomIn",{"0%":{transform:"scale(0.2)",opacity:0},"100%":{transform:"scale(1)",opacity:1}}),a=new r.Keyframes("antZoomOut",{"0%":{transform:"scale(1)"},"100%":{transform:"scale(0.2)",opacity:0}}),s=new r.Keyframes("antZoomBigIn",{"0%":{transform:"scale(0.8)",opacity:0},"100%":{transform:"scale(1)",opacity:1}}),l=new r.Keyframes("antZoomBigOut",{"0%":{transform:"scale(1)"},"100%":{transform:"scale(0.8)",opacity:0}}),c=new r.Keyframes("antZoomUpIn",{"0%":{transform:"scale(0.8)",transformOrigin:"50% 0%",opacity:0},"100%":{transform:"scale(1)",transformOrigin:"50% 0%"}}),u=new r.Keyframes("antZoomUpOut",{"0%":{transform:"scale(1)",transformOrigin:"50% 0%"},"100%":{transform:"scale(0.8)",transformOrigin:"50% 0%",opacity:0}}),d=new r.Keyframes("antZoomLeftIn",{"0%":{transform:"scale(0.8)",transformOrigin:"0% 50%",opacity:0},"100%":{transform:"scale(1)",transformOrigin:"0% 50%"}}),f=new r.Keyframes("antZoomLeftOut",{"0%":{transform:"scale(1)",transformOrigin:"0% 50%"},"100%":{transform:"scale(0.8)",transformOrigin:"0% 50%",opacity:0}}),h=new r.Keyframes("antZoomRightIn",{"0%":{transform:"scale(0.8)",transformOrigin:"100% 50%",opacity:0},"100%":{transform:"scale(1)",transformOrigin:"100% 50%"}}),p=new r.Keyframes("antZoomRightOut",{"0%":{transform:"scale(1)",transformOrigin:"100% 50%"},"100%":{transform:"scale(0.8)",transformOrigin:"100% 50%",opacity:0}}),m=new r.Keyframes("antZoomDownIn",{"0%":{transform:"scale(0.8)",transformOrigin:"50% 100%",opacity:0},"100%":{transform:"scale(1)",transformOrigin:"50% 100%"}}),g=new r.Keyframes("antZoomDownOut",{"0%":{transform:"scale(1)",transformOrigin:"50% 100%"},"100%":{transform:"scale(0.8)",transformOrigin:"50% 100%",opacity:0}}),y={zoom:{inKeyframes:i,outKeyframes:a},"zoom-big":{inKeyframes:s,outKeyframes:l},"zoom-big-fast":{inKeyframes:s,outKeyframes:l},"zoom-left":{inKeyframes:d,outKeyframes:f},"zoom-right":{inKeyframes:h,outKeyframes:p},"zoom-up":{inKeyframes:c,outKeyframes:u},"zoom-down":{inKeyframes:m,outKeyframes:g}},v=(e,t)=>{const{antCls:n}=e,r=`${n}-${t}`,{inKeyframes:i,outKeyframes:a}=y[t];return[(0,o.initMotion)(r,i,a,"zoom-big-fast"===t?e.motionDurationFast:e.motionDurationMid),{[`\n ${r}-enter,\n ${r}-appear\n `]:{transform:"scale(0)",opacity:0,animationTimingFunction:e.motionEaseOutCirc,"&-prepare":{transform:"none"}},[`${r}-leave`]:{animationTimingFunction:e.motionEaseInOutCirc}}]}},49867:(e,t,n)=>{"use strict";n.r(t),n.d(t,{operationUnit:()=>r});const r=e=>({color:e.colorLink,textDecoration:"none",outline:"none",cursor:"pointer",transition:`color ${e.motionDurationSlow}`,"&:focus, &:hover":{color:e.colorLinkHover},"&:active":{color:e.colorLinkActive}})},33083:(e,t,n)=>{"use strict";n.r(t),n.d(t,{DesignTokenContext:()=>c,defaultConfig:()=>l,defaultTheme:()=>s});var r=n(36198),o=n(78419),i=n(5767),a=n(2790);const s=(0,o.createTheme)(i.default),l={token:a.default,override:{override:a.default},hashed:!0},c=r.createContext(l)},33363:(e,t,n)=>{"use strict";n.r(t),n.d(t,{PresetColors:()=>r.PresetColors});var r=n(8796)},8796:(e,t,n)=>{"use strict";n.r(t),n.d(t,{PresetColors:()=>r});const r=["blue","purple","cyan","green","magenta","pink","red","orange","yellow","volcano","geekblue","lime","gold"]},12641:(e,t,n)=>{"use strict";n.r(t),n.d(t,{DesignTokenContext:()=>f.DesignTokenContext,PresetColors:()=>o.PresetColors,calc:()=>s.default,defaultConfig:()=>f.defaultConfig,genComponentStyleHook:()=>l.default,genPresetColor:()=>c.default,genStyleHooks:()=>l.genStyleHooks,genSubStyleComponent:()=>l.genSubStyleComponent,getLineHeight:()=>i.getLineHeight,mergeToken:()=>u.merge,statisticToken:()=>u.default,useResetIconStyle:()=>d.default,useStyleRegister:()=>r.useStyleRegister,useToken:()=>a.default});var r=n(78419),o=n(33363),i=n(51734),a=n(29691),s=n(70863),l=n(67968),c=n(98719),u=n(45503),d=n(53269),f=n(33083)},1162:(e,t,n)=>{"use strict";n.r(t),n.d(t,{getAlphaColor:()=>o,getSolidColor:()=>i});var r=n(41191);const o=(e,t)=>new r.TinyColor(e).setAlpha(t).toRgbString(),i=(e,t)=>new r.TinyColor(e).darken(t).toHexString()},5632:(e,t,n)=>{"use strict";n.r(t),n.d(t,{generateColorPalettes:()=>i,generateNeutralColorPalettes:()=>a});var r=n(11305),o=n(1162);const i=e=>{const t=(0,r.generate)(e);return{1:t[0],2:t[1],3:t[2],4:t[3],5:t[4],6:t[5],7:t[6],8:t[4],9:t[5],10:t[6]}},a=(e,t)=>{const n=e||"#fff",r=t||"#000";return{colorBgBase:n,colorTextBase:r,colorText:(0,o.getAlphaColor)(r,.88),colorTextSecondary:(0,o.getAlphaColor)(r,.65),colorTextTertiary:(0,o.getAlphaColor)(r,.45),colorTextQuaternary:(0,o.getAlphaColor)(r,.25),colorFill:(0,o.getAlphaColor)(r,.15),colorFillSecondary:(0,o.getAlphaColor)(r,.06),colorFillTertiary:(0,o.getAlphaColor)(r,.04),colorFillQuaternary:(0,o.getAlphaColor)(r,.02),colorBgLayout:(0,o.getSolidColor)(n,4),colorBgContainer:(0,o.getSolidColor)(n,0),colorBgElevated:(0,o.getSolidColor)(n,0),colorBgSpotlight:(0,o.getAlphaColor)(r,.85),colorBgBlur:"transparent",colorBorder:(0,o.getSolidColor)(n,15),colorBorderSecondary:(0,o.getSolidColor)(n,6)}}},5767:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>d});var r=n(11305),o=n(2790),i=n(57),a=n(4451),s=n(372),l=n(69594),c=n(61268),u=n(5632);function d(e){const t=Object.keys(o.defaultPresetColors).map((t=>{const n=(0,r.generate)(e[t]);return new Array(10).fill(1).reduce(((e,r,o)=>(e[`${t}-${o+1}`]=n[o],e[`${t}${o+1}`]=n[o],e)),{})})).reduce(((e,t)=>e=Object.assign(Object.assign({},e),t)),{});return Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({},e),t),(0,i.default)(e,{generateColorPalettes:u.generateColorPalettes,generateNeutralColorPalettes:u.generateNeutralColorPalettes})),(0,l.default)(e.fontSize)),(0,c.default)(e)),(0,s.default)(e)),(0,a.default)(e))}},2790:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>o,defaultPresetColors:()=>r});const r={blue:"#1677ff",purple:"#722ED1",cyan:"#13C2C2",green:"#52C41A",magenta:"#EB2F96",pink:"#eb2f96",red:"#F5222D",orange:"#FA8C16",yellow:"#FADB14",volcano:"#FA541C",geekblue:"#2F54EB",gold:"#FAAD14",lime:"#A0D911"},o=Object.assign(Object.assign({},r),{colorPrimary:"#1677ff",colorSuccess:"#52c41a",colorWarning:"#faad14",colorError:"#ff4d4f",colorInfo:"#1677ff",colorLink:"",colorTextBase:"",colorBgBase:"",fontFamily:"-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial,\n'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol',\n'Noto Color Emoji'",fontFamilyCode:"'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, Courier, monospace",fontSize:14,lineWidth:1,lineType:"solid",motionUnit:.1,motionBase:0,motionEaseOutCirc:"cubic-bezier(0.08, 0.82, 0.17, 1)",motionEaseInOutCirc:"cubic-bezier(0.78, 0.14, 0.15, 0.86)",motionEaseOut:"cubic-bezier(0.215, 0.61, 0.355, 1)",motionEaseInOut:"cubic-bezier(0.645, 0.045, 0.355, 1)",motionEaseOutBack:"cubic-bezier(0.12, 0.4, 0.29, 1.46)",motionEaseInBack:"cubic-bezier(0.71, -0.46, 0.88, 0.6)",motionEaseInQuint:"cubic-bezier(0.755, 0.05, 0.855, 0.06)",motionEaseOutQuint:"cubic-bezier(0.23, 1, 0.32, 1)",borderRadius:6,sizeUnit:4,sizeStep:4,sizePopupArrow:16,controlHeight:32,zIndexBase:0,zIndexPopupBase:1e3,opacityImage:1,wireframe:!1,motion:!0})},57:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>o});var r=n(41191);function o(e,t){let{generateColorPalettes:n,generateNeutralColorPalettes:o}=t;const{colorSuccess:i,colorWarning:a,colorError:s,colorInfo:l,colorPrimary:c,colorBgBase:u,colorTextBase:d}=e,f=n(c),h=n(i),p=n(a),m=n(s),g=n(l),y=o(u,d),v=n(e.colorLink||e.colorInfo);return Object.assign(Object.assign({},y),{colorPrimaryBg:f[1],colorPrimaryBgHover:f[2],colorPrimaryBorder:f[3],colorPrimaryBorderHover:f[4],colorPrimaryHover:f[5],colorPrimary:f[6],colorPrimaryActive:f[7],colorPrimaryTextHover:f[8],colorPrimaryText:f[9],colorPrimaryTextActive:f[10],colorSuccessBg:h[1],colorSuccessBgHover:h[2],colorSuccessBorder:h[3],colorSuccessBorderHover:h[4],colorSuccessHover:h[4],colorSuccess:h[6],colorSuccessActive:h[7],colorSuccessTextHover:h[8],colorSuccessText:h[9],colorSuccessTextActive:h[10],colorErrorBg:m[1],colorErrorBgHover:m[2],colorErrorBorder:m[3],colorErrorBorderHover:m[4],colorErrorHover:m[5],colorError:m[6],colorErrorActive:m[7],colorErrorTextHover:m[8],colorErrorText:m[9],colorErrorTextActive:m[10],colorWarningBg:p[1],colorWarningBgHover:p[2],colorWarningBorder:p[3],colorWarningBorderHover:p[4],colorWarningHover:p[4],colorWarning:p[6],colorWarningActive:p[7],colorWarningTextHover:p[8],colorWarningText:p[9],colorWarningTextActive:p[10],colorInfoBg:g[1],colorInfoBgHover:g[2],colorInfoBorder:g[3],colorInfoBorderHover:g[4],colorInfoHover:g[4],colorInfo:g[6],colorInfoActive:g[7],colorInfoTextHover:g[8],colorInfoText:g[9],colorInfoTextActive:g[10],colorLinkHover:v[4],colorLink:v[6],colorLinkActive:v[7],colorBgMask:new r.TinyColor("#000").setAlpha(.45).toRgbString(),colorWhite:"#fff"})}},4451:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>o});var r=n(25282);function o(e){const{motionUnit:t,motionBase:n,borderRadius:o,lineWidth:i}=e;return Object.assign({motionDurationFast:`${(n+t).toFixed(1)}s`,motionDurationMid:`${(n+2*t).toFixed(1)}s`,motionDurationSlow:`${(n+3*t).toFixed(1)}s`,lineWidthBold:i+1},(0,r.default)(o))}},372:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>r});const r=e=>{const{controlHeight:t}=e;return{controlHeightSM:.75*t,controlHeightXS:.5*t,controlHeightLG:1.25*t}}},69594:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>o});var r=n(51734);const o=e=>{const t=(0,r.default)(e),n=t.map((e=>e.size)),o=t.map((e=>e.lineHeight)),i=n[1],a=n[0],s=n[2],l=o[1],c=o[0],u=o[2];return{fontSizeSM:a,fontSize:i,fontSizeLG:s,fontSizeXL:n[3],fontSizeHeading1:n[6],fontSizeHeading2:n[5],fontSizeHeading3:n[4],fontSizeHeading4:n[3],fontSizeHeading5:n[2],lineHeight:l,lineHeightLG:u,lineHeightSM:c,fontHeight:Math.round(l*i),fontHeightLG:Math.round(u*s),fontHeightSM:Math.round(c*a),lineHeightHeading1:o[6],lineHeightHeading2:o[5],lineHeightHeading3:o[4],lineHeightHeading4:o[3],lineHeightHeading5:o[2]}}},51734:(e,t,n)=>{"use strict";function r(e){return(e+8)/e}function o(e){const t=new Array(10).fill(null).map(((t,n)=>{const r=n-1,o=e*Math.pow(2.71828,r/5),i=n>1?Math.floor(o):Math.ceil(o);return 2*Math.floor(i/2)}));return t[1]=e,t.map((e=>({size:e,lineHeight:r(e)})))}n.r(t),n.d(t,{default:()=>o,getLineHeight:()=>r})},25282:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>r});const r=e=>{let t=e,n=e,r=e,o=e;return e<6&&e>=5?t=e+1:e<16&&e>=6?t=e+2:e>=16&&(t=16),e<7&&e>=5?n=4:e<8&&e>=7?n=5:e<14&&e>=8?n=6:e<16&&e>=14?n=7:e>=16&&(n=8),e<6&&e>=2?r=1:e>=6&&(r=2),e>4&&e<8?o=4:e>=8&&(o=6),{borderRadius:e,borderRadiusXS:r,borderRadiusSM:n,borderRadiusLG:t,borderRadiusOuter:o}}},61268:(e,t,n)=>{"use strict";function r(e){const{sizeUnit:t,sizeStep:n}=e;return{sizeXXL:t*(n+8),sizeXL:t*(n+4),sizeLG:t*(n+2),sizeMD:t*(n+1),sizeMS:t*n,size:t*n,sizeSM:t*(n-1),sizeXS:t*(n-2),sizeXXS:t*(n-3)}}n.r(t),n.d(t,{default:()=>r})},29691:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>p,getComputedToken:()=>h,ignore:()=>d,unitless:()=>u});var r=n(36198),o=n(78419),i=n(28293),a=n(33083),s=n(2790),l=n(92372),c=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&t.indexOf(r)<0&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var o=0;for(r=Object.getOwnPropertySymbols(e);o{const r=n.getDerivativeToken(e),{override:o}=t,i=c(t,["override"]);let a=Object.assign(Object.assign({},r),{override:o});return a=(0,l.default)(a),i&&Object.entries(i).forEach((e=>{let[t,n]=e;const{theme:r}=n,o=c(n,["theme"]);let i=o;r&&(i=h(Object.assign(Object.assign({},a),o),{override:o},r)),a[t]=i})),a};function p(){const{token:e,hashed:t,theme:n,override:c,cssVar:p}=r.useContext(a.DesignTokenContext),m=`${i.default}-${t||""}`,g=n||a.defaultTheme,[y,v,b]=(0,o.useCacheToken)(g,[s.default,e],{salt:m,override:c,getComputedToken:h,formatToken:l.default,cssVar:p&&{prefix:p.prefix,key:p.key,unitless:u,ignore:d,preserve:f}});return[g,b,t?v:"",y,p]}},92372:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>s});var r=n(41191),o=n(2790),i=n(42642),a=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&t.indexOf(r)<0&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var o=0;for(r=Object.getOwnPropertySymbols(e);o{delete s[e]}));const l=Object.assign(Object.assign({},n),s),c=1200,u=1600;if(!1===l.motion){const e="0s";l.motionDurationFast=e,l.motionDurationMid=e,l.motionDurationSlow=e}return Object.assign(Object.assign(Object.assign({},l),{colorFillContent:l.colorFillSecondary,colorFillContentHover:l.colorFill,colorFillAlter:l.colorFillQuaternary,colorBgContainerDisabled:l.colorFillTertiary,colorBorderBg:l.colorBgContainer,colorSplit:(0,i.default)(l.colorBorderSecondary,l.colorBgContainer),colorTextPlaceholder:l.colorTextQuaternary,colorTextDisabled:l.colorTextQuaternary,colorTextHeading:l.colorText,colorTextLabel:l.colorTextSecondary,colorTextDescription:l.colorTextTertiary,colorTextLightSolid:l.colorWhite,colorHighlight:l.colorError,colorBgTextHover:l.colorFillSecondary,colorBgTextActive:l.colorFill,colorIcon:l.colorTextTertiary,colorIconHover:l.colorText,colorErrorOutline:(0,i.default)(l.colorErrorBg,l.colorBgContainer),colorWarningOutline:(0,i.default)(l.colorWarningBg,l.colorBgContainer),fontSizeIcon:l.fontSizeSM,lineWidthFocus:4*l.lineWidth,lineWidth:l.lineWidth,controlOutlineWidth:2*l.lineWidth,controlInteractiveSize:l.controlHeight/2,controlItemBgHover:l.colorFillTertiary,controlItemBgActive:l.colorPrimaryBg,controlItemBgActiveHover:l.colorPrimaryBgHover,controlItemBgActiveDisabled:l.colorFill,controlTmpOutline:l.colorFillQuaternary,controlOutline:(0,i.default)(l.colorPrimaryBg,l.colorBgContainer),lineType:l.lineType,borderRadius:l.borderRadius,borderRadiusXS:l.borderRadiusXS,borderRadiusSM:l.borderRadiusSM,borderRadiusLG:l.borderRadiusLG,fontWeightStrong:600,opacityLoading:.65,linkDecoration:"none",linkHoverDecoration:"none",linkFocusDecoration:"none",controlPaddingHorizontal:12,controlPaddingHorizontalSM:8,paddingXXS:l.sizeXXS,paddingXS:l.sizeXS,paddingSM:l.sizeSM,padding:l.size,paddingMD:l.sizeMD,paddingLG:l.sizeLG,paddingXL:l.sizeXL,paddingContentHorizontalLG:l.sizeLG,paddingContentVerticalLG:l.sizeMS,paddingContentHorizontal:l.sizeMS,paddingContentVertical:l.sizeSM,paddingContentHorizontalSM:l.size,paddingContentVerticalSM:l.sizeXS,marginXXS:l.sizeXXS,marginXS:l.sizeXS,marginSM:l.sizeSM,margin:l.size,marginMD:l.sizeMD,marginLG:l.sizeLG,marginXL:l.sizeXL,marginXXL:l.sizeXXL,boxShadow:"\n 0 6px 16px 0 rgba(0, 0, 0, 0.08),\n 0 3px 6px -4px rgba(0, 0, 0, 0.12),\n 0 9px 28px 8px rgba(0, 0, 0, 0.05)\n ",boxShadowSecondary:"\n 0 6px 16px 0 rgba(0, 0, 0, 0.08),\n 0 3px 6px -4px rgba(0, 0, 0, 0.12),\n 0 9px 28px 8px rgba(0, 0, 0, 0.05)\n ",boxShadowTertiary:"\n 0 1px 2px 0 rgba(0, 0, 0, 0.03),\n 0 1px 6px -1px rgba(0, 0, 0, 0.02),\n 0 2px 4px 0 rgba(0, 0, 0, 0.02)\n ",screenXS:480,screenXSMin:480,screenXSMax:575,screenSM:576,screenSMMin:576,screenSMMax:767,screenMD:768,screenMDMin:768,screenMDMax:991,screenLG:992,screenLGMin:992,screenLGMax:1199,screenXL:c,screenXLMin:c,screenXLMax:1599,screenXXL:u,screenXXLMin:u,boxShadowPopoverArrow:"2px 2px 5px rgba(0, 0, 0, 0.05)",boxShadowCard:`\n 0 1px 2px -2px ${new r.TinyColor("rgba(0, 0, 0, 0.16)").toRgbString()},\n 0 3px 6px 0 ${new r.TinyColor("rgba(0, 0, 0, 0.12)").toRgbString()},\n 0 5px 12px 4px ${new r.TinyColor("rgba(0, 0, 0, 0.09)").toRgbString()}\n `,boxShadowDrawerRight:"\n -6px 0 16px 0 rgba(0, 0, 0, 0.08),\n -3px 0 6px -4px rgba(0, 0, 0, 0.12),\n -9px 0 28px 8px rgba(0, 0, 0, 0.05)\n ",boxShadowDrawerLeft:"\n 6px 0 16px 0 rgba(0, 0, 0, 0.08),\n 3px 0 6px -4px rgba(0, 0, 0, 0.12),\n 9px 0 28px 8px rgba(0, 0, 0, 0.05)\n ",boxShadowDrawerUp:"\n 0 6px 16px 0 rgba(0, 0, 0, 0.08),\n 0 3px 6px -4px rgba(0, 0, 0, 0.12),\n 0 9px 28px 8px rgba(0, 0, 0, 0.05)\n ",boxShadowDrawerDown:"\n 0 -6px 16px 0 rgba(0, 0, 0, 0.08),\n 0 -3px 6px -4px rgba(0, 0, 0, 0.12),\n 0 -9px 28px 8px rgba(0, 0, 0, 0.05)\n ",boxShadowTabsOverflowLeft:"inset 10px 0 8px -8px rgba(0, 0, 0, 0.08)",boxShadowTabsOverflowRight:"inset -10px 0 8px -8px rgba(0, 0, 0, 0.08)",boxShadowTabsOverflowTop:"inset 0 10px 8px -8px rgba(0, 0, 0, 0.08)",boxShadowTabsOverflowBottom:"inset 0 -10px 8px -8px rgba(0, 0, 0, 0.08)"}),s)}},34680:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>d});var r=n(15671),o=n(43144),i=n(53640),a=n(60136),s=n(76824);const l="CALC_UNIT",c=new RegExp(l,"g");function u(e){return"number"==typeof e?`${e}${l}`:e}let d=function(e){function t(e){var n;return(0,r.default)(this,t),(n=(0,i.default)(this,t)).result="",e instanceof t?n.result=`(${e.result})`:"number"==typeof e?n.result=u(e):"string"==typeof e&&(n.result=e),n}return(0,a.default)(t,e),(0,o.default)(t,[{key:"add",value:function(e){return e instanceof t?this.result=`${this.result} + ${e.getResult()}`:"number"!=typeof e&&"string"!=typeof e||(this.result=`${this.result} + ${u(e)}`),this.lowPriority=!0,this}},{key:"sub",value:function(e){return e instanceof t?this.result=`${this.result} - ${e.getResult()}`:"number"!=typeof e&&"string"!=typeof e||(this.result=`${this.result} - ${u(e)}`),this.lowPriority=!0,this}},{key:"mul",value:function(e){return this.lowPriority&&(this.result=`(${this.result})`),e instanceof t?this.result=`${this.result} * ${e.getResult(!0)}`:"number"!=typeof e&&"string"!=typeof e||(this.result=`${this.result} * ${e}`),this.lowPriority=!1,this}},{key:"div",value:function(e){return this.lowPriority&&(this.result=`(${this.result})`),e instanceof t?this.result=`${this.result} / ${e.getResult(!0)}`:"number"!=typeof e&&"string"!=typeof e||(this.result=`${this.result} / ${e}`),this.lowPriority=!1,this}},{key:"getResult",value:function(e){return this.lowPriority||e?`(${this.result})`:this.result}},{key:"equal",value:function(e){const{unit:t=!0}=e||{};return this.result=this.result.replace(c,t?"px":""),void 0!==this.lowPriority?`calc(${this.result})`:this.result}}])}(s.default)},98472:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>s});var r=n(15671),o=n(43144),i=n(53640),a=n(60136);let s=function(e){function t(e){var n;return(0,r.default)(this,t),(n=(0,i.default)(this,t)).result=0,e instanceof t?n.result=e.result:"number"==typeof e&&(n.result=e),n}return(0,a.default)(t,e),(0,o.default)(t,[{key:"add",value:function(e){return e instanceof t?this.result+=e.result:"number"==typeof e&&(this.result+=e),this}},{key:"sub",value:function(e){return e instanceof t?this.result-=e.result:"number"==typeof e&&(this.result-=e),this}},{key:"mul",value:function(e){return e instanceof t?this.result*=e.result:"number"==typeof e&&(this.result*=e),this}},{key:"div",value:function(e){return e instanceof t?this.result/=e.result:"number"==typeof e&&(this.result/=e),this}},{key:"equal",value:function(){return this.result}}])}(n(76824).default)},76824:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(43144),o=n(15671);const i=(0,r.default)((function e(){(0,o.default)(this,e)}))},70863:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(34680),o=n(98472);const i=e=>{const t="css"===e?r.default:o.default;return e=>new t(e)}},67968:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>m,genStyleHooks:()=>y,genSubStyleComponent:()=>g});var r=n(36198),o=n(78419),i=(n(56790),n(25157)),a=n(14747),s=n(29691),l=n(70863),c=n(52667),u=n(45503),d=n(53269);const f=(e,t,n)=>{var r;return"function"==typeof n?n((0,u.merge)(t,null!==(r=t[e])&&void 0!==r?r:{})):null!=n?n:{}},h=(e,t,n,r)=>{const o=Object.assign({},t[e]);if(null==r?void 0:r.deprecatedTokens){const{deprecatedTokens:e}=r;e.forEach((e=>{let[t,n]=e;var r;((null==o?void 0:o[t])||(null==o?void 0:o[n]))&&(null!==(r=o[n])&&void 0!==r||(o[n]=null==o?void 0:o[t]))}))}const i=Object.assign(Object.assign({},n),o);return Object.keys(i).forEach((e=>{i[e]===t[e]&&delete i[e]})),i},p=(e,t)=>`${[t,e.replace(/([A-Z]+)([A-Z][a-z]+)/g,"$1-$2").replace(/([a-z])([A-Z])/g,"$1-$2")].filter(Boolean).join("-")}`;function m(e,t,n){let m=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{};const g=Array.isArray(e)?e:[e,e],[y]=g,v=g.join("-");return function(e){let g=arguments.length>1&&void 0!==arguments[1]?arguments[1]:e;const[b,O,w,S,x]=(0,s.default)(),{getPrefixCls:E,iconPrefixCls:T,csp:C}=(0,r.useContext)(i.ConfigContext),P=E(),_=x?"css":"js",k=(0,l.default)(_),{max:j,min:A}=(0,c.default)(_),R={theme:b,token:S,hashId:w,nonce:()=>null==C?void 0:C.nonce,clientOnly:m.clientOnly,layer:{name:"antd"},order:m.order||-999};(0,o.useStyleRegister)(Object.assign(Object.assign({},R),{clientOnly:!1,path:["Shared",P]}),(()=>[{"&":(0,a.genLinkStyle)(S)}])),(0,d.default)(T,C);return[(0,o.useStyleRegister)(Object.assign(Object.assign({},R),{path:[v,e,T]}),(()=>{if(!1===m.injectStyle)return[];const{token:r,flush:i}=(0,u.default)(S),s=f(y,O,n),l=`.${e}`,c=h(y,O,s,{deprecatedTokens:m.deprecatedTokens});x&&Object.keys(s).forEach((e=>{s[e]=`var(${(0,o.token2CSSVar)(e,p(y,x.prefix))})`}));const d=(0,u.merge)(r,{componentCls:l,prefixCls:e,iconCls:`.${T}`,antCls:`.${P}`,calc:k,max:j,min:A},x?s:c),v=t(d,{hashId:w,prefixCls:e,rootPrefixCls:P,iconPrefixCls:T});return i(y,c),[!1===m.resetStyle?null:(0,a.genCommonStyle)(d,e,g,m.resetFont),v]})),w]}}const g=(e,t,n,r)=>{const o=m(e,t,n,Object.assign({resetStyle:!1,order:-998},r));return e=>{let{prefixCls:t,rootCls:n=t}=e;return o(t,n),null}},y=(e,t,n,i)=>{const a=m(e,t,n,i),l=((e,t,n)=>{function i(t){return`${e}${t.slice(0,1).toUpperCase()}${t.slice(1)}`}const{unitless:a={},injectStyle:l=!0}=null!=n?n:{},c={[i("zIndexPopup")]:!0};Object.keys(a).forEach((e=>{c[i(e)]=a[e]}));const u=r=>{let{rootCls:a,cssVar:l}=r;const[,u]=(0,s.default)();return(0,o.useCSSVarRegister)({path:[e],prefix:l.prefix,key:null==l?void 0:l.key,unitless:Object.assign(Object.assign({},s.unitless),c),ignore:s.ignore,token:u,scope:a},(()=>{const r=f(e,u,t),o=h(e,u,r,{deprecatedTokens:null==n?void 0:n.deprecatedTokens});return Object.keys(r).forEach((e=>{o[i(e)]=o[e],delete o[e]})),o})),null};return t=>{const[,,,,n]=(0,s.default)();return[o=>l&&n?r.createElement(r.Fragment,null,r.createElement(u,{rootCls:t,cssVar:n,component:e}),o):o,null==n?void 0:n.key]}})(Array.isArray(e)?e[0]:e,n,i);return function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:e;const[,n]=a(e,t),[r,o]=l(t);return[r,n,o]}}},98719:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>o});var r=n(33363);function o(e,t){return r.PresetColors.reduce(((n,r)=>{const o=e[`${r}1`],i=e[`${r}3`],a=e[`${r}6`],s=e[`${r}7`];return Object.assign(Object.assign({},n),t(r,{lightColor:o,lightBorderColor:i,darkColor:a,textColor:s}))}),{})}},42642:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(41191);function o(e){return e>=0&&e<=255}const i=function(e,t){const{r:n,g:i,b:a,a:s}=new r.TinyColor(e).toRgb();if(s<1)return e;const{r:l,g:c,b:u}=new r.TinyColor(t).toRgb();for(let e=.01;e<=1;e+=.01){const t=Math.round((n-l*(1-e))/e),s=Math.round((i-c*(1-e))/e),d=Math.round((a-u*(1-e))/e);if(o(t)&&o(s)&&o(d))return new r.TinyColor({r:t,g:s,b:d,a:Math.round(100*e)/100}).toRgbString()}return new r.TinyColor({r:n,g:i,b:a,a:1}).toRgbString()}},52667:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>o});var r=n(78419);function o(e){return"js"===e?{max:Math.max,min:Math.min}:{max:function(){for(var e=arguments.length,t=new Array(e),n=0;n(0,r.unit)(e))).join(",")})`},min:function(){for(var e=arguments.length,t=new Array(e),n=0;n(0,r.unit)(e))).join(",")})`}}}},45503:(e,t,n)=>{"use strict";n.r(t),n.d(t,{_statistic_build_:()=>s,default:()=>c,merge:()=>i,statistic:()=>a});const r="undefined"!=typeof CSSINJS_STATISTIC;let o=!0;function i(){for(var e=arguments.length,t=new Array(e),n=0;n{Object.keys(e).forEach((t=>{Object.defineProperty(i,t,{configurable:!0,enumerable:!0,get:()=>e[t]})}))})),o=!0,i}const a={},s={};function l(){}const c=e=>{let t,n=e,i=l;return r&&"undefined"!=typeof Proxy&&(t=new Set,n=new Proxy(e,{get:(e,n)=>(o&&t.add(n),e[n])}),i=(e,n)=>{var r;a[e]={global:Array.from(t),component:Object.assign(Object.assign({},null===(r=a[e])||void 0===r?void 0:r.component),n)}}),{token:n,keys:t,flush:i}}},53269:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>a});var r=n(78419),o=n(14747),i=n(29691);const a=(e,t)=>{const[n,a]=(0,i.default)();return(0,r.useStyleRegister)({theme:n,token:a,hashId:"",path:["ant-design-icons",e],nonce:()=>null==t?void 0:t.nonce,layer:{name:"antd"}},(()=>[{[`.${e}`]:Object.assign(Object.assign({},(0,o.resetIcon)()),{[`.${e} .${e}-icon`]:{display:"block"}})}]))}},42115:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>r});const r={placeholder:"Select time",rangePlaceholder:["Start time","End time"]}},28293:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>r});const r=n(52336).default},52336:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>r});const r="5.17.0"},35525:(e,t,n)=>{"use strict";n.r(t),n.d(t,{api:()=>o});var r=n(99202),o=(0,r.createApi)({baseQuery:(0,r.fetchBaseQuery)({baseUrl:"/"}),endpoints:function(){return{}}})},65246:(e,t,n)=>{"use strict";function r(){return"http://localhost"}function o(){return"/pimcore-studio/api"}function i(){return"".concat("http://localhost").concat("/pimcore-studio/api")}n.r(t),n.d(t,{getDomain:()=>r,getDomainWithPrefix:()=>i,getPrefix:()=>o})},38693:(e,t,n)=>{"use strict";n.r(t),n.d(t,{invalidatingTags:()=>i,providingTags:()=>o,tagNames:()=>r});var r={ELEMENT:"ELEMENT",ASSET:"ASSET",ASSET_DETAIL:"ASSET_DETAIL",ASSET_TREE:"ASSET_TREE",DATA_OBJECT:"DATA_OBJECT",DATA_OBJECT_DETAIL:"DATA_OBJECT_DETAIL",DATA_OBJECT_TREE:"DATA_OBJECT_TREE",WORKFLOW:"WORKFLOW",VERSIONS:"VERSION",PROPERTIES:"PROPERTIES",SCHEDULES:"SCHEDULES",DEPENDENCIES:"DEPENDENCIES",NOTES_AND_EVENTS:"NOTES_AND_EVENTS"},o={ELEMENT:function(){return[r.ELEMENT]},ASSET:function(){return[r.ASSET]},ASSET_DETAIL:function(){return[r.ASSET,r.ASSET_DETAIL]},ASSET_DETAIL_ID:function(e){return[r.ASSET,{type:r.ASSET_DETAIL,id:e}]},ASSET_TREE:function(){return[r.ASSET,r.ASSET_TREE]},ASSET_TREE_ID:function(e){return[r.ASSET,r.ASSET_TREE,{type:r.ASSET_TREE,id:e}]},ASSET_VERSIONS:function(e){return[{type:r.ASSET_DETAIL,id:e},r.VERSIONS]},DATA_OBJECT_DETAIL:function(){return[r.DATA_OBJECT,r.DATA_OBJECT_DETAIL]},DATA_OBJECT_DETAIL_ID:function(e){return[r.DATA_OBJECT,{type:r.DATA_OBJECT_DETAIL,id:e}]},DATA_OBJECT_TREE:function(){return[r.DATA_OBJECT,r.DATA_OBJECT_TREE]},DATA_OBJECT_TREE_ID:function(e){return[r.DATA_OBJECT,r.DATA_OBJECT_TREE,{type:r.DATA_OBJECT_TREE,id:e}]},ELEMENT_PROPERTIES:function(e,t){return[a(e,t),r.PROPERTIES]},ELEMENT_DEPENDENCIES:function(e,t){return[a(e,t),r.DEPENDENCIES]},ELEMENT_SCHEDULES:function(e,t){return[{type:r.SCHEDULES,id:t,elementType:e},r.SCHEDULES]},ELEMENT_WORKFLOW:function(e,t){return[a(e,t),r.WORKFLOW]},VERSIONS_DETAIL:function(e){return[{type:r.VERSIONS,id:e},r.VERSIONS]},ELEMENT_NOTES_AND_EVENTS:function(e,t){return[a(e,t),r.NOTES_AND_EVENTS]},NOTES_AND_EVENTS_ID:function(e){return[r.NOTES_AND_EVENTS,{type:r.NOTES_AND_EVENTS,id:e}]}},i={ELEMENT:function(){return[r.ELEMENT]},ASSET:function(){return[r.ASSET]},ASSET_DETAIL:function(){return[r.ASSET_DETAIL]},ASSET_DETAIL_ID:function(e){return[{type:r.ASSET_DETAIL,id:e}]},ASSET_TREE:function(){return[r.ASSET_TREE]},ASSET_TREE_ID:function(e){return[{type:r.ASSET_TREE,id:e}]},ASSET_VERSIONS:function(e){return[{type:r.ASSET_DETAIL,id:e}]},DATA_OBJECT:function(){return[r.DATA_OBJECT]},DATA_OBJECT_DETAIL:function(){return[r.DATA_OBJECT_DETAIL]},DATA_OBJECT_DETAIL_ID:function(e){return[{type:r.DATA_OBJECT_DETAIL,id:e}]},DATA_OBJECT_TREE:function(){return[r.DATA_OBJECT_TREE]},DATA_OBJECT_TREE_ID:function(e){return[{type:r.DATA_OBJECT_TREE,id:e}]},ELEMENT_PROPERTIES:function(e,t){return[a(e,t)]},ELEMENT_DEPENDENCIES:function(e,t){return[a(e,t)]},ELEMENT_SCHEDULES:function(e,t){return[{type:r.SCHEDULES,id:t,elementType:e}]},ELEMENT_WORKFLOW:function(e,t){return[a(e,t)]},NOTES_AND_EVENTS_ID:function(e){return[{type:r.NOTES_AND_EVENTS,id:e}]},VERSIONS_DETAIL:function(e){return[{type:r.VERSIONS,id:e}]},ELEMENT_NOTES_AND_EVENTS:function(e,t){return[a(e,t),r.NOTES_AND_EVENTS]}},a=function(e,t){switch(e){case"asset":return{type:r.ASSET_DETAIL,id:t};case"data-object":return{type:r.DATA_OBJECT_DETAIL,id:t}}throw new Error("Unknown element type: ".concat(e))}},7056:(e,t,n)=>{"use strict";var r,o,i,a;n.r(t),n.d(t,{appConfig:()=>d,currentDomain:()=>l});var s=document.querySelector("#app"),l=window.location.origin;null===s&&console.warn("App element not found");var c=null!==(r=null==s?void 0:s.getAttribute("data-app-config"))&&void 0!==r?r:null,u=null;null!==c&&(u=JSON.parse(c));var d={baseUrl:null!==(o=null==u?void 0:u.baseUrl)&&void 0!==o?o:"/pimcore-studio/",mercureUrl:null!==(i=null==u?void 0:u.mercureUrl)&&void 0!==i?i:"".concat(l,"/.well-known/mercure"),maxPageSize:null!==(a=null==u?void 0:u.maxPageSize)&&void 0!==a?a:9999999}},67890:(e,t,n)=>{"use strict";n.r(t),n.d(t,{DateTimeConfig:()=>S});var r=n(36198),o=n(27484),i=n.n(o),a=n(10285),s=n.n(a),l=n(28734),c=n.n(l),u=n(6833),d=n.n(u),f=n(96036),h=n.n(f),p=n(55183),m=n.n(p),g=n(172),y=n.n(g),v=n(70178),b=n.n(v),O=n(29387),w=n.n(O),S=function(e){return i().extend(s()),i().extend(c()),i().extend(d()),i().extend(h()),i().extend(m()),i().extend(y()),i().extend(b()),i().extend(w()),r.createElement(r.Fragment,null,e.children)}},52435:(e,t,n)=>{"use strict";n.r(t);var r=n(81690),o=n(47308),i=n(94605),a=n(6042),s=n(85630),l=n(34396),c=n(35624),u=n(63669),d=n(96852),f=n(11031),h=n(27795),p=n(65244),m=n(79262),g=n(91638),y=n(7916),v=n(48898),b=n(28710),O=n(54088),w=n(89726),S=n(73238),x=n(1215),E=n(5180),T=n(19169),C=n(18428),P=n(45977),_=n(2836),k=n(97479),j=n(53024),A=n(98770),R=n(67195),D=n(24065),L=n(24696),I=n(14266),M=n(37299),N=n(93268),$=n(97637),B=n(87588),F=n(49136),Q=n(37640),z=n(79964),V=n(46415),U=n(65022),W=n(92248),G=n(20314),X=n(17781),q=n(83826),H=n(61350),Z=n(26206),Y=n(50711),K=n(25132),J=n(70136),ee=n(19859),te=n(61653),ne=n(9866),re=n(22474),oe=n(85050),ie=n(29649),ae=n(94850),se=n(99839),le=n(15381),ce=n(8428),ue=n(71244),de=n(45293),fe=n(62487),he=n(24134),pe=n(20366),me=n(92702),ge=n(95803),ye=n(40304),ve=n(77304),be=n(73042),Oe=n(10380),we=n(84137),Se=n(41131),xe=n(29038),Ee=n(56915),Te=n(33675),Ce=n(6646),Pe=n(66106),_e=n(8588),ke=n(21798),je=n(66540),Ae=n(2649),Re=n(43130),De=n(26265),Le=n(3121),Ie=n(70818),Me=n(37503),Ne=n(54399),$e=n(13459);r.container.bind(O.serviceIds.widgetManager).to(a.WidgetRegistry).inSingletonScope(),r.container.bind(O.serviceIds["Asset/Editor/TypeRegistry"]).to(ne.TypeRegistry).inSingletonScope(),r.container.bind(O.serviceIds["Asset/Editor/DocumentTabManager"]).to(c.DocumentTabManager).inSingletonScope(),r.container.bind(O.serviceIds["Asset/Editor/FolderTabManager"]).to(o.FolderTabManager).inSingletonScope(),r.container.bind(O.serviceIds["Asset/Editor/ImageTabManager"]).to(s.ImageTabManager).inSingletonScope(),r.container.bind(O.serviceIds["Asset/Editor/TextTabManager"]).to(l.TextTabManager).inSingletonScope(),r.container.bind(O.serviceIds["Asset/Editor/VideoTabManager"]).to(u.VideoTabManager).inSingletonScope(),r.container.bind(O.serviceIds["Asset/Editor/AudioTabManager"]).to(d.AudioTabManager).inSingletonScope(),r.container.bind(O.serviceIds["Asset/Editor/ArchiveTabManager"]).to(m.ArchiveTabManager).inSingletonScope(),r.container.bind(O.serviceIds["Asset/Editor/UnknownTabManager"]).to(f.UnknownTabManager).inSingletonScope(),r.container.bind(O.serviceIds["Asset/MetadataTypeProvider/MetadataTypeRegistry"]).to(h.MetadataTypeRegistry).inSingletonScope(),r.container.bind(O.serviceIds["DataObject/Editor/TypeRegistry"]).to(ne.TypeRegistry).inSingletonScope(),r.container.bind(O.serviceIds["DataObject/Editor/ObjectTabManager"]).to(y.ObjectTabManager).inSingletonScope(),r.container.bind(O.serviceIds["DataObject/Editor/FolderTabManager"]).to(o.FolderTabManager).inSingletonScope(),r.container.bind(O.serviceIds.iconLibrary).to(i.IconLibrary).inSingletonScope(),r.container.bind(O.serviceIds["DynamicTypes/FieldFilterRegistry"]).to(v.DynamicTypeFieldFilterRegistry).inSingletonScope(),r.container.bind(O.serviceIds["DynamicTypes/FieldFilter/Text"]).to(w.DynamicTypeFieldFilterText).inSingletonScope(),r.container.bind(O.serviceIds["DynamicTypes/FieldFilter/Number"]).to(S.DynamicTypeFieldFilterNumber).inSingletonScope(),r.container.bind(O.serviceIds["DynamicTypes/FieldFilter/Select"]).to(x.DynamicTypeFieldFilterSelect).inSingletonScope(),r.container.bind(O.serviceIds["DynamicTypes/FieldFilter/Datetime"]).to(E.DynamicTypeFieldFilterDatetime).inSingletonScope(),r.container.bind(O.serviceIds["DynamicTypes/GridCellRegistry"]).to(C.DynamicTypeGridCellRegistry).inSingletonScope(),r.container.bind(O.serviceIds["DynamicTypes/GridCell/Text"]).to(T.DynamicTypeGridCellText).inSingletonScope(),r.container.bind(O.serviceIds["DynamicTypes/GridCell/Textarea"]).to(P.DynamicTypeGridCellTextarea).inSingletonScope(),r.container.bind(O.serviceIds["DynamicTypes/GridCell/Select"]).to(_.DynamicTypeGridCellSelect).inSingletonScope(),r.container.bind(O.serviceIds["DynamicTypes/GridCell/Checkbox"]).to(k.DynamicTypeGridCellCheckbox).inSingletonScope(),r.container.bind(O.serviceIds["DynamicTypes/GridCell/Date"]).to(j.DynamicTypeGridCellDate).inSingletonScope(),r.container.bind(O.serviceIds["DynamicTypes/GridCell/Time"]).to(A.DynamicTypeGridCellTime).inSingletonScope(),r.container.bind(O.serviceIds["DynamicTypes/GridCell/DateTime"]).to(R.DynamicTypeGridCellDateTime).inSingletonScope(),r.container.bind(O.serviceIds["DynamicTypes/GridCell/AssetLink"]).to(D.DynamicTypeGridCellAssetLink).inSingletonScope(),r.container.bind(O.serviceIds["DynamicTypes/GridCell/ObjectLink"]).to(L.DynamicTypeGridCellObjectLink).inSingletonScope(),r.container.bind(O.serviceIds["DynamicTypes/GridCell/DocumentLink"]).to(I.DynamicTypeGridCellDocumentLink).inSingletonScope(),r.container.bind(O.serviceIds["DynamicTypes/GridCell/OpenElement"]).to(M.DynamicTypeGridCellOpenElement).inSingletonScope(),r.container.bind(O.serviceIds["DynamicTypes/GridCell/AssetPreview"]).to(N.DynamicTypeGridCellAssetPreview).inSingletonScope(),r.container.bind(O.serviceIds["DynamicTypes/GridCell/AssetActions"]).to($.DynamicTypeGridCellAssetActions).inSingletonScope(),r.container.bind(O.serviceIds["DynamicTypes/GridCell/DependencyTypeIcon"]).to(B.DynamicTypeGridCellDependencyTypeIcon).inSingletonScope(),r.container.bind(O.serviceIds["DynamicTypes/GridCell/AssetCustomMetadataIcon"]).to(F.DynamicTypeGridCellAssetCustomMetadataIcon).inSingletonScope(),r.container.bind(O.serviceIds["DynamicTypes/GridCell/AssetCustomMetadataValue"]).to(Q.DynamicTypeGridCellAssetCustomMetadataValue).inSingletonScope(),r.container.bind(O.serviceIds["DynamicTypes/GridCell/PropertyIcon"]).to(z.DynamicTypeGridCellPropertyIcon).inSingletonScope(),r.container.bind(O.serviceIds["DynamicTypes/GridCell/PropertyValue"]).to(V.DynamicTypeGridCellPropertyValue).inSingletonScope(),r.container.bind(O.serviceIds["DynamicTypes/GridCell/ScheduleActionsSelect"]).to(U.DynamicTypeGridCellScheduleActionsSelect).inSingletonScope(),r.container.bind(O.serviceIds["DynamicTypes/GridCell/VersionsIdSelect"]).to(W.DynamicTypeGridCellVersionIdSelect).inSingletonScope(),r.container.bind(O.serviceIds["DynamicTypes/GridCell/AssetVersionPreviewFieldLabel"]).to(G.DynamicTypeGridCellAssetVersionPreviewFieldLabel).inSingletonScope(),r.container.bind(O.serviceIds["DynamicTypes/ListingRegistry"]).to(b.DynamicTypeListingRegistry).inSingletonScope(),r.container.bind(O.serviceIds["DynamicTypes/MetadataRegistry"]).to(X.DynamicTypeMetaDataRegistry).inSingletonScope(),r.container.bind(O.serviceIds["DynamicTypes/Metadata/Asset"]).to(q.DynamicTypeMetaDataAsset).inSingletonScope(),r.container.bind(O.serviceIds["DynamicTypes/Metadata/Checkbox"]).to(H.DynamicTypeMetaDataCheckbox).inSingletonScope(),r.container.bind(O.serviceIds["DynamicTypes/Metadata/Date"]).to(Z.DynamicTypeMetaDataDate).inSingletonScope(),r.container.bind(O.serviceIds["DynamicTypes/Metadata/Document"]).to(Y.DynamicTypeMetaDataDocument).inSingletonScope(),r.container.bind(O.serviceIds["DynamicTypes/Metadata/Input"]).to(K.DynamicTypeMetaDataInput).inSingletonScope(),r.container.bind(O.serviceIds["DynamicTypes/Metadata/Object"]).to(J.DynamicTypeMetaDataObject).inSingletonScope(),r.container.bind(O.serviceIds["DynamicTypes/Metadata/Select"]).to(ee.DynamicTypeMetaDataSelect).inSingletonScope(),r.container.bind(O.serviceIds["DynamicTypes/Metadata/Textarea"]).to(te.DynamicTypeMetaDataTextarea).inSingletonScope(),r.container.bind(O.serviceIds["DynamicTypes/ObjectLayoutRegistry"]).to(re.DynamicTypeObjectLayoutRegistry).inSingletonScope(),r.container.bind(O.serviceIds["DynamicTypes/ObjectLayout/Panel"]).to(oe.DynamicTypeObjectLayoutPanel).inSingletonScope(),r.container.bind(O.serviceIds["DynamicTypes/ObjectLayout/Tabpanel"]).to(ae.DynamicTypeObjectLayoutTabpanel).inSingletonScope(),r.container.bind(O.serviceIds["DynamicTypes/ObjectLayout/Accordion"]).to(se.DynamicTypeObjectLayoutAccordion).inSingletonScope(),r.container.bind(O.serviceIds["DynamicTypes/ObjectLayout/Region"]).to(le.DynamicTypeObjectLayoutRegion).inSingletonScope(),r.container.bind(O.serviceIds["DynamicTypes/ObjectLayout/Text"]).to(ce.DynamicTypeObjectLayoutText).inSingletonScope(),r.container.bind(O.serviceIds["DynamicTypes/ObjectLayout/Fieldset"]).to(ue.DynamicTypeObjectLayoutFieldset).inSingletonScope(),r.container.bind(O.serviceIds["DynamicTypes/ObjectLayout/FieldContainer"]).to(de.DynamicTypeObjectLayoutFieldContainer).inSingletonScope(),r.container.bind(O.serviceIds["DynamicTypes/ObjectDataRegistry"]).to(ie.DynamicTypeObjectDataRegistry).inSingletonScope(),r.container.bind(O.serviceIds["DynamicTypes/ObjectData/Input"]).to(fe.DynamicTypeObjectDataInput).inSingletonScope(),r.container.bind(O.serviceIds["DynamicTypes/ObjectData/Textarea"]).to(he.DynamicTypeObjectDataTextarea).inSingletonScope(),r.container.bind(O.serviceIds["DynamicTypes/ObjectData/Password"]).to(pe.DynamicTypeObjectDataPassword).inSingletonScope(),r.container.bind(O.serviceIds["DynamicTypes/ObjectData/Select"]).to(me.DynamicTypeObjectDataSelect).inSingletonScope(),r.container.bind(O.serviceIds["DynamicTypes/ObjectData/MultiSelect"]).to(ge.DynamicTypeObjectDataMultiSelect).inSingletonScope(),r.container.bind(O.serviceIds["DynamicTypes/ObjectData/Language"]).to(ye.DynamicTypeObjectDataLanguage).inSingletonScope(),r.container.bind(O.serviceIds["DynamicTypes/ObjectData/LanguageMultiSelect"]).to(ve.DynamicTypeObjectDataLanguageMultiSelect).inSingletonScope(),r.container.bind(O.serviceIds["DynamicTypes/ObjectData/Country"]).to(be.DynamicTypeObjectDataCountry).inSingletonScope(),r.container.bind(O.serviceIds["DynamicTypes/ObjectData/CountryMultiSelect"]).to(Oe.DynamicTypeObjectDataCountryMultiSelect).inSingletonScope(),r.container.bind(O.serviceIds["DynamicTypes/ObjectData/User"]).to(we.DynamicTypeObjectDataUser).inSingletonScope(),r.container.bind(O.serviceIds["DynamicTypes/ObjectData/BooleanSelect"]).to(Se.DynamicTypeObjectDataBooleanSelect).inSingletonScope(),r.container.bind(O.serviceIds["DynamicTypes/ObjectData/Numeric"]).to(xe.DynamicTypeObjectDataNumeric).inSingletonScope(),r.container.bind(O.serviceIds["DynamicTypes/ObjectData/NumericRange"]).to(Ee.DynamicTypeObjectDataNumericRange).inSingletonScope(),r.container.bind(O.serviceIds["DynamicTypes/ObjectData/Slider"]).to(Te.DynamicTypeObjectDataSlider).inSingletonScope(),r.container.bind(O.serviceIds["DynamicTypes/ObjectData/Consent"]).to(Ce.DynamicTypeObjectDataConsent).inSingletonScope(),r.container.bind(O.serviceIds["DynamicTypes/ObjectData/Firstname"]).to(Pe.DynamicTypeObjectDataFirstname).inSingletonScope(),r.container.bind(O.serviceIds["DynamicTypes/ObjectData/Lastname"]).to(_e.DynamicTypeObjectDataLastname).inSingletonScope(),r.container.bind(O.serviceIds["DynamicTypes/ObjectData/Email"]).to(ke.DynamicTypeObjectDataEmail).inSingletonScope(),r.container.bind(O.serviceIds["DynamicTypes/ObjectData/Gender"]).to(je.DynamicTypeObjectDataGender).inSingletonScope(),r.container.bind(O.serviceIds["DynamicTypes/ObjectData/RgbaColor"]).to(Ae.DynamicTypeObjectDataRgbaColor).inSingletonScope(),r.container.bind(O.serviceIds["DynamicTypes/ObjectData/Date"]).to(Re.DynamicTypeObjectDataDate).inSingletonScope(),r.container.bind(O.serviceIds["DynamicTypes/ObjectData/Datetime"]).to(De.DynamicTypeObjectDataDatetime).inSingletonScope(),r.container.bind(O.serviceIds["DynamicTypes/ObjectData/DateRange"]).to(Le.DynamicTypeObjectDataDateRange).inSingletonScope(),r.container.bind(O.serviceIds["DynamicTypes/ObjectData/Time"]).to(Ie.DynamicTypeObjectDataTime).inSingletonScope(),r.container.bind(O.serviceIds["DynamicTypes/ObjectData/ExternalImage"]).to(Me.DynamicTypeObjectDataExternalImage).inSingletonScope(),r.container.bind(O.serviceIds["DynamicTypes/ObjectData/Block"]).to(Ne.DynamicTypeObjectDataBlock).inSingletonScope(),r.container.bind(O.serviceIds["DynamicTypes/ObjectData/LocalizedFields"]).to($e.DynamicTypeObjectDataLocalizedFields).inSingletonScope(),r.container.bind(O.serviceIds["ExecutionEngine/JobComponentRegistry"]).to(p.JobComponentRegistry).inSingletonScope(),r.container.bind(O.serviceIds["App/ComponentRegistry/ComponentRegistry"]).to(g.ComponentRegistry).inSingletonScope()},54088:(e,t,n)=>{"use strict";n.r(t),n.d(t,{dynamicTypeRegistriesServiceIds:()=>r,serviceIds:()=>o});var r={"DynamicTypes/FieldFilterRegistry":"DynamicTypes/FieldFilterRegistry","DynamicTypes/GridCellRegistry":"DynamicTypes/GridCellRegistry","DynamicTypes/ListingRegistry":"DynamicTypes/ListingRegistry","DynamicTypes/MetadataRegistry":"DynamicTypes/MetadataRegistry","DynamicTypes/ObjectLayoutRegistry":"DynamicTypes/ObjectLayoutRegistry","DynamicTypes/ObjectDataRegistry":"DynamicTypes/ObjectDataRegistry"},o=Object.assign(Object.assign({widgetManager:"WidgetManagerService","Asset/Editor/TypeRegistry":"Asset/Editor/TypeRegistry","Asset/Editor/TypeComponentRegistry":"Asset/Editor/TypeComponentRegistry","Asset/Editor/DocumentTabManager":"Asset/Editor/DocumentTabManager","Asset/Editor/FolderTabManager":"Asset/Editor/FolderTabManager","Asset/Editor/ImageTabManager":"Asset/Editor/ImageTabManager","Asset/Editor/TextTabManager":"Asset/Editor/TextTabManager","Asset/Editor/VideoTabManager":"Asset/Editor/VideoTabManager","Asset/Editor/AudioTabManager":"Asset/Editor/AudioTabManager","Asset/Editor/ArchiveTabManager":"Asset/Editor/ArchiveTabManager","Asset/Editor/UnknownTabManager":"Asset/Editor/UnknownTabManager","Asset/MetadataTypeProvider/MetadataTypeRegistry":"Asset/MetadataTypeProvider/MetadataTypeRegistry","DataObject/Editor/TypeRegistry":"DataObject/Editor/TypeRegistry","DataObject/Editor/ObjectTabManager":"DataObject/Editor/ObjectTabManager","DataObject/Editor/FolderTabManager":"DataObject/Editor/FolderTabManager",iconLibrary:"IconLibrary","Grid/TypeRegistry":"Grid/TypeRegistry"},r),{"DynamicTypes/FieldFilter/Text":"DynamicTypes/FieldFilter/Text","DynamicTypes/FieldFilter/Number":"DynamicTypes/FieldFilter/Number","DynamicTypes/FieldFilter/Select":"DynamicTypes/FieldFilter/Select","DynamicTypes/FieldFilter/Datetime":"DynamicTypes/FieldFilter/Datetime","DynamicTypes/GridCell/Text":"DynamicTypes/GridCell/Text","DynamicTypes/GridCell/Textarea":"DynamicTypes/GridCell/Textarea","DynamicTypes/GridCell/Select":"DynamicTypes/GridCell/Select","DynamicTypes/GridCell/Checkbox":"DynamicTypes/GridCell/Checkbox","DynamicTypes/GridCell/Date":"DynamicTypes/GridCell/Date","DynamicTypes/GridCell/Time":"DynamicTypes/GridCell/Time","DynamicTypes/GridCell/DateTime":"DynamicTypes/GridCell/DateTime","DynamicTypes/GridCell/AssetLink":"DynamicTypes/GridCell/AssetLink","DynamicTypes/GridCell/ObjectLink":"DynamicTypes/GridCell/ObjectLink","DynamicTypes/GridCell/DocumentLink":"DynamicTypes/GridCell/DocumentLink","DynamicTypes/GridCell/OpenElement":"DynamicTypes/GridCell/OpenElement","DynamicTypes/GridCell/AssetPreview":"DynamicTypes/GridCell/AssetPreview","DynamicTypes/GridCell/AssetActions":"DynamicTypes/GridCell/AssetActions","DynamicTypes/GridCell/DependencyTypeIcon":"DynamicTypes/GridCell/DependencyTypeIcon","DynamicTypes/GridCell/AssetCustomMetadataIcon":"DynamicTypes/GridCell/AssetCustomMetadataIcon","DynamicTypes/GridCell/AssetCustomMetadataValue":"DynamicTypes/GridCell/AssetCustomMetadataValue","DynamicTypes/GridCell/PropertyIcon":"DynamicTypes/GridCell/PropertyIcon","DynamicTypes/GridCell/PropertyValue":"DynamicTypes/GridCell/PropertyValue","DynamicTypes/GridCell/ScheduleActionsSelect":"DynamicTypes/GridCell/ScheduleActionsSelect","DynamicTypes/GridCell/VersionsIdSelect":"DynamicTypes/GridCell/VersionsIdSelect","DynamicTypes/GridCell/AssetVersionPreviewFieldLabel":"DynamicTypes/GridCell/AssetVersionPreviewFieldLabel","DynamicTypes/Listing/Text":"DynamicTypes/Listing/Text","DynamicTypes/Listing/Select":"DynamicTypes/Listing/Select","DynamicTypes/Metadata/Asset":"DynamicTypes/Metadata/Asset","DynamicTypes/Metadata/Document":"DynamicTypes/Metadata/Document","DynamicTypes/Metadata/Object":"DynamicTypes/Metadata/Object","DynamicTypes/Metadata/Input":"DynamicTypes/Metadata/Input","DynamicTypes/Metadata/Textarea":"DynamicTypes/Metadata/Textarea","DynamicTypes/Metadata/Checkbox":"DynamicTypes/Metadata/Checkbox","DynamicTypes/Metadata/Select":"DynamicTypes/Metadata/Select","DynamicTypes/Metadata/Date":"DynamicTypes/Metadata/Date","DynamicTypes/ObjectLayout/Panel":"DynamicTypes/ObjectLayout/Panel","DynamicTypes/ObjectLayout/Tabpanel":"DynamicTypes/ObjectLayout/Tabpanel","DynamicTypes/ObjectLayout/Accordion":"DynamicTypes/ObjectLayout/Accordion","DynamicTypes/ObjectLayout/Region":"DynamicTypes/ObjectLayout/Region","DynamicTypes/ObjectLayout/Text":"DynamicTypes/ObjectLayout/Text","DynamicTypes/ObjectLayout/Fieldset":"DynamicTypes/ObjectLayout/Fieldset","DynamicTypes/ObjectLayout/FieldContainer":"DynamicTypes/ObjectLayout/FieldContainer","DynamicTypes/ObjectData/Input":"DynamicTypes/ObjectData/Input","DynamicTypes/ObjectData/Textarea":"DynamicTypes/ObjectData/Textarea","DynamicTypes/ObjectData/Password":"DynamicTypes/ObjectData/Password","DynamicTypes/ObjectData/Select":"DynamicTypes/ObjectData/Select","DynamicTypes/ObjectData/MultiSelect":"DynamicTypes/ObjectData/MultiSelect","DynamicTypes/ObjectData/Language":"DynamicTypes/ObjectData/Language","DynamicTypes/ObjectData/LanguageMultiSelect":"DynamicTypes/ObjectData/LanguageMultiSelect","DynamicTypes/ObjectData/Country":"DynamicTypes/ObjectData/Country","DynamicTypes/ObjectData/CountryMultiSelect":"DynamicTypes/ObjectData/CountryMultiSelect","DynamicTypes/ObjectData/User":"DynamicTypes/ObjectData/User","DynamicTypes/ObjectData/BooleanSelect":"DynamicTypes/ObjectData/BooleanSelect","DynamicTypes/ObjectData/Numeric":"DynamicTypes/ObjectData/Numeric","DynamicTypes/ObjectData/NumericRange":"DynamicTypes/ObjectData/NumericRange","DynamicTypes/ObjectData/Slider":"DynamicTypes/ObjectData/Slider","DynamicTypes/ObjectData/Consent":"DynamicTypes/ObjectData/Consent","DynamicTypes/ObjectData/Firstname":"DynamicTypes/ObjectData/Firstname","DynamicTypes/ObjectData/Lastname":"DynamicTypes/ObjectData/Lastname","DynamicTypes/ObjectData/Email":"DynamicTypes/ObjectData/Email","DynamicTypes/ObjectData/Gender":"DynamicTypes/ObjectData/Gender","DynamicTypes/ObjectData/RgbaColor":"DynamicTypes/ObjectData/RgbaColor","DynamicTypes/ObjectData/Date":"DynamicTypes/ObjectData/Date","DynamicTypes/ObjectData/Datetime":"DynamicTypes/ObjectData/Datetime","DynamicTypes/ObjectData/DateRange":"DynamicTypes/ObjectData/DateRange","DynamicTypes/ObjectData/Time":"DynamicTypes/ObjectData/Time","DynamicTypes/ObjectData/ExternalImage":"DynamicTypes/ObjectData/ExternalImage","DynamicTypes/ObjectData/Block":"DynamicTypes/ObjectData/Block","DynamicTypes/ObjectData/LocalizedFields":"DynamicTypes/ObjectData/LocalizedFields","ExecutionEngine/JobComponentRegistry":"ExecutionEngine/JobComponentRegistry","App/ComponentRegistry/ComponentRegistry":"App/ComponentRegistry/ComponentRegistry"})},81690:(e,t,n)=>{"use strict";n.r(t),n.d(t,{ContainerContext:()=>i,ContainerProvider:()=>a,container:()=>o,useInjection:()=>s,useMultiInjection:()=>l,useOptionalInjection:()=>c});var r=(0,n(43056).createDiInstance)(),o=r.container,i=r.ContainerContext,a=r.ContainerProvider,s=r.useInjection,l=r.useMultiInjection,c=r.useOptionalInjection},73217:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(36609),o=n(30811);r.default.use(o.initReactI18next).init({fallbackLng:"en",ns:["translation"],resources:{},saveMissing:!0}).catch((function(e){console.error(e)})),r.default.on("missingKey",(function(e,t,n,r){}));const i=r.default},80237:(e,t,n)=>{"use strict";function r(e){return r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},r(e)}function o(e,t){for(var n=0;na,moduleSystem:()=>s});var a=function(){return e=function e(){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),this.registry=[]},(t=[{key:"registerModule",value:function(e){this.registry.push(e)}},{key:"initModules",value:function(){this.registry.forEach((function(e){e.onInit()}))}}])&&o(e.prototype,t),n&&o(e,n),Object.defineProperty(e,"prototype",{writable:!1}),e;var e,t,n}(),s=new a},19387:(e,t,n)=>{"use strict";n.r(t),n.d(t,{PluginSystem:()=>u,pluginSystem:()=>d});var r=n(81690),o=n(80237);function i(e){return i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},i(e)}function a(){a=function(){return t};var e,t={},n=Object.prototype,r=n.hasOwnProperty,o=Object.defineProperty||function(e,t,n){e[t]=n.value},s="function"==typeof Symbol?Symbol:{},l=s.iterator||"@@iterator",c=s.asyncIterator||"@@asyncIterator",u=s.toStringTag||"@@toStringTag";function d(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{d({},"")}catch(e){d=function(e,t,n){return e[t]=n}}function f(e,t,n,r){var i=t&&t.prototype instanceof b?t:b,a=Object.create(i.prototype),s=new R(r||[]);return o(a,"_invoke",{value:_(e,n,s)}),a}function h(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}t.wrap=f;var p="suspendedStart",m="suspendedYield",g="executing",y="completed",v={};function b(){}function O(){}function w(){}var S={};d(S,l,(function(){return this}));var x=Object.getPrototypeOf,E=x&&x(x(D([])));E&&E!==n&&r.call(E,l)&&(S=E);var T=w.prototype=b.prototype=Object.create(S);function C(e){["next","throw","return"].forEach((function(t){d(e,t,(function(e){return this._invoke(t,e)}))}))}function P(e,t){function n(o,a,s,l){var c=h(e[o],e,a);if("throw"!==c.type){var u=c.arg,d=u.value;return d&&"object"==i(d)&&r.call(d,"__await")?t.resolve(d.__await).then((function(e){n("next",e,s,l)}),(function(e){n("throw",e,s,l)})):t.resolve(d).then((function(e){u.value=e,s(u)}),(function(e){return n("throw",e,s,l)}))}l(c.arg)}var a;o(this,"_invoke",{value:function(e,r){function o(){return new t((function(t,o){n(e,r,t,o)}))}return a=a?a.then(o,o):o()}})}function _(t,n,r){var o=p;return function(i,a){if(o===g)throw Error("Generator is already running");if(o===y){if("throw"===i)throw a;return{value:e,done:!0}}for(r.method=i,r.arg=a;;){var s=r.delegate;if(s){var l=k(s,r);if(l){if(l===v)continue;return l}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if(o===p)throw o=y,r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);o=g;var c=h(t,n,r);if("normal"===c.type){if(o=r.done?y:m,c.arg===v)continue;return{value:c.arg,done:r.done}}"throw"===c.type&&(o=y,r.method="throw",r.arg=c.arg)}}}function k(t,n){var r=n.method,o=t.iterator[r];if(o===e)return n.delegate=null,"throw"===r&&t.iterator.return&&(n.method="return",n.arg=e,k(t,n),"throw"===n.method)||"return"!==r&&(n.method="throw",n.arg=new TypeError("The iterator does not provide a '"+r+"' method")),v;var i=h(o,t.iterator,n.arg);if("throw"===i.type)return n.method="throw",n.arg=i.arg,n.delegate=null,v;var a=i.arg;return a?a.done?(n[t.resultName]=a.value,n.next=t.nextLoc,"return"!==n.method&&(n.method="next",n.arg=e),n.delegate=null,v):a:(n.method="throw",n.arg=new TypeError("iterator result is not an object"),n.delegate=null,v)}function j(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function A(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function R(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(j,this),this.reset(!0)}function D(t){if(t||""===t){var n=t[l];if(n)return n.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var o=-1,a=function n(){for(;++o=0;--i){var a=this.tryEntries[i],s=a.completion;if("root"===a.tryLoc)return o("end");if(a.tryLoc<=this.prev){var l=r.call(a,"catchLoc"),c=r.call(a,"finallyLoc");if(l&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),A(n),v}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;A(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),v}},t}function s(e,t,n,r,o,i,a){try{var s=e[i](a),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(r,o)}function l(e,t){for(var n=0;n{"use strict";n.r(t),n.d(t,{router:()=>c,routes:()=>l});var r=n(36198),o=n(79655),i=n(54224),a=n(7367),s=n(7056).appConfig.baseUrl;s.endsWith("/")&&(s=s.slice(0,-1)+"/");var l={root:s,login:"".concat(s,"login/")},c=(0,o.createBrowserRouter)([{path:l.root,element:r.createElement(i.DefaultPage,null)},{path:l.login,element:r.createElement(a.LoginPage,null)}])},7496:(e,t,n)=>{"use strict";n.r(t),n.d(t,{injectSliceWithState:()=>c,rootReducer:()=>s,store:()=>l,useAppDispatch:()=>u,useAppSelector:()=>d});var r=n(8327),o=n(45007),i=n(35525),a=[i.api],s=r.combineSlices.apply(void 0,[{}].concat(a)).withLazyLoadedSlices(),l=(0,r.configureStore)({reducer:s,middleware:function(e){return e({serializableCheck:{ignoredActions:["execution-engine/jobReceived"],ignoredActionPaths:["execution-engine","meta"],ignoredPaths:["execution-engine","meta"]}}).concat(i.api.middleware)}}),c=function(e){return a.push(e),s=r.combineSlices.apply(void 0,[{}].concat(a)).withLazyLoadedSlices(),l.replaceReducer(s),s},u=o.useDispatch,d=o.useSelector},8844:(e,t,n)=>{"use strict";n.r(t);n(63657),n(7056),n(80237),n(52435),n(73217),n(89378),n(44861),n(65713),n(32248),n(6395),n(15656),n(44130),n(68255)},95675:(e,t,n)=>{"use strict";var r;n.r(t),n.d(t,{useStyle:()=>o});var o=(0,n(3562).createStyles)((function(e){var t,n;e.token;return{card:(0,e.css)(r||(t=["\n & .ant-collapse {\n width: 340px;\n background-color: white;\n }\n\n & span, & div, div.anticon, button {\n vertical-align: middle;\n }\n "],n||(n=t.slice(0)),r=Object.freeze(Object.defineProperties(t,{raw:{value:Object.freeze(n)}}))))}}),{hashPriority:"low"})},94046:(e,t,n)=>{"use strict";n.r(t),n.d(t,{AccordionTimeline:()=>s});var r=n(36198),o=n(95675),i=n(87629),a=n(54688),s=function(e){var t=e.items,n=(0,o.useStyle)().styles,s=t.map((function(e){return r.createElement("div",{className:[n.card,e.className].join(" "),key:e.key},!0===e.selected?r.createElement(a.Accordion,{activeKey:e.key,expandIconPosition:"after-title",items:[e]}):r.createElement(a.Accordion,{expandIconPosition:"after-title",items:[e]}))}));return r.createElement(i.VerticalTimeline,{timeStamps:s})}},58893:(e,t,n)=>{"use strict";var r,o,i;function a(e,t){return t||(t=e.slice(0)),Object.freeze(Object.defineProperties(e,{raw:{value:Object.freeze(t)}}))}n.r(t),n.d(t,{useStyles:()=>s});var s=(0,n(3562).createStyles)((function(e){var t=e.token,n=e.css,s=Object.assign({highlightBackgroundColor:"#F6FFED",highlightBorderColor:"#B7EB8F",highlightColor:"#52C41A",signalBackgroundColor:"#E6F4FF",signalBorderColor:"#91CAFF",signalColor:"#1677FF"},t);return{accordion:n(r||(r=a(["\n border: none;\n\n &.ant-collapse-borderless.accordion--spaced {\n > .ant-collapse-item:last-child {\n > .ant-collapse-header[aria-expanded='false'] {\n border-radius: ","px;\n }\n\n > .ant-collapse-header[aria-expanded='true'] {\n border-top-left-radius: ","px;\n border-top-right-radius: ","px;\n }\n }\n }\n\n .ant-collapse-item.accordion__item--theme-success {\n border: 1px solid ",";\n border-radius: ","px !important;\n background-color: ",";\n\n > .ant-collapse-content {\n border-top: 1px solid ",";\n background-color: transparent;\n }\n }\n\n .ant-collapse-item.accordion__item--theme-primary {\n border: 1px solid ",";\n border-radius: ","px !important;\n background-color: ",";\n\n > .ant-collapse-content {\n border-top: 1px solid ",";\n background-color: transparent;\n }\n }\n\n .accordion__item {\n > .ant-collapse-header {\n display: inline-flex;\n width: 100%;\n align-items: center;\n\n > .ant-collapse-header-text {\n margin-inline-end: 0;\n }\n\n > .ant-collapse-expand-icon {\n display: none;\n }\n }\n\n .accordion__chevron-btn {\n display: flex;\n align-items: center;\n justify-content: center;\n margin: 0 ","px;\n }\n\n .accordion__chevron {\n rotate: 180deg;\n transition-duration: 0.6s;\n transition-property: transform;\n }\n\n .accordion__chevron--up {\n transform: rotate(-180deg);\n }\n }\n\n .ant-collapse-extra {\n order: 1;\n margin-left: 5px;\n }\n "])),s.borderRadiusLG,s.borderRadiusLG,s.borderRadiusLG,s.highlightBorderColor,s.borderRadiusLG,s.highlightBackgroundColor,s.highlightBorderColor,s.colorBorder,s.borderRadiusLG,s.colorFillAlter,s.colorBorder,t.marginXXS),bordered:n(o||(o=a(["\n &.accordion--bordered {\n .ant-collapse-item {\n background: ",";\n border: 1px solid ",";\n border-radius: ","px;\n }\n \n .ant-collapse-header {\n font-weight: ",";\n }\n\n .accordion-item__header-info {\n font-weight: 400;\n color: ",";\n }\n\n .ant-collapse-content {\n border-color: ",";\n }\n \n &.ant-collapse-small {\n .ant-collapse-item {\n border-radius: ","px;\n }\n \n .ant-collapse-header {\n padding: ","px ","px;\n }\n }\n }\n "])),t.colorBgContainer,t.colorBorderSecondary,t.borderRadius,t.fontWeightStrong,t.colorTextSecondary,t.colorBorderSecondary,t.borderRadiusSM,t.paddingXXS,t.paddingSM),spaced:n(i||(i=a(["\n background: ",";\n\n .accordion__item {\n margin-bottom: 24px;\n border-bottom: none;\n }\n\n .ant-collapse-header[aria-expanded='false'] {\n background-color: ",";\n border: 1px solid ",";\n border-radius: 5px;\n }\n\n .ant-collapse-header[aria-expanded='true'] {\n background-color: ",";\n border: 1px solid ",";\n border-top-left-radius: 5px;\n border-top-right-radius: 5px;\n }\n\n .ant-collapse-content-box {\n border: 1px solid ",";\n border-top: none;\n border-bottom-left-radius: 5px;\n border-bottom-right-radius: 5px;\n background-color: ",";\n }\n "])),t.colorBgContainer,t.colorBgSelectedTab,t.colorBorder,t.colorBgSelectedTab,t.colorBorder,t.colorBorder,t.colorBgSelectedTab)}}))},54688:(e,t,n)=>{"use strict";n.r(t),n.d(t,{Accordion:()=>h});var r=n(36198),o=n(28518),i=n(58893),a=n(36609),s=n(27027);function l(e){return function(e){if(Array.isArray(e))return d(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||u(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function c(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||u(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function u(e,t){if(e){if("string"==typeof e)return d(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?d(e,t):void 0}}function d(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";var r;n.r(t),n.d(t,{useStyles:()=>o});var o=(0,n(3562).createStyles)((function(e){var t,n,o=e.css,i=e.token;return{alert:o(r||(t=["\n &.ant-alert-banner {\n padding: ","px ","px;\n }\n "],n||(n=t.slice(0)),r=Object.freeze(Object.defineProperties(t,{raw:{value:Object.freeze(n)}}))),i.paddingContentVerticalSM,i.paddingSM)}}))},94617:(e,t,n)=>{"use strict";n.r(t),n.d(t,{Alert:()=>c});var r=n(36198),o=n(93967),i=n.n(o),a=n(28518),s=n(4861),l=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&t.indexOf(r)<0&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var o=0;for(r=Object.getOwnPropertySymbols(e);o{"use strict";var r;n.r(t),n.d(t,{useStyle:()=>o});var o=(0,n(3562).createStyles)((function(e){var t,n;e.token;return{background:(0,e.css)(r||(t=["\n position: absolute;\n inset: 0;\n background: #FFF;\n overflow: hidden; \n opacity: 0.3;\n\n .background-figure {\n position: absolute;\n\n &--top-left {\n top: -80%;\n left: -30%;\n width: 1324px;\n height: 1324px;\n transform: rotate(65.637deg);\n flex-shrink: 0;\n border-radius: var(--Components-Input-Component-paddingBlockSM, 1324px);\n background: rgba(55, 217, 243, 0.20);\n filter: blur(310px);\n }\n\n\n &--bottom-left {\n width: 651.152px;\n height: 1503.398px;\n transform: rotate(28.303deg);\n flex-shrink: 0;\n border-radius: var(--Components-Input-Component-paddingBlockSM, 1503.398px);\n background: #FDFFFF;\n filter: blur(310px);\n }\n\n &--bottom-right {\n left: 11%;\n width: 1642px;\n height: 686px;\n transform: rotate(65.637deg);\n flex-shrink: 0;\n border-radius: var(--Components-Input-Component-paddingBlockSM, 1642px);\n background: rgba(122, 58, 212, 0.42);\n filter: blur(310px);\n }\n }\n "],n||(n=t.slice(0)),r=Object.freeze(Object.defineProperties(t,{raw:{value:Object.freeze(n)}}))))}}),{hashPriority:"low"})},17180:(e,t,n)=>{"use strict";n.r(t),n.d(t,{Background:()=>i});var r=n(36198),o=n(48349),i=function(){var e=(0,o.useStyle)().styles;return r.createElement("div",{className:e.background},r.createElement("div",{className:"background-figure background-figure--bottom-left"}),r.createElement("div",{className:"background-figure background-figure--bottom-right"}),r.createElement("div",{className:"background-figure background-figure--top-left"}))}},7667:(e,t,n)=>{"use strict";n.r(t),n.d(t,{Badge:()=>a});var r=n(36198),o=n(28518),i=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&t.indexOf(r)<0&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var o=0;for(r=Object.getOwnPropertySymbols(e);o{"use strict";var r;n.r(t),n.d(t,{useStyles:()=>o});var o=(0,n(3562).createStyles)((function(e){var t,n;return{box:(0,e.css)(r||(t=["\n &.box--inline {\n display: inline-block;\n }\n "],n||(n=t.slice(0)),r=Object.freeze(Object.defineProperties(t,{raw:{value:Object.freeze(n)}}))))}}))},48388:(e,t,n)=>{"use strict";n.r(t),n.d(t,{Box:()=>l,getSizingClasses:()=>s});var r=n(36198),o=n(9072);function i(e){return i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},i(e)}var a=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&t.indexOf(r)<0&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var o=0;for(r=Object.getOwnPropertySymbols(e);o{"use strict";var r,o,i,a,s;function l(e,t){return t||(t=e.slice(0)),Object.freeze(Object.defineProperties(e,{raw:{value:Object.freeze(t)}}))}n.r(t),n.d(t,{useStyle:()=>c});var c=(0,n(3562).createStyles)((function(e){var t=e.token,n=e.css;return{breadcrumb:n(r||(r=l(['\n .ant-dropdown-trigger {\n cursor: pointer;\n \n > span[role="img"] {\n display: none\n }\n }\n ']))),breadcrumbLink:n(o||(o=l(["\n color: ",";\n "])),t.colorTextTertiary),breadcrumbLinkLast:n(i||(i=l(["\n color: ",";\n "])),t.colorText),pathItem:n(a||(a=l(["\n cursor: pointer;\n \n &:hover {\n color: ",";\n }\n "])),t.colorPrimaryHover),dropdownMenu:n(s||(s=l(["\n max-width: 400px;\n "])))}}))},25063:(e,t,n)=>{"use strict";n.r(t),n.d(t,{Breadcrumb:()=>y});var r=n(36198),o=n(28518),i=n(93967),a=n.n(i),s=n(7496),l=n(92908),c=n(73990),u=n(99401),d=n(2166),f=n(34648);function h(e){return function(e){if(Array.isArray(e))return g(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||m(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function p(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||m(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function m(e,t){if(e){if("string"==typeof e)return g(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?g(e,t):void 0}}function g(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n2&&"L"===m&&(C.push({title:s({content:t[o-2],style:{maxWidth:"100px"}}),className:S.pathItem,onClick:function(){i(t.slice(0,o-1).join("/"))}}),o>3)){for(var d=[],f=function(e){d.push({key:e,label:t[e],onClick:function(){i(t.slice(0,e+1).join("/"))}})},p=1;p2&&"L"!==m){for(var y=[],v=function(e){y.push({key:e,label:t[e],onClick:function(){i(t.slice(0,e+1).join("/"))}})},b=1;b{"use strict";n.r(t),n.d(t,{useBreadcrumbSize:()=>a});var r=n(36198);function o(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return i(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return i(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function i(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n375&&e<=450&&(a(!0),c(70)),e>450&&e<=550&&(a(!0),c(85)),e>550&&e<=700&&(a(!0),c(100)),e>700&&e<=800&&(a(!0),c(150)),e>800&&e<=900&&(a(!0),c(200)),e>900&&e<=1e3&&(a(!0),c(300)),e>1e3&&e<=1100&&(a(!0),c(400)),e>1100&&e<=1200&&(a(!0),c(500)),e>1200&&e<=1300&&(a(!0),c(600)),e>1300&&(a(!1),c(t)))}),[e,t]),{isHideBreadcrumb:i,currentBreadcrumbWidth:l}}},71651:(e,t,n)=>{"use strict";var r;n.r(t),n.d(t,{useStyles:()=>o});var o=(0,n(3562).createStyles)((function(e){var t,n,o=e.css,i=e.token;return{buttonGroup:o(r||(t=["\n &.button-group--with-separator {\n & > .button-group__item:not(:last-child) {\n position: relative;\n\n &::after {\n content: '';\n position: absolute;\n right: -4px;\n top: 3px;\n bottom: 3px;\n width: 1px;\n background-color: ",";\n }\n }\n }\n "],n||(n=t.slice(0)),r=Object.freeze(Object.defineProperties(t,{raw:{value:Object.freeze(n)}}))),i.Divider.colorSplit)}}))},54512:(e,t,n)=>{"use strict";n.r(t),n.d(t,{ButtonGroup:()=>a});var r=n(36198),o=n(28518),i=n(71651),a=function(e){var t=e.items,n=e.noSpacing,a=void 0!==n&&n,s=e.withSeparator,l=void 0!==s&&s,c=[(0,i.useStyles)().styles.buttonGroup,"button-group"];return l&&c.push("button-group--with-separator"),r.createElement(r.Fragment,null,!a&&r.createElement(o.Flex,{align:"center",className:c.join(" "),gap:"small"},t.map((function(e,t){return r.createElement("div",{className:"button-group__item",key:t},e)}))),a&&r.createElement(o.Button.Group,null,t.map((function(e,t){return r.createElement("span",{key:t},e)}))))}},89553:(e,t,n)=>{"use strict";var r;n.r(t),n.d(t,{useStyles:()=>o});var o=(0,n(3562).createStyles)((function(e){var t,n;e.token;return{button:(0,e.css)(r||(t=["\n position: relative;\n\n .button__loading-spinner,\n .ant-spin-dot {\n position: absolute;\n top: 0;\n left: 0;\n right: 0;\n bottom: 0;\n margin: auto;\n color: inherit;\n }\n "],n||(n=t.slice(0)),r=Object.freeze(Object.defineProperties(t,{raw:{value:Object.freeze(n)}}))))}}))},71816:(e,t,n)=>{"use strict";n.r(t),n.d(t,{Button:()=>f});var r=n(36198),o=n(28518),i=n(72828),a=n(93967),s=n.n(a),l=n(94622),c=n(89553),u=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&t.indexOf(r)<0&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var o=0;for(r=Object.getOwnPropertySymbols(e);o{"use strict";var r;n.r(t),n.d(t,{useStyles:()=>o});var o=(0,n(3562).createStyles)((function(e){var t,n,o=e.token;return{card:(0,e.css)(r||(t=["\n .ant-card-head {\n min-height: 38px;\n padding: ","px ","px;\n }\n\n &.ant-card:not(.ant-card-bordered) {\n box-shadow: none;\n }\n\n .ant-card-head-title {\n display: flex;\n align-items: center;\n gap: ","px;\n font-size: ","px;\n }\n\n .ant-card-extra {\n display: flex;\n align-items: center;\n gap: ","px;\n color: ",";\n }\n\n .ant-card-body {\n padding: ","px;\n }\n\n &.card-with-footer {\n .ant-card-body {\n padding: 0;\n }\n\n .card-body-inner {\n padding: ","px\n }\n .card-footer {\n padding: ","px ","px;\n border-top: 1px solid ",";\n }\n }\n \n &.card-fit-content {\n width: fit-content;\n }\n \n .ant-card-actions {\n padding: ","px;\n\n li {\n margin: 0;\n max-width: fit-content;\n }\n\n li:not(:last-child) {\n border: none;\n }\n }\n "],n||(n=t.slice(0)),r=Object.freeze(Object.defineProperties(t,{raw:{value:Object.freeze(n)}}))),o.paddingXXS,o.paddingSM,o.marginXS,o.fontSize,o.marginXXS,o.colorTextSecondary,o.paddingSM,o.paddingSM,o.paddingXXS,o.paddingXS,o.colorBorderSecondary,o.paddingXXS)}}))},14500:(e,t,n)=>{"use strict";n.r(t),n.d(t,{Card:()=>h});var r=n(36198),o=n(28518),i=n(16554),a=n(27027),s=n(54663),l=n(71590),c=n(30811);function u(e){return u="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},u(e)}var d=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&t.indexOf(r)<0&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var o=0;for(r=Object.getOwnPropertySymbols(e);o{"use strict";var r;n.r(t),n.d(t,{useStyles:()=>o});var o=(0,n(3562).createStyles)((function(e){var t,n,o=e.token;return{ContentToolbarSidebarLayout:(0,e.css)(r||(t=["\n &.content-toolbar-sidebar-layout {\n position: relative;\n display: grid;\n grid-template-columns: 1fr auto;\n grid-template-rows: 1fr auto;\n height: 100%;\n width: 100%;\n overflow: hidden;\n }\n\n .content-toolbar-sidebar-layout__content {\n display: flex;\n grid-column: 1 / 2;\n grid-row: 1 / 2;\n overflow: auto;\n height: 100%;\n width: 100%;\n }\n\n .content-toolbar-sidebar-layout__toolbar {\n border-top: 1px solid ",";\n grid-column: 1 / 2;\n grid-row: 2 / 3;\n position: sticky;\n bottom: 0;\n height: ","px; \n overflow: hidden;\n }\n\n .content-toolbar-sidebar-layout__sidebar {\n grid-column: 2 / 3;\n grid-row: 1 / 3;\n }\n "],n||(n=t.slice(0)),r=Object.freeze(Object.defineProperties(t,{raw:{value:Object.freeze(n)}}))),o.colorBorderTertiary,o.sizeXXL)}}),{hashPriority:"low"})},13438:(e,t,n)=>{"use strict";n.r(t),n.d(t,{ContentToolbarSidebarLayout:()=>s});var r=n(36198),o=n(45012),i=n(82755),a=function(e){var t=["content-toolbar-sidebar-layout",(0,o.useStyles)().styles.ContentToolbarSidebarLayout];return void 0!==e.renderToolbar&&t.push("content-toolbar-sidebar-layout--with-toolbar"),r.createElement("div",{className:t.join(" ")},r.createElement(i.Content,{className:"content-toolbar-sidebar-layout__content"},e.children),void 0!==e.renderToolbar&&r.createElement("div",{className:"content-toolbar-sidebar-layout__toolbar"},e.renderToolbar),void 0!==e.renderSidebar&&r.createElement("div",{className:"content-toolbar-sidebar-layout__sidebar"},e.renderSidebar))},s=(0,r.memo)(a)},49596:(e,t,n)=>{"use strict";var r;n.r(t),n.d(t,{useStyles:()=>o});var o=(0,n(3562).createStyles)((function(e){var t,n,o=e.token;return{content:(0,e.css)(r||(t=["\n display: flex;\n flex-direction: column;\n width: 100%;\n height: 100%;\n overflow: auto;\n gap: 12px;\n\n &.content--padded {\n padding: ","px;\n }\n\n &.content--centered {\n justify-content: center;\n align-items: center;\n }\n "],n||(n=t.slice(0)),r=Object.freeze(Object.defineProperties(t,{raw:{value:Object.freeze(n)}}))),o.paddingSM)}}))},82755:(e,t,n)=>{"use strict";n.r(t),n.d(t,{Content:()=>c});var r=n(36198),o=n(49596),i=n(32859),a=n(94622),s=n(48388),l=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&t.indexOf(r)<0&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var o=0;for(r=Object.getOwnPropertySymbols(e);o{"use strict";n.r(t),n.d(t,{DatePicker:()=>u});var r=n(36198),o=n(28518),i=n(94692),a=n(27048),s=n(94666);function l(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return c(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return c(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function c(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";n.r(t),n.d(t,{DateRangePicker:()=>l});var r=n(36198),o=n(28518),i=n(94692);function a(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return s(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return s(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function s(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";n.r(t),n.d(t,{TimePicker:()=>l});var r=n(36198),o=n(94692),i=n(28518);function a(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return s(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return s(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function s(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";n.r(t),n.d(t,{formatDatePickerDate:()=>s,fromDayJs:()=>a,toDayJs:()=>i});var r=n(27484),o=n.n(r),i=function(e){return o().isDayjs(e)?e:"number"==typeof e?o().unix(e):"string"==typeof e?o()(e):null},a=function(e,t,n){return null===e?null:"timestamp"===t?e.unix():"dateString"===t?void 0!==n?e.format(n):e.format():e},s=function(e){return null==e?"":o().isDayjs(e)?"[dayjs object]: "+e.toString():e.toString()}},40932:(e,t,n)=>{"use strict";function r(e){return r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},r(e)}function o(e,t){for(var n=0;na});var a=function(){return e=function e(){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),this.callbacks={}},(t=[{key:"register",value:function(e,t){this.callbacks[e]=t}},{key:"unregister",value:function(e){delete this.callbacks[e]}},{key:"get",value:function(e){return this.callbacks[e]}},{key:"getCallbacks",value:function(){return this.callbacks}}])&&o(e.prototype,t),n&&o(e,n),Object.defineProperty(e,"prototype",{writable:!1}),e;var e,t,n}()},79371:(e,t,n)=>{"use strict";function r(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=function(e,t){if(!e)return;if("string"==typeof e)return o(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return o(e,t)}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0,i=function(){};return{s:i,n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:i}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var a,s=!0,l=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return s=e.done,e},e:function(e){l=!0,a=e},f:function(){try{s||null==n.return||n.return()}finally{if(l)throw a}}}}function o(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);na,transformBoundingRectToCoordinates:()=>i});var i=function(e){return{x1:e.left,x2:e.right,y1:e.top,y2:e.bottom}},a=function(e){var t=e.droppableContainers,n=document.querySelector(".dnd-overlay"),o=[],a=null==n?void 0:n.getBoundingClientRect();if(void 0===a)return[];var s,l=i(a),c=r(t);try{for(c.s();!(s=c.n()).done;){var u=s.value;if(null!==u.node.current){var d=u.node.current.getBoundingClientRect();if(0!==d.width){var f=i(d),h=Math.max(l.x1,f.x1),p=Math.min(l.x2,f.x2),m=Math.max(l.y1,f.y1),g=Math.min(l.y2,f.y2);h{"use strict";n.r(t),n.d(t,{DragAndDropContextProvider:()=>f,DragAndDropInfoContext:()=>d});var r=n(36198),o=n(94697),i=n(40932),a=n(41995),s=n(79371);function l(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return c(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return c(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function c(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";var r;n.r(t),n.d(t,{useStyle:()=>o});var o=(0,n(3562).createStyles)((function(e){var t,n;return{dragOverlay:(0,e.css)(r||(t=["\n display: inline-flex;\n gap: 5px;\n align-items: center;\n padding: 5px;\n width: max-content;\n background: white;\n box-shadow: 0px 6px 16px 0px rgba(0, 0, 0, 0.08), 0px 3px 6px -4px rgba(0, 0, 0, 0.12), 0px 9px 28px 8px rgba(0, 0, 0, 0.05);\n "],n||(n=t.slice(0)),r=Object.freeze(Object.defineProperties(t,{raw:{value:Object.freeze(n)}}))))}}))},41995:(e,t,n)=>{"use strict";n.r(t),n.d(t,{DragOverlay:()=>a});var r=n(36198),o=n(54663),i=n(2033),a=function(e){var t=(0,i.useStyle)().styles,n=r.useRef(null);return r.createElement("div",{className:["dnd__overlay",t.dragOverlay].join(" "),ref:n},r.createElement(o.Icon,{value:e.info.icon})," ",e.info.title)}},68834:(e,t,n)=>{"use strict";n.r(t),n.d(t,{GlobalStyle:()=>r});var r=(0,n(3562).createGlobalStyle)((function(e){var t=e.theme;return{".dnd--dragging":{cursor:"move"},".dnd--invalid":{".dnd__overlay":{background:t.colorErrorBg,color:t.colorErrorActive}}}}))},61394:(e,t,n)=>{"use strict";n.r(t),n.d(t,{Draggable:()=>u});var r=n(36198),o=n(94697),i=n(86536),a=n(68834);function s(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return l(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return l(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function l(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";n.r(t),n.d(t,{DroppableContextProvider:()=>o,droppableContext:()=>r});var r=(0,n(36198).createContext)({isOver:!1,isValid:!1,isDragActive:!1}),o=r.Provider},52507:(e,t,n)=>{"use strict";var r;n.r(t),n.d(t,{useStyle:()=>o});var o=(0,n(3562).createStyles)((function(e){var t,n,o=e.token;return{droppable:(0,e.css)(r||(t=["\n & .dnd--drag-active {\n background: ",";\n border: 1px dashed ",";\n border-radius: ","px;\n }\n\n & .dnd--drag-valid {\n background: ",";\n border: 1px dashed ",";\n border-radius: ","px;\n }\n\n & .dnd--drag-error {\n background: ",";\n border: 1px dashed ",";\n border-radius: ","px;\n }\n "],n||(n=t.slice(0)),r=Object.freeze(Object.defineProperties(t,{raw:{value:Object.freeze(n)}}))),o.colorBgContainerDisabled,o.colorBorder,o.borderRadius,o.colorBgTextActive,o.colorInfoBorder,o.borderRadius,o.colorErrorBg,o.colorErrorActive,o.borderRadius)}}))},79301:(e,t,n)=>{"use strict";n.r(t),n.d(t,{Droppable:()=>d});var r=n(36198),o=n(26486),i=n(94697),a=n(52507),s=n(74984),l=n(86536);function c(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return u(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return u(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function u(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";n.r(t),n.d(t,{useDroppable:()=>i});var r=n(36198),o=n(74984),i=function(){var e=(0,r.useContext)(o.droppableContext),t=e.isDragActive,n=e.isOver,i=e.isValid;return{isDragActive:t,isOver:n,isValid:i,getStateClasses:function(){var e=[];return t&&e.push("dnd--drag-active"),n&&i&&e.push("dnd--drag-valid"),n&&!i&&e.push("dnd--drag-error"),e}}}},37394:(e,t,n)=>{"use strict";n.r(t),n.d(t,{useSortableContext:()=>a});var r=n(94697),o=n(45587),i=n(36198),a=function(e){var t=e.onDragEnd,n=e.items,a=e.sortingStrategy,s=void 0===a?o.verticalListSortingStrategy:a,l=(0,r.useSensors)((0,r.useSensor)(r.PointerSensor),(0,r.useSensor)(r.KeyboardSensor,{coordinateGetter:o.sortableKeyboardCoordinates}));return{ContextHolder:function(e){var a=e.children;return i.createElement(r.DndContext,{collisionDetection:r.closestCenter,onDragEnd:t,sensors:l},i.createElement(o.SortableContext,{items:n,strategy:s},a))}}}},48665:(e,t,n)=>{"use strict";n.r(t),n.d(t,{DropdownButton:()=>a});var r=n(36198),o=n(62833),i=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&t.indexOf(r)<0&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var o=0;for(r=Object.getOwnPropertySymbols(e);o{"use strict";n.r(t),n.d(t,{DropdownInner:()=>s});var r=n(36198),o=n(28518),i=n(16920),a=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&t.indexOf(r)<0&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var o=0;for(r=Object.getOwnPropertySymbols(e);o{"use strict";var r;n.r(t),n.d(t,{useStyle:()=>o});var o=(0,n(3562).createStyles)((function(e){var t,n;e.token;return{dropdown:(0,e.css)(r||(t=["\n .ant-dropdown-menu {\n display: flex;\n flex-direction: column;\n }\n \n .ant-dropdown-menu-item-group-list {\n display: flex;\n flex-direction: column;\n }\n \n .ant-dropdown-menu-submenu {\n .ant-dropdown-menu-submenu-title {\n display: flex;\n align-items: center;\n }\n }\n "],n||(n=t.slice(0)),r=Object.freeze(Object.defineProperties(t,{raw:{value:Object.freeze(n)}}))))}}))},41642:(e,t,n)=>{"use strict";n.r(t),n.d(t,{Dropdown:()=>l});var r=n(36198),o=n(30189),i=n(40870),a=n(40826),s=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&t.indexOf(r)<0&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var o=0;for(r=Object.getOwnPropertySymbols(e);o{"use strict";n.r(t),n.d(t,{CustomItem:()=>o});var r=n(36198),o=function(e){var t=e.component;return r.createElement(r.Fragment,null,t)}},89048:(e,t,n)=>{"use strict";var r;n.r(t),n.d(t,{useStyles:()=>o});var o=(0,n(3562).createStyles)((function(e){var t,n,o=e.token;return{dropdownItem:(0,e.css)(r||(t=["\n &.ant-dropdown-menu-item-active {\n background-color: "," !important;\n\n &:hover {\n background-color: rgba(0, 0, 0, 0.04) !important;\n }\n }\n\n &.default-item--with-icon-right {\n padding-right: 4px !important;\n }\n "],n||(n=t.slice(0)),r=Object.freeze(Object.defineProperties(t,{raw:{value:Object.freeze(n)}}))),o.colorBgContainer)}}))},21724:(e,t,n)=>{"use strict";n.r(t),n.d(t,{DefaultItem:()=>u,WithExtendedApi:()=>c});var r=n(36198),o=n(28518),i=n(89048),a=n(34657),s=n(77829),l=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&t.indexOf(r)<0&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var o=0;for(r=Object.getOwnPropertySymbols(e);o{"use strict";n.r(t),n.d(t,{DividerItem:()=>i});var r=n(28518),o=n(36198),i=function(e){return o.createElement(r.Menu.Divider,Object.assign({},e))}},46945:(e,t,n)=>{"use strict";var r;n.r(t),n.d(t,{useStyles:()=>o});var o=(0,n(3562).createStyles)((function(e){var t,n;e.token;return{groupItem:(0,e.css)(r||(t=["\n .ant-dropdown-menu-item-group-list {\n margin: 0 !important;\n }\n "],n||(n=t.slice(0)),r=Object.freeze(Object.defineProperties(t,{raw:{value:Object.freeze(n)}}))))}}))},40289:(e,t,n)=>{"use strict";n.r(t),n.d(t,{GroupItem:()=>c,WithExtendedApi:()=>l});var r=n(28518),o=n(16920),i=n(36198),a=n(46945),s=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&t.indexOf(r)<0&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var o=0;for(r=Object.getOwnPropertySymbols(e);o{"use strict";n.r(t),n.d(t,{SubMenuItem:()=>l,WithExtendedApi:()=>s});var r=n(28518),o=n(16920),i=n(36198),a=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&t.indexOf(r)<0&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var o=0;for(r=Object.getOwnPropertySymbols(e);o{"use strict";n.r(t),n.d(t,{renderDropdownItem:()=>c});var r=n(36198),o=n(17944),i=n(32949),a=n(40289),s=n(31864),l=n(21724),c=function(e){var t=e.item;return null===t?r.createElement(r.Fragment,null):"type"in t&&"divider"===t.type?r.createElement(i.DividerItem,Object.assign({},t)):"type"in t&&"group"===t.type?r.createElement(a.GroupItem,Object.assign({},t)):"type"in t&&"custom"===t.type?r.createElement(o.CustomItem,Object.assign({},t)):!("type"in t)&&"children"in t?r.createElement(s.SubMenuItem,Object.assign({},t)):"type"in t||"children"in t?r.createElement(r.Fragment,null):r.createElement(l.DefaultItem,Object.assign({},t,{id:t.key}))}},77829:(e,t,n)=>{"use strict";n.r(t),n.d(t,{useSelection:()=>l});var r=n(36198),o=n(40870);function i(e){return function(e){if(Array.isArray(e))return a(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||function(e,t){if(!e)return;if("string"==typeof e)return a(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return a(e,t)}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function a(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";var r;n.r(t),n.d(t,{useStyles:()=>o});var o=(0,n(3562).createStyles)((function(e){var t,n,o=e.css,i=e.token;return{selectionButton:o(r||(t=["\n color: transparent;\n transition: color 0.3s;\n\n &.selection-button--active {\n color: ",";\n }\n "],n||(n=t.slice(0)),r=Object.freeze(Object.defineProperties(t,{raw:{value:Object.freeze(n)}}))),i.colorPrimary)}}))},34657:(e,t,n)=>{"use strict";n.r(t),n.d(t,{SelectionButton:()=>s});var r=n(27027),o=n(36198),i=n(77829),a=n(85473),s=function(e){var t=e.id,n=(0,a.useStyles)().styles,s=(0,i.useSelection)(),l=s.toggle,c=s.isSelected,u=[n.selectionButton];return c(t)&&u.push("selection-button--active"),o.createElement(r.IconButton,{className:u.join(" "),icon:{value:"pin-02"},onClick:function(e){e.stopPropagation(),l(t)},variant:"minimal"})}},40870:(e,t,n)=>{"use strict";n.r(t),n.d(t,{SelectionContext:()=>l,SelectionProvider:()=>c,SelectionType:()=>a});var r=n(36198);function o(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return i(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return i(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function i(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";var r;n.r(t),n.d(t,{useStyle:()=>o});var o=(0,n(3562).createStyles)((function(e){var t,n,o=e.token;return{toolbar:(0,e.css)(r||(t=["\n display: flex;\n align-items: center;\n gap: 8px;\n height: 40px;\n border-bottom: 1px solid #DFD7EA;\n\n .ant-breadcrumb {\n padding-left: ","px;\n }\n\n .element-toolbar__info-dropdown {\n .ant-dropdown-trigger {\n display: flex;\n align-items: center;\n gap: 4px;\n border: 1px solid ",";\n background: ",";\n color: ",";\n\n .ant-btn-icon.ant-btn-icon-end {\n margin-left: 0;\n }\n }\n }\n \n .pimcore-icon {\n color: ",";\n &:hover {\n color: ",";\n }\n }\n "],n||(n=t.slice(0)),r=Object.freeze(Object.defineProperties(t,{raw:{value:Object.freeze(n)}}))),o.paddingXS,o.colorBorder,o.colorFillTertiary,o.colorText,o.colorPrimary,o.colorPrimaryHover)}}))},73264:(e,t,n)=>{"use strict";n.r(t),n.d(t,{ElementToolbar:()=>f});var r=n(36198),o=n(52540),i=n(28518),a=n(41642),s=n(54663),l=n(25063),c=n(87633);function u(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return d(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return d(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function d(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";var r;n.r(t),n.d(t,{useStyles:()=>o});var o=(0,n(3562).createStyles)((function(e){var t,n,o=e.token;return{tree:(0,e.css)(r||(t=["\n padding: ","px 0 ","px 0;\n max-width: 100%;\n color: ","\n "],n||(n=t.slice(0)),r=Object.freeze(Object.defineProperties(t,{raw:{value:Object.freeze(n)}}))),o.paddingXXS,o.paddingXS,o.colorTextTreeElement)}}),{hashPriority:"low"})},31322:(e,t,n)=>{"use strict";n.r(t),n.d(t,{ElementTree:()=>g,TreeContext:()=>m,defaultProps:()=>p});var r=n(36198),o=n(36699),i=n(92006),a=n(77806),s=n(26272);function l(e){return l="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},l(e)}function c(){c=function(){return t};var e,t={},n=Object.prototype,r=n.hasOwnProperty,o=Object.defineProperty||function(e,t,n){e[t]=n.value},i="function"==typeof Symbol?Symbol:{},a=i.iterator||"@@iterator",s=i.asyncIterator||"@@asyncIterator",u=i.toStringTag||"@@toStringTag";function d(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{d({},"")}catch(e){d=function(e,t,n){return e[t]=n}}function f(e,t,n,r){var i=t&&t.prototype instanceof b?t:b,a=Object.create(i.prototype),s=new R(r||[]);return o(a,"_invoke",{value:_(e,n,s)}),a}function h(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}t.wrap=f;var p="suspendedStart",m="suspendedYield",g="executing",y="completed",v={};function b(){}function O(){}function w(){}var S={};d(S,a,(function(){return this}));var x=Object.getPrototypeOf,E=x&&x(x(D([])));E&&E!==n&&r.call(E,a)&&(S=E);var T=w.prototype=b.prototype=Object.create(S);function C(e){["next","throw","return"].forEach((function(t){d(e,t,(function(e){return this._invoke(t,e)}))}))}function P(e,t){function n(o,i,a,s){var c=h(e[o],e,i);if("throw"!==c.type){var u=c.arg,d=u.value;return d&&"object"==l(d)&&r.call(d,"__await")?t.resolve(d.__await).then((function(e){n("next",e,a,s)}),(function(e){n("throw",e,a,s)})):t.resolve(d).then((function(e){u.value=e,a(u)}),(function(e){return n("throw",e,a,s)}))}s(c.arg)}var i;o(this,"_invoke",{value:function(e,r){function o(){return new t((function(t,o){n(e,r,t,o)}))}return i=i?i.then(o,o):o()}})}function _(t,n,r){var o=p;return function(i,a){if(o===g)throw Error("Generator is already running");if(o===y){if("throw"===i)throw a;return{value:e,done:!0}}for(r.method=i,r.arg=a;;){var s=r.delegate;if(s){var l=k(s,r);if(l){if(l===v)continue;return l}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if(o===p)throw o=y,r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);o=g;var c=h(t,n,r);if("normal"===c.type){if(o=r.done?y:m,c.arg===v)continue;return{value:c.arg,done:r.done}}"throw"===c.type&&(o=y,r.method="throw",r.arg=c.arg)}}}function k(t,n){var r=n.method,o=t.iterator[r];if(o===e)return n.delegate=null,"throw"===r&&t.iterator.return&&(n.method="return",n.arg=e,k(t,n),"throw"===n.method)||"return"!==r&&(n.method="throw",n.arg=new TypeError("The iterator does not provide a '"+r+"' method")),v;var i=h(o,t.iterator,n.arg);if("throw"===i.type)return n.method="throw",n.arg=i.arg,n.delegate=null,v;var a=i.arg;return a?a.done?(n[t.resultName]=a.value,n.next=t.nextLoc,"return"!==n.method&&(n.method="next",n.arg=e),n.delegate=null,v):a:(n.method="throw",n.arg=new TypeError("iterator result is not an object"),n.delegate=null,v)}function j(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function A(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function R(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(j,this),this.reset(!0)}function D(t){if(t||""===t){var n=t[a];if(n)return n.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var o=-1,i=function n(){for(;++o=0;--i){var a=this.tryEntries[i],s=a.completion;if("root"===a.tryLoc)return o("end");if(a.tryLoc<=this.prev){var l=r.call(a,"catchLoc"),c=r.call(a,"finallyLoc");if(l&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),A(n),v}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;A(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),v}},t}function u(e,t,n,r,o,i,a){try{var s=e[i](a),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(r,o)}function d(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return f(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return f(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function f(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";n.r(t),n.d(t,{TreeExpander:()=>f});var r=n(36198),o=n(31322),i=n(54663),a=n(30811);function s(e){return s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},s(e)}function l(){l=function(){return t};var e,t={},n=Object.prototype,r=n.hasOwnProperty,o=Object.defineProperty||function(e,t,n){e[t]=n.value},i="function"==typeof Symbol?Symbol:{},a=i.iterator||"@@iterator",c=i.asyncIterator||"@@asyncIterator",u=i.toStringTag||"@@toStringTag";function d(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{d({},"")}catch(e){d=function(e,t,n){return e[t]=n}}function f(e,t,n,r){var i=t&&t.prototype instanceof b?t:b,a=Object.create(i.prototype),s=new R(r||[]);return o(a,"_invoke",{value:_(e,n,s)}),a}function h(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}t.wrap=f;var p="suspendedStart",m="suspendedYield",g="executing",y="completed",v={};function b(){}function O(){}function w(){}var S={};d(S,a,(function(){return this}));var x=Object.getPrototypeOf,E=x&&x(x(D([])));E&&E!==n&&r.call(E,a)&&(S=E);var T=w.prototype=b.prototype=Object.create(S);function C(e){["next","throw","return"].forEach((function(t){d(e,t,(function(e){return this._invoke(t,e)}))}))}function P(e,t){function n(o,i,a,l){var c=h(e[o],e,i);if("throw"!==c.type){var u=c.arg,d=u.value;return d&&"object"==s(d)&&r.call(d,"__await")?t.resolve(d.__await).then((function(e){n("next",e,a,l)}),(function(e){n("throw",e,a,l)})):t.resolve(d).then((function(e){u.value=e,a(u)}),(function(e){return n("throw",e,a,l)}))}l(c.arg)}var i;o(this,"_invoke",{value:function(e,r){function o(){return new t((function(t,o){n(e,r,t,o)}))}return i=i?i.then(o,o):o()}})}function _(t,n,r){var o=p;return function(i,a){if(o===g)throw Error("Generator is already running");if(o===y){if("throw"===i)throw a;return{value:e,done:!0}}for(r.method=i,r.arg=a;;){var s=r.delegate;if(s){var l=k(s,r);if(l){if(l===v)continue;return l}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if(o===p)throw o=y,r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);o=g;var c=h(t,n,r);if("normal"===c.type){if(o=r.done?y:m,c.arg===v)continue;return{value:c.arg,done:r.done}}"throw"===c.type&&(o=y,r.method="throw",r.arg=c.arg)}}}function k(t,n){var r=n.method,o=t.iterator[r];if(o===e)return n.delegate=null,"throw"===r&&t.iterator.return&&(n.method="return",n.arg=e,k(t,n),"throw"===n.method)||"return"!==r&&(n.method="throw",n.arg=new TypeError("The iterator does not provide a '"+r+"' method")),v;var i=h(o,t.iterator,n.arg);if("throw"===i.type)return n.method="throw",n.arg=i.arg,n.delegate=null,v;var a=i.arg;return a?a.done?(n[t.resultName]=a.value,n.next=t.nextLoc,"return"!==n.method&&(n.method="next",n.arg=e),n.delegate=null,v):a:(n.method="throw",n.arg=new TypeError("iterator result is not an object"),n.delegate=null,v)}function j(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function A(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function R(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(j,this),this.reset(!0)}function D(t){if(t||""===t){var n=t[a];if(n)return n.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var o=-1,i=function n(){for(;++o=0;--i){var a=this.tryEntries[i],s=a.completion;if("root"===a.tryLoc)return o("end");if(a.tryLoc<=this.prev){var l=r.call(a,"catchLoc"),c=r.call(a,"finallyLoc");if(l&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),A(n),v}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;A(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),v}},t}function c(e,t,n,r,o,i,a){try{var s=e[i](a),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(r,o)}function u(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return d(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return d(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function d(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";var r,o;function i(e,t){return t||(t=e.slice(0)),Object.freeze(Object.defineProperties(e,{raw:{value:Object.freeze(t)}}))}n.r(t),n.d(t,{useStyles:()=>a});var a=(0,n(3562).createStyles)((function(e){var t=e.token,n=e.css;return{"tree-list__pager":n(r||(r=i([" \n padding: ","px 0;\n\n &:empty {\n padding: 0;\n }\n "])),t.paddingSM),"tree-list__search":n(o||(o=i(["\n padding: ","px ","px ","px 0;\n\n &:empty {\n padding: 0;\n }\n\n .ant-btn-default {\n border-color: ","\n }\n "])),t.paddingXXS,t.paddingSM,t.paddingXS,t.colorBorder)}}),{hashPriority:"low"})},60238:(e,t,n)=>{"use strict";n.r(t),n.d(t,{TreeList:()=>u});var r=n(36198),o=n(31322),i=n(28518),a=n(56719),s=n(80810),l=n(26272),c=i.theme.useToken,u=function(e){var t=e.node,n=c().token,i=(0,a.useStyles)().styles,u=(0,r.useContext)(o.TreeContext),d=u.renderFilter,f=u.renderPager,h=u.renderNode,p=(0,u.nodeApiHook)(t),m=p.apiHookResult,g=p.dataTransformer,y=p.mergeAdditionalQueryParams,v=m.isLoading,b=m.isError,O=m.data,w=(0,r.useContext)(l.UploadContext),S=w.uploadFileList,x=w.uploadingNode;if(!0===v)return r.createElement(r.Fragment,null);if(!0===b)return r.createElement(r.Fragment,null,"Error");var E=g(O),T=E.nodes,C=E.total;return r.createElement(r.Fragment,null,void 0!==d&&r.createElement("div",{className:["tree-list__search",i["tree-list__search"]].join(" "),style:{paddingLeft:n.paddingSM+24*(t.level+1)}},r.createElement(d,{mergeAdditionalQueryParams:y,node:t,total:C})),r.createElement("div",{className:"tree-list"},S.length>0&&t.id===x&&r.createElement("div",{className:["tree-list__upload",i["tree-list__search"]].join(" "),style:{paddingLeft:n.paddingSM+24*(t.level+1)}},r.createElement(s.UploadList,{items:S,locale:{uploading:"uploading"},showRemoveIcon:!1})),0===S.length&&(null==T?void 0:T.map((function(e,n){return r.createElement(h,Object.assign({internalKey:"".concat(t.internalKey,"-").concat(n),key:e.id},e))})))),void 0!==f&&r.createElement("div",{className:["tree-list__pager",i["tree-list__pager"]].join(" "),style:{paddingLeft:n.paddingSM+24*(t.level+1)}},r.createElement(f,{mergeAdditionalQueryParams:y,node:t,total:C})))}},92006:(e,t,n)=>{"use strict";n.r(t),n.d(t,{TreeNodeContent:()=>a});var r=n(36198),o=n(28518),i=n(54663),a=(0,r.forwardRef)((function(e,t){var n=e.node,a=n.icon,s=n.label;return r.createElement(o.Flex,{align:"center",gap:"small",ref:t},r.createElement(i.Icon,Object.assign({},a,{options:{width:16,height:16}})),r.createElement("span",{className:"tree-node-content__label"},s))}))},48406:(e,t,n)=>{"use strict";var r;n.r(t),n.d(t,{useStyles:()=>o});var o=(0,n(3562).createStyles)((function(e){var t,n,o=e.token;return{treeNode:(0,e.css)(r||(t=["\n user-select: none;\n\n .tree-node__content {\n cursor: pointer;\n width: 100%;\n padding: 2px ","px 2px 0;\n white-space: nowrap;\n align-items: center;\n \n .ant-upload-wrapper {\n width: 100%;\n \n .ant-upload {\n width: 100%;\n display: flex;\n align-items: center;\n gap: 8px\n }\n }\n\n @media (hover: hover) {\n &:hover {\n background-color: ",";\n }\n }\n\n &:focus {\n outline: none;\n background-color: ",";\n }\n }\n\n &.tree-node--selected > .tree-node__content {\n background-color: ",";\n }\n\n .tree-node__content-wrapper {\n //max-width: max(100%, calc(100px - 16px));\n width: 100%;\n }\n\n .tree-node-content__label {\n display: inline-block;\n text-overflow: ellipsis;\n overflow: hidden;\n }\n "],n||(n=t.slice(0)),r=Object.freeze(Object.defineProperties(t,{raw:{value:Object.freeze(n)}}))),o.paddingSM,o.controlItemBgActiveHover,o.controlItemBgActiveHover,o.controlItemBgActive)}}),{hashPriority:"low"})},36699:(e,t,n)=>{"use strict";n.r(t),n.d(t,{TreeNode:()=>m});var r=n(28518),o=n(36198),i=n(48406),a=n(31322),s=n(60238),l=n(21828),c=n(63975);function u(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return d(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return d(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function d(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n0&&R.current[D()[t-1]].el.focus()}(e)},ref:function(e){!function(e){var t={el:e,node:F};R.current[m]=t}(e)},role:"button",style:{paddingLeft:x.paddingSM+20*w,minWidth:"".concat(20*w+200,"px")},tabIndex:-1},o.createElement(l.TreeExpander,{node:F,state:[I,M]}),o.createElement(r.Upload,Object.assign({},U),o.createElement("div",{className:"tree-node__content-wrapper"},o.createElement(_,{node:F})))),I&&o.createElement(s.TreeList,{node:F}))}},80586:(e,t,n)=>{"use strict";var r;n.r(t),n.d(t,{useStyles:()=>o});var o=(0,n(3562).createStyles)((function(e,t){var n,o;return{rowColGap:(0,e.css)(r||(n=["\n column-gap: ","px;\n row-gap: ","px;\n "],o||(o=n.slice(0)),r=Object.freeze(Object.defineProperties(n,{raw:{value:Object.freeze(o)}}))),t.x,t.y)}}))},47259:(e,t,n)=>{"use strict";n.r(t),n.d(t,{Flex:()=>f});var r=n(36198),o=n(28518),i=n(93967),a=n.n(i),s=n(23396),l=n(79342),c=n(80586),u=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&t.indexOf(r)<0&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var o=0;for(r=Object.getOwnPropertySymbols(e);o{"use strict";function r(e){var t=e.token;switch(e.gap){case"mini":return t.sizeXXS;case"extra-small":return t.sizeXS;case"small":return t.sizeSM;case"normal":return t.size;case"medium":return t.sizeMD;case"large":return t.sizeLG;case"extra-large":return t.sizeXL;case"maxi":return t.sizeXXL;default:return 0}}n.r(t),n.d(t,{mapGapToTokenValue:()=>r})},73277:(e,t,n)=>{"use strict";var r,o;function i(e,t){return t||(t=e.slice(0)),Object.freeze(Object.defineProperties(e,{raw:{value:Object.freeze(t)}}))}n.r(t),n.d(t,{useStyle:()=>a});var a=(0,n(3562).createStyles)((function(e){var t=e.token,n=e.css;return{draggableContainer:n(r||(r=i(["\n display: flex;\n position: relative;\n "]))),draggableItem:n(o||(o=i(["\n color: ",";\n width: ","px !important;\n height: ","px !important;\n background: ",";\n box-shadow: none;\n border: 2px dashed;\n display: flex;\n justify-content: center;\n align-items: center;\n\n &:hover {\n color: ",";\n background: "," !important;\n }\n "])),t.colorPrimary,t.Button.controlHeightSM,t.Button.controlHeightSM,t.Colors.Neutral.Fill.colorFill,t.colorPrimary,t.Colors.Neutral.Fill.colorFill)}}))},26008:(e,t,n)=>{"use strict";n.r(t),n.d(t,{DraggableItem:()=>c});var r=n(36198),o=n(94697),i=n(24285),a=n(73277),s=n(43676),l=n(27027),c=function(e){var t=e.top,n=e.left,c=e.children,u=e.disabled,d=e.active,f=void 0!==d&&d,h=(0,r.useContext)(s.FocalPointContext).containerRef,p=(0,a.useStyle)().styles,m=(0,o.useDraggable)({id:"draggable",disabled:u}),g=m.attributes,y=m.listeners,v=m.setNodeRef,b=m.transform,O={position:"absolute",zIndex:1e3,top:t,left:n,transform:i.CSS.Transform.toString(b)};return r.createElement("div",{className:p.draggableContainer,ref:h},f&&r.createElement(l.IconButton,Object.assign({hidden:!f,icon:{value:"focal-point"},type:"dashed"},g,y,{"aria-label":"Draggable",className:p.draggableItem,"data-cypress":"draggable-item",ref:v,style:Object.assign({},O)})),c)}},43676:(e,t,n)=>{"use strict";n.r(t),n.d(t,{FocalPointContext:()=>r});var r=n(36198).createContext(void 0)},63863:(e,t,n)=>{"use strict";n.r(t),n.d(t,{FocalPoint:()=>u});var r=n(36198),o=n(94697),i=n(26008),a=n(32339),s=n(61008),l=n(43741),c=n(43676),u=function(e){var t=e.activationConstraint,n=e.children,u=r.Children.only(n),d=(0,r.useContext)(l.AssetContext).id,f=(0,r.useContext)(c.FocalPointContext),h=(0,s.useAssetDraft)(d),p=h.imageSettings,m=h.isLoading,g=(0,o.useSensor)(o.MouseSensor,{activationConstraint:t}),y=(0,o.useSensor)(o.TouchSensor,{activationConstraint:t}),v=(0,o.useSensor)(o.KeyboardSensor,{}),b=(0,o.useSensors)(g,y,v),O=(0,s.useAssetDraft)(d),w=O.addImageSettings,S=O.removeImageSetting;if(void 0===f)throw new Error("FocalPoint must be used within the FocalPointProvider");var x=f.coordinates,E=f.setCoordinates,T=f.isActive,C=f.setIsActive,P=f.disabled,_=f.containerRef;if(!(0,r.isValidElement)(u))throw new Error("Children must be a valid react component");var k=u.type;return(0,r.useEffect)((function(){T||m||null===_.current||(E({x:0,y:0}),S("focalPoint"))}),[T]),r.createElement(o.DndContext,{modifiers:[a.restrictToParentElement],onDragEnd:function(e){var t=e.delta,n=x.x+t.x,r=x.y+t.y;E({x:n,y:r}),null!==_.current&&w({focalPoint:{x:Number(Number(100*n/(null==_?void 0:_.current.clientWidth)).toPrecision(8)),y:Number(Number(100*r/(null==_?void 0:_.current.clientHeight)).toPrecision(8))}})},sensors:b},r.createElement(i.DraggableItem,{active:T,disabled:P,left:x.x,top:x.y},r.createElement(k,Object.assign({onLoad:function(){if(null!==_.current&&void 0!==(null==p?void 0:p.focalPoint)){var e=p.focalPoint,t=_.current.clientWidth*Number(e.x)/100,n=_.current.clientHeight*Number(e.y)/100;E({x:t,y:n}),C(!0)}}},u.props))))}},85424:(e,t,n)=>{"use strict";n.r(t),n.d(t,{FocalPointProvider:()=>s});var r=n(36198),o=n(43676);function i(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return a(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return a(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function a(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";n.r(t),n.d(t,{Form:()=>s});var r=n(36198),o=n(28518),i=n(40069),a=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&t.indexOf(r)<0&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var o=0;for(r=Object.getOwnPropertySymbols(e);o{"use strict";n.r(t),n.d(t,{FormattedDateTime:()=>i});var r=n(36198),o=n(63664),i=function(e){return r.createElement(r.Fragment,null,(0,o.formatDateTime)({timestamp:e.timestamp,dateStyle:"short",timeStyle:"short"}))}},50388:(e,t,n)=>{"use strict";n.r(t),n.d(t,{FormattedDate:()=>i});var r=n(36198),o=n(63664),i=function(e){return r.createElement(r.Fragment,null,(0,o.formatDate)(e.timestamp))}},67494:(e,t,n)=>{"use strict";n.r(t),n.d(t,{FormattedTime:()=>i});var r=n(36198),o=n(63664),i=function(e){return r.createElement(r.Fragment,null,(0,o.formatTime)(e.timestamp))}},7264:(e,t,n)=>{"use strict";var r;n.r(t),n.d(t,{useStyle:()=>o});var o=(0,n(3562).createStyles)((function(e){var t,n,o=e.token;return{"default-cell":(0,e.css)(r||(t=["\n display: flex;\n width: 100%;\n height: 100%;\n \n &:focus {\n outline: 1px solid ",";\n outline-offset: -1px;\n }\n\n .default-cell__content {\n display: flex;\n width: 100%;\n height: 100%;\n margin: 0 ","px; \n overflow: hidden;\n text-overflow: ellipsis;\n align-items: center;\n }\n\n &.default-cell--modified, .default-cell--modified {\n &::after {\n content: '*';\n position: absolute;\n top: 0;\n left: 0;\n bottom: 0;\n pointer-events: none;\n color: ",";\n padding: 3px 4px;\n font-size: 12px;\n line-height: 12px;\n border-left: 3px solid ",";\n }\n }\n "],n||(n=t.slice(0)),r=Object.freeze(Object.defineProperties(t,{raw:{value:Object.freeze(n)}}))),o.colorPrimaryActive,o.paddingXXS,o.colorAccentSecondary,o.colorAccentSecondary)}}))},72166:(e,t,n)=>{"use strict";n.r(t),n.d(t,{DefaultCell:()=>m});var r=n(36198),o=n(30509),i=n(30968),a=n(7264),s=n(6424),l=n(27526),c=n(1447);function u(e){return function(e){if(Array.isArray(e))return h(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||f(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function d(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||f(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function f(e,t){if(e){if("string"==typeof e)return h(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?h(e,t):void 0}}function h(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";n.r(t),n.d(t,{addColumnConfig:()=>r});var r=function(e,t){return Object.assign(Object.assign({},e),{column:Object.assign(Object.assign({},e.column),{columnDef:Object.assign(Object.assign({},e.column.columnDef),{meta:Object.assign(Object.assign({},e.column.columnDef.meta),{config:t})})})})}},7079:(e,t,n)=>{"use strict";var r,o,i;function a(e,t){return t||(t=e.slice(0)),Object.freeze(Object.defineProperties(e,{raw:{value:Object.freeze(t)}}))}n.r(t),n.d(t,{useStyle:()=>s});var s=(0,n(3562).createStyles)((function(e){e.token;var t=e.css;return{"checkbox-cell":t(r||(r=a(["\n padding: 4px;\n "]))),"align-center":t(o||(o=a(["\n justify-content: center;\n display: flex;\n "]))),"align-right":t(i||(i=a(["\n justify-content: flex-end;\n display: flex;\n "])))}}))},10809:(e,t,n)=>{"use strict";n.r(t),n.d(t,{CheckboxCell:()=>s});var r=n(36198),o=n(28518),i=n(42420),a=n(7079),s=function(e){var t,n,s=(0,a.useStyle)().styles,l=(0,i.useEditMode)(e).fireOnUpdateCellDataEvent,c=(0,r.useRef)(null);function u(){var e,t;l(null!==(t=null===(e=c.current.input)||void 0===e?void 0:e.checked)&&void 0!==t&&t)}var d=null===(t=e.column.columnDef.meta)||void 0===t?void 0:t.config;return void 0===d&&(d={align:"left"}),r.createElement("div",{className:[s["checkbox-cell"],null!==(n=s["align-"+d.align])&&void 0!==n?n:"","default-cell__content"].join(" ")},function(){var t;return r.createElement(o.Checkbox,{checked:e.getValue(),disabled:!1===(null===(t=e.column.columnDef.meta)||void 0===t?void 0:t.editable),onChange:u,ref:c})}())}},6147:(e,t,n)=>{"use strict";var r;n.r(t),n.d(t,{useStyle:()=>o});var o=(0,n(3562).createStyles)((function(e){var t,n;e.token;return{"date-cell":(0,e.css)(r||(t=["\n padding: 4px;\n "],n||(n=t.slice(0)),r=Object.freeze(Object.defineProperties(t,{raw:{value:Object.freeze(n)}}))))}}))},65388:(e,t,n)=>{"use strict";n.r(t),n.d(t,{DateCell:()=>h});var r=n(36198),o=n(50388),i=n(42420),a=n(28518),s=n(27484),l=n.n(s),c=n(6147),u=n(38532);function d(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return f(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return f(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function f(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";n.r(t),n.d(t,{ElementCellContent:()=>d});var r=n(36198),o=n(52645),i=n(54663),a=n(61068),s=n(31083),l=n(73990);function c(e){return function(e){if(Array.isArray(e))return u(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||function(e,t){if(!e)return;if("string"==typeof e)return u(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return u(e,t)}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function u(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";var r,o,i;function a(e,t){return t||(t=e.slice(0)),Object.freeze(Object.defineProperties(e,{raw:{value:Object.freeze(t)}}))}n.r(t),n.d(t,{useStyle:()=>s});var s=(0,n(3562).createStyles)((function(e){var t=e.css;e.token;return{"element-cell":t(r||(r=a(["\n padding: 3px;\n "]))),link:t(o||(o=a(["\n display: flex;\n width: 100%;\n \n .ant-tag {\n overflow: hidden;\n text-overflow: ellipsis;\n max-width: 100%;\n cursor: pointer;\n }\n "]))),dropTargetIcon:t(i||(i=a(["\n margin-left: auto;\n margin-top: 4px\n "])))}}))},52613:(e,t,n)=>{"use strict";n.r(t),n.d(t,{ElementCell:()=>s});var r=n(36198),o=n(79301),i=n(71303),a=n(61068),s=function(e){var t,n,s,l,c=(0,a.useStyle)().styles,u=e.column,d=null===(n=null===(t=e.column.columnDef.meta)||void 0===t?void 0:t.editable)||void 0===n||n,f=null!==(l=null===(s=u.columnDef.meta)||void 0===s?void 0:s.config)&&void 0!==l?l:{allowedTypes:["asset","data-object","document"]},h="function"==typeof f.allowedTypes?f.allowedTypes(e):f.allowedTypes;return r.createElement(o.Droppable,{className:[c["element-cell"],"default-cell__content"].join(" "),isValidContext:function(e){return h.includes(e.type)&&d},onDrop:function(t){var n,r,o,i=t.data;void 0!==(null===(n=e.column.columnDef.meta)||void 0===n?void 0:n.editable)&&void 0!==(null===(r=e.table.options.meta)||void 0===r?void 0:r.onUpdateCellData)&&(null===(o=e.table.options.meta)||void 0===o||o.onUpdateCellData({rowIndex:e.row.index,columnId:e.column.id,value:i,rowData:e.row.original}))}},r.createElement(i.ElementCellContent,Object.assign({},e)))}},52596:(e,t,n)=>{"use strict";var r;n.r(t),n.d(t,{useStyles:()=>o});var o=(0,n(3562).createStyles)((function(e){var t,n;return{"select-cell":(0,e.css)(r||(t=["\n padding: 4px;\n\n .ant-select {\n width: 100%;\n }\n "],n||(n=t.slice(0)),r=Object.freeze(Object.defineProperties(t,{raw:{value:Object.freeze(n)}}))))}}))},81022:(e,t,n)=>{"use strict";n.r(t),n.d(t,{SelectCell:()=>f});var r=n(36198),o=n(93967),i=n.n(o),a=n(42420),s=n(58664),l=n(52596);function c(e){return c="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},c(e)}function u(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return d(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return d(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function d(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";var r;n.r(t),n.d(t,{useStyle:()=>o});var o=(0,n(3562).createStyles)((function(e){var t,n;e.token;return{"text-cell":(0,e.css)(r||(t=["\n padding: 4px;\n "],n||(n=t.slice(0)),r=Object.freeze(Object.defineProperties(t,{raw:{value:Object.freeze(n)}}))))}}))},30509:(e,t,n)=>{"use strict";n.r(t),n.d(t,{TextCell:()=>s});var r=n(36198),o=n(42420),i=n(28518),a=n(97329),s=function(e){var t=(0,o.useEditMode)(e),n=t.isInEditMode,s=t.disableEditMode,l=t.fireOnUpdateCellDataEvent,c=(0,a.useStyle)().styles,u=(0,r.useRef)(null);function d(){var e,t;l(null!==(t=null===(e=u.current.input)||void 0===e?void 0:e.value)&&void 0!==t?t:""),s()}function f(e){"Enter"===e.key&&d()}function h(){d()}return(0,r.useEffect)((function(){var e;n&&(null===(e=u.current)||void 0===e||e.focus())}),[n]),r.createElement("div",{className:[c["text-cell"],"default-cell__content"].join(" ")},n?r.createElement(i.Input,{defaultValue:e.getValue(),onBlur:h,onKeyDown:f,ref:u,type:"text"}):r.createElement(r.Fragment,null,e.getValue()))}},13523:(e,t,n)=>{"use strict";var r;n.r(t),n.d(t,{useStyle:()=>o});var o=(0,n(3562).createStyles)((function(e){var t,n;e.token;return{"textarea-cell":(0,e.css)(r||(t=["\n padding: 4px;\n "],n||(n=t.slice(0)),r=Object.freeze(Object.defineProperties(t,{raw:{value:Object.freeze(n)}}))))}}))},27358:(e,t,n)=>{"use strict";n.r(t),n.d(t,{TextareaCell:()=>u});var r=n(36198),o=n(42420),i=n(13523),a=n(96330),s=n(38576);function l(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return c(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return c(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function c(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";var r;n.r(t),n.d(t,{useStyles:()=>o});var o=(0,n(3562).createStyles)((function(e){var t,n;e.token;return{"icon-view":(0,e.css)(r||(t=["\n display: flex;\n justify-content: center;\n width: 100%;\n height: 100%;\n padding: 7px;\n "],n||(n=t.slice(0)),r=Object.freeze(Object.defineProperties(t,{raw:{value:Object.freeze(n)}}))))}}),{hashPriority:"low"})},1704:(e,t,n)=>{"use strict";n.r(t),n.d(t,{IconView:()=>a});var r=n(36198),o=n(69095),i=n(54663),a=function(e){var t=(0,o.useStyles)().styles;return r.createElement("div",{className:[t["icon-view"],"default-cell__content"].join(" ")},r.createElement(i.Icon,Object.assign({},e)))}},77395:(e,t,n)=>{"use strict";var r;n.r(t),n.d(t,{useStyles:()=>o});var o=(0,n(3562).createStyles)((function(e){var t,n,o=e.token;return{image:(0,e.css)(r||(t=["\n display: flex;\n justify-content: center;\n align-items: center;\n aspect-ratio: 1;\n width: 100%;\n height: 100%;\n\n &.image-cell.default-cell__content {\n margin: ","px;\n }\n\n .ant-image {\n display: flex;\n width: 100%;\n height: 100%;\n }\n\n img {\n max-width: 100%;\n max-height: 100%;\n object-fit: contain;\n }\n "],n||(n=t.slice(0)),r=Object.freeze(Object.defineProperties(t,{raw:{value:Object.freeze(n)}}))),o.paddingXXS)}}),{hashPriority:"low"})},93364:(e,t,n)=>{"use strict";n.r(t),n.d(t,{ImageView:()=>a});var r=n(36198),o=n(77395),i=n(71590),a=function(e){var t=(0,o.useStyles)().styles;return r.createElement("div",{className:[t.image,"image-cell","default-cell__content"].join(" ")},r.createElement(i.PimcoreImage,Object.assign({},e)))}},30968:(e,t,n)=>{"use strict";n.r(t),n.d(t,{EditableCellContext:()=>o,EditableCellContextProvider:()=>i});var r=n(36198),o=(0,r.createContext)({isInEditMode:!1,setIsInEditMode:function(e){}}),i=function(e){var t=e.children,n=e.value;return(0,r.useMemo)((function(){return r.createElement(o.Provider,{value:n},t)}),[t,n])}},42420:(e,t,n)=>{"use strict";n.r(t),n.d(t,{useEditMode:()=>i});var r=n(36198),o=n(30968),i=function(e){var t=(0,r.useContext)(o.EditableCellContext),n=t.isInEditMode,i=t.setIsInEditMode;return{isInEditMode:n,disableEditMode:function(){i(!1)},fireOnUpdateCellDataEvent:function(t){var n;null===(n=e.table.options.meta)||void 0===n||n.onUpdateCellData({rowIndex:e.row.index,columnId:e.column.id,value:t,rowData:e.row.original})}}}},85576:(e,t,n)=>{"use strict";n.r(t),n.d(t,{GridCell:()=>a});var r=n(74094),o=n(36198),i=n(86368),a=function(e){var t,n=e.cell,a=e.isModified,s=e.tableElement;return o.createElement(i.GridContextProvider,{table:s},o.createElement("div",{className:"grid__cell-content"},(0,r.flexRender)(n.column.columnDef.cell,(t=n.getContext(),Object.assign(Object.assign({},t),{modified:a})))))}},13871:(e,t,n)=>{"use strict";n.r(t),n.d(t,{GridRow:()=>s});var r=n(36198),o=n(85576),i=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&t.indexOf(r)<0&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var o=0;for(r=Object.getOwnPropertySymbols(e);o{"use strict";n.r(t),n.d(t,{GridContext:()=>o,GridContextProvider:()=>i});var r=n(36198),o=(0,r.createContext)({table:null}),i=function(e){var t=e.table,n=e.children;return(0,r.useMemo)((function(){return r.createElement(o.Provider,{value:{table:t}},n)}),[t,n])}},24274:(e,t,n)=>{"use strict";var r;n.r(t),n.d(t,{useStyles:()=>o});var o=(0,n(3562).createStyles)((function(e){var t,n,o=e.token;return{grid:(0,e.css)(r||(t=["\n display: flex; \n width: 100%;\n max-width: 100%;\n\n table {\n table-layout: fixed;\n width: auto;\n height: 0;\n }\n\n th {\n user-select: none;\n }\n\n th, td {\n line-height: 1.83;\n padding: ","px ","px;\n }\n\n &.ant-table-wrapper .ant-table.ant-table-small .ant-table-tbody>tr>td {\n padding: 0;\n }\n\n .ant-table-cell {\n position: relative;\n border-left: 1px solid ",";\n white-space: nowrap;\n text-overflow: ellipsis;\n\n &.ant-table-cell__no-data {\n padding: ","px 0px ","px ","px !important;\n }\n\n &:last-of-type {\n border-right: 1px solid #F0F0F0;\n }\n }\n\n .ant-table-thead {\n position: sticky;\n top: 0;\n z-index: 1;\n\n .grid__cell-content {\n display: flex;\n width: 100%;\n justify-content: space-between;\n align-items: center;\n }\n\n .grid__sorter {\n display: flex;\n align-items: center;\n justify-content: flex-end;\n width: 26px;\n }\n }\n\n .ant-table-row {\n height: 41px;\n }\n\n .ant-table-content {\n table {\n border: 1px solid #F0F0F0;\n border-radius: 8px;\n }\n \n .ant-table-tbody {\n .ant-table-row:last-of-type {\n .ant-table-cell:first-of-type {\n border-bottom-left-radius: 8px;\n }\n .ant-table-cell:last-of-type {\n border-bottom-right-radius: 8px;\n }\n }\n }\n }\n\n .grid__cell-content {\n display: flex;\n width: 100%;\n height: 100%;\n \n .ant-skeleton {\n width: 100%;\n margin: 4px;\n \n .ant-skeleton-input {\n min-width: unset;\n width: 100%;\n }\n }\n }\n\n .grid__cell-content > * {\n display: flex;\n width: 100%;\n height: 100%;\n }\n\n .ant-table-row-selected td {\n background-color: ",";\n }\n "],n||(n=t.slice(0)),r=Object.freeze(Object.defineProperties(t,{raw:{value:Object.freeze(n)}}))),o.Table.cellPaddingBlockSM,o.Table.cellPaddingInlineSM,o.Table.colorBorderSecondary,o.paddingXS,o.paddingXS,o.paddingXS,o.controlItemBgActive)}}),{hashPriority:"low"})},44587:(e,t,n)=>{"use strict";n.r(t),n.d(t,{Grid:()=>v});var r=n(79383),o=n(74094),i=n(36198),a=n(24274),s=n(66926),l=n(72166),c=n(30811),u=n(28518),d=n(13871),f=n(96149),h=n(47636);function p(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||m(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function m(e,t){if(e){if("string"==typeof e)return g(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?g(e,t):void 0}}function g(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,a=!0,s=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return a=e.done,e},e:function(e){s=!0,i=e},f:function(){try{a||null==n.return||n.return()}finally{if(s)throw i}}}}(G);try{for(r.s();!(t=r.n()).done;){if(!0===(null===(e=t.value.meta)||void 0===e?void 0:e.autoWidth)){if(n)throw new Error("Only one column can have autoWidth set to true");n=!0}}}catch(e){r.e(e)}finally{r.f()}}}),[G,I]);var Y=(0,o.useReactTable)(X);return(0,i.useMemo)((function(){return i.createElement(h.DynamicTypeRegistryProvider,{serviceIds:["DynamicTypes/GridCellRegistry"]},i.createElement("div",{className:["ant-table-wrapper",A,R.grid].join(" ")},i.createElement("div",{className:"ant-table ant-table-small"},i.createElement("div",{className:"ant-table-container"},i.createElement("div",{className:"ant-table-content"},i.createElement("table",{ref:N,style:{width:I?"100%":Y.getCenterTotalSize(),minWidth:Y.getCenterTotalSize()}},i.createElement("thead",{className:"ant-table-thead"},Y.getHeaderGroups().map((function(e){return i.createElement("tr",{key:e.id},e.headers.map((function(e,t){var n,r;return i.createElement("th",{className:"ant-table-cell",key:e.id,ref:!0===(null===(n=e.column.columnDef.meta)||void 0===n?void 0:n.autoWidth)?V:null,style:!0!==(null===(r=e.column.columnDef.meta)||void 0===r?void 0:r.autoWidth)||e.column.getIsResizing()?{width:e.column.getSize(),maxWidth:e.column.getSize()}:{width:"auto",minWidth:e.column.getSize()}},i.createElement("div",{className:"grid__cell-content"},i.createElement("span",null,(0,o.flexRender)(e.column.columnDef.header,e.getContext())),e.column.getCanSort()&&i.createElement("div",{className:"grid__sorter"},i.createElement(f.SortButton,{allowUnsorted:void 0===O,onSortingChange:function(t){!function(e,t){if(void 0===t)return void Y.setSorting([]);Y.setSorting([{id:e.id,desc:t===f.SortDirections.DESC}])}(e.column,t)},value:ne(e.column)}))),!0===k.resizable&&e.column.getCanResize()&&i.createElement(s.Resizer,{header:e,isResizing:e.column.getIsResizing(),table:Y}))})))}))),i.createElement("tbody",{className:"ant-table-tbody"},0===Y.getRowModel().rows.length&&i.createElement("tr",{className:"ant-table-row"},i.createElement("td",{className:"ant-table-cell ant-table-cell__no-data",colSpan:Y.getAllColumns().length},j("no-data-available-yet"))),Y.getRowModel().rows.map((function(e){return i.createElement(d.GridRow,{columns:G,isSelected:e.getIsSelected(),key:e.id,modifiedCells:JSON.stringify(K(e.id)),row:e,tableElement:N})})))))))))}),[Y,b,U,G,W,F]);function K(e){var t;return null!==(t=z.filter((function(t){var n=t.rowIndex;return String(n)===String(e)})))&&void 0!==t?t:[]}function J(e){var t;null===(t=k.onSelectedRowsChange)||void 0===t||t.call(k,e)}function ee(){return G.some((function(e){return"selection"===e.id}))}function te(e){void 0===k.onSortingChange?Q(e):k.onSortingChange(e)}function ne(e){var t,n=null===(t=F.find((function(t){return t.id===e.id})))||void 0===t?void 0:t.desc;if(void 0!==n)return n?f.SortDirections.DESC:f.SortDirections.ASC}}},6424:(e,t,n)=>{"use strict";n.r(t),n.d(t,{useKeyboardNavigation:()=>o});var r=n(91034),o=function(e){var t=(0,r.useGrid)().tableElement;return{handleArrowNavigation:function(n){var r=e.row.index,o=e.column.getIndex();if(["ArrowDown","ArrowUp","ArrowLeft","ArrowRight"].includes(n.key)){if(n.preventDefault(),"ArrowDown"===n.key)r++;else if("ArrowUp"===n.key)r--;else if("ArrowLeft"===n.key){var i=function(e){if(0===e)return;return e-1}(o);void 0!==i&&(o=i)}else if("ArrowRight"===n.key){var a=function(t){var n=e.table.getAllColumns();if(t===n.length-1)return;return t+1}(o);void 0!==a&&(o=a)}if(null!==(null==t?void 0:t.current)){var s=t.current.querySelector('[data-grid-row="'.concat(r,'"][data-grid-column="').concat(o,'"]'));if(null===s)return;s.focus();var l=document.createRange(),c=window.getSelection();l.setStart(s,0),null==c||c.removeAllRanges(),null==c||c.addRange(l)}}}}}},65106:(e,t,n)=>{"use strict";var r;n.r(t),n.d(t,{useStyles:()=>o});var o=(0,n(3562).createStyles)((function(e){var t,n,o=e.token;return{resizer:(0,e.css)(r||(t=["\n &.grid__resizer {\n position: absolute;\n right: -4px;\n top: 0;\n bottom: 0;\n width: 8px;\n z-index: 1;\n background-color: transparent;\n\n &--resizing {\n background-color: ",";\n width: 2px;\n right: -1px;\n }\n\n &--hoverable {\n cursor: col-resize;\n }\n }\n\n &:focus {\n outline: none;\n }\n "],n||(n=t.slice(0)),r=Object.freeze(Object.defineProperties(t,{raw:{value:Object.freeze(n)}}))),o.colorPrimary)}}),{hashPriority:"low"})},66926:(e,t,n)=>{"use strict";n.r(t),n.d(t,{Resizer:()=>s});var r=n(36198),o=n(65106),i=n(30811),a=function(e){var t,n,a=(0,o.useStyles)().styles,s=["grid__resizer"],l=void 0!==e.header,c=(0,i.useTranslation)().t;function u(){var t=e.header,n=e.table;l&&n.setColumnSizingInfo((function(e){return Object.assign(Object.assign({},e),{isResizingColumn:t.column.id})}))}function d(){e.table.setColumnSizingInfo((function(e){return Object.assign(Object.assign({},e),{isResizingColumn:!1})}))}function f(t){"ArrowLeft"===t.key?function(t){t.preventDefault();var n=e.header;e.table.setColumnSizing((function(e){var t={};return t[n.column.id]=n.column.getSize()-5,Object.assign(Object.assign({},e),t)}))}(t):"ArrowRight"===t.key&&function(t){t.preventDefault();var n=e.header;e.table.setColumnSizing((function(e){var t={};return t[n.column.id]=n.column.getSize()+5,Object.assign(Object.assign({},e),t)}))}(t)}return s.push(a.resizer),l&&s.push("grid__resizer--hoverable"),e.isResizing&&s.push("grid__resizer--resizing"),r.createElement("div",Object.assign({className:s.join(" ")},(n=e.header,l?{role:"button",tabIndex:0,"aria-label":c("grid.aria.column-resize"),onMouseDown:null==n?void 0:n.getResizeHandler(),onFocus:u,onBlur:d,onKeyDown:f}:{}),{style:{transform:e.isResizing?"translateX(".concat(("rtl"===e.table.options.columnResizeDirection?-1:1)*(null!==(t=e.table.getState().columnSizingInfo.deltaOffset)&&void 0!==t?t:0),"px)"):""}}))},s=r.memo(a)},91034:(e,t,n)=>{"use strict";n.r(t),n.d(t,{useGrid:()=>i});var r=n(36198),o=n(86368),i=function(){var e=(0,r.useContext)(o.GridContext).table;return(0,r.useMemo)((function(){return{tableElement:e}}),[e])}},26388:(e,t,n)=>{"use strict";var r;n.r(t),n.d(t,{useStyles:()=>o});var o=(0,n(3562).createStyles)((function(e){var t,n,o=e.token;return{header:(0,e.css)(r||(t=["\n display: flex;\n width: 100%;\n height: 32px;\n min-height: 32px;\n align-items: center;\n gap: 8px;\n\n .header__title {\n font-weight: 600;\n color: ",";\n white-space: nowrap;\n }\n "],n||(n=t.slice(0)),r=Object.freeze(Object.defineProperties(t,{raw:{value:Object.freeze(n)}}))),o.colorPrimary)}}),{hashPriority:"low"})},41161:(e,t,n)=>{"use strict";n.r(t),n.d(t,{Header:()=>a});var r=n(36198),o=n(48324),i=n(26388),a=function(e){var t=(0,i.useStyles)().styles,n=e.icon,a=e.title,s=e.children;return r.createElement("div",{className:t.header},r.createElement("span",{className:"header__text"},r.createElement(o.Title,{icon:n},a)),r.createElement("div",{className:"header__content"},s))}},48035:(e,t,n)=>{"use strict";var r,o;function i(e,t){return t||(t=e.slice(0)),Object.freeze(Object.defineProperties(e,{raw:{value:Object.freeze(t)}}))}n.r(t),n.d(t,{useStyles:()=>a});var a=(0,n(3562).createStyles)((function(e,t){var n=e.css,a=t.scrollWidth,s=t.hideElement;return{scrollContainer:n(r||(r=i(["\n visibility: ",";\n display: flex;\n overflow-x: auto;\n "])),!0===s?"hidden":"visible"),scroll:n(o||(o=i(["\n overflow-x: auto;\n white-space: nowrap;\n ","\n\n &::-webkit-scrollbar {\n display: none;\n }\n "])),null!=a?"width: ".concat(a,"px;"):"")}}))},67892:(e,t,n)=>{"use strict";n.r(t),n.d(t,{HorizontalScroll:()=>c});var r=n(36198),o=n(48035),i=n(27027),a=n(28518);function s(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return l(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return l(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function l(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n=n),O(l.current.scrollWidth>l.current.clientWidth),x(l.current.clientWidth<50)}};(0,r.useEffect)((function(){if(null!==l.current){T(),l.current.addEventListener("scroll",T);var e=new ResizeObserver((function(){T()})),t=new MutationObserver((function(){T()}));return e.observe(l.current),t.observe(l.current,{childList:!0,subtree:!0}),function(){var n;null===(n=l.current)||void 0===n||n.removeEventListener("scroll",T),e.disconnect(),t.disconnect(),d(null)}}}),[]);var C=function(e){if(null===u){var t=setInterval((function(){if(null!==l.current){var t="left"===e?-50:50;l.current.scrollBy({left:t,behavior:"smooth"})}}),30);d(t)}},P=function(){C("left")},_=function(){C("right")},k=function(){null!==u&&(clearInterval(u),d(null))},j=function(e){"Enter"!==e.key&&" "!==e.key||k()},A=function(e,t){"Enter"!==e.key&&" "!==e.key||("left"===t?P():"right"===t&&_())};return r.createElement(a.Flex,{align:"center",className:["horizontal-scroll",E.scrollContainer].join(" ")},b&&r.createElement(i.IconButton,{disabled:h,icon:{value:"chevron-left",options:{height:18,width:18}},onKeyDown:function(e){A(e,"left")},onKeyUp:j,onMouseDown:P,onMouseLeave:k,onMouseUp:k,theme:"secondary"}),r.createElement(a.Flex,{align:"center",className:[E.scroll,"w-full"].join(" "),ref:l},t),b&&r.createElement(i.IconButton,{disabled:g,icon:{value:"chevron-right",options:{height:18,width:18}},onKeyDown:function(e){A(e,"right")},onKeyUp:j,onMouseDown:_,onMouseLeave:k,onMouseUp:k,theme:"secondary"}))}},37279:(e,t,n)=>{"use strict";var r;n.r(t),n.d(t,{useStyles:()=>o});var o=(0,n(3562).createStyles)((function(e){var t,n,o=e.token;return{button:(0,e.css)(r||(t=["\n padding: 6px;\n height: 32px;\n width: 32px;\n line-height: 0;\n\n &.icon-button--theme-secondary {\n color: ",";\n }\n \n &.icon-button--hide-shadow {\n box-shadow: none;\n }\n\n &.icon-button--variant-minimal {\n padding: 0;\n width: auto;\n height: auto;\n }\n\n &.icon-button--variant-static {\n width: 24px;\n height: 24px;\n padding: 4px;\n border: 1px solid ",";\n background-color: ",";\n border-radius: ",";\n\n &:hover, &:disabled, &:active {\n border-color: "," !important;\n }\n\n &:focus-visible {\n outline: none !important;\n outline-offset: 0 !important;\n }\n }\n "],n||(n=t.slice(0)),r=Object.freeze(Object.defineProperties(t,{raw:{value:Object.freeze(n)}}))),o.colorText,o.colorBorderContainer,o.IconButton.colorBgContainer,o.IconButton.borderRadiusSM,o.colorBorderContainer)}}))},27027:(e,t,n)=>{"use strict";n.r(t),n.d(t,{IconButton:()=>d});var r=n(36198),o=n(93967),i=n.n(o),a=n(71816),s=n(54663),l=n(37279),c=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&t.indexOf(r)<0&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var o=0;for(r=Object.getOwnPropertySymbols(e);o{"use strict";n.r(t),n.d(t,{IconTextButton:()=>l});var r=n(71816),o=n(36198),i=n(54663),a=n(28518),s=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&t.indexOf(r)<0&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var o=0;for(r=Object.getOwnPropertySymbols(e);o{"use strict";n.r(t),n.d(t,{Icon:()=>a});var r=n(81690),o=n(36198),i=n(54088),a=function(e){var t,n,a=e.value,s=e.type,l=void 0===s?"name":s,c=e.options,u=e.className,d=(0,r.useInjection)(i.serviceIds.iconLibrary),f=null!==(t=null==c?void 0:c.width)&&void 0!==t?t:16,h=null!==(n=null==c?void 0:c.height)&&void 0!==n?n:16;return o.createElement("div",{className:"pimcore-icon pimcore-icon-".concat(a," anticon ").concat(u),style:{width:f,height:h}},function(){if("path"===l)return o.createElement("img",{alt:"foo",src:a,style:{width:f,height:h}});var e=d.get(a);return void 0===e?o.createElement("div",{style:{width:f,height:h}}):o.createElement(e,Object.assign({height:h,width:f},c))}())}},17812:(e,t,n)=>{"use strict";var r;n.r(t),n.d(t,{useStyle:()=>o});var o=(0,n(3562).createStyles)((function(e){var t,n,o=e.token;return{imageTargetContainer:(0,e.css)(r||(t=["\n border-radius: ","px;\n border: 1px dashed ",";\n background: ",";\n padding: ","px;\n \n .image-target-title {\n text-align: center;\n }\n "],n||(n=t.slice(0)),r=Object.freeze(Object.defineProperties(t,{raw:{value:Object.freeze(n)}}))),o.borderRadiusLG,o.colorBorder,o.controlItemBgHover,o.paddingSM)}}))},36529:(e,t,n)=>{"use strict";n.r(t),n.d(t,{ImageTarget:()=>c});var r=n(36198),o=n(47259),i=n(17812),a=n(93967),s=n.n(a),l=n(16437),c=function(e){var t=e.title,n=e.width,a=e.height,c=e.className,u=(0,i.useStyle)().styles;return r.createElement(o.Flex,{align:"center",className:s()(c,u.imageTargetContainer),justify:"center",style:{maxWidth:(0,l.toCssDimension)(n),height:(0,l.toCssDimension)(a)}},r.createElement("div",{className:"image-target-title"},t))}},6029:(e,t,n)=>{"use strict";var r,o,i,a;function s(e,t){return t||(t=e.slice(0)),Object.freeze(Object.defineProperties(e,{raw:{value:Object.freeze(t)}}))}n.r(t),n.d(t,{useStyle:()=>l});var l=(0,n(3562).createStyles)((function(e){var t=e.token,n=e.css;return{imageZoomContainer:n(r||(r=s(["\n display: flex;\n gap: 5px\n "]))),imageZoom:n(o||(o=s(["\n .ant-select {\n min-width: 70px;\n text-align: center;\n\n .ant-select-selector {\n border: 1px solid ",";\n\n .ant-select-selection-item {\n padding-inline-end: unset;\n }\n }\n\n .ant-select-arrow {\n display: none;\n }\n }\n "])),t.Button.defaultBorderColor),imageZoomBtn:n(i||(i=s(["\n border: 1px solid ",";\n box-shadow: none !important;\n width: ","px;\n height: ","px;\n padding: 0;\n display: flex;\n justify-content: center;\n align-items: center;\n\n .pimcore-icon {\n display: flex;\n }\n\n &:disabled {\n background: ",";\n }\n "])),t.Button.defaultBorderColor,t.controlHeight,t.controlHeight,t.colorBgContainer),imageZoomResetBtn:n(a||(a=s(["\n border: 1px solid ",";\n box-shadow: none !important;\n width: auto;\n height: ","px;\n "])),t.Button.defaultBorderColor,t.controlHeight)}}))},99915:(e,t,n)=>{"use strict";n.r(t),n.d(t,{ImageZoom:()=>f});var r=n(36198),o=n(30811),i=n(28518),a=n(54663),s=n(6029),l=n(38576),c=n(58664);function u(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return d(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return d(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function d(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n=500&&m(!0),p&&t<500&&m(!1),t<=25&&v(!0),y&&t>25&&v(!1)}),[t]),r.createElement("div",{className:b.imageZoomContainer},100!==t&&r.createElement(i.Button,{"aria-label":O("aria.asset.image.editor.zoom.reset"),className:b.imageZoomResetBtn,onClick:function(){n(100)},onKeyDown:l.onKeyEnterExecuteClick},O("asset.image.editor.zoom.reset")),r.createElement(i.Space.Compact,{className:b.imageZoom},r.createElement(i.Button,{"aria-disabled":y,"aria-label":O("aria.asset.image.editor.zoom.zoom-out"),className:b.imageZoomBtn,disabled:y,onClick:function(){n(t-f)},onKeyDown:l.onKeyEnterExecuteClick},r.createElement(a.Icon,{value:"MinusOutlined"})),r.createElement(c.Select,{"aria-label":O("aria.asset.image.editor.zoom.preconfigured-zoom-levels"),defaultActiveFirstOption:!0,defaultValue:"100",onChange:function(e){n(parseInt(e))},options:[{value:"100",label:"100%"},{value:"125",label:"125%"},{value:"150",label:"150%"},{value:"175",label:"175%"},{value:"200",label:"200%"},{value:"225",label:"225%"},{value:"250",label:"250%"}],value:"".concat(t,"%")}),r.createElement(i.Button,{"aria-disabled":p,"aria-label":O("aria.asset.image.editor.zoom.zoom-in"),className:b.imageZoomBtn,disabled:p,onClick:function(){n(t+f)},onKeyDown:l.onKeyEnterExecuteClick},r.createElement(a.Icon,{value:"PlusOutlined"}))))}},79701:(e,t,n)=>{"use strict";var r;n.r(t),n.d(t,{useStyles:()=>o});var o=(0,n(3562).createStyles)((function(e){var t,n,o=e.token;return{languageSelect:(0,e.css)(r||(t=["\n display: flex;\n gap: 2px;\n align-items: center;\n justify-content: center;\n height: 32px;\n\n button {\n width: 20px;\n height: 20px;\n color: ",";\n padding: 2px;\n }\n\n .language-select__current-value {\n display: flex;\n align-items: center;\n justify-content: center;\n text-transform: uppercase;\n gap: 2px;\n width: 45px;\n }\n "],n||(n=t.slice(0)),r=Object.freeze(Object.defineProperties(t,{raw:{value:Object.freeze(n)}}))),o.colorText)}}))},68034:(e,t,n)=>{"use strict";n.r(t),n.d(t,{LanguageSelection:()=>u,transformLanguage:()=>c});var r=n(71816),o=n(36198),i=n(54663),a=n(79701);function s(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return l(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return l(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function l(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";var r;n.r(t),n.d(t,{useStyle:()=>o});var o=(0,n(3562).createStyles)((function(e){var t,n,o=e.token;return{form:(0,e.css)(r||(t=["\n form {\n display: flex;\n flex-direction: column;\n gap: 8px;\n font-family: Lato, sans-serif;\n font-size: 12px;\n font-style: normal;\n font-weight: 400;\n line-height: 22px;\n\n .flex-space {\n display: flex;\n justify-content: space-between;\n align-items: center;\n }\n\n .ant-btn-link {\n color: ",";\n\n &:hover {\n color: ",";\n }\n }\n }\n \n .login__additional-logins {\n display: flex;\n flex-direction: column;\n align-items: center;\n gap: 8px;\n \n .ant-btn {\n width: 100%;\n }\n }\n "],n||(n=t.slice(0)),r=Object.freeze(Object.defineProperties(t,{raw:{value:Object.freeze(n)}}))),o.colorPrimary,o.colorPrimaryHover)}}))},65437:(e,t,n)=>{"use strict";n.r(t),n.d(t,{LoginForm:()=>v});var r=n(28518),o=n(71816),i=n(36198),a=n(47170),s=n(45007),l=n(78078),c=n(30811),u=n(4362),d=n(54663),f=n(37150);function h(e){return h="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},h(e)}function p(){p=function(){return t};var e,t={},n=Object.prototype,r=n.hasOwnProperty,o=Object.defineProperty||function(e,t,n){e[t]=n.value},i="function"==typeof Symbol?Symbol:{},a=i.iterator||"@@iterator",s=i.asyncIterator||"@@asyncIterator",l=i.toStringTag||"@@toStringTag";function c(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{c({},"")}catch(e){c=function(e,t,n){return e[t]=n}}function u(e,t,n,r){var i=t&&t.prototype instanceof b?t:b,a=Object.create(i.prototype),s=new R(r||[]);return o(a,"_invoke",{value:_(e,n,s)}),a}function d(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}t.wrap=u;var f="suspendedStart",m="suspendedYield",g="executing",y="completed",v={};function b(){}function O(){}function w(){}var S={};c(S,a,(function(){return this}));var x=Object.getPrototypeOf,E=x&&x(x(D([])));E&&E!==n&&r.call(E,a)&&(S=E);var T=w.prototype=b.prototype=Object.create(S);function C(e){["next","throw","return"].forEach((function(t){c(e,t,(function(e){return this._invoke(t,e)}))}))}function P(e,t){function n(o,i,a,s){var l=d(e[o],e,i);if("throw"!==l.type){var c=l.arg,u=c.value;return u&&"object"==h(u)&&r.call(u,"__await")?t.resolve(u.__await).then((function(e){n("next",e,a,s)}),(function(e){n("throw",e,a,s)})):t.resolve(u).then((function(e){c.value=e,a(c)}),(function(e){return n("throw",e,a,s)}))}s(l.arg)}var i;o(this,"_invoke",{value:function(e,r){function o(){return new t((function(t,o){n(e,r,t,o)}))}return i=i?i.then(o,o):o()}})}function _(t,n,r){var o=f;return function(i,a){if(o===g)throw Error("Generator is already running");if(o===y){if("throw"===i)throw a;return{value:e,done:!0}}for(r.method=i,r.arg=a;;){var s=r.delegate;if(s){var l=k(s,r);if(l){if(l===v)continue;return l}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if(o===f)throw o=y,r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);o=g;var c=d(t,n,r);if("normal"===c.type){if(o=r.done?y:m,c.arg===v)continue;return{value:c.arg,done:r.done}}"throw"===c.type&&(o=y,r.method="throw",r.arg=c.arg)}}}function k(t,n){var r=n.method,o=t.iterator[r];if(o===e)return n.delegate=null,"throw"===r&&t.iterator.return&&(n.method="return",n.arg=e,k(t,n),"throw"===n.method)||"return"!==r&&(n.method="throw",n.arg=new TypeError("The iterator does not provide a '"+r+"' method")),v;var i=d(o,t.iterator,n.arg);if("throw"===i.type)return n.method="throw",n.arg=i.arg,n.delegate=null,v;var a=i.arg;return a?a.done?(n[t.resultName]=a.value,n.next=t.nextLoc,"return"!==n.method&&(n.method="next",n.arg=e),n.delegate=null,v):a:(n.method="throw",n.arg=new TypeError("iterator result is not an object"),n.delegate=null,v)}function j(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function A(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function R(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(j,this),this.reset(!0)}function D(t){if(t||""===t){var n=t[a];if(n)return n.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var o=-1,i=function n(){for(;++o=0;--i){var a=this.tryEntries[i],s=a.completion;if("root"===a.tryLoc)return o("end");if(a.tryLoc<=this.prev){var l=r.call(a,"catchLoc"),c=r.call(a,"finallyLoc");if(l&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),A(n),v}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;A(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),v}},t}function m(e,t,n,r,o,i,a){try{var s=e[i](a),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(r,o)}function g(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return y(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return y(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function y(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";var r;n.r(t),n.d(t,{useStlyes:()=>o});var o=(0,n(3562).createStyles)((function(e){var t,n;e.token;return{logo:(0,e.css)(r||(t=["\n padding: 13px 16px 0 16px;\n "],n||(n=t.slice(0)),r=Object.freeze(Object.defineProperties(t,{raw:{value:Object.freeze(n)}}))))}}),{hashPriority:"low"})},82595:(e,t,n)=>{"use strict";n.r(t),n.d(t,{Logo:()=>a});var r=n(36198),o=n(69922),i=n(96574),a=function(){var e=(0,i.useStlyes)().styles;return r.createElement("div",{className:["logo",e.logo].join(" ")},r.createElement(o.default,{color:"#333",fill:"#ff0000",height:24,width:24}))}},70095:(e,t,n)=>{"use strict";var r;n.r(t),n.d(t,{useStyle:()=>o});var o=(0,n(3562).createStyles)((function(e){var t,n;e.token;return{message:(0,e.css)(r||(t=["\n .ant-message-custom-content {\n font-family: Lato,serif;\n font-size: 12px;\n font-style: normal;\n font-weight: 400;\n line-height: 22px;\n }\n "],n||(n=t.slice(0)),r=Object.freeze(Object.defineProperties(t,{raw:{value:Object.freeze(n)}}))))}}),{hashPriority:"low"})},78078:(e,t,n)=>{"use strict";n.r(t),n.d(t,{useMessage:()=>l});var r=n(28518),o=n(54663),i=n(36198),a=n(70095);function s(e){return s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},s(e)}var l=function(e){var t=r.App.useApp().message,n=Object.assign({},t),l=(0,a.useStyle)().styles;return n.info=function(e,n,r){var a;return(a=null!==e&&"object"===s(e)&&"content"in e?e:{content:e}).icon=i.createElement(o.Icon,{options:{width:"16px",height:"16px"},value:"info-circle-filled"}),t.info(a,n,r)},n.open=function(e){return"info"===e.type?t.open(Object.assign({icon:i.createElement(o.Icon,{options:{width:"16px",height:"16px"},value:"info-circle-filled"}),className:l.message},e)):t.open(Object.assign({className:l.message},e))},n}},69703:(e,t,n)=>{"use strict";var r;n.r(t),n.d(t,{useStyle:()=>o});var o=(0,n(3562).createStyles)((function(e){var t,n,o=e.token;return{footer:(0,e.css)(r||(t=["\n &.--divider {\n padding-top: 10px;\n border-top: 1px solid ","\n }\n \n .ant-btn-link {\n color: ",";\n margin: 0;\n padding: 0;\n\n &:hover {\n color: ",";\n }\n }\n "],n||(n=t.slice(0)),r=Object.freeze(Object.defineProperties(t,{raw:{value:Object.freeze(n)}}))),o.Divider.colorSplit,o.colorPrimary,o.colorPrimaryHover)}}),{hashPriority:"low"})},16826:(e,t,n)=>{"use strict";n.r(t),n.d(t,{ModalFooter:()=>s});var r=n(36198),o=n(69703),i=n(47259),a=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&t.indexOf(r)<0&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var o=0;for(r=Object.getOwnPropertySymbols(e);o{"use strict";n.r(t),n.d(t,{useFormModal:()=>g,withConfirm:()=>v,withInput:()=>y});var r=n(36198),o=n(28518),i=n(86536),a=n(36609),s=n(79195);function l(e){return l="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},l(e)}function c(e,t,n){var r;return r=function(e,t){if("object"!=l(e)||!e)return e;var n=e[Symbol.toPrimitive];if(void 0!==n){var r=n.call(e,t||"default");if("object"!=l(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"),(t="symbol"==l(r)?r:r+"")in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function u(){u=function(){return t};var e,t={},n=Object.prototype,r=n.hasOwnProperty,o=Object.defineProperty||function(e,t,n){e[t]=n.value},i="function"==typeof Symbol?Symbol:{},a=i.iterator||"@@iterator",s=i.asyncIterator||"@@asyncIterator",c=i.toStringTag||"@@toStringTag";function d(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{d({},"")}catch(e){d=function(e,t,n){return e[t]=n}}function f(e,t,n,r){var i=t&&t.prototype instanceof b?t:b,a=Object.create(i.prototype),s=new R(r||[]);return o(a,"_invoke",{value:_(e,n,s)}),a}function h(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}t.wrap=f;var p="suspendedStart",m="suspendedYield",g="executing",y="completed",v={};function b(){}function O(){}function w(){}var S={};d(S,a,(function(){return this}));var x=Object.getPrototypeOf,E=x&&x(x(D([])));E&&E!==n&&r.call(E,a)&&(S=E);var T=w.prototype=b.prototype=Object.create(S);function C(e){["next","throw","return"].forEach((function(t){d(e,t,(function(e){return this._invoke(t,e)}))}))}function P(e,t){function n(o,i,a,s){var c=h(e[o],e,i);if("throw"!==c.type){var u=c.arg,d=u.value;return d&&"object"==l(d)&&r.call(d,"__await")?t.resolve(d.__await).then((function(e){n("next",e,a,s)}),(function(e){n("throw",e,a,s)})):t.resolve(d).then((function(e){u.value=e,a(u)}),(function(e){return n("throw",e,a,s)}))}s(c.arg)}var i;o(this,"_invoke",{value:function(e,r){function o(){return new t((function(t,o){n(e,r,t,o)}))}return i=i?i.then(o,o):o()}})}function _(t,n,r){var o=p;return function(i,a){if(o===g)throw Error("Generator is already running");if(o===y){if("throw"===i)throw a;return{value:e,done:!0}}for(r.method=i,r.arg=a;;){var s=r.delegate;if(s){var l=k(s,r);if(l){if(l===v)continue;return l}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if(o===p)throw o=y,r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);o=g;var c=h(t,n,r);if("normal"===c.type){if(o=r.done?y:m,c.arg===v)continue;return{value:c.arg,done:r.done}}"throw"===c.type&&(o=y,r.method="throw",r.arg=c.arg)}}}function k(t,n){var r=n.method,o=t.iterator[r];if(o===e)return n.delegate=null,"throw"===r&&t.iterator.return&&(n.method="return",n.arg=e,k(t,n),"throw"===n.method)||"return"!==r&&(n.method="throw",n.arg=new TypeError("The iterator does not provide a '"+r+"' method")),v;var i=h(o,t.iterator,n.arg);if("throw"===i.type)return n.method="throw",n.arg=i.arg,n.delegate=null,v;var a=i.arg;return a?a.done?(n[t.resultName]=a.value,n.next=t.nextLoc,"return"!==n.method&&(n.method="next",n.arg=e),n.delegate=null,v):a:(n.method="throw",n.arg=new TypeError("iterator result is not an object"),n.delegate=null,v)}function j(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function A(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function R(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(j,this),this.reset(!0)}function D(t){if(t||""===t){var n=t[a];if(n)return n.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var o=-1,i=function n(){for(;++o=0;--i){var a=this.tryEntries[i],s=a.completion;if("root"===a.tryLoc)return o("end");if(a.tryLoc<=this.prev){var l=r.call(a,"catchLoc"),c=r.call(a,"finallyLoc");if(l&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),A(n),v}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;A(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),v}},t}function d(e,t,n,r,o,i,a){try{var s=e[i](a),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(r,o)}function f(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return h(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return h(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function h(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";n.r(t),n.d(t,{ModalTitle:()=>s});var r=n(28518),o=n(36198),i=n(54663),a=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&t.indexOf(r)<0&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var o=0;for(r=Object.getOwnPropertySymbols(e);o{"use strict";var r;n.r(t),n.d(t,{useStyle:()=>o});var o=(0,n(3562).createStyles)((function(e){var t,n,o=e.token;return{modal:(0,e.css)(r||(t=["\n &.ant-modal .ant-modal-footer > .ant-btn + .ant-btn {\n margin-inline-start: 0;\n }\n\n .ant-modal-content {\n width: 100%;\n display: inline-flex;\n flex-direction: column;\n align-items: start;\n gap: ","px;\n\n .ant-modal-header {\n margin-bottom: 0;\n\n .ant-modal-title {\n font-size: 16px;\n font-weight: 900;\n line-height: 24px;\n display: flex;\n gap: 4px;\n }\n }\n\n .ant-modal-footer {\n width: 100%;\n }\n\n .ant-modal-body {\n width: 100%;\n line-height: 22px;\n\n & > p {\n margin: 0;\n }\n }\n }\n "],n||(n=t.slice(0)),r=Object.freeze(Object.defineProperties(t,{raw:{value:Object.freeze(n)}}))),o.marginSM)}}),{hashPriority:"low"})},55381:(e,t,n)=>{"use strict";n.r(t),n.d(t,{Modal:()=>l});var r=n(28518),o=n(36198),i=n(92810),a=n(31090),s=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&t.indexOf(r)<0&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var o=0;for(r=Object.getOwnPropertySymbols(e);o{"use strict";n.r(t),n.d(t,{useModal:()=>l,withError:()=>c,withInfo:()=>d,withSuccess:()=>u,withWarn:()=>f});var r=n(36198),o=n(55381);function i(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return a(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return a(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function a(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n0&&void 0!==arguments[0]?arguments[0]:{type:"default"},t=i((0,r.useState)(!1),2),n=t[0],a=t[1],l=function(){a(!1)},h=function(){l()},p=function(){l()};return{renderModal:function(t){var i=t.children,a=s(t,["children"]),l=function(e){var t=o.Modal;switch(e){case"error":t=c(o.Modal);break;case"success":t=u(o.Modal);break;case"info":t=d(o.Modal);break;case"warn":t=f(o.Modal)}return t}(e.type);return r.createElement(l,Object.assign({onCancel:p,onOk:h,open:n},a),i)},showModal:function(){a(!0)},handleOk:h,handleCancel:p,closeModal:l}},c=function(e){return function(t){var n=t.children,o=s(t,["children"]);return r.createElement(e,Object.assign({iconName:"close-circle-filled",title:"Error"},o),n)}},u=function(e){return function(t){var n=t.children,o=s(t,["children"]);return r.createElement(e,Object.assign({iconName:"check-circle-filled",title:"Success"},o),n)}},d=function(e){return function(t){var n=t.children,o=s(t,["children"]);return r.createElement(e,Object.assign({iconName:"info-circle-filled",title:"Info"},o),n)}},f=function(e){return function(t){var n=t.children,o=s(t,["children"]);return r.createElement(e,Object.assign({iconName:"exclamation-circle-filled",title:"Warn"},o),n)}}},50868:(e,t,n)=>{"use strict";var r;n.r(t),n.d(t,{useStyle:()=>o});var o=(0,n(3562).createStyles)((function(e){var t,n,o=e.token;return{content:(0,e.css)(r||(t=["\n .ant-empty-image {\n margin-bottom: ","px;\n height: auto;\n }\n \n .ant-empty-description {\n padding: 5px ","px;\n font-size: 14px;\n color: ",";\n line-height: 20px;\n }\n "],n||(n=t.slice(0)),r=Object.freeze(Object.defineProperties(t,{raw:{value:Object.freeze(n)}}))),o.marginXS,o.controlPaddingHorizontal,o.Empty.colorTextDisabled)}}))},32859:(e,t,n)=>{"use strict";n.r(t),n.d(t,{NoContent:()=>s});var r=n(28518),o=n(50868),i=n(36198),a=n(54663),s=function(e){var t=e.text,n=(0,o.useStyle)().styles;return i.createElement("div",{className:n.content},i.createElement(r.Empty,{description:t,image:i.createElement(a.Icon,{options:{width:184,height:123},value:"no-content"})}))}},70881:(e,t,n)=>{"use strict";var r;n.r(t),n.d(t,{useStyle:()=>o});var o=(0,n(3562).createStyles)((function(e){var t,n,o=e.token;return{notification:(0,e.css)(r||(t=["\n .ant-notification-notice-content { \n .ant-notification-notice-message {\n color: ",";\n font-size: 16px !important;\n font-style: normal;\n font-weight: 400;\n line-height: 24px;\n margin-bottom: ","\n }\n }\n "],n||(n=t.slice(0)),r=Object.freeze(Object.defineProperties(t,{raw:{value:Object.freeze(n)}}))),o.colorText,o.marginXS)}}),{hashPriority:"low"})},2545:(e,t,n)=>{"use strict";n.r(t),n.d(t,{useNotification:()=>i});var r=n(28518),o=n(70881),i=function(){var e=r.App.useApp().notification,t=Object.assign({},e),n=(0,o.useStyle)().styles;return t.open=function(t){e.open(Object.assign(Object.assign({},t),{className:n.notification}))},[t]}},11822:(e,t,n)=>{"use strict";n.r(t),n.d(t,{NumericRange:()=>m,validateOneFieldEmpty:()=>h,validateSecondValueGreater:()=>p});var r=n(36198),o=n(28518),i=n(47259),a=n(36609);function s(e){return s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},s(e)}function l(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return c(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return c(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function c(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n=0;--i){var a=this.tryEntries[i],s=a.completion;if("root"===a.tryLoc)return o("end");if(a.tryLoc<=this.prev){var l=r.call(a,"catchLoc"),c=r.call(a,"finallyLoc");if(l&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),A(n),v}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;A(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),v}},t}function d(e,t,n,r,o,i,a){try{var s=e[i](a),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(r,o)}function f(e){return function(){var t=this,n=arguments;return new Promise((function(r,o){var i=e.apply(t,n);function a(e){d(i,r,o,a,s,"next",e)}function s(e){d(i,r,o,a,s,"throw",e)}a(void 0)}))}}var h=function(){var e=f(u().mark((function e(t,n){return u().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(null!==n){e.next=4;break}return e.next=3,Promise.resolve();case 3:return e.abrupt("return");case 4:if(null!==n[0]){e.next=7;break}return e.next=7,Promise.reject(Error((0,a.t)("form.validation.numeric-range.first-value-missing")));case 7:if(null!==n[1]){e.next=10;break}return e.next=10,Promise.reject(Error((0,a.t)("form.validation.numeric-range.second-value-missing")));case 10:return e.next=12,Promise.resolve();case 12:case"end":return e.stop()}}),e)})));return function(t,n){return e.apply(this,arguments)}}(),p=function(){var e=f(u().mark((function e(t,n){return u().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,h(t,n);case 2:if(null!==n){e.next=4;break}return e.abrupt("return");case 4:if(!(n[0]>n[1])){e.next=7;break}return e.next=7,Promise.reject(Error((0,a.t)("form.validation.numeric-range.second-value-greater")));case 7:return e.next=9,Promise.resolve();case 9:case"end":return e.stop()}}),e)})));return function(t,n){return e.apply(this,arguments)}}(),m=function(e){var t,n=l((0,r.useState)(null!==(t=e.value)&&void 0!==t?t:null),2),a=n[0],s=n[1];(0,r.useEffect)((function(){void 0!==e.onChange&&e.onChange(a)}),[a]);var c=function(e,t){s((function(n){null===n&&(n=[null,null]);var r=0===e?[t,n[1]]:[n[0],t];return null===r[0]&&null===r[1]?null:r}))};return r.createElement(i.Flex,{align:"center",className:e.className,gap:"mini"},r.createElement(o.InputNumber,Object.assign({},e,{onChange:function(e){c(0,e)},value:null!==a?a[0]:null})),r.createElement("div",null,"–"),r.createElement(o.InputNumber,Object.assign({},e,{onChange:function(e){c(1,e)},value:null!==a?a[1]:null})))}},63097:(e,t,n)=>{"use strict";var r;n.r(t),n.d(t,{useStyle:()=>o});var o=(0,n(3562).createStyles)((function(e){var t,n,o=e.token;return{"editable-container":(0,e.css)(r||(t=["\n position: relative;\n height: 30px;\n\n .input-field {\n font-family: Lato, sans-serif;\n font-size: 12px;\n text-align: center;\n line-height: ","px;\n\n border-radius: ","px;\n border-color: ",';\n background-color: white;\n\n /* Firefox */\n -moz-appearance: textfield;\n }\n\n .input-field:focus-visible {\n outline: none;\n }\n\n /* Chrome, Safari, Edge, Opera */\n\n .input-field::-webkit-outer-spin-button,\n .input-field::-webkit-inner-spin-button {\n -webkit-appearance: none;\n margin: 0;\n }\n\n & button[type="button"], .input-field {\n display: block;\n position: absolute;\n top: 0;\n inset-inline-end: 0;\n bottom: 0;\n inset-inline-start: 0;\n padding: unset;\n margin: auto;\n\n width: ',"px;\n height: ","px;\n }\n\n .input-field.remove-decoration {\n border: none;\n background: none;\n }\n\n & button.inline-label.display-none, & button.inline-label-dots.display-none, & input.input-field.display-none {\n display: none;\n }\n\n button.inline-label-dots {\n border: none;\n }\n\n button.inline-label-dots, button.inline-label {\n font-family: Lato, sans-serif;\n line-height: 30px;\n text-align: center;\n vertical-align: text-bottom;\n box-shadow: none;\n background-color: transparent;\n cursor: text;\n }\n\n button.inline-label {\n color: ",";\n border: 1px solid ",";\n border-radius: ","px;\n }\n "],n||(n=t.slice(0)),r=Object.freeze(Object.defineProperties(t,{raw:{value:Object.freeze(n)}}))),o.controlHeight,o.borderRadius,o.colorBorder,o.controlHeight,o.controlHeight,o.colorPrimary,o.colorPrimary,o.borderRadius)}}),{hashPriority:"low"})},9537:(e,t,n)=>{"use strict";n.r(t),n.d(t,{InlineTextfield:()=>d});var r,o=n(36198),i=n(63097),a=n(38576),s=n(71816),l=n(54663);function c(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return u(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return u(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function u(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";var r;n.r(t),n.d(t,{useStyle:()=>o});var o=(0,n(3562).createStyles)((function(e){var t,n,o=e.token;return{pagination:(0,e.css)(r||(t=["\n .ant-pagination .ant-pagination-item {\n padding: unset;\n margin-top: unset;\n margin-bottom: unset;\n vertical-align: middle;\n }\n\n button.page-number-node {\n color: black;\n text-align: center;\n vertical-align: text-bottom;\n box-shadow: none;\n padding: 0 2px 2px 0;\n border: none;\n }\n\n button.page-number-node, .ant-pagination .ant-pagination-item {\n width: ","px;\n height: ","px;\n background-color: transparent;\n }\n \n & .ant-pagination-item-active span {\n color: ",";\n }\n "],n||(n=t.slice(0)),r=Object.freeze(Object.defineProperties(t,{raw:{value:Object.freeze(n)}}))),o.controlHeight,o.controlHeight,o.colorPrimary)}}),{hashPriority:"low"})},38549:(e,t,n)=>{"use strict";n.r(t),n.d(t,{Pagination:()=>g});var r=n(36198),o=n(79383),i=n(23236),a=n(54663),s=n(71816),l=n(73217),c=n(38576),u=n(55893),d=n(9537);function f(e){return function(e){if(Array.isArray(e))return m(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||p(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function h(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||p(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function p(e,t){if(e){if("string"==typeof e)return m(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?m(e,t):void 0}}function m(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n=N){var F=f(Array(N).keys()).map((function(e){return e+1}));$.push.apply($,f(B(F)))}else{var Q=function(e){if(e<=0)return[];var t=Math.floor(e/2);return f(Array(t).keys()).map((function(e){return e+1}))}(E),z=function(e,t){if(e<=0)return[];var n=Math.floor(e/2);e%2==0&&n--;var r=t-n+1;return f(Array(n).keys()).map((function(e){return e+r}))}(E,N);if($.push.apply($,f(B(Q))),N>3){$.push(r.createElement("li",{className:"ant-pagination-item",key:"page-jumper"},r.createElement(d.InlineTextfield,{onKeyDown:function(e){if("Enter"===e.key){var t=Number(e.target.value);t>0&&t<=N?D(t):t<1?D(1):t>N&&D(N),e.target.value="",e.target.blur()}},showDotsValues:[].concat(f(Q.map(String)),f(z.map(String))),value:null==R?void 0:R.toString()})))}$.push.apply($,f(B(z)))}return r.createElement("div",{className:k.pagination},r.createElement("ul",{className:"ant-pagination "+j},(0,c.isSet)(P)&&r.createElement(b,{showTotal:P,total:t}),r.createElement(y,{currentPage:R,onClickPrev:function(){D(R-1)}}),$,r.createElement(v,{currentPage:R,onClickNext:function(){D(R+1)},pages:N}),S&&r.createElement("li",{className:"ant-pagination-options",key:"page-jumper"},r.createElement(u.SizeChanger,{defaultSize:m,handleChange:function(e){M(e),D(1)},label:l.default.t("pagination.page"),sizeOptions:O}))))};function y(e){var t=e.currentPage,n=e.onClickPrev;return r.createElement("li",{className:"ant-pagination-prev ".concat(1===t?"ant-pagination-disabled":"")},r.createElement(s.Button,{className:"ant-pagination-item-link",disabled:1===t,icon:r.createElement(a.Icon,{options:{width:10,height:10},value:"left-outlined"}),onClick:n,size:"small",type:"text"}))}function v(e){var t=e.currentPage,n=e.pages,o=e.onClickNext;return r.createElement("li",{className:"ant-pagination-next ".concat(t===n?"ant-pagination-disabled":"")},r.createElement(s.Button,{className:"ant-pagination-item-link",disabled:t===n,icon:r.createElement(a.Icon,{options:{width:10,height:10},value:"right-outlined"}),onClick:o,size:"small",type:"text"}))}function b(e){var t=e.total,n=e.showTotal;return r.createElement("li",{className:"ant-pagination-total-text"},n(t))}},55893:(e,t,n)=>{"use strict";n.r(t),n.d(t,{SizeChanger:()=>s});var r=n(36198),o=n(58664);function i(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=function(e,t){if(!e)return;if("string"==typeof e)return a(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return a(e,t)}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0,o=function(){};return{s:o,n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,s=!0,l=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return s=e.done,e},e:function(e){l=!0,i=e},f:function(){try{s||null==n.return||n.return()}finally{if(l)throw i}}}}function a(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";n.r(t),n.d(t,{Paragraph:()=>i});var r=n(36198),o=n(28518).Typography.Paragraph,i=function(e){return r.createElement(o,Object.assign({},e))}},38345:(e,t,n)=>{"use strict";n.r(t),n.d(t,{PimcoreAudio:()=>i});var r=n(36198),o=n(30811),i=function(e){var t=e.sources,n=e.tracks,i=e.className,a=(0,o.useTranslation)().t;return r.createElement("audio",{className:i,controls:!0},t.map((function(e,t){return r.createElement("source",{key:t,src:e.src,type:e.type})})),null==n?void 0:n.map((function(e,t){return r.createElement("track",{key:t,kind:e.kind,label:e.label,src:e.src,srcLang:e.srcLang})})),a("asset.preview.no-audio-support"))}},93398:(e,t,n)=>{"use strict";var r;n.r(t),n.d(t,{useStyle:()=>o});var o=(0,n(3562).createStyles)((function(e){var t,n;e.token;return{"document-container":(0,e.css)(r||(t=["\n width: 100%;\n height: 100%;\n .loading-div {\n position: absolute;\n top: calc(50% - 11px);\n left: calc(50% - 8px);\n }\n \n .display-none {\n display: none;\n }\n "],n||(n=t.slice(0)),r=Object.freeze(Object.defineProperties(t,{raw:{value:Object.freeze(n)}}))))}}),{hashPriority:"low"})},82626:(e,t,n)=>{"use strict";n.r(t),n.d(t,{PimcoreDocument:()=>i});var r=n(36198),o=n(93398),i=function(e){var t=e.src,n=e.className,i=(0,o.useStyle)().styles;return r.createElement("div",{className:[i["document-container"],n].join(" ")},r.createElement("iframe",{src:t,title:t}))}},87398:(e,t,n)=>{"use strict";var r;n.r(t),n.d(t,{useStyle:()=>o});var o=(0,n(3562).createStyles)((function(e){var t,n,o=e.token;return{image:(0,e.css)(r||(t=["\n transition: transform ","s;\n "],n||(n=t.slice(0)),r=Object.freeze(Object.defineProperties(t,{raw:{value:Object.freeze(n)}}))),o.motionDurationFast)}}),{hashPriority:"low"})},71590:(e,t,n)=>{"use strict";n.r(t),n.d(t,{PimcoreImage:()=>s});var r=n(28518),o=n(36198),i=n(87398),a=n(77474),s=function(e){var t=(0,i.useStyle)().styles,n=(0,o.useContext)(a.ZoomContext).zoom;return o.createElement(r.Image,Object.assign({className:t.image,preview:!1,style:{transform:"scale(".concat(.01*n,")")}},e))}},96243:(e,t,n)=>{"use strict";n.r(t),n.d(t,{PimcoreVideo:()=>a});var r=n(36198),o=n(30811),i=n(74529),a=function(e){var t=e.sources,n=e.tracks,a=e.width,s=e.height,l=e.className,c=e.poster,u=(0,o.useTranslation)().t,d=(0,r.useContext)(i.VideoContext).setPlayerPosition;return r.createElement("video",{className:l,controls:!0,height:s,key:t[0].src,onTimeUpdate:function(e){var t=e.target;d(t.currentTime)},poster:c,width:a},t.map((function(e,t){return r.createElement("source",{key:t,src:e.src,type:e.type})})),null==n?void 0:n.map((function(e,t){return r.createElement("track",{key:t,kind:e.kind,label:e.label,src:e.src,srcLang:e.srcLang})})),u("asset.preview.no-video-support"))}},8663:(e,t,n)=>{"use strict";var r,o;function i(e,t){return t||(t=e.slice(0)),Object.freeze(Object.defineProperties(e,{raw:{value:Object.freeze(t)}}))}n.r(t),n.d(t,{useStyles:()=>a});var a=(0,n(3562).createStyles)((function(e){var t=e.css,n=e.token;return{infoIcon:t(r||(r=i(["\n color: rgba(0, 0, 0, 0.45);\n cursor: pointer;\n "]))),link:t(o||(o=i(["\n color: ",";\n }\n "])),n.colorTextLightSolid)}}))},13862:(e,t,n)=>{"use strict";n.r(t),n.d(t,{PQLQueryInput:()=>m});var r=n(36198),o=n(28518),i=n(96330),a=n(47259),s=n(99401),l=n(94617),c=n(79342),u=n(8663),d=n(54663);function f(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return h(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return h(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function h(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";var r;n.r(t),n.d(t,{useStyle:()=>o});var o=(0,n(3562).createStyles)((function(e){var t,n,o=e.token;return{card:(0,e.css)(r||(t=["\n &.ant-card {\n height: 103px;\n cursor: pointer;\n }\n\n &.card-medium {\n height: 150px;\n }\n \n &.ant-card .ant-card-body {\n padding: ","px ","px;\n margin-top: 7px;\n margin-bottom: 7px;\n width: 166px;\n }\n \n &.ant-card .ant-card-meta-title {\n font-weight: normal;\n }\n\n .checkbox, .checkbox-medium {\n position: absolute;\n top: ","px;\n left: ","px;\n }\n\n .checkbox-medium {\n left: ","px;\n }\n\n .dots-button, .dots-button-medium {\n position: absolute;\n top: ","px;\n right: ","px;\n }\n\n .dots-button-medium {\n right: ","px;\n }\n \n .dropdown-menu__icon {\n vertical-align: text-bottom;\n }\n\n .dots-button-open-dropdown:not(:disabled):not(.ant-btn-disabled):hover {\n background-color: ",";\n color: white;\n }\n\n .ant-card-cover .img-container, .ant-card-cover .img-container-medium {\n display: flex;\n justify-content: center;\n align-items: center;\n }\n \n .ant-card-cover .img-container {\n height: 64px;\n width: 170px;\n }\n\n .ant-image .ant-image-img.img, .ant-image .ant-image-img.img-medium {\n border-radius: unset;\n margin-top: 3px;\n }\n \n .ant-image .ant-image-img.img {\n max-height: 61px;\n max-width: 168px;\n }\n\n .ant-card-cover .img-container-medium {\n height: 109px;\n width: 236px;\n }\n\n .ant-image .ant-image-img.img-medium {\n max-height: 106px;\n max-width: 234px;\n }\n\n .menu-icon {\n margin-right: ","px;\n }\n\n .flexbox-start-end {\n display: flex;\n justify-content: space-between;\n }\n }\n "],n||(n=t.slice(0)),r=Object.freeze(Object.defineProperties(t,{raw:{value:Object.freeze(n)}}))),o.paddingXXS,o.paddingXS,o.paddingXXS,o.paddingXXS,o.paddingXS,o.paddingXXS,o.paddingXXS,o.paddingXS,o.Button.defaultColor,o.marginXS)}}),{hashPriority:"low"})},94414:(e,t,n)=>{"use strict";n.r(t),n.d(t,{PreviewCard:()=>h,SizeTypes:()=>r});var r,o=n(28518),i=n(36198),a=n(95955),s=n(46256),l=n(54663),c=n(41642),u=n(71590);function d(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return f(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return f(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function f(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";var r;n.r(t),n.d(t,{useStyle:()=>o});var o=(0,n(3562).createStyles)((function(e){var t,n,o=e.token;return{progressbar:(0,e.css)(r||(t=["\n padding-bottom: ","px; \n \n .progressbar-description {\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n align-items: flex-end;\n \n p {\n color: ",";\n margin: 0;\n font-size: 12px;\n font-weight: 400;\n line-height: 22px;\n }\n\n .progressbar-description__action {\n .ant-btn {\n color: ",";\n height: ","px;\n display: flex;\n justify-content: center;\n padding: 0 ","px;\n align-items: flex-end;\n\n &:hover {\n color: ","\n }\n }\n }\n }\n \n .ant-progress {\n margin-bottom: 0;\n \n .ant-progress-bg {\n background: ","; \n }\n }\n\n .progressbar-status {\n p {\n color: ",";\n font-size: 12px;\n font-weight: 400;\n line-height: 22px;\n margin: 0;\n }\n }\n "],n||(n=t.slice(0)),r=Object.freeze(Object.defineProperties(t,{raw:{value:Object.freeze(n)}}))),o.marginXXS,o.colorTextTertiary,o.colorPrimary,o.controlHeight,o.paddingXXS,o.colorPrimaryHover,o.colorTextDescription,o.colorTextSecondary)}}),{hashPriority:"low"})},10959:(e,t,n)=>{"use strict";n.r(t),n.d(t,{Progressbar:()=>s});var r=n(28518),o=n(36198),i=n(25370),a=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&t.indexOf(r)<0&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var o=0;for(r=Object.getOwnPropertySymbols(e);o{"use strict";var r;n.r(t),n.d(t,{useStyles:()=>o});var o=(0,n(3562).createStyles)((function(e,t){e.token;var n,o,i=e.css,a=t.region;return{regionItem:i(r||(n=["\n grid-area: ",";\n "],o||(o=n.slice(0)),r=Object.freeze(Object.defineProperties(n,{raw:{value:Object.freeze(o)}}))),a)}}))},13355:(e,t,n)=>{"use strict";n.r(t),n.d(t,{RegionItem:()=>l});var r=n(43039),o=n(36198),i=n(93967),a=n.n(i),s=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&t.indexOf(r)<0&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var o=0;for(r=Object.getOwnPropertySymbols(e);o{"use strict";n.r(t),n.d(t,{useStyles:()=>a});var r,o=n(3562),i=n(17368);var a=(0,o.createStyles)((function(e,t){e.token;var n=e.css,o=t.layoutDefinition,a=t.items,s=o.map((function(e){return'"'.concat(e,'"')})).join(" "),l=a.map((function(e){return{region:e.region,maxWidth:e.maxWidth}})),c=[];o.forEach((function(e){e.split(" ").forEach((function(e,t){var n,r=null===(n=l.find((function(t){return t.region===e})))||void 0===n?void 0:n.maxWidth;Array.isArray(c[t])||(c[t]=[]);var o=Number(null!=r?r:"0"),i=!isNaN(o);void 0!==r&&(""!==r&&"0"!==r&&!i||i&&o>0)&&(i?c[t].push("".concat(o,"px")):c[t].push(r))}))}));var u,d,f=c.map((function(e){return 0===e.length?"1fr":"max(".concat(e.join(","),")")})).join(" ");return{region:n(r||(u=["\n display: flex;\n flex-direction: column;\n // @todo make this configurable\n gap: 12px;\n\n // @todo we should introduce a predefined set of breakpoints\n @container "," (min-width: 768px) {\n display: grid;\n grid-template-areas: ",";\n grid-template-columns: ",";\n }\n "],d||(d=u.slice(0)),r=Object.freeze(Object.defineProperties(u,{raw:{value:Object.freeze(d)}}))),i.cssContainerWidget.name,s,f)}}))},65286:(e,t,n)=>{"use strict";n.r(t),n.d(t,{Region:()=>l});var r=n(36198),o=n(10499),i=n(93967),a=n.n(i),s=n(13355),l=function(e){var t=e.items,n=(0,o.useStyles)(e).styles,i=a()(n.region);return r.createElement("div",{className:i},t.map((function(e){return r.createElement(s.RegionItem,{component:e.component,key:e.region,maxWidth:e.maxWidth,region:e.region})})))}},69850:(e,t,n)=>{"use strict";n.r(t),n.d(t,{SanitizeHtml:()=>a});var r=n(36198),o=n(27856),i=n.n(o),a=function(e){var t,n=e.html,o=e.options;return t=void 0!==o?i().sanitize(n,o):i().sanitize(n),r.createElement("div",{dangerouslySetInnerHTML:{__html:t}})}},37652:(e,t,n)=>{"use strict";var r,o,i,a;function s(e,t){return t||(t=e.slice(0)),Object.freeze(Object.defineProperties(e,{raw:{value:Object.freeze(t)}}))}n.r(t),n.d(t,{useStyles:()=>l});var l=(0,n(3562).createStyles)((function(e){var t=e.css,n=e.token;return{search:t(r||(r=s(["\n .ant-input-prefix {\n margin-inline-end: ","px;\n }\n \n .ant-input-clear-icon {\n display: flex;\n }\n "])),n.marginXS),searchWithoutAddon:t(o||(o=s(["\n .ant-input-group-addon {\n display: none;\n }\n \n .ant-input-affix-wrapper,\n .ant-input {\n border-radius: ","px !important;\n }\n "])),n.borderRadius),searchIcon:t(i||(i=s(["\n color: ",";\n "])),n.colorTextPlaceholder),closeIcon:t(a||(a=s(["\n color: ",";\n "])),n.colorIcon)}}))},14278:(e,t,n)=>{"use strict";n.r(t),n.d(t,{SearchInput:()=>f});var r=n(36198),o=n(53988),i=n(93967),a=n.n(i),s=n(54663),l=n(37652);function c(e){return c="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},c(e)}function u(e,t,n){var r;return r=function(e,t){if("object"!=c(e)||!e)return e;var n=e[Symbol.toPrimitive];if(void 0!==n){var r=n.call(e,t||"default");if("object"!=c(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"),(t="symbol"==c(r)?r:r+"")in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var d=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&t.indexOf(r)<0&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var o=0;for(r=Object.getOwnPropertySymbols(e);o{"use strict";var r;n.r(t),n.d(t,{useStyles:()=>o});var o=(0,n(3562).createStyles)((function(e){var t,n,o=e.token;return{segmented:(0,e.css)(r||(t=["\n .ant-segmented-group {\n padding: 2px;\n border-radius: ","px;\n border: 1px solid ",";\n background: ",";\n box-shadow: ",";\n\n .ant-segmented-item {\n color: ",";\n\n &.ant-segmented-item-selected {\n background: ",";\n border-color: ",";\n color: ",";\n }\n }\n }\n "],n||(n=t.slice(0)),r=Object.freeze(Object.defineProperties(t,{raw:{value:Object.freeze(n)}}))),o.borderRadius,o.colorBorderSecondary,o.colorBgLayout,o.boxShadow,o.itemColor,o.controlItemBgActive,o.controlItemBgActive,o.itemSelectedColor)}}))},57567:(e,t,n)=>{"use strict";n.r(t),n.d(t,{Segmented:()=>s});var r=n(36198),o=n(49610),i=n(28518),a=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&t.indexOf(r)<0&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var o=0;for(r=Object.getOwnPropertySymbols(e);o{"use strict";n.r(t),n.d(t,{useStyles:()=>g});var r,o,i,a,s,l,c,u,d,f,h=n(3562),p=n(79342);function m(e,t){return t||(t=e.slice(0)),Object.freeze(Object.defineProperties(e,{raw:{value:Object.freeze(t)}}))}var g=(0,h.createStyles)((function(e,t){var n=e.css,h=e.token;return{selectContainer:n(r||(r=m(["\n position: relative;\n \n &:hover {\n .custom-select-icon {\n color: ",";\n }\n }\n "])),h.colorPrimary),selectContainerWarning:n(o||(o=m(["\n &:hover {\n .custom-select-icon {\n color: "," !important;\n }\n }\n \n .ant-select-status-warning {\n &.ant-select-open, &.ant-select-focused {\n .ant-select-selection-item {\n color: ",";\n }\n\n .ant-select-arrow {\n color: "," !important;\n }\n }\n\n &:hover {\n .ant-select-selection-item {\n color: ",";\n }\n\n .ant-select-arrow {\n color: "," !important;\n }\n }\n }\n "])),h.colorWarningHover,h.colorText,h.colorWarningHover,h.colorText,h.colorWarningHover),selectContainerError:n(i||(i=m(["\n &:hover {\n .custom-select-icon {\n color: "," !important;\n }\n }\n \n .ant-select-status-error {\n &.ant-select-open, &.ant-select-focused {\n .ant-select-selection-item {\n color: ",";\n }\n\n .ant-select-arrow {\n color: "," !important;\n }\n }\n\n &:hover {\n .ant-select-selection-item {\n color: ",";\n }\n\n .ant-select-arrow {\n color: "," !important;\n }\n }\n }\n "])),h.colorErrorHover,h.colorText,h.colorErrorHover,h.colorText,h.colorErrorHover),select:n(a||(a=m(["\n width: ",";\n \n .ant-select-selector {\n padding: 0 ","px !important;\n }\n\n .ant-select-arrow {\n color: "," !important;\n }\n\n // DEFAULT select\n &.ant-select-open, &.ant-select-focused {\n .ant-select-selection-item {\n color: ",";\n }\n\n .ant-select-arrow {\n color: "," !important;\n }\n }\n\n &:hover {\n .ant-select-selection-item {\n color: ",";\n }\n\n .ant-select-arrow {\n color: "," !important;\n }\n }\n\n // MULTIPLE select\n &.ant-select-multiple {\n &.ant-select {\n .ant-select-selector {\n padding: 2px ","px 2px ","px !important;\n }\n }\n \n &:hover {\n .ant-select-selection-item {\n .ant-select-selection-item-content {\n color: "," !important;\n }\n }\n }\n }\n\n // DISABLED state\n &.ant-select.ant-select-disabled {\n .ant-select-selector {\n border-color: "," !important;\n }\n \n .ant-select-selection-item {\n color: ",";\n }\n\n .ant-select-arrow {\n color: "," !important;\n }\n }\n "])),(0,p.isEmptyValue)(t.width)?"initial":"".concat(t.width,"px"),h.controlPaddingHorizontal,h.colorIcon,h.colorPrimary,h.colorPrimary,h.colorPrimary,h.colorPrimary,h.controlPaddingHorizontal,h.paddingXXS,h.colorText,h.colorBorder,h.colorTextDisabled,h.colorTextDisabled),arrowIcon:n(s||(s=m(["\n pointer-events: none !important\n "]))),selectWithCustomIcon:n(l||(l=m(["\n &.ant-select {\n .ant-select-selector {\n padding: 0 ","px 0 ","px !important;\n }\n }\n "])),h.controlPaddingHorizontal,h.controlPaddingHorizontal+16+h.marginXXS),customIcon:n(c||(c=m(["\n position: absolute;\n left: 10px;\n top: 50%;\n transform: translateY(-50%);\n z-index: 1;\n color: ",";\n "])),h.colorIcon),customIconActive:n(u||(u=m(["\n color: "," !important;\n "])),h.colorPrimary),customIconWarning:n(d||(d=m(["\n color: ",";\n "])),h.colorWarningHover),customIconError:n(f||(f=m(["\n color: ",";\n "])),h.colorErrorHover)}}))},58664:(e,t,n)=>{"use strict";n.r(t),n.d(t,{Select:()=>m});var r=n(36198),o=n(28518),i=n(93967),a=n.n(i),s=n(54663),l=n(79342),c=n(51062);function u(e){return u="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},u(e)}function d(e,t,n){var r;return r=function(e,t){if("object"!=u(e)||!e)return e;var n=e[Symbol.toPrimitive];if(void 0!==n){var r=n.call(e,t||"default");if("object"!=u(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"),(t="symbol"==u(r)?r:r+"")in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function f(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return h(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return h(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function h(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";var r;n.r(t),n.d(t,{useStyle:()=>o});var o=(0,n(3562).createStyles)((function(e){var t,n,o=e.token;return{sidebar:(0,e.css)(r||(t=["\n display: flex;\n height: 100%;\n \n .sidebar__navigation {\n display: flex;\n width: 45px;\n padding: 4px 8px ","px 8px;\n flex-direction: column;\n align-items: center;\n flex-shrink: 0;\n align-self: stretch;\n border-right: 1px solid rgba(0, 0, 0, 0.08);\n border-left: 1px solid rgba(0, 0, 0, 0.08);\n justify-content: space-between;\n color: ",";\n background: ",";\n\n .sidebar__navigation__tabs,\n .sidebar__navigation__buttons {\n .pimcore-icon {\n flex-shrink: 0;\n color: ",";\n\n &:hover {\n color: ",";\n cursor: pointer;\n }\n }\n }\n\n .sidebar__navigation__tabs {\n .entry {\n display: flex;\n width: 45px;\n padding: ","px ","px;\n justify-content: center;\n align-items: center;\n\n &:not(.active).entry--highlighted {\n .pimcore-icon {\n background: ",";\n border-radius: 2px;\n outline: 8px solid ",";\n }\n }\n\n .pimcore-icon {\n flex-shrink: 0;\n color: ",";\n\n &:hover {\n color: ",";\n cursor: pointer;\n }\n }\n\n &.active {\n background: ",";\n border-right: 2px solid ",";\n\n .pimcore-icon {\n color: ","\n }\n }\n }\n },\n \n .sidebar__navigation__buttons\n .button {\n &.button--highlighted {\n .pimcore-icon {\n background: ",";\n border-radius: 2px;\n outline: 8px solid ",";\n color: ",";\n }\n }\n }\n }\n \n .sidebar__content {\n position: relative;\n overflow: auto;\n width: 250px;\n\n .tab {\n display: none;\n \n &.active {\n display: flex;\n width: 100%;\n height: 100%;\n }\n }\n \n &:not(.expanded) {\n display: none;\n }\n\n &--sizing-large {\n width: 432px;\n }\n }\n "],n||(n=t.slice(0)),r=Object.freeze(Object.defineProperties(t,{raw:{value:Object.freeze(n)}}))),o.paddingSM,o.colorIconSidebar,o.colorBgToolbar,o.colorIconSidebar,o.colorIconHover,o.paddingXS,o.paddingXXS,o.colorFillQuaternary,o.colorFillQuaternary,o.colorIconSidebar,o.colorIconHover,o.colorFillQuaternary,o.colorPrimaryActive,o.colorPrimaryActive,o.colorFillQuaternary,o.colorFillQuaternary,o.colorPrimary)}}),{hashPriority:"low"})},70607:(e,t,n)=>{"use strict";n.r(t),n.d(t,{Sidebar:()=>l});var r=n(11373),o=n(36198);function i(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return a(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return a(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function a(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";n.r(t),n.d(t,{Slider:()=>f});var r=n(36198),o=n(28518),i=n(66395),a=n(48388),s=n(47259),l=n(27027),c=n(36609);function u(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return d(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return d(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function d(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";var r;n.r(t),n.d(t,{useStyles:()=>o});var o=(0,n(3562).createStyles)((function(e){var t,n,o=e.css,i=e.token;return{button:o(r||(t=["\n display: flex;\n align-items: center;\n justify-content: center;\n flex-direction: column;\n width: 16px;\n height: 16px;\n\n &:hover {\n cursor: pointer; \n }\n\n .sort-button__arrow {\n color: ",";\n }\n\n .sort-button__asc {\n margin-bottom: -4px;\n }\n\n &.sort-button--sorting-asc {\n .sort-button__asc {\n color: ",";\n }\n }\n\n &.sort-button--sorting-desc {\n .sort-button__desc {\n color: ",";\n }\n }\n "],n||(n=t.slice(0)),r=Object.freeze(Object.defineProperties(t,{raw:{value:Object.freeze(n)}}))),i.colorTextDisabled,i.colorPrimary,i.colorPrimary)}}),{hashPriority:"low"})},96149:(e,t,n)=>{"use strict";n.r(t),n.d(t,{SortButton:()=>u,SortDirections:()=>l});var r=n(36198),o=n(14439),i=n(54663);function a(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return s(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return s(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function s(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";var r;n.r(t),n.d(t,{useStyles:()=>o});var o=(0,n(3562).createStyles)((function(e){var t,n,o=e.css,i=e.token;return{space:o(r||(t=["\n &.space--sizing-none {\n gap: 0;\n }\n\n &.space--sizing-mini {\n gap: ","px;\n }\n\n &.space--sizing-extra-small {\n gap: ","px;\n }\n\n &.space--sizing-small {\n gap: ","px;\n }\n\n &.space--sizing-normal {\n gap: ","px;\n }\n\n &.space--sizing-medium {\n gap: ","px;\n }\n\n &.space--sizing-large {\n gap: ","px;\n }\n\n &.space--sizing-extra-large {\n gap: ","px;\n }\n\n &.space--sizing-maxi {\n gap: ","px;\n }\n "],n||(n=t.slice(0)),r=Object.freeze(Object.defineProperties(t,{raw:{value:Object.freeze(n)}}))),i.sizeXXS,i.sizeXS,i.sizeSM,i.size,i.sizeMD,i.sizeLG,i.sizeXL,i.sizeXXL)}}))},40069:(e,t,n)=>{"use strict";n.r(t),n.d(t,{Space:()=>s});var r=n(28518),o=n(36198),i=n(84051),a=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&t.indexOf(r)<0&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var o=0;for(r=Object.getOwnPropertySymbols(e);o{"use strict";var r,o;function i(e,t){return t||(t=e.slice(0)),Object.freeze(Object.defineProperties(e,{raw:{value:Object.freeze(t)}}))}n.r(t),n.d(t,{useStyles:()=>a});var a=(0,n(3562).createStyles)((function(e){var t=e.token,n=e.css;return{spin:n(r||(r=i(["\n @keyframes spin {\n from {\n transform: rotate(0deg);\n }\n to {\n transform: rotate(360deg);\n }\n }\n\n @keyframes spin-dot {\n 0% {\n opacity: 0.3;\n } \n 50% {\n opacity: 1;\n }\n 100% {\n opacity: 0.3;\n }\n }\n\n animation-name: spin;\n animation-duration: 2s;\n animation-timing-function: linear;\n animation-iteration-count: infinite;\n\n circle {\n animation: spin-dot 2s infinite;\n\n &:nth-child(1) {\n animation-delay: 0.5s;\n }\n\n &:nth-child(2) {\n animation-delay: 1.5s;\n }\n\n &:nth-child(3) {\n animation-delay: 1s;\n }\n\n \n &:nth-child(4) {\n animation-delay: 2s;\n }\n }\n "]))),spinContainer:n(o||(o=i(["\n display: flex;\n flex-direction: column;\n gap: 8px;\n justify-content: center;\n align-items: center;\n height: 100px;\n width: 100px;\n color: ",";\n "])),t.colorPrimary)}}))},94622:(e,t,n)=>{"use strict";n.r(t),n.d(t,{Spin:()=>l});var r=n(36198),o=n(28518),i=n(54663),a=n(876),s=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&t.indexOf(r)<0&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var o=0;for(r=Object.getOwnPropertySymbols(e);o{"use strict";var r,o,i,a;function s(e,t){return t||(t=e.slice(0)),Object.freeze(Object.defineProperties(e,{raw:{value:Object.freeze(t)}}))}n.r(t),n.d(t,{useStyles:()=>l});var l=(0,n(3562).createStyles)((function(e){var t=e.css,n=e.token;return{dividerContainer:t(r||(r=s(["\n position: relative;\n min-width: 24px;\n outline: none;\n "]))),resizable:t(o||(o=s(["\n cursor: col-resize;\n "]))),divider:t(i||(i=s(["\n position: absolute;\n left: 50%;\n width: 1px;\n height: 100%;\n overflow: hidden;\n background-color: ",";\n "])),n.Divider.colorSplit),iconContainer:t(a||(a=s(["\n position: absolute;\n top: 50%;\n transform: translateY(-50%);\n cursor: col-resize;\n "])))}}))},91620:(e,t,n)=>{"use strict";n.r(t),n.d(t,{Divider:()=>f});var r=n(36198),o=n(93967),i=n.n(o),a=n(27027),s=n(70931);function l(e){return l="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},l(e)}function c(e,t,n){var r;return r=function(e,t){if("object"!=l(e)||!e)return e;var n=e[Symbol.toPrimitive];if(void 0!==n){var r=n.call(e,t||"default");if("object"!=l(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"),(t="symbol"==l(r)?r:r+"")in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function u(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return d(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return d(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function d(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";var r;n.r(t),n.d(t,{useStyles:()=>o});var o=(0,n(3562).createStyles)((function(e){var t,n;return{splitLayoutItem:(0,e.css)(r||(t=["\n position: relative;\n height: 100%;\n width: 100%;\n overflow: hidden;\n "],n||(n=t.slice(0)),r=Object.freeze(Object.defineProperties(t,{raw:{value:Object.freeze(n)}}))))}}))},80778:(e,t,n)=>{"use strict";n.r(t),n.d(t,{SplitLayoutItem:()=>a});var r=n(36198),o=n(36590),i=function(e,t){var n=e.children,i=e.size,a=e.minSize,s=e.maxSize,l=(0,o.useStyles)().styles;return r.createElement("div",{className:l.splitLayoutItem,ref:t,style:{width:"".concat(i,"%"),minWidth:void 0!==a?"".concat(a,"px"):"auto",maxWidth:void 0!==s?"".concat(s,"px"):"auto"}},n)},a=(0,r.forwardRef)(i)},33304:(e,t,n)=>{"use strict";var r;n.r(t),n.d(t,{useStyles:()=>o});var o=(0,n(3562).createStyles)((function(e){var t,n;return{splitLayout:(0,e.css)(r||(t=["\n display: flex;\n height: 100%;\n width: 100%;\n "],n||(n=t.slice(0)),r=Object.freeze(Object.defineProperties(t,{raw:{value:Object.freeze(n)}}))))}}))},67793:(e,t,n)=>{"use strict";n.r(t),n.d(t,{SplitLayout:()=>h});var r=n(36198),o=n(28518),i=n(93967),a=n.n(i),s=n(80778),l=n(91620),c=n(33304);function u(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return d(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return d(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function d(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";var r;n.r(t),n.d(t,{useStyles:()=>o});var o=(0,n(3562).createStyles)((function(e){var t,n,o=e.css,i=e.token;return{split:o(r||(t=["\n .ant-divider {\n margin-inline: 0;\n }\n\n &.split--theme-secondary {\n .ant-divider {\n border-color: ",";\n }\n }\n\n &.split--divider-size-large {\n .ant-divider {\n height: 24px;\n }\n }\n "],n||(n=t.slice(0)),r=Object.freeze(Object.defineProperties(t,{raw:{value:Object.freeze(n)}}))),i.colorTextSecondary)}}))},25419:(e,t,n)=>{"use strict";n.r(t),n.d(t,{Split:()=>l});var r=n(36198),o=n(40069),i=n(28518),a=n(99807),s=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&t.indexOf(r)<0&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var o=0;for(r=Object.getOwnPropertySymbols(e);o{"use strict";var r;n.r(t),n.d(t,{useStyles:()=>o});var o=(0,n(3562).createStyles)((function(e){var t,n,o=e.token;return{stackListItem:(0,e.css)(r||(t=["\n border-radius: 4px;\n border: 1px solid ",";\n background-color: #fff;\n\n .stack-list-item__title {\n display: flex;\n align-items: center;\n gap: 2px;\n padding: 4px;\n }\n\n .stack-list-item__body {\n padding: 0 4px 4px 4px;\n }\n\n .stack-list-item__content {\n flex: 1;\n }\n "],n||(n=t.slice(0)),r=Object.freeze(Object.defineProperties(t,{raw:{value:Object.freeze(n)}}))),o.colorBorder)}}))},73087:(e,t,n)=>{"use strict";n.r(t),n.d(t,{StackListItem:()=>l});var r=n(36198),o=n(67839),i=n(45587),a=n(24285),s=n(27027),l=function(e){var t=e.id,n=e.children,l=e.body,c=e.sortable,u=void 0!==c&&c,d=e.renderLeftToolbar,f=e.renderRightToolbar,h=(0,o.useStyles)().styles,p=(0,i.useSortable)({id:t}),m=p.listeners,g=p.setNodeRef,y=p.setActivatorNodeRef,v=p.transform,b=p.transition,O={transform:a.CSS.Transform.toString(v),transition:null!=b?b:void 0};return r.createElement("div",{className:["stack-list-item",h.stackListItem].join(" "),ref:g,style:O},r.createElement("div",{className:"stack-list-item__title"},u&&r.createElement(s.IconButton,Object.assign({icon:{value:"draggable"},ref:y,theme:"secondary"},m)),void 0!==d&&r.createElement("div",{className:"stack-list-item__left-toolbar"},d),r.createElement("div",{className:"stack-list-item__content"},n),void 0!==f&&r.createElement("div",{className:"stack-list-item__right-toolbar"},f)),void 0!==l&&r.createElement("div",{className:"stack-list-item__body"},l))}},71938:(e,t,n)=>{"use strict";var r;n.r(t),n.d(t,{useStyles:()=>o});var o=(0,n(3562).createStyles)((function(e){var t,n;e.token;return{stackList:(0,e.css)(r||(t=["\n display: flex;\n flex-direction: column;\n gap: 8px;\n "],n||(n=t.slice(0)),r=Object.freeze(Object.defineProperties(t,{raw:{value:Object.freeze(n)}}))))}}))},97370:(e,t,n)=>{"use strict";n.r(t),n.d(t,{StackList:()=>f});var r=n(36198),o=n(93967),i=n.n(o),a=n(73087),s=n(71938),l=n(37394),c=n(45587);function u(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return d(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return d(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function d(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";n.r(t),n.d(t,{Switch:()=>s});var r=n(36198),o=n(28518),i=n(47259),a=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&t.indexOf(r)<0&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var o=0;for(r=Object.getOwnPropertySymbols(e);o{"use strict";n.r(t),n.d(t,{TagList:()=>l});var r=n(36198),o=n(93967),i=n.n(o),a=n(52645),s=n(47259),l=function(e){var t=e.list,n=e.itemGap,o=e.tagListClassNames,l=e.tagListItemClassNames,c=e.wrap,u=void 0===c||c;return r.createElement(s.Flex,{gap:"small",rootClassName:i()(o),vertical:!0},t.map((function(e,t){return r.createElement(s.Flex,{gap:n,key:t,rootClassName:i()(l),wrap:u},e.map((function(e,n){return r.createElement(a.Tag,Object.assign({key:"".concat(t,"-").concat(n)},e),e.children)})))})))}},14034:(e,t,n)=>{"use strict";var r,o;function i(e,t){return t||(t=e.slice(0)),Object.freeze(Object.defineProperties(e,{raw:{value:Object.freeze(t)}}))}n.r(t),n.d(t,{useStyles:()=>a});var a=(0,n(3562).createStyles)((function(e){var t=e.css,n=e.token;return{tag:t(r||(r=i(["\n &.ant-tag {\n margin-inline-end: 0;\n \n &.ant-tag-default {\n background-color: ",";\n color: ",";\n border-color: ",";\n }\n \n &.theme-transparent {\n background-color: ",";\n border-color: ",";\n }\n\n .anticon + span {\n margin-inline-start: 4px;\n }\n }\n "])),n.colorFillTertiary,n.colorTextLabel,n.Tag.colorBorder,n.colorFillTertiary,n.colorBorder),tooltip:t(o||(o=i(["\n .ant-tooltip-inner {\n color: ",";\n background-color: ",";\n border-radius: ","px;\n }\n \n .ant-tooltip-arrow {\n &::before {\n background-color: ",";\n }\n }\n "])),n.colorTextLightSolid,n.colorBgSpotlight,n.borderRadius,n.colorBgSpotlight)}}))},52645:(e,t,n)=>{"use strict";n.r(t),n.d(t,{Tag:()=>f});var r=n(36198),o=n(28518),i=n(93967),a=n.n(i),s=n(54663),l=n(14034);function c(e){return c="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},c(e)}function u(e,t,n){var r;return r=function(e,t){if("object"!=c(e)||!e)return e;var n=e[Symbol.toPrimitive];if(void 0!==n){var r=n.call(e,t||"default");if("object"!=c(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"),(t="symbol"==c(r)?r:r+"")in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var d=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&t.indexOf(r)<0&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var o=0;for(r=Object.getOwnPropertySymbols(e);o{"use strict";n.r(t),n.d(t,{detectLanguageFromFilename:()=>f,getLanguageExtensions:()=>d});var r=n(36391),o=n(39356),i=n(13249),a=n(42312),s=n(68663),l=n(21390),c=n(57801),u={html:{codeMirrorExtension:(0,r.html)(),fileExtensions:["html","htm","shtm","shtml","xhtml","cfm","cfml","cfc","dhtml","xht","tpl","twig","kit","jsp","aspx","ascx","asp","master","cshtml","vbhtml"]},css:{codeMirrorExtension:(0,o.css)(),fileExtensions:["css","less","scss","sass"]},javascript:{codeMirrorExtension:(0,i.javascript)({jsx:!0}),fileExtensions:["js","js.erb","jsm","_js","jsx"]},json:{codeMirrorExtension:(0,a.json)(),fileExtensions:["json","map"]},xml:{codeMirrorExtension:(0,s.xml)(),fileExtensions:["xml","wxs","wxl","wsdl","rss","atom","rdf","xslt","xsl","xul","xsd","xbl","mathml","config","plist","xaml"]},sql:{codeMirrorExtension:(0,l.sql)(),fileExtensions:["sql"]},markdown:{codeMirrorExtension:(0,c.markdown)(),fileExtensions:["md","markdown","mdown","mkdn"]}},d=function(e){return null==e?[]:[u[e].codeMirrorExtension]},f=function(e){var t=e.split(".").pop();if(void 0===t)return null;for(var n in u)if(u[n].fileExtensions.includes(t))return n;return null}},27761:(e,t,n)=>{"use strict";var r;n.r(t),n.d(t,{useStyle:()=>o});var o=(0,n(3562).createStyles)((function(e){var t,n;e.token;return{editor:(0,e.css)(r||(t=["\n height: 100%;\n width: 100%;\n \n & .CodeMirror {\n height: 100%;\n width: 100%;\n }\n "],n||(n=t.slice(0)),r=Object.freeze(Object.defineProperties(t,{raw:{value:Object.freeze(n)}}))))}}),{hashPriority:"low"})},37093:(e,t,n)=>{"use strict";n.r(t),n.d(t,{TextEditor:()=>c});var r=n(36198),o=n(27761),i=n(5770),a=n(5018);function s(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return l(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return l(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function l(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";n.r(t),n.d(t,{Text:()=>i});var r=n(36198),o=n(28518).Typography.Text,i=function(e){return r.createElement(o,Object.assign({},e))}},77717:(e,t,n)=>{"use strict";var r,o;function i(e,t){return t||(t=e.slice(0)),Object.freeze(Object.defineProperties(e,{raw:{value:Object.freeze(t)}}))}n.r(t),n.d(t,{useStyle:()=>a});var a=(0,n(3562).createStyles)((function(e){var t=e.token,n=e.css;return{flex:n(r||(r=i(["\n .pimcore-icon {\n color: ",";\n margin-right: 4px;\n }\n "])),t.colorPrimary),title:n(o||(o=i(["\n &.pimcore-title.ant-typography {\n font-size: 12px;\n font-weight: 600;\n color: ",";\n }\n .pimcore-icon {\n color: ",";\n margin-right: 4px;\n }\n "])),t.colorPrimary,t.colorPrimary)}}),{hashPriority:"low"})},48324:(e,t,n)=>{"use strict";n.r(t),n.d(t,{Title:()=>l});var r=n(28518),o=n(36198),i=n(77717),a=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&t.indexOf(r)<0&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var o=0;for(r=Object.getOwnPropertySymbols(e);o{"use strict";var r;n.r(t),n.d(t,{useStyles:()=>o});var o=(0,n(3562).createStyles)((function(e){var t,n,o=e.token;return{toolbar:(0,e.css)(r||(t=["\n width: 100%;\n height: 48px;\n border-top: 1px solid ",";\n \n padding: ","px;\n\n &.toolbar--theme-primary {\n // @todo: use token\n background-color: #F5F3FA;\n }\n\n &.toolbar--theme-secondary {\n background-color: ",";\n }\n "],n||(n=t.slice(0)),r=Object.freeze(Object.defineProperties(t,{raw:{value:Object.freeze(n)}}))),o.colorBorder,o.paddingXS,o.colorBgBase)}}))},72475:(e,t,n)=>{"use strict";n.r(t),n.d(t,{Toolbar:()=>l});var r=n(75882),o=n(28518),i=n(36198),a=n(67892),s=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&t.indexOf(r)<0&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var o=0;for(r=Object.getOwnPropertySymbols(e);o{"use strict";n.r(t),n.d(t,{TreeElementItem:()=>s});var r=n(36198),o=n(28518),i=n(30811),a=n(54663),s=function(e){var t=e.title,n=e.actions,s=e.onSelected,l=e.onActionsClick,c=(0,i.useTranslation)().t,u=[];null==n||n.forEach((function(e){null==u||u.push({key:e.key,label:c("tree.actions.".concat(e.key)),icon:r.createElement(a.Icon,{value:e.icon}),onClick:function(){null==l||l(e.key)}})}));var d=function(){return r.createElement("span",{onClick:s,onKeyDown:function(e){"Enter"!==e.key&&"Escape"!==e.key||null!=s&&s()},role:"button",tabIndex:0},t)};return(null==u?void 0:u.length)>0?r.createElement(o.Dropdown,{menu:{items:u},trigger:["contextMenu"]},d()):d()}},97118:(e,t,n)=>{"use strict";var r;n.r(t),n.d(t,{useStyles:()=>o});var o=(0,n(3562).createStyles)((function(e,t){var n,o,i=e.token;return{treeContainer:(0,e.css)(r||(n=["\n .ant-tree-list-holder-inner {\n .ant-tree-treenode-leaf-last {\n &:first-child {\n .ant-tree-checkbox {\n display: ",";\n }\n }\n }\n\n .ant-tree-treenode {\n padding: 0;\n \n @media (hover: hover) {\n &:hover {\n background-color: ",";\n }\n }\n\n &:focus {\n outline: none;\n background-color: ",";\n }\n\n .ant-tree-node-content-wrapper {\n padding: 0;\n background: none;\n\n &:hover {\n background: none;\n }\n }\n }\n\n .ant-tree-treenode-selected {\n background-color: ",";\n }\n }\n \n .ant-tree-switcher {\n display: flex;\n align-items: center;\n justify-content: center;\n \n &:hover {\n background-color: transparent !important;\n }\n }\n\n .ant-tree-switcher-noop {\n pointer-events: none;\n }\n \n .ant-tree-switcher_close {\n .ant-tree-switcher-icon {\n svg {\n transform: rotate(0deg);\n }\n }\n }\n\n .ant-tree-switcher_open {\n .ant-tree-switcher-icon {\n svg {\n transform: rotate(-180deg);\n }\n }\n }\n\n .ant-tree-draggable-icon {\n display: none;\n }\n "],o||(o=n.slice(0)),r=Object.freeze(Object.defineProperties(n,{raw:{value:Object.freeze(o)}}))),!0===t.isHideRootChecker?"none":"block",i.controlItemBgHover,i.controlItemBgActiveHover,i.controlItemBgActive)}}),{hashPriority:"high"})},72726:(e,t,n)=>{"use strict";n.r(t),n.d(t,{TreeElement:()=>f});var r=n(36198),o=n(28518),i=n(93967),a=n.n(i),s=n(54663),l=n(54137),c=n(97118);function u(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return d(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return d(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function d(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";var r;n.r(t),n.d(t,{useStyles:()=>o});var o=(0,n(3562).createStyles)((function(e){var t,n,o=e.token;return{uploadList:(0,e.css)(r||(t=["\n margin-top: ","px;\n margin-bottom: ","px;\n display: flex;\n flex-direction: column;\n align-items: center;\n "],n||(n=t.slice(0)),r=Object.freeze(Object.defineProperties(t,{raw:{value:Object.freeze(n)}}))),o.paddingSM,o.paddingSM)}}))},80810:(e,t,n)=>{"use strict";n.r(t),n.d(t,{UploadList:()=>a});var r=n(36198),o=n(28518),i=n(30134),a=function(e){var t=(0,i.useStyles)().styles,n=e.items,a=n.length,s=n.filter((function(e){return"done"===e.status})).length;return r.createElement("div",{className:t.uploadList},r.createElement(o.Progress,Object.assign({},e.progress,{"aria-label":"upload progress",percent:s/a*100,showInfo:!1,size:[-1,2],type:"line"})),r.createElement("span",null,s,"/",a," files uploaded"))}},50713:(e,t,n)=>{"use strict";var r;n.r(t),n.d(t,{useStyles:()=>o});var o=(0,n(3562).createStyles)((function(e){var t,n;e.token;return{upload:(0,e.css)(r||(t=["\n display: none\n "],n||(n=t.slice(0)),r=Object.freeze(Object.defineProperties(t,{raw:{value:Object.freeze(n)}}))))}}))},595:(e,t,n)=>{"use strict";n.r(t),n.d(t,{Upload:()=>u});var r=n(36198),o=n(28518),i=n(50713);function a(e){return a="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},a(e)}function s(e,t,n){var r;return r=function(e,t){if("object"!=a(e)||!e)return e;var n=e[Symbol.toPrimitive];if(void 0!==n){var r=n.call(e,t||"default");if("object"!=a(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"),(t="symbol"==a(r)?r:r+"")in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function l(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return c(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return c(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function c(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";var r;n.r(t),n.d(t,{useStyle:()=>o});var o=(0,n(3562).createStyles)((function(e){var t,n,o=e.token;return{timeline:(0,e.css)(r||(t=["\n padding-left: ","px;\n \n & > div {\n position: relative;\n margin: 0;\n \n padding: 3px 0 7px 21px;\n \n border-left: 2px solid rgba(0,0,0,6%);\n }\n\n & > div:before {\n content: '';\n \n position: absolute;\n margin-top: 16px;\n margin-right: -4px;\n right: 100%;\n text-align: center;\n\n height: 6px;\n width: 6px;\n border-radius: 50%;\n background-color: white;\n border: 2px solid ",";\n }\n\n & > .is-active:before {\n height: 10px;\n width: 10px;\n margin-right: -6px;\n border-color: ",";\n }\n\n & > .is-published:before {\n border-color: ",";\n "],n||(n=t.slice(0)),r=Object.freeze(Object.defineProperties(t,{raw:{value:Object.freeze(n)}}))),o.paddingXS,o.colorTextDisabled,o.colorPrimary,o.colorSuccess)}}),{hashPriority:"low"})},87629:(e,t,n)=>{"use strict";n.r(t),n.d(t,{VerticalTimeline:()=>i});var r=n(36198),o=n(92941),i=function(e){var t=e.timeStamps,n=(0,o.useStyle)().styles;return r.createElement("div",{className:n.timeline},t)}},96212:(e,t,n)=>{"use strict";var r;n.r(t),n.d(t,{useStyles:()=>o});var o=(0,n(3562).createStyles)((function(e){var t,n,o=e.token;return{workflowCard:(0,e.css)(r||(t=["\n .ant-card-head-title {\n display: flex !important;\n gap: 8px;\n font-size: 12px;\n align-items: center;\n \n p {\n margin: 0;\n }\n\n .ant-tag {\n background: ",";\n border: 1px solid ",";\n cursor: pointer;\n height: 22px;\n display: flex;\n align-items: center;\n gap: 8px;\n \n &.color-inverted {\n border: transparent;\n }\n \n .ant-badge { \n .ant-badge-status-dot {\n width: 6px;\n height: 6px;\n top: unset;\n }\n }\n }\n }\n\n .ant-card-body {\n overflow: auto;\n }\n "],n||(n=t.slice(0)),r=Object.freeze(Object.defineProperties(t,{raw:{value:Object.freeze(n)}}))),o.colorFillSecondary,o.colorBorder)}}),{hashPriority:"low"})},59264:(e,t,n)=>{"use strict";n.r(t),n.d(t,{WorkflowCard:()=>h});var r=n(36198),o=n(28518),i=n(96212),a=n(30811),s=n(41642),l=n(31825),c=n(2824),u=n(71816);function d(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return f(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return f(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function f(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n0&&n.workflowStatus.map((function(e,t){return r.createElement(o.Tag,{className:e.colorInverted?"color-inverted":"",icon:r.createElement(o.Badge,{color:e.color,styles:e.colorInverted?{indicator:{outline:"1px solid ".concat(e.color,"4D")}}:{}}),key:t,style:e.colorInverted?{backgroundColor:"".concat(e.color,"33")}:{},title:e.title},e.label)})))},void 0!==n.graph&&r.createElement("img",{alt:"workflow",src:"data:image/svg+xml;utf8,".concat(encodeURIComponent(n.graph))}))}},43056:(e,t,n)=>{"use strict";n.r(t),n.d(t,{createDiInstance:()=>i});var r=n(36198),o=n(84560);function i(){var e=new o.Container,t=(0,r.createContext)(e);return{container:e,ContainerContext:t,ContainerProvider:function(n){var o=n.children;return r.createElement(t.Provider,{value:e},o)},useInjection:function(e){return window.Pimcore.container.get(e)},useOptionalInjection:function(e){var t=window.Pimcore.container;return t.isBound(e)?t.get(e):null},useMultiInjection:function(e){return window.Pimcore.container.getAll(e)}}}},10365:(e,t,n)=>{"use strict";function r(e){return r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},r(e)}function o(e,t){for(var n=0;na});var a=new(function(){return e=function e(){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),this.subscribers=[]},(t=[{key:"subscribe",value:function(e,t){var n={identifier:e,callback:t};return this.subscribers.push(n),n}},{key:"unsubscribe",value:function(e){this.subscribers=this.subscribers.filter((function(t){return t!==e}))}},{key:"publish",value:function(e){this.subscribers.forEach((function(t){t.identifier.type===e.identifier.type&&t.identifier.id===e.identifier.id&&t.callback(e)}))}}])&&o(e.prototype,t),n&&o(e,n),Object.defineProperty(e,"prototype",{writable:!1}),e;var e,t,n}())},30191:(e,t,n)=>{"use strict";n.a(e,(async(r,o)=>{try{n.r(t);n(8844);var i=n(44784),a=n(19387),s=n(80237);void 0!==(e=n.hmd(e)).hot&&e.hot.accept(),window.Pimcore=(await n.e(105).then(n.bind(n,78105))).Pimcore,await a.pluginSystem.loadPlugins(),a.pluginSystem.initPlugins(),a.pluginSystem.startupPlugins(),s.moduleSystem.initModules(),(0,i.runApp)(),o()}catch(e){o(e)}}),1)},79383:(e,t,n)=>{"use strict";n.r(t),n.d(t,{useCssComponentHash:()=>s});var r=n(71147),o=n(50650),i=n(25157),a=n(36198),s=function(e){var t,n=(0,a.useContext)(i.ConfigContext).getPrefixCls(e,"");switch(e){case"table":t=(0,r.default)(n)[1];break;case"pagination":t=(0,o.default)(n)[1]}return t}},3539:(e,t,n)=>{"use strict";n.r(t),n.d(t,{AppLoader:()=>O});var r=n(36198),o=n(9468),i=n(30851),a=n(7496),s=n(37352),l=n(30811),c=n(4362),u=n(94492),d=n(19991),f=n(82755),h=n(96277);function p(e){return p="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},p(e)}function m(){m=function(){return t};var e,t={},n=Object.prototype,r=n.hasOwnProperty,o=Object.defineProperty||function(e,t,n){e[t]=n.value},i="function"==typeof Symbol?Symbol:{},a=i.iterator||"@@iterator",s=i.asyncIterator||"@@asyncIterator",l=i.toStringTag||"@@toStringTag";function c(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{c({},"")}catch(e){c=function(e,t,n){return e[t]=n}}function u(e,t,n,r){var i=t&&t.prototype instanceof b?t:b,a=Object.create(i.prototype),s=new R(r||[]);return o(a,"_invoke",{value:_(e,n,s)}),a}function d(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}t.wrap=u;var f="suspendedStart",h="suspendedYield",g="executing",y="completed",v={};function b(){}function O(){}function w(){}var S={};c(S,a,(function(){return this}));var x=Object.getPrototypeOf,E=x&&x(x(D([])));E&&E!==n&&r.call(E,a)&&(S=E);var T=w.prototype=b.prototype=Object.create(S);function C(e){["next","throw","return"].forEach((function(t){c(e,t,(function(e){return this._invoke(t,e)}))}))}function P(e,t){function n(o,i,a,s){var l=d(e[o],e,i);if("throw"!==l.type){var c=l.arg,u=c.value;return u&&"object"==p(u)&&r.call(u,"__await")?t.resolve(u.__await).then((function(e){n("next",e,a,s)}),(function(e){n("throw",e,a,s)})):t.resolve(u).then((function(e){c.value=e,a(c)}),(function(e){return n("throw",e,a,s)}))}s(l.arg)}var i;o(this,"_invoke",{value:function(e,r){function o(){return new t((function(t,o){n(e,r,t,o)}))}return i=i?i.then(o,o):o()}})}function _(t,n,r){var o=f;return function(i,a){if(o===g)throw Error("Generator is already running");if(o===y){if("throw"===i)throw a;return{value:e,done:!0}}for(r.method=i,r.arg=a;;){var s=r.delegate;if(s){var l=k(s,r);if(l){if(l===v)continue;return l}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if(o===f)throw o=y,r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);o=g;var c=d(t,n,r);if("normal"===c.type){if(o=r.done?y:h,c.arg===v)continue;return{value:c.arg,done:r.done}}"throw"===c.type&&(o=y,r.method="throw",r.arg=c.arg)}}}function k(t,n){var r=n.method,o=t.iterator[r];if(o===e)return n.delegate=null,"throw"===r&&t.iterator.return&&(n.method="return",n.arg=e,k(t,n),"throw"===n.method)||"return"!==r&&(n.method="throw",n.arg=new TypeError("The iterator does not provide a '"+r+"' method")),v;var i=d(o,t.iterator,n.arg);if("throw"===i.type)return n.method="throw",n.arg=i.arg,n.delegate=null,v;var a=i.arg;return a?a.done?(n[t.resultName]=a.value,n.next=t.nextLoc,"return"!==n.method&&(n.method="next",n.arg=e),n.delegate=null,v):a:(n.method="throw",n.arg=new TypeError("iterator result is not an object"),n.delegate=null,v)}function j(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function A(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function R(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(j,this),this.reset(!0)}function D(t){if(t||""===t){var n=t[a];if(n)return n.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var o=-1,i=function n(){for(;++o=0;--i){var a=this.tryEntries[i],s=a.completion;if("root"===a.tryLoc)return o("end");if(a.tryLoc<=this.prev){var l=r.call(a,"catchLoc"),c=r.call(a,"finallyLoc");if(l&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),A(n),v}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;A(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),v}},t}function g(e,t,n,r,o,i,a){try{var s=e[i](a),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(r,o)}function y(e){return function(){var t=this,n=arguments;return new Promise((function(r,o){var i=e.apply(t,n);function a(e){g(i,r,o,a,s,"next",e)}function s(e){g(i,r,o,a,s,"throw",e)}a(void 0)}))}}function v(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return b(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return b(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function b(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";n.r(t),n.d(t,{AppView:()=>u});var r=n(36198),o=n(64406),i=n(28518),a=n(79655),s=n(24835),l=n(3539),c=n(67890),u=function(){return r.createElement(r.Fragment,null,r.createElement(r.StrictMode,null,r.createElement(o.GlobalProvider,null,r.createElement(i.App,null,r.createElement(c.DateTimeConfig,null,r.createElement(l.AppLoader,null,r.createElement(a.RouterProvider,{router:s.router})))))))}},96216:(e,t,n)=>{"use strict";var r;n.r(t),n.d(t,{useStlyes:()=>o});var o=(0,n(3562).createStyles)((function(e){var t,n;e.token;return{baseLayout:(0,e.css)(r||(t=["\n position: absolute;\n overflow: hidden;\n inset: 0;\n "],n||(n=t.slice(0)),r=Object.freeze(Object.defineProperties(t,{raw:{value:Object.freeze(n)}}))))}}),{hashPriority:"low"})},42902:(e,t,n)=>{"use strict";n.r(t),n.d(t,{BaseLayoutView:()=>c});var r=n(36198),o=n(92180),i=n(95165),a=n(38065),s=n(96216),l=n(93844),c=function(){var e=(0,s.useStlyes)().styles;return r.createElement("div",{className:["base-layout",e.baseLayout].join(" ")},r.createElement(o.LeftSidebarView,null),r.createElement(i.WidgetManagerContainer,null),r.createElement(l.Notification,null),r.createElement(a.RightSidebarView,null))}},42235:(e,t,n)=>{"use strict";var r;n.r(t),n.d(t,{useStlyes:()=>o});var o=(0,n(3562).createStyles)((function(e){var t,n;e.token;return{leftSidebar:(0,e.css)(r||(t=["\n position: absolute;\n top: 0;\n left: 0;\n bottom: 0;\n z-index: 2;\n pointer-events: none;\n\n .left-sidebar__avatar {\n margin: 8px 15px 0 15px;\n pointer-events: all;\n }\n\n .ant-avatar {\n background-color: rgba(114, 46, 209, 0.66);\n\n .anticon {\n vertical-align: 0;\n }\n }\n "],n||(n=t.slice(0)),r=Object.freeze(Object.defineProperties(t,{raw:{value:Object.freeze(n)}}))))}}),{hashPriority:"low"})},92180:(e,t,n)=>{"use strict";n.r(t),n.d(t,{LeftSidebarView:()=>s});var r=n(28518),o=n(36198),i=n(42235),a=n(54663),s=function(){var e=(0,i.useStlyes)().styles;return o.createElement("div",{className:e.leftSidebar},o.createElement(r.Avatar,{className:"left-sidebar__avatar",icon:o.createElement(a.Icon,{value:"user-01"}),size:26}))}},39966:(e,t,n)=>{"use strict";var r;n.r(t),n.d(t,{useStlyes:()=>o});var o=(0,n(3562).createStyles)((function(e){var t,n;e.token;return{rightSidebar:(0,e.css)(r||(t=["\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n z-index: 2;\n pointer-events: none;\n\n .logo \n "],n||(n=t.slice(0)),r=Object.freeze(Object.defineProperties(t,{raw:{value:Object.freeze(n)}}))))}}),{hashPriority:"low"})},38065:(e,t,n)=>{"use strict";n.r(t),n.d(t,{RightSidebarView:()=>a});var r=n(82595),o=n(36198),i=n(39966),a=function(){var e=(0,i.useStlyes)().styles;return o.createElement("div",{className:e.rightSidebar},o.createElement(r.Logo,null))}},91638:(e,t,n)=>{"use strict";n.r(t),n.d(t,{ComponentRegistry:()=>l});var r=n(84560);function o(e,t){for(var n=0;n=0;l--)(o=e[l])&&(s=(i<3?o(s):i>3?o(t,n,s):o(t,n))||s);return i>3&&s&&Object.defineProperty(t,n,s),s},l=function(){return e=function e(){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),this.registry={}},(t=[{key:"register",value:function(e){if(this.has(e.name))throw new Error('Component with the name "'.concat(e.name,'" already exists. Use the override method to override it'));this.registry[e.name]=e}},{key:"getAll",value:function(){return this.registry}},{key:"get",value:function(e){if(!this.has(e))throw new Error('No component with the name "'.concat(e,'" found'));return this.registry[e].component}},{key:"has",value:function(e){return e in this.registry}},{key:"override",value:function(e,t){if(!this.has(e))throw new Error('No component named "'.concat(e,'" found to override'));this.registry[e]=t}}])&&o(e.prototype,t),n&&o(e,n),Object.defineProperty(e,"prototype",{writable:!1}),e;var e,t,n}();l=s([(0,r.injectable)()],l)},54224:(e,t,n)=>{"use strict";n.r(t),n.d(t,{DefaultPage:()=>s});var r=n(36198),o=n(17180),i=n(42902),a=n(32347),s=function(){(0,a.useMiddleware)();var e=function(e){e.preventDefault()};return r.createElement("div",{onDragOver:e,onDrop:e},r.createElement(o.Background,null),r.createElement(i.BaseLayoutView,null))}},33811:(e,t,n)=>{"use strict";n.r(t),n.d(t,{addGlobalContext:()=>a,removeGlobalContext:()=>s,selectContextByType:()=>l});var r=n(7496),o=(0,n(8327).createSlice)({name:"global-context",initialState:[],reducers:{addGlobalContext:function(e,t){e.push(t.payload)},removeGlobalContext:function(e,t){return e.filter((function(e){return e.type!==t.payload}))}},selectors:{selectContextByType:function(e,t){return e.find((function(e){return e.type===t}))}}});(0,r.injectSliceWithState)(o);var i=o.actions,a=i.addGlobalContext,s=i.removeGlobalContext,l=o.getSelectors((function(e){return e["global-context"]})).selectContextByType},64406:(e,t,n)=>{"use strict";n.r(t),n.d(t,{GlobalProvider:()=>c});var r=n(81690),o=n(7496),i=n(26486),a=n(43669),s=n(36198),l=n(45007),c=function(e){var t=e.children;return s.createElement(r.ContainerProvider,null,s.createElement(a.ThemeProvider,null,s.createElement(l.Provider,{store:o.store},s.createElement(i.DragAndDropContextProvider,null,t))))}},95987:(e,t,n)=>{"use strict";n.r(t),n.d(t,{useSettings:()=>a});var r=n(45007),o=n(94492),i=n(36198),a=function(){var e=(0,r.useSelector)(o.getSettings);return(0,i.useMemo)((function(){return e}),[e])}},30851:(e,t,n)=>{"use strict";n.r(t),n.d(t,{addTagTypes:()=>o,api:()=>i,useAssetCustomSettingsGetByIdQuery:()=>a,useSystemSettingsGetQuery:()=>s});var r=n(35525),o=["Assets","Settings"],i=r.api.enhanceEndpoints({addTagTypes:o}).injectEndpoints({endpoints:function(e){return{assetCustomSettingsGetById:e.query({query:function(e){return{url:"/pimcore-studio/api/assets/".concat(e.id,"/custom-settings")}},providesTags:["Assets"]}),systemSettingsGet:e.query({query:function(){return{url:"/pimcore-studio/api/settings"}},providesTags:["Settings"]})}},overrideExisting:!1}),a=i.useAssetCustomSettingsGetByIdQuery,s=i.useSystemSettingsGetQuery},94492:(e,t,n)=>{"use strict";n.r(t),n.d(t,{getSettings:()=>l,setSettings:()=>s});var r=n(8327),o=n(7496),i=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&t.indexOf(r)<0&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var o=0;for(r=Object.getOwnPropertySymbols(e);o{"use strict";n.r(t),n.d(t,{ThemeProvider:()=>a});var r=n(3562),o=n(36198),i=n(60048),a=function(e){var t=e.children;return o.createElement(r.ThemeProvider,{theme:i.PimcoreDefaultTheme},t)}},60048:(e,t,n)=>{"use strict";n.r(t),n.d(t,{PimcoreDefaultTheme:()=>i});var r={fontFamily:"Lato, sans-serif"},o={Form:{itemMarginBottom:12,verticalLabelPadding:4}},i={token:Object.assign(Object.assign({},r),{colorLink:"#722ed1",colorLinkActive:"#531dab",colorLinkHover:"#9254de",controlOutline:"rgba(114, 46, 209, 0.1)",controlItemBgActive:"#f8eeff",itemSelectedColor:"rgba(0, 0, 0, 0.88)",boxShadow:"0 1px 2px 0 rgba(0, 0, 0, 0.03), 0 1px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px 0 rgba(0, 0, 0, 0.02)",colorTextTertiary:"rgba(0, 0, 0, 0.6)",colorFill:"rgba(215, 199, 236, 0.6)",colorFillQuaternary:"rgba(215, 199, 236, 0.4)",colorBgLayout:"#fcfcfc",colorPrimary:"#722ed1",fontSize:12,fontSizeHeading1:35,colorIconSecondary:"#4d4169",colorFillNav:"rgba(77, 65, 105, 0.08)",colorIconSidebar:"#22075e",colorBorderActive:"#00bab3",colorLogo:"#5520a6",colorBorderTertiary:"#eae8ed",colorTextTreeElement:"#404655",colorIconTree:"#404655",colorIconTreeUnpublished:"rgba(64, 70, 85, 0.4)",paddingTabs:8,colorTextSidebarTitle:"#531dab",colorBgToolbar:"#f5f3fa",colorFillActive:"#d7c7ec",colorFillAdditional:"#f5f3fa",colorBgSidebarOptions:"#f5f3fa",colorBgSelectedTab:"#ffffff",cardGutter:2,cardHeight:40,horizontalItemGutter:32,itemActiveColor:"#531dab",itemColor:"rgba(0, 0, 0, 0.65)",itemHoverColor:"rgba(215, 199, 236, 0.6)",itemUnselectedIconColor:"#4d4169",colorBorderContainer:"#eae8ed",colorBorderActiveTab:"#00bab3",colorFillAlter:"rgba(215, 199, 236, 0.4)",colorTextDescription:"rgba(0, 0, 0, 0.6)",colorBgUnselectedTab:"rgba(215, 199, 236, 0.4)",colorBgHoverUnselectedTab:"rgba(215, 199, 236, 0.6)",colorAccentSecondary:"#08979c"}),components:Object.assign(Object.assign({},o),{Pagination:{colorPrimary:"#531dab"},Tree:{colorBorderTree:"#eae8ed",colorTextTree:"#404655",colorPrimaryHeading:"#531dab",colorTextTreeUnpublished:"rgba(0, 0, 0, 0.25)"},Progress:{colorText:"rgba(0, 0, 0, 0.65)",circleTextColor:"rgba(0, 0, 0, 0.25)"},Divider:{colorSplit:"#d3adf7"},IconButton:{colorBgContainer:"#ffffff",borderRadiusSM:"4px"},Button:{defaultBorderColor:"#d3adf7",defaultColor:"#722ed1",defaultGhostBorderColor:"#d9d9d9",defaultGhostColor:"#722ed1",textGhostColor:"rgba(0, 0, 0, 0.88)",controlHeightSM:24},Breadcrumb:{lastItemColor:"#531dab"},Menu:{darkItemColor:"rgba(255, 255, 255, 0.65)",darkItemDisabledColor:"rgba(255, 255, 255, 0.25)",darkGroupTitleColor:"rgba(255, 255, 255, 0.65)"},Collapse:{headerBg:"rgba(0, 0, 0, 0.04)"},Image:{previewOperationColor:"rgba(255, 255, 255, 0.65)",previewOperationColorDisabled:"rgba(255, 255, 255, 0.25)",previewOperationHoverColor:"rgba(255, 255, 255, 0.85)"},Table:{cellPaddingBlockSM:4,cellPaddingInlineSM:4,colorBorderSecondary:"#D9D9D9AA",controlItemBgActive:"#f8eeff",footerBg:"#fafafa",headerBg:"#fafafa"},Tabs:{colorBgSelectedTab:"#ffffff",itemColor:"rgba(0, 0, 0, 0.65)",itemHoverColor:"rgba(215, 199, 236, 0.6)",itemUnselectedIconColor:"#4d4169",colorBorderActiveTab:"#00bab3",colorBgUnselectedTab:"rgba(215, 199, 236, 0.4)",colorBgHoverUnselectedTab:"rgba(215, 199, 236, 0.6)",colorBorderContainer:"#eae8ed"},Avatar:{colorUserIndicator:"#722ed1"},Modal:{colorTextSecondary:"rgba(0, 0, 0, 0.6)"},Alert:{colorInfo:"#722ed1",colorInfoBg:"#f9f0ff",colorInfoBorder:"#d3adf7"},Empty:{colorTextDisabled:"rgba(0, 0, 0, 0.25)"},Colors:{Neutral:{Fill:{colorFill:"rgba(215, 199, 236, 0.60)"}}},Tag:{colorBorder:"#d9d9d9",colorErrorBg:"#fff2f0",colorErrorBorder:"#ffccc7",colorFillQuaternary:"rgba(215, 199, 236, 0.4)",colorFillSecondary:"rgba(0, 0, 0, 0.06)",colorFillTertiary:"rgba(0, 0, 0, 0.04)",colorInfoBg:"#f9f0ff",colorInfoBorder:"#d3adf7",colorPrimary:"#722ed1",colorPrimaryActive:"#531dab",colorPrimaryHover:"#9254de",colorSuccessBg:"#f6ffed",colorSuccessBorder:"#b7eb8f",colorText:"rgba(0, 0, 0, 0.88)",colorTextDescription:"rgba(0, 0, 0, 0.6)",colorTextHeading:"rgba(0, 0, 0, 0.88)",colorTextLightSolid:"#ffffff",colorWarningBg:"#fffbe6",colorWarningBorder:"#ffe58f",borderRadiusSM:4,lineWidth:1,marginXS:8,paddingXXS:4,fontSize:12,fontSizeIcon:12,fontSizeSM:12,defaultBg:"#fafafa",defaultColor:"rgba(0, 0, 0, 0.88)"}})}},37352:(e,t,n)=>{"use strict";n.r(t),n.d(t,{addTagTypes:()=>o,api:()=>i,useTranslationGetCollectionMutation:()=>a});var r=n(35525),o=["Translation"],i=r.api.enhanceEndpoints({addTagTypes:o}).injectEndpoints({endpoints:function(e){return{translationGetCollection:e.mutation({query:function(e){return{url:"/pimcore-studio/api/translations",method:"POST",body:e.translation}},invalidatesTags:["Translation"]})}},overrideExisting:!1}),a=i.useTranslationGetCollectionMutation},44784:(e,t,n)=>{"use strict";n.r(t),n.d(t,{runApp:()=>a});var r=n(36198),o=n(20745),i=n(56722);function a(){var e=document.getElementById("app");if(null===e)throw new Error("Root element not found");(0,o.createRoot)(e).render(r.createElement(i.AppView,null))}},42029:(e,t,n)=>{"use strict";n.r(t),n.d(t,{useZipDownload:()=>v});var r=n(51074),o=n(93477),i=n(20807),a=n(30811),s=n(21970),l=n(54663),c=n(36198),u=n(76265);function d(e){return d="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},d(e)}function f(){f=function(){return t};var e,t={},n=Object.prototype,r=n.hasOwnProperty,o=Object.defineProperty||function(e,t,n){e[t]=n.value},i="function"==typeof Symbol?Symbol:{},a=i.iterator||"@@iterator",s=i.asyncIterator||"@@asyncIterator",l=i.toStringTag||"@@toStringTag";function c(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{c({},"")}catch(e){c=function(e,t,n){return e[t]=n}}function u(e,t,n,r){var i=t&&t.prototype instanceof b?t:b,a=Object.create(i.prototype),s=new R(r||[]);return o(a,"_invoke",{value:_(e,n,s)}),a}function h(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}t.wrap=u;var p="suspendedStart",m="suspendedYield",g="executing",y="completed",v={};function b(){}function O(){}function w(){}var S={};c(S,a,(function(){return this}));var x=Object.getPrototypeOf,E=x&&x(x(D([])));E&&E!==n&&r.call(E,a)&&(S=E);var T=w.prototype=b.prototype=Object.create(S);function C(e){["next","throw","return"].forEach((function(t){c(e,t,(function(e){return this._invoke(t,e)}))}))}function P(e,t){function n(o,i,a,s){var l=h(e[o],e,i);if("throw"!==l.type){var c=l.arg,u=c.value;return u&&"object"==d(u)&&r.call(u,"__await")?t.resolve(u.__await).then((function(e){n("next",e,a,s)}),(function(e){n("throw",e,a,s)})):t.resolve(u).then((function(e){c.value=e,a(c)}),(function(e){return n("throw",e,a,s)}))}s(l.arg)}var i;o(this,"_invoke",{value:function(e,r){function o(){return new t((function(t,o){n(e,r,t,o)}))}return i=i?i.then(o,o):o()}})}function _(t,n,r){var o=p;return function(i,a){if(o===g)throw Error("Generator is already running");if(o===y){if("throw"===i)throw a;return{value:e,done:!0}}for(r.method=i,r.arg=a;;){var s=r.delegate;if(s){var l=k(s,r);if(l){if(l===v)continue;return l}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if(o===p)throw o=y,r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);o=g;var c=h(t,n,r);if("normal"===c.type){if(o=r.done?y:m,c.arg===v)continue;return{value:c.arg,done:r.done}}"throw"===c.type&&(o=y,r.method="throw",r.arg=c.arg)}}}function k(t,n){var r=n.method,o=t.iterator[r];if(o===e)return n.delegate=null,"throw"===r&&t.iterator.return&&(n.method="return",n.arg=e,k(t,n),"throw"===n.method)||"return"!==r&&(n.method="throw",n.arg=new TypeError("The iterator does not provide a '"+r+"' method")),v;var i=h(o,t.iterator,n.arg);if("throw"===i.type)return n.method="throw",n.arg=i.arg,n.delegate=null,v;var a=i.arg;return a?a.done?(n[t.resultName]=a.value,n.next=t.nextLoc,"return"!==n.method&&(n.method="next",n.arg=e),n.delegate=null,v):a:(n.method="throw",n.arg=new TypeError("iterator result is not an object"),n.delegate=null,v)}function j(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function A(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function R(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(j,this),this.reset(!0)}function D(t){if(t||""===t){var n=t[a];if(n)return n.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var o=-1,i=function n(){for(;++o=0;--i){var a=this.tryEntries[i],s=a.completion;if("root"===a.tryLoc)return o("end");if(a.tryLoc<=this.prev){var l=r.call(a,"catchLoc"),c=r.call(a,"finallyLoc");if(l&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),A(n),v}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;A(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),v}},t}function h(e,t,n,r,o,i,a){try{var s=e[i](a),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(r,o)}function p(e){return function(e){if(Array.isArray(e))return y(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||g(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function m(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||g(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function g(e,t){if(e){if("string"==typeof e)return y(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?y(e,t):void 0}}function y(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";n.r(t),n.d(t,{api:()=>o,useAssetCloneMutation:()=>l,useAssetCustomMetadataGetByIdQuery:()=>u,useAssetCustomSettingsGetByIdQuery:()=>d,useAssetExportCsvAssetMutation:()=>y,useAssetExportCsvFolderMutation:()=>v,useAssetExportZipAssetMutation:()=>m,useAssetExportZipFolderMutation:()=>g,useAssetGetByIdQuery:()=>i,useAssetGetGridMutation:()=>h,useAssetGetSavedGridConfigurationsQuery:()=>b,useAssetGetTextDataByIdQuery:()=>f,useAssetGetTreeQuery:()=>a,useAssetPatchByIdMutation:()=>p,useAssetReplaceMutation:()=>c,useAssetSaveGridConfigurationMutation:()=>O,useAssetUpdateByIdMutation:()=>s});var r=n(38693),o=n(14369).api.enhanceEndpoints({addTagTypes:[r.tagNames.ASSET,r.tagNames.ASSET_TREE,r.tagNames.ASSET_DETAIL],endpoints:{assetClone:{invalidatesTags:function(e,t,n){return r.invalidatingTags.ASSET_TREE_ID(n.parentId)}},assetCustomMetadataGetById:{providesTags:function(e,t,n){return r.providingTags.ASSET_DETAIL_ID(n.id)}},assetCustomSettingsGetById:{providesTags:function(e,t,n){return r.providingTags.ASSET_DETAIL_ID(n.id)}},assetGetTextDataById:{providesTags:function(e,t,n){return r.providingTags.ASSET_DETAIL_ID(n.id)}},assetGetById:{providesTags:function(e,t,n){return r.providingTags.ASSET_DETAIL_ID(n.id)}},assetGetTree:{providesTags:function(e,t,n){return void 0!==n.parentId?r.providingTags.ASSET_TREE_ID(n.parentId):r.providingTags.ASSET_TREE()}},assetUpdateById:{invalidatesTags:function(e,t,n){return r.invalidatingTags.ASSET_DETAIL_ID(n.id)}},assetAdd:{invalidatesTags:function(e,t,n){return r.invalidatingTags.ASSET_TREE_ID(n.parentId)}}}}),i=o.useAssetGetByIdQuery,a=o.useAssetGetTreeQuery,s=o.useAssetUpdateByIdMutation,l=o.useAssetCloneMutation,c=o.useAssetReplaceMutation,u=o.useAssetCustomMetadataGetByIdQuery,d=o.useAssetCustomSettingsGetByIdQuery,f=o.useAssetGetTextDataByIdQuery,h=o.useAssetGetGridMutation,p=o.useAssetPatchByIdMutation,m=o.useAssetExportZipAssetMutation,g=o.useAssetExportZipFolderMutation,y=o.useAssetExportCsvAssetMutation,v=o.useAssetExportCsvFolderMutation,b=o.useAssetGetSavedGridConfigurationsQuery,O=o.useAssetSaveGridConfigurationMutation},14369:(e,t,n)=>{"use strict";n.r(t),n.d(t,{addTagTypes:()=>o,api:()=>i,useAssetAddMutation:()=>N,useAssetCloneMutation:()=>a,useAssetCustomMetadataGetByIdQuery:()=>s,useAssetCustomSettingsGetByIdQuery:()=>l,useAssetDeleteCsvMutation:()=>f,useAssetDeleteGridConfigurationByConfigurationIdMutation:()=>S,useAssetDeleteZipMutation:()=>p,useAssetDocumentStreamPreviewQuery:()=>u,useAssetDownloadByIdQuery:()=>m,useAssetDownloadCsvQuery:()=>d,useAssetDownloadZipQuery:()=>h,useAssetExportCsvAssetMutation:()=>g,useAssetExportCsvFolderMutation:()=>y,useAssetExportZipAssetMutation:()=>v,useAssetExportZipFolderMutation:()=>b,useAssetGetAvailableGridColumnsQuery:()=>x,useAssetGetByIdQuery:()=>O,useAssetGetGridConfigurationByFolderIdQuery:()=>E,useAssetGetGridMutation:()=>k,useAssetGetSavedGridConfigurationsQuery:()=>T,useAssetGetTextDataByIdQuery:()=>c,useAssetGetTreeQuery:()=>M,useAssetImageDownloadByFormatQuery:()=>A,useAssetImageDownloadByThumbnailQuery:()=>D,useAssetImageDownloadCustomQuery:()=>j,useAssetImageStreamPreviewQuery:()=>R,useAssetPatchByIdMutation:()=>L,useAssetPatchFolderByIdMutation:()=>I,useAssetReplaceMutation:()=>B,useAssetSaveGridConfigurationMutation:()=>C,useAssetSetGridConfigurationAsFavoriteMutation:()=>P,useAssetUpdateByIdMutation:()=>w,useAssetUpdateGridConfigurationMutation:()=>_,useAssetUploadInfoQuery:()=>$,useAssetUploadZipMutation:()=>F,useAssetVideoDownloadByThumbnailQuery:()=>z,useAssetVideoImageThumbnailStreamQuery:()=>Q,useAssetVideoStreamByThumbnailQuery:()=>V,useVersionAssetDownloadByIdQuery:()=>U});var r=n(35525),o=["Assets","Asset Grid","Versions"],i=r.api.enhanceEndpoints({addTagTypes:o}).injectEndpoints({endpoints:function(e){return{assetClone:e.mutation({query:function(e){return{url:"/pimcore-studio/api/assets/".concat(e.id,"/clone/").concat(e.parentId),method:"POST"}},invalidatesTags:["Assets"]}),assetCustomMetadataGetById:e.query({query:function(e){return{url:"/pimcore-studio/api/assets/".concat(e.id,"/custom-metadata")}},providesTags:["Assets"]}),assetCustomSettingsGetById:e.query({query:function(e){return{url:"/pimcore-studio/api/assets/".concat(e.id,"/custom-settings")}},providesTags:["Assets"]}),assetGetTextDataById:e.query({query:function(e){return{url:"/pimcore-studio/api/assets/".concat(e.id,"/text")}},providesTags:["Assets"]}),assetDocumentStreamPreview:e.query({query:function(e){return{url:"/pimcore-studio/api/assets/".concat(e.id,"/document/stream/pdf-preview")}},providesTags:["Assets"]}),assetDownloadCsv:e.query({query:function(e){return{url:"/pimcore-studio/api/assets/download/csv/".concat(e.jobRunId)}},providesTags:["Assets"]}),assetDeleteCsv:e.mutation({query:function(e){return{url:"/pimcore-studio/api/assets/download/csv/".concat(e.jobRunId),method:"DELETE"}},invalidatesTags:["Assets"]}),assetDownloadZip:e.query({query:function(e){return{url:"/pimcore-studio/api/assets/download/zip/".concat(e.jobRunId)}},providesTags:["Assets"]}),assetDeleteZip:e.mutation({query:function(e){return{url:"/pimcore-studio/api/assets/download/zip/".concat(e.jobRunId),method:"DELETE"}},invalidatesTags:["Assets"]}),assetDownloadById:e.query({query:function(e){return{url:"/pimcore-studio/api/assets/".concat(e.id,"/download")}},providesTags:["Assets"]}),assetExportCsvAsset:e.mutation({query:function(e){return{url:"/pimcore-studio/api/assets/export/csv/asset",method:"POST",body:e.body}},invalidatesTags:["Assets"]}),assetExportCsvFolder:e.mutation({query:function(e){return{url:"/pimcore-studio/api/assets/export/csv/folder",method:"POST",body:e.body}},invalidatesTags:["Assets"]}),assetExportZipAsset:e.mutation({query:function(e){return{url:"/pimcore-studio/api/assets/export/zip/asset",method:"POST",body:e.body}},invalidatesTags:["Assets"]}),assetExportZipFolder:e.mutation({query:function(e){return{url:"/pimcore-studio/api/assets/export/zip/folder",method:"POST",body:e.body}},invalidatesTags:["Assets"]}),assetGetById:e.query({query:function(e){return{url:"/pimcore-studio/api/assets/".concat(e.id)}},providesTags:["Assets"]}),assetUpdateById:e.mutation({query:function(e){return{url:"/pimcore-studio/api/assets/".concat(e.id),method:"PUT",body:e.body}},invalidatesTags:["Assets"]}),assetDeleteGridConfigurationByConfigurationId:e.mutation({query:function(e){return{url:"/pimcore-studio/api/assets/grid/configuration/".concat(e.folderId,"/").concat(e.configurationId),method:"DELETE"}},invalidatesTags:["Asset Grid"]}),assetGetAvailableGridColumns:e.query({query:function(){return{url:"/pimcore-studio/api/assets/grid/available-columns"}},providesTags:["Asset Grid"]}),assetGetGridConfigurationByFolderId:e.query({query:function(e){return{url:"/pimcore-studio/api/assets/grid/configuration/".concat(e.folderId),params:{configurationId:e.configurationId}}},providesTags:["Asset Grid"]}),assetGetSavedGridConfigurations:e.query({query:function(e){return{url:"/pimcore-studio/api/assets/grid/configurations/".concat(e.folderId)}},providesTags:["Asset Grid"]}),assetSaveGridConfiguration:e.mutation({query:function(e){return{url:"/pimcore-studio/api/assets/grid/configuration/save",method:"POST",body:e.body}},invalidatesTags:["Asset Grid"]}),assetSetGridConfigurationAsFavorite:e.mutation({query:function(e){return{url:"/pimcore-studio/api/assets/grid/configuration/set-as-favorite/".concat(e.configurationId,"/").concat(e.folderId),method:"POST"}},invalidatesTags:["Asset Grid"]}),assetUpdateGridConfiguration:e.mutation({query:function(e){return{url:"/pimcore-studio/api/assets/grid/configuration/update/".concat(e.configurationId),method:"PUT",body:e.body}},invalidatesTags:["Asset Grid"]}),assetGetGrid:e.mutation({query:function(e){return{url:"/pimcore-studio/api/assets/grid",method:"POST",body:e.body}},invalidatesTags:["Asset Grid"]}),assetImageDownloadCustom:e.query({query:function(e){return{url:"/pimcore-studio/api/assets/".concat(e.id,"/image/download/custom"),params:{mimeType:e.mimeType,resizeMode:e.resizeMode,width:e.width,height:e.height,quality:e.quality,dpi:e.dpi}}},providesTags:["Assets"]}),assetImageDownloadByFormat:e.query({query:function(e){return{url:"/pimcore-studio/api/assets/".concat(e.id,"/image/download/format/").concat(e.format)}},providesTags:["Assets"]}),assetImageStreamPreview:e.query({query:function(e){return{url:"/pimcore-studio/api/assets/".concat(e.id,"/image/stream/preview")}},providesTags:["Assets"]}),assetImageDownloadByThumbnail:e.query({query:function(e){return{url:"/pimcore-studio/api/assets/".concat(e.id,"/image/download/thumbnail/").concat(e.thumbnailName)}},providesTags:["Assets"]}),assetPatchById:e.mutation({query:function(e){return{url:"/pimcore-studio/api/assets",method:"PATCH",body:e.body}},invalidatesTags:["Assets"]}),assetPatchFolderById:e.mutation({query:function(e){return{url:"/pimcore-studio/api/assets/folder",method:"PATCH",body:e.body}},invalidatesTags:["Assets"]}),assetGetTree:e.query({query:function(e){return{url:"/pimcore-studio/api/assets/tree",params:{page:e.page,pageSize:e.pageSize,parentId:e.parentId,idSearchTerm:e.idSearchTerm,excludeFolders:e.excludeFolders,path:e.path,pathIncludeParent:e.pathIncludeParent,pathIncludeDescendants:e.pathIncludeDescendants}}},providesTags:["Assets"]}),assetAdd:e.mutation({query:function(e){return{url:"/pimcore-studio/api/assets/add/".concat(e.parentId),method:"POST",body:e.body}},invalidatesTags:["Assets"]}),assetUploadInfo:e.query({query:function(e){return{url:"/pimcore-studio/api/assets/exists/".concat(e.parentId),params:{fileName:e.fileName}}},providesTags:["Assets"]}),assetReplace:e.mutation({query:function(e){return{url:"/pimcore-studio/api/assets/".concat(e.id,"/replace"),method:"POST",body:e.body}},invalidatesTags:["Assets"]}),assetUploadZip:e.mutation({query:function(e){return{url:"/pimcore-studio/api/assets/add-zip/".concat(e.parentId),method:"POST",body:e.body}},invalidatesTags:["Assets"]}),assetVideoImageThumbnailStream:e.query({query:function(e){return{url:"/pimcore-studio/api/assets/".concat(e.id,"/video/stream/image-thumbnail"),params:{width:e.width,height:e.height,aspectRatio:e.aspectRatio,frame:e.frame,async:e.async}}},providesTags:["Assets"]}),assetVideoDownloadByThumbnail:e.query({query:function(e){return{url:"/pimcore-studio/api/assets/".concat(e.id,"/video/download/").concat(e.thumbnailName)}},providesTags:["Assets"]}),assetVideoStreamByThumbnail:e.query({query:function(e){return{url:"/pimcore-studio/api/assets/".concat(e.id,"/video/stream/").concat(e.thumbnailName)}},providesTags:["Assets"]}),versionAssetDownloadById:e.query({query:function(e){return{url:"/pimcore-studio/api/versions/".concat(e.id,"/asset/download")}},providesTags:["Versions"]})}},overrideExisting:!1}),a=i.useAssetCloneMutation,s=i.useAssetCustomMetadataGetByIdQuery,l=i.useAssetCustomSettingsGetByIdQuery,c=i.useAssetGetTextDataByIdQuery,u=i.useAssetDocumentStreamPreviewQuery,d=i.useAssetDownloadCsvQuery,f=i.useAssetDeleteCsvMutation,h=i.useAssetDownloadZipQuery,p=i.useAssetDeleteZipMutation,m=i.useAssetDownloadByIdQuery,g=i.useAssetExportCsvAssetMutation,y=i.useAssetExportCsvFolderMutation,v=i.useAssetExportZipAssetMutation,b=i.useAssetExportZipFolderMutation,O=i.useAssetGetByIdQuery,w=i.useAssetUpdateByIdMutation,S=i.useAssetDeleteGridConfigurationByConfigurationIdMutation,x=i.useAssetGetAvailableGridColumnsQuery,E=i.useAssetGetGridConfigurationByFolderIdQuery,T=i.useAssetGetSavedGridConfigurationsQuery,C=i.useAssetSaveGridConfigurationMutation,P=i.useAssetSetGridConfigurationAsFavoriteMutation,_=i.useAssetUpdateGridConfigurationMutation,k=i.useAssetGetGridMutation,j=i.useAssetImageDownloadCustomQuery,A=i.useAssetImageDownloadByFormatQuery,R=i.useAssetImageStreamPreviewQuery,D=i.useAssetImageDownloadByThumbnailQuery,L=i.useAssetPatchByIdMutation,I=i.useAssetPatchFolderByIdMutation,M=i.useAssetGetTreeQuery,N=i.useAssetAddMutation,$=i.useAssetUploadInfoQuery,B=i.useAssetReplaceMutation,F=i.useAssetUploadZipMutation,Q=i.useAssetVideoImageThumbnailStreamQuery,z=i.useAssetVideoDownloadByThumbnailQuery,V=i.useAssetVideoStreamByThumbnailQuery,U=i.useVersionAssetDownloadByIdQuery},25525:(e,t,n)=>{"use strict";n.r(t),n.d(t,{addCustomMetadataToAsset:()=>R,addImageSettingsToAsset:()=>b,addPropertyToAsset:()=>S,addScheduleToAsset:()=>C,assetReceived:()=>p,assetsAdapter:()=>d,removeAsset:()=>m,removeCustomMetadataFromAsset:()=>D,removeImageSettingFromAsset:()=>O,removePropertyFromAsset:()=>x,removeScheduleFromAsset:()=>P,resetAsset:()=>g,resetChanges:()=>y,resetSchedulesChangesForAsset:()=>j,selectAssetById:()=>N,setActiveTabForAsset:()=>M,setCustomMetadataForAsset:()=>I,setModifiedCells:()=>v,setPropertiesForAsset:()=>E,setSchedulesForAsset:()=>_,slice:()=>f,updateAllCustomMetadataForAsset:()=>A,updateCustomMetadataForAsset:()=>L,updateImageSettingForAsset:()=>w,updatePropertyForAsset:()=>T,updateScheduleForAsset:()=>k});var r=n(8327),o=n(7496),i=n(86618),a=n(78576),s=n(94941),l=n(36403),c=n(2228),u=n(95973),d=(0,r.createEntityAdapter)({}),f=(0,r.createSlice)({name:"asset-draft",initialState:d.getInitialState(Object.assign({modified:!1,properties:[],customMetadata:[],imageSettings:[],schedule:[],changes:{},modifiedCells:{}},u.initialTabsStateValue)),reducers:Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({assetReceived:d.upsertOne,removeAsset:function(e,t){d.removeOne(e,t.payload)},resetAsset:function(e,t){void 0!==e.entities[t.payload]&&(e.entities[t.payload]=d.getInitialState({modified:!1,properties:[],changes:{}}).entities[t.payload])}},(0,s.useTrackableChangesReducers)(d)),(0,i.usePropertiesReducers)(d)),(0,c.useSchedulesReducers)(d)),(0,a.useCustomMetadataReducers)(d)),(0,l.useImageSettingsReducers)(d)),(0,u.useTabsReducers)(d))});(0,o.injectSliceWithState)(f);var h=f.actions,p=h.assetReceived,m=h.removeAsset,g=h.resetAsset,y=h.resetChanges,v=h.setModifiedCells,b=h.addImageSettings,O=h.removeImageSetting,w=h.updateImageSetting,S=h.addProperty,x=h.removeProperty,E=h.setProperties,T=h.updateProperty,C=h.addSchedule,P=h.removeSchedule,_=h.setSchedules,k=h.updateSchedule,j=h.resetSchedulesChanges,A=h.updateAllCustomMetadata,R=h.addCustomMetadata,D=h.removeCustomMetadata,L=h.updateCustomMetadata,I=h.setCustomMetadata,M=h.setActiveTab,N=d.getSelectors((function(e){return e["asset-draft"]})).selectById},43741:(e,t,n)=>{"use strict";n.r(t),n.d(t,{AssetContext:()=>o,AssetProvider:()=>i});var r=n(36198),o=(0,r.createContext)({id:0}),i=function(e){var t=e.id,n=e.children;return(0,r.useMemo)((function(){return r.createElement(o.Provider,{value:{id:t}},n)}),[t])}},78576:(e,t,n)=>{"use strict";n.r(t),n.d(t,{useCustomMetadataDraft:()=>s,useCustomMetadataReducers:()=>a});var r=n(7496);function o(e){return function(e){if(Array.isArray(e))return i(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||function(e,t){if(!e)return;if("string"==typeof e)return i(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return i(e,t)}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function i(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";n.r(t),n.d(t,{useImageSettingsDraft:()=>i,useImageSettingsReducers:()=>o});var r=n(7496),o=function(e){var t=function(t,n,r){var o=e.getSelectors().selectById(t,n);void 0!==o?t.entities[n]=r(Object.assign({},o)):console.error("Item with id ".concat(n," not found"))},n=function(e){e.modified=!0,e.changes=Object.assign(Object.assign({},e.changes),{imageSettings:!0})};return{addImageSettings:function(e,r){t(e,r.payload.id,(function(e){return e.imageSettings=Object.assign(Object.assign({},e.imageSettings),r.payload.settings),n(e),e}))},removeImageSetting:function(e,r){t(e,r.payload.id,(function(e){var t=structuredClone(e.imageSettings);return delete t[r.payload.setting],e.imageSettings=Object.assign({},t),n(e),e}))},updateImageSetting:function(e,r){t(e,r.payload.id,(function(e){return e.imageSettings[r.payload.setting]=r.payload.value,n(e),e}))}}},i=function(e,t,n,o,i){var a=(0,r.useAppDispatch)();return{imageSettings:null==t?void 0:t.imageSettings,addImageSettings:function(t){a(n({id:e,settings:t}))},removeImageSetting:function(t){a(o({id:e,setting:t}))},updateImageSetting:function(t,n){a(i({id:e,setting:t,value:n}))}}}},13405:(e,t,n)=>{"use strict";n.r(t),n.d(t,{EditorContainer:()=>f});var r=n(36198),o=n(61008),i=n(2263),a=n(5482),s=n(43741),l=n(82755),c=n(98740),u=n(7046),d=n(6150),f=function(e){var t=e.id,n=(0,o.useAssetDraft)(t),f=n.isLoading,h=n.isError,p=n.asset,m=n.removeAssetFromState,g=n.editorType,y=(0,i.useIsAcitveMainWidget)(),v=(0,a.useGlobalAssetContext)(),b=v.setContext,O=v.removeContext;return(0,r.useEffect)((function(){return function(){O(),m()}}),[]),(0,r.useEffect)((function(){return y&&b({id:t}),function(){y||O()}}),[y]),h?r.createElement("div",null,"Error"):f?r.createElement(l.Content,{loading:!0}):void 0===p||void 0===g?r.createElement(r.Fragment,null):r.createElement(s.AssetProvider,{id:t},r.createElement(d.TabsToolbarView,{renderTabbar:r.createElement(c.TabsContainer,{elementEditorType:g}),renderToolbar:r.createElement(u.Toolbar,null)}))}},62288:(e,t,n)=>{"use strict";n.r(t);var r=n(81690),o=(n(957),n(50941),n(42371),n(14230),n(55347),n(45136),n(8156),n(87160),n(54088)),i=n(80237),a=n(33859),s=n(16728);i.moduleSystem.registerModule({onInit:function(){var e=r.container.get(o.serviceIds["Asset/Editor/TypeRegistry"]);e.register({name:"image",tabManagerServiceId:"Asset/Editor/ImageTabManager"}),e.register({name:"video",tabManagerServiceId:"Asset/Editor/VideoTabManager"}),e.register({name:"audio",tabManagerServiceId:"Asset/Editor/AudioTabManager"}),e.register({name:"document",tabManagerServiceId:"Asset/Editor/DocumentTabManager"}),e.register({name:"text",tabManagerServiceId:"Asset/Editor/TextTabManager"}),e.register({name:"folder",tabManagerServiceId:"Asset/Editor/FolderTabManager"}),e.register({name:"archive",tabManagerServiceId:"Asset/Editor/ArchiveTabManager"}),e.register({name:"unknown",tabManagerServiceId:"Asset/Editor/UnknownTabManager"}),r.container.get(o.serviceIds.widgetManager).registerWidget(s.AssetEditorWidget),r.container.get(o.serviceIds["App/ComponentRegistry/ComponentRegistry"]).register({name:"editorToolbarContextMenuAsset",component:a.EditorToolbarContextMenu})}})},98051:(e,t,n)=>{"use strict";n.r(t),n.d(t,{TAB_CUSTOM_METADATA:()=>d,TAB_EMBEDDED_METADATA:()=>u,TAB_VERSIONS:()=>f});var r=n(54663),o=n(36198),i=n(4366),a=n(93365),s=n(9287),l=n(64620),c=n(67092),u={key:"embedded-metadata",label:"asset.asset-editor-tabs.embedded-metadata",children:o.createElement(i.EmbeddedMetadataTabContainer,null),icon:o.createElement(r.Icon,{value:"data-sheet"}),isDetachable:!0},d={key:"custom-metadata",label:"asset.asset-editor-tabs.custom-metadata",children:o.createElement(a.CustomMetadataTabContainer,null),icon:o.createElement(r.Icon,{value:"data-management-2"}),isDetachable:!0},f={key:"versions",label:"version.label",workspacePermission:"versions",children:o.createElement(s.VersionsTabContainer,{ComparisonViewComponent:l.ComparisonView,SingleViewComponent:c.SingleView}),icon:o.createElement(r.Icon,{value:"history-outlined"}),isDetachable:!0}},47042:(e,t,n)=>{"use strict";n.r(t),n.d(t,{CustomMetadataTable:()=>v});var r=n(36198),o=n(30811),i=n(74094),a=n(93477),s=n(44587),l=n(43741),c=n(61008),u=n(27027),d=n(30928),f=n(48388),h=n(47259);function p(e){return p="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},p(e)}function m(e,t,n){var r;return r=function(e,t){if("object"!=p(e)||!e)return e;var n=e[Symbol.toPrimitive];if(void 0!==n){var r=n.call(e,t||"default");if("object"!=p(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"),(t="symbol"==p(r)?r:r+"")in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function g(e){return function(e){if(Array.isArray(e))return y(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||function(e,t){if(!e)return;if("string"==typeof e)return y(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return y(e,t)}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function y(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n0&&void 0===(null==O?void 0:O.changes.customMetadata)&&T(k,[])}),[O]);var R=(0,i.createColumnHelper)(),D=[R.accessor("type",{header:y("asset.asset-editor-tabs.custom-metadata.columns.type"),meta:{type:"asset-custom-metadata-icon"},size:40}),R.accessor("name",{header:y("asset.asset-editor-tabs.custom-metadata.columns.name"),meta:{editable:!0},size:200}),R.accessor("language",{header:y("asset.asset-editor-tabs.custom-metadata.columns.language"),meta:{type:"language-select",editable:!0},size:100}),R.accessor("data",{header:y("asset.asset-editor-tabs.custom-metadata.columns.value"),meta:{type:"asset-custom-metadata-value",editable:!0,autoWidth:!0},size:400}),R.accessor("actions",{header:y("asset.asset-editor-tabs.custom-metadata.columns.actions"),cell:function(e){return r.createElement(f.Box,{padding:"mini"},r.createElement(h.Flex,{align:"center",className:"w-full h-full",justify:"center"},r.createElement(u.IconButton,{icon:{value:"trash"},onClick:function(){x(e.row.original)},type:"link"})))},size:60})];return r.createElement(s.Grid,{autoWidth:!0,columns:D,data:null!=A?A:[],isLoading:_,modifiedCells:j,onUpdateCellData:function(e){e.rowIndex;var t=e.columnId,r=e.value,o=e.rowData,i=g(null!=w?w:[]),a=i.findIndex((function(e){return e.name===o.name&&e.language===o.language})),s=Object.assign(Object.assign({},i.at(a)),m({},t,r));i[a]=s;var l=i.filter((function(e){return e.name===s.name&&e.language===s.language})).length>1;if((0,d.verifyUpdate)(r,t,"name",l,p,n)){var c=i.map((function(e){var t;return Object.assign(Object.assign({},e),{type:null!==(t=e.type.split(".")[1])&&void 0!==t?t:e.type})}));E(c),T(k,[].concat(g(j),[{rowIndex:o.rowId,columnId:t}]))}},setRowId:function(e){return e.rowId}})}},93365:(e,t,n)=>{"use strict";n.r(t),n.d(t,{CustomMetadataTabContainer:()=>T});var r=n(36198),o=n(30811),i=n(71816),a=n(77749),s=n(47042),l=n(95987),c=n(61008),u=n(43741),d=n(15747),f=n(16826),h=n(81690),p=n(54088),m=n(62833),g=n(54512),y=n(41161),v=n(82755),b=n(40069),O=n(58664);function w(e){return function(e){if(Array.isArray(e))return E(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||x(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function S(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||x(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function x(e,t){if(e){if("string"==typeof e)return E(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?E(e,t):void 0}}function E(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n0,t=void 0!==B.current;if(e&&t)if(void 0===(null==_?void 0:_.find((function(e){return e.name===N.current&&e.language===F.current})))){var n={additionalAttributes:[],name:N.current,type:B.current,language:F.current,data:null,rowId:crypto.randomUUID()};P(n)}else j();else L()}()}},e("asset.asset-editor-tabs.custom-metadata.add-custom-metadata.add"))),r.createElement(R,{footer:r.createElement(f.ModalFooter,null,r.createElement(i.Button,{onClick:A,type:"primary"},e("button.ok"))),title:e("asset.asset-editor-tabs.custom-metadata.custom-metadata-already-exist.title")},e("asset.asset-editor-tabs.custom-metadata.custom-metadata-already-exist.error")),r.createElement(M,{footer:r.createElement(f.ModalFooter,null,r.createElement(i.Button,{onClick:I,type:"primary"},e("button.ok"))),title:e("asset.asset-editor-tabs.custom-metadata.add-entry-mandatory-fields-missing.title")},e("asset.asset-editor-tabs.custom-metadata.add-entry-mandatory-fields-missing.error"))),!n&&r.createElement(g.ButtonGroup,{items:[r.createElement(i.Button,{key:e("asset.asset-editor-tabs.custom-metadata.add-predefined-definition"),onClick:function(){console.log("clicked")}},e("asset.asset-editor-tabs.custom-metadata.add-predefined-definition")),r.createElement(m.IconTextButton,{icon:{value:"PlusCircleOutlined"},key:e("asset.asset-editor-tabs.custom-metadata.add-custom-definition.add"),onClick:function(){x(!0)}},e("asset.asset-editor-tabs.custom-metadata.add-custom-definition.add"))]})))),r.createElement(s.CustomMetadataTable,{showDuplicateEntryModal:j,showMandatoryModal:L}))}},4366:(e,t,n)=>{"use strict";n.r(t),n.d(t,{EmbeddedMetadataTabContainer:()=>h});var r=n(36198),o=n(93477),i=n(74094),a=n(44587),s=n(30811),l=n(82755),c=n(41161),u=n(14465);function d(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return f(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return f(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function f(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";var r;n.r(t),n.d(t,{useStyles:()=>o});var o=(0,n(3562).createStyles)((function(e){var t,n,o=e.token,i=e.css,a=Object.assign({versionsLeftSideWidth:"395"},o);return{"right-side":i(r||(t=[" \n & .highlight-cell {\n background-color: ",";\n font-weight: bold;\n }\n "],n||(n=t.slice(0)),r=Object.freeze(Object.defineProperties(t,{raw:{value:Object.freeze(n)}}))),a.colorWarningBg)}}),{hashPriority:"low"})},69002:(e,t,n)=>{"use strict";n.r(t),n.d(t,{ComparisonViewUi:()=>f});var r=n(36198),o=n(73217),i=n(15663),a=n(44587),s=n(74094),l=n(72166),c=n(71590),u=n(28518);function d(e){return d="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},d(e)}var f=function(e){var t=e.versions,n=e.gridData,f=(0,i.useStyles)().styles,h=(0,s.createColumnHelper)(),p=[];t.forEach((function(e){p.push(h.accessor(o.default.t("version.version")+" "+e.versionCount,{cell:function(e){var t=e.row.getAllCells();if(3===t.length&&e.cell.id===t[2].id){var n=e.cell.getValue(),o=t[0].getValue();if(("object"!==d(o)||"version-preview"!==o.key)&&JSON.stringify(n)!==JSON.stringify(t[1].getValue()))return r.createElement("span",{className:"highlight-cell"},r.createElement(l.DefaultCell,Object.assign({},e)))}return r.createElement(l.DefaultCell,Object.assign({},e))}}))}));var m=[h.accessor(o.default.t("field"),{meta:{type:"asset-version-preview-field-label"}})].concat(p);return r.createElement("div",{className:f["right-side"]},r.createElement(u.Space,{direction:"vertical",size:"large",style:{maxWidth:t.length>1?1200:600}},r.createElement(u.Flex,{align:"center",gap:"small",justify:"center",style:{minHeight:100}},t.map((function(e,t){return r.createElement("div",{key:t},null!==e.previewImageUrl?r.createElement(c.PimcoreImage,{src:e.previewImageUrl,style:{maxHeight:500,maxWidth:500}}):"No preview available")}))),r.createElement(u.Flex,{align:"center",className:"w-full"},r.createElement(a.Grid,{autoWidth:!0,columns:m,data:n}))))}},64620:(e,t,n)=>{"use strict";n.r(t),n.d(t,{ComparisonView:()=>p});var r=n(36198),o=n(83227),i=n(69002),a=n(76415),s=n(7496),l=n(82755);function c(e){return c="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},c(e)}function u(){u=function(){return t};var e,t={},n=Object.prototype,r=n.hasOwnProperty,o=Object.defineProperty||function(e,t,n){e[t]=n.value},i="function"==typeof Symbol?Symbol:{},a=i.iterator||"@@iterator",s=i.asyncIterator||"@@asyncIterator",l=i.toStringTag||"@@toStringTag";function d(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{d({},"")}catch(e){d=function(e,t,n){return e[t]=n}}function f(e,t,n,r){var i=t&&t.prototype instanceof b?t:b,a=Object.create(i.prototype),s=new R(r||[]);return o(a,"_invoke",{value:_(e,n,s)}),a}function h(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}t.wrap=f;var p="suspendedStart",m="suspendedYield",g="executing",y="completed",v={};function b(){}function O(){}function w(){}var S={};d(S,a,(function(){return this}));var x=Object.getPrototypeOf,E=x&&x(x(D([])));E&&E!==n&&r.call(E,a)&&(S=E);var T=w.prototype=b.prototype=Object.create(S);function C(e){["next","throw","return"].forEach((function(t){d(e,t,(function(e){return this._invoke(t,e)}))}))}function P(e,t){function n(o,i,a,s){var l=h(e[o],e,i);if("throw"!==l.type){var u=l.arg,d=u.value;return d&&"object"==c(d)&&r.call(d,"__await")?t.resolve(d.__await).then((function(e){n("next",e,a,s)}),(function(e){n("throw",e,a,s)})):t.resolve(d).then((function(e){u.value=e,a(u)}),(function(e){return n("throw",e,a,s)}))}s(l.arg)}var i;o(this,"_invoke",{value:function(e,r){function o(){return new t((function(t,o){n(e,r,t,o)}))}return i=i?i.then(o,o):o()}})}function _(t,n,r){var o=p;return function(i,a){if(o===g)throw Error("Generator is already running");if(o===y){if("throw"===i)throw a;return{value:e,done:!0}}for(r.method=i,r.arg=a;;){var s=r.delegate;if(s){var l=k(s,r);if(l){if(l===v)continue;return l}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if(o===p)throw o=y,r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);o=g;var c=h(t,n,r);if("normal"===c.type){if(o=r.done?y:m,c.arg===v)continue;return{value:c.arg,done:r.done}}"throw"===c.type&&(o=y,r.method="throw",r.arg=c.arg)}}}function k(t,n){var r=n.method,o=t.iterator[r];if(o===e)return n.delegate=null,"throw"===r&&t.iterator.return&&(n.method="return",n.arg=e,k(t,n),"throw"===n.method)||"return"!==r&&(n.method="throw",n.arg=new TypeError("The iterator does not provide a '"+r+"' method")),v;var i=h(o,t.iterator,n.arg);if("throw"===i.type)return n.method="throw",n.arg=i.arg,n.delegate=null,v;var a=i.arg;return a?a.done?(n[t.resultName]=a.value,n.next=t.nextLoc,"return"!==n.method&&(n.method="next",n.arg=e),n.delegate=null,v):a:(n.method="throw",n.arg=new TypeError("iterator result is not an object"),n.delegate=null,v)}function j(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function A(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function R(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(j,this),this.reset(!0)}function D(t){if(t||""===t){var n=t[a];if(n)return n.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var o=-1,i=function n(){for(;++o=0;--i){var a=this.tryEntries[i],s=a.completion;if("root"===a.tryLoc)return o("end");if(a.tryLoc<=this.prev){var l=r.call(a,"catchLoc"),c=r.call(a,"finallyLoc");if(l&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),A(n),v}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;A(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),v}},t}function d(e,t,n,r,o,i,a){try{var s=e[i](a),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(r,o)}function f(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return h(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return h(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function h(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";n.r(t),n.d(t,{hydrateVersionData:()=>m,loadPreviewImage:()=>v,versionsDataToTableData:()=>b});var r=n(63664),o=n(6745),i=n(81690),a=n(54088),s=n(36609);function l(e){return l="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},l(e)}function c(e,t,n){var r;return r=function(e,t){if("object"!=l(e)||!e)return e;var n=e[Symbol.toPrimitive];if(void 0!==n){var r=n.call(e,t||"default");if("object"!=l(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"),(t="symbol"==l(r)?r:r+"")in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function u(){u=function(){return t};var e,t={},n=Object.prototype,r=n.hasOwnProperty,o=Object.defineProperty||function(e,t,n){e[t]=n.value},i="function"==typeof Symbol?Symbol:{},a=i.iterator||"@@iterator",s=i.asyncIterator||"@@asyncIterator",c=i.toStringTag||"@@toStringTag";function d(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{d({},"")}catch(e){d=function(e,t,n){return e[t]=n}}function f(e,t,n,r){var i=t&&t.prototype instanceof b?t:b,a=Object.create(i.prototype),s=new R(r||[]);return o(a,"_invoke",{value:_(e,n,s)}),a}function h(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}t.wrap=f;var p="suspendedStart",m="suspendedYield",g="executing",y="completed",v={};function b(){}function O(){}function w(){}var S={};d(S,a,(function(){return this}));var x=Object.getPrototypeOf,E=x&&x(x(D([])));E&&E!==n&&r.call(E,a)&&(S=E);var T=w.prototype=b.prototype=Object.create(S);function C(e){["next","throw","return"].forEach((function(t){d(e,t,(function(e){return this._invoke(t,e)}))}))}function P(e,t){function n(o,i,a,s){var c=h(e[o],e,i);if("throw"!==c.type){var u=c.arg,d=u.value;return d&&"object"==l(d)&&r.call(d,"__await")?t.resolve(d.__await).then((function(e){n("next",e,a,s)}),(function(e){n("throw",e,a,s)})):t.resolve(d).then((function(e){u.value=e,a(u)}),(function(e){return n("throw",e,a,s)}))}s(c.arg)}var i;o(this,"_invoke",{value:function(e,r){function o(){return new t((function(t,o){n(e,r,t,o)}))}return i=i?i.then(o,o):o()}})}function _(t,n,r){var o=p;return function(i,a){if(o===g)throw Error("Generator is already running");if(o===y){if("throw"===i)throw a;return{value:e,done:!0}}for(r.method=i,r.arg=a;;){var s=r.delegate;if(s){var l=k(s,r);if(l){if(l===v)continue;return l}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if(o===p)throw o=y,r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);o=g;var c=h(t,n,r);if("normal"===c.type){if(o=r.done?y:m,c.arg===v)continue;return{value:c.arg,done:r.done}}"throw"===c.type&&(o=y,r.method="throw",r.arg=c.arg)}}}function k(t,n){var r=n.method,o=t.iterator[r];if(o===e)return n.delegate=null,"throw"===r&&t.iterator.return&&(n.method="return",n.arg=e,k(t,n),"throw"===n.method)||"return"!==r&&(n.method="throw",n.arg=new TypeError("The iterator does not provide a '"+r+"' method")),v;var i=h(o,t.iterator,n.arg);if("throw"===i.type)return n.method="throw",n.arg=i.arg,n.delegate=null,v;var a=i.arg;return a?a.done?(n[t.resultName]=a.value,n.next=t.nextLoc,"return"!==n.method&&(n.method="next",n.arg=e),n.delegate=null,v):a:(n.method="throw",n.arg=new TypeError("iterator result is not an object"),n.delegate=null,v)}function j(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function A(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function R(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(j,this),this.reset(!0)}function D(t){if(t||""===t){var n=t[a];if(n)return n.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var o=-1,i=function n(){for(;++o=0;--i){var a=this.tryEntries[i],s=a.completion;if("root"===a.tryLoc)return o("end");if(a.tryLoc<=this.prev){var l=r.call(a,"catchLoc"),c=r.call(a,"finallyLoc");if(l&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),A(n),v}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;A(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),v}},t}function d(e,t,n,r,o,i,a){try{var s=e[i](a),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(r,o)}function f(e){return function(){var t=this,n=arguments;return new Promise((function(r,o){var i=e.apply(t,n);function a(e){d(i,r,o,a,s,"next",e)}function s(e){d(i,r,o,a,s,"throw",e)}a(void 0)}))}}function h(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=function(e,t){if(!e)return;if("string"==typeof e)return p(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return p(e,t)}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0,o=function(){};return{s:o,n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,a=!0,s=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return a=e.done,e},e:function(e){s=!0,i=e},f:function(){try{a||null==n.return||n.return()}finally{if(s)throw i}}}}function p(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);no?1:0})),[].concat(n,r)}},52188:(e,t,n)=>{"use strict";n.r(t),n.d(t,{SingleViewUi:()=>u});var r=n(36198),o=n(73217),i=n(44587),a=n(74094),s=n(71590),l=n(28518),c=n(27027),u=function(e){var t=e.versionId,n=e.data,u=e.imgSrc,d=e.firstVersion,f=e.lastVersion,h=e.onClickPrevious,p=e.onClickNext,m=(0,a.createColumnHelper)(),g=[m.accessor(o.default.t("field"),{size:162,meta:{type:"asset-version-preview-field-label"}}),m.accessor(o.default.t("version.version")+" "+t.count,{size:180})];return r.createElement(l.Space,{align:"center",direction:"vertical",size:"large",style:{maxWidth:600}},r.createElement(l.Flex,{align:"center",gap:"small",justify:"center",style:{minHeight:100}},r.createElement(c.IconButton,{disabled:d,icon:{value:"left-outlined"},onClick:h,type:"text"}),null!==u?r.createElement(s.PimcoreImage,{className:"image-slider__image",src:u,style:{maxHeight:500,maxWidth:500}}):null,r.createElement(c.IconButton,{disabled:f,icon:{value:"right-outlined"},onClick:p,type:"text"})),r.createElement(l.Flex,{className:"w-full",justify:"center"},r.createElement(i.Grid,{autoWidth:!0,columns:g,data:n})))}},67092:(e,t,n)=>{"use strict";n.r(t),n.d(t,{SingleView:()=>d});var r=n(36198),o=n(83227),i=n(7496),a=n(76415),s=n(52188),l=n(82755);function c(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return u(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return u(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function u(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n=0&&n+e{"use strict";n.r(t),n.d(t,{TitleContainer:()=>a});var r=n(36198),o=n(1464),i=n(61008),a=function(e){var t,n=e.node,a=(0,i.useAssetDraft)(n.getConfig().id).asset;return r.createElement(o.TabTitleContainer,{modified:null!==(t=null==a?void 0:a.modified)&&void 0!==t&&t,node:n})}},33859:(e,t,n)=>{"use strict";n.r(t),n.d(t,{EditorToolbarContextMenu:()=>m});var r=n(28518),o=n(27027),i=n(95658),a=n(36198),s=n(93477),l=n(38693),c=n(7496),u=n(30811),d=n(43741),f=n(61008);function h(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return p(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return p(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function p(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n0?b(!0):O()},open:v,title:e("toolbar.reload.confirmation")},a.createElement(o.IconButton,{icon:{value:"refresh"}},e("toolbar.reload"))));function O(){g(),t(s.api.util.invalidateTags(l.invalidatingTags.ASSET_DETAIL_ID(n)))}}},7046:(e,t,n)=>{"use strict";n.r(t),n.d(t,{Toolbar:()=>S});var r=n(36198),o=n(72475),i=n(30811),a=n(71816),s=n(61008),l=n(93477),c=n(78078),u=n(63033),d=n(54088),f=n(81690),h=n(46928),p=n(49555),m=n(47259),g=n(20160),y=n(81873);function v(e){return v="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},v(e)}function b(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return O(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return O(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function O(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";n.r(t),n.d(t,{useSubmitWorkflow:()=>f});var r=n(24431),o=n(78078),i=n(36609),a=n(96486),s=n.n(a),l=n(2824),c=n(14465);function u(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return d(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return d(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function d(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";n.r(t),n.d(t,{useWorkflow:()=>l});var r=n(36198),o=n(20160),i=n(24431),a=n(46928),s=n(61008),l=function(){var e,t=(0,r.useContext)(o.WorkflowContext),n=t.openModal,l=t.closeModal,c=t.isModalOpen,u=t.contextWorkflowDetails,d=t.setContextWorkflowDetails,f=(0,a.useElementContext)(),h=f.id,p=f.elementType,m=(0,s.useAssetDraft)(h).asset,g=null!==(e=null==m?void 0:m.hasWorkflowAvailable)&&void 0!==e&&e,y=(0,i.useWorkflowGetDetailsQuery)({elementType:p,elementId:h},{skip:!g});return{openModal:n,closeModal:l,isModalOpen:c,contextWorkflowDetails:u,setContextWorkflowDetails:d,workflowDetailsData:y.data,isFetchingWorkflowDetails:y.isFetching}}},81873:(e,t,n)=>{"use strict";n.r(t),n.d(t,{WorkflowLogModal:()=>g});var r=n(36198),o=n(16826),i=n(71816),a=n(55381),s=n(47259),l=n(31090),c=n(2824),u=n(79195),d=n(28518),f=n(36609),h=n(31825);function p(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return m(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return m(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function m(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";n.r(t),n.d(t,{WorkFlowProvider:()=>s,WorkflowContext:()=>a});var r=n(36198);function o(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return i(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return i(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function i(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";n.r(t),n.d(t,{EditorToolbarWorkflowMenu:()=>m});var r=n(36198),o=n(59407),i=n(7667),a=n(41642),s=n(30811),l=n(71632),c=n(47259),u=n(54663),d=n(48665),f=n(2824);function h(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return p(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return p(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function p(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n0){var t=g.items.flatMap((function(t){var n,o,i=[];return i.push({key:((null!==(o=null===(n=null==g?void 0:g.items)||void 0===n?void 0:n.length)&&void 0!==o?o:0)+1).toString(),type:"custom",component:r.createElement(l.WorkflowTransitionGroup,{workflow:t})}),{key:e("".concat(t.workflowName)),type:"group",label:e("".concat(t.workflowName)).toUpperCase(),children:i}}));p(t)}}),[g]);return r.createElement(c.Flex,{align:"center",justify:"flex-end"},r.createElement(o.TagList,{itemGap:"extra-small",list:void 0!==(null==g?void 0:g.items)&&g.items.length>0?[g.items.reduce((function(t,n){return n.workflowStatus.forEach((function(n){if(void 0!==n.visibleInDetail&&n.visibleInDetail){var o=n.colorInverted?{backgroundColor:"".concat(n.color,"33")}:{},a={children:e("".concat(n.label)),icon:r.createElement(i.Badge,{color:n.color}),style:o};t.push(a)}})),t}),[])]:[[]],wrap:!1}),r.createElement(a.Dropdown,{disabled:y,menu:{items:n}},r.createElement(d.DropdownButton,null,r.createElement(u.Icon,{options:{height:16,width:16},value:"workflow"}))))}},92163:(e,t,n)=>{"use strict";var r,o;function i(e,t){return t||(t=e.slice(0)),Object.freeze(Object.defineProperties(e,{raw:{value:Object.freeze(t)}}))}n.r(t),n.d(t,{useStyles:()=>a});var a=(0,n(3562).createStyles)((function(e){var t=e.token,n=e.css;return{button:n(r||(r=i(["\n min-width: 100%;\n justify-items: flex-start;\n "]))),"not-first":n(o||(o=i(["\n margin-top: ","px;\n "])),t.marginXXS)}}),{hashPriority:"low"})},71632:(e,t,n)=>{"use strict";n.r(t),n.d(t,{WorkflowTransitionGroup:()=>c});var r=n(36198),o=n(30811),i=n(2824),a=n(71816),s=n(31825),l=n(92163),c=(n(93967),function(e){var t,n,c=e.workflow,u=(0,i.useWorkflow)().openModal,d=(0,s.useSubmitWorkflow)(c.workflowName),f=d.submitWorkflowAction,h=d.submissionLoading,p=(0,l.useStyles)().styles,m=(0,o.useTranslation)().t,g=function(e,t){return r.createElement(a.Button,{className:"".concat(p.button),onClick:function(){!function(e,t,n){"global"===t?u({action:e,transition:t,workflowName:n}):"transition"===t&&f(e,t,n,{})}(e,t,c.workflowName)},type:"text"},m("".concat(e)))};return h?r.createElement(a.Button,{loading:h,type:"link"}):r.createElement("div",null,null===(t=c.allowedTransitions)||void 0===t?void 0:t.map((function(e){return g(e.label,"transition")})),null===(n=c.globalActions)||void 0===n?void 0:n.map((function(e){return g(e.label,"global")})))})},8156:(e,t,n)=>{"use strict";n.r(t);var r=n(81690),o=n(54088),i=n(80237),a=n(98051),s=n(99954);i.moduleSystem.registerModule({onInit:function(){var e=r.container.get(o.serviceIds["Asset/Editor/ArchiveTabManager"]);e.register(a.TAB_CUSTOM_METADATA),e.register(s.TAB_PROPERTIES),e.register(a.TAB_VERSIONS),e.register(s.TAB_SCHEDULE),e.register(s.TAB_DEPENDENCIES),e.register(s.TAB_NOTES_AND_EVENTS),e.register(s.TAB_TAGS),e.register(s.TAB_WORKFLOW)}})},79262:(e,t,n)=>{"use strict";function r(e){return r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},r(e)}function o(e,t){for(var n=0;nu});var u=function(e){function t(){var e;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),(e=a(this,t)).type="archive",e}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&c(e,t)}(t,e),n=t,r&&o(n.prototype,r),i&&o(n,i),Object.defineProperty(n,"prototype",{writable:!1}),n;var n,r,i}(n(62167).TabManager)},81800:(e,t,n)=>{"use strict";n.r(t),n.d(t,{addTagTypes:()=>o,api:()=>i,useThumbnailImageGetCollectionQuery:()=>a,useThumbnailVideoGetCollectionQuery:()=>s});var r=n(35525),o=["Asset Thumbnails"],i=r.api.enhanceEndpoints({addTagTypes:o}).injectEndpoints({endpoints:function(e){return{thumbnailImageGetCollection:e.query({query:function(){return{url:"/pimcore-studio/api/thumbnails/image"}},providesTags:["Asset Thumbnails"]}),thumbnailVideoGetCollection:e.query({query:function(){return{url:"/pimcore-studio/api/thumbnails/video"}},providesTags:["Asset Thumbnails"]})}},overrideExisting:!1}),a=i.useThumbnailImageGetCollectionQuery,s=i.useThumbnailVideoGetCollectionQuery},45136:(e,t,n)=>{"use strict";n.r(t);var r=n(36198),o=n(65611),i=n(81690),a=n(54088),s=n(80237),l=n(98051),c=n(99954),u=n(54663);s.moduleSystem.registerModule({onInit:function(){var e=i.container.get(a.serviceIds["Asset/Editor/AudioTabManager"]);e.register({key:"view",label:"asset.asset-editor-tabs.view",children:r.createElement(o.PreviewContainer,null),icon:r.createElement(u.Icon,{value:"image-05"})}),e.register(l.TAB_CUSTOM_METADATA),e.register(c.TAB_PROPERTIES),e.register(l.TAB_VERSIONS),e.register(c.TAB_SCHEDULE),e.register(c.TAB_DEPENDENCIES),e.register(c.TAB_NOTES_AND_EVENTS),e.register(c.TAB_TAGS),e.register(c.TAB_WORKFLOW)}})},96852:(e,t,n)=>{"use strict";function r(e){return r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},r(e)}function o(e,t){for(var n=0;nu});var u=function(e){function t(){var e;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),(e=a(this,t)).type="audio",e}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&c(e,t)}(t,e),n=t,r&&o(n.prototype,r),i&&o(n,i),Object.defineProperty(n,"prototype",{writable:!1}),n;var n,r,i}(n(62167).TabManager)},65611:(e,t,n)=>{"use strict";n.r(t),n.d(t,{PreviewContainer:()=>l});var r=n(36198),o=n(14771),i=n(93477),a=n(43741),s=n(13438),l=function(){var e=(0,r.useContext)(a.AssetContext),t=(0,i.useAssetGetByIdQuery)({id:e.id}).data;return r.createElement(s.ContentToolbarSidebarLayout,null,r.createElement(o.PreviewView,{src:t.fullPath}))}},30877:(e,t,n)=>{"use strict";var r;n.r(t),n.d(t,{useStyle:()=>o});var o=(0,n(3562).createStyles)((function(e){var t,n;e.token;return{preview:(0,e.css)(r||(t=["\n display: flex;\n justify-content: center;\n align-items: center;\n height: 100%;\n width: 100%;\n object-fit: contain;\n "],n||(n=t.slice(0)),r=Object.freeze(Object.defineProperties(t,{raw:{value:Object.freeze(n)}}))))}}),{hashPriority:"low"})},14771:(e,t,n)=>{"use strict";n.r(t),n.d(t,{PreviewView:()=>a});var r=n(36198),o=n(30877),i=n(38345),a=function(e){var t=(0,o.useStyle)().styles,n=e.src;return r.createElement("div",{className:t.preview},r.createElement(i.PimcoreAudio,{sources:[{src:n}]}))}},957:(e,t,n)=>{"use strict";n.r(t);var r=n(36198),o=n(54663),i=n(52639),a=n(81690),s=n(54088),l=n(80237),c=n(98051),u=n(99954);l.moduleSystem.registerModule({onInit:function(){var e=a.container.get(s.serviceIds["Asset/Editor/DocumentTabManager"]);e.register({key:"view",label:"asset.asset-editor-tabs.view",children:r.createElement(i.PreviewContainer,null),icon:r.createElement(o.Icon,{value:"image-05"})}),e.register(c.TAB_CUSTOM_METADATA),e.register(u.TAB_PROPERTIES),e.register(c.TAB_VERSIONS),e.register(u.TAB_SCHEDULE),e.register(u.TAB_DEPENDENCIES),e.register(u.TAB_NOTES_AND_EVENTS),e.register(u.TAB_TAGS),e.register(u.TAB_WORKFLOW)}})},35624:(e,t,n)=>{"use strict";n.r(t),n.d(t,{DocumentTabManager:()=>p});var r=n(62167),o=n(84560);function i(e,t){for(var n=0;n=0;s--)(o=e[s])&&(a=(i<3?o(a):i>3?o(t,n,a):o(t,n))||a);return i>3&&a&&Object.defineProperty(t,n,a),a},h=function(e,t){if("object"===("undefined"==typeof Reflect?"undefined":d(Reflect))&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)},p=function(e){function t(){var e;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),(e=s(this,t)).type="document",e}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&u(e,t)}(t,e),n=t,r&&i(n.prototype,r),o&&i(n,o),Object.defineProperty(n,"prototype",{writable:!1}),n;var n,r,o}(r.TabManager);p=f([(0,o.injectable)(),h("design:paramtypes",[])],p)},52639:(e,t,n)=>{"use strict";n.r(t),n.d(t,{PreviewContainer:()=>h});var r=n(36198),o=n(7841),i=n(13438),a=n(82755),s=n(14465),l=n(61008),c=n(65246),u=n(56239);function d(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return f(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return f(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function f(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";var r;n.r(t),n.d(t,{useStyle:()=>o});var o=(0,n(3562).createStyles)((function(e){var t,n;e.token;return{preview:(0,e.css)(r||(t=["\n display: flex;\n justify-content: center;\n align-items: center;\n height: 100%;\n width: 100%;\n object-fit: contain;\n\n iframe {\n display: flex;\n height: 100%;\n width: 100%;\n }\n "],n||(n=t.slice(0)),r=Object.freeze(Object.defineProperties(t,{raw:{value:Object.freeze(n)}}))))}}),{hashPriority:"low"})},7841:(e,t,n)=>{"use strict";n.r(t),n.d(t,{PreviewView:()=>a});var r=n(36198),o=n(13339),i=n(82626),a=function(e){var t=(0,o.useStyle)().styles,n=e.src;return r.createElement("div",{className:t.preview},r.createElement(i.PimcoreDocument,{src:n}))}},50941:(e,t,n)=>{"use strict";n.r(t);var r=n(36198),o=n(54663),i=n(65895),a=n(89248),s=n(81690),l=n(54088),c=n(80237),u=n(99954);c.moduleSystem.registerModule({onInit:function(){var e=s.container.get(l.serviceIds["Asset/Editor/FolderTabManager"]);e.register({children:r.createElement(a.PreviewContainer,null),icon:r.createElement(o.Icon,{value:"image-05"}),key:"preview",label:"folder.folder-editor-tabs.preview"}),e.register({children:r.createElement(i.ListContainer,null),icon:r.createElement(o.Icon,{value:"unordered-list-outlined"}),key:"list",label:"folder.folder-editor-tabs.view"}),e.register(u.TAB_PROPERTIES),e.register(u.TAB_DEPENDENCIES),e.register(u.TAB_NOTES_AND_EVENTS),e.register(u.TAB_TAGS),e.register(u.TAB_WORKFLOW)}})},47308:(e,t,n)=>{"use strict";n.r(t),n.d(t,{FolderTabManager:()=>p});var r=n(62167),o=n(84560);function i(e,t){for(var n=0;n=0;s--)(o=e[s])&&(a=(i<3?o(a):i>3?o(t,n,a):o(t,n))||a);return i>3&&a&&Object.defineProperty(t,n,a),a},h=function(e,t){if("object"===("undefined"==typeof Reflect?"undefined":d(Reflect))&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)},p=function(e){function t(){var e;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),(e=s(this,t)).type="folder",e}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&u(e,t)}(t,e),n=t,r&&i(n.prototype,r),o&&i(n,o),Object.defineProperty(n,"prototype",{writable:!1}),n;var n,r,o}(r.TabManager);p=f([(0,o.injectable)(),h("design:paramtypes",[])],p)},51512:(e,t,n)=>{"use strict";n.r(t),n.d(t,{DEFAULT_IS_INCLUDE_DESCENDANTS_VALUE:()=>r,defaultFilterOptions:()=>o,defaultTagFilterOptions:()=>i});var r=!1,o={columnFilters:[],includeDescendants:r},i={columnFilters:[]}},57987:(e,t,n)=>{"use strict";var r;n.r(t),n.d(t,{FILTER_TYPE:()=>r}),function(e){e.TAG_TYPE="system.tag",e.PQL_QUERY_TYPE="system.pql",e.FULL_TEXT_TYPE="system.fulltext"}(r||(r={}))},53480:(e,t,n)=>{"use strict";n.r(t),n.d(t,{GridContainer:()=>m,createColumnIdentifier:()=>f,decodeColumnIdentifier:()=>h,encodeColumnIdentifier:()=>p});var r=n(36198),o=n(44587),i=n(74094),a=n(30811),s=n(42938),l=n(86536),c=n(1447);function u(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return d(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return d(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function d(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";n.r(t),n.d(t,{generateQueryArgsForGrid:()=>a});var r=n(53480);function o(e){return function(e){if(Array.isArray(e))return i(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||function(e,t){if(!e)return;if("string"==typeof e)return i(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return i(e,t)}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function i(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n0){var h=i[0],p=(0,r.encodeColumnIdentifier)(h.id);f={key:p.key,locale:p.locale,direction:h.desc?"DESC":"ASC"}}return{body:{folderId:c,columns:u.map((function(e){return{config:[],key:e.key,type:e.type,locale:e.locale}})),filters:Object.assign(Object.assign({page:a,pageSize:parseInt(s.toString())},l),{sortFilter:f})}}}},42938:(e,t,n)=>{"use strict";n.r(t),n.d(t,{getFormattedDropDownMenu:()=>u,useListColumns:()=>d,useListData:()=>b,useListFilterOptions:()=>f,useListGridAvailableColumns:()=>h,useListGridConfig:()=>p,useListPage:()=>m,useListPageSize:()=>g,useListSelectedRows:()=>y,useListSorting:()=>v});var r=n(36198),o=n(30089),i=n(36609),a=n(20079),s=n(29741);function l(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return c(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return c(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function c(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";n.r(t),n.d(t,{ListContainerInner:()=>E});var r=n(93477),o=n(36198),i=n(53480),a=n(46424),s=n(43741),l=n(49676),c=n(42938),u=n(7496),d=n(30089),f=n(13438),h=n(82755),p=n(10365),m=n(93882),g=n(92727);function y(e){return y="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},y(e)}function v(e){return function(e){if(Array.isArray(e))return x(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||S(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function b(){b=function(){return t};var e,t={},n=Object.prototype,r=n.hasOwnProperty,o=Object.defineProperty||function(e,t,n){e[t]=n.value},i="function"==typeof Symbol?Symbol:{},a=i.iterator||"@@iterator",s=i.asyncIterator||"@@asyncIterator",l=i.toStringTag||"@@toStringTag";function c(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{c({},"")}catch(e){c=function(e,t,n){return e[t]=n}}function u(e,t,n,r){var i=t&&t.prototype instanceof v?t:v,a=Object.create(i.prototype),s=new R(r||[]);return o(a,"_invoke",{value:_(e,n,s)}),a}function d(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}t.wrap=u;var f="suspendedStart",h="suspendedYield",p="executing",m="completed",g={};function v(){}function O(){}function w(){}var S={};c(S,a,(function(){return this}));var x=Object.getPrototypeOf,E=x&&x(x(D([])));E&&E!==n&&r.call(E,a)&&(S=E);var T=w.prototype=v.prototype=Object.create(S);function C(e){["next","throw","return"].forEach((function(t){c(e,t,(function(e){return this._invoke(t,e)}))}))}function P(e,t){function n(o,i,a,s){var l=d(e[o],e,i);if("throw"!==l.type){var c=l.arg,u=c.value;return u&&"object"==y(u)&&r.call(u,"__await")?t.resolve(u.__await).then((function(e){n("next",e,a,s)}),(function(e){n("throw",e,a,s)})):t.resolve(u).then((function(e){c.value=e,a(c)}),(function(e){return n("throw",e,a,s)}))}s(l.arg)}var i;o(this,"_invoke",{value:function(e,r){function o(){return new t((function(t,o){n(e,r,t,o)}))}return i=i?i.then(o,o):o()}})}function _(t,n,r){var o=f;return function(i,a){if(o===p)throw Error("Generator is already running");if(o===m){if("throw"===i)throw a;return{value:e,done:!0}}for(r.method=i,r.arg=a;;){var s=r.delegate;if(s){var l=k(s,r);if(l){if(l===g)continue;return l}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if(o===f)throw o=m,r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);o=p;var c=d(t,n,r);if("normal"===c.type){if(o=r.done?m:h,c.arg===g)continue;return{value:c.arg,done:r.done}}"throw"===c.type&&(o=m,r.method="throw",r.arg=c.arg)}}}function k(t,n){var r=n.method,o=t.iterator[r];if(o===e)return n.delegate=null,"throw"===r&&t.iterator.return&&(n.method="return",n.arg=e,k(t,n),"throw"===n.method)||"return"!==r&&(n.method="throw",n.arg=new TypeError("The iterator does not provide a '"+r+"' method")),g;var i=d(o,t.iterator,n.arg);if("throw"===i.type)return n.method="throw",n.arg=i.arg,n.delegate=null,g;var a=i.arg;return a?a.done?(n[t.resultName]=a.value,n.next=t.nextLoc,"return"!==n.method&&(n.method="next",n.arg=e),n.delegate=null,g):a:(n.method="throw",n.arg=new TypeError("iterator result is not an object"),n.delegate=null,g)}function j(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function A(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function R(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(j,this),this.reset(!0)}function D(t){if(t||""===t){var n=t[a];if(n)return n.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var o=-1,i=function n(){for(;++o=0;--i){var a=this.tryEntries[i],s=a.completion;if("root"===a.tryLoc)return o("end");if(a.tryLoc<=this.prev){var l=r.call(a,"catchLoc"),c=r.call(a,"finallyLoc");if(l&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),A(n),g}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;A(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),g}},t}function O(e,t,n,r,o,i,a){try{var s=e[i](a),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(r,o)}function w(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||S(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function S(e,t){if(e){if("string"==typeof e)return x(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?x(e,t):void 0}}function x(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n0&&void 0!==arguments[0]?arguments[0]:void 0;U((function(t){return M((function(n){var r,o=null!=e?e:n,i=null==o?void 0:o.items.map((function(e){var n,r=null===(n=e.columns.find((function(e){return"id"===e.key})))||void 0===n?void 0:n.value;if(!t.some((function(e){return e.rowIndex===r})))return e;var o=e.columns.map((function(e){var n=t.find((function(t){return t.rowIndex===r&&t.columnId===e.key&&t.locale===e.locale}));return void 0===n?e:Object.assign(Object.assign({},e),{value:n.value})}));return Object.assign(Object.assign({},e),{columns:o})}));return{items:null!=i?i:[],totalItems:null!==(r=null==o?void 0:o.totalItems)&&void 0!==r?r:0}})),t}))},Z=function(){if(0!==P.length){var e=(0,m.generateQueryArgsForGrid)({columns:P,availableColumns:A,assetId:D,page:y,pageSize:S,sorting:W,filterOptions:T});return $(Object.assign({},e)).then((function(e){var t=e.data;H(t)})).catch((function(e){console.error(e)}))}},Y=function(e){var t=e.value,n=e.columnId,r=e.rowData,o=(0,i.encodeColumnIdentifier)(n),a=P.find((function(e){return e.key===o.key&&e.locale===o.locale}));if(void 0!==a){if(U((function(e){return[].concat(v(e),[{columnId:o.key,locale:o.locale,rowIndex:r.id,value:t}])})),V((function(e){return[].concat(v(null!=e?e:[]),[{columnId:n,rowIndex:r.id}])})),H(),"metadata"!==a.type.split(".")[0])throw new Error("Only metadata columns are supported for now");var s={body:{data:[{id:r.id,metadata:[{name:o.key,language:o.locale,data:t}]}]}};F(s).catch((function(e){console.error(e)})).then((function(){var e;null===(e=Z())||void 0===e||e.finally((function(){V((function(e){return null==e?void 0:e.filter((function(e){return!(e.columnId===n&&e.rowIndex===r.id)}))})),U((function(e){return e.filter((function(e){return!(e.columnId===o.key&&a.locale===o.locale&&e.rowIndex===r.id)}))}))})).catch((function(e){console.error(e)}))})).catch((function(e){console.error(e)}))}};return(0,o.useMemo)((function(){var e;return o.createElement(d.ListDataProvider,{data:I},o.createElement(h.Content,{loading:X},o.createElement(f.ContentToolbarSidebarLayout,{renderSidebar:o.createElement(l.SidebarContainer,{errorData:B.error}),renderToolbar:o.createElement(a.GridToolbarContainer,{pager:{current:y,total:null!==(e=null==I?void 0:I.totalItems)&&void 0!==e?e:0,pageSize:S,onChange:x}})},o.createElement(i.GridContainer,{assets:I,modifiedCells:z,onUpdateCellData:Y}))))}),[I,y,S,z,X])}},65895:(e,t,n)=>{"use strict";n.r(t),n.d(t,{ListContainer:()=>s});var r=n(36198),o=n(2314),i=n(30089),a=n(47636),s=function(){return r.createElement(i.ListProvider,null,r.createElement(a.DynamicTypeRegistryProvider,{serviceIds:["DynamicTypes/MetadataRegistry","DynamicTypes/ListingRegistry"]},r.createElement(o.ListContainerInner,null)))}},30089:(e,t,n)=>{"use strict";n.r(t),n.d(t,{ListColumnsContext:()=>g,ListColumnsProvider:()=>y,ListDataContext:()=>k,ListDataProvider:()=>j,ListFilterOptionsContext:()=>b,ListFilterOptionsProvider:()=>O,ListGridAvailableColumnsContext:()=>p,ListGridAvailableColumnsProvider:()=>m,ListGridConfigContext:()=>f,ListGridConfigProvider:()=>h,ListPageContext:()=>w,ListPageProvider:()=>S,ListPageSizeContext:()=>x,ListPageSizeProvider:()=>E,ListProvider:()=>A,ListSelectedRowsContext:()=>T,ListSelectedRowsProvider:()=>C,ListSortingContext:()=>P,ListSortingProvider:()=>_});var r=n(36198),o=n(51512),i=n(79342);function a(e){return a="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},a(e)}function s(e){return function(e){if(Array.isArray(e))return d(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||u(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function l(e,t,n){var r;return r=function(e,t){if("object"!=a(e)||!e)return e;var n=e[Symbol.toPrimitive];if(void 0!==n){var r=n.call(e,t||"default");if("object"!=a(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"),(t="symbol"==a(r)?r:r+"")in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function c(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||u(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function u(e,t){if(e){if("string"==typeof e)return d(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?d(e,t):void 0}}function d(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";n.r(t),n.d(t,{FieldFiltersContainer:()=>p});var r=n(36198),o=n(42938),i=n(1447),a=n(28518),s=n(30811),l=n(62833),c=n(99405),u=n(50906),d=n(41642),f=n(79342),h=["size"],p=function(){var e,t=(0,s.useTranslation)().t,n=(0,o.useListGridAvailableColumns)().dropDownMenu,p=(0,u.useFilters)(),m=p.columns,g=p.addColumn,y=(0,i.useDynamicTypeResolver)().hasType,v=(e=Object.assign({},n),Object.keys(e).forEach((function(t){e[t]=e[t].filter((function(e){var t=y({target:"FIELD_FILTER",dynamicTypeIds:[e.frontendType]}),n=h.includes(e.key);return t&&!n}))})),e);return r.createElement(a.Space,{direction:"vertical",style:{width:"100%"}},r.createElement(c.FieldFiltersListContainer,{columns:m}),!(0,f.isEmptyValue)(v)&&r.createElement(d.Dropdown,{menu:{items:(0,o.getFormattedDropDownMenu)(v,(function(e){g(e)}))}},r.createElement(l.IconTextButton,{icon:{value:"PlusCircleOutlined"},type:"link"},t("listing.add-column"))))}},99405:(e,t,n)=>{"use strict";n.r(t),n.d(t,{FieldFiltersListContainer:()=>u});var r=n(36198),o=n(97370),i=n(28518),a=n(54512),s=n(27027),l=n(58089),c=n(50906),u=function(e){var t=e.columns,n=(0,c.useFilters)(),u=n.removeFieldFilter,d=n.removeColumn,f=t.map((function(e){return{id:e.key,children:r.createElement(i.Tag,null,e.key),renderRightToolbar:r.createElement(a.ButtonGroup,{items:[r.createElement(s.IconButton,{icon:{value:"close"},key:"remove",onClick:function(){!function(e){d(e),u(e)}(e)}})]}),body:r.createElement(l.DefaultFilter,{column:e})}}));return r.createElement(r.Fragment,null,0===f.length&&r.createElement(i.Empty,{image:i.Empty.PRESENTED_IMAGE_SIMPLE}),f.length>0&&r.createElement(o.StackList,{items:f}))}},58089:(e,t,n)=>{"use strict";n.r(t),n.d(t,{DefaultFilter:()=>i});var r=n(36198),o=n(1447),i=function(e){var t=e.column,n=t.frontendType,i=t.type,a=(0,(0,o.useDynamicTypeResolver)().getComponentRenderer)({target:"FIELD_FILTER",dynamicTypeIds:[i,n]}).ComponentRenderer;return null===a?r.createElement(r.Fragment,null,"Dynamic Field Filter not supported"):r.createElement(r.Fragment,null,a({column:t}))}},35989:(e,t,n)=>{"use strict";n.r(t),n.d(t,{FilterContainerInner:()=>C});var r=n(62833),o=n(48324),i=n(28518),a=n(71816),s=n(47259),l=n(99401),c=n(86434),u=n(14278),d=n(13862),f=n(36198),h=n(79147),p=n(50906),m=n(64981),g=n(73316),y=n(14112),v=n(42938),b=n(13438),O=n(72475),w=n(82755),S=n(51512),x=n(79342);function E(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return T(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return T(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function T(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";n.r(t),n.d(t,{FilterContainer:()=>l});var r=n(36198),o=n(35989),i=n(92429),a=n(29741),s=n(47636),l=function(e){var t=e.errorData;return r.createElement(i.FilterProvider,{errorData:t},r.createElement(s.DynamicTypeRegistryProvider,{serviceIds:["DynamicTypes/ListingRegistry"]},r.createElement(s.DynamicTypeRegistryProvider,{serviceIds:["DynamicTypes/FieldFilterRegistry"]},r.createElement(a.GridConfigProvider,null,r.createElement(o.FilterContainerInner,null)))))}},92429:(e,t,n)=>{"use strict";n.r(t),n.d(t,{FilterContext:()=>s,FilterProvider:()=>l});var r=n(36198),o=n(51512);function i(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return a(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return a(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function a(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";n.r(t),n.d(t,{useFilters:()=>d});var r=n(36198),o=n(92429),i=n(51512),a=n(63295),s=n(79342);function l(e){return function(e){if(Array.isArray(e))return c(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||function(e,t){if(!e)return;if("string"==typeof e)return c(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return c(e,t)}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function c(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";n.r(t),n.d(t,{useIncludeDescendantsFilter:()=>s});var r=n(36198),o=n(50906);function i(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return a(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return a(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function a(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";n.r(t),n.d(t,{usePQLQueryFilter:()=>l});var r=n(36198),o=n(50906),i=n(57987);function a(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return s(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return s(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function s(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";n.r(t),n.d(t,{useSearchFilter:()=>l});var r=n(36198),o=n(50906),i=n(57987);function a(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return s(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return s(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function s(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";n.r(t),n.d(t,{SaveForm:()=>f,defaultValues:()=>d});var r=n(40069),o=n(28518),i=n(79195),a=n(86434),s=n(36198),l=n(99401);function c(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return u(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return u(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function u(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";n.r(t),n.d(t,{GridConfigInner:()=>p});var r=n(36198),o=n(42938),i=n(63295),a=n(93477),s=n(14465),l=n(96673),c=n(33161),u=n(47974),d=n(76553);function f(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return h(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return h(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function h(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";n.r(t),n.d(t,{GridConfigList:()=>m});var r=n(36198),o=n(97370),i=n(28518),a=n(27027),s=n(68034),l=n(63295),c=n(30811),u=n(40069),d=n(95987),f=n(86536);function h(e){return function(e){if(Array.isArray(e))return p(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||function(e,t){if(!e)return;if("string"==typeof e)return p(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return p(e,t)}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function p(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n0&&r.createElement(o.StackList,{items:g,onItemsChange:function(e){var t=e.map((function(e){return e.meta}));n(t)}}));function y(e,t){var o;if(!t.localizable)return r.createElement(r.Fragment,null);var i=["-"].concat(h(p.requiredLanguages));return r.createElement(s.LanguageSelection,{languages:i,onSelectLanguage:function(t){!function(e,t,r){var o=g.map((function(t){return t.id===e?Object.assign(Object.assign({},t),{meta:Object.assign(Object.assign({},t.meta),{locale:(0,s.transformLanguage)(r)})}):t})),i=o.map((function(e){return e.meta}));n(i)}(e,0,t)},selectedLanguage:null!==(o=t.locale)&&void 0!==o?o:"-"})}}},29741:(e,t,n)=>{"use strict";n.r(t),n.d(t,{GridConfigContext:()=>a,GridConfigProvider:()=>s});var r=n(36198);function o(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return i(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return i(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function i(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";n.r(t),n.d(t,{GridConfig:()=>a});var r=n(36198),o=n(29741),i=n(18741),a=function(){return r.createElement(o.GridConfigProvider,null,r.createElement(i.GridConfigInner,null))}},63295:(e,t,n)=>{"use strict";n.r(t),n.d(t,{useGridConfig:()=>s});var r=n(36198),o=n(29741);function i(e){return function(e){if(Array.isArray(e))return a(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||function(e,t){if(!e)return;if("string"==typeof e)return a(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return a(e,t)}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function a(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";n.r(t),n.d(t,{EditView:()=>g});var r=n(71816),o=n(13438),i=n(82755),a=n(41161),s=n(40069),l=n(72475),c=n(41642),u=n(36198),d=n(30811),f=n(28518),h=n(62833),p=n(82864),m=n(79342),g=function(e){var t=e.onCancelClick,n=e.onApplyClick,g=e.onSaveConfigurationClick,y=e.savedGridConfigurations,v=e.addColumnMenu,b=e.isLoading,O=e.columns,w=(0,d.useTranslation)().t;return u.createElement(o.ContentToolbarSidebarLayout,{renderToolbar:u.createElement(l.Toolbar,{theme:"secondary"},u.createElement(r.Button,{onClick:t,type:"default"},w("button.cancel")),u.createElement(s.Space,{size:"extra-small"},u.createElement(r.Button,{onClick:g,type:"default"},"Save as template"),u.createElement(r.Button,{onClick:n,type:"primary"},w("button.apply"))))},u.createElement(i.Content,{padded:!0},u.createElement(a.Header,{title:w("listing.grid-config.title")},u.createElement(c.Dropdown,{disabled:0===(null==y?void 0:y.length)&&!b,menu:{items:y}},u.createElement(f.Tooltip,{title:0!==(null==y?void 0:y.length)||b?"":"No saved templates available"},u.createElement(h.IconTextButton,{disabled:0===(null==y?void 0:y.length)&&!b,icon:{value:"magic-wand-01"},loading:b},"Templates")))),u.createElement(s.Space,{direction:"vertical",style:{width:"100%"}},u.createElement(p.GridConfigList,{columns:O}),!(0,m.isEmptyValue)(v)&&u.createElement(c.Dropdown,{menu:{items:v}},u.createElement(h.IconTextButton,{icon:{value:"PlusCircleOutlined"},type:"link"},w("listing.add-column"))))))}},33161:(e,t,n)=>{"use strict";n.r(t),n.d(t,{SaveView:()=>p});var r=n(36198),o=n(76553),i=n(13438),a=n(82755),s=n(72475),l=n(40069),c=n(71816),u=n(62833),d=n(41161),f=n(28518),h=n(99401),p=function(e){var t=e.formProps,n=e.onCancelClick,p=e.isLoading,m=t.form;return r.createElement(i.ContentToolbarSidebarLayout,{renderToolbar:r.createElement(s.Toolbar,{justify:"flex-end",theme:"secondary"},r.createElement(l.Space,{size:"mini"},r.createElement(u.IconTextButton,{icon:{value:"close"},onClick:n,type:"default"},"Cancel"),r.createElement(c.Button,{loading:p,onClick:function(){return null==m?void 0:m.submit()},type:"primary"},"Save & Apply")))},r.createElement(a.Content,{padded:!0},r.createElement(f.Flex,{gap:"small",vertical:!0},r.createElement(d.Header,{title:"Save configuration as template"}),r.createElement(f.Row,null,r.createElement(f.Col,{span:6},r.createElement(h.Text,null,"Owner:")," ",r.createElement(h.Text,{type:"secondary"},"Admin")),r.createElement(f.Col,{span:12},r.createElement(h.Text,null,"Modification date:")," ",r.createElement(h.Text,{type:"secondary"},"22.10.2024 10:11"))),r.createElement(o.SaveForm,Object.assign({},t)))))}},49676:(e,t,n)=>{"use strict";n.r(t),n.d(t,{SidebarContainer:()=>c});var r=n(36198),o=n(70607),i=n(54663),a=n(61016),s=n(85197),l=n(63446),c=function(e){var t=e.errorData,n=(0,r.useMemo)((function(){return[{key:"filter",component:r.createElement(l.FilterContainer,{errorData:t}),icon:r.createElement(i.Icon,{value:"filter-outlined"})},{key:"tags",component:r.createElement(s.TagFiltersContainer,null),icon:r.createElement(i.Icon,{value:"tag-two-tone"})},{key:"grid-config",component:r.createElement(a.GridConfig,null),icon:r.createElement(i.Icon,{value:"settings-outlined"})}]}),[t]);return(0,r.useMemo)((function(){return r.createElement(o.Sidebar,{entries:n,sizing:"large"})}),[n,t])}},12645:(e,t,n)=>{"use strict";n.r(t),n.d(t,{useTagFilters:()=>s});var r=n(36198),o=n(87053),i=n(51512),a=n(57987),s=function(){var e=(0,r.useContext)(o.TagFiltersContext),t=e.filterOptions,n=e.setFilterOptions;return{filterOptions:t,setFilterOptions:n,addOrUpdateFieldFilter:function(e){n((function(t){return Object.assign(Object.assign({},t),{columnFilters:[{type:a.FILTER_TYPE.TAG_TYPE,filterValue:{considerChildTags:!0,tags:e}}]})}))},resetFilters:function(){n(i.defaultTagFilterOptions)}}}},35513:(e,t,n)=>{"use strict";n.r(t),n.d(t,{TagFiltersContainerInner:()=>m});var r=n(36198),o=n(48324),i=n(62833),a=n(71816),s=n(13438),l=n(72475),c=n(82755),u=n(81929),d=n(12645),f=n(42938);function h(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return p(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return p(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function p(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";n.r(t),n.d(t,{TagFiltersContainer:()=>a});var r=n(36198),o=n(35513),i=n(87053),a=function(){return r.createElement(i.TagFiltersProvider,null,r.createElement(o.TagFiltersContainerInner,null))}},87053:(e,t,n)=>{"use strict";n.r(t),n.d(t,{TagFiltersContext:()=>s,TagFiltersProvider:()=>l});var r=n(36198),o=n(51512);function i(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return a(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return a(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function a(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";n.r(t),n.d(t,{TagsTreeFiltersContainer:()=>c});var r=n(1402),o=n(36198),i=n(82755),a=n(47259),s=n(72726),l=n(16067),c=function(e){var t=e.addOrUpdateFieldFilter,n=e.checkedKeys,c=e.setCheckedKeys,u=(0,r.useTagGetCollectionQuery)({page:1,pageSize:9999}),d=u.data,f=u.isLoading,h=(0,l.useCreateTreeStructure)().createTreeStructure;if(f)return o.createElement(i.Content,{loading:!0});if(void 0===(null==d?void 0:d.items))return o.createElement("div",null,"Failed to load tags");var p=h({tags:d.items});return o.createElement(o.Fragment,null,o.createElement(a.Flex,{gap:"small",vertical:!0},o.createElement(s.TreeElement,{checkStrictly:!0,checkedKeys:{checked:n,halfChecked:[]},defaultExpandedKeys:["root"],onCheck:function(e){var n=e.checked,r=null==n?void 0:n.map(Number);c(n),t(r)},treeData:p,withCustomSwitcherIcon:!0})))}},46424:(e,t,n)=>{"use strict";n.r(t),n.d(t,{GridToolbarContainer:()=>l});var r=n(36198),o=n(46610),i=n(38549),a=n(30811),s=n(55260),l=function(e){var t=e.pager,n=(0,a.useTranslation)().t;return r.createElement(o.GridToolbarView,{renderPagination:void 0!==t&&t.total>0?r.createElement(i.Pagination,{current:t.current,defaultPageSize:t.pageSize,onChange:t.onChange,pageSizeOptions:["10","20","50","100"],showSizeChanger:!0,showTotal:function(e){return n("pagination.show-total",{total:e})},total:t.total}):void 0,renderTools:r.createElement(s.GridTools,null)})}},46610:(e,t,n)=>{"use strict";n.r(t),n.d(t,{GridToolbarView:()=>i});var r=n(36198),o=n(72475),i=function(e){return r.createElement(o.Toolbar,{theme:"secondary"},void 0!==e.renderTools&&r.createElement(r.Fragment,null,e.renderTools),void 0===e.renderTools&&r.createElement("div",null),void 0!==e.renderPagination&&r.createElement(r.Fragment,null,e.renderPagination))}},92216:(e,t,n)=>{"use strict";n.r(t),n.d(t,{BatchEditListContainer:()=>g});var r=n(36198),o=n(42592),i=n(28518),a=n(97370),s=n(54512),l=n(27027),c=n(28688),u=n(32859),d=n(36609),f=n(68034),h=n(95987);function p(e){return function(e){if(Array.isArray(e))return m(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||function(e,t){if(!e)return;if("string"==typeof e)return m(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return m(e,t)}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function m(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n0&&r.createElement(a.StackList,{items:v}))}},11970:(e,t,n)=>{"use strict";n.r(t),n.d(t,{BatchEditModal:()=>_});var r=n(36198),o=n(16826),i=n(41642),a=n(42938),s=n(62833),l=n(71816),c=n(36609),u=n(42592),d=n(92216),f=n(14369),h=n(55381),p=n(51074),m=n(20728),g=n(21970),y=n(47259),v=n(31090),b=n(10365),O=n(43741);function w(e){return w="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},w(e)}function S(){S=function(){return t};var e,t={},n=Object.prototype,r=n.hasOwnProperty,o=Object.defineProperty||function(e,t,n){e[t]=n.value},i="function"==typeof Symbol?Symbol:{},a=i.iterator||"@@iterator",s=i.asyncIterator||"@@asyncIterator",l=i.toStringTag||"@@toStringTag";function c(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{c({},"")}catch(e){c=function(e,t,n){return e[t]=n}}function u(e,t,n,r){var i=t&&t.prototype instanceof y?t:y,a=Object.create(i.prototype),s=new R(r||[]);return o(a,"_invoke",{value:_(e,n,s)}),a}function d(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}t.wrap=u;var f="suspendedStart",h="suspendedYield",p="executing",m="completed",g={};function y(){}function v(){}function b(){}var O={};c(O,a,(function(){return this}));var x=Object.getPrototypeOf,E=x&&x(x(D([])));E&&E!==n&&r.call(E,a)&&(O=E);var T=b.prototype=y.prototype=Object.create(O);function C(e){["next","throw","return"].forEach((function(t){c(e,t,(function(e){return this._invoke(t,e)}))}))}function P(e,t){function n(o,i,a,s){var l=d(e[o],e,i);if("throw"!==l.type){var c=l.arg,u=c.value;return u&&"object"==w(u)&&r.call(u,"__await")?t.resolve(u.__await).then((function(e){n("next",e,a,s)}),(function(e){n("throw",e,a,s)})):t.resolve(u).then((function(e){c.value=e,a(c)}),(function(e){return n("throw",e,a,s)}))}s(l.arg)}var i;o(this,"_invoke",{value:function(e,r){function o(){return new t((function(t,o){n(e,r,t,o)}))}return i=i?i.then(o,o):o()}})}function _(t,n,r){var o=f;return function(i,a){if(o===p)throw Error("Generator is already running");if(o===m){if("throw"===i)throw a;return{value:e,done:!0}}for(r.method=i,r.arg=a;;){var s=r.delegate;if(s){var l=k(s,r);if(l){if(l===g)continue;return l}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if(o===f)throw o=m,r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);o=p;var c=d(t,n,r);if("normal"===c.type){if(o=r.done?m:h,c.arg===g)continue;return{value:c.arg,done:r.done}}"throw"===c.type&&(o=m,r.method="throw",r.arg=c.arg)}}}function k(t,n){var r=n.method,o=t.iterator[r];if(o===e)return n.delegate=null,"throw"===r&&t.iterator.return&&(n.method="return",n.arg=e,k(t,n),"throw"===n.method)||"return"!==r&&(n.method="throw",n.arg=new TypeError("The iterator does not provide a '"+r+"' method")),g;var i=d(o,t.iterator,n.arg);if("throw"===i.type)return n.method="throw",n.arg=i.arg,n.delegate=null,g;var a=i.arg;return a?a.done?(n[t.resultName]=a.value,n.next=t.nextLoc,"return"!==n.method&&(n.method="next",n.arg=e),n.delegate=null,g):a:(n.method="throw",n.arg=new TypeError("iterator result is not an object"),n.delegate=null,g)}function j(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function A(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function R(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(j,this),this.reset(!0)}function D(t){if(t||""===t){var n=t[a];if(n)return n.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var o=-1,i=function n(){for(;++o=0;--i){var a=this.tryEntries[i],s=a.completion;if("root"===a.tryLoc)return o("end");if(a.tryLoc<=this.prev){var l=r.call(a,"catchLoc"),c=r.call(a,"finallyLoc");if(l&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),A(n),g}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;A(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),g}},t}function x(e,t,n,r,o,i,a){try{var s=e[i](a),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(r,o)}function E(e){return function(e){if(Array.isArray(e))return P(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||C(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function T(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||C(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function C(e,t){if(e){if("string"==typeof e)return P(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?P(e,t):void 0}}function P(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n0&&r.createElement(y.Flex,{align:"center",gap:"extra-small"},r.createElement(s.IconTextButton,{icon:{value:"close"},onClick:function(){A()},type:"link"},(0,c.t)("batch-edit.modal-footer.discard-all-changes")),r.createElement(l.Button,{onClick:function(){1===Object.keys(L).length?$():B()},type:"primary"},(0,c.t)("batch-edit.modal-footer.apply-changes")))),onCancel:function(){n(!1)},open:t,size:"M",title:r.createElement(v.ModalTitle,null,(0,c.t)("batch-edit.modal-title"))},r.createElement(d.BatchEditListContainer,null))}},20079:(e,t,n)=>{"use strict";n.r(t),n.d(t,{BatchEditContext:()=>a,BatchEditProvider:()=>s});var r=n(36198);function o(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return i(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return i(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function i(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";n.r(t),n.d(t,{DefaultBatchEdit:()=>l});var r=n(36198),o=n(28518),i=n(42592);function a(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return s(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return s(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function s(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";n.r(t),n.d(t,{useBatchEdit:()=>l});var r=n(36198),o=n(20079),i=n(42938);function a(e){return function(e){if(Array.isArray(e))return s(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||function(e,t){if(!e)return;if("string"==typeof e)return s(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return s(e,t)}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function s(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";n.r(t),n.d(t,{CreateCSVForm:()=>c});var r=n(36198),o=n(30811),i=n(28518),a=n(79195),s=n(58664),l=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&t.indexOf(r)<0&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var o=0;for(r=Object.getOwnPropertySymbols(e);o{"use strict";n.r(t),n.d(t,{CsvModal:()=>E});var r=n(28518),o=n(36198),i=n(7470),a=n(47974),s=n(51074),l=n(20807),c=n(14465),u=n(93477),d=n(21970),f=n(42938),h=n(31090),p=n(30811),m=n(7056);function g(e){return g="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},g(e)}function y(){y=function(){return t};var e,t={},n=Object.prototype,r=n.hasOwnProperty,o=Object.defineProperty||function(e,t,n){e[t]=n.value},i="function"==typeof Symbol?Symbol:{},a=i.iterator||"@@iterator",s=i.asyncIterator||"@@asyncIterator",l=i.toStringTag||"@@toStringTag";function c(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{c({},"")}catch(e){c=function(e,t,n){return e[t]=n}}function u(e,t,n,r){var i=t&&t.prototype instanceof b?t:b,a=Object.create(i.prototype),s=new R(r||[]);return o(a,"_invoke",{value:_(e,n,s)}),a}function d(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}t.wrap=u;var f="suspendedStart",h="suspendedYield",p="executing",m="completed",v={};function b(){}function O(){}function w(){}var S={};c(S,a,(function(){return this}));var x=Object.getPrototypeOf,E=x&&x(x(D([])));E&&E!==n&&r.call(E,a)&&(S=E);var T=w.prototype=b.prototype=Object.create(S);function C(e){["next","throw","return"].forEach((function(t){c(e,t,(function(e){return this._invoke(t,e)}))}))}function P(e,t){function n(o,i,a,s){var l=d(e[o],e,i);if("throw"!==l.type){var c=l.arg,u=c.value;return u&&"object"==g(u)&&r.call(u,"__await")?t.resolve(u.__await).then((function(e){n("next",e,a,s)}),(function(e){n("throw",e,a,s)})):t.resolve(u).then((function(e){c.value=e,a(c)}),(function(e){return n("throw",e,a,s)}))}s(l.arg)}var i;o(this,"_invoke",{value:function(e,r){function o(){return new t((function(t,o){n(e,r,t,o)}))}return i=i?i.then(o,o):o()}})}function _(t,n,r){var o=f;return function(i,a){if(o===p)throw Error("Generator is already running");if(o===m){if("throw"===i)throw a;return{value:e,done:!0}}for(r.method=i,r.arg=a;;){var s=r.delegate;if(s){var l=k(s,r);if(l){if(l===v)continue;return l}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if(o===f)throw o=m,r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);o=p;var c=d(t,n,r);if("normal"===c.type){if(o=r.done?m:h,c.arg===v)continue;return{value:c.arg,done:r.done}}"throw"===c.type&&(o=m,r.method="throw",r.arg=c.arg)}}}function k(t,n){var r=n.method,o=t.iterator[r];if(o===e)return n.delegate=null,"throw"===r&&t.iterator.return&&(n.method="return",n.arg=e,k(t,n),"throw"===n.method)||"return"!==r&&(n.method="throw",n.arg=new TypeError("The iterator does not provide a '"+r+"' method")),v;var i=d(o,t.iterator,n.arg);if("throw"===i.type)return n.method="throw",n.arg=i.arg,n.delegate=null,v;var a=i.arg;return a?a.done?(n[t.resultName]=a.value,n.next=t.nextLoc,"return"!==n.method&&(n.method="next",n.arg=e),n.delegate=null,v):a:(n.method="throw",n.arg=new TypeError("iterator result is not an object"),n.delegate=null,v)}function j(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function A(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function R(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(j,this),this.reset(!0)}function D(t){if(t||""===t){var n=t[a];if(n)return n.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var o=-1,i=function n(){for(;++o=0;--i){var a=this.tryEntries[i],s=a.completion;if("root"===a.tryLoc)return o("end");if(a.tryLoc<=this.prev){var l=r.call(a,"catchLoc"),c=r.call(a,"finallyLoc");if(l&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),A(n),v}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;A(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),v}},t}function v(e,t,n,r,o,i,a){try{var s=e[i](a),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(r,o)}function b(e){return function(){var t=this,n=arguments;return new Promise((function(r,o){var i=e.apply(t,n);function a(e){v(i,r,o,a,s,"next",e)}function s(e){v(i,r,o,a,s,"throw",e)}a(void 0)}))}}function O(e){return function(e){if(Array.isArray(e))return x(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||S(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function w(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||S(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function S(e,t){if(e){if("string"==typeof e)return x(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?x(e,t):void 0}}function x(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";n.r(t),n.d(t,{GridActions:()=>y});var r=n(48665),o=n(36198),i=n(54663),a=n(42938),s=n(93477),l=n(14465),c=n(87492),u=n(30811),d=n(41642),f=n(20079),h=n(11970),p=n(42029);function m(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return g(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return g(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function g(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n0,g=(0,p.useZipDownload)({type:"folder"}).createZipDownload,y=(0,p.useZipDownload)({type:"asset-list"}).createZipDownload,v=(0,l.useAsset)().id,b=(0,s.useAssetGetByIdQuery)({id:v}).data,O=m((0,o.useState)("Asset"),2),w=O[0],S=O[1],x=m((0,o.useState)(!1),2),E=x[0],T=x[1],C=m((0,o.useState)(!1),2),P=C[0],_=C[1],k=(0,u.useTranslation)().t;(0,o.useEffect)((function(){void 0!==b&&S("".concat(b.filename))}),[b]);var j={items:[{key:"1",label:k("listing.actions.batch-edit"),icon:o.createElement(i.Icon,{value:"grid"}),onClick:function(){_(!0)}},{key:"2",label:k("listing.actions.export"),icon:o.createElement(i.Icon,{value:"export"}),children:[{key:"2.1",label:k("listing.actions.csv-export"),icon:o.createElement(i.Icon,{value:"export"}),onClick:function(){T(!0)}}]},{key:"3",label:k("listing.actions.zip-download"),icon:o.createElement(i.Icon,{value:"download-02"}),onClick:function(){n?y({jobTitle:w,requestData:{body:{assets:t}}}):g({jobTitle:w,requestData:{body:{folders:[v]}}})}}]};return o.createElement(o.Fragment,null,o.createElement(d.Dropdown,{menu:j},o.createElement(r.DropdownButton,{key:"dropdown-button"},k(n?"listing.actions":"listing.non-selected.actions"))),o.createElement(c.CsvModal,{open:E,setOpen:T}),o.createElement(f.BatchEditProvider,null,o.createElement(h.BatchEditModal,{batchEditModalOpen:P,setBatchEditModalOpen:_})))}},12188:(e,t,n)=>{"use strict";n.r(t),n.d(t,{GridSelections:()=>a});var r=n(36198),o=n(42938),i=n(28518),a=function(){var e=(0,o.useListSelectedRows)(),t=e.selectedRows,n=e.setSelectedRows,a=Object.keys(t).length,s=(0,o.useListData)().data,l=a>0,c=!1;return void 0!==s&&(c=a===s.items.length&&s.items.length>0),r.createElement(i.Checkbox,{checked:c,indeterminate:l&&!c,onClick:function(e){if(e.stopPropagation(),void 0===s)return;if(c)return void n({});var t={};s.items.forEach((function(e){var n,r=null===(n=e.columns)||void 0===n?void 0:n.find((function(e){return"id"===e.key}));t[null==r?void 0:r.value]=!0})),n(t)}},a," selected")}},55260:(e,t,n)=>{"use strict";n.r(t),n.d(t,{GridTools:()=>l});var r=n(54512),o=n(36198),i=n(12188),a=n(30326),s=n(42938),l=function(){var e=(0,s.useListData)().data;return o.createElement(o.Fragment,null,void 0!==e&&o.createElement(r.ButtonGroup,{items:[o.createElement(i.GridSelections,{key:"grid-selections"}),o.createElement(a.GridActions,{key:"grid-actions"})],withSeparator:!0}),void 0===e&&o.createElement("div",null))}},19991:(e,t,n)=>{"use strict";n.r(t),n.d(t,{addTagTypes:()=>o,api:()=>i,useMercureCreateCookieMutation:()=>a});var r=n(35525),o=["Mercure"],i=r.api.enhanceEndpoints({addTagTypes:o}).injectEndpoints({endpoints:function(e){return{mercureCreateCookie:e.mutation({query:function(){return{url:"/pimcore-studio/api/mercure/auth",method:"POST"}},invalidatesTags:["Mercure"]})}},overrideExisting:!1}),a=i.useMercureCreateCookieMutation},43599:(e,t,n)=>{"use strict";n.r(t),n.d(t,{FlexContainerView:()=>i});var r=n(47259),o=n(36198),i=function(e){return o.createElement(r.Flex,{gap:"extra-small",wrap:!0},e.renderElements)}},89980:(e,t,n)=>{"use strict";n.r(t),n.d(t,{FlexContainer:()=>c});var r=n(36198),o=n(30811),i=n(43599),a=n(94414),s=n(6786),l=n(54663),c=function(e){var t=e.assets,n=(0,o.useTranslation)().t,c=(0,s.useAssetHelper)().openAsset,u=[{key:"locate-in-tree",icon:r.createElement(l.Icon,{value:"target"}),label:n("preview-card.locate-in-tree")},{key:"info",icon:r.createElement(l.Icon,{value:"info-circle-outlined"}),label:n("info")},{key:"rename",icon:r.createElement(l.Icon,{value:"rich-edit"}),label:n("preview-card.rename")},{key:"download-zip",icon:r.createElement(l.Icon,{value:"download-02"}),label:n("preview-card.download-zip")},{key:"delete",icon:r.createElement(l.Icon,{value:"trash"}),label:n("preview-card.delete")}],d=[];return t.items.forEach((function(e){"imageThumbnailPath"in e&&void 0!==e.imageThumbnailPath&&null!==e.imageThumbnailPath&&d.push(r.createElement(a.PreviewCard,{dropdownItems:u,imgSrc:e.imageThumbnailPath,key:e.id,name:e.filename,onClick:function(t){c({config:{id:e.id}})}}))})),r.createElement(i.FlexContainerView,{renderElements:d})}},89248:(e,t,n)=>{"use strict";n.r(t),n.d(t,{PreviewContainer:()=>h});var r=n(93477),o=n(36198),i=n(46424),a=n(89980),s=n(61008),l=n(43741),c=n(13438),u=n(82755);function d(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return f(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return f(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function f(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n0?{current:f,total:S,pageSize:m,onChange:x}:void 0})},o.createElement(u.Content,{loading:w,padded:!0},void 0!==(null==O?void 0:O.items)&&O.items.length>0&&o.createElement(a.FlexContainer,{assets:O})))}),[f,m,O,w])}},42371:(e,t,n)=>{"use strict";n.r(t);var r=n(36198),o=n(54663),i=n(68610),a=n(77474),s=n(80237),l=n(81690),c=n(54088),u=n(98051),d=n(99954);s.moduleSystem.registerModule({onInit:function(){var e=l.container.get(c.serviceIds["Asset/Editor/ImageTabManager"]);e.register({key:"view",label:"asset.asset-editor-tabs.view",children:r.createElement(a.PreviewContainer,null),icon:r.createElement(o.Icon,{value:"image-05"})}),e.register({key:"edit",label:"asset.asset-editor-tabs.edit",children:r.createElement(i.EditTabContainer,null),icon:r.createElement(o.Icon,{value:"edit"})}),e.register(u.TAB_EMBEDDED_METADATA),e.register(u.TAB_CUSTOM_METADATA),e.register(d.TAB_PROPERTIES),e.register(u.TAB_VERSIONS),e.register(d.TAB_SCHEDULE),e.register(d.TAB_DEPENDENCIES),e.register(d.TAB_NOTES_AND_EVENTS),e.register(d.TAB_TAGS),e.register(d.TAB_WORKFLOW)}})},85630:(e,t,n)=>{"use strict";n.r(t),n.d(t,{ImageTabManager:()=>p});var r=n(62167),o=n(84560);function i(e,t){for(var n=0;n=0;s--)(o=e[s])&&(a=(i<3?o(a):i>3?o(t,n,a):o(t,n))||a);return i>3&&a&&Object.defineProperty(t,n,a),a},h=function(e,t){if("object"===("undefined"==typeof Reflect?"undefined":d(Reflect))&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)},p=function(e){function t(){var e;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),(e=s(this,t)).type="image",e}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&u(e,t)}(t,e),n=t,r&&i(n.prototype,r),o&&i(n,o),Object.defineProperty(n,"prototype",{writable:!1}),n;var n,r,o}(r.TabManager);p=f([(0,o.injectable)(),h("design:paramtypes",[])],p)},68610:(e,t,n)=>{"use strict";n.r(t),n.d(t,{EditTabContainer:()=>a});var r=n(82755),o=n(41161),i=n(36198),a=function(){return i.createElement(r.Content,{padded:!0},i.createElement(o.Header,{title:"Edit"}))}},77474:(e,t,n)=>{"use strict";n.r(t),n.d(t,{PreviewContainer:()=>g,ZoomContext:()=>m});var r=n(36198),o=n(29056),i=n(70607),a=n(3585),s=n(43741),l=n(85424),c=n(13438),u=n(82755),d=n(61008),f=n(65246);function h(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return p(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return p(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function p(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";var r,o,i,a;function s(e,t){return t||(t=e.slice(0)),Object.freeze(Object.defineProperties(e,{raw:{value:Object.freeze(t)}}))}n.r(t),n.d(t,{useStyle:()=>l});var l=(0,n(3562).createStyles)((function(e){e.token;var t=e.css;return{preview:t(r||(r=s(["\n position: relative;\n display: flex;\n justify-content: center;\n align-items: center;\n height: 100%;\n width: 100%;\n max-height: 100%;\n object-fit: contain;\n\n .ant-image {\n display: flex;\n max-height: 100%;\n max-width: 100%;\n }\n\n .ant-image-img {\n object-fit: contain;\n }\n "]))),floatingContainer:t(o||(o=s(["\n position: absolute;\n bottom: 20px;\n width: 100%;\n z-index: 9999;\n "]))),flexContainer:t(i||(i=s(["\n display: flex;\n flex-direction: row;\n justify-content: flex-end;\n padding-left: 15px;\n padding-right: 15px;\n "]))),imageContainer:t(a||(a=s(["\n max-height: 100%;\n "])))}}),{hashPriority:"low"})},29056:(e,t,n)=>{"use strict";n.r(t),n.d(t,{PreviewView:()=>u});var r=n(71590),o=n(36198),i=n(95607),a=n(99915),s=n(77474),l=n(47259),c=n(63863),u=function(e){var t=(0,i.useStyle)().styles,n=e.src,u=o.useContext(s.ZoomContext),d=u.zoom,f=u.setZoom;return o.createElement("div",{className:t.preview},o.createElement(l.Flex,{className:t.imageContainer},o.createElement(c.FocalPoint,null,o.createElement(r.PimcoreImage,{src:n}))),o.createElement("div",{className:t.floatingContainer},o.createElement("div",{className:t.flexContainer},o.createElement(a.ImageZoom,{setZoom:f,zoom:d}))))}},87222:(e,t,n)=>{"use strict";n.r(t),n.d(t,{FocalPointSidebarButton:()=>i});var r=n(36198),o=n(43676),i=function(e){var t=(0,r.useContext)(o.FocalPointContext),n=function(){if(void 0!==t){var e=t.isActive,n=t.setIsActive,r=t.setCoordinates,o=t.containerRef;if(null!==o.current)r({x:.5*o.current.clientWidth,y:.5*o.current.clientHeight}),n(!e)}};return r.createElement("div",{"aria-label":e.key,className:["button",!0===(null==t?void 0:t.isActive)?"button--highlighted":""].join(" "),key:e.key,onClick:n,onKeyDown:n,role:"button",tabIndex:e.index},e.icon)}},3585:(e,t,n)=>{"use strict";n.r(t),n.d(t,{sidebarManager:()=>l});var r=n(61502),o=n(54663),i=n(36198),a=n(54938),s=n(87222),l=new r.AssetEditorSidebarManager;l.registerEntry({key:"details",icon:i.createElement(o.Icon,{options:{width:"16px",height:"16px"},value:"view-details"}),component:i.createElement(a.DetailContainer,null)}),l.registerButton({key:"focal-point",icon:i.createElement(o.Icon,{options:{width:"16px",height:"16px"},value:"focal-point"}),component:i.createElement(s.FocalPointSidebarButton,{icon:i.createElement(o.Icon,{options:{width:"16px",height:"16px"},value:"focal-point"}),key:"focal-point"})})},61502:(e,t,n)=>{"use strict";function r(e){return r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},r(e)}function o(e,t){for(var n=0;nu});var u=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),a(this,t,arguments)}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&c(e,t)}(t,e),n=t,r&&o(n.prototype,r),i&&o(n,i),Object.defineProperty(n,"prototype",{writable:!1}),n;var n,r,i}(n(21044).SidebarManager)},54938:(e,t,n)=>{"use strict";n.r(t),n.d(t,{DetailContainer:()=>p});var r=n(36198),o=n(93477),i=n(43741),a=n(23409),s=n(3701),l=n(72657),c=n(65246);function u(e){return u="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},u(e)}function d(){d=function(){return t};var e,t={},n=Object.prototype,r=n.hasOwnProperty,o=Object.defineProperty||function(e,t,n){e[t]=n.value},i="function"==typeof Symbol?Symbol:{},a=i.iterator||"@@iterator",s=i.asyncIterator||"@@asyncIterator",l=i.toStringTag||"@@toStringTag";function c(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{c({},"")}catch(e){c=function(e,t,n){return e[t]=n}}function f(e,t,n,r){var i=t&&t.prototype instanceof b?t:b,a=Object.create(i.prototype),s=new R(r||[]);return o(a,"_invoke",{value:_(e,n,s)}),a}function h(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}t.wrap=f;var p="suspendedStart",m="suspendedYield",g="executing",y="completed",v={};function b(){}function O(){}function w(){}var S={};c(S,a,(function(){return this}));var x=Object.getPrototypeOf,E=x&&x(x(D([])));E&&E!==n&&r.call(E,a)&&(S=E);var T=w.prototype=b.prototype=Object.create(S);function C(e){["next","throw","return"].forEach((function(t){c(e,t,(function(e){return this._invoke(t,e)}))}))}function P(e,t){function n(o,i,a,s){var l=h(e[o],e,i);if("throw"!==l.type){var c=l.arg,d=c.value;return d&&"object"==u(d)&&r.call(d,"__await")?t.resolve(d.__await).then((function(e){n("next",e,a,s)}),(function(e){n("throw",e,a,s)})):t.resolve(d).then((function(e){c.value=e,a(c)}),(function(e){return n("throw",e,a,s)}))}s(l.arg)}var i;o(this,"_invoke",{value:function(e,r){function o(){return new t((function(t,o){n(e,r,t,o)}))}return i=i?i.then(o,o):o()}})}function _(t,n,r){var o=p;return function(i,a){if(o===g)throw Error("Generator is already running");if(o===y){if("throw"===i)throw a;return{value:e,done:!0}}for(r.method=i,r.arg=a;;){var s=r.delegate;if(s){var l=k(s,r);if(l){if(l===v)continue;return l}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if(o===p)throw o=y,r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);o=g;var c=h(t,n,r);if("normal"===c.type){if(o=r.done?y:m,c.arg===v)continue;return{value:c.arg,done:r.done}}"throw"===c.type&&(o=y,r.method="throw",r.arg=c.arg)}}}function k(t,n){var r=n.method,o=t.iterator[r];if(o===e)return n.delegate=null,"throw"===r&&t.iterator.return&&(n.method="return",n.arg=e,k(t,n),"throw"===n.method)||"return"!==r&&(n.method="throw",n.arg=new TypeError("The iterator does not provide a '"+r+"' method")),v;var i=h(o,t.iterator,n.arg);if("throw"===i.type)return n.method="throw",n.arg=i.arg,n.delegate=null,v;var a=i.arg;return a?a.done?(n[t.resultName]=a.value,n.next=t.nextLoc,"return"!==n.method&&(n.method="next",n.arg=e),n.delegate=null,v):a:(n.method="throw",n.arg=new TypeError("iterator result is not an object"),n.delegate=null,v)}function j(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function A(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function R(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(j,this),this.reset(!0)}function D(t){if(t||""===t){var n=t[a];if(n)return n.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var o=-1,i=function n(){for(;++o=0;--i){var a=this.tryEntries[i],s=a.completion;if("root"===a.tryLoc)return o("end");if(a.tryLoc<=this.prev){var l=r.call(a,"catchLoc"),c=r.call(a,"finallyLoc");if(l&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),A(n),v}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;A(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),v}},t}function f(e,t,n,r,o,i,a){try{var s=e[i](a),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(r,o)}function h(e){return function(){var t=this,n=arguments;return new Promise((function(r,o){var i=e.apply(t,n);function a(e){f(i,r,o,a,s,"next",e)}function s(e){f(i,r,o,a,s,"throw",e)}a(void 0)}))}}var p=function(){var e,t,n,u,f=(0,r.useContext)(i.AssetContext),p=(0,o.useAssetGetByIdQuery)({id:f.id}).data;return r.createElement(a.AssetEditorSidebarDetailsView,{height:null!==(e=p.height)&&void 0!==e?e:0,onClickCustomDownload:(u=h(d().mark((function e(t){return d().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:m(f.id,t);case 1:case"end":return e.stop()}}),e)}))),function(e){return u.apply(this,arguments)}),onClickDownloadByFormat:(n=h(d().mark((function e(t){return d().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:g(f.id,t);case 1:case"end":return e.stop()}}),e)}))),function(e){return n.apply(this,arguments)}),width:null!==(t=p.width)&&void 0!==t?t:0});function m(e,t){var n=t.width,r=t.height,o=t.quality,i=t.dpi,a=t.mode,c=t.format,u=[{key:"mimeType",value:c},{key:"resizeMode",value:a},{key:"dpi",value:i.toString()},{key:"quality",value:o.toString()},{key:"height",value:r.toString()},{key:"width",value:n.toString()}],f=(0,l.buildQueryString)(u,["","-1"]);fetch("http://localhost/pimcore-studio/api/assets/".concat(e,"/image/download/custom?").concat(f)).then(function(){var e=h(d().mark((function e(t){return d().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,t.blob();case 2:return e.abrupt("return",e.sent);case 3:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}()).then((function(e){var t=URL.createObjectURL(e);!function(e,t,n){var r=(0,s.replaceFileEnding)(e,n.toLowerCase());(0,s.saveFileLocal)(r,t)}(p.filename,t,c)})).catch((function(e){console.error(e)}))}function g(e,t){y("original"!==t?"".concat((0,c.getDomainWithPrefix)(),"/assets/").concat(e,"/image/download/format/").concat(t):"".concat((0,c.getDomainWithPrefix)(),"/assets/").concat(e,"/download"),t)}function y(e,t){fetch(e).then(function(){var e=h(d().mark((function e(t){return d().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,t.blob();case 2:return e.abrupt("return",e.sent);case 3:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}()).then((function(e){var n=URL.createObjectURL(e);!function(e,t,n){var r=e;"original"!==n&&(r=(0,s.replaceFileEnding)(e,"jpg"));(0,s.saveFileLocal)(r,t)}(p.filename,n,t)})).catch((function(e){console.error(e)}))}}},23409:(e,t,n)=>{"use strict";n.r(t),n.d(t,{AssetEditorSidebarDetailsView:()=>g});var r=n(36198),o=n(30811),i=n(28518),a=n(58664),s=n(71816),l=n(27027),c=n(82755),u=n(41161),d=n(54688),f=n(32017),h=n(42297);function p(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return m(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return m(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function m(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";var r,o,i;function a(e,t){return t||(t=e.slice(0)),Object.freeze(Object.defineProperties(e,{raw:{value:Object.freeze(t)}}))}n.r(t),n.d(t,{useStyle:()=>s});var s=(0,n(3562).createStyles)((function(e){var t=e.token,n=e.css;return{sidebarContentEntry:n(r||(r=a(["\n .sidebar__content-label {\n color: ",";\n line-height: 20px;\n font-weight: 600;\n margin: 0;\n padding-bottom: ","px;\n \n &:not(:first-of-type) {\n padding-top: ","px;\n }\n }\n "])),t.colorPrimaryActive,t.paddingXS,t.paddingXS),sidebarContentDimensions:n(o||(o=a(["\n display: flex;\n flex-direction: column;\n align-items: flex-start;\n align-self: stretch;\n \n .entry-content__dimensions-label {\n display: flex;\n padding-bottom: ",";\n gap: ","px;\n align-items: center;\n gap: ",";\n align-self: stretch;\n\n p {\n margin: 0\n }\n }\n\n .entry-content__dimensions-content {\n color: ",";\n display: flex;\n padding-bottom: ",";\n gap: ","px;\n align-items: center;\n gap: ",";\n align-self: stretch;\n\n p {\n margin: 0;\n line-height: 22px;\n }\n }\n "])),t.paddingXXS,t.marginMD,t.marginXXS,t.colorTextDescription,t.paddingXXS,t.marginMD,t.marginXXS),sidebarContentDownload:n(i||(i=a(["\n .entry-content__download-content-thumbnail {\n display: flex;\n align-items: center;\n gap: ","px;\n padding-bottom: ","px;\n \n .ant-select {\n flex: 1\n }\n }\n \n .entry-content__download-content-custom {\n .ant-form-item {\n margin-bottom: 0;\n }\n \n .entry-content__download-content-custom__dimensions {\n display: flex;\n gap: ","px;\n padding-bottom: ","px;\n }\n \n .entry-content__download-content-custom__others {\n display: flex;\n gap: ","px;\n flex-direction: column;\n padding-bottom: ","px;\n \n > div {\n display: flex;\n gap: ","px;\n \n >.ant-form-item {\n flex: 1\n }\n }\n }\n \n .entry-content__download-content-custom__button {\n padding: ","px 0;\n }\n \n .entry-content__download-content-custom__default {\n color: ",";\n }\n }\n "])),t.paddingXXS,t.paddingSM,t.marginSM,t.paddingSM,t.paddingXS,t.paddingSM,t.marginSM,t.paddingXS,t.colorTextDescription)}}),{hashPriority:"low"})},32017:(e,t,n)=>{"use strict";n.r(t),n.d(t,{useDetailsViewData:()=>i});var r=n(30811),o=n(36198),i=function(){var e=(0,r.useTranslation)().t;return{getModes:function(){return[{value:"resize",label:e("resize")},{value:"scaleByWidth",label:o.createElement(o.Fragment,null,e("scaleByWidth")+" ",o.createElement("span",{className:"entry-content__download-content-custom__default"},"(",e("default"),")"))},{value:"scaleByHeight",label:e("scaleByHeight")}]},getFormats:function(){return[{value:"JPEG",label:o.createElement(o.Fragment,null,"JPEG ",o.createElement("span",{className:"entry-content__download-content-custom__default"},"(",e("default"),")"))},{value:"PNG",label:"PNG"}]},getDownloadFormats:function(){return[{value:"original",label:e("asset.sidebar.original-file")},{value:"web",label:e("asset.sidebar.web-format")},{value:"print",label:e("asset.sidebar.print-format")},{value:"office",label:e("asset.sidebar.office-format")}]}}}},14230:(e,t,n)=>{"use strict";n.r(t);var r=n(36198),o=n(54663),i=n(80237),a=n(81690),s=n(54088),l=n(98051),c=n(94154),u=n(99954);i.moduleSystem.registerModule({onInit:function(){var e=a.container.get(s.serviceIds["Asset/Editor/TextTabManager"]);e.register({key:"edit",label:"asset.asset-editor-tabs.edit",children:r.createElement(c.EditContainer,null),icon:r.createElement(o.Icon,{value:"edit"})}),e.register(l.TAB_CUSTOM_METADATA),e.register(u.TAB_PROPERTIES),e.register(l.TAB_VERSIONS),e.register(u.TAB_SCHEDULE),e.register(u.TAB_DEPENDENCIES),e.register(u.TAB_NOTES_AND_EVENTS),e.register(u.TAB_TAGS),e.register(u.TAB_WORKFLOW)}})},16003:(e,t,n)=>{"use strict";var r;n.r(t),n.d(t,{useStyle:()=>o});var o=(0,n(3562).createStyles)((function(e){var t,n;e.token;return{relativeContainer:(0,e.css)(r||(t=["\n position: relative;\n width: 100%;\n "],n||(n=t.slice(0)),r=Object.freeze(Object.defineProperties(t,{raw:{value:Object.freeze(n)}}))))}}))},94154:(e,t,n)=>{"use strict";n.r(t),n.d(t,{EditContainer:()=>d});var r=n(36198),o=n(3959),i=n(93477),a=n(43741),s=n(16003),l=n(38576),c=n(5018),u=n(61008),d=function(){var e=(0,r.useContext)(a.AssetContext),t=(0,u.useAssetDraft)(e.id).asset,n=(0,i.useAssetGetTextDataByIdQuery)({id:e.id}).data,d=(0,s.useStyle)().styles,f=null;return"string"==typeof(null==t?void 0:t.filename)&&(f=(0,c.detectLanguageFromFilename)(t.filename)),r.createElement("div",{className:d.relativeContainer},(0,l.isSet)(n)&&r.createElement(o.EditView,{language:f,src:n.data}))}},13895:(e,t,n)=>{"use strict";var r;n.r(t),n.d(t,{useStyle:()=>o});var o=(0,n(3562).createStyles)((function(e){var t,n;e.token;return{preview:(0,e.css)(r||(t=["\n display: flex;\n justify-content: center;\n align-items: center;\n height: 100%;\n width: 100%;\n object-fit: contain;\n\n iframe {\n display: flex;\n height: 100%;\n width: 100%;\n }\n "],n||(n=t.slice(0)),r=Object.freeze(Object.defineProperties(t,{raw:{value:Object.freeze(n)}}))))}}),{hashPriority:"low"})},3959:(e,t,n)=>{"use strict";n.r(t),n.d(t,{EditView:()=>a});var r=n(36198),o=n(13895),i=n(37093),a=function(e){var t=(0,o.useStyle)().styles,n=e.src,a=e.language;return r.createElement("div",{className:t.preview},r.createElement(i.TextEditor,{defaultText:n,language:a}))}},34396:(e,t,n)=>{"use strict";n.r(t),n.d(t,{TextTabManager:()=>p});var r=n(62167),o=n(84560);function i(e,t){for(var n=0;n=0;s--)(o=e[s])&&(a=(i<3?o(a):i>3?o(t,n,a):o(t,n))||a);return i>3&&a&&Object.defineProperty(t,n,a),a},h=function(e,t){if("object"===("undefined"==typeof Reflect?"undefined":d(Reflect))&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)},p=function(e){function t(){var e;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),(e=s(this,t)).type="text",e}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&u(e,t)}(t,e),n=t,r&&i(n.prototype,r),o&&i(n,o),Object.defineProperty(n,"prototype",{writable:!1}),n;var n,r,o}(r.TabManager);p=f([(0,o.injectable)(),h("design:paramtypes",[])],p)},87160:(e,t,n)=>{"use strict";n.r(t);var r=n(81690),o=n(54088),i=n(80237),a=n(98051),s=n(99954);i.moduleSystem.registerModule({onInit:function(){var e=r.container.get(o.serviceIds["Asset/Editor/UnknownTabManager"]);e.register(a.TAB_CUSTOM_METADATA),e.register(s.TAB_PROPERTIES),e.register(a.TAB_VERSIONS),e.register(s.TAB_SCHEDULE),e.register(s.TAB_DEPENDENCIES),e.register(s.TAB_NOTES_AND_EVENTS),e.register(s.TAB_TAGS),e.register(s.TAB_WORKFLOW)}})},11031:(e,t,n)=>{"use strict";function r(e){return r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},r(e)}function o(e,t){for(var n=0;nu});var u=function(e){function t(){var e;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),(e=a(this,t)).type="unknown",e}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&c(e,t)}(t,e),n=t,r&&o(n.prototype,r),i&&o(n,i),Object.defineProperty(n,"prototype",{writable:!1}),n;var n,r,i}(n(62167).TabManager)},55347:(e,t,n)=>{"use strict";n.r(t);var r=n(36198),o=n(54663),i=n(74529),a=n(81690),s=n(54088),l=n(80237),c=n(98051),u=n(99954);l.moduleSystem.registerModule({onInit:function(){var e=a.container.get(s.serviceIds["Asset/Editor/VideoTabManager"]);e.register({key:"view",label:"asset.asset-editor-tabs.view",children:r.createElement(i.PreviewContainer,null),icon:r.createElement(o.Icon,{value:"image-05"})}),e.register(c.TAB_EMBEDDED_METADATA),e.register(c.TAB_CUSTOM_METADATA),e.register(u.TAB_PROPERTIES),e.register(c.TAB_VERSIONS),e.register(u.TAB_SCHEDULE),e.register(u.TAB_DEPENDENCIES),e.register(u.TAB_NOTES_AND_EVENTS),e.register(u.TAB_TAGS),e.register(u.TAB_WORKFLOW)}})},74529:(e,t,n)=>{"use strict";n.r(t),n.d(t,{PreviewContainer:()=>g,VideoContext:()=>m});var r=n(36198),o=n(82141),i=n(43741),a=n(13438),s=n(19759),l=n(70607),c=n(82755),u=n(65246),d=n(61008),f=n(56239);function h(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return p(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return p(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function p(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";var r;n.r(t),n.d(t,{useStyle:()=>o});var o=(0,n(3562).createStyles)((function(e){var t,n;e.token;return{preview:(0,e.css)(r||(t=["\n display: flex;\n justify-content: center;\n align-items: center;\n height: 100%;\n width: 100%;\n object-fit: contain;\n\n video {\n display: flex;\n max-height: 70%;\n max-width: 70%;\n }\n "],n||(n=t.slice(0)),r=Object.freeze(Object.defineProperties(t,{raw:{value:Object.freeze(n)}}))))}}),{hashPriority:"low"})},82141:(e,t,n)=>{"use strict";n.r(t),n.d(t,{PreviewView:()=>a});var r=n(36198),o=n(29791),i=n(96243),a=function(e){var t=(0,o.useStyle)().styles,n=e.src,a=e.poster;return r.createElement("div",{className:t.preview},r.createElement(i.PimcoreVideo,{poster:a,sources:[{src:n}]}))}},19759:(e,t,n)=>{"use strict";n.r(t),n.d(t,{sidebarManager:()=>l});var r=n(21155),o=n(54663),i=n(36198),a=n(44357),s=n(87222),l=new r.VideoEditorSidebarManager;l.registerEntry({key:"details",icon:i.createElement(o.Icon,{options:{width:"16px",height:"16px"},value:"view-details"}),component:i.createElement(a.DetailContainer,null)}),l.registerButton({key:"focal-point",icon:i.createElement(o.Icon,{options:{width:"16px",height:"16px"},value:"focal-point"}),component:i.createElement(s.FocalPointSidebarButton,null)})},21155:(e,t,n)=>{"use strict";function r(e){return r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},r(e)}function o(e,t){for(var n=0;nu});var u=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),a(this,t,arguments)}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&c(e,t)}(t,e),n=t,r&&o(n.prototype,r),i&&o(n,i),Object.defineProperty(n,"prototype",{writable:!1}),n;var n,r,i}(n(21044).SidebarManager)},44357:(e,t,n)=>{"use strict";n.r(t),n.d(t,{DetailContainer:()=>v});var r=n(36198),o=n(93477),i=n(43741),a=n(48156),s=n(81800),l=n(65246),c=n(3701),u=n(74529),d=n(82755),f=n(56239);function h(e){return h="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},h(e)}function p(){p=function(){return t};var e,t={},n=Object.prototype,r=n.hasOwnProperty,o=Object.defineProperty||function(e,t,n){e[t]=n.value},i="function"==typeof Symbol?Symbol:{},a=i.iterator||"@@iterator",s=i.asyncIterator||"@@asyncIterator",l=i.toStringTag||"@@toStringTag";function c(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{c({},"")}catch(e){c=function(e,t,n){return e[t]=n}}function u(e,t,n,r){var i=t&&t.prototype instanceof b?t:b,a=Object.create(i.prototype),s=new R(r||[]);return o(a,"_invoke",{value:_(e,n,s)}),a}function d(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}t.wrap=u;var f="suspendedStart",m="suspendedYield",g="executing",y="completed",v={};function b(){}function O(){}function w(){}var S={};c(S,a,(function(){return this}));var x=Object.getPrototypeOf,E=x&&x(x(D([])));E&&E!==n&&r.call(E,a)&&(S=E);var T=w.prototype=b.prototype=Object.create(S);function C(e){["next","throw","return"].forEach((function(t){c(e,t,(function(e){return this._invoke(t,e)}))}))}function P(e,t){function n(o,i,a,s){var l=d(e[o],e,i);if("throw"!==l.type){var c=l.arg,u=c.value;return u&&"object"==h(u)&&r.call(u,"__await")?t.resolve(u.__await).then((function(e){n("next",e,a,s)}),(function(e){n("throw",e,a,s)})):t.resolve(u).then((function(e){c.value=e,a(c)}),(function(e){return n("throw",e,a,s)}))}s(l.arg)}var i;o(this,"_invoke",{value:function(e,r){function o(){return new t((function(t,o){n(e,r,t,o)}))}return i=i?i.then(o,o):o()}})}function _(t,n,r){var o=f;return function(i,a){if(o===g)throw Error("Generator is already running");if(o===y){if("throw"===i)throw a;return{value:e,done:!0}}for(r.method=i,r.arg=a;;){var s=r.delegate;if(s){var l=k(s,r);if(l){if(l===v)continue;return l}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if(o===f)throw o=y,r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);o=g;var c=d(t,n,r);if("normal"===c.type){if(o=r.done?y:m,c.arg===v)continue;return{value:c.arg,done:r.done}}"throw"===c.type&&(o=y,r.method="throw",r.arg=c.arg)}}}function k(t,n){var r=n.method,o=t.iterator[r];if(o===e)return n.delegate=null,"throw"===r&&t.iterator.return&&(n.method="return",n.arg=e,k(t,n),"throw"===n.method)||"return"!==r&&(n.method="throw",n.arg=new TypeError("The iterator does not provide a '"+r+"' method")),v;var i=d(o,t.iterator,n.arg);if("throw"===i.type)return n.method="throw",n.arg=i.arg,n.delegate=null,v;var a=i.arg;return a?a.done?(n[t.resultName]=a.value,n.next=t.nextLoc,"return"!==n.method&&(n.method="next",n.arg=e),n.delegate=null,v):a:(n.method="throw",n.arg=new TypeError("iterator result is not an object"),n.delegate=null,v)}function j(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function A(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function R(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(j,this),this.reset(!0)}function D(t){if(t||""===t){var n=t[a];if(n)return n.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var o=-1,i=function n(){for(;++o=0;--i){var a=this.tryEntries[i],s=a.completion;if("root"===a.tryLoc)return o("end");if(a.tryLoc<=this.prev){var l=r.call(a,"catchLoc"),c=r.call(a,"finallyLoc");if(l&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),A(n),v}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;A(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),v}},t}function m(e,t,n,r,o,i,a){try{var s=e[i](a),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(r,o)}function g(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return y(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return y(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function y(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n0&&void 0!==arguments[0]?arguments[0]:_;j("image_thumbnail_time",b,e)},onChangeThumbnail:O,onClickDownloadByFormat:function(e){y(!0);var t="".concat((0,l.getPrefix)(),"/assets/").concat(w.id,"/video/download/").concat(e);(0,f.fetchBlobWithPolling)({url:t,onSuccess:function(e){var t=URL.createObjectURL(e);(0,c.saveFileLocal)(T.filename,t)}}).catch(console.error).finally((function(){y(!1)}))},onDropImage:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:_;j("image_thumbnail_asset",e,t)},thumbnails:P,width:null!==(t=T.width)&&void 0!==t?t:0});function k(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:_,r="".concat((0,l.getPrefix)(),"/assets/").concat(w.id,"/video/stream/image-thumbnail?width=").concat(e,"&height=").concat(t,"&aspectRatio=true");fetch(r).then(function(){var e,t=(e=p().mark((function e(t){return p().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,t.blob();case 2:return e.abrupt("return",e.sent);case 3:case"end":return e.stop()}}),e)})),function(){var t=this,n=arguments;return new Promise((function(r,o){var i=e.apply(t,n);function a(e){m(i,r,o,a,s,"next",e)}function s(e){m(i,r,o,a,s,"throw",e)}a(void 0)}))});return function(e){return t.apply(this,arguments)}}()).then((function(e){var t=URL.createObjectURL(e);E(t)})).catch((function(e){console.error(e)})).finally(n)}function j(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:_,r="".concat((0,l.getPrefix)(),"/assets/").concat(w.id);fetch(r,{method:"PUT",headers:{Accept:"application/json","Content-Type":"application/json"},body:JSON.stringify({data:{customSettings:[{key:e,value:t}]}})}).then((function(){k(200,119,n)})).catch((function(e){console.error(e),n()}))}}},48156:(e,t,n)=>{"use strict";n.r(t),n.d(t,{VideoEditorSidebarDetailsTab:()=>b});var r=n(36198),o=n(32432),i=n(28518),a=n(54663),s=n(30811),l=n(95658),c=n(46256),u=n(79301),d=n(35464),f=n(72475),h=n(71590),p=n(82755),m=n(41161),g=n(58664);function y(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return v(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return v(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function v(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";var r,o,i,a;function s(e,t){return t||(t=e.slice(0)),Object.freeze(Object.defineProperties(e,{raw:{value:Object.freeze(t)}}))}n.r(t),n.d(t,{useStyle:()=>l});var l=(0,n(3562).createStyles)((function(e){var t=e.token,n=e.css;return{sidebarContentEntry:n(r||(r=s(["\n .sidebar__content-label {\n color: ",";\n line-height: 20px;\n font-weight: 600;\n margin: 0;\n padding-bottom: ","px;\n \n &:not(:first-of-type) {\n padding-top: ","px;\n }\n }\n .sidebar__content-hr {\n position: absolute;\n left: 0;\n right: 0;\n border-color: ",";\n margin: 0;\n }\n "])),t.colorPrimaryActive,t.paddingXS,t.paddingXS,t.colorSplit),sidebarContentDimensions:n(o||(o=s(["\n display: flex;\n flex-direction: column;\n align-items: flex-start;\n align-self: stretch;\n \n .entry-content__dimensions-label {\n display: flex;\n padding-bottom: ",";\n gap: ","px;\n align-items: center;\n gap: ",";\n align-self: stretch;\n\n p {\n margin: 0\n }\n }\n\n .entry-content__dimensions-content {\n color: ",";\n display: flex;\n padding-bottom: ",";\n gap: ","px;\n align-items: center;\n gap: ",";\n align-self: stretch;\n\n p {\n margin: 0;\n line-height: 22px;\n }\n }\n "])),t.paddingXXS,t.marginMD,t.marginXXS,t.colorTextDescription,t.paddingXXS,t.marginMD,t.marginXXS),sidebarContentDownload:n(i||(i=s(["\n .entry-content__download-content-thumbnail {\n display: flex;\n align-items: center;\n gap: ","px;\n padding-bottom: ","px;\n \n .ant-select {\n flex: 1\n }\n }\n \n .entry-content__download-content-custom {\n .ant-form-item {\n margin-bottom: 0;\n }\n \n .entry-content__download-content-custom__dimensions {\n display: flex;\n gap: ","px;\n padding-bottom: ","px;\n }\n \n .entry-content__download-content-custom__others {\n display: flex;\n gap: ","px;\n flex-direction: column;\n padding-bottom: ","px;\n \n > div {\n display: flex;\n gap: ","px;\n \n >.ant-form-item {\n flex: 1\n }\n }\n }\n \n .entry-content__download-content-custom__button {\n padding: ","px 0;\n }\n }\n "])),t.paddingXXS,t.paddingSM,t.marginSM,t.paddingSM,t.paddingXS,t.paddingSM,t.marginSM,t.paddingXS),sidebarContentImagePreview:n(a||(a=s(["\n & > .sidebar__content-label {\n margin-top: ","px;\n }\n \n .ant-btn-group {\n button {\n padding: 0 4px;\n height: 24px;\n border-radius: unset;\n }\n button:nth-child(1) {\n border-top-left-radius: 6px;\n border-bottom-left-radius: 6px;\n }\n button:nth-child(2) {\n border-top-right-radius: 6px;\n border-bottom-right-radius: 6px;\n }\n }\n\n .ant-card {\n height: 208px;\n }\n \n .ant-card, .ant-card-meta-title {\n margin-top: ","px;\n }\n \n .image-preview-container {\n height: 129px;\n display: flex;\n flex-direction: column;\n align-items: center;\n justify-content: center;\n \n div {\n display: flex;\n gap: ","px;\n }\n \n span {\n margin-top: ","px;\n }\n }\n\n .image-preview__toolbar {\n position: absolute;\n left: 0;\n right: 0;\n background: none;\n margin-top: ","px\n }\n "])),t.marginXS,t.marginSM,t.marginXXS,t.marginSM,t.marginXS)}}),{hashPriority:"low"})},35464:(e,t,n)=>{"use strict";n.r(t),n.d(t,{DroppableContent:()=>u});var r=n(36198),o=n(31083),i=n(54663),a=n(30811),s=n(71590);function l(e){return function(e){if(Array.isArray(e))return c(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||function(e,t){if(!e)return;if("string"==typeof e)return c(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return c(e,t)}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function c(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";function r(e){return r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},r(e)}function o(e,t){for(var n=0;nu});var u=function(e){function t(){var e;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),(e=a(this,t)).type="video",e}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&c(e,t)}(t,e),n=t,r&&o(n.prototype,r),i&&o(n,i),Object.defineProperty(n,"prototype",{writable:!1}),n;var n,r,i}(n(62167).TabManager)},16728:(e,t,n)=>{"use strict";n.r(t),n.d(t,{AssetEditorWidget:()=>c});var r=n(13405),o=n(76644),i=n(25525),a=n(7496),s=n(36198),l=n(43741),c={name:"asset-editor",component:r.EditorContainer,titleComponent:o.TitleContainer,isModified:function(e){var t,n=e.getConfig(),r=(0,i.selectAssetById)(a.store.getState(),n.id);return null!==(t=null==r?void 0:r.modified)&&void 0!==t&&t},getContextProvider:function(e,t){var n=e.config;return s.createElement(l.AssetProvider,{id:n.id},t)}}},61008:(e,t,n)=>{"use strict";n.r(t),n.d(t,{useAssetDraft:()=>S});var r=n(7496),o=n(93477),i=n(25525),a=n(36198),s=n(30851),l=n(86618),c=n(78576),u=n(94941),d=n(36403),f=n(2228),h=n(81690),p=n(54088),m=n(95973);function g(e){return g="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},g(e)}function y(){y=function(){return t};var e,t={},n=Object.prototype,r=n.hasOwnProperty,o=Object.defineProperty||function(e,t,n){e[t]=n.value},i="function"==typeof Symbol?Symbol:{},a=i.iterator||"@@iterator",s=i.asyncIterator||"@@asyncIterator",l=i.toStringTag||"@@toStringTag";function c(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{c({},"")}catch(e){c=function(e,t,n){return e[t]=n}}function u(e,t,n,r){var i=t&&t.prototype instanceof b?t:b,a=Object.create(i.prototype),s=new R(r||[]);return o(a,"_invoke",{value:_(e,n,s)}),a}function d(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}t.wrap=u;var f="suspendedStart",h="suspendedYield",p="executing",m="completed",v={};function b(){}function O(){}function w(){}var S={};c(S,a,(function(){return this}));var x=Object.getPrototypeOf,E=x&&x(x(D([])));E&&E!==n&&r.call(E,a)&&(S=E);var T=w.prototype=b.prototype=Object.create(S);function C(e){["next","throw","return"].forEach((function(t){c(e,t,(function(e){return this._invoke(t,e)}))}))}function P(e,t){function n(o,i,a,s){var l=d(e[o],e,i);if("throw"!==l.type){var c=l.arg,u=c.value;return u&&"object"==g(u)&&r.call(u,"__await")?t.resolve(u.__await).then((function(e){n("next",e,a,s)}),(function(e){n("throw",e,a,s)})):t.resolve(u).then((function(e){c.value=e,a(c)}),(function(e){return n("throw",e,a,s)}))}s(l.arg)}var i;o(this,"_invoke",{value:function(e,r){function o(){return new t((function(t,o){n(e,r,t,o)}))}return i=i?i.then(o,o):o()}})}function _(t,n,r){var o=f;return function(i,a){if(o===p)throw Error("Generator is already running");if(o===m){if("throw"===i)throw a;return{value:e,done:!0}}for(r.method=i,r.arg=a;;){var s=r.delegate;if(s){var l=k(s,r);if(l){if(l===v)continue;return l}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if(o===f)throw o=m,r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);o=p;var c=d(t,n,r);if("normal"===c.type){if(o=r.done?m:h,c.arg===v)continue;return{value:c.arg,done:r.done}}"throw"===c.type&&(o=m,r.method="throw",r.arg=c.arg)}}}function k(t,n){var r=n.method,o=t.iterator[r];if(o===e)return n.delegate=null,"throw"===r&&t.iterator.return&&(n.method="return",n.arg=e,k(t,n),"throw"===n.method)||"return"!==r&&(n.method="throw",n.arg=new TypeError("The iterator does not provide a '"+r+"' method")),v;var i=d(o,t.iterator,n.arg);if("throw"===i.type)return n.method="throw",n.arg=i.arg,n.delegate=null,v;var a=i.arg;return a?a.done?(n[t.resultName]=a.value,n.next=t.nextLoc,"return"!==n.method&&(n.method="next",n.arg=e),n.delegate=null,v):a:(n.method="throw",n.arg=new TypeError("iterator result is not an object"),n.delegate=null,v)}function j(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function A(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function R(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(j,this),this.reset(!0)}function D(t){if(t||""===t){var n=t[a];if(n)return n.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var o=-1,i=function n(){for(;++o=0;--i){var a=this.tryEntries[i],s=a.completion;if("root"===a.tryLoc)return o("end");if(a.tryLoc<=this.prev){var l=r.call(a,"catchLoc"),c=r.call(a,"finallyLoc");if(l&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),A(n),v}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;A(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),v}},t}function v(e,t,n,r,o,i,a){try{var s=e[i](a),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(r,o)}function b(e){return function(){var t=this,n=arguments;return new Promise((function(r,o){var i=e.apply(t,n);function a(e){v(i,r,o,a,s,"next",e)}function s(e){v(i,r,o,a,s,"throw",e)}a(void 0)}))}}function O(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return w(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return w(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function w(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";n.r(t),n.d(t,{useAssetHelper:()=>f});var r=n(66777),o=n(93477),i=n(7496),a=n(38693),s=n(76265),l=n(72743);function c(e){return c="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},c(e)}function u(){u=function(){return t};var e,t={},n=Object.prototype,r=n.hasOwnProperty,o=Object.defineProperty||function(e,t,n){e[t]=n.value},i="function"==typeof Symbol?Symbol:{},a=i.iterator||"@@iterator",s=i.asyncIterator||"@@asyncIterator",l=i.toStringTag||"@@toStringTag";function d(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{d({},"")}catch(e){d=function(e,t,n){return e[t]=n}}function f(e,t,n,r){var i=t&&t.prototype instanceof b?t:b,a=Object.create(i.prototype),s=new R(r||[]);return o(a,"_invoke",{value:_(e,n,s)}),a}function h(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}t.wrap=f;var p="suspendedStart",m="suspendedYield",g="executing",y="completed",v={};function b(){}function O(){}function w(){}var S={};d(S,a,(function(){return this}));var x=Object.getPrototypeOf,E=x&&x(x(D([])));E&&E!==n&&r.call(E,a)&&(S=E);var T=w.prototype=b.prototype=Object.create(S);function C(e){["next","throw","return"].forEach((function(t){d(e,t,(function(e){return this._invoke(t,e)}))}))}function P(e,t){function n(o,i,a,s){var l=h(e[o],e,i);if("throw"!==l.type){var u=l.arg,d=u.value;return d&&"object"==c(d)&&r.call(d,"__await")?t.resolve(d.__await).then((function(e){n("next",e,a,s)}),(function(e){n("throw",e,a,s)})):t.resolve(d).then((function(e){u.value=e,a(u)}),(function(e){return n("throw",e,a,s)}))}s(l.arg)}var i;o(this,"_invoke",{value:function(e,r){function o(){return new t((function(t,o){n(e,r,t,o)}))}return i=i?i.then(o,o):o()}})}function _(t,n,r){var o=p;return function(i,a){if(o===g)throw Error("Generator is already running");if(o===y){if("throw"===i)throw a;return{value:e,done:!0}}for(r.method=i,r.arg=a;;){var s=r.delegate;if(s){var l=k(s,r);if(l){if(l===v)continue;return l}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if(o===p)throw o=y,r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);o=g;var c=h(t,n,r);if("normal"===c.type){if(o=r.done?y:m,c.arg===v)continue;return{value:c.arg,done:r.done}}"throw"===c.type&&(o=y,r.method="throw",r.arg=c.arg)}}}function k(t,n){var r=n.method,o=t.iterator[r];if(o===e)return n.delegate=null,"throw"===r&&t.iterator.return&&(n.method="return",n.arg=e,k(t,n),"throw"===n.method)||"return"!==r&&(n.method="throw",n.arg=new TypeError("The iterator does not provide a '"+r+"' method")),v;var i=h(o,t.iterator,n.arg);if("throw"===i.type)return n.method="throw",n.arg=i.arg,n.delegate=null,v;var a=i.arg;return a?a.done?(n[t.resultName]=a.value,n.next=t.nextLoc,"return"!==n.method&&(n.method="next",n.arg=e),n.delegate=null,v):a:(n.method="throw",n.arg=new TypeError("iterator result is not an object"),n.delegate=null,v)}function j(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function A(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function R(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(j,this),this.reset(!0)}function D(t){if(t||""===t){var n=t[a];if(n)return n.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var o=-1,i=function n(){for(;++o=0;--i){var a=this.tryEntries[i],s=a.completion;if("root"===a.tryLoc)return o("end");if(a.tryLoc<=this.prev){var l=r.call(a,"catchLoc"),c=r.call(a,"finallyLoc");if(l&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),A(n),v}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;A(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),v}},t}function d(e,t,n,r,o,i,a){try{var s=e[i](a),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(r,o)}var f=function(){var e=(0,r.useWidgetManager)(),t=e.openMainWidget,n=e.isMainWidgetOpen,c=(0,i.useAppDispatch)();function f(){var e;return e=u().mark((function e(r){var d,f,h,p;return u().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return d=r.config,f="asset-".concat(d.id),n(f)||c(o.api.util.invalidateTags(a.invalidatingTags.ASSET_DETAIL_ID(d.id))),e.next=5,i.store.dispatch(o.api.endpoints.assetGetById.initiate({id:d.id}));case 5:if(h=e.sent,void 0!==(p=h.data)&&(0,s.checkElementPermission)(p.permissions,"view")){e.next=9;break}return e.abrupt("return");case 9:t({name:null==p?void 0:p.filename,id:f,component:"asset-editor",config:Object.assign(Object.assign({},d),{icon:(0,l.getElementIcon)(p,{value:"widget-default",type:"name"})})});case 10:case"end":return e.stop()}}),e)})),f=function(){var t=this,n=arguments;return new Promise((function(r,o){var i=e.apply(t,n);function a(e){d(i,r,o,a,s,"next",e)}function s(e){d(i,r,o,a,s,"throw",e)}a(void 0)}))},f.apply(this,arguments)}return{openAsset:function(e){return f.apply(this,arguments)}}}},14465:(e,t,n)=>{"use strict";n.r(t),n.d(t,{useAsset:()=>i});var r=n(36198),o=n(43741),i=function(){return{id:(0,r.useContext)(o.AssetContext).id}}},5482:(e,t,n)=>{"use strict";n.r(t),n.d(t,{useGlobalAssetContext:()=>i});var r=n(7496),o=n(33811),i=function(){var e=(0,r.useAppDispatch)();return{context:(0,r.useAppSelector)((function(e){return(0,o.selectContextByType)(e,"asset")})),setContext:function(t){e((0,o.addGlobalContext)({type:"asset",config:t}))},removeContext:function(){e((0,o.removeGlobalContext)("asset"))}}}},44861:(e,t,n)=>{"use strict";n.r(t);n(59359),n(62288);var r=n(67215),o=n(81690),i=n(54088),a=n(80237);n(15094);a.moduleSystem.registerModule({onInit:function(){o.container.get(i.serviceIds.widgetManager).registerWidget({name:"asset-tree",component:r.TreeContainer})}})},59359:(e,t,n)=>{"use strict";n.r(t),n.d(t,{assetMetadataTypeProvider:()=>p});var r=n(81690),o=n(80237),i=n(54088),a=n(18347),s=n(5153),l=n(45784),c=n(16496),u=n(60967),d=n(61086),f=n(27186),h=n(40441),p={onInit:function(){var e=r.container.get(i.serviceIds["Asset/MetadataTypeProvider/MetadataTypeRegistry"]);e.registerComponent("input",new a.Input),e.registerComponent("textarea",new s.Textarea),e.registerComponent("asset",new l.Asset),e.registerComponent("object",new c.DataObject),e.registerComponent("document",new u.Document),e.registerComponent("date",new d.Date),e.registerComponent("select",new f.Select),e.registerComponent("checkbox",new h.Checkbox)}};o.moduleSystem.registerModule(p)},45784:(e,t,n)=>{"use strict";n.r(t),n.d(t,{Asset:()=>c});var r=n(36198),o=n(52613),i=n(43061);function a(e){return a="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},a(e)}function s(e,t){for(var n=0;n{"use strict";n.r(t),n.d(t,{Checkbox:()=>l});var r=n(36198),o=n(10809);function i(e){return i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},i(e)}function a(e,t){for(var n=0;n{"use strict";n.r(t),n.d(t,{DataObject:()=>c});var r=n(36198),o=n(52613),i=n(43061);function a(e){return a="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},a(e)}function s(e,t){for(var n=0;n{"use strict";n.r(t),n.d(t,{Date:()=>c});var r=n(36198),o=n(65388),i=n(50388);function a(e){return a="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},a(e)}function s(e,t){for(var n=0;n{"use strict";n.r(t),n.d(t,{Document:()=>c});var r=n(36198),o=n(52613),i=n(43061);function a(e){return a="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},a(e)}function s(e,t){for(var n=0;n{"use strict";n.r(t),n.d(t,{Input:()=>l});var r=n(36198),o=n(30509);function i(e){return i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},i(e)}function a(e,t){for(var n=0;n{"use strict";n.r(t),n.d(t,{Select:()=>l});var r=n(36198),o=n(81022);function i(e){return i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},i(e)}function a(e,t){for(var n=0;n{"use strict";n.r(t),n.d(t,{Textarea:()=>c});var r=n(36198),o=n(27358),i=n(38576);function a(e){return a="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},a(e)}function s(e,t){for(var n=0;n{"use strict";n.r(t),n.d(t,{MetadataTypeRegistry:()=>l});var r=n(84560);function o(e,t){for(var n=0;n=0;l--)(o=e[l])&&(s=(i<3?o(s):i>3?o(t,n,s):o(t,n))||s);return i>3&&s&&Object.defineProperty(t,n,s),s},l=function(){return e=function e(){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),this.components=new Map},(t=[{key:"registerComponent",value:function(e,t){this.components.set(e,t)}},{key:"getComponentByType",value:function(e){return this.components.get(e)}},{key:"getTypeSelectionTypes",value:function(){var e=new Map;return this.components.forEach((function(t,n){t.visibleInTypeSelection&&e.set(n,t)})),e}}])&&o(e.prototype,t),n&&o(e,n),Object.defineProperty(e,"prototype",{writable:!1}),e;var e,t,n}();l=s([(0,r.injectable)()],l)},69296:(e,t,n)=>{"use strict";n.r(t),n.d(t,{AssetTreeContextMenu:()=>b});var r=n(28518),o=n(36198),i=n(54663),a=n(30811),s=n(63975),l=n(595),c=n(41642),u=n(26272),d=n(2536),f=n(46946),h=n(13250),p=n(30312),m=n(83206),g=n(23219),y=n(42029),v=n(76265),b=function(e){var t,n,b,O,w=(0,a.useTranslation)().t,S=(0,s.UseFileUploader)({parentId:null===(t=e.node)||void 0===t?void 0:t.id}),x=S.uploadFile,E=S.uploadZip,T=o.useRef(null),C=o.useRef(null),P=o.useContext(u.UploadContext),_=(0,y.useZipDownload)({type:"folder"}).createZipDownloadContextMeuItem,k=(0,d.useAddFolder)("asset").addFolderContextMenuItem,j=(0,f.useRename)("asset").renameContextMenuItem,A=(0,h.useDelete)("asset").deleteContextMenuItem,R=(0,p.useRefreshTree)("asset").refreshTreeContextMenuItem,D=(0,m.useCopyPaste)("asset"),L=D.copyContextMenuItem,I=D.cutContextMenuItem,M=D.pasteContextMenuItem,N=D.pasteCutContextMenuItem,$=(0,g.useLock)("asset"),B=$.lockContextMenuItem,F=$.lockAndPropagateContextMenuItem,Q=$.unlockContextMenuItem,z=$.unlockAndPropagateContextMenuItem,V=e.node;(0,o.useEffect)((function(){void 0!==V&&P.setUploadingNode(V.id)}),[V]);var U=[{label:w("element.tree.context-menu.add-assets"),key:"1",icon:o.createElement(i.Icon,{value:"mainAsset"}),hidden:!(0,v.checkElementPermission)(e.node.permissions,"create")||"folder"!==(null===(n=e.node)||void 0===n?void 0:n.type),children:[{icon:o.createElement(i.Icon,{value:"upload-cloud"}),label:w("element.tree.context-menu.add-assets.upload-files"),key:"1-1",onClick:function(){var e;null!==T.current&&(null===(e=T.current)||void 0===e||e.click())}},{icon:o.createElement(i.Icon,{value:"upload-zip"}),label:w("element.tree.context-menu.add-assets.upload-zip"),key:"1-2",onClick:function(){var e;null!==C.current&&(null===(e=C.current)||void 0===e||e.click())}}]},k(e.node),j(e.node),L(e.node),M(e.node),I(e.node),N(parseInt(e.node.id)),A(e.node),_(e.node),{label:w("element.tree.context-menu.advanced"),key:"advanced",icon:o.createElement(i.Icon,{value:"more"}),children:[{label:w("element.lock"),key:"advanced-lock",icon:o.createElement(i.Icon,{value:"lock-01"}),hidden:!(0,v.checkElementPermission)(e.node.permissions,"publish")||e.node.isLocked,children:[B(e.node),F(e.node),Q(e.node),z(e.node)]}]},R(e.node)],W={action:"/pimcore-studio/api/assets/add/".concat(null===(b=e.node)||void 0===b?void 0:b.id),name:"file",multiple:!0,showUploadList:!1,onChange:x},G={action:"/pimcore-studio/api/assets/add-zip/".concat(null===(O=e.node)||void 0===O?void 0:O.id),accept:".zip, .rar, .7zip",name:"zipFile",multiple:!0,showUploadList:!1,onChange:E};return o.createElement(o.Fragment,null,o.createElement(l.Upload,Object.assign({},W),o.createElement(r.Button,{ref:T,style:{display:"none"}})),o.createElement(l.Upload,Object.assign({},G),o.createElement(r.Button,{ref:C,style:{display:"none"}})),o.createElement(c.Dropdown,{menu:{items:U},trigger:["contextMenu"]},e.children))}},85469:(e,t,n)=>{"use strict";n.r(t),n.d(t,{useNodeApiHook:()=>c});var r=n(31322),o=n(93477),i=n(36198),a=n(72743);function s(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return l(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return l(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function l(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";n.r(t);var r=n(80237),o=n(81690),i=n(54088),a=n(69296);r.moduleSystem.registerModule({onInit:function(){o.container.get(i.serviceIds["App/ComponentRegistry/ComponentRegistry"]).register({name:"assetTreeContextMenu",component:a.AssetTreeContextMenu})}})},37125:(e,t,n)=>{"use strict";n.r(t),n.d(t,{withDraggable:()=>i});var r=n(36198),o=n(61394),i=function(e){return function(t){var n,i=t.metaData.asset;return void 0===(null===(n=t.metaData)||void 0===n?void 0:n.asset)?r.createElement(e,Object.assign({},t)):r.createElement(o.Draggable,{info:{icon:i.icon.value,title:i.filename,type:"asset",data:Object.assign({},i)}},r.createElement(e,Object.assign({},t)))}}},23662:(e,t,n)=>{"use strict";n.r(t),n.d(t,{SearchContainer:()=>a});var r=n(36198),o=n(52631),i=n(30811),a=function(e){var t=(0,i.useTranslation)().t;return r.createElement(o.SearchContainer,{label:t("asset.asset-tree.search",{folderName:e.node.label}),node:e.node,total:e.total})}},67215:(e,t,n)=>{"use strict";n.r(t),n.d(t,{TreeContainer:()=>g});var r=n(31322),o=n(36198),i=n(85469),a=n(36699),s=n(1020),l=n(6786),c=n(23662),u=n(37125),d=n(69296);function f(e){return f="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},f(e)}function h(){h=function(){return t};var e,t={},n=Object.prototype,r=n.hasOwnProperty,o=Object.defineProperty||function(e,t,n){e[t]=n.value},i="function"==typeof Symbol?Symbol:{},a=i.iterator||"@@iterator",s=i.asyncIterator||"@@asyncIterator",l=i.toStringTag||"@@toStringTag";function c(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{c({},"")}catch(e){c=function(e,t,n){return e[t]=n}}function u(e,t,n,r){var i=t&&t.prototype instanceof b?t:b,a=Object.create(i.prototype),s=new R(r||[]);return o(a,"_invoke",{value:_(e,n,s)}),a}function d(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}t.wrap=u;var p="suspendedStart",m="suspendedYield",g="executing",y="completed",v={};function b(){}function O(){}function w(){}var S={};c(S,a,(function(){return this}));var x=Object.getPrototypeOf,E=x&&x(x(D([])));E&&E!==n&&r.call(E,a)&&(S=E);var T=w.prototype=b.prototype=Object.create(S);function C(e){["next","throw","return"].forEach((function(t){c(e,t,(function(e){return this._invoke(t,e)}))}))}function P(e,t){function n(o,i,a,s){var l=d(e[o],e,i);if("throw"!==l.type){var c=l.arg,u=c.value;return u&&"object"==f(u)&&r.call(u,"__await")?t.resolve(u.__await).then((function(e){n("next",e,a,s)}),(function(e){n("throw",e,a,s)})):t.resolve(u).then((function(e){c.value=e,a(c)}),(function(e){return n("throw",e,a,s)}))}s(l.arg)}var i;o(this,"_invoke",{value:function(e,r){function o(){return new t((function(t,o){n(e,r,t,o)}))}return i=i?i.then(o,o):o()}})}function _(t,n,r){var o=p;return function(i,a){if(o===g)throw Error("Generator is already running");if(o===y){if("throw"===i)throw a;return{value:e,done:!0}}for(r.method=i,r.arg=a;;){var s=r.delegate;if(s){var l=k(s,r);if(l){if(l===v)continue;return l}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if(o===p)throw o=y,r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);o=g;var c=d(t,n,r);if("normal"===c.type){if(o=r.done?y:m,c.arg===v)continue;return{value:c.arg,done:r.done}}"throw"===c.type&&(o=y,r.method="throw",r.arg=c.arg)}}}function k(t,n){var r=n.method,o=t.iterator[r];if(o===e)return n.delegate=null,"throw"===r&&t.iterator.return&&(n.method="return",n.arg=e,k(t,n),"throw"===n.method)||"return"!==r&&(n.method="throw",n.arg=new TypeError("The iterator does not provide a '"+r+"' method")),v;var i=d(o,t.iterator,n.arg);if("throw"===i.type)return n.method="throw",n.arg=i.arg,n.delegate=null,v;var a=i.arg;return a?a.done?(n[t.resultName]=a.value,n.next=t.nextLoc,"return"!==n.method&&(n.method="next",n.arg=e),n.delegate=null,v):a:(n.method="throw",n.arg=new TypeError("iterator result is not an object"),n.delegate=null,v)}function j(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function A(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function R(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(j,this),this.reset(!0)}function D(t){if(t||""===t){var n=t[a];if(n)return n.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var o=-1,i=function n(){for(;++o=0;--i){var a=this.tryEntries[i],s=a.completion;if("root"===a.tryLoc)return o("end");if(a.tryLoc<=this.prev){var l=r.call(a,"catchLoc"),c=r.call(a,"finallyLoc");if(l&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),A(n),v}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;A(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),v}},t}function p(e,t,n,r,o,i,a){try{var s=e[i](a),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(r,o)}var m=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&t.indexOf(r)<0&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var o=0;for(r=Object.getOwnPropertySymbols(e);o{"use strict";n.r(t),n.d(t,{addTagTypes:()=>o,api:()=>i,useLoginMutation:()=>a,useLogoutMutation:()=>s});var r=n(35525),o=["Authorization"],i=r.api.enhanceEndpoints({addTagTypes:o}).injectEndpoints({endpoints:function(e){return{login:e.mutation({query:function(e){return{url:"/pimcore-studio/api/login",method:"POST",body:e.credentials}},invalidatesTags:["Authorization"]}),logout:e.mutation({query:function(){return{url:"/pimcore-studio/api/logout",method:"POST"}},invalidatesTags:["Authorization"]})}},overrideExisting:!1}),a=i.useLoginMutation,s=i.useLogoutMutation},82392:(e,t,n)=>{"use strict";n.r(t),n.d(t,{useIsAuthenticated:()=>i});var r=n(36198),o=n(52910),i=function(){var e=(0,o.useUser)();return(0,r.useMemo)((function(){return""!==e.username}),[e])}},32347:(e,t,n)=>{"use strict";n.r(t),n.d(t,{useMiddleware:()=>s});var r=n(79655),o=n(36198),i=n(82392),a=n(24835),s=function(){var e=(0,i.useIsAuthenticated)(),t=(0,r.useNavigate)();(0,o.useEffect)((function(){e&&t(a.routes.root),e||t(a.routes.login)}),[e])}},52910:(e,t,n)=>{"use strict";n.r(t),n.d(t,{useUser:()=>a});var r=n(36198),o=n(45007),i=n(4362),a=function(){var e=(0,o.useSelector)(i.selectCurrentUser);return(0,r.useMemo)((function(){return e}),[e])}},7786:(e,t,n)=>{"use strict";var r,o;function i(e,t){return t||(t=e.slice(0)),Object.freeze(Object.defineProperties(e,{raw:{value:Object.freeze(t)}}))}n.r(t),n.d(t,{useStyle:()=>a});var a=(0,n(3562).createStyles)((function(e){e.token;var t=e.css;return{loginPage:t(r||(r=i(["\n display: flex;\n align-items: center;\n background: url(/bundles/pimcorestudioui/img/login-bg.png) lightgray 50% / cover no-repeat;\n position: absolute;\n inset: 0;\n overflow: hidden;\n "]))),loginWidget:t(o||(o=i(["\n display: flex;\n flex-direction: column;\n width: 503px;\n height: 608px;\n flex-shrink: 0;\n border-radius: 8px;\n background: linear-gradient(335deg, rgba(255, 255, 255, 0.86) 1.72%, rgba(57, 14, 97, 0.86) 158.36%);\n padding: 83px 100px 0 100px;\n margin-left: 80px;\n \n /* Component/Button/primaryShadow */\n box-shadow: 0px 2px 0px 0px rgba(114, 46, 209, 0.10);\n \n img {\n margin-bottom: 50px\n }\n "])))}}))},7367:(e,t,n)=>{"use strict";n.r(t),n.d(t,{LoginPage:()=>s});var r=n(36198),o=n(65437),i=n(7786),a=n(32347),s=function(){var e=(0,i.useStyle)().styles;return(0,a.useMiddleware)(),r.createElement("div",{className:e.loginPage},r.createElement("div",{className:e.loginWidget},r.createElement("img",{alt:"Pimcore Logo",src:"/bundles/pimcorestudioui/img/logo.png"}),r.createElement(o.LoginForm,null)))}},93244:(e,t,n)=>{"use strict";n.r(t),n.d(t,{isAllowed:()=>i});var r=n(7496),o=n(4362),i=function(e){var t=r.store.getState(),n=(0,o.selectCurrentUser)(t);return!!n.isAdmin||void 0!==e&&n.permissions.includes(e)}},9468:(e,t,n)=>{"use strict";n.r(t),n.d(t,{addTagTypes:()=>o,api:()=>i,usePimcoreStudioApiUserSearchQuery:()=>y,useUserCloneByIdMutation:()=>a,useUserCreateMutation:()=>s,useUserDeleteByIdMutation:()=>f,useUserFolderCreateMutation:()=>l,useUserFolderDeleteByIdMutation:()=>h,useUserGetAvailablePermissionsQuery:()=>p,useUserGetByIdQuery:()=>u,useUserGetCollectionQuery:()=>m,useUserGetCurrentInformationQuery:()=>c,useUserGetTreeQuery:()=>b,useUserResetPasswordMutation:()=>g,useUserUpdateByIdMutation:()=>d,useUserUpdatePasswordByIdMutation:()=>v});var r=n(35525),o=["User Management"],i=r.api.enhanceEndpoints({addTagTypes:o}).injectEndpoints({endpoints:function(e){return{userCloneById:e.mutation({query:function(e){return{url:"/pimcore-studio/api/user/clone/".concat(e.id),method:"POST",body:e.body}},invalidatesTags:["User Management"]}),userCreate:e.mutation({query:function(e){return{url:"/pimcore-studio/api/user/",method:"POST",body:e.body}},invalidatesTags:["User Management"]}),userFolderCreate:e.mutation({query:function(e){return{url:"/pimcore-studio/api/user/folder",method:"POST",body:e.body}},invalidatesTags:["User Management"]}),userGetCurrentInformation:e.query({query:function(){return{url:"/pimcore-studio/api/user/current-user-information"}},providesTags:["User Management"]}),userGetById:e.query({query:function(e){return{url:"/pimcore-studio/api/user/".concat(e.id)}},providesTags:["User Management"]}),userUpdateById:e.mutation({query:function(e){return{url:"/pimcore-studio/api/user/".concat(e.id),method:"PUT",body:e.updateUser}},invalidatesTags:["User Management"]}),userDeleteById:e.mutation({query:function(e){return{url:"/pimcore-studio/api/user/".concat(e.id),method:"DELETE"}},invalidatesTags:["User Management"]}),userFolderDeleteById:e.mutation({query:function(e){return{url:"/pimcore-studio/api/user/folder/".concat(e.id),method:"DELETE"}},invalidatesTags:["User Management"]}),userGetAvailablePermissions:e.query({query:function(){return{url:"/pimcore-studio/api/user/available-permissions"}},providesTags:["User Management"]}),userGetCollection:e.query({query:function(){return{url:"/pimcore-studio/api/users"}},providesTags:["User Management"]}),userResetPassword:e.mutation({query:function(e){return{url:"/pimcore-studio/api/user/reset-password",method:"POST",body:e.resetPassword}},invalidatesTags:["User Management"]}),pimcoreStudioApiUserSearch:e.query({query:function(e){return{url:"/pimcore-studio/api/user/search",params:{searchQuery:e.searchQuery}}},providesTags:["User Management"]}),userUpdatePasswordById:e.mutation({query:function(e){return{url:"/pimcore-studio/api/user/".concat(e.id,"/password"),method:"PUT",body:e.body}},invalidatesTags:["User Management"]}),userGetTree:e.query({query:function(e){return{url:"/pimcore-studio/api/users/tree",params:{parentId:e.parentId}}},providesTags:["User Management"]})}},overrideExisting:!1}),a=i.useUserCloneByIdMutation,s=i.useUserCreateMutation,l=i.useUserFolderCreateMutation,c=i.useUserGetCurrentInformationQuery,u=i.useUserGetByIdQuery,d=i.useUserUpdateByIdMutation,f=i.useUserDeleteByIdMutation,h=i.useUserFolderDeleteByIdMutation,p=i.useUserGetAvailablePermissionsQuery,m=i.useUserGetCollectionQuery,g=i.useUserResetPasswordMutation,y=i.usePimcoreStudioApiUserSearchQuery,v=i.useUserUpdatePasswordByIdMutation,b=i.useUserGetTreeQuery},4362:(e,t,n)=>{"use strict";n.r(t),n.d(t,{selectCurrentUser:()=>l,setUser:()=>s,userSliceName:()=>a});var r=n(8327),o=n(7496),i=(0,r.createSlice)({name:"auth",initialState:{username:"",permissions:[],isAdmin:!1},reducers:{setUser:function(e,t){var n=t.payload;return Object.assign(Object.assign({},e),n)}}}),a=i.name;(0,o.injectSliceWithState)(i);var s=i.actions.setUser,l=function(e){return e.auth}},15008:(e,t,n)=>{"use strict";n.r(t),n.d(t,{api:()=>o,useDataObjectAddMutation:()=>i,useDataObjectCloneMutation:()=>a,useDataObjectGetByIdQuery:()=>s,useDataObjectGetLayoutByIdQuery:()=>d,useDataObjectGetTreeQuery:()=>u,useDataObjectPatchByIdMutation:()=>c,useDataObjectUpdateByIdMutation:()=>l});var r=n(38693),o=n(60952).api.enhanceEndpoints({addTagTypes:[r.tagNames.DATA_OBJECT,r.tagNames.DATA_OBJECT_TREE,r.tagNames.DATA_OBJECT_DETAIL],endpoints:{dataObjectClone:{invalidatesTags:function(e,t,n){return r.invalidatingTags.DATA_OBJECT_TREE_ID(n.parentId)}},dataObjectGetById:{providesTags:function(e,t,n){return r.providingTags.DATA_OBJECT_DETAIL_ID(n.id)}},dataObjectGetTree:{providesTags:function(e,t,n){return void 0!==n.parentId?r.providingTags.DATA_OBJECT_TREE_ID(n.parentId):r.providingTags.DATA_OBJECT_TREE()}},dataObjectUpdateById:{invalidatesTags:function(e,t,n){return r.invalidatingTags.DATA_OBJECT_DETAIL_ID(n.id)}},dataObjectAdd:{invalidatesTags:function(e,t,n){return r.invalidatingTags.DATA_OBJECT_TREE_ID(n.parentId)}},dataObjectGetLayoutById:{providesTags:function(e,t,n){return r.providingTags.DATA_OBJECT_DETAIL_ID(n.id)}}}}),i=o.useDataObjectAddMutation,a=o.useDataObjectCloneMutation,s=o.useDataObjectGetByIdQuery,l=o.useDataObjectUpdateByIdMutation,c=o.useDataObjectPatchByIdMutation,u=o.useDataObjectGetTreeQuery,d=o.useDataObjectGetLayoutByIdQuery},60952:(e,t,n)=>{"use strict";n.r(t),n.d(t,{addTagTypes:()=>o,api:()=>i,useDataObjectAddMutation:()=>a,useDataObjectCloneMutation:()=>s,useDataObjectGetAvailableGridColumnsQuery:()=>u,useDataObjectGetByIdQuery:()=>l,useDataObjectGetGridMutation:()=>d,useDataObjectGetLayoutByIdQuery:()=>f,useDataObjectGetTreeQuery:()=>m,useDataObjectPatchByIdMutation:()=>h,useDataObjectReplaceContentMutation:()=>p,useDataObjectUpdateByIdMutation:()=>c});var r=n(35525),o=["Data Objects","Data Object Grid"],i=r.api.enhanceEndpoints({addTagTypes:o}).injectEndpoints({endpoints:function(e){return{dataObjectAdd:e.mutation({query:function(e){return{url:"/pimcore-studio/api/data-objects/add/".concat(e.parentId),method:"POST",body:e.dataObjectAddParameters}},invalidatesTags:["Data Objects"]}),dataObjectClone:e.mutation({query:function(e){return{url:"/pimcore-studio/api/data-objects/".concat(e.id,"/clone/").concat(e.parentId),method:"POST",body:e.cloneParameters}},invalidatesTags:["Data Objects"]}),dataObjectGetById:e.query({query:function(e){return{url:"/pimcore-studio/api/data-objects/".concat(e.id)}},providesTags:["Data Objects"]}),dataObjectUpdateById:e.mutation({query:function(e){return{url:"/pimcore-studio/api/data-objects/".concat(e.id),method:"PUT",body:e.body}},invalidatesTags:["Data Objects"]}),dataObjectGetAvailableGridColumns:e.query({query:function(e){return{url:"/pimcore-studio/api/data-object/grid/available-columns/".concat(e.classId,"/folderId")}},providesTags:["Data Object Grid"]}),dataObjectGetGrid:e.mutation({query:function(e){return{url:"/pimcore-studio/api/data-objects/grid",method:"POST",body:e.body}},invalidatesTags:["Data Object Grid"]}),dataObjectGetLayoutById:e.query({query:function(e){return{url:"/pimcore-studio/api/data-objects/".concat(e.id,"/layout")}},providesTags:["Data Objects"]}),dataObjectPatchById:e.mutation({query:function(e){return{url:"/pimcore-studio/api/data-objects",method:"PATCH",body:e.body}},invalidatesTags:["Data Objects"]}),dataObjectReplaceContent:e.mutation({query:function(e){return{url:"/pimcore-studio/api/data-objects/".concat(e.sourceId,"/replace/").concat(e.targetId),method:"POST"}},invalidatesTags:["Data Objects"]}),dataObjectGetTree:e.query({query:function(e){return{url:"/pimcore-studio/api/data-objects/tree",params:{page:e.page,pageSize:e.pageSize,parentId:e.parentId,idSearchTerm:e.idSearchTerm,excludeFolders:e.excludeFolders,path:e.path,pathIncludeParent:e.pathIncludeParent,pathIncludeDescendants:e.pathIncludeDescendants,className:e.className}}},providesTags:["Data Objects"]})}},overrideExisting:!1}),a=i.useDataObjectAddMutation,s=i.useDataObjectCloneMutation,l=i.useDataObjectGetByIdQuery,c=i.useDataObjectUpdateByIdMutation,u=i.useDataObjectGetAvailableGridColumnsQuery,d=i.useDataObjectGetGridMutation,f=i.useDataObjectGetLayoutByIdQuery,h=i.useDataObjectPatchByIdMutation,p=i.useDataObjectReplaceContentMutation,m=i.useDataObjectGetTreeQuery},83402:(e,t,n)=>{"use strict";n.r(t),n.d(t,{addPropertyToDataObject:()=>y,addScheduleToDataObject:()=>w,dataObjectReceived:()=>f,dataObjectsAdapter:()=>c,removeDataObject:()=>h,removePropertyFromDataObject:()=>v,removeScheduleFromDataObject:()=>S,resetChanges:()=>m,resetDataObject:()=>p,resetSchedulesChangesForDataObject:()=>T,selectDataObjectById:()=>P,setActiveTabForDataObject:()=>C,setModifiedCells:()=>g,setPropertiesForDataObject:()=>b,setSchedulesForDataObject:()=>x,slice:()=>u,updatePropertyForDataObject:()=>O,updateScheduleForDataObject:()=>E});var r=n(8327),o=n(7496),i=n(86618),a=n(94941),s=n(95973),l=n(2228),c=(0,r.createEntityAdapter)({}),u=(0,r.createSlice)({name:"data-object-draft",initialState:c.getInitialState(Object.assign({modified:!1,properties:[],schedule:[],changes:{},modifiedCells:{}},s.initialTabsStateValue)),reducers:Object.assign(Object.assign(Object.assign(Object.assign({dataObjectReceived:c.upsertOne,removeDataObject:function(e,t){c.removeOne(e,t.payload)},resetDataObject:function(e,t){void 0!==e.entities[t.payload]&&(e.entities[t.payload]=c.getInitialState({modified:!1,properties:[],changes:{}}).entities[t.payload])}},(0,a.useTrackableChangesReducers)(c)),(0,i.usePropertiesReducers)(c)),(0,l.useSchedulesReducers)(c)),(0,s.useTabsReducers)(c))});(0,o.injectSliceWithState)(u);var d=u.actions,f=d.dataObjectReceived,h=d.removeDataObject,p=d.resetDataObject,m=d.resetChanges,g=d.setModifiedCells,y=d.addProperty,v=d.removeProperty,b=d.setProperties,O=d.updateProperty,w=d.addSchedule,S=d.removeSchedule,x=d.setSchedules,E=d.updateSchedule,T=d.resetSchedulesChanges,C=d.setActiveTab,P=c.getSelectors((function(e){return e["data-object-draft"]})).selectById},45048:(e,t,n)=>{"use strict";n.r(t),n.d(t,{DataObjectContext:()=>o,DataObjectProvider:()=>i});var r=n(36198),o=(0,r.createContext)({id:0}),i=function(e){var t=e.id,n=e.children;return(0,r.useMemo)((function(){return r.createElement(o.Provider,{value:{id:t}},n)}),[t])}},90455:(e,t,n)=>{"use strict";n.r(t),n.d(t,{EditorContainer:()=>h});var r=n(36198),o=n(2263),i=n(45048),a=n(82755),s=n(70047),l=n(44994),c=n(98740),u=n(65832),d=n(6150),f=n(94759),h=function(e){var t=e.id,n=(0,s.useDataObjectDraft)(t),h=n.isLoading,p=n.isError,m=n.dataObject,g=n.removeDataObjectFromState,y=n.editorType,v=(0,o.useIsAcitveMainWidget)(),b=(0,l.useGlobalDataObjectContext)(),O=b.setContext,w=b.removeContext;return(0,r.useEffect)((function(){return function(){w(),g()}}),[]),(0,r.useEffect)((function(){return v&&O({id:t}),function(){v||w()}}),[v]),p?r.createElement("div",null,"Error"):h?r.createElement(a.Content,{loading:!0}):void 0===m||void 0===y?r.createElement(r.Fragment,null):r.createElement(i.DataObjectProvider,{id:t},r.createElement(f.LanguageSelectionProvider,null,r.createElement(d.TabsToolbarView,{renderTabbar:r.createElement(c.TabsContainer,{elementEditorType:y}),renderToolbar:r.createElement(u.Toolbar,null)})))}},52098:(e,t,n)=>{"use strict";n.r(t);var r=n(81690),o=(n(78676),n(51134),n(54088)),i=n(80237),a=n(10539),s=n(23092);i.moduleSystem.registerModule({onInit:function(){var e=r.container.get(o.serviceIds["DataObject/Editor/TypeRegistry"]);e.register({name:"object",tabManagerServiceId:"DataObject/Editor/ObjectTabManager"}),e.register({name:"folder",tabManagerServiceId:"DataObject/Editor/FolderTabManager"}),r.container.get(o.serviceIds.widgetManager).registerWidget(s.DataObjectEditorWidget),r.container.get(o.serviceIds["App/ComponentRegistry/ComponentRegistry"]).register({name:"editorToolbarContextMenuDataObject",component:a.EditorToolbarContextMenu})}})},71201:(e,t,n)=>{"use strict";n.r(t),n.d(t,{TAB_VERSIONS:()=>l});var r=n(9287),o=n(54663),i=n(36198),a=n(70691),s=n(9791),l={key:"versions",label:"version.label",children:i.createElement(r.VersionsTabContainer,{ComparisonViewComponent:a.ComparisonView,SingleViewComponent:s.SingleView}),icon:i.createElement(o.Icon,{value:"history-outlined"}),isDetachable:!0}},70691:(e,t,n)=>{"use strict";n.r(t),n.d(t,{ComparisonView:()=>o});var r=n(36198),o=function(e){var t=e.versionIds;return r.createElement("div",null,r.createElement("p",null,r.createElement("strong",null,"TODO: implement data object comparison view for versionIds:")),t.map((function(e){return e.id})).join(", "))}},9791:(e,t,n)=>{"use strict";n.r(t),n.d(t,{SingleView:()=>o});var r=n(36198),o=function(e){var t=e.versions,n=e.versionId,o=e.setDetailedVersions;return r.createElement("div",null,r.createElement("p",null,r.createElement("strong",null,"TODO: implement data object single version view for:")),"ID: ",n.id,r.createElement("hr",null),"Jump to other versions:",t.map((function(e){return r.createElement("div",{key:e.id},r.createElement("p",null,r.createElement("button",{onClick:function(){o([{id:e.id,count:e.versionCount}])}}," Version: ",e.versionCount)))})))}},51823:(e,t,n)=>{"use strict";n.r(t),n.d(t,{TitleContainer:()=>a});var r=n(36198),o=n(1464),i=n(70047),a=function(e){var t,n=e.node,a=(0,i.useDataObjectDraft)(n.getConfig().id).dataObject;return r.createElement(o.TabTitleContainer,{modified:null!==(t=null==a?void 0:a.modified)&&void 0!==t&&t,node:n})}},10539:(e,t,n)=>{"use strict";n.r(t),n.d(t,{EditorToolbarContextMenu:()=>m});var r=n(28518),o=n(27027),i=n(95658),a=n(36198),s=n(15008),l=n(38693),c=n(7496),u=n(30811),d=n(70047),f=n(45048);function h(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return p(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return p(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function p(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n0?b(!0):O()},open:v,title:e("toolbar.reload.confirmation")},a.createElement(o.IconButton,{icon:{value:"refresh"}},e("toolbar.reload"))));function O(){g(),t(s.api.util.invalidateTags(l.invalidatingTags.DATA_OBJECT_DETAIL_ID(n)))}}},79424:(e,t,n)=>{"use strict";n.r(t),n.d(t,{LanguageSelection:()=>c});var r=n(68034),o=n(95987),i=n(36198),a=n(11581);function s(e){return function(e){if(Array.isArray(e))return l(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||function(e,t){if(!e)return;if("string"==typeof e)return l(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return l(e,t)}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function l(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";n.r(t),n.d(t,{LanguageSelectionContext:()=>a,LanguageSelectionProvider:()=>s});var r=n(36198);function o(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return i(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return i(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function i(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";n.r(t),n.d(t,{useLanguageSelection:()=>i});var r=n(36198),o=n(94759),i=function(){var e=(0,r.useContext)(o.LanguageSelectionContext);return Object.assign({},e)}},65832:(e,t,n)=>{"use strict";n.r(t),n.d(t,{Toolbar:()=>w});var r=n(36198),o=n(72475),i=n(30811),a=n(71816),s=n(70047),l=n(45048),c=n(78078),u=n(63033),d=n(54088),f=n(81690),h=n(15008),p=n(47259),m=n(16658),g=n(79424);function y(e){return y="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},y(e)}function v(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return b(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return b(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function b(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";n.r(t);var r=n(80237),o=n(81690),i=n(54088),a=n(99954);r.moduleSystem.registerModule({onInit:function(){var e=o.container.get(i.serviceIds["DataObject/Editor/FolderTabManager"]);e.register(a.TAB_PROPERTIES),e.register(a.TAB_DEPENDENCIES),e.register(a.TAB_NOTES_AND_EVENTS),e.register(a.TAB_TAGS),e.register(a.TAB_WORKFLOW)}})},78676:(e,t,n)=>{"use strict";n.r(t);var r=n(80237),o=n(81690),i=n(54088),a=n(99954),s=n(71201),l=n(16658);r.moduleSystem.registerModule({onInit:function(){var e=o.container.get(i.serviceIds["DataObject/Editor/ObjectTabManager"]);e.register(l.TAB_EDIT),e.register(a.TAB_PROPERTIES),e.register(s.TAB_VERSIONS),e.register(a.TAB_SCHEDULE),e.register(a.TAB_DEPENDENCIES),e.register(a.TAB_NOTES_AND_EVENTS),e.register(a.TAB_TAGS),e.register(a.TAB_WORKFLOW)}})},7916:(e,t,n)=>{"use strict";n.r(t),n.d(t,{ObjectTabManager:()=>p});var r=n(62167),o=n(84560);function i(e,t){for(var n=0;n=0;s--)(o=e[s])&&(a=(i<3?o(a):i>3?o(t,n,a):o(t,n))||a);return i>3&&a&&Object.defineProperty(t,n,a),a},h=function(e,t){if("object"===("undefined"==typeof Reflect?"undefined":d(Reflect))&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)},p=function(e){function t(){var e;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),(e=s(this,t)).type="object",e}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&u(e,t)}(t,e),n=t,r&&i(n.prototype,r),o&&i(n,o),Object.defineProperty(n,"prototype",{writable:!1}),n;var n,r,o}(r.TabManager);p=f([(0,o.injectable)(),h("design:paramtypes",[])],p)},83158:(e,t,n)=>{"use strict";n.r(t),n.d(t,{DataComponent:()=>f});var r=n(36198),o=n(79195),i=n(81690),a=n(54088),s=n(28518),l=n(59487),c=n(49566),u=n(11581),d=n(99401),f=function(e){var t,n=(0,i.useInjection)(a.serviceIds["DynamicTypes/ObjectDataRegistry"]),f=(0,c.useLocalizedFields)(),h=e.name,p=e.fieldType,m=e.fieldtype,g=(0,l.useFormList)(),y=void 0!==g,v=void 0!==f&&!y,b=[h],O=e.title,w=(0,u.useLanguageSelection)().currentLanguage;y&&(b=[g.field.name,h]),v&&(b=["localizedfields",f.locales[0],h],O=r.createElement(r.Fragment,null,O,r.createElement(d.Text,{type:"secondary"},"(",w.toUpperCase(),")")));var S=null!==(t=null!=p?p:m)&&void 0!==t?t:"unknown";if(!n.hasDynamicType(S))return r.createElement(s.Alert,{message:"Unknown data type: ".concat(S),type:"warning"});var x=n.getDynamicType(S),E=Object.assign(Object.assign({},e),{title:O,name:v?b:h});return x.isCollectionType?r.createElement(r.Fragment,null,x.getObjectDataComponent(E)):r.createElement(o.Form.Item,Object.assign({},x.getObjectDataFormItemProps(E),{name:b}),x.getObjectDataComponent(E))}},63581:(e,t,n)=>{"use strict";n.r(t),n.d(t,{LayoutComponent:()=>a});var r=n(36198),o=n(81690),i=n(54088),a=function(e){var t,n=(0,o.useInjection)(i.serviceIds["DynamicTypes/ObjectLayoutRegistry"]),a=e.fieldType,s=e.fieldtype,l=null!==(t=null!=a?a:s)&&void 0!==t?t:"unknown";return n.hasDynamicType(l)?n.getDynamicType(l).getObjectLayoutComponent(e):r.createElement("div",null,"Unknown layout type: ",l)}},25795:(e,t,n)=>{"use strict";n.r(t),n.d(t,{ObjectComponent:()=>a});var r=n(36198),o=n(63581),i=n(83158),a=function(e){var t=e.dataType,n=e.datatype,a=null!=t?t:n;if("data"===a)return r.createElement(i.DataComponent,Object.assign({},e));if("layout"===a)return r.createElement(o.LayoutComponent,Object.assign({},e));throw new Error("Unknown datatype: ".concat(a))}},40700:(e,t,n)=>{"use strict";n.r(t),n.d(t,{RootComponent:()=>s});var r=n(36198),o=n(25795),i=n(79195),a=n(28518),s=function(e){var t=e.layout;return r.createElement(a.ConfigProvider,{theme:{components:{Form:{itemMarginBottom:0}}}},r.createElement(i.Form,{initialValues:{myRandomTestValue:"Hello World"},layout:"vertical",onFinish:function(e){console.log(e)},preserve:!0},r.createElement(o.ObjectComponent,Object.assign({},t)),r.createElement(i.Form.Item,{style:{margin:12}},r.createElement(a.Button,{htmlType:"submit",type:"primary"},"Test submission"))))}},16658:(e,t,n)=>{"use strict";n.r(t),n.d(t,{EditContainer:()=>c,TAB_EDIT:()=>u});var r=n(36198),o=n(54663),i=n(40700),a=n(15008),s=n(46928),l=n(82755),c=function(){var e=(0,s.useElementContext)().id,t=(0,a.useDataObjectGetLayoutByIdQuery)({id:e}),n=t.data,o=t.isLoading;return void 0===n||o?r.createElement(l.Content,{loading:!0}):r.createElement(i.RootComponent,{layout:n})},u={key:"edit",label:"Edit",children:r.createElement(c,null),icon:r.createElement(o.Icon,{value:"edit"}),isDetachable:!0}},56903:(e,t,n)=>{"use strict";n.r(t),n.d(t,{FormListContext:()=>o,FormListProvider:()=>i});var r=n(36198),o=r.createContext(void 0),i=function(e){var t=e.field,n=e.operation,i=e.children;return(0,r.useMemo)((function(){return r.createElement(o.Provider,{value:{field:t,operation:n}},i)}),[t,n,i])}},59487:(e,t,n)=>{"use strict";n.r(t),n.d(t,{useFormList:()=>i});var r=n(36198),o=n(56903),i=function(){return(0,r.useContext)(o.FormListContext)}},23092:(e,t,n)=>{"use strict";n.r(t),n.d(t,{DataObjectEditorWidget:()=>c});var r=n(90455),o=n(51823),i=n(7496),a=n(36198),s=n(45048),l=n(83402),c={name:"data-object-editor",component:r.EditorContainer,titleComponent:o.TitleContainer,isModified:function(e){var t,n=e.getConfig(),r=(0,l.selectDataObjectById)(i.store.getState(),n.id);return null!==(t=null==r?void 0:r.modified)&&void 0!==t&&t},getContextProvider:function(e,t){var n=e.config;return a.createElement(s.DataObjectProvider,{id:n.id},t)}}},70047:(e,t,n)=>{"use strict";n.r(t),n.d(t,{useDataObjectDraft:()=>v});var r=n(7496),o=n(15008),i=n(83402),a=n(36198),s=n(86618),l=n(94941),c=n(2228),u=n(81690),d=n(54088),f=n(95973);function h(e){return h="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},h(e)}function p(){p=function(){return t};var e,t={},n=Object.prototype,r=n.hasOwnProperty,o=Object.defineProperty||function(e,t,n){e[t]=n.value},i="function"==typeof Symbol?Symbol:{},a=i.iterator||"@@iterator",s=i.asyncIterator||"@@asyncIterator",l=i.toStringTag||"@@toStringTag";function c(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{c({},"")}catch(e){c=function(e,t,n){return e[t]=n}}function u(e,t,n,r){var i=t&&t.prototype instanceof b?t:b,a=Object.create(i.prototype),s=new R(r||[]);return o(a,"_invoke",{value:_(e,n,s)}),a}function d(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}t.wrap=u;var f="suspendedStart",m="suspendedYield",g="executing",y="completed",v={};function b(){}function O(){}function w(){}var S={};c(S,a,(function(){return this}));var x=Object.getPrototypeOf,E=x&&x(x(D([])));E&&E!==n&&r.call(E,a)&&(S=E);var T=w.prototype=b.prototype=Object.create(S);function C(e){["next","throw","return"].forEach((function(t){c(e,t,(function(e){return this._invoke(t,e)}))}))}function P(e,t){function n(o,i,a,s){var l=d(e[o],e,i);if("throw"!==l.type){var c=l.arg,u=c.value;return u&&"object"==h(u)&&r.call(u,"__await")?t.resolve(u.__await).then((function(e){n("next",e,a,s)}),(function(e){n("throw",e,a,s)})):t.resolve(u).then((function(e){c.value=e,a(c)}),(function(e){return n("throw",e,a,s)}))}s(l.arg)}var i;o(this,"_invoke",{value:function(e,r){function o(){return new t((function(t,o){n(e,r,t,o)}))}return i=i?i.then(o,o):o()}})}function _(t,n,r){var o=f;return function(i,a){if(o===g)throw Error("Generator is already running");if(o===y){if("throw"===i)throw a;return{value:e,done:!0}}for(r.method=i,r.arg=a;;){var s=r.delegate;if(s){var l=k(s,r);if(l){if(l===v)continue;return l}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if(o===f)throw o=y,r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);o=g;var c=d(t,n,r);if("normal"===c.type){if(o=r.done?y:m,c.arg===v)continue;return{value:c.arg,done:r.done}}"throw"===c.type&&(o=y,r.method="throw",r.arg=c.arg)}}}function k(t,n){var r=n.method,o=t.iterator[r];if(o===e)return n.delegate=null,"throw"===r&&t.iterator.return&&(n.method="return",n.arg=e,k(t,n),"throw"===n.method)||"return"!==r&&(n.method="throw",n.arg=new TypeError("The iterator does not provide a '"+r+"' method")),v;var i=d(o,t.iterator,n.arg);if("throw"===i.type)return n.method="throw",n.arg=i.arg,n.delegate=null,v;var a=i.arg;return a?a.done?(n[t.resultName]=a.value,n.next=t.nextLoc,"return"!==n.method&&(n.method="next",n.arg=e),n.delegate=null,v):a:(n.method="throw",n.arg=new TypeError("iterator result is not an object"),n.delegate=null,v)}function j(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function A(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function R(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(j,this),this.reset(!0)}function D(t){if(t||""===t){var n=t[a];if(n)return n.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var o=-1,i=function n(){for(;++o=0;--i){var a=this.tryEntries[i],s=a.completion;if("root"===a.tryLoc)return o("end");if(a.tryLoc<=this.prev){var l=r.call(a,"catchLoc"),c=r.call(a,"finallyLoc");if(l&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),A(n),v}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;A(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),v}},t}function m(e,t,n,r,o,i,a){try{var s=e[i](a),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(r,o)}function g(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return y(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return y(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function y(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";n.r(t),n.d(t,{useDataObjectHelper:()=>f});var r=n(66777),o=n(7496),i=n(15008),a=n(38693),s=n(72743),l=n(76265);function c(e){return c="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},c(e)}function u(){u=function(){return t};var e,t={},n=Object.prototype,r=n.hasOwnProperty,o=Object.defineProperty||function(e,t,n){e[t]=n.value},i="function"==typeof Symbol?Symbol:{},a=i.iterator||"@@iterator",s=i.asyncIterator||"@@asyncIterator",l=i.toStringTag||"@@toStringTag";function d(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{d({},"")}catch(e){d=function(e,t,n){return e[t]=n}}function f(e,t,n,r){var i=t&&t.prototype instanceof b?t:b,a=Object.create(i.prototype),s=new R(r||[]);return o(a,"_invoke",{value:_(e,n,s)}),a}function h(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}t.wrap=f;var p="suspendedStart",m="suspendedYield",g="executing",y="completed",v={};function b(){}function O(){}function w(){}var S={};d(S,a,(function(){return this}));var x=Object.getPrototypeOf,E=x&&x(x(D([])));E&&E!==n&&r.call(E,a)&&(S=E);var T=w.prototype=b.prototype=Object.create(S);function C(e){["next","throw","return"].forEach((function(t){d(e,t,(function(e){return this._invoke(t,e)}))}))}function P(e,t){function n(o,i,a,s){var l=h(e[o],e,i);if("throw"!==l.type){var u=l.arg,d=u.value;return d&&"object"==c(d)&&r.call(d,"__await")?t.resolve(d.__await).then((function(e){n("next",e,a,s)}),(function(e){n("throw",e,a,s)})):t.resolve(d).then((function(e){u.value=e,a(u)}),(function(e){return n("throw",e,a,s)}))}s(l.arg)}var i;o(this,"_invoke",{value:function(e,r){function o(){return new t((function(t,o){n(e,r,t,o)}))}return i=i?i.then(o,o):o()}})}function _(t,n,r){var o=p;return function(i,a){if(o===g)throw Error("Generator is already running");if(o===y){if("throw"===i)throw a;return{value:e,done:!0}}for(r.method=i,r.arg=a;;){var s=r.delegate;if(s){var l=k(s,r);if(l){if(l===v)continue;return l}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if(o===p)throw o=y,r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);o=g;var c=h(t,n,r);if("normal"===c.type){if(o=r.done?y:m,c.arg===v)continue;return{value:c.arg,done:r.done}}"throw"===c.type&&(o=y,r.method="throw",r.arg=c.arg)}}}function k(t,n){var r=n.method,o=t.iterator[r];if(o===e)return n.delegate=null,"throw"===r&&t.iterator.return&&(n.method="return",n.arg=e,k(t,n),"throw"===n.method)||"return"!==r&&(n.method="throw",n.arg=new TypeError("The iterator does not provide a '"+r+"' method")),v;var i=h(o,t.iterator,n.arg);if("throw"===i.type)return n.method="throw",n.arg=i.arg,n.delegate=null,v;var a=i.arg;return a?a.done?(n[t.resultName]=a.value,n.next=t.nextLoc,"return"!==n.method&&(n.method="next",n.arg=e),n.delegate=null,v):a:(n.method="throw",n.arg=new TypeError("iterator result is not an object"),n.delegate=null,v)}function j(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function A(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function R(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(j,this),this.reset(!0)}function D(t){if(t||""===t){var n=t[a];if(n)return n.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var o=-1,i=function n(){for(;++o=0;--i){var a=this.tryEntries[i],s=a.completion;if("root"===a.tryLoc)return o("end");if(a.tryLoc<=this.prev){var l=r.call(a,"catchLoc"),c=r.call(a,"finallyLoc");if(l&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),A(n),v}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;A(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),v}},t}function d(e,t,n,r,o,i,a){try{var s=e[i](a),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(r,o)}var f=function(){var e=(0,r.useWidgetManager)(),t=e.openMainWidget,n=e.isMainWidgetOpen,c=(0,o.useAppDispatch)();function f(){var e;return e=u().mark((function e(r){var d,f,h,p;return u().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return d=r.config,f="data-object-".concat(d.id),n(f)||c(i.api.util.invalidateTags(a.invalidatingTags.DATA_OBJECT_DETAIL_ID(d.id))),e.next=5,o.store.dispatch(i.api.endpoints.dataObjectGetById.initiate({id:d.id}));case 5:if(h=e.sent,void 0!==(p=h.data)&&(0,l.checkElementPermission)(p.permissions,"view")){e.next=9;break}return e.abrupt("return");case 9:t({name:null==p?void 0:p.key,id:f,component:"data-object-editor",config:Object.assign(Object.assign({},d),{icon:(0,s.getElementIcon)(p,{value:"widget-default",type:"name"})})});case 10:case"end":return e.stop()}}),e)})),f=function(){var t=this,n=arguments;return new Promise((function(r,o){var i=e.apply(t,n);function a(e){d(i,r,o,a,s,"next",e)}function s(e){d(i,r,o,a,s,"throw",e)}a(void 0)}))},f.apply(this,arguments)}return{openDataObject:function(e){return f.apply(this,arguments)}}}},44994:(e,t,n)=>{"use strict";n.r(t),n.d(t,{useGlobalDataObjectContext:()=>i});var r=n(7496),o=n(33811),i=function(){var e=(0,r.useAppDispatch)();return{context:(0,r.useAppSelector)((function(e){return(0,o.selectContextByType)(e,"data-object")})),setContext:function(t){e((0,o.addGlobalContext)({type:"data-object",config:t}))},removeContext:function(){e((0,o.removeGlobalContext)("data-object"))}}}},65713:(e,t,n)=>{"use strict";n.r(t);n(52098),n(92776);var r=n(81690),o=n(54088),i=n(80237),a=n(14318);i.moduleSystem.registerModule({onInit:function(){r.container.get(o.serviceIds.widgetManager).registerWidget({name:"data-object-tree",component:a.TreeContainer})}})},8292:(e,t,n)=>{"use strict";n.r(t),n.d(t,{DataObjectTreeContextMenu:()=>p});var r=n(36198),o=n(30811),i=n(41642),a=n(54663),s=n(42029),l=n(2536),c=n(46946),u=n(13250),d=n(30312),f=n(83206),h=n(23219),p=function(e){var t=(0,o.useTranslation)().t,n=(0,s.useZipDownload)({type:"folder"}).createZipDownloadContextMeuItem,p=(0,l.useAddFolder)("data-object").addFolderContextMenuItem,m=(0,c.useRename)("data-object").renameContextMenuItem,g=(0,u.useDelete)("data-object").deleteContextMenuItem,y=(0,d.useRefreshTree)("data-object").refreshTreeContextMenuItem,v=(0,f.useCopyPaste)("data-object"),b=v.copyContextMenuItem,O=v.cutContextMenuItem,w=v.pasteContextMenuItem,S=v.pasteCutContextMenuItem,x=(0,h.useLock)("data-object"),E=x.lockContextMenuItem,T=x.lockAndPropagateContextMenuItem,C=x.unlockContextMenuItem,P=x.unlockAndPropagateContextMenuItem,_=[p(e.node),m(e.node),b(e.node),w(e.node),O(e.node),S(parseInt(e.node.id)),g(e.node),n(e.node),{label:t("element.tree.context-menu.advanced"),key:"advanced",icon:r.createElement(a.Icon,{value:"more"}),children:[{label:t("element.lock"),key:"advanced-lock",icon:r.createElement(a.Icon,{value:"lock-01"}),children:[E(e.node),T(e.node),C(e.node),P(e.node)]}]},y(e.node)];return r.createElement(r.Fragment,null,r.createElement(i.Dropdown,{menu:{items:_},trigger:["contextMenu"]},e.children))}},87584:(e,t,n)=>{"use strict";n.r(t),n.d(t,{useNodeApiHook:()=>c});var r=n(31322),o=n(15008),i=n(36198),a=n(72743);function s(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return l(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return l(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function l(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";n.r(t);var r=n(80237),o=n(81690),i=n(54088),a=n(8292);r.moduleSystem.registerModule({onInit:function(){o.container.get(i.serviceIds["App/ComponentRegistry/ComponentRegistry"]).register({name:"dataObjectTreeContextMenu",component:a.DataObjectTreeContextMenu})}})},97342:(e,t,n)=>{"use strict";n.r(t),n.d(t,{withDraggable:()=>i});var r=n(36198),o=n(61394),i=function(e){return function(t){var n,i=t.metaData.dataObject;return void 0===(null===(n=t.metaData)||void 0===n?void 0:n.dataObject)?r.createElement(e,Object.assign({},t)):r.createElement(o.Draggable,{info:{icon:i.icon.value,title:i.key,type:"data-object",data:Object.assign({},i)}},r.createElement(e,Object.assign({},t)))}}},55262:(e,t,n)=>{"use strict";n.r(t),n.d(t,{SearchContainer:()=>a});var r=n(36198),o=n(52631),i=n(30811),a=function(e){var t=(0,i.useTranslation)().t;return r.createElement(o.SearchContainer,{label:t("data-object.data-object-tree.search",{folderName:e.node.label}),node:e.node,total:e.total})}},14318:(e,t,n)=>{"use strict";n.r(t),n.d(t,{TreeContainer:()=>g});var r=n(31322),o=n(36198),i=n(87584),a=n(36699),s=n(55262),l=n(97342),c=n(14274),u=n(8292),d=n(1020);function f(e){return f="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},f(e)}function h(){h=function(){return t};var e,t={},n=Object.prototype,r=n.hasOwnProperty,o=Object.defineProperty||function(e,t,n){e[t]=n.value},i="function"==typeof Symbol?Symbol:{},a=i.iterator||"@@iterator",s=i.asyncIterator||"@@asyncIterator",l=i.toStringTag||"@@toStringTag";function c(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{c({},"")}catch(e){c=function(e,t,n){return e[t]=n}}function u(e,t,n,r){var i=t&&t.prototype instanceof b?t:b,a=Object.create(i.prototype),s=new R(r||[]);return o(a,"_invoke",{value:_(e,n,s)}),a}function d(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}t.wrap=u;var p="suspendedStart",m="suspendedYield",g="executing",y="completed",v={};function b(){}function O(){}function w(){}var S={};c(S,a,(function(){return this}));var x=Object.getPrototypeOf,E=x&&x(x(D([])));E&&E!==n&&r.call(E,a)&&(S=E);var T=w.prototype=b.prototype=Object.create(S);function C(e){["next","throw","return"].forEach((function(t){c(e,t,(function(e){return this._invoke(t,e)}))}))}function P(e,t){function n(o,i,a,s){var l=d(e[o],e,i);if("throw"!==l.type){var c=l.arg,u=c.value;return u&&"object"==f(u)&&r.call(u,"__await")?t.resolve(u.__await).then((function(e){n("next",e,a,s)}),(function(e){n("throw",e,a,s)})):t.resolve(u).then((function(e){c.value=e,a(c)}),(function(e){return n("throw",e,a,s)}))}s(l.arg)}var i;o(this,"_invoke",{value:function(e,r){function o(){return new t((function(t,o){n(e,r,t,o)}))}return i=i?i.then(o,o):o()}})}function _(t,n,r){var o=p;return function(i,a){if(o===g)throw Error("Generator is already running");if(o===y){if("throw"===i)throw a;return{value:e,done:!0}}for(r.method=i,r.arg=a;;){var s=r.delegate;if(s){var l=k(s,r);if(l){if(l===v)continue;return l}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if(o===p)throw o=y,r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);o=g;var c=d(t,n,r);if("normal"===c.type){if(o=r.done?y:m,c.arg===v)continue;return{value:c.arg,done:r.done}}"throw"===c.type&&(o=y,r.method="throw",r.arg=c.arg)}}}function k(t,n){var r=n.method,o=t.iterator[r];if(o===e)return n.delegate=null,"throw"===r&&t.iterator.return&&(n.method="return",n.arg=e,k(t,n),"throw"===n.method)||"return"!==r&&(n.method="throw",n.arg=new TypeError("The iterator does not provide a '"+r+"' method")),v;var i=d(o,t.iterator,n.arg);if("throw"===i.type)return n.method="throw",n.arg=i.arg,n.delegate=null,v;var a=i.arg;return a?a.done?(n[t.resultName]=a.value,n.next=t.nextLoc,"return"!==n.method&&(n.method="next",n.arg=e),n.delegate=null,v):a:(n.method="throw",n.arg=new TypeError("iterator result is not an object"),n.delegate=null,v)}function j(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function A(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function R(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(j,this),this.reset(!0)}function D(t){if(t||""===t){var n=t[a];if(n)return n.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var o=-1,i=function n(){for(;++o=0;--i){var a=this.tryEntries[i],s=a.completion;if("root"===a.tryLoc)return o("end");if(a.tryLoc<=this.prev){var l=r.call(a,"catchLoc"),c=r.call(a,"finallyLoc");if(l&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),A(n),v}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;A(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),v}},t}function p(e,t,n,r,o,i,a){try{var s=e[i](a),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(r,o)}var m=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&t.indexOf(r)<0&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var o=0;for(r=Object.getOwnPropertySymbols(e);o{"use strict";n.r(t),n.d(t,{useAddFolder:()=>g});var r=n(30811),o=n(77783),i=n(92908),a=n(54663),s=n(36198),l=n(30312),c=n(76265);function u(e){return u="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},u(e)}function d(){d=function(){return t};var e,t={},n=Object.prototype,r=n.hasOwnProperty,o=Object.defineProperty||function(e,t,n){e[t]=n.value},i="function"==typeof Symbol?Symbol:{},a=i.iterator||"@@iterator",s=i.asyncIterator||"@@asyncIterator",l=i.toStringTag||"@@toStringTag";function c(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{c({},"")}catch(e){c=function(e,t,n){return e[t]=n}}function f(e,t,n,r){var i=t&&t.prototype instanceof b?t:b,a=Object.create(i.prototype),s=new R(r||[]);return o(a,"_invoke",{value:_(e,n,s)}),a}function h(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}t.wrap=f;var p="suspendedStart",m="suspendedYield",g="executing",y="completed",v={};function b(){}function O(){}function w(){}var S={};c(S,a,(function(){return this}));var x=Object.getPrototypeOf,E=x&&x(x(D([])));E&&E!==n&&r.call(E,a)&&(S=E);var T=w.prototype=b.prototype=Object.create(S);function C(e){["next","throw","return"].forEach((function(t){c(e,t,(function(e){return this._invoke(t,e)}))}))}function P(e,t){function n(o,i,a,s){var l=h(e[o],e,i);if("throw"!==l.type){var c=l.arg,d=c.value;return d&&"object"==u(d)&&r.call(d,"__await")?t.resolve(d.__await).then((function(e){n("next",e,a,s)}),(function(e){n("throw",e,a,s)})):t.resolve(d).then((function(e){c.value=e,a(c)}),(function(e){return n("throw",e,a,s)}))}s(l.arg)}var i;o(this,"_invoke",{value:function(e,r){function o(){return new t((function(t,o){n(e,r,t,o)}))}return i=i?i.then(o,o):o()}})}function _(t,n,r){var o=p;return function(i,a){if(o===g)throw Error("Generator is already running");if(o===y){if("throw"===i)throw a;return{value:e,done:!0}}for(r.method=i,r.arg=a;;){var s=r.delegate;if(s){var l=k(s,r);if(l){if(l===v)continue;return l}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if(o===p)throw o=y,r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);o=g;var c=h(t,n,r);if("normal"===c.type){if(o=r.done?y:m,c.arg===v)continue;return{value:c.arg,done:r.done}}"throw"===c.type&&(o=y,r.method="throw",r.arg=c.arg)}}}function k(t,n){var r=n.method,o=t.iterator[r];if(o===e)return n.delegate=null,"throw"===r&&t.iterator.return&&(n.method="return",n.arg=e,k(t,n),"throw"===n.method)||"return"!==r&&(n.method="throw",n.arg=new TypeError("The iterator does not provide a '"+r+"' method")),v;var i=h(o,t.iterator,n.arg);if("throw"===i.type)return n.method="throw",n.arg=i.arg,n.delegate=null,v;var a=i.arg;return a?a.done?(n[t.resultName]=a.value,n.next=t.nextLoc,"return"!==n.method&&(n.method="next",n.arg=e),n.delegate=null,v):a:(n.method="throw",n.arg=new TypeError("iterator result is not an object"),n.delegate=null,v)}function j(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function A(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function R(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(j,this),this.reset(!0)}function D(t){if(t||""===t){var n=t[a];if(n)return n.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var o=-1,i=function n(){for(;++o=0;--i){var a=this.tryEntries[i],s=a.completion;if("root"===a.tryLoc)return o("end");if(a.tryLoc<=this.prev){var l=r.call(a,"catchLoc"),c=r.call(a,"finallyLoc");if(l&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),A(n),v}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;A(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),v}},t}function f(e,t,n,r,o,i,a){try{var s=e[i](a),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(r,o)}function h(e){return function(){var t=this,n=arguments;return new Promise((function(r,o){var i=e.apply(t,n);function a(e){f(i,r,o,a,s,"next",e)}function s(e){f(i,r,o,a,s,"throw",e)}a(void 0)}))}}function p(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return m(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return m(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function m(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";n.r(t),n.d(t,{useCopyPaste:()=>w});var r=n(93477),o=n(54663),i=n(36198),a=n(30811),s=n(30312),l=n(44845),c=n(51074),u=n(4194),d=n(21970),f=n(76265);function h(e){return h="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},h(e)}function p(){p=function(){return t};var e,t={},n=Object.prototype,r=n.hasOwnProperty,o=Object.defineProperty||function(e,t,n){e[t]=n.value},i="function"==typeof Symbol?Symbol:{},a=i.iterator||"@@iterator",s=i.asyncIterator||"@@asyncIterator",l=i.toStringTag||"@@toStringTag";function c(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{c({},"")}catch(e){c=function(e,t,n){return e[t]=n}}function u(e,t,n,r){var i=t&&t.prototype instanceof b?t:b,a=Object.create(i.prototype),s=new R(r||[]);return o(a,"_invoke",{value:_(e,n,s)}),a}function d(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}t.wrap=u;var f="suspendedStart",m="suspendedYield",g="executing",y="completed",v={};function b(){}function O(){}function w(){}var S={};c(S,a,(function(){return this}));var x=Object.getPrototypeOf,E=x&&x(x(D([])));E&&E!==n&&r.call(E,a)&&(S=E);var T=w.prototype=b.prototype=Object.create(S);function C(e){["next","throw","return"].forEach((function(t){c(e,t,(function(e){return this._invoke(t,e)}))}))}function P(e,t){function n(o,i,a,s){var l=d(e[o],e,i);if("throw"!==l.type){var c=l.arg,u=c.value;return u&&"object"==h(u)&&r.call(u,"__await")?t.resolve(u.__await).then((function(e){n("next",e,a,s)}),(function(e){n("throw",e,a,s)})):t.resolve(u).then((function(e){c.value=e,a(c)}),(function(e){return n("throw",e,a,s)}))}s(l.arg)}var i;o(this,"_invoke",{value:function(e,r){function o(){return new t((function(t,o){n(e,r,t,o)}))}return i=i?i.then(o,o):o()}})}function _(t,n,r){var o=f;return function(i,a){if(o===g)throw Error("Generator is already running");if(o===y){if("throw"===i)throw a;return{value:e,done:!0}}for(r.method=i,r.arg=a;;){var s=r.delegate;if(s){var l=k(s,r);if(l){if(l===v)continue;return l}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if(o===f)throw o=y,r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);o=g;var c=d(t,n,r);if("normal"===c.type){if(o=r.done?y:m,c.arg===v)continue;return{value:c.arg,done:r.done}}"throw"===c.type&&(o=y,r.method="throw",r.arg=c.arg)}}}function k(t,n){var r=n.method,o=t.iterator[r];if(o===e)return n.delegate=null,"throw"===r&&t.iterator.return&&(n.method="return",n.arg=e,k(t,n),"throw"===n.method)||"return"!==r&&(n.method="throw",n.arg=new TypeError("The iterator does not provide a '"+r+"' method")),v;var i=d(o,t.iterator,n.arg);if("throw"===i.type)return n.method="throw",n.arg=i.arg,n.delegate=null,v;var a=i.arg;return a?a.done?(n[t.resultName]=a.value,n.next=t.nextLoc,"return"!==n.method&&(n.method="next",n.arg=e),n.delegate=null,v):a:(n.method="throw",n.arg=new TypeError("iterator result is not an object"),n.delegate=null,v)}function j(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function A(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function R(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(j,this),this.reset(!0)}function D(t){if(t||""===t){var n=t[a];if(n)return n.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var o=-1,i=function n(){for(;++o=0;--i){var a=this.tryEntries[i],s=a.completion;if("root"===a.tryLoc)return o("end");if(a.tryLoc<=this.prev){var l=r.call(a,"catchLoc"),c=r.call(a,"finallyLoc");if(l&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),A(n),v}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;A(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),v}},t}function m(e){return function(e){if(Array.isArray(e))return O(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||b(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function g(e,t,n,r,o,i,a){try{var s=e[i](a),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(r,o)}function y(e){return function(){var t=this,n=arguments;return new Promise((function(r,o){var i=e.apply(t,n);function a(e){g(i,r,o,a,s,"next",e)}function s(e){g(i,r,o,a,s,"throw",e)}a(void 0)}))}}function v(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||b(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function b(e,t){if(e){if("string"==typeof e)return O(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?O(e,t):void 0}}function O(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";n.r(t),n.d(t,{useDelete:()=>w});var r=n(30811),o=n(77783),i=n(54663),a=n(36198),s=n(30312),l=n(5927),c=n(21970),u=n(51074),d=n(92908),f=n(76265);function h(e){return h="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},h(e)}function p(e){return function(e){if(Array.isArray(e))return O(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||b(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function m(){m=function(){return t};var e,t={},n=Object.prototype,r=n.hasOwnProperty,o=Object.defineProperty||function(e,t,n){e[t]=n.value},i="function"==typeof Symbol?Symbol:{},a=i.iterator||"@@iterator",s=i.asyncIterator||"@@asyncIterator",l=i.toStringTag||"@@toStringTag";function c(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{c({},"")}catch(e){c=function(e,t,n){return e[t]=n}}function u(e,t,n,r){var i=t&&t.prototype instanceof b?t:b,a=Object.create(i.prototype),s=new R(r||[]);return o(a,"_invoke",{value:_(e,n,s)}),a}function d(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}t.wrap=u;var f="suspendedStart",p="suspendedYield",g="executing",y="completed",v={};function b(){}function O(){}function w(){}var S={};c(S,a,(function(){return this}));var x=Object.getPrototypeOf,E=x&&x(x(D([])));E&&E!==n&&r.call(E,a)&&(S=E);var T=w.prototype=b.prototype=Object.create(S);function C(e){["next","throw","return"].forEach((function(t){c(e,t,(function(e){return this._invoke(t,e)}))}))}function P(e,t){function n(o,i,a,s){var l=d(e[o],e,i);if("throw"!==l.type){var c=l.arg,u=c.value;return u&&"object"==h(u)&&r.call(u,"__await")?t.resolve(u.__await).then((function(e){n("next",e,a,s)}),(function(e){n("throw",e,a,s)})):t.resolve(u).then((function(e){c.value=e,a(c)}),(function(e){return n("throw",e,a,s)}))}s(l.arg)}var i;o(this,"_invoke",{value:function(e,r){function o(){return new t((function(t,o){n(e,r,t,o)}))}return i=i?i.then(o,o):o()}})}function _(t,n,r){var o=f;return function(i,a){if(o===g)throw Error("Generator is already running");if(o===y){if("throw"===i)throw a;return{value:e,done:!0}}for(r.method=i,r.arg=a;;){var s=r.delegate;if(s){var l=k(s,r);if(l){if(l===v)continue;return l}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if(o===f)throw o=y,r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);o=g;var c=d(t,n,r);if("normal"===c.type){if(o=r.done?y:p,c.arg===v)continue;return{value:c.arg,done:r.done}}"throw"===c.type&&(o=y,r.method="throw",r.arg=c.arg)}}}function k(t,n){var r=n.method,o=t.iterator[r];if(o===e)return n.delegate=null,"throw"===r&&t.iterator.return&&(n.method="return",n.arg=e,k(t,n),"throw"===n.method)||"return"!==r&&(n.method="throw",n.arg=new TypeError("The iterator does not provide a '"+r+"' method")),v;var i=d(o,t.iterator,n.arg);if("throw"===i.type)return n.method="throw",n.arg=i.arg,n.delegate=null,v;var a=i.arg;return a?a.done?(n[t.resultName]=a.value,n.next=t.nextLoc,"return"!==n.method&&(n.method="next",n.arg=e),n.delegate=null,v):a:(n.method="throw",n.arg=new TypeError("iterator result is not an object"),n.delegate=null,v)}function j(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function A(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function R(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(j,this),this.reset(!0)}function D(t){if(t||""===t){var n=t[a];if(n)return n.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var o=-1,i=function n(){for(;++o=0;--i){var a=this.tryEntries[i],s=a.completion;if("root"===a.tryLoc)return o("end");if(a.tryLoc<=this.prev){var l=r.call(a,"catchLoc"),c=r.call(a,"finallyLoc");if(l&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),A(n),v}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;A(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),v}},t}function g(e,t,n,r,o,i,a){try{var s=e[i](a),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(r,o)}function y(e){return function(){var t=this,n=arguments;return new Promise((function(r,o){var i=e.apply(t,n);function a(e){g(i,r,o,a,s,"next",e)}function s(e){g(i,r,o,a,s,"throw",e)}a(void 0)}))}}function v(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||b(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function b(e,t){if(e){if("string"==typeof e)return O(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?O(e,t):void 0}}function O(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";n.r(t),n.d(t,{useLock:()=>d});var r=n(54663),o=n(36198),i=n(30811),a=n(44845);function s(e){return s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},s(e)}function l(){l=function(){return t};var e,t={},n=Object.prototype,r=n.hasOwnProperty,o=Object.defineProperty||function(e,t,n){e[t]=n.value},i="function"==typeof Symbol?Symbol:{},a=i.iterator||"@@iterator",c=i.asyncIterator||"@@asyncIterator",u=i.toStringTag||"@@toStringTag";function d(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{d({},"")}catch(e){d=function(e,t,n){return e[t]=n}}function f(e,t,n,r){var i=t&&t.prototype instanceof b?t:b,a=Object.create(i.prototype),s=new R(r||[]);return o(a,"_invoke",{value:_(e,n,s)}),a}function h(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}t.wrap=f;var p="suspendedStart",m="suspendedYield",g="executing",y="completed",v={};function b(){}function O(){}function w(){}var S={};d(S,a,(function(){return this}));var x=Object.getPrototypeOf,E=x&&x(x(D([])));E&&E!==n&&r.call(E,a)&&(S=E);var T=w.prototype=b.prototype=Object.create(S);function C(e){["next","throw","return"].forEach((function(t){d(e,t,(function(e){return this._invoke(t,e)}))}))}function P(e,t){function n(o,i,a,l){var c=h(e[o],e,i);if("throw"!==c.type){var u=c.arg,d=u.value;return d&&"object"==s(d)&&r.call(d,"__await")?t.resolve(d.__await).then((function(e){n("next",e,a,l)}),(function(e){n("throw",e,a,l)})):t.resolve(d).then((function(e){u.value=e,a(u)}),(function(e){return n("throw",e,a,l)}))}l(c.arg)}var i;o(this,"_invoke",{value:function(e,r){function o(){return new t((function(t,o){n(e,r,t,o)}))}return i=i?i.then(o,o):o()}})}function _(t,n,r){var o=p;return function(i,a){if(o===g)throw Error("Generator is already running");if(o===y){if("throw"===i)throw a;return{value:e,done:!0}}for(r.method=i,r.arg=a;;){var s=r.delegate;if(s){var l=k(s,r);if(l){if(l===v)continue;return l}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if(o===p)throw o=y,r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);o=g;var c=h(t,n,r);if("normal"===c.type){if(o=r.done?y:m,c.arg===v)continue;return{value:c.arg,done:r.done}}"throw"===c.type&&(o=y,r.method="throw",r.arg=c.arg)}}}function k(t,n){var r=n.method,o=t.iterator[r];if(o===e)return n.delegate=null,"throw"===r&&t.iterator.return&&(n.method="return",n.arg=e,k(t,n),"throw"===n.method)||"return"!==r&&(n.method="throw",n.arg=new TypeError("The iterator does not provide a '"+r+"' method")),v;var i=h(o,t.iterator,n.arg);if("throw"===i.type)return n.method="throw",n.arg=i.arg,n.delegate=null,v;var a=i.arg;return a?a.done?(n[t.resultName]=a.value,n.next=t.nextLoc,"return"!==n.method&&(n.method="next",n.arg=e),n.delegate=null,v):a:(n.method="throw",n.arg=new TypeError("iterator result is not an object"),n.delegate=null,v)}function j(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function A(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function R(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(j,this),this.reset(!0)}function D(t){if(t||""===t){var n=t[a];if(n)return n.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var o=-1,i=function n(){for(;++o=0;--i){var a=this.tryEntries[i],s=a.completion;if("root"===a.tryLoc)return o("end");if(a.tryLoc<=this.prev){var l=r.call(a,"catchLoc"),c=r.call(a,"finallyLoc");if(l&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),A(n),v}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;A(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),v}},t}function c(e,t,n,r,o,i,a){try{var s=e[i](a),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(r,o)}function u(e){return function(){var t=this,n=arguments;return new Promise((function(r,o){var i=e.apply(t,n);function a(e){c(i,r,o,a,s,"next",e)}function s(e){c(i,r,o,a,s,"throw",e)}a(void 0)}))}}var d=function(e){var t=(0,i.useTranslation)().t,n=(0,a.useElementApi)(e).elementPatch,s=function(){var e=u(l().mark((function e(t){return l().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,h(t,"self");case 2:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}(),c=function(){var e=u(l().mark((function e(t){return l().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,h(t,"propagate");case 2:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}(),d=function(){var e=u(l().mark((function e(t){return l().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,h(t,"");case 2:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}(),f=function(){var e=u(l().mark((function e(t){return l().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,h(t,"unlockPropagate");case 2:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}(),h=function(){var e=u(l().mark((function e(t,r){return l().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.prev=0,e.next=3,n({body:{data:[{id:t,locked:r}]}});case 3:e.next=8;break;case 5:e.prev=5,e.t0=e.catch(0),console.error("Error updating element lock",e.t0);case 8:case"end":return e.stop()}}),e,null,[[0,5]])})));return function(t,n){return e.apply(this,arguments)}}();return{lock:s,lockAndPropagate:c,unlock:d,unlockAndPropagate:f,lockContextMenuItem:function(e){return{label:t("element.lock"),key:"lock",icon:o.createElement(r.Icon,{value:"lock-01"}),hidden:e.isLocked,onClick:(n=u(l().mark((function t(){return l().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.next=2,s(parseInt(e.id));case 2:case"end":return t.stop()}}),t)}))),function(){return n.apply(this,arguments)})};var n},lockAndPropagateContextMenuItem:function(e){return{label:t("element.lock-and-propagate-to-children"),key:"lock-and-propagate-to-children",icon:o.createElement(r.Icon,{value:"file-lock-02"}),hidden:e.isLocked,onClick:(n=u(l().mark((function t(){return l().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.next=2,c(parseInt(e.id));case 2:case"end":return t.stop()}}),t)}))),function(){return n.apply(this,arguments)})};var n},unlockContextMenuItem:function(e){return{label:t("element.unlock"),key:"unlock",icon:o.createElement(r.Icon,{value:"lock-unlock-01"}),hidden:!e.isLocked,onClick:(n=u(l().mark((function t(){return l().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.next=2,d(parseInt(e.id));case 2:case"end":return t.stop()}}),t)}))),function(){return n.apply(this,arguments)})};var n},unlockAndPropagateContextMenuItem:function(e){return{label:t("element.unlock-and-propagate-to-children"),key:"unlock-and-propagate-to-children",icon:o.createElement(r.Icon,{value:"lock-unlock-01"}),hidden:!e.isLocked,onClick:(n=u(l().mark((function t(){return l().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.next=2,f(parseInt(e.id));case 2:case"end":return t.stop()}}),t)}))),function(){return n.apply(this,arguments)})};var n}}}},30312:(e,t,n)=>{"use strict";n.r(t),n.d(t,{useRefreshTree:()=>u});var r=n(7496),o=n(93477),i=n(15008),a=n(38693),s=n(54663),l=n(36198),c=n(30811),u=function(e){var t=(0,r.useAppDispatch)(),n=(0,c.useTranslation)().t,u=function(n){"asset"===e?t(o.api.util.invalidateTags(a.invalidatingTags.ASSET_TREE_ID(n))):"data-object"===e&&t(i.api.util.invalidateTags(a.invalidatingTags.DATA_OBJECT_TREE_ID(n)))};return{refreshTree:u,refreshTreeContextMenuItem:function(e){return{label:n("element.tree.refresh"),key:"refresh",icon:l.createElement(s.Icon,{value:"refresh-ccw-03"}),onClick:function(){u(parseInt(e.id))}}}}}},46946:(e,t,n)=>{"use strict";n.r(t),n.d(t,{useRename:()=>p});var r=n(30811),o=n(77783),i=n(54663),a=n(36198),s=n(30312),l=n(44845),c=n(76265);function u(e){return u="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},u(e)}function d(){d=function(){return t};var e,t={},n=Object.prototype,r=n.hasOwnProperty,o=Object.defineProperty||function(e,t,n){e[t]=n.value},i="function"==typeof Symbol?Symbol:{},a=i.iterator||"@@iterator",s=i.asyncIterator||"@@asyncIterator",l=i.toStringTag||"@@toStringTag";function c(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{c({},"")}catch(e){c=function(e,t,n){return e[t]=n}}function f(e,t,n,r){var i=t&&t.prototype instanceof b?t:b,a=Object.create(i.prototype),s=new R(r||[]);return o(a,"_invoke",{value:_(e,n,s)}),a}function h(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}t.wrap=f;var p="suspendedStart",m="suspendedYield",g="executing",y="completed",v={};function b(){}function O(){}function w(){}var S={};c(S,a,(function(){return this}));var x=Object.getPrototypeOf,E=x&&x(x(D([])));E&&E!==n&&r.call(E,a)&&(S=E);var T=w.prototype=b.prototype=Object.create(S);function C(e){["next","throw","return"].forEach((function(t){c(e,t,(function(e){return this._invoke(t,e)}))}))}function P(e,t){function n(o,i,a,s){var l=h(e[o],e,i);if("throw"!==l.type){var c=l.arg,d=c.value;return d&&"object"==u(d)&&r.call(d,"__await")?t.resolve(d.__await).then((function(e){n("next",e,a,s)}),(function(e){n("throw",e,a,s)})):t.resolve(d).then((function(e){c.value=e,a(c)}),(function(e){return n("throw",e,a,s)}))}s(l.arg)}var i;o(this,"_invoke",{value:function(e,r){function o(){return new t((function(t,o){n(e,r,t,o)}))}return i=i?i.then(o,o):o()}})}function _(t,n,r){var o=p;return function(i,a){if(o===g)throw Error("Generator is already running");if(o===y){if("throw"===i)throw a;return{value:e,done:!0}}for(r.method=i,r.arg=a;;){var s=r.delegate;if(s){var l=k(s,r);if(l){if(l===v)continue;return l}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if(o===p)throw o=y,r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);o=g;var c=h(t,n,r);if("normal"===c.type){if(o=r.done?y:m,c.arg===v)continue;return{value:c.arg,done:r.done}}"throw"===c.type&&(o=y,r.method="throw",r.arg=c.arg)}}}function k(t,n){var r=n.method,o=t.iterator[r];if(o===e)return n.delegate=null,"throw"===r&&t.iterator.return&&(n.method="return",n.arg=e,k(t,n),"throw"===n.method)||"return"!==r&&(n.method="throw",n.arg=new TypeError("The iterator does not provide a '"+r+"' method")),v;var i=h(o,t.iterator,n.arg);if("throw"===i.type)return n.method="throw",n.arg=i.arg,n.delegate=null,v;var a=i.arg;return a?a.done?(n[t.resultName]=a.value,n.next=t.nextLoc,"return"!==n.method&&(n.method="next",n.arg=e),n.delegate=null,v):a:(n.method="throw",n.arg=new TypeError("iterator result is not an object"),n.delegate=null,v)}function j(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function A(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function R(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(j,this),this.reset(!0)}function D(t){if(t||""===t){var n=t[a];if(n)return n.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var o=-1,i=function n(){for(;++o=0;--i){var a=this.tryEntries[i],s=a.completion;if("root"===a.tryLoc)return o("end");if(a.tryLoc<=this.prev){var l=r.call(a,"catchLoc"),c=r.call(a,"finallyLoc");if(l&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),A(n),v}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;A(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),v}},t}function f(e,t,n,r,o,i,a){try{var s=e[i](a),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(r,o)}function h(e){return function(){var t=this,n=arguments;return new Promise((function(r,o){var i=e.apply(t,n);function a(e){f(i,r,o,a,s,"next",e)}function s(e){f(i,r,o,a,s,"throw",e)}a(void 0)}))}}var p=function(e){var t=(0,r.useTranslation)().t,n=(0,o.useFormModal)(),u=(0,s.useRefreshTree)(e).refreshTree,f=(0,l.useElementApi)(e).elementPatch,p=function(e,r,o){var i;n.input({title:t("element.rename"),label:t("element.rename.label"),initialValue:r,rule:{required:!0,message:t("element.rename.validation")},onOk:(i=h(d().mark((function t(n){return d().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.next=2,m(e,n,o);case 2:case"end":return t.stop()}}),t)}))),function(e){return i.apply(this,arguments)})})},m=function(){var t=h(d().mark((function t(n,r,o){var i;return d().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return i=f({body:{data:[{id:n,key:r}]}}),t.prev=1,t.next=4,i;case 4:void 0!==o&&u(o),t.next=10;break;case 7:t.prev=7,t.t0=t.catch(1),console.error("Error renaming "+e,t.t0);case 10:case"end":return t.stop()}}),t,null,[[1,7]])})));return function(e,n,r){return t.apply(this,arguments)}}();return{rename:p,renameContextMenuItem:function(e){return{label:t("element.rename"),key:"rename",icon:a.createElement(i.Icon,{value:"type-square"}),hidden:!(0,c.checkElementPermission)(e.permissions,"rename")||e.isLocked,onClick:function(){var t=parseInt(e.id),n=void 0!==e.parentId?parseInt(e.parentId):void 0;p(t,e.label,n)}}},renameMutation:m}}},86618:(e,t,n)=>{"use strict";n.r(t),n.d(t,{usePropertiesDraft:()=>s,usePropertiesReducers:()=>a});var r=n(7496);function o(e){return function(e){if(Array.isArray(e))return i(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||function(e,t){if(!e)return;if("string"==typeof e)return i(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return i(e,t)}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function i(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";n.r(t),n.d(t,{useSchedulesDraft:()=>l,useSchedulesReducers:()=>s});var r=n(7496);function o(e){return function(e){if(Array.isArray(e))return i(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||function(e,t){if(!e)return;if("string"==typeof e)return i(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return i(e,t)}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function i(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n0,e}))}}},l=function(e,t,n,o,i,a,s){var l=(0,r.useAppDispatch)();return{schedules:null==t?void 0:t.schedules,updateSchedule:function(t){l(n({id:e,schedule:t}))},addSchedule:function(t){l(o({id:e,schedule:t}))},removeSchedule:function(t){l(i({id:e,schedule:t}))},setSchedules:function(t){l(a({id:e,schedules:t}))},resetSchedulesChanges:function(){l(s(e))}}}},95973:(e,t,n)=>{"use strict";n.r(t),n.d(t,{initialTabsStateValue:()=>o,useTabsDraft:()=>a,useTabsReducers:()=>i});var r=n(7496),o={activeTab:null},i=function(e){var t=function(t,n,r){var o=e.getSelectors().selectById(t,n);void 0!==o?t.entities[n]=r(Object.assign({},o)):console.error("Item with id ".concat(n," not found"))};return{setActiveTab:function(e,n){var r=n.payload,o=r.id,i=r.activeTab;t(e,o,(function(e){return e.activeTab=i,e}))}}},a=function(e,t,n){var o=(0,r.useAppDispatch)();return Object.assign(Object.assign({},t),{setActiveTab:function(t){return o(n({id:e,activeTab:t}))}})}},94941:(e,t,n)=>{"use strict";n.r(t),n.d(t,{useTrackableChangesDraft:()=>s,useTrackableChangesReducers:()=>a});var r=n(7496);function o(e){return o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},o(e)}function i(e,t,n){var r;return r=function(e,t){if("object"!=o(e)||!e)return e;var n=e[Symbol.toPrimitive];if(void 0!==n){var r=n.call(e,t||"default");if("object"!=o(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"),(t="symbol"==o(r)?r:r+"")in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var a=function(e){var t=function(t,n,r){var o=e.getSelectors().selectById(t,n);void 0!==o?t.entities[n]=r(Object.assign({},o)):console.error("Item with id ".concat(n," not found"))};return{resetChanges:function(e,n){t(e,n.payload,(function(e){return e.changes={},e.modifiedCells={},e.modified=!1,e}))},setModifiedCells:function(e,n){t(e,n.payload.id,(function(e){return e.modifiedCells=Object.assign(Object.assign({},e.modifiedCells),i({},n.payload.type,n.payload.modifiedCells)),e}))}}},s=function(e,t,n){var o=(0,r.useAppDispatch)();return{removeTrackedChanges:function(){o(t(e))},setModifiedCells:function(t,r){o(n({id:e,type:t,modifiedCells:r}))}}}},57595:(e,t,n)=>{"use strict";n.r(t),n.d(t,{DynamicTypeFieldFilterDatetimeComponent:()=>p});var r,o=n(36198),i=n(58664),a=n(47259),s=n(82640),l=n(27048),c=n(50906);function u(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return d(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return d(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function d(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";n.r(t),n.d(t,{DynamicTypeFieldFilterNumberComponent:()=>l});var r=n(36198),o=n(28518),i=n(50906);function a(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return s(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return s(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function s(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";n.r(t),n.d(t,{DynamicTypeFieldFilterSelectComponent:()=>c});var r=n(36198),o=n(58664),i=n(50906);function a(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||s(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function s(e,t){if(e){if("string"==typeof e)return l(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?l(e,t):void 0}}function l(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,a=!0,l=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return a=e.done,e},e:function(e){l=!0,i=e},f:function(){try{a||null==n.return||n.return()}finally{if(l)throw i}}}}(m.options);try{for(y.s();!(g=y.n()).done;){var v=g.value;p.push({label:v,value:v})}}catch(e){y.e(e)}finally{y.f()}}return(0,r.useEffect)((function(){h(u)}),[u]),r.createElement(o.Select,{onBlur:function(){l(t,f)},onChange:function(e){h(e)},options:p,style:{width:"100%"},value:f})}},77821:(e,t,n)=>{"use strict";n.r(t),n.d(t,{DynamicTypeFieldFilterTextComponent:()=>l});var r=n(36198),o=n(28518),i=n(50906);function a(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return s(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return s(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function s(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";function r(e){return r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},r(e)}function o(e,t){for(var n=0;ns});var s=i((function e(){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e)}))},48898:(e,t,n)=>{"use strict";n.r(t),n.d(t,{DynamicTypeFieldFilterRegistry:()=>f});var r=n(84560);function o(e,t){for(var n=0;n=0;s--)(o=e[s])&&(a=(i<3?o(a):i>3?o(t,n,a):o(t,n))||a);return i>3&&a&&Object.defineProperty(t,n,a),a},f=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),a(this,t,arguments)}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&c(e,t)}(t,e),n=t,(r=[{key:"getComponent",value:function(e,t){return this.getDynamicType(e).getFieldFilterComponent(t)}}])&&o(n.prototype,r),i&&o(n,i),Object.defineProperty(n,"prototype",{writable:!1}),n;var n,r,i}(n(68110).DynamicTypeRegistryAbstract);f=d([(0,r.injectable)()],f)},5180:(e,t,n)=>{"use strict";n.r(t),n.d(t,{DynamicTypeFieldFilterDatetime:()=>u});var r=n(36198),o=n(57595),i=n(84560);function a(e,t){for(var n=0;n=0;s--)(o=e[s])&&(a=(i<3?o(a):i>3?o(t,n,a):o(t,n))||a);return i>3&&a&&Object.defineProperty(t,n,a),a},u=function(){return e=function e(){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),this.id="datetime"},(t=[{key:"getFieldFilterComponent",value:function(e){return r.createElement(o.DynamicTypeFieldFilterDatetimeComponent,Object.assign({},e))}}])&&a(e.prototype,t),n&&a(e,n),Object.defineProperty(e,"prototype",{writable:!1}),e;var e,t,n}();u=c([(0,i.injectable)()],u)},73238:(e,t,n)=>{"use strict";n.r(t),n.d(t,{DynamicTypeFieldFilterNumber:()=>u});var r=n(36198),o=n(59080),i=n(84560);function a(e,t){for(var n=0;n=0;s--)(o=e[s])&&(a=(i<3?o(a):i>3?o(t,n,a):o(t,n))||a);return i>3&&a&&Object.defineProperty(t,n,a),a},u=function(){return e=function e(){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),this.id="id"},(t=[{key:"getFieldFilterComponent",value:function(e){return r.createElement(o.DynamicTypeFieldFilterNumberComponent,Object.assign({},e))}}])&&a(e.prototype,t),n&&a(e,n),Object.defineProperty(e,"prototype",{writable:!1}),e;var e,t,n}();u=c([(0,i.injectable)()],u)},1215:(e,t,n)=>{"use strict";n.r(t),n.d(t,{DynamicTypeFieldFilterSelect:()=>u});var r=n(36198),o=n(85044),i=n(84560);function a(e,t){for(var n=0;n=0;s--)(o=e[s])&&(a=(i<3?o(a):i>3?o(t,n,a):o(t,n))||a);return i>3&&a&&Object.defineProperty(t,n,a),a},u=function(){return e=function e(){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),this.id="select"},(t=[{key:"getFieldFilterComponent",value:function(e){return r.createElement(o.DynamicTypeFieldFilterSelectComponent,Object.assign({},e))}}])&&a(e.prototype,t),n&&a(e,n),Object.defineProperty(e,"prototype",{writable:!1}),e;var e,t,n}();u=c([(0,i.injectable)()],u)},89726:(e,t,n)=>{"use strict";n.r(t),n.d(t,{DynamicTypeFieldFilterText:()=>u});var r=n(36198),o=n(77821),i=n(84560);function a(e,t){for(var n=0;n=0;s--)(o=e[s])&&(a=(i<3?o(a):i>3?o(t,n,a):o(t,n))||a);return i>3&&a&&Object.defineProperty(t,n,a),a},u=function(){return e=function e(){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),this.id="input"},(t=[{key:"getFieldFilterComponent",value:function(e){return r.createElement(o.DynamicTypeFieldFilterTextComponent,Object.assign({},e))}}])&&a(e.prototype,t),n&&a(e,n),Object.defineProperty(e,"prototype",{writable:!1}),e;var e,t,n}();u=c([(0,i.injectable)()],u)},3098:(e,t,n)=>{"use strict";n.r(t),n.d(t,{TypeIconCell:()=>i});var r=n(36198),o=n(1704),i=function(e){var t=e.row.original.type;return r.createElement(r.Fragment,null,function(){switch(t){case"document":return r.createElement(o.IconView,{value:"mainDocument"});case"asset":return r.createElement(o.IconView,{value:"mainAsset"});case"dataObject":return r.createElement(o.IconView,{value:"mainObject"});default:return r.createElement("span",null,t)}}())}},76505:(e,t,n)=>{"use strict";n.r(t),n.d(t,{TypeIconCell:()=>i});var r=n(36198),o=n(1704),i=function(e){var t=e.row.original.type;return r.createElement(r.Fragment,null,function(){switch(t){case"metadata.input":return r.createElement(o.IconView,{value:"text-input"});case"metadata.textarea":return r.createElement(o.IconView,{value:"note"});case"metadata.document":return r.createElement(o.IconView,{value:"mainDocument"});case"metadata.asset":return r.createElement(o.IconView,{value:"mainAsset"});case"metadata.object":case"metadata.dataObject":return r.createElement(o.IconView,{value:"mainObject"});case"metadata.date":return r.createElement(o.IconView,{value:"calendar-date"});case"metadata.checkbox":return r.createElement(o.IconView,{value:"check-done-02"});default:return r.createElement("span",null)}}())}},2329:(e,t,n)=>{"use strict";n.r(t),n.d(t,{ValueCell:()=>s});var r=n(36198),o=n(81690),i=n(54088),a=n(28518),s=function(e){var t,n=e.row.original.type,s=(0,o.useInjection)(i.serviceIds["DynamicTypes/MetadataRegistry"]);try{t=s.getDynamicType(n)}catch(e){console.warn(e)}return r.createElement(r.Fragment,null,void 0===t?r.createElement(a.Alert,{message:"cell type not supported",type:"warning"}):t.getGridCellComponent(e))}},466:(e,t,n)=>{"use strict";n.r(t),n.d(t,{TypeIconCell:()=>i});var r=n(36198),o=n(1704),i=function(e){var t=e.row.original.type;return r.createElement(r.Fragment,null,function(){switch(t){case"text":return r.createElement(o.IconView,{value:"note"});case"document":return r.createElement(o.IconView,{value:"mainDocument"});case"asset":return r.createElement(o.IconView,{value:"mainAsset"});case"object":case"dataObject":return r.createElement(o.IconView,{value:"mainObject"});case"bool":return r.createElement(o.IconView,{value:"check-done-02"});case"select":return r.createElement(o.IconView,{value:"chevron-selector-vertical"});default:return r.createElement("span",null)}}())}},83146:(e,t,n)=>{"use strict";n.r(t),n.d(t,{ValueCell:()=>u});var r=n(36198),o=n(30509),i=n(9258),a=n(52613),s=n(10809),l=n(28518),c=n(43061),u=function(e){var t=e.row.original.type;return r.createElement(r.Fragment,null,function(){switch(t){case"select":return r.createElement(i.ValueSelectCell,Object.assign({},e));case"bool":return r.createElement(s.CheckboxCell,Object.assign({},e));case"text":return r.createElement(o.TextCell,Object.assign({},e));case"document":return r.createElement(a.ElementCell,Object.assign({},(0,c.addColumnConfig)(e,{allowedTypes:["document"]})));case"asset":return r.createElement(a.ElementCell,Object.assign({},(0,c.addColumnConfig)(e,{allowedTypes:["asset"]})));case"object":return r.createElement(a.ElementCell,Object.assign({},(0,c.addColumnConfig)(e,{allowedTypes:["data-object"]})));default:return r.createElement(l.Alert,{message:"cell type not supported",style:{display:"flex"},type:"warning"})}}())}},9258:(e,t,n)=>{"use strict";n.r(t),n.d(t,{ValueSelectCell:()=>a});var r=n(36198),o=n(81022),i=n(43061),a=function(e){var t,n={options:(null!==(t=e.row.original.config)&&void 0!==t?t:"").split(",").map((function(e){return{value:e,label:e}}))};return r.createElement(o.SelectCell,Object.assign({},(0,i.addColumnConfig)(e,n)))}},84185:(e,t,n)=>{"use strict";n.r(t),n.d(t,{ActionsCell:()=>s});var r=n(36198),o=n(81022),i=n(30811),a=n(43061),s=function(e){var t=(0,i.useTranslation)().t,n={options:[{value:"delete",label:t("schedule.version.delete")},{value:"publish",label:t("schedule.version.publish")}]};return r.createElement(o.SelectCell,Object.assign({},(0,a.addColumnConfig)(e,n)))}},56417:(e,t,n)=>{"use strict";var r;n.r(t),n.d(t,{useStyles:()=>o});var o=(0,n(3562).createStyles)((function(e){var t,n,o=e.css;e.token;return{select:o(r||(t=["\n .ant-select-selection-item {\n .version-id__select__label {\n .version-id__selection-item-hidden {\n display: none;\n }\n }\n }\n "],n||(n=t.slice(0)),r=Object.freeze(Object.defineProperties(t,{raw:{value:Object.freeze(n)}}))))}}))},68901:(e,t,n)=>{"use strict";n.r(t),n.d(t,{VersionIdCell:()=>u});var r=n(36198),o=n(83227),i=n(36609),a=n(81022),s=n(56417),l=n(43061),c=n(46928),u=function(e){var t=(0,c.useElementContext)(),n=t.id,u=t.elementType,d=(0,o.useVersionGetCollectionForElementByTypeAndIdQuery)({elementType:u,id:n,page:1,pageSize:9999}),f=d.data,h=[];d.isLoading||void 0===f||(h=f.items);var p=h.map((function(e){var t,n;return{value:e.id,displayValue:e.versionCount,label:r.createElement("div",{className:"version-id__select__label"},r.createElement("div",null,r.createElement("b",null,e.versionCount),r.createElement("span",{className:"version-id__selection-item-hidden"}," | ",null!==(t=e.user.name)&&void 0!==t?t:"not found")),r.createElement("div",{className:"version-id__selection-item-hidden"},(n=e.date,i.default.format(new Date(1e3*n),"datetime",i.default.language,{dateStyle:"short",timeStyle:"short"}))))}}));var m=(0,s.useStyles)().styles,g={options:p};return r.createElement("div",{className:m.select},r.createElement(a.SelectCell,Object.assign({},(0,l.addColumnConfig)(e,g))))}},80257:(e,t,n)=>{"use strict";n.r(t),n.d(t,{PreviewFieldLabelCell:()=>i});var r=n(36198),o=n(28518).Typography.Text,i=function(e){var t=e.getValue();return void 0===t?r.createElement("div",null):r.createElement("div",{className:"default-cell__content"},t.field,"string"==typeof t.metadataType?" (".concat(t.metadataType,")"):"","string"==typeof t.language?r.createElement(o,{type:"secondary"}," ",t.language):"")}},61539:(e,t,n)=>{"use strict";n.r(t),n.d(t,{AssetActionsCell:()=>s});var r=n(36198),o=n(27027),i=n(6786),a=n(28518),s=function(e){var t=e.row.original,n=(0,i.useAssetHelper)().openAsset;return(0,r.useMemo)((function(){return r.createElement("div",{className:"default-cell__content"},r.createElement(a.Flex,{className:"w-full",justify:"center"},r.createElement(o.IconButton,{icon:{value:"group"},onClick:function(){n({config:{id:t.id}})},type:"link"})))}),[t.id])}},93377:(e,t,n)=>{"use strict";n.r(t),n.d(t,{AssetPreviewCell:()=>a});var r=n(93364),o=n(6786),i=n(36198),a=function(e){var t=(0,o.useAssetHelper)().openAsset;return i.createElement(i.Fragment,null,void 0!==(null==e?void 0:e.getValue())&&i.createElement(r.ImageView,{onClick:function(){if(void 0!==e){var n=e.row.original;t({config:{id:n.id}})}},src:e.getValue(),style:{cursor:"pointer"}}))}},67476:(e,t,n)=>{"use strict";n.r(t),n.d(t,{CheckboxCell:()=>s});var r=n(36198),o=n(28518),i=n(42420),a=n(7079),s=function(e){var t,n,s=(0,a.useStyle)().styles,l=(0,i.useEditMode)(e).fireOnUpdateCellDataEvent,c=(0,r.useRef)(null);function u(){var e,t;l(null!==(t=null===(e=c.current.input)||void 0===e?void 0:e.checked)&&void 0!==t&&t)}var d=null===(t=e.column.columnDef.meta)||void 0===t?void 0:t.config;return void 0===d&&(d={align:"left"}),r.createElement("div",{className:[s["checkbox-cell"],null!==(n=s["align-"+d.align])&&void 0!==n?n:"","default-cell__content"].join(" ")},function(){var t;return r.createElement(o.Checkbox,{checked:e.getValue(),disabled:!1===(null===(t=e.column.columnDef.meta)||void 0===t?void 0:t.editable),onChange:u,ref:c})}())}},60680:(e,t,n)=>{"use strict";var r;n.r(t),n.d(t,{useStyle:()=>o});var o=(0,n(3562).createStyles)((function(e){var t,n;e.token;return{"date-cell":(0,e.css)(r||(t=["\n padding: 4px;\n "],n||(n=t.slice(0)),r=Object.freeze(Object.defineProperties(t,{raw:{value:Object.freeze(n)}}))))}}))},27155:(e,t,n)=>{"use strict";n.r(t),n.d(t,{DateCell:()=>h});var r=n(36198),o=n(50388),i=n(42420),a=n(28518),s=n(27484),l=n.n(s),c=n(60680),u=n(38532);function d(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return f(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return f(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function f(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";n.r(t),n.d(t,{ElementCellContent:()=>d});var r=n(36198),o=n(52645),i=n(54663),a=n(43843),s=n(31083),l=n(73990);function c(e){return function(e){if(Array.isArray(e))return u(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||function(e,t){if(!e)return;if("string"==typeof e)return u(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return u(e,t)}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function u(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";var r,o,i;function a(e,t){return t||(t=e.slice(0)),Object.freeze(Object.defineProperties(e,{raw:{value:Object.freeze(t)}}))}n.r(t),n.d(t,{useStyle:()=>s});var s=(0,n(3562).createStyles)((function(e){var t=e.css;e.token;return{"element-cell":t(r||(r=a(["\n padding: 3px;\n "]))),link:t(o||(o=a(["\n display: flex;\n \n .ant-tag {\n overflow: hidden;\n text-overflow: ellipsis;\n max-width: 100%;\n cursor: pointer;\n }\n "]))),dropTargetIcon:t(i||(i=a(["\n margin-left: auto;\n margin-top: 4px\n "])))}}))},81373:(e,t,n)=>{"use strict";n.r(t),n.d(t,{ElementCell:()=>s});var r=n(36198),o=n(79301),i=n(45817),a=n(43843),s=function(e){var t,n,s,l,c=(0,a.useStyle)().styles,u=e.column,d=null===(n=null===(t=e.column.columnDef.meta)||void 0===t?void 0:t.editable)||void 0===n||n,f=null!==(l=null===(s=u.columnDef.meta)||void 0===s?void 0:s.config)&&void 0!==l?l:{allowedTypes:["asset","data-object","document"]},h="function"==typeof f.allowedTypes?f.allowedTypes(e):f.allowedTypes;return r.createElement(o.Droppable,{className:[c["element-cell"],"default-cell__content"].join(" "),isValidContext:function(e){return h.includes(e.type)&&d},onDrop:function(t){var n,r,o,i=t.data;void 0!==(null===(n=e.column.columnDef.meta)||void 0===n?void 0:n.editable)&&void 0!==(null===(r=e.table.options.meta)||void 0===r?void 0:r.onUpdateCellData)&&(null===(o=e.table.options.meta)||void 0===o||o.onUpdateCellData({rowIndex:e.row.index,columnId:e.column.id,value:i,rowData:e.row.original}))}},r.createElement(i.ElementCellContent,Object.assign({},e)))}},40521:(e,t,n)=>{"use strict";var r;n.r(t),n.d(t,{useStyle:()=>o});var o=(0,n(3562).createStyles)((function(e){var t,n,o=e.token;return{cell:(0,e.css)(r||(t=["\n display: flex;\n align-items: center;\n justify-content: center;\n width: 100%;\n \n .pimcore-icon {\n color: ",";\n cursor: pointer;\n \n &:hover {\n color: ",";\n }\n }\n "],n||(n=t.slice(0)),r=Object.freeze(Object.defineProperties(t,{raw:{value:Object.freeze(n)}}))),o.colorPrimary,o.colorPrimaryHover)}}))},29307:(e,t,n)=>{"use strict";n.r(t),n.d(t,{OpenElementCell:()=>f});var r=n(36198),o=n(40521),i=n(54663),a=n(38576),s=n(71816),l=n(73990);function c(e){return c="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},c(e)}function u(){u=function(){return t};var e,t={},n=Object.prototype,r=n.hasOwnProperty,o=Object.defineProperty||function(e,t,n){e[t]=n.value},i="function"==typeof Symbol?Symbol:{},a=i.iterator||"@@iterator",s=i.asyncIterator||"@@asyncIterator",l=i.toStringTag||"@@toStringTag";function d(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{d({},"")}catch(e){d=function(e,t,n){return e[t]=n}}function f(e,t,n,r){var i=t&&t.prototype instanceof b?t:b,a=Object.create(i.prototype),s=new R(r||[]);return o(a,"_invoke",{value:_(e,n,s)}),a}function h(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}t.wrap=f;var p="suspendedStart",m="suspendedYield",g="executing",y="completed",v={};function b(){}function O(){}function w(){}var S={};d(S,a,(function(){return this}));var x=Object.getPrototypeOf,E=x&&x(x(D([])));E&&E!==n&&r.call(E,a)&&(S=E);var T=w.prototype=b.prototype=Object.create(S);function C(e){["next","throw","return"].forEach((function(t){d(e,t,(function(e){return this._invoke(t,e)}))}))}function P(e,t){function n(o,i,a,s){var l=h(e[o],e,i);if("throw"!==l.type){var u=l.arg,d=u.value;return d&&"object"==c(d)&&r.call(d,"__await")?t.resolve(d.__await).then((function(e){n("next",e,a,s)}),(function(e){n("throw",e,a,s)})):t.resolve(d).then((function(e){u.value=e,a(u)}),(function(e){return n("throw",e,a,s)}))}s(l.arg)}var i;o(this,"_invoke",{value:function(e,r){function o(){return new t((function(t,o){n(e,r,t,o)}))}return i=i?i.then(o,o):o()}})}function _(t,n,r){var o=p;return function(i,a){if(o===g)throw Error("Generator is already running");if(o===y){if("throw"===i)throw a;return{value:e,done:!0}}for(r.method=i,r.arg=a;;){var s=r.delegate;if(s){var l=k(s,r);if(l){if(l===v)continue;return l}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if(o===p)throw o=y,r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);o=g;var c=h(t,n,r);if("normal"===c.type){if(o=r.done?y:m,c.arg===v)continue;return{value:c.arg,done:r.done}}"throw"===c.type&&(o=y,r.method="throw",r.arg=c.arg)}}}function k(t,n){var r=n.method,o=t.iterator[r];if(o===e)return n.delegate=null,"throw"===r&&t.iterator.return&&(n.method="return",n.arg=e,k(t,n),"throw"===n.method)||"return"!==r&&(n.method="throw",n.arg=new TypeError("The iterator does not provide a '"+r+"' method")),v;var i=h(o,t.iterator,n.arg);if("throw"===i.type)return n.method="throw",n.arg=i.arg,n.delegate=null,v;var a=i.arg;return a?a.done?(n[t.resultName]=a.value,n.next=t.nextLoc,"return"!==n.method&&(n.method="next",n.arg=e),n.delegate=null,v):a:(n.method="throw",n.arg=new TypeError("iterator result is not an object"),n.delegate=null,v)}function j(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function A(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function R(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(j,this),this.reset(!0)}function D(t){if(t||""===t){var n=t[a];if(n)return n.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var o=-1,i=function n(){for(;++o=0;--i){var a=this.tryEntries[i],s=a.completion;if("root"===a.tryLoc)return o("end");if(a.tryLoc<=this.prev){var l=r.call(a,"catchLoc"),c=r.call(a,"finallyLoc");if(l&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),A(n),v}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;A(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),v}},t}function d(e,t,n,r,o,i,a){try{var s=e[i](a),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(r,o)}var f=function(e){var t,n=(0,o.useStyle)().styles,c=(0,l.useElementHelper)(),f=c.openElement,h=(0,c.mapToElementType)(e.row.original.type),p=e.row.original.id;return r.createElement("div",{className:n.cell},(t=function(){var e,t=(e=u().mark((function e(){return u().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,f({id:p,type:h});case 2:case"end":return e.stop()}}),e)})),function(){var t=this,n=arguments;return new Promise((function(r,o){var i=e.apply(t,n);function a(e){d(i,r,o,a,s,"next",e)}function s(e){d(i,r,o,a,s,"throw",e)}a(void 0)}))});return function(){return t.apply(this,arguments)}}(),r.createElement(s.Button,{icon:r.createElement(i.Icon,{value:"group"}),onClick:t,onKeyDown:a.onKeyEnterExecuteClick,type:"link"})))}},98197:(e,t,n)=>{"use strict";var r;n.r(t),n.d(t,{useStyles:()=>o});var o=(0,n(3562).createStyles)((function(e){var t,n;return{"select-cell":(0,e.css)(r||(t=["\n padding: 4px;\n\n .ant-select {\n width: 100%;\n }\n "],n||(n=t.slice(0)),r=Object.freeze(Object.defineProperties(t,{raw:{value:Object.freeze(n)}}))))}}))},82113:(e,t,n)=>{"use strict";n.r(t),n.d(t,{SelectCell:()=>f});var r=n(36198),o=n(93967),i=n.n(o),a=n(42420),s=n(58664),l=n(98197);function c(e){return c="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},c(e)}function u(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return d(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return d(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function d(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";var r;n.r(t),n.d(t,{useStyle:()=>o});var o=(0,n(3562).createStyles)((function(e){var t,n;e.token;return{"text-cell":(0,e.css)(r||(t=["\n padding: 4px;\n "],n||(n=t.slice(0)),r=Object.freeze(Object.defineProperties(t,{raw:{value:Object.freeze(n)}}))))}}))},28838:(e,t,n)=>{"use strict";n.r(t),n.d(t,{TextCell:()=>s});var r=n(36198),o=n(28518),i=n(73209),a=n(42420),s=function(e){var t=(0,a.useEditMode)(e),n=t.isInEditMode,s=t.disableEditMode,l=t.fireOnUpdateCellDataEvent,c=(0,i.useStyle)().styles,u=(0,r.useRef)(null);function d(){var e,t;l(null!==(t=null===(e=u.current.input)||void 0===e?void 0:e.value)&&void 0!==t?t:""),s()}function f(e){"Enter"===e.key&&d()}function h(){d()}return(0,r.useEffect)((function(){var e;n&&(null===(e=u.current)||void 0===e||e.focus())}),[n]),r.createElement("div",{className:[c["text-cell"],"default-cell__content"].join(" ")},n?r.createElement(o.Input,{defaultValue:e.getValue(),onBlur:h,onKeyDown:f,ref:u,type:"text"}):r.createElement(r.Fragment,null,e.getValue()))}},5025:(e,t,n)=>{"use strict";var r;n.r(t),n.d(t,{useStyle:()=>o});var o=(0,n(3562).createStyles)((function(e){var t,n;e.token;return{"textarea-cell":(0,e.css)(r||(t=["\n padding: 4px;\n "],n||(n=t.slice(0)),r=Object.freeze(Object.defineProperties(t,{raw:{value:Object.freeze(n)}}))))}}))},24441:(e,t,n)=>{"use strict";n.r(t),n.d(t,{TextareaCell:()=>u});var r=n(36198),o=n(42420),i=n(5025),a=n(96330),s=n(38576);function l(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return c(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return c(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function c(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";var r;n.r(t),n.d(t,{useStyle:()=>o});var o=(0,n(3562).createStyles)((function(e){var t,n;e.token;return{"time-cell":(0,e.css)(r||(t=["\n padding: 4px;\n "],n||(n=t.slice(0)),r=Object.freeze(Object.defineProperties(t,{raw:{value:Object.freeze(n)}}))))}}))},94554:(e,t,n)=>{"use strict";n.r(t),n.d(t,{TimeCell:()=>h});var r=n(36198),o=n(42420),i=n(28518),a=n(27484),s=n.n(a),l=n(67494),c=n(27118),u=n(78968);function d(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return f(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return f(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function f(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";n.r(t),n.d(t,{DynamicTypeGridCellAbstract:()=>h});var r=n(68110),o=n(84560);function i(e,t){for(var n=0;n=0;s--)(o=e[s])&&(a=(i<3?o(a):i>3?o(t,n,a):o(t,n))||a);return i>3&&a&&Object.defineProperty(t,n,a),a},h=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),s(this,t,arguments)}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&u(e,t)}(t,e),n=t,r&&i(n.prototype,r),o&&i(n,o),Object.defineProperty(n,"prototype",{writable:!1}),n;var n,r,o}(r.DynamicTypeAbstract);h=f([(0,o.injectable)()],h)},18428:(e,t,n)=>{"use strict";n.r(t),n.d(t,{DynamicTypeGridCellRegistry:()=>f});var r=n(84560);function o(e,t){for(var n=0;n=0;s--)(o=e[s])&&(a=(i<3?o(a):i>3?o(t,n,a):o(t,n))||a);return i>3&&a&&Object.defineProperty(t,n,a),a},f=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),a(this,t,arguments)}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&c(e,t)}(t,e),n=t,(r=[{key:"getGridCellComponent",value:function(e,t){return this.getDynamicType(e).getGridCellComponent(t)}}])&&o(n.prototype,r),i&&o(n,i),Object.defineProperty(n,"prototype",{writable:!1}),n;var n,r,i}(n(68110).DynamicTypeRegistryAbstract);f=d([(0,r.injectable)()],f)},87588:(e,t,n)=>{"use strict";n.r(t),n.d(t,{DynamicTypeGridCellDependencyTypeIcon:()=>m});var r=n(36198),o=n(64374),i=n(84560),a=n(3098);function s(e,t){for(var n=0;n=0;s--)(o=e[s])&&(a=(i<3?o(a):i>3?o(t,n,a):o(t,n))||a);return i>3&&a&&Object.defineProperty(t,n,a),a},m=function(e){function t(){var e;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),(e=c(this,t,arguments)).id="dependency-type-icon",e}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&f(e,t)}(t,e),n=t,(o=[{key:"getGridCellComponent",value:function(e){return r.createElement(a.TypeIconCell,Object.assign({},e))}}])&&s(n.prototype,o),i&&s(n,i),Object.defineProperty(n,"prototype",{writable:!1}),n;var n,o,i}(o.DynamicTypeGridCellAbstract);m=p([(0,i.injectable)()],m)},49136:(e,t,n)=>{"use strict";n.r(t),n.d(t,{DynamicTypeGridCellAssetCustomMetadataIcon:()=>m});var r=n(36198),o=n(64374),i=n(84560),a=n(76505);function s(e,t){for(var n=0;n=0;s--)(o=e[s])&&(a=(i<3?o(a):i>3?o(t,n,a):o(t,n))||a);return i>3&&a&&Object.defineProperty(t,n,a),a},m=function(e){function t(){var e;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),(e=c(this,t,arguments)).id="asset-custom-metadata-icon",e}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&f(e,t)}(t,e),n=t,(o=[{key:"getGridCellComponent",value:function(e){return r.createElement(a.TypeIconCell,Object.assign({},e))}}])&&s(n.prototype,o),i&&s(n,i),Object.defineProperty(n,"prototype",{writable:!1}),n;var n,o,i}(o.DynamicTypeGridCellAbstract);m=p([(0,i.injectable)()],m)},37640:(e,t,n)=>{"use strict";n.r(t),n.d(t,{DynamicTypeGridCellAssetCustomMetadataValue:()=>m});var r=n(36198),o=n(64374),i=n(84560),a=n(2329);function s(e,t){for(var n=0;n=0;s--)(o=e[s])&&(a=(i<3?o(a):i>3?o(t,n,a):o(t,n))||a);return i>3&&a&&Object.defineProperty(t,n,a),a},m=function(e){function t(){var e;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),(e=c(this,t,arguments)).id="asset-custom-metadata-value",e}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&f(e,t)}(t,e),n=t,(o=[{key:"getGridCellComponent",value:function(e){return r.createElement(a.ValueCell,Object.assign({},e))}}])&&s(n.prototype,o),i&&s(n,i),Object.defineProperty(n,"prototype",{writable:!1}),n;var n,o,i}(o.DynamicTypeGridCellAbstract);m=p([(0,i.injectable)()],m)},79964:(e,t,n)=>{"use strict";n.r(t),n.d(t,{DynamicTypeGridCellPropertyIcon:()=>m});var r=n(36198),o=n(64374),i=n(84560),a=n(466);function s(e,t){for(var n=0;n=0;s--)(o=e[s])&&(a=(i<3?o(a):i>3?o(t,n,a):o(t,n))||a);return i>3&&a&&Object.defineProperty(t,n,a),a},m=function(e){function t(){var e;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),(e=c(this,t,arguments)).id="property-icon",e}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&f(e,t)}(t,e),n=t,(o=[{key:"getGridCellComponent",value:function(e){return r.createElement(a.TypeIconCell,Object.assign({},e))}}])&&s(n.prototype,o),i&&s(n,i),Object.defineProperty(n,"prototype",{writable:!1}),n;var n,o,i}(o.DynamicTypeGridCellAbstract);m=p([(0,i.injectable)()],m)},46415:(e,t,n)=>{"use strict";n.r(t),n.d(t,{DynamicTypeGridCellPropertyValue:()=>m});var r=n(36198),o=n(64374),i=n(84560),a=n(83146);function s(e,t){for(var n=0;n=0;s--)(o=e[s])&&(a=(i<3?o(a):i>3?o(t,n,a):o(t,n))||a);return i>3&&a&&Object.defineProperty(t,n,a),a},m=function(e){function t(){var e;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),(e=c(this,t,arguments)).id="property-value",e}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&f(e,t)}(t,e),n=t,(o=[{key:"getGridCellComponent",value:function(e){return r.createElement(a.ValueCell,Object.assign({},e))}}])&&s(n.prototype,o),i&&s(n,i),Object.defineProperty(n,"prototype",{writable:!1}),n;var n,o,i}(o.DynamicTypeGridCellAbstract);m=p([(0,i.injectable)()],m)},65022:(e,t,n)=>{"use strict";n.r(t),n.d(t,{DynamicTypeGridCellScheduleActionsSelect:()=>m});var r=n(36198),o=n(64374),i=n(84560),a=n(84185);function s(e,t){for(var n=0;n=0;s--)(o=e[s])&&(a=(i<3?o(a):i>3?o(t,n,a):o(t,n))||a);return i>3&&a&&Object.defineProperty(t,n,a),a},m=function(e){function t(){var e;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),(e=c(this,t,arguments)).id="schedule-actions-select",e}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&f(e,t)}(t,e),n=t,(o=[{key:"getGridCellComponent",value:function(e){return r.createElement(a.ActionsCell,Object.assign({},e))}}])&&s(n.prototype,o),i&&s(n,i),Object.defineProperty(n,"prototype",{writable:!1}),n;var n,o,i}(o.DynamicTypeGridCellAbstract);m=p([(0,i.injectable)()],m)},92248:(e,t,n)=>{"use strict";n.r(t),n.d(t,{DynamicTypeGridCellVersionIdSelect:()=>m});var r=n(36198),o=n(64374),i=n(84560),a=n(68901);function s(e,t){for(var n=0;n=0;s--)(o=e[s])&&(a=(i<3?o(a):i>3?o(t,n,a):o(t,n))||a);return i>3&&a&&Object.defineProperty(t,n,a),a},m=function(e){function t(){var e;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),(e=c(this,t,arguments)).id="version-id-select",e}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&f(e,t)}(t,e),n=t,(o=[{key:"getGridCellComponent",value:function(e){return r.createElement(a.VersionIdCell,Object.assign({},e))}}])&&s(n.prototype,o),i&&s(n,i),Object.defineProperty(n,"prototype",{writable:!1}),n;var n,o,i}(o.DynamicTypeGridCellAbstract);m=p([(0,i.injectable)()],m)},20314:(e,t,n)=>{"use strict";n.r(t),n.d(t,{DynamicTypeGridCellAssetVersionPreviewFieldLabel:()=>m});var r=n(36198),o=n(64374),i=n(84560),a=n(80257);function s(e,t){for(var n=0;n=0;s--)(o=e[s])&&(a=(i<3?o(a):i>3?o(t,n,a):o(t,n))||a);return i>3&&a&&Object.defineProperty(t,n,a),a},m=function(e){function t(){var e;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),(e=c(this,t,arguments)).id="asset-version-preview-field-label",e}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&f(e,t)}(t,e),n=t,(o=[{key:"getGridCellComponent",value:function(e){return r.createElement(a.PreviewFieldLabelCell,Object.assign({},e))}}])&&s(n.prototype,o),i&&s(n,i),Object.defineProperty(n,"prototype",{writable:!1}),n;var n,o,i}(o.DynamicTypeGridCellAbstract);m=p([(0,i.injectable)()],m)},97637:(e,t,n)=>{"use strict";n.r(t),n.d(t,{DynamicTypeGridCellAssetActions:()=>m});var r=n(36198),o=n(64374),i=n(84560),a=n(61539);function s(e,t){for(var n=0;n=0;s--)(o=e[s])&&(a=(i<3?o(a):i>3?o(t,n,a):o(t,n))||a);return i>3&&a&&Object.defineProperty(t,n,a),a},m=function(e){function t(){var e;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),(e=c(this,t,arguments)).id="asset-actions",e}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&f(e,t)}(t,e),n=t,(o=[{key:"getGridCellComponent",value:function(e){return r.createElement(a.AssetActionsCell,Object.assign({},e))}}])&&s(n.prototype,o),i&&s(n,i),Object.defineProperty(n,"prototype",{writable:!1}),n;var n,o,i}(o.DynamicTypeGridCellAbstract);m=p([(0,i.injectable)()],m)},24065:(e,t,n)=>{"use strict";n.r(t),n.d(t,{DynamicTypeGridCellAssetLink:()=>g});var r=n(36198),o=n(64374),i=n(84560),a=n(81373),s=n(43061);function l(e,t){for(var n=0;n=0;s--)(o=e[s])&&(a=(i<3?o(a):i>3?o(t,n,a):o(t,n))||a);return i>3&&a&&Object.defineProperty(t,n,a),a},g=function(e){function t(){var e;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),(e=u(this,t,arguments)).id="asset-link",e}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&h(e,t)}(t,e),n=t,(o=[{key:"getGridCellComponent",value:function(e){return r.createElement(a.ElementCell,Object.assign({},(0,s.addColumnConfig)(e,{allowedTypes:["asset"]})))}}])&&l(n.prototype,o),i&&l(n,i),Object.defineProperty(n,"prototype",{writable:!1}),n;var n,o,i}(o.DynamicTypeGridCellAbstract);g=m([(0,i.injectable)()],g)},93268:(e,t,n)=>{"use strict";n.r(t),n.d(t,{DynamicTypeGridCellAssetPreview:()=>m});var r=n(36198),o=n(64374),i=n(84560),a=n(93377);function s(e,t){for(var n=0;n=0;s--)(o=e[s])&&(a=(i<3?o(a):i>3?o(t,n,a):o(t,n))||a);return i>3&&a&&Object.defineProperty(t,n,a),a},m=function(e){function t(){var e;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),(e=c(this,t,arguments)).id="asset-preview",e}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&f(e,t)}(t,e),n=t,(o=[{key:"getGridCellComponent",value:function(e){return r.createElement(a.AssetPreviewCell,Object.assign({},e))}}])&&s(n.prototype,o),i&&s(n,i),Object.defineProperty(n,"prototype",{writable:!1}),n;var n,o,i}(o.DynamicTypeGridCellAbstract);m=p([(0,i.injectable)()],m)},97479:(e,t,n)=>{"use strict";n.r(t),n.d(t,{DynamicTypeGridCellCheckbox:()=>m});var r=n(36198),o=n(64374),i=n(84560),a=n(67476);function s(e,t){for(var n=0;n=0;s--)(o=e[s])&&(a=(i<3?o(a):i>3?o(t,n,a):o(t,n))||a);return i>3&&a&&Object.defineProperty(t,n,a),a},m=function(e){function t(){var e;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),(e=c(this,t,arguments)).id="checkbox",e}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&f(e,t)}(t,e),n=t,(o=[{key:"getGridCellComponent",value:function(e){return r.createElement(a.CheckboxCell,Object.assign({},e))}}])&&s(n.prototype,o),i&&s(n,i),Object.defineProperty(n,"prototype",{writable:!1}),n;var n,o,i}(o.DynamicTypeGridCellAbstract);m=p([(0,i.injectable)()],m)},67195:(e,t,n)=>{"use strict";n.r(t),n.d(t,{DynamicTypeGridCellDateTime:()=>m});var r=n(36198),o=n(64374),i=n(84560),a=n(27155);function s(e,t){for(var n=0;n=0;s--)(o=e[s])&&(a=(i<3?o(a):i>3?o(t,n,a):o(t,n))||a);return i>3&&a&&Object.defineProperty(t,n,a),a},m=function(e){function t(){var e;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),(e=c(this,t,arguments)).id="datetime",e}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&f(e,t)}(t,e),n=t,(o=[{key:"getGridCellComponent",value:function(e){return r.createElement(a.DateCell,Object.assign({},e))}}])&&s(n.prototype,o),i&&s(n,i),Object.defineProperty(n,"prototype",{writable:!1}),n;var n,o,i}(o.DynamicTypeGridCellAbstract);m=p([(0,i.injectable)()],m)},53024:(e,t,n)=>{"use strict";n.r(t),n.d(t,{DynamicTypeGridCellDate:()=>m});var r=n(36198),o=n(64374),i=n(84560),a=n(27155);function s(e,t){for(var n=0;n=0;s--)(o=e[s])&&(a=(i<3?o(a):i>3?o(t,n,a):o(t,n))||a);return i>3&&a&&Object.defineProperty(t,n,a),a},m=function(e){function t(){var e;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),(e=c(this,t,arguments)).id="date",e}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&f(e,t)}(t,e),n=t,(o=[{key:"getGridCellComponent",value:function(e){return r.createElement(a.DateCell,Object.assign({},e))}}])&&s(n.prototype,o),i&&s(n,i),Object.defineProperty(n,"prototype",{writable:!1}),n;var n,o,i}(o.DynamicTypeGridCellAbstract);m=p([(0,i.injectable)()],m)},14266:(e,t,n)=>{"use strict";n.r(t),n.d(t,{DynamicTypeGridCellDocumentLink:()=>g});var r=n(36198),o=n(64374),i=n(84560),a=n(81373),s=n(43061);function l(e,t){for(var n=0;n=0;s--)(o=e[s])&&(a=(i<3?o(a):i>3?o(t,n,a):o(t,n))||a);return i>3&&a&&Object.defineProperty(t,n,a),a},g=function(e){function t(){var e;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),(e=u(this,t,arguments)).id="document-link",e}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&h(e,t)}(t,e),n=t,(o=[{key:"getGridCellComponent",value:function(e){return r.createElement(a.ElementCell,Object.assign({},(0,s.addColumnConfig)(e,{allowedTypes:["document"]})))}}])&&l(n.prototype,o),i&&l(n,i),Object.defineProperty(n,"prototype",{writable:!1}),n;var n,o,i}(o.DynamicTypeGridCellAbstract);g=m([(0,i.injectable)()],g)},24696:(e,t,n)=>{"use strict";n.r(t),n.d(t,{DynamicTypeGridCellObjectLink:()=>g});var r=n(36198),o=n(64374),i=n(84560),a=n(81373),s=n(43061);function l(e,t){for(var n=0;n=0;s--)(o=e[s])&&(a=(i<3?o(a):i>3?o(t,n,a):o(t,n))||a);return i>3&&a&&Object.defineProperty(t,n,a),a},g=function(e){function t(){var e;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),(e=u(this,t,arguments)).id="object-link",e}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&h(e,t)}(t,e),n=t,(o=[{key:"getGridCellComponent",value:function(e){return r.createElement(a.ElementCell,Object.assign({},(0,s.addColumnConfig)(e,{allowedTypes:["object"]})))}}])&&l(n.prototype,o),i&&l(n,i),Object.defineProperty(n,"prototype",{writable:!1}),n;var n,o,i}(o.DynamicTypeGridCellAbstract);g=m([(0,i.injectable)()],g)},37299:(e,t,n)=>{"use strict";n.r(t),n.d(t,{DynamicTypeGridCellOpenElement:()=>m});var r=n(36198),o=n(64374),i=n(84560),a=n(29307);function s(e,t){for(var n=0;n=0;s--)(o=e[s])&&(a=(i<3?o(a):i>3?o(t,n,a):o(t,n))||a);return i>3&&a&&Object.defineProperty(t,n,a),a},m=function(e){function t(){var e;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),(e=c(this,t,arguments)).id="open-element",e}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&f(e,t)}(t,e),n=t,(o=[{key:"getGridCellComponent",value:function(e){return r.createElement(a.OpenElementCell,Object.assign({},e))}}])&&s(n.prototype,o),i&&s(n,i),Object.defineProperty(n,"prototype",{writable:!1}),n;var n,o,i}(o.DynamicTypeGridCellAbstract);m=p([(0,i.injectable)()],m)},2836:(e,t,n)=>{"use strict";n.r(t),n.d(t,{DynamicTypeGridCellSelect:()=>m});var r=n(36198),o=n(64374),i=n(84560),a=n(82113);function s(e,t){for(var n=0;n=0;s--)(o=e[s])&&(a=(i<3?o(a):i>3?o(t,n,a):o(t,n))||a);return i>3&&a&&Object.defineProperty(t,n,a),a},m=function(e){function t(){var e;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),(e=c(this,t,arguments)).id="select",e}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&f(e,t)}(t,e),n=t,(o=[{key:"getGridCellComponent",value:function(e){return r.createElement(a.SelectCell,Object.assign({},e))}}])&&s(n.prototype,o),i&&s(n,i),Object.defineProperty(n,"prototype",{writable:!1}),n;var n,o,i}(o.DynamicTypeGridCellAbstract);m=p([(0,i.injectable)()],m)},19169:(e,t,n)=>{"use strict";n.r(t),n.d(t,{DynamicTypeGridCellText:()=>m});var r=n(36198),o=n(64374),i=n(28838),a=n(84560);function s(e,t){for(var n=0;n=0;s--)(o=e[s])&&(a=(i<3?o(a):i>3?o(t,n,a):o(t,n))||a);return i>3&&a&&Object.defineProperty(t,n,a),a},m=function(e){function t(){var e;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),(e=c(this,t,arguments)).id="input",e}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&f(e,t)}(t,e),n=t,(o=[{key:"getGridCellComponent",value:function(e){return r.createElement(i.TextCell,Object.assign({},e))}}])&&s(n.prototype,o),a&&s(n,a),Object.defineProperty(n,"prototype",{writable:!1}),n;var n,o,a}(o.DynamicTypeGridCellAbstract);m=p([(0,a.injectable)()],m)},45977:(e,t,n)=>{"use strict";n.r(t),n.d(t,{DynamicTypeGridCellTextarea:()=>m});var r=n(36198),o=n(64374),i=n(84560),a=n(24441);function s(e,t){for(var n=0;n=0;s--)(o=e[s])&&(a=(i<3?o(a):i>3?o(t,n,a):o(t,n))||a);return i>3&&a&&Object.defineProperty(t,n,a),a},m=function(e){function t(){var e;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),(e=c(this,t,arguments)).id="textarea",e}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&f(e,t)}(t,e),n=t,(o=[{key:"getGridCellComponent",value:function(e){return r.createElement(a.TextareaCell,Object.assign({},e))}}])&&s(n.prototype,o),i&&s(n,i),Object.defineProperty(n,"prototype",{writable:!1}),n;var n,o,i}(o.DynamicTypeGridCellAbstract);m=p([(0,i.injectable)()],m)},98770:(e,t,n)=>{"use strict";n.r(t),n.d(t,{DynamicTypeGridCellTime:()=>m});var r=n(36198),o=n(64374),i=n(84560),a=n(94554);function s(e,t){for(var n=0;n=0;s--)(o=e[s])&&(a=(i<3?o(a):i>3?o(t,n,a):o(t,n))||a);return i>3&&a&&Object.defineProperty(t,n,a),a},m=function(e){function t(){var e;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),(e=c(this,t,arguments)).id="time",e}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&f(e,t)}(t,e),n=t,(o=[{key:"getGridCellComponent",value:function(e){return r.createElement(a.TimeCell,Object.assign({},e))}}])&&s(n.prototype,o),i&&s(n,i),Object.defineProperty(n,"prototype",{writable:!1}),n;var n,o,i}(o.DynamicTypeGridCellAbstract);m=p([(0,i.injectable)()],m)},28710:(e,t,n)=>{"use strict";n.r(t),n.d(t,{DynamicTypeListingRegistry:()=>f});var r=n(84560);function o(e,t){for(var n=0;n=0;s--)(o=e[s])&&(a=(i<3?o(a):i>3?o(t,n,a):o(t,n))||a);return i>3&&a&&Object.defineProperty(t,n,a),a},f=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),a(this,t,arguments)}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&c(e,t)}(t,e),n=t,r&&o(n.prototype,r),i&&o(n,i),Object.defineProperty(n,"prototype",{writable:!1}),n;var n,r,i}(n(68110).DynamicTypeRegistryAbstract);f=d([(0,r.injectable)()],f)},80168:(e,t,n)=>{"use strict";n.r(t),n.d(t,{DynamicTypeMetadataAbstract:()=>u});var r=n(81690),o=n(54088),i=n(84560);function a(e,t){for(var n=0;n=0;s--)(o=e[s])&&(a=(i<3?o(a):i>3?o(t,n,a):o(t,n))||a);return i>3&&a&&Object.defineProperty(t,n,a),a},u=function(){return e=function e(){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e)},(t=[{key:"getGridCellComponent",value:function(e){return r.container.get(o.serviceIds["DynamicTypes/GridCellRegistry"]).getGridCellComponent(this.dynamicTypeGridCellType.id,e)}},{key:"getFieldFilterComponent",value:function(e){return r.container.get(o.serviceIds["DynamicTypes/FieldFilterRegistry"]).getComponent(this.dynamicTypeFieldFilterType.id,e)}}])&&a(e.prototype,t),n&&a(e,n),Object.defineProperty(e,"prototype",{writable:!1}),e;var e,t,n}();u=c([(0,i.injectable)()],u)},17781:(e,t,n)=>{"use strict";n.r(t),n.d(t,{DynamicTypeMetaDataRegistry:()=>f});var r=n(84560);function o(e,t){for(var n=0;n=0;s--)(o=e[s])&&(a=(i<3?o(a):i>3?o(t,n,a):o(t,n))||a);return i>3&&a&&Object.defineProperty(t,n,a),a},f=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),a(this,t,arguments)}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&c(e,t)}(t,e),n=t,(r=[{key:"getTypeSelectionTypes",value:function(){var e=new Map;return this.dynamicTypes.forEach((function(t,n){t.visibleInTypeSelection&&e.set(n,t)})),e}}])&&o(n.prototype,r),i&&o(n,i),Object.defineProperty(n,"prototype",{writable:!1}),n;var n,r,i}(n(68110).DynamicTypeRegistryAbstract);f=d([(0,r.injectable)()],f)},83826:(e,t,n)=>{"use strict";n.r(t),n.d(t,{DynamicTypeMetaDataAsset:()=>v});var r=n(36198),o=n(84560),i=n(80168),a=n(64374),s=n(54088),l=n(87196);function c(e,t){for(var n=0;n=0;s--)(o=e[s])&&(a=(i<3?o(a):i>3?o(t,n,a):o(t,n))||a);return i>3&&a&&Object.defineProperty(t,n,a),a},y=function(e,t){if("object"===("undefined"==typeof Reflect?"undefined":m(Reflect))&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)},v=function(e){function t(){var e;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),(e=d(this,t,arguments)).id="metadata.asset",e.visibleInTypeSelection=!0,e}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&p(e,t)}(t,e),n=t,(o=[{key:"getVersionPreviewComponent",value:function(e){return r.createElement("span",null,e.path,e.filename)}}])&&c(n.prototype,o),i&&c(n,i),Object.defineProperty(n,"prototype",{writable:!1}),n;var n,o,i}(i.DynamicTypeMetadataAbstract);g([(0,o.inject)(s.serviceIds["DynamicTypes/GridCell/AssetLink"]),y("design:type",a.DynamicTypeGridCellAbstract)],v.prototype,"dynamicTypeGridCellType",void 0),g([(0,o.inject)(s.serviceIds["DynamicTypes/FieldFilter/Text"]),y("design:type",l.DynamicTypeFieldFilterAbstract)],v.prototype,"dynamicTypeFieldFilterType",void 0),v=g([(0,o.injectable)()],v)},61350:(e,t,n)=>{"use strict";n.r(t),n.d(t,{DynamicTypeMetaDataCheckbox:()=>v});var r=n(36198),o=n(84560),i=n(80168),a=n(64374),s=n(54088),l=n(87196);function c(e,t){for(var n=0;n=0;s--)(o=e[s])&&(a=(i<3?o(a):i>3?o(t,n,a):o(t,n))||a);return i>3&&a&&Object.defineProperty(t,n,a),a},y=function(e,t){if("object"===("undefined"==typeof Reflect?"undefined":m(Reflect))&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)},v=function(e){function t(){var e;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),(e=d(this,t,arguments)).id="metadata.checkbox",e.visibleInTypeSelection=!0,e}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&p(e,t)}(t,e),n=t,(o=[{key:"getVersionPreviewComponent",value:function(e){return r.createElement("span",null,e?"✓":"-")}}])&&c(n.prototype,o),i&&c(n,i),Object.defineProperty(n,"prototype",{writable:!1}),n;var n,o,i}(i.DynamicTypeMetadataAbstract);g([(0,o.inject)(s.serviceIds["DynamicTypes/GridCell/Checkbox"]),y("design:type",a.DynamicTypeGridCellAbstract)],v.prototype,"dynamicTypeGridCellType",void 0),g([(0,o.inject)(s.serviceIds["DynamicTypes/FieldFilter/Text"]),y("design:type",l.DynamicTypeFieldFilterAbstract)],v.prototype,"dynamicTypeFieldFilterType",void 0),v=g([(0,o.injectable)()],v)},26206:(e,t,n)=>{"use strict";n.r(t),n.d(t,{DynamicTypeMetaDataDate:()=>v});var r=n(36198),o=n(84560),i=n(80168),a=n(64374),s=n(54088),l=n(87196);function c(e,t){for(var n=0;n=0;s--)(o=e[s])&&(a=(i<3?o(a):i>3?o(t,n,a):o(t,n))||a);return i>3&&a&&Object.defineProperty(t,n,a),a},y=function(e,t){if("object"===("undefined"==typeof Reflect?"undefined":m(Reflect))&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)},v=function(e){function t(){var e;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),(e=d(this,t,arguments)).id="metadata.date",e.visibleInTypeSelection=!0,e}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&p(e,t)}(t,e),n=t,(o=[{key:"getVersionPreviewComponent",value:function(e){return r.createElement("span",null,e.path,e.key)}}])&&c(n.prototype,o),i&&c(n,i),Object.defineProperty(n,"prototype",{writable:!1}),n;var n,o,i}(i.DynamicTypeMetadataAbstract);g([(0,o.inject)(s.serviceIds["DynamicTypes/GridCell/Date"]),y("design:type",a.DynamicTypeGridCellAbstract)],v.prototype,"dynamicTypeGridCellType",void 0),g([(0,o.inject)(s.serviceIds["DynamicTypes/FieldFilter/Text"]),y("design:type",l.DynamicTypeFieldFilterAbstract)],v.prototype,"dynamicTypeFieldFilterType",void 0),v=g([(0,o.injectable)()],v)},50711:(e,t,n)=>{"use strict";n.r(t),n.d(t,{DynamicTypeMetaDataDocument:()=>v});var r=n(36198),o=n(84560),i=n(80168),a=n(64374),s=n(54088),l=n(87196);function c(e,t){for(var n=0;n=0;s--)(o=e[s])&&(a=(i<3?o(a):i>3?o(t,n,a):o(t,n))||a);return i>3&&a&&Object.defineProperty(t,n,a),a},y=function(e,t){if("object"===("undefined"==typeof Reflect?"undefined":m(Reflect))&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)},v=function(e){function t(){var e;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),(e=d(this,t,arguments)).id="metadata.document",e.visibleInTypeSelection=!0,e}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&p(e,t)}(t,e),n=t,(o=[{key:"getVersionPreviewComponent",value:function(e){return r.createElement("span",null,e.path,e.key)}}])&&c(n.prototype,o),i&&c(n,i),Object.defineProperty(n,"prototype",{writable:!1}),n;var n,o,i}(i.DynamicTypeMetadataAbstract);g([(0,o.inject)(s.serviceIds["DynamicTypes/GridCell/DocumentLink"]),y("design:type",a.DynamicTypeGridCellAbstract)],v.prototype,"dynamicTypeGridCellType",void 0),g([(0,o.inject)(s.serviceIds["DynamicTypes/FieldFilter/Text"]),y("design:type",l.DynamicTypeFieldFilterAbstract)],v.prototype,"dynamicTypeFieldFilterType",void 0),v=g([(0,o.injectable)()],v)},25132:(e,t,n)=>{"use strict";n.r(t),n.d(t,{DynamicTypeMetaDataInput:()=>v});var r=n(36198),o=n(84560),i=n(80168),a=n(64374),s=n(54088),l=n(87196);function c(e,t){for(var n=0;n=0;s--)(o=e[s])&&(a=(i<3?o(a):i>3?o(t,n,a):o(t,n))||a);return i>3&&a&&Object.defineProperty(t,n,a),a},y=function(e,t){if("object"===("undefined"==typeof Reflect?"undefined":m(Reflect))&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)},v=function(e){function t(){var e;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),(e=d(this,t,arguments)).id="metadata.input",e.visibleInTypeSelection=!0,e}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&p(e,t)}(t,e),n=t,(o=[{key:"getVersionPreviewComponent",value:function(e){return r.createElement("span",null," ",e," ")}}])&&c(n.prototype,o),i&&c(n,i),Object.defineProperty(n,"prototype",{writable:!1}),n;var n,o,i}(i.DynamicTypeMetadataAbstract);g([(0,o.inject)(s.serviceIds["DynamicTypes/GridCell/Text"]),y("design:type",a.DynamicTypeGridCellAbstract)],v.prototype,"dynamicTypeGridCellType",void 0),g([(0,o.inject)(s.serviceIds["DynamicTypes/FieldFilter/Text"]),y("design:type",l.DynamicTypeFieldFilterAbstract)],v.prototype,"dynamicTypeFieldFilterType",void 0),v=g([(0,o.injectable)()],v)},70136:(e,t,n)=>{"use strict";n.r(t),n.d(t,{DynamicTypeMetaDataObject:()=>v});var r=n(36198),o=n(84560),i=n(80168),a=n(64374),s=n(54088),l=n(87196);function c(e,t){for(var n=0;n=0;s--)(o=e[s])&&(a=(i<3?o(a):i>3?o(t,n,a):o(t,n))||a);return i>3&&a&&Object.defineProperty(t,n,a),a},y=function(e,t){if("object"===("undefined"==typeof Reflect?"undefined":m(Reflect))&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)},v=function(e){function t(){var e;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),(e=d(this,t,arguments)).id="metadata.object",e.visibleInTypeSelection=!0,e}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&p(e,t)}(t,e),n=t,(o=[{key:"getVersionPreviewComponent",value:function(e){return r.createElement("span",null,e.path,e.key)}}])&&c(n.prototype,o),i&&c(n,i),Object.defineProperty(n,"prototype",{writable:!1}),n;var n,o,i}(i.DynamicTypeMetadataAbstract);g([(0,o.inject)(s.serviceIds["DynamicTypes/GridCell/ObjectLink"]),y("design:type",a.DynamicTypeGridCellAbstract)],v.prototype,"dynamicTypeGridCellType",void 0),g([(0,o.inject)(s.serviceIds["DynamicTypes/FieldFilter/Text"]),y("design:type",l.DynamicTypeFieldFilterAbstract)],v.prototype,"dynamicTypeFieldFilterType",void 0),v=g([(0,o.injectable)()],v)},19859:(e,t,n)=>{"use strict";n.r(t),n.d(t,{DynamicTypeMetaDataSelect:()=>v});var r=n(36198),o=n(84560),i=n(80168),a=n(64374),s=n(54088),l=n(87196);function c(e,t){for(var n=0;n=0;s--)(o=e[s])&&(a=(i<3?o(a):i>3?o(t,n,a):o(t,n))||a);return i>3&&a&&Object.defineProperty(t,n,a),a},y=function(e,t){if("object"===("undefined"==typeof Reflect?"undefined":m(Reflect))&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)},v=function(e){function t(){var e;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),(e=d(this,t,arguments)).id="metadata.select",e.visibleInTypeSelection=!1,e}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&p(e,t)}(t,e),n=t,(o=[{key:"getVersionPreviewComponent",value:function(e){return r.createElement("span",null,e.path,e.key)}}])&&c(n.prototype,o),i&&c(n,i),Object.defineProperty(n,"prototype",{writable:!1}),n;var n,o,i}(i.DynamicTypeMetadataAbstract);g([(0,o.inject)(s.serviceIds["DynamicTypes/GridCell/Select"]),y("design:type",a.DynamicTypeGridCellAbstract)],v.prototype,"dynamicTypeGridCellType",void 0),g([(0,o.inject)(s.serviceIds["DynamicTypes/FieldFilter/Text"]),y("design:type",l.DynamicTypeFieldFilterAbstract)],v.prototype,"dynamicTypeFieldFilterType",void 0),v=g([(0,o.injectable)()],v)},61653:(e,t,n)=>{"use strict";n.r(t),n.d(t,{DynamicTypeMetaDataTextarea:()=>v});var r=n(84560),o=n(80168),i=n(64374),a=n(54088),s=n(87196),l=n(38576);function c(e,t){for(var n=0;n=0;s--)(o=e[s])&&(a=(i<3?o(a):i>3?o(t,n,a):o(t,n))||a);return i>3&&a&&Object.defineProperty(t,n,a),a},y=function(e,t){if("object"===("undefined"==typeof Reflect?"undefined":m(Reflect))&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)},v=function(e){function t(){var e;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),(e=d(this,t,arguments)).id="metadata.textarea",e.visibleInTypeSelection=!0,e}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&p(e,t)}(t,e),n=t,(r=[{key:"getVersionPreviewComponent",value:function(e){return(0,l.respectLineBreak)(e,!1)}}])&&c(n.prototype,r),o&&c(n,o),Object.defineProperty(n,"prototype",{writable:!1}),n;var n,r,o}(o.DynamicTypeMetadataAbstract);g([(0,r.inject)(a.serviceIds["DynamicTypes/GridCell/Textarea"]),y("design:type",i.DynamicTypeGridCellAbstract)],v.prototype,"dynamicTypeGridCellType",void 0),g([(0,r.inject)(a.serviceIds["DynamicTypes/FieldFilter/Text"]),y("design:type",s.DynamicTypeFieldFilterAbstract)],v.prototype,"dynamicTypeFieldFilterType",void 0),v=g([(0,r.injectable)()],v)},81020:(e,t,n)=>{"use strict";n.r(t),n.d(t,{BlockContent:()=>c});var r=n(36198),o=n(54688),i=n(56903),a=n(25795),s=n(71816),l=n(48388),c=function(e){var t=e.title,n=e.fields,c=e.operation,u=e.children,d=n.map((function(e){return{title:r.createElement(r.Fragment,null,t," ",e.name),forceRender:!0,children:r.createElement(i.FormListProvider,{field:e,operation:c},Array.isArray(u)?u.map((function(e,t){return r.createElement(a.ObjectComponent,Object.assign({key:t},e))})):void 0)}}));return r.createElement(o.Accordion,{bordered:!0,ghost:!0,items:[{title:r.createElement(r.Fragment,null,t),forceRender:!0,children:r.createElement(r.Fragment,null,r.createElement(l.Box,{padding:{bottom:"small"}},r.createElement(s.Button,{onClick:function(){c.add()}},"New")),n.length>0&&r.createElement(o.Accordion,{items:d}))}]})}},13692:(e,t,n)=>{"use strict";n.r(t),n.d(t,{Block:()=>a});var r=n(36198),o=n(79195),i=n(81020),a=function(e){return r.createElement(o.Form.List,{name:e.name},(function(t,n){return r.createElement(i.BlockContent,Object.assign({},e,{fields:t,operation:n}))}))}},51523:(e,t,n)=>{"use strict";n.r(t),n.d(t,{Consent:()=>l});var r=n(36198),o=n(47259),i=n(28518);function a(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return s(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return s(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function s(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n0&&r.createElement("span",null,"(",u,")"))}},1234:(e,t,n)=>{"use strict";n.r(t),n.d(t,{ExternalImage:()=>f});var r=n(36198),o=n(14500),i=n(10553),a=n(28518),s=n(36529),l=n(16437),c=n(30811);function u(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return d(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return d(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function d(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";n.r(t),n.d(t,{ExternalImageFooter:()=>f});var r=n(36198),o=n(47259),i=n(28518),a=n(27027),s=n(54512),l=n(30811),c=n(16437);function u(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return d(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return d(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function d(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";n.r(t),n.d(t,{LocalizedFields:()=>l});var r=n(36198),o=n(16868),i=n(25795),a=n(40069),s=n(11581),l=function(e){var t=e.children,n=(0,s.useLanguageSelection)().currentLanguage;return r.createElement(o.LocalizedFieldsProvider,{locales:[n]},r.createElement(a.Space,{className:"w-full",direction:"vertical",size:"small"},null==t?void 0:t.map((function(e,t){return r.createElement(i.ObjectComponent,Object.assign({key:t},e))}))))}},16868:(e,t,n)=>{"use strict";n.r(t),n.d(t,{LocalizedFieldsContext:()=>o,LocalizedFieldsProvider:()=>i});var r=n(36198),o=(0,r.createContext)(void 0),i=function(e){var t=e.locales,n=e.children;return(0,r.useMemo)((function(){return r.createElement(o.Provider,{value:{locales:t}},n)}),[t,n])}},49566:(e,t,n)=>{"use strict";n.r(t),n.d(t,{useLocalizedFields:()=>i});var r=n(36198),o=n(16868),i=function(){return(0,r.useContext)(o.LocalizedFieldsContext)}},73554:(e,t,n)=>{"use strict";n.r(t),n.d(t,{DynamicTypeObjectDataAbstract:()=>c});var r=n(84560),o=n(38576);function i(e,t){for(var n=0;n=0;l--)(o=e[l])&&(a=(i<3?o(a):i>3?o(t,n,a):o(t,n))||a);return i>3&&a&&Object.defineProperty(t,n,a),a},c=function(){return e=function e(){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),this.isCollectionType=!1},(t=[{key:"getObjectDataFormItemProps",value:function(e){return{className:"w-full",label:e.title,required:!0===e.mandatory,hidden:!0===e.invisible,tooltip:"string"==typeof e.tooltip&&e.tooltip.length>0?(0,o.respectLineBreak)(e.tooltip,!1):void 0}}}])&&i(e.prototype,t),n&&i(e,n),Object.defineProperty(e,"prototype",{writable:!1}),e;var e,t,n}();c=l([(0,r.injectable)()],c)},29649:(e,t,n)=>{"use strict";n.r(t),n.d(t,{DynamicTypeObjectDataRegistry:()=>f});var r=n(84560);function o(e,t){for(var n=0;n=0;s--)(o=e[s])&&(a=(i<3?o(a):i>3?o(t,n,a):o(t,n))||a);return i>3&&a&&Object.defineProperty(t,n,a),a},f=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),a(this,t,arguments)}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&c(e,t)}(t,e),n=t,r&&o(n.prototype,r),i&&o(n,i),Object.defineProperty(n,"prototype",{writable:!1}),n;var n,r,i}(n(68110).DynamicTypeRegistryAbstract);f=d([(0,r.injectable)()],f)},28969:(e,t,n)=>{"use strict";n.r(t),n.d(t,{DynamicTypeObjectDataAbstractDate:()=>y});var r=n(36198),o=n(73554),i=n(27484),a=n.n(i),s=n(82640);function l(e){return l="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},l(e)}function c(e,t){for(var n=0;n{"use strict";n.r(t),n.d(t,{DynamicTypeObjectDataAbstractInput:()=>h});var r=n(36198),o=n(73554),i=n(28518);function a(e){return a="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},a(e)}function s(e,t){for(var n=0;n{"use strict";function r(e){return r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},r(e)}function o(e,t){for(var n=0;nd});var d=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),a(this,t,arguments)}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&u(e,t)}(t,e),n=t,(r=[{key:"getObjectDataComponent",value:function(e){return l(c(t.prototype),"getObjectDataComponent",this).call(this,Object.assign(Object.assign({},e),{multiSelect:!0}))}}])&&o(n.prototype,r),i&&o(n,i),Object.defineProperty(n,"prototype",{writable:!1}),n;var n,r,i}(n(55495).DynamicTypeObjectDataAbstractSelect)},18110:(e,t,n)=>{"use strict";n.r(t),n.d(t,{DynamicTypeObjectDataAbstractNumeric:()=>m});var r=n(36198),o=n(73554),i=n(28518);function a(e){return a="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},a(e)}function s(e,t){for(var n=0;n{"use strict";n.r(t),n.d(t,{DynamicTypeObjectDataAbstractSelect:()=>m});var r=n(36198),o=n(73554),i=n(58664),a=n(36609);function s(e){return s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},s(e)}function l(e,t){for(var n=0;n{"use strict";n.r(t),n.d(t,{DynamicTypeObjectDataBlock:()=>h});var r=n(36198),o=n(73554),i=n(13692);function a(e){return a="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},a(e)}function s(e,t){for(var n=0;n{"use strict";function r(e){return r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},r(e)}function o(e,t){for(var n=0;nd});var d=function(e){function t(){var e;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),(e=a(this,t,arguments)).id="booleanSelect",e}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&u(e,t)}(t,e),n=t,(r=[{key:"getObjectDataComponent",value:function(e){return l(c(t.prototype),"getObjectDataComponent",this).call(this,Object.assign(Object.assign({},e),{allowClear:!1}))}},{key:"getObjectDataFormItemProps",value:function(e){return l(c(t.prototype),"getObjectDataFormItemProps",this).call(this,Object.assign(Object.assign({},e),{defaultValue:0}))}}])&&o(n.prototype,r),i&&o(n,i),Object.defineProperty(n,"prototype",{writable:!1}),n;var n,r,i}(n(55495).DynamicTypeObjectDataAbstractSelect)},6646:(e,t,n)=>{"use strict";n.r(t),n.d(t,{DynamicTypeObjectDataConsent:()=>h});var r=n(36198),o=n(73554),i=n(51523);function a(e){return a="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},a(e)}function s(e,t){for(var n=0;n{"use strict";function r(e){return r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},r(e)}function o(e,t){for(var n=0;nu});var u=function(e){function t(){var e;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),(e=a(this,t,arguments)).id="countrymultiselect",e}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&c(e,t)}(t,e),n=t,r&&o(n.prototype,r),i&&o(n,i),Object.defineProperty(n,"prototype",{writable:!1}),n;var n,r,i}(n(91043).DynamicTypeObjectDataAbstractMultiSelect)},73042:(e,t,n)=>{"use strict";function r(e){return r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},r(e)}function o(e,t){for(var n=0;nu});var u=function(e){function t(){var e;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),(e=a(this,t,arguments)).id="country",e}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&c(e,t)}(t,e),n=t,r&&o(n.prototype,r),i&&o(n,i),Object.defineProperty(n,"prototype",{writable:!1}),n;var n,r,i}(n(55495).DynamicTypeObjectDataAbstractSelect)},3121:(e,t,n)=>{"use strict";n.r(t),n.d(t,{DynamicTypeObjectDataDateRange:()=>h});var r=n(36198),o=n(73554),i=n(82640);function a(e){return a="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},a(e)}function s(e,t){for(var n=0;n{"use strict";function r(e){return r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},r(e)}function o(e,t){for(var n=0;nd});var d=function(e){function t(){var e;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),(e=a(this,t,arguments)).id="date",e}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&u(e,t)}(t,e),n=t,(r=[{key:"getObjectDataComponent",value:function(e){return l(c(t.prototype),"getObjectDataComponent",this).call(this,Object.assign(Object.assign({},e),{respectTimezone:"bigint(20)"===e.columnType,outputType:"dateString",outputFormat:"YYYY-MM-DD"}))}}])&&o(n.prototype,r),i&&o(n,i),Object.defineProperty(n,"prototype",{writable:!1}),n;var n,r,i}(n(28969).DynamicTypeObjectDataAbstractDate)},26265:(e,t,n)=>{"use strict";function r(e){return r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},r(e)}function o(e,t){for(var n=0;nd});var d=function(e){function t(){var e;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),(e=a(this,t,arguments)).id="datetime",e}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&u(e,t)}(t,e),n=t,(r=[{key:"getObjectDataComponent",value:function(e){return l(c(t.prototype),"getObjectDataComponent",this).call(this,Object.assign(Object.assign({},e),{outputType:"dateString",outputFormat:"YYYY-MM-DD HH:mm:ss",showTime:!0}))}}])&&o(n.prototype,r),i&&o(n,i),Object.defineProperty(n,"prototype",{writable:!1}),n;var n,r,i}(n(28969).DynamicTypeObjectDataAbstractDate)},21798:(e,t,n)=>{"use strict";function r(e){return r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},r(e)}function o(e,t){for(var n=0;nu});var u=function(e){function t(){var e;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),(e=a(this,t,arguments)).id="email",e}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&c(e,t)}(t,e),n=t,r&&o(n.prototype,r),i&&o(n,i),Object.defineProperty(n,"prototype",{writable:!1}),n;var n,r,i}(n(56294).DynamicTypeObjectDataAbstractInput)},37503:(e,t,n)=>{"use strict";n.r(t),n.d(t,{DynamicTypeObjectDataExternalImage:()=>h});var r=n(36198),o=n(73554),i=n(1234);function a(e){return a="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},a(e)}function s(e,t){for(var n=0;n{"use strict";function r(e){return r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},r(e)}function o(e,t){for(var n=0;nu});var u=function(e){function t(){var e;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),(e=a(this,t,arguments)).id="firstname",e}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&c(e,t)}(t,e),n=t,r&&o(n.prototype,r),i&&o(n,i),Object.defineProperty(n,"prototype",{writable:!1}),n;var n,r,i}(n(56294).DynamicTypeObjectDataAbstractInput)},66540:(e,t,n)=>{"use strict";function r(e){return r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},r(e)}function o(e,t){for(var n=0;nu});var u=function(e){function t(){var e;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),(e=a(this,t,arguments)).id="gender",e}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&c(e,t)}(t,e),n=t,r&&o(n.prototype,r),i&&o(n,i),Object.defineProperty(n,"prototype",{writable:!1}),n;var n,r,i}(n(55495).DynamicTypeObjectDataAbstractSelect)},62487:(e,t,n)=>{"use strict";function r(e){return r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},r(e)}function o(e,t){for(var n=0;nd});var d=function(e){function t(){var e;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),(e=a(this,t,arguments)).id="input",e}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&u(e,t)}(t,e),n=t,(r=[{key:"getObjectDataFormItemProps",value:function(e){var n;return Object.assign(Object.assign({},l(c(t.prototype),"getObjectDataFormItemProps",this).call(this,e)),{initialValue:e.defaultValue,rules:[{pattern:"string"==typeof e.regex&&e.regex.length>0?new RegExp(e.regex,null===(n=e.regexFlags)||void 0===n?void 0:n.join("")):void 0}]})}}])&&o(n.prototype,r),i&&o(n,i),Object.defineProperty(n,"prototype",{writable:!1}),n;var n,r,i}(n(56294).DynamicTypeObjectDataAbstractInput)},77304:(e,t,n)=>{"use strict";function r(e){return r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},r(e)}function o(e,t){for(var n=0;nu});var u=function(e){function t(){var e;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),(e=a(this,t,arguments)).id="languagemultiselect",e}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&c(e,t)}(t,e),n=t,r&&o(n.prototype,r),i&&o(n,i),Object.defineProperty(n,"prototype",{writable:!1}),n;var n,r,i}(n(91043).DynamicTypeObjectDataAbstractMultiSelect)},40304:(e,t,n)=>{"use strict";function r(e){return r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},r(e)}function o(e,t){for(var n=0;nu});var u=function(e){function t(){var e;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),(e=a(this,t,arguments)).id="language",e}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&c(e,t)}(t,e),n=t,r&&o(n.prototype,r),i&&o(n,i),Object.defineProperty(n,"prototype",{writable:!1}),n;var n,r,i}(n(55495).DynamicTypeObjectDataAbstractSelect)},8588:(e,t,n)=>{"use strict";function r(e){return r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},r(e)}function o(e,t){for(var n=0;nu});var u=function(e){function t(){var e;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),(e=a(this,t,arguments)).id="lastname",e}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&c(e,t)}(t,e),n=t,r&&o(n.prototype,r),i&&o(n,i),Object.defineProperty(n,"prototype",{writable:!1}),n;var n,r,i}(n(56294).DynamicTypeObjectDataAbstractInput)},13459:(e,t,n)=>{"use strict";n.r(t),n.d(t,{DynamicTypeObjectDataLocalizedFields:()=>h});var r=n(36198),o=n(73554),i=n(44397);function a(e){return a="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},a(e)}function s(e,t){for(var n=0;n{"use strict";function r(e){return r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},r(e)}function o(e,t){for(var n=0;nu});var u=function(e){function t(){var e;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),(e=a(this,t,arguments)).id="multiselect",e}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&c(e,t)}(t,e),n=t,r&&o(n.prototype,r),i&&o(n,i),Object.defineProperty(n,"prototype",{writable:!1}),n;var n,r,i}(n(91043).DynamicTypeObjectDataAbstractMultiSelect)},56915:(e,t,n)=>{"use strict";n.r(t),n.d(t,{DynamicTypeObjectDataNumericRange:()=>h});var r=n(36198),o=n(11822);function i(e){return i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},i(e)}function a(e,t){for(var n=0;n{"use strict";function r(e){return r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},r(e)}function o(e,t){for(var n=0;nu});var u=function(e){function t(){var e;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),(e=a(this,t,arguments)).id="numeric",e}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&c(e,t)}(t,e),n=t,r&&o(n.prototype,r),i&&o(n,i),Object.defineProperty(n,"prototype",{writable:!1}),n;var n,r,i}(n(18110).DynamicTypeObjectDataAbstractNumeric)},20366:(e,t,n)=>{"use strict";n.r(t),n.d(t,{DynamicTypeObjectDataPassword:()=>h});var r=n(36198),o=n(73554),i=n(28518);function a(e){return a="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},a(e)}function s(e,t){for(var n=0;n{"use strict";n.r(t),n.d(t,{DynamicTypeObjectDataRgbaColor:()=>y});var r=n(36198),o=n(73554),i=n(28518),a=n(36609);function s(e){return s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},s(e)}function l(e,t){for(var n=0;n{"use strict";function r(e){return r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},r(e)}function o(e,t){for(var n=0;nu});var u=function(e){function t(){var e;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),(e=a(this,t,arguments)).id="select",e}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&c(e,t)}(t,e),n=t,r&&o(n.prototype,r),i&&o(n,i),Object.defineProperty(n,"prototype",{writable:!1}),n;var n,r,i}(n(55495).DynamicTypeObjectDataAbstractSelect)},33675:(e,t,n)=>{"use strict";n.r(t),n.d(t,{DynamicTypeObjectDataSlider:()=>p});var r=n(36198),o=n(18110),i=n(74959),a=n(16437);function s(e){return s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},s(e)}function l(e,t){for(var n=0;n{"use strict";n.r(t),n.d(t,{DynamicTypeObjectDataTextarea:()=>h});var r=n(36198),o=n(73554),i=n(96330);function a(e){return a="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},a(e)}function s(e,t){for(var n=0;n{"use strict";n.r(t),n.d(t,{DynamicTypeObjectDataTime:()=>h});var r=n(36198),o=n(73554),i=n(82640);function a(e){return a="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},a(e)}function s(e,t){for(var n=0;n{"use strict";function r(e){return r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},r(e)}function o(e,t){for(var n=0;nu});var u=function(e){function t(){var e;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),(e=a(this,t,arguments)).id="user",e}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&c(e,t)}(t,e),n=t,r&&o(n.prototype,r),i&&o(n,i),Object.defineProperty(n,"prototype",{writable:!1}),n;var n,r,i}(n(55495).DynamicTypeObjectDataAbstractSelect)},29123:(e,t,n)=>{"use strict";n.r(t),n.d(t,{Accordion:()=>s});var r=n(36198),o=n(54688),i=n(25795),a=n(67475),s=function(e){var t=e.children,n=e.title,s=e.border,l=e.collapsed,c=e.collapsible,u=t.map((function(e,t){return{key:e.name,title:e.title,forceRender:!0,children:r.createElement(i.ObjectComponent,Object.assign({},e,{title:"",key:e.name}))}}));return r.createElement(a.BaseView,{border:s,collapsed:l,collapsible:c,title:n},r.createElement(o.Accordion,{bordered:!0,ghost:!0,items:u}))}},48054:(e,t,n)=>{"use strict";n.r(t),n.d(t,{FieldContainer:()=>a});var r=n(36198),o=n(47259),i=n(25795),a=function(e){var t=e.children;e.collapsible,e.collapsed;return r.createElement(o.Flex,{className:"w-full",gap:{x:"extra-small",y:0}},t.map((function(e){return r.createElement(o.Flex,{flex:1,key:e.name},r.createElement(i.ObjectComponent,Object.assign({},e)))})))}},21089:(e,t,n)=>{"use strict";n.r(t),n.d(t,{Panel:()=>l});var r=n(36198),o=n(25795),i=n(67475),a=n(40069),s=n(48388),l=function(e){var t=e.children,n=e.name,l=e.border,c=e.collapsed,u=e.collapsible,d=e.title,f="pimcore_root"===n,h=void 0!==t.find((function(e){return"tabpanel"===e.fieldType||"tabpanel"===e.fieldtype}));return f&&!h?r.createElement(s.Box,{padding:"small"},p()):r.createElement(r.Fragment,null,p());function p(){return r.createElement(i.BaseView,{border:l,collapsed:c,collapsible:u,title:d},r.createElement(a.Space,{className:"w-full",direction:"vertical",size:"small"},t.map((function(e,t){return r.createElement(o.ObjectComponent,Object.assign({},e,{key:e.name}))}))))}}},45701:(e,t,n)=>{"use strict";n.r(t),n.d(t,{Region:()=>s,availableRegions:()=>a});var r=n(65286),o=n(36198),i=n(25795),a={north:"north",south:"south",east:"east",west:"west",center:"center"},s=function(e){var t,n,s,l=e.children,c=[],u=[],d={};l.forEach((function(e){var t,n=e.region;""!==n&&null!==n||(n=a.center);var r=(null!==(t=d[n])&&void 0!==t?t:0)+1;c.push({region:"".concat(n).concat(r),component:o.createElement(i.ObjectComponent,Object.assign({},e,{key:e.name}))}),d[n]=r}));var f=(null!==(t=d[a.center])&&void 0!==t?t:0)+(null!==(n=d[a.east])&&void 0!==n?n:0)+(null!==(s=d[a.west])&&void 0!==s?s:0),h=f>0;if(h||(f=1),d[a.north]>0)for(var p=0;p0)for(var g=0;g0)for(var y=0;y0)for(var v=0;v0)for(var b=0;b{"use strict";n.r(t),n.d(t,{Tabpanel:()=>l});var r=n(36198),o=n(25795),i=n(28518),a=n(48388),s=n(67475),l=function(e){var t=e.children,n=e.border,l=e.collapsed,c=e.collapsible,u=e.title,d=t.map((function(e,t){var n=Object.assign(Object.assign({},e),{title:void 0});return{key:n.name,label:e.title,forceRender:!0,children:r.createElement(a.Box,{padding:"small"},r.createElement(o.ObjectComponent,Object.assign({},n)))}}));return r.createElement(s.BaseView,{border:n,collapsed:l,collapsible:c,title:u},r.createElement(i.Tabs,{items:d}))}},12735:(e,t,n)=>{"use strict";n.r(t),n.d(t,{Text:()=>a});var r=n(36198),o=n(69850),i=n(67475),a=function(e){return r.createElement(i.BaseView,{border:e.border,collapsed:e.collapsed,collapsible:e.collapsible,title:e.title},r.createElement(o.SanitizeHtml,{html:e.html}))}},33436:(e,t,n)=>{"use strict";n.r(t),n.d(t,{DynamicTypeObjectLayoutAbstract:()=>c});var r=n(84560);function o(e,t){for(var n=0;n=0;l--)(o=e[l])&&(a=(i<3?o(a):i>3?o(t,n,a):o(t,n))||a);return i>3&&a&&Object.defineProperty(t,n,a),a},c=i((function e(){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e)}));c=l([(0,r.injectable)()],c)},22474:(e,t,n)=>{"use strict";n.r(t),n.d(t,{DynamicTypeObjectLayoutRegistry:()=>f});var r=n(84560);function o(e,t){for(var n=0;n=0;s--)(o=e[s])&&(a=(i<3?o(a):i>3?o(t,n,a):o(t,n))||a);return i>3&&a&&Object.defineProperty(t,n,a),a},f=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),a(this,t,arguments)}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&c(e,t)}(t,e),n=t,r&&o(n.prototype,r),i&&o(n,i),Object.defineProperty(n,"prototype",{writable:!1}),n;var n,r,i}(n(68110).DynamicTypeRegistryAbstract);f=d([(0,r.injectable)()],f)},99839:(e,t,n)=>{"use strict";n.r(t),n.d(t,{DynamicTypeObjectLayoutAccordion:()=>h});var r=n(36198),o=n(33436),i=n(29123);function a(e){return a="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},a(e)}function s(e,t){for(var n=0;n{"use strict";n.r(t),n.d(t,{DynamicTypeObjectLayoutFieldContainer:()=>h});var r=n(36198),o=n(33436),i=n(48054);function a(e){return a="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},a(e)}function s(e,t){for(var n=0;n{"use strict";n.r(t),n.d(t,{DynamicTypeObjectLayoutFieldset:()=>h});var r=n(36198),o=n(33436),i=n(21089);function a(e){return a="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},a(e)}function s(e,t){for(var n=0;n{"use strict";n.r(t),n.d(t,{DynamicTypeObjectLayoutPanel:()=>h});var r=n(36198),o=n(33436),i=n(21089);function a(e){return a="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},a(e)}function s(e,t){for(var n=0;n{"use strict";n.r(t),n.d(t,{DynamicTypeObjectLayoutRegion:()=>h});var r=n(36198),o=n(33436),i=n(45701);function a(e){return a="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},a(e)}function s(e,t){for(var n=0;n{"use strict";n.r(t),n.d(t,{DynamicTypeObjectLayoutTabpanel:()=>h});var r=n(36198),o=n(33436),i=n(38222);function a(e){return a="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},a(e)}function s(e,t){for(var n=0;n{"use strict";n.r(t),n.d(t,{DynamicTypeObjectLayoutText:()=>h});var r=n(36198),o=n(33436),i=n(12735);function a(e){return a="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},a(e)}function s(e,t){for(var n=0;n{"use strict";n.r(t),n.d(t,{AccordionView:()=>a});var r=n(54688),o=n(36198),i=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&t.indexOf(r)<0&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var o=0;for(r=Object.getOwnPropertySymbols(e);o{"use strict";n.r(t),n.d(t,{BaseView:()=>s});var r=n(36198),o=n(75612),i=n(93274),a=n(79342),s=function(e){return!0===e.border||!0===e.collapsible||!(0,a.isEmptyValue)(e.title)?!0===e.collapsible?r.createElement(o.AccordionView,{bordered:e.border,collapsed:e.collapsed,title:e.title},e.children):r.createElement(i.CardView,{bordered:e.border,title:e.title},e.children):r.createElement(r.Fragment,null,e.children)}},93274:(e,t,n)=>{"use strict";n.r(t),n.d(t,{CardView:()=>a});var r=n(14500),o=n(79342),i=n(36198),a=function(e){return console.log(e.bordered,!0===e.bordered),i.createElement(r.Card,{bordered:!0===e.bordered,title:(0,o.isEmptyValue)(e.title)?void 0:e.title},e.children)}},15656:(e,t,n)=>{"use strict";n.r(t);var r=n(81690),o=n(80237),i=n(54088);o.moduleSystem.registerModule({onInit:function(){var e=r.container.get(i.serviceIds["DynamicTypes/FieldFilterRegistry"]);e.registerDynamicType(r.container.get(i.serviceIds["DynamicTypes/FieldFilter/Text"])),e.registerDynamicType(r.container.get(i.serviceIds["DynamicTypes/FieldFilter/Number"])),e.registerDynamicType(r.container.get(i.serviceIds["DynamicTypes/FieldFilter/Select"])),e.registerDynamicType(r.container.get(i.serviceIds["DynamicTypes/FieldFilter/Datetime"]));var t=r.container.get(i.serviceIds["DynamicTypes/GridCellRegistry"]);t.registerDynamicType(r.container.get(i.serviceIds["DynamicTypes/GridCell/Text"])),t.registerDynamicType(r.container.get(i.serviceIds["DynamicTypes/GridCell/Textarea"])),t.registerDynamicType(r.container.get(i.serviceIds["DynamicTypes/GridCell/Select"])),t.registerDynamicType(r.container.get(i.serviceIds["DynamicTypes/GridCell/Checkbox"])),t.registerDynamicType(r.container.get(i.serviceIds["DynamicTypes/GridCell/Date"])),t.registerDynamicType(r.container.get(i.serviceIds["DynamicTypes/GridCell/Time"])),t.registerDynamicType(r.container.get(i.serviceIds["DynamicTypes/GridCell/DateTime"])),t.registerDynamicType(r.container.get(i.serviceIds["DynamicTypes/GridCell/AssetLink"])),t.registerDynamicType(r.container.get(i.serviceIds["DynamicTypes/GridCell/ObjectLink"])),t.registerDynamicType(r.container.get(i.serviceIds["DynamicTypes/GridCell/DocumentLink"])),t.registerDynamicType(r.container.get(i.serviceIds["DynamicTypes/GridCell/OpenElement"])),t.registerDynamicType(r.container.get(i.serviceIds["DynamicTypes/GridCell/AssetPreview"])),t.registerDynamicType(r.container.get(i.serviceIds["DynamicTypes/GridCell/AssetActions"])),t.registerDynamicType(r.container.get(i.serviceIds["DynamicTypes/GridCell/DependencyTypeIcon"])),t.registerDynamicType(r.container.get(i.serviceIds["DynamicTypes/GridCell/AssetCustomMetadataIcon"])),t.registerDynamicType(r.container.get(i.serviceIds["DynamicTypes/GridCell/AssetCustomMetadataValue"])),t.registerDynamicType(r.container.get(i.serviceIds["DynamicTypes/GridCell/PropertyIcon"])),t.registerDynamicType(r.container.get(i.serviceIds["DynamicTypes/GridCell/PropertyValue"])),t.registerDynamicType(r.container.get(i.serviceIds["DynamicTypes/GridCell/ScheduleActionsSelect"])),t.registerDynamicType(r.container.get(i.serviceIds["DynamicTypes/GridCell/VersionsIdSelect"])),t.registerDynamicType(r.container.get(i.serviceIds["DynamicTypes/GridCell/AssetVersionPreviewFieldLabel"]));var n=r.container.get(i.serviceIds["DynamicTypes/MetadataRegistry"]);n.registerDynamicType(r.container.get(i.serviceIds["DynamicTypes/Metadata/Asset"])),n.registerDynamicType(r.container.get(i.serviceIds["DynamicTypes/Metadata/Checkbox"])),n.registerDynamicType(r.container.get(i.serviceIds["DynamicTypes/Metadata/Date"])),n.registerDynamicType(r.container.get(i.serviceIds["DynamicTypes/Metadata/Document"])),n.registerDynamicType(r.container.get(i.serviceIds["DynamicTypes/Metadata/Input"])),n.registerDynamicType(r.container.get(i.serviceIds["DynamicTypes/Metadata/Object"])),n.registerDynamicType(r.container.get(i.serviceIds["DynamicTypes/Metadata/Select"])),n.registerDynamicType(r.container.get(i.serviceIds["DynamicTypes/Metadata/Textarea"]));var o=r.container.get(i.serviceIds["DynamicTypes/ObjectLayoutRegistry"]);o.registerDynamicType(r.container.get(i.serviceIds["DynamicTypes/ObjectLayout/Panel"])),o.registerDynamicType(r.container.get(i.serviceIds["DynamicTypes/ObjectLayout/Tabpanel"])),o.registerDynamicType(r.container.get(i.serviceIds["DynamicTypes/ObjectLayout/Accordion"])),o.registerDynamicType(r.container.get(i.serviceIds["DynamicTypes/ObjectLayout/Region"])),o.registerDynamicType(r.container.get(i.serviceIds["DynamicTypes/ObjectLayout/Text"])),o.registerDynamicType(r.container.get(i.serviceIds["DynamicTypes/ObjectLayout/Fieldset"])),o.registerDynamicType(r.container.get(i.serviceIds["DynamicTypes/ObjectLayout/FieldContainer"]));var a=r.container.get(i.serviceIds["DynamicTypes/ObjectDataRegistry"]);a.registerDynamicType(r.container.get(i.serviceIds["DynamicTypes/ObjectData/Input"])),a.registerDynamicType(r.container.get(i.serviceIds["DynamicTypes/ObjectData/Textarea"])),a.registerDynamicType(r.container.get(i.serviceIds["DynamicTypes/ObjectData/Password"])),a.registerDynamicType(r.container.get(i.serviceIds["DynamicTypes/ObjectData/Select"])),a.registerDynamicType(r.container.get(i.serviceIds["DynamicTypes/ObjectData/MultiSelect"])),a.registerDynamicType(r.container.get(i.serviceIds["DynamicTypes/ObjectData/Language"])),a.registerDynamicType(r.container.get(i.serviceIds["DynamicTypes/ObjectData/LanguageMultiSelect"])),a.registerDynamicType(r.container.get(i.serviceIds["DynamicTypes/ObjectData/Country"])),a.registerDynamicType(r.container.get(i.serviceIds["DynamicTypes/ObjectData/CountryMultiSelect"])),a.registerDynamicType(r.container.get(i.serviceIds["DynamicTypes/ObjectData/User"])),a.registerDynamicType(r.container.get(i.serviceIds["DynamicTypes/ObjectData/BooleanSelect"])),a.registerDynamicType(r.container.get(i.serviceIds["DynamicTypes/ObjectData/Numeric"])),a.registerDynamicType(r.container.get(i.serviceIds["DynamicTypes/ObjectData/NumericRange"])),a.registerDynamicType(r.container.get(i.serviceIds["DynamicTypes/ObjectData/Slider"])),a.registerDynamicType(r.container.get(i.serviceIds["DynamicTypes/ObjectData/Consent"])),a.registerDynamicType(r.container.get(i.serviceIds["DynamicTypes/ObjectData/Firstname"])),a.registerDynamicType(r.container.get(i.serviceIds["DynamicTypes/ObjectData/Lastname"])),a.registerDynamicType(r.container.get(i.serviceIds["DynamicTypes/ObjectData/Email"])),a.registerDynamicType(r.container.get(i.serviceIds["DynamicTypes/ObjectData/Gender"])),a.registerDynamicType(r.container.get(i.serviceIds["DynamicTypes/ObjectData/RgbaColor"])),a.registerDynamicType(r.container.get(i.serviceIds["DynamicTypes/ObjectData/Date"])),a.registerDynamicType(r.container.get(i.serviceIds["DynamicTypes/ObjectData/Datetime"])),a.registerDynamicType(r.container.get(i.serviceIds["DynamicTypes/ObjectData/DateRange"])),a.registerDynamicType(r.container.get(i.serviceIds["DynamicTypes/ObjectData/Time"])),a.registerDynamicType(r.container.get(i.serviceIds["DynamicTypes/ObjectData/ExternalImage"])),a.registerDynamicType(r.container.get(i.serviceIds["DynamicTypes/ObjectData/Block"])),a.registerDynamicType(r.container.get(i.serviceIds["DynamicTypes/ObjectData/LocalizedFields"]))}})},68110:(e,t,n)=>{"use strict";n.r(t),n.d(t,{DynamicTypeAbstract:()=>u,DynamicTypeRegistryAbstract:()=>d});var r=n(84560);function o(e,t){for(var n=0;n=0;s--)(o=e[s])&&(a=(i<3?o(a):i>3?o(t,n,a):o(t,n))||a);return i>3&&a&&Object.defineProperty(t,n,a),a},u=i((function e(){s(this,e)}));u=c([(0,r.injectable)()],u);var d=function(){return i((function e(){s(this,e),this.dynamicTypes=new Map}),[{key:"registerDynamicType",value:function(e){if(this.dynamicTypes.has(e.id))throw new Error('Dynamic type with id "'.concat(e.id,'" already exists'));this.dynamicTypes.set(e.id,e)}},{key:"getDynamicType",value:function(e){var t=this.dynamicTypes.get(e);if(void 0===t)throw new Error('Dynamic type with id "'.concat(e,'" not found'));return t}},{key:"getDynamicTypes",value:function(){return Array.from(this.dynamicTypes.values())}},{key:"overrideDynamicType",value:function(e){if(!this.dynamicTypes.has(e.id))throw new Error('Dynamic type with id "'.concat(e.id,'" not found'));this.dynamicTypes.set(e.id,e)}},{key:"hasDynamicType",value:function(e){return this.dynamicTypes.has(e)}}])}();d=c([(0,r.injectable)()],d)},47636:(e,t,n)=>{"use strict";n.r(t),n.d(t,{DynamicTypeRegistryContext:()=>a,DynamicTypeRegistryProvider:()=>s});var r=n(36198);function o(e){return function(e){if(Array.isArray(e))return i(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||function(e,t){if(!e)return;if("string"==typeof e)return i(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return i(e,t)}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function i(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";function r(e){return r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},r(e)}function o(e,t){for(var n=0;nc,DynamicTypesResolverTargets:()=>s,targetCallbackNameMap:()=>l});var s={GRID_CELL:"GRID_CELL",FIELD_FILTER:"FIELD_FILTER"},l=i(i({},s.GRID_CELL,"getGridCellComponent"),s.FIELD_FILTER,"getFieldFilterComponent"),c=function(){return e=function e(){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e)},(t=[{key:"resolve",value:function(e){var t=e.target,n=e.dynamicType;if(!this.hasCallable(t,n))throw new Error("DynamicTypeResolver: ".concat(n.id," does not have a callable ").concat(l[t]));return function(e){return n[l[t]].bind(n)(e)}}},{key:"hasCallable",value:function(e,t){return void 0!==t[l[e]]&&"function"==typeof t[l[e]]}}])&&o(e.prototype,t),n&&o(e,n),Object.defineProperty(e,"prototype",{writable:!1}),e;var e,t,n}()},1447:(e,t,n)=>{"use strict";n.r(t),n.d(t,{useDynamicTypeResolver:()=>c});var r=n(36198),o=n(49427),i=n(47636),a=n(81690);function s(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=function(e,t){if(!e)return;if("string"==typeof e)return l(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return l(e,t)}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0,o=function(){};return{s:o,n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,a=!0,s=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return a=e.done,e},e:function(e){s=!0,i=e},f:function(){try{a||null==n.return||n.return()}finally{if(s)throw i}}}}function l(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";n.r(t),n.d(t,{default:()=>u});var r=n(36198),o=n(82755),i=n(81690),a=n(54088),s=n(87633),l=n(6400),c=n(66777);function u(e){var t,n=e.context,u=e.tabKey,d=(0,c.useWidgetManager)().getOpenedMainWidget,f=(0,s.useElementDraft)(n.config.id,n.type),h=f.editorType;if(f.isLoading)return r.createElement(o.Content,{loading:!0});if(void 0===h)return r.createElement(l.default,null);var p=d(),m=i.container.get(h.tabManagerServiceId).getTab(u),g=i.container.get(a.serviceIds.widgetManager);if(void 0===m||void 0===p)return r.createElement(l.default,null);var y=g.getWidget(null!==(t=null==p?void 0:p.getComponent())&&void 0!==t?t:"");if(void 0===(null==y?void 0:y.getContextProvider))return r.createElement(l.default,null);var v=y.getContextProvider(n,m.children);return void 0===v?r.createElement(l.default,null):v}},38491:(e,t,n)=>{"use strict";n.r(t),n.d(t,{DetachedTab:()=>s});var r=n(36198),o=n(6400),i=n(32151),a=n(67876),s=function(e){var t=e.tabKey,n=(0,a.useGlobalElementContext)().context;return void 0===n?r.createElement(o.default,null):r.createElement(i.default,{context:n,tabKey:t})}},6400:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>o});var r=n(36198);function o(){return r.createElement("div",null,"Missing context!")}},74366:(e,t,n)=>{"use strict";n.r(t);var r=n(81690),o=n(54088),i=n(80237),a=n(38491);i.moduleSystem.registerModule({onInit:function(){r.container.get(o.serviceIds.widgetManager).registerWidget({name:"detachable-tab",component:a.DetachedTab})}})},3561:(e,t,n)=>{"use strict";var r;n.r(t),n.d(t,{useStyles:()=>o});var o=(0,n(3562).createStyles)((function(e){var t,n,o=e.token;return{tabbarToolbar:(0,e.css)(r||(t=["\n &.tabs-toolbar-layout {\n display: flex;\n flex-direction: column;\n height: 100%;\n width: 100%;\n overflow: hidden;\n }\n\n .tabs-toolbar-layout__tabbar {\n display: flex;\n overflow: hidden;\n height: calc(100% - ","px);\n width: 100%;\n }\n\n .tabs-toolbar-layout__toolbar {\n display: flex;\n overflow: hidden;\n height: ","px;\n width: 100%;\n }\n "],n||(n=t.slice(0)),r=Object.freeze(Object.defineProperties(t,{raw:{value:Object.freeze(n)}}))),o.sizeXXL,o.sizeXXL)}}),{hashPriority:"low"})},6150:(e,t,n)=>{"use strict";n.r(t),n.d(t,{TabsToolbarView:()=>i});var r=n(36198),o=n(3561),i=function(e){var t=(0,o.useStyles)().styles;return r.createElement("div",{className:["tabs-toolbar-layout",t.tabbarToolbar].join(" ")},r.createElement("div",{className:"tabs-toolbar-layout__tabbar"},e.renderTabbar),r.createElement("div",{className:"tabs-toolbar-layout__toolbar"},e.renderToolbar))}},9866:(e,t,n)=>{"use strict";n.r(t),n.d(t,{TypeRegistry:()=>l});var r=n(84560);function o(e,t){for(var n=0;n=0;l--)(o=e[l])&&(s=(i<3?o(s):i>3?o(t,n,s):o(t,n))||s);return i>3&&s&&Object.defineProperty(t,n,s),s},l=function(){return e=function e(){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),this.registry={}},(t=[{key:"register",value:function(e){if(this.has(e.name))throw new Error('Type with the name "'.concat(e.name,'" already exists.'));this.registry[e.name]=e}},{key:"get",value:function(e){if(!this.has(e))throw new Error('No type with the name "'.concat(e,'" found'));return this.registry[e]}},{key:"has",value:function(e){return e in this.registry}}])&&o(e.prototype,t),n&&o(e,n),Object.defineProperty(e,"prototype",{writable:!1}),e;var e,t,n}();l=s([(0,r.injectable)()],l)},99954:(e,t,n)=>{"use strict";n.r(t),n.d(t,{TAB_DEPENDENCIES:()=>h,TAB_NOTES_AND_EVENTS:()=>m,TAB_PROPERTIES:()=>d,TAB_SCHEDULE:()=>f,TAB_TAGS:()=>g,TAB_WORKFLOW:()=>p});var r=n(54663),o=n(36198),i=n(67534),a=n(75818),s=n(5232),l=n(10593),c=n(56396),u=n(57527),d={key:"properties",label:"properties.label",workspacePermission:"properties",children:o.createElement(i.PropertiesContainer,null),icon:o.createElement(r.Icon,{value:"settings2"}),isDetachable:!0},f={key:"schedule",label:"schedule.label",workspacePermission:"settings",children:o.createElement(a.ScheduleTabContainer,null),icon:o.createElement(r.Icon,{value:"schedule-outlined"}),isDetachable:!0},h={key:"dependencies",label:"dependencies.label",children:o.createElement(s.DependenciesTabContainer,null),icon:o.createElement(r.Icon,{value:"hierarchy"}),isDetachable:!0},p={key:"workflow",label:"workflow.label",userPermission:"workflow_details",children:o.createElement(l.WorkflowTabContainer,null),icon:o.createElement(r.Icon,{value:"workflow"}),isDetachable:!0},m={key:"notes-events",label:"notes-and-events.label",userPermission:"notes_events",children:o.createElement(c.NotesAndEventsTabContainer,null),icon:o.createElement(r.Icon,{value:"view-details"}),isDetachable:!0},g={key:"tags",label:"tags.label",userPermission:"tags_assignment",children:o.createElement(u.TagsTabContainer,null),icon:o.createElement(r.Icon,{value:"tag-two-tone"}),isDetachable:!0}},98740:(e,t,n)=>{"use strict";n.r(t),n.d(t,{TabsContainer:()=>s});var r=n(36198),o=n(95719),i=n(30811),a=n(81690),s=function(e){var t=e.elementEditorType,n=(0,i.useTranslation)().t,s=(0,a.useInjection)(t.tabManagerServiceId).getTabs(),l=s.map((function(e,t){return Object.assign(Object.assign({},s[t]),{label:"string"==typeof e.label?n(e.label):e.label})}));return r.createElement(o.EditorTabs,{defaultActiveKey:"1",items:l,showLabelIfActive:!0})}},57379:(e,t,n)=>{"use strict";n.r(t),n.d(t,{Pagination:()=>s});var r=n(36198),o=n(36609),i=n(38549),a=n(65773),s=function(e){var t;return e.isLoading?r.createElement(a.PaginationSkeleton,null):e.isLoading||0!==e.totalItems?r.createElement(i.Pagination,{current:e.page,defaultPageSize:20,onChange:e.onChange,pageSizeOptions:["10","20","50","100"],showSizeChanger:!0,showTotal:function(e){return(0,o.t)("pagination.show-total",{total:e})},total:null!==(t=e.totalItems)&&void 0!==t?t:0}):r.createElement(r.Fragment,null)}},44025:(e,t,n)=>{"use strict";var r;n.r(t),n.d(t,{useStyle:()=>o});var o=(0,n(3562).createStyles)((function(e){var t,n;e.token;return{skeleton:(0,e.css)(r||(t=["\n width: 100%;\n display: flex;\n gap: 4px;\n align-items: center;\n justify-content: flex-end;\n \n .square {\n .ant-skeleton-button {\n width: 24px;\n height: 24px;\n min-width: unset; \n }\n }\n "],n||(n=t.slice(0)),r=Object.freeze(Object.defineProperties(t,{raw:{value:Object.freeze(n)}}))))}}))},65773:(e,t,n)=>{"use strict";n.r(t),n.d(t,{PaginationSkeleton:()=>a});var r=n(36198),o=n(28518),i=n(44025),a=function(){var e=(0,i.useStyle)().styles;return r.createElement("div",{className:e.skeleton},r.createElement(o.Skeleton.Input,{active:!0,size:"small"}),r.createElement(o.Skeleton.Button,{active:!0,className:"square",size:"small"}),r.createElement(o.Skeleton.Button,{active:!0,className:"square",size:"small"}),r.createElement(o.Skeleton.Button,{active:!0,className:"square",size:"small"}),r.createElement(o.Skeleton.Button,{active:!0,size:"small"}))}},7330:(e,t,n)=>{"use strict";n.r(t),n.d(t,{RequiredByPanel:()=>g});var r=n(54663),o=n(36198),i=n(30811),a=n(22114),s=n(25160),l=n(57379),c=n(82755),u=n(41161),d=n(13438),f=n(72475),h=n(46928);function p(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return m(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return m(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function m(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";n.r(t),n.d(t,{RequiresPanel:()=>g});var r=n(36198),o=n(54663),i=n(30811),a=n(22114),s=n(25160),l=n(57379),c=n(82755),u=n(41161),d=n(13438),f=n(72475),h=n(46928);function p(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return m(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return m(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function m(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";n.r(t),n.d(t,{Table:()=>s});var r=n(74094),o=n(36198),i=n(30811),a=n(44587),s=function(e){var t=e.items,n=e.isLoading,s=(0,i.useTranslation)().t,l=(0,r.createColumnHelper)(),c=[l.accessor("subType",{header:s("dependencies.columns.subtype"),meta:{type:"dependency-type-icon"},size:60}),l.accessor("path",{header:s("dependencies.columns.path"),meta:{autoWidth:!0},size:300}),l.accessor("actions",{header:s("dependencies.columns.open"),meta:{type:"open-element"},size:50})];return o.createElement(a.Grid,{autoWidth:!0,columns:c,data:t,isLoading:n,resizable:!0})}},22114:(e,t,n)=>{"use strict";n.r(t),n.d(t,{api:()=>o,useDependencyGetCollectionByElementTypeQuery:()=>i});var r=n(38693),o=n(87429).api.enhanceEndpoints({addTagTypes:[r.tagNames.ASSET_DETAIL,r.tagNames.DATA_OBJECT_DETAIL,r.tagNames.DEPENDENCIES],endpoints:{dependencyGetCollectionByElementType:{providesTags:function(e,t,n){return r.providingTags.ELEMENT_DEPENDENCIES(n.elementType,n.id)}}}}),i=o.useDependencyGetCollectionByElementTypeQuery},87429:(e,t,n)=>{"use strict";n.r(t),n.d(t,{addTagTypes:()=>o,api:()=>i,useDependencyGetCollectionByElementTypeQuery:()=>a});var r=n(35525),o=["Dependencies"],i=r.api.enhanceEndpoints({addTagTypes:o}).injectEndpoints({endpoints:function(e){return{dependencyGetCollectionByElementType:e.query({query:function(e){return{url:"/pimcore-studio/api/dependencies/".concat(e.elementType,"/").concat(e.id),params:{page:e.page,pageSize:e.pageSize,dependencyMode:e.dependencyMode}}},providesTags:["Dependencies"]})}},overrideExisting:!1}),a=i.useDependencyGetCollectionByElementTypeQuery},5232:(e,t,n)=>{"use strict";n.r(t),n.d(t,{DependenciesTabContainer:()=>s});var r=n(36198),o=n(64428),i=n(7330),a=n(67793),s=function(){return r.createElement(a.SplitLayout,{leftItem:{minSize:450,size:50,children:r.createElement(o.RequiresPanel,null)},resizeAble:!0,rightItem:{minSize:450,size:50,children:r.createElement(i.RequiredByPanel,null)},withDivider:!0})}},20393:(e,t,n)=>{"use strict";n.r(t),n.d(t,{AddNoteForm:()=>d});var r=n(36198),o=n(30811),i=n(28518),a=n(96330),s=n(29848),l=n(82755),c=n(58664),u=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&t.indexOf(r)<0&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var o=0;for(r=Object.getOwnPropertySymbols(e);o{"use strict";n.r(t),n.d(t,{AddNoteModal:()=>y});var r=n(36198),o=n(28518),i=n(30811),a=n(31090),s=n(20393),l=n(47974),c=n(29848);function u(e){return u="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},u(e)}function d(){d=function(){return t};var e,t={},n=Object.prototype,r=n.hasOwnProperty,o=Object.defineProperty||function(e,t,n){e[t]=n.value},i="function"==typeof Symbol?Symbol:{},a=i.iterator||"@@iterator",s=i.asyncIterator||"@@asyncIterator",l=i.toStringTag||"@@toStringTag";function c(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{c({},"")}catch(e){c=function(e,t,n){return e[t]=n}}function f(e,t,n,r){var i=t&&t.prototype instanceof b?t:b,a=Object.create(i.prototype),s=new R(r||[]);return o(a,"_invoke",{value:_(e,n,s)}),a}function h(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}t.wrap=f;var p="suspendedStart",m="suspendedYield",g="executing",y="completed",v={};function b(){}function O(){}function w(){}var S={};c(S,a,(function(){return this}));var x=Object.getPrototypeOf,E=x&&x(x(D([])));E&&E!==n&&r.call(E,a)&&(S=E);var T=w.prototype=b.prototype=Object.create(S);function C(e){["next","throw","return"].forEach((function(t){c(e,t,(function(e){return this._invoke(t,e)}))}))}function P(e,t){function n(o,i,a,s){var l=h(e[o],e,i);if("throw"!==l.type){var c=l.arg,d=c.value;return d&&"object"==u(d)&&r.call(d,"__await")?t.resolve(d.__await).then((function(e){n("next",e,a,s)}),(function(e){n("throw",e,a,s)})):t.resolve(d).then((function(e){c.value=e,a(c)}),(function(e){return n("throw",e,a,s)}))}s(l.arg)}var i;o(this,"_invoke",{value:function(e,r){function o(){return new t((function(t,o){n(e,r,t,o)}))}return i=i?i.then(o,o):o()}})}function _(t,n,r){var o=p;return function(i,a){if(o===g)throw Error("Generator is already running");if(o===y){if("throw"===i)throw a;return{value:e,done:!0}}for(r.method=i,r.arg=a;;){var s=r.delegate;if(s){var l=k(s,r);if(l){if(l===v)continue;return l}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if(o===p)throw o=y,r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);o=g;var c=h(t,n,r);if("normal"===c.type){if(o=r.done?y:m,c.arg===v)continue;return{value:c.arg,done:r.done}}"throw"===c.type&&(o=y,r.method="throw",r.arg=c.arg)}}}function k(t,n){var r=n.method,o=t.iterator[r];if(o===e)return n.delegate=null,"throw"===r&&t.iterator.return&&(n.method="return",n.arg=e,k(t,n),"throw"===n.method)||"return"!==r&&(n.method="throw",n.arg=new TypeError("The iterator does not provide a '"+r+"' method")),v;var i=h(o,t.iterator,n.arg);if("throw"===i.type)return n.method="throw",n.arg=i.arg,n.delegate=null,v;var a=i.arg;return a?a.done?(n[t.resultName]=a.value,n.next=t.nextLoc,"return"!==n.method&&(n.method="next",n.arg=e),n.delegate=null,v):a:(n.method="throw",n.arg=new TypeError("iterator result is not an object"),n.delegate=null,v)}function j(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function A(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function R(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(j,this),this.reset(!0)}function D(t){if(t||""===t){var n=t[a];if(n)return n.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var o=-1,i=function n(){for(;++o=0;--i){var a=this.tryEntries[i],s=a.completion;if("root"===a.tryLoc)return o("end");if(a.tryLoc<=this.prev){var l=r.call(a,"catchLoc"),c=r.call(a,"finallyLoc");if(l&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),A(n),v}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;A(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),v}},t}function f(e,t,n,r,o,i,a){try{var s=e[i](a),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(r,o)}function h(e){return function(){var t=this,n=arguments;return new Promise((function(r,o){var i=e.apply(t,n);function a(e){f(i,r,o,a,s,"next",e)}function s(e){f(i,r,o,a,s,"throw",e)}a(void 0)}))}}function p(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return m(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return m(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function m(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n0&&void 0!==i[0]?i[0]:"",r=i.length>1?i[1]:void 0,o=i.length>2&&void 0!==i[2]?i[2]:"",e.next=5,f({elementType:t.elementType,id:t.elementId,createNote:{type:n,title:r,description:o}});case 5:case"end":return e.stop()}}),e)}))),O.apply(this,arguments)}function w(){return(w=h(d().mark((function e(n){return d().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return v(!0),e.next=3,b(n.type,n.title,n.description);case 3:t.setOpen(!1),u.resetFields(),v(!1);case 6:case"end":return e.stop()}}),e)})))).apply(this,arguments)}return r.createElement(o.Modal,{okButtonProps:{loading:y},okText:n("save"),onCancel:function(){t.setOpen(!1),u.resetFields()},onOk:function(){u.submit()},open:t.open,title:r.createElement(a.ModalTitle,{iconName:"PlusCircleOutlined"},n("notes-and-events.new-note"))},r.createElement(s.AddNoteForm,{elementType:t.elementType,form:u,onFinish:function(e){return w.apply(this,arguments)}}))}},29848:(e,t,n)=>{"use strict";n.r(t),n.d(t,{api:()=>a,useNoteDeleteByIdMutation:()=>s,useNoteElementCreateMutation:()=>l,useNoteElementGetCollectionQuery:()=>c,useNoteElementGetTypeCollectionQuery:()=>u,useNoteGetCollectionQuery:()=>d});var r=n(38693);function o(e){return function(e){if(Array.isArray(e))return i(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||function(e,t){if(!e)return;if("string"==typeof e)return i(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return i(e,t)}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function i(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";n.r(t),n.d(t,{addTagTypes:()=>o,api:()=>i,useNoteDeleteByIdMutation:()=>s,useNoteElementCreateMutation:()=>c,useNoteElementGetCollectionQuery:()=>l,useNoteElementGetTypeCollectionQuery:()=>u,useNoteGetCollectionQuery:()=>a});var r=n(35525),o=["Notes"],i=r.api.enhanceEndpoints({addTagTypes:o}).injectEndpoints({endpoints:function(e){return{noteGetCollection:e.query({query:function(e){return{url:"/pimcore-studio/api/notes",params:{page:e.page,pageSize:e.pageSize,sortBy:e.sortBy,sortOrder:e.sortOrder,filter:e.filter,fieldFilters:e.fieldFilters}}},providesTags:["Notes"]}),noteDeleteById:e.mutation({query:function(e){return{url:"/pimcore-studio/api/notes/".concat(e.id),method:"DELETE"}},invalidatesTags:["Notes"]}),noteElementGetCollection:e.query({query:function(e){return{url:"/pimcore-studio/api/notes/".concat(e.elementType,"/").concat(e.id),params:{page:e.page,pageSize:e.pageSize,sortBy:e.sortBy,sortOrder:e.sortOrder,filter:e.filter,fieldFilters:e.fieldFilters}}},providesTags:["Notes"]}),noteElementCreate:e.mutation({query:function(e){return{url:"/pimcore-studio/api/notes/".concat(e.elementType,"/").concat(e.id),method:"POST",body:e.createNote}},invalidatesTags:["Notes"]}),noteElementGetTypeCollection:e.query({query:function(e){return{url:"/pimcore-studio/api/notes/type/".concat(e.elementType)}},providesTags:["Notes"]})}},overrideExisting:!1}),a=i.useNoteGetCollectionQuery,s=i.useNoteDeleteByIdMutation,l=i.useNoteElementGetCollectionQuery,c=i.useNoteElementCreateMutation,u=i.useNoteElementGetTypeCollectionQuery},56396:(e,t,n)=>{"use strict";n.r(t),n.d(t,{NotesAndEventsTabContainer:()=>y});var r=n(36198),o=n(59017),i=n(29848),a=n(38549),s=n(30811),l=n(82755),c=n(46928),u=n(7496),d=n(38693);function f(e){return f="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},f(e)}function h(){h=function(){return t};var e,t={},n=Object.prototype,r=n.hasOwnProperty,o=Object.defineProperty||function(e,t,n){e[t]=n.value},i="function"==typeof Symbol?Symbol:{},a=i.iterator||"@@iterator",s=i.asyncIterator||"@@asyncIterator",l=i.toStringTag||"@@toStringTag";function c(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{c({},"")}catch(e){c=function(e,t,n){return e[t]=n}}function u(e,t,n,r){var i=t&&t.prototype instanceof b?t:b,a=Object.create(i.prototype),s=new R(r||[]);return o(a,"_invoke",{value:_(e,n,s)}),a}function d(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}t.wrap=u;var p="suspendedStart",m="suspendedYield",g="executing",y="completed",v={};function b(){}function O(){}function w(){}var S={};c(S,a,(function(){return this}));var x=Object.getPrototypeOf,E=x&&x(x(D([])));E&&E!==n&&r.call(E,a)&&(S=E);var T=w.prototype=b.prototype=Object.create(S);function C(e){["next","throw","return"].forEach((function(t){c(e,t,(function(e){return this._invoke(t,e)}))}))}function P(e,t){function n(o,i,a,s){var l=d(e[o],e,i);if("throw"!==l.type){var c=l.arg,u=c.value;return u&&"object"==f(u)&&r.call(u,"__await")?t.resolve(u.__await).then((function(e){n("next",e,a,s)}),(function(e){n("throw",e,a,s)})):t.resolve(u).then((function(e){c.value=e,a(c)}),(function(e){return n("throw",e,a,s)}))}s(l.arg)}var i;o(this,"_invoke",{value:function(e,r){function o(){return new t((function(t,o){n(e,r,t,o)}))}return i=i?i.then(o,o):o()}})}function _(t,n,r){var o=p;return function(i,a){if(o===g)throw Error("Generator is already running");if(o===y){if("throw"===i)throw a;return{value:e,done:!0}}for(r.method=i,r.arg=a;;){var s=r.delegate;if(s){var l=k(s,r);if(l){if(l===v)continue;return l}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if(o===p)throw o=y,r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);o=g;var c=d(t,n,r);if("normal"===c.type){if(o=r.done?y:m,c.arg===v)continue;return{value:c.arg,done:r.done}}"throw"===c.type&&(o=y,r.method="throw",r.arg=c.arg)}}}function k(t,n){var r=n.method,o=t.iterator[r];if(o===e)return n.delegate=null,"throw"===r&&t.iterator.return&&(n.method="return",n.arg=e,k(t,n),"throw"===n.method)||"return"!==r&&(n.method="throw",n.arg=new TypeError("The iterator does not provide a '"+r+"' method")),v;var i=d(o,t.iterator,n.arg);if("throw"===i.type)return n.method="throw",n.arg=i.arg,n.delegate=null,v;var a=i.arg;return a?a.done?(n[t.resultName]=a.value,n.next=t.nextLoc,"return"!==n.method&&(n.method="next",n.arg=e),n.delegate=null,v):a:(n.method="throw",n.arg=new TypeError("iterator result is not an object"),n.delegate=null,v)}function j(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function A(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function R(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(j,this),this.reset(!0)}function D(t){if(t||""===t){var n=t[a];if(n)return n.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var o=-1,i=function n(){for(;++o=0;--i){var a=this.tryEntries[i],s=a.completion;if("root"===a.tryLoc)return o("end");if(a.tryLoc<=this.prev){var l=r.call(a,"catchLoc"),c=r.call(a,"finallyLoc");if(l&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),A(n),v}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;A(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),v}},t}function p(e,t,n,r,o,i,a){try{var s=e[i](a),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(r,o)}function m(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return g(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return g(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function g(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";n.r(t),n.d(t,{NotesAndEventsTabView:()=>C});var r=n(36198),o=n(30811),i=n(38576),a=n(20361),s=n(62833),l=n(41161),c=n(82755),u=n(13438),d=n(72475),f=n(28518),h=n(40069),p=n(36609),m=n(44587),g=n(74094),y=n(54688),v=n(63664),b=n(27027),O=n(99401),w=n(25419),S=n(31110);function x(e){return x="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},x(e)}function E(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return T(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return T(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function T(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n0&&(t=!0,e.data.forEach((function(e){var t=structuredClone(e);"object"===x(t.data)?t[_("notes-and-events.value")]=t.data.path:t[_("notes-and-events.value")]=(0,i.respectLineBreak)(t.data),delete t.data,n.push(t)})));var o,a=(0,g.createColumnHelper)(),s=[a.accessor(p.default.t("notes-and-events.name"),{}),a.accessor(p.default.t("notes-and-events.type"),{size:120}),a.accessor(p.default.t("notes-and-events.value"),{size:310,meta:{autoWidth:!0}})];return Object.assign({key:e.id.toString(),title:r.createElement(w.Split,{dividerSize:"small",size:"extra-small",theme:"secondary"},""!==e.title&&r.createElement(r.Fragment,null,r.createElement(O.Text,{strong:!0},e.title)),r.createElement(O.Text,{type:"secondary"},e.userName)),extra:(o=""!==e.type?_("notes-and-events.".concat(e.type)):void 0,r.createElement(h.Space,{align:"center",size:"extra-small"},void 0!==o&&r.createElement(f.Tag,null,o),r.createElement("span",null,(0,v.formatDateTime)({timestamp:e.date,dateStyle:"short",timeStyle:"medium"})),r.createElement(b.IconButton,{"aria-label":p.default.t("aria.notes-and-events.delete"),icon:{value:"trash"},onClick:function(t){t.stopPropagation(),T(e.id)},theme:"primary"}))),children:r.createElement(r.Fragment,null,r.createElement("span",{className:"panel-body__description "+(t?"panel-body__description-padding":"")},r.createElement(S.Paragraph,null,(0,i.respectLineBreak)(e.description))),t&&r.createElement("div",null,r.createElement("span",{className:"panel-body__details"},p.default.t("notes-and-events.details")),r.createElement(m.Grid,{autoWidth:!0,columns:s,data:e.data,resizable:!0})))},0===e.description.length&&{disabled:!0})}));return r.createElement(u.ContentToolbarSidebarLayout,{renderToolbar:0!==t.length?r.createElement(d.Toolbar,{justify:"flex-end",theme:"secondary"},r.createElement(r.Fragment,null,n)):void 0},r.createElement(c.Content,{padded:!0},r.createElement(l.Header,{title:_("notes-and-events.notes-and-events")},r.createElement(s.IconTextButton,{icon:{value:"PlusCircleOutlined"},onClick:function(){A(!0)}},_("add")),r.createElement(a.AddNoteModal,{elementId:C,elementType:P,open:j,setOpen:A})),r.createElement(c.Content,{none:0===t.length,noneOptions:{text:_("notes-and-events.no-notes-and-events-to-show")}},r.createElement(y.Accordion,{accordion:!1,items:R,spaced:!0}))))}},12853:(e,t,n)=>{"use strict";var r;n.r(t),n.d(t,{useStyles:()=>o});var o=(0,n(3562).createStyles)((function(e){var t,n,o=e.token;return{table:(0,e.css)(r||(t=["\n .ant-table {\n .ant-table-tbody {\n \n .properties-table--actions-column {\n align-items: center;\n \n .ant-btn-icon {\n color: ",";\n \n &:hover {\n color: ",";\n }\n }\n }\n }\n }\n \n .headline {\n padding: ","px;\n margin: 0;\n }\n "],n||(n=t.slice(0)),r=Object.freeze(Object.defineProperties(t,{raw:{value:Object.freeze(n)}}))),o.colorPrimary,o.colorPrimaryHover,o.paddingXS)}}))},16366:(e,t,n)=>{"use strict";n.r(t),n.d(t,{Table:()=>E});var r=n(36198),o=n(44587),i=n(74094),a=n(30811),s=n(12853),l=n(87633),c=n(4795),u=n(27027),d=n(30928),f=n(73990),h=n(46928),p=n(99401),m=n(48388);function g(e){return g="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},g(e)}function y(e,t,n){var r;return r=function(e,t){if("object"!=g(e)||!e)return e;var n=e[Symbol.toPrimitive];if(void 0!==n){var r=n.call(e,t||"default");if("object"!=g(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"),(t="symbol"==g(r)?r:r+"")in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function v(e){return function(e){if(Array.isArray(e))return x(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||S(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function b(){b=function(){return t};var e,t={},n=Object.prototype,r=n.hasOwnProperty,o=Object.defineProperty||function(e,t,n){e[t]=n.value},i="function"==typeof Symbol?Symbol:{},a=i.iterator||"@@iterator",s=i.asyncIterator||"@@asyncIterator",l=i.toStringTag||"@@toStringTag";function c(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{c({},"")}catch(e){c=function(e,t,n){return e[t]=n}}function u(e,t,n,r){var i=t&&t.prototype instanceof v?t:v,a=Object.create(i.prototype),s=new R(r||[]);return o(a,"_invoke",{value:_(e,n,s)}),a}function d(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}t.wrap=u;var f="suspendedStart",h="suspendedYield",p="executing",m="completed",y={};function v(){}function O(){}function w(){}var S={};c(S,a,(function(){return this}));var x=Object.getPrototypeOf,E=x&&x(x(D([])));E&&E!==n&&r.call(E,a)&&(S=E);var T=w.prototype=v.prototype=Object.create(S);function C(e){["next","throw","return"].forEach((function(t){c(e,t,(function(e){return this._invoke(t,e)}))}))}function P(e,t){function n(o,i,a,s){var l=d(e[o],e,i);if("throw"!==l.type){var c=l.arg,u=c.value;return u&&"object"==g(u)&&r.call(u,"__await")?t.resolve(u.__await).then((function(e){n("next",e,a,s)}),(function(e){n("throw",e,a,s)})):t.resolve(u).then((function(e){c.value=e,a(c)}),(function(e){return n("throw",e,a,s)}))}s(l.arg)}var i;o(this,"_invoke",{value:function(e,r){function o(){return new t((function(t,o){n(e,r,t,o)}))}return i=i?i.then(o,o):o()}})}function _(t,n,r){var o=f;return function(i,a){if(o===p)throw Error("Generator is already running");if(o===m){if("throw"===i)throw a;return{value:e,done:!0}}for(r.method=i,r.arg=a;;){var s=r.delegate;if(s){var l=k(s,r);if(l){if(l===y)continue;return l}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if(o===f)throw o=m,r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);o=p;var c=d(t,n,r);if("normal"===c.type){if(o=r.done?m:h,c.arg===y)continue;return{value:c.arg,done:r.done}}"throw"===c.type&&(o=m,r.method="throw",r.arg=c.arg)}}}function k(t,n){var r=n.method,o=t.iterator[r];if(o===e)return n.delegate=null,"throw"===r&&t.iterator.return&&(n.method="return",n.arg=e,k(t,n),"throw"===n.method)||"return"!==r&&(n.method="throw",n.arg=new TypeError("The iterator does not provide a '"+r+"' method")),y;var i=d(o,t.iterator,n.arg);if("throw"===i.type)return n.method="throw",n.arg=i.arg,n.delegate=null,y;var a=i.arg;return a?a.done?(n[t.resultName]=a.value,n.next=t.nextLoc,"return"!==n.method&&(n.method="next",n.arg=e),n.delegate=null,y):a:(n.method="throw",n.arg=new TypeError("iterator result is not an object"),n.delegate=null,y)}function j(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function A(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function R(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(j,this),this.reset(!0)}function D(t){if(t||""===t){var n=t[a];if(n)return n.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var o=-1,i=function n(){for(;++o=0;--i){var a=this.tryEntries[i],s=a.completion;if("root"===a.tryLoc)return o("end");if(a.tryLoc<=this.prev){var l=r.call(a,"catchLoc"),c=r.call(a,"finallyLoc");if(l&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),A(n),y}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;A(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),y}},t}function O(e,t,n,r,o,i,a){try{var s=e[i](a),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(r,o)}function w(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||S(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function S(e,t){if(e){if("string"==typeof e)return x(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?x(e,t):void 0}}function x(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n=0,B=(0,c.usePropertyGetCollectionForElementByTypeAndIdQuery)({elementType:j,id:k}),F=B.data,Q=B.isLoading,z=w((0,r.useState)([]),2),V=z[0],U=z[1],W=w((0,r.useState)([]),2),G=W[0],X=W[1],q="properties",H=null!==(t=null==R?void 0:R.modifiedCells[q])&&void 0!==t?t:[];(0,r.useEffect)((function(){void 0!==F&&void 0===(null==R?void 0:R.changes.properties)&&Array.isArray(F.items)&&L(function(e){return e.map((function(e){return Object.assign(Object.assign({},e),{rowId:crypto.randomUUID()})}))}(null==F?void 0:F.items))}),[F]),(0,r.useEffect)((function(){$&&(U(D.filter((function(e){return!e.inherited}))),X(D.filter((function(e){return e.inherited}))))}),[D]),(0,r.useEffect)((function(){H.length>0&&void 0===(null==R?void 0:R.changes.properties)&&N(q,[])}),[R,H]);var Z=(0,i.createColumnHelper)(),Y=function(e){return[Z.accessor("type",{header:x("properties.columns.type"),meta:{type:"property-icon"},size:40}),Z.accessor("key",{header:x("properties.columns.key"),meta:{editable:!0},size:200}),Z.accessor("predefinedName",{header:x("properties.columns.name"),size:200}),Z.accessor("description",{header:x("properties.columns.description"),size:200}),Z.accessor("data",{header:x("properties.columns.data"),meta:{type:"property-value",editable:"own"===e,autoWidth:!0},size:300}),Z.accessor("inheritable",{header:x("properties.columns.inheritable"),size:70,meta:{type:"checkbox",editable:"own"===e,config:{align:"center"}}}),Z.accessor("actions",{header:x("properties.columns.actions"),size:70,cell:function(t){return r.createElement("div",{className:"properties-table--actions-column"},["document","asset","object"].includes(t.row.original.type)&&null!==t.row.original.data&&r.createElement(u.IconButton,{icon:{value:"group"},onClick:(n=b().mark((function e(){return b().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,T({type:C(t.row.original.type),id:t.row.original.data.id});case 2:case"end":return e.stop()}}),e)})),o=function(){var e=this,t=arguments;return new Promise((function(r,o){var i=n.apply(e,t);function a(e){O(i,r,o,a,s,"next",e)}function s(e){O(i,r,o,a,s,"throw",e)}a(void 0)}))},function(){return o.apply(this,arguments)}),type:"link"}),"own"===e&&r.createElement(u.IconButton,{icon:{value:"trash"},onClick:function(){M(t.row.original)},type:"link"}));var n,o}})]},K=v(Y("own")),J=v(Y("inherited"));return r.createElement("div",{className:P.table},r.createElement(r.Fragment,null,r.createElement(o.Grid,{autoWidth:!0,columns:K,data:V,isLoading:Q,modifiedCells:H,onUpdateCellData:function(e){e.rowIndex;var t=e.columnId,n=e.value,r=e.rowData,o=v(null!=D?D:[]),i=o.findIndex((function(e){return e.key===r.key&&!e.inherited})),a=Object.assign(Object.assign({},o.at(i)),y({},t,n));o[i]=a;var s=o.filter((function(e){return e.key===a.key&&!e.inherited})).length>1;(0,d.verifyUpdate)(n,t,"key",s,S,g)&&(I(r.key,a),N(q,[].concat(v(H),[{rowIndex:r.rowId,columnId:t}])))},resizable:!0,setRowId:function(e){return e.rowId}}),"all"===n&&r.createElement(r.Fragment,null,r.createElement(m.Box,{padding:{y:"small"}},r.createElement(p.Text,{strong:!0},x("properties.inherited.properties"))),r.createElement(o.Grid,{autoWidth:!0,columns:J,data:G,resizable:!0}))))}},4795:(e,t,n)=>{"use strict";n.r(t),n.d(t,{api:()=>o,usePropertyGetCollectionForElementByTypeAndIdQuery:()=>a,usePropertyGetCollectionQuery:()=>i});var r=n(38693),o=n(65972).api.enhanceEndpoints({addTagTypes:[r.tagNames.ASSET_DETAIL,r.tagNames.DATA_OBJECT_DETAIL],endpoints:{propertyGetCollectionForElementByTypeAndId:{providesTags:function(e,t,n){return r.providingTags.ELEMENT_PROPERTIES(n.elementType,n.id)}}}}),i=o.usePropertyGetCollectionQuery,a=o.usePropertyGetCollectionForElementByTypeAndIdQuery},65972:(e,t,n)=>{"use strict";n.r(t),n.d(t,{addTagTypes:()=>o,api:()=>i,usePropertyDeleteMutation:()=>l,usePropertyGetCollectionForElementByTypeAndIdQuery:()=>c,usePropertyGetCollectionQuery:()=>a,usePropertyUpdateMutation:()=>s});var r=n(35525),o=["Properties"],i=r.api.enhanceEndpoints({addTagTypes:o}).injectEndpoints({endpoints:function(e){return{propertyGetCollection:e.query({query:function(e){return{url:"/pimcore-studio/api/properties",params:{elementType:e.elementType,filter:e.filter}}},providesTags:["Properties"]}),propertyUpdate:e.mutation({query:function(e){return{url:"/pimcore-studio/api/properties/".concat(e.id),method:"PUT",body:e.updatePredefinedProperty}},invalidatesTags:["Properties"]}),propertyDelete:e.mutation({query:function(e){return{url:"/pimcore-studio/api/properties/".concat(e.id),method:"DELETE"}},invalidatesTags:["Properties"]}),propertyGetCollectionForElementByTypeAndId:e.query({query:function(e){return{url:"/pimcore-studio/api/properties/".concat(e.elementType,"/").concat(e.id)}},providesTags:["Properties"]})}},overrideExisting:!1}),a=i.usePropertyGetCollectionQuery,s=i.usePropertyUpdateMutation,l=i.usePropertyDeleteMutation,c=i.usePropertyGetCollectionForElementByTypeAndIdQuery},67534:(e,t,n)=>{"use strict";n.r(t),n.d(t,{PropertiesContainer:()=>S});var r=n(36198),o=n(30811),i=n(71816),a=n(4795),s=n(77749),l=n(16366),c=n(15747),u=n(16826),d=n(62833),f=n(41161),h=n(82755),p=n(87633),m=n(46928),g=n(57567),y=n(40069),v=n(25419),b=n(58664);function O(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return w(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return w(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function w(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n0,t=void 0!==z.current&&z.current.length>0;if(!e||!t)return void N();if(G(F.current))return void D();var n={key:F.current,type:z.current,predefinedName:"Custom",data:null,inherited:!1,inheritable:!1,rowId:crypto.randomUUID()};j(n)}()}},t("properties.add-custom-property.add"))),!E&&r.createElement(v.Split,{size:"mini"},r.createElement(b.Select,{className:"min-w-100",filterOption:function(e,t){var n;return(null!==(n=null==t?void 0:t.label)&&void 0!==n?n:"").toLowerCase().includes(e.toLowerCase())},key:"properties-select",loading:W,onSelect:function(e){var t,n=null===(t=null==U?void 0:U.items)||void 0===t?void 0:t.find((function(t){return t.id===e}));if(void 0===n)return;if(G(n.name))return void D();var r={key:n.name,type:n.type,data:n.data,inherited:!1,inheritable:n.inheritable,additionalAttributes:n.additionalAttributes,config:n.config,description:n.description,predefinedName:n.name,rowId:crypto.randomUUID()};j(r)},options:null===(e=null==U?void 0:U.items)||void 0===e?void 0:e.map((function(e){return{label:e.name,value:e.id}})),placeholder:t("properties.predefined-properties"),showSearch:!0}),r.createElement(d.IconTextButton,{icon:{value:"PlusCircleOutlined"},key:t("properties.add-custom-property"),onClick:function(){T(!0)}},t("properties.add-custom-property")))))),r.createElement(l.Table,{propertiesTableTab:w,showDuplicatePropertyModal:D,showMandatoryModal:N}));function G(e){return void 0!==(null==A?void 0:A.find((function(t){return t.key===e&&!t.inherited})))}}},26088:(e,t,n)=>{"use strict";var r;n.r(t),n.d(t,{useStyles:()=>o});var o=(0,n(3562).createStyles)((function(e){var t,n,o=e.css,i=e.token;return{table:o(r||(t=["\n .ant-table-content {\n \n .schedule-table--actions-column {\n display: flex;\n align-items: center;\n \n .ant-btn-icon {\n color: ",";\n \n &:hover {\n color: ",";\n }\n }\n }\n }\n "],n||(n=t.slice(0)),r=Object.freeze(Object.defineProperties(t,{raw:{value:Object.freeze(n)}}))),i.colorPrimary,i.colorPrimaryHover)}}))},65477:(e,t,n)=>{"use strict";n.r(t),n.d(t,{Table:()=>g});var r=n(30811),o=n(36198),i=n(74094),a=n(44587),s=n(26088),l=n(27027),c=n(46928),u=n(87633),d=n(47259);function f(e){return f="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},f(e)}function h(e,t,n){var r;return r=function(e,t){if("object"!=f(e)||!e)return e;var n=e[Symbol.toPrimitive];if(void 0!==n){var r=n.call(e,t||"default");if("object"!=f(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"),(t="symbol"==f(r)?r:r+"")in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function p(e){return function(e){if(Array.isArray(e))return m(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||function(e,t){if(!e)return;if("string"==typeof e)return m(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return m(e,t)}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function m(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n0&&void 0===(null==O?void 0:O.changes.schedules)&&x(E,[])}),[O]),o.createElement("div",{className:f.table},o.createElement(a.Grid,{columns:P,data:n,modifiedCells:T,onUpdateCellData:function(e){e.rowIndex;var t=e.columnId,r=e.value,o=e.rowData,i=p(null!=n?n:[]).find((function(e){return e.id===o.id}));if(void 0!==i){var a=Object.assign(Object.assign({},i),h({},t,r));w(a),x(E,[].concat(p(T),[{rowIndex:_(o),columnId:t}]))}},setRowId:_}))}},63033:(e,t,n)=>{"use strict";n.r(t),n.d(t,{useSaveSchedules:()=>h});var r=n(36198),o=n(52328),i=n(78078),a=n(30811),s=n(87633);function l(e){return l="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},l(e)}function c(){c=function(){return t};var e,t={},n=Object.prototype,r=n.hasOwnProperty,o=Object.defineProperty||function(e,t,n){e[t]=n.value},i="function"==typeof Symbol?Symbol:{},a=i.iterator||"@@iterator",s=i.asyncIterator||"@@asyncIterator",u=i.toStringTag||"@@toStringTag";function d(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{d({},"")}catch(e){d=function(e,t,n){return e[t]=n}}function f(e,t,n,r){var i=t&&t.prototype instanceof b?t:b,a=Object.create(i.prototype),s=new R(r||[]);return o(a,"_invoke",{value:_(e,n,s)}),a}function h(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}t.wrap=f;var p="suspendedStart",m="suspendedYield",g="executing",y="completed",v={};function b(){}function O(){}function w(){}var S={};d(S,a,(function(){return this}));var x=Object.getPrototypeOf,E=x&&x(x(D([])));E&&E!==n&&r.call(E,a)&&(S=E);var T=w.prototype=b.prototype=Object.create(S);function C(e){["next","throw","return"].forEach((function(t){d(e,t,(function(e){return this._invoke(t,e)}))}))}function P(e,t){function n(o,i,a,s){var c=h(e[o],e,i);if("throw"!==c.type){var u=c.arg,d=u.value;return d&&"object"==l(d)&&r.call(d,"__await")?t.resolve(d.__await).then((function(e){n("next",e,a,s)}),(function(e){n("throw",e,a,s)})):t.resolve(d).then((function(e){u.value=e,a(u)}),(function(e){return n("throw",e,a,s)}))}s(c.arg)}var i;o(this,"_invoke",{value:function(e,r){function o(){return new t((function(t,o){n(e,r,t,o)}))}return i=i?i.then(o,o):o()}})}function _(t,n,r){var o=p;return function(i,a){if(o===g)throw Error("Generator is already running");if(o===y){if("throw"===i)throw a;return{value:e,done:!0}}for(r.method=i,r.arg=a;;){var s=r.delegate;if(s){var l=k(s,r);if(l){if(l===v)continue;return l}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if(o===p)throw o=y,r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);o=g;var c=h(t,n,r);if("normal"===c.type){if(o=r.done?y:m,c.arg===v)continue;return{value:c.arg,done:r.done}}"throw"===c.type&&(o=y,r.method="throw",r.arg=c.arg)}}}function k(t,n){var r=n.method,o=t.iterator[r];if(o===e)return n.delegate=null,"throw"===r&&t.iterator.return&&(n.method="return",n.arg=e,k(t,n),"throw"===n.method)||"return"!==r&&(n.method="throw",n.arg=new TypeError("The iterator does not provide a '"+r+"' method")),v;var i=h(o,t.iterator,n.arg);if("throw"===i.type)return n.method="throw",n.arg=i.arg,n.delegate=null,v;var a=i.arg;return a?a.done?(n[t.resultName]=a.value,n.next=t.nextLoc,"return"!==n.method&&(n.method="next",n.arg=e),n.delegate=null,v):a:(n.method="throw",n.arg=new TypeError("iterator result is not an object"),n.delegate=null,v)}function j(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function A(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function R(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(j,this),this.reset(!0)}function D(t){if(t||""===t){var n=t[a];if(n)return n.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var o=-1,i=function n(){for(;++o=0;--i){var a=this.tryEntries[i],s=a.completion;if("root"===a.tryLoc)return o("end");if(a.tryLoc<=this.prev){var l=r.call(a,"catchLoc"),c=r.call(a,"finallyLoc");if(l&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),A(n),v}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;A(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),v}},t}function u(e,t,n,r,o,i,a){try{var s=e[i](a),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(r,o)}function d(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return f(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return f(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function f(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n2&&void 0!==arguments[2])||arguments[2],l=d((0,o.useScheduleUpdateForElementByTypeAndIdMutation)(),2),f=l[0],h=l[1],p=h.isLoading,m=h.isSuccess,g=h.isError,y=d((0,r.useState)(!1),2),v=y[0],b=y[1],O=(0,s.useElementDraft)(t,e),w=O.element,S=O.schedules,x=O.resetSchedulesChanges,E=(0,i.useMessage)(),T=(0,a.useTranslation)().t;(0,r.useEffect)((function(){v&&(n&&E.success(T("save-success")),x())}),[v]),(0,r.useEffect)((function(){b(m)}),[m]),(0,r.useEffect)((function(){g&&n&&E.error(T("save-failed"))}),[g]);var C=function(){var n,r=(n=c().mark((function n(){return c().wrap((function(n){for(;;)switch(n.prev=n.next){case 0:if(void 0!==(null==w?void 0:w.changes.schedules)){n.next=3;break}return b(!0),n.abrupt("return");case 3:return n.next=5,f({elementType:e,id:t,body:{items:null==S?void 0:S.map((function(e){return{id:e.id>0?e.id:null,date:e.date,action:e.action,version:e.version,active:e.active}}))}});case 5:case"end":return n.stop()}}),n)})),function(){var e=this,t=arguments;return new Promise((function(r,o){var i=n.apply(e,t);function a(e){u(i,r,o,a,s,"next",e)}function s(e){u(i,r,o,a,s,"throw",e)}a(void 0)}))});return function(){return r.apply(this,arguments)}}();return{isLoading:p,isSuccess:v,isError:g,saveSchedules:C}}},52328:(e,t,n)=>{"use strict";n.r(t),n.d(t,{api:()=>o,useScheduleCreateForElementByTypeAndIdMutation:()=>l,useScheduleDeleteByIdMutation:()=>i,useScheduleGetCollectionForElementByTypeAndIdQuery:()=>a,useScheduleUpdateForElementByTypeAndIdMutation:()=>s});var r=n(38693),o=n(67061).api.enhanceEndpoints({addTagTypes:[r.tagNames.ASSET_DETAIL,r.tagNames.DATA_OBJECT_DETAIL],endpoints:{scheduleGetCollectionForElementByTypeAndId:{providesTags:function(e,t,n){return r.providingTags.ELEMENT_SCHEDULES(n.elementType,n.id)}},scheduleUpdateForElementByTypeAndId:{invalidatesTags:function(e,t,n){return r.invalidatingTags.ELEMENT_SCHEDULES(n.elementType,n.id)}}}}),i=o.useScheduleDeleteByIdMutation,a=o.useScheduleGetCollectionForElementByTypeAndIdQuery,s=o.useScheduleUpdateForElementByTypeAndIdMutation,l=o.useScheduleCreateForElementByTypeAndIdMutation},67061:(e,t,n)=>{"use strict";n.r(t),n.d(t,{addTagTypes:()=>o,api:()=>i,useScheduleCreateForElementByTypeAndIdMutation:()=>c,useScheduleDeleteByIdMutation:()=>a,useScheduleGetCollectionForElementByTypeAndIdQuery:()=>s,useScheduleUpdateForElementByTypeAndIdMutation:()=>l});var r=n(35525),o=["Schedule"],i=r.api.enhanceEndpoints({addTagTypes:o}).injectEndpoints({endpoints:function(e){return{scheduleDeleteById:e.mutation({query:function(e){return{url:"/pimcore-studio/api/schedules/".concat(e.id),method:"DELETE"}},invalidatesTags:["Schedule"]}),scheduleGetCollectionForElementByTypeAndId:e.query({query:function(e){return{url:"/pimcore-studio/api/schedules/".concat(e.elementType,"/").concat(e.id)}},providesTags:["Schedule"]}),scheduleUpdateForElementByTypeAndId:e.mutation({query:function(e){return{url:"/pimcore-studio/api/schedules/".concat(e.elementType,"/").concat(e.id),method:"PUT",body:e.body}},invalidatesTags:["Schedule"]}),scheduleCreateForElementByTypeAndId:e.mutation({query:function(e){return{url:"/pimcore-studio/api/schedules/".concat(e.elementType,"/").concat(e.id),method:"POST"}},invalidatesTags:["Schedule"]})}},overrideExisting:!1}),a=i.useScheduleDeleteByIdMutation,s=i.useScheduleGetCollectionForElementByTypeAndIdQuery,l=i.useScheduleUpdateForElementByTypeAndIdMutation,c=i.useScheduleCreateForElementByTypeAndIdMutation},75818:(e,t,n)=>{"use strict";n.r(t),n.d(t,{ScheduleTabContainer:()=>x});var r=n(36198),o=n(30811),i=n(86434),a=n(71816),s=n(52328),l=n(65477),c=n(62833),u=n(41161),d=n(82755),f=n(54512),h=n(57567),p=n(46928),m=n(87633),g=n(63033),y=n(47259),v=n(99401),b=n(40069),O=n(48388);function w(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return S(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return S(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function S(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";n.r(t),n.d(t,{AssignedTagsTable:()=>O});var r=n(36198),o=n(1402),i=n(74094),a=n(30811),s=n(44587),l=n(16795),c=n(8108),u=n(27027),d=n(46928),f=n(28518);function h(e){return h="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},h(e)}function p(){p=function(){return t};var e,t={},n=Object.prototype,r=n.hasOwnProperty,o=Object.defineProperty||function(e,t,n){e[t]=n.value},i="function"==typeof Symbol?Symbol:{},a=i.iterator||"@@iterator",s=i.asyncIterator||"@@asyncIterator",l=i.toStringTag||"@@toStringTag";function c(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{c({},"")}catch(e){c=function(e,t,n){return e[t]=n}}function u(e,t,n,r){var i=t&&t.prototype instanceof b?t:b,a=Object.create(i.prototype),s=new R(r||[]);return o(a,"_invoke",{value:_(e,n,s)}),a}function d(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}t.wrap=u;var f="suspendedStart",m="suspendedYield",g="executing",y="completed",v={};function b(){}function O(){}function w(){}var S={};c(S,a,(function(){return this}));var x=Object.getPrototypeOf,E=x&&x(x(D([])));E&&E!==n&&r.call(E,a)&&(S=E);var T=w.prototype=b.prototype=Object.create(S);function C(e){["next","throw","return"].forEach((function(t){c(e,t,(function(e){return this._invoke(t,e)}))}))}function P(e,t){function n(o,i,a,s){var l=d(e[o],e,i);if("throw"!==l.type){var c=l.arg,u=c.value;return u&&"object"==h(u)&&r.call(u,"__await")?t.resolve(u.__await).then((function(e){n("next",e,a,s)}),(function(e){n("throw",e,a,s)})):t.resolve(u).then((function(e){c.value=e,a(c)}),(function(e){return n("throw",e,a,s)}))}s(l.arg)}var i;o(this,"_invoke",{value:function(e,r){function o(){return new t((function(t,o){n(e,r,t,o)}))}return i=i?i.then(o,o):o()}})}function _(t,n,r){var o=f;return function(i,a){if(o===g)throw Error("Generator is already running");if(o===y){if("throw"===i)throw a;return{value:e,done:!0}}for(r.method=i,r.arg=a;;){var s=r.delegate;if(s){var l=k(s,r);if(l){if(l===v)continue;return l}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if(o===f)throw o=y,r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);o=g;var c=d(t,n,r);if("normal"===c.type){if(o=r.done?y:m,c.arg===v)continue;return{value:c.arg,done:r.done}}"throw"===c.type&&(o=y,r.method="throw",r.arg=c.arg)}}}function k(t,n){var r=n.method,o=t.iterator[r];if(o===e)return n.delegate=null,"throw"===r&&t.iterator.return&&(n.method="return",n.arg=e,k(t,n),"throw"===n.method)||"return"!==r&&(n.method="throw",n.arg=new TypeError("The iterator does not provide a '"+r+"' method")),v;var i=d(o,t.iterator,n.arg);if("throw"===i.type)return n.method="throw",n.arg=i.arg,n.delegate=null,v;var a=i.arg;return a?a.done?(n[t.resultName]=a.value,n.next=t.nextLoc,"return"!==n.method&&(n.method="next",n.arg=e),n.delegate=null,v):a:(n.method="throw",n.arg=new TypeError("iterator result is not an object"),n.delegate=null,v)}function j(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function A(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function R(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(j,this),this.reset(!0)}function D(t){if(t||""===t){var n=t[a];if(n)return n.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var o=-1,i=function n(){for(;++o=0;--i){var a=this.tryEntries[i],s=a.completion;if("root"===a.tryLoc)return o("end");if(a.tryLoc<=this.prev){var l=r.call(a,"catchLoc"),c=r.call(a,"finallyLoc");if(l&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),A(n),v}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;A(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),v}},t}function m(e,t,n){var r;return r=function(e,t){if("object"!=h(e)||!e)return e;var n=e[Symbol.toPrimitive];if(void 0!==n){var r=n.call(e,t||"default");if("object"!=h(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"),(t="symbol"==h(r)?r:r+"")in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function g(e,t,n,r,o,i,a){try{var s=e[i](a),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(r,o)}function y(e){return function(){var t=this,n=arguments;return new Promise((function(r,o){var i=e.apply(t,n);function a(e){g(i,r,o,a,s,"next",e)}function s(e){g(i,r,o,a,s,"throw",e)}a(void 0)}))}}function v(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return b(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return b(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function b(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";n.r(t),n.d(t,{useCreateTreeStructure:()=>o});var r=n(54663),o=function(){return{createTreeStructure:function(e){var t=e.tags;return[{key:"root",title:"All Tags",icon:(0,r.Icon)({value:"folder"}),children:t.length>0?function e(t){return t.map((function(t){return{key:t.id.toString(),title:t.text,icon:(0,r.Icon)({value:"tag-02"}),children:!0===t.hasChildren?e(t.children):[]}}))}(t):[]}]}}}},33976:(e,t,n)=>{"use strict";n.r(t),n.d(t,{TagsTreeContainer:()=>u});var r=n(1402),o=n(15170),i=n(36198),a=n(82755),s=n(46928);function l(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return c(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return c(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function c(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";n.r(t),n.d(t,{TagsTree:()=>h});var r=n(36198),o=n(16067),i=n(16795),a=n(8108),s=n(47259),l=n(72726),c=n(14278);function u(e){return u="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},u(e)}function d(){d=function(){return t};var e,t={},n=Object.prototype,r=n.hasOwnProperty,o=Object.defineProperty||function(e,t,n){e[t]=n.value},i="function"==typeof Symbol?Symbol:{},a=i.iterator||"@@iterator",s=i.asyncIterator||"@@asyncIterator",l=i.toStringTag||"@@toStringTag";function c(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{c({},"")}catch(e){c=function(e,t,n){return e[t]=n}}function f(e,t,n,r){var i=t&&t.prototype instanceof b?t:b,a=Object.create(i.prototype),s=new R(r||[]);return o(a,"_invoke",{value:_(e,n,s)}),a}function h(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}t.wrap=f;var p="suspendedStart",m="suspendedYield",g="executing",y="completed",v={};function b(){}function O(){}function w(){}var S={};c(S,a,(function(){return this}));var x=Object.getPrototypeOf,E=x&&x(x(D([])));E&&E!==n&&r.call(E,a)&&(S=E);var T=w.prototype=b.prototype=Object.create(S);function C(e){["next","throw","return"].forEach((function(t){c(e,t,(function(e){return this._invoke(t,e)}))}))}function P(e,t){function n(o,i,a,s){var l=h(e[o],e,i);if("throw"!==l.type){var c=l.arg,d=c.value;return d&&"object"==u(d)&&r.call(d,"__await")?t.resolve(d.__await).then((function(e){n("next",e,a,s)}),(function(e){n("throw",e,a,s)})):t.resolve(d).then((function(e){c.value=e,a(c)}),(function(e){return n("throw",e,a,s)}))}s(l.arg)}var i;o(this,"_invoke",{value:function(e,r){function o(){return new t((function(t,o){n(e,r,t,o)}))}return i=i?i.then(o,o):o()}})}function _(t,n,r){var o=p;return function(i,a){if(o===g)throw Error("Generator is already running");if(o===y){if("throw"===i)throw a;return{value:e,done:!0}}for(r.method=i,r.arg=a;;){var s=r.delegate;if(s){var l=k(s,r);if(l){if(l===v)continue;return l}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if(o===p)throw o=y,r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);o=g;var c=h(t,n,r);if("normal"===c.type){if(o=r.done?y:m,c.arg===v)continue;return{value:c.arg,done:r.done}}"throw"===c.type&&(o=y,r.method="throw",r.arg=c.arg)}}}function k(t,n){var r=n.method,o=t.iterator[r];if(o===e)return n.delegate=null,"throw"===r&&t.iterator.return&&(n.method="return",n.arg=e,k(t,n),"throw"===n.method)||"return"!==r&&(n.method="throw",n.arg=new TypeError("The iterator does not provide a '"+r+"' method")),v;var i=h(o,t.iterator,n.arg);if("throw"===i.type)return n.method="throw",n.arg=i.arg,n.delegate=null,v;var a=i.arg;return a?a.done?(n[t.resultName]=a.value,n.next=t.nextLoc,"return"!==n.method&&(n.method="next",n.arg=e),n.delegate=null,v):a:(n.method="throw",n.arg=new TypeError("iterator result is not an object"),n.delegate=null,v)}function j(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function A(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function R(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(j,this),this.reset(!0)}function D(t){if(t||""===t){var n=t[a];if(n)return n.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var o=-1,i=function n(){for(;++o=0;--i){var a=this.tryEntries[i],s=a.completion;if("root"===a.tryLoc)return o("end");if(a.tryLoc<=this.prev){var l=r.call(a,"catchLoc"),c=r.call(a,"finallyLoc");if(l&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),A(n),v}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;A(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),v}},t}function f(e,t,n,r,o,i,a){try{var s=e[i](a),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(r,o)}var h=function(e){var t=e.elementId,n=e.elementType,u=e.tags,h=e.setFilter,p=e.isLoading,m=e.defaultCheckedTags,g=e.setDefaultCheckedTags,y=(0,(0,o.useCreateTreeStructure)().createTreeStructure)({tags:u}),v=(0,i.useOptimisticUpdate)().updateTagsForElementByTypeAndId,b=(0,a.flattenArray)(u),O=function(){var e,r=(e=d().mark((function e(r){return d().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:v({elementType:n,id:t,flatTags:b,checkedTags:r.map(Number)}),g(r);case 2:case"end":return e.stop()}}),e)})),function(){var t=this,n=arguments;return new Promise((function(r,o){var i=e.apply(t,n);function a(e){f(i,r,o,a,s,"next",e)}function s(e){f(i,r,o,a,s,"throw",e)}a(void 0)}))});return function(e){return r.apply(this,arguments)}}();return r.createElement(s.Flex,{gap:"small",vertical:!0},r.createElement(c.SearchInput,{loading:p,onChange:function(e){var t=e.target.value;h(t)},placeholder:"Search"}),r.createElement(l.TreeElement,{checkStrictly:!0,checkedKeys:{checked:m,halfChecked:[]},defaultExpandedKeys:["root"],onCheck:function(e){O(e.checked)},treeData:y,withCustomSwitcherIcon:!0}))}},16795:(e,t,n)=>{"use strict";n.r(t),n.d(t,{useOptimisticUpdate:()=>s});var r=n(1402),o=n(7496);function i(e){return i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},i(e)}function a(e,t,n){var r;return r=function(e,t){if("object"!=i(e)||!e)return e;var n=e[Symbol.toPrimitive];if(void 0!==n){var r=n.call(e,t||"default");if("object"!=i(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"),(t="symbol"==i(r)?r:r+"")in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var s=function(){var e=(0,o.useAppDispatch)();return{updateTagsForElementByTypeAndId:function(t){return e(r.api.util.updateQueryData("tagGetCollectionForElementByTypeAndId",{elementType:t.elementType,id:t.id},(function(e){var n=t.flatTags.filter((function(e){return t.checkedTags.includes(e.id)})).reduce((function(e,t){return Object.assign(e,a({},t.id,t))}),{});return{totalItems:t.checkedTags.length,items:n}})))}}}},34934:(e,t,n)=>{"use strict";n.r(t),n.d(t,{useShortcutActions:()=>d});var r=n(1402),o=n(7496),i=n(46928),a=n(87633);function s(e){return s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},s(e)}function l(){l=function(){return t};var e,t={},n=Object.prototype,r=n.hasOwnProperty,o=Object.defineProperty||function(e,t,n){e[t]=n.value},i="function"==typeof Symbol?Symbol:{},a=i.iterator||"@@iterator",c=i.asyncIterator||"@@asyncIterator",u=i.toStringTag||"@@toStringTag";function d(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{d({},"")}catch(e){d=function(e,t,n){return e[t]=n}}function f(e,t,n,r){var i=t&&t.prototype instanceof b?t:b,a=Object.create(i.prototype),s=new R(r||[]);return o(a,"_invoke",{value:_(e,n,s)}),a}function h(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}t.wrap=f;var p="suspendedStart",m="suspendedYield",g="executing",y="completed",v={};function b(){}function O(){}function w(){}var S={};d(S,a,(function(){return this}));var x=Object.getPrototypeOf,E=x&&x(x(D([])));E&&E!==n&&r.call(E,a)&&(S=E);var T=w.prototype=b.prototype=Object.create(S);function C(e){["next","throw","return"].forEach((function(t){d(e,t,(function(e){return this._invoke(t,e)}))}))}function P(e,t){function n(o,i,a,l){var c=h(e[o],e,i);if("throw"!==c.type){var u=c.arg,d=u.value;return d&&"object"==s(d)&&r.call(d,"__await")?t.resolve(d.__await).then((function(e){n("next",e,a,l)}),(function(e){n("throw",e,a,l)})):t.resolve(d).then((function(e){u.value=e,a(u)}),(function(e){return n("throw",e,a,l)}))}l(c.arg)}var i;o(this,"_invoke",{value:function(e,r){function o(){return new t((function(t,o){n(e,r,t,o)}))}return i=i?i.then(o,o):o()}})}function _(t,n,r){var o=p;return function(i,a){if(o===g)throw Error("Generator is already running");if(o===y){if("throw"===i)throw a;return{value:e,done:!0}}for(r.method=i,r.arg=a;;){var s=r.delegate;if(s){var l=k(s,r);if(l){if(l===v)continue;return l}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if(o===p)throw o=y,r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);o=g;var c=h(t,n,r);if("normal"===c.type){if(o=r.done?y:m,c.arg===v)continue;return{value:c.arg,done:r.done}}"throw"===c.type&&(o=y,r.method="throw",r.arg=c.arg)}}}function k(t,n){var r=n.method,o=t.iterator[r];if(o===e)return n.delegate=null,"throw"===r&&t.iterator.return&&(n.method="return",n.arg=e,k(t,n),"throw"===n.method)||"return"!==r&&(n.method="throw",n.arg=new TypeError("The iterator does not provide a '"+r+"' method")),v;var i=h(o,t.iterator,n.arg);if("throw"===i.type)return n.method="throw",n.arg=i.arg,n.delegate=null,v;var a=i.arg;return a?a.done?(n[t.resultName]=a.value,n.next=t.nextLoc,"return"!==n.method&&(n.method="next",n.arg=e),n.delegate=null,v):a:(n.method="throw",n.arg=new TypeError("iterator result is not an object"),n.delegate=null,v)}function j(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function A(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function R(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(j,this),this.reset(!0)}function D(t){if(t||""===t){var n=t[a];if(n)return n.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var o=-1,i=function n(){for(;++o=0;--i){var a=this.tryEntries[i],s=a.completion;if("root"===a.tryLoc)return o("end");if(a.tryLoc<=this.prev){var l=r.call(a,"catchLoc"),c=r.call(a,"finallyLoc");if(l&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),A(n),v}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;A(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),v}},t}function c(e,t,n,r,o,i,a){try{var s=e[i](a),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(r,o)}function u(e){return function(){var t=this,n=arguments;return new Promise((function(r,o){var i=e.apply(t,n);function a(e){c(i,r,o,a,s,"next",e)}function s(e){c(i,r,o,a,s,"throw",e)}a(void 0)}))}}var d=function(){var e=(0,i.useElementContext)(),t=e.id,n=e.elementType,s=(0,o.useAppDispatch)(),c=(0,a.useElementDraft)(t,n).element,d=null==c?void 0:c.parentId,f=function(){var e=u(l().mark((function e(){var o,i;return l().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,s(r.api.endpoints.tagGetCollectionForElementByTypeAndId.initiate({elementType:n,id:d}));case 2:return o=e.sent,e.next=5,s(r.api.endpoints.tagGetCollectionForElementByTypeAndId.initiate({elementType:n,id:t}));case 5:return i=e.sent,e.abrupt("return",{parentTags:o,currentTags:i});case 7:case"end":return e.stop()}}),e)})));return function(){return e.apply(this,arguments)}}(),h=function(){var e=u(l().mark((function e(){return l().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:Promise.resolve(f()).then(function(){var e=u(l().mark((function e(o){var i,a,c,u,d,f,h,p,m;return l().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:i=o.parentTags,a=o.currentTags,h=null!==(u=null===(c=i.data)||void 0===c?void 0:c.items)&&void 0!==u?u:[],p=null!==(f=null===(d=a.data)||void 0===d?void 0:d.items)&&void 0!==f?f:[],m=Object.assign(Object.assign({},h),p),s(r.api.util.updateQueryData("tagGetCollectionForElementByTypeAndId",{elementType:n,id:t},(function(e){return{totalItems:m.length,items:m}})));case 5:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}()).catch((function(e){console.error(e)}));case 1:case"end":return e.stop()}}),e)})));return function(){return e.apply(this,arguments)}}(),p=function(){var e=u(l().mark((function e(){return l().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:Promise.resolve(f()).then(function(){var e=u(l().mark((function e(o){var i,a,c,u;return l().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:i=o.parentTags,u=null!==(c=null===(a=i.data)||void 0===a?void 0:a.items)&&void 0!==c?c:[],s(r.api.util.updateQueryData("tagGetCollectionForElementByTypeAndId",{elementType:n,id:t},(function(e){return{totalItems:Object.keys(u).length,items:u}})));case 3:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}()).catch((function(e){console.error(e)}));case 1:case"end":return e.stop()}}),e)})));return function(){return e.apply(this,arguments)}}();return{applyFolderTags:h,removeCurrentAndApplyFolderTags:p}}},1402:(e,t,n)=>{"use strict";n.r(t),n.d(t,{addTagTypes:()=>o,api:()=>i,useTagAssignToElementMutation:()=>u,useTagBatchOperationToElementsByTypeAndIdMutation:()=>d,useTagDeleteByIdMutation:()=>c,useTagGetByIdQuery:()=>s,useTagGetCollectionForElementByTypeAndIdQuery:()=>f,useTagGetCollectionQuery:()=>a,useTagUnassignFromElementMutation:()=>h,useTagUpdateByIdMutation:()=>l});var r=n(35525),o=["Tags","Tags for Element"],i=r.api.enhanceEndpoints({addTagTypes:o}).injectEndpoints({endpoints:function(e){return{tagGetCollection:e.query({query:function(e){return{url:"/pimcore-studio/api/tags",params:{page:e.page,pageSize:e.pageSize,elementType:e.elementType,filter:e.filter,parentId:e.parentId}}},providesTags:["Tags"]}),tagGetById:e.query({query:function(e){return{url:"/pimcore-studio/api/tags/".concat(e.id)}},providesTags:["Tags"]}),tagUpdateById:e.mutation({query:function(e){return{url:"/pimcore-studio/api/tags/".concat(e.id),method:"PUT",body:e.updateTagParameters}},invalidatesTags:["Tags"]}),tagDeleteById:e.mutation({query:function(e){return{url:"/pimcore-studio/api/tags/".concat(e.id),method:"DELETE"}},invalidatesTags:["Tags"]}),tagAssignToElement:e.mutation({query:function(e){return{url:"/pimcore-studio/api/tags/assign/".concat(e.elementType,"/").concat(e.id,"/").concat(e.tagId),method:"POST"}},invalidatesTags:["Tags for Element"]}),tagBatchOperationToElementsByTypeAndId:e.mutation({query:function(e){return{url:"/pimcore-studio/api/tags/batch/".concat(e.operation,"/").concat(e.elementType,"/").concat(e.id),method:"POST"}},invalidatesTags:["Tags for Element"]}),tagGetCollectionForElementByTypeAndId:e.query({query:function(e){return{url:"/pimcore-studio/api/tags/".concat(e.elementType,"/").concat(e.id)}},providesTags:["Tags for Element"]}),tagUnassignFromElement:e.mutation({query:function(e){return{url:"/pimcore-studio/api/tags/".concat(e.elementType,"/").concat(e.id,"/").concat(e.tagId),method:"DELETE"}},invalidatesTags:["Tags for Element"]})}},overrideExisting:!1}),a=i.useTagGetCollectionQuery,s=i.useTagGetByIdQuery,l=i.useTagUpdateByIdMutation,c=i.useTagDeleteByIdMutation,u=i.useTagAssignToElementMutation,d=i.useTagBatchOperationToElementsByTypeAndIdMutation,f=i.useTagGetCollectionForElementByTypeAndIdQuery,h=i.useTagUnassignFromElementMutation},57527:(e,t,n)=>{"use strict";n.r(t),n.d(t,{TagsTabContainer:()=>p});var r=n(36198),o=n(28518),i=n(30811),a=n(52758),s=n(33976),l=n(1402),c=n(34934),u=n(67793),d=n(82755),f=n(41161),h=n(46928),p=function(){var e,t,n=(0,i.useTranslation)().t,p=(0,h.useElementContext)(),m=p.id,g=p.elementType,y=(0,c.useShortcutActions)(),v=y.applyFolderTags,b=y.removeCurrentAndApplyFolderTags,O=(0,l.useTagGetCollectionForElementByTypeAndIdQuery)({elementType:g,id:m}),w=O.data,S=O.isLoading;return r.createElement(u.SplitLayout,{leftItem:{minSize:315,size:25,children:r.createElement(d.Content,{loading:S,padded:!0},r.createElement(s.TagsTreeContainer,{isLoading:S,tags:null!==(e=null==w?void 0:w.items)&&void 0!==e?e:[]}))},resizeAble:!0,rightItem:{minSize:300,size:75,children:r.createElement(d.Content,{padded:!0},r.createElement(f.Header,{title:n("tags.assigned-tags-text")},r.createElement(o.Dropdown.Button,{menu:{items:[{label:"Remove current element tags & Apply folder tags",key:"1",onClick:b}]},onClick:v},n("tags.apply-folder-tags"))),r.createElement("div",{className:"pimcore-tags-content"},r.createElement(a.AssignedTagsTable,{isLoading:S,tags:Object.values(null!==(t=null==w?void 0:w.items)&&void 0!==t?t:{})})))},withDivider:!0})}},8108:(e,t,n)=>{"use strict";function r(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=function(e,t){if(!e)return;if("string"==typeof e)return o(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return o(e,t)}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0,i=function(){};return{s:i,n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:i}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var a,s=!0,l=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return s=e.done,e},e:function(e){l=!0,a=e},f:function(){try{s||null==n.return||n.return()}finally{if(l)throw a}}}}function o(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);ni});var i=function(e){var t=[];return function e(n){var o,i=r(n);try{for(i.s();!(o=i.n()).done;){var a=o.value;t.push(a),void 0!==a.children&&e(a.children)}}catch(e){i.e(e)}finally{i.f()}}(e),t}},30928:(e,t,n)=>{"use strict";n.r(t),n.d(t,{verifyUpdate:()=>r});var r=function(e,t,n,r,o,i){return t===n&&""===e?(o(),!1):!r||(i(),!1)}},90551:(e,t,n)=>{"use strict";n.r(t),n.d(t,{createVersionAccordionItem:()=>b});var r=n(36198),o=n(63664),i=n(38576),a=n(28518),s=n(54663),l=n(30811),c=n(27027),u=n(62833),d=n(47259),f=n(40069),h=n(52645);function p(e){return p="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},p(e)}function m(){m=function(){return t};var e,t={},n=Object.prototype,r=n.hasOwnProperty,o=Object.defineProperty||function(e,t,n){e[t]=n.value},i="function"==typeof Symbol?Symbol:{},a=i.iterator||"@@iterator",s=i.asyncIterator||"@@asyncIterator",l=i.toStringTag||"@@toStringTag";function c(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{c({},"")}catch(e){c=function(e,t,n){return e[t]=n}}function u(e,t,n,r){var i=t&&t.prototype instanceof b?t:b,a=Object.create(i.prototype),s=new R(r||[]);return o(a,"_invoke",{value:_(e,n,s)}),a}function d(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}t.wrap=u;var f="suspendedStart",h="suspendedYield",g="executing",y="completed",v={};function b(){}function O(){}function w(){}var S={};c(S,a,(function(){return this}));var x=Object.getPrototypeOf,E=x&&x(x(D([])));E&&E!==n&&r.call(E,a)&&(S=E);var T=w.prototype=b.prototype=Object.create(S);function C(e){["next","throw","return"].forEach((function(t){c(e,t,(function(e){return this._invoke(t,e)}))}))}function P(e,t){function n(o,i,a,s){var l=d(e[o],e,i);if("throw"!==l.type){var c=l.arg,u=c.value;return u&&"object"==p(u)&&r.call(u,"__await")?t.resolve(u.__await).then((function(e){n("next",e,a,s)}),(function(e){n("throw",e,a,s)})):t.resolve(u).then((function(e){c.value=e,a(c)}),(function(e){return n("throw",e,a,s)}))}s(l.arg)}var i;o(this,"_invoke",{value:function(e,r){function o(){return new t((function(t,o){n(e,r,t,o)}))}return i=i?i.then(o,o):o()}})}function _(t,n,r){var o=f;return function(i,a){if(o===g)throw Error("Generator is already running");if(o===y){if("throw"===i)throw a;return{value:e,done:!0}}for(r.method=i,r.arg=a;;){var s=r.delegate;if(s){var l=k(s,r);if(l){if(l===v)continue;return l}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if(o===f)throw o=y,r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);o=g;var c=d(t,n,r);if("normal"===c.type){if(o=r.done?y:h,c.arg===v)continue;return{value:c.arg,done:r.done}}"throw"===c.type&&(o=y,r.method="throw",r.arg=c.arg)}}}function k(t,n){var r=n.method,o=t.iterator[r];if(o===e)return n.delegate=null,"throw"===r&&t.iterator.return&&(n.method="return",n.arg=e,k(t,n),"throw"===n.method)||"return"!==r&&(n.method="throw",n.arg=new TypeError("The iterator does not provide a '"+r+"' method")),v;var i=d(o,t.iterator,n.arg);if("throw"===i.type)return n.method="throw",n.arg=i.arg,n.delegate=null,v;var a=i.arg;return a?a.done?(n[t.resultName]=a.value,n.next=t.nextLoc,"return"!==n.method&&(n.method="next",n.arg=e),n.delegate=null,v):a:(n.method="throw",n.arg=new TypeError("iterator result is not an object"),n.delegate=null,v)}function j(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function A(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function R(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(j,this),this.reset(!0)}function D(t){if(t||""===t){var n=t[a];if(n)return n.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var o=-1,i=function n(){for(;++o=0;--i){var a=this.tryEntries[i],s=a.completion;if("root"===a.tryLoc)return o("end");if(a.tryLoc<=this.prev){var l=r.call(a,"catchLoc"),c=r.call(a,"finallyLoc");if(l&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),A(n),v}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;A(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),v}},t}function g(e,t,n,r,o,i,a){try{var s=e[i](a),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(r,o)}function y(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return v(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return v(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function v(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";n.r(t),n.d(t,{api:()=>a,useVersionAssetDownloadByIdQuery:()=>s,useVersionCleanupForElementByTypeAndIdMutation:()=>l,useVersionDeleteByIdMutation:()=>c,useVersionGetByIdQuery:()=>u,useVersionGetCollectionForElementByTypeAndIdQuery:()=>d,useVersionPublishByIdMutation:()=>f,useVersionUpdateByIdMutation:()=>h});var r=n(38693);function o(e){return function(e){if(Array.isArray(e))return i(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||function(e,t){if(!e)return;if("string"==typeof e)return i(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return i(e,t)}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function i(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";n.r(t),n.d(t,{addTagTypes:()=>o,api:()=>i,useVersionAssetDownloadByIdQuery:()=>a,useVersionCleanupForElementByTypeAndIdMutation:()=>p,useVersionDeleteByIdMutation:()=>f,useVersionGetByIdQuery:()=>c,useVersionGetCollectionForElementByTypeAndIdQuery:()=>h,useVersionImageStreamByIdQuery:()=>s,useVersionPdfStreamByIdQuery:()=>l,useVersionPublishByIdMutation:()=>d,useVersionUpdateByIdMutation:()=>u});var r=n(35525),o=["Versions"],i=r.api.enhanceEndpoints({addTagTypes:o}).injectEndpoints({endpoints:function(e){return{versionAssetDownloadById:e.query({query:function(e){return{url:"/pimcore-studio/api/versions/".concat(e.id,"/asset/download")}},providesTags:["Versions"]}),versionImageStreamById:e.query({query:function(e){return{url:"/pimcore-studio/api/versions/".concat(e.id,"/image/stream")}},providesTags:["Versions"]}),versionPdfStreamById:e.query({query:function(e){return{url:"/pimcore-studio/api/versions/".concat(e.id,"/pdf/stream")}},providesTags:["Versions"]}),versionGetById:e.query({query:function(e){return{url:"/pimcore-studio/api/versions/".concat(e.id)}},providesTags:["Versions"]}),versionUpdateById:e.mutation({query:function(e){return{url:"/pimcore-studio/api/versions/".concat(e.id),method:"PUT",body:e.updateVersion}},invalidatesTags:["Versions"]}),versionPublishById:e.mutation({query:function(e){return{url:"/pimcore-studio/api/versions/".concat(e.id),method:"POST"}},invalidatesTags:["Versions"]}),versionDeleteById:e.mutation({query:function(e){return{url:"/pimcore-studio/api/versions/".concat(e.id),method:"DELETE"}},invalidatesTags:["Versions"]}),versionGetCollectionForElementByTypeAndId:e.query({query:function(e){return{url:"/pimcore-studio/api/versions/".concat(e.elementType,"/").concat(e.id),params:{page:e.page,pageSize:e.pageSize}}},providesTags:["Versions"]}),versionCleanupForElementByTypeAndId:e.mutation({query:function(e){return{url:"/pimcore-studio/api/versions/".concat(e.elementType,"/").concat(e.id),method:"DELETE"}},invalidatesTags:["Versions"]})}},overrideExisting:!1}),a=i.useVersionAssetDownloadByIdQuery,s=i.useVersionImageStreamByIdQuery,l=i.useVersionPdfStreamByIdQuery,c=i.useVersionGetByIdQuery,u=i.useVersionUpdateByIdMutation,d=i.useVersionPublishByIdMutation,f=i.useVersionDeleteByIdMutation,h=i.useVersionGetCollectionForElementByTypeAndIdQuery,p=i.useVersionCleanupForElementByTypeAndIdMutation},9287:(e,t,n)=>{"use strict";n.r(t),n.d(t,{VersionsTabContainer:()=>p});var r=n(36198),o=n(83227),i=n(4106),a=n(82755),s=n(46928);function l(e){return l="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},l(e)}function c(){c=function(){return t};var e,t={},n=Object.prototype,r=n.hasOwnProperty,o=Object.defineProperty||function(e,t,n){e[t]=n.value},i="function"==typeof Symbol?Symbol:{},a=i.iterator||"@@iterator",s=i.asyncIterator||"@@asyncIterator",u=i.toStringTag||"@@toStringTag";function d(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{d({},"")}catch(e){d=function(e,t,n){return e[t]=n}}function f(e,t,n,r){var i=t&&t.prototype instanceof b?t:b,a=Object.create(i.prototype),s=new R(r||[]);return o(a,"_invoke",{value:_(e,n,s)}),a}function h(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}t.wrap=f;var p="suspendedStart",m="suspendedYield",g="executing",y="completed",v={};function b(){}function O(){}function w(){}var S={};d(S,a,(function(){return this}));var x=Object.getPrototypeOf,E=x&&x(x(D([])));E&&E!==n&&r.call(E,a)&&(S=E);var T=w.prototype=b.prototype=Object.create(S);function C(e){["next","throw","return"].forEach((function(t){d(e,t,(function(e){return this._invoke(t,e)}))}))}function P(e,t){function n(o,i,a,s){var c=h(e[o],e,i);if("throw"!==c.type){var u=c.arg,d=u.value;return d&&"object"==l(d)&&r.call(d,"__await")?t.resolve(d.__await).then((function(e){n("next",e,a,s)}),(function(e){n("throw",e,a,s)})):t.resolve(d).then((function(e){u.value=e,a(u)}),(function(e){return n("throw",e,a,s)}))}s(c.arg)}var i;o(this,"_invoke",{value:function(e,r){function o(){return new t((function(t,o){n(e,r,t,o)}))}return i=i?i.then(o,o):o()}})}function _(t,n,r){var o=p;return function(i,a){if(o===g)throw Error("Generator is already running");if(o===y){if("throw"===i)throw a;return{value:e,done:!0}}for(r.method=i,r.arg=a;;){var s=r.delegate;if(s){var l=k(s,r);if(l){if(l===v)continue;return l}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if(o===p)throw o=y,r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);o=g;var c=h(t,n,r);if("normal"===c.type){if(o=r.done?y:m,c.arg===v)continue;return{value:c.arg,done:r.done}}"throw"===c.type&&(o=y,r.method="throw",r.arg=c.arg)}}}function k(t,n){var r=n.method,o=t.iterator[r];if(o===e)return n.delegate=null,"throw"===r&&t.iterator.return&&(n.method="return",n.arg=e,k(t,n),"throw"===n.method)||"return"!==r&&(n.method="throw",n.arg=new TypeError("The iterator does not provide a '"+r+"' method")),v;var i=h(o,t.iterator,n.arg);if("throw"===i.type)return n.method="throw",n.arg=i.arg,n.delegate=null,v;var a=i.arg;return a?a.done?(n[t.resultName]=a.value,n.next=t.nextLoc,"return"!==n.method&&(n.method="next",n.arg=e),n.delegate=null,v):a:(n.method="throw",n.arg=new TypeError("iterator result is not an object"),n.delegate=null,v)}function j(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function A(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function R(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(j,this),this.reset(!0)}function D(t){if(t||""===t){var n=t[a];if(n)return n.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var o=-1,i=function n(){for(;++o=0;--i){var a=this.tryEntries[i],s=a.completion;if("root"===a.tryLoc)return o("end");if(a.tryLoc<=this.prev){var l=r.call(a,"catchLoc"),c=r.call(a,"finallyLoc");if(l&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),A(n),v}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;A(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),v}},t}function u(e,t,n,r,o,i,a){try{var s=e[i](a),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(r,o)}function d(e){return function(){var t=this,n=arguments;return new Promise((function(r,o){var i=e.apply(t,n);function a(e){u(i,r,o,a,s,"next",e)}function s(e){u(i,r,o,a,s,"throw",e)}a(void 0)}))}}function f(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return h(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return h(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function h(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";var r;n.r(t),n.d(t,{useStyles:()=>o});var o=(0,n(3562).createStyles)((function(e){var t,n,o=e.token,i=e.css,a=Object.assign({highlightBackgroundColor:"#F6FFED",highlightBorderColor:"#B7EB8F",highlightColor:"#52C41A",signalBackgroundColor:"#E6F4FF",signalBorderColor:"#91CAFF",signalColor:"#1677FF"},o);return{versions:i(r||(t=["\n .title-tag__own-draft {\n color: ",";\n border-color: ",";\n background-color: ",";\n }\n\n .title-tag__published {\n color: ",";\n border-color: ",";\n background-color: ",";\n }\n\n .ant-card-extra {\n height: 44px;\n }\n\n .sub-title {\n font-weight: normal;\n margin-right: 4px;\n color: ",";\n }\n\n .title-tag {\n font-size: 12px;\n }\n\n .tag-icon {\n position: relative;\n right: 3px;\n bottom: 1px;\n }\n\n .id-tag {\n width: 56px;\n height: 22px;\n\n display: inline-grid;\n justify-content: center;\n\n font-weight: 400;\n font-size: 12px;\n line-height: 20px;\n }\n "],n||(n=t.slice(0)),r=Object.freeze(Object.defineProperties(t,{raw:{value:Object.freeze(n)}}))),a.signalColor,a.signalBorderColor,a.signalBackgroundColor,a.highlightColor,a.highlightBorderColor,a.highlightBackgroundColor,a.colorTextDescription)}}),{hashPriority:"low"})},4106:(e,t,n)=>{"use strict";n.r(t),n.d(t,{VersionsView:()=>x});var r=n(36198),o=n(50767),i=n(71816),a=n(30811),s=n(15747),l=n(16826),c=n(62833),u=n(41161),d=n(82755),f=n(67793),h=n(90551),p=n(94046),m=n(47259);function g(e){return g="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},g(e)}function y(e){return function(e){if(Array.isArray(e))return S(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||w(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function v(){v=function(){return t};var e,t={},n=Object.prototype,r=n.hasOwnProperty,o=Object.defineProperty||function(e,t,n){e[t]=n.value},i="function"==typeof Symbol?Symbol:{},a=i.iterator||"@@iterator",s=i.asyncIterator||"@@asyncIterator",l=i.toStringTag||"@@toStringTag";function c(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{c({},"")}catch(e){c=function(e,t,n){return e[t]=n}}function u(e,t,n,r){var i=t&&t.prototype instanceof b?t:b,a=Object.create(i.prototype),s=new R(r||[]);return o(a,"_invoke",{value:_(e,n,s)}),a}function d(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}t.wrap=u;var f="suspendedStart",h="suspendedYield",p="executing",m="completed",y={};function b(){}function O(){}function w(){}var S={};c(S,a,(function(){return this}));var x=Object.getPrototypeOf,E=x&&x(x(D([])));E&&E!==n&&r.call(E,a)&&(S=E);var T=w.prototype=b.prototype=Object.create(S);function C(e){["next","throw","return"].forEach((function(t){c(e,t,(function(e){return this._invoke(t,e)}))}))}function P(e,t){function n(o,i,a,s){var l=d(e[o],e,i);if("throw"!==l.type){var c=l.arg,u=c.value;return u&&"object"==g(u)&&r.call(u,"__await")?t.resolve(u.__await).then((function(e){n("next",e,a,s)}),(function(e){n("throw",e,a,s)})):t.resolve(u).then((function(e){c.value=e,a(c)}),(function(e){return n("throw",e,a,s)}))}s(l.arg)}var i;o(this,"_invoke",{value:function(e,r){function o(){return new t((function(t,o){n(e,r,t,o)}))}return i=i?i.then(o,o):o()}})}function _(t,n,r){var o=f;return function(i,a){if(o===p)throw Error("Generator is already running");if(o===m){if("throw"===i)throw a;return{value:e,done:!0}}for(r.method=i,r.arg=a;;){var s=r.delegate;if(s){var l=k(s,r);if(l){if(l===y)continue;return l}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if(o===f)throw o=m,r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);o=p;var c=d(t,n,r);if("normal"===c.type){if(o=r.done?m:h,c.arg===y)continue;return{value:c.arg,done:r.done}}"throw"===c.type&&(o=m,r.method="throw",r.arg=c.arg)}}}function k(t,n){var r=n.method,o=t.iterator[r];if(o===e)return n.delegate=null,"throw"===r&&t.iterator.return&&(n.method="return",n.arg=e,k(t,n),"throw"===n.method)||"return"!==r&&(n.method="throw",n.arg=new TypeError("The iterator does not provide a '"+r+"' method")),y;var i=d(o,t.iterator,n.arg);if("throw"===i.type)return n.method="throw",n.arg=i.arg,n.delegate=null,y;var a=i.arg;return a?a.done?(n[t.resultName]=a.value,n.next=t.nextLoc,"return"!==n.method&&(n.method="next",n.arg=e),n.delegate=null,y):a:(n.method="throw",n.arg=new TypeError("iterator result is not an object"),n.delegate=null,y)}function j(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function A(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function R(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(j,this),this.reset(!0)}function D(t){if(t||""===t){var n=t[a];if(n)return n.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var o=-1,i=function n(){for(;++o=0;--i){var a=this.tryEntries[i],s=a.completion;if("root"===a.tryLoc)return o("end");if(a.tryLoc<=this.prev){var l=r.call(a,"catchLoc"),c=r.call(a,"finallyLoc");if(l&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),A(n),y}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;A(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),y}},t}function b(e,t,n,r,o,i,a){try{var s=e[i](a),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(r,o)}function O(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||w(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function w(e,t){if(e){if("string"==typeof e)return S(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?S(e,t):void 0}}function S(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n0&&r.createElement(r.Fragment,null,r.createElement(m.Flex,{className:"w-full",gap:"small",justify:"space-between"},r.createElement(i.Button,{className:_?"compare-button":"",key:T("version.compare-versions"),onClick:function(){I([]),k(!_)}},T("version.compare-versions")),r.createElement(c.IconTextButton,{icon:{value:"trash"},key:T("version.clear-unpublished"),loading:A,onClick:$},T("version.clear-unpublished"))),Q)),t.length>0&&r.createElement(p.AccordionTimeline,{items:z}))},rightItem:{size:75,children:r.createElement(d.Content,{padded:!0},r.createElement(m.Flex,{justify:"center"},L.length>0&&_&&r.createElement(E,{versionIds:L}),L.length>0&&!_&&r.createElement(x,{setDetailedVersions:I,versionId:L[0],versions:t})))}}));function V(e){var t=y(L),n=t.some((function(t){return t.id===e.id}));2!==t.length||n||(t=[]),n?t.splice(t.indexOf(e),1):t.push(e),I(t)}}},24431:(e,t,n)=>{"use strict";n.r(t),n.d(t,{useWorkflowActionSubmitMutation:()=>i,useWorkflowGetDetailsQuery:()=>a});var r=n(38693),o=n(76383).api.enhanceEndpoints({addTagTypes:[r.tagNames.ASSET_DETAIL,r.tagNames.DATA_OBJECT_DETAIL,r.tagNames.WORKFLOW],endpoints:{workflowGetDetails:{providesTags:function(e,t,n){return r.providingTags.ELEMENT_WORKFLOW(n.elementType,n.elementId)}},workflowActionSubmit:{invalidatesTags:function(e,t,n){return r.providingTags.ELEMENT_WORKFLOW(n.submitAction.elementType,n.submitAction.elementId)}}}}),i=o.useWorkflowActionSubmitMutation,a=o.useWorkflowGetDetailsQuery},76383:(e,t,n)=>{"use strict";n.r(t),n.d(t,{addTagTypes:()=>o,api:()=>i,useWorkflowActionSubmitMutation:()=>s,useWorkflowGetDetailsQuery:()=>a});var r=n(35525),o=["Workflows"],i=r.api.enhanceEndpoints({addTagTypes:o}).injectEndpoints({endpoints:function(e){return{workflowGetDetails:e.query({query:function(e){return{url:"/pimcore-studio/api/workflows/details",params:{elementId:e.elementId,elementType:e.elementType}}},providesTags:["Workflows"]}),workflowActionSubmit:e.mutation({query:function(e){return{url:"/pimcore-studio/api/workflows/action",method:"POST",body:e.submitAction}},invalidatesTags:["Workflows"]})}},overrideExisting:!1}),a=i.useWorkflowGetDetailsQuery,s=i.useWorkflowActionSubmitMutation},10593:(e,t,n)=>{"use strict";n.r(t),n.d(t,{WorkflowTabContainer:()=>f});var r=n(36198),o=n(30811),i=n(59264),a=n(41161),s=n(82755),l=n(28518),c=n(20160),u=n(81873),d=n(2824),f=function(){var e=(0,o.useTranslation)().t,t=(0,d.useWorkflow)(),n=t.workflowDetailsData,f=t.isFetchingWorkflowDetails;return r.createElement(s.Content,{loading:f,none:void 0===(null==n?void 0:n.items)||0===(null==n?void 0:n.items.length),noneOptions:{text:e("workflow.no-workflows-found")},padded:!0},r.createElement(a.Header,{title:e("workflow.headline")}),r.createElement(l.Space,{direction:"vertical"},r.createElement(c.WorkFlowProvider,null,void 0!==(null==n?void 0:n.items)&&(null==n?void 0:n.items.length)>0&&n.items.map((function(e,t){return r.createElement(i.WorkflowCard,{key:t,workflow:e})})),r.createElement(u.WorkflowLogModal,null))))}},62167:(e,t,n)=>{"use strict";n.r(t),n.d(t,{TabManager:()=>l});var r=n(84560);function o(e,t){for(var n=0;n=0;l--)(o=e[l])&&(s=(i<3?o(s):i>3?o(t,n,s):o(t,n))||s);return i>3&&s&&Object.defineProperty(t,n,s),s},l=function(){return e=function e(){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),this.type="",this.tabs=[]},(t=[{key:"getTabs",value:function(){return this.tabs}},{key:"getTab",value:function(e){return this.tabs.find((function(t){return t.key===e}))}},{key:"register",value:function(e){void 0===this.getTab(e.key)?this.tabs.push(e):this.tabs.splice(this.tabs.findIndex((function(t){return t.key===e.key})),1,e)}}])&&o(e.prototype,t),n&&o(e,n),Object.defineProperty(e,"prototype",{writable:!1}),e;var e,t,n}();l=s([(0,r.injectable)()],l)},28496:(e,t,n)=>{"use strict";n.r(t),n.d(t,{IconWrapper:()=>s});var r=n(36198),o=n(28518);function i(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return a(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return a(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function a(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";var r,o,i;function a(e,t){return t||(t=e.slice(0)),Object.freeze(Object.defineProperties(e,{raw:{value:Object.freeze(t)}}))}n.r(t),n.d(t,{useStyle:()=>s});var s=(0,n(3562).createStyles)((function(e){var t=e.token,n=e.css;return{editorTabsContainer:n(r||(r=a(["\n width: 100%;\n "]))),editorTabs:n(o||(o=a(["\n height: 100%;\n width: 100%;\n overflow: hidden;\n\n .ant-tabs-content {\n display: flex;\n height: 100%;\n }\n\n &.ant-tabs .ant-tabs-tab {\n margin: 0 ","px !important;\n transition: color .2s;\n\n display: flex;\n height: 32px;\n }\n\n .ant-tabs-tabpane {\n display: flex;\n flex-direction: column;\n height: 100%;\n width: 100%;\n }\n\n .ant-tabs-content-holder {\n overflow: auto;\n }\n &.ant-tabs .ant-tabs-tab.ant-tabs-tab-active .ant-tabs-tab-btn {\n color: ","\n }\n &.ant-tabs-top >.ant-tabs-nav {\n margin-bottom: 0;\n \n .ant-tabs-nav-wrap {\n display: flex;\n justify-content: flex-end;\n \n .ant-tabs-nav-list {\n display: flex;\n align-items: center;\n }\n }\n }\n\n &.ant-tabs .ant-tabs-tab-btn .ant-tabs-tab-icon:not(:last-child) {\n margin-inline-end: 0;\n }\n \n .ant-tabs-tab {\n padding: 0;\n \n &:first-of-type {\n margin-left: ","px;\n margin-right: ","px;\n }\n \n .ant-tabs-tab-btn {\n display: flex;\n padding-top: ","px;\n padding-bottom: ","px;\n justify-content: center;\n align-items: center;\n gap: ","px;\n \n .ant-tabs-tab-icon {\n height: 16px;\n display: flex;\n justify-content: center;\n align-content: center;\n margin-inline-end: 0;\n color: ",";\n \n svg {\n height: 16px;\n width: 16px\n }\n }\n }\n \n .detachable-button {\n display: none;\n color: ",";\n height: ","px;\n width: ","px;\n }\n\n &:not(.ant-tabs-tab-active) {\n .ant-tabs-tab-icon {\n &:hover {\n color: ",";\n }\n }\n }\n \n &.ant-tabs-tab-active {\n .ant-tabs-tab-icon {\n color: ","\n }\n\n .detachable-button {\n display: flex;\n color: ",";\n }\n }\n }\n "])),t.paddingXS,t.colorPrimaryActive,t.paddingSM,t.paddingSM,t.paddingXS,t.paddingXS,t.paddingTabs,t.Tabs.itemUnselectedIconColor,t.Tabs.itemUnselectedIconColor,t.controlHeightSM,t.controlHeightSM,t.colorIconHover,t.colorPrimaryActive,t.colorPrimary),onlyActiveLabel:n(i||(i=a(["\n .ant-tabs-tab:not(.ant-tabs-tab-active) {\n span:nth-child(2) {\n display: none;\n }\n\n .ant-tabs-tab-icon {\n margin-inline-end: 0;\n }\n }\n\n @keyframes fadeIn {\n from {\n opacity: 0;\n }\n\n to {\n opacity: 1;\n }\n }\n\n .ant-tabs-tab.ant-tabs-tab-active {\n //border-bottom: 3px solid ",";\n }\n "])),t.colorPrimaryActive)}}),{hashPriority:"low"})},95719:(e,t,n)=>{"use strict";n.r(t),n.d(t,{EditorTabs:()=>w});var r=n(36198),o=n(16803),i=n(28518),a=n(93967),s=n.n(a),l=n(510),c=n(73264),u=n(28496),d=n(46928),f=n(2776),h=n(87633),p=n(76265),m=n(93244),g=n(27027);function y(e){return y="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},y(e)}function v(e,t,n){var r;return r=function(e,t){if("object"!=y(e)||!e)return e;var n=e[Symbol.toPrimitive];if(void 0!==n){var r=n.call(e,t||"default");if("object"!=y(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"),(t="symbol"==y(r)?r:r+"")in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function b(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return O(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return O(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function O(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n0&&C(a[0].key)}),[a]);var M=null==a?void 0:a.map((function(e){return e.key})),N=function(e){var t=e.target.id;return M.find((function(e){return t.includes(e)}))};return a=null==(a=a.filter((function(e){return(void 0===e.hidden||!e.hidden())&&(!(void 0!==e.workspacePermission&&void 0!==(null==D?void 0:D.permissions)&&!(0,p.checkElementPermission)(D.permissions,e.workspacePermission))&&!(void 0!==e.userPermission&&!(0,m.isAllowed)(e.userPermission)))})))?void 0:a.map((function(e){var t=Object.assign(Object.assign({},e),{originalLabel:e.label,icon:r.createElement(u.IconWrapper,{activeTabKey:T,tabKey:e.key,tabKeyInFocus:_,tabKeyOutOfFocus:A,title:e.label},e.icon)});return!0===t.isDetachable&&(t.label=r.createElement(r.Fragment,null,r.createElement("span",null,t.label),r.createElement(g.IconButton,{className:"detachable-button",icon:{value:"share-03"},onClick:function(){!function(e){O(e)}({tabKey:e.key})},type:"link"}))),t})),r.createElement("div",{className:y.editorTabsContainer,ref:L},r.createElement(i.Tabs,{className:s()(y.editorTabs,v({},y.onlyActiveLabel,n)),defaultActiveKey:t,items:a,onBlur:function(e){R(N(e))},onFocus:function(e){k(N(e))},onTabClick:function(e){C(e)},tabBarExtraContent:{left:r.createElement(c.ElementToolbar,{editorTabsWidth:I,elementType:x,id:S})}}))}},510:(e,t,n)=>{"use strict";n.r(t),n.d(t,{useDetachTab:()=>a});var r=n(66777),o=n(81690),i=n(36609),a=function(){var e=(0,r.useWidgetManager)().openBottomWidget;return{detachWidget:function(t){var n=t.tabKey,r=t.config,a=void 0===r?{}:r,s=o.container.get("Asset/Editor/ImageTabManager").getTab(n);void 0!==s&&e({name:i.default.t(String(s.label)),id:"".concat(n,"-detached"),component:"detachable-tab",config:Object.assign(Object.assign({},a),{icon:s.icon.props,tabKey:n})})}}}},92908:(e,t,n)=>{"use strict";n.r(t),n.d(t,{addTagTypes:()=>o,api:()=>i,useElementDeleteMutation:()=>a,useElementFolderCreateMutation:()=>l,useElementGetDeleteInfoQuery:()=>s,useElementGetIdByPathQuery:()=>c});var r=n(35525),o=["Elements"],i=r.api.enhanceEndpoints({addTagTypes:o}).injectEndpoints({endpoints:function(e){return{elementDelete:e.mutation({query:function(e){return{url:"/pimcore-studio/api/elements/".concat(e.elementType,"/delete/").concat(e.id),method:"DELETE"}},invalidatesTags:["Elements"]}),elementGetDeleteInfo:e.query({query:function(e){return{url:"/pimcore-studio/api/elements/".concat(e.elementType,"/delete-info/").concat(e.id)}},providesTags:["Elements"]}),elementFolderCreate:e.mutation({query:function(e){return{url:"/pimcore-studio/api/elements/".concat(e.elementType,"/folder/").concat(e.parentId),method:"POST",body:e.folderData}},invalidatesTags:["Elements"]}),elementGetIdByPath:e.query({query:function(e){return{url:"/pimcore-studio/api/elements/".concat(e.elementType,"/path"),params:{elementPath:e.elementPath}}},providesTags:["Elements"]})}},overrideExisting:!1}),a=i.useElementDeleteMutation,s=i.useElementGetDeleteInfoQuery,l=i.useElementFolderCreateMutation,c=i.useElementGetIdByPathQuery},72743:(e,t,n)=>{"use strict";n.r(t),n.d(t,{getElementIcon:()=>r});var r=function(e,t){var n,r;return void 0!==(null===(n=e.customAttributes)||void 0===n?void 0:n.icon)&&null!==(null===(r=e.customAttributes)||void 0===r?void 0:r.icon)?e.customAttributes.icon:void 0!==e.icon&&null!==e.icon?e.icon:t}},44845:(e,t,n)=>{"use strict";n.r(t),n.d(t,{useElementApi:()=>u});var r=n(93477),o=n(15008);function i(e){return i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},i(e)}function a(){a=function(){return t};var e,t={},n=Object.prototype,r=n.hasOwnProperty,o=Object.defineProperty||function(e,t,n){e[t]=n.value},s="function"==typeof Symbol?Symbol:{},l=s.iterator||"@@iterator",c=s.asyncIterator||"@@asyncIterator",u=s.toStringTag||"@@toStringTag";function d(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{d({},"")}catch(e){d=function(e,t,n){return e[t]=n}}function f(e,t,n,r){var i=t&&t.prototype instanceof b?t:b,a=Object.create(i.prototype),s=new R(r||[]);return o(a,"_invoke",{value:_(e,n,s)}),a}function h(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}t.wrap=f;var p="suspendedStart",m="suspendedYield",g="executing",y="completed",v={};function b(){}function O(){}function w(){}var S={};d(S,l,(function(){return this}));var x=Object.getPrototypeOf,E=x&&x(x(D([])));E&&E!==n&&r.call(E,l)&&(S=E);var T=w.prototype=b.prototype=Object.create(S);function C(e){["next","throw","return"].forEach((function(t){d(e,t,(function(e){return this._invoke(t,e)}))}))}function P(e,t){function n(o,a,s,l){var c=h(e[o],e,a);if("throw"!==c.type){var u=c.arg,d=u.value;return d&&"object"==i(d)&&r.call(d,"__await")?t.resolve(d.__await).then((function(e){n("next",e,s,l)}),(function(e){n("throw",e,s,l)})):t.resolve(d).then((function(e){u.value=e,s(u)}),(function(e){return n("throw",e,s,l)}))}l(c.arg)}var a;o(this,"_invoke",{value:function(e,r){function o(){return new t((function(t,o){n(e,r,t,o)}))}return a=a?a.then(o,o):o()}})}function _(t,n,r){var o=p;return function(i,a){if(o===g)throw Error("Generator is already running");if(o===y){if("throw"===i)throw a;return{value:e,done:!0}}for(r.method=i,r.arg=a;;){var s=r.delegate;if(s){var l=k(s,r);if(l){if(l===v)continue;return l}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if(o===p)throw o=y,r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);o=g;var c=h(t,n,r);if("normal"===c.type){if(o=r.done?y:m,c.arg===v)continue;return{value:c.arg,done:r.done}}"throw"===c.type&&(o=y,r.method="throw",r.arg=c.arg)}}}function k(t,n){var r=n.method,o=t.iterator[r];if(o===e)return n.delegate=null,"throw"===r&&t.iterator.return&&(n.method="return",n.arg=e,k(t,n),"throw"===n.method)||"return"!==r&&(n.method="throw",n.arg=new TypeError("The iterator does not provide a '"+r+"' method")),v;var i=h(o,t.iterator,n.arg);if("throw"===i.type)return n.method="throw",n.arg=i.arg,n.delegate=null,v;var a=i.arg;return a?a.done?(n[t.resultName]=a.value,n.next=t.nextLoc,"return"!==n.method&&(n.method="next",n.arg=e),n.delegate=null,v):a:(n.method="throw",n.arg=new TypeError("iterator result is not an object"),n.delegate=null,v)}function j(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function A(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function R(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(j,this),this.reset(!0)}function D(t){if(t||""===t){var n=t[l];if(n)return n.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var o=-1,a=function n(){for(;++o=0;--i){var a=this.tryEntries[i],s=a.completion;if("root"===a.tryLoc)return o("end");if(a.tryLoc<=this.prev){var l=r.call(a,"catchLoc"),c=r.call(a,"finallyLoc");if(l&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),A(n),v}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;A(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),v}},t}function s(e,t,n,r,o,i,a){try{var s=e[i](a),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(r,o)}function l(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return c(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return c(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function c(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";n.r(t),n.d(t,{useElementContext:()=>a});var r=n(36198),o=n(43741),i=n(45048),a=function(){var e=(0,r.useContext)(o.AssetContext).id,t=(0,r.useContext)(i.DataObjectContext).id;if(0!==e)return{id:e,elementType:"asset"};if(0!==t)return{id:t,elementType:"data-object"};throw new Error("No element context found")}},87633:(e,t,n)=>{"use strict";n.r(t),n.d(t,{useElementDraft:()=>i});var r=n(61008),o=n(70047),i=function(e,t){if("asset"===t){var n=(0,r.useAssetDraft)(e);return Object.assign(Object.assign({},n),{element:n.asset})}if("data-object"===t){var i=(0,o.useDataObjectDraft)(e);return Object.assign(Object.assign({},i),{element:i.dataObject})}throw new Error("Element type not supported: "+t)}},73990:(e,t,n)=>{"use strict";n.r(t),n.d(t,{useElementHelper:()=>l});var r=n(6786),o=n(14274);function i(e){return i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},i(e)}function a(){a=function(){return t};var e,t={},n=Object.prototype,r=n.hasOwnProperty,o=Object.defineProperty||function(e,t,n){e[t]=n.value},s="function"==typeof Symbol?Symbol:{},l=s.iterator||"@@iterator",c=s.asyncIterator||"@@asyncIterator",u=s.toStringTag||"@@toStringTag";function d(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{d({},"")}catch(e){d=function(e,t,n){return e[t]=n}}function f(e,t,n,r){var i=t&&t.prototype instanceof b?t:b,a=Object.create(i.prototype),s=new R(r||[]);return o(a,"_invoke",{value:_(e,n,s)}),a}function h(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}t.wrap=f;var p="suspendedStart",m="suspendedYield",g="executing",y="completed",v={};function b(){}function O(){}function w(){}var S={};d(S,l,(function(){return this}));var x=Object.getPrototypeOf,E=x&&x(x(D([])));E&&E!==n&&r.call(E,l)&&(S=E);var T=w.prototype=b.prototype=Object.create(S);function C(e){["next","throw","return"].forEach((function(t){d(e,t,(function(e){return this._invoke(t,e)}))}))}function P(e,t){function n(o,a,s,l){var c=h(e[o],e,a);if("throw"!==c.type){var u=c.arg,d=u.value;return d&&"object"==i(d)&&r.call(d,"__await")?t.resolve(d.__await).then((function(e){n("next",e,s,l)}),(function(e){n("throw",e,s,l)})):t.resolve(d).then((function(e){u.value=e,s(u)}),(function(e){return n("throw",e,s,l)}))}l(c.arg)}var a;o(this,"_invoke",{value:function(e,r){function o(){return new t((function(t,o){n(e,r,t,o)}))}return a=a?a.then(o,o):o()}})}function _(t,n,r){var o=p;return function(i,a){if(o===g)throw Error("Generator is already running");if(o===y){if("throw"===i)throw a;return{value:e,done:!0}}for(r.method=i,r.arg=a;;){var s=r.delegate;if(s){var l=k(s,r);if(l){if(l===v)continue;return l}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if(o===p)throw o=y,r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);o=g;var c=h(t,n,r);if("normal"===c.type){if(o=r.done?y:m,c.arg===v)continue;return{value:c.arg,done:r.done}}"throw"===c.type&&(o=y,r.method="throw",r.arg=c.arg)}}}function k(t,n){var r=n.method,o=t.iterator[r];if(o===e)return n.delegate=null,"throw"===r&&t.iterator.return&&(n.method="return",n.arg=e,k(t,n),"throw"===n.method)||"return"!==r&&(n.method="throw",n.arg=new TypeError("The iterator does not provide a '"+r+"' method")),v;var i=h(o,t.iterator,n.arg);if("throw"===i.type)return n.method="throw",n.arg=i.arg,n.delegate=null,v;var a=i.arg;return a?a.done?(n[t.resultName]=a.value,n.next=t.nextLoc,"return"!==n.method&&(n.method="next",n.arg=e),n.delegate=null,v):a:(n.method="throw",n.arg=new TypeError("iterator result is not an object"),n.delegate=null,v)}function j(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function A(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function R(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(j,this),this.reset(!0)}function D(t){if(t||""===t){var n=t[l];if(n)return n.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var o=-1,a=function n(){for(;++o=0;--i){var a=this.tryEntries[i],s=a.completion;if("root"===a.tryLoc)return o("end");if(a.tryLoc<=this.prev){var l=r.call(a,"catchLoc"),c=r.call(a,"finallyLoc");if(l&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),A(n),v}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;A(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),v}},t}function s(e,t,n,r,o,i,a){try{var s=e[i](a),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(r,o)}var l=function(){var e=(0,r.useAssetHelper)().openAsset,t=(0,o.useDataObjectHelper)().openDataObject;function n(){var r;return r=a().mark((function n(r){return a().wrap((function(n){for(;;)switch(n.prev=n.next){case 0:"asset"===r.type?e({config:{id:r.id}}):"data-object"===r.type?t({config:{id:r.id}}):console.log("Opening "+r.type+" is not supported yet.");case 1:case"end":return n.stop()}}),n)})),n=function(){var e=this,t=arguments;return new Promise((function(n,o){var i=r.apply(e,t);function a(e){s(i,n,o,a,l,"next",e)}function l(e){s(i,n,o,a,l,"throw",e)}a(void 0)}))},n.apply(this,arguments)}return{openElement:function(e){return n.apply(this,arguments)},mapToElementType:function(e){switch(e){case"asset":return"asset";case"document":return"document";case"data-object":case"object":case"dataObject":return"data-object";default:throw new Error("Unknown element type: "+e)}}}}},67876:(e,t,n)=>{"use strict";n.r(t),n.d(t,{useGlobalElementContext:()=>a});var r=n(5482),o=n(44994),i=n(66777),a=function(){var e,t=(0,i.useWidgetManager)().getOpenedMainWidget,n=(0,r.useGlobalAssetContext)().context,a=(0,o.useGlobalDataObjectContext)().context,s=null===(e=t())||void 0===e?void 0:e.getComponent();return"asset-editor"===s?{context:n}:"data-object-editor"===s?{context:a}:{context:void 0}}},32248:(e,t,n)=>{"use strict";n.r(t);n(74366)},76265:(e,t,n)=>{"use strict";n.r(t),n.d(t,{checkElementPermission:()=>r});var r=function(e,t){return!0===e[t]}},21044:(e,t,n)=>{"use strict";function r(e){return r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},r(e)}function o(e,t){for(var n=0;na});var a=function(){return e=function e(){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),this.entries=[],this.buttons=[]},(t=[{key:"getEntries",value:function(){return this.entries}},{key:"getEntry",value:function(e){return this.entries.find((function(t){return t.key===e}))}},{key:"registerEntry",value:function(e){void 0===this.getEntry(e.key)?this.entries.push(e):this.entries.splice(this.entries.findIndex((function(t){return t.key===e.key})),1,e)}},{key:"getButtons",value:function(){return this.buttons}},{key:"getButton",value:function(e){return this.buttons.find((function(t){return t.key===e}))}},{key:"registerButton",value:function(e){void 0===this.getButton(e.key)?this.buttons.push(e):this.buttons.splice(this.buttons.findIndex((function(t){return t.key===e.key})),1,e)}}])&&o(e.prototype,t),n&&o(e,n),Object.defineProperty(e,"prototype",{writable:!1}),e;var e,t,n}()},1020:(e,t,n)=>{"use strict";n.r(t),n.d(t,{PagerContainer:()=>l});var r=n(31322),o=n(38549),i=n(36198);function a(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return s(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return s(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function s(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";n.r(t),n.d(t,{SearchContainer:()=>l});var r=n(36198),o=n(31322);function i(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return a(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return a(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function a(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);nu&&c(!0)}),[n]),l?r.createElement(s,{"aria-label":e.label,onSearch:function(e){t({idSearchTerm:e,page:1})},placeholder:e.label,size:"small"}):r.createElement(r.Fragment,null)}},63975:(e,t,n)=>{"use strict";n.r(t),n.d(t,{UseFileUploader:()=>v});var r=n(93477),o=n(38693),i=n(7496),a=n(36198),s=n(26272),l=n(51074),c=n(36510),u=n(21970);function d(e){return d="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},d(e)}function f(e){return function(e){if(Array.isArray(e))return h(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||function(e,t){if(!e)return;if("string"==typeof e)return h(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return h(e,t)}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function h(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n=0;--i){var a=this.tryEntries[i],s=a.completion;if("root"===a.tryLoc)return o("end");if(a.tryLoc<=this.prev){var l=r.call(a,"catchLoc"),c=r.call(a,"finallyLoc");if(l&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),A(n),v}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;A(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),v}},t}function m(e,t,n,r,o,i,a){try{var s=e[i](a),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(r,o)}function g(e){return function(){var t=this,n=arguments;return new Promise((function(r,o){var i=e.apply(t,n);function a(e){m(i,r,o,a,s,"next",e)}function s(e){m(i,r,o,a,s,"throw",e)}a(void 0)}))}}var y=[],v=function(e){var t=e.parentId,n=(0,l.useJobs)().addJob,d=(0,i.useAppDispatch)(),h=(0,a.useContext)(s.UploadContext),m=function(){var e=g(p().mark((function e(n){var i,a,s;return p().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(i=n.fileList,n.file,void 0!==t){e.next=3;break}throw new Error("Parent ID is required");case 3:a=i.map((function(e){return e.status})),s=a.every((function(e){return"done"===e})),h.setUploadFileList(i),h.setUploadingNode(t),s&&(d(r.api.util.invalidateTags(o.invalidatingTags.ASSET_TREE_ID(parseInt(t)))),h.setUploadFileList([]),h.setUploadingNode(null));case 8:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}(),v=function(){var e=g(p().mark((function e(t){return p().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return y.includes(t.file.uid)||(y=[].concat(f(y),[t.file.uid]),n((0,c.createJob)({title:"Upload Zip",topics:[u.topics["zip-upload-finished"],u.topics["asset-upload-finished"]].concat(f(u.defaultTopics)),action:function(){var e=g(p().mark((function e(){return p().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,t.promise;case 2:return e.abrupt("return",e.sent);case 3:case"end":return e.stop()}}),e)})));return function(){return e.apply(this,arguments)}}(),parentFolder:h.uploadingNode}))),e.next=3,m(t);case 3:void 0!==t.file.response&&t.promiseResolve(t.file.response.jobRunId);case 4:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}();return{uploadFile:m,uploadZip:v}}},26272:(e,t,n)=>{"use strict";n.r(t),n.d(t,{UploadContext:()=>a,UploadProvider:()=>s});var r=n(36198);function o(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return i(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return i(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function i(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";n.r(t),n.d(t,{jobAdapter:()=>i,jobDeleted:()=>u,jobReceived:()=>l,jobUpdated:()=>c,selectAll:()=>f,selectById:()=>h,slice:()=>a});var r=n(7496),o=n(8327),i=(0,o.createEntityAdapter)({}),a=(0,o.createSlice)({name:"execution-engine",initialState:i.getInitialState(),reducers:{jobReceived:i.addOne,jobUpdated:i.updateOne,jobDeleted:i.removeOne}});(0,r.injectSliceWithState)(a);var s=a.actions,l=s.jobReceived,c=s.jobUpdated,u=s.jobDeleted,d=i.getSelectors((function(e){return e["execution-engine"]})),f=d.selectAll,h=d.selectById},51074:(e,t,n)=>{"use strict";n.r(t),n.d(t,{useJobs:()=>i});var r=n(7496),o=n(84229),i=function(){var e=(0,r.useAppDispatch)();return{jobs:(0,r.useAppSelector)(o.selectAll),updateJob:function(t,n){e((0,o.jobUpdated)({id:t,changes:Object.assign({},n)}))},removeJob:function(t){e((0,o.jobDeleted)(t))},addJob:function(t){e((0,o.jobReceived)(t))}}}},6395:(e,t,n)=>{"use strict";n.r(t),n.d(t,{executionEngineModule:()=>d});var r=n(81690),o=n(80237),i=n(54088),a=n(78489),s=n(57303),l=n(55975),c=n(79155),u=n(52835),d={onInit:function(){var e=r.container.get(i.serviceIds["ExecutionEngine/JobComponentRegistry"]);e.registerComponent("default",a.NotificationJobContainer),e.registerComponent("download",s.NotificationJobContainer),e.registerComponent("zip-upload",l.NotificationJobContainer),e.registerComponent("delete",c.NotificationJobContainer),e.registerComponent("clone",u.NotificationJobContainer)}};o.moduleSystem.registerModule(d)},2852:(e,t,n)=>{"use strict";var r;n.r(t),n.d(t,{JobStatus:()=>r}),function(e){e.QUEUED="queued",e.RUNNING="running",e.SUCCESS="success",e.FINISHED_WITH_ERRORS="finished_with_errors",e.FAILED="failed"}(r||(r={}))},4194:(e,t,n)=>{"use strict";n.r(t),n.d(t,{createJob:()=>i});var r=n(2852),o=n(37658),i=function(e){return{id:(0,o.getUniqueId)(),action:e.action,type:"clone",title:e.title,status:r.JobStatus.QUEUED,topics:e.topics,config:{parentFolder:e.parentFolder}}}},52835:(e,t,n)=>{"use strict";n.r(t),n.d(t,{NotificationJobContainer:()=>p});var r=n(36198),o=n(2852),i=n(38968),a=n(51074),s=n(37292),l=n(30811),c=n(7496),u=n(93477),d=n(38693);function f(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return h(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return h(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function h(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";n.r(t),n.d(t,{createJob:()=>i});var r=n(2852),o=n(37658),i=function(e){return{id:(0,o.getUniqueId)(),action:e.action,type:"default",title:e.title,status:r.JobStatus.QUEUED,topics:e.topics,config:void 0}}},78489:(e,t,n)=>{"use strict";n.r(t),n.d(t,{NotificationJobContainer:()=>d});var r=n(36198),o=n(2852),i=n(38968),a=n(51074),s=n(37292),l=n(30811);function c(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return u(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return u(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function u(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";n.r(t),n.d(t,{createJob:()=>i});var r=n(2852),o=n(37658),i=function(e){return{id:(0,o.getUniqueId)(),action:e.action,type:"delete",title:e.title,status:r.JobStatus.QUEUED,topics:e.topics,config:{parentFolder:e.parentFolder}}}},79155:(e,t,n)=>{"use strict";n.r(t),n.d(t,{NotificationJobContainer:()=>p});var r=n(36198),o=n(2852),i=n(38968),a=n(51074),s=n(37292),l=n(30811),c=n(7496),u=n(93477),d=n(38693);function f(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return h(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return h(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function h(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";n.r(t),n.d(t,{createJob:()=>i});var r=n(2852),o=n(37658),i=function(e){return{id:(0,o.getUniqueId)(),action:e.action,type:"download",title:e.title,status:r.JobStatus.QUEUED,topics:e.topics,config:{downloadUrl:e.downloadUrl}}}},57303:(e,t,n)=>{"use strict";n.r(t),n.d(t,{NotificationJobContainer:()=>d});var r=n(36198),o=n(2852),i=n(38968),a=n(51074),s=n(37292),l=n(30811);function c(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return u(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return u(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function u(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";n.r(t),n.d(t,{getUniqueId:()=>o});var r=0;function o(){return r++}},36510:(e,t,n)=>{"use strict";n.r(t),n.d(t,{createJob:()=>i});var r=n(2852),o=n(37658),i=function(e){return{id:(0,o.getUniqueId)(),action:e.action,type:"zip-upload",title:e.title,status:r.JobStatus.QUEUED,topics:e.topics,config:{parentFolder:e.parentFolder}}}},55975:(e,t,n)=>{"use strict";n.r(t),n.d(t,{NotificationJobContainer:()=>p});var r=n(36198),o=n(2852),i=n(38968),a=n(51074),s=n(37292),l=n(30811),c=n(7496),u=n(93477),d=n(38693);function f(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return h(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return h(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function h(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";var r;n.r(t),n.d(t,{useStyles:()=>o});var o=(0,n(3562).createStyles)((function(e){var t,n,o=e.css,i=e.token;return{jobList:o(r||(t=["\n &.ant-collapse>.ant-collapse-item >.ant-collapse-header {\n padding: ","px 0;\n }\n\n &.ant-collapse-ghost >.ant-collapse-item >.ant-collapse-content >.ant-collapse-content-box {\n padding: ","px 0;\n }\n "],n||(n=t.slice(0)),r=Object.freeze(Object.defineProperties(t,{raw:{value:Object.freeze(n)}}))),i.paddingXXS,i.paddingXXS)}}))},33741:(e,t,n)=>{"use strict";n.r(t),n.d(t,{JobList:()=>u});var r=n(36198),o=n(37789),i=n(72828),a=n(37213),s=n(30811),l=n(54688),c=n(51074),u=function(){var e=(0,c.useJobs)().jobs,t=(0,a.useStyles)().styles,n=(0,s.useTranslation)().t,u=Object.assign({key:"1",title:r.createElement("span",null,n("jobs.notification.jobs",{count:e.length})),children:r.createElement(i.AnimatePresence,null,e.map((function(e){return r.createElement(i.motion.div,{animate:{opacity:1,height:"auto"},exit:{opacity:0,height:1},initial:{opacity:0,height:1},key:"".concat(e.id)},r.createElement(o.Job,Object.assign({},e,{key:e.id})))})))},0===e.length&&{disabled:!0});return r.createElement(r.Fragment,null,r.createElement(l.Accordion,{activeKey:u.key,className:t.jobList,ghost:!0,items:[u]}))}},1052:(e,t,n)=>{"use strict";var r;n.r(t),n.d(t,{useStyles:()=>o});var o=(0,n(3562).createStyles)((function(e){var t,n;return{buttonStyle:(0,e.css)(r||(t=["\n padding-left: 2px;\n padding-right: 2px;\n "],n||(n=t.slice(0)),r=Object.freeze(Object.defineProperties(t,{raw:{value:Object.freeze(n)}}))))}}))},37292:(e,t,n)=>{"use strict";n.r(t),n.d(t,{JobView:()=>d});var r=n(10959),o=n(2852),i=n(36198),a=n(28518),s=n(54663),l=n(72828),c=n(1052),u=n(30811),d=function(e){var t,n,d,f=(0,c.useStyles)().styles,h=(0,u.useTranslation)().t;return i.createElement("div",null,i.createElement(l.AnimatePresence,null,i.createElement(l.motion.div,{animate:{opacity:1,height:"auto"},exit:{opacity:0,height:1},initial:{opacity:0,height:1},key:e.status},e.status===o.JobStatus.RUNNING&&i.createElement(r.Progressbar,{description:h("jobs.job.in-progress",{title:e.title}),percent:e.progress,progressStatus:h("jobs.job.progress",{progress:e.progress})}),e.status===o.JobStatus.SUCCESS&&i.createElement(a.Flex,{align:"center",justify:"space-between"},i.createElement(a.Flex,{align:"center",gap:"small"},i.createElement(s.Icon,{value:"check-circle-filled"}),i.createElement("span",null,h("jobs.job.finished",{title:e.title}))),i.createElement(a.Flex,{gap:"small"},null===(t=e.successButtonActions)||void 0===t?void 0:t.map((function(e,t){return i.createElement(a.Button,{className:f.buttonStyle,key:t,onClick:e.handler,type:"link"},e.label)})))),e.status===o.JobStatus.FINISHED_WITH_ERRORS&&i.createElement(a.Flex,{align:"center",justify:"space-between"},i.createElement(a.Flex,{align:"center",gap:"small"},i.createElement(s.Icon,{value:"exclamation-circle-filled"}),i.createElement("span",null,h("jobs.job.finished-with-errors",{title:e.title}))),i.createElement(a.Flex,{gap:"small"},null===(n=e.finishedWithErrorsButtonActions)||void 0===n?void 0:n.map((function(e,t){return i.createElement(a.Button,{className:f.buttonStyle,key:t,onClick:e.handler,type:"link"},e.label)})))),e.status===o.JobStatus.FAILED&&i.createElement(a.Flex,{align:"center",justify:"space-between"},i.createElement(a.Flex,{align:"center",gap:"small"},i.createElement(s.Icon,{value:"close-circle-filled"}),i.createElement("span",null,h("jobs.job.failed",{title:e.title}))),i.createElement(a.Flex,{gap:"small"},null===(d=e.failureButtonActions)||void 0===d?void 0:d.map((function(e,t){return i.createElement(a.Button,{className:f.buttonStyle,key:t,onClick:e.handler,type:"link"},e.label)})))))))}},37789:(e,t,n)=>{"use strict";n.r(t),n.d(t,{Job:()=>s});var r=n(36198),o=n(81690),i=n(54088),a=n(78489),s=function(e){var t,n=null!==(t=(0,o.useInjection)(i.serviceIds["ExecutionEngine/JobComponentRegistry"]).getComponentByType(e.type))&&void 0!==t?t:a.NotificationJobContainer;return r.createElement(n,Object.assign({},e))}},93844:(e,t,n)=>{"use strict";n.r(t),n.d(t,{Notification:()=>u});var r=n(36198),o=n(51074),i=n(2545),a=n(33741),s=n(30811);function l(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return c(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return c(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function c(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n0,t=l((0,i.useNotification)(),1)[0],n=(0,s.useTranslation)().t;return(0,r.useEffect)((function(){e&&t.open({message:n("jobs.notification.title"),description:r.createElement(a.JobList,null),duration:0,closable:!1,placement:"bottomRight"}),e||t.destroy()}),[e]),r.createElement(r.Fragment,null)}},65244:(e,t,n)=>{"use strict";n.r(t),n.d(t,{JobComponentRegistry:()=>l});var r=n(84560);function o(e,t){for(var n=0;n=0;l--)(o=e[l])&&(s=(i<3?o(s):i>3?o(t,n,s):o(t,n))||s);return i>3&&s&&Object.defineProperty(t,n,s),s},l=function(){return e=function e(){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),this.components=new Map},(t=[{key:"registerComponent",value:function(e,t){this.components.set(e,t)}},{key:"getComponentByType",value:function(e){return this.components.get(e)}}])&&o(e.prototype,t),n&&o(e,n),Object.defineProperty(e,"prototype",{writable:!1}),e;var e,t,n}();l=s([(0,r.injectable)()],l)},21970:(e,t,n)=>{"use strict";n.r(t),n.d(t,{defaultTopics:()=>o,topics:()=>r});var r={"patch-finished":"patch-finished","zip-download-ready":"zip-download-ready","csv-download-ready":"csv-download-ready","handler-progress":"handler-progress","job-finished-with-errors":"job-finished-with-errors","job-failed":"job-failed","asset-upload-finished":"asset-upload-finished","zip-upload-finished":"zip-upload-finished","deletion-finished":"deletion-finished","cloning-finished":"cloning-finished"},o=[r["handler-progress"],r["job-finished-with-errors"],r["job-failed"]]},89378:(e,t,n)=>{"use strict";n.r(t);var r=n(81690),o=n(80237),i=n(54088),a=n(88408),s=n(81562),l=n(76207),c=n(19229),u=n(34757),d=n(31280),f=n(45646),h=n(72466),p=n(40353),m=n(14119),g=n(56602),y=n(1493),v=n(39839),b=n(4120),O=n(18343),w=n(3513),S=n(39201),x=n(20035),E=n(41297),T=n(44262),C=n(7550),P=n(89760),_=n(11663),k=n(33384),j=n(47197),A=n(4953),R=n(56013),D=n(28),L=n(1740),I=n(98038),M=n(72327),N=n(76072),$=n(35163),B=n(68453),F=n(21923),Q=n(95367),z=n(64173),V=n(55167),U=n(85472),W=n(46908),G=n(36562),X=n(10547),q=n(79815),H=n(43065),Z=n(21091),Y=n(46699),K=n(33320),J=n(94172),ee=n(19716),te=n(71068),ne=n(14398),re=n(38628),oe=n(65768),ie=n(30512),ae=n(79608),se=n(96233),le=n(69449),ce=n(63743),ue=n(26521),de=n(60943),fe=n(35593),he=n(32289),pe=n(41120),me=n(78638),ge=n(42301),ye=n(28667),ve=n(19421),be=n(77998),Oe=n(69716),we=n(74463),Se=n(79329),xe=n(43473),Ee=n(47473),Te=n(4785),Ce=n(65302),Pe=n(1e3),_e=n(86610),ke=n(85923),je=n(48407),Ae=n(21244),Re=n(37453),De=n(28728),Le=n(9316),Ie=n(84270),Me=n(44533),Ne=n(77453),$e=n(97619),Be=n(65752),Fe=n(1337),Qe=n(73034),ze=n(44434),Ve=n(22298),Ue=n(94621),We=n(97363),Ge=n(47674),Xe=n(83771),qe=n(83855),He=n(31750),Ze=n(89313),Ye=n(7933),Ke=n(33620),Je=n(17587),et=n(12550),tt=n(6678),nt=n(53268),rt=n(11142),ot=n(11942),it=n(15765),at=n(7437),st=n(16184);o.moduleSystem.registerModule({onInit:function(){var e=r.container.get(i.serviceIds.iconLibrary);e.register({name:"camera",component:a.default}),e.register({name:"folder",component:l.default}),e.register({name:"widget-default",component:c.default}),e.register({name:"caret-up-outlined",component:u.default}),e.register({name:"caret-down-outlined",component:d.default}),e.register({name:"chevron-up",component:f.default}),e.register({name:"chevron-up-small",component:h.default}),e.register({name:"chevron-down-small",component:y.default}),e.register({name:"chevron-up-wide",component:p.default}),e.register({name:"chevron-down-wide",component:g.default}),e.register({name:"chevron-down",component:m.default}),e.register({name:"home",component:v.default}),e.register({name:"refresh",component:b.default}),e.register({name:"icon-tools",component:O.default}),e.register({name:"image-05",component:w.default}),e.register({name:"edit",component:S.default}),e.register({name:"data-sheet",component:x.default}),e.register({name:"data-management-2",component:E.default}),e.register({name:"history-outlined",component:T.default}),e.register({name:"schedule-outlined",component:C.default}),e.register({name:"hierarchy",component:P.default}),e.register({name:"view-details",component:_.default}),e.register({name:"tag-two-tone",component:k.default}),e.register({name:"workflow",component:j.default}),e.register({name:"unordered-list-outlined",component:A.default}),e.register({name:"close-circle-filled",component:R.default}),e.register({name:"check-circle-filled",component:D.default}),e.register({name:"info-circle-filled",component:L.default}),e.register({name:"exclamation-circle-filled",component:I.default}),e.register({name:"dots-horizontal",component:M.default}),e.register({name:"target",component:N.default}),e.register({name:"info-circle-outlined",component:$.default}),e.register({name:"left-outlined",component:B.default}),e.register({name:"right-outlined",component:F.default}),e.register({name:"rich-edit",component:Q.default}),e.register({name:"download-02",component:z.default}),e.register({name:"pin-02",component:V.default}),e.register({name:"edit-outlined",component:U.default}),e.register({name:"expand-alt-outlined",component:W.default}),e.register({name:"eye-outlined",component:G.default}),e.register({name:"share-alt-outlined",component:X.default}),e.register({name:"translation",component:q.default}),e.register({name:"volume-max",component:H.default}),e.register({name:"file-code-01",component:Z.default}),e.register({name:"file-question-02",component:Y.default}),e.register({name:"file-02",component:K.default}),e.register({name:"file-check-02",component:J.default}),e.register({name:"file-x-03",component:ee.default}),e.register({name:"presentation-chart-01",component:te.default}),e.register({name:"video-recorder",component:ne.default}),e.register({name:"image-01",component:re.default}),e.register({name:"ellipsis-outlined",component:oe.default}),e.register({name:"focal-point",component:ie.default}),e.register({name:"MinusOutlined",component:ae.default}),e.register({name:"PlusOutlined",component:se.default}),e.register({name:"settings2",component:le.default}),e.register({name:"PlusCircleOutlined",component:ce.default}),e.register({name:"lightning-01",component:Te.default}),e.register({name:"calender",component:Ce.default}),e.register({name:"world",component:Pe.default}),e.register({name:"user-01",component:_e.default}),e.register({name:"shield-02",component:ke.default}),e.register({name:"share-03",component:ue.default}),e.register({name:"copy-03",component:de.default}),e.register({name:"copy-07",component:fe.default}),e.register({name:"group",component:he.default}),e.register({name:"note",component:pe.default}),e.register({name:"mainDocument",component:me.default}),e.register({name:"mainAsset",component:ge.default}),e.register({name:"mainObject",component:ye.default}),e.register({name:"mainObjectVariant",component:ve.default}),e.register({name:"check-done-02",component:be.default}),e.register({name:"chevron-selector-vertical",component:Oe.default}),e.register({name:"chevron-selector-horizontal",component:we.default}),e.register({name:"trash",component:Ee.default}),e.register({name:"icon",component:Re.default}),e.register({name:"close",component:s.default}),e.register({name:"tag-02",component:De.default}),e.register({name:"no-content",component:Le.default}),e.register({name:"intersect-circle",component:je.default}),e.register({name:"corner-left-up",component:Ae.default}),e.register({name:"flag-outlined",component:Ie.default}),e.register({name:"chevron-right",component:Se.default}),e.register({name:"chevron-left",component:xe.default}),e.register({name:"draggable",component:Me.default}),e.register({name:"settings-outlined",component:Ne.default}),e.register({name:"filter-outlined",component:$e.default}),e.register({name:"text-input",component:Be.default}),e.register({name:"calendar-date",component:Fe.default}),e.register({name:"upload-cloud",component:Qe.default}),e.register({name:"export",component:ze.default}),e.register({name:"grid",component:Ve.default}),e.register({name:"spinner",component:Ue.default}),e.register({name:"upload-zip",component:We.default}),e.register({name:"type-square",component:Ge.default}),e.register({name:"clipboard",component:Xe.default}),e.register({name:"scissors-cut",component:qe.default}),e.register({name:"delete-outlined",component:He.default}),e.register({name:"file-download-zip-01",component:Ze.default}),e.register({name:"more",component:Ye.default}),e.register({name:"folder-search",component:Ke.default}),e.register({name:"lock-01",component:Je.default}),e.register({name:"file-lock-02",component:et.default}),e.register({name:"expand-01",component:tt.default}),e.register({name:"refresh-ccw-03",component:nt.default}),e.register({name:"clipboard-check",component:rt.default}),e.register({name:"magic-wand-01",component:ot.default}),e.register({name:"lock-unlock-01",component:it.default}),e.register({name:"question-circle-outlined",component:at.default}),e.register({name:"search-sm",component:st.default})}})},94605:(e,t,n)=>{"use strict";n.r(t),n.d(t,{IconLibrary:()=>l});var r=n(84560);function o(e,t){for(var n=0;n=0;l--)(o=e[l])&&(s=(i<3?o(s):i>3?o(t,n,s):o(t,n))||s);return i>3&&s&&Object.defineProperty(t,n,s),s},l=function(){return e=function e(){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),this.icons=new Map},(t=[{key:"register",value:function(e){var t=e.name,n=e.component;this.icons.set(t,n)}},{key:"get",value:function(e){return this.icons.get(e)}},{key:"getIcons",value:function(){return this.icons}}])&&o(e.prototype,t),n&&o(e,n),Object.defineProperty(e,"prototype",{writable:!1}),e;var e,t,n}();l=s([(0,r.injectable)()],l)},64814:(e,t,n)=>{"use strict";n.r(t),n.d(t,{createContextMenuItems:()=>a});var r=n(81690),o=n(54088),i=n(36609),a=function(e){var t=e.contextMenuState,n=e.closeContextMenu,a=e.model,s=e.closeWidget;return[{key:"close-tab",label:(0,i.t)("close-tab"),onClick:function(){null!==t&&(s(t.tabNode.getId()),n())}},{key:"close-others",label:(0,i.t)("close-others"),onClick:function(){var e;null!==t&&(null===(e=a.getActiveTabset())||void 0===e||e.getChildren().forEach((function(e){e.getId()!==t.tabNode.getId()&&s(e.getId())})),n())}},{key:"close-unmodified",label:(0,i.t)("close-unmodified"),onClick:function(){var e;if(null!==t){var i=r.container.get(o.serviceIds.widgetManager);null===(e=a.getActiveTabset())||void 0===e||e.getChildren().forEach((function(e){var t,n=i.getWidget(null!==(t=e.getComponent())&&void 0!==t?t:""),r=null==n?void 0:n.isModified;void 0!==r&&r(e)||s(e.getId())})),n()}}},{key:"close-all",label:(0,i.t)("close-all"),onClick:function(){var e;null!==t&&(null===(e=a.getActiveTabset())||void 0===e||e.getChildren().forEach((function(e){s(e.getId())})),n())}}]}},23170:(e,t,n)=>{"use strict";n.r(t),n.d(t,{useContextMenu:()=>u});var r=n(41642),o=n(36198),i=n(86352),a=n(66777),s=n(27118);function l(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return c(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return c(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function c(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";n.r(t),n.d(t,{useIsAcitveMainWidget:()=>s});var r=n(7496),o=n(77209),i=n(36198),a=n(5319),s=function(){var e=(0,r.useAppSelector)(o.selectMainWidgetContext),t=(0,i.useContext)(a.WidgetContext);return null!==e&&e.nodeId===t.nodeId}},66777:(e,t,n)=>{"use strict";n.r(t),n.d(t,{useWidgetManager:()=>a});var r=n(7496),o=n(77209),i=n(86352),a=function(){var e=(0,r.useAppDispatch)();function t(){var e=r.store.getState(),t=(0,o.selectInnerModel)(e);return i.Model.fromJson(t)}return{openMainWidget:function(t){e((0,o.openMainWidget)(t))},openBottomWidget:function(t){e((0,o.openBottomWidget)(t))},openLeftWidget:function(t){e((0,o.openLeftWidget)(t))},openRightWidget:function(t){e((0,o.openRightWidget)(t))},switchToWidget:function(t){e((0,o.setActiveWidgetById)(t))},closeWidget:function(t){e((0,o.closeWidget)(t))},isMainWidgetOpen:function(e){return void 0!==t().getNodeById(e)},getOpenedMainWidget:function(){var e;return null===(e=t().getActiveTabset())||void 0===e?void 0:e.getSelectedNode()}}}},6042:(e,t,n)=>{"use strict";n.r(t),n.d(t,{WidgetRegistry:()=>c});var r=n(84560),o=n(36198);function i(e,t){for(var n=0;n=0;l--)(o=e[l])&&(a=(i<3?o(a):i>3?o(t,n,a):o(t,n))||a);return i>3&&a&&Object.defineProperty(t,n,a),a},c=function(){return e=function e(){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),this.widgets=[]},(t=[{key:"registerWidget",value:function(e){var t=Object.assign(Object.assign({},e),{component:(0,o.memo)(e.component)});this.widgets.push(t)}},{key:"getWidget",value:function(e){return this.widgets.find((function(t){return t.name===e}))}}])&&i(e.prototype,t),n&&i(e,n),Object.defineProperty(e,"prototype",{writable:!1}),e;var e,t,n}();c=l([(0,r.injectable)()],c)},45835:(e,t,n)=>{"use strict";n.r(t),n.d(t,{BorderTitleView:()=>s});var r=n(54663),o=n(36198),i=n(28518),a=n(30811),s=function(e){var t=e.icon,n=e.title,s=(0,a.useTranslation)().t;return o.createElement(i.Tooltip,{placement:"right",title:s(n)},o.createElement("div",null,o.createElement(r.Icon,Object.assign({options:{width:16,height:16}},t))))}},1464:(e,t,n)=>{"use strict";n.r(t),n.d(t,{TabTitleContainer:()=>u});var r=n(86352),o=n(36198),i=n(45835),a=n(14955),s=n(66777);function l(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return c(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return c(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function c(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";n.r(t),n.d(t,{TabTitleOuterContainer:()=>s});var r=n(36198),o=n(81690),i=n(1464),a=n(54088),s=function(e){var t=e.node,n=t.getComponent(),s=(0,o.useInjection)(a.serviceIds.widgetManager).getWidget(n),l=r.createElement(i.TabTitleContainer,{modified:!1,node:t});return void 0!==(null==s?void 0:s.titleComponent)&&(l=r.createElement(s.titleComponent,{node:t})),r.createElement(r.Fragment,null," ",l," ")}},1935:(e,t,n)=>{"use strict";var r;n.r(t),n.d(t,{useStyles:()=>o});var o=(0,n(3562).createStyles)((function(e){var t,n;e.token;return{title:(0,e.css)(r||(t=["\n .ant-space-item {\n display: flex;\n align-items: center;\n }\n "],n||(n=t.slice(0)),r=Object.freeze(Object.defineProperties(t,{raw:{value:Object.freeze(n)}}))))}}),{hashPriority:"low"})},14955:(e,t,n)=>{"use strict";n.r(t),n.d(t,{TabTitleView:()=>u});var r=n(54663),o=n(28518),i=n(71816),a=n(36198),s=n(1935),l=n(30811),c=n(40069),u=function(e){var t=e.icon,n=e.title,u=e.onClose,d=e.onConfirm,f=(0,s.useStyles)().styles,h=(0,l.useTranslation)().t,p=function(){null==u||u()};return a.createElement(c.Space,{className:["widget-manager-tab-title",f.title].join(" "),size:"mini"},a.createElement(r.Icon,Object.assign({options:{width:16,height:16}},t)),a.createElement("span",null,n),void 0!==u&&void 0!==d&&a.createElement(o.Popconfirm,{onConfirm:function(){null==d||d()},title:h("widget-manager.tab-title.close-confirmation")},m()),void 0!==u&&void 0===d&&m());function m(){return a.createElement(i.Button,{className:"widget-manager__tab-title-close-button",onClick:p,onMouseDown:function(e){e.stopPropagation()},type:"link"},a.createElement(r.Icon,{options:{width:14,height:14},value:"close"}))}}},7250:(e,t,n)=>{"use strict";n.r(t),n.d(t,{widgetManagerFactory:()=>l});var r=n(36198),o=n(5319),i=n(75876),a=n(81690),s=n(54088),l=function(e){if("inner-widget-manager"===e.getComponent())return r.createElement(i.WidgetManagerInnerContainer,null);var t=a.container.get(s.serviceIds.widgetManager),n=e.getComponent();if(void 0!==n){var l=t.getWidget(n);if(void 0===l)throw new Error("Widget ".concat(n," not found"));var c=l.component;return r.createElement(o.WidgetContainer,{component:c,node:e})}}},15419:(e,t,n)=>{"use strict";n.r(t),n.d(t,{getInitialModelJson:()=>r});var r=function(){return{global:{tabEnableRename:!1,tabSetEnableMaximize:!1},layout:{id:"main",type:"row",children:[{type:"tabset",id:"main_tabset",enableDeleteWhenEmpty:!1,weight:50,selected:0,children:[]}]}}}},51802:(e,t,n)=>{"use strict";n.r(t),n.d(t,{getInitialModelJson:()=>r});var r=function(){return{global:{tabEnableRename:!1,tabSetEnableMaximize:!1,rootOrientationVertical:!0},layout:{id:"main",type:"row",children:[{type:"tabset",id:"main_tabset",enableDeleteWhenEmpty:!1,weight:50,selected:0,children:[{type:"tab",component:"inner-widget-manager",contentClassName:"widget-manager-inner-container",enableClose:!1}],enableDrag:!1,enableDrop:!1,enableTabStrip:!1},{type:"tabset",id:"bottom_tabset",enableDeleteWhenEmpty:!1,weight:50,height:0,selected:0,children:[]}]},borders:[{type:"border",location:"left",size:315,selected:0,children:[{type:"tab",name:"asset.asset-tree.title",component:"asset-tree",enableClose:!1,config:{icon:{value:"camera"}}},{type:"tab",name:"data-object.data-object-tree.title",component:"data-object-tree",enableClose:!1,config:{icon:{value:"mainObject"}}}]},{type:"border",location:"right",size:315,selected:0,children:[{type:"tab",name:"asset.asset-tree.title",component:"asset-tree",enableClose:!1,config:{id:288,icon:{value:"camera"}}}]}]}}},95165:(e,t,n)=>{"use strict";n.r(t),n.d(t,{WidgetManagerContainer:()=>u});var r=n(36198),o=n(85914),i=n(7250),a=n(86352),s=n(7496),l=n(77209),c=n(1464),u=function(){var e=(0,s.useAppSelector)(l.selectOuterModel),t=(0,s.useAppDispatch)(),n=a.Model.fromJson(e),u=n.getNodeById("bottom_tabset");return(0,r.useEffect)((function(){n.doAction(a.Actions.updateModelAttributes({tabSetTabStripHeight:34,tabSetTabHeaderHeight:34,borderBarSize:50}))}),[]),0===u.getChildren().length?n.doAction(a.Actions.updateNodeAttributes(u.getId(),{height:-8})):-8===u.getHeight()&&n.doAction(a.Actions.updateNodeAttributes(u.getId(),{height:34})),r.createElement(o.WidgetManagerView,{factory:i.widgetManagerFactory,model:n,onModelChange:function(e){t((0,l.updateOuterModel)(e.toJson()))},onRenderTab:function(e,t){t.content=r.createElement(c.TabTitleContainer,{node:e}),t.leading=r.createElement(r.Fragment,null)}})}},75876:(e,t,n)=>{"use strict";n.r(t),n.d(t,{WidgetManagerInnerContainer:()=>f});var r=n(36198),o=n(85914),i=n(7250),a=n(86352),s=n(7496),l=n(77209),c=n(43674),u=n(64814),d=function(){var e=(0,s.useAppSelector)(l.selectInnerModel),t=(0,s.useAppDispatch)(),n=a.Model.fromJson(e);return(0,r.useEffect)((function(){n.doAction(a.Actions.updateModelAttributes({tabSetTabStripHeight:34,tabSetTabHeaderHeight:34,borderBarSize:50}))}),[]),(0,r.useEffect)((function(){var e,r=null===(e=n.getActiveTabset())||void 0===e?void 0:e.getSelectedNode();t(void 0!==r?(0,l.updateMainWidgetContext)({nodeId:r.getId()}):(0,l.updateMainWidgetContext)(null))}),[n]),r.createElement(o.WidgetManagerView,{className:"widget-manager--inner",createContextMenuItems:u.createContextMenuItems,factory:i.widgetManagerFactory,model:n,onModelChange:function(e){t((0,l.updateInnerModel)(e.toJson()))},onRenderTab:function(e,t){t.content=r.createElement(c.TabTitleOuterContainer,{node:e}),t.leading=r.createElement(r.Fragment,null)}})},f=(0,r.memo)(d)},77209:(e,t,n)=>{"use strict";n.r(t),n.d(t,{closeWidget:()=>O,initialState:()=>l,openBottomWidget:()=>g,openLeftWidget:()=>y,openMainWidget:()=>m,openRightWidget:()=>v,selectInnerModel:()=>S,selectMainWidgetContext:()=>E,selectOuterModel:()=>x,setActiveWidgetById:()=>b,slice:()=>c,updateInnerModel:()=>p,updateMainWidgetContext:()=>h,updateOuterModel:()=>f,widgetManagerSliceName:()=>u});var r=n(7496),o=n(8327),i=n(86352),a=n(51802),s=n(15419),l={outerModel:(0,a.getInitialModelJson)(),innerModel:(0,s.getInitialModelJson)(),mainWidgetContext:null},c=(0,o.createSlice)({name:"widget-manager",initialState:l,reducers:{updateOuterModel:function(e,t){e.outerModel=Object.assign({},t.payload)},updateInnerModel:function(e,t){e.innerModel=Object.assign({},t.payload)},updateMainWidgetContext:function(e,t){e.mainWidgetContext=t.payload},setActiveWidgetById:function(e,t){var n=i.Model.fromJson(e.outerModel),r=i.Model.fromJson(e.innerModel),o=n.getNodeById(t.payload),a=n,s=!0;void 0===o&&(o=r.getNodeById(t.payload),a=r,s=!1),void 0!==o&&a.doAction(i.Actions.selectTab(o.getId())),s?e.outerModel=Object.assign({},a.toJson()):e.innerModel=Object.assign({},a.toJson())},openMainWidget:function(e,t){var n,r=i.Model.fromJson(e.innerModel);void 0!==t.payload.id&&(n=r.getNodeById(t.payload.id)),void 0!==n?r.doAction(i.Actions.selectTab(n.getId())):r.doAction(i.Actions.addNode(t.payload,"main_tabset",i.DockLocation.CENTER,-1,!0)),e.innerModel=Object.assign({},r.toJson())},openBottomWidget:function(e,t){var n,r=i.Model.fromJson(e.outerModel);void 0!==t.payload.id&&(n=r.getNodeById(t.payload.id)),void 0!==n?r.doAction(i.Actions.selectTab(n.getId())):r.doAction(i.Actions.addNode(t.payload,"bottom_tabset",i.DockLocation.CENTER,-1,!0)),e.outerModel=Object.assign({},r.toJson())},openLeftWidget:function(e,t){var n,r=i.Model.fromJson(e.outerModel);void 0!==t.payload.id&&(n=r.getNodeById(t.payload.id)),void 0!==n?r.doAction(i.Actions.selectTab(n.getId())):r.doAction(i.Actions.addNode(t.payload,"border_left",i.DockLocation.CENTER,-1,!0)),e.outerModel=Object.assign({},r.toJson())},openRightWidget:function(e,t){var n,r=i.Model.fromJson(e.outerModel);void 0!==t.payload.id&&(n=r.getNodeById(t.payload.id)),void 0!==n?r.doAction(i.Actions.selectTab(n.getId())):r.doAction(i.Actions.addNode(t.payload,"border_right",i.DockLocation.CENTER,-1,!0)),e.outerModel=Object.assign({},r.toJson())},closeWidget:function(e,t){var n=i.Model.fromJson(e.outerModel),r=i.Model.fromJson(e.innerModel),o=n.getNodeById(t.payload),a=n,s=!0;void 0===o&&(o=r.getNodeById(t.payload),a=r,s=!1),void 0!==o&&a.doAction(i.Actions.deleteTab(o.getId())),s?e.outerModel=Object.assign({},a.toJson()):e.innerModel=Object.assign({},a.toJson())}},selectors:{selectOuterModel:function(e){return e.outerModel},selectInnerModel:function(e){return e.innerModel},selectMainWidgetContext:function(e){return e.mainWidgetContext}}}),u=c.name;(0,r.injectSliceWithState)(c);var d=c.actions,f=d.updateOuterModel,h=d.updateMainWidgetContext,p=d.updateInnerModel,m=d.openMainWidget,g=d.openBottomWidget,y=d.openLeftWidget,v=d.openRightWidget,b=d.setActiveWidgetById,O=d.closeWidget,w=c.selectors,S=w.selectInnerModel,x=w.selectOuterModel,E=w.selectMainWidgetContext},83941:(e,t,n)=>{"use strict";n.r(t),n.d(t,{getTabTokens:()=>i,useStyles:()=>a});var r,o=n(3562);var i=function(e){var t,n,r=Object.assign({zIndexPopup:e.zIndexPopupBase+50,cardBg:e.colorFillAlter,cardHeight:e.controlHeightLG,cardPadding:"",cardPaddingSM:"".concat(1.5*e.paddingXXS,"px ").concat(e.padding,"px"),cardPaddingLG:"".concat(e.paddingXS,"px ").concat(e.padding,"px ").concat(1.5*e.paddingXXS,"px"),titleFontSize:"".concat(e.fontSize,"px"),titleFontSizeLG:"".concat(e.fontSizeLG,"px"),titleFontSizeSM:"".concat(e.fontSize,"px"),inkBarColor:e.colorPrimary,horizontalMargin:"0 0 ".concat(e.margin,"px 0"),horizontalItemGutter:32,horizontalItemMargin:"",horizontalItemMarginRTL:"",horizontalItemPadding:"".concat(e.paddingSM,"px 0"),horizontalItemPaddingSM:"".concat(e.paddingXS,"px 0"),horizontalItemPaddingLG:"".concat(e.padding,"px 0"),verticalItemPadding:"".concat(e.paddingXS,"px ").concat(e.paddingLG,"px"),verticalItemMargin:"".concat(e.margin,"px 0 0 0"),itemSelectedColor:e.colorPrimary,itemHoverColor:e.colorPrimaryHover,itemActiveColor:e.colorPrimaryActive,cardGutter:e.marginXXS/2},null!==(t=null==e?void 0:e.Tabs)&&void 0!==t?t:{});return r=Object.assign(Object.assign({},r),{tabsCardPadding:null!==(n=e.cardPadding)&&void 0!==n?n:"".concat((r.cardHeight-Math.round(e.fontSize*e.lineHeight))/2-e.lineWidth,"px ").concat(e.paddingSM,"px"),dropdownEdgeChildVerticalPadding:e.paddingXXS,tabsActiveTextShadow:"0 0 0.25px currentcolor",tabsDropdownHeight:200,tabsDropdownWidth:120,tabsHorizontalItemMargin:"0 0 0 ".concat(e.horizontalItemGutter,"px"),tabsHorizontalItemMarginRTL:"0 0 0 ".concat(e.horizontalItemGutter,"px")})},a=(0,o.createStyles)((function(e){var t,n,o=e.token,a=e.css,s=i(o);return{widgetManager:a(r||(t=["\n position: absolute;\n inset: 8px 6px 12px 6px;\n \n .flexlayout__layout {\n overflow: visible;\n }\n \n &.widget-manager--inner {\n inset: 0;\n }\n \n .flexlayout__tab_button_leading,\n .flexlayout__border_button_leading {\n display: none;\n }\n \n .flexlayout__tab_button {\n margin: 0;\n padding: ","px ","px;\n background: ",";\n transition: all "," ",";\n font-size: ","px;\n color: ",";\n outline: none;\n gap: ","px;\n \n &:hover {\n background: ",";\n }\n \n &_trailing {\n display: none;\n }\n \n &--selected {\n font-weight: ",";\n color: ",";\n background: ",";\n border-top: 2px solid ",";\n\n .widget-manager__tab-title-close-button {\n display: block;\n }\n \n .widget-manager-tab-title {\n margin-top: -2px;\n }\n \n &:hover {\n background: ",";\n }\n }\n\n .flexlayout__tab_button_trailing {\n margin-top: -2px;\n display: none;\n }\n \n &:focus:not(:focus-visible), &:active {\n color: ",";\n }\n \n &:first-child {\n border-left: 1px solid ","66;\n }\n }\n \n .flexlayout__tabset_tab_divider {\n width: ","px;\n }\n \n .flexlayout__tab_button_top {\n border-radius: ","px ","px 0 0;\n border-bottom: 0;\n }\n \n .flexlayout__border_inner_tab_container {\n width: calc(100svh - 12px);\n justify-content: flex-end;\n }\n \n .flexlayout__border_inner_tab_container_left, .flexlayout__border_inner_tab_container_right {\n .flexlayout__border_tab_divider {\n width: 0;\n }\n }\n \n .flexlayout__splitter,\n .flexlayout__border,\n .flexlayout__tabset_tabbar_outer {\n background: transparent;\n }\n \n .flexlayout__tab {\n overflow: visible;\n background: ",";\n box-shadow: 0px 8px 24px 0px rgba(0, 0, 0, 0.07), 2px 2px 0px 0px rgba(79, 78, 183, 0.05);\n border-right: 1px solid ","66;\n border-bottom: 1px solid ","66;\n border-left: 1px solid ","66;\n border-radius: 0 8px 8px 8px;\n }\n\n .flexlayout__tab:not(.widget-manager-inner-container) {\n overflow: hidden;\n }\n \n .flexlayout__tab_border {\n box-shadow: 0px 8px 24px 0px rgba(0, 0, 0, 0.07), 2px 2px 0px 0px rgba(79, 78, 183, 0.05);\n border-top: 1px solid ","66;\n border-right: 1px solid ","66;\n border-bottom: 1px solid ","66;\n border-left: 1px solid ","66;\n border-radius: 8px;\n }\n \n .widget-manager-inner-container {\n background: transparent;\n box-shadow: none;\n border: 0;\n }\n \n .flexlayout__tabset {\n overflow: visible;\n border-radius: ","px;\n font-family: ",";\n \n &, &-selected {\n background: transparent;\n }\n }\n \n .flexlayout__border {\n font-family: ",";\n }\n \n .flexlayout__border_button {\n margin: 0 0 6px 0;\n background: transparent;\n width: 40px;\n justify-content: center;\n border-radius: ","px;\n transition: all "," ",";\n \n &--selected {\n color: ",";\n border-top: 1.5px solid ",";\n background: ",";\n }\n }\n \n @media (hover: hover) {\n .flexlayout__border_button--unselected:hover {\n color: ","; \n background: ",";\n }\n \n .flexlayout__tab_button--selected:hover {\n color: ",";\n background: ",";\n }\n }\n \n .flexlayout__border_button_trailing {\n display: none;\n }\n \n .flexlayout__border_left {\n border-right: 0;\n \n .flexlayout__border_button_content {\n transform: rotate(90deg);\n }\n }\n \n .flexlayout__border_right {\n border-left: 0;\n \n .flexlayout__border_button_content {\n transform: rotate(-90deg);\n }\n }\n \n .flexlayout__tabset_tabbar_outer_top {\n border: 0;\n }\n \n .flexlayout__tabset_tabbar_inner_tab_container {\n padding-left: 0;\n }\n \n .flexlayout__border_toolbar {\n display: none;\n }\n\n .widget-manager__tab-title-close-button {\n display: none;\n width: 12px;\n height: 12px;\n padding: 4px;\n line-height: 0;\n margin-top: -8px;\n color: ",";\n }\n "],n||(n=t.slice(0)),r=Object.freeze(Object.defineProperties(t,{raw:{value:Object.freeze(n)}}))),o.paddingSM,o.paddingSM,o.colorFillAlter,o.motionDurationSlow,o.motionEaseInOut,o.fontSize,s.itemColor,o.marginXXS,o.Tabs.colorBgHoverUnselectedTab,o.fontWeightStrong,s.itemActiveColor,o.colorBgContainer,o.Tabs.colorBorderActiveTab,o.colorBgContainer,s.itemActiveColor,o.Tabs.colorBorderContainer,s.cardGutter,o.borderRadiusLG,o.borderRadiusLG,o.colorBgContainer,o.Tabs.colorBorderContainer,o.Tabs.colorBorderContainer,o.Tabs.colorBorderContainer,o.Tabs.colorBorderContainer,o.Tabs.colorBorderContainer,o.Tabs.colorBorderContainer,o.Tabs.colorBorderContainer,o.borderRadius,o.fontFamily,o.fontFamily,o.borderRadiusSM,o.motionDurationSlow,o.motionEaseInOut,s.itemActiveColor,o.colorBorderActive,o.controlItemBgHover,o.colorTextSecondary,o.controlItemBgActiveHover,s.itemActiveColor,o.colorBgContainer,o.colorIcon)}}),{hashPriority:"low"})},85914:(e,t,n)=>{"use strict";n.r(t),n.d(t,{WidgetManagerView:()=>l});var r=n(36198),o=n(86352),i=n(83941),a=n(23170),s=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&t.indexOf(r)<0&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var o=0;for(r=Object.getOwnPropertySymbols(e);o{"use strict";var r;n.r(t),n.d(t,{useStyles:()=>o});var o=(0,n(3562).createStyles)((function(e){var t,n,o=e.token;return{WidgetTitle:(0,e.css)(r||(t=["\n display: flex;\n padding: ","px ","px;\n gap: 8px;\n align-items: center;\n color: ",";\n font-weight: 600;\n "],n||(n=t.slice(0)),r=Object.freeze(Object.defineProperties(t,{raw:{value:Object.freeze(n)}}))),o.paddingXS,o.paddingSM,o.Tree.colorPrimaryHeading)}}),{hashPriority:"low"})},42603:(e,t,n)=>{"use strict";n.r(t),n.d(t,{TitleView:()=>a});var r=n(54663),o=n(36198),i=n(89334),a=function(e){var t=(0,i.useStyles)().styles,n=e.title,a=e.icon,s=e.className;return o.createElement("div",{className:[t.WidgetTitle,s].join(" ")},o.createElement(r.Icon,{options:{width:18,height:18},value:a}),o.createElement("span",null,n))}},5319:(e,t,n)=>{"use strict";n.r(t),n.d(t,{WidgetContainer:()=>c,WidgetContext:()=>l});var r=n(36198),o=n(86352),i=n(17368);function a(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return s(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return s(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function s(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";var r;n.r(t),n.d(t,{useStyles:()=>o});var o=(0,n(3562).createStyles)((function(e){var t,n,o=e.token;return{Widget:(0,e.css)(r||(t=["\n display: flex;\n flex-direction: column;\n width: 100%;\n height: 100%;\n overflow: hidden;\n\n .widget__content {\n flex: 1;\n overflow: auto;\n contain: layout size;\n }\n\n .widget__title {\n padding-top: ","px;\n }\n "],n||(n=t.slice(0)),r=Object.freeze(Object.defineProperties(t,{raw:{value:Object.freeze(n)}}))),o.paddingSM)}}),{hashPriority:"low"})},17368:(e,t,n)=>{"use strict";n.r(t),n.d(t,{WidgetView:()=>u,cssContainerWidget:()=>l});var r=n(36198),o=n(42603),i=n(22687),a=n(30811),s=n(77128),l={name:"widget"},c=function(e){var t=(0,s.useCssContainer)(l).styleDefinition,n=(0,i.useStyles)().styles,c=e.title,u=e.showTitle,d=e.icon,f=e.children,h=(0,a.useTranslation)().t;return r.createElement("div",{className:["widget",n.Widget,t.styles.container].join(" ")},!0===u&&r.createElement(o.TitleView,{className:"widget__title",icon:d,title:h(c)}),r.createElement("div",{className:"widget__content"},f))},u=r.memo(c)},96277:(e,t,n)=>{"use strict";var r;n.r(t),n.d(t,{GlobalStyles:()=>a});var o,i,a=(0,n(3562).createGlobalStyle)(r||(o=["\n @font-face {\n font-family: Lato;\n src: url(../fonts/Lato-Regular.ttf);\n }\n\n @font-face {\n font-family: Lato;\n src: url(../fonts/Lato-Light.ttf);\n font-weight: 300;\n }\n\n @font-face {\n font-family: Lato;\n src: url(../fonts/Lato-Bold.ttf);\n font-weight: 700;\n }\n\n * {\n box-sizing: border-box;\n }\n\n /** MESSAGE **/\n .ant-message {\n position: absolute;\n bottom: 20px !important;\n top: unset !important;\n }\n\n @keyframes moveUp {\n 0% {\n transform: translateY(+30%);\n opacity: 0;\n }\n 100% {\n transform: translateY(0);\n opacity: 1;\n }\n }\n\n .ant-message .ant-message-move-up-appear,\n .ant-message .ant-message-move-up-enter {\n animation-name: moveUp;\n }\n\n .ant-message .ant-message-move-up-leave {\n animation-name: moveUp;\n animation-direction: reverse;\n }\n\n .p-none {\n padding: 0;\n }\n\n .p-mini {\n padding: ","px;\n }\n\n .p-extra-small {\n padding: ","px;\n }\n\n .p-small {\n padding: ","px;\n }\n\n .p-normal {\n padding: ","px;\n }\n\n .p-medium {\n padding: ","px;\n }\n\n .p-large {\n padding: ","px;\n }\n\n .p-extra-large {\n padding: ","px;\n }\n\n .p-maxi {\n // @todo check missing padding token\n padding: ","px;\n }\n\n .p-y-none {\n padding-top: 0;\n padding-bottom: 0;\n }\n\n .p-y-mini {\n padding-top: ","px;\n padding-bottom: ","px;\n }\n\n .p-y-extra-small {\n padding-top: ","px;\n padding-bottom: ","px;\n }\n\n .p-y-small {\n padding-top: ","px;\n padding-bottom: ","px;\n }\n\n .p-y-normal {\n padding-top: ","px;\n padding-bottom: ","px;\n }\n\n .p-y-medium {\n padding-top: ","px;\n padding-bottom: ","px;\n }\n\n .p-y-large {\n padding-top: ","px;\n padding-bottom: ","px;\n }\n\n .p-y-extra-large {\n padding-top: ","px;\n padding-bottom: ","px;\n }\n\n .p-y-maxi {\n // @todo check missing padding token\n padding-top: ","px;\n padding-bottom: ","px;\n }\n\n .p-x-none {\n padding-left: 0;\n padding-right: 0;\n }\n\n .p-x-mini {\n padding-left: ","px;\n padding-right: ","px;\n }\n\n .p-x-extra-small {\n padding-left: ","px;\n padding-right: ","px;\n }\n\n .p-x-small {\n padding-left: ","px;\n padding-right: ","px;\n }\n\n .p-x-normal {\n padding-left: ","px;\n padding-right: ","px;\n }\n\n .p-x-medium {\n padding-left: ","px;\n padding-right: ","px;\n }\n\n .p-x-large {\n padding-left: ","px;\n padding-right: ","px;\n }\n\n .p-x-extra-large {\n padding-left: ","px;\n padding-right: ","px;\n }\n\n .p-x-maxi {\n // @todo check missing padding token\n padding-left: ","px;\n padding-right: ","px;\n }\n\n .p-t-none {\n padding-top: 0;\n }\n\n .p-t-mini {\n padding-top: ","px;\n }\n\n .p-t-extra-small {\n padding-top: ","px;\n }\n\n .p-t-small {\n padding-top: ","px;\n }\n\n .p-t-normal {\n padding-top: ","px;\n }\n\n .p-t-medium {\n padding-top: ","px;\n }\n\n .p-t-large {\n padding-top: ","px;\n }\n\n .p-t-extra-large {\n padding-top: ","px;\n }\n\n .p-t-maxi {\n // @todo check missing padding token\n padding-top: ","px;\n }\n\n .p-b-none {\n padding-bottom: 0;\n }\n\n .p-b-mini {\n padding-bottom: ","px;\n }\n\n .p-b-extra-small {\n padding-bottom: ","px;\n }\n\n .p-b-small {\n padding-bottom: ","px;\n }\n\n .p-b-normal {\n padding-bottom: ","px;\n }\n\n .p-b-medium {\n padding-bottom: ","px;\n }\n\n .p-b-large {\n padding-bottom: ","px;\n }\n\n .p-b-extra-large {\n padding-bottom: ","px;\n }\n\n .p-b-maxi {\n // @todo check missing padding token\n padding-bottom: ","px;\n }\n\n .p-l-none {\n padding-left: 0;\n }\n\n .p-l-mini {\n padding-left: ","px;\n }\n\n .p-l-extra-small {\n padding-left: ","px;\n }\n\n .p-l-small {\n padding-left: ","px;\n }\n\n .p-l-normal {\n padding-left: ","px;\n }\n\n .p-l-medium {\n padding-left: ","px;\n }\n\n .p-l-large {\n padding-left: ","px;\n }\n\n .p-l-extra-large {\n padding-left: ","px;\n }\n\n .p-l-maxi {\n // @todo check missing padding token\n padding-left: ","px;\n }\n\n .p-r-none {\n padding-right: 0;\n }\n\n .p-r-mini {\n padding-right: ","px;\n }\n\n .p-r-extra-small {\n padding-right: ","px;\n }\n\n .p-r-small {\n padding-right: ","px;\n }\n\n .p-r-normal {\n padding-right: ","px;\n }\n\n .p-r-medium {\n padding-right: ","px;\n }\n\n .p-r-large {\n padding-right: ","px;\n }\n\n .p-r-extra-large {\n padding-right: ","px;\n }\n\n .p-r-maxi {\n // @todo check missing padding token\n padding-right: ","px;\n }\n\n .m-none {\n margin: 0;\n }\n\n .m-mini {\n margin: ","px;\n }\n\n .m-extra-small {\n margin: ","px;\n }\n\n .m-small {\n margin: ","px;\n }\n\n .m-normal {\n margin: ","px;\n }\n\n .m-medium {\n margin: ","px;\n }\n\n .m-large {\n margin: ","px;\n }\n\n .m-extra-large {\n margin: ","px;\n }\n\n .m-maxi {\n // @todo check missing margin token\n margin: ","px;\n }\n\n .m-y-none {\n margin-top: 0;\n margin-bottom: 0;\n }\n\n .m-y-mini {\n margin-top: ","px;\n margin-bottom: ","px;\n }\n\n .m-y-extra-small {\n margin-top: ","px;\n margin-bottom: ","px;\n }\n\n .m-y-small {\n margin-top: ","px;\n margin-bottom: ","px;\n }\n\n .m-y-normal {\n margin-top: ","px;\n margin-bottom: ","px;\n }\n\n .m-y-medium {\n margin-top: ","px;\n margin-bottom: ","px;\n }\n\n .m-y-large {\n margin-top: ","px;\n margin-bottom: ","px;\n }\n\n .m-y-extra-large {\n margin-top: ","px;\n margin-bottom: ","px;\n }\n\n .m-y-maxi {\n // @todo check missing margin token\n margin-top: ","px;\n margin-bottom: ","px;\n }\n\n .m-x-none {\n margin-left: 0;\n margin-right: 0;\n }\n\n .m-x-mini {\n margin-left: ","px;\n margin-right: ","px;\n }\n\n .m-x-extra-small {\n margin-left: ","px;\n margin-right: ","px;\n }\n\n .m-x-small {\n margin-left: ","px;\n margin-right: ","px;\n }\n\n .m-x-normal {\n margin-left: ","px;\n margin-right: ","px;\n }\n\n .m-x-medium {\n margin-left: ","px;\n margin-right: ","px;\n }\n\n .m-x-large {\n margin-left: ","px;\n margin-right: ","px;\n }\n\n .m-x-extra-large {\n margin-left: ","px;\n margin-right: ","px;\n }\n\n .m-x-maxi {\n // @todo check missing margin token\n margin-left: ","px;\n margin-right: ","px;\n }\n\n .m-t-none {\n margin-top: 0;\n }\n\n .m-t-mini {\n margin-top: ","px;\n }\n\n .m-t-extra-small {\n margin-top: ","px;\n }\n\n .m-t-small {\n margin-top: ","px;\n }\n\n .m-t-normal {\n margin-top: ","px;\n }\n\n .m-t-medium {\n margin-top: ","px;\n }\n\n .m-t-large {\n margin-top: ","px;\n }\n\n .m-t-extra-large {\n margin-top: ","px;\n }\n\n .m-t-maxi {\n // @todo check missing margin token\n margin-top: ","px;\n }\n\n .m-b-none {\n margin-bottom: 0;\n }\n\n .m-b-mini {\n margin-bottom: ","px;\n }\n\n .m-b-extra-small {\n margin-bottom: ","px;\n }\n\n .m-b-small {\n margin-bottom: ","px;\n }\n\n .m-b-normal {\n margin-bottom: ","px;\n }\n\n .m-b-medium {\n margin-bottom: ","px;\n }\n\n .m-b-large {\n margin-bottom: ","px;\n }\n\n .m-b-extra-large {\n margin-bottom: ","px;\n }\n\n .m-b-maxi {\n // @todo check missing margin token\n margin-bottom: ","px;\n }\n\n .m-l-none {\n margin-left: 0;\n }\n\n .m-l-mini {\n margin-left: ","px;\n }\n\n .m-l-extra-small {\n margin-left: ","px;\n }\n\n .m-l-small {\n margin-left: ","px;\n }\n\n .m-l-normal {\n margin-left: ","px;\n }\n\n .m-l-medium {\n margin-left: ","px;\n }\n\n .m-l-large {\n margin-left: ","px;\n }\n\n .m-l-extra-large {\n margin-left: ","px;\n }\n\n .m-l-maxi {\n // @todo check missing margin token\n margin-left: ","px;\n }\n\n .m-r-none {\n margin-right: 0;\n }\n\n .m-r-mini {\n margin-right: ","px;\n }\n\n .m-r-extra-small {\n margin-right: ","px;\n }\n\n .m-r-small {\n margin-right: ","px;\n }\n\n .m-r-normal {\n margin-right: ","px;\n }\n\n .m-r-medium {\n margin-right: ","px;\n }\n\n .m-r-large {\n margin-right: ","px;\n }\n\n .m-r-extra-large {\n margin-right: ","px;\n }\n\n .m-r-maxi {\n // @todo check missing margin token\n margin-right: ","px;\n }\n\n .relative {\n position: relative;\n }\n\n .absolute {\n position: absolute;\n }\n\n .w-full {\n width: 100%;\n }\n\n .min-w-100 {\n min-width: 100px;\n }\n\n .h-full {\n height: 100%;\n }\n\n .overflow-x-auto {\n overflow-x: auto;\n }\n"],i||(i=o.slice(0)),r=Object.freeze(Object.defineProperties(o,{raw:{value:Object.freeze(i)}}))),(function(e){return e.theme.paddingXXS}),(function(e){return e.theme.paddingXS}),(function(e){return e.theme.paddingSM}),(function(e){return e.theme.padding}),(function(e){return e.theme.paddingMD}),(function(e){return e.theme.paddingLG}),(function(e){return e.theme.paddingXL}),(function(e){return e.theme.sizeXXL}),(function(e){return e.theme.paddingXXS}),(function(e){return e.theme.paddingXXS}),(function(e){return e.theme.paddingXS}),(function(e){return e.theme.paddingXS}),(function(e){return e.theme.paddingSM}),(function(e){return e.theme.paddingSM}),(function(e){return e.theme.padding}),(function(e){return e.theme.padding}),(function(e){return e.theme.paddingMD}),(function(e){return e.theme.paddingMD}),(function(e){return e.theme.paddingLG}),(function(e){return e.theme.paddingLG}),(function(e){return e.theme.paddingXL}),(function(e){return e.theme.paddingXL}),(function(e){return e.theme.sizeXXL}),(function(e){return e.theme.sizeXXL}),(function(e){return e.theme.paddingXXS}),(function(e){return e.theme.paddingXXS}),(function(e){return e.theme.paddingXS}),(function(e){return e.theme.paddingXS}),(function(e){return e.theme.paddingSM}),(function(e){return e.theme.paddingSM}),(function(e){return e.theme.padding}),(function(e){return e.theme.padding}),(function(e){return e.theme.paddingMD}),(function(e){return e.theme.paddingMD}),(function(e){return e.theme.paddingLG}),(function(e){return e.theme.paddingLG}),(function(e){return e.theme.paddingXL}),(function(e){return e.theme.paddingXL}),(function(e){return e.theme.sizeXXL}),(function(e){return e.theme.sizeXXL}),(function(e){return e.theme.paddingXXS}),(function(e){return e.theme.paddingXS}),(function(e){return e.theme.paddingSM}),(function(e){return e.theme.padding}),(function(e){return e.theme.paddingMD}),(function(e){return e.theme.paddingLG}),(function(e){return e.theme.paddingXL}),(function(e){return e.theme.sizeXXL}),(function(e){return e.theme.paddingXXS}),(function(e){return e.theme.paddingXS}),(function(e){return e.theme.paddingSM}),(function(e){return e.theme.padding}),(function(e){return e.theme.paddingMD}),(function(e){return e.theme.paddingLG}),(function(e){return e.theme.paddingXL}),(function(e){return e.theme.sizeXXL}),(function(e){return e.theme.paddingXXS}),(function(e){return e.theme.paddingXS}),(function(e){return e.theme.paddingSM}),(function(e){return e.theme.padding}),(function(e){return e.theme.paddingMD}),(function(e){return e.theme.paddingLG}),(function(e){return e.theme.paddingXL}),(function(e){return e.theme.sizeXXL}),(function(e){return e.theme.paddingXXS}),(function(e){return e.theme.paddingXS}),(function(e){return e.theme.paddingSM}),(function(e){return e.theme.padding}),(function(e){return e.theme.paddingMD}),(function(e){return e.theme.paddingLG}),(function(e){return e.theme.paddingXL}),(function(e){return e.theme.sizeXXL}),(function(e){return e.theme.marginXXS}),(function(e){return e.theme.marginXS}),(function(e){return e.theme.marginSM}),(function(e){return e.theme.margin}),(function(e){return e.theme.marginMD}),(function(e){return e.theme.marginLG}),(function(e){return e.theme.marginXL}),(function(e){return e.theme.sizeXXL}),(function(e){return e.theme.marginXXS}),(function(e){return e.theme.marginXXS}),(function(e){return e.theme.marginXS}),(function(e){return e.theme.marginXS}),(function(e){return e.theme.marginSM}),(function(e){return e.theme.marginSM}),(function(e){return e.theme.margin}),(function(e){return e.theme.margin}),(function(e){return e.theme.marginMD}),(function(e){return e.theme.marginMD}),(function(e){return e.theme.marginLG}),(function(e){return e.theme.marginLG}),(function(e){return e.theme.marginXL}),(function(e){return e.theme.marginXL}),(function(e){return e.theme.sizeXXL}),(function(e){return e.theme.sizeXXL}),(function(e){return e.theme.marginXXS}),(function(e){return e.theme.marginXXS}),(function(e){return e.theme.marginXS}),(function(e){return e.theme.marginXS}),(function(e){return e.theme.marginSM}),(function(e){return e.theme.marginSM}),(function(e){return e.theme.margin}),(function(e){return e.theme.margin}),(function(e){return e.theme.marginMD}),(function(e){return e.theme.marginMD}),(function(e){return e.theme.marginLG}),(function(e){return e.theme.marginLG}),(function(e){return e.theme.marginXL}),(function(e){return e.theme.marginXL}),(function(e){return e.theme.sizeXXL}),(function(e){return e.theme.sizeXXL}),(function(e){return e.theme.marginXXS}),(function(e){return e.theme.marginXS}),(function(e){return e.theme.marginSM}),(function(e){return e.theme.margin}),(function(e){return e.theme.marginMD}),(function(e){return e.theme.marginLG}),(function(e){return e.theme.marginXL}),(function(e){return e.theme.sizeXXL}),(function(e){return e.theme.marginXXS}),(function(e){return e.theme.marginXS}),(function(e){return e.theme.marginSM}),(function(e){return e.theme.margin}),(function(e){return e.theme.marginMD}),(function(e){return e.theme.marginLG}),(function(e){return e.theme.marginXL}),(function(e){return e.theme.sizeXXL}),(function(e){return e.theme.marginXXS}),(function(e){return e.theme.marginXS}),(function(e){return e.theme.marginSM}),(function(e){return e.theme.margin}),(function(e){return e.theme.marginMD}),(function(e){return e.theme.marginLG}),(function(e){return e.theme.marginXL}),(function(e){return e.theme.sizeXXL}),(function(e){return e.theme.marginXXS}),(function(e){return e.theme.marginXS}),(function(e){return e.theme.marginSM}),(function(e){return e.theme.margin}),(function(e){return e.theme.marginMD}),(function(e){return e.theme.marginLG}),(function(e){return e.theme.marginXL}),(function(e){return e.theme.sizeXXL}))},16437:(e,t,n)=>{"use strict";n.r(t),n.d(t,{toCssDimension:()=>r});var r=function(e,t){if(null==e||""===e){if(void 0===t)return;e=t}return"number"==typeof e?"".concat(e,"px"):e}},6745:(e,t,n)=>{"use strict";function r(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:2;if(0===e)return"0 B";var n=["B","KB","MB","GB","TB"],r=Math.floor(Math.log(e)/Math.log(1e3));return r=Math.min(r,n.length-1),e/=Math.pow(1e3,r),"".concat(e.toFixed(t)," ").concat(n[r])}n.r(t),n.d(t,{formatDataUnit:()=>r})},63664:(e,t,n)=>{"use strict";n.r(t),n.d(t,{formatDate:()=>i,formatDateTime:()=>o,formatTime:()=>a});var r=n(36609);function o(e){var t=e.timestamp,n=e.lng,o=e.timeStyle,i=e.dateStyle,a=e.options;if(void 0===n&&(n=r.default.language),null===t)return"";try{var s=new Date(1e3*t);return r.default.format(s,"datetime",n,Object.assign({timeStyle:o,dateStyle:i},a))}catch(e){throw new Error("Failed to format date time: ".concat(e))}}function i(e){return o({timestamp:e,dateStyle:"short"})}function a(e){return o({timestamp:e,timeStyle:"short"})}},3701:(e,t,n)=>{"use strict";function r(e,t){var n=e.split(".");return n[n.length-1]=t,n.join(".")}function o(e,t){var n=document.createElement("a");document.body.append(n),n.href=t,n.download=e,n.click(),n.remove()}n.r(t),n.d(t,{replaceFileEnding:()=>r,saveFileLocal:()=>o})},38576:(e,t,n)=>{"use strict";n.r(t),n.d(t,{isSet:()=>i,onKeyEnterExecuteClick:()=>o,respectLineBreak:()=>a});var r=n(36198);function o(e){"Enter"===e.key&&(e.preventDefault(),e.stopPropagation(),e.currentTarget.click())}function i(e){return null!=e}function a(e){var t=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],n=e.replace(/\n+$/,"").split("\n");return t?r.createElement("div",null,n.map((function(e,t){return r.createElement("p",{key:t},e)}))):r.createElement("div",null,n.map((function(e,t,n){return r.createElement(r.Fragment,{key:t},e,t{"use strict";n.r(t),n.d(t,{useClickOutside:()=>a});var r=n(36198);function o(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=function(e,t){if(!e)return;if("string"==typeof e)return i(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return i(e,t)}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0,o=function(){};return{s:o,n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var a,s=!0,l=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return s=e.done,e},e:function(e){l=!0,a=e},f:function(){try{s||null==n.return||n.return()}finally{if(l)throw a}}}}function i(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";var r;n.r(t),n.d(t,{useCssContainerStyles:()=>o});var o=(0,n(3562).createStyles)((function(e,t){var n,o;e.token;return{container:(0,e.css)(r||(n=["\n container: "," / ",";\n "],o||(o=n.slice(0)),r=Object.freeze(Object.defineProperties(n,{raw:{value:Object.freeze(o)}}))),t.name,t.type)}}))},77128:(e,t,n)=>{"use strict";n.r(t),n.d(t,{useCssContainer:()=>i});var r=n(36198),o=n(24519),i=function(e){var t=e.name,n=e.type,i=void 0===n?"size":n,a=(0,o.useCssContainerStyles)({name:t,type:i});return(0,r.useMemo)((function(){return{styleDefinition:a}}),[])}},2776:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>a});var r=n(36198);function o(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,s=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return i(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return i(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function i(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n{"use strict";n.r(t),n.d(t,{default:()=>o});var r=n(42938);const o=function(){var e=(0,r.useListPage)(),t=e.page,n=e.setPage,o=(0,r.useListPageSize)(),i=o.pageSize,a=o.setPageSize;return{page:t,pageSize:i,handlePageChange:function(e,t){n(e),a(t)}}}},27526:(e,t,n)=>{"use strict";n.r(t),n.d(t,{usePrevious:()=>o});var r=n(36198),o=function(e){var t=(0,r.useRef)();return(0,r.useEffect)((function(){t.current=e}),[e]),t.current}},38968:(e,t,n)=>{"use strict";n.r(t),n.d(t,{useServerSideEvent:()=>i});var r=n(36198),o=n(7056).appConfig.mercureUrl,i=function(e){var t,n=e.topics,i=e.messageHandler,a=e.openHandler;if(0===n.length)throw new Error("No topics provided");function s(){void 0!==t&&t.close()}return(0,r.useEffect)((function(){return function(){s()}}),[]),{open:function(){var e=new URL(o);n.forEach((function(t){e.searchParams.append("topic",t)})),t=new EventSource(e.toString()),void 0!==i&&(t.onmessage=i),void 0!==a&&(t.onopen=a)},close:s}}},66395:(e,t,n)=>{"use strict";n.r(t),n.d(t,{formatNumber:()=>o});var r=n(36609);function o(e){var t=e.value,n=e.lng,o=e.options;return void 0===n&&(n=r.default.language),r.default.format(t,"number",n,o)}},56239:(e,t,n)=>{"use strict";function r(e){return r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},r(e)}function o(){o=function(){return t};var e,t={},n=Object.prototype,i=n.hasOwnProperty,a=Object.defineProperty||function(e,t,n){e[t]=n.value},s="function"==typeof Symbol?Symbol:{},l=s.iterator||"@@iterator",c=s.asyncIterator||"@@asyncIterator",u=s.toStringTag||"@@toStringTag";function d(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{d({},"")}catch(e){d=function(e,t,n){return e[t]=n}}function f(e,t,n,r){var o=t&&t.prototype instanceof b?t:b,i=Object.create(o.prototype),s=new R(r||[]);return a(i,"_invoke",{value:_(e,n,s)}),i}function h(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}t.wrap=f;var p="suspendedStart",m="suspendedYield",g="executing",y="completed",v={};function b(){}function O(){}function w(){}var S={};d(S,l,(function(){return this}));var x=Object.getPrototypeOf,E=x&&x(x(D([])));E&&E!==n&&i.call(E,l)&&(S=E);var T=w.prototype=b.prototype=Object.create(S);function C(e){["next","throw","return"].forEach((function(t){d(e,t,(function(e){return this._invoke(t,e)}))}))}function P(e,t){function n(o,a,s,l){var c=h(e[o],e,a);if("throw"!==c.type){var u=c.arg,d=u.value;return d&&"object"==r(d)&&i.call(d,"__await")?t.resolve(d.__await).then((function(e){n("next",e,s,l)}),(function(e){n("throw",e,s,l)})):t.resolve(d).then((function(e){u.value=e,s(u)}),(function(e){return n("throw",e,s,l)}))}l(c.arg)}var o;a(this,"_invoke",{value:function(e,r){function i(){return new t((function(t,o){n(e,r,t,o)}))}return o=o?o.then(i,i):i()}})}function _(t,n,r){var o=p;return function(i,a){if(o===g)throw Error("Generator is already running");if(o===y){if("throw"===i)throw a;return{value:e,done:!0}}for(r.method=i,r.arg=a;;){var s=r.delegate;if(s){var l=k(s,r);if(l){if(l===v)continue;return l}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if(o===p)throw o=y,r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);o=g;var c=h(t,n,r);if("normal"===c.type){if(o=r.done?y:m,c.arg===v)continue;return{value:c.arg,done:r.done}}"throw"===c.type&&(o=y,r.method="throw",r.arg=c.arg)}}}function k(t,n){var r=n.method,o=t.iterator[r];if(o===e)return n.delegate=null,"throw"===r&&t.iterator.return&&(n.method="return",n.arg=e,k(t,n),"throw"===n.method)||"return"!==r&&(n.method="throw",n.arg=new TypeError("The iterator does not provide a '"+r+"' method")),v;var i=h(o,t.iterator,n.arg);if("throw"===i.type)return n.method="throw",n.arg=i.arg,n.delegate=null,v;var a=i.arg;return a?a.done?(n[t.resultName]=a.value,n.next=t.nextLoc,"return"!==n.method&&(n.method="next",n.arg=e),n.delegate=null,v):a:(n.method="throw",n.arg=new TypeError("iterator result is not an object"),n.delegate=null,v)}function j(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function A(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function R(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(j,this),this.reset(!0)}function D(t){if(t||""===t){var n=t[l];if(n)return n.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var o=-1,a=function n(){for(;++o=0;--o){var a=this.tryEntries[o],s=a.completion;if("root"===a.tryLoc)return r("end");if(a.tryLoc<=this.prev){var l=i.call(a,"catchLoc"),c=i.call(a,"finallyLoc");if(l&&c){if(this.prev=0;--n){var r=this.tryEntries[n];if(r.tryLoc<=this.prev&&i.call(r,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),A(n),v}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;A(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),v}},t}function i(e,t,n,r,o,i,a){try{var s=e[i](a),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(r,o)}function a(e){return function(){var t=this,n=arguments;return new Promise((function(r,o){var a=e.apply(t,n);function s(e){i(a,r,o,s,l,"next",e)}function l(e){i(a,r,o,s,l,"throw",e)}s(void 0)}))}}function s(e){return l.apply(this,arguments)}function l(){return l=a(o().mark((function e(t){var n,r,i,s,l;return o().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return n=t.url,r=t.onSuccess,i=t.interval,s=void 0===i?3e3:i,l=function(){var e=a(o().mark((function e(){var t,i;return o().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,fetch(n);case 2:if(200!==(t=e.sent).status){e.next=10;break}return e.next=6,t.blob();case 6:i=e.sent,r(i),e.next=15;break;case 10:if(202!==t.status){e.next=14;break}setTimeout(l,s),e.next=15;break;case 14:throw new Error("Unexpected response status: ".concat(t.status));case 15:case"end":return e.stop()}}),e)})));return function(){return e.apply(this,arguments)}}(),e.next=4,l();case 4:case"end":return e.stop()}}),e)}))),l.apply(this,arguments)}n.r(t),n.d(t,{fetchBlobWithPolling:()=>s})},72657:(e,t,n)=>{"use strict";function r(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=function(e,t){if(!e)return;if("string"==typeof e)return o(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return o(e,t)}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0,i=function(){};return{s:i,n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:i}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var a,s=!0,l=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return s=e.done,e},e:function(e){l=!0,a=e},f:function(){try{s||null==n.return||n.return()}finally{if(l)throw a}}}}function o(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n1&&void 0!==arguments[1]?arguments[1]:[""],o=[],i=r(e);try{for(i.s();!(t=i.n()).done;){var a=t.value;n.includes(a.value)||o.push("".concat(a.key,"=").concat(a.value))}}catch(e){i.e(e)}finally{i.f()}return o.join("&")}n.r(t),n.d(t,{buildQueryString:()=>i})},79342:(e,t,n)=>{"use strict";function r(e){return r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},r(e)}n.r(t),n.d(t,{isEmptyValue:()=>s,isNumber:()=>a,isObject:()=>o,isString:()=>i});var o=function(e){var t=r(e);return null!=e&&("object"===t||"function"===t)},i=function(e){return null!=e&&"string"==typeof e.valueOf()},a=function(e){return"number"==typeof e||"object"===r(e)&&null!==e&&"[object Number]"===Object.prototype.toString.call(e)},s=function(e){return null==e||("object"!==r(e)||Array.isArray(e)?"object"===r(e)&&Array.isArray(e)?0===e.length:"string"==typeof e&&0===e.trim().length:0===Object.keys(e).length)}},86536:(e,t,n)=>{"use strict";n.r(t),n.d(t,{uuid:()=>o});var r=n(48422);function o(){return(0,r.v4)()}},27484:function(e){e.exports=function(){"use strict";var e=1e3,t=6e4,n=36e5,r="millisecond",o="second",i="minute",a="hour",s="day",l="week",c="month",u="quarter",d="year",f="date",h="Invalid Date",p=/^(\d{4})[-/]?(\d{1,2})?[-/]?(\d{0,2})[Tt\s]*(\d{1,2})?:?(\d{1,2})?:?(\d{1,2})?[.:]?(\d+)?$/,m=/\[([^\]]+)]|Y{1,4}|M{1,4}|D{1,2}|d{1,4}|H{1,2}|h{1,2}|a|A|m{1,2}|s{1,2}|Z{1,2}|SSS/g,g={name:"en",weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),ordinal:function(e){var t=["th","st","nd","rd"],n=e%100;return"["+e+(t[(n-20)%10]||t[n]||t[0])+"]"}},y=function(e,t,n){var r=String(e);return!r||r.length>=t?e:""+Array(t+1-r.length).join(n)+e},v={s:y,z:function(e){var t=-e.utcOffset(),n=Math.abs(t),r=Math.floor(n/60),o=n%60;return(t<=0?"+":"-")+y(r,2,"0")+":"+y(o,2,"0")},m:function e(t,n){if(t.date()1)return e(a[0])}else{var s=t.name;O[s]=t,o=s}return!r&&o&&(b=o),o||!r&&b},E=function(e,t){if(S(e))return e.clone();var n="object"==typeof t?t:{};return n.date=e,n.args=arguments,new C(n)},T=v;T.l=x,T.i=S,T.w=function(e,t){return E(e,{locale:t.$L,utc:t.$u,x:t.$x,$offset:t.$offset})};var C=function(){function g(e){this.$L=x(e.locale,null,!0),this.parse(e),this.$x=this.$x||e.x||{},this[w]=!0}var y=g.prototype;return y.parse=function(e){this.$d=function(e){var t=e.date,n=e.utc;if(null===t)return new Date(NaN);if(T.u(t))return new Date;if(t instanceof Date)return new Date(t);if("string"==typeof t&&!/Z$/i.test(t)){var r=t.match(p);if(r){var o=r[2]-1||0,i=(r[7]||"0").substring(0,3);return n?new Date(Date.UTC(r[1],o,r[3]||1,r[4]||0,r[5]||0,r[6]||0,i)):new Date(r[1],o,r[3]||1,r[4]||0,r[5]||0,r[6]||0,i)}}return new Date(t)}(e),this.init()},y.init=function(){var e=this.$d;this.$y=e.getFullYear(),this.$M=e.getMonth(),this.$D=e.getDate(),this.$W=e.getDay(),this.$H=e.getHours(),this.$m=e.getMinutes(),this.$s=e.getSeconds(),this.$ms=e.getMilliseconds()},y.$utils=function(){return T},y.isValid=function(){return!(this.$d.toString()===h)},y.isSame=function(e,t){var n=E(e);return this.startOf(t)<=n&&n<=this.endOf(t)},y.isAfter=function(e,t){return E(e)68?1900:2e3)},s=function(e){return function(t){this[e]=+t}},l=[/[+-]\d\d:?(\d\d)?|Z/,function(e){(this.zone||(this.zone={})).offset=function(e){if(!e)return 0;if("Z"===e)return 0;var t=e.match(/([+-]|\d\d)/g),n=60*t[1]+(+t[2]||0);return 0===n?0:"+"===t[0]?-n:n}(e)}],c=function(e){var t=i[e];return t&&(t.indexOf?t:t.s.concat(t.f))},u=function(e,t){var n,r=i.meridiem;if(r){for(var o=1;o<=24;o+=1)if(e.indexOf(r(o,0,t))>-1){n=o>12;break}}else n=e===(t?"pm":"PM");return n},d={A:[o,function(e){this.afternoon=u(e,!1)}],a:[o,function(e){this.afternoon=u(e,!0)}],S:[/\d/,function(e){this.milliseconds=100*+e}],SS:[n,function(e){this.milliseconds=10*+e}],SSS:[/\d{3}/,function(e){this.milliseconds=+e}],s:[r,s("seconds")],ss:[r,s("seconds")],m:[r,s("minutes")],mm:[r,s("minutes")],H:[r,s("hours")],h:[r,s("hours")],HH:[r,s("hours")],hh:[r,s("hours")],D:[r,s("day")],DD:[n,s("day")],Do:[o,function(e){var t=i.ordinal,n=e.match(/\d+/);if(this.day=n[0],t)for(var r=1;r<=31;r+=1)t(r).replace(/\[|\]/g,"")===e&&(this.day=r)}],M:[r,s("month")],MM:[n,s("month")],MMM:[o,function(e){var t=c("months"),n=(c("monthsShort")||t.map((function(e){return e.slice(0,3)}))).indexOf(e)+1;if(n<1)throw new Error;this.month=n%12||n}],MMMM:[o,function(e){var t=c("months").indexOf(e)+1;if(t<1)throw new Error;this.month=t%12||t}],Y:[/[+-]?\d+/,s("year")],YY:[n,function(e){this.year=a(e)}],YYYY:[/\d{4}/,s("year")],Z:l,ZZ:l};function f(n){var r,o;r=n,o=i&&i.formats;for(var a=(n=r.replace(/(\[[^\]]+])|(LTS?|l{1,4}|L{1,4})/g,(function(t,n,r){var i=r&&r.toUpperCase();return n||o[r]||e[r]||o[i].replace(/(\[[^\]]+])|(MMMM|MM|DD|dddd)/g,(function(e,t,n){return t||n.slice(1)}))}))).match(t),s=a.length,l=0;l-1)return new Date(("X"===t?1e3:1)*e);var r=f(t)(e),o=r.year,i=r.month,a=r.day,s=r.hours,l=r.minutes,c=r.seconds,u=r.milliseconds,d=r.zone,h=new Date,p=a||(o||i?1:h.getDate()),m=o||h.getFullYear(),g=0;o&&!i||(g=i>0?i-1:h.getMonth());var y=s||0,v=l||0,b=c||0,O=u||0;return d?new Date(Date.UTC(m,g,p,y,v,b,O+60*d.offset*1e3)):n?new Date(Date.UTC(m,g,p,y,v,b,O)):new Date(m,g,p,y,v,b,O)}catch(e){return new Date("")}}(t,s,r),this.init(),d&&!0!==d&&(this.$L=this.locale(d).$L),u&&t!=this.format(s)&&(this.$d=new Date("")),i={}}else if(s instanceof Array)for(var h=s.length,p=1;p<=h;p+=1){a[1]=s[p-1];var m=n.apply(this,a);if(m.isValid()){this.$d=m.$d,this.$L=m.$L,this.init();break}p===h&&(this.$d=new Date(""))}else o.call(this,e)}}}()},96036:function(e){e.exports=function(){"use strict";return function(e,t,n){var r=t.prototype,o=function(e){return e&&(e.indexOf?e:e.s)},i=function(e,t,n,r,i){var a=e.name?e:e.$locale(),s=o(a[t]),l=o(a[n]),c=s||l.map((function(e){return e.slice(0,r)}));if(!i)return c;var u=a.weekStart;return c.map((function(e,t){return c[(t+(u||0))%7]}))},a=function(){return n.Ls[n.locale()]},s=function(e,t){return e.formats[t]||function(e){return e.replace(/(\[[^\]]+])|(MMMM|MM|DD|dddd)/g,(function(e,t,n){return t||n.slice(1)}))}(e.formats[t.toUpperCase()])},l=function(){var e=this;return{months:function(t){return t?t.format("MMMM"):i(e,"months")},monthsShort:function(t){return t?t.format("MMM"):i(e,"monthsShort","months",3)},firstDayOfWeek:function(){return e.$locale().weekStart||0},weekdays:function(t){return t?t.format("dddd"):i(e,"weekdays")},weekdaysMin:function(t){return t?t.format("dd"):i(e,"weekdaysMin","weekdays",2)},weekdaysShort:function(t){return t?t.format("ddd"):i(e,"weekdaysShort","weekdays",3)},longDateFormat:function(t){return s(e.$locale(),t)},meridiem:this.$locale().meridiem,ordinal:this.$locale().ordinal}};r.localeData=function(){return l.bind(this)()},n.localeData=function(){var e=a();return{firstDayOfWeek:function(){return e.weekStart||0},weekdays:function(){return n.weekdays()},weekdaysShort:function(){return n.weekdaysShort()},weekdaysMin:function(){return n.weekdaysMin()},months:function(){return n.months()},monthsShort:function(){return n.monthsShort()},longDateFormat:function(t){return s(e,t)},meridiem:e.meridiem,ordinal:e.ordinal}},n.months=function(){return i(a(),"months")},n.monthsShort=function(){return i(a(),"monthsShort","months",3)},n.weekdays=function(e){return i(a(),"weekdays",null,null,e)},n.weekdaysShort=function(e){return i(a(),"weekdaysShort","weekdays",3,e)},n.weekdaysMin=function(e){return i(a(),"weekdaysMin","weekdays",2,e)}}}()},29387:function(e){e.exports=function(){"use strict";var e={year:0,month:1,day:2,hour:3,minute:4,second:5},t={};return function(n,r,o){var i,a=function(e,n,r){void 0===r&&(r={});var o=new Date(e),i=function(e,n){void 0===n&&(n={});var r=n.timeZoneName||"short",o=e+"|"+r,i=t[o];return i||(i=new Intl.DateTimeFormat("en-US",{hour12:!1,timeZone:e,year:"numeric",month:"2-digit",day:"2-digit",hour:"2-digit",minute:"2-digit",second:"2-digit",timeZoneName:r}),t[o]=i),i}(n,r);return i.formatToParts(o)},s=function(t,n){for(var r=a(t,n),i=[],s=0;s=0&&(i[d]=parseInt(u,10))}var f=i[3],h=24===f?0:f,p=i[0]+"-"+i[1]+"-"+i[2]+" "+h+":"+i[4]+":"+i[5]+":000",m=+t;return(o.utc(p).valueOf()-(m-=m%1e3))/6e4},l=r.prototype;l.tz=function(e,t){void 0===e&&(e=i);var n=this.utcOffset(),r=this.toDate(),a=r.toLocaleString("en-US",{timeZone:e}),s=Math.round((r-new Date(a))/1e3/60),l=o(a,{locale:this.$L}).$set("millisecond",this.$ms).utcOffset(15*-Math.round(r.getTimezoneOffset()/15)-s,!0);if(t){var c=l.utcOffset();l=l.add(n-c,"minute")}return l.$x.$timezone=e,l},l.offsetName=function(e){var t=this.$x.$timezone||o.tz.guess(),n=a(this.valueOf(),t,{timeZoneName:e}).find((function(e){return"timezonename"===e.type.toLowerCase()}));return n&&n.value};var c=l.startOf;l.startOf=function(e,t){if(!this.$x||!this.$x.$timezone)return c.call(this,e,t);var n=o(this.format("YYYY-MM-DD HH:mm:ss:SSS"),{locale:this.$L});return c.call(n,e,t).tz(this.$x.$timezone,!0)},o.tz=function(e,t,n){var r=n&&t,a=n||t||i,l=s(+o(),a);if("string"!=typeof e)return o(e).tz(a);var c=function(e,t,n){var r=e-60*t*1e3,o=s(r,n);if(t===o)return[r,t];var i=s(r-=60*(o-t)*1e3,n);return o===i?[r,o]:[e-60*Math.min(o,i)*1e3,Math.max(o,i)]}(o.utc(e,r).valueOf(),l,a),u=c[0],d=c[1],f=o(u).utcOffset(d);return f.$x.$timezone=a,f},o.tz.guess=function(){return Intl.DateTimeFormat().resolvedOptions().timeZone},o.tz.setDefault=function(e){i=e}}}()},70178:function(e){e.exports=function(){"use strict";var e="minute",t=/[+-]\d\d(?::?\d\d)?/g,n=/([+-]|\d\d)/g;return function(r,o,i){var a=o.prototype;i.utc=function(e){return new o({date:e,utc:!0,args:arguments})},a.utc=function(t){var n=i(this.toDate(),{locale:this.$L,utc:!0});return t?n.add(this.utcOffset(),e):n},a.local=function(){return i(this.toDate(),{locale:this.$L,utc:!1})};var s=a.parse;a.parse=function(e){e.utc&&(this.$u=!0),this.$utils().u(e.$offset)||(this.$offset=e.$offset),s.call(this,e)};var l=a.init;a.init=function(){if(this.$u){var e=this.$d;this.$y=e.getUTCFullYear(),this.$M=e.getUTCMonth(),this.$D=e.getUTCDate(),this.$W=e.getUTCDay(),this.$H=e.getUTCHours(),this.$m=e.getUTCMinutes(),this.$s=e.getUTCSeconds(),this.$ms=e.getUTCMilliseconds()}else l.call(this)};var c=a.utcOffset;a.utcOffset=function(r,o){var i=this.$utils().u;if(i(r))return this.$u?0:i(this.$offset)?c.call(this):this.$offset;if("string"==typeof r&&(r=function(e){void 0===e&&(e="");var r=e.match(t);if(!r)return null;var o=(""+r[0]).match(n)||["-",0,0],i=o[0],a=60*+o[1]+ +o[2];return 0===a?0:"+"===i?a:-a}(r),null===r))return this;var a=Math.abs(r)<=16?60*r:r,s=this;if(o)return s.$offset=a,s.$u=0===r,s;if(0!==r){var l=this.$u?this.toDate().getTimezoneOffset():-1*this.utcOffset();(s=this.local().add(a+l,e)).$offset=a,s.$x.$localOffset=l}else s=this.utc();return s};var u=a.format;a.format=function(e){var t=e||(this.$u?"YYYY-MM-DDTHH:mm:ss[Z]":"");return u.call(this,t)},a.valueOf=function(){var e=this.$utils().u(this.$offset)?0:this.$offset+(this.$x.$localOffset||this.$d.getTimezoneOffset());return this.$d.valueOf()-6e4*e},a.isUTC=function(){return!!this.$u},a.toISOString=function(){return this.toDate().toISOString()},a.toString=function(){return this.toDate().toUTCString()};var d=a.toDate;a.toDate=function(e){return"s"===e&&this.$offset?i(this.format("YYYY-MM-DD HH:mm:ss:SSS")).toDate():d.call(this)};var f=a.diff;a.diff=function(e,t,n){if(e&&this.$u===e.$u)return f.call(this,e,t,n);var r=this.local(),o=i(e).local();return f.call(r,o,t,n)}}}()},55183:function(e){e.exports=function(){"use strict";var e="week",t="year";return function(n,r,o){var i=r.prototype;i.week=function(n){if(void 0===n&&(n=null),null!==n)return this.add(7*(n-this.week()),"day");var r=this.$locale().yearStart||1;if(11===this.month()&&this.date()>25){var i=o(this).startOf(t).add(1,t).date(r),a=o(this).endOf(e);if(i.isBefore(a))return 1}var s=o(this).startOf(t).date(r).startOf(e).subtract(1,"millisecond"),l=this.diff(s,e,!0);return l<0?o(this).startOf("week").week():Math.ceil(l)},i.weeks=function(e){return void 0===e&&(e=null),this.week(e)}}}()},172:function(e){e.exports=function(){"use strict";return function(e,t){t.prototype.weekYear=function(){var e=this.month(),t=this.week(),n=this.year();return 1===t&&11===e?n+1:0===e&&t>=52?n-1:n}}}()},6833:function(e){e.exports=function(){"use strict";return function(e,t){t.prototype.weekday=function(e){var t=this.$locale().weekStart||0,n=this.$W,r=(n1?n-1:0),o=1;o2&&void 0!==arguments[2]?arguments[2]:h;t&&t(e,null);let i=r.length;for(;i--;){let t=r[i];if("string"==typeof t){const e=o(t);e!==t&&(n(r)||(r[i]=e),t=e)}e[t]=!0}return e}function T(e){for(let t=0;t/gm),Q=a(/\${[\w\W]*}/gm),z=a(/^data-[\-\w.\u00B7-\uFFFF]/),V=a(/^aria-[\-\w]+$/),U=a(/^(?:(?:(?:f|ht)tps?|mailto|tel|callto|sms|cid|xmpp):|[^a-z]|[a-z+.\-]+(?:[^a-z+.\-:]|$))/i),W=a(/^(?:\w+script|data):/i),G=a(/[\u0000-\u0020\u00A0\u1680\u180E\u2000-\u2029\u205F\u3000]/g),X=a(/^html$/i),q=a(/^[a-z][.\w]*(-[.\w]+)+$/i);var H=Object.freeze({__proto__:null,MUSTACHE_EXPR:B,ERB_EXPR:F,TMPLIT_EXPR:Q,DATA_ATTR:z,ARIA_ATTR:V,IS_ALLOWED_URI:U,IS_SCRIPT_OR_DATA:W,ATTR_WHITESPACE:G,DOCTYPE_NAME:X,CUSTOM_ELEMENT:q});const Z={element:1,attribute:2,text:3,cdataSection:4,entityReference:5,entityNode:6,progressingInstruction:7,comment:8,document:9,documentType:10,documentFragment:11,notation:12},Y=function(){return"undefined"==typeof window?null:window},K=function(e,t){if("object"!=typeof e||"function"!=typeof e.createPolicy)return null;let n=null;const r="data-tt-policy-suffix";t&&t.hasAttribute(r)&&(n=t.getAttribute(r));const o="dompurify"+(n?"#"+n:"");try{return e.createPolicy(o,{createHTML:e=>e,createScriptURL:e=>e})}catch(e){return console.warn("TrustedTypes policy "+o+" could not be created."),null}};function J(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:Y();const n=e=>J(e);if(n.version="3.1.7",n.removed=[],!t||!t.document||t.document.nodeType!==Z.document)return n.isSupported=!1,n;let{document:r}=t;const o=r,a=o.currentScript,{DocumentFragment:l,HTMLTemplateElement:c,Node:S,Element:x,NodeFilter:T,NamedNodeMap:B=t.NamedNodeMap||t.MozNamedAttrMap,HTMLFormElement:F,DOMParser:Q,trustedTypes:z}=t,V=x.prototype,W=P(V,"cloneNode"),G=P(V,"remove"),q=P(V,"nextSibling"),ee=P(V,"childNodes"),te=P(V,"parentNode");if("function"==typeof c){const e=r.createElement("template");e.content&&e.content.ownerDocument&&(r=e.content.ownerDocument)}let ne,re="";const{implementation:oe,createNodeIterator:ie,createDocumentFragment:ae,getElementsByTagName:se}=r,{importNode:le}=o;let ce={};n.isSupported="function"==typeof e&&"function"==typeof te&&oe&&void 0!==oe.createHTMLDocument;const{MUSTACHE_EXPR:ue,ERB_EXPR:de,TMPLIT_EXPR:fe,DATA_ATTR:he,ARIA_ATTR:pe,IS_SCRIPT_OR_DATA:me,ATTR_WHITESPACE:ge,CUSTOM_ELEMENT:ye}=H;let{IS_ALLOWED_URI:ve}=H,be=null;const Oe=E({},[..._,...k,...j,...R,...L]);let we=null;const Se=E({},[...I,...M,...N,...$]);let xe=Object.seal(s(null,{tagNameCheck:{writable:!0,configurable:!1,enumerable:!0,value:null},attributeNameCheck:{writable:!0,configurable:!1,enumerable:!0,value:null},allowCustomizedBuiltInElements:{writable:!0,configurable:!1,enumerable:!0,value:!1}})),Ee=null,Te=null,Ce=!0,Pe=!0,_e=!1,ke=!0,je=!1,Ae=!0,Re=!1,De=!1,Le=!1,Ie=!1,Me=!1,Ne=!1,$e=!0,Be=!1;const Fe="user-content-";let Qe=!0,ze=!1,Ve={},Ue=null;const We=E({},["annotation-xml","audio","colgroup","desc","foreignobject","head","iframe","math","mi","mn","mo","ms","mtext","noembed","noframes","noscript","plaintext","script","style","svg","template","thead","title","video","xmp"]);let Ge=null;const Xe=E({},["audio","video","img","source","image","track"]);let qe=null;const He=E({},["alt","class","for","id","label","name","pattern","placeholder","role","summary","title","value","style","xmlns"]),Ze="http://www.w3.org/1998/Math/MathML",Ye="http://www.w3.org/2000/svg",Ke="http://www.w3.org/1999/xhtml";let Je=Ke,et=!1,tt=null;const nt=E({},[Ze,Ye,Ke],p);let rt=null;const ot=["application/xhtml+xml","text/html"],it="text/html";let at=null,st=null;const lt=r.createElement("form"),ct=function(e){return e instanceof RegExp||e instanceof Function},ut=function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};if(!st||st!==e){if(e&&"object"==typeof e||(e={}),e=C(e),rt=-1===ot.indexOf(e.PARSER_MEDIA_TYPE)?it:e.PARSER_MEDIA_TYPE,at="application/xhtml+xml"===rt?p:h,be=b(e,"ALLOWED_TAGS")?E({},e.ALLOWED_TAGS,at):Oe,we=b(e,"ALLOWED_ATTR")?E({},e.ALLOWED_ATTR,at):Se,tt=b(e,"ALLOWED_NAMESPACES")?E({},e.ALLOWED_NAMESPACES,p):nt,qe=b(e,"ADD_URI_SAFE_ATTR")?E(C(He),e.ADD_URI_SAFE_ATTR,at):He,Ge=b(e,"ADD_DATA_URI_TAGS")?E(C(Xe),e.ADD_DATA_URI_TAGS,at):Xe,Ue=b(e,"FORBID_CONTENTS")?E({},e.FORBID_CONTENTS,at):We,Ee=b(e,"FORBID_TAGS")?E({},e.FORBID_TAGS,at):{},Te=b(e,"FORBID_ATTR")?E({},e.FORBID_ATTR,at):{},Ve=!!b(e,"USE_PROFILES")&&e.USE_PROFILES,Ce=!1!==e.ALLOW_ARIA_ATTR,Pe=!1!==e.ALLOW_DATA_ATTR,_e=e.ALLOW_UNKNOWN_PROTOCOLS||!1,ke=!1!==e.ALLOW_SELF_CLOSE_IN_ATTR,je=e.SAFE_FOR_TEMPLATES||!1,Ae=!1!==e.SAFE_FOR_XML,Re=e.WHOLE_DOCUMENT||!1,Ie=e.RETURN_DOM||!1,Me=e.RETURN_DOM_FRAGMENT||!1,Ne=e.RETURN_TRUSTED_TYPE||!1,Le=e.FORCE_BODY||!1,$e=!1!==e.SANITIZE_DOM,Be=e.SANITIZE_NAMED_PROPS||!1,Qe=!1!==e.KEEP_CONTENT,ze=e.IN_PLACE||!1,ve=e.ALLOWED_URI_REGEXP||U,Je=e.NAMESPACE||Ke,xe=e.CUSTOM_ELEMENT_HANDLING||{},e.CUSTOM_ELEMENT_HANDLING&&ct(e.CUSTOM_ELEMENT_HANDLING.tagNameCheck)&&(xe.tagNameCheck=e.CUSTOM_ELEMENT_HANDLING.tagNameCheck),e.CUSTOM_ELEMENT_HANDLING&&ct(e.CUSTOM_ELEMENT_HANDLING.attributeNameCheck)&&(xe.attributeNameCheck=e.CUSTOM_ELEMENT_HANDLING.attributeNameCheck),e.CUSTOM_ELEMENT_HANDLING&&"boolean"==typeof e.CUSTOM_ELEMENT_HANDLING.allowCustomizedBuiltInElements&&(xe.allowCustomizedBuiltInElements=e.CUSTOM_ELEMENT_HANDLING.allowCustomizedBuiltInElements),je&&(Pe=!1),Me&&(Ie=!0),Ve&&(be=E({},L),we=[],!0===Ve.html&&(E(be,_),E(we,I)),!0===Ve.svg&&(E(be,k),E(we,M),E(we,$)),!0===Ve.svgFilters&&(E(be,j),E(we,M),E(we,$)),!0===Ve.mathMl&&(E(be,R),E(we,N),E(we,$))),e.ADD_TAGS&&(be===Oe&&(be=C(be)),E(be,e.ADD_TAGS,at)),e.ADD_ATTR&&(we===Se&&(we=C(we)),E(we,e.ADD_ATTR,at)),e.ADD_URI_SAFE_ATTR&&E(qe,e.ADD_URI_SAFE_ATTR,at),e.FORBID_CONTENTS&&(Ue===We&&(Ue=C(Ue)),E(Ue,e.FORBID_CONTENTS,at)),Qe&&(be["#text"]=!0),Re&&E(be,["html","head","body"]),be.table&&(E(be,["tbody"]),delete Ee.tbody),e.TRUSTED_TYPES_POLICY){if("function"!=typeof e.TRUSTED_TYPES_POLICY.createHTML)throw w('TRUSTED_TYPES_POLICY configuration option must provide a "createHTML" hook.');if("function"!=typeof e.TRUSTED_TYPES_POLICY.createScriptURL)throw w('TRUSTED_TYPES_POLICY configuration option must provide a "createScriptURL" hook.');ne=e.TRUSTED_TYPES_POLICY,re=ne.createHTML("")}else void 0===ne&&(ne=K(z,a)),null!==ne&&"string"==typeof re&&(re=ne.createHTML(""));i&&i(e),st=e}},dt=E({},["mi","mo","mn","ms","mtext"]),ft=E({},["annotation-xml"]),ht=E({},["title","style","font","a","script"]),pt=E({},[...k,...j,...A]),mt=E({},[...R,...D]),gt=function(e){let t=te(e);t&&t.tagName||(t={namespaceURI:Je,tagName:"template"});const n=h(e.tagName),r=h(t.tagName);return!!tt[e.namespaceURI]&&(e.namespaceURI===Ye?t.namespaceURI===Ke?"svg"===n:t.namespaceURI===Ze?"svg"===n&&("annotation-xml"===r||dt[r]):Boolean(pt[n]):e.namespaceURI===Ze?t.namespaceURI===Ke?"math"===n:t.namespaceURI===Ye?"math"===n&&ft[r]:Boolean(mt[n]):e.namespaceURI===Ke?!(t.namespaceURI===Ye&&!ft[r])&&!(t.namespaceURI===Ze&&!dt[r])&&!mt[n]&&(ht[n]||!pt[n]):!("application/xhtml+xml"!==rt||!tt[e.namespaceURI]))},yt=function(e){f(n.removed,{element:e});try{te(e).removeChild(e)}catch(t){G(e)}},vt=function(e,t){try{f(n.removed,{attribute:t.getAttributeNode(e),from:t})}catch(e){f(n.removed,{attribute:null,from:t})}if(t.removeAttribute(e),"is"===e&&!we[e])if(Ie||Me)try{yt(t)}catch(e){}else try{t.setAttribute(e,"")}catch(e){}},bt=function(e){let t=null,n=null;if(Le)e=""+e;else{const t=m(e,/^[\r\n\t ]+/);n=t&&t[0]}"application/xhtml+xml"===rt&&Je===Ke&&(e=''+e+"");const o=ne?ne.createHTML(e):e;if(Je===Ke)try{t=(new Q).parseFromString(o,rt)}catch(e){}if(!t||!t.documentElement){t=oe.createDocument(Je,"template",null);try{t.documentElement.innerHTML=et?re:o}catch(e){}}const i=t.body||t.documentElement;return e&&n&&i.insertBefore(r.createTextNode(n),i.childNodes[0]||null),Je===Ke?se.call(t,Re?"html":"body")[0]:Re?t.documentElement:i},Ot=function(e){return ie.call(e.ownerDocument||e,e,T.SHOW_ELEMENT|T.SHOW_COMMENT|T.SHOW_TEXT|T.SHOW_PROCESSING_INSTRUCTION|T.SHOW_CDATA_SECTION,null)},wt=function(e){return e instanceof F&&("string"!=typeof e.nodeName||"string"!=typeof e.textContent||"function"!=typeof e.removeChild||!(e.attributes instanceof B)||"function"!=typeof e.removeAttribute||"function"!=typeof e.setAttribute||"string"!=typeof e.namespaceURI||"function"!=typeof e.insertBefore||"function"!=typeof e.hasChildNodes)},St=function(e){return"function"==typeof S&&e instanceof S},xt=function(e,t,r){ce[e]&&u(ce[e],(e=>{e.call(n,t,r,st)}))},Et=function(e){let t=null;if(xt("beforeSanitizeElements",e,null),wt(e))return yt(e),!0;const r=at(e.nodeName);if(xt("uponSanitizeElement",e,{tagName:r,allowedTags:be}),e.hasChildNodes()&&!St(e.firstElementChild)&&O(/<[/\w]/g,e.innerHTML)&&O(/<[/\w]/g,e.textContent))return yt(e),!0;if(e.nodeType===Z.progressingInstruction)return yt(e),!0;if(Ae&&e.nodeType===Z.comment&&O(/<[/\w]/g,e.data))return yt(e),!0;if(!be[r]||Ee[r]){if(!Ee[r]&&Ct(r)){if(xe.tagNameCheck instanceof RegExp&&O(xe.tagNameCheck,r))return!1;if(xe.tagNameCheck instanceof Function&&xe.tagNameCheck(r))return!1}if(Qe&&!Ue[r]){const t=te(e)||e.parentNode,n=ee(e)||e.childNodes;if(n&&t)for(let r=n.length-1;r>=0;--r){const o=W(n[r],!0);o.__removalCount=(e.__removalCount||0)+1,t.insertBefore(o,q(e))}}return yt(e),!0}return e instanceof x&&!gt(e)?(yt(e),!0):"noscript"!==r&&"noembed"!==r&&"noframes"!==r||!O(/<\/no(script|embed|frames)/i,e.innerHTML)?(je&&e.nodeType===Z.text&&(t=e.textContent,u([ue,de,fe],(e=>{t=g(t,e," ")})),e.textContent!==t&&(f(n.removed,{element:e.cloneNode()}),e.textContent=t)),xt("afterSanitizeElements",e,null),!1):(yt(e),!0)},Tt=function(e,t,n){if($e&&("id"===t||"name"===t)&&(n in r||n in lt))return!1;if(Pe&&!Te[t]&&O(he,t));else if(Ce&&O(pe,t));else if(!we[t]||Te[t]){if(!(Ct(e)&&(xe.tagNameCheck instanceof RegExp&&O(xe.tagNameCheck,e)||xe.tagNameCheck instanceof Function&&xe.tagNameCheck(e))&&(xe.attributeNameCheck instanceof RegExp&&O(xe.attributeNameCheck,t)||xe.attributeNameCheck instanceof Function&&xe.attributeNameCheck(t))||"is"===t&&xe.allowCustomizedBuiltInElements&&(xe.tagNameCheck instanceof RegExp&&O(xe.tagNameCheck,n)||xe.tagNameCheck instanceof Function&&xe.tagNameCheck(n))))return!1}else if(qe[t]);else if(O(ve,g(n,ge,"")));else if("src"!==t&&"xlink:href"!==t&&"href"!==t||"script"===e||0!==y(n,"data:")||!Ge[e])if(_e&&!O(me,g(n,ge,"")));else if(n)return!1;return!0},Ct=function(e){return"annotation-xml"!==e&&m(e,ye)},Pt=function(e){xt("beforeSanitizeAttributes",e,null);const{attributes:t}=e;if(!t)return;const r={attrName:"",attrValue:"",keepAttr:!0,allowedAttributes:we};let o=t.length;for(;o--;){const i=t[o],{name:a,namespaceURI:s,value:l}=i,c=at(a);let f="value"===a?l:v(l);if(r.attrName=c,r.attrValue=f,r.keepAttr=!0,r.forceKeepAttr=void 0,xt("uponSanitizeAttribute",e,r),f=r.attrValue,r.forceKeepAttr)continue;if(vt(a,e),!r.keepAttr)continue;if(!ke&&O(/\/>/i,f)){vt(a,e);continue}je&&u([ue,de,fe],(e=>{f=g(f,e," ")}));const h=at(e.nodeName);if(Tt(h,c,f))if(!Be||"id"!==c&&"name"!==c||(vt(a,e),f=Fe+f),Ae&&O(/((--!?|])>)|<\/(style|title)/i,f))vt(a,e);else{if(ne&&"object"==typeof z&&"function"==typeof z.getAttributeType)if(s);else switch(z.getAttributeType(h,c)){case"TrustedHTML":f=ne.createHTML(f);break;case"TrustedScriptURL":f=ne.createScriptURL(f)}try{s?e.setAttributeNS(s,a,f):e.setAttribute(a,f),wt(e)?yt(e):d(n.removed)}catch(e){}}}xt("afterSanitizeAttributes",e,null)},_t=function e(t){let n=null;const r=Ot(t);for(xt("beforeSanitizeShadowDOM",t,null);n=r.nextNode();)xt("uponSanitizeShadowNode",n,null),Et(n)||(n.content instanceof l&&e(n.content),Pt(n));xt("afterSanitizeShadowDOM",t,null)};return n.sanitize=function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},r=null,i=null,a=null,s=null;if(et=!e,et&&(e="\x3c!--\x3e"),"string"!=typeof e&&!St(e)){if("function"!=typeof e.toString)throw w("toString is not a function");if("string"!=typeof(e=e.toString()))throw w("dirty is not a string, aborting")}if(!n.isSupported)return e;if(De||ut(t),n.removed=[],"string"==typeof e&&(ze=!1),ze){if(e.nodeName){const t=at(e.nodeName);if(!be[t]||Ee[t])throw w("root node is forbidden and cannot be sanitized in-place")}}else if(e instanceof S)r=bt("\x3c!----\x3e"),i=r.ownerDocument.importNode(e,!0),i.nodeType===Z.element&&"BODY"===i.nodeName||"HTML"===i.nodeName?r=i:r.appendChild(i);else{if(!Ie&&!je&&!Re&&-1===e.indexOf("<"))return ne&&Ne?ne.createHTML(e):e;if(r=bt(e),!r)return Ie?null:Ne?re:""}r&&Le&&yt(r.firstChild);const c=Ot(ze?e:r);for(;a=c.nextNode();)Et(a)||(a.content instanceof l&&_t(a.content),Pt(a));if(ze)return e;if(Ie){if(Me)for(s=ae.call(r.ownerDocument);r.firstChild;)s.appendChild(r.firstChild);else s=r;return(we.shadowroot||we.shadowrootmode)&&(s=le.call(o,s,!0)),s}let d=Re?r.outerHTML:r.innerHTML;return Re&&be["!doctype"]&&r.ownerDocument&&r.ownerDocument.doctype&&r.ownerDocument.doctype.name&&O(X,r.ownerDocument.doctype.name)&&(d="\n"+d),je&&u([ue,de,fe],(e=>{d=g(d,e," ")})),ne&&Ne?ne.createHTML(d):d},n.setConfig=function(){ut(arguments.length>0&&void 0!==arguments[0]?arguments[0]:{}),De=!0},n.clearConfig=function(){st=null,De=!1},n.isValidAttribute=function(e,t,n){st||ut({});const r=at(e),o=at(t);return Tt(r,o,n)},n.addHook=function(e,t){"function"==typeof t&&(ce[e]=ce[e]||[],f(ce[e],t))},n.removeHook=function(e){if(ce[e])return d(ce[e])},n.removeHooks=function(e){ce[e]&&(ce[e]=[])},n.removeAllHooks=function(){ce={}},n}return J()}()},17029:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Attribute=void 0;class n{constructor(e,t,n,r){this.name=e,this.modelName=t,this.defaultValue=n,this.alwaysWriteJson=r,this.required=!1,this.fixed=!1,this.type="any"}setType(e){return this.type=e,this}setRequired(){return this.required=!0,this}setFixed(){return this.fixed=!0,this}}t.Attribute=n,n.NUMBER="number",n.STRING="string",n.BOOLEAN="boolean"},58267:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.AttributeDefinitions=void 0;const r=n(17029);t.AttributeDefinitions=class{constructor(){this.attributes=[],this.nameToAttribute={}}addWithAll(e,t,n,o){const i=new r.Attribute(e,t,n,o);return this.attributes.push(i),this.nameToAttribute[e]=i,i}addInherited(e,t){return this.addWithAll(e,t,void 0,!1)}add(e,t,n){return this.addWithAll(e,void 0,t,n)}getAttributes(){return this.attributes}getModelName(e){const t=this.nameToAttribute[e];if(void 0!==t)return t.modelName}toJson(e,t){for(const n of this.attributes){const r=t[n.name];(n.alwaysWriteJson||r!==n.defaultValue)&&(e[n.name]=r)}}fromJson(e,t){for(const n of this.attributes){const r=e[n.name];t[n.name]=void 0===r?n.defaultValue:r}}update(e,t){for(const n of this.attributes)if(e.hasOwnProperty(n.name)){const r=e[n.name];void 0===r?delete t[n.name]:t[n.name]=r}}setDefaults(e){for(const t of this.attributes)e[t.name]=t.defaultValue}toTypescriptInterface(e,t){const n=[],r=this.attributes.sort(((e,t)=>e.name.localeCompare(t.name)));n.push("export interface I"+e+"Attributes {");for(let e=0;e0?" // "+e:""))}}return n.push("}"),n.join("\n")}}},40232:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.DockLocation=void 0;const r=n(13380),o=n(10807);class i{static getByName(e){return i.values[e]}static getLocation(e,t,n){if(t=(t-e.x)/e.width,n=(n-e.y)/e.height,t>=.25&&t<.75&&n>=.25&&n<.75)return i.CENTER;const r=n>=1-t;return n>=t?r?i.BOTTOM:i.LEFT:r?i.RIGHT:i.TOP}constructor(e,t,n){this._name=e,this._orientation=t,this._indexPlus=n,i.values[this._name]=this}getName(){return this._name}getOrientation(){return this._orientation}getDockRect(e){return this===i.TOP?new o.Rect(e.x,e.y,e.width,e.height/2):this===i.BOTTOM?new o.Rect(e.x,e.getBottom()-e.height/2,e.width,e.height/2):this===i.LEFT?new o.Rect(e.x,e.y,e.width/2,e.height):this===i.RIGHT?new o.Rect(e.getRight()-e.width/2,e.y,e.width/2,e.height):e.clone()}split(e,t){if(this===i.TOP){return{start:new o.Rect(e.x,e.y,e.width,t),end:new o.Rect(e.x,e.y+t,e.width,e.height-t)}}if(this===i.LEFT){return{start:new o.Rect(e.x,e.y,t,e.height),end:new o.Rect(e.x+t,e.y,e.width-t,e.height)}}if(this===i.RIGHT){return{start:new o.Rect(e.getRight()-t,e.y,t,e.height),end:new o.Rect(e.x,e.y,e.width-t,e.height)}}return{start:new o.Rect(e.x,e.getBottom()-t,e.width,t),end:new o.Rect(e.x,e.y,e.width,e.height-t)}}reflect(){return this===i.TOP?i.BOTTOM:this===i.LEFT?i.RIGHT:this===i.RIGHT?i.LEFT:i.TOP}toString(){return"(DockLocation: name="+this._name+", orientation="+this._orientation+")"}}t.DockLocation=i,i.values={},i.TOP=new i("top",r.Orientation.VERT,0),i.BOTTOM=new i("bottom",r.Orientation.VERT,1),i.LEFT=new i("left",r.Orientation.HORZ,0),i.RIGHT=new i("right",r.Orientation.HORZ,1),i.CENTER=new i("center",r.Orientation.VERT,0)},30268:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.DragDrop=void 0;const r=n(10807),o=!("undefined"==typeof window||!window.document||!window.document.createElement);class i{constructor(){this._manualGlassManagement=!1,this._startX=0,this._startY=0,this._dragDepth=0,this._glassShowing=!1,this._dragging=!1,this._active=!1,o&&(this._glass=document.createElement("div"),this._glass.style.zIndex="998",this._glass.style.backgroundColor="transparent",this._glass.style.outline="none"),this._defaultGlassCursor="default",this._onMouseMove=this._onMouseMove.bind(this),this._onMouseUp=this._onMouseUp.bind(this),this._onKeyPress=this._onKeyPress.bind(this),this._onDragCancel=this._onDragCancel.bind(this),this._onDragEnter=this._onDragEnter.bind(this),this._onDragLeave=this._onDragLeave.bind(this),this.resizeGlass=this.resizeGlass.bind(this),this._lastClick=0,this._clickX=0,this._clickY=0}addGlass(e){var t;this._glassShowing?this._manualGlassManagement=!0:(this._document||(this._document=window.document),this._rootElement||(this._rootElement=this._document.body),this.resizeGlass(),null===(t=this._document.defaultView)||void 0===t||t.addEventListener("resize",this.resizeGlass),this._document.body.appendChild(this._glass),this._glass.tabIndex=-1,this._glass.focus(),this._glass.addEventListener("keydown",this._onKeyPress),this._glass.addEventListener("dragenter",this._onDragEnter,{passive:!1}),this._glass.addEventListener("dragover",this._onMouseMove,{passive:!1}),this._glass.addEventListener("dragleave",this._onDragLeave,{passive:!1}),this._glassShowing=!0,this._fDragCancel=e,this._manualGlassManagement=!1)}resizeGlass(){r.Rect.fromElement(this._rootElement).positionElement(this._glass,"fixed")}hideGlass(){var e;this._glassShowing&&(this._document.body.removeChild(this._glass),null===(e=this._document.defaultView)||void 0===e||e.removeEventListener("resize",this.resizeGlass),this._glassShowing=!1,this._document=void 0,this._rootElement=void 0,this.setGlassCursorOverride(void 0))}_updateGlassCursor(){var e;this._glass.style.cursor=null!==(e=this._glassCursorOverride)&&void 0!==e?e:this._defaultGlassCursor}_setDefaultGlassCursor(e){this._defaultGlassCursor=e,this._updateGlassCursor()}setGlassCursorOverride(e){this._glassCursorOverride=e,this._updateGlassCursor()}startDrag(e,t,n,r,o,i,a,s,l){if(e&&this._lastEvent&&this._lastEvent.type.startsWith("touch")&&e.type.startsWith("mouse")&&e.timeStamp-this._lastEvent.timeStamp<500)return;if(this._dragging)return;this._lastEvent=e,this._document=s||window.document,this._rootElement=l||this._document.body;const c=this._getLocationEvent(e);this.addGlass(o),e?(this._startX=c.clientX,this._startY=c.clientY,window.matchMedia&&!window.matchMedia("(pointer: fine)").matches||this._setDefaultGlassCursor(getComputedStyle(e.target).cursor),this._stopPropagation(e),this._preventDefault(e)):(this._startX=0,this._startY=0,this._setDefaultGlassCursor("default")),this._dragging=!1,this._fDragStart=t,this._fDragMove=n,this._fDragEnd=r,this._fDragCancel=o,this._fClick=i,this._fDblClick=a,this._active=!0,"dragenter"===(null==e?void 0:e.type)?(this._dragDepth=1,this._rootElement.addEventListener("dragenter",this._onDragEnter,{passive:!1}),this._rootElement.addEventListener("dragover",this._onMouseMove,{passive:!1}),this._rootElement.addEventListener("dragleave",this._onDragLeave,{passive:!1}),this._document.addEventListener("dragend",this._onDragCancel,{passive:!1}),this._document.addEventListener("drop",this._onMouseUp,{passive:!1})):(this._document.addEventListener("mouseup",this._onMouseUp,{passive:!1}),this._document.addEventListener("mousemove",this._onMouseMove,{passive:!1}),this._document.addEventListener("touchend",this._onMouseUp,{passive:!1}),this._document.addEventListener("touchmove",this._onMouseMove,{passive:!1}))}isDragging(){return this._dragging}isActive(){return this._active}toString(){return"(DragDrop: startX="+this._startX+", startY="+this._startY+", dragging="+this._dragging+")"}_onKeyPress(e){"Escape"===e.code&&this._onDragCancel()}_onDragCancel(){this._rootElement.removeEventListener("dragenter",this._onDragEnter),this._rootElement.removeEventListener("dragover",this._onMouseMove),this._rootElement.removeEventListener("dragleave",this._onDragLeave),this._document.removeEventListener("dragend",this._onDragCancel),this._document.removeEventListener("drop",this._onMouseUp),this._document.removeEventListener("mousemove",this._onMouseMove),this._document.removeEventListener("mouseup",this._onMouseUp),this._document.removeEventListener("touchend",this._onMouseUp),this._document.removeEventListener("touchmove",this._onMouseMove),this.hideGlass(),void 0!==this._fDragCancel&&this._fDragCancel(this._dragging),this._dragging=!1,this._active=!1}_getLocationEvent(e){let t=e;return e&&e.touches&&(t=e.touches[0]),t}_getLocationEventEnd(e){let t=e;return e.changedTouches&&(t=e.changedTouches[0]),t}_stopPropagation(e){e.stopPropagation&&e.stopPropagation()}_preventDefault(e){return e.preventDefault&&e.cancelable&&e.preventDefault(),e}_onMouseMove(e){this._lastEvent=e;const t=this._getLocationEvent(e);return this._stopPropagation(e),this._preventDefault(e),!this._dragging&&(Math.abs(this._startX-t.clientX)>5||Math.abs(this._startY-t.clientY)>5)&&(this._dragging=!0,this._fDragStart&&(this._setDefaultGlassCursor("move"),this._dragging=this._fDragStart({clientX:this._startX,clientY:this._startY}))),this._dragging&&this._fDragMove&&this._fDragMove(t),!1}_onMouseUp(e){this._lastEvent=e;const t=this._getLocationEventEnd(e);if(this._stopPropagation(e),this._preventDefault(e),this._active=!1,this._rootElement.removeEventListener("dragenter",this._onDragEnter),this._rootElement.removeEventListener("dragover",this._onMouseMove),this._rootElement.removeEventListener("dragleave",this._onDragLeave),this._document.removeEventListener("dragend",this._onDragCancel),this._document.removeEventListener("drop",this._onMouseUp),this._document.removeEventListener("mousemove",this._onMouseMove),this._document.removeEventListener("mouseup",this._onMouseUp),this._document.removeEventListener("touchend",this._onMouseUp),this._document.removeEventListener("touchmove",this._onMouseMove),this._manualGlassManagement||this.hideGlass(),this._dragging)this._dragging=!1,this._fDragEnd&&this._fDragEnd(e);else if(this._fDragCancel&&this._fDragCancel(this._dragging),Math.abs(this._startX-t.clientX)<=5&&Math.abs(this._startY-t.clientY)<=5){let n=!1;const r=(new Date).getTime();Math.abs(this._clickX-t.clientX)<=5&&Math.abs(this._clickY-t.clientY)<=5&&r-this._lastClick<500&&this._fDblClick&&(this._fDblClick(e),n=!0),!n&&this._fClick&&this._fClick(e),this._lastClick=r,this._clickX=t.clientX,this._clickY=t.clientY}return!1}_onDragEnter(e){return this._preventDefault(e),this._stopPropagation(e),this._dragDepth++,!1}_onDragLeave(e){return this._preventDefault(e),this._stopPropagation(e),this._dragDepth--,this._dragDepth<=0&&this._onDragCancel(),!1}}t.DragDrop=i,i.instance=new i},5748:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.DropInfo=void 0;t.DropInfo=class{constructor(e,t,n,r,o){this.node=e,this.rect=t,this.location=n,this.index=r,this.className=o}}},25551:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.I18nLabel=void 0,function(e){e.Close_Tab="Close",e.Close_Tabset="Close tabset",e.Move_Tab="Move: ",e.Move_Tabset="Move tabset",e.Maximize="Maximize tabset",e.Restore="Restore tabset",e.Float_Tab="Show selected tab in floating window",e.Overflow_Menu_Tooltip="Hidden tabs",e.Floating_Window_Message="This panel is shown in a floating window",e.Floating_Window_Show_Window="Show window",e.Floating_Window_Dock_Window="Dock window",e.Error_rendering_component="Error rendering component"}(t.I18nLabel||(t.I18nLabel={}))},13380:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Orientation=void 0;class n{static flip(e){return e===n.HORZ?n.VERT:n.HORZ}constructor(e){this._name=e}getName(){return this._name}toString(){return this._name}}t.Orientation=n,n.HORZ=new n("horz"),n.VERT=new n("vert")},40031:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.showPopup=void 0;const r=n(36198),o=n(30268),i=n(24115),a=n(15797);t.showPopup=function(e,t,n,a,l,c){var u;const d=a.getRootDiv(),f=a.getClassName,h=e.ownerDocument,p=e.getBoundingClientRect(),m=null!==(u=null==d?void 0:d.getBoundingClientRect())&&void 0!==u?u:new DOMRect(0,0,100,100),g=h.createElement("div");g.className=f(i.CLASSES.FLEXLAYOUT__POPUP_MENU_CONTAINER),p.lefty())),o.DragDrop.instance.setGlassCursorOverride("default"),d&&d.appendChild(g);const y=()=>{a.hidePortal(),o.DragDrop.instance.hideGlass(),d&&d.removeChild(g),g.removeEventListener("mousedown",v),h.removeEventListener("mousedown",b)},v=e=>{e.stopPropagation()},b=e=>{y()};g.addEventListener("mousedown",v),h.addEventListener("mousedown",b),a.showPortal(r.createElement(s,{currentDocument:h,onSelect:n,onHide:y,items:t,classNameMapper:f,layout:a,iconFactory:l,titleFactory:c}),g)};const s=e=>{const{items:t,onHide:n,onSelect:o,classNameMapper:s,layout:l,iconFactory:c,titleFactory:u}=e,d=t.map(((e,t)=>r.createElement("div",{key:e.index,className:s(i.CLASSES.FLEXLAYOUT__POPUP_MENU_ITEM),"data-layout-path":"/popup-menu/tb"+t,onClick:t=>((e,t)=>{o(e),n(),t.stopPropagation()})(e,t),title:e.node.getHelpText()},e.node.getModel().isLegacyOverflowMenu()?e.node._getNameForOverflowMenu():r.createElement(a.TabButtonStamp,{node:e.node,layout:l,iconFactory:c,titleFactory:u}))));return r.createElement("div",{className:s(i.CLASSES.FLEXLAYOUT__POPUP_MENU),"data-layout-path":"/popup-menu"},d)}},10807:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Rect=void 0;const r=n(13380);class o{static empty(){return new o(0,0,0,0)}constructor(e,t,n,r){this.x=e,this.y=t,this.width=n,this.height=r}static fromElement(e){let{x:t,y:n,width:r,height:i}=e.getBoundingClientRect();return new o(t,n,r,i)}clone(){return new o(this.x,this.y,this.width,this.height)}equals(e){return this.x===(null==e?void 0:e.x)&&this.y===(null==e?void 0:e.y)&&this.width===(null==e?void 0:e.width)&&this.height===(null==e?void 0:e.height)}getBottom(){return this.y+this.height}getRight(){return this.x+this.width}getCenter(){return{x:this.x+this.width/2,y:this.y+this.height/2}}positionElement(e,t){this.styleWithPosition(e.style,t)}styleWithPosition(e,t="absolute"){return e.left=this.x+"px",e.top=this.y+"px",e.width=Math.max(0,this.width)+"px",e.height=Math.max(0,this.height)+"px",e.position=t,e}contains(e,t){return this.x<=e&&e<=this.getRight()&&this.y<=t&&t<=this.getBottom()}removeInsets(e){return new o(this.x+e.left,this.y+e.top,Math.max(0,this.width-e.left-e.right),Math.max(0,this.height-e.top-e.bottom))}centerInRect(e){this.x=(e.width-this.width)/2,this.y=(e.height-this.height)/2}_getSize(e){let t=this.width;return e===r.Orientation.VERT&&(t=this.height),t}toString(){return"(Rect: x="+this.x+", y="+this.y+", width="+this.width+", height="+this.height+")"}}t.Rect=o},24115:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.CLASSES=void 0,function(e){e.FLEXLAYOUT__BORDER="flexlayout__border",e.FLEXLAYOUT__BORDER_="flexlayout__border_",e.FLEXLAYOUT__BORDER_BUTTON="flexlayout__border_button",e.FLEXLAYOUT__BORDER_BUTTON_="flexlayout__border_button_",e.FLEXLAYOUT__BORDER_BUTTON_CONTENT="flexlayout__border_button_content",e.FLEXLAYOUT__BORDER_BUTTON_LEADING="flexlayout__border_button_leading",e.FLEXLAYOUT__BORDER_BUTTON_TRAILING="flexlayout__border_button_trailing",e.FLEXLAYOUT__BORDER_BUTTON__SELECTED="flexlayout__border_button--selected",e.FLEXLAYOUT__BORDER_BUTTON__UNSELECTED="flexlayout__border_button--unselected",e.FLEXLAYOUT__BORDER_TOOLBAR_BUTTON_OVERFLOW="flexlayout__border_toolbar_button_overflow",e.FLEXLAYOUT__BORDER_TOOLBAR_BUTTON_OVERFLOW_="flexlayout__border_toolbar_button_overflow_",e.FLEXLAYOUT__BORDER_INNER="flexlayout__border_inner",e.FLEXLAYOUT__BORDER_INNER_="flexlayout__border_inner_",e.FLEXLAYOUT__BORDER_INNER_TAB_CONTAINER="flexlayout__border_inner_tab_container",e.FLEXLAYOUT__BORDER_INNER_TAB_CONTAINER_="flexlayout__border_inner_tab_container_",e.FLEXLAYOUT__BORDER_TAB_DIVIDER="flexlayout__border_tab_divider",e.FLEXLAYOUT__BORDER_SIZER="flexlayout__border_sizer",e.FLEXLAYOUT__BORDER_TOOLBAR="flexlayout__border_toolbar",e.FLEXLAYOUT__BORDER_TOOLBAR_="flexlayout__border_toolbar_",e.FLEXLAYOUT__BORDER_TOOLBAR_BUTTON="flexlayout__border_toolbar_button",e.FLEXLAYOUT__BORDER_TOOLBAR_BUTTON_FLOAT="flexlayout__border_toolbar_button-float",e.FLEXLAYOUT__DRAG_RECT="flexlayout__drag_rect",e.FLEXLAYOUT__EDGE_RECT="flexlayout__edge_rect",e.FLEXLAYOUT__EDGE_RECT_TOP="flexlayout__edge_rect_top",e.FLEXLAYOUT__EDGE_RECT_LEFT="flexlayout__edge_rect_left",e.FLEXLAYOUT__EDGE_RECT_BOTTOM="flexlayout__edge_rect_bottom",e.FLEXLAYOUT__EDGE_RECT_RIGHT="flexlayout__edge_rect_right",e.FLEXLAYOUT__ERROR_BOUNDARY_CONTAINER="flexlayout__error_boundary_container",e.FLEXLAYOUT__ERROR_BOUNDARY_CONTENT="flexlayout__error_boundary_content",e.FLEXLAYOUT__FLOATING_WINDOW_CONTENT="flexlayout__floating_window_content",e.FLEXLAYOUT__FLOATING_WINDOW_TAB="flexlayout__floating_window_tab",e.FLEXLAYOUT__LAYOUT="flexlayout__layout",e.FLEXLAYOUT__OUTLINE_RECT="flexlayout__outline_rect",e.FLEXLAYOUT__OUTLINE_RECT_EDGE="flexlayout__outline_rect_edge",e.FLEXLAYOUT__SPLITTER="flexlayout__splitter",e.FLEXLAYOUT__SPLITTER_EXTRA="flexlayout__splitter_extra",e.FLEXLAYOUT__SPLITTER_="flexlayout__splitter_",e.FLEXLAYOUT__SPLITTER_BORDER="flexlayout__splitter_border",e.FLEXLAYOUT__SPLITTER_DRAG="flexlayout__splitter_drag",e.FLEXLAYOUT__TAB="flexlayout__tab",e.FLEXLAYOUT__TABSET="flexlayout__tabset",e.FLEXLAYOUT__TABSET_HEADER="flexlayout__tabset_header",e.FLEXLAYOUT__TABSET_HEADER_SIZER="flexlayout__tabset_header_sizer",e.FLEXLAYOUT__TABSET_HEADER_CONTENT="flexlayout__tabset_header_content",e.FLEXLAYOUT__TABSET_MAXIMIZED="flexlayout__tabset-maximized",e.FLEXLAYOUT__TABSET_SELECTED="flexlayout__tabset-selected",e.FLEXLAYOUT__TABSET_SIZER="flexlayout__tabset_sizer",e.FLEXLAYOUT__TABSET_TAB_DIVIDER="flexlayout__tabset_tab_divider",e.FLEXLAYOUT__TABSET_CONTENT="flexlayout__tabset_content",e.FLEXLAYOUT__TABSET_TABBAR_INNER="flexlayout__tabset_tabbar_inner",e.FLEXLAYOUT__TABSET_TABBAR_INNER_="flexlayout__tabset_tabbar_inner_",e.FLEXLAYOUT__TABSET_TABBAR_INNER_TAB_CONTAINER="flexlayout__tabset_tabbar_inner_tab_container",e.FLEXLAYOUT__TABSET_TABBAR_INNER_TAB_CONTAINER_="flexlayout__tabset_tabbar_inner_tab_container_",e.FLEXLAYOUT__TABSET_TABBAR_OUTER="flexlayout__tabset_tabbar_outer",e.FLEXLAYOUT__TABSET_TABBAR_OUTER_="flexlayout__tabset_tabbar_outer_",e.FLEXLAYOUT__TAB_BORDER="flexlayout__tab_border",e.FLEXLAYOUT__TAB_BORDER_="flexlayout__tab_border_",e.FLEXLAYOUT__TAB_BUTTON="flexlayout__tab_button",e.FLEXLAYOUT__TAB_BUTTON_STRETCH="flexlayout__tab_button_stretch",e.FLEXLAYOUT__TAB_BUTTON_CONTENT="flexlayout__tab_button_content",e.FLEXLAYOUT__TAB_BUTTON_LEADING="flexlayout__tab_button_leading",e.FLEXLAYOUT__TAB_BUTTON_OVERFLOW="flexlayout__tab_button_overflow",e.FLEXLAYOUT__TAB_BUTTON_OVERFLOW_COUNT="flexlayout__tab_button_overflow_count",e.FLEXLAYOUT__TAB_BUTTON_TEXTBOX="flexlayout__tab_button_textbox",e.FLEXLAYOUT__TAB_BUTTON_TRAILING="flexlayout__tab_button_trailing",e.FLEXLAYOUT__TAB_BUTTON_STAMP="flexlayout__tab_button_stamp",e.FLEXLAYOUT__TAB_FLOATING="flexlayout__tab_floating",e.FLEXLAYOUT__TAB_FLOATING_INNER="flexlayout__tab_floating_inner",e.FLEXLAYOUT__TAB_TOOLBAR="flexlayout__tab_toolbar",e.FLEXLAYOUT__TAB_TOOLBAR_BUTTON="flexlayout__tab_toolbar_button",e.FLEXLAYOUT__TAB_TOOLBAR_BUTTON_="flexlayout__tab_toolbar_button-",e.FLEXLAYOUT__TAB_TOOLBAR_BUTTON_FLOAT="flexlayout__tab_toolbar_button-float",e.FLEXLAYOUT__TAB_TOOLBAR_STICKY_BUTTONS_CONTAINER="flexlayout__tab_toolbar_sticky_buttons_container",e.FLEXLAYOUT__TAB_TOOLBAR_BUTTON_CLOSE="flexlayout__tab_toolbar_button-close",e.FLEXLAYOUT__POPUP_MENU_CONTAINER="flexlayout__popup_menu_container",e.FLEXLAYOUT__POPUP_MENU_ITEM="flexlayout__popup_menu_item",e.FLEXLAYOUT__POPUP_MENU="flexlayout__popup_menu"}(t.CLASSES||(t.CLASSES={}))},86352:function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n);var o=Object.getOwnPropertyDescriptor(t,n);o&&!("get"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,r,o)}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),o=this&&this.__exportStar||function(e,t){for(var n in e)"default"===n||Object.prototype.hasOwnProperty.call(t,n)||r(t,e,n)};Object.defineProperty(t,"__esModule",{value:!0}),o(n(55295),t),o(n(89349),t),o(n(33076),t),o(n(74268),t),o(n(1073),t),o(n(47562),t),o(n(47548),t),o(n(47984),t),o(n(50161),t),o(n(46466),t),o(n(70089),t),o(n(50996),t),o(n(90191),t),o(n(46677),t),o(n(52733),t),o(n(40232),t),o(n(30268),t),o(n(5748),t),o(n(25551),t),o(n(13380),t),o(n(10807),t),o(n(24115),t)},89349:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Action=void 0;t.Action=class{constructor(e,t){this.type=e,this.data=t}}},33076:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Actions=void 0;const r=n(89349);class o{static addNode(e,t,n,i,a){return new r.Action(o.ADD_NODE,{json:e,toNode:t,location:n.getName(),index:i,select:a})}static moveNode(e,t,n,i,a){return new r.Action(o.MOVE_NODE,{fromNode:e,toNode:t,location:n.getName(),index:i,select:a})}static deleteTab(e){return new r.Action(o.DELETE_TAB,{node:e})}static deleteTabset(e){return new r.Action(o.DELETE_TABSET,{node:e})}static renameTab(e,t){return new r.Action(o.RENAME_TAB,{node:e,text:t})}static selectTab(e){return new r.Action(o.SELECT_TAB,{tabNode:e})}static setActiveTabset(e){return new r.Action(o.SET_ACTIVE_TABSET,{tabsetNode:e})}static adjustSplit(e){const t=e.node1Id,n=e.node2Id;return new r.Action(o.ADJUST_SPLIT,{node1:t,weight1:e.weight1,pixelWidth1:e.pixelWidth1,node2:n,weight2:e.weight2,pixelWidth2:e.pixelWidth2})}static adjustBorderSplit(e,t){return new r.Action(o.ADJUST_BORDER_SPLIT,{node:e,pos:t})}static maximizeToggle(e){return new r.Action(o.MAXIMIZE_TOGGLE,{node:e})}static updateModelAttributes(e){return new r.Action(o.UPDATE_MODEL_ATTRIBUTES,{json:e})}static updateNodeAttributes(e,t){return new r.Action(o.UPDATE_NODE_ATTRIBUTES,{node:e,json:t})}static floatTab(e){return new r.Action(o.FLOAT_TAB,{node:e})}static unFloatTab(e){return new r.Action(o.UNFLOAT_TAB,{node:e})}}t.Actions=o,o.ADD_NODE="FlexLayout_AddNode",o.MOVE_NODE="FlexLayout_MoveNode",o.DELETE_TAB="FlexLayout_DeleteTab",o.DELETE_TABSET="FlexLayout_DeleteTabset",o.RENAME_TAB="FlexLayout_RenameTab",o.SELECT_TAB="FlexLayout_SelectTab",o.SET_ACTIVE_TABSET="FlexLayout_SetActiveTabset",o.ADJUST_SPLIT="FlexLayout_AdjustSplit",o.ADJUST_BORDER_SPLIT="FlexLayout_AdjustBorderSplit",o.MAXIMIZE_TOGGLE="FlexLayout_MaximizeToggle",o.UPDATE_MODEL_ATTRIBUTES="FlexLayout_UpdateModelAttributes",o.UPDATE_NODE_ATTRIBUTES="FlexLayout_UpdateNodeAttributes",o.FLOAT_TAB="FlexLayout_FloatTab",o.UNFLOAT_TAB="FlexLayout_UnFloatTab"},74268:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.BorderNode=void 0;const r=n(17029),o=n(58267),i=n(40232),a=n(5748),s=n(13380),l=n(10807),c=n(24115),u=n(70089),d=n(90191),f=n(46677),h=n(52968);class p extends u.Node{static _fromJson(e,t){const n=i.DockLocation.getByName(e.location),r=new p(n,e,t);return e.children&&(r._children=e.children.map((e=>{const n=f.TabNode._fromJson(e,t);return n._setParent(r),n}))),r}static _createAttributeDefinitions(){const e=new o.AttributeDefinitions;return e.add("type",p.TYPE,!0).setType(r.Attribute.STRING).setFixed(),e.add("selected",-1).setType(r.Attribute.NUMBER),e.add("show",!0).setType(r.Attribute.BOOLEAN),e.add("config",void 0).setType("any"),e.addInherited("barSize","borderBarSize").setType(r.Attribute.NUMBER),e.addInherited("enableDrop","borderEnableDrop").setType(r.Attribute.BOOLEAN),e.addInherited("className","borderClassName").setType(r.Attribute.STRING),e.addInherited("autoSelectTabWhenOpen","borderAutoSelectTabWhenOpen").setType(r.Attribute.BOOLEAN),e.addInherited("autoSelectTabWhenClosed","borderAutoSelectTabWhenClosed").setType(r.Attribute.BOOLEAN),e.addInherited("size","borderSize").setType(r.Attribute.NUMBER),e.addInherited("minSize","borderMinSize").setType(r.Attribute.NUMBER),e.addInherited("enableAutoHide","borderEnableAutoHide").setType(r.Attribute.BOOLEAN),e}constructor(e,t,n){super(n),this._adjustedSize=0,this._calculatedBorderBarSize=0,this._location=e,this._drawChildren=[],this._attributes.id=`border_${e.getName()}`,p._attributeDefinitions.fromJson(t,this._attributes),n._addNode(this)}getLocation(){return this._location}getTabHeaderRect(){return this._tabHeaderRect}getRect(){return this._tabHeaderRect}getContentRect(){return this._contentRect}isEnableDrop(){return this._getAttr("enableDrop")}isAutoSelectTab(e){return null==e&&(e=-1!==this.getSelected()),e?this._getAttr("autoSelectTabWhenOpen"):this._getAttr("autoSelectTabWhenClosed")}getClassName(){return this._getAttr("className")}calcBorderBarSize(e){const t=this._getAttr("barSize");this._calculatedBorderBarSize=0!==t?t:e.borderBarSize}getBorderBarSize(){return this._calculatedBorderBarSize}getSize(){const e=this._getAttr("size"),t=this.getSelected();if(-1===t)return e;{const n=this._children[t],r=this._location._orientation===s.Orientation.HORZ?n._getAttr("borderWidth"):n._getAttr("borderHeight");return-1===r?e:r}}getMinSize(){return this._getAttr("minSize")}getSelected(){return this._attributes.selected}getSelectedNode(){if(-1!==this.getSelected())return this._children[this.getSelected()]}getOrientation(){return this._location.getOrientation()}getConfig(){return this._attributes.config}isMaximized(){return!1}isShowing(){return!!this._attributes.show&&(this._model._getShowHiddenBorder()===this._location||!this.isAutoHide()||0!==this._children.length)}isAutoHide(){return this._getAttr("enableAutoHide")}_setSelected(e){this._attributes.selected=e}_setSize(e){const t=this.getSelected();if(-1===t)this._attributes.size=e;else{const n=this._children[t];-1===(this._location._orientation===s.Orientation.HORZ?n._getAttr("borderWidth"):n._getAttr("borderHeight"))?this._attributes.size=e:this._location._orientation===s.Orientation.HORZ?n._setBorderWidth(e):n._setBorderHeight(e)}}_updateAttrs(e){p._attributeDefinitions.update(e,this._attributes)}_getDrawChildren(){return this._drawChildren}_setAdjustedSize(e){this._adjustedSize=e}_getAdjustedSize(){return this._adjustedSize}_layoutBorderOuter(e,t){this.calcBorderBarSize(t);const n=this._location.split(e,this.getBorderBarSize());return this._tabHeaderRect=n.start,n.end}_layoutBorderInner(e,t){this._drawChildren=[];const n=this._location,r=n.split(e,this._adjustedSize+this._model.getSplitterSize()),o=n.reflect().split(r.start,this._model.getSplitterSize());this._contentRect=o.end;for(let e=0;e0){let e=this._children[0],n=e.getTabRect();const i=n.y,s=n.height;let u=this._tabHeaderRect.x,d=0;for(let f=0;f=u&&t0){let e=this._children[0],t=e.getTabRect();const i=t.x,s=t.width;let u=this._tabHeaderRect.y,d=0;for(let f=0;f=u&&n0&&n--;let a=n;-1===a&&(a=this._children.length),e.getType()===f.TabNode.TYPE&&this._addChild(e,a),(r||!1!==r&&this.isAutoSelectTab())&&this._setSelected(a),this._model._tidy()}toJson(){const e={};return p._attributeDefinitions.toJson(e,this._attributes),e.location=this._location.getName(),e.children=this._children.map((e=>e.toJson())),e}_getSplitterBounds(e,t=!1){const n=[0,0],r=t?this.getMinSize():0,o=this._model._getOuterInnerRects().outer,a=this._model._getOuterInnerRects().inner,s=this._model.getRoot();return this._location===i.DockLocation.TOP?(n[0]=o.y+r,n[1]=Math.max(n[0],a.getBottom()-e.getHeight()-s.getMinHeight())):this._location===i.DockLocation.LEFT?(n[0]=o.x+r,n[1]=Math.max(n[0],a.getRight()-e.getWidth()-s.getMinWidth())):this._location===i.DockLocation.BOTTOM?(n[1]=o.getBottom()-e.getHeight()-r,n[0]=Math.min(n[1],a.y+s.getMinHeight())):this._location===i.DockLocation.RIGHT&&(n[1]=o.getRight()-e.getWidth()-r,n[0]=Math.min(n[1],a.x+s.getMinWidth())),n}_calculateSplit(e,t){const n=this._getSplitterBounds(e);return this._location===i.DockLocation.BOTTOM||this._location===i.DockLocation.RIGHT?Math.max(0,n[1]-t):Math.max(0,t-n[0])}_getAttributeDefinitions(){return p._attributeDefinitions}static getAttributeDefinitions(){return p._attributeDefinitions}}t.BorderNode=p,p.TYPE="border",p._attributeDefinitions=p._createAttributeDefinitions()},1073:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.BorderSet=void 0;const r=n(13380),o=n(74268);class i{static _fromJson(e,t){const n=new i(t);return n._borders=e.map((e=>o.BorderNode._fromJson(e,t))),n}constructor(e){this._model=e,this._borders=[]}getBorders(){return this._borders}_forEachNode(e){for(const t of this._borders){e(t,0);for(const n of t.getChildren())n._forEachNode(e,1)}}_toJson(){return this._borders.map((e=>e.toJson()))}_layoutBorder(e,t){const n=e.outer,o=this._model.getRoot();let i=Math.max(0,n.height-o.getMinHeight()),a=Math.max(0,n.width-o.getMinWidth()),s=0,l=0,c=0,u=0;const d=this._borders.filter((e=>e.isShowing()));for(const e of d){e._setAdjustedSize(e.getSize());const t=-1!==e.getSelected();e.getLocation().getOrientation()===r.Orientation.HORZ?(l+=e.getBorderBarSize(),t&&(a-=this._model.getSplitterSize(),l+=e.getSize(),u+=e.getSize())):(s+=e.getBorderBarSize(),t&&(i-=this._model.getSplitterSize(),s+=e.getSize(),c+=e.getSize()))}let f=0,h=!1;for(;l>a&&u>0||s>i&&c>0;){const e=d[f];if(-1!==e.getSelected()){const t=e._getAdjustedSize();l>a&&u>0&&e.getLocation().getOrientation()===r.Orientation.HORZ&&t>0&&t>e.getMinSize()?(e._setAdjustedSize(t-1),l--,u--,h=!0):s>i&&c>0&&e.getLocation().getOrientation()===r.Orientation.VERT&&t>0&&t>e.getMinSize()&&(e._setAdjustedSize(t-1),s--,c--,h=!0)}if(f=(f+1)%d.length,0===f){if(!h)break;h=!1}}for(const n of d)e.outer=n._layoutBorderOuter(e.outer,t);e.inner=e.outer;for(const n of d)e.inner=n._layoutBorderInner(e.inner,t);return e}_findDropTargetNode(e,t,n){for(const r of this._borders)if(r.isShowing()){const o=r.canDrop(e,t,n);if(void 0!==o)return o}}}t.BorderSet=i},47562:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.ICloseType=void 0,function(e){e[e.Visible=1]="Visible",e[e.Always=2]="Always",e[e.Selected=3]="Selected"}(t.ICloseType||(t.ICloseType={}))},47548:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0})},47984:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0})},50161:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0})},46466:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Model=void 0;const r=n(17029),o=n(58267),i=n(40232),a=n(13380),s=n(10807),l=n(33076),c=n(74268),u=n(1073),d=n(50996),f=n(46677),h=n(52733),p=n(52968);class m{static fromJson(e){const t=new m;return m._attributeDefinitions.fromJson(e.global,t._attributes),e.borders&&(t._borders=u.BorderSet._fromJson(e.borders,t)),t._root=d.RowNode._fromJson(e.layout,t),t._tidy(),t}static _createAttributeDefinitions(){const e=new o.AttributeDefinitions;return e.add("legacyOverflowMenu",!1).setType(r.Attribute.BOOLEAN),e.add("enableEdgeDock",!0).setType(r.Attribute.BOOLEAN),e.add("rootOrientationVertical",!1).setType(r.Attribute.BOOLEAN),e.add("marginInsets",{top:0,right:0,bottom:0,left:0}).setType("IInsets"),e.add("enableUseVisibility",!1).setType(r.Attribute.BOOLEAN),e.add("enableRotateBorderIcons",!0).setType(r.Attribute.BOOLEAN),e.add("splitterSize",-1).setType(r.Attribute.NUMBER),e.add("splitterExtra",0).setType(r.Attribute.NUMBER),e.add("tabEnableClose",!0).setType(r.Attribute.BOOLEAN),e.add("tabCloseType",1).setType("ICloseType"),e.add("tabEnableFloat",!1).setType(r.Attribute.BOOLEAN),e.add("tabEnableDrag",!0).setType(r.Attribute.BOOLEAN),e.add("tabEnableRename",!0).setType(r.Attribute.BOOLEAN),e.add("tabContentClassName",void 0).setType(r.Attribute.STRING),e.add("tabClassName",void 0).setType(r.Attribute.STRING),e.add("tabIcon",void 0).setType(r.Attribute.STRING),e.add("tabEnableRenderOnDemand",!0).setType(r.Attribute.BOOLEAN),e.add("tabDragSpeed",.3).setType(r.Attribute.NUMBER),e.add("tabBorderWidth",-1).setType(r.Attribute.NUMBER),e.add("tabBorderHeight",-1).setType(r.Attribute.NUMBER),e.add("tabSetEnableDeleteWhenEmpty",!0).setType(r.Attribute.BOOLEAN),e.add("tabSetEnableDrop",!0).setType(r.Attribute.BOOLEAN),e.add("tabSetEnableDrag",!0).setType(r.Attribute.BOOLEAN),e.add("tabSetEnableDivide",!0).setType(r.Attribute.BOOLEAN),e.add("tabSetEnableMaximize",!0).setType(r.Attribute.BOOLEAN),e.add("tabSetEnableClose",!1).setType(r.Attribute.BOOLEAN),e.add("tabSetEnableSingleTabStretch",!1).setType(r.Attribute.BOOLEAN),e.add("tabSetAutoSelectTab",!0).setType(r.Attribute.BOOLEAN),e.add("tabSetClassNameTabStrip",void 0).setType(r.Attribute.STRING),e.add("tabSetClassNameHeader",void 0).setType(r.Attribute.STRING),e.add("tabSetEnableTabStrip",!0).setType(r.Attribute.BOOLEAN),e.add("tabSetHeaderHeight",0).setType(r.Attribute.NUMBER),e.add("tabSetTabStripHeight",0).setType(r.Attribute.NUMBER),e.add("tabSetMarginInsets",{top:0,right:0,bottom:0,left:0}).setType("IInsets"),e.add("tabSetBorderInsets",{top:0,right:0,bottom:0,left:0}).setType("IInsets"),e.add("tabSetTabLocation","top").setType("ITabLocation"),e.add("tabSetMinWidth",0).setType(r.Attribute.NUMBER),e.add("tabSetMinHeight",0).setType(r.Attribute.NUMBER),e.add("borderSize",200).setType(r.Attribute.NUMBER),e.add("borderMinSize",0).setType(r.Attribute.NUMBER),e.add("borderBarSize",0).setType(r.Attribute.NUMBER),e.add("borderEnableDrop",!0).setType(r.Attribute.BOOLEAN),e.add("borderAutoSelectTabWhenOpen",!0).setType(r.Attribute.BOOLEAN),e.add("borderAutoSelectTabWhenClosed",!1).setType(r.Attribute.BOOLEAN),e.add("borderClassName",void 0).setType(r.Attribute.STRING),e.add("borderEnableAutoHide",!1).setType(r.Attribute.BOOLEAN),e}constructor(){this._borderRects={inner:s.Rect.empty(),outer:s.Rect.empty()},this._attributes={},this._idMap={},this._borders=new u.BorderSet(this),this._pointerFine=!0,this._showHiddenBorder=i.DockLocation.CENTER}_setChangeListener(e){this._changeListener=e}getActiveTabset(){return this._activeTabSet&&this.getNodeById(this._activeTabSet.getId())?this._activeTabSet:void 0}_getShowHiddenBorder(){return this._showHiddenBorder}_setShowHiddenBorder(e){this._showHiddenBorder=e}_setActiveTabset(e){this._activeTabSet=e}getMaximizedTabset(){return this._maximizedTabSet}_setMaximizedTabset(e){this._maximizedTabSet=e}getRoot(){return this._root}isRootOrientationVertical(){return this._attributes.rootOrientationVertical}isUseVisibility(){return this._attributes.enableUseVisibility}isEnableRotateBorderIcons(){return this._attributes.enableRotateBorderIcons}getBorderSet(){return this._borders}_getOuterInnerRects(){return this._borderRects}_getPointerFine(){return this._pointerFine}_setPointerFine(e){this._pointerFine=e}visitNodes(e){this._borders._forEachNode(e),this._root._forEachNode(e,0)}getNodeById(e){return this._idMap[e]}getFirstTabSet(e=this._root){const t=e.getChildren()[0];return t instanceof h.TabSetNode?t:this.getFirstTabSet(t)}doAction(e){let t;switch(e.type){case l.Actions.ADD_NODE:{const n=new f.TabNode(this,e.data.json,!0),r=this._idMap[e.data.toNode];(r instanceof h.TabSetNode||r instanceof c.BorderNode||r instanceof d.RowNode)&&(r.drop(n,i.DockLocation.getByName(e.data.location),e.data.index,e.data.select),t=n);break}case l.Actions.MOVE_NODE:{const t=this._idMap[e.data.fromNode];if(t instanceof f.TabNode||t instanceof h.TabSetNode){const n=this._idMap[e.data.toNode];(n instanceof h.TabSetNode||n instanceof c.BorderNode||n instanceof d.RowNode)&&n.drop(t,i.DockLocation.getByName(e.data.location),e.data.index,e.data.select)}break}case l.Actions.DELETE_TAB:{const t=this._idMap[e.data.node];t instanceof f.TabNode&&t._delete();break}case l.Actions.DELETE_TABSET:{const t=this._idMap[e.data.node];if(t instanceof h.TabSetNode){const e=[...t.getChildren()];for(let t=0;tthis._idMap[e.getId()]=e))}_adjustSplitSide(e,t,n){e._setWeight(t),null!=e.getWidth()&&e.getOrientation()===a.Orientation.VERT?e._updateAttrs({width:n}):null!=e.getHeight()&&e.getOrientation()===a.Orientation.HORZ&&e._updateAttrs({height:n})}toJson(){const e={};return m._attributeDefinitions.toJson(e,this._attributes),this.visitNodes((e=>{e._fireEvent("save",void 0)})),{global:e,borders:this._borders._toJson(),layout:this._root.toJson()}}getSplitterSize(){let e=this._attributes.splitterSize;return-1===e&&(e=this._pointerFine?8:12),e}isLegacyOverflowMenu(){return this._attributes.legacyOverflowMenu}getSplitterExtra(){return this._attributes.splitterExtra}isEnableEdgeDock(){return this._attributes.enableEdgeDock}_addNode(e){const t=e.getId();if(void 0!==this._idMap[t])throw new Error(`Error: each node must have a unique id, duplicate id:${e.getId()}`);"splitter"!==e.getType()&&(this._idMap[t]=e)}_layout(e,t){var n;return this._borderRects=this._borders._layoutBorder({outer:e,inner:e},t),e=this._borderRects.inner.removeInsets(this._getAttribute("marginInsets")),null===(n=this._root)||void 0===n||n.calcMinSize(),this._root._layout(e,t),e}_findDropTargetNode(e,t,n){let r=this._root._findDropTargetNode(e,t,n);return void 0===r&&(r=this._borders._findDropTargetNode(e,t,n)),r}_tidy(){this._root._tidy()}_updateAttrs(e){m._attributeDefinitions.update(e,this._attributes)}_nextUniqueId(){return"#"+(0,p.randomUUID)()}_getAttribute(e){return this._attributes[e]}setOnAllowDrop(e){this._onAllowDrop=e}_getOnAllowDrop(){return this._onAllowDrop}setOnCreateTabSet(e){this._onCreateTabSet=e}_getOnCreateTabSet(){return this._onCreateTabSet}static toTypescriptInterfaces(){console.log(m._attributeDefinitions.toTypescriptInterface("Global",void 0)),console.log(d.RowNode.getAttributeDefinitions().toTypescriptInterface("Row",m._attributeDefinitions)),console.log(h.TabSetNode.getAttributeDefinitions().toTypescriptInterface("TabSet",m._attributeDefinitions)),console.log(f.TabNode.getAttributeDefinitions().toTypescriptInterface("Tab",m._attributeDefinitions)),console.log(c.BorderNode.getAttributeDefinitions().toTypescriptInterface("Border",m._attributeDefinitions))}toString(){return JSON.stringify(this.toJson())}}t.Model=m,m._attributeDefinitions=m._createAttributeDefinitions()},70089:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Node=void 0;const r=n(40232),o=n(13380),i=n(10807);t.Node=class{constructor(e){this._dirty=!1,this._tempSize=0,this._model=e,this._attributes={},this._children=[],this._fixed=!1,this._rect=i.Rect.empty(),this._visible=!1,this._listeners={}}getId(){let e=this._attributes.id;return void 0!==e||(e=this._model._nextUniqueId(),this._setId(e)),e}getModel(){return this._model}getType(){return this._attributes.type}getParent(){return this._parent}getChildren(){return this._children}getRect(){return this._rect}isVisible(){return this._visible}getOrientation(){return void 0===this._parent?this._model.isRootOrientationVertical()?o.Orientation.VERT:o.Orientation.HORZ:o.Orientation.flip(this._parent.getOrientation())}setEventListener(e,t){this._listeners[e]=t}removeEventListener(e){delete this._listeners[e]}_setId(e){this._attributes.id=e}_fireEvent(e,t){void 0!==this._listeners[e]&&this._listeners[e](t)}_getAttr(e){let t=this._attributes[e];if(void 0===t){const n=this._getAttributeDefinitions().getModelName(e);void 0!==n&&(t=this._model._getAttribute(n))}return t}_forEachNode(e,t){e(this,t),t++;for(const n of this._children)n._forEachNode(e,t)}_setVisible(e){e!==this._visible&&(this._fireEvent("visibility",{visible:e}),this._visible=e)}_getDrawChildren(){return this._children}_setParent(e){this._parent=e}_setRect(e){this._rect=e}_setWeight(e){this._attributes.weight=e}_setSelected(e){this._attributes.selected=e}_isFixed(){return this._fixed}_layout(e,t){this._rect=e}_findDropTargetNode(e,t,n){let r;if(this._rect.contains(t,n))if(void 0!==this._model.getMaximizedTabset())r=this._model.getMaximizedTabset().canDrop(e,t,n);else if(r=this.canDrop(e,t,n),void 0===r&&0!==this._children.length)for(const o of this._children)if(r=o._findDropTargetNode(e,t,n),void 0!==r)break;return r}canDrop(e,t,n){}_canDockInto(e,t){if(null!=t){if(t.location===r.DockLocation.CENTER&&!1===t.node.isEnableDrop())return!1;if(t.location===r.DockLocation.CENTER&&"tabset"===e.getType()&&void 0!==e.getName())return!1;if(t.location!==r.DockLocation.CENTER&&!1===t.node.isEnableDivide())return!1;if(this._model._getOnAllowDrop())return this._model._getOnAllowDrop()(e,t)}return!0}_removeChild(e){const t=this._children.indexOf(e);return-1!==t&&this._children.splice(t,1),this._dirty=!0,t}_addChild(e,t){return null!=t?this._children.splice(t,0,e):(this._children.push(e),t=this._children.length-1),e._parent=this,this._dirty=!0,t}_removeAll(){this._children=[],this._dirty=!0}_styleWithPosition(e){return null==e&&(e={}),this._rect.styleWithPosition(e)}_getTempSize(){return this._tempSize}_setTempSize(e){this._tempSize=e}isEnableDivide(){return!0}_toAttributeString(){return JSON.stringify(this._attributes,void 0,"\t")}}},50996:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.RowNode=void 0;const r=n(17029),o=n(58267),i=n(40232),a=n(5748),s=n(13380),l=n(10807),c=n(24115),u=n(74268),d=n(70089),f=n(90191),h=n(52733);class p extends d.Node{static _fromJson(e,t){const n=new p(t,e);if(null!=e.children)for(const r of e.children)if(r.type===h.TabSetNode.TYPE){const e=h.TabSetNode._fromJson(r,t);n._addChild(e)}else{const e=p._fromJson(r,t);n._addChild(e)}return n}static _createAttributeDefinitions(){const e=new o.AttributeDefinitions;return e.add("type",p.TYPE,!0).setType(r.Attribute.STRING).setFixed(),e.add("id",void 0).setType(r.Attribute.STRING),e.add("weight",100).setType(r.Attribute.NUMBER),e.add("width",void 0).setType(r.Attribute.NUMBER),e.add("height",void 0).setType(r.Attribute.NUMBER),e}constructor(e,t){super(e),this._dirty=!0,this._drawChildren=[],this._minHeight=0,this._minWidth=0,p._attributeDefinitions.fromJson(t,this._attributes),e._addNode(this)}getWeight(){return this._attributes.weight}getWidth(){return this._getAttr("width")}getHeight(){return this._getAttr("height")}_setWeight(e){this._attributes.weight=e}_layout(e,t){super._layout(e,t);const n=this._rect._getSize(this.getOrientation());let r=0,o=0,i=0,a=0;const c=this._getDrawChildren();for(const e of c){const t=e._getPrefSize(this.getOrientation());e._isFixed()?void 0!==t&&(o+=t):void 0===t?r+=e.getWeight():(i+=t,a+=e.getWeight())}let u=!1,d=n-o-i;d<0&&(d=n-o,u=!0,r+=a);let h=0,p=0;for(const e of c){const t=e._getPrefSize(this.getOrientation());if(e._isFixed())void 0!==t&&e._setTempSize(t);else if(null==t||u){if(0===r)e._setTempSize(0);else{const t=e.getMinSize(this.getOrientation()),n=Math.floor(d*(e.getWeight()/r));e._setTempSize(Math.max(t,n))}p+=e._getTempSize()}else e._setTempSize(t);h+=e._getTempSize()}if(p>0){for(;hn;){let e=!1;for(const t of c)if(!(t instanceof f.SplitterNode)){const r=t.getMinSize(this.getOrientation());t._getTempSize()>r&&h>n&&(t._setTempSize(t._getTempSize()-1),h--,e=!0)}if(!e)break}for(;h>n;){let e=!1;for(const t of c)if(!(t instanceof f.SplitterNode)){t._getTempSize()>0&&h>n&&(t._setTempSize(t._getTempSize()-1),h--,e=!0)}if(!e)break}}let m=0;for(const e of c)this.getOrientation()===s.Orientation.HORZ?e._layout(new l.Rect(this._rect.x+m,this._rect.y,e._getTempSize(),this._rect.height),t):e._layout(new l.Rect(this._rect.x,this._rect.y+m,this._rect.width,e._getTempSize()),t),m+=e._getTempSize();return!0}_getSplitterBounds(e,t=!1){const n=[0,0],r=this._getDrawChildren(),o=r.indexOf(e),i=r[o-1],a=r[o+1];if(this.getOrientation()===s.Orientation.HORZ){const r=t?i.getMinWidth():0,o=t?a.getMinWidth():0;n[0]=i.getRect().x+r,n[1]=a.getRect().getRight()-e.getWidth()-o}else{const r=t?i.getMinHeight():0,o=t?a.getMinHeight():0;n[0]=i.getRect().y+r,n[1]=a.getRect().getBottom()-e.getHeight()-o}return n}_calculateSplit(e,t){let n;const r=this._getDrawChildren(),o=r.indexOf(e),i=this._getSplitterBounds(e),a=r[o-1].getWeight()+r[o+1].getWeight(),s=Math.max(0,t-i[0]),l=Math.max(0,i[1]-t);if(s+l>0){const e=s*a/(s+l),t=l*a/(s+l);n={node1Id:r[o-1].getId(),weight1:e,pixelWidth1:s,node2Id:r[o+1].getId(),weight2:t,pixelWidth2:l}}return n}_getDrawChildren(){if(this._dirty){this._drawChildren=[];for(let e=0;el/2-u&&rthis._rect.getRight()-10&&r>l/2-u&&rs/2-u&&othis._rect.getBottom()-10&&o>s/2-u&&oe+t.getWeight()),0);0===s&&(s=100),a._setWeight(s/3);const l=!this._model.isRootOrientationVertical();if(l&&r===i.DockLocation.LEFT||!l&&r===i.DockLocation.TOP)this._addChild(a,0);else if(l&&r===i.DockLocation.RIGHT||!l&&r===i.DockLocation.BOTTOM)this._addChild(a);else if(l&&r===i.DockLocation.TOP||!l&&r===i.DockLocation.LEFT){const e=new p(this._model,{}),t=new p(this._model,{});t._setWeight(75),a._setWeight(25);for(const e of this._children)t._addChild(e);this._removeAll(),e._addChild(a),e._addChild(t),this._addChild(e)}else if(l&&r===i.DockLocation.BOTTOM||!l&&r===i.DockLocation.RIGHT){const e=new p(this._model,{}),t=new p(this._model,{});t._setWeight(75),a._setWeight(25);for(const e of this._children)t._addChild(e);this._removeAll(),e._addChild(t),e._addChild(a),this._addChild(e)}this._model._setActiveTabset(a),this._model._tidy()}toJson(){const e={};p._attributeDefinitions.toJson(e,this._attributes),e.children=[];for(const t of this._children)e.children.push(t.toJson());return e}isEnableDrop(){return!0}_getPrefSize(e){let t=this.getWidth();return e===s.Orientation.VERT&&(t=this.getHeight()),t}_getAttributeDefinitions(){return p._attributeDefinitions}_updateAttrs(e){p._attributeDefinitions.update(e,this._attributes)}static getAttributeDefinitions(){return p._attributeDefinitions}}t.RowNode=p,p.TYPE="row",p._attributeDefinitions=p._createAttributeDefinitions()},90191:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.SplitterNode=void 0;const r=n(58267),o=n(13380),i=n(70089);class a extends i.Node{constructor(e){super(e),this._fixed=!0,this._attributes.type=a.TYPE,e._addNode(this)}getWidth(){return this._model.getSplitterSize()}getMinWidth(){return this.getOrientation()===o.Orientation.VERT?this._model.getSplitterSize():0}getHeight(){return this._model.getSplitterSize()}getMinHeight(){return this.getOrientation()===o.Orientation.HORZ?this._model.getSplitterSize():0}getMinSize(e){return e===o.Orientation.HORZ?this.getMinWidth():this.getMinHeight()}getWeight(){return 0}_setWeight(e){}_getPrefSize(e){return this._model.getSplitterSize()}_updateAttrs(e){}_getAttributeDefinitions(){return new r.AttributeDefinitions}toJson(){}}t.SplitterNode=a,a.TYPE="splitter"},46677:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.TabNode=void 0;const r=n(17029),o=n(58267),i=n(70089);class a extends i.Node{static _fromJson(e,t,n=!0){return new a(t,e,n)}static _createAttributeDefinitions(){const e=new o.AttributeDefinitions;return e.add("type",a.TYPE,!0).setType(r.Attribute.STRING),e.add("id",void 0).setType(r.Attribute.STRING),e.add("name","[Unnamed Tab]").setType(r.Attribute.STRING),e.add("altName",void 0).setType(r.Attribute.STRING),e.add("helpText",void 0).setType(r.Attribute.STRING),e.add("component",void 0).setType(r.Attribute.STRING),e.add("config",void 0).setType("any"),e.add("floating",!1).setType(r.Attribute.BOOLEAN),e.add("tabsetClassName",void 0).setType(r.Attribute.STRING),e.addInherited("enableClose","tabEnableClose").setType(r.Attribute.BOOLEAN),e.addInherited("closeType","tabCloseType").setType("ICloseType"),e.addInherited("enableDrag","tabEnableDrag").setType(r.Attribute.BOOLEAN),e.addInherited("enableRename","tabEnableRename").setType(r.Attribute.BOOLEAN),e.addInherited("className","tabClassName").setType(r.Attribute.STRING),e.addInherited("contentClassName","tabContentClassName").setType(r.Attribute.STRING),e.addInherited("icon","tabIcon").setType(r.Attribute.STRING),e.addInherited("enableRenderOnDemand","tabEnableRenderOnDemand").setType(r.Attribute.BOOLEAN),e.addInherited("enableFloat","tabEnableFloat").setType(r.Attribute.BOOLEAN),e.addInherited("borderWidth","tabBorderWidth").setType(r.Attribute.NUMBER),e.addInherited("borderHeight","tabBorderHeight").setType(r.Attribute.NUMBER),e}constructor(e,t,n=!0){super(e),this._extra={},a._attributeDefinitions.fromJson(t,this._attributes),!0===n&&e._addNode(this)}getWindow(){return this._window}getTabRect(){return this._tabRect}_setTabRect(e){this._tabRect=e}_setRenderedName(e){this._renderedName=e}_getNameForOverflowMenu(){const e=this._getAttr("altName");return void 0!==e?e:this._renderedName}getName(){return this._getAttr("name")}getHelpText(){return this._getAttr("helpText")}getComponent(){return this._getAttr("component")}getConfig(){return this._attributes.config}getExtraData(){return this._extra}isFloating(){return this._getAttr("floating")}getIcon(){return this._getAttr("icon")}isEnableClose(){return this._getAttr("enableClose")}getCloseType(){return this._getAttr("closeType")}isEnableFloat(){return this._getAttr("enableFloat")}isEnableDrag(){return this._getAttr("enableDrag")}isEnableRename(){return this._getAttr("enableRename")}getClassName(){return this._getAttr("className")}getContentClassName(){return this._getAttr("contentClassName")}getTabSetClassName(){return this._getAttr("tabsetClassName")}isEnableRenderOnDemand(){return this._getAttr("enableRenderOnDemand")}_setName(e){this._attributes.name=e,this._window&&this._window.document&&(this._window.document.title=e)}_setFloating(e){this._attributes.floating=e}_layout(e,t){e.equals(this._rect)||this._fireEvent("resize",{rect:e}),this._rect=e}_delete(){this._parent._remove(this),this._fireEvent("close",{})}toJson(){const e={};return a._attributeDefinitions.toJson(e,this._attributes),e}_updateAttrs(e){a._attributeDefinitions.update(e,this._attributes)}_getAttributeDefinitions(){return a._attributeDefinitions}_setWindow(e){this._window=e}_setBorderWidth(e){this._attributes.borderWidth=e}_setBorderHeight(e){this._attributes.borderHeight=e}static getAttributeDefinitions(){return a._attributeDefinitions}}t.TabNode=a,a.TYPE="tab",a._attributeDefinitions=a._createAttributeDefinitions()},52733:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.TabSetNode=void 0;const r=n(17029),o=n(58267),i=n(40232),a=n(5748),s=n(13380),l=n(10807),c=n(24115),u=n(74268),d=n(70089),f=n(50996),h=n(46677),p=n(52968);class m extends d.Node{static _fromJson(e,t){const n=new m(t,e);if(null!=e.children)for(const r of e.children){const e=h.TabNode._fromJson(r,t);n._addChild(e)}return 0===n._children.length&&n._setSelected(-1),e.maximized&&!0===e.maximized&&t._setMaximizedTabset(n),e.active&&!0===e.active&&t._setActiveTabset(n),n}static _createAttributeDefinitions(){const e=new o.AttributeDefinitions;return e.add("type",m.TYPE,!0).setType(r.Attribute.STRING).setFixed(),e.add("id",void 0).setType(r.Attribute.STRING),e.add("weight",100).setType(r.Attribute.NUMBER),e.add("width",void 0).setType(r.Attribute.NUMBER),e.add("height",void 0).setType(r.Attribute.NUMBER),e.add("selected",0).setType(r.Attribute.NUMBER),e.add("name",void 0).setType(r.Attribute.STRING),e.add("config",void 0).setType("any"),e.addInherited("enableDeleteWhenEmpty","tabSetEnableDeleteWhenEmpty"),e.addInherited("enableDrop","tabSetEnableDrop"),e.addInherited("enableDrag","tabSetEnableDrag"),e.addInherited("enableDivide","tabSetEnableDivide"),e.addInherited("enableMaximize","tabSetEnableMaximize"),e.addInherited("enableClose","tabSetEnableClose"),e.addInherited("enableSingleTabStretch","tabSetEnableSingleTabStretch"),e.addInherited("classNameTabStrip","tabSetClassNameTabStrip"),e.addInherited("classNameHeader","tabSetClassNameHeader"),e.addInherited("enableTabStrip","tabSetEnableTabStrip"),e.addInherited("borderInsets","tabSetBorderInsets"),e.addInherited("marginInsets","tabSetMarginInsets"),e.addInherited("minWidth","tabSetMinWidth"),e.addInherited("minHeight","tabSetMinHeight"),e.addInherited("headerHeight","tabSetHeaderHeight"),e.addInherited("tabStripHeight","tabSetTabStripHeight"),e.addInherited("tabLocation","tabSetTabLocation"),e.addInherited("autoSelectTab","tabSetAutoSelectTab").setType(r.Attribute.BOOLEAN),e}constructor(e,t){super(e),m._attributeDefinitions.fromJson(t,this._attributes),e._addNode(this),this._calculatedTabBarHeight=0,this._calculatedHeaderBarHeight=0}getName(){return this._getAttr("name")}getSelected(){const e=this._attributes.selected;return void 0!==e?e:-1}getSelectedNode(){const e=this.getSelected();if(-1!==e)return this._children[e]}getWeight(){return this._getAttr("weight")}getWidth(){return this._getAttr("width")}getMinWidth(){return this._getAttr("minWidth")}getHeight(){return this._getAttr("height")}getMinHeight(){return this._getAttr("minHeight")}getMinSize(e){return e===s.Orientation.HORZ?this.getMinWidth():this.getMinHeight()}getConfig(){return this._attributes.config}isMaximized(){return this._model.getMaximizedTabset()===this}isActive(){return this._model.getActiveTabset()===this}isEnableDeleteWhenEmpty(){return this._getAttr("enableDeleteWhenEmpty")}isEnableDrop(){return this._getAttr("enableDrop")}isEnableDrag(){return this._getAttr("enableDrag")}isEnableDivide(){return this._getAttr("enableDivide")}isEnableMaximize(){return this._getAttr("enableMaximize")}isEnableClose(){return this._getAttr("enableClose")}isEnableSingleTabStretch(){return this._getAttr("enableSingleTabStretch")}canMaximize(){return!!this.isEnableMaximize()&&(this.getModel().getMaximizedTabset()===this||(this.getParent()!==this.getModel().getRoot()||1!==this.getModel().getRoot().getChildren().length))}isEnableTabStrip(){return this._getAttr("enableTabStrip")}isAutoSelectTab(){return this._getAttr("autoSelectTab")}getClassNameTabStrip(){return this._getAttr("classNameTabStrip")}getClassNameHeader(){return this._getAttr("classNameHeader")}calculateHeaderBarHeight(e){const t=this._getAttr("headerHeight");this._calculatedHeaderBarHeight=0!==t?t:e.headerBarSize}calculateTabBarHeight(e){const t=this._getAttr("tabStripHeight");this._calculatedTabBarHeight=0!==t?t:e.tabBarSize}getHeaderHeight(){return this._calculatedHeaderBarHeight}getTabStripHeight(){return this._calculatedTabBarHeight}getTabLocation(){return this._getAttr("tabLocation")}_setWeight(e){this._attributes.weight=e}_setSelected(e){this._attributes.selected=e}canDrop(e,t,n){let r;if(e===this){const e=i.DockLocation.CENTER,t=this._tabHeaderRect;r=new a.DropInfo(this,t,e,-1,c.CLASSES.FLEXLAYOUT__OUTLINE_RECT)}else if(this._contentRect.contains(t,n)){let e=i.DockLocation.CENTER;void 0===this._model.getMaximizedTabset()&&(e=i.DockLocation.getLocation(this._contentRect,t,n));const o=e.getDockRect(this._rect);r=new a.DropInfo(this,o,e,-1,c.CLASSES.FLEXLAYOUT__OUTLINE_RECT)}else if(null!=this._tabHeaderRect&&this._tabHeaderRect.contains(t,n)){let e,n,o;if(0===this._children.length)e=this._tabHeaderRect.clone(),n=e.y+3,o=e.height-4,e.width=2;else{let s=this._children[0];e=s.getTabRect(),n=e.y,o=e.height;let u=this._tabHeaderRect.x,d=0;for(let f=0;f=u&&t0&&n--,o===i.DockLocation.CENTER){let t=n;if(-1===t&&(t=this._children.length),e.getType()===h.TabNode.TYPE)this._addChild(e,t),(r||!1!==r&&this.isAutoSelectTab())&&this._setSelected(t);else{for(let n=0;n0&&this._setSelected(0)}this._model._setActiveTabset(this)}else{let t;if(e instanceof h.TabNode){const n=this._model._getOnCreateTabSet();t=new m(this._model,n?n(e):{}),t._addChild(e),a=t}else t=e;const n=this._parent,r=n.getChildren().indexOf(this);if(n.getOrientation()===o._orientation)t._setWeight(this.getWeight()/2),this._setWeight(this.getWeight()/2),n._addChild(t,r+o._indexPlus);else{const e=new f.RowNode(this._model,{});e._setWeight(this.getWeight()),e._addChild(this),this._setWeight(50),t._setWeight(50),e._addChild(t,o._indexPlus),n._removeChild(this),n._addChild(e,r)}this._model._setActiveTabset(t)}this._model._tidy()}toJson(){const e={};return m._attributeDefinitions.toJson(e,this._attributes),e.children=this._children.map((e=>e.toJson())),this.isActive()&&(e.active=!0),this.isMaximized()&&(e.maximized=!0),e}_updateAttrs(e){m._attributeDefinitions.update(e,this._attributes)}_getAttributeDefinitions(){return m._attributeDefinitions}_getPrefSize(e){let t=this.getWidth();return e===s.Orientation.VERT&&(t=this.getHeight()),t}static getAttributeDefinitions(){return m._attributeDefinitions}}t.TabSetNode=m,m.TYPE="tabset",m._attributeDefinitions=m._createAttributeDefinitions()},52968:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.randomUUID=t.adjustSelectedIndex=t.adjustSelectedIndexAfterDock=t.adjustSelectedIndexAfterFloat=void 0;const r=n(52733),o=n(74268);t.adjustSelectedIndexAfterFloat=function(e){const t=e.getParent();if(null!==t)if(t instanceof r.TabSetNode){let n=!1,r=0;const o=t.getChildren();for(let t=0;t0?t>=e.getChildren().length&&e._setSelected(e.getChildren().length-1):tn||e._setSelected(-1))}},t.randomUUID=function(){return([1e7]+-1e3+-4e3+-8e3+-1e11).replace(/[018]/g,(e=>(e^crypto.getRandomValues(new Uint8Array(1))[0]&15>>e/4).toString(16)))}},55821:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.BorderButton=void 0;const r=n(36198),o=n(25551),i=n(33076),a=n(10807),s=n(47562),l=n(24115),c=n(14592);t.BorderButton=e=>{const{layout:t,node:n,selected:u,border:d,iconFactory:f,titleFactory:h,icons:p,path:m}=e,g=r.useRef(null),y=r.useRef(null),v=e=>{(0,c.isAuxMouseEvent)(e)||t.getEditingTab()||t.dragStart(e,void 0,n,n.isEnableDrag(),O,w)},b=e=>{(0,c.isAuxMouseEvent)(e)&&t.auxMouseClick(n,e)},O=()=>{t.doAction(i.Actions.selectTab(n.getId()))},w=e=>{},S=e=>{(()=>{const e=n.getCloseType();return!!(u||e===s.ICloseType.Always||e===s.ICloseType.Visible&&window.matchMedia&&window.matchMedia("(hover: hover) and (pointer: fine)").matches)})()?t.doAction(i.Actions.deleteTab(n.getId())):O()},x=e=>{e.stopPropagation()};r.useLayoutEffect((()=>{E(),t.getEditingTab()===n&&y.current.select()}));const E=()=>{var e;const r=t.getDomRect(),o=null===(e=g.current)||void 0===e?void 0:e.getBoundingClientRect();o&&r&&n._setTabRect(new a.Rect(o.left-r.left,o.top-r.top,o.width,o.height))},T=e=>{e.stopPropagation()},C=e=>{"Escape"===e.code?t.setEditingTab(void 0):"Enter"===e.code&&(t.setEditingTab(void 0),t.doAction(i.Actions.renameTab(n.getId(),e.target.value)))},P=t.getClassName;let _=P(l.CLASSES.FLEXLAYOUT__BORDER_BUTTON)+" "+P(l.CLASSES.FLEXLAYOUT__BORDER_BUTTON_+d);_+=u?" "+P(l.CLASSES.FLEXLAYOUT__BORDER_BUTTON__SELECTED):" "+P(l.CLASSES.FLEXLAYOUT__BORDER_BUTTON__UNSELECTED),void 0!==n.getClassName()&&(_+=" "+n.getClassName());let k=0;!1===n.getModel().isEnableRotateBorderIcons()&&("left"===d?k=90:"right"===d&&(k=-90));const j=(0,c.getRenderStateEx)(t,n,f,h,k);let A=j.content?r.createElement("div",{className:P(l.CLASSES.FLEXLAYOUT__BORDER_BUTTON_CONTENT)},j.content):null;const R=j.leading?r.createElement("div",{className:P(l.CLASSES.FLEXLAYOUT__BORDER_BUTTON_LEADING)},j.leading):null;if(t.getEditingTab()===n&&(A=r.createElement("input",{ref:y,className:P(l.CLASSES.FLEXLAYOUT__TAB_BUTTON_TEXTBOX),"data-layout-path":m+"/textbox",type:"text",autoFocus:!0,defaultValue:n.getName(),onKeyDown:C,onMouseDown:T,onTouchStart:T})),n.isEnableClose()){const e=t.i18nName(o.I18nLabel.Close_Tab);j.buttons.push(r.createElement("div",{key:"close","data-layout-path":m+"/button/close",title:e,className:P(l.CLASSES.FLEXLAYOUT__BORDER_BUTTON_TRAILING),onMouseDown:x,onClick:S,onTouchStart:x},"function"==typeof p.close?p.close(n):p.close))}return r.createElement("div",{ref:g,"data-layout-path":m,className:_,onMouseDown:v,onClick:b,onAuxClick:b,onContextMenu:e=>{t.showContextMenu(n,e)},onTouchStart:v,title:n.getHelpText()},R,A,j.buttons)}},9715:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.BorderTabSet=void 0;const r=n(36198),o=n(40232),i=n(55821),a=n(40031),s=n(33076),l=n(25551),c=n(1680),u=n(13380),d=n(24115),f=n(14592);t.BorderTabSet=e=>{const{border:t,layout:n,iconFactory:h,titleFactory:p,icons:m,path:g}=e,y=r.useRef(null),v=r.useRef(null),b=r.useRef(null),{selfRef:O,position:w,userControlledLeft:S,hiddenTabs:x,onMouseWheel:E,tabsTruncated:T}=(0,c.useTabOverflow)(t,u.Orientation.flip(t.getOrientation()),y,b),C=e=>{(0,f.isAuxMouseEvent)(e)&&n.auxMouseClick(t,e)},P=e=>{e.stopPropagation()},_=e=>{const r=n.getShowOverflowMenu();if(void 0!==r)r(t,e,x,k);else{const e=v.current;(0,a.showPopup)(e,x,k,n,h,p)}e.stopPropagation()},k=e=>{n.doAction(s.Actions.selectTab(e.node.getId())),S.current=!1},j=e=>{const r=t.getChildren()[t.getSelected()];void 0!==r&&n.doAction(s.Actions.floatTab(r.getId())),e.stopPropagation()},A=n.getClassName;let R=t.getTabHeaderRect().styleWithPosition({});const D=[],L=e=>{let o=t.getSelected()===e,a=t.getChildren()[e];D.push(r.createElement(i.BorderButton,{layout:n,border:t.getLocation().getName(),node:a,path:g+"/tb"+e,key:a.getId(),selected:o,iconFactory:h,titleFactory:p,icons:m})),e0&&(T?M=[...N,...M]:D.push(r.createElement("div",{ref:b,key:"sticky_buttons_container",onMouseDown:P,onTouchStart:P,onDragStart:e=>{e.preventDefault()},className:A(d.CLASSES.FLEXLAYOUT__TAB_TOOLBAR_STICKY_BUTTONS_CONTAINER)},N))),x.length>0){const e=n.i18nName(l.I18nLabel.Overflow_Menu_Tooltip);let o;o="function"==typeof m.more?m.more(t,x):r.createElement(r.Fragment,null,m.more,r.createElement("div",{className:A(d.CLASSES.FLEXLAYOUT__TAB_BUTTON_OVERFLOW_COUNT)},x.length)),M.splice(Math.min($.overflowPosition,M.length),0,r.createElement("button",{key:"overflowbutton",ref:v,className:A(d.CLASSES.FLEXLAYOUT__BORDER_TOOLBAR_BUTTON)+" "+A(d.CLASSES.FLEXLAYOUT__BORDER_TOOLBAR_BUTTON_OVERFLOW)+" "+A(d.CLASSES.FLEXLAYOUT__BORDER_TOOLBAR_BUTTON_OVERFLOW_+t.getLocation().getName()),title:e,onClick:_,onMouseDown:P,onTouchStart:P},o))}const B=t.getSelected();if(-1!==B){const e=t.getChildren()[B];if(void 0!==e&&n.isSupportsPopout()&&e.isEnableFloat()&&!e.isFloating()){const t=n.i18nName(l.I18nLabel.Float_Tab);M.push(r.createElement("button",{key:"float",title:t,className:A(d.CLASSES.FLEXLAYOUT__BORDER_TOOLBAR_BUTTON)+" "+A(d.CLASSES.FLEXLAYOUT__BORDER_TOOLBAR_BUTTON_FLOAT),onClick:j,onMouseDown:P,onTouchStart:P},"function"==typeof m.popout?m.popout(e):m.popout))}}const F=r.createElement("div",{key:"toolbar",ref:y,className:A(d.CLASSES.FLEXLAYOUT__BORDER_TOOLBAR)+" "+A(d.CLASSES.FLEXLAYOUT__BORDER_TOOLBAR_+t.getLocation().getName())},M);R=n.styleFont(R);let Q={};const z=t.getBorderBarSize()-1;return Q=t.getLocation()===o.DockLocation.LEFT?{right:z,height:z,top:w}:t.getLocation()===o.DockLocation.RIGHT?{left:z,height:z,top:w}:{height:z,left:w},r.createElement("div",{ref:O,dir:"ltr",style:R,className:I,"data-layout-path":g,onClick:C,onAuxClick:C,onContextMenu:e=>{n.showContextMenu(t,e)},onWheel:E},r.createElement("div",{style:{height:z},className:A(d.CLASSES.FLEXLAYOUT__BORDER_INNER)+" "+A(d.CLASSES.FLEXLAYOUT__BORDER_INNER_+t.getLocation().getName())},r.createElement("div",{style:Q,className:A(d.CLASSES.FLEXLAYOUT__BORDER_INNER_TAB_CONTAINER)+" "+A(d.CLASSES.FLEXLAYOUT__BORDER_INNER_TAB_CONTAINER_+t.getLocation().getName())},D)),F)}},86180:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.ErrorBoundary=void 0;const r=n(36198),o=n(24115);class i extends r.Component{constructor(e){super(e),this.state={hasError:!1}}static getDerivedStateFromError(e){return{hasError:!0}}componentDidCatch(e,t){console.debug(e),console.debug(t)}render(){return this.state.hasError?r.createElement("div",{className:o.CLASSES.FLEXLAYOUT__ERROR_BOUNDARY_CONTAINER},r.createElement("div",{className:o.CLASSES.FLEXLAYOUT__ERROR_BOUNDARY_CONTENT},this.props.message)):this.props.children}}t.ErrorBoundary=i},67868:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.FloatingWindow=void 0;const r=n(36198),o=n(18348),i=n(10807),a=n(24115);t.FloatingWindow=e=>{const{title:t,id:n,url:s,rect:l,onCloseWindow:c,onSetWindow:u,children:d}=e,f=r.useRef(null),h=r.useRef(null),[p,m]=r.useState(void 0);return r.useLayoutEffect((()=>{h.current&&clearTimeout(h.current);let e=!0;const r=l||new i.Rect(0,0,100,100),o=Array.from(window.document.styleSheets).reduce(((e,t)=>{let n;try{n=t.cssRules}catch(e){}try{return[...e,{href:t.href,type:t.type,rules:n?Array.from(n).map((e=>e.cssText)):null}]}catch(t){return e}}),[]);return f.current=window.open(s,n,`left=${r.x},top=${r.y},width=${r.width},height=${r.height}`),null!==f.current?(u(n,f.current),window.addEventListener("beforeunload",(()=>{f.current&&(f.current.close(),f.current=null)})),f.current.addEventListener("load",(()=>{if(e){const e=f.current.document;e.title=t;const r=e.createElement("div");r.className=a.CLASSES.FLEXLAYOUT__FLOATING_WINDOW_CONTENT,e.body.appendChild(r),function(e,t){const n=e.head,r=[];for(const o of t)if(o.href){const t=e.createElement("link");t.type=o.type,t.rel="stylesheet",t.href=o.href,n.appendChild(t),r.push(new Promise((e=>{t.onload=()=>e(!0)})))}else if(o.rules){const t=e.createElement("style");for(const n of o.rules)t.appendChild(e.createTextNode(n));n.appendChild(t)}return Promise.all(r)}(e,o).then((()=>{m(r)})),f.current.addEventListener("beforeunload",(()=>{c(n)}))}}))):(console.warn(`Unable to open window ${s}`),c(n)),()=>{e=!1,h.current=setTimeout((()=>{f.current&&(f.current.close(),f.current=null)}),0)}}),[]),void 0!==p?(0,o.createPortal)(d,p):null}},46538:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.FloatingWindowTab=void 0;const r=n(36198),o=n(86180),i=n(25551),a=n(36198),s=n(24115);t.FloatingWindowTab=e=>{const{layout:t,node:n,factory:l}=e,c=t.getClassName,u=l(n);return r.createElement("div",{className:c(s.CLASSES.FLEXLAYOUT__FLOATING_WINDOW_TAB)},r.createElement(o.ErrorBoundary,{message:e.layout.i18nName(i.I18nLabel.Error_rendering_component)},r.createElement(a.Fragment,null,u)))}},93281:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.RestoreIcon=t.PopoutIcon=t.EdgeIcon=t.OverflowIcon=t.MaximizeIcon=t.CloseIcon=void 0;const r=n(36198),o={width:"1em",height:"1em",display:"flex",alignItems:"center"};t.CloseIcon=()=>r.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",style:o,viewBox:"0 0 24 24"},r.createElement("path",{fill:"none",d:"M0 0h24v24H0z"}),r.createElement("path",{stroke:"var(--color-icon)",fill:"var(--color-icon)",d:"M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"}));t.MaximizeIcon=()=>r.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",style:o,viewBox:"0 0 24 24",fill:"var(--color-icon)"},r.createElement("path",{d:"M0 0h24v24H0z",fill:"none"}),r.createElement("path",{stroke:"var(--color-icon)",d:"M7 14H5v5h5v-2H7v-3zm-2-4h2V7h3V5H5v5zm12 7h-3v2h5v-5h-2v3zM14 5v2h3v3h2V5h-5z"}));t.OverflowIcon=()=>r.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",style:o,viewBox:"0 0 24 24",fill:"var(--color-icon)"},r.createElement("path",{d:"M0 0h24v24H0z",fill:"none"}),r.createElement("path",{stroke:"var(--color-icon)",d:"M7 10l5 5 5-5z"}));t.EdgeIcon=()=>r.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",style:{display:"block",width:10,height:10},preserveAspectRatio:"none",viewBox:"0 0 100 100"},r.createElement("path",{fill:"var(--color-edge-icon)",stroke:"var(--color-edge-icon)",d:"M10 30 L90 30 l-40 40 Z"}));t.PopoutIcon=()=>r.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",style:o,viewBox:"0 0 20 20",fill:"var(--color-icon)"},r.createElement("path",{d:"M11 3a1 1 0 100 2h2.586l-6.293 6.293a1 1 0 101.414 1.414L15 6.414V9a1 1 0 102 0V4a1 1 0 00-1-1h-5z"}),r.createElement("path",{d:"M5 5a2 2 0 00-2 2v8a2 2 0 002 2h8a2 2 0 002-2v-3a1 1 0 10-2 0v3H5V7h3a1 1 0 000-2H5z"}));t.RestoreIcon=()=>r.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",style:o,viewBox:"0 0 24 24",fill:"var(--color-icon)"},r.createElement("path",{d:"M0 0h24v24H0z",fill:"none"}),r.createElement("path",{stroke:"var(--color-icon)",d:"M5 16h3v3h2v-5H5v2zm3-8H5v2h5V5H8v3zm6 11h2v-3h3v-2h-5v5zm2-11V5h-2v5h5V8h-3z"}))},55295:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Layout=void 0;const r=n(36198),o=n(18348),i=n(40232),a=n(30268),s=n(33076),l=n(74268),c=n(90191),u=n(46677),d=n(52733),f=n(10807),h=n(24115),p=n(9715),m=n(31996),g=n(60178),y=n(70470),v=n(67868),b=n(46538),O=n(62022),w=n(13380),S=n(93281),x=n(15797),E={close:r.createElement(S.CloseIcon,null),closeTabset:r.createElement(S.CloseIcon,null),popout:r.createElement(S.PopoutIcon,null),maximize:r.createElement(S.MaximizeIcon,null),restore:r.createElement(S.RestoreIcon,null),more:r.createElement(S.OverflowIcon,null),edgeArrow:r.createElement(S.EdgeIcon,null)},T="undefined"!=typeof window&&(window.document.documentMode||/Edge\//.test(window.navigator.userAgent)),C="undefined"!=typeof window&&window.matchMedia&&window.matchMedia("(hover: hover) and (pointer: fine)").matches&&!T;class P extends r.Component{constructor(e){super(e),this.firstMove=!1,this.dragRectRendered=!0,this.dragDivText=void 0,this.edgeRectLength=100,this.edgeRectWidth=10,this.onModelChange=e=>{this.forceUpdate(),this.props.onModelChange&&this.props.onModelChange(this.props.model,e)},this.updateRect=e=>{if(e||(e=this.getDomRect()),!e)return;const t=new f.Rect(0,0,e.width,e.height);t.equals(this.state.rect)||0===t.width||0===t.height||this.setState({rect:t})},this.updateLayoutMetrics=()=>{if(this.findHeaderBarSizeRef.current){const e=this.findHeaderBarSizeRef.current.getBoundingClientRect().height;e!==this.state.calculatedHeaderBarSize&&this.setState({calculatedHeaderBarSize:e})}if(this.findTabBarSizeRef.current){const e=this.findTabBarSizeRef.current.getBoundingClientRect().height;e!==this.state.calculatedTabBarSize&&this.setState({calculatedTabBarSize:e})}if(this.findBorderBarSizeRef.current){const e=this.findBorderBarSizeRef.current.getBoundingClientRect().height;e!==this.state.calculatedBorderBarSize&&this.setState({calculatedBorderBarSize:e})}},this.getClassName=e=>void 0===this.props.classNameMapper?e:this.props.classNameMapper(e),this.onCloseWindow=e=>{this.doAction(s.Actions.unFloatTab(e));try{this.props.model.getNodeById(e)._setWindow(void 0)}catch(e){}},this.onSetWindow=(e,t)=>{this.props.model.getNodeById(e)._setWindow(t)},this.onCancelAdd=()=>{var e,t;const n=this.selfRef.current;n&&this.dragDiv&&n.removeChild(this.dragDiv),this.dragDiv=void 0,this.hidePortal(),null!=this.fnNewNodeDropped&&(this.fnNewNodeDropped(),this.fnNewNodeDropped=void 0);try{null===(t=null===(e=this.customDrop)||void 0===e?void 0:e.invalidated)||void 0===t||t.call(e)}catch(e){console.error(e)}a.DragDrop.instance.hideGlass(),this.newTabJson=void 0,this.customDrop=void 0},this.onCancelDrag=e=>{var t,n;if(e){const e=this.selfRef.current,r=this.outlineDiv;if(e&&r)try{e.removeChild(r)}catch(e){}const o=this.dragDiv;if(e&&o)try{e.removeChild(o)}catch(e){}this.dragDiv=void 0,this.hidePortal(),this.setState({showEdges:!1}),null!=this.fnNewNodeDropped&&(this.fnNewNodeDropped(),this.fnNewNodeDropped=void 0);try{null===(n=null===(t=this.customDrop)||void 0===t?void 0:t.invalidated)||void 0===n||n.call(t)}catch(e){console.error(e)}a.DragDrop.instance.hideGlass(),this.newTabJson=void 0,this.customDrop=void 0}this.setState({showHiddenBorder:i.DockLocation.CENTER})},this.onDragDivMouseDown=e=>{e.preventDefault(),this.dragStart(e,this.dragDivText,u.TabNode._fromJson(this.newTabJson,this.props.model,!1),!0,void 0,void 0)},this.dragStart=(e,t,n,r,o,i)=>{var s,l;r?(this.dragNode=n,this.dragDivText=t,a.DragDrop.instance.startDrag(e,this.onDragStart,this.onDragMove,this.onDragEnd,this.onCancelDrag,o,i,this.currentDocument,null!==(l=this.selfRef.current)&&void 0!==l?l:void 0)):a.DragDrop.instance.startDrag(e,void 0,void 0,void 0,void 0,o,i,this.currentDocument,null!==(s=this.selfRef.current)&&void 0!==s?s:void 0)},this.dragRectRender=(e,t,n,o)=>{let i;if(void 0!==e?i=r.createElement("div",{style:{whiteSpace:"pre"}},e.replace("
","\n")):t&&t instanceof u.TabNode&&(i=r.createElement(x.TabButtonStamp,{node:t,layout:this,iconFactory:this.props.iconFactory,titleFactory:this.props.titleFactory})),void 0!==this.props.onRenderDragRect){const e=this.props.onRenderDragRect(i,t,n);void 0!==e&&(i=e)}this.dragRectRendered=!1;const a=this.dragDiv;a&&(a.style.visibility="hidden",this.showPortal(r.createElement(_,{onRendered:()=>{this.dragRectRendered=!0,null==o||o()}},i),a))},this.showPortal=(e,t)=>{const n=(0,o.createPortal)(e,t);this.setState({portal:n})},this.hidePortal=()=>{this.setState({portal:void 0})},this.onDragStart=()=>{var e;this.dropInfo=void 0,this.customDrop=void 0;const t=this.selfRef.current;return this.outlineDiv=this.currentDocument.createElement("div"),this.outlineDiv.className=this.getClassName(h.CLASSES.FLEXLAYOUT__OUTLINE_RECT),this.outlineDiv.style.visibility="hidden",t&&t.appendChild(this.outlineDiv),null==this.dragDiv&&(this.dragDiv=this.currentDocument.createElement("div"),this.dragDiv.className=this.getClassName(h.CLASSES.FLEXLAYOUT__DRAG_RECT),this.dragDiv.setAttribute("data-layout-path","/drag-rectangle"),this.dragRectRender(this.dragDivText,this.dragNode,this.newTabJson),t&&t.appendChild(this.dragDiv)),void 0===this.props.model.getMaximizedTabset()&&this.setState({showEdges:this.props.model.isEnableEdgeDock()}),this.dragNode&&this.outlineDiv&&this.dragNode instanceof u.TabNode&&void 0!==this.dragNode.getTabRect()&&(null===(e=this.dragNode.getTabRect())||void 0===e||e.positionElement(this.outlineDiv)),this.firstMove=!0,!0},this.onDragMove=e=>{var t,n,r,o,i,a,s;if(!1===this.firstMove){const e=this.props.model._getAttribute("tabDragSpeed");this.outlineDiv&&(this.outlineDiv.style.transition=`top ${e}s, left ${e}s, width ${e}s, height ${e}s`)}this.firstMove=!1;const l=null===(t=this.selfRef.current)||void 0===t?void 0:t.getBoundingClientRect(),c={x:e.clientX-(null!==(n=null==l?void 0:l.left)&&void 0!==n?n:0),y:e.clientY-(null!==(r=null==l?void 0:l.top)&&void 0!==r?r:0)};this.checkForBorderToShow(c.x,c.y);const u=null!==(i=null===(o=this.dragDiv)||void 0===o?void 0:o.getBoundingClientRect())&&void 0!==i?i:new DOMRect(0,0,100,100);let d=c.x-u.width/2;d+u.width>(null!==(a=null==l?void 0:l.width)&&void 0!==a?a:0)&&(d=(null!==(s=null==l?void 0:l.width)&&void 0!==s?s:0)-u.width),d=Math.max(0,d),this.dragDiv&&(this.dragDiv.style.left=d+"px",this.dragDiv.style.top=c.y+5+"px",this.dragRectRendered&&"hidden"===this.dragDiv.style.visibility&&(this.dragDiv.style.visibility="visible"));let f=this.props.model._findDropTargetNode(this.dragNode,c.x,c.y);f&&(this.props.onTabDrag?this.handleCustomTabDrag(f,c,e):(this.dropInfo=f,this.outlineDiv&&(this.outlineDiv.className=this.getClassName(f.className),f.rect.positionElement(this.outlineDiv),this.outlineDiv.style.visibility="visible")))},this.onDragEnd=e=>{const t=this.selfRef.current;if(t&&(this.outlineDiv&&t.removeChild(this.outlineDiv),this.dragDiv&&t.removeChild(this.dragDiv)),this.dragDiv=void 0,this.hidePortal(),this.setState({showEdges:!1}),a.DragDrop.instance.hideGlass(),this.dropInfo)if(this.customDrop){this.newTabJson=void 0;try{const{callback:e,dragging:t,over:n,x:r,y:o,location:i}=this.customDrop;e(t,n,r,o,i),null!=this.fnNewNodeDropped&&(this.fnNewNodeDropped(),this.fnNewNodeDropped=void 0)}catch(e){console.error(e)}}else if(void 0!==this.newTabJson){const t=this.doAction(s.Actions.addNode(this.newTabJson,this.dropInfo.node.getId(),this.dropInfo.location,this.dropInfo.index));null!=this.fnNewNodeDropped&&(this.fnNewNodeDropped(t,e),this.fnNewNodeDropped=void 0),this.newTabJson=void 0}else void 0!==this.dragNode&&this.doAction(s.Actions.moveNode(this.dragNode.getId(),this.dropInfo.node.getId(),this.dropInfo.location,this.dropInfo.index));this.setState({showHiddenBorder:i.DockLocation.CENTER})},this.props.model._setChangeListener(this.onModelChange),this.tabIds=[],this.selfRef=r.createRef(),this.findHeaderBarSizeRef=r.createRef(),this.findTabBarSizeRef=r.createRef(),this.findBorderBarSizeRef=r.createRef(),this.supportsPopout=void 0!==e.supportsPopout?e.supportsPopout:C,this.popoutURL=e.popoutURL?e.popoutURL:"popout.html",this.icons=Object.assign(Object.assign({},E),e.icons),this.state={rect:new f.Rect(0,0,0,0),calculatedHeaderBarSize:25,calculatedTabBarSize:26,calculatedBorderBarSize:30,editingTab:void 0,showHiddenBorder:i.DockLocation.CENTER,showEdges:!1},this.onDragEnter=this.onDragEnter.bind(this)}styleFont(e){return this.props.font&&(this.selfRef.current&&(this.props.font.size&&this.selfRef.current.style.setProperty("--font-size",this.props.font.size),this.props.font.family&&this.selfRef.current.style.setProperty("--font-family",this.props.font.family)),this.props.font.style&&(e.fontStyle=this.props.font.style),this.props.font.weight&&(e.fontWeight=this.props.font.weight)),e}doAction(e){if(void 0!==this.props.onAction){const t=this.props.onAction(e);return void 0!==t?this.props.model.doAction(t):void 0}return this.props.model.doAction(e)}componentDidMount(){this.updateRect(),this.updateLayoutMetrics(),this.currentDocument=this.selfRef.current.ownerDocument,this.currentWindow=this.currentDocument.defaultView,this.resizeObserver=new ResizeObserver((e=>{this.updateRect(e[0].contentRect)}));const e=this.selfRef.current;e&&this.resizeObserver.observe(e)}componentDidUpdate(){this.updateLayoutMetrics(),this.props.model!==this.previousModel&&(void 0!==this.previousModel&&this.previousModel._setChangeListener(void 0),this.props.model._setChangeListener(this.onModelChange),this.previousModel=this.props.model)}getCurrentDocument(){return this.currentDocument}getDomRect(){var e;return null===(e=this.selfRef.current)||void 0===e?void 0:e.getBoundingClientRect()}getRootDiv(){return this.selfRef.current}isSupportsPopout(){return this.supportsPopout}isRealtimeResize(){var e;return null!==(e=this.props.realtimeResize)&&void 0!==e&&e}onTabDrag(...e){var t,n;return null===(n=(t=this.props).onTabDrag)||void 0===n?void 0:n.call(t,...e)}getPopoutURL(){return this.popoutURL}componentWillUnmount(){var e;const t=this.selfRef.current;t&&(null===(e=this.resizeObserver)||void 0===e||e.unobserve(t))}setEditingTab(e){this.setState({editingTab:e})}getEditingTab(){return this.state.editingTab}render(){if(!this.selfRef.current)return r.createElement("div",{ref:this.selfRef,className:this.getClassName(h.CLASSES.FLEXLAYOUT__LAYOUT)},this.metricsElements());this.props.model._setPointerFine(window&&window.matchMedia&&window.matchMedia("(pointer: fine)").matches);const e=[],t=[],n=[],o={},i=[],a={headerBarSize:this.state.calculatedHeaderBarSize,tabBarSize:this.state.calculatedTabBarSize,borderBarSize:this.state.calculatedBorderBarSize};this.props.model._setShowHiddenBorder(this.state.showHiddenBorder),this.centerRect=this.props.model._layout(this.state.rect,a),this.renderBorder(this.props.model.getBorderSet(),e,o,n,i),this.renderChildren("",this.props.model.getRoot(),t,o,n,i);const s=[],l={};for(const e of this.tabIds)o[e]&&(s.push(e),l[e]=e);this.tabIds=s;for(const e of Object.keys(o))l[e]||this.tabIds.push(e);const c=[],u=this.icons.edgeArrow;if(this.state.showEdges){const e=this.centerRect,t=this.edgeRectLength,n=this.edgeRectWidth,o=this.edgeRectLength/2,i=this.getClassName(h.CLASSES.FLEXLAYOUT__EDGE_RECT),a=50;c.push(r.createElement("div",{key:"North",style:{top:e.y,left:e.x+e.width/2-o,width:t,height:n,borderBottomLeftRadius:a,borderBottomRightRadius:a},className:i+" "+this.getClassName(h.CLASSES.FLEXLAYOUT__EDGE_RECT_TOP)},r.createElement("div",{style:{transform:"rotate(180deg)"}},u))),c.push(r.createElement("div",{key:"West",style:{top:e.y+e.height/2-o,left:e.x,width:n,height:t,borderTopRightRadius:a,borderBottomRightRadius:a},className:i+" "+this.getClassName(h.CLASSES.FLEXLAYOUT__EDGE_RECT_LEFT)},r.createElement("div",{style:{transform:"rotate(90deg)"}},u))),c.push(r.createElement("div",{key:"South",style:{top:e.y+e.height-n,left:e.x+e.width/2-o,width:t,height:n,borderTopLeftRadius:a,borderTopRightRadius:a},className:i+" "+this.getClassName(h.CLASSES.FLEXLAYOUT__EDGE_RECT_BOTTOM)},r.createElement("div",null,u))),c.push(r.createElement("div",{key:"East",style:{top:e.y+e.height/2-o,left:e.x+e.width-n,width:n,height:t,borderTopLeftRadius:a,borderBottomLeftRadius:a},className:i+" "+this.getClassName(h.CLASSES.FLEXLAYOUT__EDGE_RECT_RIGHT)},r.createElement("div",{style:{transform:"rotate(-90deg)"}},u)))}return r.createElement("div",{ref:this.selfRef,className:this.getClassName(h.CLASSES.FLEXLAYOUT__LAYOUT),onDragEnter:this.props.onExternalDrag?this.onDragEnter:void 0},t,this.tabIds.map((e=>o[e])),e,i,c,n,this.metricsElements(),this.state.portal)}metricsElements(){const e=this.styleFont({visibility:"hidden"});return r.createElement(r.Fragment,null,r.createElement("div",{key:"findHeaderBarSize",ref:this.findHeaderBarSizeRef,style:e,className:this.getClassName(h.CLASSES.FLEXLAYOUT__TABSET_HEADER_SIZER)},"FindHeaderBarSize"),r.createElement("div",{key:"findTabBarSize",ref:this.findTabBarSizeRef,style:e,className:this.getClassName(h.CLASSES.FLEXLAYOUT__TABSET_SIZER)},"FindTabBarSize"),r.createElement("div",{key:"findBorderBarSize",ref:this.findBorderBarSizeRef,style:e,className:this.getClassName(h.CLASSES.FLEXLAYOUT__BORDER_SIZER)},"FindBorderBarSize"))}renderBorder(e,t,n,o,i){for(const a of e.getBorders()){const e=`/border/${a.getLocation().getName()}`;if(a.isShowing()){t.push(r.createElement(p.BorderTabSet,{key:`border_${a.getLocation().getName()}`,path:e,border:a,layout:this,iconFactory:this.props.iconFactory,titleFactory:this.props.titleFactory,icons:this.icons}));const s=a._getDrawChildren();let l=0,d=0;for(const t of s){if(t instanceof c.SplitterNode){let n=e+"/s";i.push(r.createElement(m.Splitter,{key:t.getId(),layout:this,node:t,path:n}))}else if(t instanceof u.TabNode){let i=e+"/t"+d++;if(this.supportsPopout&&t.isFloating()){const e=this._getScreenRect(t),s=t._getAttr("borderWidth"),c=t._getAttr("borderHeight");e&&(-1!==s&&a.getLocation().getOrientation()===w.Orientation.HORZ?e.width=s:-1!==c&&a.getLocation().getOrientation()===w.Orientation.VERT&&(e.height=c)),o.push(r.createElement(v.FloatingWindow,{key:t.getId(),url:this.popoutURL,rect:e,title:t.getName(),id:t.getId(),onSetWindow:this.onSetWindow,onCloseWindow:this.onCloseWindow},r.createElement(b.FloatingWindowTab,{layout:this,node:t,factory:this.props.factory}))),n[t.getId()]=r.createElement(O.TabFloating,{key:t.getId(),layout:this,path:i,node:t,selected:l===a.getSelected()})}else n[t.getId()]=r.createElement(g.Tab,{key:t.getId(),layout:this,path:i,node:t,selected:l===a.getSelected(),factory:this.props.factory})}l++}}}}renderChildren(e,t,n,o,i,a){const s=t._getDrawChildren();let l=0,f=0,h=0;for(const t of s)if(t instanceof c.SplitterNode){const n=e+"/s"+l++;a.push(r.createElement(m.Splitter,{key:t.getId(),layout:this,path:n,node:t}))}else if(t instanceof d.TabSetNode){const s=e+"/ts"+h++;n.push(r.createElement(y.TabSet,{key:t.getId(),layout:this,path:s,node:t,iconFactory:this.props.iconFactory,titleFactory:this.props.titleFactory,icons:this.icons})),this.renderChildren(s,t,n,o,i,a)}else if(t instanceof u.TabNode){const n=e+"/t"+f++,a=t.getParent().getChildren()[t.getParent().getSelected()];if(void 0===a&&console.warn("undefined selectedTab should not happen"),this.supportsPopout&&t.isFloating()){const e=this._getScreenRect(t);i.push(r.createElement(v.FloatingWindow,{key:t.getId(),url:this.popoutURL,rect:e,title:t.getName(),id:t.getId(),onSetWindow:this.onSetWindow,onCloseWindow:this.onCloseWindow},r.createElement(b.FloatingWindowTab,{layout:this,node:t,factory:this.props.factory}))),o[t.getId()]=r.createElement(O.TabFloating,{key:t.getId(),layout:this,path:n,node:t,selected:t===a})}else o[t.getId()]=r.createElement(g.Tab,{key:t.getId(),layout:this,path:n,node:t,selected:t===a,factory:this.props.factory})}else{const r=e+(t.getOrientation()===w.Orientation.HORZ?"/r":"/c")+h++;this.renderChildren(r,t,n,o,i,a)}}_getScreenRect(e){var t;const n=e.getRect().clone(),r=null===(t=this.selfRef.current)||void 0===t?void 0:t.getBoundingClientRect();if(!r)return null;const o=Math.min(80,this.currentWindow.outerHeight-this.currentWindow.innerHeight),i=Math.min(80,this.currentWindow.outerWidth-this.currentWindow.innerWidth);return n.x=n.x+r.x+this.currentWindow.screenX+i,n.y=n.y+r.y+this.currentWindow.screenY+o,n}addTabToTabSet(e,t){if(void 0!==this.props.model.getNodeById(e)){return this.doAction(s.Actions.addNode(t,e,i.DockLocation.CENTER,-1))}}addTabToActiveTabSet(e){const t=this.props.model.getActiveTabset();if(void 0!==t){return this.doAction(s.Actions.addNode(e,t.getId(),i.DockLocation.CENTER,-1))}}addTabWithDragAndDrop(e,t,n){this.fnNewNodeDropped=n,this.newTabJson=t,this.dragStart(void 0,e,u.TabNode._fromJson(t,this.props.model,!1),!0,void 0,void 0)}moveTabWithDragAndDrop(e,t){this.dragStart(void 0,t,e,!0,void 0,void 0)}addTabWithDragAndDropIndirect(e,t,n){this.fnNewNodeDropped=n,this.newTabJson=t,a.DragDrop.instance.addGlass(this.onCancelAdd),this.dragDivText=e,this.dragDiv=this.currentDocument.createElement("div"),this.dragDiv.className=this.getClassName(h.CLASSES.FLEXLAYOUT__DRAG_RECT),this.dragDiv.addEventListener("mousedown",this.onDragDivMouseDown),this.dragDiv.addEventListener("touchstart",this.onDragDivMouseDown,{passive:!1}),this.dragRectRender(this.dragDivText,void 0,this.newTabJson,(()=>{if(this.dragDiv){this.dragDiv.style.visibility="visible";const e=this.dragDiv.getBoundingClientRect(),t=new f.Rect(0,0,null==e?void 0:e.width,null==e?void 0:e.height);t.centerInRect(this.state.rect),this.dragDiv.setAttribute("data-layout-path","/drag-rectangle"),this.dragDiv.style.left=t.x+"px",this.dragDiv.style.top=t.y+"px"}}));this.selfRef.current.appendChild(this.dragDiv)}handleCustomTabDrag(e,t,n){var r,o,i;let s=null===(r=this.customDrop)||void 0===r?void 0:r.invalidated;const c=null===(o=this.customDrop)||void 0===o?void 0:o.callback;this.customDrop=void 0;const p=this.newTabJson||(this.dragNode instanceof u.TabNode?this.dragNode:void 0);if(p&&(e.node instanceof d.TabSetNode||e.node instanceof l.BorderNode)&&-1===e.index){const r=e.node.getSelectedNode(),o=null==r?void 0:r.getRect();if(r&&(null==o?void 0:o.contains(t.x,t.y))){let i;try{const a=this.onTabDrag(p,r,t.x-o.x,t.y-o.y,e.location,(()=>this.onDragMove(n)));a&&(i={rect:new f.Rect(a.x+o.x,a.y+o.y,a.width,a.height),callback:a.callback,invalidated:a.invalidated,dragging:p,over:r,x:t.x-o.x,y:t.y-o.y,location:e.location,cursor:a.cursor})}catch(e){console.error(e)}(null==i?void 0:i.callback)===c&&(s=void 0),this.customDrop=i}}this.dropInfo=e,this.outlineDiv&&(this.outlineDiv.className=this.getClassName(this.customDrop?h.CLASSES.FLEXLAYOUT__OUTLINE_RECT:e.className),this.customDrop?this.customDrop.rect.positionElement(this.outlineDiv):e.rect.positionElement(this.outlineDiv)),a.DragDrop.instance.setGlassCursorOverride(null===(i=this.customDrop)||void 0===i?void 0:i.cursor),this.outlineDiv&&(this.outlineDiv.style.visibility="visible");try{null==s||s()}catch(e){console.error(e)}}onDragEnter(e){if(a.DragDrop.instance.isDragging())return;const t=this.props.onExternalDrag(e);t&&(this.fnNewNodeDropped=t.onDrop,this.newTabJson=t.json,this.dragStart(e,t.dragText,u.TabNode._fromJson(t.json,this.props.model,!1),!0,void 0,void 0))}checkForBorderToShow(e,t){const n=this.props.model._getOuterInnerRects().outer,r=n.getCenter(),o=this.edgeRectWidth,a=this.edgeRectLength/2;let s=!1;this.props.model.isEnableEdgeDock()&&this.state.showHiddenBorder===i.DockLocation.CENTER&&(t>r.y-a&&tr.x-a&&e=n.getRight()-o?l=i.DockLocation.RIGHT:t<=n.y+o?l=i.DockLocation.TOP:t>=n.getBottom()-o&&(l=i.DockLocation.BOTTOM)),l!==this.state.showHiddenBorder&&this.setState({showHiddenBorder:l})}maximize(e){this.doAction(s.Actions.maximizeToggle(e.getId()))}customizeTab(e,t){this.props.onRenderTab&&this.props.onRenderTab(e,t)}customizeTabSet(e,t){this.props.onRenderTabSet&&this.props.onRenderTabSet(e,t)}i18nName(e,t){let n;return this.props.i18nMapper&&(n=this.props.i18nMapper(e,t)),void 0===n&&(n=e+(void 0===t?"":t)),n}getOnRenderFloatingTabPlaceholder(){return this.props.onRenderFloatingTabPlaceholder}getShowOverflowMenu(){return this.props.onShowOverflowMenu}getTabSetPlaceHolderCallback(){return this.props.onTabSetPlaceHolder}showContextMenu(e,t){this.props.onContextMenu&&this.props.onContextMenu(e,t)}auxMouseClick(e,t){this.props.onAuxMouseClick&&this.props.onAuxMouseClick(e,t)}}t.Layout=P;const _=e=>(r.useEffect((()=>{var t;null===(t=e.onRendered)||void 0===t||t.call(e)}),[e]),r.createElement(r.Fragment,null,e.children))},31996:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Splitter=void 0;const r=n(36198),o=n(30268),i=n(33076),a=n(74268),s=n(13380),l=n(24115);t.Splitter=e=>{const{layout:t,node:n,path:c}=e,u=r.useRef([]),d=r.useRef(void 0),f=n.getParent(),h=e=>{var r;o.DragDrop.instance.setGlassCursorOverride(n.getOrientation()===s.Orientation.HORZ?"ns-resize":"ew-resize"),o.DragDrop.instance.startDrag(e,m,g,v,p,void 0,void 0,t.getCurrentDocument(),null!==(r=t.getRootDiv())&&void 0!==r?r:void 0),u.current=f._getSplitterBounds(n,!0);const i=t.getRootDiv();d.current=t.getCurrentDocument().createElement("div"),d.current.style.position="absolute",d.current.className=t.getClassName(l.CLASSES.FLEXLAYOUT__SPLITTER_DRAG),d.current.style.cursor=n.getOrientation()===s.Orientation.HORZ?"ns-resize":"ew-resize";const a=n.getRect();n.getOrientation()===s.Orientation.VERT&&a.width<2?a.width=2:n.getOrientation()===s.Orientation.HORZ&&a.height<2&&(a.height=2),a.positionElement(d.current),i&&i.appendChild(d.current)},p=e=>{const n=t.getRootDiv();n&&n.removeChild(d.current)},m=()=>!0,g=e=>{const r=t.getDomRect();if(!r)return;const o=e.clientX-r.left,i=e.clientY-r.top;d&&(n.getOrientation()===s.Orientation.HORZ?d.current.style.top=b(i-4)+"px":d.current.style.left=b(o-4)+"px"),t.isRealtimeResize()&&y()},y=()=>{let e=0;if(d&&(e=n.getOrientation()===s.Orientation.HORZ?d.current.offsetTop:d.current.offsetLeft),f instanceof a.BorderNode){const r=f._calculateSplit(n,e);t.doAction(i.Actions.adjustBorderSplit(n.getParent().getId(),r))}else{const r=f._calculateSplit(n,e);void 0!==r&&t.doAction(i.Actions.adjustSplit(r))}},v=()=>{y();const e=t.getRootDiv();e&&e.removeChild(d.current)},b=e=>{const t=u.current;let n=e;return et[1]&&(n=t[1]),n},O=t.getClassName;let w=n.getRect();const S=w.styleWithPosition({cursor:n.getOrientation()===s.Orientation.HORZ?"ns-resize":"ew-resize"});let x=O(l.CLASSES.FLEXLAYOUT__SPLITTER)+" "+O(l.CLASSES.FLEXLAYOUT__SPLITTER_+n.getOrientation().getName());f instanceof a.BorderNode?x+=" "+O(l.CLASSES.FLEXLAYOUT__SPLITTER_BORDER):void 0!==n.getModel().getMaximizedTabset()&&(S.display="none");const E=n.getModel().getSplitterExtra();if(0===E)return r.createElement("div",{style:S,"data-layout-path":c,className:x,onTouchStart:h,onMouseDown:h});{let e=w.clone();e.x=0,e.y=0,n.getOrientation()===s.Orientation.VERT?e.width+=E:e.height+=E;const t=e.styleWithPosition({cursor:n.getOrientation()===s.Orientation.HORZ?"ns-resize":"ew-resize"}),o=O(l.CLASSES.FLEXLAYOUT__SPLITTER_EXTRA);return r.createElement("div",{style:S,"data-layout-path":c,className:x},r.createElement("div",{style:t,className:o,onTouchStart:h,onMouseDown:h}))}}},60178:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Tab=void 0;const r=n(36198),o=n(36198),i=n(33076),a=n(52733),s=n(24115),l=n(86180),c=n(25551),u=n(74268),d=n(14592);t.Tab=e=>{const{layout:t,selected:n,node:f,factory:h,path:p}=e,[m,g]=r.useState(!e.node.isEnableRenderOnDemand()||e.selected);r.useLayoutEffect((()=>{!m&&n&&g(!0)}));const y=()=>{const e=f.getParent();e.getType()===a.TabSetNode.TYPE&&(e.isActive()||t.doAction(i.Actions.setActiveTabset(e.getId())))},v=t.getClassName,b=f.getModel().isUseVisibility(),O=f.getParent(),w=f._styleWithPosition();let S;n||(0,d.hideElement)(w,b),O instanceof a.TabSetNode&&(void 0===f.getModel().getMaximizedTabset()||O.isMaximized()||(0,d.hideElement)(w,b)),m&&(S=h(f));let x=v(s.CLASSES.FLEXLAYOUT__TAB);return O instanceof u.BorderNode&&(x+=" "+v(s.CLASSES.FLEXLAYOUT__TAB_BORDER),x+=" "+v(s.CLASSES.FLEXLAYOUT__TAB_BORDER_+O.getLocation().getName())),void 0!==f.getContentClassName()&&(x+=" "+f.getContentClassName()),r.createElement("div",{className:x,"data-layout-path":p,onMouseDown:y,onTouchStart:y,style:w},r.createElement(l.ErrorBoundary,{message:e.layout.i18nName(c.I18nLabel.Error_rendering_component)},r.createElement(o.Fragment,null,S)))}},22112:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.TabButton=void 0;const r=n(36198),o=n(25551),i=n(33076),a=n(10807),s=n(47562),l=n(24115),c=n(14592);t.TabButton=e=>{const{layout:t,node:n,selected:u,iconFactory:d,titleFactory:f,icons:h,path:p}=e,m=r.useRef(null),g=r.useRef(null),y=e=>{(0,c.isAuxMouseEvent)(e)||t.getEditingTab()||t.dragStart(e,void 0,n,n.isEnableDrag(),b,O)},v=e=>{(0,c.isAuxMouseEvent)(e)&&t.auxMouseClick(n,e)},b=()=>{t.doAction(i.Actions.selectTab(n.getId()))},O=e=>{n.isEnableRename()&&w()},w=()=>{t.setEditingTab(n),t.getCurrentDocument().body.addEventListener("mousedown",S),t.getCurrentDocument().body.addEventListener("touchstart",S)},S=e=>{e.target!==g.current&&(t.getCurrentDocument().body.removeEventListener("mousedown",S),t.getCurrentDocument().body.removeEventListener("touchstart",S),t.setEditingTab(void 0))},x=e=>{(()=>{const e=n.getCloseType();return!!(u||e===s.ICloseType.Always||e===s.ICloseType.Visible&&window.matchMedia&&window.matchMedia("(hover: hover) and (pointer: fine)").matches)})()?t.doAction(i.Actions.deleteTab(n.getId())):b()},E=e=>{e.stopPropagation()};r.useLayoutEffect((()=>{T(),t.getEditingTab()===n&&g.current.select()}));const T=()=>{var e;const r=t.getDomRect(),o=null===(e=m.current)||void 0===e?void 0:e.getBoundingClientRect();o&&r&&n._setTabRect(new a.Rect(o.left-r.left,o.top-r.top,o.width,o.height))},C=e=>{e.stopPropagation()},P=e=>{"Escape"===e.code?t.setEditingTab(void 0):"Enter"===e.code&&(t.setEditingTab(void 0),t.doAction(i.Actions.renameTab(n.getId(),e.target.value)))},_=t.getClassName,k=n.getParent(),j=k.isEnableSingleTabStretch()&&1===k.getChildren().length;let A=j?l.CLASSES.FLEXLAYOUT__TAB_BUTTON_STRETCH:l.CLASSES.FLEXLAYOUT__TAB_BUTTON,R=_(A);R+=" "+_(A+"_"+k.getTabLocation()),j||(R+=u?" "+_(A+"--selected"):" "+_(A+"--unselected")),void 0!==n.getClassName()&&(R+=" "+n.getClassName());const D=(0,c.getRenderStateEx)(t,n,d,f);let L=D.content?r.createElement("div",{className:_(l.CLASSES.FLEXLAYOUT__TAB_BUTTON_CONTENT)},D.content):null;const I=D.leading?r.createElement("div",{className:_(l.CLASSES.FLEXLAYOUT__TAB_BUTTON_LEADING)},D.leading):null;if(t.getEditingTab()===n&&(L=r.createElement("input",{ref:g,className:_(l.CLASSES.FLEXLAYOUT__TAB_BUTTON_TEXTBOX),"data-layout-path":p+"/textbox",type:"text",autoFocus:!0,defaultValue:n.getName(),onKeyDown:P,onMouseDown:C,onTouchStart:C})),n.isEnableClose()&&!j){const e=t.i18nName(o.I18nLabel.Close_Tab);D.buttons.push(r.createElement("div",{key:"close","data-layout-path":p+"/button/close",title:e,className:_(l.CLASSES.FLEXLAYOUT__TAB_BUTTON_TRAILING),onMouseDown:E,onClick:x,onTouchStart:E},"function"==typeof h.close?h.close(n):h.close))}return r.createElement("div",{ref:m,"data-layout-path":p,className:R,onMouseDown:y,onClick:v,onAuxClick:v,onContextMenu:e=>{t.showContextMenu(n,e)},onTouchStart:y,title:n.getHelpText()},I,L,D.buttons)}},15797:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.TabButtonStamp=void 0;const r=n(36198),o=n(24115),i=n(14592);t.TabButtonStamp=e=>{const{layout:t,node:n,iconFactory:a,titleFactory:s}=e,l=r.useRef(null),c=t.getClassName;let u=c(o.CLASSES.FLEXLAYOUT__TAB_BUTTON_STAMP);const d=(0,i.getRenderStateEx)(t,n,a,s);let f=d.content?r.createElement("div",{className:c(o.CLASSES.FLEXLAYOUT__TAB_BUTTON_CONTENT)},d.content):n._getNameForOverflowMenu();const h=d.leading?r.createElement("div",{className:c(o.CLASSES.FLEXLAYOUT__TAB_BUTTON_LEADING)},d.leading):null;return r.createElement("div",{ref:l,className:u,title:n.getHelpText()},h,f)}},62022:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.TabFloating=void 0;const r=n(36198),o=n(33076),i=n(52733),a=n(24115),s=n(25551),l=n(14592);t.TabFloating=e=>{const{layout:t,selected:n,node:c,path:u}=e,d=()=>{c.getWindow()&&c.getWindow().focus()},f=()=>{t.doAction(o.Actions.unFloatTab(c.getId()))},h=()=>{const e=c.getParent();e.getType()===i.TabSetNode.TYPE&&(e.isActive()||t.doAction(o.Actions.setActiveTabset(e.getId())))},p=e=>{e.preventDefault(),d()},m=e=>{e.preventDefault(),f()},g=t.getClassName,y=c.getParent(),v=c._styleWithPosition();n||(0,l.hideElement)(v,c.getModel().isUseVisibility()),y instanceof i.TabSetNode&&(void 0===c.getModel().getMaximizedTabset()||y.isMaximized()||(0,l.hideElement)(v,c.getModel().isUseVisibility()));const b=t.i18nName(s.I18nLabel.Floating_Window_Message),O=t.i18nName(s.I18nLabel.Floating_Window_Show_Window),w=t.i18nName(s.I18nLabel.Floating_Window_Dock_Window),S=t.getOnRenderFloatingTabPlaceholder();return S?r.createElement("div",{className:g(a.CLASSES.FLEXLAYOUT__TAB_FLOATING),onMouseDown:h,onTouchStart:h,style:v},S(f,d)):r.createElement("div",{className:g(a.CLASSES.FLEXLAYOUT__TAB_FLOATING),"data-layout-path":u,onMouseDown:h,onTouchStart:h,style:v},r.createElement("div",{className:g(a.CLASSES.FLEXLAYOUT__TAB_FLOATING_INNER)},r.createElement("div",null,b),r.createElement("div",null,r.createElement("a",{href:"#",onClick:p},O)),r.createElement("div",null,r.createElement("a",{href:"#",onClick:m},w))))}},1680:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.useTabOverflow=void 0;const r=n(36198),o=n(10807),i=n(52733),a=n(13380);t.useTabOverflow=(e,t,n,s)=>{const l=r.useRef(!0),c=r.useRef(!1),u=r.useRef(new o.Rect(0,0,0,0)),d=r.useRef(null),[f,h]=r.useState(0),p=r.useRef(!1),[m,g]=r.useState([]),y=r.useRef(0);r.useLayoutEffect((()=>{p.current=!1}),[e.getSelectedNode(),e.getRect().width,e.getRect().height]),r.useLayoutEffect((()=>{x()}));const v=d.current;r.useEffect((()=>{if(v)return v.addEventListener("wheel",b,{passive:!1}),()=>{v.removeEventListener("wheel",b)}}),[v]);const b=e=>{e.preventDefault()},O=e=>t===a.Orientation.HORZ?e.x:e.y,w=e=>t===a.Orientation.HORZ?e.getRight():e.getBottom(),S=e=>t===a.Orientation.HORZ?e.width:e.height,x=()=>{!0===l.current&&(c.current=!1);const t=e instanceof i.TabSetNode?e.getRect():e.getTabHeaderRect();let r=e.getChildren()[e.getChildren().length-1];const o=null===s.current?0:S(s.current.getBoundingClientRect());if(!0===l.current||0===y.current&&0!==m.length||t.width!==u.current.width||t.height!==u.current.height){y.current=m.length,u.current=t;const a=!(e instanceof i.TabSetNode)||!0===e.isEnableTabStrip();let s=w(t)-o;if(null!==n.current&&(s-=S(n.current.getBoundingClientRect())),a&&e.getChildren().length>0){if(0===m.length&&0===f&&w(r.getTabRect())+2=s-O(t)?n=O(t)-r:(i>s||rs&&(n=s-i))}const i=Math.max(0,s-(w(r.getTabRect())+2+n)),a=Math.min(0,f+n+i),u=a-f,d=[];for(let n=0;ns)&&d.push({node:r,index:n})}d.length>0&&(c.current=!0),l.current=!1,g(d),h(a)}}else l.current=!0};return{selfRef:d,position:f,userControlledLeft:p,hiddenTabs:m,onMouseWheel:e=>{let t=0;t=Math.abs(e.deltaX)>Math.abs(e.deltaY)?-e.deltaX:-e.deltaY,1===e.deltaMode&&(t*=40),h(f+t),p.current=!0,e.stopPropagation()},tabsTruncated:c.current}}},70470:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.TabSet=void 0;const r=n(36198),o=n(25551),i=n(33076),a=n(40031),s=n(22112),l=n(1680),c=n(13380),u=n(24115),d=n(14592);t.TabSet=e=>{const{node:t,layout:n,iconFactory:f,titleFactory:h,icons:p,path:m}=e,g=r.useRef(null),y=r.useRef(null),v=r.useRef(null),b=r.useRef(null),{selfRef:O,position:w,userControlledLeft:S,hiddenTabs:x,onMouseWheel:E,tabsTruncated:T}=(0,l.useTabOverflow)(t,c.Orientation.HORZ,g,b),C=e=>{const r=n.getShowOverflowMenu();if(void 0!==r)r(t,e,x,P);else{const e=y.current;(0,a.showPopup)(e,x,P,n,f,h)}e.stopPropagation()},P=e=>{n.doAction(i.Actions.selectTab(e.node.getId())),S.current=!1},_=e=>{if(!(0,d.isAuxMouseEvent)(e)){let r=t.getName();if(r=void 0===r?"":": "+r,n.doAction(i.Actions.setActiveTabset(t.getId())),!n.getEditingTab()){const i=n.i18nName(o.I18nLabel.Move_Tabset,r);void 0!==t.getModel().getMaximizedTabset()?n.dragStart(e,i,t,!1,(e=>{}),M):n.dragStart(e,i,t,t.isEnableDrag(),(e=>{}),M)}}},k=e=>{(0,d.isAuxMouseEvent)(e)&&n.auxMouseClick(t,e)},j=e=>{n.showContextMenu(t,e)},A=e=>{e.stopPropagation()},R=e=>{t.canMaximize()&&n.maximize(t),e.stopPropagation()},D=e=>{n.doAction(i.Actions.deleteTabset(t.getId())),e.stopPropagation()},L=e=>{n.doAction(i.Actions.deleteTab(t.getChildren()[0].getId())),e.stopPropagation()},I=e=>{void 0!==$&&n.doAction(i.Actions.floatTab($.getId())),e.stopPropagation()},M=e=>{t.canMaximize()&&n.maximize(t)},N=n.getClassName;null!==v.current&&0!==v.current.scrollLeft&&(v.current.scrollLeft=0);const $=t.getSelectedNode();let B=t._styleWithPosition();void 0===t.getModel().getMaximizedTabset()||t.isMaximized()||(0,d.hideElement)(B,t.getModel().isUseVisibility());const F=[];if(t.isEnableTabStrip())for(let e=0;e0&&(T||X?V=[...z,...V]:F.push(r.createElement("div",{ref:b,key:"sticky_buttons_container",onMouseDown:A,onTouchStart:A,onDragStart:e=>{e.preventDefault()},className:N(u.CLASSES.FLEXLAYOUT__TAB_TOOLBAR_STICKY_BUTTONS_CONTAINER)},z))),x.length>0){const e=n.i18nName(o.I18nLabel.Overflow_Menu_Tooltip);let i;i="function"==typeof p.more?p.more(t,x):r.createElement(r.Fragment,null,p.more,r.createElement("div",{className:N(u.CLASSES.FLEXLAYOUT__TAB_BUTTON_OVERFLOW_COUNT)},x.length)),V.splice(Math.min(W.overflowPosition,V.length),0,r.createElement("button",{key:"overflowbutton","data-layout-path":m+"/button/overflow",ref:y,className:N(u.CLASSES.FLEXLAYOUT__TAB_TOOLBAR_BUTTON)+" "+N(u.CLASSES.FLEXLAYOUT__TAB_BUTTON_OVERFLOW),title:e,onClick:C,onMouseDown:A,onTouchStart:A},i))}if(void 0!==$&&n.isSupportsPopout()&&$.isEnableFloat()&&!$.isFloating()){const e=n.i18nName(o.I18nLabel.Float_Tab);V.push(r.createElement("button",{key:"float","data-layout-path":m+"/button/float",title:e,className:N(u.CLASSES.FLEXLAYOUT__TAB_TOOLBAR_BUTTON)+" "+N(u.CLASSES.FLEXLAYOUT__TAB_TOOLBAR_BUTTON_FLOAT),onClick:I,onMouseDown:A,onTouchStart:A},"function"==typeof p.popout?p.popout($):p.popout))}if(t.canMaximize()){const e=n.i18nName(o.I18nLabel.Restore),i=n.i18nName(o.I18nLabel.Maximize);(Q?U:V).push(r.createElement("button",{key:"max","data-layout-path":m+"/button/max",title:t.isMaximized()?e:i,className:N(u.CLASSES.FLEXLAYOUT__TAB_TOOLBAR_BUTTON)+" "+N(u.CLASSES.FLEXLAYOUT__TAB_TOOLBAR_BUTTON_+(t.isMaximized()?"max":"min")),onClick:R,onMouseDown:A,onTouchStart:A},t.isMaximized()?"function"==typeof p.restore?p.restore(t):p.restore:"function"==typeof p.maximize?p.maximize(t):p.maximize))}if(!t.isMaximized()&&q){const e=X?n.i18nName(o.I18nLabel.Close_Tab):n.i18nName(o.I18nLabel.Close_Tabset);(Q?U:V).push(r.createElement("button",{key:"close","data-layout-path":m+"/button/close",title:e,className:N(u.CLASSES.FLEXLAYOUT__TAB_TOOLBAR_BUTTON)+" "+N(u.CLASSES.FLEXLAYOUT__TAB_TOOLBAR_BUTTON_CLOSE),onClick:X?L:D,onMouseDown:A,onTouchStart:A},"function"==typeof p.closeTabset?p.closeTabset(t):p.closeTabset))}const H=r.createElement("div",{key:"toolbar",ref:g,className:N(u.CLASSES.FLEXLAYOUT__TAB_TOOLBAR),onMouseDown:A,onTouchStart:A,onDragStart:e=>{e.preventDefault()}},V);let Z,Y,K=N(u.CLASSES.FLEXLAYOUT__TABSET_TABBAR_OUTER);if(void 0!==t.getClassNameTabStrip()&&(K+=" "+t.getClassNameTabStrip()),K+=" "+u.CLASSES.FLEXLAYOUT__TABSET_TABBAR_OUTER_+t.getTabLocation(),t.isActive()&&!Q&&(K+=" "+N(u.CLASSES.FLEXLAYOUT__TABSET_SELECTED)),t.isMaximized()&&!Q&&(K+=" "+N(u.CLASSES.FLEXLAYOUT__TABSET_MAXIMIZED)),X){const e=t.getChildren()[0];void 0!==e.getTabSetClassName()&&(K+=" "+e.getTabSetClassName())}if(Q){const e=r.createElement("div",{key:"toolbar",ref:g,className:N(u.CLASSES.FLEXLAYOUT__TAB_TOOLBAR),onMouseDown:A,onTouchStart:A,onDragStart:e=>{e.preventDefault()}},U);let n=N(u.CLASSES.FLEXLAYOUT__TABSET_HEADER);t.isActive()&&(n+=" "+N(u.CLASSES.FLEXLAYOUT__TABSET_SELECTED)),t.isMaximized()&&(n+=" "+N(u.CLASSES.FLEXLAYOUT__TABSET_MAXIMIZED)),void 0!==t.getClassNameHeader()&&(n+=" "+t.getClassNameHeader()),Z=r.createElement("div",{className:n,style:{height:t.getHeaderHeight()+"px"},"data-layout-path":m+"/header",onMouseDown:_,onContextMenu:j,onClick:k,onAuxClick:k,onTouchStart:_},r.createElement("div",{className:N(u.CLASSES.FLEXLAYOUT__TABSET_HEADER_CONTENT)},G),e)}const J={height:t.getTabStripHeight()+"px"};Y=r.createElement("div",{className:K,style:J,"data-layout-path":m+"/tabstrip",onMouseDown:_,onContextMenu:j,onClick:k,onAuxClick:k,onTouchStart:_},r.createElement("div",{ref:v,className:N(u.CLASSES.FLEXLAYOUT__TABSET_TABBAR_INNER)+" "+N(u.CLASSES.FLEXLAYOUT__TABSET_TABBAR_INNER_+t.getTabLocation())},r.createElement("div",{style:{left:w,width:X?"100%":"10000px"},className:N(u.CLASSES.FLEXLAYOUT__TABSET_TABBAR_INNER_TAB_CONTAINER)+" "+N(u.CLASSES.FLEXLAYOUT__TABSET_TABBAR_INNER_TAB_CONTAINER_+t.getTabLocation())},F)),H),B=n.styleFont(B);var ee=void 0;if(0===t.getChildren().length){const e=n.getTabSetPlaceHolderCallback();e&&(ee=e(t))}const te=r.createElement("div",{className:N(u.CLASSES.FLEXLAYOUT__TABSET_CONTENT)},ee);var ne;return ne="top"===t.getTabLocation()?r.createElement(r.Fragment,null,Z,Y,te):r.createElement(r.Fragment,null,Z,te,Y),r.createElement("div",{ref:O,dir:"ltr","data-layout-path":m,style:B,className:N(u.CLASSES.FLEXLAYOUT__TABSET),onWheel:E},ne)}},14592:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.isAuxMouseEvent=t.hideElement=t.getRenderStateEx=void 0;const r=n(36198);t.getRenderStateEx=function(e,t,n,o,i){let a=n?n(t):void 0,s=t.getName(),l=t.getName();if(void 0===i&&(i=0),void 0!==o){const e=o(t);void 0!==e&&("string"==typeof e?(s=e,l=e):void 0!==e.titleContent?(s=e.titleContent,l=e.name):s=e)}void 0===a&&void 0!==t.getIcon()&&(a=0!==i?r.createElement("img",{style:{width:"1em",height:"1em",transform:"rotate("+i+"deg)"},src:t.getIcon(),alt:"leadingContent"}):r.createElement("img",{style:{width:"1em",height:"1em"},src:t.getIcon(),alt:"leadingContent"}));const c={leading:a,content:s,name:l,buttons:[]};return e.customizeTab(t,c),t._setRenderedName(c.name),c},t.hideElement=function(e,t){t?e.visibility="hidden":e.display="none"},t.isAuxMouseEvent=function(e){let t=!1;return e.nativeEvent instanceof MouseEvent&&(0!==e.nativeEvent.button||e.ctrlKey||e.altKey||e.metaKey||e.shiftKey)&&(t=!0),t}},81613:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>f});var r=n(71739),o=n.n(r),i=/\s([^'"/\s><]+?)[\s/>]|([^\s=]+)=\s?(".*?"|'.*?')/g;function a(e){var t={type:"tag",name:"",voidElement:!1,attrs:{},children:[]},n=e.match(/<\/?([^\s]+?)[/\s>]/);if(n&&(t.name=n[1],(o()[n[1]]||"/"===e.charAt(e.length-2))&&(t.voidElement=!0),t.name.startsWith("!--"))){var r=e.indexOf("--\x3e");return{type:"comment",comment:-1!==r?e.slice(4,r):""}}for(var a=new RegExp(i),s=null;null!==(s=a.exec(e));)if(s[0].trim())if(s[1]){var l=s[1].trim(),c=[l,""];l.indexOf("=")>-1&&(c=l.split("=")),t.attrs[c[0]]=c[1],a.lastIndex--}else s[2]&&(t.attrs[s[2]]=s[3].trim().substring(1,s[3].length-1));return t}var s=/<[a-zA-Z0-9\-\!\/](?:"[^"]*"|'[^']*'|[^'">])*>/g,l=/^\s*$/,c=Object.create(null);function u(e,t){switch(t.type){case"text":return e+t.content;case"tag":return e+="<"+t.name+(t.attrs?function(e){var t=[];for(var n in e)t.push(n+'="'+e[n]+'"');return t.length?" "+t.join(" "):""}(t.attrs):"")+(t.voidElement?"/>":">"),t.voidElement?e:e+t.children.reduce(u,"")+"";case"comment":return e+"\x3c!--"+t.comment+"--\x3e"}}var d={parse:function(e,t){t||(t={}),t.components||(t.components=c);var n,r=[],o=[],i=-1,u=!1;if(0!==e.indexOf("<")){var d=e.indexOf("<");r.push({type:"text",content:-1===d?e:e.substring(0,d)})}return e.replace(s,(function(s,c){if(u){if(s!=="")return;u=!1}var d,f="/"!==s.charAt(1),h=s.startsWith("\x3c!--"),p=c+s.length,m=e.charAt(p);if(h){var g=a(s);return i<0?(r.push(g),r):((d=o[i]).children.push(g),r)}if(f&&(i++,"tag"===(n=a(s)).type&&t.components[n.name]&&(n.type="component",u=!0),n.voidElement||u||!m||"<"===m||n.children.push({type:"text",content:e.slice(p,e.indexOf("<",p))}),0===i&&r.push(n),(d=o[i-1])&&d.children.push(n),o[i]=n),(!f||n.voidElement)&&(i>-1&&(n.voidElement||n.name===s.slice(2,-1))&&(i--,n=-1===i?r:o[i]),!u&&"<"!==m&&m)){d=-1===i?r:o[i].children;var y=e.indexOf("<",p),v=e.slice(p,-1===y?void 0:y);l.test(v)&&(v=" "),(y>-1&&i+d.length>=0||" "!==v)&&d.push({type:"text",content:v})}})),r},stringify:function(e){return e.reduce((function(e,t){return e+u("",t)}),"")}};const f=d},96486:function(e,t,n){var r;e=n.nmd(e),function(){var o,i="Expected a function",a="__lodash_hash_undefined__",s="__lodash_placeholder__",l=16,c=32,u=64,d=128,f=256,h=1/0,p=9007199254740991,m=NaN,g=4294967295,y=[["ary",d],["bind",1],["bindKey",2],["curry",8],["curryRight",l],["flip",512],["partial",c],["partialRight",u],["rearg",f]],v="[object Arguments]",b="[object Array]",O="[object Boolean]",w="[object Date]",S="[object Error]",x="[object Function]",E="[object GeneratorFunction]",T="[object Map]",C="[object Number]",P="[object Object]",_="[object Promise]",k="[object RegExp]",j="[object Set]",A="[object String]",R="[object Symbol]",D="[object WeakMap]",L="[object ArrayBuffer]",I="[object DataView]",M="[object Float32Array]",N="[object Float64Array]",$="[object Int8Array]",B="[object Int16Array]",F="[object Int32Array]",Q="[object Uint8Array]",z="[object Uint8ClampedArray]",V="[object Uint16Array]",U="[object Uint32Array]",W=/\b__p \+= '';/g,G=/\b(__p \+=) '' \+/g,X=/(__e\(.*?\)|\b__t\)) \+\n'';/g,q=/&(?:amp|lt|gt|quot|#39);/g,H=/[&<>"']/g,Z=RegExp(q.source),Y=RegExp(H.source),K=/<%-([\s\S]+?)%>/g,J=/<%([\s\S]+?)%>/g,ee=/<%=([\s\S]+?)%>/g,te=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,ne=/^\w*$/,re=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,oe=/[\\^$.*+?()[\]{}|]/g,ie=RegExp(oe.source),ae=/^\s+/,se=/\s/,le=/\{(?:\n\/\* \[wrapped with .+\] \*\/)?\n?/,ce=/\{\n\/\* \[wrapped with (.+)\] \*/,ue=/,? & /,de=/[^\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\x7f]+/g,fe=/[()=,{}\[\]\/\s]/,he=/\\(\\)?/g,pe=/\$\{([^\\}]*(?:\\.[^\\}]*)*)\}/g,me=/\w*$/,ge=/^[-+]0x[0-9a-f]+$/i,ye=/^0b[01]+$/i,ve=/^\[object .+?Constructor\]$/,be=/^0o[0-7]+$/i,Oe=/^(?:0|[1-9]\d*)$/,we=/[\xc0-\xd6\xd8-\xf6\xf8-\xff\u0100-\u017f]/g,Se=/($^)/,xe=/['\n\r\u2028\u2029\\]/g,Ee="\\ud800-\\udfff",Te="\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff",Ce="\\u2700-\\u27bf",Pe="a-z\\xdf-\\xf6\\xf8-\\xff",_e="A-Z\\xc0-\\xd6\\xd8-\\xde",ke="\\ufe0e\\ufe0f",je="\\xac\\xb1\\xd7\\xf7\\x00-\\x2f\\x3a-\\x40\\x5b-\\x60\\x7b-\\xbf\\u2000-\\u206f \\t\\x0b\\f\\xa0\\ufeff\\n\\r\\u2028\\u2029\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000",Ae="['’]",Re="["+Ee+"]",De="["+je+"]",Le="["+Te+"]",Ie="\\d+",Me="["+Ce+"]",Ne="["+Pe+"]",$e="[^"+Ee+je+Ie+Ce+Pe+_e+"]",Be="\\ud83c[\\udffb-\\udfff]",Fe="[^"+Ee+"]",Qe="(?:\\ud83c[\\udde6-\\uddff]){2}",ze="[\\ud800-\\udbff][\\udc00-\\udfff]",Ve="["+_e+"]",Ue="\\u200d",We="(?:"+Ne+"|"+$e+")",Ge="(?:"+Ve+"|"+$e+")",Xe="(?:['’](?:d|ll|m|re|s|t|ve))?",qe="(?:['’](?:D|LL|M|RE|S|T|VE))?",He="(?:"+Le+"|"+Be+")"+"?",Ze="["+ke+"]?",Ye=Ze+He+("(?:"+Ue+"(?:"+[Fe,Qe,ze].join("|")+")"+Ze+He+")*"),Ke="(?:"+[Me,Qe,ze].join("|")+")"+Ye,Je="(?:"+[Fe+Le+"?",Le,Qe,ze,Re].join("|")+")",et=RegExp(Ae,"g"),tt=RegExp(Le,"g"),nt=RegExp(Be+"(?="+Be+")|"+Je+Ye,"g"),rt=RegExp([Ve+"?"+Ne+"+"+Xe+"(?="+[De,Ve,"$"].join("|")+")",Ge+"+"+qe+"(?="+[De,Ve+We,"$"].join("|")+")",Ve+"?"+We+"+"+Xe,Ve+"+"+qe,"\\d*(?:1ST|2ND|3RD|(?![123])\\dTH)(?=\\b|[a-z_])","\\d*(?:1st|2nd|3rd|(?![123])\\dth)(?=\\b|[A-Z_])",Ie,Ke].join("|"),"g"),ot=RegExp("["+Ue+Ee+Te+ke+"]"),it=/[a-z][A-Z]|[A-Z]{2}[a-z]|[0-9][a-zA-Z]|[a-zA-Z][0-9]|[^a-zA-Z0-9 ]/,at=["Array","Buffer","DataView","Date","Error","Float32Array","Float64Array","Function","Int8Array","Int16Array","Int32Array","Map","Math","Object","Promise","RegExp","Set","String","Symbol","TypeError","Uint8Array","Uint8ClampedArray","Uint16Array","Uint32Array","WeakMap","_","clearTimeout","isFinite","parseInt","setTimeout"],st=-1,lt={};lt[M]=lt[N]=lt[$]=lt[B]=lt[F]=lt[Q]=lt[z]=lt[V]=lt[U]=!0,lt[v]=lt[b]=lt[L]=lt[O]=lt[I]=lt[w]=lt[S]=lt[x]=lt[T]=lt[C]=lt[P]=lt[k]=lt[j]=lt[A]=lt[D]=!1;var ct={};ct[v]=ct[b]=ct[L]=ct[I]=ct[O]=ct[w]=ct[M]=ct[N]=ct[$]=ct[B]=ct[F]=ct[T]=ct[C]=ct[P]=ct[k]=ct[j]=ct[A]=ct[R]=ct[Q]=ct[z]=ct[V]=ct[U]=!0,ct[S]=ct[x]=ct[D]=!1;var ut={"\\":"\\","'":"'","\n":"n","\r":"r","\u2028":"u2028","\u2029":"u2029"},dt=parseFloat,ft=parseInt,ht="object"==typeof n.g&&n.g&&n.g.Object===Object&&n.g,pt="object"==typeof self&&self&&self.Object===Object&&self,mt=ht||pt||Function("return this")(),gt=t&&!t.nodeType&&t,yt=gt&&e&&!e.nodeType&&e,vt=yt&&yt.exports===gt,bt=vt&&ht.process,Ot=function(){try{var e=yt&&yt.require&&yt.require("util").types;return e||bt&&bt.binding&&bt.binding("util")}catch(e){}}(),wt=Ot&&Ot.isArrayBuffer,St=Ot&&Ot.isDate,xt=Ot&&Ot.isMap,Et=Ot&&Ot.isRegExp,Tt=Ot&&Ot.isSet,Ct=Ot&&Ot.isTypedArray;function Pt(e,t,n){switch(n.length){case 0:return e.call(t);case 1:return e.call(t,n[0]);case 2:return e.call(t,n[0],n[1]);case 3:return e.call(t,n[0],n[1],n[2])}return e.apply(t,n)}function _t(e,t,n,r){for(var o=-1,i=null==e?0:e.length;++o-1}function Lt(e,t,n){for(var r=-1,o=null==e?0:e.length;++r-1;);return n}function rn(e,t){for(var n=e.length;n--&&Vt(t,e[n],0)>-1;);return n}var on=qt({À:"A",Á:"A",Â:"A",Ã:"A",Ä:"A",Å:"A",à:"a",á:"a",â:"a",ã:"a",ä:"a",å:"a",Ç:"C",ç:"c",Ð:"D",ð:"d",È:"E",É:"E",Ê:"E",Ë:"E",è:"e",é:"e",ê:"e",ë:"e",Ì:"I",Í:"I",Î:"I",Ï:"I",ì:"i",í:"i",î:"i",ï:"i",Ñ:"N",ñ:"n",Ò:"O",Ó:"O",Ô:"O",Õ:"O",Ö:"O",Ø:"O",ò:"o",ó:"o",ô:"o",õ:"o",ö:"o",ø:"o",Ù:"U",Ú:"U",Û:"U",Ü:"U",ù:"u",ú:"u",û:"u",ü:"u",Ý:"Y",ý:"y",ÿ:"y",Æ:"Ae",æ:"ae",Þ:"Th",þ:"th",ß:"ss",Ā:"A",Ă:"A",Ą:"A",ā:"a",ă:"a",ą:"a",Ć:"C",Ĉ:"C",Ċ:"C",Č:"C",ć:"c",ĉ:"c",ċ:"c",č:"c",Ď:"D",Đ:"D",ď:"d",đ:"d",Ē:"E",Ĕ:"E",Ė:"E",Ę:"E",Ě:"E",ē:"e",ĕ:"e",ė:"e",ę:"e",ě:"e",Ĝ:"G",Ğ:"G",Ġ:"G",Ģ:"G",ĝ:"g",ğ:"g",ġ:"g",ģ:"g",Ĥ:"H",Ħ:"H",ĥ:"h",ħ:"h",Ĩ:"I",Ī:"I",Ĭ:"I",Į:"I",İ:"I",ĩ:"i",ī:"i",ĭ:"i",į:"i",ı:"i",Ĵ:"J",ĵ:"j",Ķ:"K",ķ:"k",ĸ:"k",Ĺ:"L",Ļ:"L",Ľ:"L",Ŀ:"L",Ł:"L",ĺ:"l",ļ:"l",ľ:"l",ŀ:"l",ł:"l",Ń:"N",Ņ:"N",Ň:"N",Ŋ:"N",ń:"n",ņ:"n",ň:"n",ŋ:"n",Ō:"O",Ŏ:"O",Ő:"O",ō:"o",ŏ:"o",ő:"o",Ŕ:"R",Ŗ:"R",Ř:"R",ŕ:"r",ŗ:"r",ř:"r",Ś:"S",Ŝ:"S",Ş:"S",Š:"S",ś:"s",ŝ:"s",ş:"s",š:"s",Ţ:"T",Ť:"T",Ŧ:"T",ţ:"t",ť:"t",ŧ:"t",Ũ:"U",Ū:"U",Ŭ:"U",Ů:"U",Ű:"U",Ų:"U",ũ:"u",ū:"u",ŭ:"u",ů:"u",ű:"u",ų:"u",Ŵ:"W",ŵ:"w",Ŷ:"Y",ŷ:"y",Ÿ:"Y",Ź:"Z",Ż:"Z",Ž:"Z",ź:"z",ż:"z",ž:"z",IJ:"IJ",ij:"ij",Œ:"Oe",œ:"oe",ʼn:"'n",ſ:"s"}),an=qt({"&":"&","<":"<",">":">",'"':""","'":"'"});function sn(e){return"\\"+ut[e]}function ln(e){return ot.test(e)}function cn(e){var t=-1,n=Array(e.size);return e.forEach((function(e,r){n[++t]=[r,e]})),n}function un(e,t){return function(n){return e(t(n))}}function dn(e,t){for(var n=-1,r=e.length,o=0,i=[];++n",""":'"',"'":"'"});var vn=function e(t){var n,r=(t=null==t?mt:vn.defaults(mt.Object(),t,vn.pick(mt,at))).Array,se=t.Date,Ee=t.Error,Te=t.Function,Ce=t.Math,Pe=t.Object,_e=t.RegExp,ke=t.String,je=t.TypeError,Ae=r.prototype,Re=Te.prototype,De=Pe.prototype,Le=t["__core-js_shared__"],Ie=Re.toString,Me=De.hasOwnProperty,Ne=0,$e=(n=/[^.]+$/.exec(Le&&Le.keys&&Le.keys.IE_PROTO||""))?"Symbol(src)_1."+n:"",Be=De.toString,Fe=Ie.call(Pe),Qe=mt._,ze=_e("^"+Ie.call(Me).replace(oe,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$"),Ve=vt?t.Buffer:o,Ue=t.Symbol,We=t.Uint8Array,Ge=Ve?Ve.allocUnsafe:o,Xe=un(Pe.getPrototypeOf,Pe),qe=Pe.create,He=De.propertyIsEnumerable,Ze=Ae.splice,Ye=Ue?Ue.isConcatSpreadable:o,Ke=Ue?Ue.iterator:o,Je=Ue?Ue.toStringTag:o,nt=function(){try{var e=hi(Pe,"defineProperty");return e({},"",{}),e}catch(e){}}(),ot=t.clearTimeout!==mt.clearTimeout&&t.clearTimeout,ut=se&&se.now!==mt.Date.now&&se.now,ht=t.setTimeout!==mt.setTimeout&&t.setTimeout,pt=Ce.ceil,gt=Ce.floor,yt=Pe.getOwnPropertySymbols,bt=Ve?Ve.isBuffer:o,Ot=t.isFinite,Ft=Ae.join,qt=un(Pe.keys,Pe),bn=Ce.max,On=Ce.min,wn=se.now,Sn=t.parseInt,xn=Ce.random,En=Ae.reverse,Tn=hi(t,"DataView"),Cn=hi(t,"Map"),Pn=hi(t,"Promise"),_n=hi(t,"Set"),kn=hi(t,"WeakMap"),jn=hi(Pe,"create"),An=kn&&new kn,Rn={},Dn=Bi(Tn),Ln=Bi(Cn),In=Bi(Pn),Mn=Bi(_n),Nn=Bi(kn),$n=Ue?Ue.prototype:o,Bn=$n?$n.valueOf:o,Fn=$n?$n.toString:o;function Qn(e){if(ns(e)&&!Wa(e)&&!(e instanceof Wn)){if(e instanceof Un)return e;if(Me.call(e,"__wrapped__"))return Fi(e)}return new Un(e)}var zn=function(){function e(){}return function(t){if(!ts(t))return{};if(qe)return qe(t);e.prototype=t;var n=new e;return e.prototype=o,n}}();function Vn(){}function Un(e,t){this.__wrapped__=e,this.__actions__=[],this.__chain__=!!t,this.__index__=0,this.__values__=o}function Wn(e){this.__wrapped__=e,this.__actions__=[],this.__dir__=1,this.__filtered__=!1,this.__iteratees__=[],this.__takeCount__=g,this.__views__=[]}function Gn(e){var t=-1,n=null==e?0:e.length;for(this.clear();++t=t?e:t)),e}function cr(e,t,n,r,i,a){var s,l=1&t,c=2&t,u=4&t;if(n&&(s=i?n(e,r,i,a):n(e)),s!==o)return s;if(!ts(e))return e;var d=Wa(e);if(d){if(s=function(e){var t=e.length,n=new e.constructor(t);t&&"string"==typeof e[0]&&Me.call(e,"index")&&(n.index=e.index,n.input=e.input);return n}(e),!l)return Ao(e,s)}else{var f=gi(e),h=f==x||f==E;if(Ha(e))return To(e,l);if(f==P||f==v||h&&!i){if(s=c||h?{}:vi(e),!l)return c?function(e,t){return Ro(e,mi(e),t)}(e,function(e,t){return e&&Ro(t,Ds(t),e)}(s,e)):function(e,t){return Ro(e,pi(e),t)}(e,ir(s,e))}else{if(!ct[f])return i?e:{};s=function(e,t,n){var r=e.constructor;switch(t){case L:return Co(e);case O:case w:return new r(+e);case I:return function(e,t){var n=t?Co(e.buffer):e.buffer;return new e.constructor(n,e.byteOffset,e.byteLength)}(e,n);case M:case N:case $:case B:case F:case Q:case z:case V:case U:return Po(e,n);case T:return new r;case C:case A:return new r(e);case k:return function(e){var t=new e.constructor(e.source,me.exec(e));return t.lastIndex=e.lastIndex,t}(e);case j:return new r;case R:return o=e,Bn?Pe(Bn.call(o)):{}}var o}(e,f,l)}}a||(a=new Zn);var p=a.get(e);if(p)return p;a.set(e,s),ss(e)?e.forEach((function(r){s.add(cr(r,t,n,r,e,a))})):rs(e)&&e.forEach((function(r,o){s.set(o,cr(r,t,n,o,e,a))}));var m=d?o:(u?c?ai:ii:c?Ds:Rs)(e);return kt(m||e,(function(r,o){m&&(r=e[o=r]),nr(s,o,cr(r,t,n,o,e,a))})),s}function ur(e,t,n){var r=n.length;if(null==e)return!r;for(e=Pe(e);r--;){var i=n[r],a=t[i],s=e[i];if(s===o&&!(i in e)||!a(s))return!1}return!0}function dr(e,t,n){if("function"!=typeof e)throw new je(i);return Ri((function(){e.apply(o,n)}),t)}function fr(e,t,n,r){var o=-1,i=Dt,a=!0,s=e.length,l=[],c=t.length;if(!s)return l;n&&(t=It(t,Jt(n))),r?(i=Lt,a=!1):t.length>=200&&(i=tn,a=!1,t=new Hn(t));e:for(;++o-1},Xn.prototype.set=function(e,t){var n=this.__data__,r=rr(n,e);return r<0?(++this.size,n.push([e,t])):n[r][1]=t,this},qn.prototype.clear=function(){this.size=0,this.__data__={hash:new Gn,map:new(Cn||Xn),string:new Gn}},qn.prototype.delete=function(e){var t=di(this,e).delete(e);return this.size-=t?1:0,t},qn.prototype.get=function(e){return di(this,e).get(e)},qn.prototype.has=function(e){return di(this,e).has(e)},qn.prototype.set=function(e,t){var n=di(this,e),r=n.size;return n.set(e,t),this.size+=n.size==r?0:1,this},Hn.prototype.add=Hn.prototype.push=function(e){return this.__data__.set(e,a),this},Hn.prototype.has=function(e){return this.__data__.has(e)},Zn.prototype.clear=function(){this.__data__=new Xn,this.size=0},Zn.prototype.delete=function(e){var t=this.__data__,n=t.delete(e);return this.size=t.size,n},Zn.prototype.get=function(e){return this.__data__.get(e)},Zn.prototype.has=function(e){return this.__data__.has(e)},Zn.prototype.set=function(e,t){var n=this.__data__;if(n instanceof Xn){var r=n.__data__;if(!Cn||r.length<199)return r.push([e,t]),this.size=++n.size,this;n=this.__data__=new qn(r)}return n.set(e,t),this.size=n.size,this};var hr=Io(wr),pr=Io(Sr,!0);function mr(e,t){var n=!0;return hr(e,(function(e,r,o){return n=!!t(e,r,o)})),n}function gr(e,t,n){for(var r=-1,i=e.length;++r0&&n(s)?t>1?vr(s,t-1,n,r,o):Mt(o,s):r||(o[o.length]=s)}return o}var br=Mo(),Or=Mo(!0);function wr(e,t){return e&&br(e,t,Rs)}function Sr(e,t){return e&&Or(e,t,Rs)}function xr(e,t){return Rt(t,(function(t){return Ka(e[t])}))}function Er(e,t){for(var n=0,r=(t=wo(t,e)).length;null!=e&&nt}function _r(e,t){return null!=e&&Me.call(e,t)}function kr(e,t){return null!=e&&t in Pe(e)}function jr(e,t,n){for(var i=n?Lt:Dt,a=e[0].length,s=e.length,l=s,c=r(s),u=1/0,d=[];l--;){var f=e[l];l&&t&&(f=It(f,Jt(t))),u=On(f.length,u),c[l]=!n&&(t||a>=120&&f.length>=120)?new Hn(l&&f):o}f=e[0];var h=-1,p=c[0];e:for(;++h=s?l:l*("desc"==n[r]?-1:1)}return e.index-t.index}(e,t,n)}))}function Gr(e,t,n){for(var r=-1,o=t.length,i={};++r-1;)s!==e&&Ze.call(s,l,1),Ze.call(e,l,1);return e}function qr(e,t){for(var n=e?t.length:0,r=n-1;n--;){var o=t[n];if(n==r||o!==i){var i=o;Oi(o)?Ze.call(e,o,1):ho(e,o)}}return e}function Hr(e,t){return e+gt(xn()*(t-e+1))}function Zr(e,t){var n="";if(!e||t<1||t>p)return n;do{t%2&&(n+=e),(t=gt(t/2))&&(e+=e)}while(t);return n}function Yr(e,t){return Di(_i(e,t,ol),e+"")}function Kr(e){return Kn(Qs(e))}function Jr(e,t){var n=Qs(e);return Mi(n,lr(t,0,n.length))}function eo(e,t,n,r){if(!ts(e))return e;for(var i=-1,a=(t=wo(t,e)).length,s=a-1,l=e;null!=l&&++ii?0:i+t),(n=n>i?i:n)<0&&(n+=i),i=t>n?0:n-t>>>0,t>>>=0;for(var a=r(i);++o>>1,a=e[i];null!==a&&!cs(a)&&(n?a<=t:a=200){var c=t?null:Yo(e);if(c)return fn(c);a=!1,o=tn,l=new Hn}else l=t?[]:s;e:for(;++r=r?e:oo(e,t,n)}var Eo=ot||function(e){return mt.clearTimeout(e)};function To(e,t){if(t)return e.slice();var n=e.length,r=Ge?Ge(n):new e.constructor(n);return e.copy(r),r}function Co(e){var t=new e.constructor(e.byteLength);return new We(t).set(new We(e)),t}function Po(e,t){var n=t?Co(e.buffer):e.buffer;return new e.constructor(n,e.byteOffset,e.length)}function _o(e,t){if(e!==t){var n=e!==o,r=null===e,i=e==e,a=cs(e),s=t!==o,l=null===t,c=t==t,u=cs(t);if(!l&&!u&&!a&&e>t||a&&s&&c&&!l&&!u||r&&s&&c||!n&&c||!i)return 1;if(!r&&!a&&!u&&e1?n[i-1]:o,s=i>2?n[2]:o;for(a=e.length>3&&"function"==typeof a?(i--,a):o,s&&wi(n[0],n[1],s)&&(a=i<3?o:a,i=1),t=Pe(t);++r-1?i[a?t[s]:s]:o}}function Qo(e){return oi((function(t){var n=t.length,r=n,a=Un.prototype.thru;for(e&&t.reverse();r--;){var s=t[r];if("function"!=typeof s)throw new je(i);if(a&&!l&&"wrapper"==li(s))var l=new Un([],!0)}for(r=l?r:n;++r1&&O.reverse(),h&&ul))return!1;var u=a.get(e),d=a.get(t);if(u&&d)return u==t&&d==e;var f=-1,h=!0,p=2&n?new Hn:o;for(a.set(e,t),a.set(t,e);++f-1&&e%1==0&&e1?"& ":"")+t[r],t=t.join(n>2?", ":" "),e.replace(le,"{\n/* [wrapped with "+t+"] */\n")}(r,function(e,t){return kt(y,(function(n){var r="_."+n[0];t&n[1]&&!Dt(e,r)&&e.push(r)})),e.sort()}(function(e){var t=e.match(ce);return t?t[1].split(ue):[]}(r),n)))}function Ii(e){var t=0,n=0;return function(){var r=wn(),i=16-(r-n);if(n=r,i>0){if(++t>=800)return arguments[0]}else t=0;return e.apply(o,arguments)}}function Mi(e,t){var n=-1,r=e.length,i=r-1;for(t=t===o?r:t;++n1?e[t-1]:o;return n="function"==typeof n?(e.pop(),n):o,aa(e,n)}));function ha(e){var t=Qn(e);return t.__chain__=!0,t}function pa(e,t){return t(e)}var ma=oi((function(e){var t=e.length,n=t?e[0]:0,r=this.__wrapped__,i=function(t){return sr(t,e)};return!(t>1||this.__actions__.length)&&r instanceof Wn&&Oi(n)?((r=r.slice(n,+n+(t?1:0))).__actions__.push({func:pa,args:[i],thisArg:o}),new Un(r,this.__chain__).thru((function(e){return t&&!e.length&&e.push(o),e}))):this.thru(i)}));var ga=Do((function(e,t,n){Me.call(e,n)?++e[n]:ar(e,n,1)}));var ya=Fo(Ui),va=Fo(Wi);function ba(e,t){return(Wa(e)?kt:hr)(e,ui(t,3))}function Oa(e,t){return(Wa(e)?jt:pr)(e,ui(t,3))}var wa=Do((function(e,t,n){Me.call(e,n)?e[n].push(t):ar(e,n,[t])}));var Sa=Yr((function(e,t,n){var o=-1,i="function"==typeof t,a=Xa(e)?r(e.length):[];return hr(e,(function(e){a[++o]=i?Pt(t,e,n):Ar(e,t,n)})),a})),xa=Do((function(e,t,n){ar(e,n,t)}));function Ea(e,t){return(Wa(e)?It:Fr)(e,ui(t,3))}var Ta=Do((function(e,t,n){e[n?0:1].push(t)}),(function(){return[[],[]]}));var Ca=Yr((function(e,t){if(null==e)return[];var n=t.length;return n>1&&wi(e,t[0],t[1])?t=[]:n>2&&wi(t[0],t[1],t[2])&&(t=[t[0]]),Wr(e,vr(t,1),[])})),Pa=ut||function(){return mt.Date.now()};function _a(e,t,n){return t=n?o:t,t=e&&null==t?e.length:t,Jo(e,d,o,o,o,o,t)}function ka(e,t){var n;if("function"!=typeof t)throw new je(i);return e=ms(e),function(){return--e>0&&(n=t.apply(this,arguments)),e<=1&&(t=o),n}}var ja=Yr((function(e,t,n){var r=1;if(n.length){var o=dn(n,ci(ja));r|=c}return Jo(e,r,t,n,o)})),Aa=Yr((function(e,t,n){var r=3;if(n.length){var o=dn(n,ci(Aa));r|=c}return Jo(t,r,e,n,o)}));function Ra(e,t,n){var r,a,s,l,c,u,d=0,f=!1,h=!1,p=!0;if("function"!=typeof e)throw new je(i);function m(t){var n=r,i=a;return r=a=o,d=t,l=e.apply(i,n)}function g(e){var n=e-u;return u===o||n>=t||n<0||h&&e-d>=s}function y(){var e=Pa();if(g(e))return v(e);c=Ri(y,function(e){var n=t-(e-u);return h?On(n,s-(e-d)):n}(e))}function v(e){return c=o,p&&r?m(e):(r=a=o,l)}function b(){var e=Pa(),n=g(e);if(r=arguments,a=this,u=e,n){if(c===o)return function(e){return d=e,c=Ri(y,t),f?m(e):l}(u);if(h)return Eo(c),c=Ri(y,t),m(u)}return c===o&&(c=Ri(y,t)),l}return t=ys(t)||0,ts(n)&&(f=!!n.leading,s=(h="maxWait"in n)?bn(ys(n.maxWait)||0,t):s,p="trailing"in n?!!n.trailing:p),b.cancel=function(){c!==o&&Eo(c),d=0,r=u=a=c=o},b.flush=function(){return c===o?l:v(Pa())},b}var Da=Yr((function(e,t){return dr(e,1,t)})),La=Yr((function(e,t,n){return dr(e,ys(t)||0,n)}));function Ia(e,t){if("function"!=typeof e||null!=t&&"function"!=typeof t)throw new je(i);var n=function(){var r=arguments,o=t?t.apply(this,r):r[0],i=n.cache;if(i.has(o))return i.get(o);var a=e.apply(this,r);return n.cache=i.set(o,a)||i,a};return n.cache=new(Ia.Cache||qn),n}function Ma(e){if("function"!=typeof e)throw new je(i);return function(){var t=arguments;switch(t.length){case 0:return!e.call(this);case 1:return!e.call(this,t[0]);case 2:return!e.call(this,t[0],t[1]);case 3:return!e.call(this,t[0],t[1],t[2])}return!e.apply(this,t)}}Ia.Cache=qn;var Na=So((function(e,t){var n=(t=1==t.length&&Wa(t[0])?It(t[0],Jt(ui())):It(vr(t,1),Jt(ui()))).length;return Yr((function(r){for(var o=-1,i=On(r.length,n);++o=t})),Ua=Rr(function(){return arguments}())?Rr:function(e){return ns(e)&&Me.call(e,"callee")&&!He.call(e,"callee")},Wa=r.isArray,Ga=wt?Jt(wt):function(e){return ns(e)&&Cr(e)==L};function Xa(e){return null!=e&&es(e.length)&&!Ka(e)}function qa(e){return ns(e)&&Xa(e)}var Ha=bt||yl,Za=St?Jt(St):function(e){return ns(e)&&Cr(e)==w};function Ya(e){if(!ns(e))return!1;var t=Cr(e);return t==S||"[object DOMException]"==t||"string"==typeof e.message&&"string"==typeof e.name&&!is(e)}function Ka(e){if(!ts(e))return!1;var t=Cr(e);return t==x||t==E||"[object AsyncFunction]"==t||"[object Proxy]"==t}function Ja(e){return"number"==typeof e&&e==ms(e)}function es(e){return"number"==typeof e&&e>-1&&e%1==0&&e<=p}function ts(e){var t=typeof e;return null!=e&&("object"==t||"function"==t)}function ns(e){return null!=e&&"object"==typeof e}var rs=xt?Jt(xt):function(e){return ns(e)&&gi(e)==T};function os(e){return"number"==typeof e||ns(e)&&Cr(e)==C}function is(e){if(!ns(e)||Cr(e)!=P)return!1;var t=Xe(e);if(null===t)return!0;var n=Me.call(t,"constructor")&&t.constructor;return"function"==typeof n&&n instanceof n&&Ie.call(n)==Fe}var as=Et?Jt(Et):function(e){return ns(e)&&Cr(e)==k};var ss=Tt?Jt(Tt):function(e){return ns(e)&&gi(e)==j};function ls(e){return"string"==typeof e||!Wa(e)&&ns(e)&&Cr(e)==A}function cs(e){return"symbol"==typeof e||ns(e)&&Cr(e)==R}var us=Ct?Jt(Ct):function(e){return ns(e)&&es(e.length)&&!!lt[Cr(e)]};var ds=qo(Br),fs=qo((function(e,t){return e<=t}));function hs(e){if(!e)return[];if(Xa(e))return ls(e)?mn(e):Ao(e);if(Ke&&e[Ke])return function(e){for(var t,n=[];!(t=e.next()).done;)n.push(t.value);return n}(e[Ke]());var t=gi(e);return(t==T?cn:t==j?fn:Qs)(e)}function ps(e){return e?(e=ys(e))===h||e===-1/0?17976931348623157e292*(e<0?-1:1):e==e?e:0:0===e?e:0}function ms(e){var t=ps(e),n=t%1;return t==t?n?t-n:t:0}function gs(e){return e?lr(ms(e),0,g):0}function ys(e){if("number"==typeof e)return e;if(cs(e))return m;if(ts(e)){var t="function"==typeof e.valueOf?e.valueOf():e;e=ts(t)?t+"":t}if("string"!=typeof e)return 0===e?e:+e;e=Kt(e);var n=ye.test(e);return n||be.test(e)?ft(e.slice(2),n?2:8):ge.test(e)?m:+e}function vs(e){return Ro(e,Ds(e))}function bs(e){return null==e?"":uo(e)}var Os=Lo((function(e,t){if(Ti(t)||Xa(t))Ro(t,Rs(t),e);else for(var n in t)Me.call(t,n)&&nr(e,n,t[n])})),ws=Lo((function(e,t){Ro(t,Ds(t),e)})),Ss=Lo((function(e,t,n,r){Ro(t,Ds(t),e,r)})),xs=Lo((function(e,t,n,r){Ro(t,Rs(t),e,r)})),Es=oi(sr);var Ts=Yr((function(e,t){e=Pe(e);var n=-1,r=t.length,i=r>2?t[2]:o;for(i&&wi(t[0],t[1],i)&&(r=1);++n1),t})),Ro(e,ai(e),n),r&&(n=cr(n,7,ni));for(var o=t.length;o--;)ho(n,t[o]);return n}));var Ns=oi((function(e,t){return null==e?{}:function(e,t){return Gr(e,t,(function(t,n){return _s(e,n)}))}(e,t)}));function $s(e,t){if(null==e)return{};var n=It(ai(e),(function(e){return[e]}));return t=ui(t),Gr(e,n,(function(e,n){return t(e,n[0])}))}var Bs=Ko(Rs),Fs=Ko(Ds);function Qs(e){return null==e?[]:en(e,Rs(e))}var zs=$o((function(e,t,n){return t=t.toLowerCase(),e+(n?Vs(t):t)}));function Vs(e){return Ys(bs(e).toLowerCase())}function Us(e){return(e=bs(e))&&e.replace(we,on).replace(tt,"")}var Ws=$o((function(e,t,n){return e+(n?"-":"")+t.toLowerCase()})),Gs=$o((function(e,t,n){return e+(n?" ":"")+t.toLowerCase()})),Xs=No("toLowerCase");var qs=$o((function(e,t,n){return e+(n?"_":"")+t.toLowerCase()}));var Hs=$o((function(e,t,n){return e+(n?" ":"")+Ys(t)}));var Zs=$o((function(e,t,n){return e+(n?" ":"")+t.toUpperCase()})),Ys=No("toUpperCase");function Ks(e,t,n){return e=bs(e),(t=n?o:t)===o?function(e){return it.test(e)}(e)?function(e){return e.match(rt)||[]}(e):function(e){return e.match(de)||[]}(e):e.match(t)||[]}var Js=Yr((function(e,t){try{return Pt(e,o,t)}catch(e){return Ya(e)?e:new Ee(e)}})),el=oi((function(e,t){return kt(t,(function(t){t=$i(t),ar(e,t,ja(e[t],e))})),e}));function tl(e){return function(){return e}}var nl=Qo(),rl=Qo(!0);function ol(e){return e}function il(e){return Mr("function"==typeof e?e:cr(e,1))}var al=Yr((function(e,t){return function(n){return Ar(n,e,t)}})),sl=Yr((function(e,t){return function(n){return Ar(e,n,t)}}));function ll(e,t,n){var r=Rs(t),o=xr(t,r);null!=n||ts(t)&&(o.length||!r.length)||(n=t,t=e,e=this,o=xr(t,Rs(t)));var i=!(ts(n)&&"chain"in n&&!n.chain),a=Ka(e);return kt(o,(function(n){var r=t[n];e[n]=r,a&&(e.prototype[n]=function(){var t=this.__chain__;if(i||t){var n=e(this.__wrapped__);return(n.__actions__=Ao(this.__actions__)).push({func:r,args:arguments,thisArg:e}),n.__chain__=t,n}return r.apply(e,Mt([this.value()],arguments))})})),e}function cl(){}var ul=Wo(It),dl=Wo(At),fl=Wo(Bt);function hl(e){return Si(e)?Xt($i(e)):function(e){return function(t){return Er(t,e)}}(e)}var pl=Xo(),ml=Xo(!0);function gl(){return[]}function yl(){return!1}var vl=Uo((function(e,t){return e+t}),0),bl=Zo("ceil"),Ol=Uo((function(e,t){return e/t}),1),wl=Zo("floor");var Sl,xl=Uo((function(e,t){return e*t}),1),El=Zo("round"),Tl=Uo((function(e,t){return e-t}),0);return Qn.after=function(e,t){if("function"!=typeof t)throw new je(i);return e=ms(e),function(){if(--e<1)return t.apply(this,arguments)}},Qn.ary=_a,Qn.assign=Os,Qn.assignIn=ws,Qn.assignInWith=Ss,Qn.assignWith=xs,Qn.at=Es,Qn.before=ka,Qn.bind=ja,Qn.bindAll=el,Qn.bindKey=Aa,Qn.castArray=function(){if(!arguments.length)return[];var e=arguments[0];return Wa(e)?e:[e]},Qn.chain=ha,Qn.chunk=function(e,t,n){t=(n?wi(e,t,n):t===o)?1:bn(ms(t),0);var i=null==e?0:e.length;if(!i||t<1)return[];for(var a=0,s=0,l=r(pt(i/t));ai?0:i+n),(r=r===o||r>i?i:ms(r))<0&&(r+=i),r=n>r?0:gs(r);n>>0)?(e=bs(e))&&("string"==typeof t||null!=t&&!as(t))&&!(t=uo(t))&&ln(e)?xo(mn(e),0,n):e.split(t,n):[]},Qn.spread=function(e,t){if("function"!=typeof e)throw new je(i);return t=null==t?0:bn(ms(t),0),Yr((function(n){var r=n[t],o=xo(n,0,t);return r&&Mt(o,r),Pt(e,this,o)}))},Qn.tail=function(e){var t=null==e?0:e.length;return t?oo(e,1,t):[]},Qn.take=function(e,t,n){return e&&e.length?oo(e,0,(t=n||t===o?1:ms(t))<0?0:t):[]},Qn.takeRight=function(e,t,n){var r=null==e?0:e.length;return r?oo(e,(t=r-(t=n||t===o?1:ms(t)))<0?0:t,r):[]},Qn.takeRightWhile=function(e,t){return e&&e.length?mo(e,ui(t,3),!1,!0):[]},Qn.takeWhile=function(e,t){return e&&e.length?mo(e,ui(t,3)):[]},Qn.tap=function(e,t){return t(e),e},Qn.throttle=function(e,t,n){var r=!0,o=!0;if("function"!=typeof e)throw new je(i);return ts(n)&&(r="leading"in n?!!n.leading:r,o="trailing"in n?!!n.trailing:o),Ra(e,t,{leading:r,maxWait:t,trailing:o})},Qn.thru=pa,Qn.toArray=hs,Qn.toPairs=Bs,Qn.toPairsIn=Fs,Qn.toPath=function(e){return Wa(e)?It(e,$i):cs(e)?[e]:Ao(Ni(bs(e)))},Qn.toPlainObject=vs,Qn.transform=function(e,t,n){var r=Wa(e),o=r||Ha(e)||us(e);if(t=ui(t,4),null==n){var i=e&&e.constructor;n=o?r?new i:[]:ts(e)&&Ka(i)?zn(Xe(e)):{}}return(o?kt:wr)(e,(function(e,r,o){return t(n,e,r,o)})),n},Qn.unary=function(e){return _a(e,1)},Qn.union=na,Qn.unionBy=ra,Qn.unionWith=oa,Qn.uniq=function(e){return e&&e.length?fo(e):[]},Qn.uniqBy=function(e,t){return e&&e.length?fo(e,ui(t,2)):[]},Qn.uniqWith=function(e,t){return t="function"==typeof t?t:o,e&&e.length?fo(e,o,t):[]},Qn.unset=function(e,t){return null==e||ho(e,t)},Qn.unzip=ia,Qn.unzipWith=aa,Qn.update=function(e,t,n){return null==e?e:po(e,t,Oo(n))},Qn.updateWith=function(e,t,n,r){return r="function"==typeof r?r:o,null==e?e:po(e,t,Oo(n),r)},Qn.values=Qs,Qn.valuesIn=function(e){return null==e?[]:en(e,Ds(e))},Qn.without=sa,Qn.words=Ks,Qn.wrap=function(e,t){return $a(Oo(t),e)},Qn.xor=la,Qn.xorBy=ca,Qn.xorWith=ua,Qn.zip=da,Qn.zipObject=function(e,t){return vo(e||[],t||[],nr)},Qn.zipObjectDeep=function(e,t){return vo(e||[],t||[],eo)},Qn.zipWith=fa,Qn.entries=Bs,Qn.entriesIn=Fs,Qn.extend=ws,Qn.extendWith=Ss,ll(Qn,Qn),Qn.add=vl,Qn.attempt=Js,Qn.camelCase=zs,Qn.capitalize=Vs,Qn.ceil=bl,Qn.clamp=function(e,t,n){return n===o&&(n=t,t=o),n!==o&&(n=(n=ys(n))==n?n:0),t!==o&&(t=(t=ys(t))==t?t:0),lr(ys(e),t,n)},Qn.clone=function(e){return cr(e,4)},Qn.cloneDeep=function(e){return cr(e,5)},Qn.cloneDeepWith=function(e,t){return cr(e,5,t="function"==typeof t?t:o)},Qn.cloneWith=function(e,t){return cr(e,4,t="function"==typeof t?t:o)},Qn.conformsTo=function(e,t){return null==t||ur(e,t,Rs(t))},Qn.deburr=Us,Qn.defaultTo=function(e,t){return null==e||e!=e?t:e},Qn.divide=Ol,Qn.endsWith=function(e,t,n){e=bs(e),t=uo(t);var r=e.length,i=n=n===o?r:lr(ms(n),0,r);return(n-=t.length)>=0&&e.slice(n,i)==t},Qn.eq=Qa,Qn.escape=function(e){return(e=bs(e))&&Y.test(e)?e.replace(H,an):e},Qn.escapeRegExp=function(e){return(e=bs(e))&&ie.test(e)?e.replace(oe,"\\$&"):e},Qn.every=function(e,t,n){var r=Wa(e)?At:mr;return n&&wi(e,t,n)&&(t=o),r(e,ui(t,3))},Qn.find=ya,Qn.findIndex=Ui,Qn.findKey=function(e,t){return Qt(e,ui(t,3),wr)},Qn.findLast=va,Qn.findLastIndex=Wi,Qn.findLastKey=function(e,t){return Qt(e,ui(t,3),Sr)},Qn.floor=wl,Qn.forEach=ba,Qn.forEachRight=Oa,Qn.forIn=function(e,t){return null==e?e:br(e,ui(t,3),Ds)},Qn.forInRight=function(e,t){return null==e?e:Or(e,ui(t,3),Ds)},Qn.forOwn=function(e,t){return e&&wr(e,ui(t,3))},Qn.forOwnRight=function(e,t){return e&&Sr(e,ui(t,3))},Qn.get=Ps,Qn.gt=za,Qn.gte=Va,Qn.has=function(e,t){return null!=e&&yi(e,t,_r)},Qn.hasIn=_s,Qn.head=Xi,Qn.identity=ol,Qn.includes=function(e,t,n,r){e=Xa(e)?e:Qs(e),n=n&&!r?ms(n):0;var o=e.length;return n<0&&(n=bn(o+n,0)),ls(e)?n<=o&&e.indexOf(t,n)>-1:!!o&&Vt(e,t,n)>-1},Qn.indexOf=function(e,t,n){var r=null==e?0:e.length;if(!r)return-1;var o=null==n?0:ms(n);return o<0&&(o=bn(r+o,0)),Vt(e,t,o)},Qn.inRange=function(e,t,n){return t=ps(t),n===o?(n=t,t=0):n=ps(n),function(e,t,n){return e>=On(t,n)&&e=-9007199254740991&&e<=p},Qn.isSet=ss,Qn.isString=ls,Qn.isSymbol=cs,Qn.isTypedArray=us,Qn.isUndefined=function(e){return e===o},Qn.isWeakMap=function(e){return ns(e)&&gi(e)==D},Qn.isWeakSet=function(e){return ns(e)&&"[object WeakSet]"==Cr(e)},Qn.join=function(e,t){return null==e?"":Ft.call(e,t)},Qn.kebabCase=Ws,Qn.last=Yi,Qn.lastIndexOf=function(e,t,n){var r=null==e?0:e.length;if(!r)return-1;var i=r;return n!==o&&(i=(i=ms(n))<0?bn(r+i,0):On(i,r-1)),t==t?function(e,t,n){for(var r=n+1;r--;)if(e[r]===t)return r;return r}(e,t,i):zt(e,Wt,i,!0)},Qn.lowerCase=Gs,Qn.lowerFirst=Xs,Qn.lt=ds,Qn.lte=fs,Qn.max=function(e){return e&&e.length?gr(e,ol,Pr):o},Qn.maxBy=function(e,t){return e&&e.length?gr(e,ui(t,2),Pr):o},Qn.mean=function(e){return Gt(e,ol)},Qn.meanBy=function(e,t){return Gt(e,ui(t,2))},Qn.min=function(e){return e&&e.length?gr(e,ol,Br):o},Qn.minBy=function(e,t){return e&&e.length?gr(e,ui(t,2),Br):o},Qn.stubArray=gl,Qn.stubFalse=yl,Qn.stubObject=function(){return{}},Qn.stubString=function(){return""},Qn.stubTrue=function(){return!0},Qn.multiply=xl,Qn.nth=function(e,t){return e&&e.length?Ur(e,ms(t)):o},Qn.noConflict=function(){return mt._===this&&(mt._=Qe),this},Qn.noop=cl,Qn.now=Pa,Qn.pad=function(e,t,n){e=bs(e);var r=(t=ms(t))?pn(e):0;if(!t||r>=t)return e;var o=(t-r)/2;return Go(gt(o),n)+e+Go(pt(o),n)},Qn.padEnd=function(e,t,n){e=bs(e);var r=(t=ms(t))?pn(e):0;return t&&rt){var r=e;e=t,t=r}if(n||e%1||t%1){var i=xn();return On(e+i*(t-e+dt("1e-"+((i+"").length-1))),t)}return Hr(e,t)},Qn.reduce=function(e,t,n){var r=Wa(e)?Nt:Ht,o=arguments.length<3;return r(e,ui(t,4),n,o,hr)},Qn.reduceRight=function(e,t,n){var r=Wa(e)?$t:Ht,o=arguments.length<3;return r(e,ui(t,4),n,o,pr)},Qn.repeat=function(e,t,n){return t=(n?wi(e,t,n):t===o)?1:ms(t),Zr(bs(e),t)},Qn.replace=function(){var e=arguments,t=bs(e[0]);return e.length<3?t:t.replace(e[1],e[2])},Qn.result=function(e,t,n){var r=-1,i=(t=wo(t,e)).length;for(i||(i=1,e=o);++rp)return[];var n=g,r=On(e,g);t=ui(t),e-=g;for(var o=Yt(r,t);++n=a)return e;var l=n-pn(r);if(l<1)return r;var c=s?xo(s,0,l).join(""):e.slice(0,l);if(i===o)return c+r;if(s&&(l+=c.length-l),as(i)){if(e.slice(l).search(i)){var u,d=c;for(i.global||(i=_e(i.source,bs(me.exec(i))+"g")),i.lastIndex=0;u=i.exec(d);)var f=u.index;c=c.slice(0,f===o?l:f)}}else if(e.indexOf(uo(i),l)!=l){var h=c.lastIndexOf(i);h>-1&&(c=c.slice(0,h))}return c+r},Qn.unescape=function(e){return(e=bs(e))&&Z.test(e)?e.replace(q,yn):e},Qn.uniqueId=function(e){var t=++Ne;return bs(e)+t},Qn.upperCase=Zs,Qn.upperFirst=Ys,Qn.each=ba,Qn.eachRight=Oa,Qn.first=Xi,ll(Qn,(Sl={},wr(Qn,(function(e,t){Me.call(Qn.prototype,t)||(Sl[t]=e)})),Sl),{chain:!1}),Qn.VERSION="4.17.21",kt(["bind","bindKey","curry","curryRight","partial","partialRight"],(function(e){Qn[e].placeholder=Qn})),kt(["drop","take"],(function(e,t){Wn.prototype[e]=function(n){n=n===o?1:bn(ms(n),0);var r=this.__filtered__&&!t?new Wn(this):this.clone();return r.__filtered__?r.__takeCount__=On(n,r.__takeCount__):r.__views__.push({size:On(n,g),type:e+(r.__dir__<0?"Right":"")}),r},Wn.prototype[e+"Right"]=function(t){return this.reverse()[e](t).reverse()}})),kt(["filter","map","takeWhile"],(function(e,t){var n=t+1,r=1==n||3==n;Wn.prototype[e]=function(e){var t=this.clone();return t.__iteratees__.push({iteratee:ui(e,3),type:n}),t.__filtered__=t.__filtered__||r,t}})),kt(["head","last"],(function(e,t){var n="take"+(t?"Right":"");Wn.prototype[e]=function(){return this[n](1).value()[0]}})),kt(["initial","tail"],(function(e,t){var n="drop"+(t?"":"Right");Wn.prototype[e]=function(){return this.__filtered__?new Wn(this):this[n](1)}})),Wn.prototype.compact=function(){return this.filter(ol)},Wn.prototype.find=function(e){return this.filter(e).head()},Wn.prototype.findLast=function(e){return this.reverse().find(e)},Wn.prototype.invokeMap=Yr((function(e,t){return"function"==typeof e?new Wn(this):this.map((function(n){return Ar(n,e,t)}))})),Wn.prototype.reject=function(e){return this.filter(Ma(ui(e)))},Wn.prototype.slice=function(e,t){e=ms(e);var n=this;return n.__filtered__&&(e>0||t<0)?new Wn(n):(e<0?n=n.takeRight(-e):e&&(n=n.drop(e)),t!==o&&(n=(t=ms(t))<0?n.dropRight(-t):n.take(t-e)),n)},Wn.prototype.takeRightWhile=function(e){return this.reverse().takeWhile(e).reverse()},Wn.prototype.toArray=function(){return this.take(g)},wr(Wn.prototype,(function(e,t){var n=/^(?:filter|find|map|reject)|While$/.test(t),r=/^(?:head|last)$/.test(t),i=Qn[r?"take"+("last"==t?"Right":""):t],a=r||/^find/.test(t);i&&(Qn.prototype[t]=function(){var t=this.__wrapped__,s=r?[1]:arguments,l=t instanceof Wn,c=s[0],u=l||Wa(t),d=function(e){var t=i.apply(Qn,Mt([e],s));return r&&f?t[0]:t};u&&n&&"function"==typeof c&&1!=c.length&&(l=u=!1);var f=this.__chain__,h=!!this.__actions__.length,p=a&&!f,m=l&&!h;if(!a&&u){t=m?t:new Wn(this);var g=e.apply(t,s);return g.__actions__.push({func:pa,args:[d],thisArg:o}),new Un(g,f)}return p&&m?e.apply(this,s):(g=this.thru(d),p?r?g.value()[0]:g.value():g)})})),kt(["pop","push","shift","sort","splice","unshift"],(function(e){var t=Ae[e],n=/^(?:push|sort|unshift)$/.test(e)?"tap":"thru",r=/^(?:pop|shift)$/.test(e);Qn.prototype[e]=function(){var e=arguments;if(r&&!this.__chain__){var o=this.value();return t.apply(Wa(o)?o:[],e)}return this[n]((function(n){return t.apply(Wa(n)?n:[],e)}))}})),wr(Wn.prototype,(function(e,t){var n=Qn[t];if(n){var r=n.name+"";Me.call(Rn,r)||(Rn[r]=[]),Rn[r].push({name:t,func:n})}})),Rn[zo(o,2).name]=[{name:"wrapper",func:o}],Wn.prototype.clone=function(){var e=new Wn(this.__wrapped__);return e.__actions__=Ao(this.__actions__),e.__dir__=this.__dir__,e.__filtered__=this.__filtered__,e.__iteratees__=Ao(this.__iteratees__),e.__takeCount__=this.__takeCount__,e.__views__=Ao(this.__views__),e},Wn.prototype.reverse=function(){if(this.__filtered__){var e=new Wn(this);e.__dir__=-1,e.__filtered__=!0}else(e=this.clone()).__dir__*=-1;return e},Wn.prototype.value=function(){var e=this.__wrapped__.value(),t=this.__dir__,n=Wa(e),r=t<0,o=n?e.length:0,i=function(e,t,n){var r=-1,o=n.length;for(;++r=this.__values__.length;return{done:e,value:e?o:this.__values__[this.__index__++]}},Qn.prototype.plant=function(e){for(var t,n=this;n instanceof Vn;){var r=Fi(n);r.__index__=0,r.__values__=o,t?i.__wrapped__=r:t=r;var i=r;n=n.__wrapped__}return i.__wrapped__=e,t},Qn.prototype.reverse=function(){var e=this.__wrapped__;if(e instanceof Wn){var t=e;return this.__actions__.length&&(t=new Wn(this)),(t=t.reverse()).__actions__.push({func:pa,args:[ta],thisArg:o}),new Un(t,this.__chain__)}return this.thru(ta)},Qn.prototype.toJSON=Qn.prototype.valueOf=Qn.prototype.value=function(){return go(this.__wrapped__,this.__actions__)},Qn.prototype.first=Qn.prototype.head,Ke&&(Qn.prototype[Ke]=function(){return this}),Qn}();mt._=vn,(r=function(){return vn}.call(t,n,t,e))===o||(e.exports=r)}.call(this)},68255:(e,t,n)=>{"use strict";n.r(t)},44130:(e,t,n)=>{"use strict";n.r(t)},32890:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>_});var r=n(87462),o=n(45987),i=n(74165),a=n(15861),s=n(1413),l=n(89062),c=n(15671),u=n(43144),d=n(97326),f=n(60136),h=n(29388),p=n(4942),m=n(50344),g=n(91881),y=n(80334),v=n(36198),b=n(28665),O=n(82131),w=n(93409),S=n(416),x=n(53236),E=["name"],T=[];function C(e,t,n,r,o,i){return"function"==typeof e?e(t,n,"source"in i?{source:i.source}:{}):r!==o}var P=function(e){(0,f.default)(n,e);var t=(0,h.default)(n);function n(e){var r;((0,c.default)(this,n),r=t.call(this,e),(0,p.default)((0,d.default)(r),"state",{resetCount:0}),(0,p.default)((0,d.default)(r),"cancelRegisterFunc",null),(0,p.default)((0,d.default)(r),"mounted",!1),(0,p.default)((0,d.default)(r),"touched",!1),(0,p.default)((0,d.default)(r),"dirty",!1),(0,p.default)((0,d.default)(r),"validatePromise",void 0),(0,p.default)((0,d.default)(r),"prevValidating",void 0),(0,p.default)((0,d.default)(r),"errors",T),(0,p.default)((0,d.default)(r),"warnings",T),(0,p.default)((0,d.default)(r),"cancelRegister",(function(){var e=r.props,t=e.preserve,n=e.isListField,o=e.name;r.cancelRegisterFunc&&r.cancelRegisterFunc(n,t,(0,x.getNamePath)(o)),r.cancelRegisterFunc=null})),(0,p.default)((0,d.default)(r),"getNamePath",(function(){var e=r.props,t=e.name,n=e.fieldContext.prefixName,o=void 0===n?[]:n;return void 0!==t?[].concat((0,l.default)(o),(0,l.default)(t)):[]})),(0,p.default)((0,d.default)(r),"getRules",(function(){var e=r.props,t=e.rules,n=void 0===t?[]:t,o=e.fieldContext;return n.map((function(e){return"function"==typeof e?e(o):e}))})),(0,p.default)((0,d.default)(r),"refresh",(function(){r.mounted&&r.setState((function(e){return{resetCount:e.resetCount+1}}))})),(0,p.default)((0,d.default)(r),"metaCache",null),(0,p.default)((0,d.default)(r),"triggerMetaEvent",(function(e){var t=r.props.onMetaChange;if(t){var n=(0,s.default)((0,s.default)({},r.getMeta()),{},{destroy:e});(0,g.default)(r.metaCache,n)||t(n),r.metaCache=n}else r.metaCache=null})),(0,p.default)((0,d.default)(r),"onStoreChange",(function(e,t,n){var o=r.props,i=o.shouldUpdate,a=o.dependencies,s=void 0===a?[]:a,l=o.onReset,c=n.store,u=r.getNamePath(),d=r.getValue(e),f=r.getValue(c),h=t&&(0,x.containsNamePath)(t,u);switch("valueUpdate"!==n.type||"external"!==n.source||(0,g.default)(d,f)||(r.touched=!0,r.dirty=!0,r.validatePromise=null,r.errors=T,r.warnings=T,r.triggerMetaEvent()),n.type){case"reset":if(!t||h)return r.touched=!1,r.dirty=!1,r.validatePromise=void 0,r.errors=T,r.warnings=T,r.triggerMetaEvent(),null==l||l(),void r.refresh();break;case"remove":if(i)return void r.reRender();break;case"setField":var p=n.data;if(h)return"touched"in p&&(r.touched=p.touched),"validating"in p&&!("originRCField"in p)&&(r.validatePromise=p.validating?Promise.resolve([]):null),"errors"in p&&(r.errors=p.errors||T),"warnings"in p&&(r.warnings=p.warnings||T),r.dirty=!0,r.triggerMetaEvent(),void r.reRender();if("value"in p&&(0,x.containsNamePath)(t,u,!0))return void r.reRender();if(i&&!u.length&&C(i,e,c,d,f,n))return void r.reRender();break;case"dependenciesUpdate":if(s.map(x.getNamePath).some((function(e){return(0,x.containsNamePath)(n.relatedFields,e)})))return void r.reRender();break;default:if(h||(!s.length||u.length||i)&&C(i,e,c,d,f,n))return void r.reRender()}!0===i&&r.reRender()})),(0,p.default)((0,d.default)(r),"validateRules",(function(e){var t=r.getNamePath(),n=r.getValue(),o=e||{},s=o.triggerName,c=o.validateOnly,u=void 0!==c&&c,d=Promise.resolve().then((0,a.default)((0,i.default)().mark((function o(){var a,c,u,f,h,p,m;return(0,i.default)().wrap((function(o){for(;;)switch(o.prev=o.next){case 0:if(r.mounted){o.next=2;break}return o.abrupt("return",[]);case 2:if(a=r.props,c=a.validateFirst,u=void 0!==c&&c,f=a.messageVariables,h=a.validateDebounce,p=r.getRules(),s&&(p=p.filter((function(e){return e})).filter((function(e){var t=e.validateTrigger;return!t||(0,w.toArray)(t).includes(s)}))),!h||!s){o.next=10;break}return o.next=8,new Promise((function(e){setTimeout(e,h)}));case 8:if(r.validatePromise===d){o.next=10;break}return o.abrupt("return",[]);case 10:return(m=(0,S.validateRules)(t,n,p,e,u,f)).catch((function(e){return e})).then((function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:T;if(r.validatePromise===d){var t;r.validatePromise=null;var n=[],o=[];null===(t=e.forEach)||void 0===t||t.call(e,(function(e){var t=e.rule.warningOnly,r=e.errors,i=void 0===r?T:r;t?o.push.apply(o,(0,l.default)(i)):n.push.apply(n,(0,l.default)(i))})),r.errors=n,r.warnings=o,r.triggerMetaEvent(),r.reRender()}})),o.abrupt("return",m);case 13:case"end":return o.stop()}}),o)}))));return u||(r.validatePromise=d,r.dirty=!0,r.errors=T,r.warnings=T,r.triggerMetaEvent(),r.reRender()),d})),(0,p.default)((0,d.default)(r),"isFieldValidating",(function(){return!!r.validatePromise})),(0,p.default)((0,d.default)(r),"isFieldTouched",(function(){return r.touched})),(0,p.default)((0,d.default)(r),"isFieldDirty",(function(){return!(!r.dirty&&void 0===r.props.initialValue)||void 0!==(0,r.props.fieldContext.getInternalHooks(b.HOOK_MARK).getInitialValue)(r.getNamePath())})),(0,p.default)((0,d.default)(r),"getErrors",(function(){return r.errors})),(0,p.default)((0,d.default)(r),"getWarnings",(function(){return r.warnings})),(0,p.default)((0,d.default)(r),"isListField",(function(){return r.props.isListField})),(0,p.default)((0,d.default)(r),"isList",(function(){return r.props.isList})),(0,p.default)((0,d.default)(r),"isPreserve",(function(){return r.props.preserve})),(0,p.default)((0,d.default)(r),"getMeta",(function(){return r.prevValidating=r.isFieldValidating(),{touched:r.isFieldTouched(),validating:r.prevValidating,errors:r.errors,warnings:r.warnings,name:r.getNamePath(),validated:null===r.validatePromise}})),(0,p.default)((0,d.default)(r),"getOnlyChild",(function(e){if("function"==typeof e){var t=r.getMeta();return(0,s.default)((0,s.default)({},r.getOnlyChild(e(r.getControlled(),t,r.props.fieldContext))),{},{isFunction:!0})}var n=(0,m.default)(e);return 1===n.length&&v.isValidElement(n[0])?{child:n[0],isFunction:!1}:{child:n,isFunction:!1}})),(0,p.default)((0,d.default)(r),"getValue",(function(e){var t=r.props.fieldContext.getFieldsValue,n=r.getNamePath();return(0,x.getValue)(e||t(!0),n)})),(0,p.default)((0,d.default)(r),"getControlled",(function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=r.props,n=t.name,o=t.trigger,i=t.validateTrigger,a=t.getValueFromEvent,l=t.normalize,c=t.valuePropName,u=t.getValueProps,d=t.fieldContext,f=void 0!==i?i:d.validateTrigger,h=r.getNamePath(),m=d.getInternalHooks,g=d.getFieldsValue,y=m(b.HOOK_MARK).dispatch,v=r.getValue(),O=u||function(e){return(0,p.default)({},c,e)},S=e[o],E=void 0!==n?O(v):{};var T=(0,s.default)((0,s.default)({},e),E);return T[o]=function(){var e;r.touched=!0,r.dirty=!0,r.triggerMetaEvent();for(var t=arguments.length,n=new Array(t),o=0;o{"use strict";n.r(t),n.d(t,{HOOK_MARK:()=>i,default:()=>s});var r=n(80334),o=n(36198),i="RC_FORM_INTERNAL_HOOKS",a=function(){(0,r.default)(!1,"Can not find FormContext. Please make sure you wrap Field under Form.")};const s=o.createContext({getFieldValue:a,getFieldsValue:a,getFieldError:a,getFieldWarning:a,getFieldsError:a,isFieldsTouched:a,isFieldTouched:a,isFieldValidating:a,isFieldsValidating:a,resetFields:a,setFields:a,setFieldValue:a,setFieldsValue:a,validateFields:a,submit:a,getInternalHooks:function(){return a(),{dispatch:a,initEntityValue:a,registerField:a,useSubscribe:a,setInitialValues:a,destroyForm:a,setCallbacks:a,registerWatch:a,getFields:a,setValidateMessages:a,setPreserve:a,getInitialValue:a}}})},5318:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>p});var r=n(87462),o=n(1413),i=n(93324),a=n(45987),s=n(36198),l=n(5918),c=n(28665),u=n(81696),d=n(53236),f=n(82131),h=["name","initialValues","fields","form","preserve","children","component","validateMessages","validateTrigger","onValuesChange","onFieldsChange","onFinish","onFinishFailed"];const p=function(e,t){var n=e.name,p=e.initialValues,m=e.fields,g=e.form,y=e.preserve,v=e.children,b=e.component,O=void 0===b?"form":b,w=e.validateMessages,S=e.validateTrigger,x=void 0===S?"onChange":S,E=e.onValuesChange,T=e.onFieldsChange,C=e.onFinish,P=e.onFinishFailed,_=(0,a.default)(e,h),k=s.useContext(u.default),j=(0,l.default)(g),A=(0,i.default)(j,1)[0],R=A.getInternalHooks(c.HOOK_MARK),D=R.useSubscribe,L=R.setInitialValues,I=R.setCallbacks,M=R.setValidateMessages,N=R.setPreserve,$=R.destroyForm;s.useImperativeHandle(t,(function(){return A})),s.useEffect((function(){return k.registerForm(n,A),function(){k.unregisterForm(n)}}),[k,A,n]),M((0,o.default)((0,o.default)({},k.validateMessages),w)),I({onValuesChange:E,onFieldsChange:function(e){if(k.triggerFormChange(n,e),T){for(var t=arguments.length,r=new Array(t>1?t-1:0),o=1;o{"use strict";n.r(t),n.d(t,{FormProvider:()=>s,default:()=>l});var r=n(4942),o=n(1413),i=n(36198),a=i.createContext({triggerFormChange:function(){},triggerFormFinish:function(){},registerForm:function(){},unregisterForm:function(){}}),s=function(e){var t=e.validateMessages,n=e.onFormChange,s=e.onFormFinish,l=e.children,c=i.useContext(a),u=i.useRef({});return i.createElement(a.Provider,{value:(0,o.default)((0,o.default)({},c),{},{validateMessages:(0,o.default)((0,o.default)({},c.validateMessages),t),triggerFormChange:function(e,t){n&&n(e,{changedFields:t,forms:u.current}),c.triggerFormChange(e,t)},triggerFormFinish:function(e,t){s&&s(e,{values:t,forms:u.current}),c.triggerFormFinish(e,t)},registerForm:function(e,t){e&&(u.current=(0,o.default)((0,o.default)({},u.current),{},(0,r.default)({},e,t))),c.registerForm(e,t)},unregisterForm:function(e){var t=(0,o.default)({},u.current);delete t[e],u.current=t,c.unregisterForm(e)}})},l)};const l=a},45378:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>d});var r=n(1413),o=n(89062),i=n(36198),a=n(80334),s=n(28665),l=n(32890),c=n(53236),u=n(82131);const d=function(e){var t=e.name,n=e.initialValue,d=e.children,f=e.rules,h=e.validateTrigger,p=e.isListField,m=i.useContext(s.default),g=i.useContext(u.default),y=i.useRef({keys:[],id:0}).current,v=i.useMemo((function(){var e=(0,c.getNamePath)(m.prefixName)||[];return[].concat((0,o.default)(e),(0,o.default)((0,c.getNamePath)(t)))}),[m.prefixName,t]),b=i.useMemo((function(){return(0,r.default)((0,r.default)({},m),{},{prefixName:v})}),[m,v]),O=i.useMemo((function(){return{getKey:function(e){var t=v.length,n=e[t];return[y.keys[n],e.slice(t+1)]}}}),[v]);return"function"!=typeof d?((0,a.default)(!1,"Form.List only accepts function as children."),null):i.createElement(u.default.Provider,{value:O},i.createElement(s.default.Provider,{value:b},i.createElement(l.default,{name:[],shouldUpdate:function(e,t,n){return"internal"!==n.source&&e!==t},rules:f,validateTrigger:h,initialValue:n,isList:!0,isListField:null!=p?p:!!g},(function(e,t){var n=e.value,r=void 0===n?[]:n,i=e.onChange,a=m.getFieldValue,s=function(){return a(v||[])||[]},l={add:function(e,t){var n=s();t>=0&&t<=n.length?(y.keys=[].concat((0,o.default)(y.keys.slice(0,t)),[y.id],(0,o.default)(y.keys.slice(t))),i([].concat((0,o.default)(n.slice(0,t)),[e],(0,o.default)(n.slice(t))))):(y.keys=[].concat((0,o.default)(y.keys),[y.id]),i([].concat((0,o.default)(n),[e]))),y.id+=1},remove:function(e){var t=s(),n=new Set(Array.isArray(e)?e:[e]);n.size<=0||(y.keys=y.keys.filter((function(e,t){return!n.has(t)})),i(t.filter((function(e,t){return!n.has(t)}))))},move:function(e,t){if(e!==t){var n=s();e<0||e>=n.length||t<0||t>=n.length||(y.keys=(0,c.move)(y.keys,e,t),i((0,c.move)(n,e,t)))}}},u=r||[];return Array.isArray(u)||(u=[]),d(u.map((function(e,t){var n=y.keys[t];return void 0===n&&(y.keys[t]=y.id,n=y.keys[t],y.id+=1),{name:t,key:n,isListField:!0}})),l,t)}))))}},82131:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>r});const r=n(36198).createContext(null)},6077:(e,t,n)=>{"use strict";n.r(t),n.d(t,{Field:()=>o.default,FieldContext:()=>c.default,FormProvider:()=>l.FormProvider,List:()=>i.default,ListContext:()=>u.default,default:()=>h,useForm:()=>a.default,useWatch:()=>d.default});var r=n(36198),o=n(32890),i=n(45378),a=n(5918),s=n(5318),l=n(81696),c=n(28665),u=n(82131),d=n(21806),f=r.forwardRef(s.default);f.FormProvider=l.FormProvider,f.Field=o.default,f.List=i.default,f.useForm=a.default,f.useWatch=d.default;const h=f},5918:(e,t,n)=>{"use strict";n.r(t),n.d(t,{FormStore:()=>O,default:()=>w});var r=n(93324),o=n(1413),i=n(45987),a=n(89062),s=n(71002),l=n(43144),c=n(15671),u=n(4942),d=n(8880),f=n(80334),h=n(36198),p=n(28665),m=n(40496),g=n(42656),y=n(92332),v=n(53236),b=["name"],O=(0,l.default)((function e(t){var n=this;(0,c.default)(this,e),(0,u.default)(this,"formHooked",!1),(0,u.default)(this,"forceRootUpdate",void 0),(0,u.default)(this,"subscribable",!0),(0,u.default)(this,"store",{}),(0,u.default)(this,"fieldEntities",[]),(0,u.default)(this,"initialValues",{}),(0,u.default)(this,"callbacks",{}),(0,u.default)(this,"validateMessages",null),(0,u.default)(this,"preserve",null),(0,u.default)(this,"lastValidatePromise",null),(0,u.default)(this,"getForm",(function(){return{getFieldValue:n.getFieldValue,getFieldsValue:n.getFieldsValue,getFieldError:n.getFieldError,getFieldWarning:n.getFieldWarning,getFieldsError:n.getFieldsError,isFieldsTouched:n.isFieldsTouched,isFieldTouched:n.isFieldTouched,isFieldValidating:n.isFieldValidating,isFieldsValidating:n.isFieldsValidating,resetFields:n.resetFields,setFields:n.setFields,setFieldValue:n.setFieldValue,setFieldsValue:n.setFieldsValue,validateFields:n.validateFields,submit:n.submit,_init:!0,getInternalHooks:n.getInternalHooks}})),(0,u.default)(this,"getInternalHooks",(function(e){return e===p.HOOK_MARK?(n.formHooked=!0,{dispatch:n.dispatch,initEntityValue:n.initEntityValue,registerField:n.registerField,useSubscribe:n.useSubscribe,setInitialValues:n.setInitialValues,destroyForm:n.destroyForm,setCallbacks:n.setCallbacks,setValidateMessages:n.setValidateMessages,getFields:n.getFields,setPreserve:n.setPreserve,getInitialValue:n.getInitialValue,registerWatch:n.registerWatch}):((0,f.default)(!1,"`getInternalHooks` is internal usage. Should not call directly."),null)})),(0,u.default)(this,"useSubscribe",(function(e){n.subscribable=e})),(0,u.default)(this,"prevWithoutPreserves",null),(0,u.default)(this,"setInitialValues",(function(e,t){if(n.initialValues=e||{},t){var r,o=(0,d.merge)(e,n.store);null===(r=n.prevWithoutPreserves)||void 0===r||r.map((function(t){var n=t.key;o=(0,v.setValue)(o,n,(0,v.getValue)(e,n))})),n.prevWithoutPreserves=null,n.updateStore(o)}})),(0,u.default)(this,"destroyForm",(function(){var e=new y.default;n.getFieldEntities(!0).forEach((function(t){n.isMergedPreserve(t.isPreserve())||e.set(t.getNamePath(),!0)})),n.prevWithoutPreserves=e})),(0,u.default)(this,"getInitialValue",(function(e){var t=(0,v.getValue)(n.initialValues,e);return e.length?(0,d.merge)(t):t})),(0,u.default)(this,"setCallbacks",(function(e){n.callbacks=e})),(0,u.default)(this,"setValidateMessages",(function(e){n.validateMessages=e})),(0,u.default)(this,"setPreserve",(function(e){n.preserve=e})),(0,u.default)(this,"watchList",[]),(0,u.default)(this,"registerWatch",(function(e){return n.watchList.push(e),function(){n.watchList=n.watchList.filter((function(t){return t!==e}))}})),(0,u.default)(this,"notifyWatch",(function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[];if(n.watchList.length){var t=n.getFieldsValue(),r=n.getFieldsValue(!0);n.watchList.forEach((function(n){n(t,r,e)}))}})),(0,u.default)(this,"timeoutId",null),(0,u.default)(this,"warningUnhooked",(function(){0})),(0,u.default)(this,"updateStore",(function(e){n.store=e})),(0,u.default)(this,"getFieldEntities",(function(){return arguments.length>0&&void 0!==arguments[0]&&arguments[0]?n.fieldEntities.filter((function(e){return e.getNamePath().length})):n.fieldEntities})),(0,u.default)(this,"getFieldsMap",(function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0],t=new y.default;return n.getFieldEntities(e).forEach((function(e){var n=e.getNamePath();t.set(n,e)})),t})),(0,u.default)(this,"getFieldEntitiesForNamePathList",(function(e){if(!e)return n.getFieldEntities(!0);var t=n.getFieldsMap(!0);return e.map((function(e){var n=(0,v.getNamePath)(e);return t.get(n)||{INVALIDATE_NAME_PATH:(0,v.getNamePath)(e)}}))})),(0,u.default)(this,"getFieldsValue",(function(e,t){var r,o,i;if(n.warningUnhooked(),!0===e||Array.isArray(e)?(r=e,o=t):e&&"object"===(0,s.default)(e)&&(i=e.strict,o=e.filter),!0===r&&!o)return n.store;var a=n.getFieldEntitiesForNamePathList(Array.isArray(r)?r:null),l=[];return a.forEach((function(e){var t,n,a,s,c="INVALIDATE_NAME_PATH"in e?e.INVALIDATE_NAME_PATH:e.getNamePath();if(i){if(null!==(a=(s=e).isList)&&void 0!==a&&a.call(s))return}else if(!r&&null!==(t=(n=e).isListField)&&void 0!==t&&t.call(n))return;if(o){var u="getMeta"in e?e.getMeta():null;o(u)&&l.push(c)}else l.push(c)})),(0,v.cloneByNamePathList)(n.store,l.map(v.getNamePath))})),(0,u.default)(this,"getFieldValue",(function(e){n.warningUnhooked();var t=(0,v.getNamePath)(e);return(0,v.getValue)(n.store,t)})),(0,u.default)(this,"getFieldsError",(function(e){return n.warningUnhooked(),n.getFieldEntitiesForNamePathList(e).map((function(t,n){return t&&!("INVALIDATE_NAME_PATH"in t)?{name:t.getNamePath(),errors:t.getErrors(),warnings:t.getWarnings()}:{name:(0,v.getNamePath)(e[n]),errors:[],warnings:[]}}))})),(0,u.default)(this,"getFieldError",(function(e){n.warningUnhooked();var t=(0,v.getNamePath)(e);return n.getFieldsError([t])[0].errors})),(0,u.default)(this,"getFieldWarning",(function(e){n.warningUnhooked();var t=(0,v.getNamePath)(e);return n.getFieldsError([t])[0].warnings})),(0,u.default)(this,"isFieldsTouched",(function(){n.warningUnhooked();for(var e=arguments.length,t=new Array(e),r=0;r0&&void 0!==arguments[0]?arguments[0]:{},t=new y.default,r=n.getFieldEntities(!0);r.forEach((function(e){var n=e.props.initialValue,r=e.getNamePath();if(void 0!==n){var o=t.get(r)||new Set;o.add({entity:e,value:n}),t.set(r,o)}}));var o;e.entities?o=e.entities:e.namePathList?(o=[],e.namePathList.forEach((function(e){var n,r=t.get(e);r&&(n=o).push.apply(n,(0,a.default)((0,a.default)(r).map((function(e){return e.entity}))))}))):o=r,o.forEach((function(r){if(void 0!==r.props.initialValue){var o=r.getNamePath();if(void 0!==n.getInitialValue(o))(0,f.default)(!1,"Form already set 'initialValues' with path '".concat(o.join("."),"'. Field can not overwrite it."));else{var i=t.get(o);if(i&&i.size>1)(0,f.default)(!1,"Multiple Field with path '".concat(o.join("."),"' set 'initialValue'. Can not decide which one to pick."));else if(i){var s=n.getFieldValue(o);r.isListField()||e.skipExist&&void 0!==s||n.updateStore((0,v.setValue)(n.store,o,(0,a.default)(i)[0].value))}}}}))})),(0,u.default)(this,"resetFields",(function(e){n.warningUnhooked();var t=n.store;if(!e)return n.updateStore((0,d.merge)(n.initialValues)),n.resetWithFieldInitialValue(),n.notifyObservers(t,null,{type:"reset"}),void n.notifyWatch();var r=e.map(v.getNamePath);r.forEach((function(e){var t=n.getInitialValue(e);n.updateStore((0,v.setValue)(n.store,e,t))})),n.resetWithFieldInitialValue({namePathList:r}),n.notifyObservers(t,r,{type:"reset"}),n.notifyWatch(r)})),(0,u.default)(this,"setFields",(function(e){n.warningUnhooked();var t=n.store,r=[];e.forEach((function(e){var o=e.name,a=(0,i.default)(e,b),s=(0,v.getNamePath)(o);r.push(s),"value"in a&&n.updateStore((0,v.setValue)(n.store,s,a.value)),n.notifyObservers(t,[s],{type:"setField",data:e})})),n.notifyWatch(r)})),(0,u.default)(this,"getFields",(function(){return n.getFieldEntities(!0).map((function(e){var t=e.getNamePath(),r=e.getMeta(),i=(0,o.default)((0,o.default)({},r),{},{name:t,value:n.getFieldValue(t)});return Object.defineProperty(i,"originRCField",{value:!0}),i}))})),(0,u.default)(this,"initEntityValue",(function(e){var t=e.props.initialValue;if(void 0!==t){var r=e.getNamePath();void 0===(0,v.getValue)(n.store,r)&&n.updateStore((0,v.setValue)(n.store,r,t))}})),(0,u.default)(this,"isMergedPreserve",(function(e){var t=void 0!==e?e:n.preserve;return null==t||t})),(0,u.default)(this,"registerField",(function(e){n.fieldEntities.push(e);var t=e.getNamePath();if(n.notifyWatch([t]),void 0!==e.props.initialValue){var r=n.store;n.resetWithFieldInitialValue({entities:[e],skipExist:!0}),n.notifyObservers(r,[e.getNamePath()],{type:"valueUpdate",source:"internal"})}return function(r,o){var i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:[];if(n.fieldEntities=n.fieldEntities.filter((function(t){return t!==e})),!n.isMergedPreserve(o)&&(!r||i.length>1)){var a=r?void 0:n.getInitialValue(t);if(t.length&&n.getFieldValue(t)!==a&&n.fieldEntities.every((function(e){return!(0,v.matchNamePath)(e.getNamePath(),t)}))){var s=n.store;n.updateStore((0,v.setValue)(s,t,a,!0)),n.notifyObservers(s,[t],{type:"remove"}),n.triggerDependenciesUpdate(s,t)}}n.notifyWatch([t])}})),(0,u.default)(this,"dispatch",(function(e){switch(e.type){case"updateValue":var t=e.namePath,r=e.value;n.updateValue(t,r);break;case"validateField":var o=e.namePath,i=e.triggerName;n.validateFields([o],{triggerName:i})}})),(0,u.default)(this,"notifyObservers",(function(e,t,r){if(n.subscribable){var i=(0,o.default)((0,o.default)({},r),{},{store:n.getFieldsValue(!0)});n.getFieldEntities().forEach((function(n){(0,n.onStoreChange)(e,t,i)}))}else n.forceRootUpdate()})),(0,u.default)(this,"triggerDependenciesUpdate",(function(e,t){var r=n.getDependencyChildrenFields(t);return r.length&&n.validateFields(r),n.notifyObservers(e,r,{type:"dependenciesUpdate",relatedFields:[t].concat((0,a.default)(r))}),r})),(0,u.default)(this,"updateValue",(function(e,t){var r=(0,v.getNamePath)(e),o=n.store;n.updateStore((0,v.setValue)(n.store,r,t)),n.notifyObservers(o,[r],{type:"valueUpdate",source:"internal"}),n.notifyWatch([r]);var i=n.triggerDependenciesUpdate(o,r),s=n.callbacks.onValuesChange;s&&s((0,v.cloneByNamePathList)(n.store,[r]),n.getFieldsValue());n.triggerOnFieldsChange([r].concat((0,a.default)(i)))})),(0,u.default)(this,"setFieldsValue",(function(e){n.warningUnhooked();var t=n.store;if(e){var r=(0,d.merge)(n.store,e);n.updateStore(r)}n.notifyObservers(t,null,{type:"valueUpdate",source:"external"}),n.notifyWatch()})),(0,u.default)(this,"setFieldValue",(function(e,t){n.setFields([{name:e,value:t}])})),(0,u.default)(this,"getDependencyChildrenFields",(function(e){var t=new Set,r=[],o=new y.default;n.getFieldEntities().forEach((function(e){(e.props.dependencies||[]).forEach((function(t){var n=(0,v.getNamePath)(t);o.update(n,(function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:new Set;return t.add(e),t}))}))}));return function e(n){(o.get(n)||new Set).forEach((function(n){if(!t.has(n)){t.add(n);var o=n.getNamePath();n.isFieldDirty()&&o.length&&(r.push(o),e(o))}}))}(e),r})),(0,u.default)(this,"triggerOnFieldsChange",(function(e,t){var r=n.callbacks.onFieldsChange;if(r){var o=n.getFields();if(t){var i=new y.default;t.forEach((function(e){var t=e.name,n=e.errors;i.set(t,n)})),o.forEach((function(e){e.errors=i.get(e.name)||e.errors}))}var a=o.filter((function(t){var n=t.name;return(0,v.containsNamePath)(e,n)}));a.length&&r(a,o)}})),(0,u.default)(this,"validateFields",(function(e,t){var r,i;n.warningUnhooked(),Array.isArray(e)||"string"==typeof e||"string"==typeof t?(r=e,i=t):i=e;var s=!!r,l=s?r.map(v.getNamePath):[],c=[],u=String(Date.now()),d=new Set,f=i||{},h=f.recursive,p=f.dirty;n.getFieldEntities(!0).forEach((function(e){if(s||l.push(e.getNamePath()),e.props.rules&&e.props.rules.length&&(!p||e.isFieldDirty())){var t=e.getNamePath();if(d.add(t.join(u)),!s||(0,v.containsNamePath)(l,t,h)){var r=e.validateRules((0,o.default)({validateMessages:(0,o.default)((0,o.default)({},g.defaultValidateMessages),n.validateMessages)},i));c.push(r.then((function(){return{name:t,errors:[],warnings:[]}})).catch((function(e){var n,r=[],o=[];return null===(n=e.forEach)||void 0===n||n.call(e,(function(e){var t=e.rule.warningOnly,n=e.errors;t?o.push.apply(o,(0,a.default)(n)):r.push.apply(r,(0,a.default)(n))})),r.length?Promise.reject({name:t,errors:r,warnings:o}):{name:t,errors:r,warnings:o}})))}}}));var y=(0,m.allPromiseFinish)(c);n.lastValidatePromise=y,y.catch((function(e){return e})).then((function(e){var t=e.map((function(e){return e.name}));n.notifyObservers(n.store,t,{type:"validateFinish"}),n.triggerOnFieldsChange(t,e)}));var b=y.then((function(){return n.lastValidatePromise===y?Promise.resolve(n.getFieldsValue(l)):Promise.reject([])})).catch((function(e){var t=e.filter((function(e){return e&&e.errors.length}));return Promise.reject({values:n.getFieldsValue(l),errorFields:t,outOfDate:n.lastValidatePromise!==y})}));b.catch((function(e){return e}));var O=l.filter((function(e){return d.has(e.join(u))}));return n.triggerOnFieldsChange(O),b})),(0,u.default)(this,"submit",(function(){n.warningUnhooked(),n.validateFields().then((function(e){var t=n.callbacks.onFinish;if(t)try{t(e)}catch(e){console.error(e)}})).catch((function(e){var t=n.callbacks.onFinishFailed;t&&t(e)}))})),this.forceRootUpdate=t}));const w=function(e){var t=h.useRef(),n=h.useState({}),o=(0,r.default)(n,2)[1];if(!t.current)if(e)t.current=e;else{var i=new O((function(){o({})}));t.current=i.getForm()}return[t.current]}},21806:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>u,stringify:()=>l});var r=n(93324),o=(n(80334),n(36198)),i=n(28665),a=n(93409),s=n(53236);function l(e){try{return JSON.stringify(e)}catch(e){return Math.random()}}var c=function(){};const u=function(){for(var e=arguments.length,t=new Array(e),n=0;n{"use strict";n.r(t),n.d(t,{default:()=>d});var r=n(93324),o=n(89062),i=n(15671),a=n(43144),s=n(4942),l=n(71002),c="__@field_split__";function u(e){return e.map((function(e){return"".concat((0,l.default)(e),":").concat(e)})).join(c)}const d=function(){function e(){(0,i.default)(this,e),(0,s.default)(this,"kvs",new Map)}return(0,a.default)(e,[{key:"set",value:function(e,t){this.kvs.set(u(e),t)}},{key:"get",value:function(e){return this.kvs.get(u(e))}},{key:"update",value:function(e,t){var n=t(this.get(e));n?this.set(e,n):this.delete(e)}},{key:"delete",value:function(e){this.kvs.delete(u(e))}},{key:"map",value:function(e){return(0,o.default)(this.kvs.entries()).map((function(t){var n=(0,r.default)(t,2),o=n[0],i=n[1],a=o.split(c);return e({key:a.map((function(e){var t=e.match(/^([^:]*):(.*)$/),n=(0,r.default)(t,3),o=n[1],i=n[2];return"number"===o?Number(i):i})),value:i})}))}},{key:"toJSON",value:function(){var e={};return this.map((function(t){var n=t.key,r=t.value;return e[n.join(".")]=r,null})),e}}]),e}()},40496:(e,t,n)=>{"use strict";function r(e){var t=!1,n=e.length,r=[];return e.length?new Promise((function(o,i){e.forEach((function(e,a){e.catch((function(e){return t=!0,e})).then((function(e){n-=1,r[a]=e,n>0||(t&&i(r),o(r))}))}))})):Promise.resolve([])}n.r(t),n.d(t,{allPromiseFinish:()=>r})},42656:(e,t,n)=>{"use strict";n.r(t),n.d(t,{defaultValidateMessages:()=>o});var r="'${name}' is not a valid ${type}",o={default:"Validation error on field '${name}'",required:"'${name}' is required",enum:"'${name}' must be one of [${enum}]",whitespace:"'${name}' cannot be empty",date:{format:"'${name}' is invalid for format date",parse:"'${name}' could not be parsed as date",invalid:"'${name}' is invalid date"},types:{string:r,method:r,array:r,object:r,number:r,date:r,boolean:r,integer:r,float:r,regexp:r,email:r,url:r,hex:r},string:{len:"'${name}' must be exactly ${len} characters",min:"'${name}' must be at least ${min} characters",max:"'${name}' cannot be longer than ${max} characters",range:"'${name}' must be between ${min} and ${max} characters"},number:{len:"'${name}' must equal ${len}",min:"'${name}' cannot be less than ${min}",max:"'${name}' cannot be greater than ${max}",range:"'${name}' must be between ${min} and ${max}"},array:{len:"'${name}' must be exactly ${len} in length",min:"'${name}' cannot be less than ${min} in length",max:"'${name}' cannot be greater than ${max} in length",range:"'${name}' must be between ${min} and ${max} in length"},pattern:{mismatch:"'${name}' does not match pattern ${pattern}"}}},93409:(e,t,n)=>{"use strict";function r(e){return null==e?[]:Array.isArray(e)?e:[e]}function o(e){return e&&!!e._init}n.r(t),n.d(t,{isFormInstance:()=>o,toArray:()=>r})},416:(e,t,n)=>{"use strict";n.r(t),n.d(t,{validateRules:()=>v});var r=n(89062),o=n(4942),i=n(74165),a=n(1413),s=n(15861),l=n(54572),c=n(36198),u=n(80334),d=n(42656),f=n(8880),h=l.default;function p(e,t){return e.replace(/\$\{\w+\}/g,(function(e){var n=e.slice(2,-1);return t[n]}))}var m="CODE_LOGIC_ERROR";function g(e,t,n,r,o){return y.apply(this,arguments)}function y(){return y=(0,s.default)((0,i.default)().mark((function e(t,n,s,l,u){var y,v,b,O,w,S,x,E,T;return(0,i.default)().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return delete(y=(0,a.default)({},s)).ruleIndex,h.warning=function(){},y.validator&&(v=y.validator,y.validator=function(){try{return v.apply(void 0,arguments)}catch(e){return console.error(e),Promise.reject(m)}}),b=null,y&&"array"===y.type&&y.defaultField&&(b=y.defaultField,delete y.defaultField),O=new h((0,o.default)({},t,[y])),w=(0,f.merge)(d.defaultValidateMessages,l.validateMessages),O.messages(w),S=[],e.prev=10,e.next=13,Promise.resolve(O.validate((0,o.default)({},t,n),(0,a.default)({},l)));case 13:e.next=18;break;case 15:e.prev=15,e.t0=e.catch(10),e.t0.errors&&(S=e.t0.errors.map((function(e,t){var n=e.message,r=n===m?w.default:n;return c.isValidElement(r)?c.cloneElement(r,{key:"error_".concat(t)}):r})));case 18:if(S.length||!b){e.next=23;break}return e.next=21,Promise.all(n.map((function(e,n){return g("".concat(t,".").concat(n),e,b,l,u)})));case 21:return x=e.sent,e.abrupt("return",x.reduce((function(e,t){return[].concat((0,r.default)(e),(0,r.default)(t))}),[]));case 23:return E=(0,a.default)((0,a.default)({},s),{},{name:t,enum:(s.enum||[]).join(", ")},u),T=S.map((function(e){return"string"==typeof e?p(e,E):e})),e.abrupt("return",T);case 26:case"end":return e.stop()}}),e,null,[[10,15]])}))),y.apply(this,arguments)}function v(e,t,n,r,o,l){var c,d=e.join("."),f=n.map((function(e,t){var n=e.validator,r=(0,a.default)((0,a.default)({},e),{},{ruleIndex:t});return n&&(r.validator=function(e,t,r){var o=!1,i=n(e,t,(function(){for(var e=arguments.length,t=new Array(e),n=0;n{"use strict";n.r(t),n.d(t,{cloneByNamePathList:()=>c,containsNamePath:()=>u,defaultGetValueFromEvent:()=>h,getNamePath:()=>l,getValue:()=>i.default,isSimilar:()=>f,matchNamePath:()=>d,move:()=>p,setValue:()=>a.default});var r=n(89062),o=n(71002),i=n(88306),a=n(8880),s=n(93409);function l(e){return(0,s.toArray)(e)}function c(e,t){var n={};return t.forEach((function(t){var r=(0,i.default)(e,t);n=(0,a.default)(n,t,r)})),n}function u(e,t){var n=arguments.length>2&&void 0!==arguments[2]&&arguments[2];return e&&e.some((function(e){return d(t,e,n)}))}function d(e,t){return!(!e||!t)&&(!(!(arguments.length>2&&void 0!==arguments[2]&&arguments[2])&&e.length!==t.length)&&t.every((function(t,n){return e[n]===t})))}function f(e,t){if(e===t)return!0;if(!e&&t||e&&!t)return!1;if(!e||!t||"object"!==(0,o.default)(e)||"object"!==(0,o.default)(t))return!1;var n=Object.keys(e),i=Object.keys(t),a=new Set([].concat(n,i));return(0,r.default)(a).every((function(n){var r=e[n],o=t[n];return"function"==typeof r&&"function"==typeof o||r===o}))}function h(e){var t=arguments.length<=1?void 0:arguments[1];return t&&t.target&&"object"===(0,o.default)(t.target)&&e in t.target?t.target[e]:t}function p(e,t,n){var o=e.length;if(t<0||t>=o||n<0||n>=o)return e;var i=e[t],a=t-n;return a>0?[].concat((0,r.default)(e.slice(0,n)),[i],(0,r.default)(e.slice(n,t)),(0,r.default)(e.slice(t+1,o))):a<0?[].concat((0,r.default)(e.slice(0,t)),(0,r.default)(e.slice(t+1,n+1)),[i],(0,r.default)(e.slice(n+1,o))):e}},48960:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>d});var r=n(1413),o=n(87462),i=n(4942),a=n(71002),s=n(93967),l=n.n(s),c=n(36198),u=n(87887);const d=function(e){var t,n,s=e.inputElement,d=e.children,f=e.prefixCls,h=e.prefix,p=e.suffix,m=e.addonBefore,g=e.addonAfter,y=e.className,v=e.style,b=e.disabled,O=e.readOnly,w=e.focused,S=e.triggerFocus,x=e.allowClear,E=e.value,T=e.handleReset,C=e.hidden,P=e.classes,_=e.classNames,k=e.dataAttrs,j=e.styles,A=e.components,R=null!=d?d:s,D=(null==A?void 0:A.affixWrapper)||"span",L=(null==A?void 0:A.groupWrapper)||"span",I=(null==A?void 0:A.wrapper)||"span",M=(null==A?void 0:A.groupAddon)||"span",N=(0,c.useRef)(null),$=(0,u.hasPrefixSuffix)(e),B=(0,c.cloneElement)(R,{value:E,className:l()(R.props.className,!$&&(null==_?void 0:_.variant))||null});if($){var F,Q=null;if(x){var z,V=!b&&!O&&E,U="".concat(f,"-clear-icon"),W="object"===(0,a.default)(x)&&null!=x&&x.clearIcon?x.clearIcon:"✖";Q=c.createElement("span",{onClick:T,onMouseDown:function(e){return e.preventDefault()},className:l()(U,(z={},(0,i.default)(z,"".concat(U,"-hidden"),!V),(0,i.default)(z,"".concat(U,"-has-suffix"),!!p),z)),role:"button",tabIndex:-1},W)}var G="".concat(f,"-affix-wrapper"),X=l()(G,(F={},(0,i.default)(F,"".concat(f,"-disabled"),b),(0,i.default)(F,"".concat(G,"-disabled"),b),(0,i.default)(F,"".concat(G,"-focused"),w),(0,i.default)(F,"".concat(G,"-readonly"),O),(0,i.default)(F,"".concat(G,"-input-with-clear-btn"),p&&x&&E),F),null==P?void 0:P.affixWrapper,null==_?void 0:_.affixWrapper,null==_?void 0:_.variant),q=(p||x)&&c.createElement("span",{className:l()("".concat(f,"-suffix"),null==_?void 0:_.suffix),style:null==j?void 0:j.suffix},Q,p);B=c.createElement(D,(0,o.default)({className:X,style:null==j?void 0:j.affixWrapper,onClick:function(e){var t;null!==(t=N.current)&&void 0!==t&&t.contains(e.target)&&(null==S||S())}},null==k?void 0:k.affixWrapper,{ref:N}),h&&c.createElement("span",{className:l()("".concat(f,"-prefix"),null==_?void 0:_.prefix),style:null==j?void 0:j.prefix},h),B,q)}if((0,u.hasAddon)(e)){var H="".concat(f,"-group"),Z="".concat(H,"-addon"),Y="".concat(H,"-wrapper"),K=l()("".concat(f,"-wrapper"),H,null==P?void 0:P.wrapper,null==_?void 0:_.wrapper),J=l()(Y,(0,i.default)({},"".concat(Y,"-disabled"),b),null==P?void 0:P.group,null==_?void 0:_.groupWrapper);B=c.createElement(L,{className:J},c.createElement(I,{className:K},m&&c.createElement(M,{className:Z},m),B,g&&c.createElement(M,{className:Z},g)))}return c.cloneElement(B,{className:l()(null===(t=B.props)||void 0===t?void 0:t.className,y)||null,style:(0,r.default)((0,r.default)({},null===(n=B.props)||void 0===n?void 0:n.style),v),hidden:C})}},91504:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>v});var r=n(1413),o=n(87462),i=n(4942),a=n(89062),s=n(93324),l=n(45987),c=n(93967),u=n.n(c),d=n(21770),f=n(98423),h=n(36198),p=n(48960),m=n(82234),g=n(87887),y=["autoComplete","onChange","onFocus","onBlur","onPressEnter","onKeyDown","prefixCls","disabled","htmlSize","className","maxLength","suffix","showCount","count","type","classes","classNames","styles","onCompositionStart","onCompositionEnd"];const v=(0,h.forwardRef)((function(e,t){var n=e.autoComplete,c=e.onChange,v=e.onFocus,b=e.onBlur,O=e.onPressEnter,w=e.onKeyDown,S=e.prefixCls,x=void 0===S?"rc-input":S,E=e.disabled,T=e.htmlSize,C=e.className,P=e.maxLength,_=e.suffix,k=e.showCount,j=e.count,A=e.type,R=void 0===A?"text":A,D=e.classes,L=e.classNames,I=e.styles,M=e.onCompositionStart,N=e.onCompositionEnd,$=(0,l.default)(e,y),B=(0,h.useState)(!1),F=(0,s.default)(B,2),Q=F[0],z=F[1],V=(0,h.useRef)(!1),U=(0,h.useRef)(null),W=function(e){U.current&&(0,g.triggerFocus)(U.current,e)},G=(0,d.default)(e.defaultValue,{value:e.value}),X=(0,s.default)(G,2),q=X[0],H=X[1],Z=null==q?"":String(q),Y=(0,h.useState)(null),K=(0,s.default)(Y,2),J=K[0],ee=K[1],te=(0,m.default)(j,k),ne=te.max||P,re=te.strategy(Z),oe=!!ne&&re>ne;(0,h.useImperativeHandle)(t,(function(){return{focus:W,blur:function(){var e;null===(e=U.current)||void 0===e||e.blur()},setSelectionRange:function(e,t,n){var r;null===(r=U.current)||void 0===r||r.setSelectionRange(e,t,n)},select:function(){var e;null===(e=U.current)||void 0===e||e.select()},input:U.current}})),(0,h.useEffect)((function(){z((function(e){return(!e||!E)&&e}))}),[E]);var ie=function(e,t,n){var r,o,i=t;if(!V.current&&te.exceedFormatter&&te.max&&te.strategy(t)>te.max)t!==(i=te.exceedFormatter(t,{max:te.max}))&&ee([(null===(r=U.current)||void 0===r?void 0:r.selectionStart)||0,(null===(o=U.current)||void 0===o?void 0:o.selectionEnd)||0]);else if("compositionEnd"===n.source)return;H(i),U.current&&(0,g.resolveOnChange)(U.current,e,c,i)};(0,h.useEffect)((function(){var e;J&&(null===(e=U.current)||void 0===e||e.setSelectionRange.apply(e,(0,a.default)(J)))}),[J]);var ae,se=function(e){ie(e,e.target.value,{source:"change"})},le=function(e){V.current=!1,ie(e,e.currentTarget.value,{source:"compositionEnd"}),null==N||N(e)},ce=function(e){O&&"Enter"===e.key&&O(e),null==w||w(e)},ue=function(e){z(!0),null==v||v(e)},de=function(e){z(!1),null==b||b(e)},fe=oe&&"".concat(x,"-out-of-range");return h.createElement(p.default,(0,o.default)({},$,{prefixCls:x,className:u()(C,fe),handleReset:function(e){H(""),W(),U.current&&(0,g.resolveOnChange)(U.current,e,c)},value:Z,focused:Q,triggerFocus:W,suffix:function(){var e=Number(ne)>0;if(_||te.show){var t=te.showFormatter?te.showFormatter({value:Z,count:re,maxLength:ne}):"".concat(re).concat(e?" / ".concat(ne):"");return h.createElement(h.Fragment,null,te.show&&h.createElement("span",{className:u()("".concat(x,"-show-count-suffix"),(0,i.default)({},"".concat(x,"-show-count-has-suffix"),!!_),null==L?void 0:L.count),style:(0,r.default)({},null==I?void 0:I.count)},t),_)}return null}(),disabled:E,classes:D,classNames:L,styles:I}),(ae=(0,f.default)(e,["prefixCls","onPressEnter","addonBefore","addonAfter","prefix","suffix","allowClear","defaultValue","showCount","count","classes","htmlSize","styles","classNames"]),h.createElement("input",(0,o.default)({autoComplete:n},ae,{onChange:se,onFocus:ue,onBlur:de,onKeyDown:ce,className:u()(x,(0,i.default)({},"".concat(x,"-disabled"),E),null==L?void 0:L.input),style:null==I?void 0:I.input,ref:U,size:T,type:R,onCompositionStart:function(e){V.current=!0,null==M||M(e)},onCompositionEnd:le}))))}))},82234:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>c,inCountRange:()=>l});var r=n(45987),o=n(1413),i=n(71002),a=n(36198),s=["show"];function l(e,t){return!t.max||t.strategy(e)<=t.max}function c(e,t){return a.useMemo((function(){var n={};t&&(n.show="object"===(0,i.default)(t)&&t.formatter?t.formatter:!!t);var a=n=(0,o.default)((0,o.default)({},n),e),l=a.show,c=(0,r.default)(a,s);return(0,o.default)((0,o.default)({},c),{},{show:!!l,showFormatter:"function"==typeof l?l:void 0,strategy:c.strategy||function(e){return e.length}})}),[e,t])}},10584:(e,t,n)=>{"use strict";n.r(t),n.d(t,{BaseInput:()=>r.default,default:()=>o});var r=n(48960);const o=n(91504).default},87887:(e,t,n)=>{"use strict";function r(e){return!(!e.addonBefore&&!e.addonAfter)}function o(e){return!!(e.prefix||e.suffix||e.allowClear)}function i(e,t,n){var r=t.cloneNode(!0),o=Object.create(e,{target:{value:r},currentTarget:{value:r}});return r.value=n,"number"==typeof t.selectionStart&&"number"==typeof t.selectionEnd&&(r.selectionStart=t.selectionStart,r.selectionEnd=t.selectionEnd),o}function a(e,t,n,r){if(n){var o=t;"click"!==t.type?"file"===e.type||void 0===r?n(o):n(o=i(t,e,r)):n(o=i(t,e,""))}}function s(e,t){if(e){e.focus(t);var n=(t||{}).cursor;if(n){var r=e.value.length;switch(n){case"start":e.setSelectionRange(0,0);break;case"end":e.setSelectionRange(r,r);break;default:e.setSelectionRange(0,r)}}}}n.r(t),n.d(t,{hasAddon:()=>r,hasPrefixSuffix:()=>o,resolveOnChange:()=>a,triggerFocus:()=>s})},15407:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>b,genCSSMotion:()=>v});var r=n(4942),o=n(1413),i=n(93324),a=n(71002),s=n(93967),l=n.n(s),c=n(34203),u=n(42550),d=n(36198),f=n(40507),h=n(44154),p=n(72215),m=n(10179),g=n(21279),y=n(94159);function v(e){var t=e;"object"===(0,a.default)(e)&&(t=e.transitionSupport);var n=d.forwardRef((function(e,n){var a=e.visible,s=void 0===a||a,v=e.removeOnLeave,b=void 0===v||v,O=e.forceRender,w=e.children,S=e.motionName,x=e.leavedClassName,E=e.eventProps,T=function(e,n){return!(!e.motionName||!t||!1===n)}(e,d.useContext(f.Context).motion),C=(0,d.useRef)(),P=(0,d.useRef)();var _=(0,p.default)(T,s,(function(){try{return C.current instanceof HTMLElement?C.current:(0,c.default)(P.current)}catch(e){return null}}),e),k=(0,i.default)(_,4),j=k[0],A=k[1],R=k[2],D=k[3],L=d.useRef(D);D&&(L.current=!0);var I,M=d.useCallback((function(e){C.current=e,(0,u.fillRef)(n,e)}),[n]),N=(0,o.default)((0,o.default)({},E),{},{visible:s});if(w)if(j===g.STATUS_NONE)I=D?w((0,o.default)({},N),M):!b&&L.current&&x?w((0,o.default)((0,o.default)({},N),{},{className:x}),M):O||!b&&!x?w((0,o.default)((0,o.default)({},N),{},{style:{display:"none"}}),M):null;else{var $,B;A===g.STEP_PREPARE?B="prepare":(0,m.isActive)(A)?B="active":A===g.STEP_START&&(B="start");var F=(0,y.getTransitionName)(S,"".concat(j,"-").concat(B));I=w((0,o.default)((0,o.default)({},N),{},{className:l()((0,y.getTransitionName)(S,j),($={},(0,r.default)($,F,F&&B),(0,r.default)($,S,"string"==typeof S),$)),style:R}),M)}else I=null;d.isValidElement(I)&&(0,u.supportRef)(I)&&(I.ref||(I=d.cloneElement(I,{ref:M})));return d.createElement(h.default,{ref:P},I)}));return n.displayName="CSSMotion",n}const b=v(y.supportTransition)},84173:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>O,genCSSMotionList:()=>b});var r=n(87462),o=n(45987),i=n(1413),a=n(15671),s=n(43144),l=n(97326),c=n(60136),u=n(29388),d=n(4942),f=n(36198),h=n(15407),p=n(52378),m=n(94159),g=["component","children","onVisibleChanged","onAllRemoved"],y=["status"],v=["eventProps","visible","children","motionName","motionAppear","motionEnter","motionLeave","motionLeaveImmediately","motionDeadline","removeOnLeave","leavedClassName","onAppearPrepare","onAppearStart","onAppearActive","onAppearEnd","onEnterStart","onEnterActive","onEnterEnd","onLeaveStart","onLeaveActive","onLeaveEnd"];function b(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:h.default,n=function(e){(0,c.default)(h,e);var n=(0,u.default)(h);function h(){var e;(0,a.default)(this,h);for(var t=arguments.length,r=new Array(t),o=0;o{"use strict";n.r(t),n.d(t,{default:()=>s});var r=n(15671),o=n(43144),i=n(60136),a=n(29388);const s=function(e){(0,i.default)(n,e);var t=(0,a.default)(n);function n(){return(0,r.default)(this,n),t.apply(this,arguments)}return(0,o.default)(n,[{key:"render",value:function(){return this.props.children}}]),n}(n(36198).Component)},40507:(e,t,n)=>{"use strict";n.r(t),n.d(t,{Context:()=>a,default:()=>s});var r=n(45987),o=n(36198),i=["children"],a=o.createContext({});function s(e){var t=e.children,n=(0,r.default)(e,i);return o.createElement(a.Provider,{value:n},t)}},68377:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(36198),o=n(94159);const i=function(e){var t=(0,r.useRef)(),n=(0,r.useRef)(e);n.current=e;var i=r.useCallback((function(e){n.current(e)}),[]);function a(e){e&&(e.removeEventListener(o.transitionEndName,i),e.removeEventListener(o.animationEndName,i))}return r.useEffect((function(){return function(){a(t.current)}}),[]),[function(e){t.current&&t.current!==e&&a(t.current),e&&e!==t.current&&(e.addEventListener(o.transitionEndName,i),e.addEventListener(o.animationEndName,i),t.current=e)},a]}},10586:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(98924),o=n(36198);const i=(0,r.default)()?o.useLayoutEffect:o.useEffect},54194:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(75164),o=n(36198);const i=function(){var e=o.useRef(null);function t(){r.default.cancel(e.current)}return o.useEffect((function(){return function(){t()}}),[]),[function n(o){var i=arguments.length>1&&void 0!==arguments[1]?arguments[1]:2;t();var a=(0,r.default)((function(){i<=1?o({isCanceled:function(){return a!==e.current}}):n(o,i-1)}));e.current=a},t]}},72215:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>f});var r=n(1413),o=n(4942),i=n(93324),a=n(30470),s=n(36198),l=n(21279),c=n(68377),u=n(10586),d=n(10179);function f(e,t,n,f){var h=f.motionEnter,p=void 0===h||h,m=f.motionAppear,g=void 0===m||m,y=f.motionLeave,v=void 0===y||y,b=f.motionDeadline,O=f.motionLeaveImmediately,w=f.onAppearPrepare,S=f.onEnterPrepare,x=f.onLeavePrepare,E=f.onAppearStart,T=f.onEnterStart,C=f.onLeaveStart,P=f.onAppearActive,_=f.onEnterActive,k=f.onLeaveActive,j=f.onAppearEnd,A=f.onEnterEnd,R=f.onLeaveEnd,D=f.onVisibleChanged,L=(0,a.default)(),I=(0,i.default)(L,2),M=I[0],N=I[1],$=(0,a.default)(l.STATUS_NONE),B=(0,i.default)($,2),F=B[0],Q=B[1],z=(0,a.default)(null),V=(0,i.default)(z,2),U=V[0],W=V[1],G=(0,s.useRef)(!1),X=(0,s.useRef)(null);function q(){return n()}var H=(0,s.useRef)(!1);function Z(){Q(l.STATUS_NONE,!0),W(null,!0)}function Y(e){var t=q();if(!e||e.deadline||e.target===t){var n,r=H.current;F===l.STATUS_APPEAR&&r?n=null==j?void 0:j(t,e):F===l.STATUS_ENTER&&r?n=null==A?void 0:A(t,e):F===l.STATUS_LEAVE&&r&&(n=null==R?void 0:R(t,e)),F!==l.STATUS_NONE&&r&&!1!==n&&Z()}}var K=(0,c.default)(Y),J=(0,i.default)(K,1)[0],ee=function(e){var t,n,r;switch(e){case l.STATUS_APPEAR:return t={},(0,o.default)(t,l.STEP_PREPARE,w),(0,o.default)(t,l.STEP_START,E),(0,o.default)(t,l.STEP_ACTIVE,P),t;case l.STATUS_ENTER:return n={},(0,o.default)(n,l.STEP_PREPARE,S),(0,o.default)(n,l.STEP_START,T),(0,o.default)(n,l.STEP_ACTIVE,_),n;case l.STATUS_LEAVE:return r={},(0,o.default)(r,l.STEP_PREPARE,x),(0,o.default)(r,l.STEP_START,C),(0,o.default)(r,l.STEP_ACTIVE,k),r;default:return{}}},te=s.useMemo((function(){return ee(F)}),[F]),ne=(0,d.default)(F,!e,(function(e){if(e===l.STEP_PREPARE){var t=te[l.STEP_PREPARE];return t?t(q()):d.SkipStep}var n;ie in te&&W((null===(n=te[ie])||void 0===n?void 0:n.call(te,q(),null))||null);return ie===l.STEP_ACTIVE&&(J(q()),b>0&&(clearTimeout(X.current),X.current=setTimeout((function(){Y({deadline:!0})}),b))),ie===l.STEP_PREPARED&&Z(),d.DoStep})),re=(0,i.default)(ne,2),oe=re[0],ie=re[1],ae=(0,d.isActive)(ie);H.current=ae,(0,u.default)((function(){N(t);var n,r=G.current;G.current=!0,!r&&t&&g&&(n=l.STATUS_APPEAR),r&&t&&p&&(n=l.STATUS_ENTER),(r&&!t&&v||!r&&O&&!t&&v)&&(n=l.STATUS_LEAVE);var o=ee(n);n&&(e||o[l.STEP_PREPARE])?(Q(n),oe()):Q(l.STATUS_NONE)}),[t]),(0,s.useEffect)((function(){(F===l.STATUS_APPEAR&&!g||F===l.STATUS_ENTER&&!p||F===l.STATUS_LEAVE&&!v)&&Q(l.STATUS_NONE)}),[g,p,v]),(0,s.useEffect)((function(){return function(){G.current=!1,clearTimeout(X.current)}}),[]);var se=s.useRef(!1);(0,s.useEffect)((function(){M&&(se.current=!0),void 0!==M&&F===l.STATUS_NONE&&((se.current||M)&&(null==D||D(M)),se.current=!0)}),[M,F]);var le=U;return te[l.STEP_PREPARE]&&ie===l.STEP_START&&(le=(0,r.default)({transition:"none"},le)),[F,ie,le,null!=M?M:t]}},10179:(e,t,n)=>{"use strict";n.r(t),n.d(t,{DoStep:()=>f,SkipStep:()=>d,default:()=>p,isActive:()=>h});var r=n(93324),o=n(30470),i=n(36198),a=n(21279),s=n(10586),l=n(54194),c=[a.STEP_PREPARE,a.STEP_START,a.STEP_ACTIVE,a.STEP_ACTIVATED],u=[a.STEP_PREPARE,a.STEP_PREPARED],d=!1,f=!0;function h(e){return e===a.STEP_ACTIVE||e===a.STEP_ACTIVATED}const p=function(e,t,n){var f=(0,o.default)(a.STEP_NONE),h=(0,r.default)(f,2),p=h[0],m=h[1],g=(0,l.default)(),y=(0,r.default)(g,2),v=y[0],b=y[1];var O=t?u:c;return(0,s.default)((function(){if(p!==a.STEP_NONE&&p!==a.STEP_ACTIVATED){var e=O.indexOf(p),t=O[e+1],r=n(p);r===d?m(t,!0):t&&v((function(e){function n(){e.isCanceled()||m(t,!0)}!0===r?n():Promise.resolve(r).then(n)}))}}),[e,p]),i.useEffect((function(){return function(){b()}}),[]),[function(){m(a.STEP_PREPARE,!0)},p]}},93587:(e,t,n)=>{"use strict";n.r(t),n.d(t,{CSSMotionList:()=>o.default,Provider:()=>i.default,default:()=>a});var r=n(15407),o=n(84173),i=n(40507);const a=r.default},21279:(e,t,n)=>{"use strict";n.r(t),n.d(t,{STATUS_APPEAR:()=>o,STATUS_ENTER:()=>i,STATUS_LEAVE:()=>a,STATUS_NONE:()=>r,STEP_ACTIVATED:()=>d,STEP_ACTIVE:()=>u,STEP_NONE:()=>s,STEP_PREPARE:()=>l,STEP_PREPARED:()=>f,STEP_START:()=>c});var r="none",o="appear",i="enter",a="leave",s="none",l="prepare",c="start",u="active",d="end",f="prepared"},52378:(e,t,n)=>{"use strict";n.r(t),n.d(t,{STATUS_ADD:()=>i,STATUS_KEEP:()=>a,STATUS_REMOVE:()=>s,STATUS_REMOVED:()=>l,diffKeys:()=>d,parseKeys:()=>u,wrapKeyToObject:()=>c});var r=n(1413),o=n(71002),i="add",a="keep",s="remove",l="removed";function c(e){var t;return t=e&&"object"===(0,o.default)(e)&&"key"in e?e:{key:e},(0,r.default)((0,r.default)({},t),{},{key:String(t.key)})}function u(){return(arguments.length>0&&void 0!==arguments[0]?arguments[0]:[]).map(c)}function d(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[],n=[],o=0,l=t.length,c=u(e),d=u(t);c.forEach((function(e){for(var t=!1,c=o;c1})).forEach((function(e){(n=n.filter((function(t){var n=t.key,r=t.status;return n!==e||r!==s}))).forEach((function(t){t.key===e&&(t.status=a)}))})),n}},94159:(e,t,n)=>{"use strict";n.r(t),n.d(t,{animationEndName:()=>m,getTransitionName:()=>y,getVendorPrefixedEventName:()=>d,getVendorPrefixes:()=>a,supportTransition:()=>p,transitionEndName:()=>g});var r=n(71002),o=n(98924);function i(e,t){var n={};return n[e.toLowerCase()]=t.toLowerCase(),n["Webkit".concat(e)]="webkit".concat(t),n["Moz".concat(e)]="moz".concat(t),n["ms".concat(e)]="MS".concat(t),n["O".concat(e)]="o".concat(t.toLowerCase()),n}function a(e,t){var n={animationend:i("Animation","AnimationEnd"),transitionend:i("Transition","TransitionEnd")};return e&&("AnimationEvent"in t||delete n.animationend.animation,"TransitionEvent"in t||delete n.transitionend.transition),n}var s=a((0,o.default)(),"undefined"!=typeof window?window:{}),l={};if((0,o.default)()){var c=document.createElement("div");l=c.style}var u={};function d(e){if(u[e])return u[e];var t=s[e];if(t)for(var n=Object.keys(t),r=n.length,o=0;o{"use strict";n.r(t),n.d(t,{default:()=>r});const r={items_per_page:"/ page",jump_to:"Go to",jump_to_confirm:"confirm",page:"Page",prev_page:"Previous Page",next_page:"Next Page",prev_5:"Previous 5 Pages",next_5:"Next 5 Pages",prev_3:"Previous 3 Pages",next_3:"Next 3 Pages",page_size:"Page Size"}},18758:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>r});const r={locale:"en_US",today:"Today",now:"Now",backToToday:"Back to today",ok:"OK",clear:"Clear",month:"Month",year:"Year",timeSelect:"select time",dateSelect:"select date",weekSelect:"Choose a week",monthSelect:"Choose a month",yearSelect:"Choose a year",decadeSelect:"Choose a decade",yearFormat:"YYYY",dateFormat:"M/D/YYYY",dayFormat:"D",dateTimeFormat:"M/D/YYYY HH:mm:ss",monthBeforeYear:!0,previousMonth:"Previous month (PageUp)",nextMonth:"Next month (PageDown)",previousYear:"Last year (Control + left)",nextYear:"Next year (Control + right)",previousDecade:"Last decade",nextDecade:"Next decade",previousCentury:"Last century",nextCentury:"Next century"}},59138:(e,t,n)=>{"use strict";n.r(t),n.d(t,{Collection:()=>i,CollectionContext:()=>o});var r=n(36198),o=r.createContext(null);function i(e){var t=e.children,n=e.onBatchResize,i=r.useRef(0),a=r.useRef([]),s=r.useContext(o),l=r.useCallback((function(e,t,r){i.current+=1;var o=i.current;a.current.push({size:e,element:t,data:r}),Promise.resolve().then((function(){o===i.current&&(null==n||n(a.current),a.current=[])})),null==s||s(e,t,r)}),[n,s]);return r.createElement(o.Provider,{value:l},t)}},86388:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>s});var r=n(15671),o=n(43144),i=n(60136),a=n(29388),s=function(e){(0,i.default)(n,e);var t=(0,a.default)(n);function n(){return(0,r.default)(this,n),t.apply(this,arguments)}return(0,o.default)(n,[{key:"render",value:function(){return this.props.children}}]),n}(n(36198).Component)},31162:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>f});var r=n(1413),o=n(71002),i=n(34203),a=n(42550),s=n(36198),l=n(59138),c=n(42591),u=n(86388);function d(e,t){var n=e.children,d=e.disabled,f=s.useRef(null),h=s.useRef(null),p=s.useContext(l.CollectionContext),m="function"==typeof n,g=m?n(f):n,y=s.useRef({width:-1,height:-1,offsetWidth:-1,offsetHeight:-1}),v=!m&&s.isValidElement(g)&&(0,a.supportRef)(g),b=v?g.ref:null,O=(0,a.useComposeRef)(b,f),w=function(){var e;return(0,i.default)(f.current)||(f.current&&"object"===(0,o.default)(f.current)?(0,i.default)(null===(e=f.current)||void 0===e?void 0:e.nativeElement):null)||(0,i.default)(h.current)};s.useImperativeHandle(t,(function(){return w()}));var S=s.useRef(e);S.current=e;var x=s.useCallback((function(e){var t=S.current,n=t.onResize,o=t.data,i=e.getBoundingClientRect(),a=i.width,s=i.height,l=e.offsetWidth,c=e.offsetHeight,u=Math.floor(a),d=Math.floor(s);if(y.current.width!==u||y.current.height!==d||y.current.offsetWidth!==l||y.current.offsetHeight!==c){var f={width:u,height:d,offsetWidth:l,offsetHeight:c};y.current=f;var h=l===Math.round(a)?a:l,m=c===Math.round(s)?s:c,g=(0,r.default)((0,r.default)({},f),{},{offsetWidth:h,offsetHeight:m});null==p||p(g,e,o),n&&Promise.resolve().then((function(){n(g,e)}))}}),[]);return s.useEffect((function(){var e=w();return e&&!d&&(0,c.observe)(e,x),function(){return(0,c.unobserve)(e,x)}}),[f.current,d]),s.createElement(u.default,{ref:h},v?s.cloneElement(g,{ref:O}):g)}const f=s.forwardRef(d)},4084:(e,t,n)=>{"use strict";n.r(t),n.d(t,{_rs:()=>l._rs,default:()=>d});var r=n(87462),o=n(36198),i=n(50344),a=(n(80334),n(31162)),s=n(59138),l=n(42591);function c(e,t){var n=e.children;return("function"==typeof n?[n]:(0,i.default)(n)).map((function(n,i){var s=(null==n?void 0:n.key)||"".concat("rc-observer-key","-").concat(i);return o.createElement(a.default,(0,r.default)({},e,{key:s,ref:0===i?t:void 0}),n)}))}var u=o.forwardRef(c);u.Collection=s.Collection;const d=u},42591:(e,t,n)=>{"use strict";n.r(t),n.d(t,{_el:()=>a,_rs:()=>s,observe:()=>l,unobserve:()=>c});var r=n(91033),o=new Map;var i=new r.default((function(e){e.forEach((function(e){var t,n=e.target;null===(t=o.get(n))||void 0===t||t.forEach((function(e){return e(n)}))}))})),a=null,s=null;function l(e,t){o.has(e)||(o.set(e,new Set),i.observe(e)),o.get(e).add(t)}function c(e,t){o.has(e)&&(o.get(e).delete(t),o.get(e).size||(i.unobserve(e),o.delete(e)))}},94782:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>v});var r=n(87462),o=n(4942),i=n(1413),a=n(71002),s=n(93324),l=n(45987),c=n(93967),u=n.n(c),d=n(4084),f=n(8410),h=n(21770),p=n(75164),m=n(36198),g=n(72801),y=["prefixCls","onPressEnter","defaultValue","value","autoSize","onResize","className","style","disabled","onChange","onInternalAutoSize"];const v=m.forwardRef((function(e,t){var n=e,c=n.prefixCls,v=(n.onPressEnter,n.defaultValue),b=n.value,O=n.autoSize,w=n.onResize,S=n.className,x=n.style,E=n.disabled,T=n.onChange,C=(n.onInternalAutoSize,(0,l.default)(n,y)),P=(0,h.default)(v,{value:b,postState:function(e){return null!=e?e:""}}),_=(0,s.default)(P,2),k=_[0],j=_[1],A=m.useRef();m.useImperativeHandle(t,(function(){return{textArea:A.current}}));var R=m.useMemo((function(){return O&&"object"===(0,a.default)(O)?[O.minRows,O.maxRows]:[]}),[O]),D=(0,s.default)(R,2),L=D[0],I=D[1],M=!!O,N=m.useState(2),$=(0,s.default)(N,2),B=$[0],F=$[1],Q=m.useState(),z=(0,s.default)(Q,2),V=z[0],U=z[1],W=function(){F(0)};(0,f.default)((function(){M&&W()}),[b,L,I,M]),(0,f.default)((function(){if(0===B)F(1);else if(1===B){var e=(0,g.default)(A.current,!1,L,I);F(2),U(e)}else!function(){try{if(document.activeElement===A.current){var e=A.current,t=e.selectionStart,n=e.selectionEnd,r=e.scrollTop;A.current.setSelectionRange(t,n),A.current.scrollTop=r}}catch(e){}}()}),[B]);var G=m.useRef(),X=function(){p.default.cancel(G.current)};m.useEffect((function(){return X}),[]);var q=M?V:null,H=(0,i.default)((0,i.default)({},x),q);return 0!==B&&1!==B||(H.overflowY="hidden",H.overflowX="hidden"),m.createElement(d.default,{onResize:function(e){2===B&&(null==w||w(e),O&&(X(),G.current=(0,p.default)((function(){W()}))))},disabled:!(O||w)},m.createElement("textarea",(0,r.default)({},C,{ref:A,style:H,className:u()(c,S,(0,o.default)({},"".concat(c,"-disabled"),E)),disabled:E,value:k,onChange:function(e){j(e.target.value),null==T||T(e)}})))}))},15953:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>v});var r=n(87462),o=n(4942),i=n(1413),a=n(89062),s=n(93324),l=n(45987),c=n(93967),u=n.n(c),d=n(10584),f=n(82234),h=n(87887),p=n(21770),m=n(36198),g=n(94782),y=["defaultValue","value","onFocus","onBlur","onChange","allowClear","maxLength","onCompositionStart","onCompositionEnd","suffix","prefixCls","showCount","count","className","style","disabled","hidden","classNames","styles","onResize"];const v=m.forwardRef((function(e,t){var n,c,v=e.defaultValue,b=e.value,O=e.onFocus,w=e.onBlur,S=e.onChange,x=e.allowClear,E=e.maxLength,T=e.onCompositionStart,C=e.onCompositionEnd,P=e.suffix,_=e.prefixCls,k=void 0===_?"rc-textarea":_,j=e.showCount,A=e.count,R=e.className,D=e.style,L=e.disabled,I=e.hidden,M=e.classNames,N=e.styles,$=e.onResize,B=(0,l.default)(e,y),F=(0,p.default)(v,{value:b,defaultValue:v}),Q=(0,s.default)(F,2),z=Q[0],V=Q[1],U=null==z?"":String(z),W=m.useState(!1),G=(0,s.default)(W,2),X=G[0],q=G[1],H=m.useRef(!1),Z=m.useState(null),Y=(0,s.default)(Z,2),K=Y[0],J=Y[1],ee=(0,m.useRef)(null),te=function(){var e;return null===(e=ee.current)||void 0===e?void 0:e.textArea},ne=function(){te().focus()};(0,m.useImperativeHandle)(t,(function(){return{resizableTextArea:ee.current,focus:ne,blur:function(){te().blur()}}})),(0,m.useEffect)((function(){q((function(e){return!L&&e}))}),[L]);var re=m.useState(null),oe=(0,s.default)(re,2),ie=oe[0],ae=oe[1];m.useEffect((function(){var e;ie&&(e=te()).setSelectionRange.apply(e,(0,a.default)(ie))}),[ie]);var se,le=(0,f.default)(A,j),ce=null!==(n=le.max)&&void 0!==n?n:E,ue=Number(ce)>0,de=le.strategy(U),fe=!!ce&&de>ce,he=function(e,t){var n=t;!H.current&&le.exceedFormatter&&le.max&&le.strategy(t)>le.max&&t!==(n=le.exceedFormatter(t,{max:le.max}))&&ae([te().selectionStart||0,te().selectionEnd||0]),V(n),(0,h.resolveOnChange)(e.currentTarget,e,S,n)},pe=P;le.show&&(se=le.showFormatter?le.showFormatter({value:U,count:de,maxLength:ce}):"".concat(de).concat(ue?" / ".concat(ce):""),pe=m.createElement(m.Fragment,null,pe,m.createElement("span",{className:u()("".concat(k,"-data-count"),null==M?void 0:M.count),style:null==N?void 0:N.count},se)));var me=!B.autoSize&&!j&&!x;return m.createElement(d.BaseInput,{value:U,allowClear:x,handleReset:function(e){V(""),ne(),(0,h.resolveOnChange)(te(),e,S)},suffix:pe,prefixCls:k,classNames:(0,i.default)((0,i.default)({},M),{},{affixWrapper:u()(null==M?void 0:M.affixWrapper,(c={},(0,o.default)(c,"".concat(k,"-show-count"),j),(0,o.default)(c,"".concat(k,"-textarea-allow-clear"),x),c))}),disabled:L,focused:X,className:u()(R,fe&&"".concat(k,"-out-of-range")),style:(0,i.default)((0,i.default)({},D),K&&!me?{height:"auto"}:{}),dataAttrs:{affixWrapper:{"data-count":"string"==typeof se?se:void 0}},hidden:I},m.createElement(g.default,(0,r.default)({},B,{maxLength:E,onKeyDown:function(e){var t=B.onPressEnter,n=B.onKeyDown;"Enter"===e.key&&t&&t(e),null==n||n(e)},onChange:function(e){he(e,e.target.value)},onFocus:function(e){q(!0),null==O||O(e)},onBlur:function(e){q(!1),null==w||w(e)},onCompositionStart:function(e){H.current=!0,null==T||T(e)},onCompositionEnd:function(e){H.current=!1,he(e,e.currentTarget.value),null==C||C(e)},className:u()(null==M?void 0:M.textarea),style:(0,i.default)((0,i.default)({},null==N?void 0:N.textarea),{},{resize:null==D?void 0:D.resize}),disabled:L,prefixCls:k,onResize:function(e){var t;null==$||$(e),null!==(t=te())&&void 0!==t&&t.style.height&&J(!0)},ref:ee})))}))},72801:(e,t,n)=>{"use strict";n.r(t),n.d(t,{calculateNodeStyling:()=>s,default:()=>l});var r,o="\n min-height:0 !important;\n max-height:none !important;\n height:0 !important;\n visibility:hidden !important;\n overflow:hidden !important;\n position:absolute !important;\n z-index:-1000 !important;\n top:0 !important;\n right:0 !important;\n pointer-events: none !important;\n",i=["letter-spacing","line-height","padding-top","padding-bottom","font-family","font-weight","font-size","font-variant","text-rendering","text-transform","width","text-indent","padding-left","padding-right","border-width","box-sizing","word-break","white-space"],a={};function s(e){var t=arguments.length>1&&void 0!==arguments[1]&&arguments[1],n=e.getAttribute("id")||e.getAttribute("data-reactid")||e.getAttribute("name");if(t&&a[n])return a[n];var r=window.getComputedStyle(e),o=r.getPropertyValue("box-sizing")||r.getPropertyValue("-moz-box-sizing")||r.getPropertyValue("-webkit-box-sizing"),s=parseFloat(r.getPropertyValue("padding-bottom"))+parseFloat(r.getPropertyValue("padding-top")),l=parseFloat(r.getPropertyValue("border-bottom-width"))+parseFloat(r.getPropertyValue("border-top-width")),c={sizingStyle:i.map((function(e){return"".concat(e,":").concat(r.getPropertyValue(e))})).join(";"),paddingSize:s,borderSize:l,boxSizing:o};return t&&n&&(a[n]=c),c}function l(e){var t=arguments.length>1&&void 0!==arguments[1]&&arguments[1],n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null,i=arguments.length>3&&void 0!==arguments[3]?arguments[3]:null;r||((r=document.createElement("textarea")).setAttribute("tab-index","-1"),r.setAttribute("aria-hidden","true"),document.body.appendChild(r)),e.getAttribute("wrap")?r.setAttribute("wrap",e.getAttribute("wrap")):r.removeAttribute("wrap");var a=s(e,t),l=a.paddingSize,c=a.borderSize,u=a.boxSizing,d=a.sizingStyle;r.setAttribute("style","".concat(d,";").concat(o)),r.value=e.value||e.placeholder||"";var f,h=void 0,p=void 0,m=r.scrollHeight;if("border-box"===u?m+=c:"content-box"===u&&(m-=l),null!==n||null!==i){r.value=" ";var g=r.scrollHeight-l;null!==n&&(h=g*n,"border-box"===u&&(h=h+l+c),m=Math.max(h,m)),null!==i&&(p=g*i,"border-box"===u&&(p=p+l+c),f=m>p?"":"hidden",m=Math.min(p,m))}var y={height:m,overflowY:f,resize:"none"};return h&&(y.minHeight=h),p&&(y.maxHeight=p),y}},11682:(e,t,n)=>{"use strict";n.r(t),n.d(t,{ResizableTextArea:()=>o.default,default:()=>i});var r=n(15953),o=n(94782);const i=r.default},50344:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(36198),o=n(11805);function i(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=[];return r.Children.forEach(e,(function(e){(null!=e||t.keepEmpty)&&(Array.isArray(e)?n=n.concat(i(e)):(0,o.isFragment)(e)&&e.props?n=n.concat(i(e.props.children,t)):n.push(e))})),n}},98924:(e,t,n)=>{"use strict";function r(){return!("undefined"==typeof window||!window.document||!window.document.createElement)}n.r(t),n.d(t,{default:()=>r})},94999:(e,t,n)=>{"use strict";function r(e,t){if(!e)return!1;if(e.contains)return e.contains(t);for(var n=t;n;){if(n===e)return!0;n=n.parentNode}return!1}n.r(t),n.d(t,{default:()=>r})},44958:(e,t,n)=>{"use strict";n.r(t),n.d(t,{clearContainerCache:()=>g,injectCSS:()=>h,removeCSS:()=>m,updateCSS:()=>y});var r=n(1413),o=n(98924),i=n(94999),a="data-rc-order",s="data-rc-priority",l="rc-util-key",c=new Map;function u(){var e=(arguments.length>0&&void 0!==arguments[0]?arguments[0]:{}).mark;return e?e.startsWith("data-")?e:"data-".concat(e):l}function d(e){return e.attachTo?e.attachTo:document.querySelector("head")||document.body}function f(e){return Array.from((c.get(e)||e).children).filter((function(e){return"STYLE"===e.tagName}))}function h(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if(!(0,o.default)())return null;var n=t.csp,r=t.prepend,i=t.priority,l=void 0===i?0:i,c=function(e){return"queue"===e?"prependQueue":e?"prepend":"append"}(r),u="prependQueue"===c,h=document.createElement("style");h.setAttribute(a,c),u&&l&&h.setAttribute(s,"".concat(l)),null!=n&&n.nonce&&(h.nonce=null==n?void 0:n.nonce),h.innerHTML=e;var p=d(t),m=p.firstChild;if(r){if(u){var g=(t.styles||f(p)).filter((function(e){if(!["prepend","prependQueue"].includes(e.getAttribute(a)))return!1;var t=Number(e.getAttribute(s)||0);return l>=t}));if(g.length)return p.insertBefore(h,g[g.length-1].nextSibling),h}p.insertBefore(h,m)}else p.appendChild(h);return h}function p(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=d(t);return(t.styles||f(n)).find((function(n){return n.getAttribute(u(t))===e}))}function m(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=p(e,t);n&&d(t).removeChild(n)}function g(){c.clear()}function y(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},o=d(n),a=f(o),s=(0,r.default)((0,r.default)({},n),{},{styles:a});!function(e,t){var n=c.get(e);if(!n||!(0,i.default)(document,n)){var r=h("",t),o=r.parentNode;c.set(e,o),e.removeChild(r)}}(o,s);var l=p(t,s);if(l){var m,g,y;if(null!==(m=s.csp)&&void 0!==m&&m.nonce&&l.nonce!==(null===(g=s.csp)||void 0===g?void 0:g.nonce))l.nonce=null===(y=s.csp)||void 0===y?void 0:y.nonce;return l.innerHTML!==e&&(l.innerHTML=e),l}var v=h(e,s);return v.setAttribute(u(s),t),v}},34203:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>a,isDOM:()=>i});var r=n(36198),o=n(18348);function i(e){return e instanceof HTMLElement||e instanceof SVGElement}function a(e){return i(e)?e:e instanceof r.Component?o.findDOMNode(e):null}},5110:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>r});const r=function(e){if(!e)return!1;if(e instanceof Element){if(e.offsetParent)return!0;if(e.getBBox){var t=e.getBBox(),n=t.width,r=t.height;if(n||r)return!0}if(e.getBoundingClientRect){var o=e.getBoundingClientRect(),i=o.width,a=o.height;if(i||a)return!0}}return!1}},27571:(e,t,n)=>{"use strict";function r(e){var t;return null==e||null===(t=e.getRootNode)||void 0===t?void 0:t.call(e)}function o(e){return r(e)instanceof ShadowRoot}function i(e){return o(e)?r(e):null}n.r(t),n.d(t,{getShadowRoot:()=>i,inShadow:()=>o})},38135:(e,t,n)=>{"use strict";var r;n.r(t),n.d(t,{_r:()=>g,_u:()=>w,render:()=>y,unmount:()=>S});var o,i=n(74165),a=n(15861),s=n(71002),l=n(1413),c=n(18348),u=(0,l.default)({},r||(r=n.t(c,2))),d=u.version,f=u.render,h=u.unmountComponentAtNode;try{Number((d||"").split(".")[0])>=18&&(o=u.createRoot)}catch(e){}function p(e){var t=u.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;t&&"object"===(0,s.default)(t)&&(t.usingClientEntryPoint=e)}var m="__rc_react_root__";function g(e,t){0}function y(e,t){o?function(e,t){p(!0);var n=t[m]||o(t);p(!1),n.render(e),t[m]=n}(e,t):function(e,t){f(e,t)}(e,t)}function v(e){return b.apply(this,arguments)}function b(){return(b=(0,a.default)((0,i.default)().mark((function e(t){return(0,i.default)().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.abrupt("return",Promise.resolve().then((function(){var e;null===(e=t[m])||void 0===e||e.unmount(),delete t[m]})));case 1:case"end":return e.stop()}}),e)})))).apply(this,arguments)}function O(e){h(e)}function w(e){0}function S(e){return x.apply(this,arguments)}function x(){return(x=(0,a.default)((0,i.default)().mark((function e(t){return(0,i.default)().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(void 0===o){e.next=2;break}return e.abrupt("return",v(t));case 2:O(t);case 3:case"end":return e.stop()}}),e)})))).apply(this,arguments)}},66680:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>o});var r=n(36198);function o(e){var t=r.useRef();t.current=e;var n=r.useCallback((function(){for(var e,n=arguments.length,r=new Array(n),o=0;o{"use strict";n.r(t),n.d(t,{default:()=>s,useLayoutUpdateEffect:()=>a});var r=n(36198),o=(0,n(98924).default)()?r.useLayoutEffect:r.useEffect,i=function(e,t){var n=r.useRef(!0);o((function(){return e(n.current)}),t),o((function(){return n.current=!1,function(){n.current=!0}}),[])},a=function(e,t){i((function(t){if(!t)return e()}),t)};const s=i},56982:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>o});var r=n(36198);function o(e,t,n){var o=r.useRef({});return"value"in o.current&&!n(o.current.condition,t)||(o.current.value=e(),o.current.condition=t),o.current.value}},21770:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>l});var r=n(93324),o=n(66680),i=n(8410),a=n(30470);function s(e){return void 0!==e}function l(e,t){var n=t||{},l=n.defaultValue,c=n.value,u=n.onChange,d=n.postState,f=(0,a.default)((function(){return s(c)?c:s(l)?"function"==typeof l?l():l:"function"==typeof e?e():e})),h=(0,r.default)(f,2),p=h[0],m=h[1],g=void 0!==c?c:p,y=d?d(g):g,v=(0,o.default)(u),b=(0,a.default)([g]),O=(0,r.default)(b,2),w=O[0],S=O[1];return(0,i.useLayoutUpdateEffect)((function(){var e=w[0];p!==e&&v(p,e)}),[w]),(0,i.useLayoutUpdateEffect)((function(){s(c)||m(c)}),[c]),[y,(0,o.default)((function(e,t){m(e,t),S([g],t)}))]}},30470:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(93324),o=n(36198);function i(e){var t=o.useRef(!1),n=o.useState(e),i=(0,r.default)(n,2),a=i[0],s=i[1];return o.useEffect((function(){return t.current=!1,function(){t.current=!0}}),[]),[a,function(e,n){n&&t.current||s(e)}]}},56790:(e,t,n)=>{"use strict";n.r(t),n.d(t,{get:()=>a.default,set:()=>s.default,supportNodeRef:()=>i.supportNodeRef,supportRef:()=>i.supportRef,useComposeRef:()=>i.useComposeRef,useEvent:()=>r.default,useMergedState:()=>o.default,warning:()=>l.default});var r=n(66680),o=n(21770),i=n(42550),a=n(88306),s=n(8880),l=n(80334)},91881:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(71002),o=n(80334);const i=function(e,t){var n=arguments.length>2&&void 0!==arguments[2]&&arguments[2],i=new Set;return function e(t,a){var s=arguments.length>2&&void 0!==arguments[2]?arguments[2]:1,l=i.has(t);if((0,o.default)(!l,"Warning: There may be circular references"),l)return!1;if(t===a)return!0;if(n&&s>1)return!1;i.add(t);var c=s+1;if(Array.isArray(t)){if(!Array.isArray(a)||t.length!==a.length)return!1;for(var u=0;u{"use strict";n.r(t),n.d(t,{default:()=>o});var r=n(1413);function o(e,t){var n=(0,r.default)({},e);return Array.isArray(t)&&t.forEach((function(e){delete n[e]})),n}},75164:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>c});var r=function(e){return+setTimeout(e,16)},o=function(e){return clearTimeout(e)};"undefined"!=typeof window&&"requestAnimationFrame"in window&&(r=function(e){return window.requestAnimationFrame(e)},o=function(e){return window.cancelAnimationFrame(e)});var i=0,a=new Map;function s(e){a.delete(e)}var l=function(e){var t=i+=1;return function n(o){if(0===o)s(t),e();else{var i=r((function(){n(o-1)}));a.set(t,i)}}(arguments.length>1&&void 0!==arguments[1]?arguments[1]:1),t};l.cancel=function(e){var t=a.get(e);return s(e),o(t)};const c=l},42550:(e,t,n)=>{"use strict";n.r(t),n.d(t,{composeRef:()=>l,fillRef:()=>s,supportNodeRef:()=>d,supportRef:()=>u,useComposeRef:()=>c});var r=n(71002),o=n(36198),i=n(11805),a=n(56982),s=function(e,t){"function"==typeof e?e(t):"object"===(0,r.default)(e)&&e&&"current"in e&&(e.current=t)},l=function(){for(var e=arguments.length,t=new Array(e),n=0;n{"use strict";function r(e,t){for(var n=e,r=0;rr})},8880:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>c,merge:()=>f});var r=n(71002),o=n(1413),i=n(89062),a=n(84506),s=n(88306);function l(e,t,n,r){if(!t.length)return n;var s,c=(0,a.default)(t),u=c[0],d=c.slice(1);return s=e||"number"!=typeof u?Array.isArray(e)?(0,i.default)(e):(0,o.default)({},e):[],r&&void 0===n&&1===d.length?delete s[u][d[0]]:s[u]=l(s[u],d,n,r),s}function c(e,t,n){var r=arguments.length>3&&void 0!==arguments[3]&&arguments[3];return t.length&&r&&void 0===n&&!(0,s.default)(e,t.slice(0,-1))?e:l(e,t,n,r)}function u(e){return Array.isArray(e)?[]:{}}var d="undefined"==typeof Reflect?Object.keys:Reflect.ownKeys;function f(){for(var e=arguments.length,t=new Array(e),n=0;n{"use strict";n.r(t),n.d(t,{call:()=>c,default:()=>f,note:()=>s,noteOnce:()=>d,preMessage:()=>i,resetWarned:()=>l,warning:()=>a,warningOnce:()=>u});var r={},o=[],i=function(e){o.push(e)};function a(e,t){}function s(e,t){}function l(){r={}}function c(e,t,n){t||r[n]||(e(!1,n),r[n]=!0)}function u(e,t){c(a,e,t)}function d(e,t){c(s,e,t)}u.preMessage=i,u.resetWarned=l,u.noteOnce=d;const f=u},51162:(e,t)=>{"use strict";var n,r=Symbol.for("react.element"),o=Symbol.for("react.portal"),i=Symbol.for("react.fragment"),a=Symbol.for("react.strict_mode"),s=Symbol.for("react.profiler"),l=Symbol.for("react.provider"),c=Symbol.for("react.context"),u=Symbol.for("react.server_context"),d=Symbol.for("react.forward_ref"),f=Symbol.for("react.suspense"),h=Symbol.for("react.suspense_list"),p=Symbol.for("react.memo"),m=Symbol.for("react.lazy"),g=Symbol.for("react.offscreen");function y(e){if("object"==typeof e&&null!==e){var t=e.$$typeof;switch(t){case r:switch(e=e.type){case i:case s:case a:case f:case h:return e;default:switch(e=e&&e.$$typeof){case u:case c:case d:case m:case p:case l:return e;default:return t}}case o:return t}}}n=Symbol.for("react.module.reference"),t.ContextConsumer=c,t.ContextProvider=l,t.Element=r,t.ForwardRef=d,t.Fragment=i,t.Lazy=m,t.Memo=p,t.Portal=o,t.Profiler=s,t.StrictMode=a,t.Suspense=f,t.SuspenseList=h,t.isAsyncMode=function(){return!1},t.isConcurrentMode=function(){return!1},t.isContextConsumer=function(e){return y(e)===c},t.isContextProvider=function(e){return y(e)===l},t.isElement=function(e){return"object"==typeof e&&null!==e&&e.$$typeof===r},t.isForwardRef=function(e){return y(e)===d},t.isFragment=function(e){return y(e)===i},t.isLazy=function(e){return y(e)===m},t.isMemo=function(e){return y(e)===p},t.isPortal=function(e){return y(e)===o},t.isProfiler=function(e){return y(e)===s},t.isStrictMode=function(e){return y(e)===a},t.isSuspense=function(e){return y(e)===f},t.isSuspenseList=function(e){return y(e)===h},t.isValidElementType=function(e){return"string"==typeof e||"function"==typeof e||e===i||e===s||e===a||e===f||e===h||e===g||"object"==typeof e&&null!==e&&(e.$$typeof===m||e.$$typeof===p||e.$$typeof===l||e.$$typeof===c||e.$$typeof===d||e.$$typeof===n||void 0!==e.getModuleId)},t.typeOf=y},11805:(e,t,n)=>{"use strict";e.exports=n(51162)},20745:(e,t,n)=>{"use strict";var r=n(18348);t.createRoot=r.createRoot,t.hydrateRoot=r.hydrateRoot},79655:(e,t,n)=>{"use strict";var r,o;n.r(t),n.d(t,{AbortedDeferredError:()=>s.AbortedDeferredError,Await:()=>s.Await,BrowserRouter:()=>I,Form:()=>z,HashRouter:()=>M,Link:()=>F,MemoryRouter:()=>s.MemoryRouter,NavLink:()=>Q,Navigate:()=>s.Navigate,NavigationType:()=>s.NavigationType,Outlet:()=>s.Outlet,Route:()=>s.Route,Router:()=>s.Router,RouterProvider:()=>D,Routes:()=>s.Routes,ScrollRestoration:()=>V,UNSAFE_DataRouterContext:()=>s.UNSAFE_DataRouterContext,UNSAFE_DataRouterStateContext:()=>s.UNSAFE_DataRouterStateContext,UNSAFE_ErrorResponseImpl:()=>l.UNSAFE_ErrorResponseImpl,UNSAFE_FetchersContext:()=>P,UNSAFE_LocationContext:()=>s.UNSAFE_LocationContext,UNSAFE_NavigationContext:()=>s.UNSAFE_NavigationContext,UNSAFE_RouteContext:()=>s.UNSAFE_RouteContext,UNSAFE_ViewTransitionContext:()=>C,UNSAFE_useRouteId:()=>s.UNSAFE_useRouteId,UNSAFE_useScrollRestoration:()=>oe,createBrowserRouter:()=>S,createHashRouter:()=>x,createMemoryRouter:()=>s.createMemoryRouter,createPath:()=>s.createPath,createRoutesFromChildren:()=>s.createRoutesFromChildren,createRoutesFromElements:()=>s.createRoutesFromElements,createSearchParams:()=>p,defer:()=>s.defer,generatePath:()=>s.generatePath,isRouteErrorResponse:()=>s.isRouteErrorResponse,json:()=>s.json,matchPath:()=>s.matchPath,matchRoutes:()=>s.matchRoutes,parsePath:()=>s.parsePath,redirect:()=>s.redirect,redirectDocument:()=>s.redirectDocument,renderMatches:()=>s.renderMatches,resolvePath:()=>s.resolvePath,unstable_HistoryRouter:()=>N,unstable_usePrompt:()=>ae,unstable_useViewTransitionState:()=>se,useActionData:()=>s.useActionData,useAsyncError:()=>s.useAsyncError,useAsyncValue:()=>s.useAsyncValue,useBeforeUnload:()=>ie,useBlocker:()=>s.useBlocker,useFetcher:()=>ee,useFetchers:()=>te,useFormAction:()=>J,useHref:()=>s.useHref,useInRouterContext:()=>s.useInRouterContext,useLinkClickHandler:()=>q,useLoaderData:()=>s.useLoaderData,useLocation:()=>s.useLocation,useMatch:()=>s.useMatch,useMatches:()=>s.useMatches,useNavigate:()=>s.useNavigate,useNavigation:()=>s.useNavigation,useNavigationType:()=>s.useNavigationType,useOutlet:()=>s.useOutlet,useOutletContext:()=>s.useOutletContext,useParams:()=>s.useParams,useResolvedPath:()=>s.useResolvedPath,useRevalidator:()=>s.useRevalidator,useRouteError:()=>s.useRouteError,useRouteLoaderData:()=>s.useRouteLoaderData,useRoutes:()=>s.useRoutes,useSearchParams:()=>H,useSubmit:()=>K});var i=n(36198),a=n(18348),s=n(89250),l=n(12599);function c(){return c=Object.assign?Object.assign.bind():function(e){for(var t=1;t=0||(o[n]=e[n]);return o}const d="get",f="application/x-www-form-urlencoded";function h(e){return null!=e&&"string"==typeof e.tagName}function p(e){return void 0===e&&(e=""),new URLSearchParams("string"==typeof e||Array.isArray(e)||e instanceof URLSearchParams?e:Object.keys(e).reduce(((t,n)=>{let r=e[n];return t.concat(Array.isArray(r)?r.map((e=>[n,e])):[[n,r]])}),[]))}let m=null;const g=new Set(["application/x-www-form-urlencoded","multipart/form-data","text/plain"]);function y(e){return null==e||g.has(e)?e:null}function v(e,t){let n,r,o,i,a;if(h(s=e)&&"form"===s.tagName.toLowerCase()){let a=e.getAttribute("action");r=a?(0,l.stripBasename)(a,t):null,n=e.getAttribute("method")||d,o=y(e.getAttribute("enctype"))||f,i=new FormData(e)}else if(function(e){return h(e)&&"button"===e.tagName.toLowerCase()}(e)||function(e){return h(e)&&"input"===e.tagName.toLowerCase()}(e)&&("submit"===e.type||"image"===e.type)){let a=e.form;if(null==a)throw new Error('Cannot submit a