diff --git a/assets/js/src/core/modules/user/management/detail/tabs/workspaces/components/special-settings.tsx b/assets/js/src/core/modules/user/management/detail/tabs/workspaces/components/special-settings.tsx new file mode 100644 index 0000000000..25921350ff --- /dev/null +++ b/assets/js/src/core/modules/user/management/detail/tabs/workspaces/components/special-settings.tsx @@ -0,0 +1,128 @@ +/** + * This source file is available under the terms of the + * Pimcore Open Core License (POCL) + * Full copyright and license information is available in + * LICENSE.md which is distributed with this source code. + * + * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) + * @license Pimcore Open Core License (POCL) + */ + +import React, { useEffect } from 'react' +import { Accordion } from '@Pimcore/components/accordion/accordion' +import { useTranslation } from 'react-i18next' +import { Flex } from '@Pimcore/components/flex/flex' +import { + useClassAllLayoutCollectionQuery +} from '@Pimcore/modules/class-definition/class-definition-slice.gen' +import { Select } from '@Pimcore/components/select/select' +import { Form } from 'antd' +import { useSettings } from '@Pimcore/modules/app/settings/hooks/use-settings' +import { useLanguageLookup } from '@Pimcore/modules/translations/hooks/use-language-lookup' + +interface ISpecialSettings { + localizedView: string[] + localizedEdit: string[] + layouts: string[] + onValuesChange: (changedValues: any) => void +} + +const SpecialSettings = ({ localizedView, localizedEdit, layouts, onValuesChange }: ISpecialSettings): React.JSX.Element => { + const { t } = useTranslation() + const { data } = useClassAllLayoutCollectionQuery() + const { validLanguages } = useSettings() + const { getDisplayName } = useLanguageLookup() + + const [form] = Form.useForm() + + useEffect(() => { + form.setFieldsValue({ + localizedView, + localizedEdit, + layouts + }) + }, []) + + return ( +
+ + { t('user-management.workspaces.localized-fields') }, + children: <> + + + + + + + + + } + ] + } + size={ 'small' } + /> + + { t('user-management.workspaces.custom-layouts') }, + children: + + + } + ] + } + size={ 'small' } + /> + +
+ ) +} + +export { SpecialSettings } diff --git a/assets/js/src/core/modules/user/management/detail/tabs/workspaces/components/table/table.tsx b/assets/js/src/core/modules/user/management/detail/tabs/workspaces/components/table/table.tsx index 305b45db8c..756a7e5e6c 100644 --- a/assets/js/src/core/modules/user/management/detail/tabs/workspaces/components/table/table.tsx +++ b/assets/js/src/core/modules/user/management/detail/tabs/workspaces/components/table/table.tsx @@ -24,6 +24,7 @@ interface ITableProps { type?: string showDuplicatePropertyModal: () => void onUpdateData: (data: UserWorkspace[]) => void + onShowSpecialSettings?: (id: number) => void } export const Table = ({ @@ -31,12 +32,13 @@ export const Table = ({ data, type, isLoading, - onUpdateData + onUpdateData, onShowSpecialSettings }: ITableProps): React.JSX.Element => { const { t } = useTranslation() const [gridData, setGridData] = React.useState(data) const isAsset = type === WorkspaceType.ASSET + const isObject = type === WorkspaceType.OBJECT useEffect(() => { setGridData(data) @@ -178,9 +180,24 @@ export const Table = ({ } } }), + ...isObject + ? [columnHelper.accessor('specialSettings', { + header: '', + size: 40, + cell: (context) => { + return ( + onShowSpecialSettings?.((context.row.original as UserWorkspace).cid) } + type="link" + /> + ) + } + })] + : [], columnHelper.accessor('actions', { - header: t('user-management.workspaces.columns.delete'), - size: 60, + header: '', + size: 40, cell: (context) => { return ( { const [assetWorkspaces, setAssetWorkspaces] = useState(user?.assetWorkspaces ?? []) const [documentWorkspaces, setDocumentWorkspaces] = useState(user?.documentWorkspaces ?? []) - const [objectWorkspaces, setObjectWorkspaces] = useState(user?.dataObjectWorkspaces ?? []) + const [objectWorkspaces, setObjectWorkspaces] = useState(user?.dataObjectWorkspaces ?? []) + + const [specialModalContext, setSpecialModalContext] = useState(null) const { showModal: showDuplicatePropertyModal, @@ -45,6 +48,8 @@ const WorkspacesContainer = ({ ...props }): React.JSX.Element => { type: 'error' }) + const { renderModal: SpecialSettingsModal, showModal: showSpecialSettingsModal, handleCancel, handleOk } = useModal({ type: 'default' }) + if (user === undefined) { return <> } @@ -133,6 +138,12 @@ const WorkspacesContainer = ({ ...props }): React.JSX.Element => { } ] + let currentSpecialModalData: object = {} + + const getSpecialModalValues = (type: string): string[] => { + return user?.dataObjectWorkspaces.find(ws => ws.cid === specialModalContext)?.[type] ?? [] + } + const objectsAccordion = [ { key: 'objects', @@ -166,6 +177,10 @@ const WorkspacesContainer = ({ ...props }): React.JSX.Element => { { + setSpecialModalContext(id) + showSpecialSettingsModal() + } } onUpdateData={ (data) => { changeUserInState({ dataObjectWorkspaces: data }) } } showDuplicatePropertyModal={ () => { showDuplicatePropertyModal() @@ -224,6 +239,43 @@ const WorkspacesContainer = ({ ...props }): React.JSX.Element => { > {t('properties.property-already-exist.error')} + + + + + + } + size={ 'L' } + title={ t('user-management.workspaces.additional-settings') } + > + { + const mergedData = { ...currentSpecialModalData, ...changedValues } + currentSpecialModalData = mergedData + } } + /> + ) } diff --git a/public/build/0326f081-daf4-4bc9-9b52-2147eefa8b5d/documentEditorIframe.html b/public/build/0326f081-daf4-4bc9-9b52-2147eefa8b5d/documentEditorIframe.html new file mode 100644 index 0000000000..93ab4d284b --- /dev/null +++ b/public/build/0326f081-daf4-4bc9-9b52-2147eefa8b5d/documentEditorIframe.html @@ -0,0 +1 @@ +Rsbuild App
\ No newline at end of file diff --git a/public/build/0326f081-daf4-4bc9-9b52-2147eefa8b5d/entrypoints.json b/public/build/0326f081-daf4-4bc9-9b52-2147eefa8b5d/entrypoints.json new file mode 100644 index 0000000000..3cc79f3164 --- /dev/null +++ b/public/build/0326f081-daf4-4bc9-9b52-2147eefa8b5d/entrypoints.json @@ -0,0 +1,24 @@ +{ + "entrypoints": { + "documentEditorIframe": { + "js": [ + "/bundles/pimcorestudioui/build/0326f081-daf4-4bc9-9b52-2147eefa8b5d/static/js/772.a5df2f14.js", + "/bundles/pimcorestudioui/build/0326f081-daf4-4bc9-9b52-2147eefa8b5d/static/js/documentEditorIframe.eeb262a9.js" + ], + "css": [] + }, + "main": { + "js": [ + "/bundles/pimcorestudioui/build/0326f081-daf4-4bc9-9b52-2147eefa8b5d/static/js/772.a5df2f14.js", + "/bundles/pimcorestudioui/build/0326f081-daf4-4bc9-9b52-2147eefa8b5d/static/js/main.bada5c57.js" + ], + "css": [] + }, + "exposeRemote": { + "js": [ + "/bundles/pimcorestudioui/build/0326f081-daf4-4bc9-9b52-2147eefa8b5d/exposeRemote.js" + ], + "css": [] + } + } +} \ No newline at end of file diff --git a/public/build/2af75d99-f6a5-43e2-b168-858e56812c27/exposeRemote.js b/public/build/0326f081-daf4-4bc9-9b52-2147eefa8b5d/exposeRemote.js similarity index 100% rename from public/build/2af75d99-f6a5-43e2-b168-858e56812c27/exposeRemote.js rename to public/build/0326f081-daf4-4bc9-9b52-2147eefa8b5d/exposeRemote.js diff --git a/public/build/2af75d99-f6a5-43e2-b168-858e56812c27/main.html b/public/build/0326f081-daf4-4bc9-9b52-2147eefa8b5d/main.html similarity index 56% rename from public/build/2af75d99-f6a5-43e2-b168-858e56812c27/main.html rename to public/build/0326f081-daf4-4bc9-9b52-2147eefa8b5d/main.html index cb0029ebb2..c9c331a58e 100644 --- a/public/build/2af75d99-f6a5-43e2-b168-858e56812c27/main.html +++ b/public/build/0326f081-daf4-4bc9-9b52-2147eefa8b5d/main.html @@ -1 +1 @@ -Rsbuild App
\ No newline at end of file +Rsbuild App
\ No newline at end of file diff --git a/public/build/0326f081-daf4-4bc9-9b52-2147eefa8b5d/manifest.json b/public/build/0326f081-daf4-4bc9-9b52-2147eefa8b5d/manifest.json new file mode 100644 index 0000000000..a3287a5af4 --- /dev/null +++ b/public/build/0326f081-daf4-4bc9-9b52-2147eefa8b5d/manifest.json @@ -0,0 +1,35 @@ +{ + "allFiles": [ + "/bundles/pimcorestudioui/build/0326f081-daf4-4bc9-9b52-2147eefa8b5d/static/js/documentEditorIframe.eeb262a9.js", + "/bundles/pimcorestudioui/build/0326f081-daf4-4bc9-9b52-2147eefa8b5d/static/js/main.bada5c57.js", + "/bundles/pimcorestudioui/build/0326f081-daf4-4bc9-9b52-2147eefa8b5d/static/js/772.a5df2f14.js", + "/bundles/pimcorestudioui/build/0326f081-daf4-4bc9-9b52-2147eefa8b5d/mf-stats.json", + "/bundles/pimcorestudioui/build/0326f081-daf4-4bc9-9b52-2147eefa8b5d/mf-manifest.json", + "/bundles/pimcorestudioui/build/0326f081-daf4-4bc9-9b52-2147eefa8b5d/documentEditorIframe.html", + "/bundles/pimcorestudioui/build/0326f081-daf4-4bc9-9b52-2147eefa8b5d/main.html" + ], + "entries": { + "documentEditorIframe": { + "html": [ + "/bundles/pimcorestudioui/build/0326f081-daf4-4bc9-9b52-2147eefa8b5d/documentEditorIframe.html" + ], + "initial": { + "js": [ + "/bundles/pimcorestudioui/build/0326f081-daf4-4bc9-9b52-2147eefa8b5d/static/js/772.a5df2f14.js", + "/bundles/pimcorestudioui/build/0326f081-daf4-4bc9-9b52-2147eefa8b5d/static/js/documentEditorIframe.eeb262a9.js" + ] + } + }, + "main": { + "html": [ + "/bundles/pimcorestudioui/build/0326f081-daf4-4bc9-9b52-2147eefa8b5d/main.html" + ], + "initial": { + "js": [ + "/bundles/pimcorestudioui/build/0326f081-daf4-4bc9-9b52-2147eefa8b5d/static/js/772.a5df2f14.js", + "/bundles/pimcorestudioui/build/0326f081-daf4-4bc9-9b52-2147eefa8b5d/static/js/main.bada5c57.js" + ] + } + } + } +} \ No newline at end of file diff --git a/public/build/2af75d99-f6a5-43e2-b168-858e56812c27/mf-manifest.json b/public/build/0326f081-daf4-4bc9-9b52-2147eefa8b5d/mf-manifest.json similarity index 96% rename from public/build/2af75d99-f6a5-43e2-b168-858e56812c27/mf-manifest.json rename to public/build/0326f081-daf4-4bc9-9b52-2147eefa8b5d/mf-manifest.json index 1e7cd0f577..481a606f06 100644 --- a/public/build/2af75d99-f6a5-43e2-b168-858e56812c27/mf-manifest.json +++ b/public/build/0326f081-daf4-4bc9-9b52-2147eefa8b5d/mf-manifest.json @@ -22,7 +22,7 @@ "globalName": "pimcore_studio_ui_bundle_core", "pluginVersion": "0.13.1", "prefetchInterface": false, - "publicPath": "/bundles/pimcorestudioui/build/2af75d99-f6a5-43e2-b168-858e56812c27/" + "publicPath": "/bundles/pimcorestudioui/build/0326f081-daf4-4bc9-9b52-2147eefa8b5d/" }, "shared": [], "remotes": [ diff --git a/public/build/2af75d99-f6a5-43e2-b168-858e56812c27/mf-stats.json b/public/build/0326f081-daf4-4bc9-9b52-2147eefa8b5d/mf-stats.json similarity index 96% rename from public/build/2af75d99-f6a5-43e2-b168-858e56812c27/mf-stats.json rename to public/build/0326f081-daf4-4bc9-9b52-2147eefa8b5d/mf-stats.json index 4f0c0f3b95..2ca3134ac8 100644 --- a/public/build/2af75d99-f6a5-43e2-b168-858e56812c27/mf-stats.json +++ b/public/build/0326f081-daf4-4bc9-9b52-2147eefa8b5d/mf-stats.json @@ -22,7 +22,7 @@ "globalName": "pimcore_studio_ui_bundle_core", "pluginVersion": "0.13.1", "prefetchInterface": false, - "publicPath": "/bundles/pimcorestudioui/build/2af75d99-f6a5-43e2-b168-858e56812c27/" + "publicPath": "/bundles/pimcorestudioui/build/0326f081-daf4-4bc9-9b52-2147eefa8b5d/" }, "shared": [], "remotes": [ diff --git a/public/build/2af75d99-f6a5-43e2-b168-858e56812c27/static/js/772.a5df2f14.js b/public/build/0326f081-daf4-4bc9-9b52-2147eefa8b5d/static/js/772.a5df2f14.js similarity index 100% rename from public/build/2af75d99-f6a5-43e2-b168-858e56812c27/static/js/772.a5df2f14.js rename to public/build/0326f081-daf4-4bc9-9b52-2147eefa8b5d/static/js/772.a5df2f14.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1047.2bb3fd91.js.LICENSE.txt b/public/build/0326f081-daf4-4bc9-9b52-2147eefa8b5d/static/js/772.a5df2f14.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1047.2bb3fd91.js.LICENSE.txt rename to public/build/0326f081-daf4-4bc9-9b52-2147eefa8b5d/static/js/772.a5df2f14.js.LICENSE.txt diff --git a/public/build/2af75d99-f6a5-43e2-b168-858e56812c27/static/js/documentEditorIframe.08ab12aa.js b/public/build/0326f081-daf4-4bc9-9b52-2147eefa8b5d/static/js/documentEditorIframe.eeb262a9.js similarity index 95% rename from public/build/2af75d99-f6a5-43e2-b168-858e56812c27/static/js/documentEditorIframe.08ab12aa.js rename to public/build/0326f081-daf4-4bc9-9b52-2147eefa8b5d/static/js/documentEditorIframe.eeb262a9.js index a4a3a5abc2..fc0bcbe0c8 100644 --- a/public/build/2af75d99-f6a5-43e2-b168-858e56812c27/static/js/documentEditorIframe.08ab12aa.js +++ b/public/build/0326f081-daf4-4bc9-9b52-2147eefa8b5d/static/js/documentEditorIframe.eeb262a9.js @@ -1,2 +1,2 @@ -/*! For license information please see documentEditorIframe.08ab12aa.js.LICENSE.txt */ -(()=>{var e={814:function(e,t,r){r.e("256").then(r.t.bind(r,39,23))},408:function(e){"use strict";e.exports=new Promise(e=>{let t=window.StudioUIBundleRemoteUrl,r=document.createElement("script");r.src=t,r.onload=()=>{e({get:e=>window.pimcore_studio_ui_bundle.get(e),init:(...e)=>{try{return window.pimcore_studio_ui_bundle.init(...e)}catch(e){console.log("remote container already initialized")}}})},document.head.appendChild(r)})}},t={};function r(o){var n=t[o];if(void 0!==n)return n.exports;var i=t[o]={exports:{}};return e[o](i,i.exports,r),i.exports}r.m=e,r.c=t,r.federation||(r.federation={chunkMatcher:function(e){return 256!=e},rootOutputDir:"../../"}),r.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return r.d(t,{a:t}),t},(()=>{var e,t=Object.getPrototypeOf?e=>Object.getPrototypeOf(e):e=>e.__proto__;r.t=function(o,n){if(1&n&&(o=this(o)),8&n||"object"==typeof o&&o&&(4&n&&o.__esModule||16&n&&"function"==typeof o.then))return o;var i=Object.create(null);r.r(i);var a={};e=e||[null,t({}),t([]),t(t)];for(var u=2&n&&o;"object"==typeof u&&!~e.indexOf(u);u=t(u))Object.getOwnPropertyNames(u).forEach(e=>{a[e]=()=>o[e]});return a.default=()=>o,r.d(i,a),i}})(),r.d=(e,t)=>{for(var o in t)r.o(t,o)&&!r.o(e,o)&&Object.defineProperty(e,o,{enumerable:!0,get:t[o]})},r.f={},r.e=e=>Promise.all(Object.keys(r.f).reduce((t,o)=>(r.f[o](e,t),t),[])),r.u=e=>""+e+".javascript",r.miniCssF=e=>""+e+".css",r.h=()=>"ef35c5a80ceaadb4",r.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),(()=>{var e={},t="pimcore_studio_ui_bundle_core:";r.l=function(o,n,i,a){if(e[o])return void e[o].push(n);if(void 0!==i)for(var u,d,c=document.getElementsByTagName("script"),l=0;l{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},(()=>{var e=[];r.O=(t,o,n,i)=>{if(o){i=i||0;for(var a=e.length;a>0&&e[a-1][2]>i;a--)e[a]=e[a-1];e[a]=[o,n,i];return}for(var u=1/0,a=0;a=i)&&Object.keys(r.O).every(e=>r.O[e](o[c]))?o.splice(c--,1):(d=!1,i{var e={473:0};r.f.j=function(t,o){var n=r.o(e,t)?e[t]:void 0;if(0!==n)if(n)o.push(n[2]);else if(256!=t){var i=new Promise((r,o)=>n=e[t]=[r,o]);o.push(n[2]=i);var a=r.p+r.u(t),u=Error();r.l(a,function(o){if(r.o(e,t)&&(0!==(n=e[t])&&(e[t]=void 0),n)){var i=o&&("load"===o.type?"missing":o.type),a=o&&o.target&&o.target.src;u.message="Loading chunk "+t+" failed.\n("+i+": "+a+")",u.name="ChunkLoadError",u.type=i,u.request=a,n[1](u)}},"chunk-"+t,t)}else e[t]=0},r.O.j=t=>0===e[t];var t=(t,o)=>{var n,i,[a,u,d]=o,c=0;if(a.some(t=>0!==e[t])){for(n in u)r.o(u,n)&&(r.m[n]=u[n]);if(d)var l=d(r)}for(t&&t(o);c{var e={814:function(e,t,r){r.e("256").then(r.t.bind(r,39,23))},408:function(e){"use strict";e.exports=new Promise(e=>{let t=window.StudioUIBundleRemoteUrl,r=document.createElement("script");r.src=t,r.onload=()=>{e({get:e=>window.pimcore_studio_ui_bundle.get(e),init:(...e)=>{try{return window.pimcore_studio_ui_bundle.init(...e)}catch(e){console.log("remote container already initialized")}}})},document.head.appendChild(r)})}},t={};function r(o){var n=t[o];if(void 0!==n)return n.exports;var i=t[o]={exports:{}};return e[o](i,i.exports,r),i.exports}r.m=e,r.c=t,r.federation||(r.federation={chunkMatcher:function(e){return 256!=e},rootOutputDir:"../../"}),r.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return r.d(t,{a:t}),t},(()=>{var e,t=Object.getPrototypeOf?e=>Object.getPrototypeOf(e):e=>e.__proto__;r.t=function(o,n){if(1&n&&(o=this(o)),8&n||"object"==typeof o&&o&&(4&n&&o.__esModule||16&n&&"function"==typeof o.then))return o;var i=Object.create(null);r.r(i);var a={};e=e||[null,t({}),t([]),t(t)];for(var u=2&n&&o;"object"==typeof u&&!~e.indexOf(u);u=t(u))Object.getOwnPropertyNames(u).forEach(e=>{a[e]=()=>o[e]});return a.default=()=>o,r.d(i,a),i}})(),r.d=(e,t)=>{for(var o in t)r.o(t,o)&&!r.o(e,o)&&Object.defineProperty(e,o,{enumerable:!0,get:t[o]})},r.f={},r.e=e=>Promise.all(Object.keys(r.f).reduce((t,o)=>(r.f[o](e,t),t),[])),r.u=e=>""+e+".javascript",r.miniCssF=e=>""+e+".css",r.h=()=>"1f2a2f2275348fc7",r.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),(()=>{var e={},t="pimcore_studio_ui_bundle_core:";r.l=function(o,n,i,a){if(e[o])return void e[o].push(n);if(void 0!==i)for(var u,d,c=document.getElementsByTagName("script"),l=0;l{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},(()=>{var e=[];r.O=(t,o,n,i)=>{if(o){i=i||0;for(var a=e.length;a>0&&e[a-1][2]>i;a--)e[a]=e[a-1];e[a]=[o,n,i];return}for(var u=1/0,a=0;a=i)&&Object.keys(r.O).every(e=>r.O[e](o[c]))?o.splice(c--,1):(d=!1,i{var e={473:0};r.f.j=function(t,o){var n=r.o(e,t)?e[t]:void 0;if(0!==n)if(n)o.push(n[2]);else if(256!=t){var i=new Promise((r,o)=>n=e[t]=[r,o]);o.push(n[2]=i);var a=r.p+r.u(t),u=Error();r.l(a,function(o){if(r.o(e,t)&&(0!==(n=e[t])&&(e[t]=void 0),n)){var i=o&&("load"===o.type?"missing":o.type),a=o&&o.target&&o.target.src;u.message="Loading chunk "+t+" failed.\n("+i+": "+a+")",u.name="ChunkLoadError",u.type=i,u.request=a,n[1](u)}},"chunk-"+t,t)}else e[t]=0},r.O.j=t=>0===e[t];var t=(t,o)=>{var n,i,[a,u,d]=o,c=0;if(a.some(t=>0!==e[t])){for(n in u)r.o(u,n)&&(r.m[n]=u[n]);if(d)var l=d(r)}for(t&&t(o);c{var e={987:function(e,t,r){r.e("765").then(r.t.bind(r,439,23))},408:function(e){"use strict";e.exports=new Promise(e=>{let t=window.StudioUIBundleRemoteUrl,r=document.createElement("script");r.src=t,r.onload=()=>{e({get:e=>window.pimcore_studio_ui_bundle.get(e),init:(...e)=>{try{return window.pimcore_studio_ui_bundle.init(...e)}catch(e){console.log("remote container already initialized")}}})},document.head.appendChild(r)})}},t={};function r(o){var n=t[o];if(void 0!==n)return n.exports;var i=t[o]={exports:{}};return e[o](i,i.exports,r),i.exports}r.m=e,r.c=t,r.federation||(r.federation={chunkMatcher:function(e){return 765!=e},rootOutputDir:"../../"}),r.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return r.d(t,{a:t}),t},(()=>{var e,t=Object.getPrototypeOf?e=>Object.getPrototypeOf(e):e=>e.__proto__;r.t=function(o,n){if(1&n&&(o=this(o)),8&n||"object"==typeof o&&o&&(4&n&&o.__esModule||16&n&&"function"==typeof o.then))return o;var i=Object.create(null);r.r(i);var a={};e=e||[null,t({}),t([]),t(t)];for(var u=2&n&&o;"object"==typeof u&&!~e.indexOf(u);u=t(u))Object.getOwnPropertyNames(u).forEach(e=>{a[e]=()=>o[e]});return a.default=()=>o,r.d(i,a),i}})(),r.d=(e,t)=>{for(var o in t)r.o(t,o)&&!r.o(e,o)&&Object.defineProperty(e,o,{enumerable:!0,get:t[o]})},r.f={},r.e=e=>Promise.all(Object.keys(r.f).reduce((t,o)=>(r.f[o](e,t),t),[])),r.u=e=>""+e+".javascript",r.miniCssF=e=>""+e+".css",r.h=()=>"ef35c5a80ceaadb4",r.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),(()=>{var e={},t="pimcore_studio_ui_bundle_core:";r.l=function(o,n,i,a){if(e[o])return void e[o].push(n);if(void 0!==i)for(var u,d,c=document.getElementsByTagName("script"),l=0;l{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},(()=>{var e=[];r.O=(t,o,n,i)=>{if(o){i=i||0;for(var a=e.length;a>0&&e[a-1][2]>i;a--)e[a]=e[a-1];e[a]=[o,n,i];return}for(var u=1/0,a=0;a=i)&&Object.keys(r.O).every(e=>r.O[e](o[c]))?o.splice(c--,1):(d=!1,i{var e={909:0};r.f.j=function(t,o){var n=r.o(e,t)?e[t]:void 0;if(0!==n)if(n)o.push(n[2]);else if(765!=t){var i=new Promise((r,o)=>n=e[t]=[r,o]);o.push(n[2]=i);var a=r.p+r.u(t),u=Error();r.l(a,function(o){if(r.o(e,t)&&(0!==(n=e[t])&&(e[t]=void 0),n)){var i=o&&("load"===o.type?"missing":o.type),a=o&&o.target&&o.target.src;u.message="Loading chunk "+t+" failed.\n("+i+": "+a+")",u.name="ChunkLoadError",u.type=i,u.request=a,n[1](u)}},"chunk-"+t,t)}else e[t]=0},r.O.j=t=>0===e[t];var t=(t,o)=>{var n,i,[a,u,d]=o,c=0;if(a.some(t=>0!==e[t])){for(n in u)r.o(u,n)&&(r.m[n]=u[n]);if(d)var l=d(r)}for(t&&t(o);c{var e={987:function(e,t,r){r.e("765").then(r.t.bind(r,439,23))},408:function(e){"use strict";e.exports=new Promise(e=>{let t=window.StudioUIBundleRemoteUrl,r=document.createElement("script");r.src=t,r.onload=()=>{e({get:e=>window.pimcore_studio_ui_bundle.get(e),init:(...e)=>{try{return window.pimcore_studio_ui_bundle.init(...e)}catch(e){console.log("remote container already initialized")}}})},document.head.appendChild(r)})}},t={};function r(o){var n=t[o];if(void 0!==n)return n.exports;var i=t[o]={exports:{}};return e[o](i,i.exports,r),i.exports}r.m=e,r.c=t,r.federation||(r.federation={chunkMatcher:function(e){return 765!=e},rootOutputDir:"../../"}),r.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return r.d(t,{a:t}),t},(()=>{var e,t=Object.getPrototypeOf?e=>Object.getPrototypeOf(e):e=>e.__proto__;r.t=function(o,n){if(1&n&&(o=this(o)),8&n||"object"==typeof o&&o&&(4&n&&o.__esModule||16&n&&"function"==typeof o.then))return o;var i=Object.create(null);r.r(i);var a={};e=e||[null,t({}),t([]),t(t)];for(var u=2&n&&o;"object"==typeof u&&!~e.indexOf(u);u=t(u))Object.getOwnPropertyNames(u).forEach(e=>{a[e]=()=>o[e]});return a.default=()=>o,r.d(i,a),i}})(),r.d=(e,t)=>{for(var o in t)r.o(t,o)&&!r.o(e,o)&&Object.defineProperty(e,o,{enumerable:!0,get:t[o]})},r.f={},r.e=e=>Promise.all(Object.keys(r.f).reduce((t,o)=>(r.f[o](e,t),t),[])),r.u=e=>""+e+".javascript",r.miniCssF=e=>""+e+".css",r.h=()=>"1f2a2f2275348fc7",r.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),(()=>{var e={},t="pimcore_studio_ui_bundle_core:";r.l=function(o,n,i,a){if(e[o])return void e[o].push(n);if(void 0!==i)for(var u,d,c=document.getElementsByTagName("script"),l=0;l{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},(()=>{var e=[];r.O=(t,o,n,i)=>{if(o){i=i||0;for(var a=e.length;a>0&&e[a-1][2]>i;a--)e[a]=e[a-1];e[a]=[o,n,i];return}for(var u=1/0,a=0;a=i)&&Object.keys(r.O).every(e=>r.O[e](o[c]))?o.splice(c--,1):(d=!1,i{var e={909:0};r.f.j=function(t,o){var n=r.o(e,t)?e[t]:void 0;if(0!==n)if(n)o.push(n[2]);else if(765!=t){var i=new Promise((r,o)=>n=e[t]=[r,o]);o.push(n[2]=i);var a=r.p+r.u(t),u=Error();r.l(a,function(o){if(r.o(e,t)&&(0!==(n=e[t])&&(e[t]=void 0),n)){var i=o&&("load"===o.type?"missing":o.type),a=o&&o.target&&o.target.src;u.message="Loading chunk "+t+" failed.\n("+i+": "+a+")",u.name="ChunkLoadError",u.type=i,u.request=a,n[1](u)}},"chunk-"+t,t)}else e[t]=0},r.O.j=t=>0===e[t];var t=(t,o)=>{var n,i,[a,u,d]=o,c=0;if(a.some(t=>0!==e[t])){for(n in u)r.o(u,n)&&(r.m[n]=u[n]);if(d)var l=d(r)}for(t&&t(o);c{await a.p.loadPlugins(),a.p.initPlugins(),a.p.startupPlugins(),s._.initModules(),(0,o.m)()}),r()}catch(e){r(e)}},1)},46554:function(e,t,n){n.d(t,{m:()=>L});var i=n(85893),r=n(81004),a=n(20745),s=n(81343),o=n(53478),c=n(80380),l=n(79771),d=n(60433),u=n(66858),m=n(3859),p=n.n(m),f=n(29865);let g=e=>{let{editableDefinitions:t}=e,n=(0,r.useRef)({});return t.forEach(e=>{(0,o.isUndefined)(n.current[e.id])&&(n.current[e.id]=(0,r.createRef)())}),(0,i.jsx)(i.Fragment,{children:t.map(e=>{let t=document.getElementById(e.id);return(0,o.isNull)(t)?null:(!(0,o.isNull)(n.current[e.id])&&(0,o.isNull)(n.current[e.id].current)&&(n.current[e.id].current=t),p().createPortal((0,i.jsx)(f.k,{containerRef:n.current[e.id],editableDefinition:e},e.id),t))})})},y=e=>{let{editableDefinitions:t}=e,n=(0,c.$1)(l.j["DynamicTypes/DocumentEditableRegistry"]),a=(0,r.useRef)(!1),[s,m]=(0,r.useState)(!1),{initializeData:p,notifyReady:f,initializeInheritanceState:y}=(0,d.b)(),{id:h}=(0,r.useContext)(u.R);return((0,r.useEffect)(()=>{a.current||(p((e=>{let t={};return e.forEach(e=>{let i=n.hasDynamicType(e.type)?n.getDynamicType(e.type):void 0;t[e.name]={type:e.type,data:(0,o.isUndefined)(i)?e.data??null:i.transformValue(e.data,e)}}),t})(t)),y((e=>{let t={};return e.forEach(e=>{t[e.name]=e.inherited}),t})(t)),a.current=!0,m(!0))},[t,p,y]),(0,r.useEffect)(()=>{if(a.current){f();try{n.notifyDocumentReady(h,t)}catch(e){console.warn("Could not process document ready events:",e)}}},[f,t,h,n]),s)?(0,i.jsx)(g,{editableDefinitions:t}):(0,i.jsx)(i.Fragment,{})};var h=n(13436),w=n(80087),b=n(26788),x=n(91061),R=n(65980),E=n(45628),j=n.n(E),v=n(71695),D=n(42801),k=n(29618);let I=async()=>{try{let{i18n:e}=(0,D.sH)(),t=e.getTranslationResources(),n=e.getCurrentLanguage(),i=e.getFallbackLanguage(),r={};Object.keys(t).forEach(e=>{r[e]={translation:t[e]}}),await j().use(v.initReactI18next).init({lng:n,fallbackLng:i,ns:["translation"],defaultNS:"translation",resources:r,saveMissing:!0,postProcess:["returnKeyIfEmpty"],interpolation:{escapeValue:!1}}),j().use(k.N),j().on("missingKey",(t,r,a,s)=>{try{e.reportMissingTranslation(a),j().addResource(n,r,a,a),n!==i&&j().addResource(i,r,a,a),console.debug(`Missing translation key reported to parent: ${a}`)}catch(e){console.warn(`Could not report missing translation key '${a}' to parent window:`,e),j().addResource(n,r,a,a),n!==i&&j().addResource(i,r,a,a)}})}catch(e){console.warn("Could not initialize iframe i18n from parent window, falling back to basic setup:",e),await j().use(v.initReactI18next).init({lng:"en",fallbackLng:"en",ns:["translation"],resources:{},saveMissing:!1})}};var P=n(14651);let N=()=>{let e=window.editableDefinitions??[],{isInitialized:t}=(()=>{let[e,t]=(0,r.useState)(!1),[n,i]=(0,r.useState)(null);return(0,r.useEffect)(()=>{(async()=>{try{await I(),t(!0)}catch(n){let e=n instanceof Error?n:Error("Failed to initialize iframe i18n");console.error("Failed to initialize iframe i18n:",e),i(e),t(!0)}})()},[]),{isInitialized:e,error:n}})(),n=new URLSearchParams(window.location.search).get("documentId"),a=(0,o.isNil)(n)?void 0:parseInt(n,10);return t?(0,o.isNil)(a)||!(0,o.isNumber)(a)||(0,o.isNaN)(a)||a<=0?(0,i.jsx)(w.b,{description:"A valid documentId parameter is required in the URL.",message:"Error: Invalid Document ID",showIcon:!0,type:"error"}):(0,i.jsx)(r.StrictMode,{children:(0,i.jsx)(R.Z,{children:(0,i.jsx)(h.R,{children:(0,i.jsx)(b.App,{children:(0,i.jsx)(P.$,{children:(0,i.jsx)(x.z,{children:(0,i.jsx)(u.p,{id:a,children:(0,i.jsx)(y,{editableDefinitions:e})})})})})})})}):(0,i.jsx)("div",{style:{padding:"20px",textAlign:"center"},children:"Loading translations..."})};function L(){let e=document.getElementById("pimcore-studio-app");if(null===e)return void(0,s.ZP)(new s.aE("Root element not found"));(0,a.createRoot)(e).render((0,i.jsx)(N,{}))}}}]); \ No newline at end of file diff --git a/public/build/2af75d99-f6a5-43e2-b168-858e56812c27/documentEditorIframe.html b/public/build/2af75d99-f6a5-43e2-b168-858e56812c27/documentEditorIframe.html deleted file mode 100644 index 169d009313..0000000000 --- a/public/build/2af75d99-f6a5-43e2-b168-858e56812c27/documentEditorIframe.html +++ /dev/null @@ -1 +0,0 @@ -Rsbuild App
\ No newline at end of file diff --git a/public/build/2af75d99-f6a5-43e2-b168-858e56812c27/entrypoints.json b/public/build/2af75d99-f6a5-43e2-b168-858e56812c27/entrypoints.json deleted file mode 100644 index 7bcd8275c6..0000000000 --- a/public/build/2af75d99-f6a5-43e2-b168-858e56812c27/entrypoints.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "entrypoints": { - "documentEditorIframe": { - "js": [ - "/bundles/pimcorestudioui/build/2af75d99-f6a5-43e2-b168-858e56812c27/static/js/772.a5df2f14.js", - "/bundles/pimcorestudioui/build/2af75d99-f6a5-43e2-b168-858e56812c27/static/js/documentEditorIframe.08ab12aa.js" - ], - "css": [] - }, - "main": { - "js": [ - "/bundles/pimcorestudioui/build/2af75d99-f6a5-43e2-b168-858e56812c27/static/js/772.a5df2f14.js", - "/bundles/pimcorestudioui/build/2af75d99-f6a5-43e2-b168-858e56812c27/static/js/main.b56cb6ab.js" - ], - "css": [] - }, - "exposeRemote": { - "js": [ - "/bundles/pimcorestudioui/build/2af75d99-f6a5-43e2-b168-858e56812c27/exposeRemote.js" - ], - "css": [] - } - } -} \ No newline at end of file diff --git a/public/build/2af75d99-f6a5-43e2-b168-858e56812c27/manifest.json b/public/build/2af75d99-f6a5-43e2-b168-858e56812c27/manifest.json deleted file mode 100644 index 196601d6cf..0000000000 --- a/public/build/2af75d99-f6a5-43e2-b168-858e56812c27/manifest.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "allFiles": [ - "/bundles/pimcorestudioui/build/2af75d99-f6a5-43e2-b168-858e56812c27/static/js/documentEditorIframe.08ab12aa.js", - "/bundles/pimcorestudioui/build/2af75d99-f6a5-43e2-b168-858e56812c27/static/js/main.b56cb6ab.js", - "/bundles/pimcorestudioui/build/2af75d99-f6a5-43e2-b168-858e56812c27/static/js/772.a5df2f14.js", - "/bundles/pimcorestudioui/build/2af75d99-f6a5-43e2-b168-858e56812c27/mf-stats.json", - "/bundles/pimcorestudioui/build/2af75d99-f6a5-43e2-b168-858e56812c27/mf-manifest.json", - "/bundles/pimcorestudioui/build/2af75d99-f6a5-43e2-b168-858e56812c27/documentEditorIframe.html", - "/bundles/pimcorestudioui/build/2af75d99-f6a5-43e2-b168-858e56812c27/main.html" - ], - "entries": { - "documentEditorIframe": { - "html": [ - "/bundles/pimcorestudioui/build/2af75d99-f6a5-43e2-b168-858e56812c27/documentEditorIframe.html" - ], - "initial": { - "js": [ - "/bundles/pimcorestudioui/build/2af75d99-f6a5-43e2-b168-858e56812c27/static/js/772.a5df2f14.js", - "/bundles/pimcorestudioui/build/2af75d99-f6a5-43e2-b168-858e56812c27/static/js/documentEditorIframe.08ab12aa.js" - ] - } - }, - "main": { - "html": [ - "/bundles/pimcorestudioui/build/2af75d99-f6a5-43e2-b168-858e56812c27/main.html" - ], - "initial": { - "js": [ - "/bundles/pimcorestudioui/build/2af75d99-f6a5-43e2-b168-858e56812c27/static/js/772.a5df2f14.js", - "/bundles/pimcorestudioui/build/2af75d99-f6a5-43e2-b168-858e56812c27/static/js/main.b56cb6ab.js" - ] - } - } - } -} \ No newline at end of file diff --git a/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/entrypoints.json b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/entrypoints.json new file mode 100644 index 0000000000..5662fc1b18 --- /dev/null +++ b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/entrypoints.json @@ -0,0 +1,23 @@ +{ + "entrypoints": { + "pimcore_studio_ui_bundle": { + "js": [ + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/remoteEntry.js" + ], + "css": [] + }, + "index": { + "js": [ + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/6450.1847178b.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/index.2a7ef42d.js" + ], + "css": [] + }, + "exposeRemote": { + "js": [ + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/exposeRemote.js" + ], + "css": [] + } + } +} \ No newline at end of file diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/exposeRemote.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/exposeRemote.js similarity index 53% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/exposeRemote.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/exposeRemote.js index d4c7a464ff..0bd174a4d6 100644 --- a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/exposeRemote.js +++ b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/exposeRemote.js @@ -1,3 +1,3 @@ - window.StudioUIBundleRemoteUrl = '/bundles/pimcorestudioui/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/remoteEntry.js' + window.StudioUIBundleRemoteUrl = '/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/remoteEntry.js' \ No newline at end of file diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/index.html b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/index.html similarity index 56% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/index.html rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/index.html index 84b5326d51..e522b58aaf 100644 --- a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/index.html +++ b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/index.html @@ -1 +1 @@ -Rsbuild App
\ No newline at end of file +Rsbuild App
\ No newline at end of file diff --git a/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/manifest.json b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/manifest.json new file mode 100644 index 0000000000..7547303478 --- /dev/null +++ b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/manifest.json @@ -0,0 +1,748 @@ +{ + "allFiles": [ + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1752.b8d97cb5.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/833.94eee6df.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/707.5d05993a.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/99.d0983e15.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8511.d1d99ec3.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6210.0866341b.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3410.7a951fb2.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1333.00749a1d.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3941.bbee473e.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1758.7d46b820.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5232.c6d51e6e.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6648.51d04568.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9086.69a661be.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5976.3732d0b9.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8690.64b37ae9.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2967.50db3862.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4374.c99deb71.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7472.9a55331e.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3948.ca4bddea.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6132.faee4341.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9566.23d76ee1.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4855.4f5863cc.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9815.0e900f0f.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3866.1193117e.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9638.a46cb712.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/516.0e2f23ae.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7675.8fe0706f.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2076.640559f7.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7468.eeba76a0.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/862.d21f7451.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6421.7c99f384.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2009.ca309c35.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8935.aa3c069a.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5428.44819fb0.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5182.cdd2efd8.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7658.2d37af52.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5978.246f8ba2.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2202.482aa090.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9708.fe9ac705.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2111.1b5f8480.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5639.f1f63e2c.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7050.7467db7e.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4370.e2476933.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6547.266123c1.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9503.931d6960.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2027.42242eaa.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3111.05f4b107.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7138.f2408353.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8420.fb4b3f98.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9214.f2fc22c6.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9983.2287eb9d.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3956.43790616.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7516.8977ec47.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3648.7f4751c2.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/528.336a27ba.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1623.a127f6ac.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7046.648a6262.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8336.063332be.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7800.b8d10431.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8006.5c3fb0f6.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7065.b8fc6306.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2252.8ba16355.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9440.e652cdcc.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3969.2cf8ec77.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4804.c516461b.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7374.352137d7.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8385.16a46dc2.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4876.f79595ca.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7998.52fcf760.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5887.5599eda1.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9972.24cbd462.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4487.6d152c7f.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5022.a2a1d487.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/526.3100dd15.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6134.a5153d0d.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1910.88cf73f4.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3118.44d9247d.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1069.c751acfe.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5424.af1b8211.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1778.f279d1cd.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4898.dcac9ca5.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6301.5c2999cb.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/207.dc534702.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5853.b21bc216.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1528.5353f329.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9563.ff6db423.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5765.53f199f6.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5818.bab2860a.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6807.43933893.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2455.f6530cc5.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7698.c996ed42.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3105.91f2f020.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2447.f3c20c06.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4513.90c6869b.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1595.3793e4f4.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7502.8f68529a.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6274.913bbdc8.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1567.1b498cf5.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2092.fae343e8.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4234.8a693543.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6789.3dc3b52a.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6526.2f880946.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5362.71548a48.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6269.17488d08.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6520.40be04a5.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7981.970f7b9e.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9036.8b6cac41.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4238.20c56b2d.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4301.cb8866ae.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3386.115905f2.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/46.29b9e7fb.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8636.591240c3.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4650.14b4e4d5.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5933.0a25011f.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4515.16482028.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3852.98b45d65.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3075.f80a7faa.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3016.0f65694f.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6671.78f65d14.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7121.a3f1cdbc.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1698.da67ca2a.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1882.f07f0a1d.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7809.b208df94.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4099.1db429ed.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5435.19dc6838.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/448.ff033188.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4434.86886f2f.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8192.317eb32f.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7337.a17f68de.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8819.e80def20.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6565.565c63bb.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8165.0098ecbf.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9706.f33e713d.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9879.fdd218f8.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3770.007f6481.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6344.c189db04.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8476.a2da556e.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8888.387774c0.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9488.b9085241.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3636.874609a2.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6732.d6b8cdc4.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2496.b4d4039a.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9345.afd5c749.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2181.8892c01c.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4149.02bec4c1.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/281.8dfb4b16.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4590.ffd38ea0.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8902.fc737248.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2490.44bedd93.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/438.b6d0170e.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1064.a444e516.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9530.85e2cc52.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6175.47ee7301.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5277.b1fb56c1.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7830.a6bff57b.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9662.79263c53.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3618.97f3baf4.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5704.3a9a4a6c.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7071.bc68c184.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/148.e9ac8d64.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1224.4353a5f1.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7404.12da9f5b.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1151.1de88f3a.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8434.fcc60125.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5012.9980a00a.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7602.3f85988f.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2423.cb31495e.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2880.c4ae9e92.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1690.b2b98aaf.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5694.3d4e7cd2.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9100.3a9e0477.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4611.cad23c63.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4353.4487c361.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7642.9c387651.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4854.4e190585.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8723.2f1df9d5.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3858.002ff261.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4864.192b3c9c.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8308.6ff2a32b.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5032.bf3d9c93.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6024.4826005c.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5854.b6a22ba5.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7392.61615569.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/902.868bc783.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8275.7d57d2b4.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1472.10b13d60.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1498.76119a63.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9368.b04ae990.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8360.54b8db04.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6144.88fc1f36.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4190.892ea34a.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4857.30a58545.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6458.3374e02c.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4621.ec5e4711.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8791.c8a6f64e.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6040.016dd42b.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1888.980ce494.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8226.765afaed.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8642.8b0a997f.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1519.b0a37b46.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1657.1d133530.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3350.35853242.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4778.612171c0.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5559.18aa4708.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3449.8c724520.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8868.7f37a2ab.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6974.5f2c957b.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1597.8c0076ee.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3395.fc64b4c1.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1746.20f0870c.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2612.10fbf2cb.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9242.1f1a62c9.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9906.16d2a9a6.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7700.56fbbd81.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2301.3e1c8906.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/346.6816c503.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7467.95d94a75.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6177.c04a6699.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4549.74ab684b.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/420.c386c9c2.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5647.9b011d98.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5540.fb4920b4.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8625.2a5d3e9a.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6816.8f55482c.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1489.c79950dd.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6060.f5aecc63.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4093.6ecd4f21.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5267.2c16866e.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2468.acc189ed.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/753.f617a5fd.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1245.7092be8b.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1267.a35fa847.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4397.da3d320a.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6693.cf072c5b.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9714.030e0c2c.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2172.3cb9bf31.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7775.942e75ea.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8554.e76562c3.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2227.0c29417c.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6913.dae2685b.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7551.d1469cb7.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5239.8451c759.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/531.727a2b70.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7696.a959d2b1.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1447.23221551.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5263.e342215d.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9430.35458b7e.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/161.ff32631b.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7219.8c91f726.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7311.2ab0eccd.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3716.f732acfb.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3513.3b8ff637.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8559.0bb884a7.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6686.526f417d.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3107.a2e539dc.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6743.b12f6c26.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9882.d5988f6d.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8843.a2b58ed4.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2080.73ea7df5.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1851.50e72f7c.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7085.68695551.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7553.3b83762f.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5868.2a3bb0e0.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8500.f6813f14.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5539.3643c747.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2993.0685d6bc.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2011.cfb5b180.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6564.02a274f5.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3037.df1119a5.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/372.3f29f28f.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1334.676803d0.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8096.8918e684.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1296.93efc03d.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5791.e28d60a8.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8097.69160b55.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5221.5e6b1bc4.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6497.e801df72.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/960.79eb8316.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6938.45560ce7.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8961.2b24b15b.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5153.16512cb0.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/105.b3ed03a6.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5627.5412f3ad.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2557.e9bb4d27.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5705.f6f1946a.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6153.d6711a99.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7386.bb50ee06.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5991.735b928d.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.6b370b4c.css", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.feecb57f.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__dependencies.1b4f4baf.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__properties.3336d115.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_modules__document.67bc95cd.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__class_definition.318f5a5e.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_default_export.b3f494c2.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__perspectives.49b81869.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/css/async/__federation_expose__internal___mf_bootstrap.6b370b4c.css", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose__internal___mf_bootstrap.e95ec0a5.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__schedule.d847219d.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/remoteEntry.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__role.c05bcddf.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__settings.1fe87b47.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__documents.bf1f71bb.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_modules__user.6f21700a.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_modules__class_definitions.29986990.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__user.6c028a06.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__reports.90166d3e.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__thumbnails.fb843215.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__elements.a748d1c6.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api.f367fc93.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_modules__icon_library.fceebdff.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__custom_metadata.2db5c3ae.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__tags.4244ce4b.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__translations.6b808d2b.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/index.2a7ef42d.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__metadata.600f2a76.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__data_object.bb9c013f.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__workflow.4002dbf4.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_utils.518ac1a0.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_app.5b207115.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_modules__data_object.9692bdfb.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__version.1fe07415.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_modules__asset.fa50b6ac.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8526.3a758371.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1047.2bb3fd91.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/css/async/6534.cf521767.css", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6534.241f683d.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7599.f501b0a1.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4819.c23fd1b3.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/6450.1847178b.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7448.892a4f4c.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7577.a926bedf.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/0.d9c21d67.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1869.daad6453.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4322.343e0435.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1560.4e3adaa6.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/mf-stats.json", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/mf-manifest.json", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/font/Lato-Light.bec6f0ae.ttf", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/font/Lato-Regular.4291f48c.ttf", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/font/Lato-Bold.2c00c297.ttf", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/svg/spritesheet.ac8b36fa.svg", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/index.html" + ], + "entries": { + "pimcore_studio_ui_bundle": { + "assets": [ + "static/font/Lato-Light.bec6f0ae.ttf", + "static/font/Lato-Bold.2c00c297.ttf", + "static/font/Lato-Regular.4291f48c.ttf", + "static/svg/spritesheet.ac8b36fa.svg" + ], + "initial": { + "js": [ + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/remoteEntry.js" + ] + }, + "async": { + "js": [ + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1560.4e3adaa6.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4322.343e0435.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1869.daad6453.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/0.d9c21d67.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7577.a926bedf.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7448.892a4f4c.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4819.c23fd1b3.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7599.f501b0a1.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6534.241f683d.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1047.2bb3fd91.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8526.3a758371.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_modules__asset.fa50b6ac.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__version.1fe07415.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_modules__data_object.9692bdfb.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_app.5b207115.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_utils.518ac1a0.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__workflow.4002dbf4.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__data_object.bb9c013f.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__metadata.600f2a76.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__translations.6b808d2b.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__tags.4244ce4b.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__custom_metadata.2db5c3ae.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_modules__icon_library.fceebdff.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api.f367fc93.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__elements.a748d1c6.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__thumbnails.fb843215.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__reports.90166d3e.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__user.6c028a06.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_modules__class_definitions.29986990.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_modules__user.6f21700a.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__documents.bf1f71bb.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__settings.1fe87b47.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__role.c05bcddf.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__schedule.d847219d.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose__internal___mf_bootstrap.e95ec0a5.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__perspectives.49b81869.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_default_export.b3f494c2.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__class_definition.318f5a5e.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_modules__document.67bc95cd.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__properties.3336d115.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__dependencies.1b4f4baf.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.feecb57f.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5991.735b928d.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7386.bb50ee06.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6153.d6711a99.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5705.f6f1946a.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2557.e9bb4d27.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5627.5412f3ad.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/105.b3ed03a6.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5153.16512cb0.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8961.2b24b15b.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6938.45560ce7.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/960.79eb8316.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6497.e801df72.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5221.5e6b1bc4.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8097.69160b55.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5791.e28d60a8.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1296.93efc03d.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8096.8918e684.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1334.676803d0.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/372.3f29f28f.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3037.df1119a5.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6564.02a274f5.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2011.cfb5b180.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2993.0685d6bc.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5539.3643c747.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8500.f6813f14.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5868.2a3bb0e0.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7553.3b83762f.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7085.68695551.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1851.50e72f7c.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2080.73ea7df5.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8843.a2b58ed4.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9882.d5988f6d.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6743.b12f6c26.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3107.a2e539dc.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6686.526f417d.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8559.0bb884a7.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3513.3b8ff637.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3716.f732acfb.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7311.2ab0eccd.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7219.8c91f726.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/161.ff32631b.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9430.35458b7e.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5263.e342215d.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1447.23221551.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7696.a959d2b1.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/531.727a2b70.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5239.8451c759.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7551.d1469cb7.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6913.dae2685b.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2227.0c29417c.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8554.e76562c3.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7775.942e75ea.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2172.3cb9bf31.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9714.030e0c2c.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6693.cf072c5b.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4397.da3d320a.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1267.a35fa847.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1245.7092be8b.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/753.f617a5fd.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2468.acc189ed.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5267.2c16866e.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4093.6ecd4f21.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6060.f5aecc63.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1489.c79950dd.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6816.8f55482c.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8625.2a5d3e9a.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5540.fb4920b4.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5647.9b011d98.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/420.c386c9c2.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4549.74ab684b.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6177.c04a6699.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7467.95d94a75.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/346.6816c503.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2301.3e1c8906.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7700.56fbbd81.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9906.16d2a9a6.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9242.1f1a62c9.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2612.10fbf2cb.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1746.20f0870c.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3395.fc64b4c1.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1597.8c0076ee.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6974.5f2c957b.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8868.7f37a2ab.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3449.8c724520.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5559.18aa4708.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4778.612171c0.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3350.35853242.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1657.1d133530.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1519.b0a37b46.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8642.8b0a997f.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8226.765afaed.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1888.980ce494.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6040.016dd42b.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8791.c8a6f64e.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4621.ec5e4711.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6458.3374e02c.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4857.30a58545.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4190.892ea34a.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6144.88fc1f36.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8360.54b8db04.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9368.b04ae990.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1498.76119a63.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1472.10b13d60.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8275.7d57d2b4.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/902.868bc783.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7392.61615569.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5854.b6a22ba5.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6024.4826005c.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5032.bf3d9c93.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8308.6ff2a32b.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4864.192b3c9c.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3858.002ff261.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8723.2f1df9d5.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4854.4e190585.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7642.9c387651.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4353.4487c361.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4611.cad23c63.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9100.3a9e0477.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5694.3d4e7cd2.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1690.b2b98aaf.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2880.c4ae9e92.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2423.cb31495e.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7602.3f85988f.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5012.9980a00a.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8434.fcc60125.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1151.1de88f3a.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7404.12da9f5b.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1224.4353a5f1.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/148.e9ac8d64.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7071.bc68c184.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5704.3a9a4a6c.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3618.97f3baf4.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9662.79263c53.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7830.a6bff57b.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5277.b1fb56c1.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6175.47ee7301.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9530.85e2cc52.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1064.a444e516.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/438.b6d0170e.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2490.44bedd93.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8902.fc737248.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4590.ffd38ea0.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/281.8dfb4b16.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4149.02bec4c1.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2181.8892c01c.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9345.afd5c749.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2496.b4d4039a.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6732.d6b8cdc4.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3636.874609a2.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9488.b9085241.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8888.387774c0.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8476.a2da556e.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6344.c189db04.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3770.007f6481.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9879.fdd218f8.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9706.f33e713d.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8165.0098ecbf.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6565.565c63bb.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8819.e80def20.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7337.a17f68de.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8192.317eb32f.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4434.86886f2f.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/448.ff033188.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5435.19dc6838.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4099.1db429ed.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7809.b208df94.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1882.f07f0a1d.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1698.da67ca2a.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7121.a3f1cdbc.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6671.78f65d14.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3016.0f65694f.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3075.f80a7faa.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3852.98b45d65.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4515.16482028.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5933.0a25011f.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4650.14b4e4d5.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8636.591240c3.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/46.29b9e7fb.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3386.115905f2.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4301.cb8866ae.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4238.20c56b2d.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9036.8b6cac41.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7981.970f7b9e.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6520.40be04a5.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6269.17488d08.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5362.71548a48.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6526.2f880946.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6789.3dc3b52a.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4234.8a693543.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2092.fae343e8.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1567.1b498cf5.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6274.913bbdc8.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7502.8f68529a.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1595.3793e4f4.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4513.90c6869b.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2447.f3c20c06.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3105.91f2f020.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7698.c996ed42.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2455.f6530cc5.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6807.43933893.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5818.bab2860a.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5765.53f199f6.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9563.ff6db423.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1528.5353f329.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5853.b21bc216.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/207.dc534702.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6301.5c2999cb.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4898.dcac9ca5.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1778.f279d1cd.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5424.af1b8211.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1069.c751acfe.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3118.44d9247d.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1910.88cf73f4.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6134.a5153d0d.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/526.3100dd15.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5022.a2a1d487.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4487.6d152c7f.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9972.24cbd462.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5887.5599eda1.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7998.52fcf760.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4876.f79595ca.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8385.16a46dc2.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7374.352137d7.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4804.c516461b.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3969.2cf8ec77.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9440.e652cdcc.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2252.8ba16355.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7065.b8fc6306.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8006.5c3fb0f6.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7800.b8d10431.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8336.063332be.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7046.648a6262.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1623.a127f6ac.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/528.336a27ba.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3648.7f4751c2.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7516.8977ec47.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3956.43790616.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9983.2287eb9d.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9214.f2fc22c6.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8420.fb4b3f98.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7138.f2408353.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3111.05f4b107.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2027.42242eaa.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9503.931d6960.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6547.266123c1.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4370.e2476933.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7050.7467db7e.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5639.f1f63e2c.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2111.1b5f8480.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9708.fe9ac705.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2202.482aa090.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5978.246f8ba2.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7658.2d37af52.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5182.cdd2efd8.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5428.44819fb0.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8935.aa3c069a.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2009.ca309c35.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6421.7c99f384.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/862.d21f7451.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7468.eeba76a0.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2076.640559f7.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7675.8fe0706f.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/516.0e2f23ae.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9638.a46cb712.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3866.1193117e.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9815.0e900f0f.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4855.4f5863cc.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9566.23d76ee1.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6132.faee4341.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3948.ca4bddea.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7472.9a55331e.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4374.c99deb71.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2967.50db3862.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8690.64b37ae9.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5976.3732d0b9.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9086.69a661be.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6648.51d04568.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5232.c6d51e6e.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1758.7d46b820.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3941.bbee473e.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1333.00749a1d.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3410.7a951fb2.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6210.0866341b.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8511.d1d99ec3.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/99.d0983e15.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/707.5d05993a.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/833.94eee6df.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1752.b8d97cb5.js" + ], + "css": [ + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/css/async/6534.cf521767.css", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/css/async/__federation_expose__internal___mf_bootstrap.6b370b4c.css", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.6b370b4c.css" + ] + } + }, + "index": { + "html": [ + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/index.html" + ], + "initial": { + "js": [ + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/6450.1847178b.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/index.2a7ef42d.js" + ] + }, + "async": { + "js": [ + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7577.a926bedf.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7448.892a4f4c.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7599.f501b0a1.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8526.3a758371.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5991.735b928d.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1447.23221551.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6060.f5aecc63.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7700.56fbbd81.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1888.980ce494.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8360.54b8db04.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4854.4e190585.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7830.a6bff57b.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/281.8dfb4b16.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6732.d6b8cdc4.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6565.565c63bb.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/448.ff033188.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5435.19dc6838.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6671.78f65d14.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4650.14b4e4d5.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7981.970f7b9e.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1567.1b498cf5.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1595.3793e4f4.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5853.b21bc216.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1778.f279d1cd.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4876.f79595ca.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8385.16a46dc2.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3969.2cf8ec77.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3956.43790616.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5639.f1f63e2c.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3948.ca4bddea.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4374.c99deb71.js", + "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1752.b8d97cb5.js" + ] + } + } + } +} \ No newline at end of file diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/mf-manifest.json b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/mf-manifest.json similarity index 97% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/mf-manifest.json rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/mf-manifest.json index e90011d38c..034d6e981e 100644 --- a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/mf-manifest.json +++ b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/mf-manifest.json @@ -22,7 +22,7 @@ "globalName": "pimcore_studio_ui_bundle", "pluginVersion": "0.13.1", "prefetchInterface": false, - "publicPath": "/bundles/pimcorestudioui/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/" + "publicPath": "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/" }, "shared": [ { @@ -748,16 +748,16 @@ "static/js/async/1047.2bb3fd91.js", "static/js/async/6534.241f683d.js", "static/js/async/4819.c23fd1b3.js", - "static/js/async/0.9576d6fe.js", + "static/js/async/0.d9c21d67.js", "static/js/async/__federation_expose_utils.518ac1a0.js", "static/js/async/1869.daad6453.js", "static/js/async/__federation_expose_app.5b207115.js", "static/js/async/__federation_expose_modules__data_object.9692bdfb.js", "static/js/async/4322.343e0435.js", "static/js/async/__federation_expose_modules__asset.fa50b6ac.js", - "static/js/async/7091.48f5b66b.js", + "static/js/async/1560.4e3adaa6.js", "static/js/async/161.ff32631b.js", - "static/js/async/__federation_expose__internal___mf_bootstrap.4aec5d69.js" + "static/js/async/__federation_expose__internal___mf_bootstrap.e95ec0a5.js" ], "async": [ "static/js/async/7599.f501b0a1.js", @@ -1022,8 +1022,8 @@ }, "css": { "sync": [ - "static/css/async/6534.e945e8ba.css", - "static/css/async/__federation_expose__internal___mf_bootstrap.5d6c6f99.css" + "static/css/async/6534.cf521767.css", + "static/css/async/__federation_expose__internal___mf_bootstrap.6b370b4c.css" ], "async": [] } @@ -1040,15 +1040,15 @@ "static/js/async/1047.2bb3fd91.js", "static/js/async/6534.241f683d.js", "static/js/async/4819.c23fd1b3.js", - "static/js/async/0.9576d6fe.js", + "static/js/async/0.d9c21d67.js", "static/js/async/__federation_expose_utils.518ac1a0.js", "static/js/async/1869.daad6453.js", "static/js/async/__federation_expose_app.5b207115.js", "static/js/async/__federation_expose_modules__data_object.9692bdfb.js", "static/js/async/4322.343e0435.js", "static/js/async/__federation_expose_modules__asset.fa50b6ac.js", - "static/js/async/7091.48f5b66b.js", - "static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.974c9686.js" + "static/js/async/1560.4e3adaa6.js", + "static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.feecb57f.js" ], "async": [ "static/js/async/7599.f501b0a1.js", @@ -1314,26 +1314,26 @@ "static/js/async/1047.2bb3fd91.js", "static/js/async/6534.241f683d.js", "static/js/async/4819.c23fd1b3.js", - "static/js/async/0.9576d6fe.js", + "static/js/async/0.d9c21d67.js", "static/js/async/__federation_expose_utils.518ac1a0.js", "static/js/async/1869.daad6453.js", "static/js/async/__federation_expose_app.5b207115.js", "static/js/async/__federation_expose_modules__data_object.9692bdfb.js", "static/js/async/4322.343e0435.js", "static/js/async/__federation_expose_modules__asset.fa50b6ac.js", - "static/js/async/7091.48f5b66b.js", - "static/js/async/__federation_expose__internal___mf_bootstrap.4aec5d69.js", + "static/js/async/1560.4e3adaa6.js", + "static/js/async/__federation_expose__internal___mf_bootstrap.e95ec0a5.js", "static/js/async/8902.fc737248.js" ] }, "css": { "sync": [ - "static/css/async/6534.e945e8ba.css", - "static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.5d6c6f99.css" + "static/css/async/6534.cf521767.css", + "static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.6b370b4c.css" ], "async": [ - "static/css/async/6534.e945e8ba.css", - "static/css/async/__federation_expose__internal___mf_bootstrap.5d6c6f99.css" + "static/css/async/6534.cf521767.css", + "static/css/async/__federation_expose__internal___mf_bootstrap.6b370b4c.css" ] } }, @@ -1364,17 +1364,17 @@ "static/js/async/1047.2bb3fd91.js", "static/js/async/6534.241f683d.js", "static/js/async/4819.c23fd1b3.js", - "static/js/async/0.9576d6fe.js", + "static/js/async/0.d9c21d67.js", "static/js/async/__federation_expose_utils.518ac1a0.js", "static/js/async/1869.daad6453.js", "static/js/async/__federation_expose_app.5b207115.js", "static/js/async/__federation_expose_modules__data_object.9692bdfb.js", "static/js/async/4322.343e0435.js", "static/js/async/__federation_expose_modules__asset.fa50b6ac.js", - "static/js/async/7091.48f5b66b.js", + "static/js/async/1560.4e3adaa6.js", "static/js/async/161.ff32631b.js", - "static/js/async/__federation_expose__internal___mf_bootstrap.4aec5d69.js", - "static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.974c9686.js", + "static/js/async/__federation_expose__internal___mf_bootstrap.e95ec0a5.js", + "static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.feecb57f.js", "static/js/async/__federation_expose_modules__document.67bc95cd.js", "static/js/async/__federation_expose_modules__user.6f21700a.js" ], @@ -1642,27 +1642,27 @@ "static/js/async/1047.2bb3fd91.js", "static/js/async/6534.241f683d.js", "static/js/async/4819.c23fd1b3.js", - "static/js/async/0.9576d6fe.js", + "static/js/async/0.d9c21d67.js", "static/js/async/__federation_expose_utils.518ac1a0.js", "static/js/async/1869.daad6453.js", "static/js/async/__federation_expose_app.5b207115.js", "static/js/async/__federation_expose_modules__data_object.9692bdfb.js", "static/js/async/4322.343e0435.js", "static/js/async/__federation_expose_modules__asset.fa50b6ac.js", - "static/js/async/7091.48f5b66b.js", - "static/js/async/__federation_expose__internal___mf_bootstrap.4aec5d69.js", + "static/js/async/1560.4e3adaa6.js", + "static/js/async/__federation_expose__internal___mf_bootstrap.e95ec0a5.js", "static/js/async/8902.fc737248.js" ] }, "css": { "sync": [ - "static/css/async/6534.e945e8ba.css", - "static/css/async/__federation_expose__internal___mf_bootstrap.5d6c6f99.css", - "static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.5d6c6f99.css" + "static/css/async/6534.cf521767.css", + "static/css/async/__federation_expose__internal___mf_bootstrap.6b370b4c.css", + "static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.6b370b4c.css" ], "async": [ - "static/css/async/6534.e945e8ba.css", - "static/css/async/__federation_expose__internal___mf_bootstrap.5d6c6f99.css" + "static/css/async/6534.cf521767.css", + "static/css/async/__federation_expose__internal___mf_bootstrap.6b370b4c.css" ] } }, @@ -1715,7 +1715,7 @@ "sync": [ "static/js/async/8526.3a758371.js", "static/js/async/1047.2bb3fd91.js", - "static/js/async/0.9576d6fe.js", + "static/js/async/0.d9c21d67.js", "static/js/async/__federation_expose_api__class_definition.318f5a5e.js" ], "async": [] @@ -2075,17 +2075,17 @@ "static/js/async/1047.2bb3fd91.js", "static/js/async/6534.241f683d.js", "static/js/async/4819.c23fd1b3.js", - "static/js/async/0.9576d6fe.js", + "static/js/async/0.d9c21d67.js", "static/js/async/__federation_expose_utils.518ac1a0.js", "static/js/async/1869.daad6453.js", "static/js/async/__federation_expose_app.5b207115.js", "static/js/async/__federation_expose_modules__data_object.9692bdfb.js", "static/js/async/4322.343e0435.js", "static/js/async/__federation_expose_modules__asset.fa50b6ac.js", - "static/js/async/7091.48f5b66b.js", + "static/js/async/1560.4e3adaa6.js", "static/js/async/161.ff32631b.js", - "static/js/async/__federation_expose__internal___mf_bootstrap.4aec5d69.js", - "static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.974c9686.js" + "static/js/async/__federation_expose__internal___mf_bootstrap.e95ec0a5.js", + "static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.feecb57f.js" ], "async": [ "static/js/async/7599.f501b0a1.js", @@ -2351,27 +2351,27 @@ "static/js/async/1047.2bb3fd91.js", "static/js/async/6534.241f683d.js", "static/js/async/4819.c23fd1b3.js", - "static/js/async/0.9576d6fe.js", + "static/js/async/0.d9c21d67.js", "static/js/async/__federation_expose_utils.518ac1a0.js", "static/js/async/1869.daad6453.js", "static/js/async/__federation_expose_app.5b207115.js", "static/js/async/__federation_expose_modules__data_object.9692bdfb.js", "static/js/async/4322.343e0435.js", "static/js/async/__federation_expose_modules__asset.fa50b6ac.js", - "static/js/async/7091.48f5b66b.js", - "static/js/async/__federation_expose__internal___mf_bootstrap.4aec5d69.js", + "static/js/async/1560.4e3adaa6.js", + "static/js/async/__federation_expose__internal___mf_bootstrap.e95ec0a5.js", "static/js/async/8902.fc737248.js" ] }, "css": { "sync": [ - "static/css/async/6534.e945e8ba.css", - "static/css/async/__federation_expose__internal___mf_bootstrap.5d6c6f99.css", - "static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.5d6c6f99.css" + "static/css/async/6534.cf521767.css", + "static/css/async/__federation_expose__internal___mf_bootstrap.6b370b4c.css", + "static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.6b370b4c.css" ], "async": [ - "static/css/async/6534.e945e8ba.css", - "static/css/async/__federation_expose__internal___mf_bootstrap.5d6c6f99.css" + "static/css/async/6534.cf521767.css", + "static/css/async/__federation_expose__internal___mf_bootstrap.6b370b4c.css" ] } }, @@ -2385,7 +2385,7 @@ "sync": [ "static/js/async/8526.3a758371.js", "static/js/async/1047.2bb3fd91.js", - "static/js/async/0.9576d6fe.js", + "static/js/async/0.d9c21d67.js", "static/js/async/__federation_expose_modules__class_definitions.29986990.js" ], "async": [] @@ -2407,17 +2407,17 @@ "static/js/async/1047.2bb3fd91.js", "static/js/async/6534.241f683d.js", "static/js/async/4819.c23fd1b3.js", - "static/js/async/0.9576d6fe.js", + "static/js/async/0.d9c21d67.js", "static/js/async/__federation_expose_utils.518ac1a0.js", "static/js/async/1869.daad6453.js", "static/js/async/__federation_expose_app.5b207115.js", "static/js/async/__federation_expose_modules__data_object.9692bdfb.js", "static/js/async/4322.343e0435.js", "static/js/async/__federation_expose_modules__asset.fa50b6ac.js", - "static/js/async/7091.48f5b66b.js", + "static/js/async/1560.4e3adaa6.js", "static/js/async/161.ff32631b.js", - "static/js/async/__federation_expose__internal___mf_bootstrap.4aec5d69.js", - "static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.974c9686.js", + "static/js/async/__federation_expose__internal___mf_bootstrap.e95ec0a5.js", + "static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.feecb57f.js", "static/js/async/__federation_expose_modules__document.67bc95cd.js" ], "async": [ @@ -2684,27 +2684,27 @@ "static/js/async/1047.2bb3fd91.js", "static/js/async/6534.241f683d.js", "static/js/async/4819.c23fd1b3.js", - "static/js/async/0.9576d6fe.js", + "static/js/async/0.d9c21d67.js", "static/js/async/__federation_expose_utils.518ac1a0.js", "static/js/async/1869.daad6453.js", "static/js/async/__federation_expose_app.5b207115.js", "static/js/async/__federation_expose_modules__data_object.9692bdfb.js", "static/js/async/4322.343e0435.js", "static/js/async/__federation_expose_modules__asset.fa50b6ac.js", - "static/js/async/7091.48f5b66b.js", - "static/js/async/__federation_expose__internal___mf_bootstrap.4aec5d69.js", + "static/js/async/1560.4e3adaa6.js", + "static/js/async/__federation_expose__internal___mf_bootstrap.e95ec0a5.js", "static/js/async/8902.fc737248.js" ] }, "css": { "sync": [ - "static/css/async/6534.e945e8ba.css", - "static/css/async/__federation_expose__internal___mf_bootstrap.5d6c6f99.css", - "static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.5d6c6f99.css" + "static/css/async/6534.cf521767.css", + "static/css/async/__federation_expose__internal___mf_bootstrap.6b370b4c.css", + "static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.6b370b4c.css" ], "async": [ - "static/css/async/6534.e945e8ba.css", - "static/css/async/__federation_expose__internal___mf_bootstrap.5d6c6f99.css" + "static/css/async/6534.cf521767.css", + "static/css/async/__federation_expose__internal___mf_bootstrap.6b370b4c.css" ] } }, @@ -2719,7 +2719,7 @@ "static/js/async/8526.3a758371.js", "static/js/async/1047.2bb3fd91.js", "static/js/async/6534.241f683d.js", - "static/js/async/0.9576d6fe.js", + "static/js/async/0.d9c21d67.js", "static/js/async/__federation_expose_utils.518ac1a0.js", "static/js/async/1869.daad6453.js", "static/js/async/__federation_expose_app.5b207115.js", @@ -2990,7 +2990,7 @@ }, "css": { "sync": [ - "static/css/async/6534.e945e8ba.css" + "static/css/async/6534.cf521767.css" ], "async": [] } @@ -3038,7 +3038,7 @@ "static/js/async/8526.3a758371.js", "static/js/async/1047.2bb3fd91.js", "static/js/async/6534.241f683d.js", - "static/js/async/0.9576d6fe.js", + "static/js/async/0.d9c21d67.js", "static/js/async/__federation_expose_utils.518ac1a0.js", "static/js/async/1869.daad6453.js", "static/js/async/__federation_expose_app.5b207115.js", @@ -3307,7 +3307,7 @@ }, "css": { "sync": [ - "static/css/async/6534.e945e8ba.css" + "static/css/async/6534.cf521767.css" ], "async": [] } @@ -3354,17 +3354,17 @@ "static/js/async/1047.2bb3fd91.js", "static/js/async/6534.241f683d.js", "static/js/async/4819.c23fd1b3.js", - "static/js/async/0.9576d6fe.js", + "static/js/async/0.d9c21d67.js", "static/js/async/__federation_expose_utils.518ac1a0.js", "static/js/async/1869.daad6453.js", "static/js/async/__federation_expose_app.5b207115.js", "static/js/async/__federation_expose_modules__data_object.9692bdfb.js", "static/js/async/4322.343e0435.js", "static/js/async/__federation_expose_modules__asset.fa50b6ac.js", - "static/js/async/7091.48f5b66b.js", + "static/js/async/1560.4e3adaa6.js", "static/js/async/161.ff32631b.js", - "static/js/async/__federation_expose__internal___mf_bootstrap.4aec5d69.js", - "static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.974c9686.js", + "static/js/async/__federation_expose__internal___mf_bootstrap.e95ec0a5.js", + "static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.feecb57f.js", "static/js/async/__federation_expose_modules__document.67bc95cd.js", "static/js/async/__federation_expose_modules__user.6f21700a.js" ], @@ -3374,17 +3374,17 @@ "static/js/async/1047.2bb3fd91.js", "static/js/async/6534.241f683d.js", "static/js/async/4819.c23fd1b3.js", - "static/js/async/0.9576d6fe.js", + "static/js/async/0.d9c21d67.js", "static/js/async/__federation_expose_utils.518ac1a0.js", "static/js/async/1869.daad6453.js", "static/js/async/__federation_expose_app.5b207115.js", "static/js/async/__federation_expose_modules__data_object.9692bdfb.js", "static/js/async/4322.343e0435.js", "static/js/async/__federation_expose_modules__asset.fa50b6ac.js", - "static/js/async/7091.48f5b66b.js", + "static/js/async/1560.4e3adaa6.js", "static/js/async/161.ff32631b.js", - "static/js/async/__federation_expose__internal___mf_bootstrap.4aec5d69.js", - "static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.974c9686.js", + "static/js/async/__federation_expose__internal___mf_bootstrap.e95ec0a5.js", + "static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.feecb57f.js", "static/js/async/__federation_expose_modules__document.67bc95cd.js", "static/js/async/__federation_expose_modules__user.6f21700a.js", "static/js/async/7642.9c387651.js", @@ -3649,14 +3649,14 @@ }, "css": { "sync": [ - "static/css/async/6534.e945e8ba.css", - "static/css/async/__federation_expose__internal___mf_bootstrap.5d6c6f99.css", - "static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.5d6c6f99.css" + "static/css/async/6534.cf521767.css", + "static/css/async/__federation_expose__internal___mf_bootstrap.6b370b4c.css", + "static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.6b370b4c.css" ], "async": [ - "static/css/async/6534.e945e8ba.css", - "static/css/async/__federation_expose__internal___mf_bootstrap.5d6c6f99.css", - "static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.5d6c6f99.css" + "static/css/async/6534.cf521767.css", + "static/css/async/__federation_expose__internal___mf_bootstrap.6b370b4c.css", + "static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.6b370b4c.css" ] } }, diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/mf-stats.json b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/mf-stats.json similarity index 98% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/mf-stats.json rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/mf-stats.json index 547ea63103..14d4ca2eed 100644 --- a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/mf-stats.json +++ b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/mf-stats.json @@ -22,7 +22,7 @@ "globalName": "pimcore_studio_ui_bundle", "pluginVersion": "0.13.1", "prefetchInterface": false, - "publicPath": "/bundles/pimcorestudioui/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/" + "publicPath": "/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/" }, "shared": [ { @@ -911,16 +911,16 @@ "static/js/async/1047.2bb3fd91.js", "static/js/async/6534.241f683d.js", "static/js/async/4819.c23fd1b3.js", - "static/js/async/0.9576d6fe.js", + "static/js/async/0.d9c21d67.js", "static/js/async/__federation_expose_utils.518ac1a0.js", "static/js/async/1869.daad6453.js", "static/js/async/__federation_expose_app.5b207115.js", "static/js/async/__federation_expose_modules__data_object.9692bdfb.js", "static/js/async/4322.343e0435.js", "static/js/async/__federation_expose_modules__asset.fa50b6ac.js", - "static/js/async/7091.48f5b66b.js", + "static/js/async/1560.4e3adaa6.js", "static/js/async/161.ff32631b.js", - "static/js/async/__federation_expose__internal___mf_bootstrap.4aec5d69.js" + "static/js/async/__federation_expose__internal___mf_bootstrap.e95ec0a5.js" ], "async": [ "static/js/async/7599.f501b0a1.js", @@ -1185,8 +1185,8 @@ }, "css": { "sync": [ - "static/css/async/6534.e945e8ba.css", - "static/css/async/__federation_expose__internal___mf_bootstrap.5d6c6f99.css" + "static/css/async/6534.cf521767.css", + "static/css/async/__federation_expose__internal___mf_bootstrap.6b370b4c.css" ], "async": [] } @@ -1205,15 +1205,15 @@ "static/js/async/1047.2bb3fd91.js", "static/js/async/6534.241f683d.js", "static/js/async/4819.c23fd1b3.js", - "static/js/async/0.9576d6fe.js", + "static/js/async/0.d9c21d67.js", "static/js/async/__federation_expose_utils.518ac1a0.js", "static/js/async/1869.daad6453.js", "static/js/async/__federation_expose_app.5b207115.js", "static/js/async/__federation_expose_modules__data_object.9692bdfb.js", "static/js/async/4322.343e0435.js", "static/js/async/__federation_expose_modules__asset.fa50b6ac.js", - "static/js/async/7091.48f5b66b.js", - "static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.974c9686.js" + "static/js/async/1560.4e3adaa6.js", + "static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.feecb57f.js" ], "async": [ "static/js/async/7599.f501b0a1.js", @@ -1479,26 +1479,26 @@ "static/js/async/1047.2bb3fd91.js", "static/js/async/6534.241f683d.js", "static/js/async/4819.c23fd1b3.js", - "static/js/async/0.9576d6fe.js", + "static/js/async/0.d9c21d67.js", "static/js/async/__federation_expose_utils.518ac1a0.js", "static/js/async/1869.daad6453.js", "static/js/async/__federation_expose_app.5b207115.js", "static/js/async/__federation_expose_modules__data_object.9692bdfb.js", "static/js/async/4322.343e0435.js", "static/js/async/__federation_expose_modules__asset.fa50b6ac.js", - "static/js/async/7091.48f5b66b.js", - "static/js/async/__federation_expose__internal___mf_bootstrap.4aec5d69.js", + "static/js/async/1560.4e3adaa6.js", + "static/js/async/__federation_expose__internal___mf_bootstrap.e95ec0a5.js", "static/js/async/8902.fc737248.js" ] }, "css": { "sync": [ - "static/css/async/6534.e945e8ba.css", - "static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.5d6c6f99.css" + "static/css/async/6534.cf521767.css", + "static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.6b370b4c.css" ], "async": [ - "static/css/async/6534.e945e8ba.css", - "static/css/async/__federation_expose__internal___mf_bootstrap.5d6c6f99.css" + "static/css/async/6534.cf521767.css", + "static/css/async/__federation_expose__internal___mf_bootstrap.6b370b4c.css" ] } } @@ -1542,17 +1542,17 @@ "static/js/async/1047.2bb3fd91.js", "static/js/async/6534.241f683d.js", "static/js/async/4819.c23fd1b3.js", - "static/js/async/0.9576d6fe.js", + "static/js/async/0.d9c21d67.js", "static/js/async/__federation_expose_utils.518ac1a0.js", "static/js/async/1869.daad6453.js", "static/js/async/__federation_expose_app.5b207115.js", "static/js/async/__federation_expose_modules__data_object.9692bdfb.js", "static/js/async/4322.343e0435.js", "static/js/async/__federation_expose_modules__asset.fa50b6ac.js", - "static/js/async/7091.48f5b66b.js", + "static/js/async/1560.4e3adaa6.js", "static/js/async/161.ff32631b.js", - "static/js/async/__federation_expose__internal___mf_bootstrap.4aec5d69.js", - "static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.974c9686.js", + "static/js/async/__federation_expose__internal___mf_bootstrap.e95ec0a5.js", + "static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.feecb57f.js", "static/js/async/__federation_expose_modules__document.67bc95cd.js", "static/js/async/__federation_expose_modules__user.6f21700a.js" ], @@ -1820,27 +1820,27 @@ "static/js/async/1047.2bb3fd91.js", "static/js/async/6534.241f683d.js", "static/js/async/4819.c23fd1b3.js", - "static/js/async/0.9576d6fe.js", + "static/js/async/0.d9c21d67.js", "static/js/async/__federation_expose_utils.518ac1a0.js", "static/js/async/1869.daad6453.js", "static/js/async/__federation_expose_app.5b207115.js", "static/js/async/__federation_expose_modules__data_object.9692bdfb.js", "static/js/async/4322.343e0435.js", "static/js/async/__federation_expose_modules__asset.fa50b6ac.js", - "static/js/async/7091.48f5b66b.js", - "static/js/async/__federation_expose__internal___mf_bootstrap.4aec5d69.js", + "static/js/async/1560.4e3adaa6.js", + "static/js/async/__federation_expose__internal___mf_bootstrap.e95ec0a5.js", "static/js/async/8902.fc737248.js" ] }, "css": { "sync": [ - "static/css/async/6534.e945e8ba.css", - "static/css/async/__federation_expose__internal___mf_bootstrap.5d6c6f99.css", - "static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.5d6c6f99.css" + "static/css/async/6534.cf521767.css", + "static/css/async/__federation_expose__internal___mf_bootstrap.6b370b4c.css", + "static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.6b370b4c.css" ], "async": [ - "static/css/async/6534.e945e8ba.css", - "static/css/async/__federation_expose__internal___mf_bootstrap.5d6c6f99.css" + "static/css/async/6534.cf521767.css", + "static/css/async/__federation_expose__internal___mf_bootstrap.6b370b4c.css" ] } } @@ -1899,7 +1899,7 @@ "sync": [ "static/js/async/8526.3a758371.js", "static/js/async/1047.2bb3fd91.js", - "static/js/async/0.9576d6fe.js", + "static/js/async/0.d9c21d67.js", "static/js/async/__federation_expose_api__class_definition.318f5a5e.js" ], "async": [] @@ -2297,17 +2297,17 @@ "static/js/async/1047.2bb3fd91.js", "static/js/async/6534.241f683d.js", "static/js/async/4819.c23fd1b3.js", - "static/js/async/0.9576d6fe.js", + "static/js/async/0.d9c21d67.js", "static/js/async/__federation_expose_utils.518ac1a0.js", "static/js/async/1869.daad6453.js", "static/js/async/__federation_expose_app.5b207115.js", "static/js/async/__federation_expose_modules__data_object.9692bdfb.js", "static/js/async/4322.343e0435.js", "static/js/async/__federation_expose_modules__asset.fa50b6ac.js", - "static/js/async/7091.48f5b66b.js", + "static/js/async/1560.4e3adaa6.js", "static/js/async/161.ff32631b.js", - "static/js/async/__federation_expose__internal___mf_bootstrap.4aec5d69.js", - "static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.974c9686.js" + "static/js/async/__federation_expose__internal___mf_bootstrap.e95ec0a5.js", + "static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.feecb57f.js" ], "async": [ "static/js/async/7599.f501b0a1.js", @@ -2573,27 +2573,27 @@ "static/js/async/1047.2bb3fd91.js", "static/js/async/6534.241f683d.js", "static/js/async/4819.c23fd1b3.js", - "static/js/async/0.9576d6fe.js", + "static/js/async/0.d9c21d67.js", "static/js/async/__federation_expose_utils.518ac1a0.js", "static/js/async/1869.daad6453.js", "static/js/async/__federation_expose_app.5b207115.js", "static/js/async/__federation_expose_modules__data_object.9692bdfb.js", "static/js/async/4322.343e0435.js", "static/js/async/__federation_expose_modules__asset.fa50b6ac.js", - "static/js/async/7091.48f5b66b.js", - "static/js/async/__federation_expose__internal___mf_bootstrap.4aec5d69.js", + "static/js/async/1560.4e3adaa6.js", + "static/js/async/__federation_expose__internal___mf_bootstrap.e95ec0a5.js", "static/js/async/8902.fc737248.js" ] }, "css": { "sync": [ - "static/css/async/6534.e945e8ba.css", - "static/css/async/__federation_expose__internal___mf_bootstrap.5d6c6f99.css", - "static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.5d6c6f99.css" + "static/css/async/6534.cf521767.css", + "static/css/async/__federation_expose__internal___mf_bootstrap.6b370b4c.css", + "static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.6b370b4c.css" ], "async": [ - "static/css/async/6534.e945e8ba.css", - "static/css/async/__federation_expose__internal___mf_bootstrap.5d6c6f99.css" + "static/css/async/6534.cf521767.css", + "static/css/async/__federation_expose__internal___mf_bootstrap.6b370b4c.css" ] } } @@ -2609,7 +2609,7 @@ "sync": [ "static/js/async/8526.3a758371.js", "static/js/async/1047.2bb3fd91.js", - "static/js/async/0.9576d6fe.js", + "static/js/async/0.d9c21d67.js", "static/js/async/__federation_expose_modules__class_definitions.29986990.js" ], "async": [] @@ -2635,17 +2635,17 @@ "static/js/async/1047.2bb3fd91.js", "static/js/async/6534.241f683d.js", "static/js/async/4819.c23fd1b3.js", - "static/js/async/0.9576d6fe.js", + "static/js/async/0.d9c21d67.js", "static/js/async/__federation_expose_utils.518ac1a0.js", "static/js/async/1869.daad6453.js", "static/js/async/__federation_expose_app.5b207115.js", "static/js/async/__federation_expose_modules__data_object.9692bdfb.js", "static/js/async/4322.343e0435.js", "static/js/async/__federation_expose_modules__asset.fa50b6ac.js", - "static/js/async/7091.48f5b66b.js", + "static/js/async/1560.4e3adaa6.js", "static/js/async/161.ff32631b.js", - "static/js/async/__federation_expose__internal___mf_bootstrap.4aec5d69.js", - "static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.974c9686.js", + "static/js/async/__federation_expose__internal___mf_bootstrap.e95ec0a5.js", + "static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.feecb57f.js", "static/js/async/__federation_expose_modules__document.67bc95cd.js" ], "async": [ @@ -2912,27 +2912,27 @@ "static/js/async/1047.2bb3fd91.js", "static/js/async/6534.241f683d.js", "static/js/async/4819.c23fd1b3.js", - "static/js/async/0.9576d6fe.js", + "static/js/async/0.d9c21d67.js", "static/js/async/__federation_expose_utils.518ac1a0.js", "static/js/async/1869.daad6453.js", "static/js/async/__federation_expose_app.5b207115.js", "static/js/async/__federation_expose_modules__data_object.9692bdfb.js", "static/js/async/4322.343e0435.js", "static/js/async/__federation_expose_modules__asset.fa50b6ac.js", - "static/js/async/7091.48f5b66b.js", - "static/js/async/__federation_expose__internal___mf_bootstrap.4aec5d69.js", + "static/js/async/1560.4e3adaa6.js", + "static/js/async/__federation_expose__internal___mf_bootstrap.e95ec0a5.js", "static/js/async/8902.fc737248.js" ] }, "css": { "sync": [ - "static/css/async/6534.e945e8ba.css", - "static/css/async/__federation_expose__internal___mf_bootstrap.5d6c6f99.css", - "static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.5d6c6f99.css" + "static/css/async/6534.cf521767.css", + "static/css/async/__federation_expose__internal___mf_bootstrap.6b370b4c.css", + "static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.6b370b4c.css" ], "async": [ - "static/css/async/6534.e945e8ba.css", - "static/css/async/__federation_expose__internal___mf_bootstrap.5d6c6f99.css" + "static/css/async/6534.cf521767.css", + "static/css/async/__federation_expose__internal___mf_bootstrap.6b370b4c.css" ] } } @@ -2952,7 +2952,7 @@ "static/js/async/8526.3a758371.js", "static/js/async/1047.2bb3fd91.js", "static/js/async/6534.241f683d.js", - "static/js/async/0.9576d6fe.js", + "static/js/async/0.d9c21d67.js", "static/js/async/__federation_expose_utils.518ac1a0.js", "static/js/async/1869.daad6453.js", "static/js/async/__federation_expose_app.5b207115.js", @@ -3223,7 +3223,7 @@ }, "css": { "sync": [ - "static/css/async/6534.e945e8ba.css" + "static/css/async/6534.cf521767.css" ], "async": [] } @@ -3281,7 +3281,7 @@ "static/js/async/8526.3a758371.js", "static/js/async/1047.2bb3fd91.js", "static/js/async/6534.241f683d.js", - "static/js/async/0.9576d6fe.js", + "static/js/async/0.d9c21d67.js", "static/js/async/__federation_expose_utils.518ac1a0.js", "static/js/async/1869.daad6453.js", "static/js/async/__federation_expose_app.5b207115.js", @@ -3550,7 +3550,7 @@ }, "css": { "sync": [ - "static/css/async/6534.e945e8ba.css" + "static/css/async/6534.cf521767.css" ], "async": [] } @@ -3605,17 +3605,17 @@ "static/js/async/1047.2bb3fd91.js", "static/js/async/6534.241f683d.js", "static/js/async/4819.c23fd1b3.js", - "static/js/async/0.9576d6fe.js", + "static/js/async/0.d9c21d67.js", "static/js/async/__federation_expose_utils.518ac1a0.js", "static/js/async/1869.daad6453.js", "static/js/async/__federation_expose_app.5b207115.js", "static/js/async/__federation_expose_modules__data_object.9692bdfb.js", "static/js/async/4322.343e0435.js", "static/js/async/__federation_expose_modules__asset.fa50b6ac.js", - "static/js/async/7091.48f5b66b.js", + "static/js/async/1560.4e3adaa6.js", "static/js/async/161.ff32631b.js", - "static/js/async/__federation_expose__internal___mf_bootstrap.4aec5d69.js", - "static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.974c9686.js", + "static/js/async/__federation_expose__internal___mf_bootstrap.e95ec0a5.js", + "static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.feecb57f.js", "static/js/async/__federation_expose_modules__document.67bc95cd.js", "static/js/async/__federation_expose_modules__user.6f21700a.js" ], @@ -3625,17 +3625,17 @@ "static/js/async/1047.2bb3fd91.js", "static/js/async/6534.241f683d.js", "static/js/async/4819.c23fd1b3.js", - "static/js/async/0.9576d6fe.js", + "static/js/async/0.d9c21d67.js", "static/js/async/__federation_expose_utils.518ac1a0.js", "static/js/async/1869.daad6453.js", "static/js/async/__federation_expose_app.5b207115.js", "static/js/async/__federation_expose_modules__data_object.9692bdfb.js", "static/js/async/4322.343e0435.js", "static/js/async/__federation_expose_modules__asset.fa50b6ac.js", - "static/js/async/7091.48f5b66b.js", + "static/js/async/1560.4e3adaa6.js", "static/js/async/161.ff32631b.js", - "static/js/async/__federation_expose__internal___mf_bootstrap.4aec5d69.js", - "static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.974c9686.js", + "static/js/async/__federation_expose__internal___mf_bootstrap.e95ec0a5.js", + "static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.feecb57f.js", "static/js/async/__federation_expose_modules__document.67bc95cd.js", "static/js/async/__federation_expose_modules__user.6f21700a.js", "static/js/async/7642.9c387651.js", @@ -3900,14 +3900,14 @@ }, "css": { "sync": [ - "static/css/async/6534.e945e8ba.css", - "static/css/async/__federation_expose__internal___mf_bootstrap.5d6c6f99.css", - "static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.5d6c6f99.css" + "static/css/async/6534.cf521767.css", + "static/css/async/__federation_expose__internal___mf_bootstrap.6b370b4c.css", + "static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.6b370b4c.css" ], "async": [ - "static/css/async/6534.e945e8ba.css", - "static/css/async/__federation_expose__internal___mf_bootstrap.5d6c6f99.css", - "static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.5d6c6f99.css" + "static/css/async/6534.cf521767.css", + "static/css/async/__federation_expose__internal___mf_bootstrap.6b370b4c.css", + "static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.6b370b4c.css" ] } } diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/css/async/6534.e945e8ba.css b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/css/async/6534.cf521767.css similarity index 98% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/css/async/6534.e945e8ba.css rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/css/async/6534.cf521767.css index 95ff3621a0..6c692f4584 100644 --- a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/css/async/6534.e945e8ba.css +++ b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/css/async/6534.cf521767.css @@ -11,4 +11,4 @@ * * / * */ -.leaflet-pane,.leaflet-tile,.leaflet-marker-icon,.leaflet-marker-shadow,.leaflet-tile-container,.leaflet-pane>svg,.leaflet-pane>canvas,.leaflet-zoom-box,.leaflet-image-layer,.leaflet-layer{position:absolute;top:0;left:0}.leaflet-container{overflow:hidden}.leaflet-tile,.leaflet-marker-icon,.leaflet-marker-shadow{-webkit-user-select:none;user-select:none;-webkit-user-drag:none}.leaflet-tile::selection{background:0 0}.leaflet-safari .leaflet-tile{image-rendering:-webkit-optimize-contrast}.leaflet-safari .leaflet-tile-container{-webkit-transform-origin:0 0;width:1600px;height:1600px}.leaflet-marker-icon,.leaflet-marker-shadow{display:block}.leaflet-container .leaflet-overlay-pane svg{max-width:none!important;max-height:none!important}.leaflet-container .leaflet-marker-pane img,.leaflet-container .leaflet-shadow-pane img,.leaflet-container .leaflet-tile-pane img,.leaflet-container img.leaflet-image-layer,.leaflet-container .leaflet-tile{width:auto;padding:0;max-width:none!important;max-height:none!important}.leaflet-container img.leaflet-tile{mix-blend-mode:plus-lighter}.leaflet-container.leaflet-touch-zoom{-ms-touch-action:pan-x pan-y;touch-action:pan-x pan-y}.leaflet-container.leaflet-touch-drag{-ms-touch-action:pinch-zoom;touch-action:none;touch-action:pinch-zoom}.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom{-ms-touch-action:none;touch-action:none}.leaflet-container{-webkit-tap-highlight-color:transparent}.leaflet-container a{-webkit-tap-highlight-color:#33b5e566}.leaflet-tile{filter:inherit;visibility:hidden}.leaflet-tile-loaded{visibility:inherit}.leaflet-zoom-box{box-sizing:border-box;z-index:800;width:0;height:0}.leaflet-overlay-pane svg{-moz-user-select:none}.leaflet-pane{z-index:400}.leaflet-tile-pane{z-index:200}.leaflet-overlay-pane{z-index:400}.leaflet-shadow-pane{z-index:500}.leaflet-marker-pane{z-index:600}.leaflet-tooltip-pane{z-index:650}.leaflet-popup-pane{z-index:700}.leaflet-map-pane canvas{z-index:100}.leaflet-map-pane svg{z-index:200}.leaflet-vml-shape{width:1px;height:1px}.lvml{behavior:url(#default#VML);display:inline-block;position:absolute}.leaflet-control{z-index:800;pointer-events:visiblePainted;pointer-events:auto;position:relative}.leaflet-top,.leaflet-bottom{z-index:1000;pointer-events:none;position:absolute}.leaflet-top{top:0}.leaflet-right{right:0}.leaflet-bottom{bottom:0}.leaflet-left{left:0}.leaflet-control{float:left;clear:both}.leaflet-right .leaflet-control{float:right}.leaflet-top .leaflet-control{margin-top:10px}.leaflet-bottom .leaflet-control{margin-bottom:10px}.leaflet-left .leaflet-control{margin-left:10px}.leaflet-right .leaflet-control{margin-right:10px}.leaflet-fade-anim .leaflet-popup{opacity:0;transition:opacity .2s linear}.leaflet-fade-anim .leaflet-map-pane .leaflet-popup{opacity:1}.leaflet-zoom-animated{transform-origin:0 0}svg.leaflet-zoom-animated{will-change:transform}.leaflet-zoom-anim .leaflet-zoom-animated{-webkit-transition:-webkit-transform .25s cubic-bezier(0,0,.25,1);-moz-transition:-moz-transform .25s cubic-bezier(0,0,.25,1);transition:transform .25s cubic-bezier(0,0,.25,1)}.leaflet-zoom-anim .leaflet-tile,.leaflet-pan-anim .leaflet-tile{transition:none}.leaflet-zoom-anim .leaflet-zoom-hide{visibility:hidden}.leaflet-interactive{cursor:pointer}.leaflet-grab{cursor:-webkit-grab;cursor:-moz-grab;cursor:grab}.leaflet-crosshair,.leaflet-crosshair .leaflet-interactive{cursor:crosshair}.leaflet-popup-pane,.leaflet-control{cursor:auto}.leaflet-dragging .leaflet-grab,.leaflet-dragging .leaflet-grab .leaflet-interactive,.leaflet-dragging .leaflet-marker-draggable{cursor:move;cursor:-webkit-grabbing;cursor:-moz-grabbing;cursor:grabbing}.leaflet-marker-icon,.leaflet-marker-shadow,.leaflet-image-layer,.leaflet-pane>svg path,.leaflet-tile-container{pointer-events:none}.leaflet-marker-icon.leaflet-interactive,.leaflet-image-layer.leaflet-interactive,.leaflet-pane>svg path.leaflet-interactive,svg.leaflet-image-layer.leaflet-interactive path{pointer-events:visiblePainted;pointer-events:auto}.leaflet-container{outline-offset:1px;background:#ddd}.leaflet-container a{color:#0078a8}.leaflet-zoom-box{background:#ffffff80;border:2px dotted #38f}.leaflet-container{font-family:Helvetica Neue,Arial,Helvetica,sans-serif;font-size:.75rem;line-height:1.5}.leaflet-bar{border-radius:4px;box-shadow:0 1px 5px #000000a6}.leaflet-bar a{text-align:center;color:#000;background-color:#fff;border-bottom:1px solid #ccc;width:26px;height:26px;line-height:26px;text-decoration:none;display:block}.leaflet-bar a,.leaflet-control-layers-toggle{background-position:50%;background-repeat:no-repeat;display:block}.leaflet-bar a:hover,.leaflet-bar a:focus{background-color:#f4f4f4}.leaflet-bar a:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.leaflet-bar a:last-child{border-bottom:none;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.leaflet-bar a.leaflet-disabled{cursor:default;color:#bbb;background-color:#f4f4f4}.leaflet-touch .leaflet-bar a{width:30px;height:30px;line-height:30px}.leaflet-touch .leaflet-bar a:first-child{border-top-left-radius:2px;border-top-right-radius:2px}.leaflet-touch .leaflet-bar a:last-child{border-bottom-right-radius:2px;border-bottom-left-radius:2px}.leaflet-control-zoom-in,.leaflet-control-zoom-out{text-indent:1px;font:700 18px Lucida Console,Monaco,monospace}.leaflet-touch .leaflet-control-zoom-in,.leaflet-touch .leaflet-control-zoom-out{font-size:22px}.leaflet-control-layers{background:#fff;border-radius:5px;box-shadow:0 1px 5px #0006}.leaflet-control-layers-toggle{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAQAAAADQ4RFAAACf0lEQVR4AY1UM3gkARTePdvdoTxXKc+qTl3aU5U6b2Kbkz3Gtq3Zw6ziLGNPzrYx7946Tr6/ee/XeCQ4D3ykPtL5tHno4n0d/h3+xfuWHGLX81cn7r0iTNzjr7LrlxCqPtkbTQEHeqOrTy4Yyt3VCi/IOB0v7rVC7q45Q3Gr5K6jt+3Gl5nCoDD4MtO+j96Wu8atmhGqcNGHObuf8OM/x3AMx38+4Z2sPqzCxRFK2aF2e5Jol56XTLyggAMTL56XOMoS1W4pOyjUcGGQdZxU6qRh7B9Zp+PfpOFlqt0zyDZckPi1ttmIp03jX8gyJ8a/PG2yutpS/Vol7peZIbZcKBAEEheEIAgFbDkz5H6Zrkm2hVWGiXKiF4Ycw0RWKdtC16Q7qe3X4iOMxruonzegJzWaXFrU9utOSsLUmrc0YjeWYjCW4PDMADElpJSSQ0vQvA1Tm6/JlKnqFs1EGyZiFCqnRZTEJJJiKRYzVYzJck2Rm6P4iH+cmSY0YzimYa8l0EtTODFWhcMIMVqdsI2uiTvKmTisIDHJ3od5GILVhBCarCfVRmo4uTjkhrhzkiBV7SsaqS+TzrzM1qpGGUFt28pIySQHR6h7F6KSwGWm97ay+Z+ZqMcEjEWebE7wxCSQwpkhJqoZA5ivCdZDjJepuJ9IQjGGUmuXJdBFUygxVqVsxFsLMbDe8ZbDYVCGKxs+W080max1hFCarCfV+C1KATwcnvE9gRRuMP2prdbWGowm1KB1y+zwMMENkM755cJ2yPDtqhTI6ED1M/82yIDtC/4j4BijjeObflpO9I9MwXTCsSX8jWAFeHr05WoLTJ5G8IQVS/7vwR6ohirYM7f6HzYpogfS3R2OAAAAAElFTkSuQmCC);width:36px;height:36px}.leaflet-retina .leaflet-control-layers-toggle{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADQAAAA0CAQAAABvcdNgAAAEsklEQVR4AWL4TydIhpZK1kpWOlg0w3ZXP6D2soBtG42jeI6ZmQTHzAxiTbSJsYLjO9HhP+WOmcuhciVnmHVQcJnp7DFvScowZorad/+V/fVzMdMT2g9Cv9guXGv/7pYOrXh2U+RRR3dSd9JRx6bIFc/ekqHI29JC6pJ5ZEh1yWkhkbcFeSjxgx3L2m1cb1C7bceyxA+CNjT/Ifff+/kDk2u/w/33/IeCMOSaWZ4glosqT3DNnNZQ7Cs58/3Ce5HL78iZH/vKVIaYlqzfdLu8Vi7dnvUbEza5Idt36tquZFldl6N5Z/POLof0XLK61mZCmJSWjVF9tEjUluu74IUXvgttuVIHE7YxSkaYhJZam7yiM9Pv82JYfl9nptxZaxMJE4YSPty+vF0+Y2up9d3wwijfjZbabqm/3bZ9ecKHsiGmRflnn1MW4pjHf9oLufyn2z3y1D6n8g8TZhxyzipLNPnAUpsOiuWimg52psrTZYnOWYNDTMuWBWa0tJb4rgq1UvmutpaYEbZlwU3CLJm/ayYjHW5/h7xWLn9Hh1vepDkyf7dE7MtT5LR4e7yYpHrkhOUpEfssBLq2pPhAqoSWKUkk7EDqkmK6RrCEzqDjhNDWNE+XSMvkJRDWlZTmCW0l0PHQGRZY5t1L83kT0Y3l2SItk5JAWHl2dCOBm+fPu3fo5/3v61RMCO9Jx2EEYYhb0rmNQMX/vm7gqOEJLcXTGw3CAuRNeyaPWwjR8PRqKQ1PDA/dpv+on9Shox52WFnx0KY8onHayrJzm87i5h9xGw/tfkev0jGsQizqezUKjk12hBMKJ4kbCqGPVNXudyyrShovGw5CgxsRICxF6aRmSjlBnHRzg7Gx8fKqEubI2rahQYdR1YgDIRQO7JvQyD52hoIQx0mxa0ODtW2Iozn1le2iIRdzwWewedyZzewidueOGqlsn1MvcnQpuVwLGG3/IR1hIKxCjelIDZ8ldqWz25jWAsnldEnK0Zxro19TGVb2ffIZEsIO89EIEDvKMPrzmBOQcKQ+rroye6NgRRxqR4U8EAkz0CL6uSGOm6KQCdWjvjRiSP1BPalCRS5iQYiEIvxuBMJEWgzSoHADcVMuN7IuqqTeyUPq22qFimFtxDyBBJEwNyt6TM88blFHao/6tWWhuuOM4SAK4EI4QmFHA+SEyWlp4EQoJ13cYGzMu7yszEIBOm2rVmHUNqwAIQabISNMRstmdhNWcFLsSm+0tjJH1MdRxO5Nx0WDMhCtgD6OKgZeljJqJKc9po8juskR9XN0Y1lZ3mWjLR9JCO1jRDMd0fpYC2VnvjBSEFg7wBENc0R9HFlb0xvF1+TBEpF68d+DHR6IOWVv2BECtxo46hOFUBd/APU57WIoEwJhIi2CdpyZX0m93BZicktMj1AS9dClteUFAUNUIEygRZCtik5zSxI9MubTBH1GOiHsiLJ3OCoSZkILa9PxiN0EbvhsAo8tdAf9Seepd36lGWHmtNANTv5Jd0z4QYyeo/UEJqxKRpg5LZx6btLPsOaEmdMyxYdlc8LMaJnikDlhclqmPiQnTEpLUIZEwkRagjYkEibQErwhkTAKCLQEbUgkzJQWc/0PstHHcfEdQ+UAAAAASUVORK5CYII=);background-size:26px 26px}.leaflet-touch .leaflet-control-layers-toggle{width:44px;height:44px}.leaflet-control-layers .leaflet-control-layers-list,.leaflet-control-layers-expanded .leaflet-control-layers-toggle{display:none}.leaflet-control-layers-expanded .leaflet-control-layers-list{display:block;position:relative}.leaflet-control-layers-expanded{color:#333;background:#fff;padding:6px 10px 6px 6px}.leaflet-control-layers-scrollbar{padding-right:5px;overflow:hidden scroll}.leaflet-control-layers-selector{margin-top:2px;position:relative;top:1px}.leaflet-control-layers label{font-size:1.08333em;display:block}.leaflet-control-layers-separator{border-top:1px solid #ddd;height:0;margin:5px -10px 5px -6px}.leaflet-default-icon-path{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAApCAYAAADAk4LOAAAFgUlEQVR4Aa1XA5BjWRTN2oW17d3YaZtr2962HUzbDNpjszW24mRt28p47v7zq/bXZtrp/lWnXr337j3nPCe85NcypgSFdugCpW5YoDAMRaIMqRi6aKq5E3YqDQO3qAwjVWrD8Ncq/RBpykd8oZUb/kaJutow8r1aP9II0WmLKLIsJyv1w/kqw9Ch2MYdB++12Onxee/QMwvf4/Dk/Lfp/i4nxTXtOoQ4pW5Aj7wpici1A9erdAN2OH64x8OSP9j3Ft3b7aWkTg/Fm91siTra0f9on5sQr9INejH6CUUUpavjFNq1B+Oadhxmnfa8RfEmN8VNAsQhPqF55xHkMzz3jSmChWU6f7/XZKNH+9+hBLOHYozuKQPxyMPUKkrX/K0uWnfFaJGS1QPRtZsOPtr3NsW0uyh6NNCOkU3Yz+bXbT3I8G3xE5EXLXtCXbbqwCO9zPQYPRTZ5vIDXD7U+w7rFDEoUUf7ibHIR4y6bLVPXrz8JVZEql13trxwue/uDivd3fkWRbS6/IA2bID4uk0UpF1N8qLlbBlXs4Ee7HLTfV1j54APvODnSfOWBqtKVvjgLKzF5YdEk5ewRkGlK0i33Eofffc7HT56jD7/6U+qH3Cx7SBLNntH5YIPvODnyfIXZYRVDPqgHtLs5ABHD3YzLuespb7t79FY34DjMwrVrcTuwlT55YMPvOBnRrJ4VXTdNnYug5ucHLBjEpt30701A3Ts+HEa73u6dT3FNWwflY86eMHPk+Yu+i6pzUpRrW7SNDg5JHR4KapmM5Wv2E8Tfcb1HoqqHMHU+uWDD7zg54mz5/2BSnizi9T1Dg4QQXLToGNCkb6tb1NU+QAlGr1++eADrzhn/u8Q2YZhQVlZ5+CAOtqfbhmaUCS1ezNFVm2imDbPmPng5wmz+gwh+oHDce0eUtQ6OGDIyR0uUhUsoO3vfDmmgOezH0mZN59x7MBi++WDL1g/eEiU3avlidO671bkLfwbw5XV2P8Pzo0ydy4t2/0eu33xYSOMOD8hTf4CrBtGMSoXfPLchX+J0ruSePw3LZeK0juPJbYzrhkH0io7B3k164hiGvawhOKMLkrQLyVpZg8rHFW7E2uHOL888IBPlNZ1FPzstSJM694fWr6RwpvcJK60+0HCILTBzZLFNdtAzJaohze60T8qBzyh5ZuOg5e7uwQppofEmf2++DYvmySqGBuKaicF1blQjhuHdvCIMvp8whTTfZzI7RldpwtSzL+F1+wkdZ2TBOW2gIF88PBTzD/gpeREAMEbxnJcaJHNHrpzji0gQCS6hdkEeYt9DF/2qPcEC8RM28Hwmr3sdNyht00byAut2k3gufWNtgtOEOFGUwcXWNDbdNbpgBGxEvKkOQsxivJx33iow0Vw5S6SVTrpVq11ysA2Rp7gTfPfktc6zhtXBBC+adRLshf6sG2RfHPZ5EAc4sVZ83yCN00Fk/4kggu40ZTvIEm5g24qtU4KjBrx/BTTH8ifVASAG7gKrnWxJDcU7x8X6Ecczhm3o6YicvsLXWfh3Ch1W0k8x0nXF+0fFxgt4phz8QvypiwCCFKMqXCnqXExjq10beH+UUA7+nG6mdG/Pu0f3LgFcGrl2s0kNNjpmoJ9o4B29CMO8dMT4Q5ox8uitF6fqsrJOr8qnwNbRzv6hSnG5wP+64C7h9lp30hKNtKdWjtdkbuPA19nJ7Tz3zR/ibgARbhb4AlhavcBebmTHcFl2fvYEnW0ox9xMxKBS8btJ+KiEbq9zA4RthQXDhPa0T9TEe69gWupwc6uBUphquXgf+/FrIjweHQS4/pduMe5ERUMHUd9xv8ZR98CxkS4F2n3EUrUZ10EYNw7BWm9x1GiPssi3GgiGRDKWRYZfXlON+dfNbM+GgIwYdwAAAAASUVORK5CYII=)}.leaflet-container .leaflet-control-attribution{background:#fffc;margin:0}.leaflet-control-attribution,.leaflet-control-scale-line{color:#333;padding:0 5px;line-height:1.4}.leaflet-control-attribution a{text-decoration:none}.leaflet-control-attribution a:hover,.leaflet-control-attribution a:focus{text-decoration:underline}.leaflet-attribution-flag{width:1em;height:.6669em;vertical-align:baseline!important;display:inline!important}.leaflet-left .leaflet-control-scale{margin-left:5px}.leaflet-bottom .leaflet-control-scale{margin-bottom:5px}.leaflet-control-scale-line{white-space:nowrap;box-sizing:border-box;text-shadow:1px 1px #fff;background:#fffc;border:2px solid #777;border-top:none;padding:2px 5px 1px;line-height:1.1}.leaflet-control-scale-line:not(:first-child){border-top:2px solid #777;border-bottom:none;margin-top:-2px}.leaflet-control-scale-line:not(:first-child):not(:last-child){border-bottom:2px solid #777}.leaflet-touch .leaflet-control-attribution,.leaflet-touch .leaflet-control-layers,.leaflet-touch .leaflet-bar{box-shadow:none}.leaflet-touch .leaflet-control-layers,.leaflet-touch .leaflet-bar{background-clip:padding-box;border:2px solid #0003}.leaflet-popup{text-align:center;margin-bottom:20px;position:absolute}.leaflet-popup-content-wrapper{text-align:left;border-radius:12px;padding:1px}.leaflet-popup-content{min-height:1px;margin:13px 24px 13px 20px;font-size:1.08333em;line-height:1.3}.leaflet-popup-content p{margin:1.3em 0}.leaflet-popup-tip-container{pointer-events:none;width:40px;height:20px;margin-top:-1px;margin-left:-20px;position:absolute;left:50%;overflow:hidden}.leaflet-popup-tip{pointer-events:auto;width:17px;height:17px;margin:-10px auto 0;padding:1px;transform:rotate(45deg)}.leaflet-popup-content-wrapper,.leaflet-popup-tip{color:#333;background:#fff;box-shadow:0 3px 14px #0006}.leaflet-container a.leaflet-popup-close-button{text-align:center;color:#757575;background:0 0;border:none;width:24px;height:24px;font:16px/24px Tahoma,Verdana,sans-serif;text-decoration:none;position:absolute;top:0;right:0}.leaflet-container a.leaflet-popup-close-button:hover,.leaflet-container a.leaflet-popup-close-button:focus{color:#585858}.leaflet-popup-scrolled{overflow:auto}.leaflet-oldie .leaflet-popup-content-wrapper{-ms-zoom:1}.leaflet-oldie .leaflet-popup-tip{-ms-filter:"progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";width:24px;filter:progid:DXImageTransform.Microsoft.Matrix(M11=.707107,M12=.707107,M21=-.707107,M22=.707107);margin:0 auto}.leaflet-oldie .leaflet-control-zoom,.leaflet-oldie .leaflet-control-layers,.leaflet-oldie .leaflet-popup-content-wrapper,.leaflet-oldie .leaflet-popup-tip{border:1px solid #999}.leaflet-div-icon{background:#fff;border:1px solid #666}.leaflet-tooltip{color:#222;white-space:nowrap;-webkit-user-select:none;user-select:none;pointer-events:none;background-color:#fff;border:1px solid #fff;border-radius:3px;padding:6px;position:absolute;box-shadow:0 1px 3px #0006}.leaflet-tooltip.leaflet-interactive{cursor:pointer;pointer-events:auto}.leaflet-tooltip-top:before,.leaflet-tooltip-bottom:before,.leaflet-tooltip-left:before,.leaflet-tooltip-right:before{pointer-events:none;content:"";background:0 0;border:6px solid #0000;position:absolute}.leaflet-tooltip-bottom{margin-top:6px}.leaflet-tooltip-top{margin-top:-6px}.leaflet-tooltip-bottom:before,.leaflet-tooltip-top:before{margin-left:-6px;left:50%}.leaflet-tooltip-top:before{border-top-color:#fff;margin-bottom:-12px;bottom:0}.leaflet-tooltip-bottom:before{border-bottom-color:#fff;margin-top:-12px;margin-left:-6px;top:0}.leaflet-tooltip-left{margin-left:-6px}.leaflet-tooltip-right{margin-left:6px}.leaflet-tooltip-left:before,.leaflet-tooltip-right:before{margin-top:-6px;top:50%}.leaflet-tooltip-left:before{border-left-color:#fff;margin-right:-12px;right:0}.leaflet-tooltip-right:before{border-right-color:#fff;margin-left:-12px;left:0}@media print{.leaflet-control{-webkit-print-color-adjust:exact;print-color-adjust:exact}}.leaflet-draw-section{position:relative}.leaflet-draw-toolbar{margin-top:12px}.leaflet-draw-toolbar-top{margin-top:0}.leaflet-draw-toolbar-notop a:first-child{border-top-right-radius:0}.leaflet-draw-toolbar-nobottom a:last-child{border-bottom-right-radius:0}.leaflet-draw-toolbar a{background-image:linear-gradient(#0000,#0000),url(/bundles/pimcorestudioui/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/svg/spritesheet.ac8b36fa.svg);background-repeat:no-repeat;background-size:300px 30px;background-clip:padding-box}.leaflet-retina .leaflet-draw-toolbar a{background-image:linear-gradient(#0000,#0000),url(/bundles/pimcorestudioui/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/svg/spritesheet.ac8b36fa.svg)}.leaflet-draw a{text-align:center;text-decoration:none;display:block}.leaflet-draw a .sr-only{clip:rect(0,0,0,0);border:0;width:1px;height:1px;margin:-1px;padding:0;position:absolute;overflow:hidden}.leaflet-draw-actions{white-space:nowrap;margin:0;padding:0;list-style:none;display:none;position:absolute;top:0;left:26px}.leaflet-touch .leaflet-draw-actions{left:32px}.leaflet-right .leaflet-draw-actions{left:auto;right:26px}.leaflet-touch .leaflet-right .leaflet-draw-actions{left:auto;right:32px}.leaflet-draw-actions li{display:inline-block}.leaflet-draw-actions li:first-child a{border-left:0}.leaflet-draw-actions li:last-child a{border-radius:0 4px 4px 0}.leaflet-right .leaflet-draw-actions li:last-child a{border-radius:0}.leaflet-right .leaflet-draw-actions li:first-child a{border-radius:4px 0 0 4px}.leaflet-draw-actions a{color:#fff;background-color:#919187;border-left:1px solid #aaa;height:28px;padding-left:10px;padding-right:10px;font:11px/28px Helvetica Neue,Arial,Helvetica,sans-serif;text-decoration:none}.leaflet-touch .leaflet-draw-actions a{height:30px;font-size:12px;line-height:30px}.leaflet-draw-actions-bottom{margin-top:0}.leaflet-draw-actions-top{margin-top:1px}.leaflet-draw-actions-top a,.leaflet-draw-actions-bottom a{height:27px;line-height:27px}.leaflet-draw-actions a:hover{background-color:#a0a098}.leaflet-draw-actions-top.leaflet-draw-actions-bottom a{height:26px;line-height:26px}.leaflet-draw-toolbar .leaflet-draw-draw-polyline{background-position:-2px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-polyline{background-position:0 -1px}.leaflet-draw-toolbar .leaflet-draw-draw-polygon{background-position:-31px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-polygon{background-position:-29px -1px}.leaflet-draw-toolbar .leaflet-draw-draw-rectangle{background-position:-62px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-rectangle{background-position:-60px -1px}.leaflet-draw-toolbar .leaflet-draw-draw-circle{background-position:-92px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-circle{background-position:-90px -1px}.leaflet-draw-toolbar .leaflet-draw-draw-marker{background-position:-122px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-marker{background-position:-120px -1px}.leaflet-draw-toolbar .leaflet-draw-draw-circlemarker{background-position:-273px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-circlemarker{background-position:-271px -1px}.leaflet-draw-toolbar .leaflet-draw-edit-edit{background-position:-152px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-edit-edit{background-position:-150px -1px}.leaflet-draw-toolbar .leaflet-draw-edit-remove{background-position:-182px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-edit-remove{background-position:-180px -1px}.leaflet-draw-toolbar .leaflet-draw-edit-edit.leaflet-disabled{background-position:-212px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-edit-edit.leaflet-disabled{background-position:-210px -1px}.leaflet-draw-toolbar .leaflet-draw-edit-remove.leaflet-disabled{background-position:-242px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-edit-remove.leaflet-disabled{background-position:-240px -2px}.leaflet-mouse-marker{cursor:crosshair;background-color:#fff}.leaflet-draw-tooltip{color:#fff;visibility:hidden;white-space:nowrap;z-index:6;background:#00000080;border:1px solid #0000;border-radius:4px;margin-top:-21px;margin-left:20px;padding:4px 8px;font:12px/18px Helvetica Neue,Arial,Helvetica,sans-serif;position:absolute}.leaflet-draw-tooltip:before{content:"";border-top:6px solid #0000;border-bottom:6px solid #0000;border-right:6px solid #00000080;position:absolute;top:7px;left:-7px}.leaflet-error-draw-tooltip{color:#b94a48;background-color:#f2dede;border:1px solid #e6b6bd}.leaflet-error-draw-tooltip:before{border-right-color:#e6b6bd}.leaflet-draw-tooltip-single{margin-top:-12px}.leaflet-draw-tooltip-subtext{color:#f8d5e4}.leaflet-draw-guide-dash{opacity:.6;width:5px;height:5px;font-size:1%;position:absolute}.leaflet-edit-marker-selected{box-sizing:content-box;background-color:#fe57a11a;border:4px dashed #fe57a199;border-radius:4px}.leaflet-edit-move{cursor:move}.leaflet-edit-resize{cursor:pointer}.leaflet-oldie .leaflet-draw-toolbar{border:1px solid #999} \ No newline at end of file +.leaflet-pane,.leaflet-tile,.leaflet-marker-icon,.leaflet-marker-shadow,.leaflet-tile-container,.leaflet-pane>svg,.leaflet-pane>canvas,.leaflet-zoom-box,.leaflet-image-layer,.leaflet-layer{position:absolute;top:0;left:0}.leaflet-container{overflow:hidden}.leaflet-tile,.leaflet-marker-icon,.leaflet-marker-shadow{-webkit-user-select:none;user-select:none;-webkit-user-drag:none}.leaflet-tile::selection{background:0 0}.leaflet-safari .leaflet-tile{image-rendering:-webkit-optimize-contrast}.leaflet-safari .leaflet-tile-container{-webkit-transform-origin:0 0;width:1600px;height:1600px}.leaflet-marker-icon,.leaflet-marker-shadow{display:block}.leaflet-container .leaflet-overlay-pane svg{max-width:none!important;max-height:none!important}.leaflet-container .leaflet-marker-pane img,.leaflet-container .leaflet-shadow-pane img,.leaflet-container .leaflet-tile-pane img,.leaflet-container img.leaflet-image-layer,.leaflet-container .leaflet-tile{width:auto;padding:0;max-width:none!important;max-height:none!important}.leaflet-container img.leaflet-tile{mix-blend-mode:plus-lighter}.leaflet-container.leaflet-touch-zoom{-ms-touch-action:pan-x pan-y;touch-action:pan-x pan-y}.leaflet-container.leaflet-touch-drag{-ms-touch-action:pinch-zoom;touch-action:none;touch-action:pinch-zoom}.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom{-ms-touch-action:none;touch-action:none}.leaflet-container{-webkit-tap-highlight-color:transparent}.leaflet-container a{-webkit-tap-highlight-color:#33b5e566}.leaflet-tile{filter:inherit;visibility:hidden}.leaflet-tile-loaded{visibility:inherit}.leaflet-zoom-box{box-sizing:border-box;z-index:800;width:0;height:0}.leaflet-overlay-pane svg{-moz-user-select:none}.leaflet-pane{z-index:400}.leaflet-tile-pane{z-index:200}.leaflet-overlay-pane{z-index:400}.leaflet-shadow-pane{z-index:500}.leaflet-marker-pane{z-index:600}.leaflet-tooltip-pane{z-index:650}.leaflet-popup-pane{z-index:700}.leaflet-map-pane canvas{z-index:100}.leaflet-map-pane svg{z-index:200}.leaflet-vml-shape{width:1px;height:1px}.lvml{behavior:url(#default#VML);display:inline-block;position:absolute}.leaflet-control{z-index:800;pointer-events:visiblePainted;pointer-events:auto;position:relative}.leaflet-top,.leaflet-bottom{z-index:1000;pointer-events:none;position:absolute}.leaflet-top{top:0}.leaflet-right{right:0}.leaflet-bottom{bottom:0}.leaflet-left{left:0}.leaflet-control{float:left;clear:both}.leaflet-right .leaflet-control{float:right}.leaflet-top .leaflet-control{margin-top:10px}.leaflet-bottom .leaflet-control{margin-bottom:10px}.leaflet-left .leaflet-control{margin-left:10px}.leaflet-right .leaflet-control{margin-right:10px}.leaflet-fade-anim .leaflet-popup{opacity:0;transition:opacity .2s linear}.leaflet-fade-anim .leaflet-map-pane .leaflet-popup{opacity:1}.leaflet-zoom-animated{transform-origin:0 0}svg.leaflet-zoom-animated{will-change:transform}.leaflet-zoom-anim .leaflet-zoom-animated{-webkit-transition:-webkit-transform .25s cubic-bezier(0,0,.25,1);-moz-transition:-moz-transform .25s cubic-bezier(0,0,.25,1);transition:transform .25s cubic-bezier(0,0,.25,1)}.leaflet-zoom-anim .leaflet-tile,.leaflet-pan-anim .leaflet-tile{transition:none}.leaflet-zoom-anim .leaflet-zoom-hide{visibility:hidden}.leaflet-interactive{cursor:pointer}.leaflet-grab{cursor:-webkit-grab;cursor:-moz-grab;cursor:grab}.leaflet-crosshair,.leaflet-crosshair .leaflet-interactive{cursor:crosshair}.leaflet-popup-pane,.leaflet-control{cursor:auto}.leaflet-dragging .leaflet-grab,.leaflet-dragging .leaflet-grab .leaflet-interactive,.leaflet-dragging .leaflet-marker-draggable{cursor:move;cursor:-webkit-grabbing;cursor:-moz-grabbing;cursor:grabbing}.leaflet-marker-icon,.leaflet-marker-shadow,.leaflet-image-layer,.leaflet-pane>svg path,.leaflet-tile-container{pointer-events:none}.leaflet-marker-icon.leaflet-interactive,.leaflet-image-layer.leaflet-interactive,.leaflet-pane>svg path.leaflet-interactive,svg.leaflet-image-layer.leaflet-interactive path{pointer-events:visiblePainted;pointer-events:auto}.leaflet-container{outline-offset:1px;background:#ddd}.leaflet-container a{color:#0078a8}.leaflet-zoom-box{background:#ffffff80;border:2px dotted #38f}.leaflet-container{font-family:Helvetica Neue,Arial,Helvetica,sans-serif;font-size:.75rem;line-height:1.5}.leaflet-bar{border-radius:4px;box-shadow:0 1px 5px #000000a6}.leaflet-bar a{text-align:center;color:#000;background-color:#fff;border-bottom:1px solid #ccc;width:26px;height:26px;line-height:26px;text-decoration:none;display:block}.leaflet-bar a,.leaflet-control-layers-toggle{background-position:50%;background-repeat:no-repeat;display:block}.leaflet-bar a:hover,.leaflet-bar a:focus{background-color:#f4f4f4}.leaflet-bar a:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.leaflet-bar a:last-child{border-bottom:none;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.leaflet-bar a.leaflet-disabled{cursor:default;color:#bbb;background-color:#f4f4f4}.leaflet-touch .leaflet-bar a{width:30px;height:30px;line-height:30px}.leaflet-touch .leaflet-bar a:first-child{border-top-left-radius:2px;border-top-right-radius:2px}.leaflet-touch .leaflet-bar a:last-child{border-bottom-right-radius:2px;border-bottom-left-radius:2px}.leaflet-control-zoom-in,.leaflet-control-zoom-out{text-indent:1px;font:700 18px Lucida Console,Monaco,monospace}.leaflet-touch .leaflet-control-zoom-in,.leaflet-touch .leaflet-control-zoom-out{font-size:22px}.leaflet-control-layers{background:#fff;border-radius:5px;box-shadow:0 1px 5px #0006}.leaflet-control-layers-toggle{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAQAAAADQ4RFAAACf0lEQVR4AY1UM3gkARTePdvdoTxXKc+qTl3aU5U6b2Kbkz3Gtq3Zw6ziLGNPzrYx7946Tr6/ee/XeCQ4D3ykPtL5tHno4n0d/h3+xfuWHGLX81cn7r0iTNzjr7LrlxCqPtkbTQEHeqOrTy4Yyt3VCi/IOB0v7rVC7q45Q3Gr5K6jt+3Gl5nCoDD4MtO+j96Wu8atmhGqcNGHObuf8OM/x3AMx38+4Z2sPqzCxRFK2aF2e5Jol56XTLyggAMTL56XOMoS1W4pOyjUcGGQdZxU6qRh7B9Zp+PfpOFlqt0zyDZckPi1ttmIp03jX8gyJ8a/PG2yutpS/Vol7peZIbZcKBAEEheEIAgFbDkz5H6Zrkm2hVWGiXKiF4Ycw0RWKdtC16Q7qe3X4iOMxruonzegJzWaXFrU9utOSsLUmrc0YjeWYjCW4PDMADElpJSSQ0vQvA1Tm6/JlKnqFs1EGyZiFCqnRZTEJJJiKRYzVYzJck2Rm6P4iH+cmSY0YzimYa8l0EtTODFWhcMIMVqdsI2uiTvKmTisIDHJ3od5GILVhBCarCfVRmo4uTjkhrhzkiBV7SsaqS+TzrzM1qpGGUFt28pIySQHR6h7F6KSwGWm97ay+Z+ZqMcEjEWebE7wxCSQwpkhJqoZA5ivCdZDjJepuJ9IQjGGUmuXJdBFUygxVqVsxFsLMbDe8ZbDYVCGKxs+W080max1hFCarCfV+C1KATwcnvE9gRRuMP2prdbWGowm1KB1y+zwMMENkM755cJ2yPDtqhTI6ED1M/82yIDtC/4j4BijjeObflpO9I9MwXTCsSX8jWAFeHr05WoLTJ5G8IQVS/7vwR6ohirYM7f6HzYpogfS3R2OAAAAAElFTkSuQmCC);width:36px;height:36px}.leaflet-retina .leaflet-control-layers-toggle{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADQAAAA0CAQAAABvcdNgAAAEsklEQVR4AWL4TydIhpZK1kpWOlg0w3ZXP6D2soBtG42jeI6ZmQTHzAxiTbSJsYLjO9HhP+WOmcuhciVnmHVQcJnp7DFvScowZorad/+V/fVzMdMT2g9Cv9guXGv/7pYOrXh2U+RRR3dSd9JRx6bIFc/ekqHI29JC6pJ5ZEh1yWkhkbcFeSjxgx3L2m1cb1C7bceyxA+CNjT/Ifff+/kDk2u/w/33/IeCMOSaWZ4glosqT3DNnNZQ7Cs58/3Ce5HL78iZH/vKVIaYlqzfdLu8Vi7dnvUbEza5Idt36tquZFldl6N5Z/POLof0XLK61mZCmJSWjVF9tEjUluu74IUXvgttuVIHE7YxSkaYhJZam7yiM9Pv82JYfl9nptxZaxMJE4YSPty+vF0+Y2up9d3wwijfjZbabqm/3bZ9ecKHsiGmRflnn1MW4pjHf9oLufyn2z3y1D6n8g8TZhxyzipLNPnAUpsOiuWimg52psrTZYnOWYNDTMuWBWa0tJb4rgq1UvmutpaYEbZlwU3CLJm/ayYjHW5/h7xWLn9Hh1vepDkyf7dE7MtT5LR4e7yYpHrkhOUpEfssBLq2pPhAqoSWKUkk7EDqkmK6RrCEzqDjhNDWNE+XSMvkJRDWlZTmCW0l0PHQGRZY5t1L83kT0Y3l2SItk5JAWHl2dCOBm+fPu3fo5/3v61RMCO9Jx2EEYYhb0rmNQMX/vm7gqOEJLcXTGw3CAuRNeyaPWwjR8PRqKQ1PDA/dpv+on9Shox52WFnx0KY8onHayrJzm87i5h9xGw/tfkev0jGsQizqezUKjk12hBMKJ4kbCqGPVNXudyyrShovGw5CgxsRICxF6aRmSjlBnHRzg7Gx8fKqEubI2rahQYdR1YgDIRQO7JvQyD52hoIQx0mxa0ODtW2Iozn1le2iIRdzwWewedyZzewidueOGqlsn1MvcnQpuVwLGG3/IR1hIKxCjelIDZ8ldqWz25jWAsnldEnK0Zxro19TGVb2ffIZEsIO89EIEDvKMPrzmBOQcKQ+rroye6NgRRxqR4U8EAkz0CL6uSGOm6KQCdWjvjRiSP1BPalCRS5iQYiEIvxuBMJEWgzSoHADcVMuN7IuqqTeyUPq22qFimFtxDyBBJEwNyt6TM88blFHao/6tWWhuuOM4SAK4EI4QmFHA+SEyWlp4EQoJ13cYGzMu7yszEIBOm2rVmHUNqwAIQabISNMRstmdhNWcFLsSm+0tjJH1MdRxO5Nx0WDMhCtgD6OKgZeljJqJKc9po8juskR9XN0Y1lZ3mWjLR9JCO1jRDMd0fpYC2VnvjBSEFg7wBENc0R9HFlb0xvF1+TBEpF68d+DHR6IOWVv2BECtxo46hOFUBd/APU57WIoEwJhIi2CdpyZX0m93BZicktMj1AS9dClteUFAUNUIEygRZCtik5zSxI9MubTBH1GOiHsiLJ3OCoSZkILa9PxiN0EbvhsAo8tdAf9Seepd36lGWHmtNANTv5Jd0z4QYyeo/UEJqxKRpg5LZx6btLPsOaEmdMyxYdlc8LMaJnikDlhclqmPiQnTEpLUIZEwkRagjYkEibQErwhkTAKCLQEbUgkzJQWc/0PstHHcfEdQ+UAAAAASUVORK5CYII=);background-size:26px 26px}.leaflet-touch .leaflet-control-layers-toggle{width:44px;height:44px}.leaflet-control-layers .leaflet-control-layers-list,.leaflet-control-layers-expanded .leaflet-control-layers-toggle{display:none}.leaflet-control-layers-expanded .leaflet-control-layers-list{display:block;position:relative}.leaflet-control-layers-expanded{color:#333;background:#fff;padding:6px 10px 6px 6px}.leaflet-control-layers-scrollbar{padding-right:5px;overflow:hidden scroll}.leaflet-control-layers-selector{margin-top:2px;position:relative;top:1px}.leaflet-control-layers label{font-size:1.08333em;display:block}.leaflet-control-layers-separator{border-top:1px solid #ddd;height:0;margin:5px -10px 5px -6px}.leaflet-default-icon-path{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAApCAYAAADAk4LOAAAFgUlEQVR4Aa1XA5BjWRTN2oW17d3YaZtr2962HUzbDNpjszW24mRt28p47v7zq/bXZtrp/lWnXr337j3nPCe85NcypgSFdugCpW5YoDAMRaIMqRi6aKq5E3YqDQO3qAwjVWrD8Ncq/RBpykd8oZUb/kaJutow8r1aP9II0WmLKLIsJyv1w/kqw9Ch2MYdB++12Onxee/QMwvf4/Dk/Lfp/i4nxTXtOoQ4pW5Aj7wpici1A9erdAN2OH64x8OSP9j3Ft3b7aWkTg/Fm91siTra0f9on5sQr9INejH6CUUUpavjFNq1B+Oadhxmnfa8RfEmN8VNAsQhPqF55xHkMzz3jSmChWU6f7/XZKNH+9+hBLOHYozuKQPxyMPUKkrX/K0uWnfFaJGS1QPRtZsOPtr3NsW0uyh6NNCOkU3Yz+bXbT3I8G3xE5EXLXtCXbbqwCO9zPQYPRTZ5vIDXD7U+w7rFDEoUUf7ibHIR4y6bLVPXrz8JVZEql13trxwue/uDivd3fkWRbS6/IA2bID4uk0UpF1N8qLlbBlXs4Ee7HLTfV1j54APvODnSfOWBqtKVvjgLKzF5YdEk5ewRkGlK0i33Eofffc7HT56jD7/6U+qH3Cx7SBLNntH5YIPvODnyfIXZYRVDPqgHtLs5ABHD3YzLuespb7t79FY34DjMwrVrcTuwlT55YMPvOBnRrJ4VXTdNnYug5ucHLBjEpt30701A3Ts+HEa73u6dT3FNWwflY86eMHPk+Yu+i6pzUpRrW7SNDg5JHR4KapmM5Wv2E8Tfcb1HoqqHMHU+uWDD7zg54mz5/2BSnizi9T1Dg4QQXLToGNCkb6tb1NU+QAlGr1++eADrzhn/u8Q2YZhQVlZ5+CAOtqfbhmaUCS1ezNFVm2imDbPmPng5wmz+gwh+oHDce0eUtQ6OGDIyR0uUhUsoO3vfDmmgOezH0mZN59x7MBi++WDL1g/eEiU3avlidO671bkLfwbw5XV2P8Pzo0ydy4t2/0eu33xYSOMOD8hTf4CrBtGMSoXfPLchX+J0ruSePw3LZeK0juPJbYzrhkH0io7B3k164hiGvawhOKMLkrQLyVpZg8rHFW7E2uHOL888IBPlNZ1FPzstSJM694fWr6RwpvcJK60+0HCILTBzZLFNdtAzJaohze60T8qBzyh5ZuOg5e7uwQppofEmf2++DYvmySqGBuKaicF1blQjhuHdvCIMvp8whTTfZzI7RldpwtSzL+F1+wkdZ2TBOW2gIF88PBTzD/gpeREAMEbxnJcaJHNHrpzji0gQCS6hdkEeYt9DF/2qPcEC8RM28Hwmr3sdNyht00byAut2k3gufWNtgtOEOFGUwcXWNDbdNbpgBGxEvKkOQsxivJx33iow0Vw5S6SVTrpVq11ysA2Rp7gTfPfktc6zhtXBBC+adRLshf6sG2RfHPZ5EAc4sVZ83yCN00Fk/4kggu40ZTvIEm5g24qtU4KjBrx/BTTH8ifVASAG7gKrnWxJDcU7x8X6Ecczhm3o6YicvsLXWfh3Ch1W0k8x0nXF+0fFxgt4phz8QvypiwCCFKMqXCnqXExjq10beH+UUA7+nG6mdG/Pu0f3LgFcGrl2s0kNNjpmoJ9o4B29CMO8dMT4Q5ox8uitF6fqsrJOr8qnwNbRzv6hSnG5wP+64C7h9lp30hKNtKdWjtdkbuPA19nJ7Tz3zR/ibgARbhb4AlhavcBebmTHcFl2fvYEnW0ox9xMxKBS8btJ+KiEbq9zA4RthQXDhPa0T9TEe69gWupwc6uBUphquXgf+/FrIjweHQS4/pduMe5ERUMHUd9xv8ZR98CxkS4F2n3EUrUZ10EYNw7BWm9x1GiPssi3GgiGRDKWRYZfXlON+dfNbM+GgIwYdwAAAAASUVORK5CYII=)}.leaflet-container .leaflet-control-attribution{background:#fffc;margin:0}.leaflet-control-attribution,.leaflet-control-scale-line{color:#333;padding:0 5px;line-height:1.4}.leaflet-control-attribution a{text-decoration:none}.leaflet-control-attribution a:hover,.leaflet-control-attribution a:focus{text-decoration:underline}.leaflet-attribution-flag{width:1em;height:.6669em;vertical-align:baseline!important;display:inline!important}.leaflet-left .leaflet-control-scale{margin-left:5px}.leaflet-bottom .leaflet-control-scale{margin-bottom:5px}.leaflet-control-scale-line{white-space:nowrap;box-sizing:border-box;text-shadow:1px 1px #fff;background:#fffc;border:2px solid #777;border-top:none;padding:2px 5px 1px;line-height:1.1}.leaflet-control-scale-line:not(:first-child){border-top:2px solid #777;border-bottom:none;margin-top:-2px}.leaflet-control-scale-line:not(:first-child):not(:last-child){border-bottom:2px solid #777}.leaflet-touch .leaflet-control-attribution,.leaflet-touch .leaflet-control-layers,.leaflet-touch .leaflet-bar{box-shadow:none}.leaflet-touch .leaflet-control-layers,.leaflet-touch .leaflet-bar{background-clip:padding-box;border:2px solid #0003}.leaflet-popup{text-align:center;margin-bottom:20px;position:absolute}.leaflet-popup-content-wrapper{text-align:left;border-radius:12px;padding:1px}.leaflet-popup-content{min-height:1px;margin:13px 24px 13px 20px;font-size:1.08333em;line-height:1.3}.leaflet-popup-content p{margin:1.3em 0}.leaflet-popup-tip-container{pointer-events:none;width:40px;height:20px;margin-top:-1px;margin-left:-20px;position:absolute;left:50%;overflow:hidden}.leaflet-popup-tip{pointer-events:auto;width:17px;height:17px;margin:-10px auto 0;padding:1px;transform:rotate(45deg)}.leaflet-popup-content-wrapper,.leaflet-popup-tip{color:#333;background:#fff;box-shadow:0 3px 14px #0006}.leaflet-container a.leaflet-popup-close-button{text-align:center;color:#757575;background:0 0;border:none;width:24px;height:24px;font:16px/24px Tahoma,Verdana,sans-serif;text-decoration:none;position:absolute;top:0;right:0}.leaflet-container a.leaflet-popup-close-button:hover,.leaflet-container a.leaflet-popup-close-button:focus{color:#585858}.leaflet-popup-scrolled{overflow:auto}.leaflet-oldie .leaflet-popup-content-wrapper{-ms-zoom:1}.leaflet-oldie .leaflet-popup-tip{-ms-filter:"progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";width:24px;filter:progid:DXImageTransform.Microsoft.Matrix(M11=.707107,M12=.707107,M21=-.707107,M22=.707107);margin:0 auto}.leaflet-oldie .leaflet-control-zoom,.leaflet-oldie .leaflet-control-layers,.leaflet-oldie .leaflet-popup-content-wrapper,.leaflet-oldie .leaflet-popup-tip{border:1px solid #999}.leaflet-div-icon{background:#fff;border:1px solid #666}.leaflet-tooltip{color:#222;white-space:nowrap;-webkit-user-select:none;user-select:none;pointer-events:none;background-color:#fff;border:1px solid #fff;border-radius:3px;padding:6px;position:absolute;box-shadow:0 1px 3px #0006}.leaflet-tooltip.leaflet-interactive{cursor:pointer;pointer-events:auto}.leaflet-tooltip-top:before,.leaflet-tooltip-bottom:before,.leaflet-tooltip-left:before,.leaflet-tooltip-right:before{pointer-events:none;content:"";background:0 0;border:6px solid #0000;position:absolute}.leaflet-tooltip-bottom{margin-top:6px}.leaflet-tooltip-top{margin-top:-6px}.leaflet-tooltip-bottom:before,.leaflet-tooltip-top:before{margin-left:-6px;left:50%}.leaflet-tooltip-top:before{border-top-color:#fff;margin-bottom:-12px;bottom:0}.leaflet-tooltip-bottom:before{border-bottom-color:#fff;margin-top:-12px;margin-left:-6px;top:0}.leaflet-tooltip-left{margin-left:-6px}.leaflet-tooltip-right{margin-left:6px}.leaflet-tooltip-left:before,.leaflet-tooltip-right:before{margin-top:-6px;top:50%}.leaflet-tooltip-left:before{border-left-color:#fff;margin-right:-12px;right:0}.leaflet-tooltip-right:before{border-right-color:#fff;margin-left:-12px;left:0}@media print{.leaflet-control{-webkit-print-color-adjust:exact;print-color-adjust:exact}}.leaflet-draw-section{position:relative}.leaflet-draw-toolbar{margin-top:12px}.leaflet-draw-toolbar-top{margin-top:0}.leaflet-draw-toolbar-notop a:first-child{border-top-right-radius:0}.leaflet-draw-toolbar-nobottom a:last-child{border-bottom-right-radius:0}.leaflet-draw-toolbar a{background-image:linear-gradient(#0000,#0000),url(/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/svg/spritesheet.ac8b36fa.svg);background-repeat:no-repeat;background-size:300px 30px;background-clip:padding-box}.leaflet-retina .leaflet-draw-toolbar a{background-image:linear-gradient(#0000,#0000),url(/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/svg/spritesheet.ac8b36fa.svg)}.leaflet-draw a{text-align:center;text-decoration:none;display:block}.leaflet-draw a .sr-only{clip:rect(0,0,0,0);border:0;width:1px;height:1px;margin:-1px;padding:0;position:absolute;overflow:hidden}.leaflet-draw-actions{white-space:nowrap;margin:0;padding:0;list-style:none;display:none;position:absolute;top:0;left:26px}.leaflet-touch .leaflet-draw-actions{left:32px}.leaflet-right .leaflet-draw-actions{left:auto;right:26px}.leaflet-touch .leaflet-right .leaflet-draw-actions{left:auto;right:32px}.leaflet-draw-actions li{display:inline-block}.leaflet-draw-actions li:first-child a{border-left:0}.leaflet-draw-actions li:last-child a{border-radius:0 4px 4px 0}.leaflet-right .leaflet-draw-actions li:last-child a{border-radius:0}.leaflet-right .leaflet-draw-actions li:first-child a{border-radius:4px 0 0 4px}.leaflet-draw-actions a{color:#fff;background-color:#919187;border-left:1px solid #aaa;height:28px;padding-left:10px;padding-right:10px;font:11px/28px Helvetica Neue,Arial,Helvetica,sans-serif;text-decoration:none}.leaflet-touch .leaflet-draw-actions a{height:30px;font-size:12px;line-height:30px}.leaflet-draw-actions-bottom{margin-top:0}.leaflet-draw-actions-top{margin-top:1px}.leaflet-draw-actions-top a,.leaflet-draw-actions-bottom a{height:27px;line-height:27px}.leaflet-draw-actions a:hover{background-color:#a0a098}.leaflet-draw-actions-top.leaflet-draw-actions-bottom a{height:26px;line-height:26px}.leaflet-draw-toolbar .leaflet-draw-draw-polyline{background-position:-2px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-polyline{background-position:0 -1px}.leaflet-draw-toolbar .leaflet-draw-draw-polygon{background-position:-31px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-polygon{background-position:-29px -1px}.leaflet-draw-toolbar .leaflet-draw-draw-rectangle{background-position:-62px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-rectangle{background-position:-60px -1px}.leaflet-draw-toolbar .leaflet-draw-draw-circle{background-position:-92px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-circle{background-position:-90px -1px}.leaflet-draw-toolbar .leaflet-draw-draw-marker{background-position:-122px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-marker{background-position:-120px -1px}.leaflet-draw-toolbar .leaflet-draw-draw-circlemarker{background-position:-273px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-circlemarker{background-position:-271px -1px}.leaflet-draw-toolbar .leaflet-draw-edit-edit{background-position:-152px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-edit-edit{background-position:-150px -1px}.leaflet-draw-toolbar .leaflet-draw-edit-remove{background-position:-182px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-edit-remove{background-position:-180px -1px}.leaflet-draw-toolbar .leaflet-draw-edit-edit.leaflet-disabled{background-position:-212px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-edit-edit.leaflet-disabled{background-position:-210px -1px}.leaflet-draw-toolbar .leaflet-draw-edit-remove.leaflet-disabled{background-position:-242px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-edit-remove.leaflet-disabled{background-position:-240px -2px}.leaflet-mouse-marker{cursor:crosshair;background-color:#fff}.leaflet-draw-tooltip{color:#fff;visibility:hidden;white-space:nowrap;z-index:6;background:#00000080;border:1px solid #0000;border-radius:4px;margin-top:-21px;margin-left:20px;padding:4px 8px;font:12px/18px Helvetica Neue,Arial,Helvetica,sans-serif;position:absolute}.leaflet-draw-tooltip:before{content:"";border-top:6px solid #0000;border-bottom:6px solid #0000;border-right:6px solid #00000080;position:absolute;top:7px;left:-7px}.leaflet-error-draw-tooltip{color:#b94a48;background-color:#f2dede;border:1px solid #e6b6bd}.leaflet-error-draw-tooltip:before{border-right-color:#e6b6bd}.leaflet-draw-tooltip-single{margin-top:-12px}.leaflet-draw-tooltip-subtext{color:#f8d5e4}.leaflet-draw-guide-dash{opacity:.6;width:5px;height:5px;font-size:1%;position:absolute}.leaflet-edit-marker-selected{box-sizing:content-box;background-color:#fe57a11a;border:4px dashed #fe57a199;border-radius:4px}.leaflet-edit-move{cursor:move}.leaflet-edit-resize{cursor:pointer}.leaflet-oldie .leaflet-draw-toolbar{border:1px solid #999} \ No newline at end of file diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/css/async/__federation_expose__internal___mf_bootstrap.5d6c6f99.css b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/css/async/__federation_expose__internal___mf_bootstrap.6b370b4c.css similarity index 97% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/css/async/__federation_expose__internal___mf_bootstrap.5d6c6f99.css rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/css/async/__federation_expose__internal___mf_bootstrap.6b370b4c.css index 8588ee4a16..b2635c90d1 100644 --- a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/css/async/__federation_expose__internal___mf_bootstrap.5d6c6f99.css +++ b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/css/async/__federation_expose__internal___mf_bootstrap.6b370b4c.css @@ -11,4 +11,4 @@ * * / * */ -.flexlayout__layout{--color-text:black;--color-background:white;--color-base:white;--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:#5f86c41a;--color-drag2-background:#77a67713;--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:white;--color-popup-selected:var(--color-text);--color-popup-selected-background:var(--color-3);--color-edge-marker:#aaa;--color-edge-icon:#555;position:absolute;top:0;bottom:0;left:0;right:0;overflow:hidden}.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 50ms}}.flexlayout__splitter_border{z-index:10}.flexlayout__splitter_drag{z-index:1000;background-color:var(--color-splitter-drag)}.flexlayout__splitter_extra{background-color:#0000}.flexlayout__outline_rect{pointer-events:none;box-sizing:border-box;border:2px solid var(--color-drag1);background:var(--color-drag1-background);z-index:1000;border-radius:5px;position:absolute}.flexlayout__outline_rect_edge{pointer-events:none;border:2px solid var(--color-drag2);background:var(--color-drag2-background);z-index:1000;box-sizing:border-box;border-radius:5px}.flexlayout__edge_rect{z-index:1000;background-color:var(--color-edge-marker);pointer-events:none;justify-content:center;align-items:center;display:flex;position:absolute}.flexlayout__drag_rect{cursor:move;color:var(--color-drag-rect);background-color:var(--color-drag-rect-background);border:2px solid var(--color-drag-rect-border);z-index:1000;box-sizing:border-box;opacity:.9;text-align:center;word-wrap:break-word;font-size:var(--font-size);font-family:var(--font-family);border-radius:5px;flex-direction:column;justify-content:center;padding:.3em 1em;display:flex;position:absolute;overflow:hidden}.flexlayout__tabset{background-color:var(--color-tabset-background);box-sizing:border-box;font-size:var(--font-size);font-family:var(--font-family);flex-direction:column;display:flex;overflow:hidden}.flexlayout__tabset_tab_divider{width:4px}.flexlayout__tabset_content{flex-grow:1;justify-content:center;align-items:center;display:flex}.flexlayout__tabset_header{box-sizing:border-box;border-bottom:1px solid var(--color-tabset-divider-line);color:var(--color-tabset-header);background-color:var(--color-tabset-header-background);align-items:center;padding:3px 3px 3px 5px;display:flex}.flexlayout__tabset_header_content{flex-grow:1}.flexlayout__tabset_tabbar_outer{box-sizing:border-box;background-color:var(--color-tabset-background);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;flex-grow:1;display:flex;position:relative;overflow:hidden}.flexlayout__tabset_tabbar_inner_tab_container{box-sizing:border-box;width:10000px;padding-left:4px;padding-right:4px;display:flex;position:absolute;top:0;bottom:0}.flexlayout__tabset_tabbar_inner_tab_container_top{border-top:2px solid #0000}.flexlayout__tabset_tabbar_inner_tab_container_bottom{border-bottom:2px solid #0000}.flexlayout__tabset-selected{background-color:var(--color-tabset-background-selected)}.flexlayout__tabset-maximized{background-color:var(--color-tabset-background-maximized)}.flexlayout__tab_button_stamp{white-space:nowrap;box-sizing:border-box;align-items:center;gap:.3em;display:inline-flex}.flexlayout__tab{box-sizing:border-box;background-color:var(--color-background);color:var(--color-text);position:absolute;overflow:auto}.flexlayout__tab_button{box-sizing:border-box;cursor:pointer;align-items:center;gap:.3em;padding:3px .5em;display:flex}.flexlayout__tab_button_stretch{color:var(--color-tab-selected);text-wrap:nowrap;box-sizing:border-box;cursor:pointer;background-color:#0000;align-items:center;gap:.3em;width:100%;padding:3px 0;display:flex}@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:gray}.flexlayout__tab_button_leading,.flexlayout__tab_button_content{display:flex}.flexlayout__tab_button_textbox{font-family:var(--font-family);font-size:var(--font-size);color:var(--color-tab-textbox);background-color:var(--color-tab-textbox-background);border:none;border:1px inset var(--color-1);border-radius:3px;width:10em}.flexlayout__tab_button_textbox:focus{outline:none}.flexlayout__tab_button_trailing{visibility:hidden;border-radius:4px;display:flex}.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{color:var(--color-overflow);font-size:inherit;background-color:#0000;border:none;align-items:center;display:flex}.flexlayout__tab_toolbar{align-items:center;gap:.3em;padding-left:.5em;padding-right:.3em;display:flex}.flexlayout__tab_toolbar_button{font-size:inherit;background-color:#0000;border:none;border-radius:4px;outline:none;margin:0;padding:1px}@media (hover:hover){.flexlayout__tab_toolbar_button:hover{background-color:var(--color-2)}}.flexlayout__tab_toolbar_sticky_buttons_container{align-items:center;gap:.3em;padding-left:5px;display:flex}.flexlayout__tab_floating{box-sizing:border-box;color:var(--color-text);background-color:var(--color-background);justify-content:center;align-items:center;display:flex;position:absolute;overflow:auto}.flexlayout__tab_floating_inner{flex-direction:column;justify-content:center;align-items:center;display:flex;overflow:auto}.flexlayout__tab_floating_inner div{text-align:center;margin-bottom:5px}.flexlayout__tab_floating_inner div a{color:#4169e1}.flexlayout__border{box-sizing:border-box;font-size:var(--font-size);font-family:var(--font-family);color:var(--color-border);background-color:var(--color-border-background);display:flex;overflow:hidden}.flexlayout__border_top{border-bottom:1px solid var(--color-border-divider-line);align-items:center}.flexlayout__border_bottom{border-top:1px solid var(--color-border-divider-line);align-items:center}.flexlayout__border_left{border-right:1px solid var(--color-border-divider-line);flex-direction:column;align-content:center}.flexlayout__border_right{border-left:1px solid var(--color-border-divider-line);flex-direction:column;align-content:center}.flexlayout__border_inner{box-sizing:border-box;flex-grow:1;display:flex;position:relative;overflow:hidden}.flexlayout__border_inner_tab_container{white-space:nowrap;box-sizing:border-box;width:10000px;padding-left:2px;padding-right:2px;display:flex;position:absolute;top:0;bottom:0}.flexlayout__border_inner_tab_container_right{transform-origin:0 0;transform:rotate(90deg)}.flexlayout__border_inner_tab_container_left{transform-origin:100% 0;flex-direction:row-reverse;transform:rotate(-90deg)}.flexlayout__border_tab_divider{width:4px}.flexlayout__border_button{cursor:pointer;box-sizing:border-box;white-space:nowrap;align-items:center;gap:.3em;margin:2px 0;padding:3px .5em;display:flex}.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_leading,.flexlayout__border_button_content{display:flex}.flexlayout__border_button_trailing{visibility:hidden;border-radius:4px;display:flex}.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;gap:.3em;display:flex}.flexlayout__border_toolbar_left,.flexlayout__border_toolbar_right{flex-direction:column;padding-top:.5em;padding-bottom:.3em}.flexlayout__border_toolbar_top,.flexlayout__border_toolbar_bottom{padding-left:.5em;padding-right:.3em}.flexlayout__border_toolbar_button{font-size:inherit;background-color:#0000;border:none;border-radius:4px;outline:none;padding:1px}@media (hover:hover){.flexlayout__border_toolbar_button:hover{background-color:var(--color-2)}}.flexlayout__border_toolbar_button_overflow{color:var(--color-overflow);font-size:inherit;background-color:#0000;border:none;align-items:center;display:flex}.flexlayout__popup_menu{font-size:var(--font-size);font-family:var(--font-family)}.flexlayout__popup_menu_item{white-space:nowrap;cursor:pointer;border-radius:2px;padding:2px .5em}@media (hover:hover){.flexlayout__popup_menu_item:hover{background-color:var(--color-6)}}.flexlayout__popup_menu_container{border:1px solid var(--color-popup-border);color:var(--color-popup-unselected);background:var(--color-popup-unselected-background);z-index:1000;border-radius:3px;min-width:100px;max-height:50%;padding:2px;position:absolute;overflow:auto;box-shadow:inset 0 0 5px #00000026}.flexlayout__floating_window _body{height:100%}.flexlayout__floating_window_content{position:absolute;top:0;bottom:0;left:0;right:0}.flexlayout__floating_window_tab{box-sizing:border-box;background-color:var(--color-background);color:var(--color-text);position:absolute;top:0;bottom:0;left:0;right:0;overflow:auto}.flexlayout__error_boundary_container{justify-content:center;display:flex;position:absolute;top:0;bottom:0;left:0;right:0}.flexlayout__error_boundary_content{align-items:center;display:flex}.flexlayout__tabset_sizer{font-size:var(--font-size);font-family:var(--font-family);padding-top:5px;padding-bottom:3px}.flexlayout__tabset_header_sizer{font-size:var(--font-size);font-family:var(--font-family);padding-top:3px;padding-bottom:3px}.flexlayout__border_sizer{font-size:var(--font-size);font-family:var(--font-family);padding-top:6px;padding-bottom:5px}@font-face{font-family:Lato;src:url(/bundles/pimcorestudioui/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/font/Lato-Regular.4291f48c.ttf)}@font-face{font-family:Lato;src:url(/bundles/pimcorestudioui/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/font/Lato-Light.bec6f0ae.ttf);font-weight:300}@font-face{font-family:Lato;src:url(/bundles/pimcorestudioui/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/font/Lato-Bold.2c00c297.ttf);font-weight:700} \ No newline at end of file +.flexlayout__layout{--color-text:black;--color-background:white;--color-base:white;--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:#5f86c41a;--color-drag2-background:#77a67713;--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:white;--color-popup-selected:var(--color-text);--color-popup-selected-background:var(--color-3);--color-edge-marker:#aaa;--color-edge-icon:#555;position:absolute;top:0;bottom:0;left:0;right:0;overflow:hidden}.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 50ms}}.flexlayout__splitter_border{z-index:10}.flexlayout__splitter_drag{z-index:1000;background-color:var(--color-splitter-drag)}.flexlayout__splitter_extra{background-color:#0000}.flexlayout__outline_rect{pointer-events:none;box-sizing:border-box;border:2px solid var(--color-drag1);background:var(--color-drag1-background);z-index:1000;border-radius:5px;position:absolute}.flexlayout__outline_rect_edge{pointer-events:none;border:2px solid var(--color-drag2);background:var(--color-drag2-background);z-index:1000;box-sizing:border-box;border-radius:5px}.flexlayout__edge_rect{z-index:1000;background-color:var(--color-edge-marker);pointer-events:none;justify-content:center;align-items:center;display:flex;position:absolute}.flexlayout__drag_rect{cursor:move;color:var(--color-drag-rect);background-color:var(--color-drag-rect-background);border:2px solid var(--color-drag-rect-border);z-index:1000;box-sizing:border-box;opacity:.9;text-align:center;word-wrap:break-word;font-size:var(--font-size);font-family:var(--font-family);border-radius:5px;flex-direction:column;justify-content:center;padding:.3em 1em;display:flex;position:absolute;overflow:hidden}.flexlayout__tabset{background-color:var(--color-tabset-background);box-sizing:border-box;font-size:var(--font-size);font-family:var(--font-family);flex-direction:column;display:flex;overflow:hidden}.flexlayout__tabset_tab_divider{width:4px}.flexlayout__tabset_content{flex-grow:1;justify-content:center;align-items:center;display:flex}.flexlayout__tabset_header{box-sizing:border-box;border-bottom:1px solid var(--color-tabset-divider-line);color:var(--color-tabset-header);background-color:var(--color-tabset-header-background);align-items:center;padding:3px 3px 3px 5px;display:flex}.flexlayout__tabset_header_content{flex-grow:1}.flexlayout__tabset_tabbar_outer{box-sizing:border-box;background-color:var(--color-tabset-background);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;flex-grow:1;display:flex;position:relative;overflow:hidden}.flexlayout__tabset_tabbar_inner_tab_container{box-sizing:border-box;width:10000px;padding-left:4px;padding-right:4px;display:flex;position:absolute;top:0;bottom:0}.flexlayout__tabset_tabbar_inner_tab_container_top{border-top:2px solid #0000}.flexlayout__tabset_tabbar_inner_tab_container_bottom{border-bottom:2px solid #0000}.flexlayout__tabset-selected{background-color:var(--color-tabset-background-selected)}.flexlayout__tabset-maximized{background-color:var(--color-tabset-background-maximized)}.flexlayout__tab_button_stamp{white-space:nowrap;box-sizing:border-box;align-items:center;gap:.3em;display:inline-flex}.flexlayout__tab{box-sizing:border-box;background-color:var(--color-background);color:var(--color-text);position:absolute;overflow:auto}.flexlayout__tab_button{box-sizing:border-box;cursor:pointer;align-items:center;gap:.3em;padding:3px .5em;display:flex}.flexlayout__tab_button_stretch{color:var(--color-tab-selected);text-wrap:nowrap;box-sizing:border-box;cursor:pointer;background-color:#0000;align-items:center;gap:.3em;width:100%;padding:3px 0;display:flex}@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:gray}.flexlayout__tab_button_leading,.flexlayout__tab_button_content{display:flex}.flexlayout__tab_button_textbox{font-family:var(--font-family);font-size:var(--font-size);color:var(--color-tab-textbox);background-color:var(--color-tab-textbox-background);border:none;border:1px inset var(--color-1);border-radius:3px;width:10em}.flexlayout__tab_button_textbox:focus{outline:none}.flexlayout__tab_button_trailing{visibility:hidden;border-radius:4px;display:flex}.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{color:var(--color-overflow);font-size:inherit;background-color:#0000;border:none;align-items:center;display:flex}.flexlayout__tab_toolbar{align-items:center;gap:.3em;padding-left:.5em;padding-right:.3em;display:flex}.flexlayout__tab_toolbar_button{font-size:inherit;background-color:#0000;border:none;border-radius:4px;outline:none;margin:0;padding:1px}@media (hover:hover){.flexlayout__tab_toolbar_button:hover{background-color:var(--color-2)}}.flexlayout__tab_toolbar_sticky_buttons_container{align-items:center;gap:.3em;padding-left:5px;display:flex}.flexlayout__tab_floating{box-sizing:border-box;color:var(--color-text);background-color:var(--color-background);justify-content:center;align-items:center;display:flex;position:absolute;overflow:auto}.flexlayout__tab_floating_inner{flex-direction:column;justify-content:center;align-items:center;display:flex;overflow:auto}.flexlayout__tab_floating_inner div{text-align:center;margin-bottom:5px}.flexlayout__tab_floating_inner div a{color:#4169e1}.flexlayout__border{box-sizing:border-box;font-size:var(--font-size);font-family:var(--font-family);color:var(--color-border);background-color:var(--color-border-background);display:flex;overflow:hidden}.flexlayout__border_top{border-bottom:1px solid var(--color-border-divider-line);align-items:center}.flexlayout__border_bottom{border-top:1px solid var(--color-border-divider-line);align-items:center}.flexlayout__border_left{border-right:1px solid var(--color-border-divider-line);flex-direction:column;align-content:center}.flexlayout__border_right{border-left:1px solid var(--color-border-divider-line);flex-direction:column;align-content:center}.flexlayout__border_inner{box-sizing:border-box;flex-grow:1;display:flex;position:relative;overflow:hidden}.flexlayout__border_inner_tab_container{white-space:nowrap;box-sizing:border-box;width:10000px;padding-left:2px;padding-right:2px;display:flex;position:absolute;top:0;bottom:0}.flexlayout__border_inner_tab_container_right{transform-origin:0 0;transform:rotate(90deg)}.flexlayout__border_inner_tab_container_left{transform-origin:100% 0;flex-direction:row-reverse;transform:rotate(-90deg)}.flexlayout__border_tab_divider{width:4px}.flexlayout__border_button{cursor:pointer;box-sizing:border-box;white-space:nowrap;align-items:center;gap:.3em;margin:2px 0;padding:3px .5em;display:flex}.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_leading,.flexlayout__border_button_content{display:flex}.flexlayout__border_button_trailing{visibility:hidden;border-radius:4px;display:flex}.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;gap:.3em;display:flex}.flexlayout__border_toolbar_left,.flexlayout__border_toolbar_right{flex-direction:column;padding-top:.5em;padding-bottom:.3em}.flexlayout__border_toolbar_top,.flexlayout__border_toolbar_bottom{padding-left:.5em;padding-right:.3em}.flexlayout__border_toolbar_button{font-size:inherit;background-color:#0000;border:none;border-radius:4px;outline:none;padding:1px}@media (hover:hover){.flexlayout__border_toolbar_button:hover{background-color:var(--color-2)}}.flexlayout__border_toolbar_button_overflow{color:var(--color-overflow);font-size:inherit;background-color:#0000;border:none;align-items:center;display:flex}.flexlayout__popup_menu{font-size:var(--font-size);font-family:var(--font-family)}.flexlayout__popup_menu_item{white-space:nowrap;cursor:pointer;border-radius:2px;padding:2px .5em}@media (hover:hover){.flexlayout__popup_menu_item:hover{background-color:var(--color-6)}}.flexlayout__popup_menu_container{border:1px solid var(--color-popup-border);color:var(--color-popup-unselected);background:var(--color-popup-unselected-background);z-index:1000;border-radius:3px;min-width:100px;max-height:50%;padding:2px;position:absolute;overflow:auto;box-shadow:inset 0 0 5px #00000026}.flexlayout__floating_window _body{height:100%}.flexlayout__floating_window_content{position:absolute;top:0;bottom:0;left:0;right:0}.flexlayout__floating_window_tab{box-sizing:border-box;background-color:var(--color-background);color:var(--color-text);position:absolute;top:0;bottom:0;left:0;right:0;overflow:auto}.flexlayout__error_boundary_container{justify-content:center;display:flex;position:absolute;top:0;bottom:0;left:0;right:0}.flexlayout__error_boundary_content{align-items:center;display:flex}.flexlayout__tabset_sizer{font-size:var(--font-size);font-family:var(--font-family);padding-top:5px;padding-bottom:3px}.flexlayout__tabset_header_sizer{font-size:var(--font-size);font-family:var(--font-family);padding-top:3px;padding-bottom:3px}.flexlayout__border_sizer{font-size:var(--font-size);font-family:var(--font-family);padding-top:6px;padding-bottom:5px}@font-face{font-family:Lato;src:url(/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/font/Lato-Regular.4291f48c.ttf)}@font-face{font-family:Lato;src:url(/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/font/Lato-Light.bec6f0ae.ttf);font-weight:300}@font-face{font-family:Lato;src:url(/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/font/Lato-Bold.2c00c297.ttf);font-weight:700} \ No newline at end of file diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.5d6c6f99.css b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.6b370b4c.css similarity index 97% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.5d6c6f99.css rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.6b370b4c.css index 8588ee4a16..b2635c90d1 100644 --- a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.5d6c6f99.css +++ b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.6b370b4c.css @@ -11,4 +11,4 @@ * * / * */ -.flexlayout__layout{--color-text:black;--color-background:white;--color-base:white;--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:#5f86c41a;--color-drag2-background:#77a67713;--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:white;--color-popup-selected:var(--color-text);--color-popup-selected-background:var(--color-3);--color-edge-marker:#aaa;--color-edge-icon:#555;position:absolute;top:0;bottom:0;left:0;right:0;overflow:hidden}.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 50ms}}.flexlayout__splitter_border{z-index:10}.flexlayout__splitter_drag{z-index:1000;background-color:var(--color-splitter-drag)}.flexlayout__splitter_extra{background-color:#0000}.flexlayout__outline_rect{pointer-events:none;box-sizing:border-box;border:2px solid var(--color-drag1);background:var(--color-drag1-background);z-index:1000;border-radius:5px;position:absolute}.flexlayout__outline_rect_edge{pointer-events:none;border:2px solid var(--color-drag2);background:var(--color-drag2-background);z-index:1000;box-sizing:border-box;border-radius:5px}.flexlayout__edge_rect{z-index:1000;background-color:var(--color-edge-marker);pointer-events:none;justify-content:center;align-items:center;display:flex;position:absolute}.flexlayout__drag_rect{cursor:move;color:var(--color-drag-rect);background-color:var(--color-drag-rect-background);border:2px solid var(--color-drag-rect-border);z-index:1000;box-sizing:border-box;opacity:.9;text-align:center;word-wrap:break-word;font-size:var(--font-size);font-family:var(--font-family);border-radius:5px;flex-direction:column;justify-content:center;padding:.3em 1em;display:flex;position:absolute;overflow:hidden}.flexlayout__tabset{background-color:var(--color-tabset-background);box-sizing:border-box;font-size:var(--font-size);font-family:var(--font-family);flex-direction:column;display:flex;overflow:hidden}.flexlayout__tabset_tab_divider{width:4px}.flexlayout__tabset_content{flex-grow:1;justify-content:center;align-items:center;display:flex}.flexlayout__tabset_header{box-sizing:border-box;border-bottom:1px solid var(--color-tabset-divider-line);color:var(--color-tabset-header);background-color:var(--color-tabset-header-background);align-items:center;padding:3px 3px 3px 5px;display:flex}.flexlayout__tabset_header_content{flex-grow:1}.flexlayout__tabset_tabbar_outer{box-sizing:border-box;background-color:var(--color-tabset-background);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;flex-grow:1;display:flex;position:relative;overflow:hidden}.flexlayout__tabset_tabbar_inner_tab_container{box-sizing:border-box;width:10000px;padding-left:4px;padding-right:4px;display:flex;position:absolute;top:0;bottom:0}.flexlayout__tabset_tabbar_inner_tab_container_top{border-top:2px solid #0000}.flexlayout__tabset_tabbar_inner_tab_container_bottom{border-bottom:2px solid #0000}.flexlayout__tabset-selected{background-color:var(--color-tabset-background-selected)}.flexlayout__tabset-maximized{background-color:var(--color-tabset-background-maximized)}.flexlayout__tab_button_stamp{white-space:nowrap;box-sizing:border-box;align-items:center;gap:.3em;display:inline-flex}.flexlayout__tab{box-sizing:border-box;background-color:var(--color-background);color:var(--color-text);position:absolute;overflow:auto}.flexlayout__tab_button{box-sizing:border-box;cursor:pointer;align-items:center;gap:.3em;padding:3px .5em;display:flex}.flexlayout__tab_button_stretch{color:var(--color-tab-selected);text-wrap:nowrap;box-sizing:border-box;cursor:pointer;background-color:#0000;align-items:center;gap:.3em;width:100%;padding:3px 0;display:flex}@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:gray}.flexlayout__tab_button_leading,.flexlayout__tab_button_content{display:flex}.flexlayout__tab_button_textbox{font-family:var(--font-family);font-size:var(--font-size);color:var(--color-tab-textbox);background-color:var(--color-tab-textbox-background);border:none;border:1px inset var(--color-1);border-radius:3px;width:10em}.flexlayout__tab_button_textbox:focus{outline:none}.flexlayout__tab_button_trailing{visibility:hidden;border-radius:4px;display:flex}.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{color:var(--color-overflow);font-size:inherit;background-color:#0000;border:none;align-items:center;display:flex}.flexlayout__tab_toolbar{align-items:center;gap:.3em;padding-left:.5em;padding-right:.3em;display:flex}.flexlayout__tab_toolbar_button{font-size:inherit;background-color:#0000;border:none;border-radius:4px;outline:none;margin:0;padding:1px}@media (hover:hover){.flexlayout__tab_toolbar_button:hover{background-color:var(--color-2)}}.flexlayout__tab_toolbar_sticky_buttons_container{align-items:center;gap:.3em;padding-left:5px;display:flex}.flexlayout__tab_floating{box-sizing:border-box;color:var(--color-text);background-color:var(--color-background);justify-content:center;align-items:center;display:flex;position:absolute;overflow:auto}.flexlayout__tab_floating_inner{flex-direction:column;justify-content:center;align-items:center;display:flex;overflow:auto}.flexlayout__tab_floating_inner div{text-align:center;margin-bottom:5px}.flexlayout__tab_floating_inner div a{color:#4169e1}.flexlayout__border{box-sizing:border-box;font-size:var(--font-size);font-family:var(--font-family);color:var(--color-border);background-color:var(--color-border-background);display:flex;overflow:hidden}.flexlayout__border_top{border-bottom:1px solid var(--color-border-divider-line);align-items:center}.flexlayout__border_bottom{border-top:1px solid var(--color-border-divider-line);align-items:center}.flexlayout__border_left{border-right:1px solid var(--color-border-divider-line);flex-direction:column;align-content:center}.flexlayout__border_right{border-left:1px solid var(--color-border-divider-line);flex-direction:column;align-content:center}.flexlayout__border_inner{box-sizing:border-box;flex-grow:1;display:flex;position:relative;overflow:hidden}.flexlayout__border_inner_tab_container{white-space:nowrap;box-sizing:border-box;width:10000px;padding-left:2px;padding-right:2px;display:flex;position:absolute;top:0;bottom:0}.flexlayout__border_inner_tab_container_right{transform-origin:0 0;transform:rotate(90deg)}.flexlayout__border_inner_tab_container_left{transform-origin:100% 0;flex-direction:row-reverse;transform:rotate(-90deg)}.flexlayout__border_tab_divider{width:4px}.flexlayout__border_button{cursor:pointer;box-sizing:border-box;white-space:nowrap;align-items:center;gap:.3em;margin:2px 0;padding:3px .5em;display:flex}.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_leading,.flexlayout__border_button_content{display:flex}.flexlayout__border_button_trailing{visibility:hidden;border-radius:4px;display:flex}.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;gap:.3em;display:flex}.flexlayout__border_toolbar_left,.flexlayout__border_toolbar_right{flex-direction:column;padding-top:.5em;padding-bottom:.3em}.flexlayout__border_toolbar_top,.flexlayout__border_toolbar_bottom{padding-left:.5em;padding-right:.3em}.flexlayout__border_toolbar_button{font-size:inherit;background-color:#0000;border:none;border-radius:4px;outline:none;padding:1px}@media (hover:hover){.flexlayout__border_toolbar_button:hover{background-color:var(--color-2)}}.flexlayout__border_toolbar_button_overflow{color:var(--color-overflow);font-size:inherit;background-color:#0000;border:none;align-items:center;display:flex}.flexlayout__popup_menu{font-size:var(--font-size);font-family:var(--font-family)}.flexlayout__popup_menu_item{white-space:nowrap;cursor:pointer;border-radius:2px;padding:2px .5em}@media (hover:hover){.flexlayout__popup_menu_item:hover{background-color:var(--color-6)}}.flexlayout__popup_menu_container{border:1px solid var(--color-popup-border);color:var(--color-popup-unselected);background:var(--color-popup-unselected-background);z-index:1000;border-radius:3px;min-width:100px;max-height:50%;padding:2px;position:absolute;overflow:auto;box-shadow:inset 0 0 5px #00000026}.flexlayout__floating_window _body{height:100%}.flexlayout__floating_window_content{position:absolute;top:0;bottom:0;left:0;right:0}.flexlayout__floating_window_tab{box-sizing:border-box;background-color:var(--color-background);color:var(--color-text);position:absolute;top:0;bottom:0;left:0;right:0;overflow:auto}.flexlayout__error_boundary_container{justify-content:center;display:flex;position:absolute;top:0;bottom:0;left:0;right:0}.flexlayout__error_boundary_content{align-items:center;display:flex}.flexlayout__tabset_sizer{font-size:var(--font-size);font-family:var(--font-family);padding-top:5px;padding-bottom:3px}.flexlayout__tabset_header_sizer{font-size:var(--font-size);font-family:var(--font-family);padding-top:3px;padding-bottom:3px}.flexlayout__border_sizer{font-size:var(--font-size);font-family:var(--font-family);padding-top:6px;padding-bottom:5px}@font-face{font-family:Lato;src:url(/bundles/pimcorestudioui/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/font/Lato-Regular.4291f48c.ttf)}@font-face{font-family:Lato;src:url(/bundles/pimcorestudioui/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/font/Lato-Light.bec6f0ae.ttf);font-weight:300}@font-face{font-family:Lato;src:url(/bundles/pimcorestudioui/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/font/Lato-Bold.2c00c297.ttf);font-weight:700} \ No newline at end of file +.flexlayout__layout{--color-text:black;--color-background:white;--color-base:white;--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:#5f86c41a;--color-drag2-background:#77a67713;--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:white;--color-popup-selected:var(--color-text);--color-popup-selected-background:var(--color-3);--color-edge-marker:#aaa;--color-edge-icon:#555;position:absolute;top:0;bottom:0;left:0;right:0;overflow:hidden}.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 50ms}}.flexlayout__splitter_border{z-index:10}.flexlayout__splitter_drag{z-index:1000;background-color:var(--color-splitter-drag)}.flexlayout__splitter_extra{background-color:#0000}.flexlayout__outline_rect{pointer-events:none;box-sizing:border-box;border:2px solid var(--color-drag1);background:var(--color-drag1-background);z-index:1000;border-radius:5px;position:absolute}.flexlayout__outline_rect_edge{pointer-events:none;border:2px solid var(--color-drag2);background:var(--color-drag2-background);z-index:1000;box-sizing:border-box;border-radius:5px}.flexlayout__edge_rect{z-index:1000;background-color:var(--color-edge-marker);pointer-events:none;justify-content:center;align-items:center;display:flex;position:absolute}.flexlayout__drag_rect{cursor:move;color:var(--color-drag-rect);background-color:var(--color-drag-rect-background);border:2px solid var(--color-drag-rect-border);z-index:1000;box-sizing:border-box;opacity:.9;text-align:center;word-wrap:break-word;font-size:var(--font-size);font-family:var(--font-family);border-radius:5px;flex-direction:column;justify-content:center;padding:.3em 1em;display:flex;position:absolute;overflow:hidden}.flexlayout__tabset{background-color:var(--color-tabset-background);box-sizing:border-box;font-size:var(--font-size);font-family:var(--font-family);flex-direction:column;display:flex;overflow:hidden}.flexlayout__tabset_tab_divider{width:4px}.flexlayout__tabset_content{flex-grow:1;justify-content:center;align-items:center;display:flex}.flexlayout__tabset_header{box-sizing:border-box;border-bottom:1px solid var(--color-tabset-divider-line);color:var(--color-tabset-header);background-color:var(--color-tabset-header-background);align-items:center;padding:3px 3px 3px 5px;display:flex}.flexlayout__tabset_header_content{flex-grow:1}.flexlayout__tabset_tabbar_outer{box-sizing:border-box;background-color:var(--color-tabset-background);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;flex-grow:1;display:flex;position:relative;overflow:hidden}.flexlayout__tabset_tabbar_inner_tab_container{box-sizing:border-box;width:10000px;padding-left:4px;padding-right:4px;display:flex;position:absolute;top:0;bottom:0}.flexlayout__tabset_tabbar_inner_tab_container_top{border-top:2px solid #0000}.flexlayout__tabset_tabbar_inner_tab_container_bottom{border-bottom:2px solid #0000}.flexlayout__tabset-selected{background-color:var(--color-tabset-background-selected)}.flexlayout__tabset-maximized{background-color:var(--color-tabset-background-maximized)}.flexlayout__tab_button_stamp{white-space:nowrap;box-sizing:border-box;align-items:center;gap:.3em;display:inline-flex}.flexlayout__tab{box-sizing:border-box;background-color:var(--color-background);color:var(--color-text);position:absolute;overflow:auto}.flexlayout__tab_button{box-sizing:border-box;cursor:pointer;align-items:center;gap:.3em;padding:3px .5em;display:flex}.flexlayout__tab_button_stretch{color:var(--color-tab-selected);text-wrap:nowrap;box-sizing:border-box;cursor:pointer;background-color:#0000;align-items:center;gap:.3em;width:100%;padding:3px 0;display:flex}@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:gray}.flexlayout__tab_button_leading,.flexlayout__tab_button_content{display:flex}.flexlayout__tab_button_textbox{font-family:var(--font-family);font-size:var(--font-size);color:var(--color-tab-textbox);background-color:var(--color-tab-textbox-background);border:none;border:1px inset var(--color-1);border-radius:3px;width:10em}.flexlayout__tab_button_textbox:focus{outline:none}.flexlayout__tab_button_trailing{visibility:hidden;border-radius:4px;display:flex}.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{color:var(--color-overflow);font-size:inherit;background-color:#0000;border:none;align-items:center;display:flex}.flexlayout__tab_toolbar{align-items:center;gap:.3em;padding-left:.5em;padding-right:.3em;display:flex}.flexlayout__tab_toolbar_button{font-size:inherit;background-color:#0000;border:none;border-radius:4px;outline:none;margin:0;padding:1px}@media (hover:hover){.flexlayout__tab_toolbar_button:hover{background-color:var(--color-2)}}.flexlayout__tab_toolbar_sticky_buttons_container{align-items:center;gap:.3em;padding-left:5px;display:flex}.flexlayout__tab_floating{box-sizing:border-box;color:var(--color-text);background-color:var(--color-background);justify-content:center;align-items:center;display:flex;position:absolute;overflow:auto}.flexlayout__tab_floating_inner{flex-direction:column;justify-content:center;align-items:center;display:flex;overflow:auto}.flexlayout__tab_floating_inner div{text-align:center;margin-bottom:5px}.flexlayout__tab_floating_inner div a{color:#4169e1}.flexlayout__border{box-sizing:border-box;font-size:var(--font-size);font-family:var(--font-family);color:var(--color-border);background-color:var(--color-border-background);display:flex;overflow:hidden}.flexlayout__border_top{border-bottom:1px solid var(--color-border-divider-line);align-items:center}.flexlayout__border_bottom{border-top:1px solid var(--color-border-divider-line);align-items:center}.flexlayout__border_left{border-right:1px solid var(--color-border-divider-line);flex-direction:column;align-content:center}.flexlayout__border_right{border-left:1px solid var(--color-border-divider-line);flex-direction:column;align-content:center}.flexlayout__border_inner{box-sizing:border-box;flex-grow:1;display:flex;position:relative;overflow:hidden}.flexlayout__border_inner_tab_container{white-space:nowrap;box-sizing:border-box;width:10000px;padding-left:2px;padding-right:2px;display:flex;position:absolute;top:0;bottom:0}.flexlayout__border_inner_tab_container_right{transform-origin:0 0;transform:rotate(90deg)}.flexlayout__border_inner_tab_container_left{transform-origin:100% 0;flex-direction:row-reverse;transform:rotate(-90deg)}.flexlayout__border_tab_divider{width:4px}.flexlayout__border_button{cursor:pointer;box-sizing:border-box;white-space:nowrap;align-items:center;gap:.3em;margin:2px 0;padding:3px .5em;display:flex}.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_leading,.flexlayout__border_button_content{display:flex}.flexlayout__border_button_trailing{visibility:hidden;border-radius:4px;display:flex}.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;gap:.3em;display:flex}.flexlayout__border_toolbar_left,.flexlayout__border_toolbar_right{flex-direction:column;padding-top:.5em;padding-bottom:.3em}.flexlayout__border_toolbar_top,.flexlayout__border_toolbar_bottom{padding-left:.5em;padding-right:.3em}.flexlayout__border_toolbar_button{font-size:inherit;background-color:#0000;border:none;border-radius:4px;outline:none;padding:1px}@media (hover:hover){.flexlayout__border_toolbar_button:hover{background-color:var(--color-2)}}.flexlayout__border_toolbar_button_overflow{color:var(--color-overflow);font-size:inherit;background-color:#0000;border:none;align-items:center;display:flex}.flexlayout__popup_menu{font-size:var(--font-size);font-family:var(--font-family)}.flexlayout__popup_menu_item{white-space:nowrap;cursor:pointer;border-radius:2px;padding:2px .5em}@media (hover:hover){.flexlayout__popup_menu_item:hover{background-color:var(--color-6)}}.flexlayout__popup_menu_container{border:1px solid var(--color-popup-border);color:var(--color-popup-unselected);background:var(--color-popup-unselected-background);z-index:1000;border-radius:3px;min-width:100px;max-height:50%;padding:2px;position:absolute;overflow:auto;box-shadow:inset 0 0 5px #00000026}.flexlayout__floating_window _body{height:100%}.flexlayout__floating_window_content{position:absolute;top:0;bottom:0;left:0;right:0}.flexlayout__floating_window_tab{box-sizing:border-box;background-color:var(--color-background);color:var(--color-text);position:absolute;top:0;bottom:0;left:0;right:0;overflow:auto}.flexlayout__error_boundary_container{justify-content:center;display:flex;position:absolute;top:0;bottom:0;left:0;right:0}.flexlayout__error_boundary_content{align-items:center;display:flex}.flexlayout__tabset_sizer{font-size:var(--font-size);font-family:var(--font-family);padding-top:5px;padding-bottom:3px}.flexlayout__tabset_header_sizer{font-size:var(--font-size);font-family:var(--font-family);padding-top:3px;padding-bottom:3px}.flexlayout__border_sizer{font-size:var(--font-size);font-family:var(--font-family);padding-top:6px;padding-bottom:5px}@font-face{font-family:Lato;src:url(/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/font/Lato-Regular.4291f48c.ttf)}@font-face{font-family:Lato;src:url(/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/font/Lato-Light.bec6f0ae.ttf);font-weight:300}@font-face{font-family:Lato;src:url(/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/font/Lato-Bold.2c00c297.ttf);font-weight:700} \ No newline at end of file diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/font/Lato-Bold.2c00c297.ttf b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/font/Lato-Bold.2c00c297.ttf similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/font/Lato-Bold.2c00c297.ttf rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/font/Lato-Bold.2c00c297.ttf diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/font/Lato-Light.bec6f0ae.ttf b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/font/Lato-Light.bec6f0ae.ttf similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/font/Lato-Light.bec6f0ae.ttf rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/font/Lato-Light.bec6f0ae.ttf diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/font/Lato-Regular.4291f48c.ttf b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/font/Lato-Regular.4291f48c.ttf similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/font/Lato-Regular.4291f48c.ttf rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/font/Lato-Regular.4291f48c.ttf diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/6450.1847178b.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/6450.1847178b.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/6450.1847178b.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/6450.1847178b.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/6450.1847178b.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/6450.1847178b.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/6450.1847178b.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/6450.1847178b.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/0.9576d6fe.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/0.d9c21d67.js similarity index 70% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/0.9576d6fe.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/0.d9c21d67.js index 68c2c6608b..3c4f2c55ea 100644 --- a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/0.9576d6fe.js +++ b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/0.d9c21d67.js @@ -1,2 +1,2 @@ -/*! For license information please see 0.9576d6fe.js.LICENSE.txt */ -"use strict";(self.webpackChunkpimcore_studio_ui_bundle=self.webpackChunkpimcore_studio_ui_bundle||[]).push([["0"],{72497:function(E,T,A){A.d(T,{G:()=>I});function I(){return"/pimcore-studio/api"}},96068:function(E,T,A){A.d(T,{Kx:()=>_,fV:()=>I,xc:()=>S});let I={ELEMENT:"ELEMENT",ASSET:"ASSET",ASSET_DETAIL:"ASSET_DETAIL",ASSET_TREE:"ASSET_TREE",ASSET_GRID_CONFIGURATION:"ASSET_GRID_CONFIGURATION",ASSET_GRID:"ASSET_GRID",ASSET_GRID_CONFIGURATION_LIST:"ASSET_GRID_CONFIGURATION_LIST",ASSET_GRID_CONFIGURATION_DETAIL:"ASSET_GRID_CONFIGURATION_DETAIL",DATA_OBJECT:"DATA_OBJECT",DATA_OBJECT_DETAIL:"DATA_OBJECT_DETAIL",DATA_OBJECT_TREE:"DATA_OBJECT_TREE",DATA_OBJECT_GRID:"DATA_OBJECT_GRID",DOCUMENT:"DOCUMENT",DOCUMENT_DETAIL:"DOCUMENT_DETAIL",DOCUMENT_TREE:"DOCUMENT_TREE",DOCUMENT_TYPES:"DOCUMENT_TYPES",DOCUMENT_SITE:"DOCUMENT_SITE",WORKFLOW:"WORKFLOW",VERSIONS:"VERSION",PROPERTIES:"PROPERTIES",SCHEDULES:"SCHEDULES",DEPENDENCIES:"DEPENDENCIES",NOTES_AND_EVENTS:"NOTES_AND_EVENTS",NOTIFICATIONS:"NOTIFICATIONS",NOTIFICATION_DETAILS:"NOTIFICATION_DETAILS",AVAILABLE_TAGS:"AVAILABLE_TAGS",WEBSITE_SETTINGS:"WEBSITE_SETTINGS",REDIRECTS:"REDIRECTS",ELEMENT_TAGS:"TAGS",ROLE:"ROLE",DOMAIN_TRANSLATIONS:"DOMAIN_TRANSLATIONS",LOCALES:"LOCALES",PREDEFINED_ASSET_METADATA:"PREDEFINED_ASSET_METADATA",CURRENT_USER_INFORMATION:"CURRENT_USER_INFORMATION",EMAIL_BLOCKLIST:"EMAIL_BLOCKLIST",EMAIL_BLOCKLIST_DETAIL:"EMAIL_BLOCKLIST_DETAIL",APPLICATION_LOGGER:"APPLICATION_LOGGER",APPLICATION_LOGGER_DETAIL:"APPLICATION_LOGGER_DETAIL",EMAIL_LOG:"EMAIL_LOG",EMAIL_LOG_DETAIL:"EMAIL_LOG_DETAIL",RECYCLE_BIN:"RECYCLE_BIN",RECYCLE_BIN_DETAIL:"RECYCLE_BIN_DETAIL",PERSPECTIVES:"PERSPECTIVES",PERSPECTIVE_DETAIL:"PERSPECTIVE_DETAIL",WIDGETS:"WIDGETS",WIDGET_DETAIL:"WIDGET_DETAIL"},_={ELEMENT:()=>[I.ELEMENT],ASSET:()=>[I.ASSET],ASSET_DETAIL:()=>[I.ASSET,I.ASSET_DETAIL],ASSET_DETAIL_ID:E=>[I.ASSET,{type:I.ASSET_DETAIL,id:E}],ASSET_TREE:()=>[I.ASSET,I.ASSET_TREE],ASSET_TREE_ID:E=>[I.ASSET,{type:I.ASSET_TREE,id:E}],ASSET_GRID_CONFIGURATION:()=>[I.ASSET_GRID_CONFIGURATION],ASSET_GRID_CONFIGURATION_LIST:()=>[I.ASSET,I.ASSET_GRID_CONFIGURATION,{type:I.ASSET_GRID_CONFIGURATION_LIST}],ASSET_GRID_CONFIGURATION_DETAIL:E=>[I.ASSET,{type:I.ASSET_DETAIL},I.ASSET_GRID_CONFIGURATION,{type:I.ASSET_GRID_CONFIGURATION_DETAIL,id:E}],ASSET_GRID_ID:E=>[I.ASSET,{type:I.ASSET_GRID,id:E}],DATA_OBJECT_DETAIL:()=>[I.DATA_OBJECT,I.DATA_OBJECT_DETAIL],DATA_OBJECT_DETAIL_ID:E=>[I.DATA_OBJECT,{type:I.DATA_OBJECT_DETAIL,id:E}],DATA_OBJECT_TREE:()=>[I.DATA_OBJECT,I.DATA_OBJECT_TREE],DATA_OBJECT_TREE_ID:E=>[I.DATA_OBJECT,{type:I.DATA_OBJECT_TREE,id:E}],DATA_OBJECT_GRID_ID:E=>[I.DATA_OBJECT,{type:I.DATA_OBJECT_GRID,id:E}],DOCUMENT_DETAIL:()=>[I.DOCUMENT,I.DOCUMENT_DETAIL],DOCUMENT_DETAIL_ID:E=>[I.DOCUMENT,{type:I.DOCUMENT_DETAIL,id:E}],DOCUMENT_TYPES:()=>[I.DOCUMENT_TYPES],DOCUMENT_SITE:()=>[I.DOCUMENT,I.DOCUMENT_SITE],DOMAIN_TRANSLATIONS:()=>[I.DOMAIN_TRANSLATIONS],LOCALES:()=>[I.LOCALES],DOCUMENT_TREE:()=>[I.DOCUMENT,I.DOCUMENT_TREE],DOCUMENT_TREE_ID:E=>[I.DOCUMENT,{type:I.DOCUMENT_TREE,id:E}],ELEMENT_DEPENDENCIES:(E,T)=>[O(E,T),L(I.DEPENDENCIES,E,T)],ELEMENT_WORKFLOW:(E,T)=>[O(E,T),L(I.WORKFLOW,E,T)],PROPERTY_DETAIL:E=>[{type:I.PROPERTIES,id:E}],GLOBAL_PROPERTIES:()=>[I.PROPERTIES],WEBSITE_SETTINGS:()=>[I.WEBSITE_SETTINGS],REDIRECTS:()=>[I.REDIRECTS],ELEMENT_PROPERTIES:(E,T)=>[O(E,T),L(I.PROPERTIES,E,T)],SCHEDULE_DETAIL:E=>[{type:I.SCHEDULES,id:E},I.SCHEDULES],ELEMENT_SCHEDULES:(E,T)=>[O(E,T),L(I.SCHEDULES,E,T)],VERSIONS_DETAIL:E=>[{type:I.VERSIONS,id:E}],ELEMENT_VERSIONS:(E,T)=>[O(E,T),L(I.VERSIONS,E,T)],NOTES_AND_EVENTS_DETAIL:E=>[{type:I.NOTES_AND_EVENTS,id:E}],ELEMENT_NOTES_AND_EVENTS:(E,T)=>[O(E,T),L(I.NOTES_AND_EVENTS,E,T)],NOTIFICATION:E=>[{type:I.NOTIFICATIONS,id:E}],NOTIFICATION_DETAIL:E=>[{type:I.NOTIFICATION_DETAILS,id:E}],AVAILABLE_TAGS:()=>[I.AVAILABLE_TAGS],ELEMENT_TAGS:(E,T)=>[O(E,T),L(I.ELEMENT_TAGS,E,T)],ROLE:()=>[I.ROLE],PREDEFINED_ASSET_METADATA:()=>[I.PREDEFINED_ASSET_METADATA],CURRENT_USER_INFORMATION:()=>[I.CURRENT_USER_INFORMATION],EMAIL_BLOCKLIST:()=>[I.EMAIL_BLOCKLIST],EMAIL_BLOCKLIST_DETAIL:E=>[{type:I.EMAIL_BLOCKLIST_DETAIL,id:E}],EMAIL_LOG:()=>[I.EMAIL_LOG],EMAIL_LOG_DETAIL:E=>[{type:I.EMAIL_LOG_DETAIL,id:E}],RECYCLING_BIN:()=>[I.RECYCLE_BIN],RECYCLING_BIN_DETAIL:E=>[{type:I.RECYCLE_BIN_DETAIL,id:E}],APPLICATION_LOGGER:()=>[I.APPLICATION_LOGGER],APPLICATION_LOGGER_DETAIL:E=>[{type:I.APPLICATION_LOGGER_DETAIL,id:E}],PERSPECTIVES:()=>[I.PERSPECTIVES],PERSPECTIVE_DETAIL:E=>[{type:I.PERSPECTIVE_DETAIL,id:E}],WIDGETS:()=>[I.WIDGETS],WIDGET_DETAIL:E=>[{type:I.WIDGET_DETAIL,id:E}]},S={ELEMENT:()=>[I.ELEMENT],ASSET:()=>[I.ASSET],ASSET_DETAIL:()=>[I.ASSET_DETAIL],ASSET_DETAIL_ID:E=>[{type:I.ASSET_DETAIL,id:E},D],ASSET_TREE:()=>[I.ASSET_TREE],ASSET_TREE_ID:E=>[{type:I.ASSET_TREE,id:E}],ASSET_GRID_CONFIGURATION:()=>[I.ASSET_GRID_CONFIGURATION],ASSET_GRID_CONFIGURATION_DETAIL:E=>[{type:I.ASSET_GRID_CONFIGURATION_DETAIL,id:E},{type:I.ASSET_GRID_CONFIGURATION_DETAIL,id:E}],ASSET_GRID_CONFIGURATION_LIST:()=>[{type:I.ASSET_GRID_CONFIGURATION_LIST}],ASSET_GRID_ID:E=>[{type:I.ASSET_GRID,id:E}],DATA_OBJECT:()=>[I.DATA_OBJECT],DATA_OBJECT_DETAIL:()=>[I.DATA_OBJECT_DETAIL],DATA_OBJECT_DETAIL_ID:E=>[{type:I.DATA_OBJECT_DETAIL,id:E},D],DATA_OBJECT_TREE:()=>[I.DATA_OBJECT_TREE],DATA_OBJECT_TREE_ID:E=>[{type:I.DATA_OBJECT_TREE,id:E}],DATA_OBJECT_GRID_ID:E=>[{type:I.DATA_OBJECT_GRID,id:E}],DOCUMENT:()=>[I.DOCUMENT],DOCUMENT_DETAIL:()=>[I.DOCUMENT_DETAIL],DOCUMENT_DETAIL_ID:E=>[{type:I.DOCUMENT_DETAIL,id:E},D],DOCUMENT_TYPES:()=>[I.DOCUMENT_TYPES],DOCUMENT_SITE:()=>[I.DOCUMENT_SITE],DOMAIN_TRANSLATIONS:()=>[I.DOMAIN_TRANSLATIONS],LOCALES:()=>[I.LOCALES],DOCUMENT_TREE:()=>[I.DOCUMENT_TREE],DOCUMENT_TREE_ID:E=>[{type:I.DOCUMENT_TREE,id:E}],ELEMENT_DEPENDENCIES:(E,T)=>[L(I.DEPENDENCIES,E,T)],ELEMENT_WORKFLOW:(E,T)=>[L(I.WORKFLOW,E,T)],PROPERTY_DETAIL:E=>[{type:I.PROPERTIES,id:E}],ELEMENT_PROPERTIES:(E,T)=>[L(I.PROPERTIES,E,T)],GLOBAL_PROPERTIES:()=>[I.PROPERTIES],WEBSITE_SETTINGS:()=>[I.WEBSITE_SETTINGS],REDIRECTS:()=>[I.REDIRECTS],SCHEDULE_DETAIL:E=>[{type:I.SCHEDULES,id:E}],ELEMENT_SCHEDULES:(E,T)=>[L(I.SCHEDULES,E,T)],VERSIONS_DETAIL:E=>[{type:I.VERSIONS,id:E}],ELEMENT_VERSIONS:(E,T)=>[L(I.VERSIONS,E,T)],NOTES_AND_EVENTS_DETAIL:E=>[{type:I.NOTES_AND_EVENTS,id:E}],NOTIFICATION:E=>[{type:I.NOTIFICATIONS,id:E}],NOTIFICATIONS:()=>[I.NOTIFICATIONS],ELEMENT_NOTES_AND_EVENTS:(E,T)=>[L(I.NOTES_AND_EVENTS,E,T)],AVAILABLE_TAGS:()=>[I.AVAILABLE_TAGS],ELEMENT_TAGS:(E,T)=>[L(I.ELEMENT_TAGS,E,T)],ROLE:()=>[I.ROLE],PREDEFINED_ASSET_METADATA:()=>[I.PREDEFINED_ASSET_METADATA],ELEMENT_DETAIL:(E,T)=>[O(E,T)],EMAIL_BLOCKLIST:()=>[I.EMAIL_BLOCKLIST],EMAIL_BLOCKLIST_DETAIL:E=>[{type:I.EMAIL_BLOCKLIST_DETAIL,id:E}],APPLICATION_LOGGER:()=>[I.APPLICATION_LOGGER],APPLICATION_LOGGER_DETAIL:E=>[{type:I.APPLICATION_LOGGER_DETAIL,id:E}],EMAIL_LOG:()=>[I.EMAIL_LOG],EMAIL_LOG_DETAIL:E=>[{type:I.EMAIL_LOG_DETAIL,id:E}],RECYCLING_BIN:()=>[I.RECYCLE_BIN],PERSPECTIVES:()=>[I.PERSPECTIVES],WIDGETS:()=>[I.WIDGETS]},D=I.AVAILABLE_TAGS,L=(E,T,A)=>({type:E,id:A,elementType:T}),O=(E,T)=>{switch(E){case"asset":return{type:I.ASSET_DETAIL,id:T};case"data-object":return{type:I.DATA_OBJECT_DETAIL,id:T};case"document":return{type:I.DOCUMENT_DETAIL,id:T}}}},18962:function(E,T,A){A.d(T,{Cu:()=>t,HC:()=>i,LQ:()=>O,Me:()=>C,Mv:()=>R,Zy:()=>a,_W:()=>s,c$:()=>D,he:()=>L,hi:()=>_,ih:()=>e,kt:()=>o,m5:()=>N,zE:()=>S});var I=A(96068);let _=A(6925).hi.enhanceEndpoints({addTagTypes:[I.fV.DATA_OBJECT,I.fV.DATA_OBJECT_DETAIL],endpoints:{classCustomLayoutEditorCollection:{providesTags:(E,T,A)=>I.Kx.DATA_OBJECT_DETAIL_ID(A.objectId)},classFieldCollectionObjectLayout:{providesTags:(E,T,A)=>I.Kx.DATA_OBJECT_DETAIL_ID(A.objectId)},classObjectBrickObjectLayout:{providesTags:(E,T,A)=>I.Kx.DATA_OBJECT_DETAIL_ID(A.objectId)}}}),{useClassDefinitionCollectionQuery:S,useClassDefinitionFolderCollectionQuery:D,useClassCustomLayoutCollectionQuery:L,usePimcoreStudioApiClassCustomLayoutCreateMutation:O,usePimcoreStudioApiClassCustomLayoutGetQuery:N,usePimcoreStudioApiClassCustomLayoutUpdateMutation:C,usePimcoreStudioApiClassCustomLayoutDeleteMutation:t,useClassCustomLayoutEditorCollectionQuery:e,usePimcoreStudioApiClassCustomLayoutExportQuery:i,usePimcoreStudioApiClassCustomLayoutImportMutation:o,useClassFieldCollectionObjectLayoutQuery:R,useClassDefinitionGetQuery:s,useClassObjectBrickObjectLayoutQuery:a}=_},6925:function(E,T,A){A.d(T,{hi:()=>I,zE:()=>_});let I=A(42125).api.enhanceEndpoints({addTagTypes:["Class Definition"]}).injectEndpoints({endpoints:E=>({classDefinitionCollection:E.query({query:()=>({url:"/pimcore-studio/api/class/collection"}),providesTags:["Class Definition"]}),classCustomLayoutCollection:E.query({query:E=>({url:`/pimcore-studio/api/class/custom-layout/collection/${E.dataObjectClass}`}),providesTags:["Class Definition"]}),classAllLayoutCollection:E.query({query:()=>({url:"/pimcore-studio/api/class/all-layouts"}),providesTags:["Class Definition"]}),pimcoreStudioApiClassCustomLayoutCreate:E.mutation({query:E=>({url:`/pimcore-studio/api/class/${E.customLayoutId}`,method:"POST",body:E.customLayoutNew}),invalidatesTags:["Class Definition"]}),pimcoreStudioApiClassCustomLayoutGet:E.query({query:E=>({url:`/pimcore-studio/api/class/custom-layout/${E.customLayoutId}`}),providesTags:["Class Definition"]}),pimcoreStudioApiClassCustomLayoutUpdate:E.mutation({query:E=>({url:`/pimcore-studio/api/class/custom-layout/${E.customLayoutId}`,method:"PUT",body:E.customLayoutUpdate}),invalidatesTags:["Class Definition"]}),pimcoreStudioApiClassCustomLayoutDelete:E.mutation({query:E=>({url:`/pimcore-studio/api/class/custom-layout/${E.customLayoutId}`,method:"DELETE"}),invalidatesTags:["Class Definition"]}),classCustomLayoutEditorCollection:E.query({query:E=>({url:`/pimcore-studio/api/class/custom-layout/editor/collection/${E.objectId}`}),providesTags:["Class Definition"]}),pimcoreStudioApiClassCustomLayoutExport:E.query({query:E=>({url:`/pimcore-studio/api/class/custom-layout/export/${E.customLayoutId}`}),providesTags:["Class Definition"]}),pimcoreStudioApiClassCustomLayoutImport:E.mutation({query:E=>({url:`/pimcore-studio/api/class/custom-layout/import/${E.customLayoutId}`,method:"POST",body:E.body}),invalidatesTags:["Class Definition"]}),classFieldCollectionObjectLayout:E.query({query:E=>({url:`/pimcore-studio/api/class/field-collection/${E.objectId}/object/layout`}),providesTags:["Class Definition"]}),classDefinitionFolderCollection:E.query({query:E=>({url:`/pimcore-studio/api/class/folder/${E.folderId}`}),providesTags:["Class Definition"]}),classDefinitionGet:E.query({query:E=>({url:`/pimcore-studio/api/class/definition/${E.dataObjectClass}`}),providesTags:["Class Definition"]}),classObjectBrickObjectLayout:E.query({query:E=>({url:`/pimcore-studio/api/class/object-brick/${E.objectId}/object/layout`}),providesTags:["Class Definition"]})}),overrideExisting:!1}),{useClassDefinitionCollectionQuery:_,useClassCustomLayoutCollectionQuery:S,useClassAllLayoutCollectionQuery:D,usePimcoreStudioApiClassCustomLayoutCreateMutation:L,usePimcoreStudioApiClassCustomLayoutGetQuery:O,usePimcoreStudioApiClassCustomLayoutUpdateMutation:N,usePimcoreStudioApiClassCustomLayoutDeleteMutation:C,useClassCustomLayoutEditorCollectionQuery:t,usePimcoreStudioApiClassCustomLayoutExportQuery:e,usePimcoreStudioApiClassCustomLayoutImportMutation:i,useClassFieldCollectionObjectLayoutQuery:o,useClassDefinitionFolderCollectionQuery:R,useClassDefinitionGetQuery:s,useClassObjectBrickObjectLayoutQuery:a}=I},42125:function(E,T,A){A.r(T),A.d(T,{getPrefix:()=>L.G,api:()=>D,invalidatingTags:()=>O.xc,providingTags:()=>O.Kx,tagNames:()=>O.fV});var I=A(1753),_=A(4e4);let S=(0,I.ni)({baseUrl:"/"}),D=(0,_.LC)({baseQuery:S,endpoints:()=>({})});var L=A(72497),O=A(96068);void 0!==(E=A.hmd(E)).hot&&E.hot.accept()}}]); \ No newline at end of file +/*! For license information please see 0.d9c21d67.js.LICENSE.txt */ +"use strict";(self.webpackChunkpimcore_studio_ui_bundle=self.webpackChunkpimcore_studio_ui_bundle||[]).push([["0"],{72497:function(E,T,A){A.d(T,{G:()=>I});function I(){return"/pimcore-studio/api"}},96068:function(E,T,A){A.d(T,{Kx:()=>_,fV:()=>I,xc:()=>S});let I={ELEMENT:"ELEMENT",ASSET:"ASSET",ASSET_DETAIL:"ASSET_DETAIL",ASSET_TREE:"ASSET_TREE",ASSET_GRID_CONFIGURATION:"ASSET_GRID_CONFIGURATION",ASSET_GRID:"ASSET_GRID",ASSET_GRID_CONFIGURATION_LIST:"ASSET_GRID_CONFIGURATION_LIST",ASSET_GRID_CONFIGURATION_DETAIL:"ASSET_GRID_CONFIGURATION_DETAIL",DATA_OBJECT:"DATA_OBJECT",DATA_OBJECT_DETAIL:"DATA_OBJECT_DETAIL",DATA_OBJECT_TREE:"DATA_OBJECT_TREE",DATA_OBJECT_GRID:"DATA_OBJECT_GRID",DOCUMENT:"DOCUMENT",DOCUMENT_DETAIL:"DOCUMENT_DETAIL",DOCUMENT_TREE:"DOCUMENT_TREE",DOCUMENT_TYPES:"DOCUMENT_TYPES",DOCUMENT_SITE:"DOCUMENT_SITE",WORKFLOW:"WORKFLOW",VERSIONS:"VERSION",PROPERTIES:"PROPERTIES",SCHEDULES:"SCHEDULES",DEPENDENCIES:"DEPENDENCIES",NOTES_AND_EVENTS:"NOTES_AND_EVENTS",NOTIFICATIONS:"NOTIFICATIONS",NOTIFICATION_DETAILS:"NOTIFICATION_DETAILS",AVAILABLE_TAGS:"AVAILABLE_TAGS",WEBSITE_SETTINGS:"WEBSITE_SETTINGS",REDIRECTS:"REDIRECTS",ELEMENT_TAGS:"TAGS",ROLE:"ROLE",DOMAIN_TRANSLATIONS:"DOMAIN_TRANSLATIONS",LOCALES:"LOCALES",PREDEFINED_ASSET_METADATA:"PREDEFINED_ASSET_METADATA",CURRENT_USER_INFORMATION:"CURRENT_USER_INFORMATION",EMAIL_BLOCKLIST:"EMAIL_BLOCKLIST",EMAIL_BLOCKLIST_DETAIL:"EMAIL_BLOCKLIST_DETAIL",APPLICATION_LOGGER:"APPLICATION_LOGGER",APPLICATION_LOGGER_DETAIL:"APPLICATION_LOGGER_DETAIL",EMAIL_LOG:"EMAIL_LOG",EMAIL_LOG_DETAIL:"EMAIL_LOG_DETAIL",RECYCLE_BIN:"RECYCLE_BIN",RECYCLE_BIN_DETAIL:"RECYCLE_BIN_DETAIL",PERSPECTIVES:"PERSPECTIVES",PERSPECTIVE_DETAIL:"PERSPECTIVE_DETAIL",WIDGETS:"WIDGETS",WIDGET_DETAIL:"WIDGET_DETAIL"},_={ELEMENT:()=>[I.ELEMENT],ASSET:()=>[I.ASSET],ASSET_DETAIL:()=>[I.ASSET,I.ASSET_DETAIL],ASSET_DETAIL_ID:E=>[I.ASSET,{type:I.ASSET_DETAIL,id:E}],ASSET_TREE:()=>[I.ASSET,I.ASSET_TREE],ASSET_TREE_ID:E=>[I.ASSET,{type:I.ASSET_TREE,id:E}],ASSET_GRID_CONFIGURATION:()=>[I.ASSET_GRID_CONFIGURATION],ASSET_GRID_CONFIGURATION_LIST:()=>[I.ASSET,I.ASSET_GRID_CONFIGURATION,{type:I.ASSET_GRID_CONFIGURATION_LIST}],ASSET_GRID_CONFIGURATION_DETAIL:E=>[I.ASSET,{type:I.ASSET_DETAIL},I.ASSET_GRID_CONFIGURATION,{type:I.ASSET_GRID_CONFIGURATION_DETAIL,id:E}],ASSET_GRID_ID:E=>[I.ASSET,{type:I.ASSET_GRID,id:E}],DATA_OBJECT_DETAIL:()=>[I.DATA_OBJECT,I.DATA_OBJECT_DETAIL],DATA_OBJECT_DETAIL_ID:E=>[I.DATA_OBJECT,{type:I.DATA_OBJECT_DETAIL,id:E}],DATA_OBJECT_TREE:()=>[I.DATA_OBJECT,I.DATA_OBJECT_TREE],DATA_OBJECT_TREE_ID:E=>[I.DATA_OBJECT,{type:I.DATA_OBJECT_TREE,id:E}],DATA_OBJECT_GRID_ID:E=>[I.DATA_OBJECT,{type:I.DATA_OBJECT_GRID,id:E}],DOCUMENT_DETAIL:()=>[I.DOCUMENT,I.DOCUMENT_DETAIL],DOCUMENT_DETAIL_ID:E=>[I.DOCUMENT,{type:I.DOCUMENT_DETAIL,id:E}],DOCUMENT_TYPES:()=>[I.DOCUMENT_TYPES],DOCUMENT_SITE:()=>[I.DOCUMENT,I.DOCUMENT_SITE],DOMAIN_TRANSLATIONS:()=>[I.DOMAIN_TRANSLATIONS],LOCALES:()=>[I.LOCALES],DOCUMENT_TREE:()=>[I.DOCUMENT,I.DOCUMENT_TREE],DOCUMENT_TREE_ID:E=>[I.DOCUMENT,{type:I.DOCUMENT_TREE,id:E}],ELEMENT_DEPENDENCIES:(E,T)=>[O(E,T),L(I.DEPENDENCIES,E,T)],ELEMENT_WORKFLOW:(E,T)=>[O(E,T),L(I.WORKFLOW,E,T)],PROPERTY_DETAIL:E=>[{type:I.PROPERTIES,id:E}],GLOBAL_PROPERTIES:()=>[I.PROPERTIES],WEBSITE_SETTINGS:()=>[I.WEBSITE_SETTINGS],REDIRECTS:()=>[I.REDIRECTS],ELEMENT_PROPERTIES:(E,T)=>[O(E,T),L(I.PROPERTIES,E,T)],SCHEDULE_DETAIL:E=>[{type:I.SCHEDULES,id:E},I.SCHEDULES],ELEMENT_SCHEDULES:(E,T)=>[O(E,T),L(I.SCHEDULES,E,T)],VERSIONS_DETAIL:E=>[{type:I.VERSIONS,id:E}],ELEMENT_VERSIONS:(E,T)=>[O(E,T),L(I.VERSIONS,E,T)],NOTES_AND_EVENTS_DETAIL:E=>[{type:I.NOTES_AND_EVENTS,id:E}],ELEMENT_NOTES_AND_EVENTS:(E,T)=>[O(E,T),L(I.NOTES_AND_EVENTS,E,T)],NOTIFICATION:E=>[{type:I.NOTIFICATIONS,id:E}],NOTIFICATION_DETAIL:E=>[{type:I.NOTIFICATION_DETAILS,id:E}],AVAILABLE_TAGS:()=>[I.AVAILABLE_TAGS],ELEMENT_TAGS:(E,T)=>[O(E,T),L(I.ELEMENT_TAGS,E,T)],ROLE:()=>[I.ROLE],PREDEFINED_ASSET_METADATA:()=>[I.PREDEFINED_ASSET_METADATA],CURRENT_USER_INFORMATION:()=>[I.CURRENT_USER_INFORMATION],EMAIL_BLOCKLIST:()=>[I.EMAIL_BLOCKLIST],EMAIL_BLOCKLIST_DETAIL:E=>[{type:I.EMAIL_BLOCKLIST_DETAIL,id:E}],EMAIL_LOG:()=>[I.EMAIL_LOG],EMAIL_LOG_DETAIL:E=>[{type:I.EMAIL_LOG_DETAIL,id:E}],RECYCLING_BIN:()=>[I.RECYCLE_BIN],RECYCLING_BIN_DETAIL:E=>[{type:I.RECYCLE_BIN_DETAIL,id:E}],APPLICATION_LOGGER:()=>[I.APPLICATION_LOGGER],APPLICATION_LOGGER_DETAIL:E=>[{type:I.APPLICATION_LOGGER_DETAIL,id:E}],PERSPECTIVES:()=>[I.PERSPECTIVES],PERSPECTIVE_DETAIL:E=>[{type:I.PERSPECTIVE_DETAIL,id:E}],WIDGETS:()=>[I.WIDGETS],WIDGET_DETAIL:E=>[{type:I.WIDGET_DETAIL,id:E}]},S={ELEMENT:()=>[I.ELEMENT],ASSET:()=>[I.ASSET],ASSET_DETAIL:()=>[I.ASSET_DETAIL],ASSET_DETAIL_ID:E=>[{type:I.ASSET_DETAIL,id:E},D],ASSET_TREE:()=>[I.ASSET_TREE],ASSET_TREE_ID:E=>[{type:I.ASSET_TREE,id:E}],ASSET_GRID_CONFIGURATION:()=>[I.ASSET_GRID_CONFIGURATION],ASSET_GRID_CONFIGURATION_DETAIL:E=>[{type:I.ASSET_GRID_CONFIGURATION_DETAIL,id:E},{type:I.ASSET_GRID_CONFIGURATION_DETAIL,id:E}],ASSET_GRID_CONFIGURATION_LIST:()=>[{type:I.ASSET_GRID_CONFIGURATION_LIST}],ASSET_GRID_ID:E=>[{type:I.ASSET_GRID,id:E}],DATA_OBJECT:()=>[I.DATA_OBJECT],DATA_OBJECT_DETAIL:()=>[I.DATA_OBJECT_DETAIL],DATA_OBJECT_DETAIL_ID:E=>[{type:I.DATA_OBJECT_DETAIL,id:E},D],DATA_OBJECT_TREE:()=>[I.DATA_OBJECT_TREE],DATA_OBJECT_TREE_ID:E=>[{type:I.DATA_OBJECT_TREE,id:E}],DATA_OBJECT_GRID_ID:E=>[{type:I.DATA_OBJECT_GRID,id:E}],DOCUMENT:()=>[I.DOCUMENT],DOCUMENT_DETAIL:()=>[I.DOCUMENT_DETAIL],DOCUMENT_DETAIL_ID:E=>[{type:I.DOCUMENT_DETAIL,id:E},D],DOCUMENT_TYPES:()=>[I.DOCUMENT_TYPES],DOCUMENT_SITE:()=>[I.DOCUMENT_SITE],DOMAIN_TRANSLATIONS:()=>[I.DOMAIN_TRANSLATIONS],LOCALES:()=>[I.LOCALES],DOCUMENT_TREE:()=>[I.DOCUMENT_TREE],DOCUMENT_TREE_ID:E=>[{type:I.DOCUMENT_TREE,id:E}],ELEMENT_DEPENDENCIES:(E,T)=>[L(I.DEPENDENCIES,E,T)],ELEMENT_WORKFLOW:(E,T)=>[L(I.WORKFLOW,E,T)],PROPERTY_DETAIL:E=>[{type:I.PROPERTIES,id:E}],ELEMENT_PROPERTIES:(E,T)=>[L(I.PROPERTIES,E,T)],GLOBAL_PROPERTIES:()=>[I.PROPERTIES],WEBSITE_SETTINGS:()=>[I.WEBSITE_SETTINGS],REDIRECTS:()=>[I.REDIRECTS],SCHEDULE_DETAIL:E=>[{type:I.SCHEDULES,id:E}],ELEMENT_SCHEDULES:(E,T)=>[L(I.SCHEDULES,E,T)],VERSIONS_DETAIL:E=>[{type:I.VERSIONS,id:E}],ELEMENT_VERSIONS:(E,T)=>[L(I.VERSIONS,E,T)],NOTES_AND_EVENTS_DETAIL:E=>[{type:I.NOTES_AND_EVENTS,id:E}],NOTIFICATION:E=>[{type:I.NOTIFICATIONS,id:E}],NOTIFICATIONS:()=>[I.NOTIFICATIONS],ELEMENT_NOTES_AND_EVENTS:(E,T)=>[L(I.NOTES_AND_EVENTS,E,T)],AVAILABLE_TAGS:()=>[I.AVAILABLE_TAGS],ELEMENT_TAGS:(E,T)=>[L(I.ELEMENT_TAGS,E,T)],ROLE:()=>[I.ROLE],PREDEFINED_ASSET_METADATA:()=>[I.PREDEFINED_ASSET_METADATA],ELEMENT_DETAIL:(E,T)=>[O(E,T)],EMAIL_BLOCKLIST:()=>[I.EMAIL_BLOCKLIST],EMAIL_BLOCKLIST_DETAIL:E=>[{type:I.EMAIL_BLOCKLIST_DETAIL,id:E}],APPLICATION_LOGGER:()=>[I.APPLICATION_LOGGER],APPLICATION_LOGGER_DETAIL:E=>[{type:I.APPLICATION_LOGGER_DETAIL,id:E}],EMAIL_LOG:()=>[I.EMAIL_LOG],EMAIL_LOG_DETAIL:E=>[{type:I.EMAIL_LOG_DETAIL,id:E}],RECYCLING_BIN:()=>[I.RECYCLE_BIN],PERSPECTIVES:()=>[I.PERSPECTIVES],WIDGETS:()=>[I.WIDGETS]},D=I.AVAILABLE_TAGS,L=(E,T,A)=>({type:E,id:A,elementType:T}),O=(E,T)=>{switch(E){case"asset":return{type:I.ASSET_DETAIL,id:T};case"data-object":return{type:I.DATA_OBJECT_DETAIL,id:T};case"document":return{type:I.DOCUMENT_DETAIL,id:T}}}},18962:function(E,T,A){A.d(T,{Cu:()=>t,HC:()=>i,LQ:()=>O,Me:()=>C,Mv:()=>R,Zy:()=>a,_W:()=>s,c$:()=>D,he:()=>L,hi:()=>_,ih:()=>e,kt:()=>o,m5:()=>N,zE:()=>S});var I=A(96068);let _=A(6925).hi.enhanceEndpoints({addTagTypes:[I.fV.DATA_OBJECT,I.fV.DATA_OBJECT_DETAIL],endpoints:{classCustomLayoutEditorCollection:{providesTags:(E,T,A)=>I.Kx.DATA_OBJECT_DETAIL_ID(A.objectId)},classFieldCollectionObjectLayout:{providesTags:(E,T,A)=>I.Kx.DATA_OBJECT_DETAIL_ID(A.objectId)},classObjectBrickObjectLayout:{providesTags:(E,T,A)=>I.Kx.DATA_OBJECT_DETAIL_ID(A.objectId)}}}),{useClassDefinitionCollectionQuery:S,useClassDefinitionFolderCollectionQuery:D,useClassCustomLayoutCollectionQuery:L,usePimcoreStudioApiClassCustomLayoutCreateMutation:O,usePimcoreStudioApiClassCustomLayoutGetQuery:N,usePimcoreStudioApiClassCustomLayoutUpdateMutation:C,usePimcoreStudioApiClassCustomLayoutDeleteMutation:t,useClassCustomLayoutEditorCollectionQuery:e,usePimcoreStudioApiClassCustomLayoutExportQuery:i,usePimcoreStudioApiClassCustomLayoutImportMutation:o,useClassFieldCollectionObjectLayoutQuery:R,useClassDefinitionGetQuery:s,useClassObjectBrickObjectLayoutQuery:a}=_},6925:function(E,T,A){A.d(T,{JD:()=>D,hi:()=>I,zE:()=>_});let I=A(42125).api.enhanceEndpoints({addTagTypes:["Class Definition"]}).injectEndpoints({endpoints:E=>({classDefinitionCollection:E.query({query:()=>({url:"/pimcore-studio/api/class/collection"}),providesTags:["Class Definition"]}),classCustomLayoutCollection:E.query({query:E=>({url:`/pimcore-studio/api/class/custom-layout/collection/${E.dataObjectClass}`}),providesTags:["Class Definition"]}),classAllLayoutCollection:E.query({query:()=>({url:"/pimcore-studio/api/class/all-layouts"}),providesTags:["Class Definition"]}),pimcoreStudioApiClassCustomLayoutCreate:E.mutation({query:E=>({url:`/pimcore-studio/api/class/${E.customLayoutId}`,method:"POST",body:E.customLayoutNew}),invalidatesTags:["Class Definition"]}),pimcoreStudioApiClassCustomLayoutGet:E.query({query:E=>({url:`/pimcore-studio/api/class/custom-layout/${E.customLayoutId}`}),providesTags:["Class Definition"]}),pimcoreStudioApiClassCustomLayoutUpdate:E.mutation({query:E=>({url:`/pimcore-studio/api/class/custom-layout/${E.customLayoutId}`,method:"PUT",body:E.customLayoutUpdate}),invalidatesTags:["Class Definition"]}),pimcoreStudioApiClassCustomLayoutDelete:E.mutation({query:E=>({url:`/pimcore-studio/api/class/custom-layout/${E.customLayoutId}`,method:"DELETE"}),invalidatesTags:["Class Definition"]}),classCustomLayoutEditorCollection:E.query({query:E=>({url:`/pimcore-studio/api/class/custom-layout/editor/collection/${E.objectId}`}),providesTags:["Class Definition"]}),pimcoreStudioApiClassCustomLayoutExport:E.query({query:E=>({url:`/pimcore-studio/api/class/custom-layout/export/${E.customLayoutId}`}),providesTags:["Class Definition"]}),pimcoreStudioApiClassCustomLayoutImport:E.mutation({query:E=>({url:`/pimcore-studio/api/class/custom-layout/import/${E.customLayoutId}`,method:"POST",body:E.body}),invalidatesTags:["Class Definition"]}),classFieldCollectionObjectLayout:E.query({query:E=>({url:`/pimcore-studio/api/class/field-collection/${E.objectId}/object/layout`}),providesTags:["Class Definition"]}),classDefinitionFolderCollection:E.query({query:E=>({url:`/pimcore-studio/api/class/folder/${E.folderId}`}),providesTags:["Class Definition"]}),classDefinitionGet:E.query({query:E=>({url:`/pimcore-studio/api/class/definition/${E.dataObjectClass}`}),providesTags:["Class Definition"]}),classObjectBrickObjectLayout:E.query({query:E=>({url:`/pimcore-studio/api/class/object-brick/${E.objectId}/object/layout`}),providesTags:["Class Definition"]})}),overrideExisting:!1}),{useClassDefinitionCollectionQuery:_,useClassCustomLayoutCollectionQuery:S,useClassAllLayoutCollectionQuery:D,usePimcoreStudioApiClassCustomLayoutCreateMutation:L,usePimcoreStudioApiClassCustomLayoutGetQuery:O,usePimcoreStudioApiClassCustomLayoutUpdateMutation:N,usePimcoreStudioApiClassCustomLayoutDeleteMutation:C,useClassCustomLayoutEditorCollectionQuery:t,usePimcoreStudioApiClassCustomLayoutExportQuery:e,usePimcoreStudioApiClassCustomLayoutImportMutation:i,useClassFieldCollectionObjectLayoutQuery:o,useClassDefinitionFolderCollectionQuery:R,useClassDefinitionGetQuery:s,useClassObjectBrickObjectLayoutQuery:a}=I},42125:function(E,T,A){A.r(T),A.d(T,{getPrefix:()=>L.G,api:()=>D,invalidatingTags:()=>O.xc,providingTags:()=>O.Kx,tagNames:()=>O.fV});var I=A(1753),_=A(4e4);let S=(0,I.ni)({baseUrl:"/"}),D=(0,_.LC)({baseQuery:S,endpoints:()=>({})});var L=A(72497),O=A(96068);void 0!==(E=A.hmd(E)).hot&&E.hot.accept()}}]); \ No newline at end of file diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1869.daad6453.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/0.d9c21d67.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1869.daad6453.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/0.d9c21d67.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1047.2bb3fd91.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1047.2bb3fd91.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1047.2bb3fd91.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1047.2bb3fd91.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/105.b3ed03a6.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1047.2bb3fd91.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/105.b3ed03a6.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1047.2bb3fd91.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/105.b3ed03a6.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/105.b3ed03a6.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/105.b3ed03a6.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/105.b3ed03a6.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1064.a444e516.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/105.b3ed03a6.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1064.a444e516.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/105.b3ed03a6.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1064.a444e516.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1064.a444e516.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1064.a444e516.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1064.a444e516.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1069.c751acfe.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1064.a444e516.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1069.c751acfe.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1064.a444e516.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1069.c751acfe.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1069.c751acfe.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1069.c751acfe.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1069.c751acfe.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1151.1de88f3a.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1069.c751acfe.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1151.1de88f3a.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1069.c751acfe.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1151.1de88f3a.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1151.1de88f3a.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1151.1de88f3a.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1151.1de88f3a.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1224.4353a5f1.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1151.1de88f3a.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1224.4353a5f1.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1151.1de88f3a.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1224.4353a5f1.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1224.4353a5f1.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1224.4353a5f1.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1224.4353a5f1.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1245.7092be8b.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1224.4353a5f1.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1245.7092be8b.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1224.4353a5f1.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1245.7092be8b.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1245.7092be8b.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1245.7092be8b.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1245.7092be8b.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1267.a35fa847.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1245.7092be8b.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1267.a35fa847.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1245.7092be8b.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1267.a35fa847.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1267.a35fa847.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1267.a35fa847.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1267.a35fa847.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1296.93efc03d.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1267.a35fa847.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1296.93efc03d.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1267.a35fa847.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1296.93efc03d.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1296.93efc03d.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1296.93efc03d.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1296.93efc03d.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1333.00749a1d.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1296.93efc03d.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1333.00749a1d.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1296.93efc03d.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1333.00749a1d.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1333.00749a1d.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1333.00749a1d.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1333.00749a1d.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1334.676803d0.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1333.00749a1d.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1334.676803d0.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1333.00749a1d.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1334.676803d0.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1334.676803d0.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1334.676803d0.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1334.676803d0.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1447.23221551.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1334.676803d0.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1447.23221551.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1334.676803d0.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1447.23221551.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1447.23221551.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1447.23221551.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1447.23221551.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1472.10b13d60.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1447.23221551.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1472.10b13d60.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1447.23221551.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1472.10b13d60.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1472.10b13d60.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1472.10b13d60.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1472.10b13d60.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/148.e9ac8d64.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1472.10b13d60.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/148.e9ac8d64.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1472.10b13d60.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/148.e9ac8d64.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/148.e9ac8d64.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/148.e9ac8d64.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/148.e9ac8d64.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1489.c79950dd.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/148.e9ac8d64.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1489.c79950dd.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/148.e9ac8d64.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1489.c79950dd.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1489.c79950dd.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1489.c79950dd.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1489.c79950dd.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1498.76119a63.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1489.c79950dd.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1498.76119a63.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1489.c79950dd.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1498.76119a63.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1498.76119a63.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1498.76119a63.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1498.76119a63.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1519.b0a37b46.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1498.76119a63.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1519.b0a37b46.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1498.76119a63.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1519.b0a37b46.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1519.b0a37b46.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1519.b0a37b46.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1519.b0a37b46.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1528.5353f329.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1519.b0a37b46.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1528.5353f329.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1519.b0a37b46.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1528.5353f329.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1528.5353f329.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1528.5353f329.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1528.5353f329.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1567.1b498cf5.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1528.5353f329.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1567.1b498cf5.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1528.5353f329.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7091.48f5b66b.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1560.4e3adaa6.js similarity index 69% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7091.48f5b66b.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1560.4e3adaa6.js index e538a115bd..9dc41549a6 100644 --- a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7091.48f5b66b.js +++ b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1560.4e3adaa6.js @@ -1,5 +1,5 @@ -/*! For license information please see 7091.48f5b66b.js.LICENSE.txt */ -"use strict";(self.webpackChunkpimcore_studio_ui_bundle=self.webpackChunkpimcore_studio_ui_bundle||[]).push([["7091"],{55620:function(e,t,i){i.d(t,{p:()=>o});var n=i(80380),r=i(69984),a=i(85308);let o=new class{async loadPlugins(){var e;let t=[],i=window.pluginRemotes;if(void 0===i)return;let n={remotes:[]};for(let[e,t]of Object.entries(i))void 0!==t&&n.remotes.push({name:e,entry:t,alias:e});for(let i of(null==(e=(0,a.getInstance)())||e.registerRemotes(n.remotes),n.remotes))t.push((0,a.loadRemote)(i.alias));for(let e of(await Promise.allSettled(t))){if("fulfilled"!==e.status){console.error("Error loading remote plugin",e);continue}for(let t of Object.values(e.value)){if(void 0===t.name){console.error("Plugin name is undefined",t);continue}if(void 0!==this.registry[t.name]){console.error("Plugin already registered",t.name);continue}this.registerPlugin(t)}}}registerPlugin(e){this.registry[e.name]=e}initPlugins(){Object.values(this.registry).forEach(e=>{void 0!==e.onInit&&e.onInit({container:n.nC})})}startupPlugins(){Object.values(this.registry).forEach(e=>{void 0!==e.onStartup&&e.onStartup({moduleSystem:r._})})}constructor(){this.registry={}}}},6134:function(e,t,i){i(14691);var n,r,a,o,l,s,d,f,c,u,m,p,g,h,b,y,v,x,j,w,C,k,T,S,D,E,M,I,L,P,N,A,R,O,B,F,_,z,V,$,W,H,G,U,q,Z,K,J,X,Q,Y,ee,et,ei,en,er,ea,eo,el,es,ed,ef,ec,eu,em,ep,eg,eh,eb,ey,ev,ex,ej,ew,eC,ek,eT,eS,eD,eE,eM,eI,eL,eP,eN,eA=i(61251),eR=i(69984),eO=i(79771),eB=i(80380),eF=i(7555),e_=i(7594),ez=i(66979),eV=i(23782),e$=i(41926),eW=i(10194),eH=i(69760),eG=i(25749),eU=i(88555),eq=i(28395),eZ=i(60476);class eK{registerComponent(e,t){this.components.set(e,t)}getComponentByType(e){return this.components.get(e)}constructor(){this.components=new Map}}eK=(0,eq.gn)([(0,eZ.injectable)()],eK);class eJ{async runJob(e){await e.run({messageBus:this.messageBus})}constructor(e){this.messageBus=e}}eJ=(0,eq.gn)([(0,eZ.injectable)(),(0,eq.fM)(0,(0,eZ.inject)(eO.j.globalMessageBus)),(0,eq.w6)("design:type",Function),(0,eq.w6)("design:paramtypes",["undefined"==typeof GlobalMessageBus?Object:GlobalMessageBus])],eJ);var eX=i(50464),eQ=i(72497),eY=i(53478);let e0=["mimeType","page","cropPercent","cropWidth","cropHeight","cropTop","cropLeft"],e1=["mimeType","resizeMode","width","height","quality","dpi","contain","frame","cover","forceResize","page","cropPercent","cropWidth","cropHeight","cropTop","cropLeft"],e2=["width","height","aspectRatio","frame","async"];class e3{getThumbnailUrl(e){return"thumbnailName"in e&&!(0,eY.isEmpty)(e.thumbnailName)?this.generateNamedThumbnailUrl(e):"dynamicConfig"in e&&!(0,eY.isNil)(e.dynamicConfig)?this.generateDynamicThumbnailUrl(e):this.generateCustomThumbnailUrl(e)}generateNamedThumbnailUrl(e){let t,{assetId:i,assetType:n,thumbnailName:r}=e,a=`${(0,eQ.G)()}/assets/${i}`;if("video"===n)throw Error("Video assets do not support named thumbnails. Use custom thumbnail instead.");t=`/${n}/stream/thumbnail/${r}`;let o=this.buildQueryParams(e,e0).toString();return`${a}${t}${!(0,eY.isEmpty)(o)?`?${o}`:""}`}generateDynamicThumbnailUrl(e){let{assetId:t,assetType:i,dynamicConfig:n}=e,r=`${(0,eQ.G)()}/assets/${t}`;if("video"===i)throw Error("Video assets do not support dynamic thumbnails. Use custom thumbnail instead.");let a=`/${i}/stream/dynamic`,o=new URLSearchParams,l={...n};["cropPercent","cropWidth","cropHeight","cropTop","cropLeft"].forEach(t=>{t in e&&!(0,eY.isNil)(e[t])&&(l[t]=e[t])}),o.set("config",JSON.stringify(l));let s=o.toString();return`${r}${a}?${s}`}generateCustomThumbnailUrl(e){let t,i,{assetId:n,assetType:r}=e,a=`${(0,eQ.G)()}/assets/${n}`;"video"===r?(t="/video/stream/image-thumbnail",i=this.buildQueryParams(e,e2)):(t=`/${r}/stream/custom`,i=this.buildQueryParams(e,e1),(0,eY.isUndefined)(e.resizeMode)&&i.set("resizeMode","document"===r?"resize":"none"),(0,eY.isUndefined)(e.mimeType)&&i.set("mimeType","JPEG"));let o=i.toString();return`${a}${t}${!(0,eY.isEmpty)(o)?`?${o}`:""}`}buildQueryParams(e,t){let i=new URLSearchParams;return t.forEach(t=>{let n=e[t];!(0,eY.isNil)(n)&&((0,eY.isBoolean)(n)?n&&i.append(t,"true"):(0,eY.isNumber)(n)?i.append(t,Math.round(n).toString()):i.append(t,String(n)))}),i}}e3=(0,eq.gn)([(0,eZ.injectable)()],e3);var e6=i(98139),e4=i(13147);class e8 extends e4.Z{}e8=(0,eq.gn)([(0,eZ.injectable)()],e8);class e7{}e7=(0,eq.gn)([(0,eZ.injectable)()],e7);class e5 extends e7{constructor(...e){super(...e),this.id="archive"}}e5=(0,eq.gn)([(0,eZ.injectable)()],e5);class e9 extends e7{constructor(...e){super(...e),this.id="audio"}}e9=(0,eq.gn)([(0,eZ.injectable)()],e9);class te extends e7{constructor(...e){super(...e),this.id="document"}}te=(0,eq.gn)([(0,eZ.injectable)()],te);class tt extends e7{constructor(...e){super(...e),this.id="folder"}}tt=(0,eq.gn)([(0,eZ.injectable)()],tt);class ti extends e7{constructor(...e){super(...e),this.id="image"}}ti=(0,eq.gn)([(0,eZ.injectable)()],ti);class tn extends e7{constructor(...e){super(...e),this.id="text"}}tn=(0,eq.gn)([(0,eZ.injectable)()],tn);class tr extends e7{constructor(...e){super(...e),this.id="unknown"}}tr=(0,eq.gn)([(0,eZ.injectable)()],tr);class ta extends e7{constructor(...e){super(...e),this.id="video"}}ta=(0,eq.gn)([(0,eZ.injectable)()],ta);var to=i(97790),tl=i(85893),ts=i(81004),td=i.n(ts),tf=i(62819),tc=i(33311);let tu=e=>{let{batchEdit:t}=e,{key:i}=t;return(0,tl.jsx)(tc.l.Item,{name:i,children:(0,tl.jsx)(tf.X,{})})},tm=(0,eZ.injectable)()(D=class{getBatchEditComponent(e){return(0,tl.jsx)(tu,{...e})}constructor(){var e,t,i;t="checkbox",(e="symbol"==typeof(i=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(e="id","string"))?i:i+"")in this?Object.defineProperty(this,e,{value:t,enumerable:!0,configurable:!0,writable:!0}):this[e]=t}})||D;var tp=i(32611),tg=i(24714),th=i(16479);let tb=e=>{let{batchEdit:t}=e,{key:i}=t;return(0,tl.jsx)(tc.l.Item,{name:i,children:(0,tl.jsx)(th.M,{})})},ty=(0,eZ.injectable)()(E=class{getBatchEditComponent(e){return(0,tl.jsx)(tb,{...e})}constructor(){var e,t,i;t="datetime",(e="symbol"==typeof(i=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(e="id","string"))?i:i+"")in this?Object.defineProperty(this,e,{value:t,enumerable:!0,configurable:!0,writable:!0}):this[e]=t}})||E;var tv=i(78777),tx=i(42450);let tj=e=>{let{batchEdit:t}=e,{key:i}=t;return(0,tl.jsx)(tx._v,{fieldWidthValues:{large:9999,medium:9999,small:9999},children:(0,tl.jsx)(tc.l.Item,{name:i,children:(0,tl.jsx)(tv.A,{assetsAllowed:!0})})})},tw=(0,eZ.injectable)()(M=class{getBatchEditComponent(e){return(0,tl.jsx)(tj,{...e})}constructor(){var e,t,i;t="element_dropzone",(e="symbol"==typeof(i=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(e="id","string"))?i:i+"")in this?Object.defineProperty(this,e,{value:t,enumerable:!0,configurable:!0,writable:!0}):this[e]=t}})||M;var tC=i(2092);let tk=e=>{var t;let{batchEdit:i}=e,{key:n,config:r}=i,a=null==r||null==(t=r.options)?void 0:t.map(e=>({value:e,label:e}));return(0,tl.jsx)(tc.l.Item,{name:n,children:(0,tl.jsx)(tC.P,{options:a})})},tT=(0,eZ.injectable)()(I=class{getBatchEditComponent(e){return(0,tl.jsx)(tk,{...e})}constructor(){var e,t,i;t="select",(e="symbol"==typeof(i=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(e="id","string"))?i:i+"")in this?Object.defineProperty(this,e,{value:t,enumerable:!0,configurable:!0,writable:!0}):this[e]=t}})||I;var tS=i(6921),tD=i(66386),tE=i(16098),tM=i(24571),tI=i(7234),tL=i(65835);let tP=(0,eZ.injectable)()(L=class extends tI.s{getFieldFilterType(){return tL.a.Boolean}getFieldFilterComponent(e){return(0,tl.jsx)(tM.V,{...e})}constructor(...e){var t,i,n;super(...e),i="boolean",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||L;var tN=i(26788),tA=i(11592),tR=i(17393);let tO=()=>{let{config:e}=(0,tA.$)(),{hasType:t,getComponentRenderer:i}=(0,tR.D)();if(!("fieldDefinition"in e))throw Error("Field definition is missing in config");let{fieldDefinition:n}=e,r=(null==n?void 0:n.fieldType)??(null==n?void 0:n.fieldtype)??"unknown";if(!t({target:"FIELD_FILTER",dynamicTypeIds:[r]}))return(0,tl.jsx)(tN.Alert,{message:`Unknown data type: ${r}`,type:"warning"});let{ComponentRenderer:a}=i({target:"FIELD_FILTER",dynamicTypeIds:[r]});return null===a?(0,tl.jsx)(tl.Fragment,{children:"Dynamic Field Filter not supported"}):(0,tl.jsx)(tl.Fragment,{children:a(n)})},tB=(0,eZ.injectable)()(P=class extends tI.s{shouldOverrideFilterType(){return!0}getFieldFilterComponent(e){return(0,tl.jsx)(tO,{...e})}constructor(...e){var t,i,n;super(...e),i="dataobject.adapter",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||P,tF=()=>{let{config:e}=(0,tA.$)(),{hasType:t,getComponentRenderer:i}=(0,tR.D)();if(!("fieldDefinition"in e))throw Error("Field definition is missing in config");let{fieldDefinition:n}=e,r=(null==n?void 0:n.fieldType)??(null==n?void 0:n.fieldtype)??"unknown";if(!t({target:"FIELD_FILTER",dynamicTypeIds:[r]}))return(0,tl.jsx)(tN.Alert,{message:`Unknown data type: ${r}`,type:"warning"});let{ComponentRenderer:a}=i({target:"FIELD_FILTER",dynamicTypeIds:[r]});return null===a?(0,tl.jsx)(tl.Fragment,{children:"Dynamic Field Filter not supported"}):(0,tl.jsx)(tl.Fragment,{children:a(n)})},t_=(0,eZ.injectable)()(N=class extends tI.s{shouldOverrideFilterType(){return!0}getFieldFilterComponent(e){return(0,tl.jsx)(tF,{...e})}constructor(...e){var t,i,n;super(...e),i="dataobject.objectbrick",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||N;var tz=i(447),tV=i(76159);let t$=(0,eZ.injectable)()(A=class extends tI.s{getFieldFilterType(){return tL.a.Number}getFieldFilterComponent(e){return(0,tl.jsx)(tV.$,{...e})}constructor(...e){var t,i;super(...e),(t="symbol"==typeof(i=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?i:i+"")in this?Object.defineProperty(this,t,{value:"id",enumerable:!0,configurable:!0,writable:!0}):this[t]="id"}})||A;var tW=i(24846),tH=i(8512),tG=i(28124);class tU extends tI.s{getFieldFilterComponent(e){return(0,tl.jsx)(tG.i,{...e})}}let tq=(0,eZ.injectable)()(R=class extends tU{getFieldFilterType(){return tL.a.String}constructor(...e){var t,i,n;super(...e),i="string",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||R;var tZ=i(16151),tK=i(96584),tJ=i(19627);let tX=(0,eZ.injectable)()(O=class extends tK.V{getGridCellComponent(e){return(0,tl.jsx)(tJ.x,{...e})}constructor(...e){var t,i,n;super(...e),i="dependency-type-icon",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||O;var tQ=i(92009);let tY=(0,eZ.injectable)()(B=class extends tK.V{getGridCellComponent(e){return(0,tl.jsx)(tQ.x,{...e})}constructor(...e){var t,i,n;super(...e),i="asset-custom-metadata-icon",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||B;var t0=i(19806);let t1=(0,eZ.injectable)()(F=class extends tK.V{getGridCellComponent(e){return(0,tl.jsx)(t0.I,{...e})}constructor(...e){var t,i,n;super(...e),i="asset-custom-metadata-value",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||F;var t2=i(41086);let t3=(0,eZ.injectable)()(_=class extends tK.V{getGridCellComponent(e){return(0,tl.jsx)(t2.x,{...e})}constructor(...e){var t,i,n;super(...e),i="property-icon",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||_;var t6=i(75821);let t4=(0,eZ.injectable)()(z=class extends tK.V{getGridCellComponent(e){return(0,tl.jsx)(t6.I,{...e})}constructor(...e){var t,i,n;super(...e),i="property-value",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||z;var t8=i(30232),t7=i(71695),t5=i(85823);let t9=e=>{let{t}=(0,t7.useTranslation)(),i=[{value:"delete",label:t("schedule.version.delete")},{value:"publish",label:t("schedule.version.publish")}];return(0,tl.jsx)(t8._,{...(0,t5.G)(e,{options:i})})},ie=(0,eZ.injectable)()(V=class extends tK.V{getGridCellComponent(e){return(0,tl.jsx)(t9,{...e})}constructor(...e){var t,i,n;super(...e),i="schedule-actions-select",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||V;var it=i(2433),ii=i(45628),ir=i.n(ii),ia=i(29202);let io=(0,ia.createStyles)(e=>{let{css:t,token:i}=e;return{select:t` +/*! For license information please see 1560.4e3adaa6.js.LICENSE.txt */ +"use strict";(self.webpackChunkpimcore_studio_ui_bundle=self.webpackChunkpimcore_studio_ui_bundle||[]).push([["1560"],{55620:function(e,t,i){i.d(t,{p:()=>l});var n=i(80380),r=i(69984),a=i(85308);let l=new class{async loadPlugins(){var e;let t=[],i=window.pluginRemotes;if(void 0===i)return;let n={remotes:[]};for(let[e,t]of Object.entries(i))void 0!==t&&n.remotes.push({name:e,entry:t,alias:e});for(let i of(null==(e=(0,a.getInstance)())||e.registerRemotes(n.remotes),n.remotes))t.push((0,a.loadRemote)(i.alias));for(let e of(await Promise.allSettled(t))){if("fulfilled"!==e.status){console.error("Error loading remote plugin",e);continue}for(let t of Object.values(e.value)){if(void 0===t.name){console.error("Plugin name is undefined",t);continue}if(void 0!==this.registry[t.name]){console.error("Plugin already registered",t.name);continue}this.registerPlugin(t)}}}registerPlugin(e){this.registry[e.name]=e}initPlugins(){Object.values(this.registry).forEach(e=>{void 0!==e.onInit&&e.onInit({container:n.nC})})}startupPlugins(){Object.values(this.registry).forEach(e=>{void 0!==e.onStartup&&e.onStartup({moduleSystem:r._})})}constructor(){this.registry={}}}},19014:function(e,t,i){i(14691);var n,r,a,l,o,s,d,f,c,u,m,p,g,h,b,y,v,x,j,w,C,k,T,S,D,E,M,I,L,P,N,A,R,O,B,F,_,z,V,$,W,H,G,U,q,Z,K,J,X,Q,Y,ee,et,ei,en,er,ea,el,eo,es,ed,ef,ec,eu,em,ep,eg,eh,eb,ey,ev,ex,ej,ew,eC,ek,eT,eS,eD,eE,eM,eI,eL,eP,eN,eA=i(61251),eR=i(69984),eO=i(79771),eB=i(80380),eF=i(7555),e_=i(7594),ez=i(66979),eV=i(23782),e$=i(41926),eW=i(10194),eH=i(69760),eG=i(25749),eU=i(88555),eq=i(28395),eZ=i(60476);class eK{registerComponent(e,t){this.components.set(e,t)}getComponentByType(e){return this.components.get(e)}constructor(){this.components=new Map}}eK=(0,eq.gn)([(0,eZ.injectable)()],eK);class eJ{async runJob(e){await e.run({messageBus:this.messageBus})}constructor(e){this.messageBus=e}}eJ=(0,eq.gn)([(0,eZ.injectable)(),(0,eq.fM)(0,(0,eZ.inject)(eO.j.globalMessageBus)),(0,eq.w6)("design:type",Function),(0,eq.w6)("design:paramtypes",["undefined"==typeof GlobalMessageBus?Object:GlobalMessageBus])],eJ);var eX=i(50464),eQ=i(72497),eY=i(53478);let e0=["mimeType","page","cropPercent","cropWidth","cropHeight","cropTop","cropLeft"],e1=["mimeType","resizeMode","width","height","quality","dpi","contain","frame","cover","forceResize","page","cropPercent","cropWidth","cropHeight","cropTop","cropLeft"],e2=["width","height","aspectRatio","frame","async"];class e3{getThumbnailUrl(e){return"thumbnailName"in e&&!(0,eY.isEmpty)(e.thumbnailName)?this.generateNamedThumbnailUrl(e):"dynamicConfig"in e&&!(0,eY.isNil)(e.dynamicConfig)?this.generateDynamicThumbnailUrl(e):this.generateCustomThumbnailUrl(e)}generateNamedThumbnailUrl(e){let t,{assetId:i,assetType:n,thumbnailName:r}=e,a=`${(0,eQ.G)()}/assets/${i}`;if("video"===n)throw Error("Video assets do not support named thumbnails. Use custom thumbnail instead.");t=`/${n}/stream/thumbnail/${r}`;let l=this.buildQueryParams(e,e0).toString();return`${a}${t}${!(0,eY.isEmpty)(l)?`?${l}`:""}`}generateDynamicThumbnailUrl(e){let{assetId:t,assetType:i,dynamicConfig:n}=e,r=`${(0,eQ.G)()}/assets/${t}`;if("video"===i)throw Error("Video assets do not support dynamic thumbnails. Use custom thumbnail instead.");let a=`/${i}/stream/dynamic`,l=new URLSearchParams,o={...n};["cropPercent","cropWidth","cropHeight","cropTop","cropLeft"].forEach(t=>{t in e&&!(0,eY.isNil)(e[t])&&(o[t]=e[t])}),l.set("config",JSON.stringify(o));let s=l.toString();return`${r}${a}?${s}`}generateCustomThumbnailUrl(e){let t,i,{assetId:n,assetType:r}=e,a=`${(0,eQ.G)()}/assets/${n}`;"video"===r?(t="/video/stream/image-thumbnail",i=this.buildQueryParams(e,e2)):(t=`/${r}/stream/custom`,i=this.buildQueryParams(e,e1),(0,eY.isUndefined)(e.resizeMode)&&i.set("resizeMode","document"===r?"resize":"none"),(0,eY.isUndefined)(e.mimeType)&&i.set("mimeType","JPEG"));let l=i.toString();return`${a}${t}${!(0,eY.isEmpty)(l)?`?${l}`:""}`}buildQueryParams(e,t){let i=new URLSearchParams;return t.forEach(t=>{let n=e[t];!(0,eY.isNil)(n)&&((0,eY.isBoolean)(n)?n&&i.append(t,"true"):(0,eY.isNumber)(n)?i.append(t,Math.round(n).toString()):i.append(t,String(n)))}),i}}e3=(0,eq.gn)([(0,eZ.injectable)()],e3);var e6=i(98139),e4=i(13147);class e8 extends e4.Z{}e8=(0,eq.gn)([(0,eZ.injectable)()],e8);class e7{}e7=(0,eq.gn)([(0,eZ.injectable)()],e7);class e5 extends e7{constructor(...e){super(...e),this.id="archive"}}e5=(0,eq.gn)([(0,eZ.injectable)()],e5);class e9 extends e7{constructor(...e){super(...e),this.id="audio"}}e9=(0,eq.gn)([(0,eZ.injectable)()],e9);class te extends e7{constructor(...e){super(...e),this.id="document"}}te=(0,eq.gn)([(0,eZ.injectable)()],te);class tt extends e7{constructor(...e){super(...e),this.id="folder"}}tt=(0,eq.gn)([(0,eZ.injectable)()],tt);class ti extends e7{constructor(...e){super(...e),this.id="image"}}ti=(0,eq.gn)([(0,eZ.injectable)()],ti);class tn extends e7{constructor(...e){super(...e),this.id="text"}}tn=(0,eq.gn)([(0,eZ.injectable)()],tn);class tr extends e7{constructor(...e){super(...e),this.id="unknown"}}tr=(0,eq.gn)([(0,eZ.injectable)()],tr);class ta extends e7{constructor(...e){super(...e),this.id="video"}}ta=(0,eq.gn)([(0,eZ.injectable)()],ta);var tl=i(97790),to=i(85893),ts=i(81004),td=i.n(ts),tf=i(62819),tc=i(33311);let tu=e=>{let{batchEdit:t}=e,{key:i}=t;return(0,to.jsx)(tc.l.Item,{name:i,children:(0,to.jsx)(tf.X,{})})},tm=(0,eZ.injectable)()(D=class{getBatchEditComponent(e){return(0,to.jsx)(tu,{...e})}constructor(){var e,t,i;t="checkbox",(e="symbol"==typeof(i=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(e="id","string"))?i:i+"")in this?Object.defineProperty(this,e,{value:t,enumerable:!0,configurable:!0,writable:!0}):this[e]=t}})||D;var tp=i(32611),tg=i(24714),th=i(16479);let tb=e=>{let{batchEdit:t}=e,{key:i}=t;return(0,to.jsx)(tc.l.Item,{name:i,children:(0,to.jsx)(th.M,{})})},ty=(0,eZ.injectable)()(E=class{getBatchEditComponent(e){return(0,to.jsx)(tb,{...e})}constructor(){var e,t,i;t="datetime",(e="symbol"==typeof(i=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(e="id","string"))?i:i+"")in this?Object.defineProperty(this,e,{value:t,enumerable:!0,configurable:!0,writable:!0}):this[e]=t}})||E;var tv=i(78777),tx=i(42450);let tj=e=>{let{batchEdit:t}=e,{key:i}=t;return(0,to.jsx)(tx._v,{fieldWidthValues:{large:9999,medium:9999,small:9999},children:(0,to.jsx)(tc.l.Item,{name:i,children:(0,to.jsx)(tv.A,{assetsAllowed:!0})})})},tw=(0,eZ.injectable)()(M=class{getBatchEditComponent(e){return(0,to.jsx)(tj,{...e})}constructor(){var e,t,i;t="element_dropzone",(e="symbol"==typeof(i=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(e="id","string"))?i:i+"")in this?Object.defineProperty(this,e,{value:t,enumerable:!0,configurable:!0,writable:!0}):this[e]=t}})||M;var tC=i(2092);let tk=e=>{var t;let{batchEdit:i}=e,{key:n,config:r}=i,a=null==r||null==(t=r.options)?void 0:t.map(e=>({value:e,label:e}));return(0,to.jsx)(tc.l.Item,{name:n,children:(0,to.jsx)(tC.P,{options:a})})},tT=(0,eZ.injectable)()(I=class{getBatchEditComponent(e){return(0,to.jsx)(tk,{...e})}constructor(){var e,t,i;t="select",(e="symbol"==typeof(i=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(e="id","string"))?i:i+"")in this?Object.defineProperty(this,e,{value:t,enumerable:!0,configurable:!0,writable:!0}):this[e]=t}})||I;var tS=i(6921),tD=i(66386),tE=i(16098),tM=i(24571),tI=i(7234),tL=i(65835);let tP=(0,eZ.injectable)()(L=class extends tI.s{getFieldFilterType(){return tL.a.Boolean}getFieldFilterComponent(e){return(0,to.jsx)(tM.V,{...e})}constructor(...e){var t,i,n;super(...e),i="boolean",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||L;var tN=i(26788),tA=i(11592),tR=i(17393);let tO=()=>{let{config:e}=(0,tA.$)(),{hasType:t,getComponentRenderer:i}=(0,tR.D)();if(!("fieldDefinition"in e))throw Error("Field definition is missing in config");let{fieldDefinition:n}=e,r=(null==n?void 0:n.fieldType)??(null==n?void 0:n.fieldtype)??"unknown";if(!t({target:"FIELD_FILTER",dynamicTypeIds:[r]}))return(0,to.jsx)(tN.Alert,{message:`Unknown data type: ${r}`,type:"warning"});let{ComponentRenderer:a}=i({target:"FIELD_FILTER",dynamicTypeIds:[r]});return null===a?(0,to.jsx)(to.Fragment,{children:"Dynamic Field Filter not supported"}):(0,to.jsx)(to.Fragment,{children:a(n)})},tB=(0,eZ.injectable)()(P=class extends tI.s{shouldOverrideFilterType(){return!0}getFieldFilterComponent(e){return(0,to.jsx)(tO,{...e})}constructor(...e){var t,i,n;super(...e),i="dataobject.adapter",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||P,tF=()=>{let{config:e}=(0,tA.$)(),{hasType:t,getComponentRenderer:i}=(0,tR.D)();if(!("fieldDefinition"in e))throw Error("Field definition is missing in config");let{fieldDefinition:n}=e,r=(null==n?void 0:n.fieldType)??(null==n?void 0:n.fieldtype)??"unknown";if(!t({target:"FIELD_FILTER",dynamicTypeIds:[r]}))return(0,to.jsx)(tN.Alert,{message:`Unknown data type: ${r}`,type:"warning"});let{ComponentRenderer:a}=i({target:"FIELD_FILTER",dynamicTypeIds:[r]});return null===a?(0,to.jsx)(to.Fragment,{children:"Dynamic Field Filter not supported"}):(0,to.jsx)(to.Fragment,{children:a(n)})},t_=(0,eZ.injectable)()(N=class extends tI.s{shouldOverrideFilterType(){return!0}getFieldFilterComponent(e){return(0,to.jsx)(tF,{...e})}constructor(...e){var t,i,n;super(...e),i="dataobject.objectbrick",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||N;var tz=i(447),tV=i(76159);let t$=(0,eZ.injectable)()(A=class extends tI.s{getFieldFilterType(){return tL.a.Number}getFieldFilterComponent(e){return(0,to.jsx)(tV.$,{...e})}constructor(...e){var t,i;super(...e),(t="symbol"==typeof(i=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?i:i+"")in this?Object.defineProperty(this,t,{value:"id",enumerable:!0,configurable:!0,writable:!0}):this[t]="id"}})||A;var tW=i(24846),tH=i(8512),tG=i(28124);class tU extends tI.s{getFieldFilterComponent(e){return(0,to.jsx)(tG.i,{...e})}}let tq=(0,eZ.injectable)()(R=class extends tU{getFieldFilterType(){return tL.a.String}constructor(...e){var t,i,n;super(...e),i="string",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||R;var tZ=i(16151),tK=i(96584),tJ=i(19627);let tX=(0,eZ.injectable)()(O=class extends tK.V{getGridCellComponent(e){return(0,to.jsx)(tJ.x,{...e})}constructor(...e){var t,i,n;super(...e),i="dependency-type-icon",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||O;var tQ=i(92009);let tY=(0,eZ.injectable)()(B=class extends tK.V{getGridCellComponent(e){return(0,to.jsx)(tQ.x,{...e})}constructor(...e){var t,i,n;super(...e),i="asset-custom-metadata-icon",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||B;var t0=i(19806);let t1=(0,eZ.injectable)()(F=class extends tK.V{getGridCellComponent(e){return(0,to.jsx)(t0.I,{...e})}constructor(...e){var t,i,n;super(...e),i="asset-custom-metadata-value",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||F;var t2=i(41086);let t3=(0,eZ.injectable)()(_=class extends tK.V{getGridCellComponent(e){return(0,to.jsx)(t2.x,{...e})}constructor(...e){var t,i,n;super(...e),i="property-icon",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||_;var t6=i(75821);let t4=(0,eZ.injectable)()(z=class extends tK.V{getGridCellComponent(e){return(0,to.jsx)(t6.I,{...e})}constructor(...e){var t,i,n;super(...e),i="property-value",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||z;var t8=i(30232),t7=i(71695),t5=i(85823);let t9=e=>{let{t}=(0,t7.useTranslation)(),i=[{value:"delete",label:t("schedule.version.delete")},{value:"publish",label:t("schedule.version.publish")}];return(0,to.jsx)(t8._,{...(0,t5.G)(e,{options:i})})},ie=(0,eZ.injectable)()(V=class extends tK.V{getGridCellComponent(e){return(0,to.jsx)(t9,{...e})}constructor(...e){var t,i,n;super(...e),i="schedule-actions-select",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||V;var it=i(2433),ii=i(45628),ir=i.n(ii),ia=i(29202);let il=(0,ia.createStyles)(e=>{let{css:t,token:i}=e;return{select:t` .ant-select-selection-item { .version-id__select__label { .version-id__selection-item-hidden { @@ -7,11 +7,11 @@ } } } - `}});var il=i(35015),is=i(81343),id=i(74347);let ic=e=>{let{id:t,elementType:i}=(0,il.i)(),{data:n,isLoading:r,isError:a,error:o}=(0,it.KD)({elementType:i,id:t,page:1,pageSize:9999});a&&(0,is.ZP)(new id.Z(o));let l=[];r||void 0===n||(l=n.items);let s=l.map(e=>{var t;return{value:e.id,displayValue:e.versionCount,label:(0,tl.jsxs)("div",{className:"version-id__select__label",children:[(0,tl.jsxs)("div",{children:[(0,tl.jsx)("b",{children:e.versionCount}),(0,tl.jsxs)("span",{className:"version-id__selection-item-hidden",children:[" | ",e.user.name??"not found"]})]}),(0,tl.jsx)("div",{className:"version-id__selection-item-hidden",children:(t=e.date,ir().format(new Date(1e3*t),"datetime",ir().language,{dateStyle:"short",timeStyle:"short"}))})]})}}),{styles:d}=io();return(0,tl.jsx)("div",{className:d.select,children:(0,tl.jsx)(t8._,{...(0,t5.G)(e,{options:s})})})},iu=(0,eZ.injectable)()($=class extends tK.V{getGridCellComponent(e){return(0,tl.jsx)(ic,{...e})}constructor(...e){var t,i,n;super(...e),i="version-id-select",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||$;var im=i(47241);let ip=(0,eZ.injectable)()(W=class extends tK.V{getGridCellComponent(e){return(0,tl.jsx)(im.u,{...e})}constructor(...e){var t,i,n;super(...e),i="asset-version-preview-field-label",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||W;var ig=i(77),ih=i(45114);let ib={text:"input",bool:"checkbox",document:"element",object:"element",asset:"element"},iy=e=>{let t=e.row.original.type,i=(0,eB.$1)("DynamicTypes/GridCellRegistry"),n=ib[t]??t,{mapToElementType:r}=(0,ig.f)();return(0,tl.jsx)(tl.Fragment,{children:(()=>{if(!i.hasDynamicType(n))return(0,tl.jsx)(tN.Alert,{message:"cell type not supported",style:{display:"flex"},type:"warning"});let t=i.getDynamicType(n),a={...e,...(0,ih.addColumnConfig)(e,{allowedTypes:[r(String(e.row.original.type),!0)]}),getElementInfo:e=>{let t=e.row.original,i=t.data;return{elementType:r(String(t.type),!0),id:i.id,fullPath:i.fullPath}}};return t.getGridCellComponent(a)})()})},iv=(0,eZ.injectable)()(H=class extends tK.V{getGridCellComponent(e){return(0,tl.jsx)(iy,{...e})}constructor(...e){var t,i,n;super(...e),i="website-settings-value",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||H;var ix=i(94636);let ij=(0,eZ.injectable)()(G=class extends tK.V{getGridCellComponent(e){return(0,tl.jsx)(ix._,{...e})}getDefaultGridColumnWidth(){return 100}constructor(...e){var t,i,n;super(...e),i="asset-actions",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||G;var iw=i(98099);let iC=(0,eZ.injectable)()(U=class extends tK.V{getGridCellComponent(e){return(0,tl.jsx)(iw.V,{...(0,t5.G)(e,{allowedTypes:["asset"]})})}getDefaultGridColumnWidth(){return 350}constructor(...e){var t,i,n;super(...e),i="asset-link",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||U;var ik=i(95324);let iT=(0,eZ.injectable)()(q=class extends tK.V{getGridCellComponent(e){return(0,tl.jsx)(ik._,{...e})}constructor(...e){var t,i,n;super(...e),i="asset-preview",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||q,iS=(0,eZ.injectable)()(Z=class extends tK.V{getGridCellComponent(e){return(0,tl.jsx)(iw.V,{...(0,t5.G)(e,{allowedTypes:["asset"]})})}getDefaultGridColumnWidth(){return 350}constructor(...e){var t,i,n;super(...e),i="asset",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||Z;var iD=i(70883),iE=i(58694);let iM=(0,eZ.injectable)()(K=class extends tK.V{getGridCellComponent(e){return(0,tl.jsx)(iE.p,{...e})}getDefaultGridColumnWidth(){return 100}constructor(...e){var t,i,n;super(...e),i="data-object-actions",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||K;var iI=i(30062),iL=i(8151);let iP=(0,eZ.injectable)()(J=class extends tK.V{getGridCellComponent(e){return(0,tl.jsx)(iL.N,{...e})}getDefaultGridColumnWidth(e){var t,i;let n=null==e||null==(t=e.config)?void 0:t.dataObjectType,r={...null==(i=e.config)?void 0:i.dataObjectConfig.fieldDefinition,defaultFieldWidth:tx.uK};return(0,iI.bq)(n,r)}constructor(...e){var t,i,n;super(...e),i="dataobject.adapter",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||J,iN=(0,eZ.injectable)()(X=class extends tK.V{getGridCellComponent(e){return(0,tl.jsx)(iL.N,{...e})}getDefaultGridColumnWidth(e){var t,i;let n=null==e||null==(t=e.config)?void 0:t.dataObjectType,r={...null==(i=e.config)?void 0:i.dataObjectConfig.fieldDefinition,defaultFieldWidth:tx.uK};return(0,iI.bq)(n,r)}constructor(...e){var t,i,n;super(...e),i="dataobject.objectbrick",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||X;var iA=i(61308);let iR=(0,eZ.injectable)()(Q=class extends tK.V{getGridCellComponent(e){return(0,tl.jsx)(iA.T,{...e})}constructor(...e){var t,i,n;super(...e),i="datetime",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||Q,iO=(0,eZ.injectable)()(Y=class extends tK.V{getGridCellComponent(e){return(0,tl.jsx)(iA.T,{...e})}constructor(...e){var t,i,n;super(...e),i="date",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||Y,iB=(0,eZ.injectable)()(ee=class extends tK.V{getGridCellComponent(e){return(0,tl.jsx)(iw.V,{...(0,t5.G)(e,{allowedTypes:["document"]})})}getDefaultGridColumnWidth(){return 350}constructor(...e){var t,i,n;super(...e),i="document-link",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||ee,iF=(0,eZ.injectable)()(et=class extends tK.V{getGridCellComponent(e){return(0,tl.jsx)(iw.V,{...(0,t5.G)(e,{allowedTypes:["document"]})})}getDefaultGridColumnWidth(){return 350}constructor(...e){var t,i,n;super(...e),i="document",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||et,i_=(0,eZ.injectable)()(ei=class extends tK.V{getGridCellComponent(e){return(0,tl.jsx)(iw.V,{...e})}constructor(...e){var t,i,n;super(...e),i="element",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||ei;var iz=i(64864);let iV=(0,eZ.injectable)()(en=class extends tK.V{getGridCellComponent(e){return(0,tl.jsx)(iz.a,{...e})}constructor(...e){var t,i,n;super(...e),i="language-select",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||en;var i$=i(74992);let iW=(0,eZ.injectable)()(er=class extends tK.V{getGridCellComponent(e){return(0,tl.jsx)(i$.V,{...e})}constructor(...e){var t,i,n;super(...e),i="multi-select",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||er;var iH=i(25529);let iG=(0,eZ.injectable)()(ea=class extends tK.V{getGridCellComponent(e){return(0,tl.jsx)(iH.z,{...e})}constructor(...e){var t,i,n;super(...e),i="number",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||ea,iU=(0,eZ.injectable)()(eo=class extends tK.V{getGridCellComponent(e){return(0,tl.jsx)(iw.V,{...(0,t5.G)(e,{allowedTypes:["data-object"]})})}getDefaultGridColumnWidth(){return 350}constructor(...e){var t,i,n;super(...e),i="object-link",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||eo,iq=(0,eZ.injectable)()(el=class extends tK.V{getGridCellComponent(e){return(0,tl.jsx)(iw.V,{...(0,t5.G)(e,{allowedTypes:["data-object"]})})}getDefaultGridColumnWidth(){return 350}constructor(...e){var t,i,n;super(...e),i="object",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||el;var iZ=i(46790);let iK=(0,eZ.injectable)()(es=class extends tK.V{getGridCellComponent(e){return(0,tl.jsx)(iZ.G,{...e})}constructor(...e){var t,i,n;super(...e),i="open-element",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||es,iJ=(0,eZ.injectable)()(ed=class extends tK.V{getGridCellComponent(e){return(0,tl.jsx)(t8._,{...e})}constructor(...e){var t,i,n;super(...e),i="select",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||ed;var iX=i(98817);let iQ=(0,eZ.injectable)()(ef=class extends tK.V{getGridCellComponent(e){return(0,tl.jsx)(iX.M,{...e})}getDefaultGridColumnWidth(){return 350}constructor(...e){var t,i,n;super(...e),i="input",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||ef;var iY=i(1986);let i0=(0,eZ.injectable)()(ec=class extends tK.V{getGridCellComponent(e){return(0,tl.jsx)(iY.N,{...e})}getDefaultGridColumnWidth(){return 400}constructor(...e){var t,i,n;super(...e),i="textarea",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||ec;var i1=i(52228);let i2=(0,eZ.injectable)()(eu=class extends tK.V{getGridCellComponent(e){return(0,tl.jsx)(i1.s,{...e})}constructor(...e){var t,i,n;super(...e),i="time",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||eu;var i3=i(78893);let i6=(0,eZ.injectable)()(em=class extends tK.V{getGridCellComponent(e){return(0,tl.jsx)(i3._,{...e})}constructor(...e){var t,i,n;super(...e),i="translate",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||em;var i4=i(53518),i8=i(70557),i7=i(6666),i5=i(7189),i9=i(83943),ne=i(23547),nt=i(60148),ni=i(37507),nn=i(78557),nr=i(60276),na=i(33387);class no extends e4.Z{}function nl(e,t,i){var n;return(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}no=(0,eq.gn)([(0,eZ.injectable)()],no);let ns=(0,eZ.injectable)()(ep=class{constructor(){nl(this,"id",void 0),nl(this,"label",void 0)}})||ep;var nd=i(16042),nf=i(54524),nc=i(36386),nu=i(26254),nm=i(56232);let{useCustomReportsListDrillDownOptionsQuery:np,useCustomReportsChartQuery:ng,useCustomReportsConfigAddMutation:nh,useCustomReportsConfigCloneMutation:nb,useCustomReportsColumnConfigListQuery:ny,useCustomReportsConfigUpdateMutation:nv,useCustomReportsConfigDeleteMutation:nx,useCustomReportsReportQuery:nj,useCustomReportsConfigGetTreeQuery:nw,useCustomReportExportCsvMutation:nC,useCustomReportsGetTreeQuery:nk}=nm.hi.enhanceEndpoints({endpoints:{customReportExportCsv:{invalidatesTags:()=>[]}}}),nT="name",nS="display",nD="export",nE="order",nM="filterType",nI="displayType",nL="filterDrilldown",nP="width",nN="label",nA="action";var nR=i(32833);let nO=[{value:"ASC",label:"ASC"},{value:"DESC",label:"DESC"}],nB=e=>({id:(0,nu.V)(),[nT]:e,[nS]:!0,[nD]:!0,[nE]:!0,[nM]:null,[nI]:null,[nL]:null,[nP]:null,[nN]:"",[nA]:""}),nF=e=>{var t;let{currentData:i,updateFormData:n}=e,{t:r}=(0,t7.useTranslation)(),a=(0,nR.N)(null==i?void 0:i.dataSourceConfig,1e3),{data:o,isError:l,error:s}=ny({name:i.name,bundleCustomReportsDataSourceConfig:{configuration:a}},{skip:(0,eY.isNil)(a)}),d=l&&"data"in s&&(null==(t=s.data)?void 0:t.message);(0,ts.useEffect)(()=>{if(!(0,eY.isNil)(o)){let e,t=o.items.map(e=>e.name),r=i.columnConfigurations??[];if((0,eY.isEmpty)(r))e=t.map(nB);else{let i=new Map(r.map(e=>[e.name,e])),n=[];t.forEach(e=>{i.has(e)?n.push(i.get(e)):n.push(nB(e))}),e=n}null==n||n({...i,columnConfigurations:e})}},[o]);let f=e=>{let{label:t,name:i}=e;return(0,tl.jsx)(tc.l.Item,{label:t,name:i,children:(0,tl.jsx)(nf.K,{})})};return(0,tl.jsxs)(nd.h.Panel,{border:!0,theme:"fieldset",title:"Sql",children:[f({label:r("reports.editor.source-definition.sql-select-field"),name:"sql"}),f({label:r("reports.editor.source-definition.sql-from-field"),name:"from"}),f({label:r("reports.editor.source-definition.sql-where-field"),name:"where"}),f({label:r("reports.editor.source-definition.sql-group-by-field"),name:"groupby"}),f({label:r("reports.editor.source-definition.sql-initial-field-order"),name:"orderby"}),(0,tl.jsx)(tc.l.Item,{label:r("reports.editor.source-definition.sql-initial-direction-order"),name:"orderbydir",children:(0,tl.jsx)(tC.P,{options:nO})}),l&&(0,tl.jsx)(nc.x,{type:"danger",children:d})]})};function n_(e,t,i){var n;return(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}let nz=(0,eZ.injectable)()(eg=class extends ns{getCustomReportData(e){return(0,tl.jsx)(nF,{...e})}constructor(...e){super(...e),n_(this,"id","sql"),n_(this,"label","Sql")}})||eg;var nV=i(14010),n$=i(43148),nW=i(27689),nH=i(36851),nG=i(80339),nU=i(84989),nq=i(72515),nZ=i(89885),nK=i(40293),nJ=i(36406),nX=i(15740),nQ=i(16),nY=i(45515),n0=i(94167),n1=i(1426),n2=i(90656),n3=i(85913),n6=i(46780),n4=i(23771),n8=i(1519),n7=i(28242),n5=i(44291),n9=i(74223),re=i(44489),rt=i(81402),ri=i(40374),rn=i(91626),rr=i(42993),ra=i(55280),ro=i(39742),rl=i(49288),rs=i(74592),rd=i(30370),rf=i(8713),rc=i(20767),ru=i(86256),rm=i(68297),rp=i(23745),rg=i(37725),rh=i(270),rb=i(97954),ry=i(86739),rv=i(4005),rx=i(28577),rj=i(36067),rw=i(66314),rC=i(82541),rk=i(35522),rT=i(9825),rS=i(85087),rD=i(23333),rE=i(47818),rM=i(31687),rI=i(25451),rL=i(26166),rP=i(10601),rN=i(769),rA=i(52855),rR=i(37603),rO=i(73922),rB=i(76126),rF=i(5561);function r_(e,t,i){var n;return(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}class rz extends rL.C{getObjectDataComponent(e){let t=(0,eY.merge)({},eA.e.wysiwyg.defaultEditorConfig.dataObject,(e=>{if((0,eY.isNil)(e)||(0,eY.isEmpty)(e))return{};try{let t=JSON.parse(e);return(0,eY.isObject)(t)?t:{}}catch(e){return console.error("Error while parsing toolbar config",e),{}}})(e.toolbarConfig)),i=(0,eY.toNumber)(e.maxCharacters)??0;return(0,tl.jsx)(rP.Z,{...e,context:rF.v.DATA_OBJECT,disabled:!0===e.noteditable,editorConfig:t,height:e.height??void 0,maxCharacters:0===i?void 0:i,width:(0,rN.s)(e.width,e.defaultFieldWidth.large)})}getGridCellPreviewComponent(e){let t=e.cellProps.getValue();return(0,eY.isNil)(t)?(0,tl.jsx)(tl.Fragment,{}):(0,tl.jsx)(rO.c,{children:(0,tl.jsx)(rB.Z,{html:t})})}getObjectDataFormItemProps(e){return{...super.getObjectDataFormItemProps(e),label:(0,tl.jsx)(rA.Q,{additionalIcons:(0,tl.jsx)(rR.J,{value:"drop-target"}),label:e.title,name:e.name})}}getDefaultGridColumnWidth(){return 400}constructor(...e){super(...e),r_(this,"id","wysiwyg"),r_(this,"inheritedMaskOverlay","form-element"),r_(this,"gridCellEditMode","edit-modal"),r_(this,"gridCellEditModalSettings",{modalSize:"XL",formLayout:"vertical"}),r_(this,"dynamicTypeFieldFilterType",eB.nC.get(eO.j["DynamicTypes/FieldFilter/String"]))}}class rV extends e4.Z{}rV=(0,eq.gn)([(0,eZ.injectable)()],rV);class r$ extends e4.Z{}r$=(0,eq.gn)([(0,eZ.injectable)()],r$);class rW{}rW=(0,eq.gn)([(0,eZ.injectable)()],rW);var rH=i(92409),rG=i(47625),rU=i(31176);let rq=e=>{let{children:t,title:i,border:n,collapsed:r,collapsible:a,noteditable:o}=e,l=t.map((e,t)=>({key:t,label:e.title,forceRender:!0,children:(0,tl.jsx)(rH.T,{...e,title:"",noteditable:o})}));return(0,tl.jsx)(rG.P,{border:n,collapsed:r,collapsible:a,title:i,children:(0,tl.jsx)(rU.UO,{accordion:!0,bordered:!0,items:l,size:"small"})})};var rZ=i(52309);let rK=e=>{let{children:t,collapsible:i,collapsed:n,noteditable:r}=e;return(0,tl.jsx)(rZ.k,{className:"w-full",gap:{x:"extra-small",y:0},children:t.map((e,t)=>(0,tl.jsx)(rZ.k,{flex:1,children:(0,tl.jsx)(rH.T,{...e,noteditable:r})},t))})};var rJ=i(51594);let rX=e=>{let{children:t,name:i,border:n,collapsed:r,collapsible:a,title:o,theme:l="card-with-highlight",noteditable:s,...d}=e,f="pimcore_root"===i,c=!0===s;return(0,tl.jsx)(rJ.s,{border:n,collapsed:r,collapsible:a,name:i,noteditable:c,theme:l,title:o,children:t.map((e,t)=>(0,ts.createElement)(rH.T,{...function(e,t){let i="tabpanel"===e.fieldType||"tabpanel"===e.fieldtype,n={...e};return i&&t&&(n.hasStickyHeader=!0),n}(e,f),key:t,noteditable:c||e.noteditable}))})};var rQ=i(31031);let rY=((n={}).North="north",n.South="south",n.East="east",n.West="west",n.Center="center",n),r0=e=>{let{children:t,noteditable:i,...n}=e,r=[],a=[],o={};t.forEach(e=>{let{region:t}=e;(""===t||null===t)&&(t=rY.Center);let n=(o[t]??0)+1;r.push({region:`${t}${n}`,component:(0,ts.createElement)(rH.T,{...e,key:e.name,noteditable:i})}),o[t]=n});let l=e=>{for(let t=0;t0;if(d||(s=1),o[rY.North]>0&&l(rY.North),o[rY.South]>0&&l(rY.South),d){let e="",t=t=>{for(let i=0;i0&&t(rY.West),o[rY.Center]>0&&t(rY.Center),o[rY.East]>0&&t(rY.East),a.push(e.trim())}return(0,tl.jsx)(rG.P,{collapsed:n.collapsed,collapsible:n.collapsible,title:n.title,children:(0,tl.jsx)(rQ.y,{items:r,layoutDefinition:a})})};var r1=i(42281);let r2=e=>{let{children:t,noteditable:i,...n}=e,r=t.map((e,t)=>({key:e.name??t.toString(),label:e.title??e.name??`Tab ${t+1}`,children:(0,tl.jsx)(rH.T,{...e,noteditable:i})}));return(0,tl.jsx)(r1.t,{...n,items:r})},r3=e=>(0,tl.jsx)(r2,{...e}),r6=e=>(0,tl.jsx)(rG.P,{border:e.border,collapsed:e.collapsed,collapsible:e.collapsible,title:e.title,children:(0,tl.jsx)(rB.Z,{html:e.html})});class r4{constructor(){this.allowClassSelectionInSearch=!1}}r4=(0,eq.gn)([(0,eZ.injectable)()],r4);class r8 extends r4{constructor(...e){super(...e),this.id="folder"}}r8=(0,eq.gn)([(0,eZ.injectable)()],r8);class r7 extends r4{constructor(...e){super(...e),this.id="object",this.allowClassSelectionInSearch=!0}}r7=(0,eq.gn)([(0,eZ.injectable)()],r7);class r5 extends r4{constructor(...e){super(...e),this.id="variant",this.allowClassSelectionInSearch=!0}}r5=(0,eq.gn)([(0,eZ.injectable)()],r5);var r9=i(90076),ae=i(70202),at=i(97433),ai=i(98550),an=i(11173);let ar=e=>{let{groupLayout:t,currentLayoutData:i,updateCurrentLayoutData:n}=e,{name:r}=(0,at.Y)(),{operations:a}=(0,r9.f)(),{id:o}=(0,il.i)(),l=(0,an.U8)(),{t:s}=(0,t7.useTranslation)(),d=(0,eY.isArray)(r)?r[r.length-1]:r,f=e=>{e.stopPropagation(),l.confirm({content:(0,tl.jsx)("span",{children:s("element.delete.confirmation.text")}),okText:s("yes"),cancelText:s("no"),onOk:()=>{n(i.filter(e=>e.id!==(null==t?void 0:t.id))),a.remove(String(null==t?void 0:t.id))}})};return(0,ts.useMemo)(()=>{var e;return(0,tl.jsx)(rG.P,{border:!1,collapsed:!1,collapsible:!0,extra:(0,tl.jsx)(rZ.k,{className:"w-full",children:(0,tl.jsx)(ai.z,{color:"default",icon:(0,tl.jsx)(rR.J,{value:"trash"}),onClick:f,variant:"filled"})}),extraPosition:"start",theme:"border-highlight",title:null==t?void 0:t.name,children:null==t||null==(e=t.keys)?void 0:e.map(e=>(0,tl.jsx)(rH.T,{...e.definition,name:e.id},e.id))})},[t,o,d,i])};var aa=i(26597),ao=i(89044);let al=e=>{let{currentLanguage:t}=(0,aa.X)(),[i,n]=(0,ts.useState)(e.initialValue??"default");return(0,tl.jsx)(ao.r,{onChange:t=>{var i;n(t),null==(i=e.onChange)||i.call(e,t)},options:[{value:"default",label:"Default"},{value:"current-language",label:`Current language (${t.toUpperCase()})`}],value:i})};var as=i(38447);let ad=(0,ts.createContext)(void 0),af=e=>{let{children:t}=e,[i,n]=(0,ts.useState)(!1),[r,a]=(0,ts.useState)({}),[o,l]=(0,ts.useState)([]),s=(0,ts.useCallback)(e=>r[e]??"",[r]),d=(0,ts.useCallback)((e,t)=>{a(i=>({...i,[e]:t}))},[]),f=()=>{n(!0)},c=()=>{n(!1)},u=(0,ts.useMemo)(()=>({isOpen:i,open:f,close:c,getSearchValue:s,setSearchValue:d,currentLayoutData:o,setCurrentLayoutData:l}),[s,d,i,f,c,o,l]);return(0,tl.jsx)(ad.Provider,{value:u,children:t})},ac=()=>{let e=(0,ts.useContext)(ad);if(void 0===e)throw Error("useClassificationStore must be used within a ClassificationStoreProvider");return{isOpenModal:e.isOpen,openModal:e.open,closeModal:e.close,setSearchValue:e.setSearchValue,getSearchValue:e.getSearchValue,currentLayoutData:e.currentLayoutData,updateCurrentLayoutData:e.setCurrentLayoutData}},au=e=>{let[t,i]=(0,ts.useState)("default"),{t:n}=(0,t7.useTranslation)(),{openModal:r,currentLayoutData:a,updateCurrentLayoutData:o}=ac(),{values:l}=(0,r9.f)(),{activeGroups:s,groupCollectionMapping:d,...f}=l,{currentLanguage:c}=(0,aa.X)(),u="default",m=e.localized??!1;(0,ts.useEffect)(()=>{let t=e.activeGroupDefinitions??[],i=(0,eY.isEmpty)(a)?t:a;o((0,eY.isObject)(i)&&!(0,eY.isArray)(i)?Object.values(i):i)},[]);let p=e=>{i(e)};return"current-language"===t&&(u=c),(0,ts.useMemo)(()=>(0,tl.jsxs)(rG.P,{border:!0,collapsed:!1,collapsible:!0,extra:(0,tl.jsxs)(rZ.k,{align:"center",className:"w-full",justify:"space-between",children:[(0,tl.jsx)(ai.z,{color:"default",icon:(0,tl.jsx)(rR.J,{value:"folder-search"}),onClick:e=>{e.stopPropagation(),r()},variant:"filled",children:n("add")}),m?(0,tl.jsx)(al,{initialValue:u,onChange:p}):(0,tl.jsx)(tl.Fragment,{})]}),extraPosition:"start",theme:"default",title:e.title,children:[(0,tl.jsx)(as.T,{className:"w-full",direction:"vertical",size:"small",children:Object.keys((0,eY.isObject)(f)?f:{}).map(e=>(0,tl.jsx)(tc.l.Group,{name:[e,u],children:(0,tl.jsx)(ar,{currentLayoutData:a,groupLayout:(0,eY.find)(a,{id:parseInt(e)}),updateCurrentLayoutData:o})},`${e}`))}),(0,tl.jsx)(tc.l.Item,{name:["activeGroups"],style:{display:"none"},children:(0,tl.jsx)(ae.I,{type:"hidden",value:s??{}})}),(0,tl.jsx)(tc.l.Item,{name:["groupCollectionMapping"],style:{display:"none"},children:(0,tl.jsx)(ae.I,{type:"hidden",value:d??{}})})]}),[l,u,a])};var am=i(90165),ap=i(5768);let ag="deleted",ah=e=>{if(!(0,eY.isPlainObject)(e))return[];let t=[];return(0,eY.forEach)(Object.keys(e),i=>{let n=e[i];(0,eY.isPlainObject)(n)&&(0,eY.forEach)(Object.keys(n),e=>{let r=n[e];(0,eY.isPlainObject)(r)&&(0,eY.forEach)(Object.keys(r),n=>{t.push(ab([i,e,n]))})}),((0,eY.isArray)(n)&&0===n.length||["activeGroups","groupCollectionMapping"].includes(i))&&t.push(ab([i]))}),t},ab=e=>Array.isArray(e)?e.join("."):e;var ay=i(97241),av=i(81655);let ax=(0,ia.createStyles)(e=>{let{css:t,token:i}=e;return{titleIcon:t` + `}});var io=i(35015),is=i(81343),id=i(74347);let ic=e=>{let{id:t,elementType:i}=(0,io.i)(),{data:n,isLoading:r,isError:a,error:l}=(0,it.KD)({elementType:i,id:t,page:1,pageSize:9999});a&&(0,is.ZP)(new id.Z(l));let o=[];r||void 0===n||(o=n.items);let s=o.map(e=>{var t;return{value:e.id,displayValue:e.versionCount,label:(0,to.jsxs)("div",{className:"version-id__select__label",children:[(0,to.jsxs)("div",{children:[(0,to.jsx)("b",{children:e.versionCount}),(0,to.jsxs)("span",{className:"version-id__selection-item-hidden",children:[" | ",e.user.name??"not found"]})]}),(0,to.jsx)("div",{className:"version-id__selection-item-hidden",children:(t=e.date,ir().format(new Date(1e3*t),"datetime",ir().language,{dateStyle:"short",timeStyle:"short"}))})]})}}),{styles:d}=il();return(0,to.jsx)("div",{className:d.select,children:(0,to.jsx)(t8._,{...(0,t5.G)(e,{options:s})})})},iu=(0,eZ.injectable)()($=class extends tK.V{getGridCellComponent(e){return(0,to.jsx)(ic,{...e})}constructor(...e){var t,i,n;super(...e),i="version-id-select",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||$;var im=i(47241);let ip=(0,eZ.injectable)()(W=class extends tK.V{getGridCellComponent(e){return(0,to.jsx)(im.u,{...e})}constructor(...e){var t,i,n;super(...e),i="asset-version-preview-field-label",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||W;var ig=i(77),ih=i(45114);let ib={text:"input",bool:"checkbox",document:"element",object:"element",asset:"element"},iy=e=>{let t=e.row.original.type,i=(0,eB.$1)("DynamicTypes/GridCellRegistry"),n=ib[t]??t,{mapToElementType:r}=(0,ig.f)();return(0,to.jsx)(to.Fragment,{children:(()=>{if(!i.hasDynamicType(n))return(0,to.jsx)(tN.Alert,{message:"cell type not supported",style:{display:"flex"},type:"warning"});let t=i.getDynamicType(n),a={...e,...(0,ih.addColumnConfig)(e,{allowedTypes:[r(String(e.row.original.type),!0)]}),getElementInfo:e=>{let t=e.row.original,i=t.data;return{elementType:r(String(t.type),!0),id:i.id,fullPath:i.fullPath}}};return t.getGridCellComponent(a)})()})},iv=(0,eZ.injectable)()(H=class extends tK.V{getGridCellComponent(e){return(0,to.jsx)(iy,{...e})}constructor(...e){var t,i,n;super(...e),i="website-settings-value",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||H;var ix=i(94636);let ij=(0,eZ.injectable)()(G=class extends tK.V{getGridCellComponent(e){return(0,to.jsx)(ix._,{...e})}getDefaultGridColumnWidth(){return 100}constructor(...e){var t,i,n;super(...e),i="asset-actions",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||G;var iw=i(98099);let iC=(0,eZ.injectable)()(U=class extends tK.V{getGridCellComponent(e){return(0,to.jsx)(iw.V,{...(0,t5.G)(e,{allowedTypes:["asset"]})})}getDefaultGridColumnWidth(){return 350}constructor(...e){var t,i,n;super(...e),i="asset-link",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||U;var ik=i(95324);let iT=(0,eZ.injectable)()(q=class extends tK.V{getGridCellComponent(e){return(0,to.jsx)(ik._,{...e})}constructor(...e){var t,i,n;super(...e),i="asset-preview",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||q,iS=(0,eZ.injectable)()(Z=class extends tK.V{getGridCellComponent(e){return(0,to.jsx)(iw.V,{...(0,t5.G)(e,{allowedTypes:["asset"]})})}getDefaultGridColumnWidth(){return 350}constructor(...e){var t,i,n;super(...e),i="asset",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||Z;var iD=i(70883),iE=i(58694);let iM=(0,eZ.injectable)()(K=class extends tK.V{getGridCellComponent(e){return(0,to.jsx)(iE.p,{...e})}getDefaultGridColumnWidth(){return 100}constructor(...e){var t,i,n;super(...e),i="data-object-actions",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||K;var iI=i(30062),iL=i(8151);let iP=(0,eZ.injectable)()(J=class extends tK.V{getGridCellComponent(e){return(0,to.jsx)(iL.N,{...e})}getDefaultGridColumnWidth(e){var t,i;let n=null==e||null==(t=e.config)?void 0:t.dataObjectType,r={...null==(i=e.config)?void 0:i.dataObjectConfig.fieldDefinition,defaultFieldWidth:tx.uK};return(0,iI.bq)(n,r)}constructor(...e){var t,i,n;super(...e),i="dataobject.adapter",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||J,iN=(0,eZ.injectable)()(X=class extends tK.V{getGridCellComponent(e){return(0,to.jsx)(iL.N,{...e})}getDefaultGridColumnWidth(e){var t,i;let n=null==e||null==(t=e.config)?void 0:t.dataObjectType,r={...null==(i=e.config)?void 0:i.dataObjectConfig.fieldDefinition,defaultFieldWidth:tx.uK};return(0,iI.bq)(n,r)}constructor(...e){var t,i,n;super(...e),i="dataobject.objectbrick",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||X;var iA=i(61308);let iR=(0,eZ.injectable)()(Q=class extends tK.V{getGridCellComponent(e){return(0,to.jsx)(iA.T,{...e})}constructor(...e){var t,i,n;super(...e),i="datetime",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||Q,iO=(0,eZ.injectable)()(Y=class extends tK.V{getGridCellComponent(e){return(0,to.jsx)(iA.T,{...e})}constructor(...e){var t,i,n;super(...e),i="date",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||Y,iB=(0,eZ.injectable)()(ee=class extends tK.V{getGridCellComponent(e){return(0,to.jsx)(iw.V,{...(0,t5.G)(e,{allowedTypes:["document"]})})}getDefaultGridColumnWidth(){return 350}constructor(...e){var t,i,n;super(...e),i="document-link",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||ee,iF=(0,eZ.injectable)()(et=class extends tK.V{getGridCellComponent(e){return(0,to.jsx)(iw.V,{...(0,t5.G)(e,{allowedTypes:["document"]})})}getDefaultGridColumnWidth(){return 350}constructor(...e){var t,i,n;super(...e),i="document",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||et,i_=(0,eZ.injectable)()(ei=class extends tK.V{getGridCellComponent(e){return(0,to.jsx)(iw.V,{...e})}constructor(...e){var t,i,n;super(...e),i="element",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||ei;var iz=i(64864);let iV=(0,eZ.injectable)()(en=class extends tK.V{getGridCellComponent(e){return(0,to.jsx)(iz.a,{...e})}constructor(...e){var t,i,n;super(...e),i="language-select",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||en;var i$=i(74992);let iW=(0,eZ.injectable)()(er=class extends tK.V{getGridCellComponent(e){return(0,to.jsx)(i$.V,{...e})}constructor(...e){var t,i,n;super(...e),i="multi-select",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||er;var iH=i(25529);let iG=(0,eZ.injectable)()(ea=class extends tK.V{getGridCellComponent(e){return(0,to.jsx)(iH.z,{...e})}constructor(...e){var t,i,n;super(...e),i="number",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||ea,iU=(0,eZ.injectable)()(el=class extends tK.V{getGridCellComponent(e){return(0,to.jsx)(iw.V,{...(0,t5.G)(e,{allowedTypes:["data-object"]})})}getDefaultGridColumnWidth(){return 350}constructor(...e){var t,i,n;super(...e),i="object-link",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||el,iq=(0,eZ.injectable)()(eo=class extends tK.V{getGridCellComponent(e){return(0,to.jsx)(iw.V,{...(0,t5.G)(e,{allowedTypes:["data-object"]})})}getDefaultGridColumnWidth(){return 350}constructor(...e){var t,i,n;super(...e),i="object",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||eo;var iZ=i(46790);let iK=(0,eZ.injectable)()(es=class extends tK.V{getGridCellComponent(e){return(0,to.jsx)(iZ.G,{...e})}constructor(...e){var t,i,n;super(...e),i="open-element",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||es,iJ=(0,eZ.injectable)()(ed=class extends tK.V{getGridCellComponent(e){return(0,to.jsx)(t8._,{...e})}constructor(...e){var t,i,n;super(...e),i="select",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||ed;var iX=i(98817);let iQ=(0,eZ.injectable)()(ef=class extends tK.V{getGridCellComponent(e){return(0,to.jsx)(iX.M,{...e})}getDefaultGridColumnWidth(){return 350}constructor(...e){var t,i,n;super(...e),i="input",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||ef;var iY=i(1986);let i0=(0,eZ.injectable)()(ec=class extends tK.V{getGridCellComponent(e){return(0,to.jsx)(iY.N,{...e})}getDefaultGridColumnWidth(){return 400}constructor(...e){var t,i,n;super(...e),i="textarea",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||ec;var i1=i(52228);let i2=(0,eZ.injectable)()(eu=class extends tK.V{getGridCellComponent(e){return(0,to.jsx)(i1.s,{...e})}constructor(...e){var t,i,n;super(...e),i="time",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||eu;var i3=i(78893);let i6=(0,eZ.injectable)()(em=class extends tK.V{getGridCellComponent(e){return(0,to.jsx)(i3._,{...e})}constructor(...e){var t,i,n;super(...e),i="translate",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||em;var i4=i(53518),i8=i(70557),i7=i(6666),i5=i(7189),i9=i(83943),ne=i(23547),nt=i(60148),ni=i(37507),nn=i(78557),nr=i(60276),na=i(33387);class nl extends e4.Z{}function no(e,t,i){var n;return(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}nl=(0,eq.gn)([(0,eZ.injectable)()],nl);let ns=(0,eZ.injectable)()(ep=class{constructor(){no(this,"id",void 0),no(this,"label",void 0)}})||ep;var nd=i(16042),nf=i(54524),nc=i(36386),nu=i(26254),nm=i(56232);let{useCustomReportsListDrillDownOptionsQuery:np,useCustomReportsChartQuery:ng,useCustomReportsConfigAddMutation:nh,useCustomReportsConfigCloneMutation:nb,useCustomReportsColumnConfigListQuery:ny,useCustomReportsConfigUpdateMutation:nv,useCustomReportsConfigDeleteMutation:nx,useCustomReportsReportQuery:nj,useCustomReportsConfigGetTreeQuery:nw,useCustomReportExportCsvMutation:nC,useCustomReportsGetTreeQuery:nk}=nm.hi.enhanceEndpoints({endpoints:{customReportExportCsv:{invalidatesTags:()=>[]}}}),nT="name",nS="display",nD="export",nE="order",nM="filterType",nI="displayType",nL="filterDrilldown",nP="width",nN="label",nA="action";var nR=i(32833);let nO=[{value:"ASC",label:"ASC"},{value:"DESC",label:"DESC"}],nB=e=>({id:(0,nu.V)(),[nT]:e,[nS]:!0,[nD]:!0,[nE]:!0,[nM]:null,[nI]:null,[nL]:null,[nP]:null,[nN]:"",[nA]:""}),nF=e=>{var t;let{currentData:i,updateFormData:n}=e,{t:r}=(0,t7.useTranslation)(),a=(0,nR.N)(null==i?void 0:i.dataSourceConfig,1e3),{data:l,isError:o,error:s}=ny({name:i.name,bundleCustomReportsDataSourceConfig:{configuration:a}},{skip:(0,eY.isNil)(a)}),d=o&&"data"in s&&(null==(t=s.data)?void 0:t.message);(0,ts.useEffect)(()=>{if(!(0,eY.isNil)(l)){let e,t=l.items.map(e=>e.name),r=i.columnConfigurations??[];if((0,eY.isEmpty)(r))e=t.map(nB);else{let i=new Map(r.map(e=>[e.name,e])),n=[];t.forEach(e=>{i.has(e)?n.push(i.get(e)):n.push(nB(e))}),e=n}null==n||n({...i,columnConfigurations:e})}},[l]);let f=e=>{let{label:t,name:i}=e;return(0,to.jsx)(tc.l.Item,{label:t,name:i,children:(0,to.jsx)(nf.K,{})})};return(0,to.jsxs)(nd.h.Panel,{border:!0,theme:"fieldset",title:"Sql",children:[f({label:r("reports.editor.source-definition.sql-select-field"),name:"sql"}),f({label:r("reports.editor.source-definition.sql-from-field"),name:"from"}),f({label:r("reports.editor.source-definition.sql-where-field"),name:"where"}),f({label:r("reports.editor.source-definition.sql-group-by-field"),name:"groupby"}),f({label:r("reports.editor.source-definition.sql-initial-field-order"),name:"orderby"}),(0,to.jsx)(tc.l.Item,{label:r("reports.editor.source-definition.sql-initial-direction-order"),name:"orderbydir",children:(0,to.jsx)(tC.P,{options:nO})}),o&&(0,to.jsx)(nc.x,{type:"danger",children:d})]})};function n_(e,t,i){var n;return(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}let nz=(0,eZ.injectable)()(eg=class extends ns{getCustomReportData(e){return(0,to.jsx)(nF,{...e})}constructor(...e){super(...e),n_(this,"id","sql"),n_(this,"label","Sql")}})||eg;var nV=i(14010),n$=i(43148),nW=i(27689),nH=i(36851),nG=i(80339),nU=i(84989),nq=i(72515),nZ=i(89885),nK=i(40293),nJ=i(36406),nX=i(15740),nQ=i(16),nY=i(45515),n0=i(94167),n1=i(1426),n2=i(90656),n3=i(85913),n6=i(46780),n4=i(23771),n8=i(1519),n7=i(28242),n5=i(44291),n9=i(74223),re=i(44489),rt=i(81402),ri=i(40374),rn=i(91626),rr=i(42993),ra=i(55280),rl=i(39742),ro=i(49288),rs=i(74592),rd=i(30370),rf=i(8713),rc=i(20767),ru=i(86256),rm=i(68297),rp=i(23745),rg=i(37725),rh=i(270),rb=i(97954),ry=i(86739),rv=i(4005),rx=i(28577),rj=i(36067),rw=i(66314),rC=i(82541),rk=i(35522),rT=i(9825),rS=i(85087),rD=i(23333),rE=i(47818),rM=i(31687),rI=i(25451),rL=i(26166),rP=i(10601),rN=i(769),rA=i(52855),rR=i(37603),rO=i(73922),rB=i(76126),rF=i(5561);function r_(e,t,i){var n;return(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}class rz extends rL.C{getObjectDataComponent(e){let t=(0,eY.merge)({},eA.e.wysiwyg.defaultEditorConfig.dataObject,(e=>{if((0,eY.isNil)(e)||(0,eY.isEmpty)(e))return{};try{let t=JSON.parse(e);return(0,eY.isObject)(t)?t:{}}catch(e){return console.error("Error while parsing toolbar config",e),{}}})(e.toolbarConfig)),i=(0,eY.toNumber)(e.maxCharacters)??0;return(0,to.jsx)(rP.Z,{...e,context:rF.v.DATA_OBJECT,disabled:!0===e.noteditable,editorConfig:t,height:e.height??void 0,maxCharacters:0===i?void 0:i,width:(0,rN.s)(e.width,e.defaultFieldWidth.large)})}getGridCellPreviewComponent(e){let t=e.cellProps.getValue();return(0,eY.isNil)(t)?(0,to.jsx)(to.Fragment,{}):(0,to.jsx)(rO.c,{children:(0,to.jsx)(rB.Z,{html:t})})}getObjectDataFormItemProps(e){return{...super.getObjectDataFormItemProps(e),label:(0,to.jsx)(rA.Q,{additionalIcons:(0,to.jsx)(rR.J,{value:"drop-target"}),label:e.title,name:e.name})}}getDefaultGridColumnWidth(){return 400}constructor(...e){super(...e),r_(this,"id","wysiwyg"),r_(this,"inheritedMaskOverlay","form-element"),r_(this,"gridCellEditMode","edit-modal"),r_(this,"gridCellEditModalSettings",{modalSize:"XL",formLayout:"vertical"}),r_(this,"dynamicTypeFieldFilterType",eB.nC.get(eO.j["DynamicTypes/FieldFilter/String"]))}}class rV extends e4.Z{}rV=(0,eq.gn)([(0,eZ.injectable)()],rV);class r$ extends e4.Z{}r$=(0,eq.gn)([(0,eZ.injectable)()],r$);class rW{}rW=(0,eq.gn)([(0,eZ.injectable)()],rW);var rH=i(92409),rG=i(47625),rU=i(31176);let rq=e=>{let{children:t,title:i,border:n,collapsed:r,collapsible:a,noteditable:l}=e,o=t.map((e,t)=>({key:t,label:e.title,forceRender:!0,children:(0,to.jsx)(rH.T,{...e,title:"",noteditable:l})}));return(0,to.jsx)(rG.P,{border:n,collapsed:r,collapsible:a,title:i,children:(0,to.jsx)(rU.UO,{accordion:!0,bordered:!0,items:o,size:"small"})})};var rZ=i(52309);let rK=e=>{let{children:t,collapsible:i,collapsed:n,noteditable:r}=e;return(0,to.jsx)(rZ.k,{className:"w-full",gap:{x:"extra-small",y:0},children:t.map((e,t)=>(0,to.jsx)(rZ.k,{flex:1,children:(0,to.jsx)(rH.T,{...e,noteditable:r})},t))})};var rJ=i(51594);let rX=e=>{let{children:t,name:i,border:n,collapsed:r,collapsible:a,title:l,theme:o="card-with-highlight",noteditable:s,...d}=e,f="pimcore_root"===i,c=!0===s;return(0,to.jsx)(rJ.s,{border:n,collapsed:r,collapsible:a,name:i,noteditable:c,theme:o,title:l,children:t.map((e,t)=>(0,ts.createElement)(rH.T,{...function(e,t){let i="tabpanel"===e.fieldType||"tabpanel"===e.fieldtype,n={...e};return i&&t&&(n.hasStickyHeader=!0),n}(e,f),key:t,noteditable:c||e.noteditable}))})};var rQ=i(31031);let rY=((n={}).North="north",n.South="south",n.East="east",n.West="west",n.Center="center",n),r0=e=>{let{children:t,noteditable:i,...n}=e,r=[],a=[],l={};t.forEach(e=>{let{region:t}=e;(""===t||null===t)&&(t=rY.Center);let n=(l[t]??0)+1;r.push({region:`${t}${n}`,component:(0,ts.createElement)(rH.T,{...e,key:e.name,noteditable:i})}),l[t]=n});let o=e=>{for(let t=0;t0;if(d||(s=1),l[rY.North]>0&&o(rY.North),l[rY.South]>0&&o(rY.South),d){let e="",t=t=>{for(let i=0;i0&&t(rY.West),l[rY.Center]>0&&t(rY.Center),l[rY.East]>0&&t(rY.East),a.push(e.trim())}return(0,to.jsx)(rG.P,{collapsed:n.collapsed,collapsible:n.collapsible,title:n.title,children:(0,to.jsx)(rQ.y,{items:r,layoutDefinition:a})})};var r1=i(42281);let r2=e=>{let{children:t,noteditable:i,...n}=e,r=t.map((e,t)=>({key:e.name??t.toString(),label:e.title??e.name??`Tab ${t+1}`,children:(0,to.jsx)(rH.T,{...e,noteditable:i})}));return(0,to.jsx)(r1.t,{...n,items:r})},r3=e=>(0,to.jsx)(r2,{...e}),r6=e=>(0,to.jsx)(rG.P,{border:e.border,collapsed:e.collapsed,collapsible:e.collapsible,title:e.title,children:(0,to.jsx)(rB.Z,{html:e.html})});class r4{constructor(){this.allowClassSelectionInSearch=!1}}r4=(0,eq.gn)([(0,eZ.injectable)()],r4);class r8 extends r4{constructor(...e){super(...e),this.id="folder"}}r8=(0,eq.gn)([(0,eZ.injectable)()],r8);class r7 extends r4{constructor(...e){super(...e),this.id="object",this.allowClassSelectionInSearch=!0}}r7=(0,eq.gn)([(0,eZ.injectable)()],r7);class r5 extends r4{constructor(...e){super(...e),this.id="variant",this.allowClassSelectionInSearch=!0}}r5=(0,eq.gn)([(0,eZ.injectable)()],r5);var r9=i(90076),ae=i(70202),at=i(97433),ai=i(98550),an=i(11173);let ar=e=>{let{groupLayout:t,currentLayoutData:i,updateCurrentLayoutData:n}=e,{name:r}=(0,at.Y)(),{operations:a}=(0,r9.f)(),{id:l}=(0,io.i)(),o=(0,an.U8)(),{t:s}=(0,t7.useTranslation)(),d=(0,eY.isArray)(r)?r[r.length-1]:r,f=e=>{e.stopPropagation(),o.confirm({content:(0,to.jsx)("span",{children:s("element.delete.confirmation.text")}),okText:s("yes"),cancelText:s("no"),onOk:()=>{n(i.filter(e=>e.id!==(null==t?void 0:t.id))),a.remove(String(null==t?void 0:t.id))}})};return(0,ts.useMemo)(()=>{var e;return(0,to.jsx)(rG.P,{border:!1,collapsed:!1,collapsible:!0,extra:(0,to.jsx)(rZ.k,{className:"w-full",children:(0,to.jsx)(ai.z,{color:"default",icon:(0,to.jsx)(rR.J,{value:"trash"}),onClick:f,variant:"filled"})}),extraPosition:"start",theme:"border-highlight",title:null==t?void 0:t.name,children:null==t||null==(e=t.keys)?void 0:e.map(e=>(0,to.jsx)(rH.T,{...e.definition,name:e.id},e.id))})},[t,l,d,i])};var aa=i(26597),al=i(89044);let ao=e=>{let{currentLanguage:t}=(0,aa.X)(),[i,n]=(0,ts.useState)(e.initialValue??"default");return(0,to.jsx)(al.r,{onChange:t=>{var i;n(t),null==(i=e.onChange)||i.call(e,t)},options:[{value:"default",label:"Default"},{value:"current-language",label:`Current language (${t.toUpperCase()})`}],value:i})};var as=i(38447);let ad=(0,ts.createContext)(void 0),af=e=>{let{children:t}=e,[i,n]=(0,ts.useState)(!1),[r,a]=(0,ts.useState)({}),[l,o]=(0,ts.useState)([]),s=(0,ts.useCallback)(e=>r[e]??"",[r]),d=(0,ts.useCallback)((e,t)=>{a(i=>({...i,[e]:t}))},[]),f=()=>{n(!0)},c=()=>{n(!1)},u=(0,ts.useMemo)(()=>({isOpen:i,open:f,close:c,getSearchValue:s,setSearchValue:d,currentLayoutData:l,setCurrentLayoutData:o}),[s,d,i,f,c,l,o]);return(0,to.jsx)(ad.Provider,{value:u,children:t})},ac=()=>{let e=(0,ts.useContext)(ad);if(void 0===e)throw Error("useClassificationStore must be used within a ClassificationStoreProvider");return{isOpenModal:e.isOpen,openModal:e.open,closeModal:e.close,setSearchValue:e.setSearchValue,getSearchValue:e.getSearchValue,currentLayoutData:e.currentLayoutData,updateCurrentLayoutData:e.setCurrentLayoutData}},au=e=>{let[t,i]=(0,ts.useState)("default"),{t:n}=(0,t7.useTranslation)(),{openModal:r,currentLayoutData:a,updateCurrentLayoutData:l}=ac(),{values:o}=(0,r9.f)(),{activeGroups:s,groupCollectionMapping:d,...f}=o,{currentLanguage:c}=(0,aa.X)(),u="default",m=e.localized??!1;(0,ts.useEffect)(()=>{let t=e.activeGroupDefinitions??[],i=(0,eY.isEmpty)(a)?t:a;l((0,eY.isObject)(i)&&!(0,eY.isArray)(i)?Object.values(i):i)},[]);let p=e=>{i(e)};return"current-language"===t&&(u=c),(0,ts.useMemo)(()=>(0,to.jsxs)(rG.P,{border:!0,collapsed:!1,collapsible:!0,extra:(0,to.jsxs)(rZ.k,{align:"center",className:"w-full",justify:"space-between",children:[(0,to.jsx)(ai.z,{color:"default",icon:(0,to.jsx)(rR.J,{value:"folder-search"}),onClick:e=>{e.stopPropagation(),r()},variant:"filled",children:n("add")}),m?(0,to.jsx)(ao,{initialValue:u,onChange:p}):(0,to.jsx)(to.Fragment,{})]}),extraPosition:"start",theme:"default",title:e.title,children:[(0,to.jsx)(as.T,{className:"w-full",direction:"vertical",size:"small",children:Object.keys((0,eY.isObject)(f)?f:{}).map(e=>(0,to.jsx)(tc.l.Group,{name:[e,u],children:(0,to.jsx)(ar,{currentLayoutData:a,groupLayout:(0,eY.find)(a,{id:parseInt(e)}),updateCurrentLayoutData:l})},`${e}`))}),(0,to.jsx)(tc.l.Item,{name:["activeGroups"],style:{display:"none"},children:(0,to.jsx)(ae.I,{type:"hidden",value:s??{}})}),(0,to.jsx)(tc.l.Item,{name:["groupCollectionMapping"],style:{display:"none"},children:(0,to.jsx)(ae.I,{type:"hidden",value:d??{}})})]}),[o,u,a])};var am=i(90165),ap=i(5768);let ag="deleted",ah=e=>{if(!(0,eY.isPlainObject)(e))return[];let t=[];return(0,eY.forEach)(Object.keys(e),i=>{let n=e[i];(0,eY.isPlainObject)(n)&&(0,eY.forEach)(Object.keys(n),e=>{let r=n[e];(0,eY.isPlainObject)(r)&&(0,eY.forEach)(Object.keys(r),n=>{t.push(ab([i,e,n]))})}),((0,eY.isArray)(n)&&0===n.length||["activeGroups","groupCollectionMapping"].includes(i))&&t.push(ab([i]))}),t},ab=e=>Array.isArray(e)?e.join("."):e;var ay=i(97241),av=i(81655);let ax=(0,ia.createStyles)(e=>{let{css:t,token:i}=e;return{titleIcon:t` &.anticon { margin-right: 0 !important; } - `}});var aj=i(91936),aw=i(42125);let aC=aw.api.enhanceEndpoints({addTagTypes:["Classification Store"]}).injectEndpoints({endpoints:e=>({classificationStoreGetCollections:e.query({query:e=>({url:"/pimcore-studio/api/classification-store/collections",params:{storeId:e.storeId,classId:e.classId,page:e.page,pageSize:e.pageSize,fieldName:e.fieldName,searchTerm:e.searchTerm}}),providesTags:["Classification Store"]}),classificationStoreGetGroups:e.query({query:e=>({url:"/pimcore-studio/api/classification-store/groups",params:{storeId:e.storeId,classId:e.classId,searchTerm:e.searchTerm,page:e.page,pageSize:e.pageSize,fieldName:e.fieldName}}),providesTags:["Classification Store"]}),classificationStoreGetKeyGroupRelations:e.query({query:e=>({url:"/pimcore-studio/api/classification-store/key-group-relations",params:{storeId:e.storeId,classId:e.classId,searchTerm:e.searchTerm,page:e.page,pageSize:e.pageSize,fieldName:e.fieldName}}),providesTags:["Classification Store"]}),classificationStoreGetLayoutByCollection:e.query({query:e=>({url:`/pimcore-studio/api/classification-store/layout-by-collection/${e.collectionId}`,params:{objectId:e.objectId,fieldName:e.fieldName}}),providesTags:["Classification Store"]}),classificationStoreGetLayoutByGroup:e.query({query:e=>({url:`/pimcore-studio/api/classification-store/layout-by-group/${e.groupId}`,params:{objectId:e.objectId,fieldName:e.fieldName}}),providesTags:["Classification Store"]})}),overrideExisting:!1}),{useClassificationStoreGetCollectionsQuery:ak,useClassificationStoreGetGroupsQuery:aT,useClassificationStoreGetKeyGroupRelationsQuery:aS,useClassificationStoreGetLayoutByCollectionQuery:aD,useClassificationStoreGetLayoutByGroupQuery:aE}=aC;var aM=i(93383),aI=i(2067),aL=i(44780);let aP=e=>{let{isFetching:t,refetch:i}=e;return t?(0,tl.jsx)(aL.x,{padding:{x:"small"},children:(0,tl.jsx)(aI.y,{})}):(0,tl.jsx)(aM.h,{icon:{value:"refresh"},onClick:async()=>{i()}})};var aN=i(90671);let aA=e=>{let{page:t,setPage:i,pageSize:n,setPageSize:r,totalItems:a}=e,{t:o}=(0,t7.useTranslation)();return(0,tl.jsx)(aN.t,{current:t,defaultPageSize:n,onChange:(e,t)=>{i(e),r(parseInt(t))},pageSizeOptions:[10,20,50,100],showSizeChanger:!0,showTotal:e=>o("pagination.show-total",{total:e}),total:a})};var aR=i(17941),aO=i(98926),aB=i(62368),aF=i(78699),a_=i(10437),az=i(37934),aV=((r={}).Collection="collection",r.Group="group",r.GroupByKey="group-by-key",r);let{useClassificationStoreGetCollectionsQuery:a$,useClassificationStoreGetGroupsQuery:aW,useClassificationStoreGetKeyGroupRelationsQuery:aH,useClassificationStoreGetLayoutByCollectionQuery:aG,useLazyClassificationStoreGetLayoutByCollectionQuery:aU,useClassificationStoreGetLayoutByGroupQuery:aq,useLazyClassificationStoreGetLayoutByGroupQuery:aZ}=aC.enhanceEndpoints({}),aK=e=>{let{tabId:t,queryHook:i,queryArgs:n,columns:r}=e,{getSearchValue:a,setSearchValue:o,closeModal:l,currentLayoutData:s,updateCurrentLayoutData:d}=ac(),{operations:f,values:c}=(0,r9.f)(),{activeGroups:u,groupCollectionMapping:m,...p}=c,{t:g}=(0,t7.useTranslation)(),[h,b]=(0,ts.useState)(a(t)),[y,v]=(0,ts.useState)(a(t)),[x,j]=(0,ts.useState)(1),[w,C]=(0,ts.useState)(10),[k,T]=(0,ts.useState)(void 0),[S,D]=(0,ts.useState)(!1),E=t===aV.GroupByKey,{isLoading:M,data:I,isFetching:L,refetch:P}=i({...n,page:x,pageSize:w,searchTerm:h},{refetchOnMountOrArgChange:!0}),[N]=aU(),[A]=aZ(),R=async e=>await N({objectId:n.objectId,fieldName:n.fieldName,collectionId:parseInt(e)}).unwrap(),O=async e=>await A({objectId:n.objectId,fieldName:n.fieldName,groupId:parseInt(e)}).unwrap(),B=async()=>{let e=Object.keys(k??{}),i={},n={},r=[];for(let a of e){if(t===aV.Collection){let e=R(a).then(e=>((null==e?void 0:e.groups)??[]).filter(e=>{let t=!(0,eY.has)(p,String(e.id));return t&&(f.add(String(null==e?void 0:e.id),{}),i[e.id]=!0,n[e.id]=parseInt(a),D(!0)),t}));r.push(e)}if(t===aV.Group){let e=O(a).then(e=>(0,eY.has)(p,String(null==e?void 0:e.id))?[]:(f.add(String(null==e?void 0:e.id),{}),i[null==e?void 0:e.id]=!0,n[null==e?void 0:e.id]=null,D(!0),[e]));r.push(e)}if(t===aV.GroupByKey){let e=O(a.split("-")[0]).then(e=>(0,eY.has)(p,String(null==e?void 0:e.id))?[]:(f.add(String(null==e?void 0:e.id),{}),i[null==e?void 0:e.id]=!0,n[null==e?void 0:e.id]=null,D(!0),[e]));r.push(e)}}let a=(await Promise.all(r)).flat();d([...s,...(0,eY.uniqBy)(a,"id")]);let o={...c.activeGroups,...i},u={...c.groupCollectionMapping,...n};f.update("activeGroups",o,!1),f.update("groupCollectionMapping",u,!1),D(!1),l()};return(0,tl.jsx)(aB.V,{loading:S,children:(0,tl.jsx)(aF.D,{renderToolbar:(0,tl.jsxs)(aO.o,{borderStyle:"primary",theme:"secondary",children:[(0,tl.jsxs)(aR.P,{size:"extra-small",children:[(0,tl.jsx)(aP,{isFetching:L,refetch:P}),(0,tl.jsx)(aA,{page:x,pageSize:w,setPage:j,setPageSize:C,totalItems:(null==I?void 0:I.totalItems)??0})]}),(0,tl.jsx)(ai.z,{disabled:M,onClick:B,type:"primary",children:g("common.apply-selection")})]}),renderTopBar:(0,tl.jsx)(aO.o,{borderStyle:"primary",padding:{top:"extra-small",bottom:"extra-small",left:"none",right:"none"},position:"top",size:"auto",theme:"secondary",children:(0,tl.jsx)(a_.M,{maxWidth:"100%",onChange:e=>{v(e.target.value)},onSearch:e=>{o(t,e),b(e)},value:y})}),children:(0,tl.jsx)(aL.x,{padding:{top:"small",bottom:"small"},children:(0,tl.jsx)(az.r,{columns:r,data:(null==I?void 0:I.items)??[],enableMultipleRowSelection:!0,isLoading:M,onSelectedRowsChange:e=>{T(e)},selectedRows:k,setRowId:e=>E&&!(0,eY.isUndefined)(e.groupId)?`${e.groupId}-${e.keyId}`:e.id})})})})},aJ=e=>{let t=(0,aj.createColumnHelper)(),{t:i}=(0,t7.useTranslation)(),n=[t.accessor("id",{header:i("classification-store.column.id")}),t.accessor("name",{header:i("classification-store.column.name")}),t.accessor("description",{header:i("classification-store.column.description")})];return(0,tl.jsx)(aK,{columns:n,queryArgs:{storeId:e.storeId,classId:e.classId,fieldName:e.fieldName,objectId:e.objectId},queryHook:ak,tabId:aV.Collection})},aX=e=>{let t=(0,aj.createColumnHelper)(),{t:i}=(0,t7.useTranslation)(),n=[t.accessor("id",{header:i("classification-store.column.id")}),t.accessor("name",{header:i("classification-store.column.name")}),t.accessor("description",{header:i("classification-store.column.description")})];return(0,tl.jsx)(aK,{columns:n,queryArgs:{storeId:e.storeId,classId:e.classId,objectId:e.objectId,fieldName:e.fieldName},queryHook:aT,tabId:aV.Group})},aQ=e=>{let t=(0,aj.createColumnHelper)(),{t:i}=(0,t7.useTranslation)(),n=[t.accessor(e=>`${e.groupId}-${e.keyId}`,{id:"groupId-keyId",header:i("classification-store.column.id")}),t.accessor("groupName",{header:i("classification-store.column.group")}),t.accessor("keyName",{header:i("classification-store.column.name")}),t.accessor("keyDescription",{header:i("classification-store.column.description")})];return(0,tl.jsx)(aK,{columns:n,queryArgs:{storeId:e.storeId,classId:e.classId,objectId:e.objectId,fieldName:e.fieldName},queryHook:aS,tabId:aV.GroupByKey})},aY=e=>{let{storeId:t,classId:i,fieldName:n}=e,{isOpenModal:r,closeModal:a}=ac(),{t:o}=(0,t7.useTranslation)(),{styles:l}=ax(),s={storeId:t,classId:i,objectId:e.objectId,fieldName:n},d=e=>{let{iconValue:t,titleKeyValue:i}=e;return(0,tl.jsxs)(rZ.k,{align:"center",gap:"mini",children:[(0,tl.jsx)(rR.J,{className:l.titleIcon,value:t}),(0,tl.jsx)("div",{children:o(`classification-store.${i}`)})]})},f=[{label:d({iconValue:"keyboard",titleKeyValue:"collection"}),key:"collection",children:(0,tl.jsx)(aJ,{...s})},{label:d({iconValue:"keys",titleKeyValue:"group"}),key:"group",children:(0,tl.jsx)(aX,{...s})},{label:d({iconValue:"key",titleKeyValue:"group-by-key"}),key:"group-by-key",children:(0,tl.jsx)(aQ,{...s})}];return(0,tl.jsx)(tl.Fragment,{children:r&&(0,tl.jsx)(av.u,{closable:!0,footer:null,onCancel:a,open:r,size:"XL",children:(0,tl.jsx)(ay.m,{destroyInactiveTabPane:!0,items:f,noTabBarMargin:!0})})})};var a0=i(30873);let a1=e=>{var t;let{name:i,value:n}=e,r=(0,ts.useRef)(n),a=(0,ts.useRef)(new Set),o=(0,ts.useRef)(new Set),{id:l}=(0,il.i)(),{dataObject:s}=(0,am.H)(l),d=((e,t)=>{let i=(0,eY.get)(e,t,{});return(0,eY.isPlainObject)(i)?i:{}})((null==s?void 0:s.objectData)??{},i),f=(0,ap.a)(),c=(0,eY.isArray)(i)?i[i.length-1]:i,u=(0,a0.C)(),m=e=>{var t;let n=[...i,...e.split(".")];return!o.current.has(n.join("."))&&(null==f||null==(t=f.getInheritanceState(n))?void 0:t.inherited)===!0},p=(0,ts.useMemo)(()=>((e,t,i,n)=>{let r=Array.from(new Set([...ah(t),...ah(e)])),a={},o=e=>(0,eY.isUndefined)(e)?{}:e;return((0,eY.forEach)(r,i=>{let r=i.split(".").length-1,l=i.split(".")[0];e[l].action!==ag&&(n(i)?(0,eY.setWith)(a,i,(0,eY.get)(t,i),o):(0,eY.setWith)(a,i,(0,eY.get)(e,i),o),0===r&&(0,eY.isArray)((0,eY.get)(e,i))&&(0,eY.isEmpty)(e[l])&&(0,eY.setWith)(a,i,{},o))}),(0,eY.isEmpty)(a)&&(0,eY.isEmpty)(i))?i:a})(r.current,d,n,m),[r.current,d]);if((0,ts.useEffect)(()=>{r.current=n},[n]),void 0===s)return(0,tl.jsx)(tl.Fragment,{});let g=null==(t=u.getByName(s.className))?void 0:t.id;return void 0===g?(0,tl.jsx)(tl.Fragment,{}):(0,tl.jsx)(af,{children:(0,tl.jsxs)(tc.l.KeyedList,{getAdditionalComponentProps:e=>{var t;return{inherited:(null==f||null==(t=f.getInheritanceState(e))?void 0:t.inherited)===!0}},onChange:t=>{let i=((e,t)=>{if(!(0,eY.isPlainObject)(e))return{};let i={},n=e=>(0,eY.isUndefined)(e)?{}:e;(0,eY.forEach)(ah(e),t=>{null!==(0,eY.get)(e,t)&&(0,eY.setWith)(i,t,(0,eY.get)(e,t),n)});let{activeGroups:r,groupCollectionMapping:a,...o}=e;for(let[e,t]of Object.entries(o)){let n=!0;for(let[r,a]of Object.entries(t)){let t=!0;for(let e of Object.entries(a))if(null!==e[1]){t=!1,n=!1;break}t&&void 0!==i[e]&&void 0!==i[e][r]&&delete i[e][r]}n&&(0,eY.set)(i,e,[])}return i})(t,0),n=(0,eY.union)([...(0,eY.keys)(d),...(0,eY.keys)(r.current)]);(0,eY.forEach)(n,e=>{(0,eY.isUndefined)(i[e])?a.current.add(e):a.current.delete(e)}),(0,eY.forEach)(Array.from(a.current.keys()),e=>{i[e]={action:ag}});let o=(0,eY.isEmpty)(i)?[]:i;(0,eY.isEqual)(o,r.current)||(e.onChange(o),r.current=o)},onFieldChange:(e,t)=>{var i;let n=Array.isArray(e)?e.join("."):e;o.current.add(n),(null==f||null==(i=f.getInheritanceState(e))?void 0:i.inherited)===!0&&(null==f||f.breakInheritance(e))},value:p,children:[(0,tl.jsx)(au,{...e}),(0,tl.jsx)(aY,{classId:g,fieldName:c,objectId:s.id,...e})]})})};var a2=i(52382);class a3 extends rL.C{getObjectDataComponent(e){return(0,tl.jsx)(a1,{...e})}getObjectDataFormItemProps(e){return{...super.getObjectDataFormItemProps(e),label:null}}async processVersionFieldData(e){let{item:t,fieldBreadcrumbTitle:i,fieldValueByName:n,versionId:r,versionCount:a}=e,o=e=>{let{fieldData:t,fieldValue:i,fieldBreadcrumbTitle:n}=e;return{fieldBreadcrumbTitle:n,versionId:r,versionCount:a,fieldData:t,fieldValue:i}},l=e=>{let{data:t,updatedFieldBreadcrumbTitle:r=i,groupId:a}=e;return t.flatMap(e=>{if(!(0,eY.isEmpty)(e.keys)){let t=e.title??e.name,i=(0,a2.uT)(r,t);return l({data:e.keys,updatedFieldBreadcrumbTitle:i,groupId:e.id})}if(!(0,eY.isEmpty)(e.definition)){if((0,eY.isUndefined)(a))return[];let t=(0,eY.get)(n,a);return(0,eY.isEmpty)(t)?o({fieldData:{...e.definition},fieldValue:t,fieldBreadcrumbTitle:r}):Object.entries(t).map(t=>{let[i,n]=t;return o({fieldData:{...e.definition,locale:i},fieldValue:n[e.id],fieldBreadcrumbTitle:r})})}return[]})};async function s(){try{if((0,eY.isEmpty)(t))return[];let e=t.title??t.name,n=(0,a2.uT)(i,e);return l({data:t.activeGroupDefinitions,updatedFieldBreadcrumbTitle:n})}catch(e){return console.error("Error while handling Classification Store data:",e),[]}}return await s()}constructor(...e){var t,i,n;super(...e),i="classificationstore",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}}var a6=i(5131);let a4=(0,eZ.injectable)()(eh=class extends tK.V{getGridCellComponent(e){return(0,tl.jsx)(a6.w,{...e})}getDefaultGridColumnWidth(){return 100}constructor(...e){var t,i,n;super(...e),i="boolean",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||eh;var a8=i(47622),a7=i(97455),a5=i(72404),a9=i(55989),oe=i(1085),ot=i(34237);class oi extends ot.E{}oi=(0,eq.gn)([(0,eZ.injectable)()],oi);var on=i(76819),or=i(89994),oa=i(71853),oo=i(3940),ol=i(28714),os=i(36272),od=i(26879),of=i(99198),oc=i(12333),ou=i(74958),om=i(11430);let op=(0,ia.createStyles)(e=>{let{css:t,token:i}=e;return{wrapper:t` + `}});var aj=i(91936),aw=i(42125);let aC=aw.api.enhanceEndpoints({addTagTypes:["Classification Store"]}).injectEndpoints({endpoints:e=>({classificationStoreGetCollections:e.query({query:e=>({url:"/pimcore-studio/api/classification-store/collections",params:{storeId:e.storeId,classId:e.classId,page:e.page,pageSize:e.pageSize,fieldName:e.fieldName,searchTerm:e.searchTerm}}),providesTags:["Classification Store"]}),classificationStoreGetGroups:e.query({query:e=>({url:"/pimcore-studio/api/classification-store/groups",params:{storeId:e.storeId,classId:e.classId,searchTerm:e.searchTerm,page:e.page,pageSize:e.pageSize,fieldName:e.fieldName}}),providesTags:["Classification Store"]}),classificationStoreGetKeyGroupRelations:e.query({query:e=>({url:"/pimcore-studio/api/classification-store/key-group-relations",params:{storeId:e.storeId,classId:e.classId,searchTerm:e.searchTerm,page:e.page,pageSize:e.pageSize,fieldName:e.fieldName}}),providesTags:["Classification Store"]}),classificationStoreGetLayoutByCollection:e.query({query:e=>({url:`/pimcore-studio/api/classification-store/layout-by-collection/${e.collectionId}`,params:{objectId:e.objectId,fieldName:e.fieldName}}),providesTags:["Classification Store"]}),classificationStoreGetLayoutByGroup:e.query({query:e=>({url:`/pimcore-studio/api/classification-store/layout-by-group/${e.groupId}`,params:{objectId:e.objectId,fieldName:e.fieldName}}),providesTags:["Classification Store"]})}),overrideExisting:!1}),{useClassificationStoreGetCollectionsQuery:ak,useClassificationStoreGetGroupsQuery:aT,useClassificationStoreGetKeyGroupRelationsQuery:aS,useClassificationStoreGetLayoutByCollectionQuery:aD,useClassificationStoreGetLayoutByGroupQuery:aE}=aC;var aM=i(93383),aI=i(2067),aL=i(44780);let aP=e=>{let{isFetching:t,refetch:i}=e;return t?(0,to.jsx)(aL.x,{padding:{x:"small"},children:(0,to.jsx)(aI.y,{})}):(0,to.jsx)(aM.h,{icon:{value:"refresh"},onClick:async()=>{i()}})};var aN=i(90671);let aA=e=>{let{page:t,setPage:i,pageSize:n,setPageSize:r,totalItems:a}=e,{t:l}=(0,t7.useTranslation)();return(0,to.jsx)(aN.t,{current:t,defaultPageSize:n,onChange:(e,t)=>{i(e),r(parseInt(t))},pageSizeOptions:[10,20,50,100],showSizeChanger:!0,showTotal:e=>l("pagination.show-total",{total:e}),total:a})};var aR=i(17941),aO=i(98926),aB=i(62368),aF=i(78699),a_=i(10437),az=i(37934),aV=((r={}).Collection="collection",r.Group="group",r.GroupByKey="group-by-key",r);let{useClassificationStoreGetCollectionsQuery:a$,useClassificationStoreGetGroupsQuery:aW,useClassificationStoreGetKeyGroupRelationsQuery:aH,useClassificationStoreGetLayoutByCollectionQuery:aG,useLazyClassificationStoreGetLayoutByCollectionQuery:aU,useClassificationStoreGetLayoutByGroupQuery:aq,useLazyClassificationStoreGetLayoutByGroupQuery:aZ}=aC.enhanceEndpoints({}),aK=e=>{let{tabId:t,queryHook:i,queryArgs:n,columns:r}=e,{getSearchValue:a,setSearchValue:l,closeModal:o,currentLayoutData:s,updateCurrentLayoutData:d}=ac(),{operations:f,values:c}=(0,r9.f)(),{activeGroups:u,groupCollectionMapping:m,...p}=c,{t:g}=(0,t7.useTranslation)(),[h,b]=(0,ts.useState)(a(t)),[y,v]=(0,ts.useState)(a(t)),[x,j]=(0,ts.useState)(1),[w,C]=(0,ts.useState)(10),[k,T]=(0,ts.useState)(void 0),[S,D]=(0,ts.useState)(!1),E=t===aV.GroupByKey,{isLoading:M,data:I,isFetching:L,refetch:P}=i({...n,page:x,pageSize:w,searchTerm:h},{refetchOnMountOrArgChange:!0}),[N]=aU(),[A]=aZ(),R=async e=>await N({objectId:n.objectId,fieldName:n.fieldName,collectionId:parseInt(e)}).unwrap(),O=async e=>await A({objectId:n.objectId,fieldName:n.fieldName,groupId:parseInt(e)}).unwrap(),B=async()=>{let e=Object.keys(k??{}),i={},n={},r=[];for(let a of e){if(t===aV.Collection){let e=R(a).then(e=>((null==e?void 0:e.groups)??[]).filter(e=>{let t=!(0,eY.has)(p,String(e.id));return t&&(f.add(String(null==e?void 0:e.id),{}),i[e.id]=!0,n[e.id]=parseInt(a),D(!0)),t}));r.push(e)}if(t===aV.Group){let e=O(a).then(e=>(0,eY.has)(p,String(null==e?void 0:e.id))?[]:(f.add(String(null==e?void 0:e.id),{}),i[null==e?void 0:e.id]=!0,n[null==e?void 0:e.id]=null,D(!0),[e]));r.push(e)}if(t===aV.GroupByKey){let e=O(a.split("-")[0]).then(e=>(0,eY.has)(p,String(null==e?void 0:e.id))?[]:(f.add(String(null==e?void 0:e.id),{}),i[null==e?void 0:e.id]=!0,n[null==e?void 0:e.id]=null,D(!0),[e]));r.push(e)}}let a=(await Promise.all(r)).flat();d([...s,...(0,eY.uniqBy)(a,"id")]);let l={...c.activeGroups,...i},u={...c.groupCollectionMapping,...n};f.update("activeGroups",l,!1),f.update("groupCollectionMapping",u,!1),D(!1),o()};return(0,to.jsx)(aB.V,{loading:S,children:(0,to.jsx)(aF.D,{renderToolbar:(0,to.jsxs)(aO.o,{borderStyle:"primary",theme:"secondary",children:[(0,to.jsxs)(aR.P,{size:"extra-small",children:[(0,to.jsx)(aP,{isFetching:L,refetch:P}),(0,to.jsx)(aA,{page:x,pageSize:w,setPage:j,setPageSize:C,totalItems:(null==I?void 0:I.totalItems)??0})]}),(0,to.jsx)(ai.z,{disabled:M,onClick:B,type:"primary",children:g("common.apply-selection")})]}),renderTopBar:(0,to.jsx)(aO.o,{borderStyle:"primary",padding:{top:"extra-small",bottom:"extra-small",left:"none",right:"none"},position:"top",size:"auto",theme:"secondary",children:(0,to.jsx)(a_.M,{maxWidth:"100%",onChange:e=>{v(e.target.value)},onSearch:e=>{l(t,e),b(e)},value:y})}),children:(0,to.jsx)(aL.x,{padding:{top:"small",bottom:"small"},children:(0,to.jsx)(az.r,{columns:r,data:(null==I?void 0:I.items)??[],enableMultipleRowSelection:!0,isLoading:M,onSelectedRowsChange:e=>{T(e)},selectedRows:k,setRowId:e=>E&&!(0,eY.isUndefined)(e.groupId)?`${e.groupId}-${e.keyId}`:e.id})})})})},aJ=e=>{let t=(0,aj.createColumnHelper)(),{t:i}=(0,t7.useTranslation)(),n=[t.accessor("id",{header:i("classification-store.column.id")}),t.accessor("name",{header:i("classification-store.column.name")}),t.accessor("description",{header:i("classification-store.column.description")})];return(0,to.jsx)(aK,{columns:n,queryArgs:{storeId:e.storeId,classId:e.classId,fieldName:e.fieldName,objectId:e.objectId},queryHook:ak,tabId:aV.Collection})},aX=e=>{let t=(0,aj.createColumnHelper)(),{t:i}=(0,t7.useTranslation)(),n=[t.accessor("id",{header:i("classification-store.column.id")}),t.accessor("name",{header:i("classification-store.column.name")}),t.accessor("description",{header:i("classification-store.column.description")})];return(0,to.jsx)(aK,{columns:n,queryArgs:{storeId:e.storeId,classId:e.classId,objectId:e.objectId,fieldName:e.fieldName},queryHook:aT,tabId:aV.Group})},aQ=e=>{let t=(0,aj.createColumnHelper)(),{t:i}=(0,t7.useTranslation)(),n=[t.accessor(e=>`${e.groupId}-${e.keyId}`,{id:"groupId-keyId",header:i("classification-store.column.id")}),t.accessor("groupName",{header:i("classification-store.column.group")}),t.accessor("keyName",{header:i("classification-store.column.name")}),t.accessor("keyDescription",{header:i("classification-store.column.description")})];return(0,to.jsx)(aK,{columns:n,queryArgs:{storeId:e.storeId,classId:e.classId,objectId:e.objectId,fieldName:e.fieldName},queryHook:aS,tabId:aV.GroupByKey})},aY=e=>{let{storeId:t,classId:i,fieldName:n}=e,{isOpenModal:r,closeModal:a}=ac(),{t:l}=(0,t7.useTranslation)(),{styles:o}=ax(),s={storeId:t,classId:i,objectId:e.objectId,fieldName:n},d=e=>{let{iconValue:t,titleKeyValue:i}=e;return(0,to.jsxs)(rZ.k,{align:"center",gap:"mini",children:[(0,to.jsx)(rR.J,{className:o.titleIcon,value:t}),(0,to.jsx)("div",{children:l(`classification-store.${i}`)})]})},f=[{label:d({iconValue:"keyboard",titleKeyValue:"collection"}),key:"collection",children:(0,to.jsx)(aJ,{...s})},{label:d({iconValue:"keys",titleKeyValue:"group"}),key:"group",children:(0,to.jsx)(aX,{...s})},{label:d({iconValue:"key",titleKeyValue:"group-by-key"}),key:"group-by-key",children:(0,to.jsx)(aQ,{...s})}];return(0,to.jsx)(to.Fragment,{children:r&&(0,to.jsx)(av.u,{closable:!0,footer:null,onCancel:a,open:r,size:"XL",children:(0,to.jsx)(ay.m,{destroyInactiveTabPane:!0,items:f,noTabBarMargin:!0})})})};var a0=i(30873);let a1=e=>{var t;let{name:i,value:n}=e,r=(0,ts.useRef)(n),a=(0,ts.useRef)(new Set),l=(0,ts.useRef)(new Set),{id:o}=(0,io.i)(),{dataObject:s}=(0,am.H)(o),d=((e,t)=>{let i=(0,eY.get)(e,t,{});return(0,eY.isPlainObject)(i)?i:{}})((null==s?void 0:s.objectData)??{},i),f=(0,ap.a)(),c=(0,eY.isArray)(i)?i[i.length-1]:i,u=(0,a0.C)(),m=e=>{var t;let n=[...i,...e.split(".")];return!l.current.has(n.join("."))&&(null==f||null==(t=f.getInheritanceState(n))?void 0:t.inherited)===!0},p=(0,ts.useMemo)(()=>((e,t,i,n)=>{let r=Array.from(new Set([...ah(t),...ah(e)])),a={},l=e=>(0,eY.isUndefined)(e)?{}:e;return((0,eY.forEach)(r,i=>{let r=i.split(".").length-1,o=i.split(".")[0];e[o].action!==ag&&(n(i)?(0,eY.setWith)(a,i,(0,eY.get)(t,i),l):(0,eY.setWith)(a,i,(0,eY.get)(e,i),l),0===r&&(0,eY.isArray)((0,eY.get)(e,i))&&(0,eY.isEmpty)(e[o])&&(0,eY.setWith)(a,i,{},l))}),(0,eY.isEmpty)(a)&&(0,eY.isEmpty)(i))?i:a})(r.current,d,n,m),[r.current,d]);if((0,ts.useEffect)(()=>{r.current=n},[n]),void 0===s)return(0,to.jsx)(to.Fragment,{});let g=null==(t=u.getByName(s.className))?void 0:t.id;return void 0===g?(0,to.jsx)(to.Fragment,{}):(0,to.jsx)(af,{children:(0,to.jsxs)(tc.l.KeyedList,{getAdditionalComponentProps:e=>{var t;return{inherited:(null==f||null==(t=f.getInheritanceState(e))?void 0:t.inherited)===!0}},onChange:t=>{let i=((e,t)=>{if(!(0,eY.isPlainObject)(e))return{};let i={},n=e=>(0,eY.isUndefined)(e)?{}:e;(0,eY.forEach)(ah(e),t=>{null!==(0,eY.get)(e,t)&&(0,eY.setWith)(i,t,(0,eY.get)(e,t),n)});let{activeGroups:r,groupCollectionMapping:a,...l}=e;for(let[e,t]of Object.entries(l)){let n=!0;for(let[r,a]of Object.entries(t)){let t=!0;for(let e of Object.entries(a))if(null!==e[1]){t=!1,n=!1;break}t&&void 0!==i[e]&&void 0!==i[e][r]&&delete i[e][r]}n&&(0,eY.set)(i,e,[])}return i})(t,0),n=(0,eY.union)([...(0,eY.keys)(d),...(0,eY.keys)(r.current)]);(0,eY.forEach)(n,e=>{(0,eY.isUndefined)(i[e])?a.current.add(e):a.current.delete(e)}),(0,eY.forEach)(Array.from(a.current.keys()),e=>{i[e]={action:ag}});let l=(0,eY.isEmpty)(i)?[]:i;(0,eY.isEqual)(l,r.current)||(e.onChange(l),r.current=l)},onFieldChange:(e,t)=>{var i;let n=Array.isArray(e)?e.join("."):e;l.current.add(n),(null==f||null==(i=f.getInheritanceState(e))?void 0:i.inherited)===!0&&(null==f||f.breakInheritance(e))},value:p,children:[(0,to.jsx)(au,{...e}),(0,to.jsx)(aY,{classId:g,fieldName:c,objectId:s.id,...e})]})})};var a2=i(52382);class a3 extends rL.C{getObjectDataComponent(e){return(0,to.jsx)(a1,{...e})}getObjectDataFormItemProps(e){return{...super.getObjectDataFormItemProps(e),label:null}}async processVersionFieldData(e){let{item:t,fieldBreadcrumbTitle:i,fieldValueByName:n,versionId:r,versionCount:a}=e,l=e=>{let{fieldData:t,fieldValue:i,fieldBreadcrumbTitle:n}=e;return{fieldBreadcrumbTitle:n,versionId:r,versionCount:a,fieldData:t,fieldValue:i}},o=e=>{let{data:t,updatedFieldBreadcrumbTitle:r=i,groupId:a}=e;return t.flatMap(e=>{if(!(0,eY.isEmpty)(e.keys)){let t=e.title??e.name,i=(0,a2.uT)(r,t);return o({data:e.keys,updatedFieldBreadcrumbTitle:i,groupId:e.id})}if(!(0,eY.isEmpty)(e.definition)){if((0,eY.isUndefined)(a))return[];let t=(0,eY.get)(n,a);return(0,eY.isEmpty)(t)?l({fieldData:{...e.definition},fieldValue:t,fieldBreadcrumbTitle:r}):Object.entries(t).map(t=>{let[i,n]=t;return l({fieldData:{...e.definition,locale:i},fieldValue:n[e.id],fieldBreadcrumbTitle:r})})}return[]})};async function s(){try{if((0,eY.isEmpty)(t))return[];let e=t.title??t.name,n=(0,a2.uT)(i,e);return o({data:t.activeGroupDefinitions,updatedFieldBreadcrumbTitle:n})}catch(e){return console.error("Error while handling Classification Store data:",e),[]}}return await s()}constructor(...e){var t,i,n;super(...e),i="classificationstore",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}}var a6=i(5131);let a4=(0,eZ.injectable)()(eh=class extends tK.V{getGridCellComponent(e){return(0,to.jsx)(a6.w,{...e})}getDefaultGridColumnWidth(){return 100}constructor(...e){var t,i,n;super(...e),i="boolean",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||eh;var a8=i(47622),a7=i(97455),a5=i(72404),a9=i(55989),le=i(1085),lt=i(34237);class li extends lt.E{}li=(0,eq.gn)([(0,eZ.injectable)()],li);var ln=i(76819),lr=i(89994),la=i(71853),ll=i(3940),lo=i(28714),ls=i(36272),ld=i(26879),lf=i(99198),lc=i(12333),lu=i(74958),lm=i(11430);let lp=(0,ia.createStyles)(e=>{let{css:t,token:i}=e;return{wrapper:t` position: relative; display: inline-block; `,editButton:t` @@ -23,7 +23,7 @@ border: 1px solid ${i.colorBorder}; border-radius: ${i.borderRadius}px; box-shadow: ${i.boxShadow}; - `}});var og=i(3859),oh=i.n(og),ob=i(58793),oy=i.n(ob),ov=i(39679),ox=i(70068);let oj=e=>{let{value:t,onChange:i,disabled:n,inherited:r=!1,className:a,containerRef:o,width:l,height:s}=e,{t:d}=(0,t7.useTranslation)(),{input:f}=(0,an.U8)(),{styles:c}=op(),[u,m]=(0,ts.useState)(null),p=(null==t?void 0:t.url)??"",g=!(0,eY.isEmpty)(p),h=!!n||!!r,b=()=>{null==i||i(t??null)};(0,ts.useEffect)(()=>{if(!(0,eY.isNull)(null==o?void 0:o.current)){let t=o.current.querySelector("iframe");if(!(0,eY.isNull)(t)&&(0,eY.isNull)(u)){var e;let i=t.width??t.getAttribute("width"),n=t.height??t.getAttribute("height"),r=(0,ov.toCssDimension)(i)??"300px",l=(0,ov.toCssDimension)(n)??"200px",s=document.createElement("div");s.className=oy()(c.wrapper,a),s.style.width=r,s.style.height=l,s.style.position="relative",null==(e=o.current.parentNode)||e.insertBefore(s,o.current),s.appendChild(o.current),m(s)}}},[o,a,u]);let y=()=>{h||f({title:d("embed.url-modal.title"),label:d("embed.url-modal.label"),initialValue:p,okText:d("embed.url-modal.ok-text"),cancelText:d("embed.url-modal.cancel-text"),onOk:e=>{let t=e.trim();(0,eY.isEmpty)(t)?null==i||i(null):null==i||i({url:t})}})};return(0,tl.jsx)(tl.Fragment,{children:g?(0,tl.jsx)(tl.Fragment,{children:!(0,eY.isNull)(u)&&oh().createPortal((0,tl.jsx)(ox.A,{display:"block",hideButtons:!0,isInherited:r,noPadding:!0,onOverwrite:b,shape:"angular",style:{position:"absolute",inset:0},children:(0,tl.jsx)(aM.h,{className:c.editButton,disabled:h,icon:{value:"edit"},onClick:y,size:"small",style:{pointerEvents:"auto"},title:d("embed.edit-url"),type:"default"})}),u)}):(0,tl.jsx)(ox.A,{display:"block",isInherited:r,noPadding:!0,onOverwrite:b,style:void 0!==l?{maxWidth:(0,ov.toCssDimension)(l)}:void 0,children:(0,tl.jsx)(om.E,{buttonText:d("embed.add-url"),disabled:h,height:s,onClick:y,text:d("embed.placeholder"),width:l})})})};class ow extends ou.C{getEditableDataComponent(e){var t,i,n;return(0,tl.jsx)(oj,{className:null==(t=e.config)?void 0:t.class,containerRef:e.containerRef,height:null==(i=e.config)?void 0:i.height,inherited:e.inherited,width:null==(n=e.config)?void 0:n.width})}reloadOnChange(e){return!0}constructor(...e){var t,i,n;super(...e),i="embed",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}}var oC=i(42462),ok=i(64490),oT=i(43958),oS=i(38466),oD=i(29610),oE=i(49845),oM=i(15171),oI=i(44124),oL=i(51776),oP=i(5581),oN=i(68727);let oA=e=>{let{assetId:t,width:i,height:n,containerWidth:r,thumbnailSettings:a,thumbnailConfig:o,...l}=e,s=(0,ts.useMemo)(()=>{if(void 0!==t){let e;return e={assetId:t,width:i,height:n,containerWidth:r,thumbnailSettings:a,thumbnailConfig:o,fallbackSrc:void 0},(0,oN.U)(e,"document","JPEG")}},[t,i,n,r,a,o]);return(0,tl.jsx)(oP.Y,{...l,assetId:t,thumbnailUrl:s})};var oR=i(17441),oO=i(25031),oB=i(4930);let oF=e=>{var t,i,n,r,a;let{t:o}=(0,t7.useTranslation)(),l=e.value,s=null==(t=e.config)?void 0:t.width,d=null==(i=e.config)?void 0:i.height,f=(0,eY.isBoolean)(e.inherited)&&e.inherited,c=!0===e.disabled||f,u=!(0,eY.isNil)(null==l?void 0:l.id),{getSmartDimensions:m,handlePreviewResize:p,handleAssetTargetResize:g}=(0,oB.h)(),h=m(null==l?void 0:l.id),b=(0,eY.isNil)(s)&&(0,eY.isNil)(d),{width:y}=(0,oL.Z)(b?e.containerRef??{current:null}:{current:null}),{triggerUpload:v}=(0,oM.$)({}),{openElement:x}=(0,ig.f)(),{open:j}=(0,oT._)({selectionType:oS.RT.Single,areas:{asset:!0,object:!1,document:!1},config:{assets:{allowedTypes:["document"]}},onFinish:e=>{e.items.length>0&&w(e.items[0].data.id)}}),w=t=>{var i;null==(i=e.onChange)||i.call(e,{id:t})},C=(0,ts.useCallback)(()=>{var t;v({targetFolderPath:null==(t=e.config)?void 0:t.uploadPath,accept:"application/pdf",multiple:!1,maxItems:1,onSuccess:async e=>{e.length>0&&w(Number(e[0].id))}})},[null==(n=e.config)?void 0:n.uploadPath,v,w]),k=async e=>{w(Number(e.id))},T=[];(0,eY.isNil)(null==l?void 0:l.id)||T.push({key:"open",icon:(0,tl.jsx)(rR.J,{value:"open-folder"}),label:o("open"),disabled:e.disabled,onClick:()=>{(0,eY.isNil)(null==l?void 0:l.id)||x({id:l.id,type:"asset"})}},{key:"empty",icon:(0,tl.jsx)(rR.J,{value:"trash"}),label:o("empty"),disabled:c,onClick:()=>{var t;null==(t=e.onChange)||t.call(e,{})}}),T.push({key:"locate-in-tree",icon:(0,tl.jsx)(rR.J,{value:"target"}),label:o("element.locate-in-tree"),disabled:c||(0,eY.isNil)(null==l?void 0:l.id),onClick:()=>{(0,oO.T)("asset",null==l?void 0:l.id)}},{key:"search",icon:(0,tl.jsx)(rR.J,{value:"search"}),label:o("search"),disabled:c,onClick:j},{key:"upload",icon:(0,tl.jsx)(rR.J,{value:"upload-cloud"}),label:o("upload"),disabled:c,onClick:C});let S=(0,ts.useCallback)(t=>{var i;let n=(0,eY.isNil)(null==l?void 0:l.id)?"round":"angular";return(0,tl.jsx)(oI.H,{assetType:"document",disabled:c,fullWidth:(0,eY.isNil)((null==h?void 0:h.width)??s),onSuccess:k,targetFolderPath:null==(i=e.config)?void 0:i.uploadPath,children:(0,tl.jsx)(oE.b,{isValidContext:()=>!c,isValidData:e=>"asset"===e.type&&"document"===e.data.type,onDrop:e=>{w(e.data.id)},shape:n,variant:"outline",children:t})})},[null==(r=e.config)?void 0:r.uploadPath,c,k,w,null==l?void 0:l.id]);return(0,tl.jsx)(ox.A,{display:!(0,eY.isNil)((null==h?void 0:h.width)??s)||u?"inline-block":"block",hideButtons:!0,isInherited:f,onOverwrite:()=>{var t;null==(t=e.onChange)||t.call(e,e.value??{})},style:{minWidth:oR.FL},children:S(u?(0,tl.jsx)(oA,{assetId:l.id,containerWidth:Math.max(y,oR.FL),dropdownItems:T,height:(null==h?void 0:h.height)??d,lastImageDimensions:h,onResize:p,thumbnailConfig:null==(a=e.config)?void 0:a.thumbnail,width:(null==h?void 0:h.width)??s},l.id):(0,tl.jsx)(oD.Z,{dndIcon:!0,height:(null==h?void 0:h.height)??d??oR.R$,onResize:g,onSearch:j,onUpload:C,title:o("pdf-editable.dnd-target"),width:(null==h?void 0:h.width)??s??"100%"}))})},o_=(0,eZ.injectable)()(eb=class extends ou.C{getEditableDataComponent(e){return(0,tl.jsx)(oF,{config:e.config,containerRef:e.containerRef,inherited:e.inherited})}constructor(...e){var t,i;super(...e),(t="symbol"==typeof(i=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?i:i+"")in this?Object.defineProperty(this,t,{value:"pdf",enumerable:!0,configurable:!0,writable:!0}):this[t]="pdf"}})||eb;var oz=i(22823),oV=i(27357),o$=i(29865);let oW=e=>{let{editableDefinitions:t}=e,i=(0,ts.useMemo)(()=>{let e={};return t.forEach(t=>{e[t.id]=(0,ts.createRef)()}),e},[t]);return(0,tl.jsx)(tl.Fragment,{children:t.map(e=>{let t=document.getElementById(e.id);return(0,eY.isNull)(t)?null:(!(0,eY.isNull)(i[e.id])&&(0,eY.isNull)(i[e.id].current)&&(i[e.id].current=t),oh().createPortal((0,tl.jsx)(o$.k,{containerRef:i[e.id],editableDefinition:e}),t))})})};var oH=i(60433),oG=i(66858);let oU=e=>Object.fromEntries(e.map(e=>[e.name,{type:e.type,data:e.data??null}])),oq="pimcore-editable-dropzone-container",oZ={DROPZONE:".pimcore-editable-dropzone",DROPZONE_CONTAINER:`.${oq}`},oK={DATA_NAME:"data-name",DATA_EDITABLE_DROPZONE:"data-pimcore-editable-dropzone",DATA_DROPZONE_ID:"data-pimcore-dropzone-id",DATA_DROPZONE_INDEX:"data-pimcore-dropzone-index",DATA_DRAG_STATE:"data-pimcore-drag-state",DATA_FIRST_DROPZONE:"data-pimcore-first-dropzone"},oJ={ACTIVE:"active",DRAGGING:"dragging"},oX={ID_PREFIX:"pimcore-dropzone-",HEIGHT:"16px"},oQ=(e,t)=>{let i=document.createElement("div");return i.className=oq,i.setAttribute(oK.DATA_EDITABLE_DROPZONE,e??""),!0===t&&i.setAttribute(oK.DATA_FIRST_DROPZONE,"true"),i.style.height=oX.HEIGHT,i},oY={filterEditableNames(e,t,i){let n=`${t}:${i}.`;return e.filter(e=>e.startsWith(n))},elementsToAreablockValue:e=>e.map(e=>{let t=e.getAttribute("key")??"";return{key:t,type:e.getAttribute("type")??"",hidden:"true"===e.getAttribute("data-hidden")}}),swapElements(e,t,i){let n=[...e],r=n[t];return n[t]=n[i],n[i]=r,n}},o0={getEffectiveLimit:e=>(null==e?void 0:e.limit)??1e6,isReloadMode:e=>!!(null==e?void 0:e.reload),isLimitReached:(e,t)=>!((0,eY.isNil)(t)||(0,eY.isUndefined)(t))&&e>=t,canMoveUp:e=>e>0,canMoveDown:(e,t)=>e(null==e?void 0:e.types)??[],isTypeAllowed:(e,t)=>!!(0,eY.isNil)(null==e?void 0:e.allowed)||0===e.allowed.length||e.allowed.includes(t),getGroupedAreaTypes(e){let t=(null==e?void 0:e.types)??[],i=null==e?void 0:e.group;if((0,eY.isNil)(i)||0===Object.keys(i).length)return t;let n={};return Object.entries(i).forEach(e=>{let[i,r]=e,a=[...new Set(r)].map(e=>t.find(t=>t.type===e)).filter(e=>!(0,eY.isNil)(e));a.length>0&&(n[i]=a)}),n}},o1=e=>{let{dynamicEditables:t,getContainer:i}=e;return(0,ts.useLayoutEffect)(()=>{let e=i();if(!(0,eY.isNil)(e)){let t=e.querySelectorAll('[data-pending-editables="true"]');t.length>0&&t.forEach(e=>{e.style.display="",e.removeAttribute("data-pending-editables")})}},[t.length]),{hideElementUntilRendered:e=>{e.style.display="none",e.setAttribute("data-pending-editables","true")}}};var o2=i(23646);let o3=(0,ia.createStyles)(e=>{let{token:t}=e;return{areablockToolstrip:{display:"inline-block",width:"fit-content",marginTop:t.marginXS,marginBottom:t.marginXS},areaEntry:{'&[data-hidden="true"] .pimcore_area_content':{filter:"blur(1px)",opacity:.5}}}});var o6=i(44666),o4=i(38558);let o8=e=>{let{id:t,element:i}=e,{attributes:n,listeners:r,setNodeRef:a}=(0,o4.useSortable)({id:t});return td().useEffect(()=>{null!==a&&(a(i),Object.keys(n).forEach(e=>{void 0!==n[e]&&e.startsWith("data-")&&i.setAttribute(e,String(n[e]))}))},[a,i,n]),{listeners:r}},o7=e=>{let{config:t,onAddArea:i}=e,{t:n}=(0,t7.useTranslation)();return{menuItems:(0,ts.useMemo)(()=>{let e=o0.getGroupedAreaTypes(t);if(Array.isArray(e))return e.map(e=>({key:e.type,label:n(e.name),onClick:()=>{i(e.type)}}));let r=[];return Object.entries(e).forEach(e=>{let[t,a]=e,o=a.map(e=>({key:e.type,label:n(e.name),onClick:()=>{i(e.type)}}));null==r||r.push({key:t,label:n(t),children:o})}),r},[t,i,n])}};var o5=i(45444);let o9=(0,ia.createStyles)(()=>({inheritanceWrapper:{cursor:"pointer",display:"inline-block"}}));var le=i(11746);let lt=e=>{let{children:t,isInherited:i=!1,onOverwrite:n,className:r}=e,{styles:a,cx:o}=o9(),{inheritanceMenuItems:l,inheritanceTooltip:s}=(0,le.m)({onOverwrite:n});return(0,eY.isNil)(t)?(0,tl.jsx)(tl.Fragment,{}):i&&!(0,eY.isNil)(n)?(0,tl.jsx)(tN.Dropdown,{menu:{items:l},placement:"bottomLeft",trigger:["click","contextMenu"],children:(0,tl.jsx)(o5.u,{title:s,children:(0,tl.jsx)("div",{className:o(a.inheritanceWrapper,r),children:t})})}):(0,tl.jsx)(tl.Fragment,{children:t})},li=e=>{let{id:t,buttonsContainer:i,element:n,limitReached:r,areaTypes:a,config:o,areablockManager:l,onAddArea:s,onRemoveArea:d,onMoveAreaUp:f,onMoveAreaDown:c,onOpenDialog:u,onToggleHidden:m,isInherited:p=!1,onOverwrite:g}=e,{styles:h}=o3(),{t:b}=(0,t7.useTranslation)(),{listeners:y}=o8({id:t,element:n}),{menuItems:v}=o7({config:o,onAddArea:e=>{s(n,e)}}),x=l.queryElements(),j=l.findElementIndex(n),w=j===x.length-1,C=l.isElementHidden(n),k=l.getElementType(n),T=a.find(e=>e.type===k),S=(null==T?void 0:T.name)!=null?b(T.name):void 0,D=[],E=null;r||(1===a.length?D.push((0,tl.jsx)(aM.h,{icon:{value:"new"},onClick:()=>{s(n,a[0].type)},size:"small"},"plus")):D.push((0,tl.jsx)(tN.Dropdown,{menu:{items:v},placement:"bottomLeft",trigger:["click"],children:(0,tl.jsx)(aM.h,{icon:{value:"new"},size:"small"})},"plus-dropdown"))),D.push((0,tl.jsx)(aM.h,{disabled:0===j,icon:{value:"chevron-up"},onClick:()=>{f(n)},size:"small"},"up")),D.push((0,tl.jsx)(aM.h,{disabled:w,icon:{value:"chevron-down"},onClick:()=>{c(n)},size:"small"},"down")),(null==T?void 0:T.hasDialogBoxConfiguration)===!0&&D.push((0,tl.jsx)(aM.h,{icon:{value:"settings"},onClick:()=>{null==u||u(t)},size:"small"},"dialog")),D.push((0,tl.jsx)(aM.h,{icon:{value:C?"eye-off":"eye"},onClick:()=>{null==m||m(n)},size:"small",title:b(C?"areablock.show":"areablock.hide")},"visibility")),E=(0,tl.jsx)(aM.h,{icon:{value:"trash"},onClick:()=>{d(n)},size:"small"},"minus");let M=(0,tl.jsx)(o6.Q,{activateOnHover:!p,additionalIcon:p?"inheritance-active":void 0,className:h.areablockToolstrip,disabled:p,dragger:!!p||{listeners:y},theme:"inverse",title:S,children:(0,tl.jsxs)(aR.P,{dividerSize:"small",size:"mini",theme:"secondary",children:[(0,tl.jsx)(tN.Space,{size:"small",children:D}),E]})},`toolbar-${n.getAttribute("key")}`);return(0,tl.jsx)(lt,{isInherited:p,onOverwrite:g,children:M})};var ln=i(52595),lr=i(29813);let la=(0,ia.createStyles)(e=>{let{token:t}=e;return{dropzone:{height:oX.HEIGHT,borderRadius:t.borderRadius,backgroundColor:t.colorPrimary,opacity:0,'&[data-pimcore-drag-state="dragging"]':{opacity:.1},'&[data-pimcore-drag-state="active"]':{opacity:.6}},dropzoneDragActive:{opacity:.1},dropzoneHover:{opacity:.6},dropzoneRejected:{opacity:.6,backgroundColor:t.colorError},dragActive:{opacity:"0.3 !important",backgroundColor:`${t.colorPrimaryBg} !important`,"& [data-pimcore-editable-dropzone]":{visibility:"hidden"}}}}),lo=e=>{let{id:t,index:i,setNodeRef:n}=e,{styles:r}=la(),{isDragActive:a,isOver:o,isValid:l}=(0,lr.Z)();return(0,tl.jsx)("div",{className:oy()(r.dropzone,"pimcore-editable-dropzone",{[r.dropzoneDragActive]:a,[r.dropzoneHover]:o&&l,[r.dropzoneRejected]:o&&!l}),"data-pimcore-dropzone-id":t??"default-dropzone","data-pimcore-dropzone-index":i??0,ref:n})},ll=e=>{let{id:t,index:i,onDropItem:n,isValidDrop:r}=e,{setNodeRef:a}=(0,ln.useDroppable)({id:t}),o=async e=>{null!=n&&await n(e,i)},l=r??(()=>!1);return(0,tl.jsx)(oE.b,{disableDndActiveIndicator:!1,isValidContext:l,isValidData:l,onDrop:o,children:(0,tl.jsx)(lo,{id:t,index:i,setNodeRef:a})})},ls=e=>{let{areaTypes:t,config:i,onClick:n,isInherited:r=!1,onOverwrite:a}=e,{styles:o}=o3(),{menuItems:l}=o7({config:i,onAddArea:e=>{n(e)}}),s=async(e,t)=>{var i;!r&&"areablock-type"===e.type&&(0,eY.isString)(null==(i=e.data)?void 0:i.areablockType)&&await n(e.data.areablockType)};return(0,tl.jsxs)(tl.Fragment,{children:[(0,tl.jsx)(lo,{}),(0,tl.jsx)(lt,{isInherited:r,onOverwrite:a,children:(0,tl.jsx)(o6.Q,{additionalIcon:r?"inheritance-active":void 0,className:o.areablockToolstrip,disabled:r,theme:"inverse",children:1===t.length?(0,tl.jsx)(aM.h,{icon:{value:"new"},onClick:r?void 0:()=>{n(t[0].type)},size:"small"}):(0,tl.jsx)(tN.Dropdown,{menu:{items:l},placement:"bottomLeft",trigger:r?[]:["click"],children:(0,tl.jsx)(aM.h,{icon:{value:"new"},size:"small"})})})}),!r&&(0,tl.jsx)(ll,{id:"empty-areablock-toolbar-dropzone",index:0,isValidDrop:e=>{var t;if(r||"areablock-type"!==e.type||!(0,eY.isString)(null==(t=e.data)?void 0:t.areablockType))return!1;let n=e.data.areablockType;return o0.isTypeAllowed(i,n)},onDropItem:s})]})},ld=e=>{let{blockManager:t,onMoveItem:i,onDropItem:n,isValidDrop:r}=e,{styles:a}=la(),[o,l]=(0,ts.useState)(null),[s,d]=(0,ts.useState)([]),[f,c]=(0,ts.useState)(0),[,u]=(0,ts.useTransition)(),m=(0,ts.useRef)(!1),p=(0,ts.useRef)(null),g=(0,ts.useMemo)(()=>t.getContainer(),[t]),h=(0,ts.useMemo)(()=>(null==g?void 0:g.getAttribute(oK.DATA_NAME))??null,[g]),b=(0,ts.useMemo)(()=>t.queryElements(),[t,f]),y=(0,ts.useCallback)(()=>{u(()=>{c(e=>e+1)})},[u]),v=(0,ts.useCallback)(()=>{var e,t,i,n;e=m.current,document.querySelectorAll(oZ.DROPZONE_CONTAINER).forEach(t=>{let i=t.getAttribute(oK.DATA_EDITABLE_DROPZONE);e?i===h?t.style.visibility="":!(0,eY.isNull)(i)&&!(0,eY.isNull)(h)&&i.startsWith(h+":")&&(t.style.visibility="hidden"):t.style.visibility=""}),t=g,i=p.current,n=m.current,(0,eY.isNull)(t)||t.querySelectorAll(oZ.DROPZONE).forEach(e=>{let t=e.getAttribute(oK.DATA_DROPZONE_ID);n?t===i?e.setAttribute(oK.DATA_DRAG_STATE,oJ.ACTIVE):e.setAttribute(oK.DATA_DRAG_STATE,oJ.DRAGGING):e.removeAttribute(oK.DATA_DRAG_STATE)})},[g,h]),x=(0,ts.useCallback)(e=>{let t=Array.from((null==g?void 0:g.querySelectorAll(`[${oK.DATA_EDITABLE_DROPZONE}="${h}"]`))??[]).indexOf(e);if(-1!==t){let i=`${oX.ID_PREFIX}${t}`,a=(0,tl.jsx)(ll,{id:i,index:t,isValidDrop:r,onDropItem:n},i),o=oh().createPortal(a,e);d(e=>[...e,o])}},[g,h,r,n]),j=(0,ts.useCallback)(()=>{((e,t)=>{if((0,eY.isNull)(e)||(0,eY.isNull)(t))return;let i=e.querySelector(`[${oK.DATA_EDITABLE_DROPZONE}="${t}"][${oK.DATA_FIRST_DROPZONE}="true"]`);null!==i&&i.remove()})(g,h)},[g,h]);(0,ts.useEffect)(()=>{if(0===b.length){var e,t;d([]),e=g,t=h,(0,eY.isNull)(e)||e.querySelectorAll(`[${oK.DATA_EDITABLE_DROPZONE}="${t}"]`).forEach(e=>{e.remove()});return}(0,eY.isNull)(g)||0!==f||((e,t)=>{if(0===e.length){let e=document.querySelector(`[data-name="${t}"]`);if(!(0,eY.isNil)(e)&&(0,eY.isNil)(e.querySelector(`[${oK.DATA_EDITABLE_DROPZONE}="${t}"]`))){let i=oQ(t);e.appendChild(i)}return}let i=e[0];if(!((e,t)=>{let i=e.previousElementSibling;return(null==i?void 0:i.getAttribute(oK.DATA_EDITABLE_DROPZONE))===t})(i,t)){var n;let e=oQ(t,!0);null==(n=i.parentNode)||n.insertBefore(e,i)}e.forEach(e=>{if(null===e.querySelector(`[${oK.DATA_EDITABLE_DROPZONE}="${t}"]`)){let i=oQ(t);e.appendChild(i)}})})(b,h);let i=null==g?void 0:g.querySelectorAll(`[${oK.DATA_EDITABLE_DROPZONE}="${h}"]`),a=[];null==i||i.forEach((e,t)=>{let i=`${oX.ID_PREFIX}${t}`,o=(0,tl.jsx)(ll,{id:i,index:t,isValidDrop:r,onDropItem:n},i),l=oh().createPortal(o,e);a.push(l)}),d(a)},[g,h,b.length]),(0,ts.useEffect)(()=>{v()},[v,o]);let w=(0,ts.useCallback)(e=>{let i=String(e.active.id);l(i),m.current=!0,p.current=null;let n=b.find(e=>t.getElementKey(e)===i);(0,eY.isUndefined)(n)||n.classList.add(a.dragActive)},[a.dragActive,b,t]);return{activeId:o,handleDragStart:w,handleDragOver:(0,ts.useCallback)(e=>{let{over:t}=e;if((0,eY.isUndefined)(null==t?void 0:t.id))p.current=null;else{let e=String(t.id);e.startsWith(oX.ID_PREFIX)?p.current=e:p.current=null}v()},[v]),handleDragEnd:(0,ts.useCallback)(e=>{let{active:n,over:r}=e;if(l(null),m.current=!1,p.current=null,b.forEach(e=>{e.classList.remove(a.dragActive)}),null!==r&&n.id!==r.id){let e=String(r.id);if(e.startsWith(oX.ID_PREFIX)){let r=document.querySelector(`[${oK.DATA_DROPZONE_ID}="${e}"]`),a=null==r?void 0:r.getAttribute(oK.DATA_DROPZONE_INDEX),o=(0,eY.isNull)(a)||(0,eY.isUndefined)(a)||""===a?NaN:parseInt(a,10);if(!isNaN(o)){let e=b.findIndex(e=>t.getElementKey(e)===n.id);if(-1!==e){let t=o;e{let{token:t}=e;return{dragOverlay:{display:"inline-flex",alignItems:"center",cursor:"grabbing",boxShadow:t.boxShadowSecondary,maxWidth:"max-content"}}}),lu=e=>{let{activeId:t,title:i}=e,{styles:n}=lc();return(0,tl.jsx)(ln.DragOverlay,{dropAnimation:null,modifiers:[lf.snapCenterToCursor],children:null!==t?(0,tl.jsx)("div",{className:n.dragOverlay,children:(0,tl.jsx)(o6.Q,{dragger:!0,rounded:!0,theme:"inverse",title:i})}):null})},lm=e=>{let{children:t,items:i,activeId:n,dragOverlayTitle:r,onDragEnd:a,onDragOver:o,onDragStart:l}=e,s=(0,ln.useSensors)((0,ln.useSensor)(ln.PointerSensor,{activationConstraint:{distance:8}}),(0,ln.useSensor)(ln.KeyboardSensor));return(0,tl.jsxs)(ln.DndContext,{collisionDetection:ln.pointerWithin,onDragEnd:a,onDragOver:o,onDragStart:l,sensors:s,children:[(0,tl.jsx)(o4.SortableContext,{items:i,strategy:o4.verticalListSortingStrategy,children:t}),(0,tl.jsx)(lu,{activeId:n,title:r})]})};class lp{findContainer(e){return(0,eY.isNil)(null==e?void 0:e.current)?document.querySelector(`[data-name="${this.editableName}"][data-type="${this.getEditableType()}"]`):e.current}getContainer(){return this.container}getEditableName(){return this.editableName}getRealEditableName(){var e;return(null==(e=this.container)?void 0:e.getAttribute("data-real-name"))??this.editableName}queryElements(){return(0,eY.isNil)(this.container)?[]:Array.from(this.container.querySelectorAll(this.getElementSelector()))}findElementIndex(e){return this.queryElements().indexOf(e)}findElementByKey(e){return this.queryElements().find(t=>this.getElementKey(t)===e)??null}getElementKey(e){return e.getAttribute("key")}setElementKey(e,t){e.setAttribute("key",t)}parseElementKey(e){return parseInt(this.getElementKey(e)??"0",10)}calculateNextKey(){let e=this.queryElements();if(0===e.length)return 1;let t=0;for(let i of e){let e=this.parseElementKey(i);e>t&&(t=e)}return t+1}ensureAllElementKeys(){let e=this.queryElements();return e.forEach(e=>{let t=this.getElementKey(e);((0,eY.isNil)(t)||""===t)&&this.setElementKey(e,this.calculateNextKey().toString())}),e}constructor(e,t){this.editableName=e,this.container=this.findContainer(t)}}class lg extends lp{getEditableType(){return"areablock"}getElementSelector(){return".pimcore_area_entry"}getElementType(e){return e.getAttribute("type")}setElementType(e,t){e.setAttribute("type",t)}getAreablockValue(){return this.ensureAllElementKeys().map(e=>{let t=this.getElementKey(e);return{key:t??"",type:this.getElementType(e)??"",hidden:this.isElementHidden(e)}})}isElementHidden(e){return"true"===e.getAttribute("data-hidden")}setElementHidden(e,t){t?e.setAttribute("data-hidden","true"):e.removeAttribute("data-hidden")}toggleElementHidden(e){let t=this.isElementHidden(e);return this.setElementHidden(e,!t),!t}applyStylestoAreaEntries(e){this.queryElements().forEach(t=>{t.classList.add(e)})}}var lh=i(66609),lb=i(64531);let ly=e=>{let{element:t,areablockName:i,editableDefinitions:n=[],isOpen:r=!1,onClose:a}=e,{dialogConfig:o,editableDefinitions:l,handleCloseDialog:s,hasDialog:d}=(0,lb.r)({element:t,dialogSelector:".pimcore_block_dialog",editableName:i,dynamicEditableDefinitions:n});return d&&r&&0!==l.length?(0,tl.jsx)(lh.e,{config:o,editableDefinitions:l,onClose:()=>{null==a||a(),s()},visible:r}):null},lv=e=>{let{value:t=[],onChange:i,config:n,className:r,editableName:a,containerRef:o,disabled:l=!1,isInherited:s=!1}=e,d=(0,eY.isArray)(t)?t:[],f=(0,ts.useMemo)(()=>new lg(a,o),[a,o]),c=(0,ts.useMemo)(()=>o0.getAvailableTypes(n),[n]),[u,m]=(0,ts.useState)(new Set),p=(0,ts.useCallback)(()=>{null==i||i(f.getAreablockValue())},[f,i]),g=(0,ts.useCallback)(e=>{m(t=>new Set(t).add(e))},[]),h=(0,ts.useCallback)(e=>{m(t=>{let i=new Set(t);return i.delete(e),i})},[]),b=(0,ts.useCallback)(e=>{f.toggleElementHidden(e);let t=f.getAreablockValue();null==i||i(t)},[f,i]),{dynamicEditables:y,addArea:v,removeArea:x,moveAreaUp:j,moveAreaDown:w,moveArea:C}=(e=>{let{areablockManager:t,onChange:i,config:n,disabled:r=!1}=e,{initializeData:a,getValues:o,removeValues:l}=(0,oH.b)(),{id:s}=(0,ts.useContext)(oG.R),[d,f]=(0,ts.useState)([]),c=(0,ts.useRef)(t.queryElements()),[u]=(0,o2.SD)(),{styles:m}=o3(),p=(0,ts.useCallback)(()=>{t.applyStylestoAreaEntries(m.areaEntry)},[t]);(0,ts.useEffect)(()=>{p()},[p]);let{hideElementUntilRendered:g}=o1({dynamicEditables:d,getContainer:()=>t.getContainer()}),h=(0,ts.useCallback)(e=>{let t=e([...c.current]);c.current=t;let n=oY.elementsToAreablockValue(t);null==i||i(n)},[i]),b=(0,ts.useCallback)(()=>{t.ensureAllElementKeys();let e=t.getAreablockValue();null==i||i(e)},[i,t]),y=(0,ts.useCallback)(async(e,i)=>{if(r)return;let o=o0.getEffectiveLimit(n),l=o0.isReloadMode(n)?c.current:t.queryElements();if(o0.isLimitReached(l.length,o))return;let d=o0.getAvailableTypes(n),m=i??((0,eY.isEmpty)(d)?"default":d[0].type);if(!o0.isTypeAllowed(n,m))return;let y=(0,eY.isNil)(e)?0:t.findElementIndex(e)+1,v=t.calculateNextKey();if(o0.isReloadMode(n))return void h(e=>{let i=document.createElement("div");t.setElementKey(i,v.toString()),t.setElementType(i,m),i.setAttribute("data-hidden","false");let n=[...e];return n.splice(y,0,i),n});try{let e,i=t.getContainer();if((0,eY.isNil)(i))return;let r=t.getAreablockValue();r.splice(y,0,{key:v,type:m,hidden:!1});let{error:o,data:l}=await u({id:s,body:{name:t.getEditableName(),realName:t.getRealEditableName(),index:y,blockStateStack:(e=null==n?void 0:n.blockStateStack,(0,eY.isString)(e)?JSON.parse(e):null),areaBlockConfig:n??{},areaBlockData:r}});if(!(0,eY.isUndefined)(o))return void(0,is.ZP)(new is.MS(o));if(!(0,eY.isNil)(null==l?void 0:l.htmlCode)){let e=document.createElement("div");e.innerHTML=l.htmlCode;let n=e.firstElementChild;if(!(0,eY.isNil)(n)){g(n);let e=t.queryElements();if(0===e.length){var x;i.appendChild(n);let e=oQ(t.getEditableName(),!0);null==(x=n.parentNode)||x.insertBefore(e,n)}else(0,eY.isNil)(e[y-1])?(0,eY.isNil)(e[y])||e[y].insertAdjacentElement("beforebegin",n):e[y-1].insertAdjacentElement("afterend",n);let r=oQ(t.getEditableName());n.appendChild(r),p()}}if(!(0,eY.isNil)(null==l?void 0:l.editableDefinitions)&&(0,eY.isArray)(null==l?void 0:l.editableDefinitions)){let e=l.editableDefinitions,t=oU(e);a(t),f(t=>[...t,...e])}b()}catch(e){(0,is.ZP)(new is.aE("Failed to add area")),console.error("Failed to add area:",e),b()}},[r,n,h,b,t,s]),v=(0,ts.useCallback)(e=>{if(r)return;if(o0.isReloadMode(n)){let i=t.findElementIndex(e);h(e=>{let t=[...e];return t.splice(i,1),t});return}let i=(e=>{let i=t.getElementKey(e);if((0,eY.isNil)(i))return[];let n=o();return oY.filterEditableNames(Object.keys(n),t.getEditableName(),i)})(e),a=t.getElementKey(e);if(!(0,eY.isNil)(a)){let e=t.getEditableName(),i=`${e}:${a}.`;f(e=>e.filter(e=>!e.name.startsWith(i)))}e.remove(),(0,eY.isEmpty)(i)||l(i),b()},[r,n,h,l,b,t]),x=(e,i)=>{if(r)return;let a=t.findElementIndex(e),o=o0.isReloadMode(n)?c.current:t.queryElements();if("up"===i&&!o0.canMoveUp(a)||"down"===i&&!o0.canMoveDown(a,o.length))return;if(o0.isReloadMode(n)){let e="up"===i?a-1:a+1;h(t=>oY.swapElements(t,a,e));return}let l="up"===i?o[a-1]:o[a+1];if(!(0,eY.isNil)(l)){var s;let t="up"===i?l:l.nextSibling;null==(s=l.parentNode)||s.insertBefore(e,t),b()}};return{dynamicEditables:d,addArea:y,removeArea:v,moveAreaUp:e=>{x(e,"up")},moveAreaDown:e=>{x(e,"down")},moveArea:(0,ts.useCallback)((e,i)=>{if(r)return;let a=o0.isReloadMode(n)?c.current:t.queryElements();if(e<0||e>=a.length||i<0||i>=a.length)return;if(o0.isReloadMode(n))return void h(t=>{let n=[...t],[r]=n.splice(e,1);return n.splice(i,0,r),n});let o=window.scrollX,l=window.scrollY,s=a[e],d=a[i];if(!(0,eY.isNil)(s)&&!(0,eY.isNil)(d)){var f;let t=i>e?d.nextSibling:d;null==(f=d.parentNode)||f.insertBefore(s,t),requestAnimationFrame(()=>{window.scrollTo(o,l)}),b()}},[r,n,h,b,t])}})({areablockManager:f,value:d,onChange:i,config:n,disabled:l}),{renderAreablockToolbar:k}=(e=>{let{areablockManager:t,areaTypes:i,config:n,onAddArea:r,onRemoveArea:a,onMoveAreaUp:o,onMoveAreaDown:l,onMoveArea:s,onOpenDialog:d,onToggleHidden:f,isInherited:c=!1,onOverwrite:u}=e,{activeId:m,handleDragStart:p,handleDragOver:g,handleDragEnd:h,dropzonePortals:b,dragOverlayTitle:y,refreshDropzones:v,removeFirstDropzone:x}=(e=>{let{areablockManager:t,areaTypes:i,onMoveArea:n,onDropAreablock:r}=e,{t:a}=(0,t7.useTranslation)(),o=ld({blockManager:t,onMoveItem:n,onDropItem:async(e,t)=>{if(!(0,eY.isNil)(r)){var i;let n=(null==(i=e.data)?void 0:i.areablockType)??e.title??"default";await r(n,t)}},isValidDrop:e=>{var t;if("areablock-type"!==e.type||(null==(t=e.data)?void 0:t.areablockType)==null)return!1;let n=e.data.areablockType;return i.some(e=>e.type===n)}}),l=(0,ts.useMemo)(()=>{if(null===o.activeId)return;let e=t.queryElements().find(e=>t.getElementKey(e)===o.activeId);if(!(0,eY.isUndefined)(e)&&!(0,eY.isUndefined)(t.getElementType)&&i.length>0){let n=t.getElementType(e),r=i.find(e=>e.type===n);return(null==r?void 0:r.name)!=null?a(r.name):void 0}},[o.activeId,t,i]);return{...o,dragOverlayTitle:l}})({areablockManager:t,areaTypes:i,onMoveArea:s,onDropAreablock:async(e,i)=>{if(c)return;let n=t.queryElements();if(0===i)await j(null,e);else if(i>=n.length){let t=n[n.length-1];await j(t,e)}else{let t=n[i-1];await j(t,e)}}}),j=(0,ts.useCallback)(async(e,t)=>{await r(e,t),v()},[r,v]),w=(0,ts.useCallback)(e=>{let i=1===t.queryElements().length;a(e),i&&x()},[a,t,x]),C=(0,ts.useCallback)(e=>{let t=(0,tl.jsx)(ls,{areaTypes:i,config:n,isInherited:c,onClick:async e=>{await j(null,e)},onOverwrite:u});return oh().createPortal(t,e)},[i,n,j,c,u]);return{renderAreablockToolbar:(0,ts.useCallback)(()=>{let e=[],r=t.queryElements(),a=o0.isLimitReached(r.length,null==n?void 0:n.limit);if(0===r.length){let i=t.getContainer();if(null!==i){let t=C(i);e.push(t)}}else c||e.push(...b);let s=r.map(e=>t.getElementKey(e)).filter(e=>!!e);return r.forEach(r=>{let s=r.querySelector(".pimcore_area_buttons");if(null!==s){let m=t.getElementKey(r);if(null!==m){let p=(0,tl.jsx)(li,{areaTypes:i,areablockManager:t,buttonsContainer:s,config:n,element:r,id:m,isInherited:c,limitReached:a,onAddArea:j,onMoveAreaDown:l,onMoveAreaUp:o,onOpenDialog:d,onOverwrite:u,onRemoveArea:w,onToggleHidden:f}),g=oh().createPortal(p,s);e.push(g)}}}),(0,tl.jsx)(lm,{activeId:m,dragOverlayTitle:y,items:s,onDragEnd:h,onDragOver:g,onDragStart:p,children:(0,tl.jsx)(tl.Fragment,{children:e})})},[t,i,n,p,g,h,j,w,o,l,f,d,m,b,y,C,c,u])}})({areablockManager:f,areaTypes:c,config:n,onAddArea:v,onRemoveArea:x,onMoveAreaUp:j,onMoveAreaDown:w,onMoveArea:C,onOpenDialog:g,onToggleHidden:b,isInherited:s,onOverwrite:p});return(0,tl.jsxs)("div",{className:r,children:[(0,tl.jsx)(oW,{editableDefinitions:y}),k(),Array.from(u).map(e=>{let t=f.findElementByKey(e);return(0,eY.isNil)(t)?null:(0,tl.jsx)(ly,{areablockName:a,editableDefinitions:y,element:t,isOpen:!0,onClose:()=>{h(e)}},`dialog-${e}`)})]})};var lx=i(42801);let lj="Available Areas";class lw extends ou.C{getEditableDataComponent(e){var t;return(0,tl.jsx)(lv,{className:null==(t=e.config)?void 0:t.class,config:e.config,containerRef:e.containerRef,disabled:e.inherited,editableName:e.name,isInherited:e.inherited})}transformValue(e,t){return new lg(t.name,t.containerRef).getAreablockValue()}onDocumentReady(e,t){try{let i=t.filter(e=>e.type===this.id),{document:n}=(0,lx.sH)();if(i.length>0){let t={},r=(e,i,n)=>{(0,eY.isNil)(t[e])&&(t[e]=[]),i.forEach(i=>{t[e].push({areablockName:n.name,type:i.type,name:i.name,description:i.description,icon:i.icon})})},a=i.some(e=>{let t=e.config,i=o0.getGroupedAreaTypes(t);return!(0,eY.isArray)(i)});i.forEach(e=>{let t=e.config,i=o0.getGroupedAreaTypes(t);(0,eY.isArray)(i)?r(a?"Uncategorized":lj,i,e):Object.entries(i).forEach(t=>{let[i,n]=t;r(i,n,e)})}),n.notifyAreablockTypes(e,t)}else n.notifyAreablockTypes(e,{})}catch(e){console.warn("Could not notify parent about areablock types:",e)}}constructor(...e){var t,i,n;super(...e),i="areablock",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}}class lC extends e4.Z{}lC=(0,eq.gn)([(0,eZ.injectable)()],lC);class lk{isAvailableForSelection(e){return!0}}lk=(0,eq.gn)([(0,eZ.injectable)()],lk);let lT=()=>{let{t:e}=(0,t7.useTranslation)();return(0,tl.jsx)(tc.l.Item,{initialValue:"",label:e("text"),name:"text",children:(0,tl.jsx)(ae.I,{})})},lS=(0,eZ.injectable)()(ey=class extends lk{getComponent(){return(0,tl.jsx)(lT,{})}constructor(...e){var t,i,n;super(...e),i="staticText",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||ey,lD=(0,ts.createContext)(void 0),lE=e=>{let{initialConfig:t,children:i}=e,[n,r]=(0,ts.useState)(t??{});return(0,ts.useMemo)(()=>(0,tl.jsx)(lD.Provider,{value:{config:n,setConfig:r},children:i}),[n,i])},lM=()=>{let e=(0,ts.useContext)(lD);if(void 0===e)throw Error("usePipelineConfig must be used within a PipelineConfigProvider");return{config:e.config}},lI=()=>{var e;let{config:t}=lM(),i=null==t||null==(e=t.transformers)?void 0:e.caseChange,{t:n}=(0,t7.useTranslation)();if(void 0===i)throw Error("Transformer configuration for case change is missing");let r=i.configOptions.mode.options;return(0,tl.jsx)(tc.l.Item,{initialValue:r[0].value,label:n("mode"),name:"mode",children:(0,tl.jsx)(tC.P,{options:r})})},lL=(0,eZ.injectable)()(ev=class extends lk{getComponent(){return(0,tl.jsx)(lI,{})}constructor(...e){var t,i,n;super(...e),i="caseChange",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||ev,lP=()=>{let{t:e}=(0,t7.useTranslation)();return(0,tl.jsx)(tc.l.Item,{initialValue:" ",label:e("glue"),name:"glue",children:(0,tl.jsx)(ae.I,{})})},lN=(0,eZ.injectable)()(ex=class extends lk{getComponent(){return(0,tl.jsx)(lP,{})}constructor(...e){var t,i,n;super(...e),i="combine",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||ex,lA=()=>{var e;let{config:t}=lM(),{t:i}=(0,t7.useTranslation)(),n=null==t?void 0:t.simpleField;if(void 0===n)throw Error("Source field configuration is missing");let r=n.map(e=>({label:e.name,value:e.key}));return(0,tl.jsx)(tc.l.Item,{initialValue:null==(e=n[0])?void 0:e.key,label:i("field"),name:"field",children:(0,tl.jsx)(tC.P,{options:r})})},lR=(0,eZ.injectable)()(ej=class extends lk{isAvailableForSelection(e){return Array.isArray(e.simpleField)&&e.simpleField.length>0}getComponent(){return(0,tl.jsx)(lA,{})}constructor(...e){var t,i,n;super(...e),i="simpleField",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||ej;var lO=i(12556);let lB=()=>{let{config:e}=lM(),t=null==e?void 0:e.relationField,{name:i}=(0,at.Y)(),{operations:n}=(0,r9.f)(),r=tc.l.useWatch([...i,"relation"]),a=(0,lO.D)(r),{t:o}=(0,t7.useTranslation)();if((0,ts.useEffect)(()=>{a!==r&&void 0!==a&&n.update([...i,"field"],null,!1)},[r,i,n,a]),void 0===t)throw Error("Source field configuration is missing");let l=t.map(e=>({label:e.name,value:e.key})),s=[];return t.forEach(e=>{let t=[];e.key===r&&e.fields.forEach(e=>{t.push({label:e.name,value:e.key})}),t.length>0&&s.push(...t)}),(0,tl.jsxs)(rZ.k,{className:"w-full",gap:"small",children:[(0,tl.jsx)(tc.l.Item,{className:"w-full",label:o("relation"),name:"relation",children:(0,tl.jsx)(tN.Select,{options:l})}),(0,tl.jsx)(tc.l.Item,{className:"w-full",label:o("field"),name:"field",children:(0,tl.jsx)(tN.Select,{disabled:0===s.length,options:s})})]})},lF=(0,eZ.injectable)()(ew=class extends lk{isAvailableForSelection(e){return Array.isArray(e.relationField)&&e.relationField.length>0}getComponent(){return(0,tl.jsx)(lB,{})}constructor(...e){var t,i,n;super(...e),i="relationField",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||ew;var l_=i(94281),lz=i(14185),lV=i(84363),l$=i(8876),lW=i(94666),lH=i(20602);let lG=e=>{let{value:t,config:i,onChange:n,className:r}=e,{t:a}=(0,t7.useTranslation)(),[o,l]=(0,ts.useState)(""),{id:s}=(0,lH.useParams)(),d=(0,eY.isNil)(s)?void 0:parseInt(s),f=!(0,eY.isNil)(null==t?void 0:t.id)&&!(0,eY.isNil)(null==i?void 0:i.controller)&&i.controller.length>0,c=f?{id:t.id,type:t.type,controller:i.controller,parentDocumentId:d??void 0,template:null==i?void 0:i.template,...(0,eY.omit)(i,["controller","template","className","height","width","reload","title","type","class"])}:void 0,{data:u,isLoading:m,error:p}=(0,o2.uT)(c,{skip:!f}),g=!m&&f,{openElement:h}=(0,ig.f)(),b=()=>{if(!(0,eY.isNil)(null==t?void 0:t.type))return"object"===t.type?"data-object":t.type},y=!(0,eY.isNil)(p)&&"status"in p,v=y&&"PARSING_ERROR"!==p.status?p:void 0,x=y&&"PARSING_ERROR"===p.status&&"data"in p&&!(0,eY.isNil)(p.data)?String(p.data):null;td().useEffect(()=>{(0,eY.isNil)(u)?!(0,eY.isNil)(x)&&x.length>0?l(x):l(""):u.text().then(e=>{l(e)}).catch(()=>{l("")})},[u,x]);let{open:j}=(0,oT._)({selectionType:oS.RT.Single,areas:{asset:(0,eY.isNil)(null==i?void 0:i.type)||"asset"===i.type,document:(0,eY.isNil)(null==i?void 0:i.type)||"document"===i.type,object:(0,eY.isNil)(null==i?void 0:i.type)||"object"===i.type},config:{objects:(0,eY.isNil)(null==i?void 0:i.className)?void 0:{allowedTypes:(0,eY.isArray)(i.className)?i.className:[i.className]}},onFinish:e=>{if(!(0,eY.isEmpty)(e.items)){let t=e.items[0];n({id:t.data.id,type:t.elementType,subtype:t.data.type??t.data.subtype})}}}),w=[];g&&w.push({key:"empty",label:a("empty"),icon:(0,tl.jsx)(rR.J,{value:"trash"}),onClick:()=>{n(null),l("")}},{key:"open",label:a("open"),icon:(0,tl.jsx)(rR.J,{value:"open-folder"}),onClick:()=>{if(!(0,eY.isNil)(null==t?void 0:t.id)&&!(0,eY.isNil)(null==t?void 0:t.type)){let e=b();(0,eY.isNil)(e)||h({id:t.id,type:e})}}},{key:"locate-in-tree",label:a("element.locate-in-tree"),icon:(0,tl.jsx)(rR.J,{value:"target"}),onClick:()=>{let e=b();(0,oO.T)(e,null==t?void 0:t.id)}}),w.push({key:"search",label:a("search"),icon:(0,tl.jsx)(rR.J,{value:"search"}),onClick:()=>{j()}});let C=!(0,eY.isNil)(v)||y?(0,tl.jsx)(tN.Alert,{description:(()=>{if(!(0,eY.isNil)(v))try{if("object"==typeof v&&"data"in v&&!(0,eY.isNil)(v.data)){let e=(0,eY.isString)(v.data)?JSON.parse(v.data):v.data;if(!(0,eY.isNil)(e)&&"object"==typeof e&&"message"in e)return e.message}}catch{}})(),message:a("error-loading-renderlet"),showIcon:!0,style:{width:"100%"},type:"error"}):void 0,k=o.length>0?(0,tl.jsx)(rB.Z,{html:o}):void 0;return(0,tl.jsx)(lW.l,{className:r,contextMenuItems:w,defaultHeight:100,dropZoneText:(()=>{if(!(0,eY.isNil)(null==i?void 0:i.type))switch(i.type){case"document":return a("drop-document-here");case"asset":return a("drop-asset-here");case"object":return a("drop-object-here")}return a("drop-element-here")})(),error:C,hasContent:g,height:null==i?void 0:i.height,isLoading:m,renderedContent:k,width:null==i?void 0:i.width})};var lU=i(15688);let lq=e=>{let{value:t,config:i,onChange:n,className:r,inherited:a=!1,disabled:o=!1}=e,l=e=>"data-object"===e?"object":e;return(0,tl.jsx)(ox.A,{display:(0,eY.isNil)(null==i?void 0:i.width)?"block":void 0,isInherited:a,noPadding:!0,onOverwrite:()=>{n(t??null)},children:(0,tl.jsx)(oE.b,{disableDndActiveIndicator:!0,isValidContext:e=>!o&&lU.ME.includes(e.type),isValidData:e=>{var t,n,r;let a=l(e.type);return(!!(0,eY.isNil)(null==i?void 0:i.type)||i.type===a)&&("object"!==a||(0,eY.isNil)(null==i?void 0:i.className)?!(0,eY.isNil)(null==(t=e.data)?void 0:t.id)&&!(0,eY.isNil)(null==(n=e.data)?void 0:n.type):(Array.isArray(i.className)?i.className:[i.className]).includes(String(null==(r=e.data)?void 0:r.className)))},onDrop:e=>{var t,r;if(!(0,eY.isNil)(null==(t=e.data)?void 0:t.id)&&!(0,eY.isNil)(null==(r=e.data)?void 0:r.type)){let t=l(e.type);if(!(0,eY.isNil)(null==i?void 0:i.type)&&i.type!==t||"object"===t&&!(0,eY.isNil)(null==i?void 0:i.className)&&!(Array.isArray(i.className)?i.className:[i.className]).includes(String(e.data.className)))return;n({id:e.data.id,type:t,subtype:e.data.type??e.data.subtype})}},children:(0,tl.jsx)(lG,{className:r,config:i,onChange:n,value:t})})})};class lZ extends ou.C{getEditableDataComponent(e){var t;return(0,tl.jsx)(lq,{className:null==(t=e.config)?void 0:t.class,config:e.config,disabled:e.inherited,inherited:e.inherited,onChange:t=>{var i;return null==(i=e.onChange)?void 0:i.call(e,t)},value:e.value})}transformValue(e){return(0,eY.isNil)(e)||"object"!=typeof e||(0,eY.isNil)(e.id)?null:{id:e.id,type:e.type,subtype:e.subtype}}transformValueForApi(e){return(0,eY.isNil)(e)?null:{id:e.id??null,type:e.type??null,subtype:e.subtype??null}}constructor(...e){var t,i,n;super(...e),i="renderlet",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}}let lK=(0,ia.createStyles)(e=>{let{token:t}=e;return{blockContainer:{position:"relative"},blockToolstrip:{display:"inline-block",width:"fit-content",marginTop:t.marginXS,marginBottom:t.marginXS}}});class lJ extends lp{getEditableType(){return"block"}getElementSelector(){return`.pimcore_block_entry[data-name="${this.editableName}"][key]`}findElementIndex(e){let t=this.queryElements();if(0===t.length)return -1;let i=e.getAttribute("key");return t.findIndex(e=>e.getAttribute("key")===i)}ensureElementKey(e){let t=this.getElementKey(e);((0,eY.isNil)(t)||""===t)&&this.setElementKey(e,"0")}ensureAllElementKeys(){let e=this.queryElements();return e.forEach(e=>{this.ensureElementKey(e)}),e}getBlockValue(){let e=this.queryElements();return lX.elementsToBlockValue(e)}}let lX={swapElements:(e,t,i)=>{let n=[...e],r=n[t];return n[t]=n[i],n[i]=r,n},filterEditableNames:(e,t,i)=>{let n=`${t}:${i}.`;return e.filter(e=>e.startsWith(n))},elementsToBlockValue:e=>e.map(e=>e.getAttribute("key")).filter(e=>null!==e).map(e=>parseInt(e,10))},lQ={isLimitReached:(e,t)=>!(0,eY.isNil)(t)&&e>=t,isReloadMode:e=>(null==e?void 0:e.reload)===!0,getEffectiveLimit:e=>(null==e?void 0:e.limit)??1e6,canMoveUp:e=>e>0,canMoveDown:(e,t)=>e{let{id:t,buttonsContainer:i,element:n,limitReached:r,blockManager:a,onAddBlock:o,onRemoveBlock:l,onMoveBlockUp:s,onMoveBlockDown:d,isInherited:f=!1,onOverwrite:c}=e,{styles:u}=lK(),{t:m}=(0,t7.useTranslation)(),{listeners:p}=o8({id:t,element:n}),g=a.queryElements(),h=a.findElementIndex(n),b=h===g.length-1,y=!(0,eY.isNull)(i.querySelector(".pimcore_block_plus")),v=!(0,eY.isNull)(i.querySelector(".pimcore_block_minus")),x=!(0,eY.isNull)(i.querySelector(".pimcore_block_up")),j=!(0,eY.isNull)(i.querySelector(".pimcore_block_down")),w=[],C=null;return y&&!r&&w.push((0,tl.jsx)(aM.h,{icon:{value:"new"},onClick:()=>{o(n,1)},size:"small"},"plus")),x&&w.push((0,tl.jsx)(aM.h,{disabled:0===h,icon:{value:"chevron-up"},onClick:()=>{s(n)},size:"small"},"up")),j&&w.push((0,tl.jsx)(aM.h,{disabled:b,icon:{value:"chevron-down"},onClick:()=>{d(n)},size:"small"},"down")),v&&(C=(0,tl.jsx)(aM.h,{icon:{value:"trash"},onClick:()=>{l(n)},size:"small"},"minus")),(0,tl.jsx)(lt,{isInherited:f,onOverwrite:c,children:(0,tl.jsx)(o6.Q,{activateOnHover:!0,additionalIcon:f?"inheritance-active":void 0,className:u.blockToolstrip,disabled:f,dragger:{listeners:p},theme:"inverse",title:m("block"),children:(0,tl.jsxs)(aR.P,{dividerSize:"small",size:"mini",theme:"secondary",children:[(0,tl.jsx)(tN.Space,{size:"small",children:w}),C]})},`toolbar-${n.getAttribute("key")}`)})},l0=e=>{let{onClick:t,isInherited:i=!1,onOverwrite:n}=e,{styles:r}=lK();return(0,tl.jsxs)(tl.Fragment,{children:[(0,tl.jsx)(lo,{}),(0,tl.jsx)(lt,{isInherited:i,onOverwrite:n,children:(0,tl.jsx)(o6.Q,{additionalIcon:i?"inheritance-active":void 0,className:r.blockToolstrip,disabled:i,theme:"inverse",children:(0,tl.jsx)(aM.h,{icon:{value:"new"},onClick:i?void 0:t,size:"small"})})})]})},l1=e=>{let{value:t=[],onChange:i,config:n,className:r,editableName:a,containerRef:o,disabled:l=!1,isInherited:s=!1}=e,{styles:d}=lK(),f=(0,eY.isArray)(t)?t:[],c=(0,ts.useMemo)(()=>new lJ(a,o),[a,o]),u=(0,ts.useCallback)(()=>{null==i||i(c.getBlockValue())},[c,i]),{dynamicEditables:m,addBlock:p,removeBlock:g,moveBlockUp:h,moveBlockDown:b,moveBlock:y}=(e=>{let{blockManager:t,value:i=[],onChange:n,config:r,disabled:a=!1}=e,{initializeData:o,getValues:l,removeValues:s}=(0,oH.b)(),[d,f]=(0,ts.useState)([]),c=(0,ts.useRef)(t.queryElements()),{hideElementUntilRendered:u}=o1({dynamicEditables:d,getContainer:()=>t.getContainer()}),m=(0,ts.useCallback)(e=>{let t=e([...c.current]);c.current=t;let i=lX.elementsToBlockValue(t);null==n||n(i)},[n,r,t]),p=(0,ts.useCallback)(()=>{t.ensureAllElementKeys();let e=t.getBlockValue();null==n||n(e)},[n,t]),g=(0,ts.useCallback)(function(e){var i,n,l;if(arguments.length>1&&void 0!==arguments[1]&&arguments[1],a)return;let s=lQ.getEffectiveLimit(r),d=lQ.isReloadMode(r)?c.current:t.queryElements();if(lQ.isLimitReached(d.length,s))return;let g=(0,eY.isNil)(e)?0:t.findElementIndex(e)+1,h=t.calculateNextKey();if(lQ.isReloadMode(r))return void m(e=>{let i=document.createElement("div");t.setElementKey(i,h.toString());let n=[...e];return n.splice(g,0,i),n});let b=t.getContainer();if((0,eY.isNil)(b)||(0,eY.isNil)(null==r||null==(i=r.template)?void 0:i.html)||(0,eY.isNil)(null==r||null==(n=r.template)?void 0:n.editables))return;let{html:y,editableDefinitions:v}=((e,t)=>{let{templateHtml:i,blockManager:n,nextKey:r}=e,a=n.getEditableName(),o=(a.split(":").pop()??a).replace(/^\d+\./,""),l=a.replace(/[:.]/g,"_"),s=((e,t,i)=>{let n=t.getEditableName(),r=t.getRealEditableName(),a=n.replace(/[:.]/g,"_"),o=e;return(o=(o=(o=(o=(o=o.replace(RegExp(`"([^"]+):1000000\\.${r}("|:)`,"g"),`"${n}$2`)).replace(RegExp(`"pimcore_editable_([^"]+)_1000000_${r}_`,"g"),`"pimcore_editable_${a}_`)).replace(/:1000000\./g,`:${i}.`)).replace(/_1000000_/g,`_${i}_`)).replace(/="1000000"/g,`="${i}"`)).replace(/, 1000000"/g,`, ${i}"`)})(i,n,r),d=[];return t.forEach(e=>{var t;let i={...e};if((0,eY.isNil)(i.id)||""===i.id||(i.id=i.id.replace(RegExp(`pimcore_editable_([^"]+)_1000000_${o}_`,"g"),`pimcore_editable_${l}_`),i.id=i.id.replace(/_1000000_/g,`_${r}_`)),(0,eY.isNil)(i.name)||""===i.name||(i.name=i.name.replace(RegExp(`^([^"]+):1000000\\.${o}:`),`${a}:`),i.name=i.name.replace(/:1000000\./g,`:${r}.`)),!(0,eY.isNil)(null==(t=i.config)?void 0:t.blockStateStack)&&""!==i.config.blockStateStack)try{let e=JSON.parse(i.config.blockStateStack);for(let t=0;t{if(!(0,eY.isNil)(e.id)&&""!==e.id){let t=document.getElementById(e.id);if((0,eY.isNil)(t)){let t=document.createElement("div");t.id=e.id,t.setAttribute("data-name",e.name),t.setAttribute("data-type",e.type),j.appendChild(t)}}}),o(oU(v)),f(e=>[...e,...v]),p()}},[a,r,m,o,p,t]),h=(0,ts.useCallback)(e=>{if(a)return;if(lQ.isReloadMode(r)){let i=t.findElementIndex(e);m(e=>{let t=[...e];return t.splice(i,1),t});return}let i=(e=>{let i=t.getElementKey(e);if((0,eY.isNil)(i))return[];let n=l();return lX.filterEditableNames(Object.keys(n),t.getEditableName(),i)})(e),n=t.getElementKey(e);if(!(0,eY.isNil)(n)){let e=t.getEditableName(),i=`${e}:${n}.`;f(e=>e.filter(e=>!e.name.startsWith(i)))}e.remove(),i.length>0&&s(i),p()},[a,r,m,s,p,t]),b=(e,i)=>{if(a)return;let n=t.findElementIndex(e),o=lQ.isReloadMode(r)?c.current:t.queryElements();if("up"===i&&!lQ.canMoveUp(n)||"down"===i&&!lQ.canMoveDown(n,o.length))return;if(lQ.isReloadMode(r)){let e="up"===i?n-1:n+1;m(t=>lX.swapElements(t,n,e));return}let l="up"===i?o[n-1]:o[n+1];if(!(0,eY.isNil)(l)){var s;let t="up"===i?l:l.nextSibling;null==(s=l.parentNode)||s.insertBefore(e,t),p()}};return{dynamicEditables:d,addBlock:g,removeBlock:h,moveBlockUp:e=>{b(e,"up")},moveBlockDown:e=>{b(e,"down")},moveBlock:(0,ts.useCallback)((e,i)=>{if(a)return;let n=lQ.isReloadMode(r)?c.current:t.queryElements();if(e<0||e>=n.length||i<0||i>=n.length)return;if(lQ.isReloadMode(r))return void m(t=>{let n=[...t],[r]=n.splice(e,1);return n.splice(i,0,r),n});let o=window.scrollX,l=window.scrollY,s=n[e],d=n[i];if(!(0,eY.isNil)(s)&&!(0,eY.isNil)(d)){var f;let t=i>e?d.nextSibling:d;null==(f=d.parentNode)||f.insertBefore(s,t),requestAnimationFrame(()=>{window.scrollTo(o,l)}),p()}},[a,r,m,p,t])}})({blockManager:c,value:f,onChange:i,config:n,disabled:l}),{renderBlockToolbar:v}=(e=>{let{blockManager:t,config:i,onAddBlock:n,onRemoveBlock:r,onMoveBlockUp:a,onMoveBlockDown:o,onMoveBlock:l,isInherited:s=!1,onOverwrite:d}=e,{activeId:f,handleDragStart:c,handleDragOver:u,handleDragEnd:m,dropzonePortals:p,dragOverlayTitle:g,refreshDropzones:h,removeFirstDropzone:b}=(e=>{let{blockManager:t,onMoveBlock:i}=e,{t:n}=(0,t7.useTranslation)(),r=ld({blockManager:t,onMoveItem:i}),a=n("block");return{...r,dragOverlayTitle:a}})({blockManager:t,onMoveBlock:l}),y=(0,ts.useCallback)((e,t)=>{n(e,t),h()},[n,h]),v=(0,ts.useCallback)(e=>{let i=1===t.queryElements().length;r(e),i&&b()},[r,t,b]),x=(0,ts.useCallback)(e=>{let t=(0,tl.jsx)(l0,{isInherited:s,onClick:()=>{s||y(null,1)},onOverwrite:d});return oh().createPortal(t,e)},[y,s,d]);return{renderBlockToolbar:(0,ts.useCallback)(()=>{let e=[],n=t.queryElements(),r=(0,eY.isNumber)(null==i?void 0:i.limit)?i.limit:void 0,l=lQ.isLimitReached(n.length,r);if(0===n.length){let i=t.getContainer();if(null!==i){let t=x(i);e.push(t)}}else s||e.push(...p);let h=n.map(e=>t.getElementKey(e)).filter(e=>!!e);return n.forEach(i=>{let n=i.querySelector(".pimcore_block_buttons");if(null!==n){let r=t.getElementKey(i);if(null!==r){let f=(0,tl.jsx)(lY,{blockManager:t,buttonsContainer:n,element:i,id:r,isInherited:s,limitReached:l,onAddBlock:y,onMoveBlockDown:o,onMoveBlockUp:a,onOverwrite:d,onRemoveBlock:v},r),c=oh().createPortal(f,n);e.push(c)}}}),(0,tl.jsx)(lm,{activeId:f,dragOverlayTitle:g,items:h,onDragEnd:m,onDragOver:u,onDragStart:c,children:(0,tl.jsx)(tl.Fragment,{children:e})})},[t,i,c,u,m,y,v,a,o,f,p,g,x,s,d])}})({blockManager:c,config:n,onAddBlock:p,onRemoveBlock:g,onMoveBlockUp:h,onMoveBlockDown:b,onMoveBlock:y,isInherited:s,onOverwrite:u});return(0,tl.jsxs)("div",{className:`${d.blockContainer} ${r??""}`,children:[(0,tl.jsx)(oW,{editableDefinitions:m}),v()]})};class l2 extends ou.C{getEditableDataComponent(e){var t;return(0,tl.jsx)(l1,{className:null==(t=e.config)?void 0:t.class,config:e.config,containerRef:e.containerRef,disabled:e.inherited,editableName:e.name,isInherited:e.inherited,onChange:t=>{var i;return null==(i=e.onChange)?void 0:i.call(e,t)},value:e.value})}transformValue(e,t){return new lJ(t.name,t.containerRef).getBlockValue()}reloadOnChange(e){var t;return!!(null==(t=e.config)?void 0:t.reload)}constructor(...e){var t,i,n;super(...e),i="block",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}}let l3=(0,ia.createStyles)(e=>{let{css:t,token:i}=e;return{scheduledblockContainer:t` + `}});var lg=i(3859),lh=i.n(lg),lb=i(58793),ly=i.n(lb),lv=i(39679),lx=i(70068);let lj=e=>{let{value:t,onChange:i,disabled:n,inherited:r=!1,className:a,containerRef:l,width:o,height:s}=e,{t:d}=(0,t7.useTranslation)(),{input:f}=(0,an.U8)(),{styles:c}=lp(),[u,m]=(0,ts.useState)(null),p=(null==t?void 0:t.url)??"",g=!(0,eY.isEmpty)(p),h=!!n||!!r,b=()=>{null==i||i(t??null)};(0,ts.useEffect)(()=>{if(!(0,eY.isNull)(null==l?void 0:l.current)){let t=l.current.querySelector("iframe");if(!(0,eY.isNull)(t)&&(0,eY.isNull)(u)){var e;let i=t.width??t.getAttribute("width"),n=t.height??t.getAttribute("height"),r=(0,lv.toCssDimension)(i)??"300px",o=(0,lv.toCssDimension)(n)??"200px",s=document.createElement("div");s.className=ly()(c.wrapper,a),s.style.width=r,s.style.height=o,s.style.position="relative",null==(e=l.current.parentNode)||e.insertBefore(s,l.current),s.appendChild(l.current),m(s)}}},[l,a,u]);let y=()=>{h||f({title:d("embed.url-modal.title"),label:d("embed.url-modal.label"),initialValue:p,okText:d("embed.url-modal.ok-text"),cancelText:d("embed.url-modal.cancel-text"),onOk:e=>{let t=e.trim();(0,eY.isEmpty)(t)?null==i||i(null):null==i||i({url:t})}})};return(0,to.jsx)(to.Fragment,{children:g?(0,to.jsx)(to.Fragment,{children:!(0,eY.isNull)(u)&&lh().createPortal((0,to.jsx)(lx.A,{display:"block",hideButtons:!0,isInherited:r,noPadding:!0,onOverwrite:b,shape:"angular",style:{position:"absolute",inset:0},children:(0,to.jsx)(aM.h,{className:c.editButton,disabled:h,icon:{value:"edit"},onClick:y,size:"small",style:{pointerEvents:"auto"},title:d("embed.edit-url"),type:"default"})}),u)}):(0,to.jsx)(lx.A,{display:"block",isInherited:r,noPadding:!0,onOverwrite:b,style:void 0!==o?{maxWidth:(0,lv.toCssDimension)(o)}:void 0,children:(0,to.jsx)(lm.E,{buttonText:d("embed.add-url"),disabled:h,height:s,onClick:y,text:d("embed.placeholder"),width:o})})})};class lw extends lu.C{getEditableDataComponent(e){var t,i,n;return(0,to.jsx)(lj,{className:null==(t=e.config)?void 0:t.class,containerRef:e.containerRef,height:null==(i=e.config)?void 0:i.height,inherited:e.inherited,width:null==(n=e.config)?void 0:n.width})}reloadOnChange(e){return!0}constructor(...e){var t,i,n;super(...e),i="embed",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}}var lC=i(42462),lk=i(64490),lT=i(43958),lS=i(38466),lD=i(29610),lE=i(49845),lM=i(15171),lI=i(44124),lL=i(51776),lP=i(5581),lN=i(68727);let lA=e=>{let{assetId:t,width:i,height:n,containerWidth:r,thumbnailSettings:a,thumbnailConfig:l,...o}=e,s=(0,ts.useMemo)(()=>{if(void 0!==t){let e;return e={assetId:t,width:i,height:n,containerWidth:r,thumbnailSettings:a,thumbnailConfig:l,fallbackSrc:void 0},(0,lN.U)(e,"document","JPEG")}},[t,i,n,r,a,l]);return(0,to.jsx)(lP.Y,{...o,assetId:t,thumbnailUrl:s})};var lR=i(17441),lO=i(25031),lB=i(4930);let lF=e=>{var t,i,n,r,a;let{t:l}=(0,t7.useTranslation)(),o=e.value,s=null==(t=e.config)?void 0:t.width,d=null==(i=e.config)?void 0:i.height,f=(0,eY.isBoolean)(e.inherited)&&e.inherited,c=!0===e.disabled||f,u=!(0,eY.isNil)(null==o?void 0:o.id),{getSmartDimensions:m,handlePreviewResize:p,handleAssetTargetResize:g}=(0,lB.h)(),h=m(null==o?void 0:o.id),b=(0,eY.isNil)(s)&&(0,eY.isNil)(d),{width:y}=(0,lL.Z)(b?e.containerRef??{current:null}:{current:null}),{triggerUpload:v}=(0,lM.$)({}),{openElement:x}=(0,ig.f)(),{open:j}=(0,lT._)({selectionType:lS.RT.Single,areas:{asset:!0,object:!1,document:!1},config:{assets:{allowedTypes:["document"]}},onFinish:e=>{e.items.length>0&&w(e.items[0].data.id)}}),w=t=>{var i;null==(i=e.onChange)||i.call(e,{id:t})},C=(0,ts.useCallback)(()=>{var t;v({targetFolderPath:null==(t=e.config)?void 0:t.uploadPath,accept:"application/pdf",multiple:!1,maxItems:1,onSuccess:async e=>{e.length>0&&w(Number(e[0].id))}})},[null==(n=e.config)?void 0:n.uploadPath,v,w]),k=async e=>{w(Number(e.id))},T=[];(0,eY.isNil)(null==o?void 0:o.id)||T.push({key:"open",icon:(0,to.jsx)(rR.J,{value:"open-folder"}),label:l("open"),disabled:e.disabled,onClick:()=>{(0,eY.isNil)(null==o?void 0:o.id)||x({id:o.id,type:"asset"})}},{key:"empty",icon:(0,to.jsx)(rR.J,{value:"trash"}),label:l("empty"),disabled:c,onClick:()=>{var t;null==(t=e.onChange)||t.call(e,{})}}),T.push({key:"locate-in-tree",icon:(0,to.jsx)(rR.J,{value:"target"}),label:l("element.locate-in-tree"),disabled:c||(0,eY.isNil)(null==o?void 0:o.id),onClick:()=>{(0,lO.T)("asset",null==o?void 0:o.id)}},{key:"search",icon:(0,to.jsx)(rR.J,{value:"search"}),label:l("search"),disabled:c,onClick:j},{key:"upload",icon:(0,to.jsx)(rR.J,{value:"upload-cloud"}),label:l("upload"),disabled:c,onClick:C});let S=(0,ts.useCallback)(t=>{var i;let n=(0,eY.isNil)(null==o?void 0:o.id)?"round":"angular";return(0,to.jsx)(lI.H,{assetType:"document",disabled:c,fullWidth:(0,eY.isNil)((null==h?void 0:h.width)??s),onSuccess:k,targetFolderPath:null==(i=e.config)?void 0:i.uploadPath,children:(0,to.jsx)(lE.b,{isValidContext:()=>!c,isValidData:e=>"asset"===e.type&&"document"===e.data.type,onDrop:e=>{w(e.data.id)},shape:n,variant:"outline",children:t})})},[null==(r=e.config)?void 0:r.uploadPath,c,k,w,null==o?void 0:o.id]);return(0,to.jsx)(lx.A,{display:!(0,eY.isNil)((null==h?void 0:h.width)??s)||u?"inline-block":"block",hideButtons:!0,isInherited:f,onOverwrite:()=>{var t;null==(t=e.onChange)||t.call(e,e.value??{})},style:{minWidth:lR.FL},children:S(u?(0,to.jsx)(lA,{assetId:o.id,containerWidth:Math.max(y,lR.FL),dropdownItems:T,height:(null==h?void 0:h.height)??d,lastImageDimensions:h,onResize:p,thumbnailConfig:null==(a=e.config)?void 0:a.thumbnail,width:(null==h?void 0:h.width)??s},o.id):(0,to.jsx)(lD.Z,{dndIcon:!0,height:(null==h?void 0:h.height)??d??lR.R$,onResize:g,onSearch:j,onUpload:C,title:l("pdf-editable.dnd-target"),width:(null==h?void 0:h.width)??s??"100%"}))})},l_=(0,eZ.injectable)()(eb=class extends lu.C{getEditableDataComponent(e){return(0,to.jsx)(lF,{config:e.config,containerRef:e.containerRef,inherited:e.inherited})}constructor(...e){var t,i;super(...e),(t="symbol"==typeof(i=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?i:i+"")in this?Object.defineProperty(this,t,{value:"pdf",enumerable:!0,configurable:!0,writable:!0}):this[t]="pdf"}})||eb;var lz=i(22823),lV=i(27357),l$=i(29865);let lW=e=>{let{editableDefinitions:t}=e,i=(0,ts.useMemo)(()=>{let e={};return t.forEach(t=>{e[t.id]=(0,ts.createRef)()}),e},[t]);return(0,to.jsx)(to.Fragment,{children:t.map(e=>{let t=document.getElementById(e.id);return(0,eY.isNull)(t)?null:(!(0,eY.isNull)(i[e.id])&&(0,eY.isNull)(i[e.id].current)&&(i[e.id].current=t),lh().createPortal((0,to.jsx)(l$.k,{containerRef:i[e.id],editableDefinition:e}),t))})})};var lH=i(60433),lG=i(66858);let lU=e=>Object.fromEntries(e.map(e=>[e.name,{type:e.type,data:e.data??null}])),lq="pimcore-editable-dropzone-container",lZ={DROPZONE:".pimcore-editable-dropzone",DROPZONE_CONTAINER:`.${lq}`},lK={DATA_NAME:"data-name",DATA_EDITABLE_DROPZONE:"data-pimcore-editable-dropzone",DATA_DROPZONE_ID:"data-pimcore-dropzone-id",DATA_DROPZONE_INDEX:"data-pimcore-dropzone-index",DATA_DRAG_STATE:"data-pimcore-drag-state",DATA_FIRST_DROPZONE:"data-pimcore-first-dropzone"},lJ={ACTIVE:"active",DRAGGING:"dragging"},lX={ID_PREFIX:"pimcore-dropzone-",HEIGHT:"16px"},lQ=(e,t)=>{let i=document.createElement("div");return i.className=lq,i.setAttribute(lK.DATA_EDITABLE_DROPZONE,e??""),!0===t&&i.setAttribute(lK.DATA_FIRST_DROPZONE,"true"),i.style.height=lX.HEIGHT,i},lY={filterEditableNames(e,t,i){let n=`${t}:${i}.`;return e.filter(e=>e.startsWith(n))},elementsToAreablockValue:e=>e.map(e=>{let t=e.getAttribute("key")??"";return{key:t,type:e.getAttribute("type")??"",hidden:"true"===e.getAttribute("data-hidden")}}),swapElements(e,t,i){let n=[...e],r=n[t];return n[t]=n[i],n[i]=r,n}},l0={getEffectiveLimit:e=>(null==e?void 0:e.limit)??1e6,isReloadMode:e=>!!(null==e?void 0:e.reload),isLimitReached:(e,t)=>!((0,eY.isNil)(t)||(0,eY.isUndefined)(t))&&e>=t,canMoveUp:e=>e>0,canMoveDown:(e,t)=>e(null==e?void 0:e.types)??[],isTypeAllowed:(e,t)=>!!(0,eY.isNil)(null==e?void 0:e.allowed)||0===e.allowed.length||e.allowed.includes(t),getGroupedAreaTypes(e){let t=(null==e?void 0:e.types)??[],i=null==e?void 0:e.group;if((0,eY.isNil)(i)||0===Object.keys(i).length)return t;let n={};return Object.entries(i).forEach(e=>{let[i,r]=e,a=[...new Set(r)].map(e=>t.find(t=>t.type===e)).filter(e=>!(0,eY.isNil)(e));a.length>0&&(n[i]=a)}),n}},l1=e=>{let{dynamicEditables:t,getContainer:i}=e;return(0,ts.useLayoutEffect)(()=>{let e=i();if(!(0,eY.isNil)(e)){let t=e.querySelectorAll('[data-pending-editables="true"]');t.length>0&&t.forEach(e=>{e.style.display="",e.removeAttribute("data-pending-editables")})}},[t.length]),{hideElementUntilRendered:e=>{e.style.display="none",e.setAttribute("data-pending-editables","true")}}};var l2=i(23646);let l3=(0,ia.createStyles)(e=>{let{token:t}=e;return{areablockToolstrip:{display:"inline-block",width:"fit-content",marginTop:t.marginXS,marginBottom:t.marginXS},areaEntry:{'&[data-hidden="true"] .pimcore_area_content':{filter:"blur(1px)",opacity:.5}}}});var l6=i(44666),l4=i(38558);let l8=e=>{let{id:t,element:i}=e,{attributes:n,listeners:r,setNodeRef:a}=(0,l4.useSortable)({id:t});return td().useEffect(()=>{null!==a&&(a(i),Object.keys(n).forEach(e=>{void 0!==n[e]&&e.startsWith("data-")&&i.setAttribute(e,String(n[e]))}))},[a,i,n]),{listeners:r}},l7=e=>{let{config:t,onAddArea:i}=e,{t:n}=(0,t7.useTranslation)();return{menuItems:(0,ts.useMemo)(()=>{let e=l0.getGroupedAreaTypes(t);if(Array.isArray(e))return e.map(e=>({key:e.type,label:n(e.name),onClick:()=>{i(e.type)}}));let r=[];return Object.entries(e).forEach(e=>{let[t,a]=e,l=a.map(e=>({key:e.type,label:n(e.name),onClick:()=>{i(e.type)}}));null==r||r.push({key:t,label:n(t),children:l})}),r},[t,i,n])}};var l5=i(45444);let l9=(0,ia.createStyles)(()=>({inheritanceWrapper:{cursor:"pointer",display:"inline-block"}}));var oe=i(11746);let ot=e=>{let{children:t,isInherited:i=!1,onOverwrite:n,className:r}=e,{styles:a,cx:l}=l9(),{inheritanceMenuItems:o,inheritanceTooltip:s}=(0,oe.m)({onOverwrite:n});return(0,eY.isNil)(t)?(0,to.jsx)(to.Fragment,{}):i&&!(0,eY.isNil)(n)?(0,to.jsx)(tN.Dropdown,{menu:{items:o},placement:"bottomLeft",trigger:["click","contextMenu"],children:(0,to.jsx)(l5.u,{title:s,children:(0,to.jsx)("div",{className:l(a.inheritanceWrapper,r),children:t})})}):(0,to.jsx)(to.Fragment,{children:t})},oi=e=>{let{id:t,buttonsContainer:i,element:n,limitReached:r,areaTypes:a,config:l,areablockManager:o,onAddArea:s,onRemoveArea:d,onMoveAreaUp:f,onMoveAreaDown:c,onOpenDialog:u,onToggleHidden:m,isInherited:p=!1,onOverwrite:g}=e,{styles:h}=l3(),{t:b}=(0,t7.useTranslation)(),{listeners:y}=l8({id:t,element:n}),{menuItems:v}=l7({config:l,onAddArea:e=>{s(n,e)}}),x=o.queryElements(),j=o.findElementIndex(n),w=j===x.length-1,C=o.isElementHidden(n),k=o.getElementType(n),T=a.find(e=>e.type===k),S=(null==T?void 0:T.name)!=null?b(T.name):void 0,D=[],E=null;r||(1===a.length?D.push((0,to.jsx)(aM.h,{icon:{value:"new"},onClick:()=>{s(n,a[0].type)},size:"small"},"plus")):D.push((0,to.jsx)(tN.Dropdown,{menu:{items:v},placement:"bottomLeft",trigger:["click"],children:(0,to.jsx)(aM.h,{icon:{value:"new"},size:"small"})},"plus-dropdown"))),D.push((0,to.jsx)(aM.h,{disabled:0===j,icon:{value:"chevron-up"},onClick:()=>{f(n)},size:"small"},"up")),D.push((0,to.jsx)(aM.h,{disabled:w,icon:{value:"chevron-down"},onClick:()=>{c(n)},size:"small"},"down")),(null==T?void 0:T.hasDialogBoxConfiguration)===!0&&D.push((0,to.jsx)(aM.h,{icon:{value:"settings"},onClick:()=>{null==u||u(t)},size:"small"},"dialog")),D.push((0,to.jsx)(aM.h,{icon:{value:C?"eye-off":"eye"},onClick:()=>{null==m||m(n)},size:"small",title:b(C?"areablock.show":"areablock.hide")},"visibility")),E=(0,to.jsx)(aM.h,{icon:{value:"trash"},onClick:()=>{d(n)},size:"small"},"minus");let M=(0,to.jsx)(l6.Q,{activateOnHover:!p,additionalIcon:p?"inheritance-active":void 0,className:h.areablockToolstrip,disabled:p,dragger:!!p||{listeners:y},theme:"inverse",title:S,children:(0,to.jsxs)(aR.P,{dividerSize:"small",size:"mini",theme:"secondary",children:[(0,to.jsx)(tN.Space,{size:"small",children:D}),E]})},`toolbar-${n.getAttribute("key")}`);return(0,to.jsx)(ot,{isInherited:p,onOverwrite:g,children:M})};var on=i(52595),or=i(29813);let oa=(0,ia.createStyles)(e=>{let{token:t}=e;return{dropzone:{height:lX.HEIGHT,borderRadius:t.borderRadius,backgroundColor:t.colorPrimary,opacity:0,'&[data-pimcore-drag-state="dragging"]':{opacity:.1},'&[data-pimcore-drag-state="active"]':{opacity:.6}},dropzoneDragActive:{opacity:.1},dropzoneHover:{opacity:.6},dropzoneRejected:{opacity:.6,backgroundColor:t.colorError},dragActive:{opacity:"0.3 !important",backgroundColor:`${t.colorPrimaryBg} !important`,"& [data-pimcore-editable-dropzone]":{visibility:"hidden"}}}}),ol=e=>{let{id:t,index:i,setNodeRef:n}=e,{styles:r}=oa(),{isDragActive:a,isOver:l,isValid:o}=(0,or.Z)();return(0,to.jsx)("div",{className:ly()(r.dropzone,"pimcore-editable-dropzone",{[r.dropzoneDragActive]:a,[r.dropzoneHover]:l&&o,[r.dropzoneRejected]:l&&!o}),"data-pimcore-dropzone-id":t??"default-dropzone","data-pimcore-dropzone-index":i??0,ref:n})},oo=e=>{let{id:t,index:i,onDropItem:n,isValidDrop:r}=e,{setNodeRef:a}=(0,on.useDroppable)({id:t}),l=async e=>{null!=n&&await n(e,i)},o=r??(()=>!1);return(0,to.jsx)(lE.b,{disableDndActiveIndicator:!1,isValidContext:o,isValidData:o,onDrop:l,children:(0,to.jsx)(ol,{id:t,index:i,setNodeRef:a})})},os=e=>{let{areaTypes:t,config:i,onClick:n,isInherited:r=!1,onOverwrite:a}=e,{styles:l}=l3(),{menuItems:o}=l7({config:i,onAddArea:e=>{n(e)}}),s=async(e,t)=>{var i;!r&&"areablock-type"===e.type&&(0,eY.isString)(null==(i=e.data)?void 0:i.areablockType)&&await n(e.data.areablockType)};return(0,to.jsxs)(to.Fragment,{children:[(0,to.jsx)(ol,{}),(0,to.jsx)(ot,{isInherited:r,onOverwrite:a,children:(0,to.jsx)(l6.Q,{additionalIcon:r?"inheritance-active":void 0,className:l.areablockToolstrip,disabled:r,theme:"inverse",children:1===t.length?(0,to.jsx)(aM.h,{icon:{value:"new"},onClick:r?void 0:()=>{n(t[0].type)},size:"small"}):(0,to.jsx)(tN.Dropdown,{menu:{items:o},placement:"bottomLeft",trigger:r?[]:["click"],children:(0,to.jsx)(aM.h,{icon:{value:"new"},size:"small"})})})}),!r&&(0,to.jsx)(oo,{id:"empty-areablock-toolbar-dropzone",index:0,isValidDrop:e=>{var t;if(r||"areablock-type"!==e.type||!(0,eY.isString)(null==(t=e.data)?void 0:t.areablockType))return!1;let n=e.data.areablockType;return l0.isTypeAllowed(i,n)},onDropItem:s})]})},od=e=>{let{blockManager:t,onMoveItem:i,onDropItem:n,isValidDrop:r}=e,{styles:a}=oa(),[l,o]=(0,ts.useState)(null),[s,d]=(0,ts.useState)([]),[f,c]=(0,ts.useState)(0),[,u]=(0,ts.useTransition)(),m=(0,ts.useRef)(!1),p=(0,ts.useRef)(null),g=(0,ts.useMemo)(()=>t.getContainer(),[t]),h=(0,ts.useMemo)(()=>(null==g?void 0:g.getAttribute(lK.DATA_NAME))??null,[g]),b=(0,ts.useMemo)(()=>t.queryElements(),[t,f]),y=(0,ts.useCallback)(()=>{u(()=>{c(e=>e+1)})},[u]),v=(0,ts.useCallback)(()=>{var e,t,i,n;e=m.current,document.querySelectorAll(lZ.DROPZONE_CONTAINER).forEach(t=>{let i=t.getAttribute(lK.DATA_EDITABLE_DROPZONE);e?i===h?t.style.visibility="":!(0,eY.isNull)(i)&&!(0,eY.isNull)(h)&&i.startsWith(h+":")&&(t.style.visibility="hidden"):t.style.visibility=""}),t=g,i=p.current,n=m.current,(0,eY.isNull)(t)||t.querySelectorAll(lZ.DROPZONE).forEach(e=>{let t=e.getAttribute(lK.DATA_DROPZONE_ID);n?t===i?e.setAttribute(lK.DATA_DRAG_STATE,lJ.ACTIVE):e.setAttribute(lK.DATA_DRAG_STATE,lJ.DRAGGING):e.removeAttribute(lK.DATA_DRAG_STATE)})},[g,h]),x=(0,ts.useCallback)(e=>{let t=Array.from((null==g?void 0:g.querySelectorAll(`[${lK.DATA_EDITABLE_DROPZONE}="${h}"]`))??[]).indexOf(e);if(-1!==t){let i=`${lX.ID_PREFIX}${t}`,a=(0,to.jsx)(oo,{id:i,index:t,isValidDrop:r,onDropItem:n},i),l=lh().createPortal(a,e);d(e=>[...e,l])}},[g,h,r,n]),j=(0,ts.useCallback)(()=>{((e,t)=>{if((0,eY.isNull)(e)||(0,eY.isNull)(t))return;let i=e.querySelector(`[${lK.DATA_EDITABLE_DROPZONE}="${t}"][${lK.DATA_FIRST_DROPZONE}="true"]`);null!==i&&i.remove()})(g,h)},[g,h]);(0,ts.useEffect)(()=>{if(0===b.length){var e,t;d([]),e=g,t=h,(0,eY.isNull)(e)||e.querySelectorAll(`[${lK.DATA_EDITABLE_DROPZONE}="${t}"]`).forEach(e=>{e.remove()});return}(0,eY.isNull)(g)||0!==f||((e,t)=>{if(0===e.length){let e=document.querySelector(`[data-name="${t}"]`);if(!(0,eY.isNil)(e)&&(0,eY.isNil)(e.querySelector(`[${lK.DATA_EDITABLE_DROPZONE}="${t}"]`))){let i=lQ(t);e.appendChild(i)}return}let i=e[0];if(!((e,t)=>{let i=e.previousElementSibling;return(null==i?void 0:i.getAttribute(lK.DATA_EDITABLE_DROPZONE))===t})(i,t)){var n;let e=lQ(t,!0);null==(n=i.parentNode)||n.insertBefore(e,i)}e.forEach(e=>{if(null===e.querySelector(`[${lK.DATA_EDITABLE_DROPZONE}="${t}"]`)){let i=lQ(t);e.appendChild(i)}})})(b,h);let i=null==g?void 0:g.querySelectorAll(`[${lK.DATA_EDITABLE_DROPZONE}="${h}"]`),a=[];null==i||i.forEach((e,t)=>{let i=`${lX.ID_PREFIX}${t}`,l=(0,to.jsx)(oo,{id:i,index:t,isValidDrop:r,onDropItem:n},i),o=lh().createPortal(l,e);a.push(o)}),d(a)},[g,h,b.length]),(0,ts.useEffect)(()=>{v()},[v,l]);let w=(0,ts.useCallback)(e=>{let i=String(e.active.id);o(i),m.current=!0,p.current=null;let n=b.find(e=>t.getElementKey(e)===i);(0,eY.isUndefined)(n)||n.classList.add(a.dragActive)},[a.dragActive,b,t]);return{activeId:l,handleDragStart:w,handleDragOver:(0,ts.useCallback)(e=>{let{over:t}=e;if((0,eY.isUndefined)(null==t?void 0:t.id))p.current=null;else{let e=String(t.id);e.startsWith(lX.ID_PREFIX)?p.current=e:p.current=null}v()},[v]),handleDragEnd:(0,ts.useCallback)(e=>{let{active:n,over:r}=e;if(o(null),m.current=!1,p.current=null,b.forEach(e=>{e.classList.remove(a.dragActive)}),null!==r&&n.id!==r.id){let e=String(r.id);if(e.startsWith(lX.ID_PREFIX)){let r=document.querySelector(`[${lK.DATA_DROPZONE_ID}="${e}"]`),a=null==r?void 0:r.getAttribute(lK.DATA_DROPZONE_INDEX),l=(0,eY.isNull)(a)||(0,eY.isUndefined)(a)||""===a?NaN:parseInt(a,10);if(!isNaN(l)){let e=b.findIndex(e=>t.getElementKey(e)===n.id);if(-1!==e){let t=l;e{let{token:t}=e;return{dragOverlay:{display:"inline-flex",alignItems:"center",cursor:"grabbing",boxShadow:t.boxShadowSecondary,maxWidth:"max-content"}}}),ou=e=>{let{activeId:t,title:i}=e,{styles:n}=oc();return(0,to.jsx)(on.DragOverlay,{dropAnimation:null,modifiers:[of.snapCenterToCursor],children:null!==t?(0,to.jsx)("div",{className:n.dragOverlay,children:(0,to.jsx)(l6.Q,{dragger:!0,rounded:!0,theme:"inverse",title:i})}):null})},om=e=>{let{children:t,items:i,activeId:n,dragOverlayTitle:r,onDragEnd:a,onDragOver:l,onDragStart:o}=e,s=(0,on.useSensors)((0,on.useSensor)(on.PointerSensor,{activationConstraint:{distance:8}}),(0,on.useSensor)(on.KeyboardSensor));return(0,to.jsxs)(on.DndContext,{collisionDetection:on.pointerWithin,onDragEnd:a,onDragOver:l,onDragStart:o,sensors:s,children:[(0,to.jsx)(l4.SortableContext,{items:i,strategy:l4.verticalListSortingStrategy,children:t}),(0,to.jsx)(ou,{activeId:n,title:r})]})};class op{findContainer(e){return(0,eY.isNil)(null==e?void 0:e.current)?document.querySelector(`[data-name="${this.editableName}"][data-type="${this.getEditableType()}"]`):e.current}getContainer(){return this.container}getEditableName(){return this.editableName}getRealEditableName(){var e;return(null==(e=this.container)?void 0:e.getAttribute("data-real-name"))??this.editableName}queryElements(){return(0,eY.isNil)(this.container)?[]:Array.from(this.container.querySelectorAll(this.getElementSelector()))}findElementIndex(e){return this.queryElements().indexOf(e)}findElementByKey(e){return this.queryElements().find(t=>this.getElementKey(t)===e)??null}getElementKey(e){return e.getAttribute("key")}setElementKey(e,t){e.setAttribute("key",t)}parseElementKey(e){return parseInt(this.getElementKey(e)??"0",10)}calculateNextKey(){let e=this.queryElements();if(0===e.length)return 1;let t=0;for(let i of e){let e=this.parseElementKey(i);e>t&&(t=e)}return t+1}ensureAllElementKeys(){let e=this.queryElements();return e.forEach(e=>{let t=this.getElementKey(e);((0,eY.isNil)(t)||""===t)&&this.setElementKey(e,this.calculateNextKey().toString())}),e}constructor(e,t){this.editableName=e,this.container=this.findContainer(t)}}class og extends op{getEditableType(){return"areablock"}getElementSelector(){return".pimcore_area_entry"}getElementType(e){return e.getAttribute("type")}setElementType(e,t){e.setAttribute("type",t)}getAreablockValue(){return this.ensureAllElementKeys().map(e=>{let t=this.getElementKey(e);return{key:t??"",type:this.getElementType(e)??"",hidden:this.isElementHidden(e)}})}isElementHidden(e){return"true"===e.getAttribute("data-hidden")}setElementHidden(e,t){t?e.setAttribute("data-hidden","true"):e.removeAttribute("data-hidden")}toggleElementHidden(e){let t=this.isElementHidden(e);return this.setElementHidden(e,!t),!t}applyStylestoAreaEntries(e){this.queryElements().forEach(t=>{t.classList.add(e)})}}var oh=i(66609),ob=i(64531);let oy=e=>{let{element:t,areablockName:i,editableDefinitions:n=[],isOpen:r=!1,onClose:a}=e,{dialogConfig:l,editableDefinitions:o,handleCloseDialog:s,hasDialog:d}=(0,ob.r)({element:t,dialogSelector:".pimcore_block_dialog",editableName:i,dynamicEditableDefinitions:n});return d&&r&&0!==o.length?(0,to.jsx)(oh.e,{config:l,editableDefinitions:o,onClose:()=>{null==a||a(),s()},visible:r}):null},ov=e=>{let{value:t=[],onChange:i,config:n,className:r,editableName:a,containerRef:l,disabled:o=!1,isInherited:s=!1}=e,d=(0,eY.isArray)(t)?t:[],f=(0,ts.useMemo)(()=>new og(a,l),[a,l]),c=(0,ts.useMemo)(()=>l0.getAvailableTypes(n),[n]),[u,m]=(0,ts.useState)(new Set),p=(0,ts.useCallback)(()=>{null==i||i(f.getAreablockValue())},[f,i]),g=(0,ts.useCallback)(e=>{m(t=>new Set(t).add(e))},[]),h=(0,ts.useCallback)(e=>{m(t=>{let i=new Set(t);return i.delete(e),i})},[]),b=(0,ts.useCallback)(e=>{f.toggleElementHidden(e);let t=f.getAreablockValue();null==i||i(t)},[f,i]),{dynamicEditables:y,addArea:v,removeArea:x,moveAreaUp:j,moveAreaDown:w,moveArea:C}=(e=>{let{areablockManager:t,onChange:i,config:n,disabled:r=!1}=e,{initializeData:a,getValues:l,removeValues:o}=(0,lH.b)(),{id:s}=(0,ts.useContext)(lG.R),[d,f]=(0,ts.useState)([]),c=(0,ts.useRef)(t.queryElements()),[u]=(0,l2.SD)(),{styles:m}=l3(),p=(0,ts.useCallback)(()=>{t.applyStylestoAreaEntries(m.areaEntry)},[t]);(0,ts.useEffect)(()=>{p()},[p]);let{hideElementUntilRendered:g}=l1({dynamicEditables:d,getContainer:()=>t.getContainer()}),h=(0,ts.useCallback)(e=>{let t=e([...c.current]);c.current=t;let n=lY.elementsToAreablockValue(t);null==i||i(n)},[i]),b=(0,ts.useCallback)(()=>{t.ensureAllElementKeys();let e=t.getAreablockValue();null==i||i(e)},[i,t]),y=(0,ts.useCallback)(async(e,i)=>{if(r)return;let l=l0.getEffectiveLimit(n),o=l0.isReloadMode(n)?c.current:t.queryElements();if(l0.isLimitReached(o.length,l))return;let d=l0.getAvailableTypes(n),m=i??((0,eY.isEmpty)(d)?"default":d[0].type);if(!l0.isTypeAllowed(n,m))return;let y=(0,eY.isNil)(e)?0:t.findElementIndex(e)+1,v=t.calculateNextKey();if(l0.isReloadMode(n))return void h(e=>{let i=document.createElement("div");t.setElementKey(i,v.toString()),t.setElementType(i,m),i.setAttribute("data-hidden","false");let n=[...e];return n.splice(y,0,i),n});try{let e,i=t.getContainer();if((0,eY.isNil)(i))return;let r=t.getAreablockValue();r.splice(y,0,{key:v,type:m,hidden:!1});let{error:l,data:o}=await u({id:s,body:{name:t.getEditableName(),realName:t.getRealEditableName(),index:y,blockStateStack:(e=null==n?void 0:n.blockStateStack,(0,eY.isString)(e)?JSON.parse(e):null),areaBlockConfig:n??{},areaBlockData:r}});if(!(0,eY.isUndefined)(l))return void(0,is.ZP)(new is.MS(l));if(!(0,eY.isNil)(null==o?void 0:o.htmlCode)){let e=document.createElement("div");e.innerHTML=o.htmlCode;let n=e.firstElementChild;if(!(0,eY.isNil)(n)){g(n);let e=t.queryElements();if(0===e.length){var x;i.appendChild(n);let e=lQ(t.getEditableName(),!0);null==(x=n.parentNode)||x.insertBefore(e,n)}else(0,eY.isNil)(e[y-1])?(0,eY.isNil)(e[y])||e[y].insertAdjacentElement("beforebegin",n):e[y-1].insertAdjacentElement("afterend",n);let r=lQ(t.getEditableName());n.appendChild(r),p()}}if(!(0,eY.isNil)(null==o?void 0:o.editableDefinitions)&&(0,eY.isArray)(null==o?void 0:o.editableDefinitions)){let e=o.editableDefinitions,t=lU(e);a(t),f(t=>[...t,...e])}b()}catch(e){(0,is.ZP)(new is.aE("Failed to add area")),console.error("Failed to add area:",e),b()}},[r,n,h,b,t,s]),v=(0,ts.useCallback)(e=>{if(r)return;if(l0.isReloadMode(n)){let i=t.findElementIndex(e);h(e=>{let t=[...e];return t.splice(i,1),t});return}let i=(e=>{let i=t.getElementKey(e);if((0,eY.isNil)(i))return[];let n=l();return lY.filterEditableNames(Object.keys(n),t.getEditableName(),i)})(e),a=t.getElementKey(e);if(!(0,eY.isNil)(a)){let e=t.getEditableName(),i=`${e}:${a}.`;f(e=>e.filter(e=>!e.name.startsWith(i)))}e.remove(),(0,eY.isEmpty)(i)||o(i),b()},[r,n,h,o,b,t]),x=(e,i)=>{if(r)return;let a=t.findElementIndex(e),l=l0.isReloadMode(n)?c.current:t.queryElements();if("up"===i&&!l0.canMoveUp(a)||"down"===i&&!l0.canMoveDown(a,l.length))return;if(l0.isReloadMode(n)){let e="up"===i?a-1:a+1;h(t=>lY.swapElements(t,a,e));return}let o="up"===i?l[a-1]:l[a+1];if(!(0,eY.isNil)(o)){var s;let t="up"===i?o:o.nextSibling;null==(s=o.parentNode)||s.insertBefore(e,t),b()}};return{dynamicEditables:d,addArea:y,removeArea:v,moveAreaUp:e=>{x(e,"up")},moveAreaDown:e=>{x(e,"down")},moveArea:(0,ts.useCallback)((e,i)=>{if(r)return;let a=l0.isReloadMode(n)?c.current:t.queryElements();if(e<0||e>=a.length||i<0||i>=a.length)return;if(l0.isReloadMode(n))return void h(t=>{let n=[...t],[r]=n.splice(e,1);return n.splice(i,0,r),n});let l=window.scrollX,o=window.scrollY,s=a[e],d=a[i];if(!(0,eY.isNil)(s)&&!(0,eY.isNil)(d)){var f;let t=i>e?d.nextSibling:d;null==(f=d.parentNode)||f.insertBefore(s,t),requestAnimationFrame(()=>{window.scrollTo(l,o)}),b()}},[r,n,h,b,t])}})({areablockManager:f,value:d,onChange:i,config:n,disabled:o}),{renderAreablockToolbar:k}=(e=>{let{areablockManager:t,areaTypes:i,config:n,onAddArea:r,onRemoveArea:a,onMoveAreaUp:l,onMoveAreaDown:o,onMoveArea:s,onOpenDialog:d,onToggleHidden:f,isInherited:c=!1,onOverwrite:u}=e,{activeId:m,handleDragStart:p,handleDragOver:g,handleDragEnd:h,dropzonePortals:b,dragOverlayTitle:y,refreshDropzones:v,removeFirstDropzone:x}=(e=>{let{areablockManager:t,areaTypes:i,onMoveArea:n,onDropAreablock:r}=e,{t:a}=(0,t7.useTranslation)(),l=od({blockManager:t,onMoveItem:n,onDropItem:async(e,t)=>{if(!(0,eY.isNil)(r)){var i;let n=(null==(i=e.data)?void 0:i.areablockType)??e.title??"default";await r(n,t)}},isValidDrop:e=>{var t;if("areablock-type"!==e.type||(null==(t=e.data)?void 0:t.areablockType)==null)return!1;let n=e.data.areablockType;return i.some(e=>e.type===n)}}),o=(0,ts.useMemo)(()=>{if(null===l.activeId)return;let e=t.queryElements().find(e=>t.getElementKey(e)===l.activeId);if(!(0,eY.isUndefined)(e)&&!(0,eY.isUndefined)(t.getElementType)&&i.length>0){let n=t.getElementType(e),r=i.find(e=>e.type===n);return(null==r?void 0:r.name)!=null?a(r.name):void 0}},[l.activeId,t,i]);return{...l,dragOverlayTitle:o}})({areablockManager:t,areaTypes:i,onMoveArea:s,onDropAreablock:async(e,i)=>{if(c)return;let n=t.queryElements();if(0===i)await j(null,e);else if(i>=n.length){let t=n[n.length-1];await j(t,e)}else{let t=n[i-1];await j(t,e)}}}),j=(0,ts.useCallback)(async(e,t)=>{await r(e,t),v()},[r,v]),w=(0,ts.useCallback)(e=>{let i=1===t.queryElements().length;a(e),i&&x()},[a,t,x]),C=(0,ts.useCallback)(e=>{let t=(0,to.jsx)(os,{areaTypes:i,config:n,isInherited:c,onClick:async e=>{await j(null,e)},onOverwrite:u});return lh().createPortal(t,e)},[i,n,j,c,u]);return{renderAreablockToolbar:(0,ts.useCallback)(()=>{let e=[],r=t.queryElements(),a=l0.isLimitReached(r.length,null==n?void 0:n.limit);if(0===r.length){let i=t.getContainer();if(null!==i){let t=C(i);e.push(t)}}else c||e.push(...b);let s=r.map(e=>t.getElementKey(e)).filter(e=>!!e);return r.forEach(r=>{let s=r.querySelector(".pimcore_area_buttons");if(null!==s){let m=t.getElementKey(r);if(null!==m){let p=(0,to.jsx)(oi,{areaTypes:i,areablockManager:t,buttonsContainer:s,config:n,element:r,id:m,isInherited:c,limitReached:a,onAddArea:j,onMoveAreaDown:o,onMoveAreaUp:l,onOpenDialog:d,onOverwrite:u,onRemoveArea:w,onToggleHidden:f}),g=lh().createPortal(p,s);e.push(g)}}}),(0,to.jsx)(om,{activeId:m,dragOverlayTitle:y,items:s,onDragEnd:h,onDragOver:g,onDragStart:p,children:(0,to.jsx)(to.Fragment,{children:e})})},[t,i,n,p,g,h,j,w,l,o,f,d,m,b,y,C,c,u])}})({areablockManager:f,areaTypes:c,config:n,onAddArea:v,onRemoveArea:x,onMoveAreaUp:j,onMoveAreaDown:w,onMoveArea:C,onOpenDialog:g,onToggleHidden:b,isInherited:s,onOverwrite:p});return(0,to.jsxs)("div",{className:r,children:[(0,to.jsx)(lW,{editableDefinitions:y}),k(),Array.from(u).map(e=>{let t=f.findElementByKey(e);return(0,eY.isNil)(t)?null:(0,to.jsx)(oy,{areablockName:a,editableDefinitions:y,element:t,isOpen:!0,onClose:()=>{h(e)}},`dialog-${e}`)})]})};var ox=i(42801);let oj="Available Areas";class ow extends lu.C{getEditableDataComponent(e){var t;return(0,to.jsx)(ov,{className:null==(t=e.config)?void 0:t.class,config:e.config,containerRef:e.containerRef,disabled:e.inherited,editableName:e.name,isInherited:e.inherited})}transformValue(e,t){return new og(t.name,t.containerRef).getAreablockValue()}onDocumentReady(e,t){try{let i=t.filter(e=>e.type===this.id),{document:n}=(0,ox.sH)();if(i.length>0){let t={},r=(e,i,n)=>{(0,eY.isNil)(t[e])&&(t[e]=[]),i.forEach(i=>{t[e].push({areablockName:n.name,type:i.type,name:i.name,description:i.description,icon:i.icon})})},a=i.some(e=>{let t=e.config,i=l0.getGroupedAreaTypes(t);return!(0,eY.isArray)(i)});i.forEach(e=>{let t=e.config,i=l0.getGroupedAreaTypes(t);(0,eY.isArray)(i)?r(a?"Uncategorized":oj,i,e):Object.entries(i).forEach(t=>{let[i,n]=t;r(i,n,e)})}),n.notifyAreablockTypes(e,t)}else n.notifyAreablockTypes(e,{})}catch(e){console.warn("Could not notify parent about areablock types:",e)}}constructor(...e){var t,i,n;super(...e),i="areablock",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}}class oC extends e4.Z{}oC=(0,eq.gn)([(0,eZ.injectable)()],oC);class ok{isAvailableForSelection(e){return!0}}ok=(0,eq.gn)([(0,eZ.injectable)()],ok);let oT=()=>{let{t:e}=(0,t7.useTranslation)();return(0,to.jsx)(tc.l.Item,{initialValue:"",label:e("text"),name:"text",children:(0,to.jsx)(ae.I,{})})},oS=(0,eZ.injectable)()(ey=class extends ok{getComponent(){return(0,to.jsx)(oT,{})}constructor(...e){var t,i,n;super(...e),i="staticText",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||ey,oD=(0,ts.createContext)(void 0),oE=e=>{let{initialConfig:t,children:i}=e,[n,r]=(0,ts.useState)(t??{});return(0,ts.useMemo)(()=>(0,to.jsx)(oD.Provider,{value:{config:n,setConfig:r},children:i}),[n,i])},oM=()=>{let e=(0,ts.useContext)(oD);if(void 0===e)throw Error("usePipelineConfig must be used within a PipelineConfigProvider");return{config:e.config}},oI=()=>{var e;let{config:t}=oM(),i=null==t||null==(e=t.transformers)?void 0:e.caseChange,{t:n}=(0,t7.useTranslation)();if(void 0===i)throw Error("Transformer configuration for case change is missing");let r=i.configOptions.mode.options;return(0,to.jsx)(tc.l.Item,{initialValue:r[0].value,label:n("mode"),name:"mode",children:(0,to.jsx)(tC.P,{options:r})})},oL=(0,eZ.injectable)()(ev=class extends ok{getComponent(){return(0,to.jsx)(oI,{})}constructor(...e){var t,i,n;super(...e),i="caseChange",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||ev,oP=()=>{let{t:e}=(0,t7.useTranslation)();return(0,to.jsx)(tc.l.Item,{initialValue:" ",label:e("glue"),name:"glue",children:(0,to.jsx)(ae.I,{})})},oN=(0,eZ.injectable)()(ex=class extends ok{getComponent(){return(0,to.jsx)(oP,{})}constructor(...e){var t,i,n;super(...e),i="combine",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||ex,oA=()=>{var e;let{config:t}=oM(),{t:i}=(0,t7.useTranslation)(),n=null==t?void 0:t.simpleField;if(void 0===n)throw Error("Source field configuration is missing");let r=n.map(e=>({label:e.name,value:e.key}));return(0,to.jsx)(tc.l.Item,{initialValue:null==(e=n[0])?void 0:e.key,label:i("field"),name:"field",children:(0,to.jsx)(tC.P,{options:r})})},oR=(0,eZ.injectable)()(ej=class extends ok{isAvailableForSelection(e){return Array.isArray(e.simpleField)&&e.simpleField.length>0}getComponent(){return(0,to.jsx)(oA,{})}constructor(...e){var t,i,n;super(...e),i="simpleField",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||ej;var oO=i(12556);let oB=()=>{let{config:e}=oM(),t=null==e?void 0:e.relationField,{name:i}=(0,at.Y)(),{operations:n}=(0,r9.f)(),r=tc.l.useWatch([...i,"relation"]),a=(0,oO.D)(r),{t:l}=(0,t7.useTranslation)();if((0,ts.useEffect)(()=>{a!==r&&void 0!==a&&n.update([...i,"field"],null,!1)},[r,i,n,a]),void 0===t)throw Error("Source field configuration is missing");let o=t.map(e=>({label:e.name,value:e.key})),s=[];return t.forEach(e=>{let t=[];e.key===r&&e.fields.forEach(e=>{t.push({label:e.name,value:e.key})}),t.length>0&&s.push(...t)}),(0,to.jsxs)(rZ.k,{className:"w-full",gap:"small",children:[(0,to.jsx)(tc.l.Item,{className:"w-full",label:l("relation"),name:"relation",children:(0,to.jsx)(tN.Select,{options:o})}),(0,to.jsx)(tc.l.Item,{className:"w-full",label:l("field"),name:"field",children:(0,to.jsx)(tN.Select,{disabled:0===s.length,options:s})})]})},oF=(0,eZ.injectable)()(ew=class extends ok{isAvailableForSelection(e){return Array.isArray(e.relationField)&&e.relationField.length>0}getComponent(){return(0,to.jsx)(oB,{})}constructor(...e){var t,i,n;super(...e),i="relationField",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||ew;var o_=i(94281),oz=i(14185),oV=i(84363),o$=i(8876),oW=i(94666),oH=i(20602);let oG=e=>{let{value:t,config:i,onChange:n,className:r}=e,{t:a}=(0,t7.useTranslation)(),[l,o]=(0,ts.useState)(""),{id:s}=(0,oH.useParams)(),d=(0,eY.isNil)(s)?void 0:parseInt(s),f=!(0,eY.isNil)(null==t?void 0:t.id)&&!(0,eY.isNil)(null==i?void 0:i.controller)&&i.controller.length>0,c=f?{id:t.id,type:t.type,controller:i.controller,parentDocumentId:d??void 0,template:null==i?void 0:i.template,...(0,eY.omit)(i,["controller","template","className","height","width","reload","title","type","class"])}:void 0,{data:u,isLoading:m,error:p}=(0,l2.uT)(c,{skip:!f}),g=!m&&f,{openElement:h}=(0,ig.f)(),b=()=>{if(!(0,eY.isNil)(null==t?void 0:t.type))return"object"===t.type?"data-object":t.type},y=!(0,eY.isNil)(p)&&"status"in p,v=y&&"PARSING_ERROR"!==p.status?p:void 0,x=y&&"PARSING_ERROR"===p.status&&"data"in p&&!(0,eY.isNil)(p.data)?String(p.data):null;td().useEffect(()=>{(0,eY.isNil)(u)?!(0,eY.isNil)(x)&&x.length>0?o(x):o(""):u.text().then(e=>{o(e)}).catch(()=>{o("")})},[u,x]);let{open:j}=(0,lT._)({selectionType:lS.RT.Single,areas:{asset:(0,eY.isNil)(null==i?void 0:i.type)||"asset"===i.type,document:(0,eY.isNil)(null==i?void 0:i.type)||"document"===i.type,object:(0,eY.isNil)(null==i?void 0:i.type)||"object"===i.type},config:{objects:(0,eY.isNil)(null==i?void 0:i.className)?void 0:{allowedTypes:(0,eY.isArray)(i.className)?i.className:[i.className]}},onFinish:e=>{if(!(0,eY.isEmpty)(e.items)){let t=e.items[0];n({id:t.data.id,type:t.elementType,subtype:t.data.type??t.data.subtype})}}}),w=[];g&&w.push({key:"empty",label:a("empty"),icon:(0,to.jsx)(rR.J,{value:"trash"}),onClick:()=>{n(null),o("")}},{key:"open",label:a("open"),icon:(0,to.jsx)(rR.J,{value:"open-folder"}),onClick:()=>{if(!(0,eY.isNil)(null==t?void 0:t.id)&&!(0,eY.isNil)(null==t?void 0:t.type)){let e=b();(0,eY.isNil)(e)||h({id:t.id,type:e})}}},{key:"locate-in-tree",label:a("element.locate-in-tree"),icon:(0,to.jsx)(rR.J,{value:"target"}),onClick:()=>{let e=b();(0,lO.T)(e,null==t?void 0:t.id)}}),w.push({key:"search",label:a("search"),icon:(0,to.jsx)(rR.J,{value:"search"}),onClick:()=>{j()}});let C=!(0,eY.isNil)(v)||y?(0,to.jsx)(tN.Alert,{description:(()=>{if(!(0,eY.isNil)(v))try{if("object"==typeof v&&"data"in v&&!(0,eY.isNil)(v.data)){let e=(0,eY.isString)(v.data)?JSON.parse(v.data):v.data;if(!(0,eY.isNil)(e)&&"object"==typeof e&&"message"in e)return e.message}}catch{}})(),message:a("error-loading-renderlet"),showIcon:!0,style:{width:"100%"},type:"error"}):void 0,k=l.length>0?(0,to.jsx)(rB.Z,{html:l}):void 0;return(0,to.jsx)(oW.l,{className:r,contextMenuItems:w,defaultHeight:100,dropZoneText:(()=>{if(!(0,eY.isNil)(null==i?void 0:i.type))switch(i.type){case"document":return a("drop-document-here");case"asset":return a("drop-asset-here");case"object":return a("drop-object-here")}return a("drop-element-here")})(),error:C,hasContent:g,height:null==i?void 0:i.height,isLoading:m,renderedContent:k,width:null==i?void 0:i.width})};var oU=i(15688);let oq=e=>{let{value:t,config:i,onChange:n,className:r,inherited:a=!1,disabled:l=!1}=e,o=e=>"data-object"===e?"object":e;return(0,to.jsx)(lx.A,{display:(0,eY.isNil)(null==i?void 0:i.width)?"block":void 0,isInherited:a,noPadding:!0,onOverwrite:()=>{n(t??null)},children:(0,to.jsx)(lE.b,{disableDndActiveIndicator:!0,isValidContext:e=>!l&&oU.ME.includes(e.type),isValidData:e=>{var t,n,r;let a=o(e.type);return(!!(0,eY.isNil)(null==i?void 0:i.type)||i.type===a)&&("object"!==a||(0,eY.isNil)(null==i?void 0:i.className)?!(0,eY.isNil)(null==(t=e.data)?void 0:t.id)&&!(0,eY.isNil)(null==(n=e.data)?void 0:n.type):(Array.isArray(i.className)?i.className:[i.className]).includes(String(null==(r=e.data)?void 0:r.className)))},onDrop:e=>{var t,r;if(!(0,eY.isNil)(null==(t=e.data)?void 0:t.id)&&!(0,eY.isNil)(null==(r=e.data)?void 0:r.type)){let t=o(e.type);if(!(0,eY.isNil)(null==i?void 0:i.type)&&i.type!==t||"object"===t&&!(0,eY.isNil)(null==i?void 0:i.className)&&!(Array.isArray(i.className)?i.className:[i.className]).includes(String(e.data.className)))return;n({id:e.data.id,type:t,subtype:e.data.type??e.data.subtype})}},children:(0,to.jsx)(oG,{className:r,config:i,onChange:n,value:t})})})};class oZ extends lu.C{getEditableDataComponent(e){var t;return(0,to.jsx)(oq,{className:null==(t=e.config)?void 0:t.class,config:e.config,disabled:e.inherited,inherited:e.inherited,onChange:t=>{var i;return null==(i=e.onChange)?void 0:i.call(e,t)},value:e.value})}transformValue(e){return(0,eY.isNil)(e)||"object"!=typeof e||(0,eY.isNil)(e.id)?null:{id:e.id,type:e.type,subtype:e.subtype}}transformValueForApi(e){return(0,eY.isNil)(e)?null:{id:e.id??null,type:e.type??null,subtype:e.subtype??null}}constructor(...e){var t,i,n;super(...e),i="renderlet",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}}let oK=(0,ia.createStyles)(e=>{let{token:t}=e;return{blockContainer:{position:"relative"},blockToolstrip:{display:"inline-block",width:"fit-content",marginTop:t.marginXS,marginBottom:t.marginXS}}});class oJ extends op{getEditableType(){return"block"}getElementSelector(){return`.pimcore_block_entry[data-name="${this.editableName}"][key]`}findElementIndex(e){let t=this.queryElements();if(0===t.length)return -1;let i=e.getAttribute("key");return t.findIndex(e=>e.getAttribute("key")===i)}ensureElementKey(e){let t=this.getElementKey(e);((0,eY.isNil)(t)||""===t)&&this.setElementKey(e,"0")}ensureAllElementKeys(){let e=this.queryElements();return e.forEach(e=>{this.ensureElementKey(e)}),e}getBlockValue(){let e=this.queryElements();return oX.elementsToBlockValue(e)}}let oX={swapElements:(e,t,i)=>{let n=[...e],r=n[t];return n[t]=n[i],n[i]=r,n},filterEditableNames:(e,t,i)=>{let n=`${t}:${i}.`;return e.filter(e=>e.startsWith(n))},elementsToBlockValue:e=>e.map(e=>e.getAttribute("key")).filter(e=>null!==e).map(e=>parseInt(e,10))},oQ={isLimitReached:(e,t)=>!(0,eY.isNil)(t)&&e>=t,isReloadMode:e=>(null==e?void 0:e.reload)===!0,getEffectiveLimit:e=>(null==e?void 0:e.limit)??1e6,canMoveUp:e=>e>0,canMoveDown:(e,t)=>e{let{id:t,buttonsContainer:i,element:n,limitReached:r,blockManager:a,onAddBlock:l,onRemoveBlock:o,onMoveBlockUp:s,onMoveBlockDown:d,isInherited:f=!1,onOverwrite:c}=e,{styles:u}=oK(),{t:m}=(0,t7.useTranslation)(),{listeners:p}=l8({id:t,element:n}),g=a.queryElements(),h=a.findElementIndex(n),b=h===g.length-1,y=!(0,eY.isNull)(i.querySelector(".pimcore_block_plus")),v=!(0,eY.isNull)(i.querySelector(".pimcore_block_minus")),x=!(0,eY.isNull)(i.querySelector(".pimcore_block_up")),j=!(0,eY.isNull)(i.querySelector(".pimcore_block_down")),w=[],C=null;return y&&!r&&w.push((0,to.jsx)(aM.h,{icon:{value:"new"},onClick:()=>{l(n,1)},size:"small"},"plus")),x&&w.push((0,to.jsx)(aM.h,{disabled:0===h,icon:{value:"chevron-up"},onClick:()=>{s(n)},size:"small"},"up")),j&&w.push((0,to.jsx)(aM.h,{disabled:b,icon:{value:"chevron-down"},onClick:()=>{d(n)},size:"small"},"down")),v&&(C=(0,to.jsx)(aM.h,{icon:{value:"trash"},onClick:()=>{o(n)},size:"small"},"minus")),(0,to.jsx)(ot,{isInherited:f,onOverwrite:c,children:(0,to.jsx)(l6.Q,{activateOnHover:!0,additionalIcon:f?"inheritance-active":void 0,className:u.blockToolstrip,disabled:f,dragger:{listeners:p},theme:"inverse",title:m("block"),children:(0,to.jsxs)(aR.P,{dividerSize:"small",size:"mini",theme:"secondary",children:[(0,to.jsx)(tN.Space,{size:"small",children:w}),C]})},`toolbar-${n.getAttribute("key")}`)})},o0=e=>{let{onClick:t,isInherited:i=!1,onOverwrite:n}=e,{styles:r}=oK();return(0,to.jsxs)(to.Fragment,{children:[(0,to.jsx)(ol,{}),(0,to.jsx)(ot,{isInherited:i,onOverwrite:n,children:(0,to.jsx)(l6.Q,{additionalIcon:i?"inheritance-active":void 0,className:r.blockToolstrip,disabled:i,theme:"inverse",children:(0,to.jsx)(aM.h,{icon:{value:"new"},onClick:i?void 0:t,size:"small"})})})]})},o1=e=>{let{value:t=[],onChange:i,config:n,className:r,editableName:a,containerRef:l,disabled:o=!1,isInherited:s=!1}=e,{styles:d}=oK(),f=(0,eY.isArray)(t)?t:[],c=(0,ts.useMemo)(()=>new oJ(a,l),[a,l]),u=(0,ts.useCallback)(()=>{null==i||i(c.getBlockValue())},[c,i]),{dynamicEditables:m,addBlock:p,removeBlock:g,moveBlockUp:h,moveBlockDown:b,moveBlock:y}=(e=>{let{blockManager:t,value:i=[],onChange:n,config:r,disabled:a=!1}=e,{initializeData:l,getValues:o,removeValues:s}=(0,lH.b)(),[d,f]=(0,ts.useState)([]),c=(0,ts.useRef)(t.queryElements()),{hideElementUntilRendered:u}=l1({dynamicEditables:d,getContainer:()=>t.getContainer()}),m=(0,ts.useCallback)(e=>{let t=e([...c.current]);c.current=t;let i=oX.elementsToBlockValue(t);null==n||n(i)},[n,r,t]),p=(0,ts.useCallback)(()=>{t.ensureAllElementKeys();let e=t.getBlockValue();null==n||n(e)},[n,t]),g=(0,ts.useCallback)(function(e){var i,n,o;if(arguments.length>1&&void 0!==arguments[1]&&arguments[1],a)return;let s=oQ.getEffectiveLimit(r),d=oQ.isReloadMode(r)?c.current:t.queryElements();if(oQ.isLimitReached(d.length,s))return;let g=(0,eY.isNil)(e)?0:t.findElementIndex(e)+1,h=t.calculateNextKey();if(oQ.isReloadMode(r))return void m(e=>{let i=document.createElement("div");t.setElementKey(i,h.toString());let n=[...e];return n.splice(g,0,i),n});let b=t.getContainer();if((0,eY.isNil)(b)||(0,eY.isNil)(null==r||null==(i=r.template)?void 0:i.html)||(0,eY.isNil)(null==r||null==(n=r.template)?void 0:n.editables))return;let{html:y,editableDefinitions:v}=((e,t)=>{let{templateHtml:i,blockManager:n,nextKey:r}=e,a=n.getEditableName(),l=(a.split(":").pop()??a).replace(/^\d+\./,""),o=a.replace(/[:.]/g,"_"),s=((e,t,i)=>{let n=t.getEditableName(),r=t.getRealEditableName(),a=n.replace(/[:.]/g,"_"),l=e;return(l=(l=(l=(l=(l=l.replace(RegExp(`"([^"]+):1000000\\.${r}("|:)`,"g"),`"${n}$2`)).replace(RegExp(`"pimcore_editable_([^"]+)_1000000_${r}_`,"g"),`"pimcore_editable_${a}_`)).replace(/:1000000\./g,`:${i}.`)).replace(/_1000000_/g,`_${i}_`)).replace(/="1000000"/g,`="${i}"`)).replace(/, 1000000"/g,`, ${i}"`)})(i,n,r),d=[];return t.forEach(e=>{var t;let i={...e};if((0,eY.isNil)(i.id)||""===i.id||(i.id=i.id.replace(RegExp(`pimcore_editable_([^"]+)_1000000_${l}_`,"g"),`pimcore_editable_${o}_`),i.id=i.id.replace(/_1000000_/g,`_${r}_`)),(0,eY.isNil)(i.name)||""===i.name||(i.name=i.name.replace(RegExp(`^([^"]+):1000000\\.${l}:`),`${a}:`),i.name=i.name.replace(/:1000000\./g,`:${r}.`)),!(0,eY.isNil)(null==(t=i.config)?void 0:t.blockStateStack)&&""!==i.config.blockStateStack)try{let e=JSON.parse(i.config.blockStateStack);for(let t=0;t{if(!(0,eY.isNil)(e.id)&&""!==e.id){let t=document.getElementById(e.id);if((0,eY.isNil)(t)){let t=document.createElement("div");t.id=e.id,t.setAttribute("data-name",e.name),t.setAttribute("data-type",e.type),j.appendChild(t)}}}),l(lU(v)),f(e=>[...e,...v]),p()}},[a,r,m,l,p,t]),h=(0,ts.useCallback)(e=>{if(a)return;if(oQ.isReloadMode(r)){let i=t.findElementIndex(e);m(e=>{let t=[...e];return t.splice(i,1),t});return}let i=(e=>{let i=t.getElementKey(e);if((0,eY.isNil)(i))return[];let n=o();return oX.filterEditableNames(Object.keys(n),t.getEditableName(),i)})(e),n=t.getElementKey(e);if(!(0,eY.isNil)(n)){let e=t.getEditableName(),i=`${e}:${n}.`;f(e=>e.filter(e=>!e.name.startsWith(i)))}e.remove(),i.length>0&&s(i),p()},[a,r,m,s,p,t]),b=(e,i)=>{if(a)return;let n=t.findElementIndex(e),l=oQ.isReloadMode(r)?c.current:t.queryElements();if("up"===i&&!oQ.canMoveUp(n)||"down"===i&&!oQ.canMoveDown(n,l.length))return;if(oQ.isReloadMode(r)){let e="up"===i?n-1:n+1;m(t=>oX.swapElements(t,n,e));return}let o="up"===i?l[n-1]:l[n+1];if(!(0,eY.isNil)(o)){var s;let t="up"===i?o:o.nextSibling;null==(s=o.parentNode)||s.insertBefore(e,t),p()}};return{dynamicEditables:d,addBlock:g,removeBlock:h,moveBlockUp:e=>{b(e,"up")},moveBlockDown:e=>{b(e,"down")},moveBlock:(0,ts.useCallback)((e,i)=>{if(a)return;let n=oQ.isReloadMode(r)?c.current:t.queryElements();if(e<0||e>=n.length||i<0||i>=n.length)return;if(oQ.isReloadMode(r))return void m(t=>{let n=[...t],[r]=n.splice(e,1);return n.splice(i,0,r),n});let l=window.scrollX,o=window.scrollY,s=n[e],d=n[i];if(!(0,eY.isNil)(s)&&!(0,eY.isNil)(d)){var f;let t=i>e?d.nextSibling:d;null==(f=d.parentNode)||f.insertBefore(s,t),requestAnimationFrame(()=>{window.scrollTo(l,o)}),p()}},[a,r,m,p,t])}})({blockManager:c,value:f,onChange:i,config:n,disabled:o}),{renderBlockToolbar:v}=(e=>{let{blockManager:t,config:i,onAddBlock:n,onRemoveBlock:r,onMoveBlockUp:a,onMoveBlockDown:l,onMoveBlock:o,isInherited:s=!1,onOverwrite:d}=e,{activeId:f,handleDragStart:c,handleDragOver:u,handleDragEnd:m,dropzonePortals:p,dragOverlayTitle:g,refreshDropzones:h,removeFirstDropzone:b}=(e=>{let{blockManager:t,onMoveBlock:i}=e,{t:n}=(0,t7.useTranslation)(),r=od({blockManager:t,onMoveItem:i}),a=n("block");return{...r,dragOverlayTitle:a}})({blockManager:t,onMoveBlock:o}),y=(0,ts.useCallback)((e,t)=>{n(e,t),h()},[n,h]),v=(0,ts.useCallback)(e=>{let i=1===t.queryElements().length;r(e),i&&b()},[r,t,b]),x=(0,ts.useCallback)(e=>{let t=(0,to.jsx)(o0,{isInherited:s,onClick:()=>{s||y(null,1)},onOverwrite:d});return lh().createPortal(t,e)},[y,s,d]);return{renderBlockToolbar:(0,ts.useCallback)(()=>{let e=[],n=t.queryElements(),r=(0,eY.isNumber)(null==i?void 0:i.limit)?i.limit:void 0,o=oQ.isLimitReached(n.length,r);if(0===n.length){let i=t.getContainer();if(null!==i){let t=x(i);e.push(t)}}else s||e.push(...p);let h=n.map(e=>t.getElementKey(e)).filter(e=>!!e);return n.forEach(i=>{let n=i.querySelector(".pimcore_block_buttons");if(null!==n){let r=t.getElementKey(i);if(null!==r){let f=(0,to.jsx)(oY,{blockManager:t,buttonsContainer:n,element:i,id:r,isInherited:s,limitReached:o,onAddBlock:y,onMoveBlockDown:l,onMoveBlockUp:a,onOverwrite:d,onRemoveBlock:v},r),c=lh().createPortal(f,n);e.push(c)}}}),(0,to.jsx)(om,{activeId:f,dragOverlayTitle:g,items:h,onDragEnd:m,onDragOver:u,onDragStart:c,children:(0,to.jsx)(to.Fragment,{children:e})})},[t,i,c,u,m,y,v,a,l,f,p,g,x,s,d])}})({blockManager:c,config:n,onAddBlock:p,onRemoveBlock:g,onMoveBlockUp:h,onMoveBlockDown:b,onMoveBlock:y,isInherited:s,onOverwrite:u});return(0,to.jsxs)("div",{className:`${d.blockContainer} ${r??""}`,children:[(0,to.jsx)(lW,{editableDefinitions:m}),v()]})};class o2 extends lu.C{getEditableDataComponent(e){var t;return(0,to.jsx)(o1,{className:null==(t=e.config)?void 0:t.class,config:e.config,containerRef:e.containerRef,disabled:e.inherited,editableName:e.name,isInherited:e.inherited,onChange:t=>{var i;return null==(i=e.onChange)?void 0:i.call(e,t)},value:e.value})}transformValue(e,t){return new oJ(t.name,t.containerRef).getBlockValue()}reloadOnChange(e){var t;return!!(null==(t=e.config)?void 0:t.reload)}constructor(...e){var t,i,n;super(...e),i="block",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}}let o3=(0,ia.createStyles)(e=>{let{css:t,token:i}=e;return{scheduledblockContainer:t` position: relative; `,controlsContainer:t` display: flex; @@ -40,7 +40,7 @@ `,buttonsContainer:t` display: flex; gap: ${i.marginXS}px; - `}});class l6 extends lp{getEditableType(){return"scheduledblock"}getElementSelector(){return".pimcore_block_entry"}findElementIndex(e){return this.queryElements().findIndex(t=>t===e)}getElementDate(e){let t=e.getAttribute("date");return null!==t?parseInt(t,10):null}setElementDate(e,t){e.setAttribute("date",t.toString())}hideAllElements(){this.queryElements().forEach(e=>{e.style.display="none"})}showElementByKey(e){this.hideAllElements();let t=this.findElementByKey(e);(0,eY.isNil)(t)||(t.style.display="block")}}let l4={elementsToScheduledblockValue:e=>e.map(e=>{let t=e.getAttribute("key"),i=e.getAttribute("date");return{key:t??"0",date:null!==i?parseInt(i,10):0}}).filter(e=>!(0,eY.isNil)(e.key)),getTimestampsForDate:(e,t,i)=>e.filter(e=>e.date>=t&&e.date<=i),getLatestPreviousEntry:(e,t)=>{let i=e.filter(e=>e.datet.date>e.date?t:e,i[0])},sortByDate:e=>[...e].sort((e,t)=>e.date-t.date)};var l8=i(27484),l7=i.n(l8);let l5=e=>{let{value:t,disabled:i=!1,onJumpToEntry:n,onCleanupTimestamps:r}=e,{t:a}=(0,t7.useTranslation)(),{confirm:o}=(0,ih.useFormModal)(),l=(0,ts.useCallback)(()=>{let e=(0,eY.isArray)(t)?t:[],i=l4.sortByDate(e).map(e=>({key:`jump-${e.key}`,label:(0,ov.formatDateTime)({timestamp:e.date,dateStyle:"medium",timeStyle:"short"}),onClick:()=>{n(l7().unix(e.date),e.key)}}));return i.length>0&&i.push({type:"divider",key:"divider"}),[...i,{key:"delete-past",label:a("scheduled-block.delete-all-in-past"),icon:(0,tl.jsx)(ih.Icon,{value:"trash"}),onClick:()=>{o({title:a("scheduled-block.delete-all-in-past-confirmation"),onOk:()=>{r(!1)}})}},{key:"delete-all",label:a("scheduled-block.delete-all"),icon:(0,tl.jsx)(ih.Icon,{value:"trash"}),onClick:()=>{o({title:a("scheduled-block.delete-all-confirmation"),onOk:()=>{r(!0)}})}}]},[t]);return(0,tl.jsx)(ih.Dropdown,{disabled:i,menu:{items:l()},trigger:["click"],children:(0,tl.jsx)(aM.h,{icon:{value:"history"},type:"default"})})},l9=(0,ia.createStyles)(e=>{let{css:t,token:i}=e;return{markerOverlay:t` + `}});class o6 extends op{getEditableType(){return"scheduledblock"}getElementSelector(){return".pimcore_block_entry"}findElementIndex(e){return this.queryElements().findIndex(t=>t===e)}getElementDate(e){let t=e.getAttribute("date");return null!==t?parseInt(t,10):null}setElementDate(e,t){e.setAttribute("date",t.toString())}hideAllElements(){this.queryElements().forEach(e=>{e.style.display="none"})}showElementByKey(e){this.hideAllElements();let t=this.findElementByKey(e);(0,eY.isNil)(t)||(t.style.display="block")}}let o4={elementsToScheduledblockValue:e=>e.map(e=>{let t=e.getAttribute("key"),i=e.getAttribute("date");return{key:t??"0",date:null!==i?parseInt(i,10):0}}).filter(e=>!(0,eY.isNil)(e.key)),getTimestampsForDate:(e,t,i)=>e.filter(e=>e.date>=t&&e.date<=i),getLatestPreviousEntry:(e,t)=>{let i=e.filter(e=>e.datet.date>e.date?t:e,i[0])},sortByDate:e=>[...e].sort((e,t)=>e.date-t.date)};var o8=i(27484),o7=i.n(o8);let o5=e=>{let{value:t,disabled:i=!1,onJumpToEntry:n,onCleanupTimestamps:r}=e,{t:a}=(0,t7.useTranslation)(),{confirm:l}=(0,ih.useFormModal)(),o=(0,ts.useCallback)(()=>{let e=(0,eY.isArray)(t)?t:[],i=o4.sortByDate(e).map(e=>({key:`jump-${e.key}`,label:(0,lv.formatDateTime)({timestamp:e.date,dateStyle:"medium",timeStyle:"short"}),onClick:()=>{n(o7().unix(e.date),e.key)}}));return i.length>0&&i.push({type:"divider",key:"divider"}),[...i,{key:"delete-past",label:a("scheduled-block.delete-all-in-past"),icon:(0,to.jsx)(ih.Icon,{value:"trash"}),onClick:()=>{l({title:a("scheduled-block.delete-all-in-past-confirmation"),onOk:()=>{r(!1)}})}},{key:"delete-all",label:a("scheduled-block.delete-all"),icon:(0,to.jsx)(ih.Icon,{value:"trash"}),onClick:()=>{l({title:a("scheduled-block.delete-all-confirmation"),onOk:()=>{r(!0)}})}}]},[t]);return(0,to.jsx)(ih.Dropdown,{disabled:i,menu:{items:o()},trigger:["click"],children:(0,to.jsx)(aM.h,{icon:{value:"history"},type:"default"})})},o9=(0,ia.createStyles)(e=>{let{css:t,token:i}=e;return{markerOverlay:t` cursor: pointer; transition: all 0.2s ease; z-index: 10; @@ -74,7 +74,7 @@ font-size: 11px; white-space: nowrap; color: ${i.colorTextSecondary}; - `}}),se=e=>{let{entry:t,onModifyDateChange:i,onEntryClick:n,onDeleteEntry:r,timeLabel:a,isActive:o=!1}=e,{t:l}=(0,t7.useTranslation)(),{styles:s}=l9(),{confirm:d}=(0,ih.useFormModal)(),[f,c]=(0,ts.useState)(!1),[u,m]=(0,ts.useState)(!1),[p,g]=(0,ts.useState)(!1),[h,b]=(0,ts.useState)(!1),y=(0,ts.useCallback)(()=>{c(!1),g(!1),b(!1)},[]),v=(0,ts.useCallback)(e=>{(0,eY.isNil)(e)||(b(!0),i(t.key,e))},[t.key,i]);(0,ts.useEffect)(()=>{if(h){let e=setTimeout(()=>{y()},50);return()=>{clearTimeout(e)}}},[h,y]);let x=(0,tl.jsx)(ih.Box,{padding:"extra-small",children:(0,tl.jsx)(ih.DatePicker,{format:"YYYY-MM-DD HH:mm",onChange:v,onOpenChange:e=>{g(e),e||setTimeout(()=>{f&&y()},100)},open:p,showTime:{format:"HH:mm",hideDisabledOptions:!0},style:{width:"100%"},value:l7().unix(t.date)})});return(0,tl.jsx)(tN.Popover,{content:x,onOpenChange:e=>{e||(g(!1),y())},open:f,placement:"top",trigger:[],children:(0,tl.jsx)(tN.Tooltip,{placement:"top",title:(0,ov.formatDateTime)({timestamp:t.date,dateStyle:"medium",timeStyle:"short"}),children:(0,tl.jsx)(ih.Dropdown,{menu:{items:[{key:"modify",label:l("modify"),icon:(0,tl.jsx)(ih.Icon,{value:"edit"}),onClick:()=>{m(!1),c(!0),setTimeout(()=>{g(!0)},100)}},{key:"delete",label:l("delete"),icon:(0,tl.jsx)(ih.Icon,{value:"trash"}),onClick:()=>{d({title:l("scheduled-block.delete-confirmation"),onOk:()=>{r(t.key)}})}}]},onOpenChange:m,open:u,trigger:["contextMenu"],children:(0,tl.jsxs)("div",{className:s.markerOverlay,onClick:e=>{e.stopPropagation(),n(t)},onContextMenu:e=>{e.preventDefault(),e.stopPropagation(),m(!u)},onKeyDown:e=>{("Enter"===e.key||" "===e.key)&&(e.preventDefault(),e.stopPropagation(),n(t))},role:"button",tabIndex:0,children:[(0,tl.jsx)("div",{className:oy()(s.markerCircleBase,s.markerCircle,{[s.markerCircleActive]:o})}),(0,tl.jsx)("div",{className:s.markerTime,children:a})]})})})})},st=(0,ia.createStyles)(e=>{let{css:t,token:i}=e;return{sliderContainer:t` + `}}),se=e=>{let{entry:t,onModifyDateChange:i,onEntryClick:n,onDeleteEntry:r,timeLabel:a,isActive:l=!1}=e,{t:o}=(0,t7.useTranslation)(),{styles:s}=o9(),{confirm:d}=(0,ih.useFormModal)(),[f,c]=(0,ts.useState)(!1),[u,m]=(0,ts.useState)(!1),[p,g]=(0,ts.useState)(!1),[h,b]=(0,ts.useState)(!1),y=(0,ts.useCallback)(()=>{c(!1),g(!1),b(!1)},[]),v=(0,ts.useCallback)(e=>{(0,eY.isNil)(e)||(b(!0),i(t.key,e))},[t.key,i]);(0,ts.useEffect)(()=>{if(h){let e=setTimeout(()=>{y()},50);return()=>{clearTimeout(e)}}},[h,y]);let x=(0,to.jsx)(ih.Box,{padding:"extra-small",children:(0,to.jsx)(ih.DatePicker,{format:"YYYY-MM-DD HH:mm",onChange:v,onOpenChange:e=>{g(e),e||setTimeout(()=>{f&&y()},100)},open:p,showTime:{format:"HH:mm",hideDisabledOptions:!0},style:{width:"100%"},value:o7().unix(t.date)})});return(0,to.jsx)(tN.Popover,{content:x,onOpenChange:e=>{e||(g(!1),y())},open:f,placement:"top",trigger:[],children:(0,to.jsx)(tN.Tooltip,{placement:"top",title:(0,lv.formatDateTime)({timestamp:t.date,dateStyle:"medium",timeStyle:"short"}),children:(0,to.jsx)(ih.Dropdown,{menu:{items:[{key:"modify",label:o("modify"),icon:(0,to.jsx)(ih.Icon,{value:"edit"}),onClick:()=>{m(!1),c(!0),setTimeout(()=>{g(!0)},100)}},{key:"delete",label:o("delete"),icon:(0,to.jsx)(ih.Icon,{value:"trash"}),onClick:()=>{d({title:o("scheduled-block.delete-confirmation"),onOk:()=>{r(t.key)}})}}]},onOpenChange:m,open:u,trigger:["contextMenu"],children:(0,to.jsxs)("div",{className:s.markerOverlay,onClick:e=>{e.stopPropagation(),n(t)},onContextMenu:e=>{e.preventDefault(),e.stopPropagation(),m(!u)},onKeyDown:e=>{("Enter"===e.key||" "===e.key)&&(e.preventDefault(),e.stopPropagation(),n(t))},role:"button",tabIndex:0,children:[(0,to.jsx)("div",{className:ly()(s.markerCircleBase,s.markerCircle,{[s.markerCircleActive]:l})}),(0,to.jsx)("div",{className:s.markerTime,children:a})]})})})})},st=(0,ia.createStyles)(e=>{let{css:t,token:i}=e;return{sliderContainer:t` flex: 1; min-width: 200px; padding: 0 ${i.paddingSM}px; @@ -94,7 +94,7 @@ .ant-slider-dot { display: none; } - `}}),si=e=>{let{value:t,selectedDate:i,currentTimestamp:n,disabled:r=!1,onSliderChange:a,onModifyDateChange:o,onEntryClick:l,onDeleteEntry:s}=e,{styles:d}=st(),f=(0,ts.useMemo)(()=>{let e=i.startOf("day").unix(),r=i.endOf("day").unix(),a=(0,eY.isArray)(t)?t:[],d=l4.getTimestampsForDate(a,e,r),f={};return d.forEach(t=>{let i,r=t.date-e,a=n===t.date,d=(i=t.date,l7().unix(i).format("HH:mm"));f[r]={label:(0,tl.jsx)(se,{entry:t,isActive:a,onDeleteEntry:s,onEntryClick:l,onModifyDateChange:o,timeLabel:d},t.key)}}),f},[t,i,n,o,l,s]),c=(0,ts.useMemo)(()=>{if(!(0,eY.isNil)(n)&&l7().unix(n).isSame(i,"day"))return n-i.startOf("day").unix()},[n,i]);return(0,tl.jsx)("div",{className:d.sliderContainer,children:(0,tl.jsx)("div",{className:d.sliderWrapper,children:(0,tl.jsx)(tN.Slider,{disabled:r,marks:f,max:86400,min:0,onChange:a,step:1,value:c??0})})})},sn=e=>{let{value:t=[],onChange:i,className:n,editableName:r,containerRef:a,disabled:o=!1,inherited:l=!1}=e,{styles:s}=l3(),{t:d}=(0,t7.useTranslation)(),[f,c]=(0,ts.useState)(l7()()),[u,m]=(0,ts.useState)(null),[p,g]=(0,ts.useState)(null),h=!!o||!!l,b=(0,ts.useCallback)(e=>{sa(r,e)},[r]),y=(0,ts.useMemo)(()=>new l6(r,a),[r,a]),{addBlock:v,removeBlock:x,cleanupTimestamps:j}=(e=>{let{scheduledblockManager:t,onChange:i,disabled:n=!1}=e,r=(0,ts.useRef)(t.queryElements()),a=(0,ts.useCallback)(e=>{let t=e([...r.current]);r.current=t;let n=l4.elementsToScheduledblockValue(t);null==i||i(n)},[i]),o=(0,ts.useCallback)(e=>{if(n)return;let i=t.calculateNextKey(),r=Math.floor(e.getTime()/1e3);a(e=>{let n=document.createElement("div");return t.setElementKey(n,i.toString()),t.setElementDate(n,r),[...e,n]})},[n,a,t]),l=(0,ts.useCallback)(e=>{if(n)return;let i=t.findElementIndex(e);a(e=>{let t=[...e];return t.splice(i,1),t})},[n,a,t]),s=(0,ts.useCallback)(e=>{if(n)return;let i=Math.floor(Date.now()/1e3);e?a(()=>[]):a(e=>{let n=l4.elementsToScheduledblockValue(e),r=l4.getLatestPreviousEntry(n,i);return e.filter(e=>{let n=t.getElementDate(e),a=t.getElementKey(e);return(0,eY.isNil)(n)||n>=i||!(0,eY.isNil)(r)&&a===r.key})})},[n,a,t]);return(0,ts.useEffect)(()=>{t.hideAllElements()},[t]),{addBlock:o,removeBlock:l,cleanupTimestamps:s}})({scheduledblockManager:y,onChange:i,disabled:h}),w=(0,ts.useCallback)(e=>{let i=e.startOf("day").unix(),n=e.endOf("day").unix(),r=(0,eY.isArray)(t)?t:[],a=l4.getTimestampsForDate(r,i,n);if(!(!(0,eY.isNil)(u)&&u>=i&&u<=n))if(a.length>0){let e=a[0];y.showElementByKey(e.key),m(e.date)}else{let e=l4.getLatestPreviousEntry(r,i);(0,eY.isNil)(e)?(y.hideAllElements(),m(null)):(y.showElementByKey(e.key),m(e.date))}},[t,u,y]),C=(0,ts.useCallback)(e=>{(0,eY.isNil)(e)||c(e)},[]),k=(0,ts.useCallback)((e,n)=>{if(h)return;b("modify");let r=((0,eY.isArray)(t)?t:[]).map(t=>t.key===e?{...t,date:n}:t);null==i||i(r);let a=y.findElementByKey(e);(0,eY.isNil)(a)||y.setElementDate(a,n)},[h,t,i,y,b]),T=(0,ts.useCallback)((e,i)=>{if(!(0,eY.isNil)(i)){let n=((0,eY.isArray)(t)?t:[]).find(t=>t.key===e);if(!(0,eY.isNil)(n)){let t=i.unix(),r=n.date,a=!l7().unix(r).isSame(i,"day");k(e,t),a?setTimeout(()=>{c(i),m(t),y.showElementByKey(e)},0):(w(f),m(t),y.showElementByKey(e))}}},[t,k,w,y,f]),S=(0,ts.useCallback)(e=>{let i=f.startOf("day").unix(),n=i+e,r=(0,eY.isArray)(t)?t:[],a=l4.getTimestampsForDate(r,i,f.endOf("day").unix()),o=a.reduce((e,t)=>{let i=Math.abs(e.date-n);return Math.abs(t.date-n){b("add"),v(f.startOf("day").toDate())},[f,v,b]),E=(0,ts.useCallback)(e=>{b("delete");let t=y.findElementByKey(e);(0,eY.isNil)(t)||x(t)},[y,x,b]),M=(0,ts.useCallback)((e,t)=>{c(e),m(e.unix()),y.showElementByKey(t)},[y]);(0,ts.useEffect)(()=>{w(f)},[f,w]),(0,ts.useEffect)(()=>{(0,eY.isNil)(null==a?void 0:a.current)||g(a.current.querySelector(".pimcore_scheduled_block_controls"))},[a]);let I=(0,tl.jsx)(ox.A,{display:"block",hideButtons:!0,isInherited:l,noPadding:!0,onOverwrite:()=>{null==i||i(t??[])},children:(0,tl.jsx)("div",{className:`${s.scheduledblockContainer} ${n??""}`,children:(0,tl.jsxs)("div",{className:s.controlsContainer,children:[(0,tl.jsx)("div",{className:s.datePickerContainer,children:(0,tl.jsx)(tN.DatePicker,{allowClear:!1,disabled:h,onChange:C,value:f})}),(0,tl.jsx)(ai.z,{disabled:h,onClick:D,type:"default",children:d("add")}),(0,tl.jsx)(si,{currentTimestamp:u,disabled:h,onDeleteEntry:E,onEntryClick:e=>{y.showElementByKey(e.key),m(e.date)},onModifyDateChange:T,onSliderChange:S,selectedDate:f,value:t}),(0,tl.jsx)("div",{className:s.buttonsContainer,children:(0,tl.jsx)(l5,{disabled:h,onCleanupTimestamps:j,onJumpToEntry:M,value:t})})]})})});return(0,tl.jsx)(tl.Fragment,{children:!(0,eY.isNil)(p)&&oh().createPortal(I,p)})},sr=new Map,sa=(e,t)=>{(0,eY.isNil)(t)?sr.delete(e):sr.set(e,t)};class so extends ou.C{getEditableDataComponent(e){return(0,tl.jsx)(sn,{containerRef:e.containerRef,disabled:e.inherited,editableName:e.name,inherited:e.inherited,onChange:t=>{var i;return null==(i=e.onChange)?void 0:i.call(e,t)},value:e.value})}transformValue(e,t){let i=new l6(t.name,t.containerRef).queryElements();return l4.elementsToScheduledblockValue(i)}reloadOnChange(e){let t=sr.get(e.name);return(!!(0,eY.isNil)(t)||(sr.delete(e.name),"modify"!==t))&&!0}constructor(...e){var t,i,n;super(...e),i="scheduledblock",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}}class sl{getId(){return this.id}getCallback(){return this.callback}constructor(e){this.id=(0,nu.V)(),this.callback=e}}class ss extends sl{}var sd=i(27862);class sf extends sd.U{getTopics(){return this.messageBus.getRegisteredTopics()}start(){super.start()}cancel(){super.cancel()}sendMessage(e){this.messageBus.routeMessage(e)}constructor(e){super(),this.messageBus=e,this.name="global-message-bus-process",this.description="Global process for message bus handling operations"}}sf=(0,eq.gn)([(0,eZ.injectable)(),(0,eq.fM)(0,(0,eZ.inject)(eO.j.globalMessageBus)),(0,eq.w6)("design:type",Function),(0,eq.w6)("design:paramtypes",["undefined"==typeof GlobalMessageBus?Object:GlobalMessageBus])],sf);class sc{registerTopics(e){if(!(0,eY.isNil)(this.globalSubscriptionId))throw Error("Cannot register new topics after global subscription has started. Topics must be registered in your module's onInit() method before the app starts.");e.forEach(e=>this.registeredTopics.add(e))}getRegisteredTopics(){return Array.from(this.registeredTopics)}registerHandler(e){let t=e.getId();this.activeHandlers.set(t,e),(0,eY.isNil)(e.onRegister)||e.onRegister(),this.replayBufferedMessages(e)}unregisterHandler(e){let t=this.activeHandlers.get(e);(0,eY.isNil)(null==t?void 0:t.onUnregister)||t.onUnregister(),this.activeHandlers.delete(e)}startGlobalSubscription(){if(null===this.globalSubscriptionId)try{this.globalSubscriptionId=this.backgroundProcessor.subscribeToProcessMessages({processName:"global-message-bus-process",callback:e=>{this.routeMessage(e)}})}catch(e){console.error("Failed to establish global subscription:",e)}}async routeMessage(e){let t=JSON.parse(e.event.data),i=t.topic??t["@topic"];if(!(0,eY.isNil)(i)&&!this.registeredTopics.has(String(i)))return;let n=[];for(let t of this.activeHandlers.values())t.shouldHandle(e)&&n.push(t);if(0===n.length)return void this.bufferMessage(e);for(let t of n)try{await t.handleMessage(e)}catch(e){console.error("GlobalMessageBus: Error processing message with handler",t.getId(),e)}}bufferMessage(e){this.messageBuffer.length>=this.MAX_BUFFER_SIZE&&(console.warn("GlobalMessageBus: Message buffer full, removing oldest messages"),this.messageBuffer.splice(0,this.messageBuffer.length-this.MAX_BUFFER_SIZE+100)),this.messageBuffer.push({mercureMessage:e,timestamp:Date.now()}),this.debouncedCleanup()}async replayBufferedMessages(e){let t=[];for(let i of this.messageBuffer)e.shouldHandle(i.mercureMessage)&&t.push(i);if(t.length>0){for(let i of(t.sort((e,t)=>e.timestamp-t.timestamp),t))try{await e.handleMessage(i.mercureMessage)}catch(t){console.error("GlobalMessageBus: Error replaying message for handler",e.getId(),t)}this.messageBuffer=this.messageBuffer.filter(e=>!t.includes(e))}}cleanupExpiredMessages(){let e=Date.now();this.messageBuffer=this.messageBuffer.filter(t=>e-t.timestamp{this.cleanupExpiredMessages()},5e3)}}sc=(0,eq.gn)([(0,eZ.injectable)(),(0,eq.fM)(0,(0,eZ.inject)(eO.j.backgroundProcessor)),(0,eq.w6)("design:type",Function),(0,eq.w6)("design:paramtypes",["undefined"==typeof BackgroundProcessor?Object:BackgroundProcessor])],sc);class su extends e4.Z{resolveThemeChain(e){let t=new Set,i=[],n=e=>{if(t.has(e))throw Error(`Circular theme dependency detected: ${e}`);let r=this.getDynamicType(e);if((0,eY.isNil)(r))throw Error(`Theme not found: ${e}`);if(t.add(e),!(0,eY.isNil)(r.extends)&&!(0,eY.isEmpty)(r.extends))for(let e of r.extends)n(e);i.push({id:e,config:r.getThemeConfig()})};return n(e),{themes:i}}}su=(0,eq.gn)([(0,eZ.injectable)()],su);class sm{}sm=(0,eq.gn)([(0,eZ.injectable)()],sm);var sp=i(75037);let sg={token:{fontFamily:"Lato, sans-serif",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)",colorInfoBorderHover:"#b37feb",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",colorButtonInverse:"#f5f5f5",colorFillInverse:"#151515",colorTextInverse:"rgba(255, 255, 255, 0.88)",colorBorderInverse:"#424242",colorDividerInverse:"rgba(217, 217, 217, 0.34)",colorInactiveInverse:"rgba(255, 255, 255, 0.5)"},components:{Form:{itemMarginBottom:12,verticalLabelPadding:4},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:{primaryColor:"#ffffff",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)",itemActiveColor:"#531dab",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)",colorFillTertiary:"#f5f5f5"},Icon:{colorIcon:"rgba(0, 0, 0, 0.6)"}},Brand:{Warning:{colorWarningBg:"#fffbe6",colorWarningBorder:"#ffe58f"}},Base:{Geekblue:{2:"#d6e4ff",3:"#adc6ff",6:"#2f54eb"}}},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)"},Split:{colorFillSecondary:void 0}}};class sh extends sm{getThemeConfig(){return{token:{colorLink:"#d7b7f5",colorLinkActive:"#d7b7f5",colorLinkHover:"#854eca",controlOutline:"#1a1325",controlItemBgActive:"#1a1325",itemSelectedColor:"rgba(255, 255, 255, 0.85)",colorTextTertiary:"rgba(255, 255, 255, 0.45)",colorFill:"rgba(255, 255, 255, 0.15)",colorFillQuaternary:"rgba(255, 255, 255, 0.09)",colorBgLayout:"#1e1e24",colorPrimary:"#6f2acf",colorIconSecondary:"#d4d4d4",colorFillNav:"#ffffff",colorIconSidebar:"#d4d4d4",colorBorderActiveTab:"#13a8a8",colorLogo:"#ffffff",colorBorderTertiary:"#333039",colorTextTreeElement:"rgba(255, 255, 255, 0.85)",colorIconTree:"#d4d4d4",colorIconTreeUnpublished:"rgba(212, 212, 212, 0.75)",colorTextSidebarTitle:"#d7b7f5",colorBgToolbar:"#1c1b1f",colorFillActive:"#ffffff",colorFillAdditional:"#ffffff",colorBgSidebarOptions:"#1e1e24",colorBgSelectedTab:"#1e1e24",itemActiveColor:"#d7b7f5",itemColor:"rgba(255, 255, 255, 0.85)",itemHoverColor:"#854eca",itemUnselectedIconColor:"#d4d4d4",colorBorderContainer:"#1e1e24",colorFillAlter:"rgba(255, 255, 255, 0.09)",colorTextDescription:"rgba(255, 255, 255, 0.45)",colorBgUnselectedTab:"#ffffff",colorBgHoverUnselectedTab:"#ffffff",colorAccentSecondary:"#33bcb7"},components:{Tree:{colorBorderTree:"#424242",colorTextTree:"rgba(255, 255, 255, 0.85)",colorPrimaryHeading:"#6f2acf",colorTextTreeUnpublished:"rgba(255, 255, 255, 0.85)",colorIconTree:"rgba(255, 255, 255, 0.85)"},Progress:{colorText:"rgba(255, 255, 255, 0.85)",circleTextColor:"rgba(255, 255, 255, 0.85)"},Divider:{colorSplit:"rgba(255, 255, 255, 0.06)"},Button:{defaultBorderColor:"#424242",defaultColor:"#d7b7f5",defaultGhostBorderColor:"#1e1e24",defaultGhostColor:"#1e1e24",textGhostColor:"rgba(255, 255, 255, 0)"},Breadcrumb:{lastItemColor:"rgba(255, 255, 255, 0.85)"},Collapse:{headerBg:"rgba(255, 255, 255, 0.09)"},Table:{controlItemBgActive:"#1a1325",footerBg:"#1d1d1d",headerBg:"#1d1d1d"},Tabs:{colorBgSelectedTab:"#1e1e24",itemColor:"rgba(255, 255, 255, 0.65)",itemActiveColor:"#d7b7f5",itemHoverColor:"#854eca",itemUnselectedIconColor:"#d4d4d4",colorBorderActiveTab:"#13a8a8",colorBgUnselectedTab:"rgba(255, 255, 255, 0.09)",colorBgHoverUnselectedTab:"rgba(255, 255, 255, 0.15)",colorBorderContainer:"#1e1e24"},Avatar:{colorUserIndicator:"#722ed1"},Modal:{colorTextSecondary:"rgba(255, 255, 255, 0.45)"},Alert:{colorInfo:"#6f2acf",colorInfoBg:"#1a1325",colorInfoBorder:"#301c4d"},Empty:{colorTextDisabled:"rgba(255, 255, 255, 0.52)"},Tag:{colorBorder:"#424242",colorErrorBg:"#2c1618",colorErrorBorder:"#5b2526",colorFillQuaternary:"rgba(255, 255, 255, 0.09)",colorFillSecondary:"rgba(255, 255, 255, 0.12)",colorFillTertiary:"rgba(255, 255, 255, 0.08)",colorInfoBg:"#1a1325",colorInfoBorder:"#301c4d",colorPrimary:"#6f2acf",colorPrimaryActive:"#d7b7f5",colorPrimaryHover:"#854eca",colorSuccessBg:"#162312",colorSuccessBorder:"#274916",colorText:"rgba(255, 255, 255, 0.85)",colorTextDescription:"rgba(255, 255, 255, 0.45)",colorTextHeading:"rgba(255, 255, 255, 0.85)",colorTextLightSolid:"#ffffff",colorWarningBg:"#2b2111",colorWarningBorder:"#594214",defaultBg:"rgba(255, 255, 255, 0.09)",defaultColor:"rgba(255, 255, 255, 0.85)"}},algorithm:tN.theme.darkAlgorithm}}constructor(...e){super(...e),this.id=sp.n.dark,this.extends=[sp.n.light]}}sh=(0,eq.gn)([(0,eZ.injectable)()],sh);let sb=(0,ia.createStyles)(e=>{let{token:t,css:i}=e;return{gridContentRenderer:i` + `}}),si=e=>{let{value:t,selectedDate:i,currentTimestamp:n,disabled:r=!1,onSliderChange:a,onModifyDateChange:l,onEntryClick:o,onDeleteEntry:s}=e,{styles:d}=st(),f=(0,ts.useMemo)(()=>{let e=i.startOf("day").unix(),r=i.endOf("day").unix(),a=(0,eY.isArray)(t)?t:[],d=o4.getTimestampsForDate(a,e,r),f={};return d.forEach(t=>{let i,r=t.date-e,a=n===t.date,d=(i=t.date,o7().unix(i).format("HH:mm"));f[r]={label:(0,to.jsx)(se,{entry:t,isActive:a,onDeleteEntry:s,onEntryClick:o,onModifyDateChange:l,timeLabel:d},t.key)}}),f},[t,i,n,l,o,s]),c=(0,ts.useMemo)(()=>{if(!(0,eY.isNil)(n)&&o7().unix(n).isSame(i,"day"))return n-i.startOf("day").unix()},[n,i]);return(0,to.jsx)("div",{className:d.sliderContainer,children:(0,to.jsx)("div",{className:d.sliderWrapper,children:(0,to.jsx)(tN.Slider,{disabled:r,marks:f,max:86400,min:0,onChange:a,step:1,value:c??0})})})},sn=e=>{let{value:t=[],onChange:i,className:n,editableName:r,containerRef:a,disabled:l=!1,inherited:o=!1}=e,{styles:s}=o3(),{t:d}=(0,t7.useTranslation)(),[f,c]=(0,ts.useState)(o7()()),[u,m]=(0,ts.useState)(null),[p,g]=(0,ts.useState)(null),h=!!l||!!o,b=(0,ts.useCallback)(e=>{sa(r,e)},[r]),y=(0,ts.useMemo)(()=>new o6(r,a),[r,a]),{addBlock:v,removeBlock:x,cleanupTimestamps:j}=(e=>{let{scheduledblockManager:t,onChange:i,disabled:n=!1}=e,r=(0,ts.useRef)(t.queryElements()),a=(0,ts.useCallback)(e=>{let t=e([...r.current]);r.current=t;let n=o4.elementsToScheduledblockValue(t);null==i||i(n)},[i]),l=(0,ts.useCallback)(e=>{if(n)return;let i=t.calculateNextKey(),r=Math.floor(e.getTime()/1e3);a(e=>{let n=document.createElement("div");return t.setElementKey(n,i.toString()),t.setElementDate(n,r),[...e,n]})},[n,a,t]),o=(0,ts.useCallback)(e=>{if(n)return;let i=t.findElementIndex(e);a(e=>{let t=[...e];return t.splice(i,1),t})},[n,a,t]),s=(0,ts.useCallback)(e=>{if(n)return;let i=Math.floor(Date.now()/1e3);e?a(()=>[]):a(e=>{let n=o4.elementsToScheduledblockValue(e),r=o4.getLatestPreviousEntry(n,i);return e.filter(e=>{let n=t.getElementDate(e),a=t.getElementKey(e);return(0,eY.isNil)(n)||n>=i||!(0,eY.isNil)(r)&&a===r.key})})},[n,a,t]);return(0,ts.useEffect)(()=>{t.hideAllElements()},[t]),{addBlock:l,removeBlock:o,cleanupTimestamps:s}})({scheduledblockManager:y,onChange:i,disabled:h}),w=(0,ts.useCallback)(e=>{let i=e.startOf("day").unix(),n=e.endOf("day").unix(),r=(0,eY.isArray)(t)?t:[],a=o4.getTimestampsForDate(r,i,n);if(!(!(0,eY.isNil)(u)&&u>=i&&u<=n))if(a.length>0){let e=a[0];y.showElementByKey(e.key),m(e.date)}else{let e=o4.getLatestPreviousEntry(r,i);(0,eY.isNil)(e)?(y.hideAllElements(),m(null)):(y.showElementByKey(e.key),m(e.date))}},[t,u,y]),C=(0,ts.useCallback)(e=>{(0,eY.isNil)(e)||c(e)},[]),k=(0,ts.useCallback)((e,n)=>{if(h)return;b("modify");let r=((0,eY.isArray)(t)?t:[]).map(t=>t.key===e?{...t,date:n}:t);null==i||i(r);let a=y.findElementByKey(e);(0,eY.isNil)(a)||y.setElementDate(a,n)},[h,t,i,y,b]),T=(0,ts.useCallback)((e,i)=>{if(!(0,eY.isNil)(i)){let n=((0,eY.isArray)(t)?t:[]).find(t=>t.key===e);if(!(0,eY.isNil)(n)){let t=i.unix(),r=n.date,a=!o7().unix(r).isSame(i,"day");k(e,t),a?setTimeout(()=>{c(i),m(t),y.showElementByKey(e)},0):(w(f),m(t),y.showElementByKey(e))}}},[t,k,w,y,f]),S=(0,ts.useCallback)(e=>{let i=f.startOf("day").unix(),n=i+e,r=(0,eY.isArray)(t)?t:[],a=o4.getTimestampsForDate(r,i,f.endOf("day").unix()),l=a.reduce((e,t)=>{let i=Math.abs(e.date-n);return Math.abs(t.date-n){b("add"),v(f.startOf("day").toDate())},[f,v,b]),E=(0,ts.useCallback)(e=>{b("delete");let t=y.findElementByKey(e);(0,eY.isNil)(t)||x(t)},[y,x,b]),M=(0,ts.useCallback)((e,t)=>{c(e),m(e.unix()),y.showElementByKey(t)},[y]);(0,ts.useEffect)(()=>{w(f)},[f,w]),(0,ts.useEffect)(()=>{(0,eY.isNil)(null==a?void 0:a.current)||g(a.current.querySelector(".pimcore_scheduled_block_controls"))},[a]);let I=(0,to.jsx)(lx.A,{display:"block",hideButtons:!0,isInherited:o,noPadding:!0,onOverwrite:()=>{null==i||i(t??[])},children:(0,to.jsx)("div",{className:`${s.scheduledblockContainer} ${n??""}`,children:(0,to.jsxs)("div",{className:s.controlsContainer,children:[(0,to.jsx)("div",{className:s.datePickerContainer,children:(0,to.jsx)(tN.DatePicker,{allowClear:!1,disabled:h,onChange:C,value:f})}),(0,to.jsx)(ai.z,{disabled:h,onClick:D,type:"default",children:d("add")}),(0,to.jsx)(si,{currentTimestamp:u,disabled:h,onDeleteEntry:E,onEntryClick:e=>{y.showElementByKey(e.key),m(e.date)},onModifyDateChange:T,onSliderChange:S,selectedDate:f,value:t}),(0,to.jsx)("div",{className:s.buttonsContainer,children:(0,to.jsx)(o5,{disabled:h,onCleanupTimestamps:j,onJumpToEntry:M,value:t})})]})})});return(0,to.jsx)(to.Fragment,{children:!(0,eY.isNil)(p)&&lh().createPortal(I,p)})},sr=new Map,sa=(e,t)=>{(0,eY.isNil)(t)?sr.delete(e):sr.set(e,t)};class sl extends lu.C{getEditableDataComponent(e){return(0,to.jsx)(sn,{containerRef:e.containerRef,disabled:e.inherited,editableName:e.name,inherited:e.inherited,onChange:t=>{var i;return null==(i=e.onChange)?void 0:i.call(e,t)},value:e.value})}transformValue(e,t){let i=new o6(t.name,t.containerRef).queryElements();return o4.elementsToScheduledblockValue(i)}reloadOnChange(e){let t=sr.get(e.name);return(!!(0,eY.isNil)(t)||(sr.delete(e.name),"modify"!==t))&&!0}constructor(...e){var t,i,n;super(...e),i="scheduledblock",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}}class so{getId(){return this.id}getCallback(){return this.callback}constructor(e){this.id=(0,nu.V)(),this.callback=e}}class ss extends so{}var sd=i(27862);class sf extends sd.U{getTopics(){return this.messageBus.getRegisteredTopics()}start(){super.start()}cancel(){super.cancel()}sendMessage(e){this.messageBus.routeMessage(e)}constructor(e){super(),this.messageBus=e,this.name="global-message-bus-process",this.description="Global process for message bus handling operations"}}sf=(0,eq.gn)([(0,eZ.injectable)(),(0,eq.fM)(0,(0,eZ.inject)(eO.j.globalMessageBus)),(0,eq.w6)("design:type",Function),(0,eq.w6)("design:paramtypes",["undefined"==typeof GlobalMessageBus?Object:GlobalMessageBus])],sf);class sc{registerTopics(e){if(!(0,eY.isNil)(this.globalSubscriptionId))throw Error("Cannot register new topics after global subscription has started. Topics must be registered in your module's onInit() method before the app starts.");e.forEach(e=>this.registeredTopics.add(e))}getRegisteredTopics(){return Array.from(this.registeredTopics)}registerHandler(e){let t=e.getId();this.activeHandlers.set(t,e),(0,eY.isNil)(e.onRegister)||e.onRegister(),this.replayBufferedMessages(e)}unregisterHandler(e){let t=this.activeHandlers.get(e);(0,eY.isNil)(null==t?void 0:t.onUnregister)||t.onUnregister(),this.activeHandlers.delete(e)}startGlobalSubscription(){if(null===this.globalSubscriptionId)try{this.globalSubscriptionId=this.backgroundProcessor.subscribeToProcessMessages({processName:"global-message-bus-process",callback:e=>{this.routeMessage(e)}})}catch(e){console.error("Failed to establish global subscription:",e)}}async routeMessage(e){let t=JSON.parse(e.event.data),i=t.topic??t["@topic"];if(!(0,eY.isNil)(i)&&!this.registeredTopics.has(String(i)))return;let n=[];for(let t of this.activeHandlers.values())t.shouldHandle(e)&&n.push(t);if(0===n.length)return void this.bufferMessage(e);for(let t of n)try{await t.handleMessage(e)}catch(e){console.error("GlobalMessageBus: Error processing message with handler",t.getId(),e)}}bufferMessage(e){this.messageBuffer.length>=this.MAX_BUFFER_SIZE&&(console.warn("GlobalMessageBus: Message buffer full, removing oldest messages"),this.messageBuffer.splice(0,this.messageBuffer.length-this.MAX_BUFFER_SIZE+100)),this.messageBuffer.push({mercureMessage:e,timestamp:Date.now()}),this.debouncedCleanup()}async replayBufferedMessages(e){let t=[];for(let i of this.messageBuffer)e.shouldHandle(i.mercureMessage)&&t.push(i);if(t.length>0){for(let i of(t.sort((e,t)=>e.timestamp-t.timestamp),t))try{await e.handleMessage(i.mercureMessage)}catch(t){console.error("GlobalMessageBus: Error replaying message for handler",e.getId(),t)}this.messageBuffer=this.messageBuffer.filter(e=>!t.includes(e))}}cleanupExpiredMessages(){let e=Date.now();this.messageBuffer=this.messageBuffer.filter(t=>e-t.timestamp{this.cleanupExpiredMessages()},5e3)}}sc=(0,eq.gn)([(0,eZ.injectable)(),(0,eq.fM)(0,(0,eZ.inject)(eO.j.backgroundProcessor)),(0,eq.w6)("design:type",Function),(0,eq.w6)("design:paramtypes",["undefined"==typeof BackgroundProcessor?Object:BackgroundProcessor])],sc);class su extends e4.Z{resolveThemeChain(e){let t=new Set,i=[],n=e=>{if(t.has(e))throw Error(`Circular theme dependency detected: ${e}`);let r=this.getDynamicType(e);if((0,eY.isNil)(r))throw Error(`Theme not found: ${e}`);if(t.add(e),!(0,eY.isNil)(r.extends)&&!(0,eY.isEmpty)(r.extends))for(let e of r.extends)n(e);i.push({id:e,config:r.getThemeConfig()})};return n(e),{themes:i}}}su=(0,eq.gn)([(0,eZ.injectable)()],su);class sm{}sm=(0,eq.gn)([(0,eZ.injectable)()],sm);var sp=i(75037);let sg={token:{fontFamily:"Lato, sans-serif",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)",colorInfoBorderHover:"#b37feb",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",colorButtonInverse:"#f5f5f5",colorFillInverse:"#151515",colorTextInverse:"rgba(255, 255, 255, 0.88)",colorBorderInverse:"#424242",colorDividerInverse:"rgba(217, 217, 217, 0.34)",colorInactiveInverse:"rgba(255, 255, 255, 0.5)"},components:{Form:{itemMarginBottom:12,verticalLabelPadding:4},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:{primaryColor:"#ffffff",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)",itemActiveColor:"#531dab",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)",colorFillTertiary:"#f5f5f5"},Icon:{colorIcon:"rgba(0, 0, 0, 0.6)"}},Brand:{Warning:{colorWarningBg:"#fffbe6",colorWarningBorder:"#ffe58f"}},Base:{Geekblue:{2:"#d6e4ff",3:"#adc6ff",6:"#2f54eb"}}},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)"},Split:{colorFillSecondary:void 0}}};class sh extends sm{getThemeConfig(){return{token:{colorLink:"#d7b7f5",colorLinkActive:"#d7b7f5",colorLinkHover:"#854eca",controlOutline:"#1a1325",controlItemBgActive:"#1a1325",itemSelectedColor:"rgba(255, 255, 255, 0.85)",colorTextTertiary:"rgba(255, 255, 255, 0.45)",colorFill:"rgba(255, 255, 255, 0.15)",colorFillQuaternary:"rgba(255, 255, 255, 0.09)",colorBgLayout:"#1e1e24",colorPrimary:"#6f2acf",colorIconSecondary:"#d4d4d4",colorFillNav:"#ffffff",colorIconSidebar:"#d4d4d4",colorBorderActiveTab:"#13a8a8",colorLogo:"#ffffff",colorBorderTertiary:"#333039",colorTextTreeElement:"rgba(255, 255, 255, 0.85)",colorIconTree:"#d4d4d4",colorIconTreeUnpublished:"rgba(212, 212, 212, 0.75)",colorTextSidebarTitle:"#d7b7f5",colorBgToolbar:"#1c1b1f",colorFillActive:"#ffffff",colorFillAdditional:"#ffffff",colorBgSidebarOptions:"#1e1e24",colorBgSelectedTab:"#1e1e24",itemActiveColor:"#d7b7f5",itemColor:"rgba(255, 255, 255, 0.85)",itemHoverColor:"#854eca",itemUnselectedIconColor:"#d4d4d4",colorBorderContainer:"#1e1e24",colorFillAlter:"rgba(255, 255, 255, 0.09)",colorTextDescription:"rgba(255, 255, 255, 0.45)",colorBgUnselectedTab:"#ffffff",colorBgHoverUnselectedTab:"#ffffff",colorAccentSecondary:"#33bcb7"},components:{Tree:{colorBorderTree:"#424242",colorTextTree:"rgba(255, 255, 255, 0.85)",colorPrimaryHeading:"#6f2acf",colorTextTreeUnpublished:"rgba(255, 255, 255, 0.85)",colorIconTree:"rgba(255, 255, 255, 0.85)"},Progress:{colorText:"rgba(255, 255, 255, 0.85)",circleTextColor:"rgba(255, 255, 255, 0.85)"},Divider:{colorSplit:"rgba(255, 255, 255, 0.06)"},Button:{defaultBorderColor:"#424242",defaultColor:"#d7b7f5",defaultGhostBorderColor:"#1e1e24",defaultGhostColor:"#1e1e24",textGhostColor:"rgba(255, 255, 255, 0)"},Breadcrumb:{lastItemColor:"rgba(255, 255, 255, 0.85)"},Collapse:{headerBg:"rgba(255, 255, 255, 0.09)"},Table:{controlItemBgActive:"#1a1325",footerBg:"#1d1d1d",headerBg:"#1d1d1d"},Tabs:{colorBgSelectedTab:"#1e1e24",itemColor:"rgba(255, 255, 255, 0.65)",itemActiveColor:"#d7b7f5",itemHoverColor:"#854eca",itemUnselectedIconColor:"#d4d4d4",colorBorderActiveTab:"#13a8a8",colorBgUnselectedTab:"rgba(255, 255, 255, 0.09)",colorBgHoverUnselectedTab:"rgba(255, 255, 255, 0.15)",colorBorderContainer:"#1e1e24"},Avatar:{colorUserIndicator:"#722ed1"},Modal:{colorTextSecondary:"rgba(255, 255, 255, 0.45)"},Alert:{colorInfo:"#6f2acf",colorInfoBg:"#1a1325",colorInfoBorder:"#301c4d"},Empty:{colorTextDisabled:"rgba(255, 255, 255, 0.52)"},Tag:{colorBorder:"#424242",colorErrorBg:"#2c1618",colorErrorBorder:"#5b2526",colorFillQuaternary:"rgba(255, 255, 255, 0.09)",colorFillSecondary:"rgba(255, 255, 255, 0.12)",colorFillTertiary:"rgba(255, 255, 255, 0.08)",colorInfoBg:"#1a1325",colorInfoBorder:"#301c4d",colorPrimary:"#6f2acf",colorPrimaryActive:"#d7b7f5",colorPrimaryHover:"#854eca",colorSuccessBg:"#162312",colorSuccessBorder:"#274916",colorText:"rgba(255, 255, 255, 0.85)",colorTextDescription:"rgba(255, 255, 255, 0.45)",colorTextHeading:"rgba(255, 255, 255, 0.85)",colorTextLightSolid:"#ffffff",colorWarningBg:"#2b2111",colorWarningBorder:"#594214",defaultBg:"rgba(255, 255, 255, 0.09)",defaultColor:"rgba(255, 255, 255, 0.85)"}},algorithm:tN.theme.darkAlgorithm}}constructor(...e){super(...e),this.id=sp.n.dark,this.extends=[sp.n.light]}}sh=(0,eq.gn)([(0,eZ.injectable)()],sh);let sb=(0,ia.createStyles)(e=>{let{token:t,css:i}=e;return{gridContentRenderer:i` &.grid-content-renderer { .ant-table-content table { min-width: auto !important; @@ -152,7 +152,7 @@ padding: 2px 4px; } } - `}}),sy=e=>{let{children:t}=e,{styles:i}=sb();return(0,tl.jsx)("div",{className:[i.gridContentRenderer,"grid-content-renderer"].join(" "),children:t})},sv=(0,aj.createColumnHelper)(),sx=e=>{let{value:t}=e,i=(0,eB.$1)(eO.j["DynamicTypes/AdvancedGridCellRegistry"]),n=t.map((e,t)=>{let n=i.hasDynamicType(e.type);return sv.accessor(`${e.type}-${t}`,{header:e.type,meta:{editable:!1,type:n?e.type:"dataobject.adapter",config:{...n?{}:{dataObjectType:e.type,dataObjectConfig:{}}}}})}),r=[],a={};return t.forEach((e,t)=>{a[`${e.type}-${t}`]=e.value}),r.push(a),(0,tl.jsx)(sy,{children:(0,tl.jsx)(az.r,{autoWidth:!0,columns:n,data:r})})},sj=e=>{let{getValue:t}=e,i=t();return(0,tl.jsx)("div",{className:"default-cell__content",children:void 0===i||0===i.length?(0,tl.jsx)("span",{children:"No data available"}):(0,tl.jsx)(sx,{value:i})})},sw=(0,eZ.injectable)()(eC=class extends tK.V{getDefaultGridColumnWidth(){return 300}getGridCellComponent(e){return(0,tl.jsx)(sj,{...e})}constructor(...e){var t,i,n;super(...e),i="dataobject.advanced",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||eC;class sC extends e4.Z{getComponent(e,t){return this.getDynamicType(e).getEditableDialogLayoutComponent(t)}}sC=(0,eq.gn)([(0,eZ.injectable)()],sC);let sk=(0,eZ.injectable)()(ek=class extends e4.x{constructor(...e){var t,i,n;super(...e),i=void 0,(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||ek,sT=(0,eZ.injectable)()(eT=class extends sk{getEditableDialogLayoutComponent(e){let{configItem:t,onRenderNestedContent:i}=e;if(!(0,eY.isArray)(t.items))return(0,tl.jsx)(tl.Fragment,{});let n=t.items.map((e,t)=>({key:`tab-${t}`,label:e.title??`Tab ${t+1}`,children:i(e)}));return(0,tl.jsx)(ih.Tabs,{items:n,type:"card"})}constructor(...e){var t,i,n;super(...e),i="tabpanel",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||eT,sS=(0,eZ.injectable)()(eS=class extends sk{getEditableDialogLayoutComponent(e){let{configItem:t,onRenderNestedContent:i}=e;return(0,eY.isArray)(t.items)?(0,tl.jsx)(ih.Space,{direction:"vertical",size:"medium",style:{width:"100%"},children:t.items.map((e,t)=>(0,tl.jsx)("div",{children:i(e)},`panel-item-${t}`))}):(0,tl.jsx)(tl.Fragment,{})}constructor(...e){var t,i,n;super(...e),i="panel",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||eS,sD=(0,eZ.injectable)()(eD=class extends iQ{constructor(...e){var t,i,n;super(...e),i="string",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||eD,sE=(0,eZ.injectable)()(eE=class extends tI.s{getFieldFilterType(){return""}getFieldFilterComponent(e){return(0,tl.jsx)(tl.Fragment,{})}constructor(...e){var t,i,n;super(...e),i="none",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||eE,sM=(0,eZ.injectable)()(eM=class extends tU{getFieldFilterType(){return tL.a.Fulltext}constructor(...e){var t,i,n;super(...e),i="fulltext",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||eM,sI=(0,eZ.injectable)()(eI=class extends tU{getFieldFilterType(){return tL.a.Fulltext}constructor(...e){var t,i,n;super(...e),i="input",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||eI;class sL{}sL=(0,eq.gn)([(0,eZ.injectable)()],sL);class sP extends sL{constructor(...e){super(...e),this.id="page"}}sP=(0,eq.gn)([(0,eZ.injectable)()],sP);class sN extends e4.Z{}sN=(0,eq.gn)([(0,eZ.injectable)()],sN);class sA extends sL{constructor(...e){super(...e),this.id="email"}}sA=(0,eq.gn)([(0,eZ.injectable)()],sA);class sR extends sL{constructor(...e){super(...e),this.id="folder"}}sR=(0,eq.gn)([(0,eZ.injectable)()],sR);class sO extends sL{constructor(...e){super(...e),this.id="hardlink"}}sO=(0,eq.gn)([(0,eZ.injectable)()],sO);class sB extends sL{constructor(...e){super(...e),this.id="link"}}sB=(0,eq.gn)([(0,eZ.injectable)()],sB);class sF extends sL{constructor(...e){super(...e),this.id="newsletter"}}sF=(0,eq.gn)([(0,eZ.injectable)()],sF);class s_ extends sL{constructor(...e){super(...e),this.id="snippet"}}s_=(0,eq.gn)([(0,eZ.injectable)()],s_);let sz=e=>{switch(e){case -1:return!1;case 0:default:return null;case 1:return!0}},sV=e=>!0===e?1:!1===e?-1:0,s$=()=>{var e;let{setData:t,data:i,config:n}=(0,tA.$)(),[r,a]=(0,ts.useState)([]),o=[];return o="fieldDefinition"in n&&Array.isArray(null==n||null==(e=n.fieldDefinition)?void 0:e.options)?n.fieldDefinition.options.map(e=>({label:e.key,value:e.value})):[{label:"True",value:1},{label:"False",value:-1},{label:"Empty",value:0}],(0,ts.useEffect)(()=>{a((i??[]).map(sV))},[i]),(0,tl.jsx)(tC.P,{mode:"multiple",onChange:e=>{a(e),t(e.map(sz))},options:o,style:{width:"100%"},value:r})},sW=(0,eZ.injectable)()(eL=class extends tI.s{getFieldFilterType(){return tL.a.Select}getFieldFilterComponent(){return(0,tl.jsx)(s$,{})}constructor(...e){var t,i,n;super(...e),i="boolean-select",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||eL;class sH{}sH=(0,eq.gn)([(0,eZ.injectable)()],sH);class sG extends sH{getIcons(){return Array.from(this.iconLibrary.getIcons()).map(e=>{let[t]=e;return{type:"name",value:t}})}constructor(e){super(),this.iconLibrary=e,this.id="pimcore-default",this.name="Pimcore"}}sG=(0,eq.gn)([(0,eZ.injectable)(),(0,eq.fM)(0,(0,eZ.inject)(eO.j.iconLibrary)),(0,eq.w6)("design:type",Function),(0,eq.w6)("design:paramtypes",["undefined"==typeof IconLibrary?Object:IconLibrary])],sG);let sU=["1f004","1f0cf","1f170","1f171","1f17e","1f17f","1f18e","1f191","1f192","1f193","1f194","1f195","1f196","1f197","1f198","1f199","1f19a","1f1e6","1f1e6-1f1e8","1f1e6-1f1e9","1f1e6-1f1ea","1f1e6-1f1eb","1f1e6-1f1ec","1f1e6-1f1ee","1f1e6-1f1f1","1f1e6-1f1f2","1f1e6-1f1f4","1f1e6-1f1f6","1f1e6-1f1f7","1f1e6-1f1f8","1f1e6-1f1f9","1f1e6-1f1fa","1f1e6-1f1fc","1f1e6-1f1fd","1f1e6-1f1ff","1f1e7","1f1e7-1f1e6","1f1e7-1f1e7","1f1e7-1f1e9","1f1e7-1f1ea","1f1e7-1f1eb","1f1e7-1f1ec","1f1e7-1f1ed","1f1e7-1f1ee","1f1e7-1f1ef","1f1e7-1f1f1","1f1e7-1f1f2","1f1e7-1f1f3","1f1e7-1f1f4","1f1e7-1f1f6","1f1e7-1f1f7","1f1e7-1f1f8","1f1e7-1f1f9","1f1e7-1f1fb","1f1e7-1f1fc","1f1e7-1f1fe","1f1e7-1f1ff","1f1e8","1f1e8-1f1e6","1f1e8-1f1e8","1f1e8-1f1e9","1f1e8-1f1eb","1f1e8-1f1ec","1f1e8-1f1ed","1f1e8-1f1ee","1f1e8-1f1f0","1f1e8-1f1f1","1f1e8-1f1f2","1f1e8-1f1f3","1f1e8-1f1f4","1f1e8-1f1f5","1f1e8-1f1f7","1f1e8-1f1fa","1f1e8-1f1fb","1f1e8-1f1fc","1f1e8-1f1fd","1f1e8-1f1fe","1f1e8-1f1ff","1f1e9","1f1e9-1f1ea","1f1e9-1f1ec","1f1e9-1f1ef","1f1e9-1f1f0","1f1e9-1f1f2","1f1e9-1f1f4","1f1e9-1f1ff","1f1ea","1f1ea-1f1e6","1f1ea-1f1e8","1f1ea-1f1ea","1f1ea-1f1ec","1f1ea-1f1ed","1f1ea-1f1f7","1f1ea-1f1f8","1f1ea-1f1f9","1f1ea-1f1fa","1f1eb","1f1eb-1f1ee","1f1eb-1f1ef","1f1eb-1f1f0","1f1eb-1f1f2","1f1eb-1f1f4","1f1eb-1f1f7","1f1ec","1f1ec-1f1e6","1f1ec-1f1e7","1f1ec-1f1e9","1f1ec-1f1ea","1f1ec-1f1eb","1f1ec-1f1ec","1f1ec-1f1ed","1f1ec-1f1ee","1f1ec-1f1f1","1f1ec-1f1f2","1f1ec-1f1f3","1f1ec-1f1f5","1f1ec-1f1f6","1f1ec-1f1f7","1f1ec-1f1f8","1f1ec-1f1f9","1f1ec-1f1fa","1f1ec-1f1fc","1f1ec-1f1fe","1f1ed","1f1ed-1f1f0","1f1ed-1f1f2","1f1ed-1f1f3","1f1ed-1f1f7","1f1ed-1f1f9","1f1ed-1f1fa","1f1ee","1f1ee-1f1e8","1f1ee-1f1e9","1f1ee-1f1ea","1f1ee-1f1f1","1f1ee-1f1f2","1f1ee-1f1f3","1f1ee-1f1f4","1f1ee-1f1f6","1f1ee-1f1f7","1f1ee-1f1f8","1f1ee-1f1f9","1f1ef","1f1ef-1f1ea","1f1ef-1f1f2","1f1ef-1f1f4","1f1ef-1f1f5","1f1f0","1f1f0-1f1ea","1f1f0-1f1ec","1f1f0-1f1ed","1f1f0-1f1ee","1f1f0-1f1f2","1f1f0-1f1f3","1f1f0-1f1f5","1f1f0-1f1f7","1f1f0-1f1fc","1f1f0-1f1fe","1f1f0-1f1ff","1f1f1","1f1f1-1f1e6","1f1f1-1f1e7","1f1f1-1f1e8","1f1f1-1f1ee","1f1f1-1f1f0","1f1f1-1f1f7","1f1f1-1f1f8","1f1f1-1f1f9","1f1f1-1f1fa","1f1f1-1f1fb","1f1f1-1f1fe","1f1f2","1f1f2-1f1e6","1f1f2-1f1e8","1f1f2-1f1e9","1f1f2-1f1ea","1f1f2-1f1eb","1f1f2-1f1ec","1f1f2-1f1ed","1f1f2-1f1f0","1f1f2-1f1f1","1f1f2-1f1f2","1f1f2-1f1f3","1f1f2-1f1f4","1f1f2-1f1f5","1f1f2-1f1f6","1f1f2-1f1f7","1f1f2-1f1f8","1f1f2-1f1f9","1f1f2-1f1fa","1f1f2-1f1fb","1f1f2-1f1fc","1f1f2-1f1fd","1f1f2-1f1fe","1f1f2-1f1ff","1f1f3","1f1f3-1f1e6","1f1f3-1f1e8","1f1f3-1f1ea","1f1f3-1f1eb","1f1f3-1f1ec","1f1f3-1f1ee","1f1f3-1f1f1","1f1f3-1f1f4","1f1f3-1f1f5","1f1f3-1f1f7","1f1f3-1f1fa","1f1f3-1f1ff","1f1f4","1f1f4-1f1f2","1f1f5","1f1f5-1f1e6","1f1f5-1f1ea","1f1f5-1f1eb","1f1f5-1f1ec","1f1f5-1f1ed","1f1f5-1f1f0","1f1f5-1f1f1","1f1f5-1f1f2","1f1f5-1f1f3","1f1f5-1f1f7","1f1f5-1f1f8","1f1f5-1f1f9","1f1f5-1f1fc","1f1f5-1f1fe","1f1f6","1f1f6-1f1e6","1f1f7","1f1f7-1f1ea","1f1f7-1f1f4","1f1f7-1f1f8","1f1f7-1f1fa","1f1f7-1f1fc","1f1f8","1f1f8-1f1e6","1f1f8-1f1e7","1f1f8-1f1e8","1f1f8-1f1e9","1f1f8-1f1ea","1f1f8-1f1ec","1f1f8-1f1ed","1f1f8-1f1ee","1f1f8-1f1ef","1f1f8-1f1f0","1f1f8-1f1f1","1f1f8-1f1f2","1f1f8-1f1f3","1f1f8-1f1f4","1f1f8-1f1f7","1f1f8-1f1f8","1f1f8-1f1f9","1f1f8-1f1fb","1f1f8-1f1fd","1f1f8-1f1fe","1f1f8-1f1ff","1f1f9","1f1f9-1f1e6","1f1f9-1f1e8","1f1f9-1f1e9","1f1f9-1f1eb","1f1f9-1f1ec","1f1f9-1f1ed","1f1f9-1f1ef","1f1f9-1f1f0","1f1f9-1f1f1","1f1f9-1f1f2","1f1f9-1f1f3","1f1f9-1f1f4","1f1f9-1f1f7","1f1f9-1f1f9","1f1f9-1f1fb","1f1f9-1f1fc","1f1f9-1f1ff","1f1fa","1f1fa-1f1e6","1f1fa-1f1ec","1f1fa-1f1f2","1f1fa-1f1f3","1f1fa-1f1f8","1f1fa-1f1fe","1f1fa-1f1ff","1f1fb","1f1fb-1f1e6","1f1fb-1f1e8","1f1fb-1f1ea","1f1fb-1f1ec","1f1fb-1f1ee","1f1fb-1f1f3","1f1fb-1f1fa","1f1fc","1f1fc-1f1eb","1f1fc-1f1f8","1f1fd","1f1fd-1f1f0","1f1fe","1f1fe-1f1ea","1f1fe-1f1f9","1f1ff","1f1ff-1f1e6","1f1ff-1f1f2","1f1ff-1f1fc","1f201","1f202","1f21a","1f22f","1f232","1f233","1f234","1f235","1f236","1f237","1f238","1f239","1f23a","1f250","1f251","1f300","1f301","1f302","1f303","1f304","1f305","1f306","1f307","1f308","1f309","1f30a","1f30b","1f30c","1f30d","1f30e","1f30f","1f310","1f311","1f312","1f313","1f314","1f315","1f316","1f317","1f318","1f319","1f31a","1f31b","1f31c","1f31d","1f31e","1f31f","1f320","1f321","1f324","1f325","1f326","1f327","1f328","1f329","1f32a","1f32b","1f32c","1f32d","1f32e","1f32f","1f330","1f331","1f332","1f333","1f334","1f335","1f336","1f337","1f338","1f339","1f33a","1f33b","1f33c","1f33d","1f33e","1f33f","1f340","1f341","1f342","1f343","1f344","1f345","1f346","1f347","1f348","1f349","1f34a","1f34b","1f34c","1f34d","1f34e","1f34f","1f350","1f351","1f352","1f353","1f354","1f355","1f356","1f357","1f358","1f359","1f35a","1f35b","1f35c","1f35d","1f35e","1f35f","1f360","1f361","1f362","1f363","1f364","1f365","1f366","1f367","1f368","1f369","1f36a","1f36b","1f36c","1f36d","1f36e","1f36f","1f370","1f371","1f372","1f373","1f374","1f375","1f376","1f377","1f378","1f379","1f37a","1f37b","1f37c","1f37d","1f37e","1f37f","1f380","1f381","1f382","1f383","1f384","1f385","1f385-1f3fb","1f385-1f3fc","1f385-1f3fd","1f385-1f3fe","1f385-1f3ff","1f386","1f387","1f388","1f389","1f38a","1f38b","1f38c","1f38d","1f38e","1f38f","1f390","1f391","1f392","1f393","1f396","1f397","1f399","1f39a","1f39b","1f39e","1f39f","1f3a0","1f3a1","1f3a2","1f3a3","1f3a4","1f3a5","1f3a6","1f3a7","1f3a8","1f3a9","1f3aa","1f3ab","1f3ac","1f3ad","1f3ae","1f3af","1f3b0","1f3b1","1f3b2","1f3b3","1f3b4","1f3b5","1f3b6","1f3b7","1f3b8","1f3b9","1f3ba","1f3bb","1f3bc","1f3bd","1f3be","1f3bf","1f3c0","1f3c1","1f3c2","1f3c2-1f3fb","1f3c2-1f3fc","1f3c2-1f3fd","1f3c2-1f3fe","1f3c2-1f3ff","1f3c3","1f3c3-1f3fb","1f3c3-1f3fb-200d-2640-fe0f","1f3c3-1f3fb-200d-2642-fe0f","1f3c3-1f3fc","1f3c3-1f3fc-200d-2640-fe0f","1f3c3-1f3fc-200d-2642-fe0f","1f3c3-1f3fd","1f3c3-1f3fd-200d-2640-fe0f","1f3c3-1f3fd-200d-2642-fe0f","1f3c3-1f3fe","1f3c3-1f3fe-200d-2640-fe0f","1f3c3-1f3fe-200d-2642-fe0f","1f3c3-1f3ff","1f3c3-1f3ff-200d-2640-fe0f","1f3c3-1f3ff-200d-2642-fe0f","1f3c3-200d-2640-fe0f","1f3c3-200d-2642-fe0f","1f3c4","1f3c4-1f3fb","1f3c4-1f3fb-200d-2640-fe0f","1f3c4-1f3fb-200d-2642-fe0f","1f3c4-1f3fc","1f3c4-1f3fc-200d-2640-fe0f","1f3c4-1f3fc-200d-2642-fe0f","1f3c4-1f3fd","1f3c4-1f3fd-200d-2640-fe0f","1f3c4-1f3fd-200d-2642-fe0f","1f3c4-1f3fe","1f3c4-1f3fe-200d-2640-fe0f","1f3c4-1f3fe-200d-2642-fe0f","1f3c4-1f3ff","1f3c4-1f3ff-200d-2640-fe0f","1f3c4-1f3ff-200d-2642-fe0f","1f3c4-200d-2640-fe0f","1f3c4-200d-2642-fe0f","1f3c5","1f3c6","1f3c7","1f3c7-1f3fb","1f3c7-1f3fc","1f3c7-1f3fd","1f3c7-1f3fe","1f3c7-1f3ff","1f3c8","1f3c9","1f3ca","1f3ca-1f3fb","1f3ca-1f3fb-200d-2640-fe0f","1f3ca-1f3fb-200d-2642-fe0f","1f3ca-1f3fc","1f3ca-1f3fc-200d-2640-fe0f","1f3ca-1f3fc-200d-2642-fe0f","1f3ca-1f3fd","1f3ca-1f3fd-200d-2640-fe0f","1f3ca-1f3fd-200d-2642-fe0f","1f3ca-1f3fe","1f3ca-1f3fe-200d-2640-fe0f","1f3ca-1f3fe-200d-2642-fe0f","1f3ca-1f3ff","1f3ca-1f3ff-200d-2640-fe0f","1f3ca-1f3ff-200d-2642-fe0f","1f3ca-200d-2640-fe0f","1f3ca-200d-2642-fe0f","1f3cb","1f3cb-1f3fb","1f3cb-1f3fb-200d-2640-fe0f","1f3cb-1f3fb-200d-2642-fe0f","1f3cb-1f3fc","1f3cb-1f3fc-200d-2640-fe0f","1f3cb-1f3fc-200d-2642-fe0f","1f3cb-1f3fd","1f3cb-1f3fd-200d-2640-fe0f","1f3cb-1f3fd-200d-2642-fe0f","1f3cb-1f3fe","1f3cb-1f3fe-200d-2640-fe0f","1f3cb-1f3fe-200d-2642-fe0f","1f3cb-1f3ff","1f3cb-1f3ff-200d-2640-fe0f","1f3cb-1f3ff-200d-2642-fe0f","1f3cb-fe0f-200d-2640-fe0f","1f3cb-fe0f-200d-2642-fe0f","1f3cc","1f3cc-1f3fb","1f3cc-1f3fb-200d-2640-fe0f","1f3cc-1f3fb-200d-2642-fe0f","1f3cc-1f3fc","1f3cc-1f3fc-200d-2640-fe0f","1f3cc-1f3fc-200d-2642-fe0f","1f3cc-1f3fd","1f3cc-1f3fd-200d-2640-fe0f","1f3cc-1f3fd-200d-2642-fe0f","1f3cc-1f3fe","1f3cc-1f3fe-200d-2640-fe0f","1f3cc-1f3fe-200d-2642-fe0f","1f3cc-1f3ff","1f3cc-1f3ff-200d-2640-fe0f","1f3cc-1f3ff-200d-2642-fe0f","1f3cc-fe0f-200d-2640-fe0f","1f3cc-fe0f-200d-2642-fe0f","1f3cd","1f3ce","1f3cf","1f3d0","1f3d1","1f3d2","1f3d3","1f3d4","1f3d5","1f3d6","1f3d7","1f3d8","1f3d9","1f3da","1f3db","1f3dc","1f3dd","1f3de","1f3df","1f3e0","1f3e1","1f3e2","1f3e3","1f3e4","1f3e5","1f3e6","1f3e7","1f3e8","1f3e9","1f3ea","1f3eb","1f3ec","1f3ed","1f3ee","1f3ef","1f3f0","1f3f3","1f3f3-fe0f-200d-1f308","1f3f3-fe0f-200d-26a7-fe0f","1f3f4","1f3f4-200d-2620-fe0f","1f3f4-e0067-e0062-e0065-e006e-e0067-e007f","1f3f4-e0067-e0062-e0073-e0063-e0074-e007f","1f3f4-e0067-e0062-e0077-e006c-e0073-e007f","1f3f5","1f3f7","1f3f8","1f3f9","1f3fa","1f3fb","1f3fc","1f3fd","1f3fe","1f3ff","1f400","1f401","1f402","1f403","1f404","1f405","1f406","1f407","1f408","1f408-200d-2b1b","1f409","1f40a","1f40b","1f40c","1f40d","1f40e","1f40f","1f410","1f411","1f412","1f413","1f414","1f415","1f415-200d-1f9ba","1f416","1f417","1f418","1f419","1f41a","1f41b","1f41c","1f41d","1f41e","1f41f","1f420","1f421","1f422","1f423","1f424","1f425","1f426","1f427","1f428","1f429","1f42a","1f42b","1f42c","1f42d","1f42e","1f42f","1f430","1f431","1f432","1f433","1f434","1f435","1f436","1f437","1f438","1f439","1f43a","1f43b","1f43b-200d-2744-fe0f","1f43c","1f43d","1f43e","1f43f","1f440","1f441","1f441-200d-1f5e8","1f442","1f442-1f3fb","1f442-1f3fc","1f442-1f3fd","1f442-1f3fe","1f442-1f3ff","1f443","1f443-1f3fb","1f443-1f3fc","1f443-1f3fd","1f443-1f3fe","1f443-1f3ff","1f444","1f445","1f446","1f446-1f3fb","1f446-1f3fc","1f446-1f3fd","1f446-1f3fe","1f446-1f3ff","1f447","1f447-1f3fb","1f447-1f3fc","1f447-1f3fd","1f447-1f3fe","1f447-1f3ff","1f448","1f448-1f3fb","1f448-1f3fc","1f448-1f3fd","1f448-1f3fe","1f448-1f3ff","1f449","1f449-1f3fb","1f449-1f3fc","1f449-1f3fd","1f449-1f3fe","1f449-1f3ff","1f44a","1f44a-1f3fb","1f44a-1f3fc","1f44a-1f3fd","1f44a-1f3fe","1f44a-1f3ff","1f44b","1f44b-1f3fb","1f44b-1f3fc","1f44b-1f3fd","1f44b-1f3fe","1f44b-1f3ff","1f44c","1f44c-1f3fb","1f44c-1f3fc","1f44c-1f3fd","1f44c-1f3fe","1f44c-1f3ff","1f44d","1f44d-1f3fb","1f44d-1f3fc","1f44d-1f3fd","1f44d-1f3fe","1f44d-1f3ff","1f44e","1f44e-1f3fb","1f44e-1f3fc","1f44e-1f3fd","1f44e-1f3fe","1f44e-1f3ff","1f44f","1f44f-1f3fb","1f44f-1f3fc","1f44f-1f3fd","1f44f-1f3fe","1f44f-1f3ff","1f450","1f450-1f3fb","1f450-1f3fc","1f450-1f3fd","1f450-1f3fe","1f450-1f3ff","1f451","1f452","1f453","1f454","1f455","1f456","1f457","1f458","1f459","1f45a","1f45b","1f45c","1f45d","1f45e","1f45f","1f460","1f461","1f462","1f463","1f464","1f465","1f466","1f466-1f3fb","1f466-1f3fc","1f466-1f3fd","1f466-1f3fe","1f466-1f3ff","1f467","1f467-1f3fb","1f467-1f3fc","1f467-1f3fd","1f467-1f3fe","1f467-1f3ff","1f468","1f468-1f3fb","1f468-1f3fb-200d-1f33e","1f468-1f3fb-200d-1f373","1f468-1f3fb-200d-1f37c","1f468-1f3fb-200d-1f384","1f468-1f3fb-200d-1f393","1f468-1f3fb-200d-1f3a4","1f468-1f3fb-200d-1f3a8","1f468-1f3fb-200d-1f3eb","1f468-1f3fb-200d-1f3ed","1f468-1f3fb-200d-1f4bb","1f468-1f3fb-200d-1f4bc","1f468-1f3fb-200d-1f527","1f468-1f3fb-200d-1f52c","1f468-1f3fb-200d-1f680","1f468-1f3fb-200d-1f692","1f468-1f3fb-200d-1f91d-200d-1f468-1f3fc","1f468-1f3fb-200d-1f91d-200d-1f468-1f3fd","1f468-1f3fb-200d-1f91d-200d-1f468-1f3fe","1f468-1f3fb-200d-1f91d-200d-1f468-1f3ff","1f468-1f3fb-200d-1f9af","1f468-1f3fb-200d-1f9b0","1f468-1f3fb-200d-1f9b1","1f468-1f3fb-200d-1f9b2","1f468-1f3fb-200d-1f9b3","1f468-1f3fb-200d-1f9bc","1f468-1f3fb-200d-1f9bd","1f468-1f3fb-200d-2695-fe0f","1f468-1f3fb-200d-2696-fe0f","1f468-1f3fb-200d-2708-fe0f","1f468-1f3fb-200d-2764-fe0f-200d-1f468-1f3fb","1f468-1f3fb-200d-2764-fe0f-200d-1f468-1f3fc","1f468-1f3fb-200d-2764-fe0f-200d-1f468-1f3fd","1f468-1f3fb-200d-2764-fe0f-200d-1f468-1f3fe","1f468-1f3fb-200d-2764-fe0f-200d-1f468-1f3ff","1f468-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb","1f468-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc","1f468-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd","1f468-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe","1f468-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff","1f468-1f3fc","1f468-1f3fc-200d-1f33e","1f468-1f3fc-200d-1f373","1f468-1f3fc-200d-1f37c","1f468-1f3fc-200d-1f384","1f468-1f3fc-200d-1f393","1f468-1f3fc-200d-1f3a4","1f468-1f3fc-200d-1f3a8","1f468-1f3fc-200d-1f3eb","1f468-1f3fc-200d-1f3ed","1f468-1f3fc-200d-1f4bb","1f468-1f3fc-200d-1f4bc","1f468-1f3fc-200d-1f527","1f468-1f3fc-200d-1f52c","1f468-1f3fc-200d-1f680","1f468-1f3fc-200d-1f692","1f468-1f3fc-200d-1f91d-200d-1f468-1f3fb","1f468-1f3fc-200d-1f91d-200d-1f468-1f3fd","1f468-1f3fc-200d-1f91d-200d-1f468-1f3fe","1f468-1f3fc-200d-1f91d-200d-1f468-1f3ff","1f468-1f3fc-200d-1f9af","1f468-1f3fc-200d-1f9b0","1f468-1f3fc-200d-1f9b1","1f468-1f3fc-200d-1f9b2","1f468-1f3fc-200d-1f9b3","1f468-1f3fc-200d-1f9bc","1f468-1f3fc-200d-1f9bd","1f468-1f3fc-200d-2695-fe0f","1f468-1f3fc-200d-2696-fe0f","1f468-1f3fc-200d-2708-fe0f","1f468-1f3fc-200d-2764-fe0f-200d-1f468-1f3fb","1f468-1f3fc-200d-2764-fe0f-200d-1f468-1f3fc","1f468-1f3fc-200d-2764-fe0f-200d-1f468-1f3fd","1f468-1f3fc-200d-2764-fe0f-200d-1f468-1f3fe","1f468-1f3fc-200d-2764-fe0f-200d-1f468-1f3ff","1f468-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb","1f468-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc","1f468-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd","1f468-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe","1f468-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff","1f468-1f3fd","1f468-1f3fd-200d-1f33e","1f468-1f3fd-200d-1f373","1f468-1f3fd-200d-1f37c","1f468-1f3fd-200d-1f384","1f468-1f3fd-200d-1f393","1f468-1f3fd-200d-1f3a4","1f468-1f3fd-200d-1f3a8","1f468-1f3fd-200d-1f3eb","1f468-1f3fd-200d-1f3ed","1f468-1f3fd-200d-1f4bb","1f468-1f3fd-200d-1f4bc","1f468-1f3fd-200d-1f527","1f468-1f3fd-200d-1f52c","1f468-1f3fd-200d-1f680","1f468-1f3fd-200d-1f692","1f468-1f3fd-200d-1f91d-200d-1f468-1f3fb","1f468-1f3fd-200d-1f91d-200d-1f468-1f3fc","1f468-1f3fd-200d-1f91d-200d-1f468-1f3fe","1f468-1f3fd-200d-1f91d-200d-1f468-1f3ff","1f468-1f3fd-200d-1f9af","1f468-1f3fd-200d-1f9b0","1f468-1f3fd-200d-1f9b1","1f468-1f3fd-200d-1f9b2","1f468-1f3fd-200d-1f9b3","1f468-1f3fd-200d-1f9bc","1f468-1f3fd-200d-1f9bd","1f468-1f3fd-200d-2695-fe0f","1f468-1f3fd-200d-2696-fe0f","1f468-1f3fd-200d-2708-fe0f","1f468-1f3fd-200d-2764-fe0f-200d-1f468-1f3fb","1f468-1f3fd-200d-2764-fe0f-200d-1f468-1f3fc","1f468-1f3fd-200d-2764-fe0f-200d-1f468-1f3fd","1f468-1f3fd-200d-2764-fe0f-200d-1f468-1f3fe","1f468-1f3fd-200d-2764-fe0f-200d-1f468-1f3ff","1f468-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb","1f468-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc","1f468-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd","1f468-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe","1f468-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff","1f468-1f3fe","1f468-1f3fe-200d-1f33e","1f468-1f3fe-200d-1f373","1f468-1f3fe-200d-1f37c","1f468-1f3fe-200d-1f384","1f468-1f3fe-200d-1f393","1f468-1f3fe-200d-1f3a4","1f468-1f3fe-200d-1f3a8","1f468-1f3fe-200d-1f3eb","1f468-1f3fe-200d-1f3ed","1f468-1f3fe-200d-1f4bb","1f468-1f3fe-200d-1f4bc","1f468-1f3fe-200d-1f527","1f468-1f3fe-200d-1f52c","1f468-1f3fe-200d-1f680","1f468-1f3fe-200d-1f692","1f468-1f3fe-200d-1f91d-200d-1f468-1f3fb","1f468-1f3fe-200d-1f91d-200d-1f468-1f3fc","1f468-1f3fe-200d-1f91d-200d-1f468-1f3fd","1f468-1f3fe-200d-1f91d-200d-1f468-1f3ff","1f468-1f3fe-200d-1f9af","1f468-1f3fe-200d-1f9b0","1f468-1f3fe-200d-1f9b1","1f468-1f3fe-200d-1f9b2","1f468-1f3fe-200d-1f9b3","1f468-1f3fe-200d-1f9bc","1f468-1f3fe-200d-1f9bd","1f468-1f3fe-200d-2695-fe0f","1f468-1f3fe-200d-2696-fe0f","1f468-1f3fe-200d-2708-fe0f","1f468-1f3fe-200d-2764-fe0f-200d-1f468-1f3fb","1f468-1f3fe-200d-2764-fe0f-200d-1f468-1f3fc","1f468-1f3fe-200d-2764-fe0f-200d-1f468-1f3fd","1f468-1f3fe-200d-2764-fe0f-200d-1f468-1f3fe","1f468-1f3fe-200d-2764-fe0f-200d-1f468-1f3ff","1f468-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb","1f468-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc","1f468-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd","1f468-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe","1f468-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff","1f468-1f3ff","1f468-1f3ff-200d-1f33e","1f468-1f3ff-200d-1f373","1f468-1f3ff-200d-1f37c","1f468-1f3ff-200d-1f384","1f468-1f3ff-200d-1f393","1f468-1f3ff-200d-1f3a4","1f468-1f3ff-200d-1f3a8","1f468-1f3ff-200d-1f3eb","1f468-1f3ff-200d-1f3ed","1f468-1f3ff-200d-1f4bb","1f468-1f3ff-200d-1f4bc","1f468-1f3ff-200d-1f527","1f468-1f3ff-200d-1f52c","1f468-1f3ff-200d-1f680","1f468-1f3ff-200d-1f692","1f468-1f3ff-200d-1f91d-200d-1f468-1f3fb","1f468-1f3ff-200d-1f91d-200d-1f468-1f3fc","1f468-1f3ff-200d-1f91d-200d-1f468-1f3fd","1f468-1f3ff-200d-1f91d-200d-1f468-1f3fe","1f468-1f3ff-200d-1f9af","1f468-1f3ff-200d-1f9b0","1f468-1f3ff-200d-1f9b1","1f468-1f3ff-200d-1f9b2","1f468-1f3ff-200d-1f9b3","1f468-1f3ff-200d-1f9bc","1f468-1f3ff-200d-1f9bd","1f468-1f3ff-200d-2695-fe0f","1f468-1f3ff-200d-2696-fe0f","1f468-1f3ff-200d-2708-fe0f","1f468-1f3ff-200d-2764-fe0f-200d-1f468-1f3fb","1f468-1f3ff-200d-2764-fe0f-200d-1f468-1f3fc","1f468-1f3ff-200d-2764-fe0f-200d-1f468-1f3fd","1f468-1f3ff-200d-2764-fe0f-200d-1f468-1f3fe","1f468-1f3ff-200d-2764-fe0f-200d-1f468-1f3ff","1f468-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb","1f468-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc","1f468-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd","1f468-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe","1f468-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff","1f468-200d-1f33e","1f468-200d-1f373","1f468-200d-1f37c","1f468-200d-1f384","1f468-200d-1f393","1f468-200d-1f3a4","1f468-200d-1f3a8","1f468-200d-1f3eb","1f468-200d-1f3ed","1f468-200d-1f466","1f468-200d-1f466-200d-1f466","1f468-200d-1f467","1f468-200d-1f467-200d-1f466","1f468-200d-1f467-200d-1f467","1f468-200d-1f468-200d-1f466","1f468-200d-1f468-200d-1f466-200d-1f466","1f468-200d-1f468-200d-1f467","1f468-200d-1f468-200d-1f467-200d-1f466","1f468-200d-1f468-200d-1f467-200d-1f467","1f468-200d-1f469-200d-1f466","1f468-200d-1f469-200d-1f466-200d-1f466","1f468-200d-1f469-200d-1f467","1f468-200d-1f469-200d-1f467-200d-1f466","1f468-200d-1f469-200d-1f467-200d-1f467","1f468-200d-1f4bb","1f468-200d-1f4bc","1f468-200d-1f527","1f468-200d-1f52c","1f468-200d-1f680","1f468-200d-1f692","1f468-200d-1f9af","1f468-200d-1f9b0","1f468-200d-1f9b1","1f468-200d-1f9b2","1f468-200d-1f9b3","1f468-200d-1f9bc","1f468-200d-1f9bd","1f468-200d-2695-fe0f","1f468-200d-2696-fe0f","1f468-200d-2708-fe0f","1f468-200d-2764-fe0f-200d-1f468","1f468-200d-2764-fe0f-200d-1f48b-200d-1f468","1f469","1f469-1f3fb","1f469-1f3fb-200d-1f33e","1f469-1f3fb-200d-1f373","1f469-1f3fb-200d-1f37c","1f469-1f3fb-200d-1f384","1f469-1f3fb-200d-1f393","1f469-1f3fb-200d-1f3a4","1f469-1f3fb-200d-1f3a8","1f469-1f3fb-200d-1f3eb","1f469-1f3fb-200d-1f3ed","1f469-1f3fb-200d-1f4bb","1f469-1f3fb-200d-1f4bc","1f469-1f3fb-200d-1f527","1f469-1f3fb-200d-1f52c","1f469-1f3fb-200d-1f680","1f469-1f3fb-200d-1f692","1f469-1f3fb-200d-1f91d-200d-1f468-1f3fc","1f469-1f3fb-200d-1f91d-200d-1f468-1f3fd","1f469-1f3fb-200d-1f91d-200d-1f468-1f3fe","1f469-1f3fb-200d-1f91d-200d-1f468-1f3ff","1f469-1f3fb-200d-1f91d-200d-1f469-1f3fc","1f469-1f3fb-200d-1f91d-200d-1f469-1f3fd","1f469-1f3fb-200d-1f91d-200d-1f469-1f3fe","1f469-1f3fb-200d-1f91d-200d-1f469-1f3ff","1f469-1f3fb-200d-1f9af","1f469-1f3fb-200d-1f9b0","1f469-1f3fb-200d-1f9b1","1f469-1f3fb-200d-1f9b2","1f469-1f3fb-200d-1f9b3","1f469-1f3fb-200d-1f9bc","1f469-1f3fb-200d-1f9bd","1f469-1f3fb-200d-2695-fe0f","1f469-1f3fb-200d-2696-fe0f","1f469-1f3fb-200d-2708-fe0f","1f469-1f3fb-200d-2764-fe0f-200d-1f468-1f3fb","1f469-1f3fb-200d-2764-fe0f-200d-1f468-1f3fc","1f469-1f3fb-200d-2764-fe0f-200d-1f468-1f3fd","1f469-1f3fb-200d-2764-fe0f-200d-1f468-1f3fe","1f469-1f3fb-200d-2764-fe0f-200d-1f468-1f3ff","1f469-1f3fb-200d-2764-fe0f-200d-1f469-1f3fb","1f469-1f3fb-200d-2764-fe0f-200d-1f469-1f3fc","1f469-1f3fb-200d-2764-fe0f-200d-1f469-1f3fd","1f469-1f3fb-200d-2764-fe0f-200d-1f469-1f3fe","1f469-1f3fb-200d-2764-fe0f-200d-1f469-1f3ff","1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb","1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc","1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd","1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe","1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff","1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fb","1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fc","1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fd","1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fe","1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3ff","1f469-1f3fc","1f469-1f3fc-200d-1f33e","1f469-1f3fc-200d-1f373","1f469-1f3fc-200d-1f37c","1f469-1f3fc-200d-1f384","1f469-1f3fc-200d-1f393","1f469-1f3fc-200d-1f3a4","1f469-1f3fc-200d-1f3a8","1f469-1f3fc-200d-1f3eb","1f469-1f3fc-200d-1f3ed","1f469-1f3fc-200d-1f4bb","1f469-1f3fc-200d-1f4bc","1f469-1f3fc-200d-1f527","1f469-1f3fc-200d-1f52c","1f469-1f3fc-200d-1f680","1f469-1f3fc-200d-1f692","1f469-1f3fc-200d-1f91d-200d-1f468-1f3fb","1f469-1f3fc-200d-1f91d-200d-1f468-1f3fd","1f469-1f3fc-200d-1f91d-200d-1f468-1f3fe","1f469-1f3fc-200d-1f91d-200d-1f468-1f3ff","1f469-1f3fc-200d-1f91d-200d-1f469-1f3fb","1f469-1f3fc-200d-1f91d-200d-1f469-1f3fd","1f469-1f3fc-200d-1f91d-200d-1f469-1f3fe","1f469-1f3fc-200d-1f91d-200d-1f469-1f3ff","1f469-1f3fc-200d-1f9af","1f469-1f3fc-200d-1f9b0","1f469-1f3fc-200d-1f9b1","1f469-1f3fc-200d-1f9b2","1f469-1f3fc-200d-1f9b3","1f469-1f3fc-200d-1f9bc","1f469-1f3fc-200d-1f9bd","1f469-1f3fc-200d-2695-fe0f","1f469-1f3fc-200d-2696-fe0f","1f469-1f3fc-200d-2708-fe0f","1f469-1f3fc-200d-2764-fe0f-200d-1f468-1f3fb","1f469-1f3fc-200d-2764-fe0f-200d-1f468-1f3fc","1f469-1f3fc-200d-2764-fe0f-200d-1f468-1f3fd","1f469-1f3fc-200d-2764-fe0f-200d-1f468-1f3fe","1f469-1f3fc-200d-2764-fe0f-200d-1f468-1f3ff","1f469-1f3fc-200d-2764-fe0f-200d-1f469-1f3fb","1f469-1f3fc-200d-2764-fe0f-200d-1f469-1f3fc","1f469-1f3fc-200d-2764-fe0f-200d-1f469-1f3fd","1f469-1f3fc-200d-2764-fe0f-200d-1f469-1f3fe","1f469-1f3fc-200d-2764-fe0f-200d-1f469-1f3ff","1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb","1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc","1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd","1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe","1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff","1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fb","1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fc","1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fd","1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fe","1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3ff","1f469-1f3fd","1f469-1f3fd-200d-1f33e","1f469-1f3fd-200d-1f373","1f469-1f3fd-200d-1f37c","1f469-1f3fd-200d-1f384","1f469-1f3fd-200d-1f393","1f469-1f3fd-200d-1f3a4","1f469-1f3fd-200d-1f3a8","1f469-1f3fd-200d-1f3eb","1f469-1f3fd-200d-1f3ed","1f469-1f3fd-200d-1f4bb","1f469-1f3fd-200d-1f4bc","1f469-1f3fd-200d-1f527","1f469-1f3fd-200d-1f52c","1f469-1f3fd-200d-1f680","1f469-1f3fd-200d-1f692","1f469-1f3fd-200d-1f91d-200d-1f468-1f3fb","1f469-1f3fd-200d-1f91d-200d-1f468-1f3fc","1f469-1f3fd-200d-1f91d-200d-1f468-1f3fe","1f469-1f3fd-200d-1f91d-200d-1f468-1f3ff","1f469-1f3fd-200d-1f91d-200d-1f469-1f3fb","1f469-1f3fd-200d-1f91d-200d-1f469-1f3fc","1f469-1f3fd-200d-1f91d-200d-1f469-1f3fe","1f469-1f3fd-200d-1f91d-200d-1f469-1f3ff","1f469-1f3fd-200d-1f9af","1f469-1f3fd-200d-1f9b0","1f469-1f3fd-200d-1f9b1","1f469-1f3fd-200d-1f9b2","1f469-1f3fd-200d-1f9b3","1f469-1f3fd-200d-1f9bc","1f469-1f3fd-200d-1f9bd","1f469-1f3fd-200d-2695-fe0f","1f469-1f3fd-200d-2696-fe0f","1f469-1f3fd-200d-2708-fe0f","1f469-1f3fd-200d-2764-fe0f-200d-1f468-1f3fb","1f469-1f3fd-200d-2764-fe0f-200d-1f468-1f3fc","1f469-1f3fd-200d-2764-fe0f-200d-1f468-1f3fd","1f469-1f3fd-200d-2764-fe0f-200d-1f468-1f3fe","1f469-1f3fd-200d-2764-fe0f-200d-1f468-1f3ff","1f469-1f3fd-200d-2764-fe0f-200d-1f469-1f3fb","1f469-1f3fd-200d-2764-fe0f-200d-1f469-1f3fc","1f469-1f3fd-200d-2764-fe0f-200d-1f469-1f3fd","1f469-1f3fd-200d-2764-fe0f-200d-1f469-1f3fe","1f469-1f3fd-200d-2764-fe0f-200d-1f469-1f3ff","1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb","1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc","1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd","1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe","1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff","1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fb","1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fc","1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fd","1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fe","1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3ff","1f469-1f3fe","1f469-1f3fe-200d-1f33e","1f469-1f3fe-200d-1f373","1f469-1f3fe-200d-1f37c","1f469-1f3fe-200d-1f384","1f469-1f3fe-200d-1f393","1f469-1f3fe-200d-1f3a4","1f469-1f3fe-200d-1f3a8","1f469-1f3fe-200d-1f3eb","1f469-1f3fe-200d-1f3ed","1f469-1f3fe-200d-1f4bb","1f469-1f3fe-200d-1f4bc","1f469-1f3fe-200d-1f527","1f469-1f3fe-200d-1f52c","1f469-1f3fe-200d-1f680","1f469-1f3fe-200d-1f692","1f469-1f3fe-200d-1f91d-200d-1f468-1f3fb","1f469-1f3fe-200d-1f91d-200d-1f468-1f3fc","1f469-1f3fe-200d-1f91d-200d-1f468-1f3fd","1f469-1f3fe-200d-1f91d-200d-1f468-1f3ff","1f469-1f3fe-200d-1f91d-200d-1f469-1f3fb","1f469-1f3fe-200d-1f91d-200d-1f469-1f3fc","1f469-1f3fe-200d-1f91d-200d-1f469-1f3fd","1f469-1f3fe-200d-1f91d-200d-1f469-1f3ff","1f469-1f3fe-200d-1f9af","1f469-1f3fe-200d-1f9b0","1f469-1f3fe-200d-1f9b1","1f469-1f3fe-200d-1f9b2","1f469-1f3fe-200d-1f9b3","1f469-1f3fe-200d-1f9bc","1f469-1f3fe-200d-1f9bd","1f469-1f3fe-200d-2695-fe0f","1f469-1f3fe-200d-2696-fe0f","1f469-1f3fe-200d-2708-fe0f","1f469-1f3fe-200d-2764-fe0f-200d-1f468-1f3fb","1f469-1f3fe-200d-2764-fe0f-200d-1f468-1f3fc","1f469-1f3fe-200d-2764-fe0f-200d-1f468-1f3fd","1f469-1f3fe-200d-2764-fe0f-200d-1f468-1f3fe","1f469-1f3fe-200d-2764-fe0f-200d-1f468-1f3ff","1f469-1f3fe-200d-2764-fe0f-200d-1f469-1f3fb","1f469-1f3fe-200d-2764-fe0f-200d-1f469-1f3fc","1f469-1f3fe-200d-2764-fe0f-200d-1f469-1f3fd","1f469-1f3fe-200d-2764-fe0f-200d-1f469-1f3fe","1f469-1f3fe-200d-2764-fe0f-200d-1f469-1f3ff","1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb","1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc","1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd","1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe","1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff","1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fb","1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fc","1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fd","1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fe","1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3ff","1f469-1f3ff","1f469-1f3ff-200d-1f33e","1f469-1f3ff-200d-1f373","1f469-1f3ff-200d-1f37c","1f469-1f3ff-200d-1f384","1f469-1f3ff-200d-1f393","1f469-1f3ff-200d-1f3a4","1f469-1f3ff-200d-1f3a8","1f469-1f3ff-200d-1f3eb","1f469-1f3ff-200d-1f3ed","1f469-1f3ff-200d-1f4bb","1f469-1f3ff-200d-1f4bc","1f469-1f3ff-200d-1f527","1f469-1f3ff-200d-1f52c","1f469-1f3ff-200d-1f680","1f469-1f3ff-200d-1f692","1f469-1f3ff-200d-1f91d-200d-1f468-1f3fb","1f469-1f3ff-200d-1f91d-200d-1f468-1f3fc","1f469-1f3ff-200d-1f91d-200d-1f468-1f3fd","1f469-1f3ff-200d-1f91d-200d-1f468-1f3fe","1f469-1f3ff-200d-1f91d-200d-1f469-1f3fb","1f469-1f3ff-200d-1f91d-200d-1f469-1f3fc","1f469-1f3ff-200d-1f91d-200d-1f469-1f3fd","1f469-1f3ff-200d-1f91d-200d-1f469-1f3fe","1f469-1f3ff-200d-1f9af","1f469-1f3ff-200d-1f9b0","1f469-1f3ff-200d-1f9b1","1f469-1f3ff-200d-1f9b2","1f469-1f3ff-200d-1f9b3","1f469-1f3ff-200d-1f9bc","1f469-1f3ff-200d-1f9bd","1f469-1f3ff-200d-2695-fe0f","1f469-1f3ff-200d-2696-fe0f","1f469-1f3ff-200d-2708-fe0f","1f469-1f3ff-200d-2764-fe0f-200d-1f468-1f3fb","1f469-1f3ff-200d-2764-fe0f-200d-1f468-1f3fc","1f469-1f3ff-200d-2764-fe0f-200d-1f468-1f3fd","1f469-1f3ff-200d-2764-fe0f-200d-1f468-1f3fe","1f469-1f3ff-200d-2764-fe0f-200d-1f468-1f3ff","1f469-1f3ff-200d-2764-fe0f-200d-1f469-1f3fb","1f469-1f3ff-200d-2764-fe0f-200d-1f469-1f3fc","1f469-1f3ff-200d-2764-fe0f-200d-1f469-1f3fd","1f469-1f3ff-200d-2764-fe0f-200d-1f469-1f3fe","1f469-1f3ff-200d-2764-fe0f-200d-1f469-1f3ff","1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb","1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc","1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd","1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe","1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff","1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fb","1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fc","1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fd","1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fe","1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3ff","1f469-200d-1f33e","1f469-200d-1f373","1f469-200d-1f37c","1f469-200d-1f384","1f469-200d-1f393","1f469-200d-1f3a4","1f469-200d-1f3a8","1f469-200d-1f3eb","1f469-200d-1f3ed","1f469-200d-1f466","1f469-200d-1f466-200d-1f466","1f469-200d-1f467","1f469-200d-1f467-200d-1f466","1f469-200d-1f467-200d-1f467","1f469-200d-1f469-200d-1f466","1f469-200d-1f469-200d-1f466-200d-1f466","1f469-200d-1f469-200d-1f467","1f469-200d-1f469-200d-1f467-200d-1f466","1f469-200d-1f469-200d-1f467-200d-1f467","1f469-200d-1f4bb","1f469-200d-1f4bc","1f469-200d-1f527","1f469-200d-1f52c","1f469-200d-1f680","1f469-200d-1f692","1f469-200d-1f9af","1f469-200d-1f9b0","1f469-200d-1f9b1","1f469-200d-1f9b2","1f469-200d-1f9b3","1f469-200d-1f9bc","1f469-200d-1f9bd","1f469-200d-2695-fe0f","1f469-200d-2696-fe0f","1f469-200d-2708-fe0f","1f469-200d-2764-fe0f-200d-1f468","1f469-200d-2764-fe0f-200d-1f469","1f469-200d-2764-fe0f-200d-1f48b-200d-1f468","1f469-200d-2764-fe0f-200d-1f48b-200d-1f469","1f46a","1f46b","1f46b-1f3fb","1f46b-1f3fc","1f46b-1f3fd","1f46b-1f3fe","1f46b-1f3ff","1f46c","1f46c-1f3fb","1f46c-1f3fc","1f46c-1f3fd","1f46c-1f3fe","1f46c-1f3ff","1f46d","1f46d-1f3fb","1f46d-1f3fc","1f46d-1f3fd","1f46d-1f3fe","1f46d-1f3ff","1f46e","1f46e-1f3fb","1f46e-1f3fb-200d-2640-fe0f","1f46e-1f3fb-200d-2642-fe0f","1f46e-1f3fc","1f46e-1f3fc-200d-2640-fe0f","1f46e-1f3fc-200d-2642-fe0f","1f46e-1f3fd","1f46e-1f3fd-200d-2640-fe0f","1f46e-1f3fd-200d-2642-fe0f","1f46e-1f3fe","1f46e-1f3fe-200d-2640-fe0f","1f46e-1f3fe-200d-2642-fe0f","1f46e-1f3ff","1f46e-1f3ff-200d-2640-fe0f","1f46e-1f3ff-200d-2642-fe0f","1f46e-200d-2640-fe0f","1f46e-200d-2642-fe0f","1f46f","1f46f-200d-2640-fe0f","1f46f-200d-2642-fe0f","1f470","1f470-1f3fb","1f470-1f3fb-200d-2640-fe0f","1f470-1f3fb-200d-2642-fe0f","1f470-1f3fc","1f470-1f3fc-200d-2640-fe0f","1f470-1f3fc-200d-2642-fe0f","1f470-1f3fd","1f470-1f3fd-200d-2640-fe0f","1f470-1f3fd-200d-2642-fe0f","1f470-1f3fe","1f470-1f3fe-200d-2640-fe0f","1f470-1f3fe-200d-2642-fe0f","1f470-1f3ff","1f470-1f3ff-200d-2640-fe0f","1f470-1f3ff-200d-2642-fe0f","1f470-200d-2640-fe0f","1f470-200d-2642-fe0f","1f471","1f471-1f3fb","1f471-1f3fb-200d-2640-fe0f","1f471-1f3fb-200d-2642-fe0f","1f471-1f3fc","1f471-1f3fc-200d-2640-fe0f","1f471-1f3fc-200d-2642-fe0f","1f471-1f3fd","1f471-1f3fd-200d-2640-fe0f","1f471-1f3fd-200d-2642-fe0f","1f471-1f3fe","1f471-1f3fe-200d-2640-fe0f","1f471-1f3fe-200d-2642-fe0f","1f471-1f3ff","1f471-1f3ff-200d-2640-fe0f","1f471-1f3ff-200d-2642-fe0f","1f471-200d-2640-fe0f","1f471-200d-2642-fe0f","1f472","1f472-1f3fb","1f472-1f3fc","1f472-1f3fd","1f472-1f3fe","1f472-1f3ff","1f473","1f473-1f3fb","1f473-1f3fb-200d-2640-fe0f","1f473-1f3fb-200d-2642-fe0f","1f473-1f3fc","1f473-1f3fc-200d-2640-fe0f","1f473-1f3fc-200d-2642-fe0f","1f473-1f3fd","1f473-1f3fd-200d-2640-fe0f","1f473-1f3fd-200d-2642-fe0f","1f473-1f3fe","1f473-1f3fe-200d-2640-fe0f","1f473-1f3fe-200d-2642-fe0f","1f473-1f3ff","1f473-1f3ff-200d-2640-fe0f","1f473-1f3ff-200d-2642-fe0f","1f473-200d-2640-fe0f","1f473-200d-2642-fe0f","1f474","1f474-1f3fb","1f474-1f3fc","1f474-1f3fd","1f474-1f3fe","1f474-1f3ff","1f475","1f475-1f3fb","1f475-1f3fc","1f475-1f3fd","1f475-1f3fe","1f475-1f3ff","1f476","1f476-1f3fb","1f476-1f3fc","1f476-1f3fd","1f476-1f3fe","1f476-1f3ff","1f477","1f477-1f3fb","1f477-1f3fb-200d-2640-fe0f","1f477-1f3fb-200d-2642-fe0f","1f477-1f3fc","1f477-1f3fc-200d-2640-fe0f","1f477-1f3fc-200d-2642-fe0f","1f477-1f3fd","1f477-1f3fd-200d-2640-fe0f","1f477-1f3fd-200d-2642-fe0f","1f477-1f3fe","1f477-1f3fe-200d-2640-fe0f","1f477-1f3fe-200d-2642-fe0f","1f477-1f3ff","1f477-1f3ff-200d-2640-fe0f","1f477-1f3ff-200d-2642-fe0f","1f477-200d-2640-fe0f","1f477-200d-2642-fe0f","1f478","1f478-1f3fb","1f478-1f3fc","1f478-1f3fd","1f478-1f3fe","1f478-1f3ff","1f479","1f47a","1f47b","1f47c","1f47c-1f3fb","1f47c-1f3fc","1f47c-1f3fd","1f47c-1f3fe","1f47c-1f3ff","1f47d","1f47e","1f47f","1f480","1f481","1f481-1f3fb","1f481-1f3fb-200d-2640-fe0f","1f481-1f3fb-200d-2642-fe0f","1f481-1f3fc","1f481-1f3fc-200d-2640-fe0f","1f481-1f3fc-200d-2642-fe0f","1f481-1f3fd","1f481-1f3fd-200d-2640-fe0f","1f481-1f3fd-200d-2642-fe0f","1f481-1f3fe","1f481-1f3fe-200d-2640-fe0f","1f481-1f3fe-200d-2642-fe0f","1f481-1f3ff","1f481-1f3ff-200d-2640-fe0f","1f481-1f3ff-200d-2642-fe0f","1f481-200d-2640-fe0f","1f481-200d-2642-fe0f","1f482","1f482-1f3fb","1f482-1f3fb-200d-2640-fe0f","1f482-1f3fb-200d-2642-fe0f","1f482-1f3fc","1f482-1f3fc-200d-2640-fe0f","1f482-1f3fc-200d-2642-fe0f","1f482-1f3fd","1f482-1f3fd-200d-2640-fe0f","1f482-1f3fd-200d-2642-fe0f","1f482-1f3fe","1f482-1f3fe-200d-2640-fe0f","1f482-1f3fe-200d-2642-fe0f","1f482-1f3ff","1f482-1f3ff-200d-2640-fe0f","1f482-1f3ff-200d-2642-fe0f","1f482-200d-2640-fe0f","1f482-200d-2642-fe0f","1f483","1f483-1f3fb","1f483-1f3fc","1f483-1f3fd","1f483-1f3fe","1f483-1f3ff","1f484","1f485","1f485-1f3fb","1f485-1f3fc","1f485-1f3fd","1f485-1f3fe","1f485-1f3ff","1f486","1f486-1f3fb","1f486-1f3fb-200d-2640-fe0f","1f486-1f3fb-200d-2642-fe0f","1f486-1f3fc","1f486-1f3fc-200d-2640-fe0f","1f486-1f3fc-200d-2642-fe0f","1f486-1f3fd","1f486-1f3fd-200d-2640-fe0f","1f486-1f3fd-200d-2642-fe0f","1f486-1f3fe","1f486-1f3fe-200d-2640-fe0f","1f486-1f3fe-200d-2642-fe0f","1f486-1f3ff","1f486-1f3ff-200d-2640-fe0f","1f486-1f3ff-200d-2642-fe0f","1f486-200d-2640-fe0f","1f486-200d-2642-fe0f","1f487","1f487-1f3fb","1f487-1f3fb-200d-2640-fe0f","1f487-1f3fb-200d-2642-fe0f","1f487-1f3fc","1f487-1f3fc-200d-2640-fe0f","1f487-1f3fc-200d-2642-fe0f","1f487-1f3fd","1f487-1f3fd-200d-2640-fe0f","1f487-1f3fd-200d-2642-fe0f","1f487-1f3fe","1f487-1f3fe-200d-2640-fe0f","1f487-1f3fe-200d-2642-fe0f","1f487-1f3ff","1f487-1f3ff-200d-2640-fe0f","1f487-1f3ff-200d-2642-fe0f","1f487-200d-2640-fe0f","1f487-200d-2642-fe0f","1f488","1f489","1f48a","1f48b","1f48c","1f48d","1f48e","1f48f","1f48f-1f3fb","1f48f-1f3fc","1f48f-1f3fd","1f48f-1f3fe","1f48f-1f3ff","1f490","1f491","1f491-1f3fb","1f491-1f3fc","1f491-1f3fd","1f491-1f3fe","1f491-1f3ff","1f492","1f493","1f494","1f495","1f496","1f497","1f498","1f499","1f49a","1f49b","1f49c","1f49d","1f49e","1f49f","1f4a0","1f4a1","1f4a2","1f4a3","1f4a4","1f4a5","1f4a6","1f4a7","1f4a8","1f4a9","1f4aa","1f4aa-1f3fb","1f4aa-1f3fc","1f4aa-1f3fd","1f4aa-1f3fe","1f4aa-1f3ff","1f4ab","1f4ac","1f4ad","1f4ae","1f4af","1f4b0","1f4b1","1f4b2","1f4b3","1f4b4","1f4b5","1f4b6","1f4b7","1f4b8","1f4b9","1f4ba","1f4bb","1f4bc","1f4bd","1f4be","1f4bf","1f4c0","1f4c1","1f4c2","1f4c3","1f4c4","1f4c5","1f4c6","1f4c7","1f4c8","1f4c9","1f4ca","1f4cb","1f4cc","1f4cd","1f4ce","1f4cf","1f4d0","1f4d1","1f4d2","1f4d3","1f4d4","1f4d5","1f4d6","1f4d7","1f4d8","1f4d9","1f4da","1f4db","1f4dc","1f4dd","1f4de","1f4df","1f4e0","1f4e1","1f4e2","1f4e3","1f4e4","1f4e5","1f4e6","1f4e7","1f4e8","1f4e9","1f4ea","1f4eb","1f4ec","1f4ed","1f4ee","1f4ef","1f4f0","1f4f1","1f4f2","1f4f3","1f4f4","1f4f5","1f4f6","1f4f7","1f4f8","1f4f9","1f4fa","1f4fb","1f4fc","1f4fd","1f4ff","1f500","1f501","1f502","1f503","1f504","1f505","1f506","1f507","1f508","1f509","1f50a","1f50b","1f50c","1f50d","1f50e","1f50f","1f510","1f511","1f512","1f513","1f514","1f515","1f516","1f517","1f518","1f519","1f51a","1f51b","1f51c","1f51d","1f51e","1f51f","1f520","1f521","1f522","1f523","1f524","1f525","1f526","1f527","1f528","1f529","1f52a","1f52b","1f52c","1f52d","1f52e","1f52f","1f530","1f531","1f532","1f533","1f534","1f535","1f536","1f537","1f538","1f539","1f53a","1f53b","1f53c","1f53d","1f549","1f54a","1f54b","1f54c","1f54d","1f54e","1f550","1f551","1f552","1f553","1f554","1f555","1f556","1f557","1f558","1f559","1f55a","1f55b","1f55c","1f55d","1f55e","1f55f","1f560","1f561","1f562","1f563","1f564","1f565","1f566","1f567","1f56f","1f570","1f573","1f574","1f574-1f3fb","1f574-1f3fb-200d-2640-fe0f","1f574-1f3fb-200d-2642-fe0f","1f574-1f3fc","1f574-1f3fc-200d-2640-fe0f","1f574-1f3fc-200d-2642-fe0f","1f574-1f3fd","1f574-1f3fd-200d-2640-fe0f","1f574-1f3fd-200d-2642-fe0f","1f574-1f3fe","1f574-1f3fe-200d-2640-fe0f","1f574-1f3fe-200d-2642-fe0f","1f574-1f3ff","1f574-1f3ff-200d-2640-fe0f","1f574-1f3ff-200d-2642-fe0f","1f574-fe0f-200d-2640-fe0f","1f574-fe0f-200d-2642-fe0f","1f575","1f575-1f3fb","1f575-1f3fb-200d-2640-fe0f","1f575-1f3fb-200d-2642-fe0f","1f575-1f3fc","1f575-1f3fc-200d-2640-fe0f","1f575-1f3fc-200d-2642-fe0f","1f575-1f3fd","1f575-1f3fd-200d-2640-fe0f","1f575-1f3fd-200d-2642-fe0f","1f575-1f3fe","1f575-1f3fe-200d-2640-fe0f","1f575-1f3fe-200d-2642-fe0f","1f575-1f3ff","1f575-1f3ff-200d-2640-fe0f","1f575-1f3ff-200d-2642-fe0f","1f575-fe0f-200d-2640-fe0f","1f575-fe0f-200d-2642-fe0f","1f576","1f577","1f578","1f579","1f57a","1f57a-1f3fb","1f57a-1f3fc","1f57a-1f3fd","1f57a-1f3fe","1f57a-1f3ff","1f587","1f58a","1f58b","1f58c","1f58d","1f590","1f590-1f3fb","1f590-1f3fc","1f590-1f3fd","1f590-1f3fe","1f590-1f3ff","1f595","1f595-1f3fb","1f595-1f3fc","1f595-1f3fd","1f595-1f3fe","1f595-1f3ff","1f596","1f596-1f3fb","1f596-1f3fc","1f596-1f3fd","1f596-1f3fe","1f596-1f3ff","1f5a4","1f5a5","1f5a8","1f5b1","1f5b2","1f5bc","1f5c2","1f5c3","1f5c4","1f5d1","1f5d2","1f5d3","1f5dc","1f5dd","1f5de","1f5e1","1f5e3","1f5e8","1f5ef","1f5f3","1f5fa","1f5fb","1f5fc","1f5fd","1f5fe","1f5ff","1f600","1f601","1f602","1f603","1f604","1f605","1f606","1f607","1f608","1f609","1f60a","1f60b","1f60c","1f60d","1f60e","1f60f","1f610","1f611","1f612","1f613","1f614","1f615","1f616","1f617","1f618","1f619","1f61a","1f61b","1f61c","1f61d","1f61e","1f61f","1f620","1f621","1f622","1f623","1f624","1f625","1f626","1f627","1f628","1f629","1f62a","1f62b","1f62c","1f62d","1f62e","1f62e-200d-1f4a8","1f62f","1f630","1f631","1f632","1f633","1f634","1f635","1f635-200d-1f4ab","1f636","1f636-200d-1f32b-fe0f","1f637","1f638","1f639","1f63a","1f63b","1f63c","1f63d","1f63e","1f63f","1f640","1f641","1f642","1f643","1f644","1f645","1f645-1f3fb","1f645-1f3fb-200d-2640-fe0f","1f645-1f3fb-200d-2642-fe0f","1f645-1f3fc","1f645-1f3fc-200d-2640-fe0f","1f645-1f3fc-200d-2642-fe0f","1f645-1f3fd","1f645-1f3fd-200d-2640-fe0f","1f645-1f3fd-200d-2642-fe0f","1f645-1f3fe","1f645-1f3fe-200d-2640-fe0f","1f645-1f3fe-200d-2642-fe0f","1f645-1f3ff","1f645-1f3ff-200d-2640-fe0f","1f645-1f3ff-200d-2642-fe0f","1f645-200d-2640-fe0f","1f645-200d-2642-fe0f","1f646","1f646-1f3fb","1f646-1f3fb-200d-2640-fe0f","1f646-1f3fb-200d-2642-fe0f","1f646-1f3fc","1f646-1f3fc-200d-2640-fe0f","1f646-1f3fc-200d-2642-fe0f","1f646-1f3fd","1f646-1f3fd-200d-2640-fe0f","1f646-1f3fd-200d-2642-fe0f","1f646-1f3fe","1f646-1f3fe-200d-2640-fe0f","1f646-1f3fe-200d-2642-fe0f","1f646-1f3ff","1f646-1f3ff-200d-2640-fe0f","1f646-1f3ff-200d-2642-fe0f","1f646-200d-2640-fe0f","1f646-200d-2642-fe0f","1f647","1f647-1f3fb","1f647-1f3fb-200d-2640-fe0f","1f647-1f3fb-200d-2642-fe0f","1f647-1f3fc","1f647-1f3fc-200d-2640-fe0f","1f647-1f3fc-200d-2642-fe0f","1f647-1f3fd","1f647-1f3fd-200d-2640-fe0f","1f647-1f3fd-200d-2642-fe0f","1f647-1f3fe","1f647-1f3fe-200d-2640-fe0f","1f647-1f3fe-200d-2642-fe0f","1f647-1f3ff","1f647-1f3ff-200d-2640-fe0f","1f647-1f3ff-200d-2642-fe0f","1f647-200d-2640-fe0f","1f647-200d-2642-fe0f","1f648","1f649","1f64a","1f64b","1f64b-1f3fb","1f64b-1f3fb-200d-2640-fe0f","1f64b-1f3fb-200d-2642-fe0f","1f64b-1f3fc","1f64b-1f3fc-200d-2640-fe0f","1f64b-1f3fc-200d-2642-fe0f","1f64b-1f3fd","1f64b-1f3fd-200d-2640-fe0f","1f64b-1f3fd-200d-2642-fe0f","1f64b-1f3fe","1f64b-1f3fe-200d-2640-fe0f","1f64b-1f3fe-200d-2642-fe0f","1f64b-1f3ff","1f64b-1f3ff-200d-2640-fe0f","1f64b-1f3ff-200d-2642-fe0f","1f64b-200d-2640-fe0f","1f64b-200d-2642-fe0f","1f64c","1f64c-1f3fb","1f64c-1f3fc","1f64c-1f3fd","1f64c-1f3fe","1f64c-1f3ff","1f64d","1f64d-1f3fb","1f64d-1f3fb-200d-2640-fe0f","1f64d-1f3fb-200d-2642-fe0f","1f64d-1f3fc","1f64d-1f3fc-200d-2640-fe0f","1f64d-1f3fc-200d-2642-fe0f","1f64d-1f3fd","1f64d-1f3fd-200d-2640-fe0f","1f64d-1f3fd-200d-2642-fe0f","1f64d-1f3fe","1f64d-1f3fe-200d-2640-fe0f","1f64d-1f3fe-200d-2642-fe0f","1f64d-1f3ff","1f64d-1f3ff-200d-2640-fe0f","1f64d-1f3ff-200d-2642-fe0f","1f64d-200d-2640-fe0f","1f64d-200d-2642-fe0f","1f64e","1f64e-1f3fb","1f64e-1f3fb-200d-2640-fe0f","1f64e-1f3fb-200d-2642-fe0f","1f64e-1f3fc","1f64e-1f3fc-200d-2640-fe0f","1f64e-1f3fc-200d-2642-fe0f","1f64e-1f3fd","1f64e-1f3fd-200d-2640-fe0f","1f64e-1f3fd-200d-2642-fe0f","1f64e-1f3fe","1f64e-1f3fe-200d-2640-fe0f","1f64e-1f3fe-200d-2642-fe0f","1f64e-1f3ff","1f64e-1f3ff-200d-2640-fe0f","1f64e-1f3ff-200d-2642-fe0f","1f64e-200d-2640-fe0f","1f64e-200d-2642-fe0f","1f64f","1f64f-1f3fb","1f64f-1f3fc","1f64f-1f3fd","1f64f-1f3fe","1f64f-1f3ff","1f680","1f681","1f682","1f683","1f684","1f685","1f686","1f687","1f688","1f689","1f68a","1f68b","1f68c","1f68d","1f68e","1f68f","1f690","1f691","1f692","1f693","1f694","1f695","1f696","1f697","1f698","1f699","1f69a","1f69b","1f69c","1f69d","1f69e","1f69f","1f6a0","1f6a1","1f6a2","1f6a3","1f6a3-1f3fb","1f6a3-1f3fb-200d-2640-fe0f","1f6a3-1f3fb-200d-2642-fe0f","1f6a3-1f3fc","1f6a3-1f3fc-200d-2640-fe0f","1f6a3-1f3fc-200d-2642-fe0f","1f6a3-1f3fd","1f6a3-1f3fd-200d-2640-fe0f","1f6a3-1f3fd-200d-2642-fe0f","1f6a3-1f3fe","1f6a3-1f3fe-200d-2640-fe0f","1f6a3-1f3fe-200d-2642-fe0f","1f6a3-1f3ff","1f6a3-1f3ff-200d-2640-fe0f","1f6a3-1f3ff-200d-2642-fe0f","1f6a3-200d-2640-fe0f","1f6a3-200d-2642-fe0f","1f6a4","1f6a5","1f6a6","1f6a7","1f6a8","1f6a9","1f6aa","1f6ab","1f6ac","1f6ad","1f6ae","1f6af","1f6b0","1f6b1","1f6b2","1f6b3","1f6b4","1f6b4-1f3fb","1f6b4-1f3fb-200d-2640-fe0f","1f6b4-1f3fb-200d-2642-fe0f","1f6b4-1f3fc","1f6b4-1f3fc-200d-2640-fe0f","1f6b4-1f3fc-200d-2642-fe0f","1f6b4-1f3fd","1f6b4-1f3fd-200d-2640-fe0f","1f6b4-1f3fd-200d-2642-fe0f","1f6b4-1f3fe","1f6b4-1f3fe-200d-2640-fe0f","1f6b4-1f3fe-200d-2642-fe0f","1f6b4-1f3ff","1f6b4-1f3ff-200d-2640-fe0f","1f6b4-1f3ff-200d-2642-fe0f","1f6b4-200d-2640-fe0f","1f6b4-200d-2642-fe0f","1f6b5","1f6b5-1f3fb","1f6b5-1f3fb-200d-2640-fe0f","1f6b5-1f3fb-200d-2642-fe0f","1f6b5-1f3fc","1f6b5-1f3fc-200d-2640-fe0f","1f6b5-1f3fc-200d-2642-fe0f","1f6b5-1f3fd","1f6b5-1f3fd-200d-2640-fe0f","1f6b5-1f3fd-200d-2642-fe0f","1f6b5-1f3fe","1f6b5-1f3fe-200d-2640-fe0f","1f6b5-1f3fe-200d-2642-fe0f","1f6b5-1f3ff","1f6b5-1f3ff-200d-2640-fe0f","1f6b5-1f3ff-200d-2642-fe0f","1f6b5-200d-2640-fe0f","1f6b5-200d-2642-fe0f","1f6b6","1f6b6-1f3fb","1f6b6-1f3fb-200d-2640-fe0f","1f6b6-1f3fb-200d-2642-fe0f","1f6b6-1f3fc","1f6b6-1f3fc-200d-2640-fe0f","1f6b6-1f3fc-200d-2642-fe0f","1f6b6-1f3fd","1f6b6-1f3fd-200d-2640-fe0f","1f6b6-1f3fd-200d-2642-fe0f","1f6b6-1f3fe","1f6b6-1f3fe-200d-2640-fe0f","1f6b6-1f3fe-200d-2642-fe0f","1f6b6-1f3ff","1f6b6-1f3ff-200d-2640-fe0f","1f6b6-1f3ff-200d-2642-fe0f","1f6b6-200d-2640-fe0f","1f6b6-200d-2642-fe0f","1f6b7","1f6b8","1f6b9","1f6ba","1f6bb","1f6bc","1f6bd","1f6be","1f6bf","1f6c0","1f6c0-1f3fb","1f6c0-1f3fc","1f6c0-1f3fd","1f6c0-1f3fe","1f6c0-1f3ff","1f6c1","1f6c2","1f6c3","1f6c4","1f6c5","1f6cb","1f6cc","1f6cc-1f3fb","1f6cc-1f3fc","1f6cc-1f3fd","1f6cc-1f3fe","1f6cc-1f3ff","1f6cd","1f6ce","1f6cf","1f6d0","1f6d1","1f6d2","1f6d5","1f6d6","1f6d7","1f6dd","1f6de","1f6df","1f6e0","1f6e1","1f6e2","1f6e3","1f6e4","1f6e5","1f6e9","1f6eb","1f6ec","1f6f0","1f6f3","1f6f4","1f6f5","1f6f6","1f6f7","1f6f8","1f6f9","1f6fa","1f6fb","1f6fc","1f7e0","1f7e1","1f7e2","1f7e3","1f7e4","1f7e5","1f7e6","1f7e7","1f7e8","1f7e9","1f7ea","1f7eb","1f7f0","1f90c","1f90c-1f3fb","1f90c-1f3fc","1f90c-1f3fd","1f90c-1f3fe","1f90c-1f3ff","1f90d","1f90e","1f90f","1f90f-1f3fb","1f90f-1f3fc","1f90f-1f3fd","1f90f-1f3fe","1f90f-1f3ff","1f910","1f911","1f912","1f913","1f914","1f915","1f916","1f917","1f918","1f918-1f3fb","1f918-1f3fc","1f918-1f3fd","1f918-1f3fe","1f918-1f3ff","1f919","1f919-1f3fb","1f919-1f3fc","1f919-1f3fd","1f919-1f3fe","1f919-1f3ff","1f91a","1f91a-1f3fb","1f91a-1f3fc","1f91a-1f3fd","1f91a-1f3fe","1f91a-1f3ff","1f91b","1f91b-1f3fb","1f91b-1f3fc","1f91b-1f3fd","1f91b-1f3fe","1f91b-1f3ff","1f91c","1f91c-1f3fb","1f91c-1f3fc","1f91c-1f3fd","1f91c-1f3fe","1f91c-1f3ff","1f91d","1f91d-1f3fb","1f91d-1f3fc","1f91d-1f3fd","1f91d-1f3fe","1f91d-1f3ff","1f91e","1f91e-1f3fb","1f91e-1f3fc","1f91e-1f3fd","1f91e-1f3fe","1f91e-1f3ff","1f91f","1f91f-1f3fb","1f91f-1f3fc","1f91f-1f3fd","1f91f-1f3fe","1f91f-1f3ff","1f920","1f921","1f922","1f923","1f924","1f925","1f926","1f926-1f3fb","1f926-1f3fb-200d-2640-fe0f","1f926-1f3fb-200d-2642-fe0f","1f926-1f3fc","1f926-1f3fc-200d-2640-fe0f","1f926-1f3fc-200d-2642-fe0f","1f926-1f3fd","1f926-1f3fd-200d-2640-fe0f","1f926-1f3fd-200d-2642-fe0f","1f926-1f3fe","1f926-1f3fe-200d-2640-fe0f","1f926-1f3fe-200d-2642-fe0f","1f926-1f3ff","1f926-1f3ff-200d-2640-fe0f","1f926-1f3ff-200d-2642-fe0f","1f926-200d-2640-fe0f","1f926-200d-2642-fe0f","1f927","1f928","1f929","1f92a","1f92b","1f92c","1f92d","1f92e","1f92f","1f930","1f930-1f3fb","1f930-1f3fc","1f930-1f3fd","1f930-1f3fe","1f930-1f3ff","1f931","1f931-1f3fb","1f931-1f3fc","1f931-1f3fd","1f931-1f3fe","1f931-1f3ff","1f932","1f932-1f3fb","1f932-1f3fc","1f932-1f3fd","1f932-1f3fe","1f932-1f3ff","1f933","1f933-1f3fb","1f933-1f3fc","1f933-1f3fd","1f933-1f3fe","1f933-1f3ff","1f934","1f934-1f3fb","1f934-1f3fc","1f934-1f3fd","1f934-1f3fe","1f934-1f3ff","1f935","1f935-1f3fb","1f935-1f3fb-200d-2640-fe0f","1f935-1f3fb-200d-2642-fe0f","1f935-1f3fc","1f935-1f3fc-200d-2640-fe0f","1f935-1f3fc-200d-2642-fe0f","1f935-1f3fd","1f935-1f3fd-200d-2640-fe0f","1f935-1f3fd-200d-2642-fe0f","1f935-1f3fe","1f935-1f3fe-200d-2640-fe0f","1f935-1f3fe-200d-2642-fe0f","1f935-1f3ff","1f935-1f3ff-200d-2640-fe0f","1f935-1f3ff-200d-2642-fe0f","1f935-200d-2640-fe0f","1f935-200d-2642-fe0f","1f936","1f936-1f3fb","1f936-1f3fc","1f936-1f3fd","1f936-1f3fe","1f936-1f3ff","1f937","1f937-1f3fb","1f937-1f3fb-200d-2640-fe0f","1f937-1f3fb-200d-2642-fe0f","1f937-1f3fc","1f937-1f3fc-200d-2640-fe0f","1f937-1f3fc-200d-2642-fe0f","1f937-1f3fd","1f937-1f3fd-200d-2640-fe0f","1f937-1f3fd-200d-2642-fe0f","1f937-1f3fe","1f937-1f3fe-200d-2640-fe0f","1f937-1f3fe-200d-2642-fe0f","1f937-1f3ff","1f937-1f3ff-200d-2640-fe0f","1f937-1f3ff-200d-2642-fe0f","1f937-200d-2640-fe0f","1f937-200d-2642-fe0f","1f938","1f938-1f3fb","1f938-1f3fb-200d-2640-fe0f","1f938-1f3fb-200d-2642-fe0f","1f938-1f3fc","1f938-1f3fc-200d-2640-fe0f","1f938-1f3fc-200d-2642-fe0f","1f938-1f3fd","1f938-1f3fd-200d-2640-fe0f","1f938-1f3fd-200d-2642-fe0f","1f938-1f3fe","1f938-1f3fe-200d-2640-fe0f","1f938-1f3fe-200d-2642-fe0f","1f938-1f3ff","1f938-1f3ff-200d-2640-fe0f","1f938-1f3ff-200d-2642-fe0f","1f938-200d-2640-fe0f","1f938-200d-2642-fe0f","1f939","1f939-1f3fb","1f939-1f3fb-200d-2640-fe0f","1f939-1f3fb-200d-2642-fe0f","1f939-1f3fc","1f939-1f3fc-200d-2640-fe0f","1f939-1f3fc-200d-2642-fe0f","1f939-1f3fd","1f939-1f3fd-200d-2640-fe0f","1f939-1f3fd-200d-2642-fe0f","1f939-1f3fe","1f939-1f3fe-200d-2640-fe0f","1f939-1f3fe-200d-2642-fe0f","1f939-1f3ff","1f939-1f3ff-200d-2640-fe0f","1f939-1f3ff-200d-2642-fe0f","1f939-200d-2640-fe0f","1f939-200d-2642-fe0f","1f93a","1f93c","1f93c-200d-2640-fe0f","1f93c-200d-2642-fe0f","1f93d","1f93d-1f3fb","1f93d-1f3fb-200d-2640-fe0f","1f93d-1f3fb-200d-2642-fe0f","1f93d-1f3fc","1f93d-1f3fc-200d-2640-fe0f","1f93d-1f3fc-200d-2642-fe0f","1f93d-1f3fd","1f93d-1f3fd-200d-2640-fe0f","1f93d-1f3fd-200d-2642-fe0f","1f93d-1f3fe","1f93d-1f3fe-200d-2640-fe0f","1f93d-1f3fe-200d-2642-fe0f","1f93d-1f3ff","1f93d-1f3ff-200d-2640-fe0f","1f93d-1f3ff-200d-2642-fe0f","1f93d-200d-2640-fe0f","1f93d-200d-2642-fe0f","1f93e","1f93e-1f3fb","1f93e-1f3fb-200d-2640-fe0f","1f93e-1f3fb-200d-2642-fe0f","1f93e-1f3fc","1f93e-1f3fc-200d-2640-fe0f","1f93e-1f3fc-200d-2642-fe0f","1f93e-1f3fd","1f93e-1f3fd-200d-2640-fe0f","1f93e-1f3fd-200d-2642-fe0f","1f93e-1f3fe","1f93e-1f3fe-200d-2640-fe0f","1f93e-1f3fe-200d-2642-fe0f","1f93e-1f3ff","1f93e-1f3ff-200d-2640-fe0f","1f93e-1f3ff-200d-2642-fe0f","1f93e-200d-2640-fe0f","1f93e-200d-2642-fe0f","1f93f","1f940","1f941","1f942","1f943","1f944","1f945","1f947","1f948","1f949","1f94a","1f94b","1f94c","1f94d","1f94e","1f94f","1f950","1f951","1f952","1f953","1f954","1f955","1f956","1f957","1f958","1f959","1f95a","1f95b","1f95c","1f95d","1f95e","1f95f","1f960","1f961","1f962","1f963","1f964","1f965","1f966","1f967","1f968","1f969","1f96a","1f96b","1f96c","1f96d","1f96e","1f96f","1f970","1f971","1f972","1f973","1f974","1f975","1f976","1f977","1f977-1f3fb","1f977-1f3fc","1f977-1f3fd","1f977-1f3fe","1f977-1f3ff","1f978","1f979","1f97a","1f97b","1f97c","1f97d","1f97e","1f97f","1f980","1f981","1f982","1f983","1f984","1f985","1f986","1f987","1f988","1f989","1f98a","1f98b","1f98c","1f98d","1f98e","1f98f","1f990","1f991","1f992","1f993","1f994","1f995","1f996","1f997","1f998","1f999","1f99a","1f99b","1f99c","1f99d","1f99e","1f99f","1f9a0","1f9a1","1f9a2","1f9a3","1f9a4","1f9a5","1f9a6","1f9a7","1f9a8","1f9a9","1f9aa","1f9ab","1f9ac","1f9ad","1f9ae","1f9af","1f9b0","1f9b1","1f9b2","1f9b3","1f9b4","1f9b5","1f9b5-1f3fb","1f9b5-1f3fc","1f9b5-1f3fd","1f9b5-1f3fe","1f9b5-1f3ff","1f9b6","1f9b6-1f3fb","1f9b6-1f3fc","1f9b6-1f3fd","1f9b6-1f3fe","1f9b6-1f3ff","1f9b7","1f9b8","1f9b8-1f3fb","1f9b8-1f3fb-200d-2640-fe0f","1f9b8-1f3fb-200d-2642-fe0f","1f9b8-1f3fc","1f9b8-1f3fc-200d-2640-fe0f","1f9b8-1f3fc-200d-2642-fe0f","1f9b8-1f3fd","1f9b8-1f3fd-200d-2640-fe0f","1f9b8-1f3fd-200d-2642-fe0f","1f9b8-1f3fe","1f9b8-1f3fe-200d-2640-fe0f","1f9b8-1f3fe-200d-2642-fe0f","1f9b8-1f3ff","1f9b8-1f3ff-200d-2640-fe0f","1f9b8-1f3ff-200d-2642-fe0f","1f9b8-200d-2640-fe0f","1f9b8-200d-2642-fe0f","1f9b9","1f9b9-1f3fb","1f9b9-1f3fb-200d-2640-fe0f","1f9b9-1f3fb-200d-2642-fe0f","1f9b9-1f3fc","1f9b9-1f3fc-200d-2640-fe0f","1f9b9-1f3fc-200d-2642-fe0f","1f9b9-1f3fd","1f9b9-1f3fd-200d-2640-fe0f","1f9b9-1f3fd-200d-2642-fe0f","1f9b9-1f3fe","1f9b9-1f3fe-200d-2640-fe0f","1f9b9-1f3fe-200d-2642-fe0f","1f9b9-1f3ff","1f9b9-1f3ff-200d-2640-fe0f","1f9b9-1f3ff-200d-2642-fe0f","1f9b9-200d-2640-fe0f","1f9b9-200d-2642-fe0f","1f9ba","1f9bb","1f9bb-1f3fb","1f9bb-1f3fc","1f9bb-1f3fd","1f9bb-1f3fe","1f9bb-1f3ff","1f9bc","1f9bd","1f9be","1f9bf","1f9c0","1f9c1","1f9c2","1f9c3","1f9c4","1f9c5","1f9c6","1f9c7","1f9c8","1f9c9","1f9ca","1f9cb","1f9cc","1f9cd","1f9cd-1f3fb","1f9cd-1f3fb-200d-2640-fe0f","1f9cd-1f3fb-200d-2642-fe0f","1f9cd-1f3fc","1f9cd-1f3fc-200d-2640-fe0f","1f9cd-1f3fc-200d-2642-fe0f","1f9cd-1f3fd","1f9cd-1f3fd-200d-2640-fe0f","1f9cd-1f3fd-200d-2642-fe0f","1f9cd-1f3fe","1f9cd-1f3fe-200d-2640-fe0f","1f9cd-1f3fe-200d-2642-fe0f","1f9cd-1f3ff","1f9cd-1f3ff-200d-2640-fe0f","1f9cd-1f3ff-200d-2642-fe0f","1f9cd-200d-2640-fe0f","1f9cd-200d-2642-fe0f","1f9ce","1f9ce-1f3fb","1f9ce-1f3fb-200d-2640-fe0f","1f9ce-1f3fb-200d-2642-fe0f","1f9ce-1f3fc","1f9ce-1f3fc-200d-2640-fe0f","1f9ce-1f3fc-200d-2642-fe0f","1f9ce-1f3fd","1f9ce-1f3fd-200d-2640-fe0f","1f9ce-1f3fd-200d-2642-fe0f","1f9ce-1f3fe","1f9ce-1f3fe-200d-2640-fe0f","1f9ce-1f3fe-200d-2642-fe0f","1f9ce-1f3ff","1f9ce-1f3ff-200d-2640-fe0f","1f9ce-1f3ff-200d-2642-fe0f","1f9ce-200d-2640-fe0f","1f9ce-200d-2642-fe0f","1f9cf","1f9cf-1f3fb","1f9cf-1f3fb-200d-2640-fe0f","1f9cf-1f3fb-200d-2642-fe0f","1f9cf-1f3fc","1f9cf-1f3fc-200d-2640-fe0f","1f9cf-1f3fc-200d-2642-fe0f","1f9cf-1f3fd","1f9cf-1f3fd-200d-2640-fe0f","1f9cf-1f3fd-200d-2642-fe0f","1f9cf-1f3fe","1f9cf-1f3fe-200d-2640-fe0f","1f9cf-1f3fe-200d-2642-fe0f","1f9cf-1f3ff","1f9cf-1f3ff-200d-2640-fe0f","1f9cf-1f3ff-200d-2642-fe0f","1f9cf-200d-2640-fe0f","1f9cf-200d-2642-fe0f","1f9d0","1f9d1","1f9d1-1f3fb","1f9d1-1f3fb-200d-1f33e","1f9d1-1f3fb-200d-1f373","1f9d1-1f3fb-200d-1f37c","1f9d1-1f3fb-200d-1f384","1f9d1-1f3fb-200d-1f393","1f9d1-1f3fb-200d-1f3a4","1f9d1-1f3fb-200d-1f3a8","1f9d1-1f3fb-200d-1f3eb","1f9d1-1f3fb-200d-1f3ed","1f9d1-1f3fb-200d-1f4bb","1f9d1-1f3fb-200d-1f4bc","1f9d1-1f3fb-200d-1f527","1f9d1-1f3fb-200d-1f52c","1f9d1-1f3fb-200d-1f680","1f9d1-1f3fb-200d-1f692","1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fb","1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fc","1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fd","1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fe","1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3ff","1f9d1-1f3fb-200d-1f9af","1f9d1-1f3fb-200d-1f9b0","1f9d1-1f3fb-200d-1f9b1","1f9d1-1f3fb-200d-1f9b2","1f9d1-1f3fb-200d-1f9b3","1f9d1-1f3fb-200d-1f9bc","1f9d1-1f3fb-200d-1f9bd","1f9d1-1f3fb-200d-2695-fe0f","1f9d1-1f3fb-200d-2696-fe0f","1f9d1-1f3fb-200d-2708-fe0f","1f9d1-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fc","1f9d1-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fd","1f9d1-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fe","1f9d1-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3ff","1f9d1-1f3fb-200d-2764-fe0f-200d-1f9d1-1f3fc","1f9d1-1f3fb-200d-2764-fe0f-200d-1f9d1-1f3fd","1f9d1-1f3fb-200d-2764-fe0f-200d-1f9d1-1f3fe","1f9d1-1f3fb-200d-2764-fe0f-200d-1f9d1-1f3ff","1f9d1-1f3fc","1f9d1-1f3fc-200d-1f33e","1f9d1-1f3fc-200d-1f373","1f9d1-1f3fc-200d-1f37c","1f9d1-1f3fc-200d-1f384","1f9d1-1f3fc-200d-1f393","1f9d1-1f3fc-200d-1f3a4","1f9d1-1f3fc-200d-1f3a8","1f9d1-1f3fc-200d-1f3eb","1f9d1-1f3fc-200d-1f3ed","1f9d1-1f3fc-200d-1f4bb","1f9d1-1f3fc-200d-1f4bc","1f9d1-1f3fc-200d-1f527","1f9d1-1f3fc-200d-1f52c","1f9d1-1f3fc-200d-1f680","1f9d1-1f3fc-200d-1f692","1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fb","1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fc","1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fd","1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fe","1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3ff","1f9d1-1f3fc-200d-1f9af","1f9d1-1f3fc-200d-1f9b0","1f9d1-1f3fc-200d-1f9b1","1f9d1-1f3fc-200d-1f9b2","1f9d1-1f3fc-200d-1f9b3","1f9d1-1f3fc-200d-1f9bc","1f9d1-1f3fc-200d-1f9bd","1f9d1-1f3fc-200d-2695-fe0f","1f9d1-1f3fc-200d-2696-fe0f","1f9d1-1f3fc-200d-2708-fe0f","1f9d1-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fb","1f9d1-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fd","1f9d1-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fe","1f9d1-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3ff","1f9d1-1f3fc-200d-2764-fe0f-200d-1f9d1-1f3fb","1f9d1-1f3fc-200d-2764-fe0f-200d-1f9d1-1f3fd","1f9d1-1f3fc-200d-2764-fe0f-200d-1f9d1-1f3fe","1f9d1-1f3fc-200d-2764-fe0f-200d-1f9d1-1f3ff","1f9d1-1f3fd","1f9d1-1f3fd-200d-1f33e","1f9d1-1f3fd-200d-1f373","1f9d1-1f3fd-200d-1f37c","1f9d1-1f3fd-200d-1f384","1f9d1-1f3fd-200d-1f393","1f9d1-1f3fd-200d-1f3a4","1f9d1-1f3fd-200d-1f3a8","1f9d1-1f3fd-200d-1f3eb","1f9d1-1f3fd-200d-1f3ed","1f9d1-1f3fd-200d-1f4bb","1f9d1-1f3fd-200d-1f4bc","1f9d1-1f3fd-200d-1f527","1f9d1-1f3fd-200d-1f52c","1f9d1-1f3fd-200d-1f680","1f9d1-1f3fd-200d-1f692","1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fb","1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fc","1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fd","1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fe","1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3ff","1f9d1-1f3fd-200d-1f9af","1f9d1-1f3fd-200d-1f9b0","1f9d1-1f3fd-200d-1f9b1","1f9d1-1f3fd-200d-1f9b2","1f9d1-1f3fd-200d-1f9b3","1f9d1-1f3fd-200d-1f9bc","1f9d1-1f3fd-200d-1f9bd","1f9d1-1f3fd-200d-2695-fe0f","1f9d1-1f3fd-200d-2696-fe0f","1f9d1-1f3fd-200d-2708-fe0f","1f9d1-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fb","1f9d1-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fc","1f9d1-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fe","1f9d1-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3ff","1f9d1-1f3fd-200d-2764-fe0f-200d-1f9d1-1f3fb","1f9d1-1f3fd-200d-2764-fe0f-200d-1f9d1-1f3fc","1f9d1-1f3fd-200d-2764-fe0f-200d-1f9d1-1f3fe","1f9d1-1f3fd-200d-2764-fe0f-200d-1f9d1-1f3ff","1f9d1-1f3fe","1f9d1-1f3fe-200d-1f33e","1f9d1-1f3fe-200d-1f373","1f9d1-1f3fe-200d-1f37c","1f9d1-1f3fe-200d-1f384","1f9d1-1f3fe-200d-1f393","1f9d1-1f3fe-200d-1f3a4","1f9d1-1f3fe-200d-1f3a8","1f9d1-1f3fe-200d-1f3eb","1f9d1-1f3fe-200d-1f3ed","1f9d1-1f3fe-200d-1f4bb","1f9d1-1f3fe-200d-1f4bc","1f9d1-1f3fe-200d-1f527","1f9d1-1f3fe-200d-1f52c","1f9d1-1f3fe-200d-1f680","1f9d1-1f3fe-200d-1f692","1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fb","1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fc","1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fd","1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fe","1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3ff","1f9d1-1f3fe-200d-1f9af","1f9d1-1f3fe-200d-1f9b0","1f9d1-1f3fe-200d-1f9b1","1f9d1-1f3fe-200d-1f9b2","1f9d1-1f3fe-200d-1f9b3","1f9d1-1f3fe-200d-1f9bc","1f9d1-1f3fe-200d-1f9bd","1f9d1-1f3fe-200d-2695-fe0f","1f9d1-1f3fe-200d-2696-fe0f","1f9d1-1f3fe-200d-2708-fe0f","1f9d1-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fb","1f9d1-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fc","1f9d1-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fd","1f9d1-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3ff","1f9d1-1f3fe-200d-2764-fe0f-200d-1f9d1-1f3fb","1f9d1-1f3fe-200d-2764-fe0f-200d-1f9d1-1f3fc","1f9d1-1f3fe-200d-2764-fe0f-200d-1f9d1-1f3fd","1f9d1-1f3fe-200d-2764-fe0f-200d-1f9d1-1f3ff","1f9d1-1f3ff","1f9d1-1f3ff-200d-1f33e","1f9d1-1f3ff-200d-1f373","1f9d1-1f3ff-200d-1f37c","1f9d1-1f3ff-200d-1f384","1f9d1-1f3ff-200d-1f393","1f9d1-1f3ff-200d-1f3a4","1f9d1-1f3ff-200d-1f3a8","1f9d1-1f3ff-200d-1f3eb","1f9d1-1f3ff-200d-1f3ed","1f9d1-1f3ff-200d-1f4bb","1f9d1-1f3ff-200d-1f4bc","1f9d1-1f3ff-200d-1f527","1f9d1-1f3ff-200d-1f52c","1f9d1-1f3ff-200d-1f680","1f9d1-1f3ff-200d-1f692","1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fb","1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fc","1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fd","1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fe","1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3ff","1f9d1-1f3ff-200d-1f9af","1f9d1-1f3ff-200d-1f9b0","1f9d1-1f3ff-200d-1f9b1","1f9d1-1f3ff-200d-1f9b2","1f9d1-1f3ff-200d-1f9b3","1f9d1-1f3ff-200d-1f9bc","1f9d1-1f3ff-200d-1f9bd","1f9d1-1f3ff-200d-2695-fe0f","1f9d1-1f3ff-200d-2696-fe0f","1f9d1-1f3ff-200d-2708-fe0f","1f9d1-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fb","1f9d1-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fc","1f9d1-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fd","1f9d1-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fe","1f9d1-1f3ff-200d-2764-fe0f-200d-1f9d1-1f3fb","1f9d1-1f3ff-200d-2764-fe0f-200d-1f9d1-1f3fc","1f9d1-1f3ff-200d-2764-fe0f-200d-1f9d1-1f3fd","1f9d1-1f3ff-200d-2764-fe0f-200d-1f9d1-1f3fe","1f9d1-200d-1f33e","1f9d1-200d-1f373","1f9d1-200d-1f37c","1f9d1-200d-1f384","1f9d1-200d-1f393","1f9d1-200d-1f3a4","1f9d1-200d-1f3a8","1f9d1-200d-1f3eb","1f9d1-200d-1f3ed","1f9d1-200d-1f4bb","1f9d1-200d-1f4bc","1f9d1-200d-1f527","1f9d1-200d-1f52c","1f9d1-200d-1f680","1f9d1-200d-1f692","1f9d1-200d-1f91d-200d-1f9d1","1f9d1-200d-1f9af","1f9d1-200d-1f9b0","1f9d1-200d-1f9b1","1f9d1-200d-1f9b2","1f9d1-200d-1f9b3","1f9d1-200d-1f9bc","1f9d1-200d-1f9bd","1f9d1-200d-2695-fe0f","1f9d1-200d-2696-fe0f","1f9d1-200d-2708-fe0f","1f9d2","1f9d2-1f3fb","1f9d2-1f3fc","1f9d2-1f3fd","1f9d2-1f3fe","1f9d2-1f3ff","1f9d3","1f9d3-1f3fb","1f9d3-1f3fc","1f9d3-1f3fd","1f9d3-1f3fe","1f9d3-1f3ff","1f9d4","1f9d4-1f3fb","1f9d4-1f3fb-200d-2640-fe0f","1f9d4-1f3fb-200d-2642-fe0f","1f9d4-1f3fc","1f9d4-1f3fc-200d-2640-fe0f","1f9d4-1f3fc-200d-2642-fe0f","1f9d4-1f3fd","1f9d4-1f3fd-200d-2640-fe0f","1f9d4-1f3fd-200d-2642-fe0f","1f9d4-1f3fe","1f9d4-1f3fe-200d-2640-fe0f","1f9d4-1f3fe-200d-2642-fe0f","1f9d4-1f3ff","1f9d4-1f3ff-200d-2640-fe0f","1f9d4-1f3ff-200d-2642-fe0f","1f9d4-200d-2640-fe0f","1f9d4-200d-2642-fe0f","1f9d5","1f9d5-1f3fb","1f9d5-1f3fc","1f9d5-1f3fd","1f9d5-1f3fe","1f9d5-1f3ff","1f9d6","1f9d6-1f3fb","1f9d6-1f3fb-200d-2640-fe0f","1f9d6-1f3fb-200d-2642-fe0f","1f9d6-1f3fc","1f9d6-1f3fc-200d-2640-fe0f","1f9d6-1f3fc-200d-2642-fe0f","1f9d6-1f3fd","1f9d6-1f3fd-200d-2640-fe0f","1f9d6-1f3fd-200d-2642-fe0f","1f9d6-1f3fe","1f9d6-1f3fe-200d-2640-fe0f","1f9d6-1f3fe-200d-2642-fe0f","1f9d6-1f3ff","1f9d6-1f3ff-200d-2640-fe0f","1f9d6-1f3ff-200d-2642-fe0f","1f9d6-200d-2640-fe0f","1f9d6-200d-2642-fe0f","1f9d7","1f9d7-1f3fb","1f9d7-1f3fb-200d-2640-fe0f","1f9d7-1f3fb-200d-2642-fe0f","1f9d7-1f3fc","1f9d7-1f3fc-200d-2640-fe0f","1f9d7-1f3fc-200d-2642-fe0f","1f9d7-1f3fd","1f9d7-1f3fd-200d-2640-fe0f","1f9d7-1f3fd-200d-2642-fe0f","1f9d7-1f3fe","1f9d7-1f3fe-200d-2640-fe0f","1f9d7-1f3fe-200d-2642-fe0f","1f9d7-1f3ff","1f9d7-1f3ff-200d-2640-fe0f","1f9d7-1f3ff-200d-2642-fe0f","1f9d7-200d-2640-fe0f","1f9d7-200d-2642-fe0f","1f9d8","1f9d8-1f3fb","1f9d8-1f3fb-200d-2640-fe0f","1f9d8-1f3fb-200d-2642-fe0f","1f9d8-1f3fc","1f9d8-1f3fc-200d-2640-fe0f","1f9d8-1f3fc-200d-2642-fe0f","1f9d8-1f3fd","1f9d8-1f3fd-200d-2640-fe0f","1f9d8-1f3fd-200d-2642-fe0f","1f9d8-1f3fe","1f9d8-1f3fe-200d-2640-fe0f","1f9d8-1f3fe-200d-2642-fe0f","1f9d8-1f3ff","1f9d8-1f3ff-200d-2640-fe0f","1f9d8-1f3ff-200d-2642-fe0f","1f9d8-200d-2640-fe0f","1f9d8-200d-2642-fe0f","1f9d9","1f9d9-1f3fb","1f9d9-1f3fb-200d-2640-fe0f","1f9d9-1f3fb-200d-2642-fe0f","1f9d9-1f3fc","1f9d9-1f3fc-200d-2640-fe0f","1f9d9-1f3fc-200d-2642-fe0f","1f9d9-1f3fd","1f9d9-1f3fd-200d-2640-fe0f","1f9d9-1f3fd-200d-2642-fe0f","1f9d9-1f3fe","1f9d9-1f3fe-200d-2640-fe0f","1f9d9-1f3fe-200d-2642-fe0f","1f9d9-1f3ff","1f9d9-1f3ff-200d-2640-fe0f","1f9d9-1f3ff-200d-2642-fe0f","1f9d9-200d-2640-fe0f","1f9d9-200d-2642-fe0f","1f9da","1f9da-1f3fb","1f9da-1f3fb-200d-2640-fe0f","1f9da-1f3fb-200d-2642-fe0f","1f9da-1f3fc","1f9da-1f3fc-200d-2640-fe0f","1f9da-1f3fc-200d-2642-fe0f","1f9da-1f3fd","1f9da-1f3fd-200d-2640-fe0f","1f9da-1f3fd-200d-2642-fe0f","1f9da-1f3fe","1f9da-1f3fe-200d-2640-fe0f","1f9da-1f3fe-200d-2642-fe0f","1f9da-1f3ff","1f9da-1f3ff-200d-2640-fe0f","1f9da-1f3ff-200d-2642-fe0f","1f9da-200d-2640-fe0f","1f9da-200d-2642-fe0f","1f9db","1f9db-1f3fb","1f9db-1f3fb-200d-2640-fe0f","1f9db-1f3fb-200d-2642-fe0f","1f9db-1f3fc","1f9db-1f3fc-200d-2640-fe0f","1f9db-1f3fc-200d-2642-fe0f","1f9db-1f3fd","1f9db-1f3fd-200d-2640-fe0f","1f9db-1f3fd-200d-2642-fe0f","1f9db-1f3fe","1f9db-1f3fe-200d-2640-fe0f","1f9db-1f3fe-200d-2642-fe0f","1f9db-1f3ff","1f9db-1f3ff-200d-2640-fe0f","1f9db-1f3ff-200d-2642-fe0f","1f9db-200d-2640-fe0f","1f9db-200d-2642-fe0f","1f9dc","1f9dc-1f3fb","1f9dc-1f3fb-200d-2640-fe0f","1f9dc-1f3fb-200d-2642-fe0f","1f9dc-1f3fc","1f9dc-1f3fc-200d-2640-fe0f","1f9dc-1f3fc-200d-2642-fe0f","1f9dc-1f3fd","1f9dc-1f3fd-200d-2640-fe0f","1f9dc-1f3fd-200d-2642-fe0f","1f9dc-1f3fe","1f9dc-1f3fe-200d-2640-fe0f","1f9dc-1f3fe-200d-2642-fe0f","1f9dc-1f3ff","1f9dc-1f3ff-200d-2640-fe0f","1f9dc-1f3ff-200d-2642-fe0f","1f9dc-200d-2640-fe0f","1f9dc-200d-2642-fe0f","1f9dd","1f9dd-1f3fb","1f9dd-1f3fb-200d-2640-fe0f","1f9dd-1f3fb-200d-2642-fe0f","1f9dd-1f3fc","1f9dd-1f3fc-200d-2640-fe0f","1f9dd-1f3fc-200d-2642-fe0f","1f9dd-1f3fd","1f9dd-1f3fd-200d-2640-fe0f","1f9dd-1f3fd-200d-2642-fe0f","1f9dd-1f3fe","1f9dd-1f3fe-200d-2640-fe0f","1f9dd-1f3fe-200d-2642-fe0f","1f9dd-1f3ff","1f9dd-1f3ff-200d-2640-fe0f","1f9dd-1f3ff-200d-2642-fe0f","1f9dd-200d-2640-fe0f","1f9dd-200d-2642-fe0f","1f9de","1f9de-200d-2640-fe0f","1f9de-200d-2642-fe0f","1f9df","1f9df-200d-2640-fe0f","1f9df-200d-2642-fe0f","1f9e0","1f9e1","1f9e2","1f9e3","1f9e4","1f9e5","1f9e6","1f9e7","1f9e8","1f9e9","1f9ea","1f9eb","1f9ec","1f9ed","1f9ee","1f9ef","1f9f0","1f9f1","1f9f2","1f9f3","1f9f4","1f9f5","1f9f6","1f9f7","1f9f8","1f9f9","1f9fa","1f9fb","1f9fc","1f9fd","1f9fe","1f9ff","1fa70","1fa71","1fa72","1fa73","1fa74","1fa78","1fa79","1fa7a","1fa7b","1fa7c","1fa80","1fa81","1fa82","1fa83","1fa84","1fa85","1fa86","1fa90","1fa91","1fa92","1fa93","1fa94","1fa95","1fa96","1fa97","1fa98","1fa99","1fa9a","1fa9b","1fa9c","1fa9d","1fa9e","1fa9f","1faa0","1faa1","1faa2","1faa3","1faa4","1faa5","1faa6","1faa7","1faa8","1faa9","1faaa","1faab","1faac","1fab0","1fab1","1fab2","1fab3","1fab4","1fab5","1fab6","1fab7","1fab8","1fab9","1faba","1fac0","1fac1","1fac2","1fac3","1fac3-1f3fb","1fac3-1f3fc","1fac3-1f3fd","1fac3-1f3fe","1fac3-1f3ff","1fac4","1fac4-1f3fb","1fac4-1f3fc","1fac4-1f3fd","1fac4-1f3fe","1fac4-1f3ff","1fac5","1fac5-1f3fb","1fac5-1f3fc","1fac5-1f3fd","1fac5-1f3fe","1fac5-1f3ff","1fad0","1fad1","1fad2","1fad3","1fad4","1fad5","1fad6","1fad7","1fad8","1fad9","1fae0","1fae1","1fae2","1fae3","1fae4","1fae5","1fae6","1fae7","1faf0","1faf0-1f3fb","1faf0-1f3fc","1faf0-1f3fd","1faf0-1f3fe","1faf0-1f3ff","1faf1","1faf1-1f3fb","1faf1-1f3fb-200d-1faf2-1f3fc","1faf1-1f3fb-200d-1faf2-1f3fd","1faf1-1f3fb-200d-1faf2-1f3fe","1faf1-1f3fb-200d-1faf2-1f3ff","1faf1-1f3fc","1faf1-1f3fc-200d-1faf2-1f3fb","1faf1-1f3fc-200d-1faf2-1f3fd","1faf1-1f3fc-200d-1faf2-1f3fe","1faf1-1f3fc-200d-1faf2-1f3ff","1faf1-1f3fd","1faf1-1f3fd-200d-1faf2-1f3fb","1faf1-1f3fd-200d-1faf2-1f3fc","1faf1-1f3fd-200d-1faf2-1f3fe","1faf1-1f3fd-200d-1faf2-1f3ff","1faf1-1f3fe","1faf1-1f3fe-200d-1faf2-1f3fb","1faf1-1f3fe-200d-1faf2-1f3fc","1faf1-1f3fe-200d-1faf2-1f3fd","1faf1-1f3fe-200d-1faf2-1f3ff","1faf1-1f3ff","1faf1-1f3ff-200d-1faf2-1f3fb","1faf1-1f3ff-200d-1faf2-1f3fc","1faf1-1f3ff-200d-1faf2-1f3fd","1faf1-1f3ff-200d-1faf2-1f3fe","1faf2","1faf2-1f3fb","1faf2-1f3fc","1faf2-1f3fd","1faf2-1f3fe","1faf2-1f3ff","1faf3","1faf3-1f3fb","1faf3-1f3fc","1faf3-1f3fd","1faf3-1f3fe","1faf3-1f3ff","1faf4","1faf4-1f3fb","1faf4-1f3fc","1faf4-1f3fd","1faf4-1f3fe","1faf4-1f3ff","1faf5","1faf5-1f3fb","1faf5-1f3fc","1faf5-1f3fd","1faf5-1f3fe","1faf5-1f3ff","1faf6","1faf6-1f3fb","1faf6-1f3fc","1faf6-1f3fd","1faf6-1f3fe","1faf6-1f3ff","203c","2049","2122","2139","2194","2195","2196","2197","2198","2199","21a9","21aa","23-20e3","231a","231b","2328","23cf","23e9","23ea","23eb","23ec","23ed","23ee","23ef","23f0","23f1","23f2","23f3","23f8","23f9","23fa","24c2","25aa","25ab","25b6","25c0","25fb","25fc","25fd","25fe","2600","2601","2602","2603","2604","260e","2611","2614","2615","2618","261d","261d-1f3fb","261d-1f3fc","261d-1f3fd","261d-1f3fe","261d-1f3ff","2620","2622","2623","2626","262a","262e","262f","2638","2639","263a","2640","2642","2648","2649","264a","264b","264c","264d","264e","264f","2650","2651","2652","2653","265f","2660","2663","2665","2666","2668","267b","267e","267f","2692","2693","2694","2695","2696","2697","2699","269b","269c","26a0","26a1","26a7","26aa","26ab","26b0","26b1","26bd","26be","26c4","26c5","26c8","26ce","26cf","26d1","26d3","26d4","26e9","26ea","26f0","26f1","26f2","26f3","26f4","26f5","26f7","26f7-1f3fb","26f7-1f3fc","26f7-1f3fd","26f7-1f3fe","26f7-1f3ff","26f8","26f9","26f9-1f3fb","26f9-1f3fb-200d-2640-fe0f","26f9-1f3fb-200d-2642-fe0f","26f9-1f3fc","26f9-1f3fc-200d-2640-fe0f","26f9-1f3fc-200d-2642-fe0f","26f9-1f3fd","26f9-1f3fd-200d-2640-fe0f","26f9-1f3fd-200d-2642-fe0f","26f9-1f3fe","26f9-1f3fe-200d-2640-fe0f","26f9-1f3fe-200d-2642-fe0f","26f9-1f3ff","26f9-1f3ff-200d-2640-fe0f","26f9-1f3ff-200d-2642-fe0f","26f9-fe0f-200d-2640-fe0f","26f9-fe0f-200d-2642-fe0f","26fa","26fd","2702","2705","2708","2709","270a","270a-1f3fb","270a-1f3fc","270a-1f3fd","270a-1f3fe","270a-1f3ff","270b","270b-1f3fb","270b-1f3fc","270b-1f3fd","270b-1f3fe","270b-1f3ff","270c","270c-1f3fb","270c-1f3fc","270c-1f3fd","270c-1f3fe","270c-1f3ff","270d","270d-1f3fb","270d-1f3fc","270d-1f3fd","270d-1f3fe","270d-1f3ff","270f","2712","2714","2716","271d","2721","2728","2733","2734","2744","2747","274c","274e","2753","2754","2755","2757","2763","2764","2764-fe0f-200d-1f525","2764-fe0f-200d-1fa79","2795","2796","2797","27a1","27b0","27bf","2934","2935","2a-20e3","2b05","2b06","2b07","2b1b","2b1c","2b50","2b55","30-20e3","3030","303d","31-20e3","32-20e3","3297","3299","33-20e3","34-20e3","35-20e3","36-20e3","37-20e3","38-20e3","39-20e3","a9","ae","e50a"];class sq extends sH{getIcons(){return sU.map(e=>({type:"path",value:`/bundles/pimcorestudioui/img/icons/twemoji/${e}.svg`}))}constructor(...e){super(...e),this.id="twemoji",this.name="Twemoji"}}sq=(0,eq.gn)([(0,eZ.injectable)()],sq);class sZ extends e4.Z{}sZ=(0,eq.gn)([(0,eZ.injectable)()],sZ);var sK=i(56183),sJ=i(80090),sX=i(18955),sQ=i(37021);let sY=()=>{let{data:e,isLoading:t}=(0,sQ.wc)({perspectiveId:"studio_default_perspective"}),i=(0,ts.useMemo)(()=>{var t,i;let n=null==e||null==(i=e.widgetsLeft)||null==(t=i[2])?void 0:t.contextPermissions;if(!(0,eY.isEmpty)(n)){let{additionalAttributes:e,...t}=n;return Object.keys(t)}return[]},[e]);return{dataObjectContextMenuItems:i,assetContextMenuItems:(0,ts.useMemo)(()=>{var t,i;let n=null==e||null==(i=e.widgetsLeft)||null==(t=i[1])?void 0:t.contextPermissions;if(!(0,eY.isEmpty)(n)){let{additionalAttributes:e,...t}=n;return Object.keys(t)}return[]},[e]),documentContextMenuItems:(0,ts.useMemo)(()=>{var t,i;let n=null==e||null==(i=e.widgetsLeft)||null==(t=i[0])?void 0:t.contextPermissions;if(!(0,eY.isEmpty)(n)){let{additionalAttributes:e,...t}=n;return Object.keys(t)}return[]},[e]),isLoading:t}};var s0=i(28253);let s1=(0,ia.createStyles)(e=>{let{token:t}=e;return{allowedContextMenuOptions:{display:"grid",gridTemplateColumns:"repeat(3, 1fr)",gap:`${t.marginXS}px`,width:"100%"}}});var s2=i(77244);let s3=()=>{let{t:e}=(0,t7.useTranslation)(),{dataObjectContextMenuItems:t,isLoading:i}=sY(),{styles:n}=s1();return i?(0,tl.jsx)(sX.h,{condition:e=>e.elementType===s2.a.dataObject,children:(0,tl.jsx)(nd.h.Panel,{collapsed:!1,collapsible:!0,title:e("widget-editor.widget-form.allowed-context-menu.title"),children:(0,tl.jsx)(aI.y,{})})}):(0,tl.jsx)(sX.h,{condition:e=>e.elementType===s2.a.dataObject,children:(0,tl.jsx)(nd.h.Panel,{collapsed:!1,collapsible:!0,title:e("widget-editor.widget-form.allowed-context-menu.title"),children:(0,tl.jsx)("div",{className:n.allowedContextMenuOptions,children:(0,tl.jsx)(tc.l.Group,{name:"contextPermissions",children:t.map(t=>(0,tl.jsx)(tc.l.Item,{name:t,children:(0,tl.jsx)(s0.r,{labelRight:e("widget-editor.widget-form.allowed-context-menu."+t)})},t))})})})})},s6=()=>{let{t:e}=(0,t7.useTranslation)(),{assetContextMenuItems:t,isLoading:i}=sY(),{styles:n}=s1();return i?(0,tl.jsx)(sX.h,{condition:e=>e.elementType===s2.a.asset,children:(0,tl.jsx)(nd.h.Panel,{collapsed:!1,collapsible:!0,title:e("widget-editor.widget-form.allowed-context-menu.title"),children:(0,tl.jsx)(aI.y,{})})}):(0,tl.jsx)(sX.h,{condition:e=>e.elementType===s2.a.asset,children:(0,tl.jsx)(nd.h.Panel,{collapsed:!1,collapsible:!0,title:e("widget-editor.widget-form.allowed-context-menu.title"),children:(0,tl.jsx)("div",{className:n.allowedContextMenuOptions,children:(0,tl.jsx)(tc.l.Group,{name:"contextPermissions",children:t.map(t=>(0,tl.jsx)(tc.l.Item,{name:t,children:(0,tl.jsx)(s0.r,{labelRight:e("widget-editor.widget-form.allowed-context-menu."+t)})},t))})})})})},s4=()=>{let{t:e}=(0,t7.useTranslation)(),{documentContextMenuItems:t,isLoading:i}=sY(),{styles:n}=s1();return i?(0,tl.jsx)(sX.h,{condition:e=>e.elementType===s2.a.document,children:(0,tl.jsx)(nd.h.Panel,{collapsed:!1,collapsible:!0,title:e("widget-editor.widget-form.allowed-context-menu.title"),children:(0,tl.jsx)(aI.y,{})})}):(0,tl.jsx)(sX.h,{condition:e=>e.elementType===s2.a.document,children:(0,tl.jsx)(nd.h.Panel,{collapsed:!1,collapsible:!0,title:e("widget-editor.widget-form.allowed-context-menu.title"),children:(0,tl.jsx)("div",{className:n.allowedContextMenuOptions,children:(0,tl.jsx)(tc.l.Group,{name:"contextPermissions",children:t.map(t=>(0,tl.jsx)(tc.l.Item,{name:t,children:(0,tl.jsx)(s0.r,{labelRight:e("widget-editor.widget-form.allowed-context-menu."+t)})},t))})})})})},s8=()=>(0,tl.jsxs)(tl.Fragment,{children:[(0,tl.jsx)(s3,{}),(0,tl.jsx)(s6,{}),(0,tl.jsx)(s4,{})]}),s7=(0,ia.createStyles)(e=>{let{token:t}=e;return{allowedObjectsGrid:{display:"grid",gridTemplateColumns:"repeat(3, 1fr)",gap:`${t.marginXS}px`,width:"100%"}}}),s5=()=>{let{t:e}=(0,t7.useTranslation)(),{getClassDefinitionsForCurrentUser:t}=(0,a0.C)(),{styles:i}=s7();return(0,tl.jsx)(nd.h.Panel,{collapsed:!1,collapsible:!0,title:e("widget-editor.widget-form.allowed-objects.title"),children:(0,tl.jsx)("div",{className:i.allowedObjectsGrid,children:(0,tl.jsx)(tc.l.Group,{name:"classes",children:t().map(e=>(0,tl.jsx)(tc.l.Item,{name:e.id,children:(0,tl.jsx)(s0.r,{labelRight:e.name})},(0,eY.uniqueId)()))})})})},s9=()=>{let{t:e}=(0,t7.useTranslation)();return(0,tl.jsx)(nd.h.Panel,{collapsed:!1,collapsible:!0,title:e("widget-editor.widget-form.filters.title"),children:(0,tl.jsx)(tc.l.Item,{label:e("widget-editor.widget-form.filters.pql"),name:"pql",children:(0,tl.jsx)(nf.K,{})})})};var de=i(82596),dt=i(13221);let di=e=>{let{t}=(0,t7.useTranslation)();return(0,tl.jsx)(tC.P,{...e,options:[{label:t("document"),value:s2.a.document},{label:t("asset"),value:s2.a.asset},{label:t("data-object"),value:s2.a.dataObject}]})},dn=(0,ts.createContext)(void 0),dr=e=>{let{children:t,widget:i}=e,[n]=tc.l.useForm(),[r,a]=(0,ts.useState)(i),o=(0,ts.useMemo)(()=>({widget:i,form:n,formData:r,setFormData:a}),[i,n,r]);return(0,tl.jsx)(dn.Provider,{value:o,children:t})},da=()=>{let e=(0,ts.useContext)(dn);if(void 0===e)throw Error("useWidgetFormContext must be used within a WidgetFormProvider");return e},dl=()=>{let{t:e}=(0,t7.useTranslation)(),{form:t}=da();return(0,tl.jsxs)(nd.h.Panel,{collapsed:!1,collapsible:!0,title:e("widget-editor.widget-form.specific.title"),children:[(0,tl.jsx)(tc.l.Item,{label:e("widget-editor.widget-form.specific.element-type"),name:"elementType",children:(0,tl.jsx)(di,{})}),(0,tl.jsx)(tc.l.Item,{label:e("widget-editor.widget-form.specific.root-folder"),name:"rootFolder",children:(0,tl.jsx)(de.A,{allowToClearRelation:!0,assetsAllowed:t.getFieldValue("elementType")===dt.elementTypes.asset,dataObjectsAllowed:t.getFieldValue("elementType")===dt.elementTypes.dataObject,documentsAllowed:t.getFieldValue("elementType")===dt.elementTypes.document})}),(0,tl.jsx)(tc.l.Item,{name:"showRoot",children:(0,tl.jsx)(s0.r,{labelRight:e("widget-editor.widget-form.specific.show-root")})}),(0,tl.jsx)(tc.l.Item,{label:e("widget-editor.widget-form.specific.page-size"),name:"pageSize",children:(0,tl.jsx)(tN.InputNumber,{})})]})},ds=()=>(0,tl.jsxs)(tl.Fragment,{children:[(0,tl.jsx)(dl,{}),(0,tl.jsx)(s5,{}),(0,tl.jsx)(s8,{}),(0,tl.jsx)(s9,{})]});function dd(e,t,i){var n;return(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}let df=(0,eZ.injectable)()(eP=class{getSubMenuItems(e,t){return e.map(e=>({label:e.name,key:e.id,icon:(0,tl.jsx)(ih.Icon,{value:e.icon.value}),onClick:void 0===t?void 0:()=>{t(e)}}))}constructor(){dd(this,"id",void 0),dd(this,"name",void 0),dd(this,"group",void 0),dd(this,"icon",void 0)}})||eP;function dc(e,t,i){var n;return(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}let du=(0,eZ.injectable)()(eN=class extends e4.Z{getMenuItems(e,t){let i={};for(let e of this.getDynamicTypes())i[e.group]=i[e.group]??[],i[e.group].push(e);return Object.entries(i).map(i=>{let[n,r]=i;return{key:n,label:(0,tl.jsx)(t7.Trans,{children:`widget-editor.create-form.widgetTypeGroup.${n}`}),type:"group",children:r.map(i=>({label:(0,tl.jsx)(t7.Trans,{children:`widget-editor.create-form.widgetType.${i.name}`}),key:i.id,icon:(0,tl.jsx)(rR.J,{value:i.icon}),children:i.getSubMenuItems(e.filter(e=>e.widgetType===i.id),t)}))}})}})||eN;var dm=i(48556);eB.nC.bind(eO.j["App/ComponentRegistry/ComponentRegistry"]).to(e_.yK).inSingletonScope(),eB.nC.bind(eO.j.mainNavRegistry).to(eF.c).inSingletonScope(),eB.nC.bind(eO.j.widgetManager).to(dm.B).inSingletonScope(),eB.nC.bind(eO.j["Asset/Editor/TypeRegistry"]).to(sK.P).inSingletonScope(),eB.nC.bind(eO.j["Asset/Editor/DocumentTabManager"]).to(e$.A).inSingletonScope(),eB.nC.bind(eO.j["Asset/Editor/FolderTabManager"]).to(eW.d).inSingletonScope(),eB.nC.bind(eO.j["Asset/Editor/ImageTabManager"]).to(eH.S).inSingletonScope(),eB.nC.bind(eO.j["Asset/Editor/TextTabManager"]).to(eG.$).inSingletonScope(),eB.nC.bind(eO.j["Asset/Editor/VideoTabManager"]).to(eX.n).inSingletonScope(),eB.nC.bind(eO.j["Asset/Editor/AudioTabManager"]).to(eV.$).inSingletonScope(),eB.nC.bind(eO.j["Asset/Editor/ArchiveTabManager"]).to(ez.M).inSingletonScope(),eB.nC.bind(eO.j["Asset/Editor/UnknownTabManager"]).to(eU.M).inSingletonScope(),eB.nC.bind(eO.j["DataObject/Editor/TypeRegistry"]).to(sK.P).inSingletonScope(),eB.nC.bind(eO.j["DataObject/Editor/ObjectTabManager"]).to(e6.F).inSingletonScope(),eB.nC.bind(eO.j["DataObject/Editor/FolderTabManager"]).to(eW.d).inSingletonScope(),eB.nC.bind(eO.j["Document/Editor/TypeRegistry"]).to(sK.P).inSingletonScope(),eB.nC.bind(eO.j["Document/Editor/PageTabManager"]).to(a8.M).inSingletonScope(),eB.nC.bind(eO.j["Document/Editor/EmailTabManager"]).to(a7.G).inSingletonScope(),eB.nC.bind(eO.j["Document/Editor/FolderTabManager"]).to(eW.d).inSingletonScope(),eB.nC.bind(eO.j["Document/Editor/HardlinkTabManager"]).to(a5.i).inSingletonScope(),eB.nC.bind(eO.j["Document/Editor/LinkTabManager"]).to(a9.m).inSingletonScope(),eB.nC.bind(eO.j["Document/Editor/SnippetTabManager"]).to(oe.t).inSingletonScope(),eB.nC.bind(eO.j["Document/Editor/Sidebar/PageSidebarManager"]).to(oi).inSingletonScope(),eB.nC.bind(eO.j["Document/Editor/Sidebar/SnippetSidebarManager"]).to(oi).inSingletonScope(),eB.nC.bind(eO.j["Document/Editor/Sidebar/EmailSidebarManager"]).to(oi).inSingletonScope(),eB.nC.bind(eO.j["Document/Editor/Sidebar/LinkSidebarManager"]).to(oi).inSingletonScope(),eB.nC.bind(eO.j["Document/Editor/Sidebar/HardlinkSidebarManager"]).to(oi).inSingletonScope(),eB.nC.bind(eO.j["Document/Editor/Sidebar/FolderSidebarManager"]).to(oi).inSingletonScope(),eB.nC.bind(eO.j.iconLibrary).to(sJ.W).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/FieldFilterRegistry"]).to(tE.z).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/FieldFilter/DataObjectAdapter"]).to(tB).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/FieldFilter/DataObjectObjectBrick"]).to(t_).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/FieldFilter/String"]).to(tq).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/FieldFilter/Fulltext"]).to(sM).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/FieldFilter/Input"]).to(sI).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/FieldFilter/None"]).to(sE).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/FieldFilter/Id"]).to(t$).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/FieldFilter/Number"]).to(tW.F).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/FieldFilter/Multiselect"]).to(tH.o).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/FieldFilter/Date"]).to(tz.A).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/FieldFilter/Boolean"]).to(tP).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/FieldFilter/BooleanSelect"]).to(sW).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/BatchEditRegistry"]).to(to.H).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/BatchEdit/Text"]).to(tS.B).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/BatchEdit/TextArea"]).to(tD.l).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/BatchEdit/Datetime"]).to(ty).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/BatchEdit/Select"]).to(tT).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/BatchEdit/Checkbox"]).to(tm).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/BatchEdit/ElementDropzone"]).to(tw).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/BatchEdit/DataObjectAdapter"]).to(tp.C).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/BatchEdit/DataObjectObjectBrick"]).to(tg.C).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/GridCellRegistry"]).to(tZ.U).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/GridCell/Text"]).to(iQ).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/GridCell/Textarea"]).to(i0).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/GridCell/Number"]).to(iG).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/GridCell/Select"]).to(iJ).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/GridCell/MultiSelect"]).to(iW).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/GridCell/Checkbox"]).to(iD.g).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/GridCell/Boolean"]).to(a4).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/GridCell/Date"]).to(iO).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/GridCell/Time"]).to(i2).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/GridCell/DateTime"]).to(iR).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/GridCell/AssetLink"]).to(iC).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/GridCell/ObjectLink"]).to(iU).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/GridCell/DocumentLink"]).to(iB).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/GridCell/OpenElement"]).to(iK).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/GridCell/AssetPreview"]).to(iT).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/GridCell/AssetActions"]).to(ij).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/GridCell/DataObjectActions"]).to(iM).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/GridCell/DependencyTypeIcon"]).to(tX).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/GridCell/AssetCustomMetadataIcon"]).to(tY).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/GridCell/AssetCustomMetadataValue"]).to(t1).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/GridCell/PropertyIcon"]).to(t3).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/GridCell/PropertyValue"]).to(t4).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/GridCell/WebsiteSettingsValue"]).to(iv).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/GridCell/ScheduleActionsSelect"]).to(ie).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/GridCell/VersionsIdSelect"]).to(iu).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/GridCell/AssetVersionPreviewFieldLabel"]).to(ip).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/GridCell/Asset"]).to(iS).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/GridCell/Object"]).to(iq).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/GridCell/Document"]).to(iF).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/GridCell/Element"]).to(i_).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/GridCell/LanguageSelect"]).to(iV).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/GridCell/Translate"]).to(i6).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/GridCell/DataObjectAdapter"]).to(iP).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/GridCell/DataObjectObjectBrick"]).to(iN).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/GridCell/DataObjectAdvanced"]).to(sw).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/GridCell/String"]).to(sD).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/AdvancedGridCellRegistry"]).to(tZ.U).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ListingRegistry"]).to(i4.g).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/Listing/AssetLink"]).to(i8.Z).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/MetadataRegistry"]).to(i7.H).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/Metadata/Asset"]).to(i5.H).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/Metadata/Checkbox"]).to(i9.$).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/Metadata/Date"]).to(ne.p).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/Metadata/Document"]).to(nt.$).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/Metadata/Input"]).to(ni.n).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/Metadata/Object"]).to(nn.L).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/Metadata/Select"]).to(nr.t).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/Metadata/Textarea"]).to(na.k).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/CustomReportDefinitionRegistry"]).to(no).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/CustomReportDefinition/Sql"]).to(nz).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectLayoutRegistry"]).to(r$).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectLayout/Panel"]).to(class extends rW{getObjectLayoutComponent(e){return(0,tl.jsx)(rX,{...e})}constructor(...e){var t,i,n;super(...e),i="panel",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}}).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectLayout/Tabpanel"]).to(class extends rW{getObjectLayoutComponent(e){return(0,tl.jsx)(r3,{...e})}constructor(...e){var t,i,n;super(...e),i="tabpanel",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}}).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectLayout/Accordion"]).to(class extends rW{getObjectLayoutComponent(e){return(0,tl.jsx)(rq,{...e})}constructor(...e){var t,i,n;super(...e),i="accordion",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}}).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectLayout/Region"]).to(class extends rW{getObjectLayoutComponent(e){return(0,tl.jsx)(r0,{...e})}constructor(...e){var t,i,n;super(...e),i="region",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}}).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectLayout/Text"]).to(class extends rW{getObjectLayoutComponent(e){return(0,tl.jsx)(r6,{...e})}constructor(...e){var t,i,n;super(...e),i="text",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}}).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectLayout/Fieldset"]).to(class extends rW{getObjectLayoutComponent(e){return(0,tl.jsx)(rX,{...e,theme:"fieldset"})}constructor(...e){var t,i,n;super(...e),i="fieldset",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}}).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectLayout/FieldContainer"]).to(class extends rW{getObjectLayoutComponent(e){return(0,tl.jsx)(rK,{...e})}constructor(...e){var t,i,n;super(...e),i="fieldcontainer",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}}).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectDataRegistry"]).to(nV.f).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/Input"]).to(rn.y).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/Textarea"]).to(rS.g).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/Wysiwyg"]).to(rz).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/InputQuantityValue"]).to(rr.j).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/Password"]).to(rb.m).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/Select"]).to(rw.w).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/MultiSelect"]).to(rm.i).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/Language"]).to(ra.P).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/LanguageMultiSelect"]).to(ro.n).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/Country"]).to(nK.d).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/CountryMultiSelect"]).to(nJ.v).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/User"]).to(rM.F).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/BooleanSelect"]).to(nG.K).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/Numeric"]).to(rp.$).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/NumericRange"]).to(rg.o).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/Slider"]).to(rC.S).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/QuantityValue"]).to(ry.I).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/QuantityValueRange"]).to(rv.K).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/Consent"]).to(nZ.q).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/Firstname"]).to(n6.Y).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/Lastname"]).to(rl.y).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/Email"]).to(n0.X).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/Gender"]).to(n4.Z).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/RgbaColor"]).to(rj.d).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/EncryptedField"]).to(n1.D).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/CalculatedValue"]).to(nU.r).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/Checkbox"]).to(nq.T).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/Link"]).to(rs.M).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/UrlSlug"]).to(rE.d).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/Date"]).to(nX.U).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/Datetime"]).to(nY.g).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/DateRange"]).to(nQ.S).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/Time"]).to(rD.K).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/ExternalImage"]).to(n2.T).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/Image"]).to(rt.i).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/Video"]).to(rI.b).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/HotspotImage"]).to(re.V).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/ImageGallery"]).to(ri.F).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/GeoPoint"]).to(n7.e).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/GeoBounds"]).to(n8.O).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/GeoPolygon"]).to(n5.G).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/GeoPolyLine"]).to(n9.v).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/ManyToOneRelation"]).to(ru.i).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/ManyToManyRelation"]).to(rc.w).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/ManyToManyObjectRelation"]).to(rf.g).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/AdvancedManyToManyRelation"]).to(nW.D).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/AdvancedManyToManyObjectRelation"]).to(n$.X).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/ReverseObjectRelation"]).to(rx.t).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/Table"]).to(rT.V).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/StructuredTable"]).to(rk.Z).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/Block"]).to(nH.G).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/LocalizedFields"]).to(rd.n).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/FieldCollection"]).to(n3.k).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/ObjectBrick"]).to(rh.W).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/ClassificationStore"]).to(a3).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/DocumentEditableRegistry"]).to(on.p).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/DocumentEditable/Block"]).to(l2).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/DocumentEditable/Checkbox"]).to(os.O).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/DocumentEditable/Wysiwyg"]).to(od.R).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/DocumentEditable/Date"]).to(of.J).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/DocumentEditable/Embed"]).to(ow).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/DocumentEditable/Image"]).to(ok.J).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/DocumentEditable/Input"]).to(ol.a).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/DocumentEditable/Link"]).to(oc.k).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/DocumentEditable/MultiSelect"]).to(l_.w).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/DocumentEditable/Numeric"]).to(or.V).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/DocumentEditable/Pdf"]).to(o_).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/DocumentEditable/Relation"]).to(oa.m).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/DocumentEditable/Relations"]).to(oo.e).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/DocumentEditable/Renderlet"]).to(lZ).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/DocumentEditable/ScheduledBlock"]).to(so).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/DocumentEditable/Select"]).to(lz.u).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/DocumentEditable/Snippet"]).to(l$.p).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/DocumentEditable/Table"]).to(lV.a).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/DocumentEditable/Textarea"]).to(oC.t).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/DocumentEditable/Video"]).to(oz.N).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/DocumentEditable/Area"]).to(oV.b).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/DocumentEditable/Areablock"]).to(lw).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/EditableDialogLayoutRegistry"]).to(sC).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/EditableDialogLayout/Tabpanel"]).to(sT).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/EditableDialogLayout/Panel"]).to(sS).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/DocumentRegistry"]).to(sN).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/Document/Page"]).to(sP).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/Document/Email"]).to(sA).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/Document/Folder"]).to(sR).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/Document/Hardlink"]).to(sO).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/Document/Link"]).to(sB).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/Document/Newsletter"]).to(sF).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/Document/Snippet"]).to(s_).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/AssetRegistry"]).to(e8).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/Asset/Archive"]).to(e5).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/Asset/Audio"]).to(e9).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/Asset/Document"]).to(te).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/Asset/Folder"]).to(tt).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/Asset/Image"]).to(ti).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/Asset/Text"]).to(tn).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/Asset/Unknown"]).to(tr).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/Asset/Video"]).to(ta).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectRegistry"]).to(rV).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/Object/Folder"]).to(r8).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/Object/Object"]).to(r7).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/Object/Variant"]).to(r5).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/Grid/SourceFieldsRegistry"]).to(lC).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/Grid/SourceFields/Text"]).to(lS).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/Grid/SourceFields/SimpleField"]).to(lR).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/Grid/SourceFields/RelationField"]).to(lF).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/Grid/TransformersRegistry"]).to(lC).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/Grid/Transformers/ChangeCase"]).to(lL).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/Grid/Transformers/Combine"]).to(lN).inSingletonScope(),eB.nC.bind(eO.j["ExecutionEngine/JobComponentRegistry"]).to(eK).inSingletonScope(),eB.nC.bind(eO.j.executionEngine).to(eJ).inSingletonScope(),eB.nC.bind(eO.j.backgroundProcessor).to(class{registerProcess(e){if(this.processes.has(e.getName()))throw Error(`Process with name ${e.getName()} is already registered.`);this.processes.set(e.getName(),e)}subscribeToProcessMessages(e){var t;let{processName:i,callback:n,SubscriberClass:r=ss}=e;if(!this.processes.has(i))throw Error(`Process with name ${i} is not registered.`);let a=new r(n);if(this.subscribers.set(a.getId(),a),this.processSubscriptions.has(i)||this.processSubscriptions.set(i,[]),null==(t=this.processSubscriptions.get(i))||t.push(a.getId()),void 0===this.processes.get(i))throw Error(`Process with name ${i} does not exist.`);return this.startProcess(i),a.getId()}unsubscribeFromProcessMessages(e){if(void 0===this.subscribers.get(e))throw Error(`Subscriber with ID ${e} does not exist.`);for(let[t,i]of(this.subscribers.delete(e),this.processSubscriptions.entries())){let n=i.indexOf(e);-1!==n&&(i.splice(n,1),0===i.length&&(this.cancelProcess(t),this.processSubscriptions.delete(t)))}}notifySubscribers(e,t){let i=this.processSubscriptions.get(e);if(void 0!==i)for(let e of i){let i=this.subscribers.get(e);void 0!==i&&i.getCallback()(t)}}startProcess(e){let t=this.processes.get(e);if(void 0===t)throw Error(`Process with name ${e} does not exist.`);this.runningProcesses.has(e)||(t.start(),this.runningProcesses.add(e),t.onMessage=t=>{this.notifySubscribers(e,t)})}cancelProcess(e){let t=this.processes.get(e);if(void 0===t)throw Error(`Process with name ${e} does not exist.`);this.runningProcesses.has(e)&&(this.runningProcesses.delete(e),t.cancel())}constructor(){this.processes=new Map,this.subscribers=new Map,this.processSubscriptions=new Map,this.runningProcesses=new Set}}).inSingletonScope(),eB.nC.bind(eO.j.globalMessageBus).to(sc).inSingletonScope(),eB.nC.bind(eO.j.globalMessageBusProcess).to(sf).inSingletonScope(),eB.nC.bind(eO.j["Asset/ThumbnailService"]).to(e3).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ThemeRegistry"]).to(su).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/Theme/StudioDefaultLight"]).to(class extends sm{getThemeConfig(){return sg}constructor(...e){super(...e),this.id=sp.n.light}}).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/Theme/StudioDefaultDark"]).to(sh).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/IconSetRegistry"]).to(sZ).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/IconSet/PimcoreDefault"]).to(sG).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/IconSet/Twemoji"]).to(sq).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/WidgetEditor/WidgetTypeRegistry"]).to(du).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/WidgetEditor/ElementTree"]).to(class extends df{form(){return(0,tl.jsx)(ds,{})}constructor(...e){super(...e),dc(this,"id","element_tree"),dc(this,"name","element_tree"),dc(this,"group","system-widgets"),dc(this,"icon","tree")}}).inSingletonScope();var dp=i(72323);eR._.registerModule({onInit:()=>{let e=eB.nC.get(eO.j.globalMessageBus),t=eB.nC.get(eO.j.globalMessageBusProcess);e.registerTopics(Object.values(dp.F)),eB.nC.get(eO.j.backgroundProcessor).registerProcess(t)}}),i(71099);var dg=i(63583);let dh=(0,ia.createStyles)(e=>{let{token:t,css:i}=e;return{mainNav:i` + `}}),sy=e=>{let{children:t}=e,{styles:i}=sb();return(0,to.jsx)("div",{className:[i.gridContentRenderer,"grid-content-renderer"].join(" "),children:t})},sv=(0,aj.createColumnHelper)(),sx=e=>{let{value:t}=e,i=(0,eB.$1)(eO.j["DynamicTypes/AdvancedGridCellRegistry"]),n=t.map((e,t)=>{let n=i.hasDynamicType(e.type);return sv.accessor(`${e.type}-${t}`,{header:e.type,meta:{editable:!1,type:n?e.type:"dataobject.adapter",config:{...n?{}:{dataObjectType:e.type,dataObjectConfig:{}}}}})}),r=[],a={};return t.forEach((e,t)=>{a[`${e.type}-${t}`]=e.value}),r.push(a),(0,to.jsx)(sy,{children:(0,to.jsx)(az.r,{autoWidth:!0,columns:n,data:r})})},sj=e=>{let{getValue:t}=e,i=t();return(0,to.jsx)("div",{className:"default-cell__content",children:void 0===i||0===i.length?(0,to.jsx)("span",{children:"No data available"}):(0,to.jsx)(sx,{value:i})})},sw=(0,eZ.injectable)()(eC=class extends tK.V{getDefaultGridColumnWidth(){return 300}getGridCellComponent(e){return(0,to.jsx)(sj,{...e})}constructor(...e){var t,i,n;super(...e),i="dataobject.advanced",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||eC;class sC extends e4.Z{getComponent(e,t){return this.getDynamicType(e).getEditableDialogLayoutComponent(t)}}sC=(0,eq.gn)([(0,eZ.injectable)()],sC);let sk=(0,eZ.injectable)()(ek=class extends e4.x{constructor(...e){var t,i,n;super(...e),i=void 0,(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||ek,sT=(0,eZ.injectable)()(eT=class extends sk{getEditableDialogLayoutComponent(e){let{configItem:t,onRenderNestedContent:i}=e;if(!(0,eY.isArray)(t.items))return(0,to.jsx)(to.Fragment,{});let n=t.items.map((e,t)=>({key:`tab-${t}`,label:e.title??`Tab ${t+1}`,children:i(e)}));return(0,to.jsx)(ih.Tabs,{items:n,type:"card"})}constructor(...e){var t,i,n;super(...e),i="tabpanel",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||eT,sS=(0,eZ.injectable)()(eS=class extends sk{getEditableDialogLayoutComponent(e){let{configItem:t,onRenderNestedContent:i}=e;return(0,eY.isArray)(t.items)?(0,to.jsx)(ih.Space,{direction:"vertical",size:"medium",style:{width:"100%"},children:t.items.map((e,t)=>(0,to.jsx)("div",{children:i(e)},`panel-item-${t}`))}):(0,to.jsx)(to.Fragment,{})}constructor(...e){var t,i,n;super(...e),i="panel",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||eS,sD=(0,eZ.injectable)()(eD=class extends iQ{constructor(...e){var t,i,n;super(...e),i="string",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||eD,sE=(0,eZ.injectable)()(eE=class extends tI.s{getFieldFilterType(){return""}getFieldFilterComponent(e){return(0,to.jsx)(to.Fragment,{})}constructor(...e){var t,i,n;super(...e),i="none",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||eE,sM=(0,eZ.injectable)()(eM=class extends tU{getFieldFilterType(){return tL.a.Fulltext}constructor(...e){var t,i,n;super(...e),i="fulltext",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||eM,sI=(0,eZ.injectable)()(eI=class extends tU{getFieldFilterType(){return tL.a.Fulltext}constructor(...e){var t,i,n;super(...e),i="input",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||eI;class sL{}sL=(0,eq.gn)([(0,eZ.injectable)()],sL);class sP extends sL{constructor(...e){super(...e),this.id="page"}}sP=(0,eq.gn)([(0,eZ.injectable)()],sP);class sN extends e4.Z{}sN=(0,eq.gn)([(0,eZ.injectable)()],sN);class sA extends sL{constructor(...e){super(...e),this.id="email"}}sA=(0,eq.gn)([(0,eZ.injectable)()],sA);class sR extends sL{constructor(...e){super(...e),this.id="folder"}}sR=(0,eq.gn)([(0,eZ.injectable)()],sR);class sO extends sL{constructor(...e){super(...e),this.id="hardlink"}}sO=(0,eq.gn)([(0,eZ.injectable)()],sO);class sB extends sL{constructor(...e){super(...e),this.id="link"}}sB=(0,eq.gn)([(0,eZ.injectable)()],sB);class sF extends sL{constructor(...e){super(...e),this.id="newsletter"}}sF=(0,eq.gn)([(0,eZ.injectable)()],sF);class s_ extends sL{constructor(...e){super(...e),this.id="snippet"}}s_=(0,eq.gn)([(0,eZ.injectable)()],s_);let sz=e=>{switch(e){case -1:return!1;case 0:default:return null;case 1:return!0}},sV=e=>!0===e?1:!1===e?-1:0,s$=()=>{var e;let{setData:t,data:i,config:n}=(0,tA.$)(),[r,a]=(0,ts.useState)([]),l=[];return l="fieldDefinition"in n&&Array.isArray(null==n||null==(e=n.fieldDefinition)?void 0:e.options)?n.fieldDefinition.options.map(e=>({label:e.key,value:e.value})):[{label:"True",value:1},{label:"False",value:-1},{label:"Empty",value:0}],(0,ts.useEffect)(()=>{a((i??[]).map(sV))},[i]),(0,to.jsx)(tC.P,{mode:"multiple",onChange:e=>{a(e),t(e.map(sz))},options:l,style:{width:"100%"},value:r})},sW=(0,eZ.injectable)()(eL=class extends tI.s{getFieldFilterType(){return tL.a.Select}getFieldFilterComponent(){return(0,to.jsx)(s$,{})}constructor(...e){var t,i,n;super(...e),i="boolean-select",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}})||eL;class sH{}sH=(0,eq.gn)([(0,eZ.injectable)()],sH);class sG extends sH{getIcons(){return Array.from(this.iconLibrary.getIcons()).map(e=>{let[t]=e;return{type:"name",value:t}})}constructor(e){super(),this.iconLibrary=e,this.id="pimcore-default",this.name="Pimcore"}}sG=(0,eq.gn)([(0,eZ.injectable)(),(0,eq.fM)(0,(0,eZ.inject)(eO.j.iconLibrary)),(0,eq.w6)("design:type",Function),(0,eq.w6)("design:paramtypes",["undefined"==typeof IconLibrary?Object:IconLibrary])],sG);let sU=["1f004","1f0cf","1f170","1f171","1f17e","1f17f","1f18e","1f191","1f192","1f193","1f194","1f195","1f196","1f197","1f198","1f199","1f19a","1f1e6","1f1e6-1f1e8","1f1e6-1f1e9","1f1e6-1f1ea","1f1e6-1f1eb","1f1e6-1f1ec","1f1e6-1f1ee","1f1e6-1f1f1","1f1e6-1f1f2","1f1e6-1f1f4","1f1e6-1f1f6","1f1e6-1f1f7","1f1e6-1f1f8","1f1e6-1f1f9","1f1e6-1f1fa","1f1e6-1f1fc","1f1e6-1f1fd","1f1e6-1f1ff","1f1e7","1f1e7-1f1e6","1f1e7-1f1e7","1f1e7-1f1e9","1f1e7-1f1ea","1f1e7-1f1eb","1f1e7-1f1ec","1f1e7-1f1ed","1f1e7-1f1ee","1f1e7-1f1ef","1f1e7-1f1f1","1f1e7-1f1f2","1f1e7-1f1f3","1f1e7-1f1f4","1f1e7-1f1f6","1f1e7-1f1f7","1f1e7-1f1f8","1f1e7-1f1f9","1f1e7-1f1fb","1f1e7-1f1fc","1f1e7-1f1fe","1f1e7-1f1ff","1f1e8","1f1e8-1f1e6","1f1e8-1f1e8","1f1e8-1f1e9","1f1e8-1f1eb","1f1e8-1f1ec","1f1e8-1f1ed","1f1e8-1f1ee","1f1e8-1f1f0","1f1e8-1f1f1","1f1e8-1f1f2","1f1e8-1f1f3","1f1e8-1f1f4","1f1e8-1f1f5","1f1e8-1f1f7","1f1e8-1f1fa","1f1e8-1f1fb","1f1e8-1f1fc","1f1e8-1f1fd","1f1e8-1f1fe","1f1e8-1f1ff","1f1e9","1f1e9-1f1ea","1f1e9-1f1ec","1f1e9-1f1ef","1f1e9-1f1f0","1f1e9-1f1f2","1f1e9-1f1f4","1f1e9-1f1ff","1f1ea","1f1ea-1f1e6","1f1ea-1f1e8","1f1ea-1f1ea","1f1ea-1f1ec","1f1ea-1f1ed","1f1ea-1f1f7","1f1ea-1f1f8","1f1ea-1f1f9","1f1ea-1f1fa","1f1eb","1f1eb-1f1ee","1f1eb-1f1ef","1f1eb-1f1f0","1f1eb-1f1f2","1f1eb-1f1f4","1f1eb-1f1f7","1f1ec","1f1ec-1f1e6","1f1ec-1f1e7","1f1ec-1f1e9","1f1ec-1f1ea","1f1ec-1f1eb","1f1ec-1f1ec","1f1ec-1f1ed","1f1ec-1f1ee","1f1ec-1f1f1","1f1ec-1f1f2","1f1ec-1f1f3","1f1ec-1f1f5","1f1ec-1f1f6","1f1ec-1f1f7","1f1ec-1f1f8","1f1ec-1f1f9","1f1ec-1f1fa","1f1ec-1f1fc","1f1ec-1f1fe","1f1ed","1f1ed-1f1f0","1f1ed-1f1f2","1f1ed-1f1f3","1f1ed-1f1f7","1f1ed-1f1f9","1f1ed-1f1fa","1f1ee","1f1ee-1f1e8","1f1ee-1f1e9","1f1ee-1f1ea","1f1ee-1f1f1","1f1ee-1f1f2","1f1ee-1f1f3","1f1ee-1f1f4","1f1ee-1f1f6","1f1ee-1f1f7","1f1ee-1f1f8","1f1ee-1f1f9","1f1ef","1f1ef-1f1ea","1f1ef-1f1f2","1f1ef-1f1f4","1f1ef-1f1f5","1f1f0","1f1f0-1f1ea","1f1f0-1f1ec","1f1f0-1f1ed","1f1f0-1f1ee","1f1f0-1f1f2","1f1f0-1f1f3","1f1f0-1f1f5","1f1f0-1f1f7","1f1f0-1f1fc","1f1f0-1f1fe","1f1f0-1f1ff","1f1f1","1f1f1-1f1e6","1f1f1-1f1e7","1f1f1-1f1e8","1f1f1-1f1ee","1f1f1-1f1f0","1f1f1-1f1f7","1f1f1-1f1f8","1f1f1-1f1f9","1f1f1-1f1fa","1f1f1-1f1fb","1f1f1-1f1fe","1f1f2","1f1f2-1f1e6","1f1f2-1f1e8","1f1f2-1f1e9","1f1f2-1f1ea","1f1f2-1f1eb","1f1f2-1f1ec","1f1f2-1f1ed","1f1f2-1f1f0","1f1f2-1f1f1","1f1f2-1f1f2","1f1f2-1f1f3","1f1f2-1f1f4","1f1f2-1f1f5","1f1f2-1f1f6","1f1f2-1f1f7","1f1f2-1f1f8","1f1f2-1f1f9","1f1f2-1f1fa","1f1f2-1f1fb","1f1f2-1f1fc","1f1f2-1f1fd","1f1f2-1f1fe","1f1f2-1f1ff","1f1f3","1f1f3-1f1e6","1f1f3-1f1e8","1f1f3-1f1ea","1f1f3-1f1eb","1f1f3-1f1ec","1f1f3-1f1ee","1f1f3-1f1f1","1f1f3-1f1f4","1f1f3-1f1f5","1f1f3-1f1f7","1f1f3-1f1fa","1f1f3-1f1ff","1f1f4","1f1f4-1f1f2","1f1f5","1f1f5-1f1e6","1f1f5-1f1ea","1f1f5-1f1eb","1f1f5-1f1ec","1f1f5-1f1ed","1f1f5-1f1f0","1f1f5-1f1f1","1f1f5-1f1f2","1f1f5-1f1f3","1f1f5-1f1f7","1f1f5-1f1f8","1f1f5-1f1f9","1f1f5-1f1fc","1f1f5-1f1fe","1f1f6","1f1f6-1f1e6","1f1f7","1f1f7-1f1ea","1f1f7-1f1f4","1f1f7-1f1f8","1f1f7-1f1fa","1f1f7-1f1fc","1f1f8","1f1f8-1f1e6","1f1f8-1f1e7","1f1f8-1f1e8","1f1f8-1f1e9","1f1f8-1f1ea","1f1f8-1f1ec","1f1f8-1f1ed","1f1f8-1f1ee","1f1f8-1f1ef","1f1f8-1f1f0","1f1f8-1f1f1","1f1f8-1f1f2","1f1f8-1f1f3","1f1f8-1f1f4","1f1f8-1f1f7","1f1f8-1f1f8","1f1f8-1f1f9","1f1f8-1f1fb","1f1f8-1f1fd","1f1f8-1f1fe","1f1f8-1f1ff","1f1f9","1f1f9-1f1e6","1f1f9-1f1e8","1f1f9-1f1e9","1f1f9-1f1eb","1f1f9-1f1ec","1f1f9-1f1ed","1f1f9-1f1ef","1f1f9-1f1f0","1f1f9-1f1f1","1f1f9-1f1f2","1f1f9-1f1f3","1f1f9-1f1f4","1f1f9-1f1f7","1f1f9-1f1f9","1f1f9-1f1fb","1f1f9-1f1fc","1f1f9-1f1ff","1f1fa","1f1fa-1f1e6","1f1fa-1f1ec","1f1fa-1f1f2","1f1fa-1f1f3","1f1fa-1f1f8","1f1fa-1f1fe","1f1fa-1f1ff","1f1fb","1f1fb-1f1e6","1f1fb-1f1e8","1f1fb-1f1ea","1f1fb-1f1ec","1f1fb-1f1ee","1f1fb-1f1f3","1f1fb-1f1fa","1f1fc","1f1fc-1f1eb","1f1fc-1f1f8","1f1fd","1f1fd-1f1f0","1f1fe","1f1fe-1f1ea","1f1fe-1f1f9","1f1ff","1f1ff-1f1e6","1f1ff-1f1f2","1f1ff-1f1fc","1f201","1f202","1f21a","1f22f","1f232","1f233","1f234","1f235","1f236","1f237","1f238","1f239","1f23a","1f250","1f251","1f300","1f301","1f302","1f303","1f304","1f305","1f306","1f307","1f308","1f309","1f30a","1f30b","1f30c","1f30d","1f30e","1f30f","1f310","1f311","1f312","1f313","1f314","1f315","1f316","1f317","1f318","1f319","1f31a","1f31b","1f31c","1f31d","1f31e","1f31f","1f320","1f321","1f324","1f325","1f326","1f327","1f328","1f329","1f32a","1f32b","1f32c","1f32d","1f32e","1f32f","1f330","1f331","1f332","1f333","1f334","1f335","1f336","1f337","1f338","1f339","1f33a","1f33b","1f33c","1f33d","1f33e","1f33f","1f340","1f341","1f342","1f343","1f344","1f345","1f346","1f347","1f348","1f349","1f34a","1f34b","1f34c","1f34d","1f34e","1f34f","1f350","1f351","1f352","1f353","1f354","1f355","1f356","1f357","1f358","1f359","1f35a","1f35b","1f35c","1f35d","1f35e","1f35f","1f360","1f361","1f362","1f363","1f364","1f365","1f366","1f367","1f368","1f369","1f36a","1f36b","1f36c","1f36d","1f36e","1f36f","1f370","1f371","1f372","1f373","1f374","1f375","1f376","1f377","1f378","1f379","1f37a","1f37b","1f37c","1f37d","1f37e","1f37f","1f380","1f381","1f382","1f383","1f384","1f385","1f385-1f3fb","1f385-1f3fc","1f385-1f3fd","1f385-1f3fe","1f385-1f3ff","1f386","1f387","1f388","1f389","1f38a","1f38b","1f38c","1f38d","1f38e","1f38f","1f390","1f391","1f392","1f393","1f396","1f397","1f399","1f39a","1f39b","1f39e","1f39f","1f3a0","1f3a1","1f3a2","1f3a3","1f3a4","1f3a5","1f3a6","1f3a7","1f3a8","1f3a9","1f3aa","1f3ab","1f3ac","1f3ad","1f3ae","1f3af","1f3b0","1f3b1","1f3b2","1f3b3","1f3b4","1f3b5","1f3b6","1f3b7","1f3b8","1f3b9","1f3ba","1f3bb","1f3bc","1f3bd","1f3be","1f3bf","1f3c0","1f3c1","1f3c2","1f3c2-1f3fb","1f3c2-1f3fc","1f3c2-1f3fd","1f3c2-1f3fe","1f3c2-1f3ff","1f3c3","1f3c3-1f3fb","1f3c3-1f3fb-200d-2640-fe0f","1f3c3-1f3fb-200d-2642-fe0f","1f3c3-1f3fc","1f3c3-1f3fc-200d-2640-fe0f","1f3c3-1f3fc-200d-2642-fe0f","1f3c3-1f3fd","1f3c3-1f3fd-200d-2640-fe0f","1f3c3-1f3fd-200d-2642-fe0f","1f3c3-1f3fe","1f3c3-1f3fe-200d-2640-fe0f","1f3c3-1f3fe-200d-2642-fe0f","1f3c3-1f3ff","1f3c3-1f3ff-200d-2640-fe0f","1f3c3-1f3ff-200d-2642-fe0f","1f3c3-200d-2640-fe0f","1f3c3-200d-2642-fe0f","1f3c4","1f3c4-1f3fb","1f3c4-1f3fb-200d-2640-fe0f","1f3c4-1f3fb-200d-2642-fe0f","1f3c4-1f3fc","1f3c4-1f3fc-200d-2640-fe0f","1f3c4-1f3fc-200d-2642-fe0f","1f3c4-1f3fd","1f3c4-1f3fd-200d-2640-fe0f","1f3c4-1f3fd-200d-2642-fe0f","1f3c4-1f3fe","1f3c4-1f3fe-200d-2640-fe0f","1f3c4-1f3fe-200d-2642-fe0f","1f3c4-1f3ff","1f3c4-1f3ff-200d-2640-fe0f","1f3c4-1f3ff-200d-2642-fe0f","1f3c4-200d-2640-fe0f","1f3c4-200d-2642-fe0f","1f3c5","1f3c6","1f3c7","1f3c7-1f3fb","1f3c7-1f3fc","1f3c7-1f3fd","1f3c7-1f3fe","1f3c7-1f3ff","1f3c8","1f3c9","1f3ca","1f3ca-1f3fb","1f3ca-1f3fb-200d-2640-fe0f","1f3ca-1f3fb-200d-2642-fe0f","1f3ca-1f3fc","1f3ca-1f3fc-200d-2640-fe0f","1f3ca-1f3fc-200d-2642-fe0f","1f3ca-1f3fd","1f3ca-1f3fd-200d-2640-fe0f","1f3ca-1f3fd-200d-2642-fe0f","1f3ca-1f3fe","1f3ca-1f3fe-200d-2640-fe0f","1f3ca-1f3fe-200d-2642-fe0f","1f3ca-1f3ff","1f3ca-1f3ff-200d-2640-fe0f","1f3ca-1f3ff-200d-2642-fe0f","1f3ca-200d-2640-fe0f","1f3ca-200d-2642-fe0f","1f3cb","1f3cb-1f3fb","1f3cb-1f3fb-200d-2640-fe0f","1f3cb-1f3fb-200d-2642-fe0f","1f3cb-1f3fc","1f3cb-1f3fc-200d-2640-fe0f","1f3cb-1f3fc-200d-2642-fe0f","1f3cb-1f3fd","1f3cb-1f3fd-200d-2640-fe0f","1f3cb-1f3fd-200d-2642-fe0f","1f3cb-1f3fe","1f3cb-1f3fe-200d-2640-fe0f","1f3cb-1f3fe-200d-2642-fe0f","1f3cb-1f3ff","1f3cb-1f3ff-200d-2640-fe0f","1f3cb-1f3ff-200d-2642-fe0f","1f3cb-fe0f-200d-2640-fe0f","1f3cb-fe0f-200d-2642-fe0f","1f3cc","1f3cc-1f3fb","1f3cc-1f3fb-200d-2640-fe0f","1f3cc-1f3fb-200d-2642-fe0f","1f3cc-1f3fc","1f3cc-1f3fc-200d-2640-fe0f","1f3cc-1f3fc-200d-2642-fe0f","1f3cc-1f3fd","1f3cc-1f3fd-200d-2640-fe0f","1f3cc-1f3fd-200d-2642-fe0f","1f3cc-1f3fe","1f3cc-1f3fe-200d-2640-fe0f","1f3cc-1f3fe-200d-2642-fe0f","1f3cc-1f3ff","1f3cc-1f3ff-200d-2640-fe0f","1f3cc-1f3ff-200d-2642-fe0f","1f3cc-fe0f-200d-2640-fe0f","1f3cc-fe0f-200d-2642-fe0f","1f3cd","1f3ce","1f3cf","1f3d0","1f3d1","1f3d2","1f3d3","1f3d4","1f3d5","1f3d6","1f3d7","1f3d8","1f3d9","1f3da","1f3db","1f3dc","1f3dd","1f3de","1f3df","1f3e0","1f3e1","1f3e2","1f3e3","1f3e4","1f3e5","1f3e6","1f3e7","1f3e8","1f3e9","1f3ea","1f3eb","1f3ec","1f3ed","1f3ee","1f3ef","1f3f0","1f3f3","1f3f3-fe0f-200d-1f308","1f3f3-fe0f-200d-26a7-fe0f","1f3f4","1f3f4-200d-2620-fe0f","1f3f4-e0067-e0062-e0065-e006e-e0067-e007f","1f3f4-e0067-e0062-e0073-e0063-e0074-e007f","1f3f4-e0067-e0062-e0077-e006c-e0073-e007f","1f3f5","1f3f7","1f3f8","1f3f9","1f3fa","1f3fb","1f3fc","1f3fd","1f3fe","1f3ff","1f400","1f401","1f402","1f403","1f404","1f405","1f406","1f407","1f408","1f408-200d-2b1b","1f409","1f40a","1f40b","1f40c","1f40d","1f40e","1f40f","1f410","1f411","1f412","1f413","1f414","1f415","1f415-200d-1f9ba","1f416","1f417","1f418","1f419","1f41a","1f41b","1f41c","1f41d","1f41e","1f41f","1f420","1f421","1f422","1f423","1f424","1f425","1f426","1f427","1f428","1f429","1f42a","1f42b","1f42c","1f42d","1f42e","1f42f","1f430","1f431","1f432","1f433","1f434","1f435","1f436","1f437","1f438","1f439","1f43a","1f43b","1f43b-200d-2744-fe0f","1f43c","1f43d","1f43e","1f43f","1f440","1f441","1f441-200d-1f5e8","1f442","1f442-1f3fb","1f442-1f3fc","1f442-1f3fd","1f442-1f3fe","1f442-1f3ff","1f443","1f443-1f3fb","1f443-1f3fc","1f443-1f3fd","1f443-1f3fe","1f443-1f3ff","1f444","1f445","1f446","1f446-1f3fb","1f446-1f3fc","1f446-1f3fd","1f446-1f3fe","1f446-1f3ff","1f447","1f447-1f3fb","1f447-1f3fc","1f447-1f3fd","1f447-1f3fe","1f447-1f3ff","1f448","1f448-1f3fb","1f448-1f3fc","1f448-1f3fd","1f448-1f3fe","1f448-1f3ff","1f449","1f449-1f3fb","1f449-1f3fc","1f449-1f3fd","1f449-1f3fe","1f449-1f3ff","1f44a","1f44a-1f3fb","1f44a-1f3fc","1f44a-1f3fd","1f44a-1f3fe","1f44a-1f3ff","1f44b","1f44b-1f3fb","1f44b-1f3fc","1f44b-1f3fd","1f44b-1f3fe","1f44b-1f3ff","1f44c","1f44c-1f3fb","1f44c-1f3fc","1f44c-1f3fd","1f44c-1f3fe","1f44c-1f3ff","1f44d","1f44d-1f3fb","1f44d-1f3fc","1f44d-1f3fd","1f44d-1f3fe","1f44d-1f3ff","1f44e","1f44e-1f3fb","1f44e-1f3fc","1f44e-1f3fd","1f44e-1f3fe","1f44e-1f3ff","1f44f","1f44f-1f3fb","1f44f-1f3fc","1f44f-1f3fd","1f44f-1f3fe","1f44f-1f3ff","1f450","1f450-1f3fb","1f450-1f3fc","1f450-1f3fd","1f450-1f3fe","1f450-1f3ff","1f451","1f452","1f453","1f454","1f455","1f456","1f457","1f458","1f459","1f45a","1f45b","1f45c","1f45d","1f45e","1f45f","1f460","1f461","1f462","1f463","1f464","1f465","1f466","1f466-1f3fb","1f466-1f3fc","1f466-1f3fd","1f466-1f3fe","1f466-1f3ff","1f467","1f467-1f3fb","1f467-1f3fc","1f467-1f3fd","1f467-1f3fe","1f467-1f3ff","1f468","1f468-1f3fb","1f468-1f3fb-200d-1f33e","1f468-1f3fb-200d-1f373","1f468-1f3fb-200d-1f37c","1f468-1f3fb-200d-1f384","1f468-1f3fb-200d-1f393","1f468-1f3fb-200d-1f3a4","1f468-1f3fb-200d-1f3a8","1f468-1f3fb-200d-1f3eb","1f468-1f3fb-200d-1f3ed","1f468-1f3fb-200d-1f4bb","1f468-1f3fb-200d-1f4bc","1f468-1f3fb-200d-1f527","1f468-1f3fb-200d-1f52c","1f468-1f3fb-200d-1f680","1f468-1f3fb-200d-1f692","1f468-1f3fb-200d-1f91d-200d-1f468-1f3fc","1f468-1f3fb-200d-1f91d-200d-1f468-1f3fd","1f468-1f3fb-200d-1f91d-200d-1f468-1f3fe","1f468-1f3fb-200d-1f91d-200d-1f468-1f3ff","1f468-1f3fb-200d-1f9af","1f468-1f3fb-200d-1f9b0","1f468-1f3fb-200d-1f9b1","1f468-1f3fb-200d-1f9b2","1f468-1f3fb-200d-1f9b3","1f468-1f3fb-200d-1f9bc","1f468-1f3fb-200d-1f9bd","1f468-1f3fb-200d-2695-fe0f","1f468-1f3fb-200d-2696-fe0f","1f468-1f3fb-200d-2708-fe0f","1f468-1f3fb-200d-2764-fe0f-200d-1f468-1f3fb","1f468-1f3fb-200d-2764-fe0f-200d-1f468-1f3fc","1f468-1f3fb-200d-2764-fe0f-200d-1f468-1f3fd","1f468-1f3fb-200d-2764-fe0f-200d-1f468-1f3fe","1f468-1f3fb-200d-2764-fe0f-200d-1f468-1f3ff","1f468-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb","1f468-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc","1f468-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd","1f468-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe","1f468-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff","1f468-1f3fc","1f468-1f3fc-200d-1f33e","1f468-1f3fc-200d-1f373","1f468-1f3fc-200d-1f37c","1f468-1f3fc-200d-1f384","1f468-1f3fc-200d-1f393","1f468-1f3fc-200d-1f3a4","1f468-1f3fc-200d-1f3a8","1f468-1f3fc-200d-1f3eb","1f468-1f3fc-200d-1f3ed","1f468-1f3fc-200d-1f4bb","1f468-1f3fc-200d-1f4bc","1f468-1f3fc-200d-1f527","1f468-1f3fc-200d-1f52c","1f468-1f3fc-200d-1f680","1f468-1f3fc-200d-1f692","1f468-1f3fc-200d-1f91d-200d-1f468-1f3fb","1f468-1f3fc-200d-1f91d-200d-1f468-1f3fd","1f468-1f3fc-200d-1f91d-200d-1f468-1f3fe","1f468-1f3fc-200d-1f91d-200d-1f468-1f3ff","1f468-1f3fc-200d-1f9af","1f468-1f3fc-200d-1f9b0","1f468-1f3fc-200d-1f9b1","1f468-1f3fc-200d-1f9b2","1f468-1f3fc-200d-1f9b3","1f468-1f3fc-200d-1f9bc","1f468-1f3fc-200d-1f9bd","1f468-1f3fc-200d-2695-fe0f","1f468-1f3fc-200d-2696-fe0f","1f468-1f3fc-200d-2708-fe0f","1f468-1f3fc-200d-2764-fe0f-200d-1f468-1f3fb","1f468-1f3fc-200d-2764-fe0f-200d-1f468-1f3fc","1f468-1f3fc-200d-2764-fe0f-200d-1f468-1f3fd","1f468-1f3fc-200d-2764-fe0f-200d-1f468-1f3fe","1f468-1f3fc-200d-2764-fe0f-200d-1f468-1f3ff","1f468-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb","1f468-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc","1f468-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd","1f468-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe","1f468-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff","1f468-1f3fd","1f468-1f3fd-200d-1f33e","1f468-1f3fd-200d-1f373","1f468-1f3fd-200d-1f37c","1f468-1f3fd-200d-1f384","1f468-1f3fd-200d-1f393","1f468-1f3fd-200d-1f3a4","1f468-1f3fd-200d-1f3a8","1f468-1f3fd-200d-1f3eb","1f468-1f3fd-200d-1f3ed","1f468-1f3fd-200d-1f4bb","1f468-1f3fd-200d-1f4bc","1f468-1f3fd-200d-1f527","1f468-1f3fd-200d-1f52c","1f468-1f3fd-200d-1f680","1f468-1f3fd-200d-1f692","1f468-1f3fd-200d-1f91d-200d-1f468-1f3fb","1f468-1f3fd-200d-1f91d-200d-1f468-1f3fc","1f468-1f3fd-200d-1f91d-200d-1f468-1f3fe","1f468-1f3fd-200d-1f91d-200d-1f468-1f3ff","1f468-1f3fd-200d-1f9af","1f468-1f3fd-200d-1f9b0","1f468-1f3fd-200d-1f9b1","1f468-1f3fd-200d-1f9b2","1f468-1f3fd-200d-1f9b3","1f468-1f3fd-200d-1f9bc","1f468-1f3fd-200d-1f9bd","1f468-1f3fd-200d-2695-fe0f","1f468-1f3fd-200d-2696-fe0f","1f468-1f3fd-200d-2708-fe0f","1f468-1f3fd-200d-2764-fe0f-200d-1f468-1f3fb","1f468-1f3fd-200d-2764-fe0f-200d-1f468-1f3fc","1f468-1f3fd-200d-2764-fe0f-200d-1f468-1f3fd","1f468-1f3fd-200d-2764-fe0f-200d-1f468-1f3fe","1f468-1f3fd-200d-2764-fe0f-200d-1f468-1f3ff","1f468-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb","1f468-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc","1f468-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd","1f468-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe","1f468-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff","1f468-1f3fe","1f468-1f3fe-200d-1f33e","1f468-1f3fe-200d-1f373","1f468-1f3fe-200d-1f37c","1f468-1f3fe-200d-1f384","1f468-1f3fe-200d-1f393","1f468-1f3fe-200d-1f3a4","1f468-1f3fe-200d-1f3a8","1f468-1f3fe-200d-1f3eb","1f468-1f3fe-200d-1f3ed","1f468-1f3fe-200d-1f4bb","1f468-1f3fe-200d-1f4bc","1f468-1f3fe-200d-1f527","1f468-1f3fe-200d-1f52c","1f468-1f3fe-200d-1f680","1f468-1f3fe-200d-1f692","1f468-1f3fe-200d-1f91d-200d-1f468-1f3fb","1f468-1f3fe-200d-1f91d-200d-1f468-1f3fc","1f468-1f3fe-200d-1f91d-200d-1f468-1f3fd","1f468-1f3fe-200d-1f91d-200d-1f468-1f3ff","1f468-1f3fe-200d-1f9af","1f468-1f3fe-200d-1f9b0","1f468-1f3fe-200d-1f9b1","1f468-1f3fe-200d-1f9b2","1f468-1f3fe-200d-1f9b3","1f468-1f3fe-200d-1f9bc","1f468-1f3fe-200d-1f9bd","1f468-1f3fe-200d-2695-fe0f","1f468-1f3fe-200d-2696-fe0f","1f468-1f3fe-200d-2708-fe0f","1f468-1f3fe-200d-2764-fe0f-200d-1f468-1f3fb","1f468-1f3fe-200d-2764-fe0f-200d-1f468-1f3fc","1f468-1f3fe-200d-2764-fe0f-200d-1f468-1f3fd","1f468-1f3fe-200d-2764-fe0f-200d-1f468-1f3fe","1f468-1f3fe-200d-2764-fe0f-200d-1f468-1f3ff","1f468-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb","1f468-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc","1f468-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd","1f468-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe","1f468-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff","1f468-1f3ff","1f468-1f3ff-200d-1f33e","1f468-1f3ff-200d-1f373","1f468-1f3ff-200d-1f37c","1f468-1f3ff-200d-1f384","1f468-1f3ff-200d-1f393","1f468-1f3ff-200d-1f3a4","1f468-1f3ff-200d-1f3a8","1f468-1f3ff-200d-1f3eb","1f468-1f3ff-200d-1f3ed","1f468-1f3ff-200d-1f4bb","1f468-1f3ff-200d-1f4bc","1f468-1f3ff-200d-1f527","1f468-1f3ff-200d-1f52c","1f468-1f3ff-200d-1f680","1f468-1f3ff-200d-1f692","1f468-1f3ff-200d-1f91d-200d-1f468-1f3fb","1f468-1f3ff-200d-1f91d-200d-1f468-1f3fc","1f468-1f3ff-200d-1f91d-200d-1f468-1f3fd","1f468-1f3ff-200d-1f91d-200d-1f468-1f3fe","1f468-1f3ff-200d-1f9af","1f468-1f3ff-200d-1f9b0","1f468-1f3ff-200d-1f9b1","1f468-1f3ff-200d-1f9b2","1f468-1f3ff-200d-1f9b3","1f468-1f3ff-200d-1f9bc","1f468-1f3ff-200d-1f9bd","1f468-1f3ff-200d-2695-fe0f","1f468-1f3ff-200d-2696-fe0f","1f468-1f3ff-200d-2708-fe0f","1f468-1f3ff-200d-2764-fe0f-200d-1f468-1f3fb","1f468-1f3ff-200d-2764-fe0f-200d-1f468-1f3fc","1f468-1f3ff-200d-2764-fe0f-200d-1f468-1f3fd","1f468-1f3ff-200d-2764-fe0f-200d-1f468-1f3fe","1f468-1f3ff-200d-2764-fe0f-200d-1f468-1f3ff","1f468-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb","1f468-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc","1f468-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd","1f468-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe","1f468-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff","1f468-200d-1f33e","1f468-200d-1f373","1f468-200d-1f37c","1f468-200d-1f384","1f468-200d-1f393","1f468-200d-1f3a4","1f468-200d-1f3a8","1f468-200d-1f3eb","1f468-200d-1f3ed","1f468-200d-1f466","1f468-200d-1f466-200d-1f466","1f468-200d-1f467","1f468-200d-1f467-200d-1f466","1f468-200d-1f467-200d-1f467","1f468-200d-1f468-200d-1f466","1f468-200d-1f468-200d-1f466-200d-1f466","1f468-200d-1f468-200d-1f467","1f468-200d-1f468-200d-1f467-200d-1f466","1f468-200d-1f468-200d-1f467-200d-1f467","1f468-200d-1f469-200d-1f466","1f468-200d-1f469-200d-1f466-200d-1f466","1f468-200d-1f469-200d-1f467","1f468-200d-1f469-200d-1f467-200d-1f466","1f468-200d-1f469-200d-1f467-200d-1f467","1f468-200d-1f4bb","1f468-200d-1f4bc","1f468-200d-1f527","1f468-200d-1f52c","1f468-200d-1f680","1f468-200d-1f692","1f468-200d-1f9af","1f468-200d-1f9b0","1f468-200d-1f9b1","1f468-200d-1f9b2","1f468-200d-1f9b3","1f468-200d-1f9bc","1f468-200d-1f9bd","1f468-200d-2695-fe0f","1f468-200d-2696-fe0f","1f468-200d-2708-fe0f","1f468-200d-2764-fe0f-200d-1f468","1f468-200d-2764-fe0f-200d-1f48b-200d-1f468","1f469","1f469-1f3fb","1f469-1f3fb-200d-1f33e","1f469-1f3fb-200d-1f373","1f469-1f3fb-200d-1f37c","1f469-1f3fb-200d-1f384","1f469-1f3fb-200d-1f393","1f469-1f3fb-200d-1f3a4","1f469-1f3fb-200d-1f3a8","1f469-1f3fb-200d-1f3eb","1f469-1f3fb-200d-1f3ed","1f469-1f3fb-200d-1f4bb","1f469-1f3fb-200d-1f4bc","1f469-1f3fb-200d-1f527","1f469-1f3fb-200d-1f52c","1f469-1f3fb-200d-1f680","1f469-1f3fb-200d-1f692","1f469-1f3fb-200d-1f91d-200d-1f468-1f3fc","1f469-1f3fb-200d-1f91d-200d-1f468-1f3fd","1f469-1f3fb-200d-1f91d-200d-1f468-1f3fe","1f469-1f3fb-200d-1f91d-200d-1f468-1f3ff","1f469-1f3fb-200d-1f91d-200d-1f469-1f3fc","1f469-1f3fb-200d-1f91d-200d-1f469-1f3fd","1f469-1f3fb-200d-1f91d-200d-1f469-1f3fe","1f469-1f3fb-200d-1f91d-200d-1f469-1f3ff","1f469-1f3fb-200d-1f9af","1f469-1f3fb-200d-1f9b0","1f469-1f3fb-200d-1f9b1","1f469-1f3fb-200d-1f9b2","1f469-1f3fb-200d-1f9b3","1f469-1f3fb-200d-1f9bc","1f469-1f3fb-200d-1f9bd","1f469-1f3fb-200d-2695-fe0f","1f469-1f3fb-200d-2696-fe0f","1f469-1f3fb-200d-2708-fe0f","1f469-1f3fb-200d-2764-fe0f-200d-1f468-1f3fb","1f469-1f3fb-200d-2764-fe0f-200d-1f468-1f3fc","1f469-1f3fb-200d-2764-fe0f-200d-1f468-1f3fd","1f469-1f3fb-200d-2764-fe0f-200d-1f468-1f3fe","1f469-1f3fb-200d-2764-fe0f-200d-1f468-1f3ff","1f469-1f3fb-200d-2764-fe0f-200d-1f469-1f3fb","1f469-1f3fb-200d-2764-fe0f-200d-1f469-1f3fc","1f469-1f3fb-200d-2764-fe0f-200d-1f469-1f3fd","1f469-1f3fb-200d-2764-fe0f-200d-1f469-1f3fe","1f469-1f3fb-200d-2764-fe0f-200d-1f469-1f3ff","1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb","1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc","1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd","1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe","1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff","1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fb","1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fc","1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fd","1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fe","1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3ff","1f469-1f3fc","1f469-1f3fc-200d-1f33e","1f469-1f3fc-200d-1f373","1f469-1f3fc-200d-1f37c","1f469-1f3fc-200d-1f384","1f469-1f3fc-200d-1f393","1f469-1f3fc-200d-1f3a4","1f469-1f3fc-200d-1f3a8","1f469-1f3fc-200d-1f3eb","1f469-1f3fc-200d-1f3ed","1f469-1f3fc-200d-1f4bb","1f469-1f3fc-200d-1f4bc","1f469-1f3fc-200d-1f527","1f469-1f3fc-200d-1f52c","1f469-1f3fc-200d-1f680","1f469-1f3fc-200d-1f692","1f469-1f3fc-200d-1f91d-200d-1f468-1f3fb","1f469-1f3fc-200d-1f91d-200d-1f468-1f3fd","1f469-1f3fc-200d-1f91d-200d-1f468-1f3fe","1f469-1f3fc-200d-1f91d-200d-1f468-1f3ff","1f469-1f3fc-200d-1f91d-200d-1f469-1f3fb","1f469-1f3fc-200d-1f91d-200d-1f469-1f3fd","1f469-1f3fc-200d-1f91d-200d-1f469-1f3fe","1f469-1f3fc-200d-1f91d-200d-1f469-1f3ff","1f469-1f3fc-200d-1f9af","1f469-1f3fc-200d-1f9b0","1f469-1f3fc-200d-1f9b1","1f469-1f3fc-200d-1f9b2","1f469-1f3fc-200d-1f9b3","1f469-1f3fc-200d-1f9bc","1f469-1f3fc-200d-1f9bd","1f469-1f3fc-200d-2695-fe0f","1f469-1f3fc-200d-2696-fe0f","1f469-1f3fc-200d-2708-fe0f","1f469-1f3fc-200d-2764-fe0f-200d-1f468-1f3fb","1f469-1f3fc-200d-2764-fe0f-200d-1f468-1f3fc","1f469-1f3fc-200d-2764-fe0f-200d-1f468-1f3fd","1f469-1f3fc-200d-2764-fe0f-200d-1f468-1f3fe","1f469-1f3fc-200d-2764-fe0f-200d-1f468-1f3ff","1f469-1f3fc-200d-2764-fe0f-200d-1f469-1f3fb","1f469-1f3fc-200d-2764-fe0f-200d-1f469-1f3fc","1f469-1f3fc-200d-2764-fe0f-200d-1f469-1f3fd","1f469-1f3fc-200d-2764-fe0f-200d-1f469-1f3fe","1f469-1f3fc-200d-2764-fe0f-200d-1f469-1f3ff","1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb","1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc","1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd","1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe","1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff","1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fb","1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fc","1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fd","1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fe","1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3ff","1f469-1f3fd","1f469-1f3fd-200d-1f33e","1f469-1f3fd-200d-1f373","1f469-1f3fd-200d-1f37c","1f469-1f3fd-200d-1f384","1f469-1f3fd-200d-1f393","1f469-1f3fd-200d-1f3a4","1f469-1f3fd-200d-1f3a8","1f469-1f3fd-200d-1f3eb","1f469-1f3fd-200d-1f3ed","1f469-1f3fd-200d-1f4bb","1f469-1f3fd-200d-1f4bc","1f469-1f3fd-200d-1f527","1f469-1f3fd-200d-1f52c","1f469-1f3fd-200d-1f680","1f469-1f3fd-200d-1f692","1f469-1f3fd-200d-1f91d-200d-1f468-1f3fb","1f469-1f3fd-200d-1f91d-200d-1f468-1f3fc","1f469-1f3fd-200d-1f91d-200d-1f468-1f3fe","1f469-1f3fd-200d-1f91d-200d-1f468-1f3ff","1f469-1f3fd-200d-1f91d-200d-1f469-1f3fb","1f469-1f3fd-200d-1f91d-200d-1f469-1f3fc","1f469-1f3fd-200d-1f91d-200d-1f469-1f3fe","1f469-1f3fd-200d-1f91d-200d-1f469-1f3ff","1f469-1f3fd-200d-1f9af","1f469-1f3fd-200d-1f9b0","1f469-1f3fd-200d-1f9b1","1f469-1f3fd-200d-1f9b2","1f469-1f3fd-200d-1f9b3","1f469-1f3fd-200d-1f9bc","1f469-1f3fd-200d-1f9bd","1f469-1f3fd-200d-2695-fe0f","1f469-1f3fd-200d-2696-fe0f","1f469-1f3fd-200d-2708-fe0f","1f469-1f3fd-200d-2764-fe0f-200d-1f468-1f3fb","1f469-1f3fd-200d-2764-fe0f-200d-1f468-1f3fc","1f469-1f3fd-200d-2764-fe0f-200d-1f468-1f3fd","1f469-1f3fd-200d-2764-fe0f-200d-1f468-1f3fe","1f469-1f3fd-200d-2764-fe0f-200d-1f468-1f3ff","1f469-1f3fd-200d-2764-fe0f-200d-1f469-1f3fb","1f469-1f3fd-200d-2764-fe0f-200d-1f469-1f3fc","1f469-1f3fd-200d-2764-fe0f-200d-1f469-1f3fd","1f469-1f3fd-200d-2764-fe0f-200d-1f469-1f3fe","1f469-1f3fd-200d-2764-fe0f-200d-1f469-1f3ff","1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb","1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc","1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd","1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe","1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff","1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fb","1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fc","1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fd","1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fe","1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3ff","1f469-1f3fe","1f469-1f3fe-200d-1f33e","1f469-1f3fe-200d-1f373","1f469-1f3fe-200d-1f37c","1f469-1f3fe-200d-1f384","1f469-1f3fe-200d-1f393","1f469-1f3fe-200d-1f3a4","1f469-1f3fe-200d-1f3a8","1f469-1f3fe-200d-1f3eb","1f469-1f3fe-200d-1f3ed","1f469-1f3fe-200d-1f4bb","1f469-1f3fe-200d-1f4bc","1f469-1f3fe-200d-1f527","1f469-1f3fe-200d-1f52c","1f469-1f3fe-200d-1f680","1f469-1f3fe-200d-1f692","1f469-1f3fe-200d-1f91d-200d-1f468-1f3fb","1f469-1f3fe-200d-1f91d-200d-1f468-1f3fc","1f469-1f3fe-200d-1f91d-200d-1f468-1f3fd","1f469-1f3fe-200d-1f91d-200d-1f468-1f3ff","1f469-1f3fe-200d-1f91d-200d-1f469-1f3fb","1f469-1f3fe-200d-1f91d-200d-1f469-1f3fc","1f469-1f3fe-200d-1f91d-200d-1f469-1f3fd","1f469-1f3fe-200d-1f91d-200d-1f469-1f3ff","1f469-1f3fe-200d-1f9af","1f469-1f3fe-200d-1f9b0","1f469-1f3fe-200d-1f9b1","1f469-1f3fe-200d-1f9b2","1f469-1f3fe-200d-1f9b3","1f469-1f3fe-200d-1f9bc","1f469-1f3fe-200d-1f9bd","1f469-1f3fe-200d-2695-fe0f","1f469-1f3fe-200d-2696-fe0f","1f469-1f3fe-200d-2708-fe0f","1f469-1f3fe-200d-2764-fe0f-200d-1f468-1f3fb","1f469-1f3fe-200d-2764-fe0f-200d-1f468-1f3fc","1f469-1f3fe-200d-2764-fe0f-200d-1f468-1f3fd","1f469-1f3fe-200d-2764-fe0f-200d-1f468-1f3fe","1f469-1f3fe-200d-2764-fe0f-200d-1f468-1f3ff","1f469-1f3fe-200d-2764-fe0f-200d-1f469-1f3fb","1f469-1f3fe-200d-2764-fe0f-200d-1f469-1f3fc","1f469-1f3fe-200d-2764-fe0f-200d-1f469-1f3fd","1f469-1f3fe-200d-2764-fe0f-200d-1f469-1f3fe","1f469-1f3fe-200d-2764-fe0f-200d-1f469-1f3ff","1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb","1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc","1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd","1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe","1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff","1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fb","1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fc","1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fd","1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fe","1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3ff","1f469-1f3ff","1f469-1f3ff-200d-1f33e","1f469-1f3ff-200d-1f373","1f469-1f3ff-200d-1f37c","1f469-1f3ff-200d-1f384","1f469-1f3ff-200d-1f393","1f469-1f3ff-200d-1f3a4","1f469-1f3ff-200d-1f3a8","1f469-1f3ff-200d-1f3eb","1f469-1f3ff-200d-1f3ed","1f469-1f3ff-200d-1f4bb","1f469-1f3ff-200d-1f4bc","1f469-1f3ff-200d-1f527","1f469-1f3ff-200d-1f52c","1f469-1f3ff-200d-1f680","1f469-1f3ff-200d-1f692","1f469-1f3ff-200d-1f91d-200d-1f468-1f3fb","1f469-1f3ff-200d-1f91d-200d-1f468-1f3fc","1f469-1f3ff-200d-1f91d-200d-1f468-1f3fd","1f469-1f3ff-200d-1f91d-200d-1f468-1f3fe","1f469-1f3ff-200d-1f91d-200d-1f469-1f3fb","1f469-1f3ff-200d-1f91d-200d-1f469-1f3fc","1f469-1f3ff-200d-1f91d-200d-1f469-1f3fd","1f469-1f3ff-200d-1f91d-200d-1f469-1f3fe","1f469-1f3ff-200d-1f9af","1f469-1f3ff-200d-1f9b0","1f469-1f3ff-200d-1f9b1","1f469-1f3ff-200d-1f9b2","1f469-1f3ff-200d-1f9b3","1f469-1f3ff-200d-1f9bc","1f469-1f3ff-200d-1f9bd","1f469-1f3ff-200d-2695-fe0f","1f469-1f3ff-200d-2696-fe0f","1f469-1f3ff-200d-2708-fe0f","1f469-1f3ff-200d-2764-fe0f-200d-1f468-1f3fb","1f469-1f3ff-200d-2764-fe0f-200d-1f468-1f3fc","1f469-1f3ff-200d-2764-fe0f-200d-1f468-1f3fd","1f469-1f3ff-200d-2764-fe0f-200d-1f468-1f3fe","1f469-1f3ff-200d-2764-fe0f-200d-1f468-1f3ff","1f469-1f3ff-200d-2764-fe0f-200d-1f469-1f3fb","1f469-1f3ff-200d-2764-fe0f-200d-1f469-1f3fc","1f469-1f3ff-200d-2764-fe0f-200d-1f469-1f3fd","1f469-1f3ff-200d-2764-fe0f-200d-1f469-1f3fe","1f469-1f3ff-200d-2764-fe0f-200d-1f469-1f3ff","1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb","1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc","1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd","1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe","1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff","1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fb","1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fc","1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fd","1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fe","1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3ff","1f469-200d-1f33e","1f469-200d-1f373","1f469-200d-1f37c","1f469-200d-1f384","1f469-200d-1f393","1f469-200d-1f3a4","1f469-200d-1f3a8","1f469-200d-1f3eb","1f469-200d-1f3ed","1f469-200d-1f466","1f469-200d-1f466-200d-1f466","1f469-200d-1f467","1f469-200d-1f467-200d-1f466","1f469-200d-1f467-200d-1f467","1f469-200d-1f469-200d-1f466","1f469-200d-1f469-200d-1f466-200d-1f466","1f469-200d-1f469-200d-1f467","1f469-200d-1f469-200d-1f467-200d-1f466","1f469-200d-1f469-200d-1f467-200d-1f467","1f469-200d-1f4bb","1f469-200d-1f4bc","1f469-200d-1f527","1f469-200d-1f52c","1f469-200d-1f680","1f469-200d-1f692","1f469-200d-1f9af","1f469-200d-1f9b0","1f469-200d-1f9b1","1f469-200d-1f9b2","1f469-200d-1f9b3","1f469-200d-1f9bc","1f469-200d-1f9bd","1f469-200d-2695-fe0f","1f469-200d-2696-fe0f","1f469-200d-2708-fe0f","1f469-200d-2764-fe0f-200d-1f468","1f469-200d-2764-fe0f-200d-1f469","1f469-200d-2764-fe0f-200d-1f48b-200d-1f468","1f469-200d-2764-fe0f-200d-1f48b-200d-1f469","1f46a","1f46b","1f46b-1f3fb","1f46b-1f3fc","1f46b-1f3fd","1f46b-1f3fe","1f46b-1f3ff","1f46c","1f46c-1f3fb","1f46c-1f3fc","1f46c-1f3fd","1f46c-1f3fe","1f46c-1f3ff","1f46d","1f46d-1f3fb","1f46d-1f3fc","1f46d-1f3fd","1f46d-1f3fe","1f46d-1f3ff","1f46e","1f46e-1f3fb","1f46e-1f3fb-200d-2640-fe0f","1f46e-1f3fb-200d-2642-fe0f","1f46e-1f3fc","1f46e-1f3fc-200d-2640-fe0f","1f46e-1f3fc-200d-2642-fe0f","1f46e-1f3fd","1f46e-1f3fd-200d-2640-fe0f","1f46e-1f3fd-200d-2642-fe0f","1f46e-1f3fe","1f46e-1f3fe-200d-2640-fe0f","1f46e-1f3fe-200d-2642-fe0f","1f46e-1f3ff","1f46e-1f3ff-200d-2640-fe0f","1f46e-1f3ff-200d-2642-fe0f","1f46e-200d-2640-fe0f","1f46e-200d-2642-fe0f","1f46f","1f46f-200d-2640-fe0f","1f46f-200d-2642-fe0f","1f470","1f470-1f3fb","1f470-1f3fb-200d-2640-fe0f","1f470-1f3fb-200d-2642-fe0f","1f470-1f3fc","1f470-1f3fc-200d-2640-fe0f","1f470-1f3fc-200d-2642-fe0f","1f470-1f3fd","1f470-1f3fd-200d-2640-fe0f","1f470-1f3fd-200d-2642-fe0f","1f470-1f3fe","1f470-1f3fe-200d-2640-fe0f","1f470-1f3fe-200d-2642-fe0f","1f470-1f3ff","1f470-1f3ff-200d-2640-fe0f","1f470-1f3ff-200d-2642-fe0f","1f470-200d-2640-fe0f","1f470-200d-2642-fe0f","1f471","1f471-1f3fb","1f471-1f3fb-200d-2640-fe0f","1f471-1f3fb-200d-2642-fe0f","1f471-1f3fc","1f471-1f3fc-200d-2640-fe0f","1f471-1f3fc-200d-2642-fe0f","1f471-1f3fd","1f471-1f3fd-200d-2640-fe0f","1f471-1f3fd-200d-2642-fe0f","1f471-1f3fe","1f471-1f3fe-200d-2640-fe0f","1f471-1f3fe-200d-2642-fe0f","1f471-1f3ff","1f471-1f3ff-200d-2640-fe0f","1f471-1f3ff-200d-2642-fe0f","1f471-200d-2640-fe0f","1f471-200d-2642-fe0f","1f472","1f472-1f3fb","1f472-1f3fc","1f472-1f3fd","1f472-1f3fe","1f472-1f3ff","1f473","1f473-1f3fb","1f473-1f3fb-200d-2640-fe0f","1f473-1f3fb-200d-2642-fe0f","1f473-1f3fc","1f473-1f3fc-200d-2640-fe0f","1f473-1f3fc-200d-2642-fe0f","1f473-1f3fd","1f473-1f3fd-200d-2640-fe0f","1f473-1f3fd-200d-2642-fe0f","1f473-1f3fe","1f473-1f3fe-200d-2640-fe0f","1f473-1f3fe-200d-2642-fe0f","1f473-1f3ff","1f473-1f3ff-200d-2640-fe0f","1f473-1f3ff-200d-2642-fe0f","1f473-200d-2640-fe0f","1f473-200d-2642-fe0f","1f474","1f474-1f3fb","1f474-1f3fc","1f474-1f3fd","1f474-1f3fe","1f474-1f3ff","1f475","1f475-1f3fb","1f475-1f3fc","1f475-1f3fd","1f475-1f3fe","1f475-1f3ff","1f476","1f476-1f3fb","1f476-1f3fc","1f476-1f3fd","1f476-1f3fe","1f476-1f3ff","1f477","1f477-1f3fb","1f477-1f3fb-200d-2640-fe0f","1f477-1f3fb-200d-2642-fe0f","1f477-1f3fc","1f477-1f3fc-200d-2640-fe0f","1f477-1f3fc-200d-2642-fe0f","1f477-1f3fd","1f477-1f3fd-200d-2640-fe0f","1f477-1f3fd-200d-2642-fe0f","1f477-1f3fe","1f477-1f3fe-200d-2640-fe0f","1f477-1f3fe-200d-2642-fe0f","1f477-1f3ff","1f477-1f3ff-200d-2640-fe0f","1f477-1f3ff-200d-2642-fe0f","1f477-200d-2640-fe0f","1f477-200d-2642-fe0f","1f478","1f478-1f3fb","1f478-1f3fc","1f478-1f3fd","1f478-1f3fe","1f478-1f3ff","1f479","1f47a","1f47b","1f47c","1f47c-1f3fb","1f47c-1f3fc","1f47c-1f3fd","1f47c-1f3fe","1f47c-1f3ff","1f47d","1f47e","1f47f","1f480","1f481","1f481-1f3fb","1f481-1f3fb-200d-2640-fe0f","1f481-1f3fb-200d-2642-fe0f","1f481-1f3fc","1f481-1f3fc-200d-2640-fe0f","1f481-1f3fc-200d-2642-fe0f","1f481-1f3fd","1f481-1f3fd-200d-2640-fe0f","1f481-1f3fd-200d-2642-fe0f","1f481-1f3fe","1f481-1f3fe-200d-2640-fe0f","1f481-1f3fe-200d-2642-fe0f","1f481-1f3ff","1f481-1f3ff-200d-2640-fe0f","1f481-1f3ff-200d-2642-fe0f","1f481-200d-2640-fe0f","1f481-200d-2642-fe0f","1f482","1f482-1f3fb","1f482-1f3fb-200d-2640-fe0f","1f482-1f3fb-200d-2642-fe0f","1f482-1f3fc","1f482-1f3fc-200d-2640-fe0f","1f482-1f3fc-200d-2642-fe0f","1f482-1f3fd","1f482-1f3fd-200d-2640-fe0f","1f482-1f3fd-200d-2642-fe0f","1f482-1f3fe","1f482-1f3fe-200d-2640-fe0f","1f482-1f3fe-200d-2642-fe0f","1f482-1f3ff","1f482-1f3ff-200d-2640-fe0f","1f482-1f3ff-200d-2642-fe0f","1f482-200d-2640-fe0f","1f482-200d-2642-fe0f","1f483","1f483-1f3fb","1f483-1f3fc","1f483-1f3fd","1f483-1f3fe","1f483-1f3ff","1f484","1f485","1f485-1f3fb","1f485-1f3fc","1f485-1f3fd","1f485-1f3fe","1f485-1f3ff","1f486","1f486-1f3fb","1f486-1f3fb-200d-2640-fe0f","1f486-1f3fb-200d-2642-fe0f","1f486-1f3fc","1f486-1f3fc-200d-2640-fe0f","1f486-1f3fc-200d-2642-fe0f","1f486-1f3fd","1f486-1f3fd-200d-2640-fe0f","1f486-1f3fd-200d-2642-fe0f","1f486-1f3fe","1f486-1f3fe-200d-2640-fe0f","1f486-1f3fe-200d-2642-fe0f","1f486-1f3ff","1f486-1f3ff-200d-2640-fe0f","1f486-1f3ff-200d-2642-fe0f","1f486-200d-2640-fe0f","1f486-200d-2642-fe0f","1f487","1f487-1f3fb","1f487-1f3fb-200d-2640-fe0f","1f487-1f3fb-200d-2642-fe0f","1f487-1f3fc","1f487-1f3fc-200d-2640-fe0f","1f487-1f3fc-200d-2642-fe0f","1f487-1f3fd","1f487-1f3fd-200d-2640-fe0f","1f487-1f3fd-200d-2642-fe0f","1f487-1f3fe","1f487-1f3fe-200d-2640-fe0f","1f487-1f3fe-200d-2642-fe0f","1f487-1f3ff","1f487-1f3ff-200d-2640-fe0f","1f487-1f3ff-200d-2642-fe0f","1f487-200d-2640-fe0f","1f487-200d-2642-fe0f","1f488","1f489","1f48a","1f48b","1f48c","1f48d","1f48e","1f48f","1f48f-1f3fb","1f48f-1f3fc","1f48f-1f3fd","1f48f-1f3fe","1f48f-1f3ff","1f490","1f491","1f491-1f3fb","1f491-1f3fc","1f491-1f3fd","1f491-1f3fe","1f491-1f3ff","1f492","1f493","1f494","1f495","1f496","1f497","1f498","1f499","1f49a","1f49b","1f49c","1f49d","1f49e","1f49f","1f4a0","1f4a1","1f4a2","1f4a3","1f4a4","1f4a5","1f4a6","1f4a7","1f4a8","1f4a9","1f4aa","1f4aa-1f3fb","1f4aa-1f3fc","1f4aa-1f3fd","1f4aa-1f3fe","1f4aa-1f3ff","1f4ab","1f4ac","1f4ad","1f4ae","1f4af","1f4b0","1f4b1","1f4b2","1f4b3","1f4b4","1f4b5","1f4b6","1f4b7","1f4b8","1f4b9","1f4ba","1f4bb","1f4bc","1f4bd","1f4be","1f4bf","1f4c0","1f4c1","1f4c2","1f4c3","1f4c4","1f4c5","1f4c6","1f4c7","1f4c8","1f4c9","1f4ca","1f4cb","1f4cc","1f4cd","1f4ce","1f4cf","1f4d0","1f4d1","1f4d2","1f4d3","1f4d4","1f4d5","1f4d6","1f4d7","1f4d8","1f4d9","1f4da","1f4db","1f4dc","1f4dd","1f4de","1f4df","1f4e0","1f4e1","1f4e2","1f4e3","1f4e4","1f4e5","1f4e6","1f4e7","1f4e8","1f4e9","1f4ea","1f4eb","1f4ec","1f4ed","1f4ee","1f4ef","1f4f0","1f4f1","1f4f2","1f4f3","1f4f4","1f4f5","1f4f6","1f4f7","1f4f8","1f4f9","1f4fa","1f4fb","1f4fc","1f4fd","1f4ff","1f500","1f501","1f502","1f503","1f504","1f505","1f506","1f507","1f508","1f509","1f50a","1f50b","1f50c","1f50d","1f50e","1f50f","1f510","1f511","1f512","1f513","1f514","1f515","1f516","1f517","1f518","1f519","1f51a","1f51b","1f51c","1f51d","1f51e","1f51f","1f520","1f521","1f522","1f523","1f524","1f525","1f526","1f527","1f528","1f529","1f52a","1f52b","1f52c","1f52d","1f52e","1f52f","1f530","1f531","1f532","1f533","1f534","1f535","1f536","1f537","1f538","1f539","1f53a","1f53b","1f53c","1f53d","1f549","1f54a","1f54b","1f54c","1f54d","1f54e","1f550","1f551","1f552","1f553","1f554","1f555","1f556","1f557","1f558","1f559","1f55a","1f55b","1f55c","1f55d","1f55e","1f55f","1f560","1f561","1f562","1f563","1f564","1f565","1f566","1f567","1f56f","1f570","1f573","1f574","1f574-1f3fb","1f574-1f3fb-200d-2640-fe0f","1f574-1f3fb-200d-2642-fe0f","1f574-1f3fc","1f574-1f3fc-200d-2640-fe0f","1f574-1f3fc-200d-2642-fe0f","1f574-1f3fd","1f574-1f3fd-200d-2640-fe0f","1f574-1f3fd-200d-2642-fe0f","1f574-1f3fe","1f574-1f3fe-200d-2640-fe0f","1f574-1f3fe-200d-2642-fe0f","1f574-1f3ff","1f574-1f3ff-200d-2640-fe0f","1f574-1f3ff-200d-2642-fe0f","1f574-fe0f-200d-2640-fe0f","1f574-fe0f-200d-2642-fe0f","1f575","1f575-1f3fb","1f575-1f3fb-200d-2640-fe0f","1f575-1f3fb-200d-2642-fe0f","1f575-1f3fc","1f575-1f3fc-200d-2640-fe0f","1f575-1f3fc-200d-2642-fe0f","1f575-1f3fd","1f575-1f3fd-200d-2640-fe0f","1f575-1f3fd-200d-2642-fe0f","1f575-1f3fe","1f575-1f3fe-200d-2640-fe0f","1f575-1f3fe-200d-2642-fe0f","1f575-1f3ff","1f575-1f3ff-200d-2640-fe0f","1f575-1f3ff-200d-2642-fe0f","1f575-fe0f-200d-2640-fe0f","1f575-fe0f-200d-2642-fe0f","1f576","1f577","1f578","1f579","1f57a","1f57a-1f3fb","1f57a-1f3fc","1f57a-1f3fd","1f57a-1f3fe","1f57a-1f3ff","1f587","1f58a","1f58b","1f58c","1f58d","1f590","1f590-1f3fb","1f590-1f3fc","1f590-1f3fd","1f590-1f3fe","1f590-1f3ff","1f595","1f595-1f3fb","1f595-1f3fc","1f595-1f3fd","1f595-1f3fe","1f595-1f3ff","1f596","1f596-1f3fb","1f596-1f3fc","1f596-1f3fd","1f596-1f3fe","1f596-1f3ff","1f5a4","1f5a5","1f5a8","1f5b1","1f5b2","1f5bc","1f5c2","1f5c3","1f5c4","1f5d1","1f5d2","1f5d3","1f5dc","1f5dd","1f5de","1f5e1","1f5e3","1f5e8","1f5ef","1f5f3","1f5fa","1f5fb","1f5fc","1f5fd","1f5fe","1f5ff","1f600","1f601","1f602","1f603","1f604","1f605","1f606","1f607","1f608","1f609","1f60a","1f60b","1f60c","1f60d","1f60e","1f60f","1f610","1f611","1f612","1f613","1f614","1f615","1f616","1f617","1f618","1f619","1f61a","1f61b","1f61c","1f61d","1f61e","1f61f","1f620","1f621","1f622","1f623","1f624","1f625","1f626","1f627","1f628","1f629","1f62a","1f62b","1f62c","1f62d","1f62e","1f62e-200d-1f4a8","1f62f","1f630","1f631","1f632","1f633","1f634","1f635","1f635-200d-1f4ab","1f636","1f636-200d-1f32b-fe0f","1f637","1f638","1f639","1f63a","1f63b","1f63c","1f63d","1f63e","1f63f","1f640","1f641","1f642","1f643","1f644","1f645","1f645-1f3fb","1f645-1f3fb-200d-2640-fe0f","1f645-1f3fb-200d-2642-fe0f","1f645-1f3fc","1f645-1f3fc-200d-2640-fe0f","1f645-1f3fc-200d-2642-fe0f","1f645-1f3fd","1f645-1f3fd-200d-2640-fe0f","1f645-1f3fd-200d-2642-fe0f","1f645-1f3fe","1f645-1f3fe-200d-2640-fe0f","1f645-1f3fe-200d-2642-fe0f","1f645-1f3ff","1f645-1f3ff-200d-2640-fe0f","1f645-1f3ff-200d-2642-fe0f","1f645-200d-2640-fe0f","1f645-200d-2642-fe0f","1f646","1f646-1f3fb","1f646-1f3fb-200d-2640-fe0f","1f646-1f3fb-200d-2642-fe0f","1f646-1f3fc","1f646-1f3fc-200d-2640-fe0f","1f646-1f3fc-200d-2642-fe0f","1f646-1f3fd","1f646-1f3fd-200d-2640-fe0f","1f646-1f3fd-200d-2642-fe0f","1f646-1f3fe","1f646-1f3fe-200d-2640-fe0f","1f646-1f3fe-200d-2642-fe0f","1f646-1f3ff","1f646-1f3ff-200d-2640-fe0f","1f646-1f3ff-200d-2642-fe0f","1f646-200d-2640-fe0f","1f646-200d-2642-fe0f","1f647","1f647-1f3fb","1f647-1f3fb-200d-2640-fe0f","1f647-1f3fb-200d-2642-fe0f","1f647-1f3fc","1f647-1f3fc-200d-2640-fe0f","1f647-1f3fc-200d-2642-fe0f","1f647-1f3fd","1f647-1f3fd-200d-2640-fe0f","1f647-1f3fd-200d-2642-fe0f","1f647-1f3fe","1f647-1f3fe-200d-2640-fe0f","1f647-1f3fe-200d-2642-fe0f","1f647-1f3ff","1f647-1f3ff-200d-2640-fe0f","1f647-1f3ff-200d-2642-fe0f","1f647-200d-2640-fe0f","1f647-200d-2642-fe0f","1f648","1f649","1f64a","1f64b","1f64b-1f3fb","1f64b-1f3fb-200d-2640-fe0f","1f64b-1f3fb-200d-2642-fe0f","1f64b-1f3fc","1f64b-1f3fc-200d-2640-fe0f","1f64b-1f3fc-200d-2642-fe0f","1f64b-1f3fd","1f64b-1f3fd-200d-2640-fe0f","1f64b-1f3fd-200d-2642-fe0f","1f64b-1f3fe","1f64b-1f3fe-200d-2640-fe0f","1f64b-1f3fe-200d-2642-fe0f","1f64b-1f3ff","1f64b-1f3ff-200d-2640-fe0f","1f64b-1f3ff-200d-2642-fe0f","1f64b-200d-2640-fe0f","1f64b-200d-2642-fe0f","1f64c","1f64c-1f3fb","1f64c-1f3fc","1f64c-1f3fd","1f64c-1f3fe","1f64c-1f3ff","1f64d","1f64d-1f3fb","1f64d-1f3fb-200d-2640-fe0f","1f64d-1f3fb-200d-2642-fe0f","1f64d-1f3fc","1f64d-1f3fc-200d-2640-fe0f","1f64d-1f3fc-200d-2642-fe0f","1f64d-1f3fd","1f64d-1f3fd-200d-2640-fe0f","1f64d-1f3fd-200d-2642-fe0f","1f64d-1f3fe","1f64d-1f3fe-200d-2640-fe0f","1f64d-1f3fe-200d-2642-fe0f","1f64d-1f3ff","1f64d-1f3ff-200d-2640-fe0f","1f64d-1f3ff-200d-2642-fe0f","1f64d-200d-2640-fe0f","1f64d-200d-2642-fe0f","1f64e","1f64e-1f3fb","1f64e-1f3fb-200d-2640-fe0f","1f64e-1f3fb-200d-2642-fe0f","1f64e-1f3fc","1f64e-1f3fc-200d-2640-fe0f","1f64e-1f3fc-200d-2642-fe0f","1f64e-1f3fd","1f64e-1f3fd-200d-2640-fe0f","1f64e-1f3fd-200d-2642-fe0f","1f64e-1f3fe","1f64e-1f3fe-200d-2640-fe0f","1f64e-1f3fe-200d-2642-fe0f","1f64e-1f3ff","1f64e-1f3ff-200d-2640-fe0f","1f64e-1f3ff-200d-2642-fe0f","1f64e-200d-2640-fe0f","1f64e-200d-2642-fe0f","1f64f","1f64f-1f3fb","1f64f-1f3fc","1f64f-1f3fd","1f64f-1f3fe","1f64f-1f3ff","1f680","1f681","1f682","1f683","1f684","1f685","1f686","1f687","1f688","1f689","1f68a","1f68b","1f68c","1f68d","1f68e","1f68f","1f690","1f691","1f692","1f693","1f694","1f695","1f696","1f697","1f698","1f699","1f69a","1f69b","1f69c","1f69d","1f69e","1f69f","1f6a0","1f6a1","1f6a2","1f6a3","1f6a3-1f3fb","1f6a3-1f3fb-200d-2640-fe0f","1f6a3-1f3fb-200d-2642-fe0f","1f6a3-1f3fc","1f6a3-1f3fc-200d-2640-fe0f","1f6a3-1f3fc-200d-2642-fe0f","1f6a3-1f3fd","1f6a3-1f3fd-200d-2640-fe0f","1f6a3-1f3fd-200d-2642-fe0f","1f6a3-1f3fe","1f6a3-1f3fe-200d-2640-fe0f","1f6a3-1f3fe-200d-2642-fe0f","1f6a3-1f3ff","1f6a3-1f3ff-200d-2640-fe0f","1f6a3-1f3ff-200d-2642-fe0f","1f6a3-200d-2640-fe0f","1f6a3-200d-2642-fe0f","1f6a4","1f6a5","1f6a6","1f6a7","1f6a8","1f6a9","1f6aa","1f6ab","1f6ac","1f6ad","1f6ae","1f6af","1f6b0","1f6b1","1f6b2","1f6b3","1f6b4","1f6b4-1f3fb","1f6b4-1f3fb-200d-2640-fe0f","1f6b4-1f3fb-200d-2642-fe0f","1f6b4-1f3fc","1f6b4-1f3fc-200d-2640-fe0f","1f6b4-1f3fc-200d-2642-fe0f","1f6b4-1f3fd","1f6b4-1f3fd-200d-2640-fe0f","1f6b4-1f3fd-200d-2642-fe0f","1f6b4-1f3fe","1f6b4-1f3fe-200d-2640-fe0f","1f6b4-1f3fe-200d-2642-fe0f","1f6b4-1f3ff","1f6b4-1f3ff-200d-2640-fe0f","1f6b4-1f3ff-200d-2642-fe0f","1f6b4-200d-2640-fe0f","1f6b4-200d-2642-fe0f","1f6b5","1f6b5-1f3fb","1f6b5-1f3fb-200d-2640-fe0f","1f6b5-1f3fb-200d-2642-fe0f","1f6b5-1f3fc","1f6b5-1f3fc-200d-2640-fe0f","1f6b5-1f3fc-200d-2642-fe0f","1f6b5-1f3fd","1f6b5-1f3fd-200d-2640-fe0f","1f6b5-1f3fd-200d-2642-fe0f","1f6b5-1f3fe","1f6b5-1f3fe-200d-2640-fe0f","1f6b5-1f3fe-200d-2642-fe0f","1f6b5-1f3ff","1f6b5-1f3ff-200d-2640-fe0f","1f6b5-1f3ff-200d-2642-fe0f","1f6b5-200d-2640-fe0f","1f6b5-200d-2642-fe0f","1f6b6","1f6b6-1f3fb","1f6b6-1f3fb-200d-2640-fe0f","1f6b6-1f3fb-200d-2642-fe0f","1f6b6-1f3fc","1f6b6-1f3fc-200d-2640-fe0f","1f6b6-1f3fc-200d-2642-fe0f","1f6b6-1f3fd","1f6b6-1f3fd-200d-2640-fe0f","1f6b6-1f3fd-200d-2642-fe0f","1f6b6-1f3fe","1f6b6-1f3fe-200d-2640-fe0f","1f6b6-1f3fe-200d-2642-fe0f","1f6b6-1f3ff","1f6b6-1f3ff-200d-2640-fe0f","1f6b6-1f3ff-200d-2642-fe0f","1f6b6-200d-2640-fe0f","1f6b6-200d-2642-fe0f","1f6b7","1f6b8","1f6b9","1f6ba","1f6bb","1f6bc","1f6bd","1f6be","1f6bf","1f6c0","1f6c0-1f3fb","1f6c0-1f3fc","1f6c0-1f3fd","1f6c0-1f3fe","1f6c0-1f3ff","1f6c1","1f6c2","1f6c3","1f6c4","1f6c5","1f6cb","1f6cc","1f6cc-1f3fb","1f6cc-1f3fc","1f6cc-1f3fd","1f6cc-1f3fe","1f6cc-1f3ff","1f6cd","1f6ce","1f6cf","1f6d0","1f6d1","1f6d2","1f6d5","1f6d6","1f6d7","1f6dd","1f6de","1f6df","1f6e0","1f6e1","1f6e2","1f6e3","1f6e4","1f6e5","1f6e9","1f6eb","1f6ec","1f6f0","1f6f3","1f6f4","1f6f5","1f6f6","1f6f7","1f6f8","1f6f9","1f6fa","1f6fb","1f6fc","1f7e0","1f7e1","1f7e2","1f7e3","1f7e4","1f7e5","1f7e6","1f7e7","1f7e8","1f7e9","1f7ea","1f7eb","1f7f0","1f90c","1f90c-1f3fb","1f90c-1f3fc","1f90c-1f3fd","1f90c-1f3fe","1f90c-1f3ff","1f90d","1f90e","1f90f","1f90f-1f3fb","1f90f-1f3fc","1f90f-1f3fd","1f90f-1f3fe","1f90f-1f3ff","1f910","1f911","1f912","1f913","1f914","1f915","1f916","1f917","1f918","1f918-1f3fb","1f918-1f3fc","1f918-1f3fd","1f918-1f3fe","1f918-1f3ff","1f919","1f919-1f3fb","1f919-1f3fc","1f919-1f3fd","1f919-1f3fe","1f919-1f3ff","1f91a","1f91a-1f3fb","1f91a-1f3fc","1f91a-1f3fd","1f91a-1f3fe","1f91a-1f3ff","1f91b","1f91b-1f3fb","1f91b-1f3fc","1f91b-1f3fd","1f91b-1f3fe","1f91b-1f3ff","1f91c","1f91c-1f3fb","1f91c-1f3fc","1f91c-1f3fd","1f91c-1f3fe","1f91c-1f3ff","1f91d","1f91d-1f3fb","1f91d-1f3fc","1f91d-1f3fd","1f91d-1f3fe","1f91d-1f3ff","1f91e","1f91e-1f3fb","1f91e-1f3fc","1f91e-1f3fd","1f91e-1f3fe","1f91e-1f3ff","1f91f","1f91f-1f3fb","1f91f-1f3fc","1f91f-1f3fd","1f91f-1f3fe","1f91f-1f3ff","1f920","1f921","1f922","1f923","1f924","1f925","1f926","1f926-1f3fb","1f926-1f3fb-200d-2640-fe0f","1f926-1f3fb-200d-2642-fe0f","1f926-1f3fc","1f926-1f3fc-200d-2640-fe0f","1f926-1f3fc-200d-2642-fe0f","1f926-1f3fd","1f926-1f3fd-200d-2640-fe0f","1f926-1f3fd-200d-2642-fe0f","1f926-1f3fe","1f926-1f3fe-200d-2640-fe0f","1f926-1f3fe-200d-2642-fe0f","1f926-1f3ff","1f926-1f3ff-200d-2640-fe0f","1f926-1f3ff-200d-2642-fe0f","1f926-200d-2640-fe0f","1f926-200d-2642-fe0f","1f927","1f928","1f929","1f92a","1f92b","1f92c","1f92d","1f92e","1f92f","1f930","1f930-1f3fb","1f930-1f3fc","1f930-1f3fd","1f930-1f3fe","1f930-1f3ff","1f931","1f931-1f3fb","1f931-1f3fc","1f931-1f3fd","1f931-1f3fe","1f931-1f3ff","1f932","1f932-1f3fb","1f932-1f3fc","1f932-1f3fd","1f932-1f3fe","1f932-1f3ff","1f933","1f933-1f3fb","1f933-1f3fc","1f933-1f3fd","1f933-1f3fe","1f933-1f3ff","1f934","1f934-1f3fb","1f934-1f3fc","1f934-1f3fd","1f934-1f3fe","1f934-1f3ff","1f935","1f935-1f3fb","1f935-1f3fb-200d-2640-fe0f","1f935-1f3fb-200d-2642-fe0f","1f935-1f3fc","1f935-1f3fc-200d-2640-fe0f","1f935-1f3fc-200d-2642-fe0f","1f935-1f3fd","1f935-1f3fd-200d-2640-fe0f","1f935-1f3fd-200d-2642-fe0f","1f935-1f3fe","1f935-1f3fe-200d-2640-fe0f","1f935-1f3fe-200d-2642-fe0f","1f935-1f3ff","1f935-1f3ff-200d-2640-fe0f","1f935-1f3ff-200d-2642-fe0f","1f935-200d-2640-fe0f","1f935-200d-2642-fe0f","1f936","1f936-1f3fb","1f936-1f3fc","1f936-1f3fd","1f936-1f3fe","1f936-1f3ff","1f937","1f937-1f3fb","1f937-1f3fb-200d-2640-fe0f","1f937-1f3fb-200d-2642-fe0f","1f937-1f3fc","1f937-1f3fc-200d-2640-fe0f","1f937-1f3fc-200d-2642-fe0f","1f937-1f3fd","1f937-1f3fd-200d-2640-fe0f","1f937-1f3fd-200d-2642-fe0f","1f937-1f3fe","1f937-1f3fe-200d-2640-fe0f","1f937-1f3fe-200d-2642-fe0f","1f937-1f3ff","1f937-1f3ff-200d-2640-fe0f","1f937-1f3ff-200d-2642-fe0f","1f937-200d-2640-fe0f","1f937-200d-2642-fe0f","1f938","1f938-1f3fb","1f938-1f3fb-200d-2640-fe0f","1f938-1f3fb-200d-2642-fe0f","1f938-1f3fc","1f938-1f3fc-200d-2640-fe0f","1f938-1f3fc-200d-2642-fe0f","1f938-1f3fd","1f938-1f3fd-200d-2640-fe0f","1f938-1f3fd-200d-2642-fe0f","1f938-1f3fe","1f938-1f3fe-200d-2640-fe0f","1f938-1f3fe-200d-2642-fe0f","1f938-1f3ff","1f938-1f3ff-200d-2640-fe0f","1f938-1f3ff-200d-2642-fe0f","1f938-200d-2640-fe0f","1f938-200d-2642-fe0f","1f939","1f939-1f3fb","1f939-1f3fb-200d-2640-fe0f","1f939-1f3fb-200d-2642-fe0f","1f939-1f3fc","1f939-1f3fc-200d-2640-fe0f","1f939-1f3fc-200d-2642-fe0f","1f939-1f3fd","1f939-1f3fd-200d-2640-fe0f","1f939-1f3fd-200d-2642-fe0f","1f939-1f3fe","1f939-1f3fe-200d-2640-fe0f","1f939-1f3fe-200d-2642-fe0f","1f939-1f3ff","1f939-1f3ff-200d-2640-fe0f","1f939-1f3ff-200d-2642-fe0f","1f939-200d-2640-fe0f","1f939-200d-2642-fe0f","1f93a","1f93c","1f93c-200d-2640-fe0f","1f93c-200d-2642-fe0f","1f93d","1f93d-1f3fb","1f93d-1f3fb-200d-2640-fe0f","1f93d-1f3fb-200d-2642-fe0f","1f93d-1f3fc","1f93d-1f3fc-200d-2640-fe0f","1f93d-1f3fc-200d-2642-fe0f","1f93d-1f3fd","1f93d-1f3fd-200d-2640-fe0f","1f93d-1f3fd-200d-2642-fe0f","1f93d-1f3fe","1f93d-1f3fe-200d-2640-fe0f","1f93d-1f3fe-200d-2642-fe0f","1f93d-1f3ff","1f93d-1f3ff-200d-2640-fe0f","1f93d-1f3ff-200d-2642-fe0f","1f93d-200d-2640-fe0f","1f93d-200d-2642-fe0f","1f93e","1f93e-1f3fb","1f93e-1f3fb-200d-2640-fe0f","1f93e-1f3fb-200d-2642-fe0f","1f93e-1f3fc","1f93e-1f3fc-200d-2640-fe0f","1f93e-1f3fc-200d-2642-fe0f","1f93e-1f3fd","1f93e-1f3fd-200d-2640-fe0f","1f93e-1f3fd-200d-2642-fe0f","1f93e-1f3fe","1f93e-1f3fe-200d-2640-fe0f","1f93e-1f3fe-200d-2642-fe0f","1f93e-1f3ff","1f93e-1f3ff-200d-2640-fe0f","1f93e-1f3ff-200d-2642-fe0f","1f93e-200d-2640-fe0f","1f93e-200d-2642-fe0f","1f93f","1f940","1f941","1f942","1f943","1f944","1f945","1f947","1f948","1f949","1f94a","1f94b","1f94c","1f94d","1f94e","1f94f","1f950","1f951","1f952","1f953","1f954","1f955","1f956","1f957","1f958","1f959","1f95a","1f95b","1f95c","1f95d","1f95e","1f95f","1f960","1f961","1f962","1f963","1f964","1f965","1f966","1f967","1f968","1f969","1f96a","1f96b","1f96c","1f96d","1f96e","1f96f","1f970","1f971","1f972","1f973","1f974","1f975","1f976","1f977","1f977-1f3fb","1f977-1f3fc","1f977-1f3fd","1f977-1f3fe","1f977-1f3ff","1f978","1f979","1f97a","1f97b","1f97c","1f97d","1f97e","1f97f","1f980","1f981","1f982","1f983","1f984","1f985","1f986","1f987","1f988","1f989","1f98a","1f98b","1f98c","1f98d","1f98e","1f98f","1f990","1f991","1f992","1f993","1f994","1f995","1f996","1f997","1f998","1f999","1f99a","1f99b","1f99c","1f99d","1f99e","1f99f","1f9a0","1f9a1","1f9a2","1f9a3","1f9a4","1f9a5","1f9a6","1f9a7","1f9a8","1f9a9","1f9aa","1f9ab","1f9ac","1f9ad","1f9ae","1f9af","1f9b0","1f9b1","1f9b2","1f9b3","1f9b4","1f9b5","1f9b5-1f3fb","1f9b5-1f3fc","1f9b5-1f3fd","1f9b5-1f3fe","1f9b5-1f3ff","1f9b6","1f9b6-1f3fb","1f9b6-1f3fc","1f9b6-1f3fd","1f9b6-1f3fe","1f9b6-1f3ff","1f9b7","1f9b8","1f9b8-1f3fb","1f9b8-1f3fb-200d-2640-fe0f","1f9b8-1f3fb-200d-2642-fe0f","1f9b8-1f3fc","1f9b8-1f3fc-200d-2640-fe0f","1f9b8-1f3fc-200d-2642-fe0f","1f9b8-1f3fd","1f9b8-1f3fd-200d-2640-fe0f","1f9b8-1f3fd-200d-2642-fe0f","1f9b8-1f3fe","1f9b8-1f3fe-200d-2640-fe0f","1f9b8-1f3fe-200d-2642-fe0f","1f9b8-1f3ff","1f9b8-1f3ff-200d-2640-fe0f","1f9b8-1f3ff-200d-2642-fe0f","1f9b8-200d-2640-fe0f","1f9b8-200d-2642-fe0f","1f9b9","1f9b9-1f3fb","1f9b9-1f3fb-200d-2640-fe0f","1f9b9-1f3fb-200d-2642-fe0f","1f9b9-1f3fc","1f9b9-1f3fc-200d-2640-fe0f","1f9b9-1f3fc-200d-2642-fe0f","1f9b9-1f3fd","1f9b9-1f3fd-200d-2640-fe0f","1f9b9-1f3fd-200d-2642-fe0f","1f9b9-1f3fe","1f9b9-1f3fe-200d-2640-fe0f","1f9b9-1f3fe-200d-2642-fe0f","1f9b9-1f3ff","1f9b9-1f3ff-200d-2640-fe0f","1f9b9-1f3ff-200d-2642-fe0f","1f9b9-200d-2640-fe0f","1f9b9-200d-2642-fe0f","1f9ba","1f9bb","1f9bb-1f3fb","1f9bb-1f3fc","1f9bb-1f3fd","1f9bb-1f3fe","1f9bb-1f3ff","1f9bc","1f9bd","1f9be","1f9bf","1f9c0","1f9c1","1f9c2","1f9c3","1f9c4","1f9c5","1f9c6","1f9c7","1f9c8","1f9c9","1f9ca","1f9cb","1f9cc","1f9cd","1f9cd-1f3fb","1f9cd-1f3fb-200d-2640-fe0f","1f9cd-1f3fb-200d-2642-fe0f","1f9cd-1f3fc","1f9cd-1f3fc-200d-2640-fe0f","1f9cd-1f3fc-200d-2642-fe0f","1f9cd-1f3fd","1f9cd-1f3fd-200d-2640-fe0f","1f9cd-1f3fd-200d-2642-fe0f","1f9cd-1f3fe","1f9cd-1f3fe-200d-2640-fe0f","1f9cd-1f3fe-200d-2642-fe0f","1f9cd-1f3ff","1f9cd-1f3ff-200d-2640-fe0f","1f9cd-1f3ff-200d-2642-fe0f","1f9cd-200d-2640-fe0f","1f9cd-200d-2642-fe0f","1f9ce","1f9ce-1f3fb","1f9ce-1f3fb-200d-2640-fe0f","1f9ce-1f3fb-200d-2642-fe0f","1f9ce-1f3fc","1f9ce-1f3fc-200d-2640-fe0f","1f9ce-1f3fc-200d-2642-fe0f","1f9ce-1f3fd","1f9ce-1f3fd-200d-2640-fe0f","1f9ce-1f3fd-200d-2642-fe0f","1f9ce-1f3fe","1f9ce-1f3fe-200d-2640-fe0f","1f9ce-1f3fe-200d-2642-fe0f","1f9ce-1f3ff","1f9ce-1f3ff-200d-2640-fe0f","1f9ce-1f3ff-200d-2642-fe0f","1f9ce-200d-2640-fe0f","1f9ce-200d-2642-fe0f","1f9cf","1f9cf-1f3fb","1f9cf-1f3fb-200d-2640-fe0f","1f9cf-1f3fb-200d-2642-fe0f","1f9cf-1f3fc","1f9cf-1f3fc-200d-2640-fe0f","1f9cf-1f3fc-200d-2642-fe0f","1f9cf-1f3fd","1f9cf-1f3fd-200d-2640-fe0f","1f9cf-1f3fd-200d-2642-fe0f","1f9cf-1f3fe","1f9cf-1f3fe-200d-2640-fe0f","1f9cf-1f3fe-200d-2642-fe0f","1f9cf-1f3ff","1f9cf-1f3ff-200d-2640-fe0f","1f9cf-1f3ff-200d-2642-fe0f","1f9cf-200d-2640-fe0f","1f9cf-200d-2642-fe0f","1f9d0","1f9d1","1f9d1-1f3fb","1f9d1-1f3fb-200d-1f33e","1f9d1-1f3fb-200d-1f373","1f9d1-1f3fb-200d-1f37c","1f9d1-1f3fb-200d-1f384","1f9d1-1f3fb-200d-1f393","1f9d1-1f3fb-200d-1f3a4","1f9d1-1f3fb-200d-1f3a8","1f9d1-1f3fb-200d-1f3eb","1f9d1-1f3fb-200d-1f3ed","1f9d1-1f3fb-200d-1f4bb","1f9d1-1f3fb-200d-1f4bc","1f9d1-1f3fb-200d-1f527","1f9d1-1f3fb-200d-1f52c","1f9d1-1f3fb-200d-1f680","1f9d1-1f3fb-200d-1f692","1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fb","1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fc","1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fd","1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fe","1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3ff","1f9d1-1f3fb-200d-1f9af","1f9d1-1f3fb-200d-1f9b0","1f9d1-1f3fb-200d-1f9b1","1f9d1-1f3fb-200d-1f9b2","1f9d1-1f3fb-200d-1f9b3","1f9d1-1f3fb-200d-1f9bc","1f9d1-1f3fb-200d-1f9bd","1f9d1-1f3fb-200d-2695-fe0f","1f9d1-1f3fb-200d-2696-fe0f","1f9d1-1f3fb-200d-2708-fe0f","1f9d1-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fc","1f9d1-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fd","1f9d1-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fe","1f9d1-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3ff","1f9d1-1f3fb-200d-2764-fe0f-200d-1f9d1-1f3fc","1f9d1-1f3fb-200d-2764-fe0f-200d-1f9d1-1f3fd","1f9d1-1f3fb-200d-2764-fe0f-200d-1f9d1-1f3fe","1f9d1-1f3fb-200d-2764-fe0f-200d-1f9d1-1f3ff","1f9d1-1f3fc","1f9d1-1f3fc-200d-1f33e","1f9d1-1f3fc-200d-1f373","1f9d1-1f3fc-200d-1f37c","1f9d1-1f3fc-200d-1f384","1f9d1-1f3fc-200d-1f393","1f9d1-1f3fc-200d-1f3a4","1f9d1-1f3fc-200d-1f3a8","1f9d1-1f3fc-200d-1f3eb","1f9d1-1f3fc-200d-1f3ed","1f9d1-1f3fc-200d-1f4bb","1f9d1-1f3fc-200d-1f4bc","1f9d1-1f3fc-200d-1f527","1f9d1-1f3fc-200d-1f52c","1f9d1-1f3fc-200d-1f680","1f9d1-1f3fc-200d-1f692","1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fb","1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fc","1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fd","1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fe","1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3ff","1f9d1-1f3fc-200d-1f9af","1f9d1-1f3fc-200d-1f9b0","1f9d1-1f3fc-200d-1f9b1","1f9d1-1f3fc-200d-1f9b2","1f9d1-1f3fc-200d-1f9b3","1f9d1-1f3fc-200d-1f9bc","1f9d1-1f3fc-200d-1f9bd","1f9d1-1f3fc-200d-2695-fe0f","1f9d1-1f3fc-200d-2696-fe0f","1f9d1-1f3fc-200d-2708-fe0f","1f9d1-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fb","1f9d1-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fd","1f9d1-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fe","1f9d1-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3ff","1f9d1-1f3fc-200d-2764-fe0f-200d-1f9d1-1f3fb","1f9d1-1f3fc-200d-2764-fe0f-200d-1f9d1-1f3fd","1f9d1-1f3fc-200d-2764-fe0f-200d-1f9d1-1f3fe","1f9d1-1f3fc-200d-2764-fe0f-200d-1f9d1-1f3ff","1f9d1-1f3fd","1f9d1-1f3fd-200d-1f33e","1f9d1-1f3fd-200d-1f373","1f9d1-1f3fd-200d-1f37c","1f9d1-1f3fd-200d-1f384","1f9d1-1f3fd-200d-1f393","1f9d1-1f3fd-200d-1f3a4","1f9d1-1f3fd-200d-1f3a8","1f9d1-1f3fd-200d-1f3eb","1f9d1-1f3fd-200d-1f3ed","1f9d1-1f3fd-200d-1f4bb","1f9d1-1f3fd-200d-1f4bc","1f9d1-1f3fd-200d-1f527","1f9d1-1f3fd-200d-1f52c","1f9d1-1f3fd-200d-1f680","1f9d1-1f3fd-200d-1f692","1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fb","1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fc","1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fd","1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fe","1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3ff","1f9d1-1f3fd-200d-1f9af","1f9d1-1f3fd-200d-1f9b0","1f9d1-1f3fd-200d-1f9b1","1f9d1-1f3fd-200d-1f9b2","1f9d1-1f3fd-200d-1f9b3","1f9d1-1f3fd-200d-1f9bc","1f9d1-1f3fd-200d-1f9bd","1f9d1-1f3fd-200d-2695-fe0f","1f9d1-1f3fd-200d-2696-fe0f","1f9d1-1f3fd-200d-2708-fe0f","1f9d1-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fb","1f9d1-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fc","1f9d1-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fe","1f9d1-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3ff","1f9d1-1f3fd-200d-2764-fe0f-200d-1f9d1-1f3fb","1f9d1-1f3fd-200d-2764-fe0f-200d-1f9d1-1f3fc","1f9d1-1f3fd-200d-2764-fe0f-200d-1f9d1-1f3fe","1f9d1-1f3fd-200d-2764-fe0f-200d-1f9d1-1f3ff","1f9d1-1f3fe","1f9d1-1f3fe-200d-1f33e","1f9d1-1f3fe-200d-1f373","1f9d1-1f3fe-200d-1f37c","1f9d1-1f3fe-200d-1f384","1f9d1-1f3fe-200d-1f393","1f9d1-1f3fe-200d-1f3a4","1f9d1-1f3fe-200d-1f3a8","1f9d1-1f3fe-200d-1f3eb","1f9d1-1f3fe-200d-1f3ed","1f9d1-1f3fe-200d-1f4bb","1f9d1-1f3fe-200d-1f4bc","1f9d1-1f3fe-200d-1f527","1f9d1-1f3fe-200d-1f52c","1f9d1-1f3fe-200d-1f680","1f9d1-1f3fe-200d-1f692","1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fb","1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fc","1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fd","1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fe","1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3ff","1f9d1-1f3fe-200d-1f9af","1f9d1-1f3fe-200d-1f9b0","1f9d1-1f3fe-200d-1f9b1","1f9d1-1f3fe-200d-1f9b2","1f9d1-1f3fe-200d-1f9b3","1f9d1-1f3fe-200d-1f9bc","1f9d1-1f3fe-200d-1f9bd","1f9d1-1f3fe-200d-2695-fe0f","1f9d1-1f3fe-200d-2696-fe0f","1f9d1-1f3fe-200d-2708-fe0f","1f9d1-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fb","1f9d1-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fc","1f9d1-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fd","1f9d1-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3ff","1f9d1-1f3fe-200d-2764-fe0f-200d-1f9d1-1f3fb","1f9d1-1f3fe-200d-2764-fe0f-200d-1f9d1-1f3fc","1f9d1-1f3fe-200d-2764-fe0f-200d-1f9d1-1f3fd","1f9d1-1f3fe-200d-2764-fe0f-200d-1f9d1-1f3ff","1f9d1-1f3ff","1f9d1-1f3ff-200d-1f33e","1f9d1-1f3ff-200d-1f373","1f9d1-1f3ff-200d-1f37c","1f9d1-1f3ff-200d-1f384","1f9d1-1f3ff-200d-1f393","1f9d1-1f3ff-200d-1f3a4","1f9d1-1f3ff-200d-1f3a8","1f9d1-1f3ff-200d-1f3eb","1f9d1-1f3ff-200d-1f3ed","1f9d1-1f3ff-200d-1f4bb","1f9d1-1f3ff-200d-1f4bc","1f9d1-1f3ff-200d-1f527","1f9d1-1f3ff-200d-1f52c","1f9d1-1f3ff-200d-1f680","1f9d1-1f3ff-200d-1f692","1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fb","1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fc","1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fd","1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fe","1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3ff","1f9d1-1f3ff-200d-1f9af","1f9d1-1f3ff-200d-1f9b0","1f9d1-1f3ff-200d-1f9b1","1f9d1-1f3ff-200d-1f9b2","1f9d1-1f3ff-200d-1f9b3","1f9d1-1f3ff-200d-1f9bc","1f9d1-1f3ff-200d-1f9bd","1f9d1-1f3ff-200d-2695-fe0f","1f9d1-1f3ff-200d-2696-fe0f","1f9d1-1f3ff-200d-2708-fe0f","1f9d1-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fb","1f9d1-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fc","1f9d1-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fd","1f9d1-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fe","1f9d1-1f3ff-200d-2764-fe0f-200d-1f9d1-1f3fb","1f9d1-1f3ff-200d-2764-fe0f-200d-1f9d1-1f3fc","1f9d1-1f3ff-200d-2764-fe0f-200d-1f9d1-1f3fd","1f9d1-1f3ff-200d-2764-fe0f-200d-1f9d1-1f3fe","1f9d1-200d-1f33e","1f9d1-200d-1f373","1f9d1-200d-1f37c","1f9d1-200d-1f384","1f9d1-200d-1f393","1f9d1-200d-1f3a4","1f9d1-200d-1f3a8","1f9d1-200d-1f3eb","1f9d1-200d-1f3ed","1f9d1-200d-1f4bb","1f9d1-200d-1f4bc","1f9d1-200d-1f527","1f9d1-200d-1f52c","1f9d1-200d-1f680","1f9d1-200d-1f692","1f9d1-200d-1f91d-200d-1f9d1","1f9d1-200d-1f9af","1f9d1-200d-1f9b0","1f9d1-200d-1f9b1","1f9d1-200d-1f9b2","1f9d1-200d-1f9b3","1f9d1-200d-1f9bc","1f9d1-200d-1f9bd","1f9d1-200d-2695-fe0f","1f9d1-200d-2696-fe0f","1f9d1-200d-2708-fe0f","1f9d2","1f9d2-1f3fb","1f9d2-1f3fc","1f9d2-1f3fd","1f9d2-1f3fe","1f9d2-1f3ff","1f9d3","1f9d3-1f3fb","1f9d3-1f3fc","1f9d3-1f3fd","1f9d3-1f3fe","1f9d3-1f3ff","1f9d4","1f9d4-1f3fb","1f9d4-1f3fb-200d-2640-fe0f","1f9d4-1f3fb-200d-2642-fe0f","1f9d4-1f3fc","1f9d4-1f3fc-200d-2640-fe0f","1f9d4-1f3fc-200d-2642-fe0f","1f9d4-1f3fd","1f9d4-1f3fd-200d-2640-fe0f","1f9d4-1f3fd-200d-2642-fe0f","1f9d4-1f3fe","1f9d4-1f3fe-200d-2640-fe0f","1f9d4-1f3fe-200d-2642-fe0f","1f9d4-1f3ff","1f9d4-1f3ff-200d-2640-fe0f","1f9d4-1f3ff-200d-2642-fe0f","1f9d4-200d-2640-fe0f","1f9d4-200d-2642-fe0f","1f9d5","1f9d5-1f3fb","1f9d5-1f3fc","1f9d5-1f3fd","1f9d5-1f3fe","1f9d5-1f3ff","1f9d6","1f9d6-1f3fb","1f9d6-1f3fb-200d-2640-fe0f","1f9d6-1f3fb-200d-2642-fe0f","1f9d6-1f3fc","1f9d6-1f3fc-200d-2640-fe0f","1f9d6-1f3fc-200d-2642-fe0f","1f9d6-1f3fd","1f9d6-1f3fd-200d-2640-fe0f","1f9d6-1f3fd-200d-2642-fe0f","1f9d6-1f3fe","1f9d6-1f3fe-200d-2640-fe0f","1f9d6-1f3fe-200d-2642-fe0f","1f9d6-1f3ff","1f9d6-1f3ff-200d-2640-fe0f","1f9d6-1f3ff-200d-2642-fe0f","1f9d6-200d-2640-fe0f","1f9d6-200d-2642-fe0f","1f9d7","1f9d7-1f3fb","1f9d7-1f3fb-200d-2640-fe0f","1f9d7-1f3fb-200d-2642-fe0f","1f9d7-1f3fc","1f9d7-1f3fc-200d-2640-fe0f","1f9d7-1f3fc-200d-2642-fe0f","1f9d7-1f3fd","1f9d7-1f3fd-200d-2640-fe0f","1f9d7-1f3fd-200d-2642-fe0f","1f9d7-1f3fe","1f9d7-1f3fe-200d-2640-fe0f","1f9d7-1f3fe-200d-2642-fe0f","1f9d7-1f3ff","1f9d7-1f3ff-200d-2640-fe0f","1f9d7-1f3ff-200d-2642-fe0f","1f9d7-200d-2640-fe0f","1f9d7-200d-2642-fe0f","1f9d8","1f9d8-1f3fb","1f9d8-1f3fb-200d-2640-fe0f","1f9d8-1f3fb-200d-2642-fe0f","1f9d8-1f3fc","1f9d8-1f3fc-200d-2640-fe0f","1f9d8-1f3fc-200d-2642-fe0f","1f9d8-1f3fd","1f9d8-1f3fd-200d-2640-fe0f","1f9d8-1f3fd-200d-2642-fe0f","1f9d8-1f3fe","1f9d8-1f3fe-200d-2640-fe0f","1f9d8-1f3fe-200d-2642-fe0f","1f9d8-1f3ff","1f9d8-1f3ff-200d-2640-fe0f","1f9d8-1f3ff-200d-2642-fe0f","1f9d8-200d-2640-fe0f","1f9d8-200d-2642-fe0f","1f9d9","1f9d9-1f3fb","1f9d9-1f3fb-200d-2640-fe0f","1f9d9-1f3fb-200d-2642-fe0f","1f9d9-1f3fc","1f9d9-1f3fc-200d-2640-fe0f","1f9d9-1f3fc-200d-2642-fe0f","1f9d9-1f3fd","1f9d9-1f3fd-200d-2640-fe0f","1f9d9-1f3fd-200d-2642-fe0f","1f9d9-1f3fe","1f9d9-1f3fe-200d-2640-fe0f","1f9d9-1f3fe-200d-2642-fe0f","1f9d9-1f3ff","1f9d9-1f3ff-200d-2640-fe0f","1f9d9-1f3ff-200d-2642-fe0f","1f9d9-200d-2640-fe0f","1f9d9-200d-2642-fe0f","1f9da","1f9da-1f3fb","1f9da-1f3fb-200d-2640-fe0f","1f9da-1f3fb-200d-2642-fe0f","1f9da-1f3fc","1f9da-1f3fc-200d-2640-fe0f","1f9da-1f3fc-200d-2642-fe0f","1f9da-1f3fd","1f9da-1f3fd-200d-2640-fe0f","1f9da-1f3fd-200d-2642-fe0f","1f9da-1f3fe","1f9da-1f3fe-200d-2640-fe0f","1f9da-1f3fe-200d-2642-fe0f","1f9da-1f3ff","1f9da-1f3ff-200d-2640-fe0f","1f9da-1f3ff-200d-2642-fe0f","1f9da-200d-2640-fe0f","1f9da-200d-2642-fe0f","1f9db","1f9db-1f3fb","1f9db-1f3fb-200d-2640-fe0f","1f9db-1f3fb-200d-2642-fe0f","1f9db-1f3fc","1f9db-1f3fc-200d-2640-fe0f","1f9db-1f3fc-200d-2642-fe0f","1f9db-1f3fd","1f9db-1f3fd-200d-2640-fe0f","1f9db-1f3fd-200d-2642-fe0f","1f9db-1f3fe","1f9db-1f3fe-200d-2640-fe0f","1f9db-1f3fe-200d-2642-fe0f","1f9db-1f3ff","1f9db-1f3ff-200d-2640-fe0f","1f9db-1f3ff-200d-2642-fe0f","1f9db-200d-2640-fe0f","1f9db-200d-2642-fe0f","1f9dc","1f9dc-1f3fb","1f9dc-1f3fb-200d-2640-fe0f","1f9dc-1f3fb-200d-2642-fe0f","1f9dc-1f3fc","1f9dc-1f3fc-200d-2640-fe0f","1f9dc-1f3fc-200d-2642-fe0f","1f9dc-1f3fd","1f9dc-1f3fd-200d-2640-fe0f","1f9dc-1f3fd-200d-2642-fe0f","1f9dc-1f3fe","1f9dc-1f3fe-200d-2640-fe0f","1f9dc-1f3fe-200d-2642-fe0f","1f9dc-1f3ff","1f9dc-1f3ff-200d-2640-fe0f","1f9dc-1f3ff-200d-2642-fe0f","1f9dc-200d-2640-fe0f","1f9dc-200d-2642-fe0f","1f9dd","1f9dd-1f3fb","1f9dd-1f3fb-200d-2640-fe0f","1f9dd-1f3fb-200d-2642-fe0f","1f9dd-1f3fc","1f9dd-1f3fc-200d-2640-fe0f","1f9dd-1f3fc-200d-2642-fe0f","1f9dd-1f3fd","1f9dd-1f3fd-200d-2640-fe0f","1f9dd-1f3fd-200d-2642-fe0f","1f9dd-1f3fe","1f9dd-1f3fe-200d-2640-fe0f","1f9dd-1f3fe-200d-2642-fe0f","1f9dd-1f3ff","1f9dd-1f3ff-200d-2640-fe0f","1f9dd-1f3ff-200d-2642-fe0f","1f9dd-200d-2640-fe0f","1f9dd-200d-2642-fe0f","1f9de","1f9de-200d-2640-fe0f","1f9de-200d-2642-fe0f","1f9df","1f9df-200d-2640-fe0f","1f9df-200d-2642-fe0f","1f9e0","1f9e1","1f9e2","1f9e3","1f9e4","1f9e5","1f9e6","1f9e7","1f9e8","1f9e9","1f9ea","1f9eb","1f9ec","1f9ed","1f9ee","1f9ef","1f9f0","1f9f1","1f9f2","1f9f3","1f9f4","1f9f5","1f9f6","1f9f7","1f9f8","1f9f9","1f9fa","1f9fb","1f9fc","1f9fd","1f9fe","1f9ff","1fa70","1fa71","1fa72","1fa73","1fa74","1fa78","1fa79","1fa7a","1fa7b","1fa7c","1fa80","1fa81","1fa82","1fa83","1fa84","1fa85","1fa86","1fa90","1fa91","1fa92","1fa93","1fa94","1fa95","1fa96","1fa97","1fa98","1fa99","1fa9a","1fa9b","1fa9c","1fa9d","1fa9e","1fa9f","1faa0","1faa1","1faa2","1faa3","1faa4","1faa5","1faa6","1faa7","1faa8","1faa9","1faaa","1faab","1faac","1fab0","1fab1","1fab2","1fab3","1fab4","1fab5","1fab6","1fab7","1fab8","1fab9","1faba","1fac0","1fac1","1fac2","1fac3","1fac3-1f3fb","1fac3-1f3fc","1fac3-1f3fd","1fac3-1f3fe","1fac3-1f3ff","1fac4","1fac4-1f3fb","1fac4-1f3fc","1fac4-1f3fd","1fac4-1f3fe","1fac4-1f3ff","1fac5","1fac5-1f3fb","1fac5-1f3fc","1fac5-1f3fd","1fac5-1f3fe","1fac5-1f3ff","1fad0","1fad1","1fad2","1fad3","1fad4","1fad5","1fad6","1fad7","1fad8","1fad9","1fae0","1fae1","1fae2","1fae3","1fae4","1fae5","1fae6","1fae7","1faf0","1faf0-1f3fb","1faf0-1f3fc","1faf0-1f3fd","1faf0-1f3fe","1faf0-1f3ff","1faf1","1faf1-1f3fb","1faf1-1f3fb-200d-1faf2-1f3fc","1faf1-1f3fb-200d-1faf2-1f3fd","1faf1-1f3fb-200d-1faf2-1f3fe","1faf1-1f3fb-200d-1faf2-1f3ff","1faf1-1f3fc","1faf1-1f3fc-200d-1faf2-1f3fb","1faf1-1f3fc-200d-1faf2-1f3fd","1faf1-1f3fc-200d-1faf2-1f3fe","1faf1-1f3fc-200d-1faf2-1f3ff","1faf1-1f3fd","1faf1-1f3fd-200d-1faf2-1f3fb","1faf1-1f3fd-200d-1faf2-1f3fc","1faf1-1f3fd-200d-1faf2-1f3fe","1faf1-1f3fd-200d-1faf2-1f3ff","1faf1-1f3fe","1faf1-1f3fe-200d-1faf2-1f3fb","1faf1-1f3fe-200d-1faf2-1f3fc","1faf1-1f3fe-200d-1faf2-1f3fd","1faf1-1f3fe-200d-1faf2-1f3ff","1faf1-1f3ff","1faf1-1f3ff-200d-1faf2-1f3fb","1faf1-1f3ff-200d-1faf2-1f3fc","1faf1-1f3ff-200d-1faf2-1f3fd","1faf1-1f3ff-200d-1faf2-1f3fe","1faf2","1faf2-1f3fb","1faf2-1f3fc","1faf2-1f3fd","1faf2-1f3fe","1faf2-1f3ff","1faf3","1faf3-1f3fb","1faf3-1f3fc","1faf3-1f3fd","1faf3-1f3fe","1faf3-1f3ff","1faf4","1faf4-1f3fb","1faf4-1f3fc","1faf4-1f3fd","1faf4-1f3fe","1faf4-1f3ff","1faf5","1faf5-1f3fb","1faf5-1f3fc","1faf5-1f3fd","1faf5-1f3fe","1faf5-1f3ff","1faf6","1faf6-1f3fb","1faf6-1f3fc","1faf6-1f3fd","1faf6-1f3fe","1faf6-1f3ff","203c","2049","2122","2139","2194","2195","2196","2197","2198","2199","21a9","21aa","23-20e3","231a","231b","2328","23cf","23e9","23ea","23eb","23ec","23ed","23ee","23ef","23f0","23f1","23f2","23f3","23f8","23f9","23fa","24c2","25aa","25ab","25b6","25c0","25fb","25fc","25fd","25fe","2600","2601","2602","2603","2604","260e","2611","2614","2615","2618","261d","261d-1f3fb","261d-1f3fc","261d-1f3fd","261d-1f3fe","261d-1f3ff","2620","2622","2623","2626","262a","262e","262f","2638","2639","263a","2640","2642","2648","2649","264a","264b","264c","264d","264e","264f","2650","2651","2652","2653","265f","2660","2663","2665","2666","2668","267b","267e","267f","2692","2693","2694","2695","2696","2697","2699","269b","269c","26a0","26a1","26a7","26aa","26ab","26b0","26b1","26bd","26be","26c4","26c5","26c8","26ce","26cf","26d1","26d3","26d4","26e9","26ea","26f0","26f1","26f2","26f3","26f4","26f5","26f7","26f7-1f3fb","26f7-1f3fc","26f7-1f3fd","26f7-1f3fe","26f7-1f3ff","26f8","26f9","26f9-1f3fb","26f9-1f3fb-200d-2640-fe0f","26f9-1f3fb-200d-2642-fe0f","26f9-1f3fc","26f9-1f3fc-200d-2640-fe0f","26f9-1f3fc-200d-2642-fe0f","26f9-1f3fd","26f9-1f3fd-200d-2640-fe0f","26f9-1f3fd-200d-2642-fe0f","26f9-1f3fe","26f9-1f3fe-200d-2640-fe0f","26f9-1f3fe-200d-2642-fe0f","26f9-1f3ff","26f9-1f3ff-200d-2640-fe0f","26f9-1f3ff-200d-2642-fe0f","26f9-fe0f-200d-2640-fe0f","26f9-fe0f-200d-2642-fe0f","26fa","26fd","2702","2705","2708","2709","270a","270a-1f3fb","270a-1f3fc","270a-1f3fd","270a-1f3fe","270a-1f3ff","270b","270b-1f3fb","270b-1f3fc","270b-1f3fd","270b-1f3fe","270b-1f3ff","270c","270c-1f3fb","270c-1f3fc","270c-1f3fd","270c-1f3fe","270c-1f3ff","270d","270d-1f3fb","270d-1f3fc","270d-1f3fd","270d-1f3fe","270d-1f3ff","270f","2712","2714","2716","271d","2721","2728","2733","2734","2744","2747","274c","274e","2753","2754","2755","2757","2763","2764","2764-fe0f-200d-1f525","2764-fe0f-200d-1fa79","2795","2796","2797","27a1","27b0","27bf","2934","2935","2a-20e3","2b05","2b06","2b07","2b1b","2b1c","2b50","2b55","30-20e3","3030","303d","31-20e3","32-20e3","3297","3299","33-20e3","34-20e3","35-20e3","36-20e3","37-20e3","38-20e3","39-20e3","a9","ae","e50a"];class sq extends sH{getIcons(){return sU.map(e=>({type:"path",value:`/bundles/pimcorestudioui/img/icons/twemoji/${e}.svg`}))}constructor(...e){super(...e),this.id="twemoji",this.name="Twemoji"}}sq=(0,eq.gn)([(0,eZ.injectable)()],sq);class sZ extends e4.Z{}sZ=(0,eq.gn)([(0,eZ.injectable)()],sZ);var sK=i(56183),sJ=i(80090),sX=i(18955),sQ=i(37021);let sY=()=>{let{data:e,isLoading:t}=(0,sQ.wc)({perspectiveId:"studio_default_perspective"}),i=(0,ts.useMemo)(()=>{var t,i;let n=null==e||null==(i=e.widgetsLeft)||null==(t=i[2])?void 0:t.contextPermissions;if(!(0,eY.isEmpty)(n)){let{additionalAttributes:e,...t}=n;return Object.keys(t)}return[]},[e]);return{dataObjectContextMenuItems:i,assetContextMenuItems:(0,ts.useMemo)(()=>{var t,i;let n=null==e||null==(i=e.widgetsLeft)||null==(t=i[1])?void 0:t.contextPermissions;if(!(0,eY.isEmpty)(n)){let{additionalAttributes:e,...t}=n;return Object.keys(t)}return[]},[e]),documentContextMenuItems:(0,ts.useMemo)(()=>{var t,i;let n=null==e||null==(i=e.widgetsLeft)||null==(t=i[0])?void 0:t.contextPermissions;if(!(0,eY.isEmpty)(n)){let{additionalAttributes:e,...t}=n;return Object.keys(t)}return[]},[e]),isLoading:t}};var s0=i(28253);let s1=(0,ia.createStyles)(e=>{let{token:t}=e;return{allowedContextMenuOptions:{display:"grid",gridTemplateColumns:"repeat(3, 1fr)",gap:`${t.marginXS}px`,width:"100%"}}});var s2=i(77244);let s3=()=>{let{t:e}=(0,t7.useTranslation)(),{dataObjectContextMenuItems:t,isLoading:i}=sY(),{styles:n}=s1();return i?(0,to.jsx)(sX.h,{condition:e=>e.elementType===s2.a.dataObject,children:(0,to.jsx)(nd.h.Panel,{collapsed:!1,collapsible:!0,title:e("widget-editor.widget-form.allowed-context-menu.title"),children:(0,to.jsx)(aI.y,{})})}):(0,to.jsx)(sX.h,{condition:e=>e.elementType===s2.a.dataObject,children:(0,to.jsx)(nd.h.Panel,{collapsed:!1,collapsible:!0,title:e("widget-editor.widget-form.allowed-context-menu.title"),children:(0,to.jsx)("div",{className:n.allowedContextMenuOptions,children:(0,to.jsx)(tc.l.Group,{name:"contextPermissions",children:t.map(t=>(0,to.jsx)(tc.l.Item,{name:t,children:(0,to.jsx)(s0.r,{labelRight:e("widget-editor.widget-form.allowed-context-menu."+t)})},t))})})})})},s6=()=>{let{t:e}=(0,t7.useTranslation)(),{assetContextMenuItems:t,isLoading:i}=sY(),{styles:n}=s1();return i?(0,to.jsx)(sX.h,{condition:e=>e.elementType===s2.a.asset,children:(0,to.jsx)(nd.h.Panel,{collapsed:!1,collapsible:!0,title:e("widget-editor.widget-form.allowed-context-menu.title"),children:(0,to.jsx)(aI.y,{})})}):(0,to.jsx)(sX.h,{condition:e=>e.elementType===s2.a.asset,children:(0,to.jsx)(nd.h.Panel,{collapsed:!1,collapsible:!0,title:e("widget-editor.widget-form.allowed-context-menu.title"),children:(0,to.jsx)("div",{className:n.allowedContextMenuOptions,children:(0,to.jsx)(tc.l.Group,{name:"contextPermissions",children:t.map(t=>(0,to.jsx)(tc.l.Item,{name:t,children:(0,to.jsx)(s0.r,{labelRight:e("widget-editor.widget-form.allowed-context-menu."+t)})},t))})})})})},s4=()=>{let{t:e}=(0,t7.useTranslation)(),{documentContextMenuItems:t,isLoading:i}=sY(),{styles:n}=s1();return i?(0,to.jsx)(sX.h,{condition:e=>e.elementType===s2.a.document,children:(0,to.jsx)(nd.h.Panel,{collapsed:!1,collapsible:!0,title:e("widget-editor.widget-form.allowed-context-menu.title"),children:(0,to.jsx)(aI.y,{})})}):(0,to.jsx)(sX.h,{condition:e=>e.elementType===s2.a.document,children:(0,to.jsx)(nd.h.Panel,{collapsed:!1,collapsible:!0,title:e("widget-editor.widget-form.allowed-context-menu.title"),children:(0,to.jsx)("div",{className:n.allowedContextMenuOptions,children:(0,to.jsx)(tc.l.Group,{name:"contextPermissions",children:t.map(t=>(0,to.jsx)(tc.l.Item,{name:t,children:(0,to.jsx)(s0.r,{labelRight:e("widget-editor.widget-form.allowed-context-menu."+t)})},t))})})})})},s8=()=>(0,to.jsxs)(to.Fragment,{children:[(0,to.jsx)(s3,{}),(0,to.jsx)(s6,{}),(0,to.jsx)(s4,{})]}),s7=(0,ia.createStyles)(e=>{let{token:t}=e;return{allowedObjectsGrid:{display:"grid",gridTemplateColumns:"repeat(3, 1fr)",gap:`${t.marginXS}px`,width:"100%"}}}),s5=()=>{let{t:e}=(0,t7.useTranslation)(),{getClassDefinitionsForCurrentUser:t}=(0,a0.C)(),{styles:i}=s7();return(0,to.jsx)(nd.h.Panel,{collapsed:!1,collapsible:!0,title:e("widget-editor.widget-form.allowed-objects.title"),children:(0,to.jsx)("div",{className:i.allowedObjectsGrid,children:(0,to.jsx)(tc.l.Group,{name:"classes",children:t().map(e=>(0,to.jsx)(tc.l.Item,{name:e.id,children:(0,to.jsx)(s0.r,{labelRight:e.name})},(0,eY.uniqueId)()))})})})},s9=()=>{let{t:e}=(0,t7.useTranslation)();return(0,to.jsx)(nd.h.Panel,{collapsed:!1,collapsible:!0,title:e("widget-editor.widget-form.filters.title"),children:(0,to.jsx)(tc.l.Item,{label:e("widget-editor.widget-form.filters.pql"),name:"pql",children:(0,to.jsx)(nf.K,{})})})};var de=i(82596),dt=i(13221);let di=e=>{let{t}=(0,t7.useTranslation)();return(0,to.jsx)(tC.P,{...e,options:[{label:t("document"),value:s2.a.document},{label:t("asset"),value:s2.a.asset},{label:t("data-object"),value:s2.a.dataObject}]})},dn=(0,ts.createContext)(void 0),dr=e=>{let{children:t,widget:i}=e,[n]=tc.l.useForm(),[r,a]=(0,ts.useState)(i),l=(0,ts.useMemo)(()=>({widget:i,form:n,formData:r,setFormData:a}),[i,n,r]);return(0,to.jsx)(dn.Provider,{value:l,children:t})},da=()=>{let e=(0,ts.useContext)(dn);if(void 0===e)throw Error("useWidgetFormContext must be used within a WidgetFormProvider");return e},dl=()=>{let{t:e}=(0,t7.useTranslation)(),{form:t}=da();return(0,to.jsxs)(nd.h.Panel,{collapsed:!1,collapsible:!0,title:e("widget-editor.widget-form.specific.title"),children:[(0,to.jsx)(tc.l.Item,{label:e("widget-editor.widget-form.specific.element-type"),name:"elementType",children:(0,to.jsx)(di,{})}),(0,to.jsx)(tc.l.Item,{label:e("widget-editor.widget-form.specific.root-folder"),name:"rootFolder",children:(0,to.jsx)(de.A,{allowToClearRelation:!0,assetsAllowed:t.getFieldValue("elementType")===dt.elementTypes.asset,dataObjectsAllowed:t.getFieldValue("elementType")===dt.elementTypes.dataObject,documentsAllowed:t.getFieldValue("elementType")===dt.elementTypes.document})}),(0,to.jsx)(tc.l.Item,{name:"showRoot",children:(0,to.jsx)(s0.r,{labelRight:e("widget-editor.widget-form.specific.show-root")})}),(0,to.jsx)(tc.l.Item,{label:e("widget-editor.widget-form.specific.page-size"),name:"pageSize",children:(0,to.jsx)(tN.InputNumber,{})})]})},ds=()=>(0,to.jsxs)(to.Fragment,{children:[(0,to.jsx)(dl,{}),(0,to.jsx)(s5,{}),(0,to.jsx)(s8,{}),(0,to.jsx)(s9,{})]});function dd(e,t,i){var n;return(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}let df=(0,eZ.injectable)()(eP=class{getSubMenuItems(e,t){return e.map(e=>({label:e.name,key:e.id,icon:(0,to.jsx)(ih.Icon,{value:e.icon.value}),onClick:void 0===t?void 0:()=>{t(e)}}))}constructor(){dd(this,"id",void 0),dd(this,"name",void 0),dd(this,"group",void 0),dd(this,"icon",void 0)}})||eP;function dc(e,t,i){var n;return(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}let du=(0,eZ.injectable)()(eN=class extends e4.Z{getMenuItems(e,t){let i={};for(let e of this.getDynamicTypes())i[e.group]=i[e.group]??[],i[e.group].push(e);return Object.entries(i).map(i=>{let[n,r]=i;return{key:n,label:(0,to.jsx)(t7.Trans,{children:`widget-editor.create-form.widgetTypeGroup.${n}`}),type:"group",children:r.map(i=>({label:(0,to.jsx)(t7.Trans,{children:`widget-editor.create-form.widgetType.${i.name}`}),key:i.id,icon:(0,to.jsx)(rR.J,{value:i.icon}),children:i.getSubMenuItems(e.filter(e=>e.widgetType===i.id),t)}))}})}})||eN;var dm=i(48556);eB.nC.bind(eO.j["App/ComponentRegistry/ComponentRegistry"]).to(e_.yK).inSingletonScope(),eB.nC.bind(eO.j.mainNavRegistry).to(eF.c).inSingletonScope(),eB.nC.bind(eO.j.widgetManager).to(dm.B).inSingletonScope(),eB.nC.bind(eO.j["Asset/Editor/TypeRegistry"]).to(sK.P).inSingletonScope(),eB.nC.bind(eO.j["Asset/Editor/DocumentTabManager"]).to(e$.A).inSingletonScope(),eB.nC.bind(eO.j["Asset/Editor/FolderTabManager"]).to(eW.d).inSingletonScope(),eB.nC.bind(eO.j["Asset/Editor/ImageTabManager"]).to(eH.S).inSingletonScope(),eB.nC.bind(eO.j["Asset/Editor/TextTabManager"]).to(eG.$).inSingletonScope(),eB.nC.bind(eO.j["Asset/Editor/VideoTabManager"]).to(eX.n).inSingletonScope(),eB.nC.bind(eO.j["Asset/Editor/AudioTabManager"]).to(eV.$).inSingletonScope(),eB.nC.bind(eO.j["Asset/Editor/ArchiveTabManager"]).to(ez.M).inSingletonScope(),eB.nC.bind(eO.j["Asset/Editor/UnknownTabManager"]).to(eU.M).inSingletonScope(),eB.nC.bind(eO.j["DataObject/Editor/TypeRegistry"]).to(sK.P).inSingletonScope(),eB.nC.bind(eO.j["DataObject/Editor/ObjectTabManager"]).to(e6.F).inSingletonScope(),eB.nC.bind(eO.j["DataObject/Editor/FolderTabManager"]).to(eW.d).inSingletonScope(),eB.nC.bind(eO.j["Document/Editor/TypeRegistry"]).to(sK.P).inSingletonScope(),eB.nC.bind(eO.j["Document/Editor/PageTabManager"]).to(a8.M).inSingletonScope(),eB.nC.bind(eO.j["Document/Editor/EmailTabManager"]).to(a7.G).inSingletonScope(),eB.nC.bind(eO.j["Document/Editor/FolderTabManager"]).to(eW.d).inSingletonScope(),eB.nC.bind(eO.j["Document/Editor/HardlinkTabManager"]).to(a5.i).inSingletonScope(),eB.nC.bind(eO.j["Document/Editor/LinkTabManager"]).to(a9.m).inSingletonScope(),eB.nC.bind(eO.j["Document/Editor/SnippetTabManager"]).to(le.t).inSingletonScope(),eB.nC.bind(eO.j["Document/Editor/Sidebar/PageSidebarManager"]).to(li).inSingletonScope(),eB.nC.bind(eO.j["Document/Editor/Sidebar/SnippetSidebarManager"]).to(li).inSingletonScope(),eB.nC.bind(eO.j["Document/Editor/Sidebar/EmailSidebarManager"]).to(li).inSingletonScope(),eB.nC.bind(eO.j["Document/Editor/Sidebar/LinkSidebarManager"]).to(li).inSingletonScope(),eB.nC.bind(eO.j["Document/Editor/Sidebar/HardlinkSidebarManager"]).to(li).inSingletonScope(),eB.nC.bind(eO.j["Document/Editor/Sidebar/FolderSidebarManager"]).to(li).inSingletonScope(),eB.nC.bind(eO.j.iconLibrary).to(sJ.W).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/FieldFilterRegistry"]).to(tE.z).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/FieldFilter/DataObjectAdapter"]).to(tB).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/FieldFilter/DataObjectObjectBrick"]).to(t_).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/FieldFilter/String"]).to(tq).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/FieldFilter/Fulltext"]).to(sM).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/FieldFilter/Input"]).to(sI).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/FieldFilter/None"]).to(sE).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/FieldFilter/Id"]).to(t$).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/FieldFilter/Number"]).to(tW.F).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/FieldFilter/Multiselect"]).to(tH.o).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/FieldFilter/Date"]).to(tz.A).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/FieldFilter/Boolean"]).to(tP).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/FieldFilter/BooleanSelect"]).to(sW).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/BatchEditRegistry"]).to(tl.H).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/BatchEdit/Text"]).to(tS.B).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/BatchEdit/TextArea"]).to(tD.l).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/BatchEdit/Datetime"]).to(ty).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/BatchEdit/Select"]).to(tT).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/BatchEdit/Checkbox"]).to(tm).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/BatchEdit/ElementDropzone"]).to(tw).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/BatchEdit/DataObjectAdapter"]).to(tp.C).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/BatchEdit/DataObjectObjectBrick"]).to(tg.C).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/GridCellRegistry"]).to(tZ.U).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/GridCell/Text"]).to(iQ).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/GridCell/Textarea"]).to(i0).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/GridCell/Number"]).to(iG).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/GridCell/Select"]).to(iJ).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/GridCell/MultiSelect"]).to(iW).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/GridCell/Checkbox"]).to(iD.g).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/GridCell/Boolean"]).to(a4).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/GridCell/Date"]).to(iO).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/GridCell/Time"]).to(i2).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/GridCell/DateTime"]).to(iR).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/GridCell/AssetLink"]).to(iC).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/GridCell/ObjectLink"]).to(iU).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/GridCell/DocumentLink"]).to(iB).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/GridCell/OpenElement"]).to(iK).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/GridCell/AssetPreview"]).to(iT).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/GridCell/AssetActions"]).to(ij).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/GridCell/DataObjectActions"]).to(iM).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/GridCell/DependencyTypeIcon"]).to(tX).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/GridCell/AssetCustomMetadataIcon"]).to(tY).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/GridCell/AssetCustomMetadataValue"]).to(t1).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/GridCell/PropertyIcon"]).to(t3).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/GridCell/PropertyValue"]).to(t4).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/GridCell/WebsiteSettingsValue"]).to(iv).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/GridCell/ScheduleActionsSelect"]).to(ie).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/GridCell/VersionsIdSelect"]).to(iu).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/GridCell/AssetVersionPreviewFieldLabel"]).to(ip).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/GridCell/Asset"]).to(iS).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/GridCell/Object"]).to(iq).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/GridCell/Document"]).to(iF).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/GridCell/Element"]).to(i_).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/GridCell/LanguageSelect"]).to(iV).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/GridCell/Translate"]).to(i6).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/GridCell/DataObjectAdapter"]).to(iP).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/GridCell/DataObjectObjectBrick"]).to(iN).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/GridCell/DataObjectAdvanced"]).to(sw).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/GridCell/String"]).to(sD).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/AdvancedGridCellRegistry"]).to(tZ.U).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ListingRegistry"]).to(i4.g).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/Listing/AssetLink"]).to(i8.Z).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/MetadataRegistry"]).to(i7.H).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/Metadata/Asset"]).to(i5.H).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/Metadata/Checkbox"]).to(i9.$).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/Metadata/Date"]).to(ne.p).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/Metadata/Document"]).to(nt.$).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/Metadata/Input"]).to(ni.n).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/Metadata/Object"]).to(nn.L).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/Metadata/Select"]).to(nr.t).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/Metadata/Textarea"]).to(na.k).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/CustomReportDefinitionRegistry"]).to(nl).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/CustomReportDefinition/Sql"]).to(nz).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectLayoutRegistry"]).to(r$).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectLayout/Panel"]).to(class extends rW{getObjectLayoutComponent(e){return(0,to.jsx)(rX,{...e})}constructor(...e){var t,i,n;super(...e),i="panel",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}}).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectLayout/Tabpanel"]).to(class extends rW{getObjectLayoutComponent(e){return(0,to.jsx)(r3,{...e})}constructor(...e){var t,i,n;super(...e),i="tabpanel",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}}).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectLayout/Accordion"]).to(class extends rW{getObjectLayoutComponent(e){return(0,to.jsx)(rq,{...e})}constructor(...e){var t,i,n;super(...e),i="accordion",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}}).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectLayout/Region"]).to(class extends rW{getObjectLayoutComponent(e){return(0,to.jsx)(r0,{...e})}constructor(...e){var t,i,n;super(...e),i="region",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}}).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectLayout/Text"]).to(class extends rW{getObjectLayoutComponent(e){return(0,to.jsx)(r6,{...e})}constructor(...e){var t,i,n;super(...e),i="text",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}}).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectLayout/Fieldset"]).to(class extends rW{getObjectLayoutComponent(e){return(0,to.jsx)(rX,{...e,theme:"fieldset"})}constructor(...e){var t,i,n;super(...e),i="fieldset",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}}).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectLayout/FieldContainer"]).to(class extends rW{getObjectLayoutComponent(e){return(0,to.jsx)(rK,{...e})}constructor(...e){var t,i,n;super(...e),i="fieldcontainer",(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t="id","string"))?n:n+"")in this?Object.defineProperty(this,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):this[t]=i}}).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectDataRegistry"]).to(nV.f).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/Input"]).to(rn.y).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/Textarea"]).to(rS.g).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/Wysiwyg"]).to(rz).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/InputQuantityValue"]).to(rr.j).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/Password"]).to(rb.m).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/Select"]).to(rw.w).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/MultiSelect"]).to(rm.i).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/Language"]).to(ra.P).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/LanguageMultiSelect"]).to(rl.n).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/Country"]).to(nK.d).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/CountryMultiSelect"]).to(nJ.v).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/User"]).to(rM.F).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/BooleanSelect"]).to(nG.K).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/Numeric"]).to(rp.$).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/NumericRange"]).to(rg.o).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/Slider"]).to(rC.S).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/QuantityValue"]).to(ry.I).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/QuantityValueRange"]).to(rv.K).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/Consent"]).to(nZ.q).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/Firstname"]).to(n6.Y).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/Lastname"]).to(ro.y).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/Email"]).to(n0.X).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/Gender"]).to(n4.Z).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/RgbaColor"]).to(rj.d).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/EncryptedField"]).to(n1.D).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/CalculatedValue"]).to(nU.r).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/Checkbox"]).to(nq.T).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/Link"]).to(rs.M).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/UrlSlug"]).to(rE.d).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/Date"]).to(nX.U).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/Datetime"]).to(nY.g).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/DateRange"]).to(nQ.S).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/Time"]).to(rD.K).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/ExternalImage"]).to(n2.T).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/Image"]).to(rt.i).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/Video"]).to(rI.b).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/HotspotImage"]).to(re.V).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/ImageGallery"]).to(ri.F).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/GeoPoint"]).to(n7.e).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/GeoBounds"]).to(n8.O).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/GeoPolygon"]).to(n5.G).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/GeoPolyLine"]).to(n9.v).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/ManyToOneRelation"]).to(ru.i).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/ManyToManyRelation"]).to(rc.w).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/ManyToManyObjectRelation"]).to(rf.g).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/AdvancedManyToManyRelation"]).to(nW.D).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/AdvancedManyToManyObjectRelation"]).to(n$.X).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/ReverseObjectRelation"]).to(rx.t).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/Table"]).to(rT.V).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/StructuredTable"]).to(rk.Z).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/Block"]).to(nH.G).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/LocalizedFields"]).to(rd.n).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/FieldCollection"]).to(n3.k).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/ObjectBrick"]).to(rh.W).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectData/ClassificationStore"]).to(a3).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/DocumentEditableRegistry"]).to(ln.p).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/DocumentEditable/Block"]).to(o2).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/DocumentEditable/Checkbox"]).to(ls.O).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/DocumentEditable/Wysiwyg"]).to(ld.R).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/DocumentEditable/Date"]).to(lf.J).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/DocumentEditable/Embed"]).to(lw).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/DocumentEditable/Image"]).to(lk.J).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/DocumentEditable/Input"]).to(lo.a).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/DocumentEditable/Link"]).to(lc.k).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/DocumentEditable/MultiSelect"]).to(o_.w).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/DocumentEditable/Numeric"]).to(lr.V).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/DocumentEditable/Pdf"]).to(l_).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/DocumentEditable/Relation"]).to(la.m).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/DocumentEditable/Relations"]).to(ll.e).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/DocumentEditable/Renderlet"]).to(oZ).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/DocumentEditable/ScheduledBlock"]).to(sl).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/DocumentEditable/Select"]).to(oz.u).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/DocumentEditable/Snippet"]).to(o$.p).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/DocumentEditable/Table"]).to(oV.a).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/DocumentEditable/Textarea"]).to(lC.t).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/DocumentEditable/Video"]).to(lz.N).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/DocumentEditable/Area"]).to(lV.b).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/DocumentEditable/Areablock"]).to(ow).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/EditableDialogLayoutRegistry"]).to(sC).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/EditableDialogLayout/Tabpanel"]).to(sT).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/EditableDialogLayout/Panel"]).to(sS).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/DocumentRegistry"]).to(sN).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/Document/Page"]).to(sP).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/Document/Email"]).to(sA).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/Document/Folder"]).to(sR).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/Document/Hardlink"]).to(sO).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/Document/Link"]).to(sB).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/Document/Newsletter"]).to(sF).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/Document/Snippet"]).to(s_).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/AssetRegistry"]).to(e8).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/Asset/Archive"]).to(e5).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/Asset/Audio"]).to(e9).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/Asset/Document"]).to(te).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/Asset/Folder"]).to(tt).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/Asset/Image"]).to(ti).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/Asset/Text"]).to(tn).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/Asset/Unknown"]).to(tr).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/Asset/Video"]).to(ta).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ObjectRegistry"]).to(rV).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/Object/Folder"]).to(r8).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/Object/Object"]).to(r7).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/Object/Variant"]).to(r5).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/Grid/SourceFieldsRegistry"]).to(oC).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/Grid/SourceFields/Text"]).to(oS).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/Grid/SourceFields/SimpleField"]).to(oR).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/Grid/SourceFields/RelationField"]).to(oF).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/Grid/TransformersRegistry"]).to(oC).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/Grid/Transformers/ChangeCase"]).to(oL).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/Grid/Transformers/Combine"]).to(oN).inSingletonScope(),eB.nC.bind(eO.j["ExecutionEngine/JobComponentRegistry"]).to(eK).inSingletonScope(),eB.nC.bind(eO.j.executionEngine).to(eJ).inSingletonScope(),eB.nC.bind(eO.j.backgroundProcessor).to(class{registerProcess(e){if(this.processes.has(e.getName()))throw Error(`Process with name ${e.getName()} is already registered.`);this.processes.set(e.getName(),e)}subscribeToProcessMessages(e){var t;let{processName:i,callback:n,SubscriberClass:r=ss}=e;if(!this.processes.has(i))throw Error(`Process with name ${i} is not registered.`);let a=new r(n);if(this.subscribers.set(a.getId(),a),this.processSubscriptions.has(i)||this.processSubscriptions.set(i,[]),null==(t=this.processSubscriptions.get(i))||t.push(a.getId()),void 0===this.processes.get(i))throw Error(`Process with name ${i} does not exist.`);return this.startProcess(i),a.getId()}unsubscribeFromProcessMessages(e){if(void 0===this.subscribers.get(e))throw Error(`Subscriber with ID ${e} does not exist.`);for(let[t,i]of(this.subscribers.delete(e),this.processSubscriptions.entries())){let n=i.indexOf(e);-1!==n&&(i.splice(n,1),0===i.length&&(this.cancelProcess(t),this.processSubscriptions.delete(t)))}}notifySubscribers(e,t){let i=this.processSubscriptions.get(e);if(void 0!==i)for(let e of i){let i=this.subscribers.get(e);void 0!==i&&i.getCallback()(t)}}startProcess(e){let t=this.processes.get(e);if(void 0===t)throw Error(`Process with name ${e} does not exist.`);this.runningProcesses.has(e)||(t.start(),this.runningProcesses.add(e),t.onMessage=t=>{this.notifySubscribers(e,t)})}cancelProcess(e){let t=this.processes.get(e);if(void 0===t)throw Error(`Process with name ${e} does not exist.`);this.runningProcesses.has(e)&&(this.runningProcesses.delete(e),t.cancel())}constructor(){this.processes=new Map,this.subscribers=new Map,this.processSubscriptions=new Map,this.runningProcesses=new Set}}).inSingletonScope(),eB.nC.bind(eO.j.globalMessageBus).to(sc).inSingletonScope(),eB.nC.bind(eO.j.globalMessageBusProcess).to(sf).inSingletonScope(),eB.nC.bind(eO.j["Asset/ThumbnailService"]).to(e3).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/ThemeRegistry"]).to(su).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/Theme/StudioDefaultLight"]).to(class extends sm{getThemeConfig(){return sg}constructor(...e){super(...e),this.id=sp.n.light}}).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/Theme/StudioDefaultDark"]).to(sh).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/IconSetRegistry"]).to(sZ).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/IconSet/PimcoreDefault"]).to(sG).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/IconSet/Twemoji"]).to(sq).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/WidgetEditor/WidgetTypeRegistry"]).to(du).inSingletonScope(),eB.nC.bind(eO.j["DynamicTypes/WidgetEditor/ElementTree"]).to(class extends df{form(){return(0,to.jsx)(ds,{})}constructor(...e){super(...e),dc(this,"id","element_tree"),dc(this,"name","element_tree"),dc(this,"group","system-widgets"),dc(this,"icon","tree")}}).inSingletonScope();var dp=i(72323);eR._.registerModule({onInit:()=>{let e=eB.nC.get(eO.j.globalMessageBus),t=eB.nC.get(eO.j.globalMessageBusProcess);e.registerTopics(Object.values(dp.F)),eB.nC.get(eO.j.backgroundProcessor).registerProcess(t)}}),i(71099);var dg=i(63583);let dh=(0,ia.createStyles)(e=>{let{token:t,css:i}=e;return{mainNav:i` position: absolute; left: 100%; top: 0; @@ -325,7 +325,7 @@ border-radius: ${t.borderRadius}px; padding: ${t.paddingXS}px; } - `}},{hashPriority:"low"});var db=i(92174),dy=i(81354),dv=i(96106),dx=i(82141),dj=i(48497),dw=i(63654);let dC=e=>{let{setIsOpen:t}=e,{t:i}=(0,t7.useTranslation)(),{switchPerspective:n}=(0,dw.o)(),r=(0,dj.a)();return(0,tl.jsxs)("div",{className:"main-nav__bottom",children:[(0,tl.jsx)("div",{className:"main-nav__bottom-title",children:i("navigation.perspectives")}),(0,tl.jsx)("ul",{className:"main-nav__list-inline",children:r.perspectives.map((e,a)=>(0,tl.jsx)("li",{children:(0,tl.jsx)(dx.W,{color:e.id===r.activePerspective?"primary":"secondary",icon:e.icon,onClick:async()=>{n(e),t(!1)},variant:e.id===r.activePerspective?"filled":"outlined",children:i(e.name)})},e.id))})]})};var dk=i(8900),dT=i(42782);let dS=()=>{let{openElement:e}=(0,ig.f)(),[t,{isLoading:i}]=(0,dT.Zm)(),n=async(i,n)=>{try{let r=await t({elementType:n,searchTerm:i}).unwrap();await e({id:r.id,type:n})}catch(e){(0,is.ZP)(new is.MS(e))}};return{openElementByPathOrId:async(e,t)=>{isNaN(Number(e))?"string"==typeof e&&await n(e,t):await n(e.toString(),t)},isLoading:i}},dD={"data-object":{title:"open-data-object-modal.title",label:"open-data-object-modal.label",requiredMessage:"open-data-object-modal.required-message",okText:"open-data-object-modal.ok-button",cancelText:"open-data-object-modal.cancel-button"},asset:{title:"open-asset-modal.title",label:"open-asset-modal.label",requiredMessage:"open-asset-modal.required-message",okText:"open-asset-modal.ok-button",cancelText:"open-asset-modal.cancel-button"},document:{title:"open-document-modal.title",label:"open-document-modal.label",requiredMessage:"open-document-modal.required-message",okText:"open-document-modal.ok-button",cancelText:"open-document-modal.cancel-button"}},dE=e=>{let{elementType:t}=e,{openElementByPathOrId:i}=dS(),{t:n}=(0,t7.useTranslation)(),{input:r}=(0,an.U8)(),a={"data-object":n("open-data-object.button"),asset:n("open-asset.button"),document:n("open-document.button")},o=dD[t];return(0,tl.jsx)("button",{className:"main-nav__list-btn",onClick:()=>{r({title:n(o.title),label:n(o.label),rule:{required:!0,message:n(o.requiredMessage)},okText:n(o.okText),cancelText:n(o.cancelText),onOk:async e=>{await i(e,t)}})},children:a[t]})};var dM=i(46376);let dI=()=>{let{t:e}=(0,t7.useTranslation)(),{styles:t}=dh(),{navItems:i}=(0,db.S)(),{openMainWidget:n}=(0,dy.A)(),[r,a]=td().useState(!1),{input:o}=(0,an.U8)(),{openElementByPathOrId:l}=dS(),[s,d]=td().useState([]),f=function(t,i){var r;let o=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0,l=void 0!==t.children&&t.children.length>0||void 0!==t.widgetConfig||void 0!==t.onClick||void 0!==t.button,c=void 0!==t.perspectivePermissionHide&&(0,dv.i)(t.perspectivePermissionHide);return!l||c?(0,tl.jsx)(tl.Fragment,{}):(0,tl.jsxs)("li",{className:`main-nav__list-item ${s.includes(i)?"is-active":""} ${t.className??""}`,"data-testid":`nav-item-${(0,dM.rR)(t.path)}`,children:[(0,eY.isUndefined)(t.button)?(0,tl.jsxs)(tl.Fragment,{children:[(0,tl.jsxs)("button",{className:"main-nav__list-btn","data-testid":`nav-button-${(0,dM.rR)(t.path)}`,onClick:()=>{if(void 0!==t.children&&t.children.length>0){if(i.includes("-")){let e=i.substring(0,i.length-1);d([...s.filter(t=>!t.startsWith(e)),i])}i.includes("-")||d(s.includes(i)?s.filter(e=>e!==i):[i])}else void 0!==t.onClick?(t.onClick(),a(!1)):void 0!==t.widgetConfig&&(n(t.widgetConfig),a(!1))},children:[void 0!==t.icon&&(s.includes(i)?(0,tl.jsx)(rR.J,{options:{width:16,height:16},sphere:!0,value:t.icon}):(0,tl.jsx)(rR.J,{className:"plain-icon",value:t.icon})),e(`${t.label}`),((e,t)=>{let i=void 0!==e.children&&e.children.length>0,n=s.includes(t),r=t.includes("-");return i&&(n||r)})(t,i)&&(0,tl.jsx)(rR.J,{className:"main-nav__list-chevron-btn-icon",options:{height:18,width:18},value:"chevron-right"})]}),void 0!==t.dividerBottom&&t.dividerBottom&&(0,tl.jsx)(ih.Divider,{className:"main-nav__list-item-divider",size:"mini"})]}):(0,tl.jsxs)("div",{children:[t.button(),void 0!==t.dividerBottom&&t.dividerBottom&&(0,tl.jsx)(ih.Divider,{className:"main-nav__list-item-divider",size:"mini"})]}),void 0!==t.children&&t.children.length>0?(0,tl.jsx)("div",{className:"main-nav__list-detail","data-testid":`nav-submenu-${(0,dM.rR)(t.path)}`,children:(0,tl.jsx)("div",{className:"main-nav__list-detail-scroll-container",children:(0,tl.jsx)("div",{className:"main-nav__list-detail-scroll",children:(0,tl.jsxs)("ul",{className:`main-nav__list main-nav__list--level-${o+1}`,"data-testid":`nav-list-level-${o+1}`,children:["QuickAccess"===t.path&&(0,tl.jsx)("div",{className:"main-nav__list-detail-sub-header main-nav__list-detail-divider",children:e("navigation.power-shortcuts")}),null==(r=t.children)?void 0:r.map((e,t)=>f(e,`${i}-${t}`,o))]})})})}):null]},t.path)},c=(0,ts.useRef)(null),u=e=>{null===c.current||c.current.contains(e.target)||a(!1)},m=(0,ts.useRef)(null);(0,ts.useEffect)(()=>{if(r&&(document.addEventListener("click",u),null!==m.current)){let e=Array.from(document.querySelectorAll(".main-nav__list")).reduce((e,t)=>Math.max(e,t.scrollHeight),0);m.current.style.height=`${e}px`}return()=>{document.removeEventListener("click",u)}},[r]);let p=t=>{o({title:e(`${dD[t].title}`),label:e(`${dD[t].label}`),rule:{required:!0,message:e(`${dD[t].requiredMessage}`)},okText:e(`${dD[t].okText}`),cancelText:e(`${dD[t].cancelText}`),onOk:async e=>{await l(e,t)}})};return(0,dk.R)(()=>{p("data-object")},"openObject",!0),(0,dk.R)(()=>{p("document")},"openDocument",!0),(0,dk.R)(()=>{p("asset")},"openAsset",!0),(0,tl.jsxs)("div",{ref:c,children:[(0,tl.jsx)(aM.h,{"data-testid":"main-nav-trigger",icon:{value:"menu"},onClick:()=>{a(!r)},type:"text"}),(0,tl.jsx)(dg.AnimatePresence,{children:(0,tl.jsx)(dg.motion.div,{animate:{opacity:1},exit:{opacity:0},initial:{opacity:+!r},children:r?(0,tl.jsxs)("div",{className:["main-nav",t.mainNav].join(" "),"data-testid":"main-nav-menu",children:[(0,tl.jsx)("ul",{className:"main-nav__list main-nav__list--level-0","data-testid":"nav-list-main",ref:m,children:i.map((e,t)=>f(e,`${t}`))}),(0,tl.jsx)(ih.Divider,{className:"main-nav__divider"}),(0,tl.jsx)(dC,{setIsOpen:a})]}):null},r?"open":"closed")})]})},dL=(0,ts.createContext)(void 0),dP=e=>{let[t,i]=(0,ts.useState)(!1),[n,r]=(0,ts.useState)("all");return(0,ts.useMemo)(()=>(0,tl.jsx)(dL.Provider,{value:{open:t,setOpen:i,activeKey:n,setActiveKey:r},children:e.children}),[t])},dN=()=>{let e=(0,ts.useContext)(dL);if(void 0===e)throw Error("useSearch must be used within a SearchProvider");return{activeKey:e.activeKey,isOpen:e.open,open:t=>{void 0!==t&&e.setActiveKey(t),e.setOpen(!0)},close:()=>{e.setOpen(!1)}}},dA=()=>{let{open:e}=dN();return(0,dk.R)(()=>{e("all")},"quickSearch",!0),(0,dk.R)(()=>{e(s2.a.asset)},"searchAsset",!0),(0,dk.R)(()=>{e(s2.a.dataObject)},"searchObject",!0),(0,tl.jsx)(aM.h,{icon:{value:"search"},onClick:()=>{e("all")},type:"text"})},dR=(0,ts.createContext)({searchTerm:""}),dO=e=>{let{searchTerm:t,children:i}=e;return(0,ts.useMemo)(()=>(0,tl.jsx)(dR.Provider,{value:{searchTerm:t},children:i}),[t,i])};var dB=i(51863);dB.hi.enhanceEndpoints({endpoints:{simpleSearchGet:{keepUnusedDataFor:5}}});let{useSimpleSearchGetQuery:dF}=dB.hi;var d_=i(19522);let dz=e=>{let{item:t,active:i,...n}=e,{icon:r,path:a}=t,{openElement:o}=(0,ig.f)(),{close:l}=dN(),s=oy()("hover",{active:!0===i});return(0,tl.jsx)(aL.x,{...n,className:s,onClick:()=>{o({id:t.id,type:t.elementType}),l()},padding:"mini",children:(0,tl.jsxs)(rZ.k,{align:"center",gap:"mini",children:[(0,tl.jsx)(rR.J,{...r}),(0,tl.jsx)(d_.Q,{ellipsis:!i,value:a})]})})};var dV=i(7067),d$=i(21459),dW=i(30225),dH=i(15391);let dG=(0,ia.createStyles)(e=>{let{token:t,css:i}=e;return{keyValueList:i` + `}},{hashPriority:"low"});var db=i(92174),dy=i(81354),dv=i(96106),dx=i(82141),dj=i(48497),dw=i(63654);let dC=e=>{let{setIsOpen:t}=e,{t:i}=(0,t7.useTranslation)(),{switchPerspective:n}=(0,dw.o)(),r=(0,dj.a)();return(0,to.jsxs)("div",{className:"main-nav__bottom",children:[(0,to.jsx)("div",{className:"main-nav__bottom-title",children:i("navigation.perspectives")}),(0,to.jsx)("ul",{className:"main-nav__list-inline",children:r.perspectives.map((e,a)=>(0,to.jsx)("li",{children:(0,to.jsx)(dx.W,{color:e.id===r.activePerspective?"primary":"secondary",icon:e.icon,onClick:async()=>{n(e),t(!1)},variant:e.id===r.activePerspective?"filled":"outlined",children:i(e.name)})},e.id))})]})};var dk=i(8900),dT=i(42782);let dS=()=>{let{openElement:e}=(0,ig.f)(),[t,{isLoading:i}]=(0,dT.Zm)(),n=async(i,n)=>{try{let r=await t({elementType:n,searchTerm:i}).unwrap();await e({id:r.id,type:n})}catch(e){(0,is.ZP)(new is.MS(e))}};return{openElementByPathOrId:async(e,t)=>{isNaN(Number(e))?"string"==typeof e&&await n(e,t):await n(e.toString(),t)},isLoading:i}},dD={"data-object":{title:"open-data-object-modal.title",label:"open-data-object-modal.label",requiredMessage:"open-data-object-modal.required-message",okText:"open-data-object-modal.ok-button",cancelText:"open-data-object-modal.cancel-button"},asset:{title:"open-asset-modal.title",label:"open-asset-modal.label",requiredMessage:"open-asset-modal.required-message",okText:"open-asset-modal.ok-button",cancelText:"open-asset-modal.cancel-button"},document:{title:"open-document-modal.title",label:"open-document-modal.label",requiredMessage:"open-document-modal.required-message",okText:"open-document-modal.ok-button",cancelText:"open-document-modal.cancel-button"}},dE=e=>{let{elementType:t}=e,{openElementByPathOrId:i}=dS(),{t:n}=(0,t7.useTranslation)(),{input:r}=(0,an.U8)(),a={"data-object":n("open-data-object.button"),asset:n("open-asset.button"),document:n("open-document.button")},l=dD[t];return(0,to.jsx)("button",{className:"main-nav__list-btn",onClick:()=>{r({title:n(l.title),label:n(l.label),rule:{required:!0,message:n(l.requiredMessage)},okText:n(l.okText),cancelText:n(l.cancelText),onOk:async e=>{await i(e,t)}})},children:a[t]})};var dM=i(46376);let dI=()=>{let{t:e}=(0,t7.useTranslation)(),{styles:t}=dh(),{navItems:i}=(0,db.S)(),{openMainWidget:n}=(0,dy.A)(),[r,a]=td().useState(!1),{input:l}=(0,an.U8)(),{openElementByPathOrId:o}=dS(),[s,d]=td().useState([]),f=function(t,i){var r;let l=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0,o=void 0!==t.children&&t.children.length>0||void 0!==t.widgetConfig||void 0!==t.onClick||void 0!==t.button,c=void 0!==t.perspectivePermissionHide&&(0,dv.i)(t.perspectivePermissionHide);return!o||c?(0,to.jsx)(to.Fragment,{}):(0,to.jsxs)("li",{className:`main-nav__list-item ${s.includes(i)?"is-active":""} ${t.className??""}`,"data-testid":`nav-item-${(0,dM.rR)(t.path)}`,children:[(0,eY.isUndefined)(t.button)?(0,to.jsxs)(to.Fragment,{children:[(0,to.jsxs)("button",{className:"main-nav__list-btn","data-testid":`nav-button-${(0,dM.rR)(t.path)}`,onClick:()=>{if(void 0!==t.children&&t.children.length>0){if(i.includes("-")){let e=i.substring(0,i.length-1);d([...s.filter(t=>!t.startsWith(e)),i])}i.includes("-")||d(s.includes(i)?s.filter(e=>e!==i):[i])}else void 0!==t.onClick?(t.onClick(),a(!1)):void 0!==t.widgetConfig&&(n(t.widgetConfig),a(!1))},children:[void 0!==t.icon&&(s.includes(i)?(0,to.jsx)(rR.J,{options:{width:16,height:16},sphere:!0,value:t.icon}):(0,to.jsx)(rR.J,{className:"plain-icon",value:t.icon})),e(`${t.label}`),((e,t)=>{let i=void 0!==e.children&&e.children.length>0,n=s.includes(t),r=t.includes("-");return i&&(n||r)})(t,i)&&(0,to.jsx)(rR.J,{className:"main-nav__list-chevron-btn-icon",options:{height:18,width:18},value:"chevron-right"})]}),void 0!==t.dividerBottom&&t.dividerBottom&&(0,to.jsx)(ih.Divider,{className:"main-nav__list-item-divider",size:"mini"})]}):(0,to.jsxs)("div",{children:[t.button(),void 0!==t.dividerBottom&&t.dividerBottom&&(0,to.jsx)(ih.Divider,{className:"main-nav__list-item-divider",size:"mini"})]}),void 0!==t.children&&t.children.length>0?(0,to.jsx)("div",{className:"main-nav__list-detail","data-testid":`nav-submenu-${(0,dM.rR)(t.path)}`,children:(0,to.jsx)("div",{className:"main-nav__list-detail-scroll-container",children:(0,to.jsx)("div",{className:"main-nav__list-detail-scroll",children:(0,to.jsxs)("ul",{className:`main-nav__list main-nav__list--level-${l+1}`,"data-testid":`nav-list-level-${l+1}`,children:["QuickAccess"===t.path&&(0,to.jsx)("div",{className:"main-nav__list-detail-sub-header main-nav__list-detail-divider",children:e("navigation.power-shortcuts")}),null==(r=t.children)?void 0:r.map((e,t)=>f(e,`${i}-${t}`,l))]})})})}):null]},t.path)},c=(0,ts.useRef)(null),u=e=>{null===c.current||c.current.contains(e.target)||a(!1)},m=(0,ts.useRef)(null);(0,ts.useEffect)(()=>{if(r&&(document.addEventListener("click",u),null!==m.current)){let e=Array.from(document.querySelectorAll(".main-nav__list")).reduce((e,t)=>Math.max(e,t.scrollHeight),0);m.current.style.height=`${e}px`}return()=>{document.removeEventListener("click",u)}},[r]);let p=t=>{l({title:e(`${dD[t].title}`),label:e(`${dD[t].label}`),rule:{required:!0,message:e(`${dD[t].requiredMessage}`)},okText:e(`${dD[t].okText}`),cancelText:e(`${dD[t].cancelText}`),onOk:async e=>{await o(e,t)}})};return(0,dk.R)(()=>{p("data-object")},"openObject",!0),(0,dk.R)(()=>{p("document")},"openDocument",!0),(0,dk.R)(()=>{p("asset")},"openAsset",!0),(0,to.jsxs)("div",{ref:c,children:[(0,to.jsx)(aM.h,{"data-testid":"main-nav-trigger",icon:{value:"menu"},onClick:()=>{a(!r)},type:"text"}),(0,to.jsx)(dg.AnimatePresence,{children:(0,to.jsx)(dg.motion.div,{animate:{opacity:1},exit:{opacity:0},initial:{opacity:+!r},children:r?(0,to.jsxs)("div",{className:["main-nav",t.mainNav].join(" "),"data-testid":"main-nav-menu",children:[(0,to.jsx)("ul",{className:"main-nav__list main-nav__list--level-0","data-testid":"nav-list-main",ref:m,children:i.map((e,t)=>f(e,`${t}`))}),(0,to.jsx)(ih.Divider,{className:"main-nav__divider"}),(0,to.jsx)(dC,{setIsOpen:a})]}):null},r?"open":"closed")})]})},dL=(0,ts.createContext)(void 0),dP=e=>{let[t,i]=(0,ts.useState)(!1),[n,r]=(0,ts.useState)("all");return(0,ts.useMemo)(()=>(0,to.jsx)(dL.Provider,{value:{open:t,setOpen:i,activeKey:n,setActiveKey:r},children:e.children}),[t])},dN=()=>{let e=(0,ts.useContext)(dL);if(void 0===e)throw Error("useSearch must be used within a SearchProvider");return{activeKey:e.activeKey,isOpen:e.open,open:t=>{void 0!==t&&e.setActiveKey(t),e.setOpen(!0)},close:()=>{e.setOpen(!1)}}},dA=()=>{let{open:e}=dN();return(0,dk.R)(()=>{e("all")},"quickSearch",!0),(0,dk.R)(()=>{e(s2.a.asset)},"searchAsset",!0),(0,dk.R)(()=>{e(s2.a.dataObject)},"searchObject",!0),(0,to.jsx)(aM.h,{icon:{value:"search"},onClick:()=>{e("all")},type:"text"})},dR=(0,ts.createContext)({searchTerm:""}),dO=e=>{let{searchTerm:t,children:i}=e;return(0,ts.useMemo)(()=>(0,to.jsx)(dR.Provider,{value:{searchTerm:t},children:i}),[t,i])};var dB=i(51863);dB.hi.enhanceEndpoints({endpoints:{simpleSearchGet:{keepUnusedDataFor:5}}});let{useSimpleSearchGetQuery:dF}=dB.hi;var d_=i(19522);let dz=e=>{let{item:t,active:i,...n}=e,{icon:r,path:a}=t,{openElement:l}=(0,ig.f)(),{close:o}=dN(),s=ly()("hover",{active:!0===i});return(0,to.jsx)(aL.x,{...n,className:s,onClick:()=>{l({id:t.id,type:t.elementType}),o()},padding:"mini",children:(0,to.jsxs)(rZ.k,{align:"center",gap:"mini",children:[(0,to.jsx)(rR.J,{...r}),(0,to.jsx)(d_.Q,{ellipsis:!i,value:a})]})})};var dV=i(7067),d$=i(21459),dW=i(30225),dH=i(15391);let dG=(0,ia.createStyles)(e=>{let{token:t,css:i}=e;return{keyValueList:i` border: 0; border-collapse: collapse; @@ -342,7 +342,7 @@ tr:last-of-type td { border-bottom: 0; } - `}}),dU=["creationDate","modificationDate"],dq=["documentData","objectData"],dZ=e=>{let{items:t,skipEmpty:i=!0}=e,{t:n}=(0,t7.useTranslation)(),{styles:r}=dG(),a=[],o=e=>i&&((0,dW.O)(e)||(0,eY.isEqual)(e,!1));return t.forEach(e=>{if(!o(null==e?void 0:e.value))if(dq.includes(e.key)){if((0,eY.isObject)(e.value)){let t=i=>{Object.entries(i).forEach(i=>{let[n,r]=i;o(r)||((0,eY.isObject)(r)?t(r):a.push({key:n,value:r,withoutTranslate:"objectData"===e.key}))})};t(e.value)}}else a.push(e)}),(0,tl.jsx)("table",{className:r.keyValueList,children:a.map(e=>{let t;return t=null==e?void 0:e.value,dU.includes(e.key)&&!(0,eY.isObject)(null==e?void 0:e.value)&&(t=(0,dH.o0)({timestamp:(null==e?void 0:e.value)??null,dateStyle:"short",timeStyle:"short"})),(0,tl.jsxs)("tr",{children:[(0,tl.jsx)("td",{children:(0,tl.jsx)(nc.x,{children:(null==e?void 0:e.withoutTranslate)===!0?e.key:n(`modal-search.field.${e.key}`)})}),(0,tl.jsx)("td",{children:(0,tl.jsx)(nc.x,{children:0===t?t:(0,tl.jsx)(rB.Z,{html:t??""})})})]},e.key)})})};var dK=i(65075),dJ=i(21039),dX=i(25946);let dQ=(0,ia.createStyles)(e=>{let{token:t,css:i}=e;return{detailContent:i` + `}}),dU=["creationDate","modificationDate"],dq=["documentData","objectData"],dZ=e=>{let{items:t,skipEmpty:i=!0}=e,{t:n}=(0,t7.useTranslation)(),{styles:r}=dG(),a=[],l=e=>i&&((0,dW.O)(e)||(0,eY.isEqual)(e,!1));return t.forEach(e=>{if(!l(null==e?void 0:e.value))if(dq.includes(e.key)){if((0,eY.isObject)(e.value)){let t=i=>{Object.entries(i).forEach(i=>{let[n,r]=i;l(r)||((0,eY.isObject)(r)?t(r):a.push({key:n,value:r,withoutTranslate:"objectData"===e.key}))})};t(e.value)}}else a.push(e)}),(0,to.jsx)("table",{className:r.keyValueList,children:a.map(e=>{let t;return t=null==e?void 0:e.value,dU.includes(e.key)&&!(0,eY.isObject)(null==e?void 0:e.value)&&(t=(0,dH.o0)({timestamp:(null==e?void 0:e.value)??null,dateStyle:"short",timeStyle:"short"})),(0,to.jsxs)("tr",{children:[(0,to.jsx)("td",{children:(0,to.jsx)(nc.x,{children:(null==e?void 0:e.withoutTranslate)===!0?e.key:n(`modal-search.field.${e.key}`)})}),(0,to.jsx)("td",{children:(0,to.jsx)(nc.x,{children:0===t?t:(0,to.jsx)(rB.Z,{html:t??""})})})]},e.key)})})};var dK=i(65075),dJ=i(21039),dX=i(25946);let dQ=(0,ia.createStyles)(e=>{let{token:t,css:i}=e;return{detailContent:i` max-height: 400px; `,searchResultImage:i` min-height: 100px; @@ -352,7 +352,7 @@ width: 100%; height: 100%; } - `}}),dY=["elementType","type"],d0=["image","video","document"],d1=e=>{let{item:t}=e,{id:i,elementType:n}=t,{isError:r,error:a,isLoading:o,data:l}=(0,dB.pg)({id:i,elementType:(0,lU.PM)(n)}),{styles:s}=dQ();if((0,ts.useEffect)(()=>{r&&(0,is.ZP)(new is.MS(a))},[r]),o)return(0,tl.jsx)(aB.V,{loading:!0});if(r||void 0!==a)return(0,tl.jsx)(aB.V,{none:!0,noneOptions:{text:"data not available"}});let{additionalAttributes:d,...f}=l,c=Object.entries(f).filter(e=>{let[t]=e;return!dY.includes(t)}).map(e=>{let[t,i]=e;return{key:t,value:i}});return(0,tl.jsxs)(aB.V,{className:s.detailContent,children:[(()=>{let e=null==t?void 0:t.type,i=null==t?void 0:t.path;return d0.includes(e)&&!(0,dW.O)(i)?(0,tl.jsxs)(rZ.k,{justify:"center",children:["image"===e&&(0,tl.jsx)(dK.E,{className:s.searchResultImage,preview:!1,src:i}),"video"===e&&(0,tl.jsx)(dJ.o,{sources:[{src:i}],width:250}),"document"===e&&(0,tl.jsx)(dX.s,{className:s.searchResultDocument,src:i})]}):null})(),(0,tl.jsx)(dZ,{items:c})]})},d2=()=>(0,tl.jsx)(aB.V,{children:(0,tl.jsx)(rZ.k,{align:"center",className:"h-full w-full",justify:"center",children:(0,tl.jsx)(dV.d,{text:"No item selected"})})}),d3=e=>{let{item:t}=e,i=void 0!==t;return(0,ts.useMemo)(()=>i?(0,tl.jsx)(d1,{item:t}):(0,tl.jsx)(d2,{}),[t])},d6=()=>{let{searchTerm:e}=(0,ts.useContext)(dR),[t,i]=(0,ts.useState)(1),[n,r]=(0,ts.useState)(20),[a,o]=(0,ts.useState)(void 0),[l,s]=(0,ts.useState)(void 0),{isLoading:d,isError:f,error:c,data:u}=dF({searchTerm:e,page:t,pageSize:n});(0,ts.useEffect)(()=>{let e=setTimeout(()=>{o(l)},333);return()=>{clearTimeout(e)}},[l]),(0,ts.useEffect)(()=>{i(1),o(void 0)},[e]),(0,ts.useEffect)(()=>{f&&(0,is.ZP)(new is.MS(c))},[f]);let m=(e,t)=>{i(e),r(t),o(void 0)};return(0,ts.useMemo)(()=>d?(0,tl.jsx)(aB.V,{loading:!0}):(0,tl.jsxs)(tl.Fragment,{children:[(0,tl.jsx)("div",{}),(0,tl.jsx)(d$.K,{leftItem:{size:750,children:(0,tl.jsx)(aB.V,{overflow:{x:"hidden",y:"auto"},padded:!0,padding:{left:"none",right:"none",y:"none"},style:{height:400},children:(0,tl.jsxs)(rZ.k,{className:"w-full h-full",gap:0,vertical:!0,children:[null==u?void 0:u.items.map(e=>(0,tl.jsx)(dz,{active:(null==a?void 0:a.id)===e.id&&(null==a?void 0:a.elementType)===e.elementType,item:e,onMouseEnter:()=>{s(e)},onMouseLeave:()=>{s(a)}},`${e.id}-${e.elementType}`)),(null==u?void 0:u.items.length)===0&&(0,tl.jsx)(rZ.k,{align:"center",className:"w-full h-full",gap:"mini",justify:"center",vertical:!0,children:(0,tl.jsx)(dV.d,{text:"No results found"})})]})})},rightItem:{size:250,minSize:250,maxSize:250,children:(0,tl.jsx)(d3,{item:a})},withDivider:!0}),(0,tl.jsx)(aO.o,{theme:"secondary",children:(0,tl.jsx)(aN.t,{onChange:m,pageSizeOptions:[10,20,50,100],showSizeChanger:!0,showTotal:e=>`Total ${e} items`,total:(null==u?void 0:u.totalItems)??0})})]}),[u,a,d])},d4=()=>{let[e,t]=(0,ts.useState)(""),[i,n]=(0,ts.useState)("");return(0,ts.useEffect)(()=>{let e=setTimeout(()=>{t(i)},500);return()=>{clearTimeout(e)}},[i]),(0,tl.jsx)(aF.D,{renderTopBar:(0,tl.jsx)(aO.o,{padding:{left:"none",right:"none"},position:"top",theme:"secondary",children:(0,tl.jsx)(a_.M,{maxWidth:"100%",onChange:e=>{n(e.target.value)},onSearch:e=>{n(e)},value:i})}),children:(0,tl.jsx)(dO,{searchTerm:e,children:(0,tl.jsx)(d6,{})})})};var d8=i(50019),d7=i(76396),d5=i(99911),d9=i(56417),fe=i(75113),ft=i(44835),fi=i(55714),fn=i(94780),fr=i(32221),fa=i(28863),fo=i(63784),fl=i(90663),fs=i(70617),fd=i(86070),ff=i(99741);let fc=()=>(0,tl.jsx)(aO.o,{borderStyle:"default",padding:{left:"none",right:"none"},position:"top",theme:"secondary",children:(0,tl.jsxs)(rZ.k,{className:"w-full",gap:"small",children:[(0,tl.jsx)(fd.C,{}),(0,tl.jsx)(ff.U,{})]})});var fu=i(43589),fm=i(23980),fp=i(97384);let fg=()=>(0,tl.jsx)(aO.o,{borderStyle:"default",padding:{right:"none",left:"none"},theme:"secondary",children:(0,tl.jsx)(rZ.k,{className:"w-full",gap:"small",justify:"space-between",children:(0,tl.jsxs)(aR.P,{size:"extra-small",children:[(0,tl.jsx)(fu.q,{}),(0,tl.jsx)(fm.s,{}),(0,tl.jsx)(fp.t,{})]})})});var fh=i(85153);let fb={...fe.l,ViewComponent:()=>{let{dataQueryResult:e}=(0,fo.e)();return(0,ts.useMemo)(()=>(0,tl.jsxs)(tl.Fragment,{children:[void 0===e&&(0,tl.jsx)(aB.V,{loading:!0}),void 0!==e&&(0,tl.jsx)(aF.D,{renderToolbar:(0,tl.jsx)(fg,{}),renderTopBar:(0,tl.jsx)(fc,{}),children:(0,tl.jsx)(aF.D,{renderSidebar:(0,tl.jsx)(fl.Y,{}),children:(0,tl.jsx)(fs.T,{})})})]}),[e])},useDataQuery:dB.HU,useDataQueryHelper:d8.$,useElementId:d5.u},fy=(0,fr.q)(fi.L,fa.g,d7.p,[ft.o,{handleSearchTermInSidebar:!1}],[fh.V,{elementType:s2.a.asset}],fn.y,[(e,t)=>{let{useGridOptions:i,...n}=e;if(void 0===t)throw Error("OpenElementDecorator requires an elementType prop");return{...n,useGridOptions:()=>{let{getGridProps:e,...n}=i(),{openElement:r}=(0,ig.f)(),{close:a}=dN();return{...n,getGridProps:()=>({...e(),onRowDoubleClick:e=>{let{id:i}=e.original,{elementType:n}=t;r({id:i,type:n}),a()}})}}}},{elementType:s2.a.asset}])(fb),fv=()=>(0,tl.jsx)(d9.d,{serviceIds:["DynamicTypes/GridCellRegistry","DynamicTypes/MetadataRegistry","DynamicTypes/ListingRegistry","DynamicTypes/FieldFilterRegistry"],children:(0,tl.jsx)(fe.p,{...fy})}),fx=()=>(0,tl.jsx)(aB.V,{style:{height:"65vh"},children:(0,tl.jsx)(fv,{})});var fj=i(43103);let fw=()=>(0,tl.jsx)(aO.o,{borderStyle:"default",padding:{left:"none",right:"none"},position:"top",theme:"secondary",children:(0,tl.jsxs)(tN.Flex,{className:"w-full",gap:"small",children:[(0,tl.jsx)(fd.C,{}),(0,tl.jsx)(fj.i,{nullable:!0}),(0,tl.jsx)(ff.U,{})]})}),fC=()=>(0,tl.jsx)(aO.o,{borderStyle:"default",padding:{right:"none",left:"none"},theme:"secondary",children:(0,tl.jsx)(rZ.k,{className:"w-full",gap:"small",justify:"space-between",children:(0,tl.jsxs)(aR.P,{size:"extra-small",children:[(0,tl.jsx)(fu.q,{}),(0,tl.jsx)(fm.s,{}),(0,tl.jsx)(fp.t,{})]})})});var fk=i(89320),fT=i(91485),fS=i(92510);let fD={...fe.l,ViewComponent:()=>{let{dataQueryResult:e}=(0,fo.e)();return(0,ts.useMemo)(()=>(0,tl.jsxs)(tl.Fragment,{children:[void 0===e&&(0,tl.jsx)(aB.V,{loading:!0}),void 0!==e&&(0,tl.jsx)(aF.D,{renderToolbar:(0,tl.jsx)(fC,{}),renderTopBar:(0,tl.jsx)(fw,{}),children:(0,tl.jsx)(aF.D,{renderSidebar:(0,tl.jsx)(fl.Y,{}),children:(0,tl.jsx)(fs.T,{})})})]}),[e])},useDataQuery:dB.JM,useDataQueryHelper:fk.$,useElementId:d5.u},fE=(0,fr.q)(fi.L,fS.F,d7.p,[ft.o,{handleSearchTermInSidebar:!1}],fn.y,[fT.F,{showConfigLayer:!1}],[(e,t)=>{let{useGridOptions:i,...n}=e;if(void 0===t)throw Error("OpenElementDecorator requires an elementType prop");return{...n,useGridOptions:()=>{let{getGridProps:e,...n}=i(),{openElement:r}=(0,ig.f)(),{close:a}=dN();return{...n,getGridProps:()=>({...e(),onRowDoubleClick:e=>{let{id:i}=e.original,{elementType:n}=t;r({id:i,type:n}),a()}})}}}},{elementType:s2.a.dataObject}],[fh.V,{elementType:s2.a.dataObject}])(fD),fM=()=>(0,tl.jsx)(d9.d,{serviceIds:["DynamicTypes/GridCellRegistry","DynamicTypes/ListingRegistry","DynamicTypes/ObjectDataRegistry","DynamicTypes/FieldFilterRegistry"],children:(0,tl.jsx)(fe.p,{...fE})}),fI=()=>(0,tl.jsx)(aB.V,{style:{height:"65vh"},children:(0,tl.jsx)(fM,{})});var fL=i(82446);let fP=()=>(0,tl.jsx)(aO.o,{borderStyle:"default",padding:{left:"none",right:"none"},position:"top",theme:"secondary",children:(0,tl.jsxs)(rZ.k,{className:"w-full",gap:"small",children:[(0,tl.jsx)(fd.C,{}),(0,tl.jsx)(ff.U,{})]})}),fN=()=>(0,tl.jsx)(aO.o,{borderStyle:"default",padding:{right:"none",left:"none"},theme:"secondary",children:(0,tl.jsx)(rZ.k,{className:"w-full",gap:"small",justify:"space-between",children:(0,tl.jsxs)(aR.P,{size:"extra-small",children:[(0,tl.jsx)(fu.q,{}),(0,tl.jsx)(fm.s,{}),(0,tl.jsx)(fp.t,{})]})})}),fA={...fe.l,ViewComponent:()=>{let{dataQueryResult:e}=(0,fo.e)();return(0,ts.useMemo)(()=>(0,tl.jsxs)(tl.Fragment,{children:[void 0===e&&(0,tl.jsx)(aB.V,{loading:!0}),void 0!==e&&(0,tl.jsx)(aF.D,{renderToolbar:(0,tl.jsx)(fN,{}),renderTopBar:(0,tl.jsx)(fP,{}),children:(0,tl.jsx)(aF.D,{renderSidebar:(0,tl.jsx)(fl.Y,{}),children:(0,tl.jsx)(fs.T,{})})})]}),[e])},useDataQuery:dB.LM,useDataQueryHelper:d8.$,useElementId:d5.u},fR=(0,fr.q)(fi.L,fL.g,d7.p,[ft.o,{handleSearchTermInSidebar:!1}],[fh.V,{elementType:s2.a.document}],fn.y,[(e,t)=>{let{useGridOptions:i,...n}=e;if(void 0===t)throw Error("OpenElementDecorator requires an elementType prop");return{...n,useGridOptions:()=>{let{getGridProps:e,...n}=i(),{openElement:r}=(0,ig.f)(),{close:a}=dN();return{...n,getGridProps:()=>({...e(),onRowDoubleClick:e=>{let{id:i}=e.original,{elementType:n}=t;r({id:i,type:n}),a()}})}}}},{elementType:s2.a.document}])(fA),fO=()=>(0,tl.jsx)(d9.d,{serviceIds:["DynamicTypes/GridCellRegistry","DynamicTypes/ListingRegistry","DynamicTypes/FieldFilterRegistry"],children:(0,tl.jsx)(fe.p,{...fR})}),fB=()=>(0,tl.jsx)(aB.V,{style:{height:"65vh"},children:(0,tl.jsx)(fO,{})}),fF=()=>{let{isOpen:e,close:t,activeKey:i}=dN(),n=[{label:"All",key:"all",children:(0,tl.jsx)(d4,{})},{label:"Documents",key:s2.a.document,children:(0,tl.jsx)(fB,{})},{label:"Assets",key:s2.a.asset,children:(0,tl.jsx)(fx,{})},{label:"Data Objects",key:s2.a.dataObject,children:(0,tl.jsx)(fI,{})}];return(0,tl.jsx)(tl.Fragment,{children:e&&(0,tl.jsx)(av.u,{closable:!0,footer:null,onCancel:()=>{t()},open:e,size:"XL",children:(0,tl.jsx)(ay.m,{activeKey:i,items:n,noTabBarMargin:!0})})})},f_=()=>(0,tl.jsxs)(dP,{children:[(0,tl.jsx)(dA,{}),(0,tl.jsx)(fF,{})]});eR._.registerModule({onInit:()=>{let e=eB.nC.get(eO.j["App/ComponentRegistry/ComponentRegistry"]);e.registerToSlot("leftSidebar.slot",{name:"mainNav",priority:100,component:dI}),e.registerToSlot("leftSidebar.slot",{name:"search",priority:200,component:f_})}}),eR._.registerModule({onInit:()=>{let e=eB.nC.get(eO.j.mainNavRegistry);e.registerMainNavItem({path:"QuickAccess",label:"navigation.quick-access",icon:"quick-access",order:100}),e.registerMainNavItem({path:"DataManagement",label:"navigation.data-management",icon:"data-object",order:200}),e.registerMainNavItem({path:"ExperienceEcommerce",label:"navigation.experience-ecommerce",icon:"experience-commerce",order:300}),e.registerMainNavItem({path:"AssetManagement",label:"navigation.asset-management",icon:"asset",order:400}),e.registerMainNavItem({path:"AutomationIntegration",label:"navigation.automation-integration",icon:"automation-integration",order:500}),e.registerMainNavItem({path:"Translations",label:"navigation.translations",icon:"translate",order:600}),e.registerMainNavItem({path:"Reporting",label:"navigation.reporting",icon:"reporting",order:700}),e.registerMainNavItem({path:"System",label:"navigation.system",icon:"shield",order:800})}});let fz=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M10.42 5.088c-.263-.264-.395-.396-.445-.549a.67.67 0 0 1 0-.412c.05-.152.182-.284.446-.548l1.892-1.892A4 4 0 0 0 6.78 6.284c.08.325.12.489.112.592a.6.6 0 0 1-.073.26c-.047.092-.138.183-.32.365l-4.166 4.166a1.414 1.414 0 0 0 2 2L8.5 9.5c.182-.182.273-.273.364-.32a.6.6 0 0 1 .261-.073c.103-.007.267.032.593.112q.457.112.95.113a4 4 0 0 0 3.646-5.646l-1.892 1.892c-.264.264-.396.396-.548.446a.67.67 0 0 1-.412 0c-.153-.05-.285-.182-.549-.446z"})}),fV=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.3,d:"m8.667 4.667-.744-1.488c-.214-.428-.321-.642-.48-.798a1.3 1.3 0 0 0-.499-.308C6.733 2 6.494 2 6.014 2H3.468c-.747 0-1.12 0-1.406.145-.25.128-.454.332-.582.583-.146.285-.146.659-.146 1.405v.534m0 0h10.134c1.12 0 1.68 0 2.108.218a2 2 0 0 1 .874.874c.218.428.218.988.218 2.108V10.8c0 1.12 0 1.68-.218 2.108a2 2 0 0 1-.874.874c-.428.218-.988.218-2.108.218H4.533c-1.12 0-1.68 0-2.108-.218a2 2 0 0 1-.874-.874c-.218-.428-.218-.988-.218-2.108zm9 7-1-1M10 9a2.333 2.333 0 1 1-4.667 0A2.333 2.333 0 0 1 10 9"})}),f$=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"m8.667 4.667-.744-1.488c-.214-.428-.321-.642-.48-.798a1.3 1.3 0 0 0-.499-.308C6.733 2 6.494 2 6.014 2H3.468c-.747 0-1.12 0-1.406.145-.25.128-.454.332-.582.583-.146.285-.146.659-.146 1.405v.534m0 0h10.134c1.12 0 1.68 0 2.108.218a2 2 0 0 1 .874.874c.218.428.218.988.218 2.108V10.8c0 1.12 0 1.68-.218 2.108a2 2 0 0 1-.874.874c-.428.218-.988.218-2.108.218H4.533c-1.12 0-1.68 0-2.108-.218a2 2 0 0 1-.874-.874c-.218-.428-.218-.988-.218-2.108zM8 11.333v-4m-2 2h4"})}),fW=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M8.333 2H5.2c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874C2 3.52 2 4.08 2 5.2v5.6c0 1.12 0 1.68.218 2.108a2 2 0 0 0 .874.874C3.52 14 4.08 14 5.2 14h6.133c.62 0 .93 0 1.185-.068a2 2 0 0 0 1.414-1.414c.068-.255.068-.565.068-1.185m-1.333-6v-4m-2 2h4M7 5.667a1.333 1.333 0 1 1-2.667 0 1.333 1.333 0 0 1 2.667 0m2.993 2.278-5.639 5.127c-.317.288-.476.433-.49.558a.33.33 0 0 0 .111.287c.095.083.31.083.738.083h6.258c.96 0 1.439 0 1.816-.161a2 2 0 0 0 1.052-1.052C14 12.41 14 11.93 14 10.97c0-.323 0-.485-.035-.635a1.3 1.3 0 0 0-.25-.518c-.095-.122-.22-.223-.473-.424l-1.865-1.492c-.252-.202-.378-.303-.517-.339a.67.67 0 0 0-.372.012c-.136.044-.256.153-.495.37"})}),fH=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M13.667 4.852 8 8m0 0L2.333 4.852M8 8v6.333m1.333-.407-.815.453c-.189.105-.284.157-.384.178a.7.7 0 0 1-.268 0c-.1-.02-.195-.073-.384-.178l-4.933-2.74c-.2-.112-.3-.167-.373-.246a.7.7 0 0 1-.142-.243C2 11.048 2 10.934 2 10.706V5.294c0-.228 0-.342.034-.444a.7.7 0 0 1 .142-.243c.073-.079.173-.134.373-.245l4.933-2.74c.189-.106.284-.158.384-.179a.7.7 0 0 1 .268 0c.1.02.195.073.384.178l4.933 2.74c.2.112.3.167.373.246q.097.107.142.243c.034.102.034.216.034.444v3.04M5 3l6 3.333M12.667 14v-4m-2 2h4"})}),fG=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"m14.667 14.667-1-1m1-7H1.333M14.667 8V5.467c0-.747 0-1.12-.146-1.406a1.33 1.33 0 0 0-.582-.582c-.286-.146-.659-.146-1.406-.146H3.467c-.747 0-1.12 0-1.406.146-.25.127-.455.331-.582.582-.146.286-.146.659-.146 1.406v5.066c0 .747 0 1.12.146 1.406.127.25.331.454.582.582.286.146.659.146 1.406.146H7M14.333 12a2.333 2.333 0 1 1-4.666 0 2.333 2.333 0 0 1 4.666 0"})}),fU=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M8 10.333H5c-.93 0-1.396 0-1.774.115a2.67 2.67 0 0 0-1.778 1.778c-.115.378-.115.844-.115 1.774m11.334 0v-4m-2 2h4m-5-7a3 3 0 1 1-6 0 3 3 0 0 1 6 0"})}),fq=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{d:"M8 1.333a6.667 6.667 0 1 0 0 13.334A6.667 6.667 0 0 0 8 1.333m0 10A.667.667 0 1 1 8 10a.667.667 0 0 1 0 1.334m.667-2.666a.667.667 0 0 1-1.334 0V5.333a.667.667 0 1 1 1.334 0z"})}),fZ=e=>(0,tl.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,tl.jsx)("path",{fill:"currentColor",fillRule:"evenodd",d:"M12.345 2H8.398a2 2 0 0 0-2 2v7.52a2 2 0 0 0 2 2h3.947a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2m-4.92 5.333h.547c.184 0 .333.15.333.334v.213c0 .184-.15.333-.333.333h-.547zm4.92 5.2a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1H8.398a1 1 0 0 0-1 1v2.32h.547c.737 0 1.333.597 1.333 1.333v.214c0 .736-.596 1.333-1.333 1.333h-.547v2.333a1 1 0 0 0 1 1zM1.338 4.28a2.113 2.113 0 0 1 1.947-2.253 2.113 2.113 0 0 1 1.927 2.26v6.18c.007.32-.08.636-.254.906L3.712 13.3a.5.5 0 0 1-.874 0l-1.246-1.927a1.7 1.7 0 0 1-.254-.906zm2.774 6.547a.67.67 0 0 0 .1-.36l.013-6.187c.007-.68-.427-1.253-.94-1.253-.507 0-.94.586-.94 1.253v6.187a.67.67 0 0 0 .087.36l.84 1.333z",clipRule:"evenodd"}),(0,tl.jsx)("path",{fill:"currentColor",d:"M3.278 3.453a.5.5 0 0 0-.5.5V6.26a.5.5 0 0 0 1 0V3.953a.493.493 0 0 0-.5-.5M12.199 4.093H9.965a.5.5 0 0 0 0 1h2.233a.5.5 0 0 0 0-1"}),(0,tl.jsx)("path",{stroke:"currentColor",strokeWidth:.3,d:"M12.345 2H8.398a2 2 0 0 0-2 2v7.52a2 2 0 0 0 2 2h3.947a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2Zm-4.92 5.333h.547c.184 0 .333.15.333.334v.213c0 .184-.15.333-.333.333h-.547zm4.92 5.2a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1H8.398a1 1 0 0 0-1 1v2.32h.547c.737 0 1.333.597 1.333 1.333v.214c0 .736-.596 1.333-1.333 1.333h-.547v2.333a1 1 0 0 0 1 1zM1.338 4.28a2.113 2.113 0 0 1 1.947-2.253 2.113 2.113 0 0 1 1.927 2.26v6.18c.007.32-.08.636-.254.906L3.712 13.3a.5.5 0 0 1-.874 0l-1.246-1.927a1.7 1.7 0 0 1-.254-.906zm2.774 6.547a.67.67 0 0 0 .1-.36l.013-6.187c.007-.68-.427-1.253-.94-1.253-.507 0-.94.586-.94 1.253v6.187a.67.67 0 0 0 .087.36l.84 1.333z",clipRule:"evenodd"}),(0,tl.jsx)("path",{stroke:"currentColor",strokeWidth:.3,d:"M3.278 3.453a.5.5 0 0 0-.5.5V6.26a.5.5 0 0 0 1 0V3.953a.493.493 0 0 0-.5-.5ZM12.199 4.093H9.965a.5.5 0 0 0 0 1h2.233a.5.5 0 0 0 0-1Z"})]}),fK=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{d:"M2.5 9.358c.359 0 .65.292.65.65v1.03a.38.38 0 0 0 .38.379h1.029c.358 0 .65.292.65.65l-.014.131a.65.65 0 0 1-.636.52h-1.03a1.68 1.68 0 0 1-1.68-1.68v-1.03c0-.358.292-.65.651-.65M13.48 9.358a.65.65 0 0 1 .649.65v1.03a1.68 1.68 0 0 1-1.679 1.68h-1.03a.65.65 0 0 1-.636-.52l-.014-.13c0-.36.292-.65.65-.651h1.03a.38.38 0 0 0 .38-.379v-1.03c0-.358.29-.65.65-.65M7.99 6.132c.34 0 .615.277.615.617v.584h.585c.34 0 .616.277.617.617l-.013.124a.62.62 0 0 1-.604.492h-.585v.584a.617.617 0 1 1-1.232 0v-.584h-.585a.62.62 0 0 1-.603-.492l-.013-.124c0-.34.276-.617.616-.617h.585v-.584c0-.34.276-.617.616-.617M4.559 3.183a.651.651 0 0 1 0 1.3h-1.03a.38.38 0 0 0-.268.11.38.38 0 0 0-.11.27v1.029a.651.651 0 0 1-1.301 0v-1.03a1.68 1.68 0 0 1 1.68-1.68zM12.45 3.183a1.68 1.68 0 0 1 1.679 1.68v1.029a.65.65 0 1 1-1.3 0v-1.03a.38.38 0 0 0-.379-.379h-1.03a.651.651 0 0 1 0-1.3z"})}),fJ=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{d:"M8.804 3.47a.75.75 0 0 1 1.003-.052l.057.052 4 4 .051.057a.75.75 0 0 1-.05 1.003l-4 4a.75.75 0 0 1-1.061-1.06l2.72-2.72H2.666a.75.75 0 0 1 0-1.5h8.856l-2.72-2.72-.051-.056a.75.75 0 0 1 .052-1.004"})}),fX=e=>(0,tl.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M2 6.667a2 2 0 0 1 2-2v0a2 2 0 0 0 1.6-.8l.3-.4a2 2 0 0 1 1.6-.8h1a2 2 0 0 1 1.6.8l.3.4a2 2 0 0 0 1.6.8v0a2 2 0 0 1 2 2v4.666a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2z"}),(0,tl.jsx)("circle",{cx:8,cy:8.667,r:2.667,stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4})]}),fQ=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M11.667 3.504V11a3.667 3.667 0 0 1-7.334 0V3.778a2.444 2.444 0 0 1 4.89 0v7.186a1.222 1.222 0 1 1-2.445 0v-6.53"})}),fY=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M13.165 3.333A7.96 7.96 0 0 1 14.667 8a7.96 7.96 0 0 1-1.502 4.667m-2.668-7.334c.527.756.836 1.675.836 2.667s-.309 1.91-.836 2.667M6.423 2.91l-2.11 2.11c-.116.116-.174.174-.24.215a.7.7 0 0 1-.194.08c-.076.018-.158.018-.32.018H2.4c-.373 0-.56 0-.703.073a.67.67 0 0 0-.291.291c-.073.143-.073.33-.073.703v3.2c0 .373 0 .56.073.703a.67.67 0 0 0 .291.291c.143.073.33.073.703.073h1.158c.163 0 .245 0 .321.018a.7.7 0 0 1 .193.08c.067.041.125.099.24.214l2.11 2.11c.286.286.43.429.552.439a.33.33 0 0 0 .28-.116c.08-.094.08-.296.08-.7V3.288c0-.404 0-.606-.08-.7a.33.33 0 0 0-.28-.116c-.123.01-.266.153-.551.438"})}),f0=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M8.667 1.333 2.729 8.46c-.233.279-.349.418-.35.536-.002.102.043.2.123.264.092.074.273.074.637.074H8l-.667 5.334 5.938-7.126c.233-.279.349-.418.35-.536a.33.33 0 0 0-.123-.264c-.092-.074-.273-.074-.637-.074H8z"})}),f1=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{fillOpacity:.88,d:"M12 3.333h-2c-.4 0-.667.267-.667.667v8c0 .4.267.667.667.667h2c1.467 0 2.667-1.2 2.667-2.667V6c0-1.467-1.2-2.667-2.667-2.667M13.333 10c0 .733-.6 1.333-1.333 1.333h-1.333V10h.666c.4 0 .667-.267.667-.667s-.267-.666-.667-.666h-.666V7.333h.666c.4 0 .667-.266.667-.666S11.733 6 11.333 6h-.666V4.667H12c.733 0 1.333.6 1.333 1.333zm-6-2.667c.4 0 .667-.266.667-.666S7.733 6 7.333 6h-.666V4c0-.4-.267-.667-.667-.667H4A2.675 2.675 0 0 0 1.333 6v4c0 1.467 1.2 2.667 2.667 2.667h2c.4 0 .667-.267.667-.667v-2h.666c.4 0 .667-.267.667-.667s-.267-.666-.667-.666h-.666V7.333zm-2 4H4c-.733 0-1.333-.6-1.333-1.333V6c0-.733.6-1.333 1.333-1.333h1.333z"})}),f2=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M6.167 2.667v10.666M9.833 2.667v10.666m-7.166-3.5h10.666M2.667 6.167h10.666m-8.666 7.166h6.666a2 2 0 0 0 2-2V4.667a2 2 0 0 0-2-2H4.667a2 2 0 0 0-2 2v6.666a2 2 0 0 0 2 2"})}),f3=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M8 1.667V8m0 0 5.667-3.148M8 8 2.333 4.852M8 8v6.333m5.667-3.185-5.149-2.86c-.189-.105-.284-.158-.384-.178a.7.7 0 0 0-.268 0c-.1.02-.195.073-.384.178l-5.149 2.86M14 10.706V5.294c0-.228 0-.342-.034-.444a.7.7 0 0 0-.142-.243c-.073-.079-.173-.134-.373-.245l-4.933-2.74c-.189-.106-.284-.158-.384-.179a.7.7 0 0 0-.268 0c-.1.02-.195.073-.384.178l-4.933 2.74c-.2.112-.3.167-.373.246a.7.7 0 0 0-.142.243C2 4.952 2 5.066 2 5.294v5.412c0 .228 0 .342.034.444q.045.136.142.243c.073.079.173.134.373.245l4.933 2.74c.189.106.284.158.384.179q.134.027.268 0c.1-.02.195-.073.384-.178l4.933-2.74c.2-.112.3-.167.373-.246a.7.7 0 0 0 .142-.243c.034-.102.034-.216.034-.444"})}),f6=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"m8 14-.067-.1c-.463-.695-.694-1.042-1-1.293a2.7 2.7 0 0 0-.919-.492C5.636 12 5.218 12 4.384 12h-.917c-.747 0-1.12 0-1.406-.145a1.33 1.33 0 0 1-.582-.583c-.146-.285-.146-.659-.146-1.405V4.133c0-.746 0-1.12.146-1.405.127-.25.331-.455.582-.583C2.347 2 2.72 2 3.467 2h.266c1.494 0 2.24 0 2.811.29.502.256.91.664 1.165 1.166C8 4.026 8 4.773 8 6.266M8 14V6.267M8 14l.067-.1c.463-.695.694-1.042 1-1.293.271-.223.583-.39.919-.492.378-.115.796-.115 1.63-.115h.917c.747 0 1.12 0 1.406-.145.25-.128.454-.332.582-.583.146-.285.146-.659.146-1.405V4.133c0-.746 0-1.12-.146-1.405a1.33 1.33 0 0 0-.582-.583C13.653 2 13.28 2 12.533 2h-.266c-1.494 0-2.24 0-2.811.29-.502.256-.91.664-1.165 1.166C8 4.026 8 4.773 8 6.266"})}),f4=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M3.333 5.2c0-1.12 0-1.68.218-2.108a2 2 0 0 1 .874-.874C4.853 2 5.413 2 6.533 2h2.934c1.12 0 1.68 0 2.108.218a2 2 0 0 1 .874.874c.218.428.218.988.218 2.108V14L8 11.333 3.333 14z"})}),f8=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M12 6.667V2.4c0-.373 0-.56-.073-.703a.67.67 0 0 0-.291-.291c-.143-.073-.33-.073-.703-.073H5.067c-.374 0-.56 0-.703.073a.67.67 0 0 0-.291.291C4 1.84 4 2.027 4 2.4v4.267m8 0H4m8 0V6.8c0 1.12 0 1.68-.218 2.108a2 2 0 0 1-.874.874C10.48 10 9.92 10 8.8 10H7.2c-1.12 0-1.68 0-2.108-.218a2 2 0 0 1-.874-.874C4 8.48 4 7.92 4 6.8v-.133M9.667 10v3a1.667 1.667 0 1 1-3.334 0v-3"})}),f7=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"m11.667 4.333-7.334 7.334M5.667 7V4.333M4.333 5.667H7m2 4.666h2.667M5.2 14h5.6c1.12 0 1.68 0 2.108-.218a2 2 0 0 0 .874-.874C14 12.48 14 11.92 14 10.8V5.2c0-1.12 0-1.68-.218-2.108a2 2 0 0 0-.874-.874C12.48 2 11.92 2 10.8 2H5.2c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874C2 3.52 2 4.08 2 5.2v5.6c0 1.12 0 1.68.218 2.108a2 2 0 0 0 .874.874C3.52 14 4.08 14 5.2 14"})}),f5=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M14 6.667H2m8.667-5.334V4M5.333 1.333V4M5.2 14.667h5.6c1.12 0 1.68 0 2.108-.218a2 2 0 0 0 .874-.874c.218-.428.218-.988.218-2.108v-5.6c0-1.12 0-1.68-.218-2.108a2 2 0 0 0-.874-.874c-.428-.218-.988-.218-2.108-.218H5.2c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874C2 4.186 2 4.747 2 5.867v5.6c0 1.12 0 1.68.218 2.108a2 2 0 0 0 .874.874c.428.218.988.218 2.108.218"})}),f9=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M3.333 8.667h2M1.333 6l1.334.667.847-2.542c.175-.524.262-.786.424-.98.143-.172.327-.304.535-.386.235-.092.512-.092 1.065-.092h4.924c.553 0 .83 0 1.065.092.208.082.392.214.535.386.162.194.25.456.424.98l.847 2.542L14.667 6m-4 2.667h2m-8.134-2h6.934c1.12 0 1.68 0 2.108.218a2 2 0 0 1 .874.874c.218.428.218.988.218 2.108v1.8c0 .31 0 .464-.026.593a1.33 1.33 0 0 1-1.047 1.048c-.13.025-.284.025-.594.025h-.333A1.333 1.333 0 0 1 11.333 12a.333.333 0 0 0-.333-.333H5a.333.333 0 0 0-.333.333c0 .736-.597 1.333-1.334 1.333H3c-.31 0-.465 0-.593-.025a1.33 1.33 0 0 1-1.048-1.048c-.026-.129-.026-.284-.026-.593v-1.8c0-1.12 0-1.68.218-2.108a2 2 0 0 1 .874-.874c.428-.218.988-.218 2.108-.218"})}),ce=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"m8 14-.067-.1c-.463-.695-.694-1.042-1-1.293a2.7 2.7 0 0 0-.919-.492C5.635 12 5.218 12 4.384 12h-.917c-.747 0-1.12 0-1.406-.145a1.33 1.33 0 0 1-.582-.583c-.146-.285-.146-.659-.146-1.405V4.133c0-.746 0-1.12.146-1.405.127-.25.331-.455.582-.583C2.347 2 2.72 2 3.467 2h.266c1.494 0 2.24 0 2.81.29.503.256.91.664 1.166 1.166C8 4.026 8 4.773 8 6.266M8 14V6.267M8 14l.067-.1c.463-.695.694-1.042 1-1.293.271-.223.583-.39.919-.492.378-.115.796-.115 1.63-.115h.917c.747 0 1.12 0 1.406-.145.25-.128.454-.332.582-.583.146-.285.146-.659.146-1.405V4.133c0-.746 0-1.12-.146-1.405a1.33 1.33 0 0 0-.582-.583C13.653 2 13.28 2 12.533 2h-.266c-1.494 0-2.24 0-2.811.29-.502.256-.91.664-1.165 1.166C8 4.026 8 4.773 8 6.266"})}),ct=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{d:"M14.667 12.2v-1.533c0-.4-.267-.667-.667-.667h-1.333V8.467c.4-.2.666-.667.666-1.134C13.333 6.6 12.733 6 12 6c-.467 0-.933.267-1.133.667h-2.2V5.2c.8-.267 1.333-1 1.333-1.867 0-1.133-.867-2-2-2s-2 .867-2 2c0 .867.533 1.6 1.333 1.867v1.467h-2.2C4.933 6.267 4.467 6 4 6c-.733 0-1.333.6-1.333 1.333 0 .467.266.934.666 1.134V10H2c-.4 0-.667.267-.667.667V12.2c-.4.2-.666.667-.666 1.133 0 .734.6 1.334 1.333 1.334s1.333-.6 1.333-1.334c0-.466-.266-.933-.666-1.133v-.867h2.666v.867c-.4.2-.666.667-.666 1.133 0 .734.6 1.334 1.333 1.334s1.333-.6 1.333-1.334c0-.466-.266-.933-.666-1.133v-1.533c0-.4-.267-.667-.667-.667H4.667V8.467c.2-.134.333-.267.466-.467h5.734c.133.2.266.333.466.467V10H10c-.4 0-.667.267-.667.667V12.2c-.4.2-.666.667-.666 1.133 0 .734.6 1.334 1.333 1.334s1.333-.6 1.333-1.334c0-.466-.266-.933-.666-1.133v-.867h2.666v.867c-.4.2-.666.667-.666 1.133 0 .734.6 1.334 1.333 1.334s1.333-.6 1.333-1.334c0-.466-.266-.933-.666-1.133M8 4c-.4 0-.667-.267-.667-.667S7.6 2.667 8 2.667s.667.266.667.666S8.4 4 8 4"})}),ci=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M14.667 14v-1.333c0-1.243-.85-2.287-2-2.583m-2.334-7.89a2.668 2.668 0 0 1 0 4.945m1 6.861c0-1.242 0-1.864-.203-2.354a2.67 2.67 0 0 0-1.443-1.443C9.197 10 8.576 10 7.333 10h-2c-1.242 0-1.863 0-2.354.203-.653.27-1.172.79-1.443 1.443-.203.49-.203 1.111-.203 2.354M9 4.667a2.667 2.667 0 1 1-5.333 0 2.667 2.667 0 0 1 5.333 0"})}),cn=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"m5.727 9.007 4.553 2.653m-.007-7.32L5.727 6.993M14 3.333a2 2 0 1 1-4 0 2 2 0 0 1 4 0M6 8a2 2 0 1 1-4 0 2 2 0 0 1 4 0m8 4.667a2 2 0 1 1-4 0 2 2 0 0 1 4 0"})}),cr=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 24 24",...e,children:(0,tl.jsxs)("g",{clipPath:"url(#chart-scatter_inline_svg__clip0_1257_7155)",children:[(0,tl.jsx)("path",{fill:"#fff",fillOpacity:.01,d:"M24 0H0v24h24z"}),(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M3 3v18h18"}),(0,tl.jsx)("path",{fill:"currentColor",fillRule:"evenodd",d:"M10 12a2 2 0 1 0 0-4 2 2 0 0 0 0 4M18.5 8a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5M7.5 18a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3M16.5 16a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3",clipRule:"evenodd"})]})}),ca=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("g",{clipPath:"url(#check-circle_inline_svg__clip0_723_2418)",children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"m5 8 2 2 4-4m3.667 2A6.667 6.667 0 1 1 1.333 8a6.667 6.667 0 0 1 13.334 0"})})}),co=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"m6 7.333 2 2 6.667-6.666m-4-.667H5.2c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874C2 3.52 2 4.08 2 5.2v5.6c0 1.12 0 1.68.218 2.108a2 2 0 0 0 .874.874C3.52 14 4.08 14 5.2 14h5.6c1.12 0 1.68 0 2.108-.218a2 2 0 0 0 .874-.874C14 12.48 14 11.92 14 10.8V8"})}),cl=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{d:"M8 1.333a6.667 6.667 0 1 0 0 13.334A6.667 6.667 0 0 0 8 1.333m2.867 5.074-3.047 4a.667.667 0 0 1-1.053.006L5.14 8.34a.667.667 0 0 1 1.053-.82L7.28 8.907 9.8 5.573a.67.67 0 1 1 1.067.814z"})}),cs=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 18 18",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"m4.5 6.75 4.5 4.5 4.5-4.5"})}),cd=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 18 18",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M11.25 13.5 6.75 9l4.5-4.5"})}),cf=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 18 18",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"m6.75 13.5 4.5-4.5-4.5-4.5"})}),cc=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M6 4.667 2.667 8 6 11.333m4-6.666L13.333 8 10 11.333"})}),cu=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 18 18",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M13.5 11.25 9 6.75l-4.5 4.5"})}),cm=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M5 8h.007M11 8h.007M8 8h.007M8 11h.007M8 5h.007M2 5.2v5.6c0 1.12 0 1.68.218 2.108a2 2 0 0 0 .874.874C3.52 14 4.08 14 5.2 14h5.6c1.12 0 1.68 0 2.108-.218a2 2 0 0 0 .874-.874C14 12.48 14 11.92 14 10.8V5.2c0-1.12 0-1.68-.218-2.108a2 2 0 0 0-.874-.874C12.48 2 11.92 2 10.8 2H5.2c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874C2 3.52 2 4.08 2 5.2"})}),cp=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{d:"M8 1.333a6.667 6.667 0 1 0 0 13.334A6.667 6.667 0 0 0 8 1.333M9.807 8.86a.667.667 0 0 1-.217 1.093.67.67 0 0 1-.73-.146L8 8.94l-.86.867a.667.667 0 0 1-1.093-.217.67.67 0 0 1 .146-.73L7.06 8l-.867-.86a.67.67 0 0 1 .947-.947L8 7.06l.86-.867a.67.67 0 0 1 .947.947L8.94 8z"})}),cg=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("g",{clipPath:"url(#close_inline_svg__clip0_723_2211)",children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"m12 4-8 8m0-8 8 8"})})}),ch=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M1.333 9.333h13.334M5.333 14h5.334m-6.134-2h6.934c1.12 0 1.68 0 2.108-.218a2 2 0 0 0 .874-.874c.218-.428.218-.988.218-2.108V5.2c0-1.12 0-1.68-.218-2.108a2 2 0 0 0-.874-.874C13.147 2 12.587 2 11.467 2H4.533c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874c-.218.428-.218.988-.218 2.108v3.6c0 1.12 0 1.68.218 2.108a2 2 0 0 0 .874.874c.428.218.988.218 2.108.218"})}),cb=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.3,d:"M4 6.667h.007m1.326 2.666h.007m1.327-2.666h.006M8 9.333h.007m1.326-2.666h.007m1.327 2.666h.006M12 6.667h.007M3.467 12h9.066c.747 0 1.12 0 1.406-.145.25-.128.454-.332.582-.583.146-.285.146-.659.146-1.405V6.133c0-.746 0-1.12-.146-1.405a1.33 1.33 0 0 0-.582-.583C13.653 4 13.28 4 12.533 4H3.467c-.747 0-1.12 0-1.406.145-.25.128-.454.332-.582.583-.146.285-.146.659-.146 1.405v3.734c0 .746 0 1.12.146 1.405.127.25.331.455.582.583.286.145.659.145 1.406.145"})}),cy=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.3,d:"M4.533 2h-.4c-.746 0-1.12 0-1.405.145-.25.128-.455.332-.583.583C2 3.013 2 3.387 2 4.133v7.734c0 .746 0 1.12.145 1.405.128.25.332.455.583.583.285.145.659.145 1.405.145h.4c.747 0 1.12 0 1.406-.145.25-.128.455-.332.582-.583.146-.285.146-.659.146-1.405V4.133c0-.746 0-1.12-.146-1.405a1.33 1.33 0 0 0-.582-.583C5.653 2 5.28 2 4.533 2M11.867 2h-.4c-.747 0-1.12 0-1.406.145-.25.128-.455.332-.582.583-.146.285-.146.659-.146 1.405v7.734c0 .746 0 1.12.146 1.405.127.25.331.455.582.583.286.145.659.145 1.406.145h.4c.746 0 1.12 0 1.405-.145.25-.128.455-.332.583-.583.145-.285.145-.659.145-1.405V4.133c0-.746 0-1.12-.145-1.405a1.33 1.33 0 0 0-.583-.583C12.987 2 12.613 2 11.867 2"})}),cv=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{d:"M7.334 11.334H2.667a1.333 1.333 0 0 1-1.333-1.333V2A1.333 1.333 0 0 1 2.667.668h8V2h-8v8h4.667V8.668l2.666 2-2.666 2zm5.333 2.667V4.668H5.334v4H4v-4a1.333 1.333 0 0 1 1.334-1.334h7.333A1.333 1.333 0 0 1 14 4.668V14a1.333 1.333 0 0 1-1.333 1.333H5.334A1.333 1.333 0 0 1 4 14.001v-1.333h1.334V14z"})}),cx=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 17 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M2.179 2.138h8.536M2.179 4.465h8.536M2.179 6.793H7.61M13.397 8.766l-3.42 3.419a2 2 0 0 1-1.021.547l-1.489.298.298-1.489a2 2 0 0 1 .547-1.022L11.73 7.1m1.665 1.666.718-.717a1 1 0 0 0 0-1.415l-.252-.251a1 1 0 0 0-1.414 0l-.717.717m1.665 1.666L11.732 7.1"})}),cj=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M3.333 4.667h9.334M3.333 8h9.334M3.333 11.333H8"})}),cw=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{fill:"currentColor",stroke:"currentColor",strokeWidth:.1,d:"m2.579 6.778-.006.008a.7.7 0 0 0-.117.274c-.016.094 0 .19.058.284l.547 1.688a.58.58 0 0 0 .543.431h.249q.153.232.329.445.242.385.563.7a5.2 5.2 0 0 0-1.711 3.338c-.036.335.24.604.57.604.333 0 .593-.27.636-.591a3.95 3.95 0 0 1 1.526-2.626 3.8 3.8 0 0 0 1.685.39h1.098c.6 0 1.162-.138 1.666-.38a3.96 3.96 0 0 1 1.543 2.616c.046.321.305.591.638.591.33 0 .606-.269.57-.604a5.1 5.1 0 0 0-1.727-3.322q.33-.321.58-.716.175-.213.328-.445h.249a.58.58 0 0 0 .543-.431l.547-1.688a.4.4 0 0 0 .058-.284.7.7 0 0 0-.117-.274h.001l-.007-.008c-.103-.105-.259-.219-.426-.238C12.971 3.71 10.761 1.45 8 1.45S3.03 3.71 3.005 6.54c-.167.02-.323.133-.426.238ZM8 2.68c1.843 0 3.354 1.316 3.711 3.097a2.73 2.73 0 0 0-2.063-.936H6.352c-.83 0-1.557.362-2.064.936C4.646 3.997 6.157 2.68 8 2.68Zm1.648 3.392c.906 0 1.599.71 1.599 1.645 0 .386-.074.75-.207 1.08H8.55c-.362 0-.6.31-.6.616 0 .369.3.615.6.615h1.254A3.73 3.73 0 0 1 5.16 9.19a2.84 2.84 0 0 1-.408-1.472c0-.934.693-1.645 1.599-1.645z"})}),cC=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 24 24",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M8 8V5.2c0-1.12 0-1.68.218-2.108a2 2 0 0 1 .874-.874C9.52 2 10.08 2 11.2 2h7.6c1.12 0 1.68 0 2.108.218a2 2 0 0 1 .874.874C22 3.52 22 4.08 22 5.2v7.6c0 1.12 0 1.68-.218 2.108a2 2 0 0 1-.874.874C20.48 16 19.92 16 18.8 16H16M5.2 22h7.6c1.12 0 1.68 0 2.108-.218a2 2 0 0 0 .874-.874C16 20.48 16 19.92 16 18.8v-7.6c0-1.12 0-1.68-.218-2.108a2 2 0 0 0-.874-.874C14.48 8 13.92 8 12.8 8H5.2c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874C2 9.52 2 10.08 2 11.2v7.6c0 1.12 0 1.68.218 2.108a2 2 0 0 0 .874.874C3.52 22 4.08 22 5.2 22"})}),ck=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.3,d:"M10.667 2.667c.62 0 .93 0 1.184.068a2 2 0 0 1 1.414 1.414c.068.254.068.564.068 1.184v6.134c0 1.12 0 1.68-.218 2.108a2 2 0 0 1-.874.874c-.428.218-.988.218-2.108.218H5.867c-1.12 0-1.68 0-2.108-.218a2 2 0 0 1-.874-.874c-.218-.428-.218-.988-.218-2.108V5.333c0-.62 0-.93.068-1.184a2 2 0 0 1 1.414-1.414c.254-.068.564-.068 1.184-.068M6.4 4h3.2c.373 0 .56 0 .703-.073a.67.67 0 0 0 .291-.291c.073-.143.073-.33.073-.703V2.4c0-.373 0-.56-.073-.703a.67.67 0 0 0-.291-.291c-.143-.073-.33-.073-.703-.073H6.4c-.373 0-.56 0-.703.073a.67.67 0 0 0-.291.291c-.073.143-.073.33-.073.703v.533c0 .374 0 .56.073.703a.67.67 0 0 0 .291.291C5.84 4 6.027 4 6.4 4"})}),cT=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("g",{clipPath:"url(#country-select_inline_svg__clip0_1242_1678)",children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M10 1.639a6.667 6.667 0 1 0 3.871 3.201m-2.538-1.007h.004M7 14.593v-1.47c0-.08.029-.156.08-.217l1.658-1.933a.333.333 0 0 0-.088-.506L6.746 9.379a.33.33 0 0 1-.124-.125L5.38 7.08a.33.33 0 0 0-.319-.167l-3.685.329M14 4c0 1.473-1.333 2.667-2.667 4C10 6.667 8.667 5.473 8.667 4A2.667 2.667 0 1 1 14 4m-2.5-.167a.167.167 0 1 1-.333 0 .167.167 0 0 1 .333 0"})})}),cS=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("g",{clipPath:"url(#crop_inline_svg__clip0_723_2340)",children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M6.667 4h3.2c.746 0 1.12 0 1.405.145.25.128.455.332.583.583.145.285.145.659.145 1.405v3.2M1.333 4H4m8 8v2.667M14.667 12H6.133c-.746 0-1.12 0-1.405-.145a1.33 1.33 0 0 1-.583-.583C4 10.987 4 10.613 4 9.867V1.333"})})}),cD=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{d:"M10 10.667H6A.667.667 0 1 0 6 12h4a.666.666 0 1 0 0-1.333m-4-4h.667a.667.667 0 1 0 0-1.334H6a.667.667 0 1 0 0 1.334M10 8H6a.667.667 0 0 0 0 1.333h4A.667.667 0 1 0 10 8m3.14 2.193a.7.7 0 0 0-.22-.14.62.62 0 0 0-.507 0 .7.7 0 0 0-.22.14.8.8 0 0 0-.14.22.67.67 0 0 0 .14.727.67.67 0 0 0 .727.14.8.8 0 0 0 .22-.14.67.67 0 0 0 .14-.727.8.8 0 0 0-.14-.22m.193-4.233a1 1 0 0 0-.04-.18v-.06a.7.7 0 0 0-.126-.187l-4-4a.7.7 0 0 0-.187-.126.2.2 0 0 0-.06 0 .6.6 0 0 0-.22-.074H4.667a2 2 0 0 0-2 2v9.334a2 2 0 0 0 2 2H10a.667.667 0 0 0 0-1.334H4.667A.667.667 0 0 1 4 12.667V3.333a.667.667 0 0 1 .667-.666H8v2a2 2 0 0 0 2 2h2V8a.666.666 0 1 0 1.333 0V5.96M10 5.333a.667.667 0 0 1-.667-.666v-1.06l1.727 1.726zM12.667 12a.666.666 0 0 0-.667.667V14a.666.666 0 1 0 1.333 0v-1.333a.667.667 0 0 0-.666-.667"})}),cE=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsxs)("g",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:1.4,clipPath:"url(#customer-segment-group_inline_svg__clip0_723_2376)",children:[(0,tl.jsx)("path",{d:"M4.667 6a2.333 2.333 0 1 0 0-4.667 2.333 2.333 0 0 0 0 4.667ZM11.333 6a2.333 2.333 0 1 0 0-4.667 2.333 2.333 0 0 0 0 4.667Z"}),(0,tl.jsx)("path",{strokeLinecap:"round",d:"M1.333 14.667v-3c0-1.841 1.257-3.334 2.807-3.334h1.685C7.186 8.333 8 9.676 8 9.676"}),(0,tl.jsx)("path",{strokeLinecap:"round",d:"M14.667 14.667v-3c0-1.841-1.272-3.334-2.84-3.334h-1.705c-1.32 0-2.125 1.343-2.122 1.343M3.667 13.333h9"}),(0,tl.jsx)("path",{strokeLinecap:"round",d:"m11.432 12.086.413.416.826.831-.826.854-.413.427M4.777 12.077l-.42.418-.84.836.84.85.42.424"})]})}),cM=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("g",{clipPath:"url(#customer-segment_inline_svg__clip0_723_2373)",children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M8 1.333A6.666 6.666 0 0 1 14.667 8M8 1.333V8m0-6.667A6.667 6.667 0 1 0 14.667 8M8 1.333A6.667 6.667 0 0 1 14.667 8m0 0H8m6.667 0a6.67 6.67 0 0 1-2.748 5.393L8 8"})})}),cI=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("g",{clipPath:"url(#customer_inline_svg__clip0_723_2364)",children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M5.333 9.333s1 1.334 2.667 1.334 2.667-1.334 2.667-1.334m.666-3.173c-.263.323-.623.507-1 .507-.376 0-.726-.184-1-.507m-2.666 0c-.264.323-.624.507-1 .507-.377 0-.727-.184-1-.507m10 1.84A6.667 6.667 0 1 1 1.333 8a6.667 6.667 0 0 1 13.334 0"})})}),cL=e=>(0,tl.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:[(0,tl.jsx)("path",{d:"M14.42 10.967H5.117l.467-.951 7.763-.014a.54.54 0 0 0 .534-.447l1.075-6.017a.543.543 0 0 0-.533-.64l-9.875-.032-.084-.397a.555.555 0 0 0-.54-.438H1.507a.552.552 0 1 0 0 1.103h1.968l.368 1.754.908 4.395-1.169 1.908a.55.55 0 0 0-.047.575.55.55 0 0 0 .493.303h.98a1.604 1.604 0 0 0 1.281 2.567 1.604 1.604 0 0 0 1.282-2.567h2.518a1.604 1.604 0 1 0 2.884.964c0-.349-.116-.688-.322-.964h1.77a.553.553 0 0 0 .552-.552.553.553 0 0 0-.553-.55M4.778 3.953l8.997.03-.881 4.934-7.067.013zm1.514 9.574a.495.495 0 0 1 0-.988.495.495 0 0 1 0 .988m5.08 0a.495.495 0 0 1 0-.988.495.495 0 0 1 0 .988"}),(0,tl.jsx)("path",{d:"M14.42 10.967v-.1zm-9.304 0-.09-.044-.07.144h.16zm.467-.951v-.1h-.062l-.027.056zm7.763-.014v-.1zm.534-.447.099.017zm1.075-6.017.099.017zm-.117-.444.077-.064zm-.416-.196.001-.1zm-9.875-.032-.097.02.016.08h.081zm-.084-.397-.098.02zM1.508 2.03v-.1zm-.551.552h-.1zm.551.551v-.1zm1.968 0 .097-.02-.016-.08h-.081zm.368 1.754.098-.02v-.001zm.908 4.395.085.052.021-.034-.008-.038zM3.583 11.19l.081.06.005-.008zm-.047.575.09-.045v-.001zm1.474.303.08.06.12-.16h-.2zm-.322.964h.1zm2.884-.964v-.1h-.199l.12.16zm2.518 0 .08.06.12-.16h-.2zm-.322.964h.1zm2.884-.964v-.1h-.2l.12.16zm2.322-.552h.1zM4.777 3.953v-.1h-.123l.025.12zm8.997.03.098.017.021-.117h-.119zm-.881 4.934v.1h.083l.015-.082zm-7.067.013-.098.02.016.08h.082zm.465 4.597v-.1zm5.08 0v-.1zm.494-.494h-.1zm2.556-2.166H5.116v.2h9.305zm-9.215.144.467-.951-.18-.088-.467.951zm.378-.895 7.762-.014v-.2l-7.763.014zm7.762-.014c.31 0 .577-.223.633-.53l-.197-.035a.44.44 0 0 1-.436.365zm.633-.53 1.075-6.017-.197-.035-1.075 6.017zm1.075-6.017a.64.64 0 0 0-.14-.525l-.153.128c.084.1.119.233.096.362zm-.14-.526a.65.65 0 0 0-.22-.17l-.085.182q.089.041.152.117zm-.22-.17a.65.65 0 0 0-.271-.06l-.001.2q.099 0 .187.042zm-.271-.06-9.875-.033v.2l9.874.032zm-9.778.046-.084-.397-.196.042.085.396zm-.084-.397a.655.655 0 0 0-.639-.517v.2c.213 0 .4.152.443.358zm-.639-.517H1.508v.2h2.414zm-2.414 0a.65.65 0 0 0-.46.191l.141.142a.45.45 0 0 1 .32-.133zm-.46.191a.65.65 0 0 0-.191.46h.2c0-.119.047-.234.132-.318zm-.191.46c0 .174.068.34.19.462l.142-.142a.45.45 0 0 1-.132-.32zm.19.462c.123.122.289.19.461.19v-.2a.45.45 0 0 1-.319-.132zm.461.19h1.968v-.2H1.508zm1.87-.079.368 1.753.196-.041-.369-1.753zm.368 1.753.908 4.395.196-.04-.908-4.396zm.92 4.323-1.168 1.907.17.105 1.17-1.908zm-1.163 1.9a.65.65 0 0 0-.125.332l.2.017a.45.45 0 0 1 .086-.23zm-.125.332c-.01.12.014.241.07.348l.177-.091a.45.45 0 0 1-.048-.24zm.07.348a.65.65 0 0 0 .58.358v-.2a.45.45 0 0 1-.402-.248zm.58.358h.982v-.2h-.981zm.902-.16a1.7 1.7 0 0 0-.342 1.024h.2a1.5 1.5 0 0 1 .302-.904zm-.342 1.024c0 .94.764 1.703 1.703 1.703v-.2c-.829 0-1.503-.674-1.503-1.503zm1.703 1.703c.94 0 1.703-.764 1.703-1.703h-.2c0 .829-.674 1.503-1.503 1.503zm1.703-1.703c0-.37-.123-.73-.341-1.024l-.16.12c.193.26.301.577.301.904zm-.422-.864h2.518v-.2H7.572zm2.438-.16a1.7 1.7 0 0 0-.342 1.024h.2a1.5 1.5 0 0 1 .301-.904zm-.342 1.024c0 .94.763 1.703 1.703 1.703v-.2c-.83 0-1.503-.674-1.503-1.503zm1.703 1.703c.94 0 1.703-.764 1.703-1.703h-.2c0 .829-.674 1.503-1.503 1.503zm1.703-1.703c0-.37-.123-.73-.342-1.024l-.16.12c.194.26.302.577.302.904zm-.422-.864h1.77v-.2h-1.77zm1.77 0a.653.653 0 0 0 .652-.652h-.2c0 .25-.203.452-.452.452zm.652-.652a.65.65 0 0 0-.193-.46l-.14.142a.45.45 0 0 1 .133.319zm-.193-.46a.65.65 0 0 0-.46-.19v.2c.12 0 .234.048.32.132zM4.777 4.053l8.997.03v-.2l-8.997-.03zm8.898-.088-.88 4.935.196.035L13.872 4zm-.783 4.852-7.067.013v.2l7.068-.013zm-6.969.092L4.875 3.933l-.196.04L5.728 8.95zm.368 4.518a.395.395 0 0 1-.394-.394h-.2c0 .327.267.594.594.594zm-.394-.394c0-.217.178-.394.394-.394v-.2a.595.595 0 0 0-.594.594zm.394-.394c.217 0 .394.177.394.394h.2a.595.595 0 0 0-.594-.594zm.394.394a.4.4 0 0 1-.115.278l.141.142a.6.6 0 0 0 .174-.42zm-.115.278a.4.4 0 0 1-.279.116v.2a.6.6 0 0 0 .42-.174zm4.8.116a.395.395 0 0 1-.393-.394h-.2c0 .327.267.594.594.594zm-.393-.394c0-.217.177-.394.394-.394v-.2a.595.595 0 0 0-.594.594zm.394-.394c.216 0 .394.177.394.394h.2a.595.595 0 0 0-.594-.594zm.394.394a.4.4 0 0 1-.116.278l.142.142a.6.6 0 0 0 .174-.42zm-.116.278a.4.4 0 0 1-.278.116v.2a.6.6 0 0 0 .42-.174z",mask:"url(#customers_inline_svg__path-1-outside-1_723_2410)"})]}),cP=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"m13.333 2.667-7.666 7.666m0-4.666 7.666 7.666M11.667 8h.006m2.994 0h.006M4 2a2 2 0 1 1 0 4 2 2 0 0 1 0-4m0 8a2 2 0 1 1 0 4 2 2 0 0 1 0-4"})}),cN=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("g",{fill:"currentColor",stroke:"currentColor",strokeWidth:.1,clipPath:"url(#dashboard_inline_svg__clip0_638_2071)",children:(0,tl.jsx)("path",{d:"M2.167 7.467h6.416A1.217 1.217 0 0 0 9.8 6.25V2.167A1.217 1.217 0 0 0 8.583.95H2.167A1.217 1.217 0 0 0 .95 2.167V6.25a1.217 1.217 0 0 0 1.217 1.217Zm.05-5.25h6.316V6.2H2.217zM13.783.95h-1.7a1.217 1.217 0 0 0-1.216 1.217V6.25a1.217 1.217 0 0 0 1.216 1.217h1.75A1.216 1.216 0 0 0 15.05 6.25V2.167A1.217 1.217 0 0 0 13.833.95zm0 5.25h-1.65V2.217h1.65zM3.917 8.534h-1.75A1.217 1.217 0 0 0 .95 9.75v4.084a1.216 1.216 0 0 0 1.217 1.216h1.75a1.217 1.217 0 0 0 1.216-1.216V9.75a1.217 1.217 0 0 0-1.216-1.216Zm-.05 5.25h-1.65V9.8h1.65zM13.833 8.534H7.417A1.217 1.217 0 0 0 6.2 9.75v4.084a1.216 1.216 0 0 0 1.217 1.216h6.416a1.216 1.216 0 0 0 1.217-1.216V9.75a1.217 1.217 0 0 0-1.217-1.216Zm-.05 5.25H7.467V9.8h6.316z"})})}),cA=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{fill:"currentColor",fillRule:"evenodd",stroke:"currentColor",strokeWidth:.5,d:"M8.235.953a1.2 1.2 0 0 0-.47 0c-.178.037-.338.126-.488.21l-.038.021-4.933 2.74-.04.023c-.159.087-.328.181-.457.321a1.2 1.2 0 0 0-.25.425c-.06.181-.06.375-.06.556l.001.045v5.457c0 .181-.001.375.059.556.052.158.137.303.25.425.13.14.298.234.457.321l.04.022 4.933 2.741.038.02c.15.085.31.174.488.21.155.033.315.033.47 0 .178-.036.338-.125.488-.21l.038-.02 4.933-2.74.04-.023c.159-.087.328-.181.457-.321.113-.122.198-.267.25-.425.06-.181.06-.375.06-.556l-.001-.045V5.249c0-.181.001-.375-.059-.556a1.2 1.2 0 0 0-.25-.425c-.13-.14-.298-.234-.457-.321l-.04-.022-4.933-2.741-.038-.02c-.15-.085-.31-.174-.488-.21Zm-.268.98a.2.2 0 0 1 .066 0q.004 0 .043.018c.043.02.1.052.2.107l4.694 2.609L8 7.428 3.03 4.667l4.695-2.609c.1-.055.156-.086.2-.107zM2.5 5.516l5 2.778v5.523L2.791 11.2a5 5 0 0 1-.207-.12l-.04-.027a.2.2 0 0 1-.035-.06l-.006-.049a5 5 0 0 1-.003-.24z",clipRule:"evenodd"})}),cR=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M13.667 4.852 8 8m0 0L2.333 4.852M8 8v6.333m6-3.627V5.294c0-.228 0-.342-.034-.444a.7.7 0 0 0-.142-.243c-.073-.079-.173-.134-.373-.245l-4.933-2.74c-.189-.106-.284-.158-.384-.179a.7.7 0 0 0-.268 0c-.1.02-.195.073-.384.178l-4.933 2.74c-.2.112-.3.167-.373.246a.7.7 0 0 0-.142.243C2 4.952 2 5.066 2 5.294v5.412c0 .228 0 .342.034.444q.045.136.142.243c.073.079.173.134.373.245l4.933 2.74c.189.106.284.158.384.179q.134.027.268 0c.1-.02.195-.073.384-.178l4.933-2.74c.2-.112.3-.167.373-.246a.7.7 0 0 0 .142-.243c.034-.102.034-.216.034-.444"})}),cO=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M13.333 8.333v-3.8c0-1.12 0-1.68-.218-2.108a2 2 0 0 0-.874-.874c-.428-.218-.987-.218-2.108-.218H5.867c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874c-.218.428-.218.988-.218 2.108v6.934c0 1.12 0 1.68.218 2.108a2 2 0 0 0 .874.874c.428.218.988.218 2.108.218H8m1.333-7.334h-4M6.667 10H5.333m5.334-5.333H5.333m4.334 8L11 14l3-3"})}),cB=e=>(0,tl.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:[(0,tl.jsx)("path",{fillRule:"evenodd",d:"M10 1.25a.75.75 0 0 1 .75.75v.583h.583a2.083 2.083 0 0 1 2.084 2.084v2.666a.75.75 0 0 1-.75.75H2.75v4.584a.583.583 0 0 0 .583.583h4.53a.75.75 0 0 1 0 1.5h-4.53a2.083 2.083 0 0 1-2.083-2.083v-8a2.083 2.083 0 0 1 2.083-2.084h.584V2a.75.75 0 0 1 1.5 0v.583H9.25V2a.75.75 0 0 1 .75-.75m1.917 3.417v1.916H2.75V4.667a.583.583 0 0 1 .583-.584h.584v.584a.75.75 0 0 0 1.5 0v-.584H9.25v.584a.75.75 0 0 0 1.5 0v-.584h.583a.583.583 0 0 1 .584.584",clipRule:"evenodd"}),(0,tl.jsx)("path",{d:"M12.75 10.997a.75.75 0 0 0-1.5 0V12c0 .199.079.39.22.53l.666.667a.75.75 0 0 0 1.061-1.06l-.447-.448z"}),(0,tl.jsx)("path",{fillRule:"evenodd",d:"M12 8.583a3.417 3.417 0 1 0 0 6.834 3.417 3.417 0 0 0 0-6.834m-1.355 2.062a1.917 1.917 0 1 1 2.71 2.711 1.917 1.917 0 0 1-2.71-2.711",clipRule:"evenodd"})]}),cF=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M5.374 2 2 5m4.333-1L2 8m4.333-1L2 11m4-1-3 3M6.333 2v12m7-12H2.667A.667.667 0 0 0 2 2.667v10.666c0 .368.298.667.667.667h10.666a.667.667 0 0 0 .667-.667V2.667A.667.667 0 0 0 13.333 2"})}),c_=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M2 6.353h12M5.374 2 2 5m12-1.664-3.333 2.997M8.707 2 3.976 6.208M12.04 2 7.308 6.208M13.333 2H2.667A.667.667 0 0 0 2 2.667v10.666c0 .368.298.667.667.667h10.666a.667.667 0 0 0 .667-.667V2.667A.667.667 0 0 0 13.333 2"})}),cz=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{d:"M14 10.8V9.333C14 8.6 13.4 8 12.667 8h-4V6.6c1.133-.267 2-1.333 2-2.6 0-1.467-1.2-2.667-2.667-2.667A2.675 2.675 0 0 0 5.333 4c0 1.267.867 2.267 2 2.6V8h-4C2.6 8 2 8.6 2 9.333V10.8c-.8.267-1.333 1-1.333 1.867 0 1.133.866 2 2 2s2-.867 2-2c0-.867-.534-1.6-1.334-1.867V9.333h4V10.8c-.8.267-1.333 1-1.333 1.867 0 1.133.867 2 2 2s2-.867 2-2c0-.867-.533-1.6-1.333-1.867V9.333h4V10.8c-.8.267-1.334 1-1.334 1.867 0 1.133.867 2 2 2s2-.867 2-2c0-.867-.533-1.6-1.333-1.867M2.667 13.333c-.4 0-.667-.266-.667-.666S2.267 12 2.667 12s.666.267.666.667-.266.666-.666.666m4-9.333c0-.733.6-1.333 1.333-1.333s1.333.6 1.333 1.333S8.733 5.333 8 5.333 6.667 4.733 6.667 4M8 13.333c-.4 0-.667-.266-.667-.666S7.6 12 8 12s.667.267.667.667-.267.666-.667.666m5.333 0c-.4 0-.666-.266-.666-.666s.266-.667.666-.667.667.267.667.667-.267.666-.667.666"})}),cV=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{fillRule:"evenodd",d:"M5.02 1.289a2.6 2.6 0 0 1 3.293 0l.082.069.005.004.05.043a1.4 1.4 0 0 0 1.498.184l1.808-.804a.6.6 0 0 1 .844.548v6.07c.287.008.524.028.74.086a2.6 2.6 0 0 1 1.838 1.838c.09.332.089.717.089 1.253v2.753a1.933 1.933 0 0 1-1.934 1.934H7.707c-1.098 0-1.958 0-2.65-.057-.704-.057-1.286-.177-1.812-.445a4.6 4.6 0 0 1-2.01-2.01c-.269-.527-.388-1.108-.445-1.812C.733 10.25.733 9.39.733 8.293v-6.96a.6.6 0 0 1 .844-.548l1.808.804.06.026a1.4 1.4 0 0 0 1.488-.253l.005-.004zm8.313 12.778a.733.733 0 0 0 .734-.734v-2.666c0-.659-.005-.87-.048-1.03a1.4 1.4 0 0 0-.99-.99 1.8 1.8 0 0 0-.429-.043v4.73c0 .404.328.733.733.733m-1.79 0h-3.81c-1.13 0-1.941 0-2.578-.053-.63-.051-1.036-.15-1.365-.318a3.4 3.4 0 0 1-1.486-1.486c-.168-.329-.267-.735-.318-1.365-.052-.637-.053-1.448-.053-2.578v-6.01l.965.428.005.002.075.033a2.6 2.6 0 0 0 2.732-.443l.004-.003.066-.057a1.4 1.4 0 0 1 1.84.057l.003.003.063.053a2.6 2.6 0 0 0 2.744.357l.005-.002.965-.428v11.076c0 .26.051.508.144.734M4.068 6a.6.6 0 0 1 .6-.6h2.666a.6.6 0 0 1 0 1.2H4.667a.6.6 0 0 1-.6-.6m2 2.667a.6.6 0 0 1 .6-.6h2a.6.6 0 0 1 0 1.2h-2a.6.6 0 0 1-.6-.6m.6 2.066a.6.6 0 1 0 0 1.2h2a.6.6 0 1 0 0-1.2zM5.333 8.667a.667.667 0 1 1-1.333 0 .667.667 0 0 1 1.333 0M4.667 12a.667.667 0 1 0 0-1.333.667.667 0 0 0 0 1.333",clipRule:"evenodd"})}),c$=e=>(0,tl.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 17 16",...e,children:[(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M7.167 2.667h-2a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h6.666a2 2 0 0 0 2-2v0"}),(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:1.5,d:"M12.143 3.333c.493 0 .924.268 1.155.667m-1.155-.667c-.494 0-.925.268-1.155.667m1.155-.667V2m0 5.333V5.978m2.31-2.645L13.297 4M9.833 6l1.155-.667M14.452 6l-1.154-.667m-3.465-2L10.988 4m0 1.333a1.33 1.33 0 0 1 0-1.333m0 1.333c.262.454.71.654 1.155.645m0 0c.458-.01.913-.24 1.155-.645m0 0c.112-.187.178-.41.178-.666 0-.243-.065-.471-.178-.667"}),(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M8.5 10.667v2.666M5.833 13.333h5.334"})]}),cW=e=>(0,tl.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 17 16",...e,children:[(0,tl.jsx)("path",{d:"M7.772 2.441a.673.673 0 0 1 0 1.32l-.135.013h-1.33c-.518 0-.867 0-1.135.023a1.6 1.6 0 0 0-.397.07l-.072.03c-.16.083-.3.201-.404.346l-.094.153c-.043.084-.08.209-.102.469-.022.268-.022.617-.022 1.136v5.076l.003.661c.003.186.008.34.02.475.02.26.058.385.1.468l.095.154c.105.144.244.263.404.345l.072.03c.082.03.202.055.397.07.268.023.617.023 1.135.023h5.076c.519 0 .868 0 1.136-.022.26-.022.386-.06.469-.101l.153-.095c.145-.105.263-.244.345-.404l.03-.072c.03-.082.055-.202.071-.396.022-.269.023-.618.023-1.136v-1.33a.674.674 0 0 1 1.347 0v1.33c0 .496 0 .909-.027 1.245a2.7 2.7 0 0 1-.19.856l-.054.115c-.209.409-.526.751-.915.99l-.171.096c-.305.155-.628.216-.971.244-.336.027-.75.027-1.246.027H6.307c-.496 0-.909 0-1.245-.027a2.7 2.7 0 0 1-.855-.19l-.116-.054a2.5 2.5 0 0 1-.99-.915l-.096-.171c-.155-.305-.216-.627-.244-.971a9 9 0 0 1-.023-.563l-.004-.682V6c0-.497 0-.91.027-1.245.028-.344.089-.667.244-.971l.096-.171c.239-.39.581-.707.99-.916l.116-.053a2.7 2.7 0 0 1 .855-.19c.336-.028.75-.028 1.245-.028h1.33z"}),(0,tl.jsx)("path",{d:"m8.938 5.672.477.475-.554.556a1.287 1.287 0 0 0 0 1.82l.097.09a1.29 1.29 0 0 0 1.723-.09l.556-.554.475.477.476.475-.555.555a2.635 2.635 0 0 1-3.525.181l-.2-.18a2.635 2.635 0 0 1 0-3.726l.555-.555z"}),(0,tl.jsx)("path",{d:"M11.237 7.97a.673.673 0 0 1 .951.951zM10.538 7.798a.673.673 0 0 1-.952-.952z"}),(0,tl.jsx)("path",{d:"m12.808 4.577.476.475-2.746 2.746-.476-.476-.476-.476L12.332 4.1zM14.407 6.703a.673.673 0 0 1-.952-.952z"}),(0,tl.jsx)("path",{d:"M11.436 2.24a2.635 2.635 0 0 1 3.526.182l.181.2c.788.966.788 2.36 0 3.326l-.181.2-.555.555-.476-.477-.476-.475.554-.555.09-.099a1.29 1.29 0 0 0 0-1.625l-.09-.097a1.287 1.287 0 0 0-1.722-.09l-.099.09-.555.554-.475-.476-.477-.476.556-.555zM8.463 5.196a.673.673 0 0 1 .952.951z"}),(0,tl.jsx)("path",{d:"M12.332 4.1a.673.673 0 0 1 .952.952zM11.633 3.93a.673.673 0 0 1-.952-.953z"})]}),cH=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 12 14",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.2,d:"M6 9.667A1.333 1.333 0 0 1 6 7m0 2.667A1.333 1.333 0 0 0 6 7m0 2.667v1M6 7V6m2.02 1.167-.866.5M4.846 9l-.867.5M8 9.536l-.856-.516M4.857 7.647 4 7.132M7.333 1v2.667A.667.667 0 0 0 8 4.333h2.667M7.333 1H2.667a1.333 1.333 0 0 0-1.334 1.333v9.334A1.333 1.333 0 0 0 2.667 13h6.666a1.333 1.333 0 0 0 1.334-1.333V4.333M7.333 1l3.334 3.333"})}),cG=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M9.333 1.513v2.754c0 .373 0 .56.073.702a.67.67 0 0 0 .291.292c.143.072.33.072.703.072h2.754m-3.82 6h-4m5.333-2.666H5.333m8-2.008v4.808c0 1.12 0 1.68-.218 2.108a2 2 0 0 1-.874.874c-.428.218-.988.218-2.108.218H5.867c-1.12 0-1.68 0-2.108-.218a2 2 0 0 1-.874-.874c-.218-.428-.218-.988-.218-2.108V4.533c0-1.12 0-1.68.218-2.108a2 2 0 0 1 .874-.874c.427-.218.988-.218 2.108-.218h2.14c.49 0 .735 0 .965.056a2 2 0 0 1 .578.24c.202.123.375.296.72.642l2.126 2.125c.346.346.519.519.643.72q.165.272.24.579c.054.23.054.475.054.964"})}),cU=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"m12.667 3.333-3.96 3.96a1 1 0 0 1-1.414 0l-3.96-3.96M12.667 8.667l-3.96 3.96a1 1 0 0 1-1.414 0l-3.96-3.96"})}),cq=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"m12.667 12.667-3.96-3.96a1 1 0 0 1 0-1.414l3.96-3.96M7.333 12.667l-3.96-3.96a1 1 0 0 1 0-1.414l3.96-3.96"})}),cZ=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"m3.667 3.333 3.96 3.96a1 1 0 0 1 0 1.414l-3.96 3.96M9 3.333l3.96 3.96a1 1 0 0 1 0 1.414L9 12.667"})}),cK=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"m3.333 12.667 3.96-3.96a1 1 0 0 1 1.414 0l3.96 3.96M3.333 7.333l3.96-3.96a1 1 0 0 1 1.414 0l3.96 3.96"})}),cJ=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M2.667 10.828a3 3 0 0 1 1.387-5.482 4.001 4.001 0 0 1 7.893 0 3 3 0 0 1 1.386 5.482m-8 .505L8 14m0 0 2.667-2.667M8 14V8"})}),cX=e=>(0,tl.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,tl.jsx)("path",{fill:"currentColor",d:"M10.148 1H5.852c-.548 0-.979 0-1.326.028-.354.03-.65.09-.919.226-.439.224-.796.581-1.02 1.02-.136.269-.196.564-.225.919-.029.347-.029.778-.029 1.326v6.963c0 .547 0 .978.029 1.325.029.354.089.65.226.919.223.439.58.796 1.02 1.02.268.137.564.197.918.226.347.028.778.028 1.326.028h2.481a.333.333 0 1 0 0-.667H5.867c-.566 0-.97 0-1.287-.026-.313-.025-.51-.074-.67-.155a1.67 1.67 0 0 1-.728-.729c-.081-.159-.13-.357-.156-.67C3 12.436 3 12.033 3 11.467V4.533c0-.565 0-.97.026-1.286.026-.313.075-.511.156-.67.16-.314.414-.569.728-.729.16-.08.357-.13.67-.155a15 15 0 0 1 1.087-.026V3h-1a.333.333 0 1 0 0 .667h1V5h-1a.333.333 0 1 0 0 .667h1v1a.333.333 0 0 0 .666 0v-1h1a.333.333 0 1 0 0-.667h-1V3.667h1a.333.333 0 1 0 0-.667h-1V1.667h3.8c.566 0 .97 0 1.287.026.313.025.51.074.67.155.314.16.569.415.728.729.081.159.13.357.156.67.026.317.026.72.026 1.286v3.8a.333.333 0 1 0 .667 0V4.52c0-.548 0-.98-.029-1.326-.029-.355-.089-.65-.226-.919a2.33 2.33 0 0 0-1.02-1.02c-.268-.137-.564-.197-.918-.226C11.127 1 10.696 1 10.148 1"}),(0,tl.jsx)("path",{fill:"currentColor",d:"M11.667 10.667a.333.333 0 0 0-.667 0v3.195L9.57 12.43a.333.333 0 1 0-.472.471l2 2c.13.13.34.13.471 0l2-2a.333.333 0 1 0-.471-.471l-1.431 1.43z"}),(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:.6,d:"M10.148 1H5.852c-.548 0-.979 0-1.326.028-.354.03-.65.09-.919.226-.439.224-.796.581-1.02 1.02-.136.269-.196.564-.225.919-.029.347-.029.778-.029 1.326v6.963c0 .547 0 .978.029 1.325.029.354.089.65.226.919.223.439.58.796 1.02 1.02.268.137.564.197.918.226.347.028.778.028 1.326.028h2.481a.333.333 0 1 0 0-.667H5.867c-.566 0-.97 0-1.287-.026-.313-.025-.51-.074-.67-.155a1.67 1.67 0 0 1-.728-.729c-.081-.159-.13-.357-.156-.67C3 12.436 3 12.033 3 11.467V4.533c0-.565 0-.97.026-1.286.026-.313.075-.511.156-.67.16-.314.414-.569.728-.729.16-.08.357-.13.67-.155a15 15 0 0 1 1.087-.026V3h-1a.333.333 0 1 0 0 .667h1V5h-1a.333.333 0 1 0 0 .667h1v1a.333.333 0 0 0 .666 0v-1h1a.333.333 0 1 0 0-.667h-1V3.667h1a.333.333 0 1 0 0-.667h-1V1.667h3.8c.566 0 .97 0 1.287.026.313.025.51.074.67.155.314.16.569.415.728.729.081.159.13.357.156.67.026.317.026.72.026 1.286v3.8a.333.333 0 1 0 .667 0V4.52c0-.548 0-.98-.029-1.326-.029-.355-.089-.65-.226-.919a2.33 2.33 0 0 0-1.02-1.02c-.268-.137-.564-.197-.918-.226C11.127 1 10.696 1 10.148 1"}),(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:.6,d:"M11.667 10.667a.333.333 0 0 0-.667 0v3.195L9.57 12.43a.333.333 0 1 0-.472.471l2 2c.13.13.34.13.471 0l2-2a.333.333 0 1 0-.471-.471l-1.431 1.43z"})]}),cQ=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M14 14H2m10-6.667-4 4m0 0-4-4m4 4V2"})}),cY=e=>(0,tl.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,tl.jsx)("path",{fill:"currentColor",stroke:"currentColor",strokeWidth:.2,d:"M10.667 15.167H2C1.36 15.167.833 14.64.833 14V5.333c0-2.946 1.554-4.5 4.5-4.5h5.334c2.946 0 4.5 1.554 4.5 4.5v5.334c0 2.946-1.554 4.5-4.5 4.5ZM5.333 1.833c-2.386 0-3.5 1.114-3.5 3.5V14c0 .093.074.167.167.167h8.667c2.386 0 3.5-1.114 3.5-3.5V5.333c0-2.386-1.114-3.5-3.5-3.5z"}),(0,tl.jsx)("path",{fill:"currentColor",stroke:"currentColor",strokeWidth:.2,d:"M5.3 11.833c-.313 0-.6-.113-.813-.32a1.14 1.14 0 0 1-.307-1l.186-1.32c.04-.286.22-.653.427-.86l3.46-3.46c1.187-1.186 2.22-.653 2.874 0 .513.514.746 1.054.693 1.594-.04.44-.274.853-.694 1.28l-3.46 3.46a1.73 1.73 0 0 1-.86.433l-1.32.187c-.06 0-.126.006-.186.006Zm4.386-6.666c-.246 0-.466.16-.72.406l-3.46 3.46a.8.8 0 0 0-.146.294l-.187 1.32c-.006.066 0 .126.027.153.026.027.086.033.153.027l1.32-.187a.8.8 0 0 0 .293-.147l3.46-3.46c.254-.253.387-.473.407-.673.02-.227-.113-.493-.406-.787-.294-.28-.527-.406-.74-.406Z"}),(0,tl.jsx)("path",{fill:"currentColor",stroke:"currentColor",strokeWidth:.2,d:"M10.28 8.387a.4.4 0 0 1-.133-.02 3.65 3.65 0 0 1-2.514-2.514.506.506 0 0 1 .347-.62c.267-.073.54.08.613.347a2.66 2.66 0 0 0 1.82 1.82.503.503 0 0 1-.133.987Z"})]}),c0=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{d:"M6 5a1 1 0 1 0 0-2 1 1 0 0 0 0 2M10 5a1 1 0 1 0 0-2 1 1 0 0 0 0 2M7 12a1 1 0 1 1-2 0 1 1 0 0 1 2 0M10 13a1 1 0 1 0 0-2 1 1 0 0 0 0 2M7 8a1 1 0 1 1-2 0 1 1 0 0 1 2 0M10 9a1 1 0 1 0 0-2 1 1 0 0 0 0 2"})}),c1=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 17 16",...e,children:(0,tl.jsx)("g",{clipPath:"url(#drop-target_inline_svg__clip0_723_2307)",children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M7.437 1.335c-.478.006-.765.032-.997.144a1.38 1.38 0 0 0-.619.582c-.118.219-.146.489-.152.939m8.143-1.665c.479.006.766.032.998.144.266.127.483.331.619.582.118.219.146.489.152.939m0 6c-.006.45-.034.72-.152.939-.136.25-.353.454-.62.582-.231.112-.518.138-.996.144m1.77-5.332v1.334M9.917 1.333h1.416m-7.65 13.334h5.384c.793 0 1.19 0 1.493-.146.266-.128.483-.332.619-.582.154-.286.154-.659.154-1.406V7.467c0-.747 0-1.12-.154-1.406a1.38 1.38 0 0 0-.62-.582c-.302-.146-.699-.146-1.492-.146H3.683c-.793 0-1.19 0-1.493.146a1.38 1.38 0 0 0-.619.582c-.154.286-.154.659-.154 1.406v5.066c0 .747 0 1.12.154 1.406.136.25.353.454.62.582.302.146.699.146 1.492.146"})})}),c2=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:1.5,d:"M9.981 3.507a1 1 0 0 1 1.414 0l1.097 1.096a1 1 0 0 1 0 1.414l-6.33 6.335a1 1 0 0 1-.51.273L2.8 13.2l.576-2.848a1 1 0 0 1 .272-.509z",clipRule:"evenodd"})}),c3=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M8 13.333h6m-12 0h1.116c.326 0 .49 0 .643-.037q.205-.048.385-.16c.135-.082.25-.197.48-.427L13 4.333a1.414 1.414 0 1 0-2-2L2.625 10.71c-.23.23-.346.345-.429.48q-.11.181-.16.385C2 11.728 2 11.891 2 12.217z"})}),c6=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 17 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"m15.167 12-4.429-4m-3.81 0L2.5 12m-.333-7.333 5.443 3.81c.44.309.661.463.9.523.213.052.434.052.646 0 .24-.06.46-.214.9-.523l5.444-3.81M5.367 13.333H12.3c1.12 0 1.68 0 2.108-.218a2 2 0 0 0 .874-.874c.218-.428.218-.988.218-2.108V5.867c0-1.12 0-1.68-.218-2.108a2 2 0 0 0-.874-.874c-.428-.218-.988-.218-2.108-.218H5.367c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874c-.218.427-.218.988-.218 2.108v4.266c0 1.12 0 1.68.218 2.108a2 2 0 0 0 .874.874c.428.218.988.218 2.108.218"})}),c4=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M14.667 6H1.333m8 5.667L11 10 9.333 8.333m-2.666 0L5 10l1.667 1.667M1.333 5.2v5.6c0 1.12 0 1.68.218 2.108a2 2 0 0 0 .874.874c.428.218.988.218 2.108.218h6.934c1.12 0 1.68 0 2.108-.218a2 2 0 0 0 .874-.874c.218-.428.218-.988.218-2.108V5.2c0-1.12 0-1.68-.218-2.108a2 2 0 0 0-.874-.874C13.147 2 12.587 2 11.467 2H4.533c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874c-.218.428-.218.988-.218 2.108"})}),c8=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M12.333 10.667c1.289 0 2.334-1.94 2.334-4.334S13.622 2 12.333 2m0 8.667c-1.288 0-2.333-1.94-2.333-4.334S11.045 2 12.333 2m0 8.667L3.63 9.084c-.618-.112-.927-.169-1.177-.291a2 2 0 0 1-1.043-1.249c-.076-.268-.076-.582-.076-1.21 0-.63 0-.943.076-1.211a2 2 0 0 1 1.043-1.249c.25-.123.559-.179 1.177-.291L12.333 2m-9 7.333.263 3.676c.025.35.037.524.113.656.067.117.168.21.289.269.137.066.312.066.662.066h1.188c.4 0 .6 0 .748-.08a.67.67 0 0 0 .293-.316c.069-.154.053-.354.023-.752l-.245-3.185"})}),c7=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"m10 6-4 4m7-2A5 5 0 1 1 3 8a5 5 0 0 1 10 0"})}),c5=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 17 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.3,d:"M9.833 6.667 14.5 2m0 0h-4m4 0v4M7.167 9.333 2.5 14m0 0h4m-4 0v-4"})}),c9=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M6 2H3.333C2.597 2 2 2.597 2 3.333V6m4 8H3.333A1.333 1.333 0 0 1 2 12.667V10m8-8h2.667C13.403 2 14 2.597 14 3.333V6m0 4v2.667c0 .736-.597 1.333-1.333 1.333H10"})}),ue=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M1.333 9.333h13.334M5.333 14h5.334m-6.134-2h6.934c1.12 0 1.68 0 2.108-.218a2 2 0 0 0 .874-.874c.218-.428.218-.988.218-2.108V5.2c0-1.12 0-1.68-.218-2.108a2 2 0 0 0-.874-.874C13.147 2 12.587 2 11.467 2H4.533c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874c-.218.428-.218.988-.218 2.108v3.6c0 1.12 0 1.68.218 2.108a2 2 0 0 0 .874.874c.428.218.988.218 2.108.218"})}),ut=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M4.667 7.333c-.62 0-.93 0-1.185.068a2 2 0 0 0-1.414 1.415C2 9.07 2 9.38 2 10v.8c0 1.12 0 1.68.218 2.108a2 2 0 0 0 .874.874C3.52 14 4.08 14 5.2 14h5.6c1.12 0 1.68 0 2.108-.218a2 2 0 0 0 .874-.874C14 12.48 14 11.92 14 10.8V10c0-.62 0-.93-.068-1.184A2 2 0 0 0 12.518 7.4c-.255-.068-.565-.068-1.185-.068m-.666-2.666L8 2m0 0L5.333 4.667M8 2v8"})}),ui=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M7.162 3.395q.406-.061.838-.062c3.404 0 5.637 3.004 6.387 4.192.09.143.136.215.162.326a.8.8 0 0 1 0 .298c-.026.11-.071.183-.163.328-.2.316-.505.761-.908 1.243M4.483 4.477c-1.441.977-2.42 2.336-2.869 3.047-.091.144-.137.216-.162.327a.8.8 0 0 0 0 .298c.025.11.07.183.161.326.75 1.188 2.984 4.192 6.387 4.192 1.373 0 2.555-.489 3.526-1.15M2 2l12 12M6.586 6.586a2 2 0 0 0 2.828 2.828"})}),un=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsxs)("g",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,children:[(0,tl.jsx)("path",{d:"M1.613 8.475c-.09-.143-.136-.215-.161-.326a.8.8 0 0 1 0-.298c.025-.11.07-.183.161-.326C2.363 6.337 4.597 3.333 8 3.333c3.404 0 5.637 3.004 6.387 4.192.09.143.136.215.162.326.019.083.019.215 0 .298-.026.11-.071.183-.162.326-.75 1.188-2.983 4.192-6.387 4.192S2.364 9.663 1.613 8.475"}),(0,tl.jsx)("path",{d:"M8 10a2 2 0 1 0 0-4 2 2 0 0 0 0 4"})]})}),ur=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsxs)("g",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.3,clipPath:"url(#factory_inline_svg__clip0_723_2378)",children:[(0,tl.jsx)("path",{d:"M2.667 14C3.43 11.32 3.989 8.649 4 6h4c.011 2.649.569 5.32 1.333 8"}),(0,tl.jsx)("path",{d:"M8.333 8.667h3c.017 1.741.596 3.53 1.334 5.333M6 3.333a1.6 1.6 0 0 1 1.333-.666 1.6 1.6 0 0 1 1.334.666A1.6 1.6 0 0 0 10 4a1.6 1.6 0 0 0 1.333-.667 1.6 1.6 0 0 1 1.334-.666A1.6 1.6 0 0 1 14 3.333M2 14h12.667"})]})}),ua=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M7.995 3.424C6.663 1.866 4.44 1.446 2.77 2.874 1.1 4.3.865 6.685 2.176 8.373c1.09 1.403 4.39 4.362 5.472 5.32.121.107.182.16.252.182a.34.34 0 0 0 .19 0c.071-.021.132-.075.253-.182 1.081-.958 4.381-3.917 5.472-5.32 1.311-1.688 1.105-4.089-.594-5.5-1.699-1.413-3.893-1.008-5.226.55",clipRule:"evenodd"})}),uo=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M11.867 6.667c.746 0 1.12 0 1.405-.146.25-.127.455-.331.583-.582C14 5.653 14 5.28 14 4.533v-.4c0-.746 0-1.12-.145-1.405a1.33 1.33 0 0 0-.583-.583C12.987 2 12.613 2 11.867 2H4.133c-.746 0-1.12 0-1.405.145-.25.128-.455.332-.583.583C2 3.013 2 3.387 2 4.133v.4c0 .747 0 1.12.145 1.406.128.25.332.455.583.582.285.146.659.146 1.405.146zM11.867 14c.746 0 1.12 0 1.405-.145.25-.128.455-.332.583-.583.145-.285.145-.659.145-1.405v-.4c0-.747 0-1.12-.145-1.406a1.33 1.33 0 0 0-.583-.582c-.285-.146-.659-.146-1.405-.146H4.133c-.746 0-1.12 0-1.405.146-.25.127-.455.331-.583.582C2 10.347 2 10.72 2 11.467v.4c0 .746 0 1.12.145 1.405.128.25.332.455.583.583.285.145.659.145 1.405.145z"})}),ul=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.2,d:"M13.333 6.667V4.533c0-1.12 0-1.68-.218-2.108a2 2 0 0 0-.874-.874c-.428-.218-.988-.218-2.108-.218H5.867c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874c-.218.428-.218.988-.218 2.108v6.934c0 1.12 0 1.68.218 2.108a2 2 0 0 0 .874.874c.428.218.988.218 2.108.218H7m1.667-7.334H5.333m2 2.667h-2m5.334-5.333H5.333m7.5 6.666v-1.166a1.167 1.167 0 1 0-2.333 0v1.166M10.4 14h2.533c.374 0 .56 0 .703-.073a.67.67 0 0 0 .291-.291c.073-.143.073-.33.073-.703V12.4c0-.373 0-.56-.073-.703a.67.67 0 0 0-.291-.291c-.143-.073-.33-.073-.703-.073H10.4c-.373 0-.56 0-.703.073a.67.67 0 0 0-.291.291c-.073.143-.073.33-.073.703v.533c0 .374 0 .56.073.703a.67.67 0 0 0 .291.291c.143.073.33.073.703.073"})}),us=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M2.257 3.778c-.504-.564-.756-.845-.766-1.085a.67.67 0 0 1 .242-.54C1.918 2 2.296 2 3.053 2h9.895c.756 0 1.134 0 1.319.153.16.132.25.332.241.54-.01.24-.261.521-.766 1.085L9.938 8.03c-.1.112-.15.168-.186.232a.7.7 0 0 0-.07.181c-.016.072-.016.147-.016.298v3.565c0 .13 0 .195-.02.252a.33.33 0 0 1-.089.13c-.044.04-.105.064-.226.113l-2.266.906c-.245.098-.368.147-.466.127a.33.33 0 0 1-.21-.142c-.056-.084-.056-.216-.056-.48V8.741c0-.15 0-.226-.016-.298a.7.7 0 0 0-.069-.18c-.036-.065-.086-.121-.187-.233z"})}),ud=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M2.667 10s.666-.667 2.666-.667 3.334 1.334 5.334 1.334S13.333 10 13.333 10V2s-.666.667-2.666.667-3.334-1.334-5.334-1.334S2.667 2 2.667 2v12.667"})}),uf=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 17 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.3,d:"M14.714 6h-9a3 3 0 0 0 0 6h3m6-6-2.666-2.667M14.714 6l-2.666 2.667"})}),uc=e=>(0,tl.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:[(0,tl.jsx)("path",{d:"M9 8a1 1 0 1 1-2 0 1 1 0 0 1 2 0"}),(0,tl.jsx)("path",{fillRule:"evenodd",d:"M12 8a4 4 0 1 1-8 0 4 4 0 0 1 8 0m-1.5 0a2.5 2.5 0 1 1-5 0 2.5 2.5 0 0 1 5 0",clipRule:"evenodd"}),(0,tl.jsx)("path",{fillRule:"evenodd",d:"M4 1a3 3 0 0 0-3 3v8a3 3 0 0 0 3 3h8a3 3 0 0 0 3-3V4a3 3 0 0 0-3-3zm8 1.4H4A1.6 1.6 0 0 0 2.4 4v8A1.6 1.6 0 0 0 4 13.6h8a1.6 1.6 0 0 0 1.6-1.6V4A1.6 1.6 0 0 0 12 2.4",clipRule:"evenodd"})]}),uu=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"m8.667 4.667-.744-1.488c-.214-.428-.321-.642-.48-.798a1.3 1.3 0 0 0-.499-.308C6.733 2 6.494 2 6.014 2H3.468c-.747 0-1.12 0-1.406.145-.25.128-.455.332-.582.583-.146.285-.146.659-.146 1.405v.534m0 0h10.134c1.12 0 1.68 0 2.108.218a2 2 0 0 1 .874.874c.218.428.218.988.218 2.108V10.8c0 1.12 0 1.68-.218 2.108a2 2 0 0 1-.874.874c-.428.218-.988.218-2.108.218H4.533c-1.12 0-1.68 0-2.108-.218a2 2 0 0 1-.874-.874c-.218-.428-.218-.988-.218-2.108zM8 11.333v-4m-2 2h4"})}),um=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 24 24",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"m13 7-1.116-2.231c-.32-.642-.481-.963-.72-1.198a2 2 0 0 0-.748-.462C10.1 3 9.74 3 9.022 3H5.2c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874C2 4.52 2 5.08 2 6.2V7m0 0h15.2c1.68 0 2.52 0 3.162.327a3 3 0 0 1 1.311 1.311C22 9.28 22 10.12 22 11.8v4.4c0 1.68 0 2.52-.327 3.162a3 3 0 0 1-1.311 1.311C19.72 21 18.88 21 17.2 21H6.8c-1.68 0-2.52 0-3.162-.327a3 3 0 0 1-1.311-1.311C2 18.72 2 17.88 2 16.2zm13.5 10.5L14 16m1-2.5a3.5 3.5 0 1 1-7 0 3.5 3.5 0 0 1 7 0"})}),up=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"m8.667 4.667-.744-1.488c-.214-.428-.321-.642-.48-.798a1.3 1.3 0 0 0-.499-.308C6.733 2 6.494 2 6.014 2H3.468c-.747 0-1.12 0-1.406.145-.25.128-.455.332-.582.583-.146.285-.146.659-.146 1.405v.534m0 0h10.134c1.12 0 1.68 0 2.108.218a2 2 0 0 1 .874.874c.218.428.218.988.218 2.108V10.8c0 1.12 0 1.68-.218 2.108a2 2 0 0 1-.874.874c-.428.218-.988.218-2.108.218H4.533c-1.12 0-1.68 0-2.108-.218a2 2 0 0 1-.874-.874c-.218-.428-.218-.988-.218-2.108z"})}),ug=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M5.333 8.667v2.666m5.334-4v4M8 4.667v6.666M5.2 14h5.6c1.12 0 1.68 0 2.108-.218a2 2 0 0 0 .874-.874C14 12.48 14 11.92 14 10.8V5.2c0-1.12 0-1.68-.218-2.108a2 2 0 0 0-.874-.874C12.48 2 11.92 2 10.8 2H5.2c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874C2 3.52 2 4.08 2 5.2v5.6c0 1.12 0 1.68.218 2.108a2 2 0 0 0 .874.874C3.52 14 4.08 14 5.2 14"})}),uh=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M6.667 9.367a2.333 2.333 0 1 0-3.333 3.266 2.333 2.333 0 0 0 3.333-3.266m0 0 3.354-3.354m3.346-.68-.862-.862a.667.667 0 0 0-.943 0l-1.541 1.542m0 0 1.312 1.312"})}),ub=e=>(0,tl.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,tl.jsx)("path",{stroke:"currentColor",strokeWidth:1.4,d:"M2 6c0-1.4 0-2.1.272-2.635a2.5 2.5 0 0 1 1.093-1.093C3.9 2 4.6 2 6 2h4c1.4 0 2.1 0 2.635.272a2.5 2.5 0 0 1 1.092 1.093C14 3.9 14 4.6 14 6v4c0 1.4 0 2.1-.273 2.635a2.5 2.5 0 0 1-1.092 1.092C12.1 14 11.4 14 10 14H6c-1.4 0-2.1 0-2.635-.273a2.5 2.5 0 0 1-1.093-1.092C2 12.1 2 11.4 2 10z"}),(0,tl.jsx)("circle",{cx:5.333,cy:8,r:1.3,stroke:"currentColor",strokeWidth:1.4}),(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:1.4,d:"M6.667 8h2.666m2 1.333V8.15a.15.15 0 0 0-.15-.15h-1.85m0 0v1.333"})]}),uy=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 17 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M6.833 11.333H5.5a3.333 3.333 0 1 1 0-6.666h1.333m4 6.666h1.334a3.333 3.333 0 0 0 0-6.666h-1.334M5.5 8h6.667"})}),uv=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M4 2.667v10.666m8-10.666v10.666M5.333 2.667H2.667M12 8H4m1.333 5.333H2.667m10.666 0h-2.666m2.666-10.666h-2.666"})}),ux=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("g",{clipPath:"url(#help-circle_inline_svg__clip0_723_2416)",children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M6.06 6a2 2 0 0 1 3.887.667c0 1.333-2 2-2 2M8 11.333h.007M14.667 8A6.667 6.667 0 1 1 1.333 8a6.667 6.667 0 0 1 13.334 0"})})}),uj=e=>(0,tl.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.3,d:"M3.685 11.135a5.333 5.333 0 1 0-1.008-2.8m0 0-1-1m1 1 1-1"}),(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.3,d:"M8 5.333V8l2 2"})]}),uw=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M5.333 11.333h5.334m-3.322-9.49L2.824 5.359c-.303.236-.454.353-.563.5-.096.13-.168.278-.212.434C2 6.469 2 6.66 2 7.043v4.824c0 .746 0 1.12.145 1.405.128.25.332.455.583.583.285.145.659.145 1.405.145h7.734c.746 0 1.12 0 1.405-.145.25-.128.455-.332.583-.583.145-.285.145-.659.145-1.405V7.043c0-.383 0-.574-.05-.75a1.3 1.3 0 0 0-.211-.434c-.11-.147-.26-.264-.563-.5L8.655 1.843c-.234-.182-.351-.274-.48-.309a.67.67 0 0 0-.35 0c-.129.035-.246.127-.48.309"})}),uC=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M10.8 14H4.62c-.403 0-.605 0-.698-.08a.33.33 0 0 1-.116-.28c.01-.122.152-.265.438-.55l5.668-5.67c.264-.263.396-.395.549-.445a.67.67 0 0 1 .412 0c.152.05.284.182.548.446L14 10v.8M10.8 14c1.12 0 1.68 0 2.108-.218a2 2 0 0 0 .874-.874C14 12.48 14 11.92 14 10.8M10.8 14H5.2c-1.12 0-1.68 0-2.108-.218a2 2 0 0 1-.874-.874C2 12.48 2 11.92 2 10.8V5.2c0-1.12 0-1.68.218-2.108a2 2 0 0 1 .874-.874C3.52 2 4.08 2 5.2 2h5.6c1.12 0 1.68 0 2.108.218a2 2 0 0 1 .874.874C14 3.52 14 4.08 14 5.2v5.6M7 5.667a1.333 1.333 0 1 1-2.667 0 1.333 1.333 0 0 1 2.667 0"})}),uk=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M5.333 8 8 10.667m0 0L10.667 8M8 10.667V4.533c0-.927 0-1.39-.367-1.91-.244-.344-.946-.77-1.364-.827-.63-.085-.87.04-1.348.29a6.667 6.667 0 1 0 6.412.14"})}),uT=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("g",{clipPath:"url(#info-circle_inline_svg__clip0_723_2415)",children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M8 10.667V8m0-2.667h.007M14.667 8A6.667 6.667 0 1 1 1.333 8a6.667 6.667 0 0 1 13.334 0"})})}),uS=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{d:"M8 1.333a6.667 6.667 0 1 0 0 13.334A6.667 6.667 0 0 0 8 1.333m.667 9.334a.667.667 0 1 1-1.334 0V7.333a.667.667 0 1 1 1.334 0zM8 6a.667.667 0 1 1 0-1.333A.667.667 0 0 1 8 6"})}),uD=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{fillRule:"evenodd",d:"M2.571 1.5a2 2 0 0 0-2 2V6a2 2 0 0 0 2 2h.31a.7.7 0 0 0-.02.155v.405c0 .433 0 .797.025 1.094.026.311.08.607.224.888.218.428.566.776.994.994.28.143.576.198.888.224.297.024.66.024 1.094.024h.19l-.245.244a.65.65 0 1 0 .92.92l1.354-1.354a.65.65 0 0 0 0-.92L6.95 9.32a.65.65 0 1 0-.92.92l.245.244h-.164c-.466 0-.776 0-1.014-.02-.231-.019-.337-.052-.404-.086a.98.98 0 0 1-.426-.426c-.034-.067-.067-.173-.086-.404-.02-.238-.02-.548-.02-1.014v-.38A.7.7 0 0 0 4.143 8h.928a2 2 0 0 0 2-2V3.5a2 2 0 0 0-2-2zm2.5 1.3h-2.5a.7.7 0 0 0-.7.7V6a.7.7 0 0 0 .7.7h2.5a.7.7 0 0 0 .7-.7V3.5a.7.7 0 0 0-.7-.7M8.929 10a2 2 0 0 1 2-2h2.5a2 2 0 0 1 2 2v2.5a2 2 0 0 1-2 2h-2.5a2 2 0 0 1-2-2zm2-.7h2.5a.7.7 0 0 1 .7.7v2.5a.7.7 0 0 1-.7.7h-2.5a.7.7 0 0 1-.7-.7V10a.7.7 0 0 1 .7-.7",clipRule:"evenodd"})}),uE=e=>(0,tl.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:[(0,tl.jsx)("path",{fillRule:"evenodd",d:"M2.571 1.5a2 2 0 0 0-2 2V6a2 2 0 0 0 2 2h2.5a2 2 0 0 0 2-2V3.5a2 2 0 0 0-2-2zm2.5 1.3h-2.5a.7.7 0 0 0-.7.7V6a.7.7 0 0 0 .7.7h2.5a.7.7 0 0 0 .7-.7V3.5a.7.7 0 0 0-.7-.7M10.929 8a2 2 0 0 0-2 2v2.5a2 2 0 0 0 2 2h2.5a2 2 0 0 0 2-2V10a2 2 0 0 0-2-2zm2.5 1.3h-2.5a.7.7 0 0 0-.7.7v2.5a.7.7 0 0 0 .7.7h2.5a.7.7 0 0 0 .7-.7V10a.7.7 0 0 0-.7-.7",clipRule:"evenodd"}),(0,tl.jsx)("path",{d:"M4.49 9.499a.65.65 0 0 0-.92.919l.582.582-.582.582a.65.65 0 0 0 .92.92l.581-.583.583.582a.65.65 0 0 0 .919-.919L5.99 11l.582-.582a.65.65 0 1 0-.92-.92l-.582.583z"})]}),uM=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M9.333 1.513v2.754c0 .373 0 .56.073.702a.67.67 0 0 0 .291.292c.143.072.33.072.703.072h2.754m-3.82 6.334L11 10 9.333 8.333m-2.666 0L5 10l1.667 1.667m6.666-5.008v4.808c0 1.12 0 1.68-.218 2.108a2 2 0 0 1-.874.874c-.428.218-.988.218-2.108.218H5.867c-1.12 0-1.68 0-2.108-.218a2 2 0 0 1-.874-.874c-.218-.428-.218-.988-.218-2.108V4.533c0-1.12 0-1.68.218-2.108a2 2 0 0 1 .874-.874c.428-.218.988-.218 2.108-.218h2.14c.49 0 .735 0 .965.056a2 2 0 0 1 .578.239c.202.124.375.297.72.643l2.126 2.125c.346.346.519.519.643.72q.165.272.24.579c.054.23.054.475.054.964"})}),uI=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 24 24",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeMiterlimit:10,strokeWidth:2,d:"M7 14c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2Zm5.6-4c-.8-2.3-3-4-5.6-4-3.3 0-6 2.7-6 6s2.7 6 6 6c2.6 0 4.8-1.7 5.6-4H17v4h4v-4h2v-4z"})}),uL=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 24 24",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M6 10h.01M8 14h.01M10 10h.01M12 14h.01M14 10h.01M16 14h.01M18 10h.01M5.2 18h13.6c1.12 0 1.68 0 2.108-.218a2 2 0 0 0 .874-.874C22 16.48 22 15.92 22 14.8V9.2c0-1.12 0-1.68-.218-2.108a2 2 0 0 0-.874-.874C20.48 6 19.92 6 18.8 6H5.2c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874C2 7.52 2 8.08 2 9.2v5.6c0 1.12 0 1.68.218 2.108a2 2 0 0 0 .874.874C3.52 18 4.08 18 5.2 18"})}),uP=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 24 24",...e,children:(0,tl.jsx)("path",{d:"M6.5 2c2 0 3.6 1.3 4.2 3H22v3h-4v3h-3V8h-4.3c-.6 1.8-2.3 3-4.2 3C4 11 2 9 2 6.5S4 2 6.5 2m0 3C5.7 5 5 5.7 5 6.5S5.7 8 6.5 8 8 7.3 8 6.5 7.3 5 6.5 5m0 8c2 0 3.6 1.3 4.2 3H22v3h-2v3h-2v-3h-2v3h-3v-3h-2.3c-.6 1.8-2.3 3-4.2 3C4 22 2 20 2 17.5S4 13 6.5 13m0 3c-.8 0-1.5.7-1.5 1.5S5.7 19 6.5 19 8 18.3 8 17.5 7.3 16 6.5 16"})}),uN=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M2.667 10s.666-.667 2.666-.667 3.334 1.334 5.334 1.334S13.333 10 13.333 10V2s-.666.667-2.666.667-3.334-1.334-5.334-1.334S2.667 2 2.667 2v12.667"})}),uA=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M2 6h12M2 10h12M8 2v12M5.2 2h5.6c1.12 0 1.68 0 2.108.218a2 2 0 0 1 .874.874C14 3.52 14 4.08 14 5.2v5.6c0 1.12 0 1.68-.218 2.108a2 2 0 0 1-.874.874C12.48 14 11.92 14 10.8 14H5.2c-1.12 0-1.68 0-2.108-.218a2 2 0 0 1-.874-.874C2 12.48 2 11.92 2 10.8V5.2c0-1.12 0-1.68.218-2.108a2 2 0 0 1 .874-.874C3.52 2 4.08 2 5.2 2"})}),uR=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.3,d:"M11.667 7.333H8.333M11.667 10H8.333m3.334-5.333H8.333M6 2v12M5.2 2h5.6c1.12 0 1.68 0 2.108.218a2 2 0 0 1 .874.874C14 3.52 14 4.08 14 5.2v5.6c0 1.12 0 1.68-.218 2.108a2 2 0 0 1-.874.874C12.48 14 11.92 14 10.8 14H5.2c-1.12 0-1.68 0-2.108-.218a2 2 0 0 1-.874-.874C2 12.48 2 11.92 2 10.8V5.2c0-1.12 0-1.68.218-2.108a2 2 0 0 1 .874-.874C3.52 2 4.08 2 5.2 2"})}),uO=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M14 8H6m8-4H6m8 8H6M3.333 8A.667.667 0 1 1 2 8a.667.667 0 0 1 1.333 0m0-4A.667.667 0 1 1 2 4a.667.667 0 0 1 1.333 0m0 8A.667.667 0 1 1 2 12a.667.667 0 0 1 1.333 0"})}),uB=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("g",{clipPath:"url(#loading_inline_svg__clip0_723_2296)",children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M8 1.5v1.667M8 12v2.667M3.833 8H1.5m12.667 0h-1m-.862 4.305-.472-.472m.61-8.222-.943.942M3.281 12.72l1.886-1.886m-1.748-7.36 1.414 1.414"})})}),uF=e=>(0,tl.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,tl.jsx)("circle",{cx:8,cy:6.667,r:2,stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4}),(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M12.667 6.5C12.667 10.25 8 14 8 14s-4.667-3.75-4.667-7.5C3.333 4.015 5.423 2 8 2s4.667 2.015 4.667 4.5"})]}),u_=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M11.333 6.667V5.333a3.333 3.333 0 1 0-6.666 0v1.334m3.333 3V11m-2.133 3h4.266c1.12 0 1.68 0 2.108-.218a2 2 0 0 0 .874-.874c.218-.428.218-.988.218-2.108v-.933c0-1.12 0-1.68-.218-2.108a2 2 0 0 0-.874-.874c-.428-.218-.988-.218-2.108-.218H5.867c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874c-.218.428-.218.988-.218 2.108v.933c0 1.12 0 1.68.218 2.108a2 2 0 0 0 .874.874c.427.218.988.218 2.108.218"})}),uz=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M11.333 6.667V5.333a3.333 3.333 0 1 0-6.666 0v1.334m3.333 3V11m-2.133 3h4.266c1.12 0 1.68 0 2.108-.218a2 2 0 0 0 .874-.874c.218-.428.218-.988.218-2.108v-.933c0-1.12 0-1.68-.218-2.108a2 2 0 0 0-.874-.874c-.428-.218-.988-.218-2.108-.218H5.867c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874c-.218.428-.218.988-.218 2.108v.933c0 1.12 0 1.68.218 2.108a2 2 0 0 0 .874.874c.428.218.988.218 2.108.218"})}),uV=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M10.667 11.333 14 8m0 0-3.333-3.333M14 8H6m0-6h-.8c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874C2 3.52 2 4.08 2 5.2v5.6c0 1.12 0 1.68.218 2.108a2 2 0 0 0 .874.874C3.52 14 4.08 14 5.2 14H6"})}),u$=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M10.667 6.667H2M13.333 4H2m11.333 5.333H2M10.667 12H2"})}),uW=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 18 18",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeOpacity:.88,strokeWidth:1.5,d:"M16.125 13.5 11.143 9M6.857 9l-4.982 4.5M1.5 5.25l6.124 4.287c.496.347.744.52 1.013.587.238.06.488.06.726 0 .27-.067.517-.24 1.013-.587L16.5 5.25M5.1 15h7.8c1.26 0 1.89 0 2.371-.245.424-.216.768-.56.984-.984.245-.48.245-1.11.245-2.371V6.6c0-1.26 0-1.89-.245-2.371a2.25 2.25 0 0 0-.983-.984C14.79 3 14.16 3 12.9 3H5.1c-1.26 0-1.89 0-2.371.245a2.25 2.25 0 0 0-.984.984C1.5 4.709 1.5 5.339 1.5 6.6v4.8c0 1.26 0 1.89.245 2.371.216.424.56.768.984.984C3.209 15 3.839 15 5.1 15"})}),uH=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M7.08 12c-1.009 0-4.712 0-5.097-.204a1.84 1.84 0 0 1-.787-.82C1 10.576 1 10.05 1 9V5c0-1.05 0-1.575.196-1.976a1.84 1.84 0 0 1 .787-.82C2.368 2 2.873 2 3.88 2h6.24c1.008 0 1.512 0 1.897.204.34.18.614.467.787.82.195.4.195 3.404.195 4.464V7.5M1.196 3.875 5.688 7.01c.397.29.595.434.811.49.19.05.39.05.58 0 .216-.056.415-.2.811-.49l4.81-3.135m-2.022 7.71-.616 2.035c-.049.16-.073.24-.056.29a.14.14 0 0 0 .088.087c.046.014.116-.02.255-.09l4.412-2.194c.136-.067.204-.101.225-.148a.16.16 0 0 0 0-.13c-.02-.046-.089-.08-.225-.148l-4.414-2.195c-.139-.069-.208-.103-.254-.089a.14.14 0 0 0-.088.087c-.017.05.007.13.055.289l.618 2.059a.3.3 0 0 1 .014.055.2.2 0 0 1 0 .037.3.3 0 0 1-.014.055"})}),uG=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{fillRule:"evenodd",d:"M12 6.083c-.755 0-1.44-.304-1.936-.797L6.709 6.982a3.3 3.3 0 0 1-.157 1.638l3.543 2.064a2.75 2.75 0 1 1-.758 1.295L5.722 9.871a3.25 3.25 0 1 1 .41-4.279l3.194-1.615A2.75 2.75 0 1 1 12 6.083m-1.25-2.75a1.25 1.25 0 1 1 2.5 0 1.25 1.25 0 0 1-2.5 0m0 9.334c0-.201.047-.39.131-.559a.7.7 0 0 0 .084-.143 1.249 1.249 0 0 1 2.285.702 1.25 1.25 0 0 1-2.5 0m-9-5.167a1.75 1.75 0 1 1 3.5 0 1.75 1.75 0 0 1-3.5 0",clipRule:"evenodd"})}),uU=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.3,d:"M14.222 7.716V12a2 2 0 0 1-2 2H3.778a2 2 0 0 1-2-2V7.716M4.5 6.312C4.5 7.245 3.716 8 2.75 8c-.873 0-1.597-.617-1.729-1.423a1.2 1.2 0 0 1 .048-.521l.698-2.578A2 2 0 0 1 3.697 2h8.606a2 2 0 0 1 1.93 1.478l.698 2.578c.046.17.076.347.048.521C14.847 7.383 14.123 8 13.25 8c-.966 0-1.75-.756-1.75-1.687m-7 0C4.5 7.244 5.284 8 6.25 8S8 7.244 8 6.313m-3.5 0L4.889 2M8 6.313C8 7.244 8.784 8 9.75 8s1.75-.756 1.75-1.687m-3.5 0V2m3.5 4.313L11.111 2"})}),uq=e=>(0,tl.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,tl.jsx)("path",{fill:"currentColor",d:"M4.667 9.667v2zM7.667 7.667v4zM10.667 5.667v6zM13.667 3.667v8z"}),(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M14 14H4.133c-.746 0-1.12 0-1.405-.145a1.33 1.33 0 0 1-.583-.583C2 12.987 2 12.613 2 11.867V2m2.667 7.667v2m3-4v4m3-6v6m3-8v8"})]}),uZ=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M5.6 2H3.067c-.374 0-.56 0-.703.073a.67.67 0 0 0-.291.291C2 2.507 2 2.694 2 3.067V5.6c0 .373 0 .56.073.703a.67.67 0 0 0 .291.291c.143.073.33.073.703.073H5.6c.373 0 .56 0 .703-.073a.67.67 0 0 0 .291-.291c.073-.143.073-.33.073-.703V3.067c0-.374 0-.56-.073-.703a.67.67 0 0 0-.291-.291C6.16 2 5.973 2 5.6 2M12.933 2H10.4c-.373 0-.56 0-.703.073a.67.67 0 0 0-.291.291c-.073.143-.073.33-.073.703V5.6c0 .373 0 .56.073.703a.67.67 0 0 0 .291.291c.143.073.33.073.703.073h2.533c.374 0 .56 0 .703-.073a.67.67 0 0 0 .291-.291C14 6.16 14 5.973 14 5.6V3.067c0-.374 0-.56-.073-.703a.67.67 0 0 0-.291-.291C13.493 2 13.306 2 12.933 2M12.933 9.333H10.4c-.373 0-.56 0-.703.073a.67.67 0 0 0-.291.291c-.073.143-.073.33-.073.703v2.533c0 .374 0 .56.073.703a.67.67 0 0 0 .291.291c.143.073.33.073.703.073h2.533c.374 0 .56 0 .703-.073a.67.67 0 0 0 .291-.291c.073-.143.073-.33.073-.703V10.4c0-.373 0-.56-.073-.703a.67.67 0 0 0-.291-.291c-.143-.073-.33-.073-.703-.073M5.6 9.333H3.067c-.374 0-.56 0-.703.073a.67.67 0 0 0-.291.291C2 9.84 2 10.027 2 10.4v2.533c0 .374 0 .56.073.703a.67.67 0 0 0 .291.291c.143.073.33.073.703.073H5.6c.373 0 .56 0 .703-.073a.67.67 0 0 0 .291-.291c.073-.143.073-.33.073-.703V10.4c0-.373 0-.56-.073-.703a.67.67 0 0 0-.291-.291c-.143-.073-.33-.073-.703-.073"})}),uK=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 17 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M6.048 8h5.333m-5.467 6h5.6c1.12 0 1.68 0 2.108-.218a2 2 0 0 0 .874-.874c.218-.428.218-.988.218-2.108V5.2c0-1.12 0-1.68-.218-2.108a2 2 0 0 0-.874-.874C13.194 2 12.634 2 11.514 2h-5.6c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874c-.218.428-.218.988-.218 2.108v5.6c0 1.12 0 1.68.218 2.108a2 2 0 0 0 .874.874c.428.218.988.218 2.108.218"})}),uJ=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 24 24",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M5 12h14"})}),uX=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{d:"M4 6.667c-.733 0-1.333.6-1.333 1.333S3.267 9.333 4 9.333 5.333 8.733 5.333 8 4.733 6.667 4 6.667m8 0c-.733 0-1.333.6-1.333 1.333s.6 1.333 1.333 1.333 1.333-.6 1.333-1.333-.6-1.333-1.333-1.333m-4 0c-.733 0-1.333.6-1.333 1.333S7.267 9.333 8 9.333 9.333 8.733 9.333 8 8.733 6.667 8 6.667"})}),uQ=e=>(0,tl.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M9.333 2.667h4v4h-4zM9.333 9.333h4v4h-4zM6.667 3.333a4 4 0 0 0 0 8"}),(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"m5.597 12.552 1.687-.96-.96-1.686"})]}),uY=e=>(0,tl.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M9.333 2.667h4v4h-4zM9.333 9.333h4v4h-4zM6.667 12.916a4 4 0 1 1 0-8"}),(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"m5.597 3.696 1.687.96-.96 1.687"})]}),u0=e=>(0,tl.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:[(0,tl.jsx)("path",{d:"M4.864 2.864a.75.75 0 1 0-1.061-1.061l-1.47 1.47-.47-.47a.75.75 0 0 0-1.06 1.06l1 1a.75.75 0 0 0 1.06 0zM14.667 2.583h-8a.75.75 0 1 0 0 1.5h8a.75.75 0 0 0 0-1.5M6.667 7.25a.75.75 0 1 0 0 1.5h8a.75.75 0 0 0 0-1.5zM5.917 12.667a.75.75 0 0 1 .75-.75h8a.75.75 0 1 1 0 1.5h-8a.75.75 0 0 1-.75-.75"}),(0,tl.jsx)("path",{fillRule:"evenodd",d:"M2.667 5.917a2.083 2.083 0 1 0 0 4.166 2.083 2.083 0 0 0 0-4.166M2.083 8A.583.583 0 1 1 3.25 8a.583.583 0 0 1-1.167 0M.583 12.667a2.083 2.083 0 1 1 4.167 0 2.083 2.083 0 0 1-4.167 0m2.084-.584a.583.583 0 1 0 0 1.167.583.583 0 0 0 0-1.167",clipRule:"evenodd"})]}),u1=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 17 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M3.042 5.453h10.916M12.138 8H4.863m4.366 2.91H4.862m0 2.912h7.277a2.183 2.183 0 0 0 2.183-2.183V4.362a2.183 2.183 0 0 0-2.183-2.184H4.862a2.183 2.183 0 0 0-2.184 2.184v7.277c0 1.205.978 2.183 2.184 2.183"})}),u2=e=>(0,tl.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:[(0,tl.jsx)("path",{d:"M10.875 7.5H8.5V5.125A.125.125 0 0 0 8.375 5h-.75a.125.125 0 0 0-.125.125V7.5H5.125A.125.125 0 0 0 5 7.625v.75c0 .069.056.125.125.125H7.5v2.375c0 .069.056.125.125.125h.75a.125.125 0 0 0 .125-.125V8.5h2.375A.125.125 0 0 0 11 8.375v-.75a.125.125 0 0 0-.125-.125"}),(0,tl.jsx)("path",{d:"M8 1a7 7 0 1 0 .001 14.001A7 7 0 0 0 8 1m0 12.813A5.813 5.813 0 0 1 8 2.188a5.813 5.813 0 0 1 0 11.625"})]}),u3=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("g",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,clipPath:"url(#new-column_inline_svg__clip0_723_2395)",children:(0,tl.jsx)("path",{d:"M4 2.667h2.667a.667.667 0 0 1 .666.666v9.334a.667.667 0 0 1-.666.666H4a.667.667 0 0 1-.667-.666V3.333A.667.667 0 0 1 4 2.667M10 8h2.667M11.333 6.667v2.666"})})}),u6=e=>(0,tl.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M11.944 2v3.889M10 3.944h3.889"}),(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.3,d:"M10.301 10h.333c.32 0 .48 0 .569-.066a.33.33 0 0 0 .13-.241c.006-.11-.082-.242-.26-.506l-.992-1.475c-.147-.218-.22-.327-.313-.365a.33.33 0 0 0-.252 0c-.093.038-.166.147-.313.365l-.245.365M10.3 10 7.768 6.374c-.146-.209-.219-.313-.31-.35a.33.33 0 0 0-.248 0c-.091.037-.164.141-.31.35L4.94 9.18c-.186.265-.278.398-.273.509a.33.33 0 0 0 .129.244c.089.067.252.067.578.067z"}),(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M5.333 2H5.2c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874C2 3.52 2 4.08 2 5.2v.133M5.333 14H5.2c-1.12 0-1.68 0-2.108-.218a2 2 0 0 1-.874-.874C2 12.48 2 11.92 2 10.8v-.133m12 0v.133c0 1.12 0 1.68-.218 2.108a2 2 0 0 1-.874.874C12.48 14 11.92 14 10.8 14h-.133"})]}),u4=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{fillRule:"evenodd",d:"M9.333 6A3.3 3.3 0 0 0 6 2.667 3.3 3.3 0 0 0 2.667 6c0 1.933 1.933 4.8 3.333 6.6 1.533-2 3.333-4.867 3.333-6.6M8 6c0 1.133-.867 2-2 2s-2-.867-2-2 .867-2 2-2 2 .867 2 2M1.333 6C1.333 3.4 3.4 1.333 6 1.333S10.667 3.4 10.667 6C10.667 9.467 6 14.667 6 14.667S1.333 9.533 1.333 6m4 0c0 .4.267.667.667.667S6.667 6.4 6.667 6 6.4 5.333 6 5.333 5.333 5.6 5.333 6m7.367 4.056a.7.7 0 0 0-1.4 0V11.3h-1.244a.7.7 0 1 0 0 1.4H11.3v1.244a.7.7 0 1 0 1.4 0V12.7h1.245a.7.7 0 0 0 0-1.4H12.7z",clipRule:"evenodd"})}),u8=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M13.333 4v2.667a.667.667 0 0 1-.666.666H3.333a.667.667 0 0 1-.666-.666V4a.667.667 0 0 1 .666-.667h9.334a.667.667 0 0 1 .666.667M8 10v2.667M9.333 11.333H6.667"})}),u7=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M12.667 14v-4m-2 2h4m0-5.333H1.333M14.667 8V5.467c0-.747 0-1.12-.146-1.406a1.33 1.33 0 0 0-.582-.582c-.286-.146-.659-.146-1.406-.146H3.467c-.747 0-1.12 0-1.406.146-.25.127-.455.331-.582.582-.146.286-.146.659-.146 1.406v5.066c0 .747 0 1.12.146 1.406.127.25.331.454.582.582.286.146.659.146 1.406.146H8"})}),u5=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M8 3.333v9.334M3.333 8h9.334"})}),u9=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{fillRule:"evenodd",d:"M5.7 1.3h-.029c-.535 0-.98 0-1.342.03-.376.03-.726.097-1.055.264a2.7 2.7 0 0 0-1.18 1.18c-.167.33-.234.679-.264 1.055-.03.363-.03.807-.03 1.342v5.658c0 .535 0 .98.03 1.342.03.376.097.726.264 1.055a2.7 2.7 0 0 0 1.18 1.18c.33.167.679.234 1.055.264.363.03.807.03 1.342.03h6.258a2.27 2.27 0 0 0 2.271-2.271V6.773c0-.397 0-.736-.023-1.015-.024-.294-.076-.581-.217-.857A2.2 2.2 0 0 0 13 3.94c-.276-.14-.563-.193-.857-.217-.279-.023-.618-.023-1.015-.023h-.112a2.6 2.6 0 0 0-.252-.926 2.7 2.7 0 0 0-1.18-1.18c-.33-.167-.678-.234-1.055-.264a18 18 0 0 0-1.342-.03H5.7m0 12h4.13a2.3 2.3 0 0 1-.173-.871V5.2c0-.572 0-.958-.025-1.257-.023-.29-.066-.434-.117-.533a1.3 1.3 0 0 0-.568-.568c-.098-.05-.243-.093-.533-.117C8.115 2.7 7.729 2.7 7.157 2.7H5.7c-.572 0-.958 0-1.257.025-.29.024-.434.066-.533.117a1.3 1.3 0 0 0-.568.568c-.05.099-.093.243-.117.533C3.2 4.242 3.2 4.628 3.2 5.2v5.6c0 .572 0 .958.025 1.257.024.29.066.434.117.533a1.3 1.3 0 0 0 .568.568c.099.05.243.093.533.117.299.024.685.025 1.257.025m7.1-.871a.871.871 0 0 1-1.743 0V5.1h.043c.432 0 .713 0 .928.018.207.017.29.046.335.07a.8.8 0 0 1 .35.349c.023.045.052.128.069.335.018.215.018.496.018.928zM5.5 3.3a1.7 1.7 0 0 0 0 3.4h2a1.7 1.7 0 1 0 0-3.4zM5.2 5a.3.3 0 0 1 .3-.3h2a.3.3 0 0 1 0 .6h-2a.3.3 0 0 1-.3-.3",clipRule:"evenodd"})}),me=e=>(0,tl.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 184 115",...e,children:[(0,tl.jsx)("path",{fill:"currentColor",fillOpacity:.06,d:"M25.875 80.5C9.857 84.095 0 88.992 0 94.388c0 11.033 41.19 19.976 92 19.976s92-8.943 92-19.976c0-5.396-9.857-10.293-25.875-13.888v8.708c0 6.058-3.795 11.024-8.481 11.024H34.356c-4.686 0-8.481-4.969-8.481-11.024z"}),(0,tl.jsxs)("g",{stroke:"currentColor",strokeOpacity:.06,children:[(0,tl.jsx)("path",{fill:"currentColor",fillOpacity:.04,d:"M119.637 45.815c0-4.58 2.858-8.361 6.403-8.364h32.085v51.757c0 6.058-3.795 11.024-8.481 11.024H34.356c-4.686 0-8.481-4.969-8.481-11.024V37.451H57.96c3.545 0 6.403 3.776 6.403 8.356v.063c0 4.58 2.889 8.278 6.431 8.278h42.412c3.542 0 6.431-3.733 6.431-8.313z"}),(0,tl.jsx)("path",{d:"m158.125 37.766-29.17-32.823c-1.4-2.237-3.444-3.59-5.597-3.59H60.642c-2.153 0-4.197 1.353-5.597 3.588l-29.17 32.828"})]})]}),mt=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M7.333 2.667H5.2c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874C2 4.187 2 4.747 2 5.867V10.8c0 1.12 0 1.68.218 2.108a2 2 0 0 0 .874.874C3.52 14 4.08 14 5.2 14h4.933c1.12 0 1.68 0 2.108-.218a2 2 0 0 0 .874-.874c.218-.428.218-.988.218-2.108V8.667m-4.666 2.666h-4M10 8.667H4.667m8.747-6.081a2 2 0 1 1-2.828 2.828 2 2 0 0 1 2.828-2.828"})}),mi=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M2 5.2c0-1.12 0-1.68.218-2.108a2 2 0 0 1 .874-.874C3.52 2 4.08 2 5.2 2h5.6c1.12 0 1.68 0 2.108.218a2 2 0 0 1 .874.874C14 3.52 14 4.08 14 5.2v3.6c0 1.12 0 1.68-.218 2.108a2 2 0 0 1-.874.874C12.48 12 11.92 12 10.8 12H9.122c-.416 0-.624 0-.823.04a2 2 0 0 0-.507.179c-.181.092-.344.222-.669.482l-1.59 1.272c-.277.222-.416.333-.533.333a.33.33 0 0 1-.26-.125c-.073-.091-.073-.269-.073-.624V12c-.62 0-.93 0-1.185-.068a2 2 0 0 1-1.414-1.414C2 10.263 2 9.953 2 9.333z"})}),mn=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M7.333 2.667H5.2c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874C2 4.187 2 4.747 2 5.867v3.466c0 .62 0 .93.068 1.185a2 2 0 0 0 1.414 1.414c.255.068.565.068 1.185.068v1.557c0 .355 0 .533.072.624.064.08.16.126.261.126.117 0 .256-.112.533-.334l1.59-1.272c.325-.26.488-.39.669-.482q.24-.123.507-.178C8.5 12 8.706 12 9.123 12h1.01c1.12 0 1.68 0 2.108-.218a2 2 0 0 0 .874-.874c.218-.428.218-.988.218-2.108v-.133m.081-6.081a2 2 0 1 1-2.828 2.828 2 2 0 0 1 2.828-2.828"})}),mr=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{fillOpacity:.85,d:"M4.781 13.512c.457 0 .739-.235.832-.668l.528-2.52h2.18l-.481 2.297c-.106.48.234.89.715.89.468 0 .773-.234.867-.667l.527-2.531h1.219c.457 0 .785-.34.785-.786 0-.398-.281-.691-.668-.691h-1.02l.505-2.379H12c.457 0 .785-.34.785-.785 0-.399-.281-.692-.668-.692h-1.043l.457-2.19a.736.736 0 0 0-.738-.892c-.457 0-.75.235-.844.68L9.445 4.98h-2.18l.446-2.19a.72.72 0 0 0-.715-.892c-.469 0-.762.235-.855.68L5.648 4.98H4.406a.77.77 0 0 0-.785.786c0 .398.281.691.68.691h1.02l-.493 2.379H3.574a.764.764 0 0 0-.785.785c0 .399.281.691.668.691h1.066l-.48 2.31c-.094.48.258.89.738.89m1.57-4.535.54-2.637h2.367l-.551 2.637z"})}),ma=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{fillRule:"evenodd",d:"M4.159 3.15c.41 0 .482.006.538.023a.6.6 0 0 1 .187.1c.046.036.091.091.323.43l.323.472.037.054c.172.251.328.481.542.653.186.151.4.264.631.333.263.079.54.079.845.078h2.758c.353 0 .651.235.747.557H4.863c-.51 0-.932-.001-1.308.144a2.15 2.15 0 0 0-.855.602c-.264.306-.405.704-.576 1.184l-.033.094-.336.94-.201-3.822a13 13 0 0 1-.032-.978c.007-.221.034-.316.06-.372a.85.85 0 0 1 .373-.393c.054-.029.147-.061.368-.08.228-.018.527-.019.978-.019zM.797 12.444a.65.65 0 0 1-.175-.41L.255 5.06l-.001-.026c-.022-.417-.04-.77-.032-1.06.01-.302.05-.596.18-.879a2.15 2.15 0 0 1 .944-.995c.276-.146.567-.2.87-.226.288-.024.64-.024 1.059-.024h.95c.304 0 .582 0 .845.078.23.069.444.182.631.333.213.172.37.402.542.653l.037.054.323.472c.232.339.277.394.323.43a.6.6 0 0 0 .187.1c.056.017.128.023.538.023h2.692c1.073 0 1.957.813 2.067 1.857.541 0 .991 0 1.35.033.373.034.734.107 1.05.312.467.302.799.772.926 1.313.086.367.034.732-.06 1.093-.09.353-.243.78-.428 1.296l-.01.03-.785 2.199-.034.094c-.17.48-.312.878-.576 1.184a2.15 2.15 0 0 1-.854.602c-.377.145-.8.145-1.309.144H4.147c-.548 0-1.002 0-1.365-.033-.372-.033-.733-.107-1.05-.312a2.15 2.15 0 0 1-.935-1.361M5.172 9.35a.65.65 0 0 0 0 1.3h5.6a.65.65 0 1 0 0-1.3zm-1.15-2.143c.121-.046.278-.057.94-.057h7.404c.586 0 .98 0 1.278.028.294.026.406.073.46.109a.85.85 0 0 1 .367.519c.014.063.021.184-.053.47-.075.289-.207.661-.404 1.213l-.786 2.2c-.223.624-.285.768-.37.866a.85.85 0 0 1-.337.238c-.12.046-.278.057-.94.057H4.176c-.585 0-.98 0-1.278-.027-.294-.027-.406-.074-.46-.11a.85.85 0 0 1-.366-.518c-.015-.064-.022-.185.052-.47.075-.29.207-.662.404-1.214l.786-2.2c.223-.624.286-.768.37-.866a.85.85 0 0 1 .338-.238",clipRule:"evenodd"})}),mo=e=>(0,tl.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:1.4,d:"M8 5.333V2.667M7 10.667H4M4.167 13.333h7.666a1.5 1.5 0 0 0 1.5-1.5V5.57a1 1 0 0 0-.105-.447l-.675-1.35a2 2 0 0 0-1.79-1.105H5.237a2 2 0 0 0-1.789 1.105l-.675 1.35a1 1 0 0 0-.105.447v6.264a1.5 1.5 0 0 0 1.5 1.5Z"}),(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M3.333 5.333h9.334"})]}),ml=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.3,d:"M10.667 2.667c.62 0 .93 0 1.184.068a2 2 0 0 1 1.414 1.414c.068.254.068.564.068 1.184v6.134c0 1.12 0 1.68-.218 2.108a2 2 0 0 1-.874.874c-.428.218-.988.218-2.108.218H5.867c-1.12 0-1.68 0-2.108-.218a2 2 0 0 1-.874-.874c-.218-.428-.218-.988-.218-2.108V5.333c0-.62 0-.93.068-1.184a2 2 0 0 1 1.414-1.414c.254-.068.564-.068 1.184-.068M6 10l1.333 1.333 3-3M6.4 4h3.2c.373 0 .56 0 .703-.073a.67.67 0 0 0 .291-.291c.073-.143.073-.33.073-.703V2.4c0-.373 0-.56-.073-.703a.67.67 0 0 0-.291-.291c-.143-.073-.33-.073-.703-.073H6.4c-.373 0-.56 0-.703.073a.67.67 0 0 0-.291.291c-.073.143-.073.33-.073.703v.533c0 .374 0 .56.073.703a.67.67 0 0 0 .291.291C5.84 4 6.027 4 6.4 4"})}),ms=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M13.333 8.333v-3.8c0-1.12 0-1.68-.218-2.108a2 2 0 0 0-.874-.874c-.428-.218-.988-.218-2.108-.218H5.867c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874c-.218.428-.218.988-.218 2.108v6.934c0 1.12 0 1.68.218 2.108a2 2 0 0 0 .874.874c.427.218.988.218 2.108.218H8m1.333-7.334h-4M6.667 10H5.333m5.334-5.333H5.333m4.334 8L11 14l3-3"})}),md=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("g",{clipPath:"url(#personal-user_inline_svg__clip0_723_2266)",children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M2.667 14.545c.401.122.944.122 1.866.122h6.934c.922 0 1.465 0 1.866-.122m-10.666 0a1.5 1.5 0 0 1-.242-.096 2 2 0 0 1-.874-.874c-.218-.428-.218-.988-.218-2.108V4.533c0-1.12 0-1.68.218-2.108a2 2 0 0 1 .874-.874c.428-.218.988-.218 2.108-.218h6.934c1.12 0 1.68 0 2.108.218a2 2 0 0 1 .874.874c.218.428.218.988.218 2.108v6.934c0 1.12 0 1.68-.218 2.108a2 2 0 0 1-.874.874 1.5 1.5 0 0 1-.242.096m-10.666 0c0-.54.003-.825.05-1.065a2.67 2.67 0 0 1 2.096-2.095c.258-.052.567-.052 1.187-.052h4c.62 0 .93 0 1.187.052a2.67 2.67 0 0 1 2.095 2.095c.048.24.051.525.051 1.065m-2.666-8.212a2.667 2.667 0 1 1-5.334 0 2.667 2.667 0 0 1 5.334 0"})})}),mf=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("g",{clipPath:"url(#pie-chart_inline_svg__clip0_723_2280)",children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M8 1.333A6.667 6.667 0 0 1 14.667 8M8 1.333V8m0-6.667A6.667 6.667 0 1 0 14.667 8M8 1.333A6.667 6.667 0 0 1 14.667 8m0 0H8m6.667 0a6.67 6.67 0 0 1-2.748 5.393L8 8"})})}),mc=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{d:"M12.667 4.667c-1.134 0-2.134.533-2.8 1.466L7.4 9.8c-.6 1-1.6 1.533-2.733 1.533A3.3 3.3 0 0 1 1.333 8a3.3 3.3 0 0 1 3.334-3.333c1.133 0 2.133.533 2.8 1.466l.4.667.8-1.2-.134-.2C7.667 4.133 6.2 3.333 4.667 3.333A4.64 4.64 0 0 0 0 8c0 2.6 2.067 4.667 4.667 4.667 1.533 0 3-.8 3.866-2.067l.934-1.4.4.667c.6.933 1.666 1.466 2.8 1.466A3.3 3.3 0 0 0 16 8a3.3 3.3 0 0 0-3.333-3.333m0 5.333C12 10 11.4 9.667 11 9.133L10.267 8 11 6.933c.333-.6 1-.933 1.667-.933 1.133 0 2 .867 2 2s-.867 2-2 2"})}),mu=e=>(0,tl.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,tl.jsx)("path",{stroke:"currentColor",strokeWidth:1.4,d:"M9.302 2.91c.653-.436.98-.654 1.336-.618.355.035.633.312 1.188.867l1.015 1.015c.555.555.832.832.867 1.188s-.182.683-.617 1.336l-.796 1.193-.165.25a8 8 0 0 0-1.137 2.892l-.127.636a.668.668 0 0 1-1.036.419A23.4 23.4 0 0 1 3.912 6.17a.668.668 0 0 1 .419-1.036l.636-.127.293-.06a8 8 0 0 0 2.6-1.077c.062-.04.124-.082.248-.165z"}),(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:1.4,d:"m3.333 12.667 3-3"})]}),mm=e=>(0,tl.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,tl.jsx)("path",{stroke:"currentColor",strokeWidth:1.4,d:"M5.333 2.974c0-.538.436-.974.974-.974h3.386c.538 0 .974.436.974.974 0 1.538.455 3.042 1.308 4.322l.933 1.399a.54.54 0 0 1-.319.824 18.9 18.9 0 0 1-9.178 0 .54.54 0 0 1-.319-.824l.933-1.399a7.8 7.8 0 0 0 1.308-4.322Z"}),(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:1.4,d:"M8 13.333v-2.666"}),(0,tl.jsx)("path",{stroke:"currentColor",strokeWidth:1.4,d:"M4 13.333h8"})]}),mp=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M8 3.333v9.334M3.333 8h9.334"})}),mg=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 17 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M8.714 5.333v5.334M6.048 8h5.333m-5.467 6h5.6c1.12 0 1.68 0 2.108-.218a2 2 0 0 0 .874-.874c.218-.428.218-.988.218-2.108V5.2c0-1.12 0-1.68-.218-2.108a2 2 0 0 0-.874-.874C13.194 2 12.634 2 11.514 2h-5.6c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874c-.218.428-.218.988-.218 2.108v5.6c0 1.12 0 1.68.218 2.108a2 2 0 0 0 .874.874c.428.218.988.218 2.108.218"})}),mh=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M8 10.667V14m0-3.333L12 14m-4-3.333L4 14M14 2v5.467c0 1.12 0 1.68-.218 2.108a2 2 0 0 1-.874.874c-.428.218-.988.218-2.108.218H5.2c-1.12 0-1.68 0-2.108-.218a2 2 0 0 1-.874-.874C2 9.147 2 8.587 2 7.467V2m3.333 4v2M8 4.667V8m2.667-.667V8m4-6H1.333"})}),mb=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M6 14h2m2 0H8m0 0v-2m0 0h4a2 2 0 0 0 2-2V5.333a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2V10a2 2 0 0 0 2 2zm2.49-1.833h.677a1 1 0 0 0 1-1V8.5M5.51 5.167h-.677a1 1 0 0 0-1 1v.666"})}),my=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.3,d:"M2.667 4h6m2-1.333V4m0 1.333V4m0 0h2.666M2.667 12h4m2-1.333V12m0 1.333V12m0 0h4.666M13.333 8h-6m-2 1.333V8m0-1.333V8m0 0H2.667"})}),mv=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{d:"M10.933 9.333C11 8.867 11 8.467 11 8s-.067-.867-.067-1.333H13.2c.133.4.2.866.2 1.333a4.3 4.3 0 0 1-.2 1.333m-3.467 3.734a9.5 9.5 0 0 0 .934-2.4H12.6c-.6 1.066-1.667 1.933-2.867 2.4m-.2-3.734H6.467C6.4 8.867 6.333 8.467 6.333 8s.067-.933.134-1.333H9.6c.067.4.133.866.133 1.333s-.133.867-.2 1.333m-1.533 4c-.533-.8-1-1.666-1.267-2.666h2.534C9 11.6 8.533 12.533 8 13.333m-2.667-8H3.4C4.067 4.2 5.067 3.4 6.267 2.933c-.4.8-.667 1.6-.934 2.4M3.4 10.667h1.933c.267.8.534 1.666.934 2.4-1.2-.467-2.267-1.334-2.867-2.4m-.533-1.334c-.134-.4-.2-.866-.2-1.333s.066-.933.2-1.333h2.266c-.066.466-.066.866-.066 1.333s.066.867.066 1.333M8 2.667c.533.8 1 1.666 1.267 2.666H6.733C7 4.4 7.467 3.467 8 2.667m4.6 2.666h-1.933c-.2-.8-.534-1.6-.934-2.4C10.933 3.4 12 4.2 12.6 5.333m-4.6-4c-3.667 0-6.667 3-6.667 6.667s3 6.667 6.667 6.667 6.667-3 6.667-6.667-3-6.667-6.667-6.667"})}),mx=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{d:"M8 1.333a6.667 6.667 0 1 0 0 13.334A6.667 6.667 0 0 0 8 1.333M8 12a.667.667 0 1 1 0-1.334A.667.667 0 0 1 8 12m.667-3.44v.773a.667.667 0 0 1-1.334 0V8A.667.667 0 0 1 8 7.333a1 1 0 1 0-1-1 .667.667 0 1 1-1.333 0 2.333 2.333 0 1 1 3 2.227"})}),mj=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M2 6h12M5.2 2h5.6c1.12 0 1.68 0 2.108.218a2 2 0 0 1 .874.874C14 3.52 14 4.08 14 5.2v5.6c0 1.12 0 1.68-.218 2.108a2 2 0 0 1-.874.874C12.48 14 11.92 14 10.8 14H5.2c-1.12 0-1.68 0-2.108-.218a2 2 0 0 1-.874-.874C2 12.48 2 11.92 2 10.8V5.2c0-1.12 0-1.68.218-2.108a2 2 0 0 1 .874-.874C3.52 2 4.08 2 5.2 2"})}),mw=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"m12 10 2 2m0 0-2 2m2-2h-1.62c-.627 0-.94 0-1.224-.086a2 2 0 0 1-.689-.369c-.23-.188-.403-.449-.75-.97l-.161-.242M12 2l2 2m0 0-2 2m2-2h-1.62c-.627 0-.94 0-1.224.086a2 2 0 0 0-.689.369c-.23.188-.403.449-.75.97l-3.434 5.15c-.347.521-.52.782-.75.97a2 2 0 0 1-.689.369C4.56 12 4.247 12 3.621 12H2m0-8h1.62c.627 0 .94 0 1.224.086a2 2 0 0 1 .689.369c.23.188.403.449.75.97l.161.242"})}),mC=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M11.333 12.583A5.667 5.667 0 0 0 8 2.333h-.333M8 13.667a5.667 5.667 0 0 1-3.333-10.25m2.666 11.516L8.667 13.6l-1.334-1.333m1.334-8.534L7.333 2.4l1.334-1.333"})}),mk=e=>(0,tl.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:1.4,d:"M1.586 1.586a2 2 0 1 0 2.828 2.828M1.586 1.586a2 2 0 1 1 2.828 2.828M1.586 1.586 3 3l1.414 1.414"}),(0,tl.jsx)("path",{fill:"currentColor",fillRule:"evenodd",d:"M2.7 5.985a3 3 0 0 1-1.4-.513v3.552c0 .446 0 .815.02 1.118.022.315.068.608.186.891a2.7 2.7 0 0 0 1.46 1.462c.284.117.577.163.892.184.303.021.672.021 1.118.021H5c.36 0 .426.004.479.017a.6.6 0 0 1 .26.13c.042.035.085.086.301.373l.973 1.298.012.015c.062.083.133.178.202.254.076.085.204.212.398.287.241.094.509.094.75 0 .194-.075.322-.202.398-.287.069-.076.14-.171.202-.254l.012-.015.973-1.298c.216-.287.259-.338.3-.373a.6.6 0 0 1 .261-.13c.053-.013.12-.017.479-.017h.024c.446 0 .815 0 1.118-.02.315-.022.608-.068.891-.185a2.7 2.7 0 0 0 1.462-1.462c.117-.283.163-.576.184-.891.021-.303.021-.672.021-1.118V5.17c0-.535 0-.98-.03-1.342-.03-.376-.097-.726-.264-1.055a2.7 2.7 0 0 0-1.18-1.18c-.33-.167-.679-.234-1.055-.264-.363-.03-.807-.03-1.342-.03H5.472c.28.406.462.884.513 1.4H10.8c.572 0 .958 0 1.257.025.29.024.434.066.533.117a1.3 1.3 0 0 1 .568.568c.05.099.093.243.117.533.024.299.025.685.025 1.257V9c0 .476 0 .797-.017 1.047-.017.243-.047.366-.082.45a1.3 1.3 0 0 1-.703.704c-.085.035-.208.065-.451.082-.25.017-.572.017-1.047.017h-.057c-.27 0-.51 0-.743.054a2 2 0 0 0-.836.418c-.184.153-.329.347-.49.562l-.034.046L8 13.5l-.84-1.12-.034-.046c-.161-.215-.306-.409-.49-.562a2 2 0 0 0-.836-.418c-.232-.054-.474-.054-.743-.054H5c-.476 0-.797 0-1.047-.017-.243-.017-.366-.047-.45-.082a1.3 1.3 0 0 1-.704-.703c-.035-.085-.065-.208-.082-.451C2.7 9.797 2.7 9.476 2.7 9z",clipRule:"evenodd"}),(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.3,d:"M10.071 9.38h.3c.288 0 .432 0 .511-.056A.27.27 0 0 0 11 9.12c.006-.093-.074-.205-.234-.43l-.893-1.254c-.132-.185-.198-.278-.282-.31a.32.32 0 0 0-.227 0c-.083.032-.15.125-.281.31l-.221.31m1.21 1.636H5.635c-.293 0-.44 0-.52-.058A.27.27 0 0 1 5 9.116c-.005-.094.079-.207.246-.433L7.01 6.297c.131-.177.197-.266.279-.297a.32.32 0 0 1 .223 0c.082.031.148.12.279.297l1.14 1.542zm1.658-4.548c0 .46-.398.834-.89.834s-.89-.373-.89-.834.398-.833.89-.833.89.373.89.833"})]}),mT=e=>(0,tl.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:[(0,tl.jsx)("path",{fillRule:"evenodd",d:"M8 6c0 1.133-.867 2-2 2s-2-.867-2-2 .867-2 2-2 2 .867 2 2M5.333 6c0 .4.267.667.667.667S6.667 6.4 6.667 6 6.4 5.333 6 5.333 5.333 5.6 5.333 6",clipRule:"evenodd"}),(0,tl.jsx)("path",{fillRule:"evenodd",d:"M1.333 6C1.333 3.4 3.4 1.333 6 1.333S10.667 3.4 10.667 6C10.667 9.467 6 14.667 6 14.667S1.333 9.533 1.333 6m8 0A3.3 3.3 0 0 0 6 2.667 3.3 3.3 0 0 0 2.667 6c0 1.933 1.933 4.8 3.333 6.6 1.533-2 3.333-4.867 3.333-6.6",clipRule:"evenodd"}),(0,tl.jsx)("path",{d:"M10.056 11.3a.7.7 0 1 0 0 1.4h3.889a.7.7 0 1 0 0-1.4z"})]}),mS=e=>(0,tl.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:[(0,tl.jsx)("path",{fillRule:"evenodd",d:"M1.09 1.09a2.7 2.7 0 1 1 3.818 3.818 2.7 2.7 0 0 1-3.817-3.817m1.63.64 1.55 1.55q.03-.135.03-.28a1.3 1.3 0 0 0-1.58-1.27m.56 2.54L1.73 2.72q-.03.135-.03.28a1.3 1.3 0 0 0 1.58 1.27",clipRule:"evenodd"}),(0,tl.jsx)("path",{d:"M2.7 5.985a3 3 0 0 1-1.4-.513v3.552c0 .446 0 .815.02 1.118.022.315.068.608.186.891a2.7 2.7 0 0 0 1.46 1.462c.284.117.577.163.892.184.303.021.672.021 1.118.021H5c.36 0 .426.005.479.017a.6.6 0 0 1 .26.13c.042.035.085.086.301.373l.985 1.313c.062.083.133.178.202.254.076.085.204.212.398.287.241.094.509.094.75 0 .194-.075.322-.202.398-.287.069-.076.14-.171.202-.254l.985-1.313c.216-.287.259-.338.3-.373a.6.6 0 0 1 .261-.13c.053-.013.12-.017.479-.017h.024c.446 0 .815 0 1.118-.02.315-.022.608-.068.891-.185a2.7 2.7 0 0 0 1.462-1.462c.117-.283.163-.576.184-.89.021-.304.021-.673.021-1.12V5.172c0-.535 0-.98-.03-1.342-.03-.376-.097-.726-.264-1.055a2.7 2.7 0 0 0-1.18-1.18c-.33-.167-.679-.234-1.055-.264-.363-.03-.807-.03-1.342-.03H5.472c.28.406.462.884.513 1.4H10.8c.572 0 .958 0 1.257.025.29.024.434.066.533.117a1.3 1.3 0 0 1 .568.568c.05.099.093.243.117.533.024.299.025.685.025 1.257V9c0 .476 0 .797-.017 1.047-.017.243-.047.366-.082.45a1.3 1.3 0 0 1-.703.704c-.085.035-.208.065-.451.082-.25.017-.572.017-1.047.017h-.057c-.27 0-.51 0-.743.054a2 2 0 0 0-.836.418c-.184.154-.329.347-.49.562L8 13.5l-.874-1.166c-.161-.215-.306-.408-.49-.562a2 2 0 0 0-.836-.418c-.232-.054-.474-.054-.743-.054H5c-.476 0-.797 0-1.047-.017-.243-.017-.366-.047-.45-.082a1.3 1.3 0 0 1-.704-.703c-.035-.085-.065-.208-.082-.451A17 17 0 0 1 2.7 9z"}),(0,tl.jsx)("path",{fillRule:"evenodd",d:"M8.528 4.34a1.5 1.5 0 0 1 .419.174c.15.091.272.214.373.316l.027.026.797.798.026.026c.102.101.225.224.316.373a1.4 1.4 0 0 1 .174.42c.04.17.04.343.04.486v1.864c0 .19 0 .373-.012.527a1.5 1.5 0 0 1-.146.558 1.45 1.45 0 0 1-.634.634c-.195.1-.39.132-.558.145-.154.013-.337.013-.527.013H7.177c-.19 0-.373 0-.527-.013a1.5 1.5 0 0 1-.558-.145 1.45 1.45 0 0 1-.634-.634c-.1-.195-.132-.39-.145-.558-.013-.154-.013-.337-.013-.527V6.177c0-.19 0-.373.013-.527.013-.168.046-.363.145-.558a1.45 1.45 0 0 1 .634-.634c.195-.1.39-.132.558-.145.154-.013.337-.013.527-.013h.864c.143 0 .317 0 .487.04m.767 2.45.002.001-.004-.006zM9.3 8.8V7.2h-.413c-.058 0-.137 0-.208-.006a1 1 0 0 1-.36-.098.95.95 0 0 1-.415-.415 1 1 0 0 1-.098-.36C7.8 6.25 7.8 6.171 7.8 6.113V5.7h-.6c-.222 0-.346 0-.436.008l-.048.005-.003.003-.005.048A6 6 0 0 0 6.7 6.2v2.6c0 .222 0 .346.008.436l.005.048.003.003.048.005c.09.007.214.008.436.008h1.6c.222 0 .346 0 .436-.008l.048-.005.003-.003.005-.048c.008-.09.008-.214.008-.436",clipRule:"evenodd"})]}),mD=e=>(0,tl.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:[(0,tl.jsx)("path",{fillRule:"evenodd",d:"M1.09 1.09a2.7 2.7 0 1 1 3.818 3.818 2.7 2.7 0 0 1-3.817-3.817m1.63.64 1.55 1.55q.03-.135.03-.28a1.3 1.3 0 0 0-1.58-1.27m.56 2.54L1.73 2.72q-.03.135-.03.28a1.3 1.3 0 0 0 1.58 1.27",clipRule:"evenodd"}),(0,tl.jsx)("path",{d:"M2.7 5.985a3 3 0 0 1-1.4-.513v3.552c0 .446 0 .815.02 1.118.022.315.068.608.186.891a2.7 2.7 0 0 0 1.46 1.462c.284.117.577.163.892.184.303.021.672.021 1.118.021H5c.36 0 .426.005.479.017a.6.6 0 0 1 .26.13c.042.035.085.086.301.373l.985 1.313c.062.083.133.178.202.254.076.085.204.212.398.287.241.094.509.094.75 0 .194-.075.322-.202.398-.287.069-.076.14-.171.202-.254l.985-1.313c.216-.287.259-.338.3-.373a.6.6 0 0 1 .261-.13c.053-.013.12-.017.479-.017h.024c.446 0 .815 0 1.118-.02.315-.022.608-.068.891-.185a2.7 2.7 0 0 0 1.462-1.462c.117-.283.163-.576.184-.89.021-.304.021-.673.021-1.12V5.172c0-.535 0-.98-.03-1.342-.03-.376-.097-.726-.264-1.055a2.7 2.7 0 0 0-1.18-1.18c-.33-.167-.679-.234-1.055-.264-.363-.03-.807-.03-1.342-.03H5.472c.28.406.462.884.513 1.4H10.8c.572 0 .958 0 1.257.025.29.024.434.066.533.117a1.3 1.3 0 0 1 .568.568c.05.099.093.243.117.533.024.299.025.685.025 1.257V9c0 .476 0 .797-.017 1.047-.017.243-.047.366-.082.45a1.3 1.3 0 0 1-.703.704c-.085.035-.208.065-.451.082-.25.017-.572.017-1.047.017h-.057c-.27 0-.51 0-.743.054a2 2 0 0 0-.836.418c-.184.154-.329.347-.49.562L8 13.5l-.874-1.166c-.161-.215-.306-.408-.49-.562a2 2 0 0 0-.836-.418c-.232-.054-.474-.054-.743-.054H5c-.476 0-.797 0-1.047-.017-.243-.017-.366-.047-.45-.082a1.3 1.3 0 0 1-.704-.703c-.035-.085-.065-.208-.082-.451A17 17 0 0 1 2.7 9z"}),(0,tl.jsx)("path",{fillRule:"evenodd",d:"M6.42 5.25c-.235 0-.443 0-.615.01-.18.01-.375.034-.57.105a1.57 1.57 0 0 0-.747.55c-.15.21-.2.427-.22.606a4 4 0 0 0-.018.48v.997c0 .156 0 .33.017.48.02.18.071.398.22.607.192.268.467.447.748.55.195.07.39.094.57.105.172.01.38.01.615.01h1.66c.235 0 .443 0 .615-.01.18-.01.375-.034.57-.105a1.57 1.57 0 0 0 .747-.55q.075-.106.12-.212l.034.025c.053.037.124.088.19.128a.932.932 0 0 0 1.088-.068.85.85 0 0 0 .296-.558c.01-.086.01-.18.01-.23V6.83c0-.049 0-.143-.01-.229a.85.85 0 0 0-.295-.558.93.93 0 0 0-1.088-.068c-.066.04-.138.09-.19.128l-.035.025a1 1 0 0 0-.12-.212 1.57 1.57 0 0 0-.747-.55 2 2 0 0 0-.57-.105c-.172-.01-.38-.01-.615-.01zm2.33 1.779v.942l-.001.222-.001.033a1 1 0 0 1-.14.017c-.124.007-.287.007-.548.007H6.44c-.26 0-.424 0-.547-.007a1 1 0 0 1-.14-.017l-.002-.033-.001-.222V7.03l.001-.222.001-.033a1 1 0 0 1 .14-.017c.124-.007.287-.007.548-.007h1.62c.26 0 .424 0 .547.007a1 1 0 0 1 .14.017l.002.033z",clipRule:"evenodd"})]}),mE=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.3,d:"M5.333 4.667h5.334M8 4.667v6.666M5.2 14h5.6c1.12 0 1.68 0 2.108-.218a2 2 0 0 0 .874-.874C14 12.48 14 11.92 14 10.8V5.2c0-1.12 0-1.68-.218-2.108a2 2 0 0 0-.874-.874C12.48 2 11.92 2 10.8 2H5.2c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874C2 3.52 2 4.08 2 5.2v5.6c0 1.12 0 1.68.218 2.108a2 2 0 0 0 .874.874C3.52 14 4.08 14 5.2 14"})}),mM=e=>(0,tl.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,tl.jsx)("path",{fill:"currentColor",d:"M4.667 9.667v2zM7.667 7.667v4zM10.667 5.667v6zM13.667 3.667v8z"}),(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M14 14H4.133c-.746 0-1.12 0-1.405-.145a1.33 1.33 0 0 1-.583-.583C2 12.987 2 12.613 2 11.867V2m2.667 7.667v2m3-4v4m3-6v6m3-8v8"})]}),mI=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 17 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M14.714 13.333h-2.266c-2.24 0-3.36 0-4.216-.436a4 4 0 0 1-1.748-1.748c-.436-.855-.436-1.975-.436-4.216V2.667m0 0L9.38 6M6.048 2.667 2.714 6"})}),mL=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsxs)("g",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,clipPath:"url(#requires_inline_svg__clip0_723_2293)",children:[(0,tl.jsx)("path",{d:"M6 10.667a4.667 4.667 0 1 0 0-9.334 4.667 4.667 0 0 0 0 9.334"}),(0,tl.jsx)("path",{d:"M10 14.667a4.667 4.667 0 1 0 0-9.334 4.667 4.667 0 0 0 0 9.334"})]})}),mP=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:1.4,d:"M5.333 10H2m0 0V6.667M2 10l2-2c3.333-3.333 8-2.167 10 1"})}),mN=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 17 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M6.714 9.333 3.381 6m0 0 3.333-3.333M3.381 6h4.267c2.24 0 3.36 0 4.216.436a4 4 0 0 1 1.748 1.748c.436.856.436 1.976.436 4.216v.933"})}),mA=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 18 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:1.4,d:"M16.542 8H8.115m-3.55 2.78H2.942m1.623-2.682H1.342m3.223-2.682H2.942m4.471-2.352 8.837 4.285a.724.724 0 0 1 0 1.302l-8.837 4.285c-.605.294-1.249-.325-.979-.942l1.62-3.704a.72.72 0 0 0 0-.58l-1.62-3.704c-.27-.617.374-1.236.98-.942Z"})}),mR=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M4.667 2v2.267c0 .373 0 .56.072.702a.67.67 0 0 0 .292.292c.142.072.329.072.702.072h4.534c.373 0 .56 0 .702-.072a.67.67 0 0 0 .292-.292c.072-.142.072-.329.072-.702v-1.6m0 11.333V9.733c0-.373 0-.56-.072-.702a.67.67 0 0 0-.292-.292c-.142-.072-.329-.072-.702-.072H5.733c-.373 0-.56 0-.702.072a.67.67 0 0 0-.292.292c-.072.142-.072.329-.072.702V14M14 6.217V10.8c0 1.12 0 1.68-.218 2.108a2 2 0 0 1-.874.874C12.48 14 11.92 14 10.8 14H5.2c-1.12 0-1.68 0-2.108-.218a2 2 0 0 1-.874-.874C2 12.48 2 11.92 2 10.8V5.2c0-1.12 0-1.68.218-2.108a2 2 0 0 1 .874-.874C3.52 2 4.08 2 5.2 2h4.583c.326 0 .49 0 .643.037q.205.05.385.16c.135.082.25.197.48.428l2.084 2.084c.23.23.346.345.428.48q.11.181.16.385c.037.154.037.317.037.643"})}),mO=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M14 6.667H2m8.667-5.334V4M5.333 1.333V4M6 10.667 7.333 12l3-3M5.2 14.667h5.6c1.12 0 1.68 0 2.108-.218a2 2 0 0 0 .874-.874c.218-.428.218-.988.218-2.108v-5.6c0-1.12 0-1.68-.218-2.108a2 2 0 0 0-.874-.874c-.428-.218-.988-.218-2.108-.218H5.2c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874C2 4.187 2 4.747 2 5.867v5.6c0 1.12 0 1.68.218 2.108a2 2 0 0 0 .874.874c.428.218.988.218 2.108.218"})}),mB=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.3,d:"m14 14-4-4m1.333-3.333a4.667 4.667 0 1 1-9.333 0 4.667 4.667 0 0 1 9.333 0"})}),mF=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("g",{clipPath:"url(#segment-tagging_inline_svg__clip0_723_2317)",children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M10.667 3.333 12 4.667 14.667 2m0 6v3.467c0 1.12 0 1.68-.218 2.108a2 2 0 0 1-.874.874c-.428.218-.988.218-2.108.218H4.533c-1.12 0-1.68 0-2.108-.218a2 2 0 0 1-.874-.874c-.218-.428-.218-.988-.218-2.108V4.533c0-1.12 0-1.68.218-2.108a2 2 0 0 1 .874-.874c.428-.218.988-.218 2.108-.218H8M1.43 13.284A2.67 2.67 0 0 1 4 11.334h4.667c.619 0 .929 0 1.186.05a2.67 2.67 0 0 1 2.096 2.096c.05.257.05.567.05 1.187M9.334 6.333a2.667 2.667 0 1 1-5.333 0 2.667 2.667 0 0 1 5.333 0"})})}),m_=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeOpacity:.6,strokeWidth:1.3,d:"M7 8H3.334m-.057.194-1.556 4.65c-.123.365-.184.548-.14.66.038.098.12.172.22.2.117.033.293-.046.644-.204l11.141-5.014c.343-.154.515-.231.567-.338a.33.33 0 0 0 0-.296c-.053-.107-.224-.184-.567-.339L2.441 2.499c-.35-.157-.525-.236-.641-.204a.33.33 0 0 0-.221.2c-.044.112.016.294.137.659l1.562 4.704c.02.062.03.094.035.126a.3.3 0 0 1 0 .085c-.004.032-.015.064-.036.126"})}),mz=e=>(0,tl.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,tl.jsx)("path",{stroke:"currentColor",strokeWidth:1.2,d:"M14.123 2.667H1.878c-.301 0-.545.243-.545.544v9.578c0 .3.244.544.545.544h12.245c.3 0 .544-.243.544-.544V3.211c0-.3-.244-.544-.544-.544Z"}),(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.2,d:"M5.333 6.316c-.666-.983-1.834-.337-1.75.674C3.667 8 5 8 5.083 9.01c.084 1.01-1.083 1.657-1.75.674M8.667 6H7.333v4.333h1.334M7.333 8.333h1.334M12.667 7a1 1 0 0 0-2 0v2.333a1 1 0 1 0 2 0z"})]}),mV=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsxs)("g",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,clipPath:"url(#settings_inline_svg__clip0_723_2314)",children:[(0,tl.jsx)("path",{d:"M8 10a2 2 0 1 0 0-4 2 2 0 0 0 0 4"}),(0,tl.jsx)("path",{d:"M12.485 9.818a1 1 0 0 0 .2 1.103l.036.037a1.212 1.212 0 1 1-1.715 1.715l-.036-.037a1 1 0 0 0-1.103-.2 1 1 0 0 0-.606.915v.104a1.212 1.212 0 0 1-2.425 0V13.4a1 1 0 0 0-.654-.915 1 1 0 0 0-1.103.2l-.037.036a1.212 1.212 0 1 1-1.715-1.715l.037-.036a1 1 0 0 0 .2-1.103 1 1 0 0 0-.916-.606h-.103a1.212 1.212 0 0 1 0-2.425H2.6a1 1 0 0 0 .915-.654 1 1 0 0 0-.2-1.103l-.036-.037a1.212 1.212 0 1 1 1.715-1.715l.036.037a1 1 0 0 0 1.103.2h.049a1 1 0 0 0 .606-.916v-.103a1.212 1.212 0 0 1 2.424 0V2.6a1 1 0 0 0 .606.915 1 1 0 0 0 1.103-.2l.037-.036a1.21 1.21 0 0 1 1.978.393 1.21 1.21 0 0 1-.263 1.322l-.037.036a1 1 0 0 0-.2 1.103v.049a1 1 0 0 0 .915.606h.103a1.212 1.212 0 1 1 0 2.424H13.4a1 1 0 0 0-.915.606"})]})}),m$=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 14 14",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.3,d:"M12.25 5.25v-3.5m0 0h-3.5m3.5 0L7 7M5.833 1.75H4.55c-.98 0-1.47 0-1.844.19a1.75 1.75 0 0 0-.765.766c-.191.374-.191.864-.191 1.844v4.9c0 .98 0 1.47.19 1.845.169.329.436.597.766.764.374.191.864.191 1.844.191h4.9c.98 0 1.47 0 1.845-.19a1.75 1.75 0 0 0 .764-.766c.191-.374.191-.864.191-1.844V8.167"})}),mW=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"m12.667 14-2-2m0 0 2-2m-2 2h4m-4.334-9.806a2.668 2.668 0 0 1 0 4.945M8 10H5.333c-1.242 0-1.863 0-2.353.203-.654.27-1.173.79-1.444 1.443-.203.49-.203 1.111-.203 2.354M9 4.667a2.667 2.667 0 1 1-5.333 0 2.667 2.667 0 0 1 5.333 0"})}),mH=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M8 9.667v-4m-2 2h4M13.333 8c0 3.273-3.569 5.653-4.868 6.41-.147.086-.221.13-.325.152a.8.8 0 0 1-.28 0c-.104-.023-.178-.066-.325-.152-1.299-.758-4.868-3.137-4.868-6.41V4.812c0-.533 0-.8.087-1.029.077-.202.202-.383.364-.526.184-.162.434-.255.933-.443l3.574-1.34c.14-.052.208-.078.28-.088a.7.7 0 0 1 .19 0c.072.01.14.036.28.088l3.574 1.34c.5.188.749.281.933.443.162.143.287.324.364.526.087.23.087.496.087 1.029z"})}),mG=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M7.535 14.41c.147.086.221.13.325.151.081.018.199.018.28 0 .104-.022.178-.065.325-.151 1.299-.758 4.868-3.138 4.868-6.41V5.467c0-.716 0-1.074-.11-1.328a1.16 1.16 0 0 0-.454-.558c-.226-.16-.67-.252-1.557-.437a5.7 5.7 0 0 1-2.416-1.102c-.329-.254-.494-.382-.622-.417a.56.56 0 0 0-.348 0c-.128.035-.293.163-.622.417a5.7 5.7 0 0 1-2.416 1.102c-.887.185-1.33.277-1.557.437-.23.162-.342.3-.454.558-.11.254-.11.612-.11 1.328V8c0 3.272 3.569 5.652 4.868 6.41"})}),mU=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.3,d:"M9.333 6.667 14 2m0 0h-4m4 0v4M6.667 9.333 2 14m0 0h4m-4 0v-4"})}),mq=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 17 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M9.5 2H6.3c-.747 0-1.12 0-1.405.145-.251.128-.455.332-.583.583-.145.285-.145.659-.145 1.405v7.734c0 .746 0 1.12.145 1.405.128.25.332.455.583.583.284.145.658.145 1.403.145h5.07c.746 0 1.119 0 1.404-.145.25-.128.455-.332.583-.583.145-.285.145-.658.145-1.403V6m-4-4c.19.002.31.01.426.037q.205.05.385.16c.135.082.25.198.48.428l2.084 2.084c.23.23.346.345.428.48q.11.181.16.385c.028.115.035.236.036.426M9.5 2v1.867c0 .746 0 1.12.145 1.405.128.25.332.455.583.583.285.145.658.145 1.403.145H13.5m0 0h.001m-3.333 2.667L11.5 10l-1.333 1.333m-2.667 0L6.167 10 7.5 8.667"})}),mZ=e=>(0,tl.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 14 14",...e,children:[(0,tl.jsx)("circle",{cx:2.8,cy:2.8,r:2.8,opacity:.5}),(0,tl.jsx)("circle",{cx:2.8,cy:11.2,r:2.8}),(0,tl.jsx)("circle",{cx:11.2,cy:2.8,r:2.8,opacity:.3}),(0,tl.jsx)("circle",{cx:11.2,cy:11.2,r:2.8,opacity:.6})]}),mK=e=>(0,tl.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:1.3,d:"M2 5V2.3c0-.166.14-.3.313-.3h4.374C6.86 2 7 2.134 7 2.3v11.4c0 .166-.14.3-.312.3H2.313A.306.306 0 0 1 2 13.7V11M14 11v2.7c0 .166-.14.3-.312.3H9.311A.306.306 0 0 1 9 13.7V2.3c0-.166.14-.3.313-.3h4.374c.173 0 .313.134.313.3V5M9 8h5M2 8h5"}),(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.3,d:"m12 10 .667-.667L14 8l-1.333-1.333L12 6M4 10l-.667-.667L2 8l1.333-1.333L4 6"})]}),mJ=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("g",{clipPath:"url(#style_inline_svg__clip0_723_2279)",children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"m8.667 9.333-2-2m3.34-5v-1m2.626 2.04.707-.706m-.707 6 .707.707m-6-6-.707-.707M13.673 6h1M4.089 13.912l6.158-6.158c.264-.264.396-.396.445-.548a.67.67 0 0 0 0-.412c-.05-.152-.181-.284-.445-.548l-.492-.492c-.264-.264-.396-.396-.548-.445a.67.67 0 0 0-.412 0c-.152.05-.284.181-.548.445l-6.158 6.158c-.264.264-.396.396-.446.549a.67.67 0 0 0 0 .412c.05.152.182.284.446.548l.491.491c.264.264.396.396.548.446a.67.67 0 0 0 .412 0c.153-.05.285-.182.549-.446"})})}),mX=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M14 7.333 8.937 2.271c-.346-.346-.519-.52-.72-.643a2 2 0 0 0-.579-.24c-.23-.055-.474-.055-.963-.055H4M2 5.8v1.316c0 .326 0 .49.037.643q.05.205.16.385c.082.135.197.25.428.48l5.2 5.2c.528.529.792.793 1.096.892.268.087.557.087.824 0 .305-.1.569-.363 1.097-.891l1.65-1.65c.527-.528.791-.792.89-1.096a1.33 1.33 0 0 0 0-.824c-.098-.305-.362-.569-.89-1.097L7.625 4.292c-.23-.231-.346-.346-.48-.429a1.3 1.3 0 0 0-.386-.16c-.153-.036-.317-.036-.643-.036H4.133c-.746 0-1.12 0-1.405.145-.25.128-.455.332-.583.583C2 4.68 2 5.053 2 5.8"})}),mQ=e=>(0,tl.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M7.172 2H4a2 2 0 0 0-2 2v3.172a2 2 0 0 0 .586 1.414l3.96 3.96a3 3 0 0 0 4.242 0l1.757-1.758a3 3 0 0 0 0-4.243l-3.96-3.96A2 2 0 0 0 7.173 2"}),(0,tl.jsx)("circle",{cx:5,cy:5,r:1,fill:"currentColor"})]}),mY=e=>(0,tl.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,tl.jsx)("circle",{cx:8,cy:8,r:1.5,stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5}),(0,tl.jsx)("circle",{cx:8,cy:8,r:4.5,stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5}),(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M8 3.5V2M12.5 8H14M8 12.5V14M3.5 8H2"})]}),m0=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("g",{clipPath:"url(#tax-class_inline_svg__clip0_1012_1696)",children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M5.667 9.778c0 .859.696 1.555 1.555 1.555h1.445a1.667 1.667 0 1 0 0-3.333H7.333a1.667 1.667 0 0 1 0-3.333h1.445c.859 0 1.555.696 1.555 1.555M8 3.667v1m0 6.666v1M14.667 8A6.667 6.667 0 1 1 1.333 8a6.667 6.667 0 0 1 13.334 0"})})}),m1=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M2.667 4.667c0-.622 0-.932.101-1.177.135-.327.395-.586.722-.722.245-.101.555-.101 1.177-.101h6.666c.622 0 .932 0 1.177.101.327.136.587.395.722.722.101.245.101.555.101 1.177M6 13.333h4M8 2.667v10.666"})}),m2=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M8 10.667 10.667 8m0 0L8 5.333M10.667 8H5.333M5.2 14h5.6c1.12 0 1.68 0 2.108-.218a2 2 0 0 0 .874-.874C14 12.48 14 11.92 14 10.8V5.2c0-1.12 0-1.68-.218-2.108a2 2 0 0 0-.874-.874C12.48 2 11.92 2 10.8 2H5.2c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874C2 3.52 2 4.08 2 5.2v5.6c0 1.12 0 1.68.218 2.108a2 2 0 0 0 .874.874C3.52 14 4.08 14 5.2 14"})}),m3=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsxs)("g",{clipPath:"url(#translate_inline_svg__clip0_723_2351)",children:[(0,tl.jsx)("path",{fill:"#fff",fillOpacity:.01,d:"M16 0H0v16h16z"}),(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M9.429 12.333h3.81M14 14l-.762-1.667zm-5.333 0 .762-1.667zm.762-1.667L11.333 8l1.905 4.333zM5.333 2l.334 1M2 3.667h7.333M3.333 5.333S3.93 7.42 5.421 8.58s3.912 2.087 3.912 2.087"}),(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M8 3.667s-.596 2.739-2.088 4.26C4.422 9.45 2 10.668 2 10.668"})]})}),m6=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M6 2h4M2 4h12m-1.333 0-.468 7.013c-.07 1.052-.105 1.578-.332 1.977a2 2 0 0 1-.866.81c-.413.2-.94.2-1.995.2H6.994c-1.055 0-1.582 0-1.995-.2a2 2 0 0 1-.866-.81c-.227-.399-.262-.925-.332-1.977L3.333 4"})}),m4=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeOpacity:.88,strokeWidth:1.4,d:"M2 2v6.8c0 1.12 0 1.68.218 2.108a2 2 0 0 0 .874.874C3.52 12 4.08 12 5.2 12H10m0 0a2 2 0 1 0 4 0 2 2 0 0 0-4 0M2 5.333h8m0 0a2 2 0 1 0 4 0 2 2 0 0 0-4 0"})}),m8=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M9.333 7.333h-4M6.667 10H5.333m5.334-5.333H5.333m8-.134v6.934c0 1.12 0 1.68-.218 2.108a2 2 0 0 1-.874.874c-.428.218-.988.218-2.108.218H5.867c-1.12 0-1.68 0-2.108-.218a2 2 0 0 1-.874-.874c-.218-.428-.218-.988-.218-2.108V4.533c0-1.12 0-1.68.218-2.108a2 2 0 0 1 .874-.874c.428-.218.988-.218 2.108-.218h4.266c1.12 0 1.68 0 2.108.218a2 2 0 0 1 .874.874c.218.428.218.988.218 2.108"})}),m7=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M13.333 6.333v-1.8c0-1.12 0-1.68-.218-2.108a2 2 0 0 0-.874-.874c-.428-.218-.988-.218-2.108-.218H5.867c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874c-.218.428-.218.988-.218 2.108v6.934c0 1.12 0 1.68.218 2.108a2 2 0 0 0 .874.874c.428.218.988.218 2.108.218h3.466m0-7.334h-4M6.667 10H5.333m5.334-5.333H5.333M11 10.002a1.499 1.499 0 0 1 2.913.5c0 .998-1.5 1.498-1.5 1.498m.02 2h.007"})}),m5=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M4.667 6.667V5.333A3.333 3.333 0 0 1 11.056 4M8 9.667V11m-2.133 3h4.266c1.12 0 1.68 0 2.108-.218a2 2 0 0 0 .874-.874c.218-.428.218-.988.218-2.108v-.933c0-1.12 0-1.68-.218-2.108a2 2 0 0 0-.874-.874c-.428-.218-.988-.218-2.108-.218H5.867c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874c-.218.428-.218.988-.218 2.108v.933c0 1.12 0 1.68.218 2.108a2 2 0 0 0 .874.874c.428.218.988.218 2.108.218"})}),m9=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M2.667 10.828a3 3 0 0 1 1.387-5.482 4.001 4.001 0 0 1 7.893 0 3 3 0 0 1 1.386 5.482m-8-.161L8 8m0 0 2.667 2.667M8 8v6"})}),pe=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 14 14",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M13 9v.8c0 1.12 0 1.68-.218 2.108a2 2 0 0 1-.874.874C11.48 13 10.92 13 9.8 13H4.2c-1.12 0-1.68 0-2.108-.218a2 2 0 0 1-.874-.874C1 11.48 1 10.92 1 9.8V9m9.333-4.667L7 1m0 0L3.667 4.333M7 1v8"})}),pt=e=>(0,tl.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,tl.jsx)("path",{fill:"currentColor",d:"M5.852 1h4.296c.548 0 .979 0 1.326.028.354.03.65.09.919.226.439.224.796.581 1.02 1.02.136.269.196.564.225.919.029.347.029.778.029 1.326v3.814a.333.333 0 0 1-.667 0v-3.8c0-.565 0-.97-.026-1.286-.026-.313-.075-.511-.156-.67a1.67 1.67 0 0 0-.728-.729c-.16-.08-.357-.13-.67-.155-.317-.026-.721-.026-1.287-.026h-3.8V3h1a.333.333 0 1 1 0 .667h-1V5h1a.333.333 0 1 1 0 .667h-1v1a.333.333 0 1 1-.666 0v-1h-1a.333.333 0 1 1 0-.667h1V3.667h-1a.333.333 0 1 1 0-.667h1V1.667c-.463 0-.809.003-1.087.026-.313.025-.51.074-.67.155-.314.16-.569.415-.728.729-.081.159-.13.357-.156.67C3 3.564 3 3.967 3 4.533v6.934c0 .565 0 .97.026 1.286.026.313.075.511.156.67.16.314.414.569.728.729.16.08.357.13.67.155.317.026.721.026 1.287.026h2.466a.333.333 0 0 1 0 .667H5.852c-.548 0-.979 0-1.326-.028-.354-.03-.65-.09-.919-.226a2.33 2.33 0 0 1-1.02-1.02c-.136-.269-.196-.565-.225-.919-.029-.347-.029-.778-.029-1.325V4.519c0-.548 0-.98.029-1.326.029-.355.089-.65.226-.919.223-.439.58-.796 1.02-1.02.268-.137.564-.197.918-.226C4.873 1 5.304 1 5.852 1"}),(0,tl.jsx)("path",{fill:"currentColor",d:"M11.333 15a.333.333 0 0 1-.333-.333V11.47l-1.43 1.431a.333.333 0 0 1-.472-.471l2-2c.13-.13.34-.13.471 0l2 2a.333.333 0 1 1-.471.471l-1.431-1.43v3.195c0 .184-.15.333-.334.333"}),(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:.6,d:"M5.852 1h4.296c.548 0 .979 0 1.326.028.354.03.65.09.919.226.439.224.796.581 1.02 1.02.136.269.196.564.225.919.029.347.029.778.029 1.326v3.814a.333.333 0 0 1-.667 0v-3.8c0-.565 0-.97-.026-1.286-.026-.313-.075-.511-.156-.67a1.67 1.67 0 0 0-.728-.729c-.16-.08-.357-.13-.67-.155-.317-.026-.721-.026-1.287-.026h-3.8V3h1a.333.333 0 1 1 0 .667h-1V5h1a.333.333 0 1 1 0 .667h-1v1a.333.333 0 1 1-.666 0v-1h-1a.333.333 0 1 1 0-.667h1V3.667h-1a.333.333 0 1 1 0-.667h1V1.667c-.463 0-.809.003-1.087.026-.313.025-.51.074-.67.155-.314.16-.569.415-.728.729-.081.159-.13.357-.156.67C3 3.564 3 3.967 3 4.533v6.934c0 .565 0 .97.026 1.286.026.313.075.511.156.67.16.314.414.569.728.729.16.08.357.13.67.155.317.026.721.026 1.287.026h2.466a.333.333 0 0 1 0 .667H5.852c-.548 0-.979 0-1.326-.028-.354-.03-.65-.09-.919-.226a2.33 2.33 0 0 1-1.02-1.02c-.136-.269-.196-.565-.225-.919-.029-.347-.029-.778-.029-1.325V4.519c0-.548 0-.98.029-1.326.029-.355.089-.65.226-.919.223-.439.58-.796 1.02-1.02.268-.137.564-.197.918-.226C4.873 1 5.304 1 5.852 1"}),(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:.6,d:"M11.333 15a.333.333 0 0 1-.333-.333V11.47l-1.43 1.431a.333.333 0 0 1-.472-.471l2-2c.13-.13.34-.13.471 0l2 2a.333.333 0 1 1-.471.471l-1.431-1.43v3.195c0 .184-.15.333-.334.333"})]}),pi=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("g",{clipPath:"url(#user-select_inline_svg__clip0_1242_1692)",children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M3.333 13.727c.352.106.827.106 1.634.106h6.066c.807 0 1.282 0 1.634-.106m-9.334 0a1.3 1.3 0 0 1-.21-.084 1.75 1.75 0 0 1-.766-.765c-.19-.374-.19-.865-.19-1.845V4.967c0-.98 0-1.47.19-1.845a1.75 1.75 0 0 1 .765-.765c.375-.19.865-.19 1.845-.19h6.066c.98 0 1.47 0 1.845.19.33.168.597.436.765.765.19.375.19.865.19 1.845v6.066c0 .98 0 1.47-.19 1.845a1.75 1.75 0 0 1-.765.765 1.3 1.3 0 0 1-.211.084m-9.334 0c0-.472.003-.722.045-.932a2.33 2.33 0 0 1 1.833-1.834c.226-.044.497-.044 1.039-.044h3.5c.542 0 .813 0 1.039.044.925.185 1.649.908 1.833 1.834.042.21.044.46.045.932m-2.334-7.185a2.333 2.333 0 1 1-4.666 0 2.333 2.333 0 0 1 4.666 0"})})}),pn=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M13.333 14c0-.93 0-1.396-.114-1.774a2.67 2.67 0 0 0-1.778-1.778c-.379-.115-.844-.115-1.774-.115H6.333c-.93 0-1.395 0-1.774.115a2.67 2.67 0 0 0-1.778 1.778c-.114.378-.114.844-.114 1.774M11 5a3 3 0 1 1-6 0 3 3 0 0 1 6 0"})}),pr=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M11 10.667 14.333 14m0-3.333L11 14m-.667-11.806a2.668 2.668 0 0 1 0 4.945M8 10H5.333c-1.242 0-1.864 0-2.354.203-.653.27-1.172.79-1.443 1.443-.203.49-.203 1.111-.203 2.354M9 4.667a2.667 2.667 0 1 1-5.333 0 2.667 2.667 0 0 1 5.333 0"})}),pa=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 14",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M7.08 11c-1.009 0-4.712 0-5.097-.204a1.84 1.84 0 0 1-.787-.82C1 9.576 1 9.05 1 8V4c0-1.05 0-1.575.196-1.976a1.84 1.84 0 0 1 .787-.82C2.368 1 2.873 1 3.88 1h6.24c1.008 0 1.512 0 1.897.204.34.18.615.467.787.82.195.4.195 3.404.195 4.464V6.5M1.196 2.875 5.688 6.01c.397.29.595.434.811.49.19.05.39.05.58 0 .216-.056.415-.2.811-.49l4.81-3.135m-2.022 7.71-.616 2.035c-.049.16-.073.24-.056.29a.14.14 0 0 0 .088.087c.046.014.116-.02.255-.09l4.413-2.194c.135-.067.203-.101.224-.148a.16.16 0 0 0 0-.13c-.02-.046-.089-.08-.225-.148l-4.414-2.195c-.138-.069-.208-.103-.254-.089a.14.14 0 0 0-.087.087c-.018.05.006.13.054.289l.618 2.059a.3.3 0 0 1 .014.055.2.2 0 0 1 0 .037.3.3 0 0 1-.014.055"})}),po=e=>(0,tl.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M14.667 5.954c0-.404 0-.606-.08-.7a.33.33 0 0 0-.28-.115c-.122.01-.265.153-.55.438L11.332 8l2.423 2.423c.286.286.429.428.551.438a.33.33 0 0 0 .28-.116c.08-.093.08-.295.08-.7z"}),(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M1.333 6.533c0-1.12 0-1.68.218-2.108a2 2 0 0 1 .874-.874c.428-.218.988-.218 2.108-.218h3.6c1.12 0 1.68 0 2.108.218a2 2 0 0 1 .874.874c.218.428.218.988.218 2.108v2.934c0 1.12 0 1.68-.218 2.108a2 2 0 0 1-.874.874c-.428.218-.988.218-2.108.218h-3.6c-1.12 0-1.68 0-2.108-.218a2 2 0 0 1-.874-.874c-.218-.428-.218-.988-.218-2.108z"})]}),pl=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.3,d:"M12.667 14h.673c.648 0 .971 0 1.15-.135a.67.67 0 0 0 .263-.492c.014-.223-.166-.493-.525-1.031l-2.007-3.01c-.297-.446-.445-.668-.632-.746a.67.67 0 0 0-.511 0c-.187.078-.335.3-.632.745l-.496.745M12.667 14 7.544 6.6c-.295-.425-.442-.638-.626-.713a.67.67 0 0 0-.502 0c-.184.075-.332.288-.626.713l-3.965 5.726c-.375.542-.563.813-.552 1.039.01.196.105.378.261.498.18.137.51.137 1.168.137zM14 4a2 2 0 1 1-4 0 2 2 0 0 1 4 0"})}),ps=e=>(0,tl.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M8 4.667v4M14 8A6 6 0 1 1 2 8a6 6 0 0 1 12 0"}),(0,tl.jsx)("circle",{cx:8,cy:11,r:.667,fill:"currentColor"})]}),pd=e=>(0,tl.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M8 13.333H2.333a1 1 0 0 1-1-1V3.667a1 1 0 0 1 1-1h11.334a1 1 0 0 1 1 1v4.02"}),(0,tl.jsx)("path",{stroke:"currentColor",strokeWidth:1.4,d:"M1.333 3.667a1 1 0 0 1 1-1h11.334a1 1 0 0 1 1 1v3H1.333z"}),(0,tl.jsx)("path",{fill:"currentColor",d:"M2.667 4.667a.667.667 0 1 1 1.333 0 .667.667 0 0 1-1.333 0M4.667 4.667a.667.667 0 1 1 1.333 0 .667.667 0 0 1-1.333 0"}),(0,tl.jsx)("path",{stroke:"currentColor",strokeWidth:1.4,d:"M12.333 12.333a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z"}),(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M12.333 13.667v-1.334M12.333 10.333V9M10.313 12.5l1.154-.667M13.2 10.833l1.154-.666M10.313 10.167l1.154.666M13.2 11.833l1.154.667"})]}),pf=e=>(0,tl.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:[(0,tl.jsx)("path",{fillRule:"evenodd",d:"M12.576 8.466a.539.539 0 0 1 .54-.932A3.769 3.769 0 1 1 7.5 11.336H4.77a.539.539 0 0 1 0-1.077h3.223a.54.54 0 0 1 .545.539 2.694 2.694 0 0 0 2.693 2.692 2.694 2.694 0 0 0 1.345-5.024",clipRule:"evenodd"}),(0,tl.jsx)("path",{fillRule:"evenodd",d:"M5.308 5.203A.539.539 0 0 1 4.23 5.2a3.768 3.768 0 1 1 6.1 2.963l1.366 2.365a.539.539 0 0 1-.932.538L9.153 8.275a.54.54 0 0 1 .193-.741 2.694 2.694 0 0 0 .986-3.678 2.694 2.694 0 0 0-5.024 1.347",clipRule:"evenodd"}),(0,tl.jsx)("path",{fillRule:"evenodd",d:"M6.116 13.13a.539.539 0 0 1 .537.932 3.769 3.769 0 1 1-.485-6.765l1.366-2.364a.539.539 0 0 1 .932.538L6.855 8.263a.54.54 0 0 1-.74.203 2.694 2.694 0 0 0-2.692 4.664 2.69 2.69 0 0 0 2.693 0",clipRule:"evenodd"}),(0,tl.jsx)("path",{d:"M11.364 12.407a1.48 1.48 0 1 0 0-2.962 1.48 1.48 0 0 0 0 2.962"}),(0,tl.jsx)("path",{fillRule:"evenodd",d:"M6.772 5.962c-.408-.666-.165-1.52.542-1.904s1.614-.156 2.023.51c.408.666.166 1.52-.542 1.904s-1.614.156-2.023-.51M5.69 11.666c-.384.708-1.237.95-1.903.542s-.894-1.315-.51-2.022c.385-.708 1.238-.95 1.904-.542s.894 1.315.51 2.022",clipRule:"evenodd"}),(0,tl.jsx)("path",{d:"m12.576 8.466-.05.086zm-.196-.736-.086-.05zm.736-.196-.05.086zM7.5 11.336l.099-.014-.012-.086H7.5zm.493-1.077v.1h.001zm.385.156.07-.071zm-3.07-5.212h-.1zm-.54.538v.1zm-.537-.54h.1zm1.884-3.263.05.087zm5.15 1.38.086-.05zm-.933 4.846-.062-.079-.068.054.043.075zm1.365 2.365-.086.05zm-.197.735-.05-.086zm-.735-.197-.087.05zM9.153 8.275l.086-.05zm-.059-.411-.096-.025zm.252-.33.05.086zm.986-3.678.086-.05zM6.654 2.87l-.05-.087zm-.538 10.258-.05-.087zm.735.198.087-.05zm-.198.735-.05-.086zm-3.768 0-.05.087zm-1.38-5.149-.087-.05zm4.663-1.616-.037.093.08.033.044-.076zm1.366-2.364.086.05zm.735-.197.05-.087zm.197.735.087.05zM6.855 8.263l-.087-.05v.001zm-.328.256-.026-.096zm-.412-.053-.05.087zm-3.677.986.086.05zm.985 3.678-.05.086zm3.35-7.168.085-.052zm.541-1.904.048.088zm2.023.51-.085.053zm-.542 1.904-.048-.088zM5.69 11.666l.088.048zm-1.904.542-.052.086zm-.51-2.022-.088-.048zm1.904-.542.052-.085zm7.445-1.265a.44.44 0 0 1-.16-.599l-.172-.1a.64.64 0 0 0 .232.872zm-.16-.599a.44.44 0 0 1 .6-.16l.1-.173a.64.64 0 0 0-.872.233zm.6-.16a3.67 3.67 0 0 1 1.834 3.178h.2c0-1.431-.778-2.682-1.934-3.35zm1.834 3.178a3.67 3.67 0 0 1-3.67 3.669v.2a3.87 3.87 0 0 0 3.87-3.87zm-3.67 3.669A3.67 3.67 0 0 1 7.6 11.322l-.198.029a3.87 3.87 0 0 0 3.83 3.316zm-3.73-3.23H4.77v.2H7.5zm-2.73 0a.44.44 0 0 1-.44-.44h-.2c0 .353.287.64.64.64zm-.44-.44c0-.241.197-.438.44-.438v-.2a.64.64 0 0 0-.64.639zm.44-.438h3.223v-.2H4.769zm3.224 0a.44.44 0 0 1 .314.127l.14-.143a.64.64 0 0 0-.456-.184zm.314.127c.083.082.13.194.13.312h.2a.64.64 0 0 0-.19-.454zm.13.312a2.794 2.794 0 0 0 2.793 2.792v-.2a2.594 2.594 0 0 1-2.593-2.592zm2.793 2.792a2.794 2.794 0 0 0 2.792-2.792h-.2a2.594 2.594 0 0 1-2.592 2.592zm2.792-2.792a2.79 2.79 0 0 0-1.397-2.419l-.1.173a2.59 2.59 0 0 1 1.297 2.246zM5.208 5.203a.44.44 0 0 1-.44.438v.2a.64.64 0 0 0 .64-.638zm-.44.438a.44.44 0 0 1-.437-.44h-.2c0 .353.285.639.637.64zm-.437-.44a3.67 3.67 0 0 1 1.834-3.176l-.1-.174a3.87 3.87 0 0 0-1.934 3.35zm1.834-3.176c1.754-1.013 4-.411 5.013 1.342l.173-.1a3.87 3.87 0 0 0-5.286-1.416zm5.013 1.342a3.67 3.67 0 0 1-.908 4.718l.124.158a3.87 3.87 0 0 0 .957-4.976zm-.933 4.847 1.366 2.365.173-.1-1.366-2.365zm1.366 2.365c.12.21.049.478-.161.599l.1.173a.64.64 0 0 0 .234-.872zm-.161.599a.44.44 0 0 1-.599-.16l-.173.1c.176.304.567.409.872.233zm-.599-.16L9.24 8.224l-.173.1 1.612 2.792zM9.24 8.223a.44.44 0 0 1-.048-.335l-.193-.05a.64.64 0 0 0 .069.487zM9.19 7.89a.44.44 0 0 1 .205-.269l-.1-.173a.64.64 0 0 0-.298.392zm.205-.269a2.794 2.794 0 0 0 1.022-3.814l-.173.1a2.594 2.594 0 0 1-.949 3.541zm1.022-3.814a2.794 2.794 0 0 0-3.814-1.022l.1.173a2.594 2.594 0 0 1 3.541.949zM6.604 2.784a2.79 2.79 0 0 0-1.396 2.419h.2a2.59 2.59 0 0 1 1.296-2.246zm-.438 10.432a.44.44 0 0 1 .599.161l.173-.1a.64.64 0 0 0-.872-.235zm.599.161c.12.21.048.478-.162.599l.1.173a.64.64 0 0 0 .235-.872zm-.162.599a3.67 3.67 0 0 1-3.668 0l-.1.173a3.87 3.87 0 0 0 3.868 0zm-3.668 0a3.67 3.67 0 0 1-1.343-5.013l-.174-.1a3.87 3.87 0 0 0 1.417 5.286zM1.592 8.963a3.67 3.67 0 0 1 4.54-1.573l.074-.185a3.87 3.87 0 0 0-4.788 1.658zm4.663-1.616L7.62 4.983l-.173-.1-1.365 2.364zM7.62 4.983a.44.44 0 0 1 .6-.16l.1-.174a.64.64 0 0 0-.873.234zm.6-.16c.209.12.28.389.16.598l.173.1a.64.64 0 0 0-.234-.872zm.16.598L6.768 8.213l.173.1 1.612-2.792zM6.767 8.214a.44.44 0 0 1-.266.209l.053.192a.64.64 0 0 0 .388-.303zm-.266.209a.44.44 0 0 1-.336-.043l-.1.173a.64.64 0 0 0 .489.062zm-.336-.043a2.794 2.794 0 0 0-3.814 1.022l.173.1a2.594 2.594 0 0 1 3.541-.95zM2.351 9.402a2.794 2.794 0 0 0 1.022 3.814l.1-.173a2.594 2.594 0 0 1-.949-3.541zm1.022 3.814c.895.517 1.957.48 2.793 0l-.1-.173a2.59 2.59 0 0 1-2.593 0zm7.991-.71a1.58 1.58 0 0 0 1.581-1.58h-.2a1.38 1.38 0 0 1-1.38 1.38zm1.581-1.58a1.58 1.58 0 0 0-1.58-1.58v.2c.762 0 1.38.618 1.38 1.38zm-1.58-1.58a1.58 1.58 0 0 0-1.581 1.58h.2c0-.762.618-1.38 1.38-1.38zm-1.581 1.58c0 .873.707 1.58 1.58 1.58v-.2a1.38 1.38 0 0 1-1.38-1.38zM6.858 5.91c-.377-.615-.156-1.405.504-1.764l-.095-.176c-.756.41-1.02 1.327-.58 2.044zm.504-1.764c.663-.36 1.51-.144 1.89.475l.17-.105c-.438-.714-1.403-.954-2.156-.546zm1.89.475c.377.614.155 1.404-.505 1.763l.096.176c.755-.41 1.02-1.327.579-2.044zm-.505 1.763c-.663.36-1.51.144-1.89-.474l-.17.104c.438.714 1.404.954 2.156.546zm-3.144 5.235c-.359.66-1.149.881-1.764.504l-.104.17c.717.44 1.633.177 2.044-.579zm-1.764.504c-.618-.38-.834-1.226-.474-1.89l-.176-.095c-.408.752-.168 1.718.546 2.156zm-.474-1.89c.359-.66 1.149-.88 1.763-.504l.105-.17c-.718-.44-1.633-.176-2.044.58zm1.763-.504c.619.38.835 1.226.475 1.89l.176.095c.408-.752.167-1.718-.546-2.155z",mask:"url(#webhook_inline_svg__path-1-outside-1_639_2270)"})]}),pc=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("g",{clipPath:"url(#widget_inline_svg__clip0_723_2368)",children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.3,d:"M5.643 5.643 3.286 3.286m0 9.428 2.357-2.357m4.714 0 2.357 2.357m0-9.428-2.357 2.357M14.667 8A6.667 6.667 0 1 1 1.333 8a6.667 6.667 0 0 1 13.334 0m-3.334 0a3.333 3.333 0 1 1-6.666 0 3.333 3.333 0 0 1 6.666 0"})})}),pu=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("g",{clipPath:"url(#workflow_inline_svg__clip0_723_2319)",children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M7.333 3H12.2c.747 0 1.12 0 1.405.145.251.128.455.332.583.583.145.285.145.659.145 1.405V6c0 .621 0 .932-.101 1.177a1.33 1.33 0 0 1-.722.722C13.265 8 12.955 8 12.333 8m-3.666 5H3.8c-.747 0-1.12 0-1.405-.145a1.33 1.33 0 0 1-.583-.583c-.145-.285-.145-.659-.145-1.405V10c0-.621 0-.932.101-1.177.135-.327.395-.586.722-.722C2.735 8 3.045 8 3.667 8m3.2 1.667h2.266c.187 0 .28 0 .352-.037a.33.33 0 0 0 .145-.145c.037-.072.037-.165.037-.352V6.867c0-.187 0-.28-.037-.352a.33.33 0 0 0-.145-.145c-.072-.037-.165-.037-.352-.037H6.867c-.187 0-.28 0-.352.037a.33.33 0 0 0-.145.145c-.037.072-.037.165-.037.352v2.266c0 .187 0 .28.037.352a.33.33 0 0 0 .145.145c.072.037.165.037.352.037m5 5h2.266c.187 0 .28 0 .352-.037a.33.33 0 0 0 .145-.145c.037-.072.037-.165.037-.352v-2.266c0-.187 0-.28-.037-.352a.33.33 0 0 0-.145-.145c-.072-.037-.165-.037-.352-.037h-2.266c-.187 0-.28 0-.352.037a.33.33 0 0 0-.145.145c-.037.072-.037.165-.037.352v2.266c0 .187 0 .28.037.352a.33.33 0 0 0 .145.145c.072.037.165.037.352.037m-10-10h2.266c.187 0 .28 0 .352-.037a.33.33 0 0 0 .145-.145c.037-.072.037-.165.037-.352V1.867c0-.187 0-.28-.037-.352a.33.33 0 0 0-.145-.145c-.072-.037-.165-.037-.352-.037H1.867c-.187 0-.28 0-.352.037a.33.33 0 0 0-.145.145c-.037.072-.037.165-.037.352v2.266c0 .187 0 .28.037.352a.33.33 0 0 0 .145.145c.072.037.165.037.352.037"})})}),pm=e=>(0,tl.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,tl.jsx)("path",{fill:"currentColor",fillRule:"evenodd",d:"M2.58 8.333h2.333a1.5 1.5 0 0 1 1.5 1.5v2.334a1.5 1.5 0 0 1-1.5 1.5H2.58a1.5 1.5 0 0 1-1.5-1.5V9.833a1.5 1.5 0 0 1 1.5-1.5m2.333 4.334a.5.5 0 0 0 .5-.5V9.833a.5.5 0 0 0-.5-.5H2.58a.507.507 0 0 0-.5.5v2.334a.507.507 0 0 0 .5.5z",clipRule:"evenodd"}),(0,tl.jsx)("path",{fill:"currentColor",d:"M9.08 9.167a.5.5 0 1 0 0 1h3.333a.5.5 0 1 0 0-1zM14.413 11.833H9.08a.5.5 0 0 0 0 1h5.333a.5.5 0 1 0 0-1"}),(0,tl.jsx)("path",{fill:"currentColor",fillRule:"evenodd",d:"M13.08 7H2.413A1.333 1.333 0 0 1 1.08 5.667v-2c0-.737.597-1.334 1.333-1.334H13.08c.736 0 1.333.597 1.333 1.334v2c0 .736-.597 1.333-1.333 1.333M2.413 3.333a.333.333 0 0 0-.333.334v2c0 .184.15.333.333.333H13.08c.184 0 .333-.15.333-.333v-2a.333.333 0 0 0-.333-.334z",clipRule:"evenodd"}),(0,tl.jsx)("path",{stroke:"currentColor",strokeWidth:.5,d:"M2.58 8.333h2.333a1.5 1.5 0 0 1 1.5 1.5v2.334a1.5 1.5 0 0 1-1.5 1.5H2.58a1.5 1.5 0 0 1-1.5-1.5V9.833a1.5 1.5 0 0 1 1.5-1.5Zm2.333 4.334a.5.5 0 0 0 .5-.5V9.833a.5.5 0 0 0-.5-.5H2.58a.507.507 0 0 0-.5.5v2.334a.507.507 0 0 0 .5.5z",clipRule:"evenodd"}),(0,tl.jsx)("path",{stroke:"currentColor",strokeWidth:.5,d:"M9.08 9.167a.5.5 0 1 0 0 1h3.333a.5.5 0 1 0 0-1zM14.413 11.833H9.08a.5.5 0 0 0 0 1h5.333a.5.5 0 1 0 0-1Z"}),(0,tl.jsx)("path",{stroke:"currentColor",strokeWidth:.5,d:"M13.08 7H2.413A1.333 1.333 0 0 1 1.08 5.667v-2c0-.737.597-1.334 1.333-1.334H13.08c.736 0 1.333.597 1.333 1.334v2c0 .736-.597 1.333-1.333 1.333ZM2.413 3.333a.333.333 0 0 0-.333.334v2c0 .184.15.333.333.333H13.08c.184 0 .333-.15.333-.333v-2a.333.333 0 0 0-.333-.334z",clipRule:"evenodd"})]}),pp=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("g",{clipPath:"url(#x-circle_inline_svg__clip0_723_2417)",children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"m10 6-4 4m0-4 4 4m4.667-2A6.667 6.667 0 1 1 1.333 8a6.667 6.667 0 0 1 13.334 0"})})}),pg=e=>(0,tl.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tl.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M9.333 1.513v2.754c0 .373 0 .56.073.702a.67.67 0 0 0 .291.292c.143.072.33.072.703.072h2.754M6.334 8l3.333 3.333m0-3.333-3.334 3.333m3-10H5.867c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874c-.218.428-.218.988-.218 2.108v6.934c0 1.12 0 1.68.218 2.108a2 2 0 0 0 .874.874c.427.218.988.218 2.108.218h4.266c1.12 0 1.68 0 2.108-.218a2 2 0 0 0 .874-.874c.218-.428.218-.988.218-2.108V5.333z"})});eR._.registerModule({onInit:()=>{let e=eB.nC.get(eO.j.iconLibrary);e.register({name:"accessory",component:fz}),e.register({name:"add-find",component:fV}),e.register({name:"add-folder",component:f$}),e.register({name:"add-image",component:fW}),e.register({name:"add-package",component:fH}),e.register({name:"add-something",component:fG}),e.register({name:"add-user",component:fU}),e.register({name:"alert",component:fq}),e.register({name:"application-logger",component:fZ}),e.register({name:"area-brick",component:fK}),e.register({name:"arrow-narrow-right",component:fJ}),e.register({name:"asset",component:fX}),e.register({name:"attachment",component:fQ}),e.register({name:"audio",component:fY}),e.register({name:"auto-save",component:f0}),e.register({name:"automation-integration",component:f1}),e.register({name:"batch-selection",component:f2}),e.register({name:"body-style",component:f3}),e.register({name:"book-open-01",component:f6}),e.register({name:"bookmark",component:f4}),e.register({name:"cache",component:f8}),e.register({name:"calculator",component:f7}),e.register({name:"calendar",component:f5}),e.register({name:"car",component:f9}),e.register({name:"catalog",component:ce}),e.register({name:"category",component:ct}),e.register({name:"cdp",component:ci}),e.register({name:"channels",component:cn}),e.register({name:"chart-scatter",component:cr}),e.register({name:"check-circle",component:ca}),e.register({name:"checkbox",component:co}),e.register({name:"checkmark",component:cl}),e.register({name:"chevron-down",component:cs}),e.register({name:"chevron-left",component:cd}),e.register({name:"chevron-right",component:cf}),e.register({name:"chevron-selector-horizontal",component:cc}),e.register({name:"chevron-up",component:cu}),e.register({name:"children-grid",component:cm}),e.register({name:"close-filled",component:cp}),e.register({name:"close",component:cg}),e.register({name:"cms",component:ch}),e.register({name:"collection",component:cb}),e.register({name:"columns",component:cy}),e.register({name:"content-duplicate",component:cv}),e.register({name:"content-settings",component:cx}),e.register({name:"content",component:cj}),e.register({name:"copilot",component:cw}),e.register({name:"copy-03",component:cC}),e.register({name:"copy",component:ck}),e.register({name:"country-select",component:cT}),e.register({name:"crop",component:cS}),e.register({name:"custom-metadata",component:cD}),e.register({name:"customer-segment-group",component:cE}),e.register({name:"customer-segment",component:cM}),e.register({name:"customer",component:cI}),e.register({name:"customers",component:cL}),e.register({name:"cut",component:cP}),e.register({name:"dashboard",component:cN}),e.register({name:"data-object-variant",component:cA}),e.register({name:"data-object",component:cR}),e.register({name:"data-quality",component:cO}),e.register({name:"date-time-field",component:cB}),e.register({name:"delete-column",component:cF}),e.register({name:"delete-row",component:c_}),e.register({name:"dependencies",component:cz}),e.register({name:"details",component:cV}),e.register({name:"document-configurations",component:c$}),e.register({name:"document-link",component:cW}),e.register({name:"document-types",component:cH}),e.register({name:"document",component:cG}),e.register({name:"double-arrow-down",component:cU}),e.register({name:"double-arrow-left",component:cq}),e.register({name:"double-arrow-right",component:cZ}),e.register({name:"double-arrow-up",component:cK}),e.register({name:"download-cloud",component:cJ}),e.register({name:"download-zip",component:cX}),e.register({name:"download",component:cQ}),e.register({name:"draft",component:cY}),e.register({name:"drag-option",component:c0}),e.register({name:"drop-target",component:c1}),e.register({name:"edit-pen",component:c2}),e.register({name:"edit",component:c3}),e.register({name:"email",component:c6}),e.register({name:"embedded-metadata",component:c4}),e.register({name:"event",component:c8}),e.register({name:"excluded-from-nav",component:c7}),e.register({name:"expand-01",component:c5}),e.register({name:"expand",component:c9}),e.register({name:"experience-commerce",component:ue}),e.register({name:"export",component:ut}),e.register({name:"eye-off",component:ui}),e.register({name:"eye",component:un}),e.register({name:"factory",component:ur}),e.register({name:"favorites",component:ua}),e.register({name:"field-collection-field",component:uo}),e.register({name:"file-locked",component:ul}),e.register({name:"filter",component:us}),e.register({name:"flag",component:ud}),e.register({name:"flip-forward",component:uf}),e.register({name:"focal-point",component:uc}),e.register({name:"folder-plus",component:uu}),e.register({name:"folder-search",component:um}),e.register({name:"folder",component:up}),e.register({name:"graph",component:ug}),e.register({name:"group-by-keys",component:uh}),e.register({name:"group",component:ub}),e.register({name:"hardlink",component:uy}),e.register({name:"heading",component:uv}),e.register({name:"help-circle",component:ux}),e.register({name:"history",component:uj}),e.register({name:"home-root-folder",component:uw}),e.register({name:"image",component:uC}),e.register({name:"import-csv",component:uk}),e.register({name:"info-circle",component:uT}),e.register({name:"info",component:uS}),e.register({name:"inheritance-active",component:uD}),e.register({name:"inheritance-broken",component:uE}),e.register({name:"json",component:uM}),e.register({name:"key",component:uI}),e.register({name:"keyboard",component:uL}),e.register({name:"keys",component:uP}),e.register({name:"language-select",component:uN}),e.register({name:"layout-grid-02",component:uA}),e.register({name:"layout",component:uR}),e.register({name:"list",component:uO}),e.register({name:"loading",component:uB}),e.register({name:"location-marker",component:uF}),e.register({name:"lock",component:u_}),e.register({name:"locked",component:uz}),e.register({name:"log-out",component:uV}),e.register({name:"long-text",component:u$}),e.register({name:"mail-02",component:uW}),e.register({name:"mail-answer",component:uH}),e.register({name:"many-to-many",component:uG}),e.register({name:"market",component:uU}),e.register({name:"marketing",component:uq}),e.register({name:"menu",component:uZ}),e.register({name:"minus-square",component:uK}),e.register({name:"minus",component:uJ}),e.register({name:"more",component:uX}),e.register({name:"move-down",component:uQ}),e.register({name:"move-up",component:uY}),e.register({name:"multi-select",component:u0}),e.register({name:"navigation",component:u1}),e.register({name:"new-circle",component:u2}),e.register({name:"new-column",component:u3}),e.register({name:"new-hotspot",component:u6}),e.register({name:"new-marker",component:u4}),e.register({name:"new-row",component:u8}),e.register({name:"new-something",component:u7}),e.register({name:"new",component:u5}),e.register({name:"news",component:u9}),e.register({name:"no-content",component:me}),e.register({name:"notes-events",component:mt}),e.register({name:"notification-read",component:mi}),e.register({name:"notification-unread",component:mn}),e.register({name:"number-field",component:mr}),e.register({name:"open-folder",component:ma}),e.register({name:"package",component:mo}),e.register({name:"paste",component:ml}),e.register({name:"pdf",component:ms}),e.register({name:"personal-user",component:md}),e.register({name:"pie-chart",component:mf}),e.register({name:"pimcore",component:mc}),e.register({name:"pin",component:mu}),e.register({name:"pined",component:mm}),e.register({name:"plus-circle",component:mp}),e.register({name:"plus-square",component:mg}),e.register({name:"presentation",component:mh}),e.register({name:"preview",component:mb}),e.register({name:"properties",component:my}),e.register({name:"published",component:mv}),e.register({name:"questionmark",component:mx}),e.register({name:"quick-access",component:mj}),e.register({name:"redirect",component:mw}),e.register({name:"refresh",component:mC}),e.register({name:"remove-image-thumbnail",component:mk}),e.register({name:"remove-marker",component:mT}),e.register({name:"remove-pdf-thumbnail",component:mS}),e.register({name:"remove-video-thumbnail",component:mD}),e.register({name:"rename",component:mE}),e.register({name:"reporting",component:mM}),e.register({name:"required-by",component:mI}),e.register({name:"requires",component:mL}),e.register({name:"restore",component:mP}),e.register({name:"reverse",component:mN}),e.register({name:"run",component:mA}),e.register({name:"save",component:mR}),e.register({name:"schedule",component:mO}),e.register({name:"search",component:mB}),e.register({name:"segment-tagging",component:mF}),e.register({name:"send-03",component:m_}),e.register({name:"seo",component:mz}),e.register({name:"settings",component:mV}),e.register({name:"share",component:m$}),e.register({name:"shared-users",component:mW}),e.register({name:"shield-plus",component:mH}),e.register({name:"shield",component:mG}),e.register({name:"show-details",component:mU}),e.register({name:"snippet",component:mq}),e.register({name:"spinner",component:mZ}),e.register({name:"split-view",component:mK}),e.register({name:"style",component:mJ}),e.register({name:"tag-configuration",component:mX}),e.register({name:"tag",component:mQ}),e.register({name:"target",component:mY}),e.register({name:"tax-class",component:m0}),e.register({name:"text-field",component:m1}),e.register({name:"transfer",component:m2}),e.register({name:"translate",component:m3}),e.register({name:"trash",component:m6}),e.register({name:"tree",component:m4}),e.register({name:"txt-docs",component:m8}),e.register({name:"unknown",component:m7}),e.register({name:"unlocked",component:m5}),e.register({name:"upload-cloud",component:m9}),e.register({name:"upload-import",component:pe}),e.register({name:"upload-zip",component:pt}),e.register({name:"user-select",component:pi}),e.register({name:"user",component:pn}),e.register({name:"users-x",component:pr}),e.register({name:"vector",component:pa}),e.register({name:"video",component:po}),e.register({name:"view",component:pl}),e.register({name:"warning-circle",component:ps}),e.register({name:"web-settings",component:pd}),e.register({name:"webhook",component:pf}),e.register({name:"widget",component:pc}),e.register({name:"workflow",component:pu}),e.register({name:"wysiwyg-field",component:pm}),e.register({name:"x-circle",component:pp}),e.register({name:"xlsx-csv",component:pg})}});let ph=(0,ia.createStyles)(e=>{let{token:t,css:i}=e;return{preview:i` + `}}),dY=["elementType","type"],d0=["image","video","document"],d1=e=>{let{item:t}=e,{id:i,elementType:n}=t,{isError:r,error:a,isLoading:l,data:o}=(0,dB.pg)({id:i,elementType:(0,oU.PM)(n)}),{styles:s}=dQ();if((0,ts.useEffect)(()=>{r&&(0,is.ZP)(new is.MS(a))},[r]),l)return(0,to.jsx)(aB.V,{loading:!0});if(r||void 0!==a)return(0,to.jsx)(aB.V,{none:!0,noneOptions:{text:"data not available"}});let{additionalAttributes:d,...f}=o,c=Object.entries(f).filter(e=>{let[t]=e;return!dY.includes(t)}).map(e=>{let[t,i]=e;return{key:t,value:i}});return(0,to.jsxs)(aB.V,{className:s.detailContent,children:[(()=>{let e=null==t?void 0:t.type,i=null==t?void 0:t.path;return d0.includes(e)&&!(0,dW.O)(i)?(0,to.jsxs)(rZ.k,{justify:"center",children:["image"===e&&(0,to.jsx)(dK.E,{className:s.searchResultImage,preview:!1,src:i}),"video"===e&&(0,to.jsx)(dJ.o,{sources:[{src:i}],width:250}),"document"===e&&(0,to.jsx)(dX.s,{className:s.searchResultDocument,src:i})]}):null})(),(0,to.jsx)(dZ,{items:c})]})},d2=()=>(0,to.jsx)(aB.V,{children:(0,to.jsx)(rZ.k,{align:"center",className:"h-full w-full",justify:"center",children:(0,to.jsx)(dV.d,{text:"No item selected"})})}),d3=e=>{let{item:t}=e,i=void 0!==t;return(0,ts.useMemo)(()=>i?(0,to.jsx)(d1,{item:t}):(0,to.jsx)(d2,{}),[t])},d6=()=>{let{searchTerm:e}=(0,ts.useContext)(dR),[t,i]=(0,ts.useState)(1),[n,r]=(0,ts.useState)(20),[a,l]=(0,ts.useState)(void 0),[o,s]=(0,ts.useState)(void 0),{isLoading:d,isError:f,error:c,data:u}=dF({searchTerm:e,page:t,pageSize:n});(0,ts.useEffect)(()=>{let e=setTimeout(()=>{l(o)},333);return()=>{clearTimeout(e)}},[o]),(0,ts.useEffect)(()=>{i(1),l(void 0)},[e]),(0,ts.useEffect)(()=>{f&&(0,is.ZP)(new is.MS(c))},[f]);let m=(e,t)=>{i(e),r(t),l(void 0)};return(0,ts.useMemo)(()=>d?(0,to.jsx)(aB.V,{loading:!0}):(0,to.jsxs)(to.Fragment,{children:[(0,to.jsx)("div",{}),(0,to.jsx)(d$.K,{leftItem:{size:750,children:(0,to.jsx)(aB.V,{overflow:{x:"hidden",y:"auto"},padded:!0,padding:{left:"none",right:"none",y:"none"},style:{height:400},children:(0,to.jsxs)(rZ.k,{className:"w-full h-full",gap:0,vertical:!0,children:[null==u?void 0:u.items.map(e=>(0,to.jsx)(dz,{active:(null==a?void 0:a.id)===e.id&&(null==a?void 0:a.elementType)===e.elementType,item:e,onMouseEnter:()=>{s(e)},onMouseLeave:()=>{s(a)}},`${e.id}-${e.elementType}`)),(null==u?void 0:u.items.length)===0&&(0,to.jsx)(rZ.k,{align:"center",className:"w-full h-full",gap:"mini",justify:"center",vertical:!0,children:(0,to.jsx)(dV.d,{text:"No results found"})})]})})},rightItem:{size:250,minSize:250,maxSize:250,children:(0,to.jsx)(d3,{item:a})},withDivider:!0}),(0,to.jsx)(aO.o,{theme:"secondary",children:(0,to.jsx)(aN.t,{onChange:m,pageSizeOptions:[10,20,50,100],showSizeChanger:!0,showTotal:e=>`Total ${e} items`,total:(null==u?void 0:u.totalItems)??0})})]}),[u,a,d])},d4=()=>{let[e,t]=(0,ts.useState)(""),[i,n]=(0,ts.useState)("");return(0,ts.useEffect)(()=>{let e=setTimeout(()=>{t(i)},500);return()=>{clearTimeout(e)}},[i]),(0,to.jsx)(aF.D,{renderTopBar:(0,to.jsx)(aO.o,{padding:{left:"none",right:"none"},position:"top",theme:"secondary",children:(0,to.jsx)(a_.M,{maxWidth:"100%",onChange:e=>{n(e.target.value)},onSearch:e=>{n(e)},value:i})}),children:(0,to.jsx)(dO,{searchTerm:e,children:(0,to.jsx)(d6,{})})})};var d8=i(50019),d7=i(76396),d5=i(99911),d9=i(56417),fe=i(75113),ft=i(44835),fi=i(55714),fn=i(94780),fr=i(32221),fa=i(28863),fl=i(63784),fo=i(90663),fs=i(70617),fd=i(86070),ff=i(99741);let fc=()=>(0,to.jsx)(aO.o,{borderStyle:"default",padding:{left:"none",right:"none"},position:"top",theme:"secondary",children:(0,to.jsxs)(rZ.k,{className:"w-full",gap:"small",children:[(0,to.jsx)(fd.C,{}),(0,to.jsx)(ff.U,{})]})});var fu=i(43589),fm=i(23980),fp=i(97384);let fg=()=>(0,to.jsx)(aO.o,{borderStyle:"default",padding:{right:"none",left:"none"},theme:"secondary",children:(0,to.jsx)(rZ.k,{className:"w-full",gap:"small",justify:"space-between",children:(0,to.jsxs)(aR.P,{size:"extra-small",children:[(0,to.jsx)(fu.q,{}),(0,to.jsx)(fm.s,{}),(0,to.jsx)(fp.t,{})]})})});var fh=i(85153);let fb={...fe.l,ViewComponent:()=>{let{dataQueryResult:e}=(0,fl.e)();return(0,ts.useMemo)(()=>(0,to.jsxs)(to.Fragment,{children:[void 0===e&&(0,to.jsx)(aB.V,{loading:!0}),void 0!==e&&(0,to.jsx)(aF.D,{renderToolbar:(0,to.jsx)(fg,{}),renderTopBar:(0,to.jsx)(fc,{}),children:(0,to.jsx)(aF.D,{renderSidebar:(0,to.jsx)(fo.Y,{}),children:(0,to.jsx)(fs.T,{})})})]}),[e])},useDataQuery:dB.HU,useDataQueryHelper:d8.$,useElementId:d5.u},fy=(0,fr.q)(fi.L,fa.g,d7.p,[ft.o,{handleSearchTermInSidebar:!1}],[fh.V,{elementType:s2.a.asset}],fn.y,[(e,t)=>{let{useGridOptions:i,...n}=e;if(void 0===t)throw Error("OpenElementDecorator requires an elementType prop");return{...n,useGridOptions:()=>{let{getGridProps:e,...n}=i(),{openElement:r}=(0,ig.f)(),{close:a}=dN();return{...n,getGridProps:()=>({...e(),onRowDoubleClick:e=>{let{id:i}=e.original,{elementType:n}=t;r({id:i,type:n}),a()}})}}}},{elementType:s2.a.asset}])(fb),fv=()=>(0,to.jsx)(d9.d,{serviceIds:["DynamicTypes/GridCellRegistry","DynamicTypes/MetadataRegistry","DynamicTypes/ListingRegistry","DynamicTypes/FieldFilterRegistry"],children:(0,to.jsx)(fe.p,{...fy})}),fx=()=>(0,to.jsx)(aB.V,{style:{height:"65vh"},children:(0,to.jsx)(fv,{})});var fj=i(43103);let fw=()=>(0,to.jsx)(aO.o,{borderStyle:"default",padding:{left:"none",right:"none"},position:"top",theme:"secondary",children:(0,to.jsxs)(tN.Flex,{className:"w-full",gap:"small",children:[(0,to.jsx)(fd.C,{}),(0,to.jsx)(fj.i,{nullable:!0}),(0,to.jsx)(ff.U,{})]})}),fC=()=>(0,to.jsx)(aO.o,{borderStyle:"default",padding:{right:"none",left:"none"},theme:"secondary",children:(0,to.jsx)(rZ.k,{className:"w-full",gap:"small",justify:"space-between",children:(0,to.jsxs)(aR.P,{size:"extra-small",children:[(0,to.jsx)(fu.q,{}),(0,to.jsx)(fm.s,{}),(0,to.jsx)(fp.t,{})]})})});var fk=i(89320),fT=i(91485),fS=i(92510);let fD={...fe.l,ViewComponent:()=>{let{dataQueryResult:e}=(0,fl.e)();return(0,ts.useMemo)(()=>(0,to.jsxs)(to.Fragment,{children:[void 0===e&&(0,to.jsx)(aB.V,{loading:!0}),void 0!==e&&(0,to.jsx)(aF.D,{renderToolbar:(0,to.jsx)(fC,{}),renderTopBar:(0,to.jsx)(fw,{}),children:(0,to.jsx)(aF.D,{renderSidebar:(0,to.jsx)(fo.Y,{}),children:(0,to.jsx)(fs.T,{})})})]}),[e])},useDataQuery:dB.JM,useDataQueryHelper:fk.$,useElementId:d5.u},fE=(0,fr.q)(fi.L,fS.F,d7.p,[ft.o,{handleSearchTermInSidebar:!1}],fn.y,[fT.F,{showConfigLayer:!1}],[(e,t)=>{let{useGridOptions:i,...n}=e;if(void 0===t)throw Error("OpenElementDecorator requires an elementType prop");return{...n,useGridOptions:()=>{let{getGridProps:e,...n}=i(),{openElement:r}=(0,ig.f)(),{close:a}=dN();return{...n,getGridProps:()=>({...e(),onRowDoubleClick:e=>{let{id:i}=e.original,{elementType:n}=t;r({id:i,type:n}),a()}})}}}},{elementType:s2.a.dataObject}],[fh.V,{elementType:s2.a.dataObject}])(fD),fM=()=>(0,to.jsx)(d9.d,{serviceIds:["DynamicTypes/GridCellRegistry","DynamicTypes/ListingRegistry","DynamicTypes/ObjectDataRegistry","DynamicTypes/FieldFilterRegistry"],children:(0,to.jsx)(fe.p,{...fE})}),fI=()=>(0,to.jsx)(aB.V,{style:{height:"65vh"},children:(0,to.jsx)(fM,{})});var fL=i(82446);let fP=()=>(0,to.jsx)(aO.o,{borderStyle:"default",padding:{left:"none",right:"none"},position:"top",theme:"secondary",children:(0,to.jsxs)(rZ.k,{className:"w-full",gap:"small",children:[(0,to.jsx)(fd.C,{}),(0,to.jsx)(ff.U,{})]})}),fN=()=>(0,to.jsx)(aO.o,{borderStyle:"default",padding:{right:"none",left:"none"},theme:"secondary",children:(0,to.jsx)(rZ.k,{className:"w-full",gap:"small",justify:"space-between",children:(0,to.jsxs)(aR.P,{size:"extra-small",children:[(0,to.jsx)(fu.q,{}),(0,to.jsx)(fm.s,{}),(0,to.jsx)(fp.t,{})]})})}),fA={...fe.l,ViewComponent:()=>{let{dataQueryResult:e}=(0,fl.e)();return(0,ts.useMemo)(()=>(0,to.jsxs)(to.Fragment,{children:[void 0===e&&(0,to.jsx)(aB.V,{loading:!0}),void 0!==e&&(0,to.jsx)(aF.D,{renderToolbar:(0,to.jsx)(fN,{}),renderTopBar:(0,to.jsx)(fP,{}),children:(0,to.jsx)(aF.D,{renderSidebar:(0,to.jsx)(fo.Y,{}),children:(0,to.jsx)(fs.T,{})})})]}),[e])},useDataQuery:dB.LM,useDataQueryHelper:d8.$,useElementId:d5.u},fR=(0,fr.q)(fi.L,fL.g,d7.p,[ft.o,{handleSearchTermInSidebar:!1}],[fh.V,{elementType:s2.a.document}],fn.y,[(e,t)=>{let{useGridOptions:i,...n}=e;if(void 0===t)throw Error("OpenElementDecorator requires an elementType prop");return{...n,useGridOptions:()=>{let{getGridProps:e,...n}=i(),{openElement:r}=(0,ig.f)(),{close:a}=dN();return{...n,getGridProps:()=>({...e(),onRowDoubleClick:e=>{let{id:i}=e.original,{elementType:n}=t;r({id:i,type:n}),a()}})}}}},{elementType:s2.a.document}])(fA),fO=()=>(0,to.jsx)(d9.d,{serviceIds:["DynamicTypes/GridCellRegistry","DynamicTypes/ListingRegistry","DynamicTypes/FieldFilterRegistry"],children:(0,to.jsx)(fe.p,{...fR})}),fB=()=>(0,to.jsx)(aB.V,{style:{height:"65vh"},children:(0,to.jsx)(fO,{})}),fF=()=>{let{isOpen:e,close:t,activeKey:i}=dN(),n=[{label:"All",key:"all",children:(0,to.jsx)(d4,{})},{label:"Documents",key:s2.a.document,children:(0,to.jsx)(fB,{})},{label:"Assets",key:s2.a.asset,children:(0,to.jsx)(fx,{})},{label:"Data Objects",key:s2.a.dataObject,children:(0,to.jsx)(fI,{})}];return(0,to.jsx)(to.Fragment,{children:e&&(0,to.jsx)(av.u,{closable:!0,footer:null,onCancel:()=>{t()},open:e,size:"XL",children:(0,to.jsx)(ay.m,{activeKey:i,items:n,noTabBarMargin:!0})})})},f_=()=>(0,to.jsxs)(dP,{children:[(0,to.jsx)(dA,{}),(0,to.jsx)(fF,{})]});eR._.registerModule({onInit:()=>{let e=eB.nC.get(eO.j["App/ComponentRegistry/ComponentRegistry"]);e.registerToSlot("leftSidebar.slot",{name:"mainNav",priority:100,component:dI}),e.registerToSlot("leftSidebar.slot",{name:"search",priority:200,component:f_})}}),eR._.registerModule({onInit:()=>{let e=eB.nC.get(eO.j.mainNavRegistry);e.registerMainNavItem({path:"QuickAccess",label:"navigation.quick-access",icon:"quick-access",order:100}),e.registerMainNavItem({path:"DataManagement",label:"navigation.data-management",icon:"data-object",order:200}),e.registerMainNavItem({path:"ExperienceEcommerce",label:"navigation.experience-ecommerce",icon:"experience-commerce",order:300}),e.registerMainNavItem({path:"AssetManagement",label:"navigation.asset-management",icon:"asset",order:400}),e.registerMainNavItem({path:"AutomationIntegration",label:"navigation.automation-integration",icon:"automation-integration",order:500}),e.registerMainNavItem({path:"Translations",label:"navigation.translations",icon:"translate",order:600}),e.registerMainNavItem({path:"Reporting",label:"navigation.reporting",icon:"reporting",order:700}),e.registerMainNavItem({path:"System",label:"navigation.system",icon:"shield",order:800})}});let fz=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M10.42 5.088c-.263-.264-.395-.396-.445-.549a.67.67 0 0 1 0-.412c.05-.152.182-.284.446-.548l1.892-1.892A4 4 0 0 0 6.78 6.284c.08.325.12.489.112.592a.6.6 0 0 1-.073.26c-.047.092-.138.183-.32.365l-4.166 4.166a1.414 1.414 0 0 0 2 2L8.5 9.5c.182-.182.273-.273.364-.32a.6.6 0 0 1 .261-.073c.103-.007.267.032.593.112q.457.112.95.113a4 4 0 0 0 3.646-5.646l-1.892 1.892c-.264.264-.396.396-.548.446a.67.67 0 0 1-.412 0c-.153-.05-.285-.182-.549-.446z"})}),fV=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.3,d:"m8.667 4.667-.744-1.488c-.214-.428-.321-.642-.48-.798a1.3 1.3 0 0 0-.499-.308C6.733 2 6.494 2 6.014 2H3.468c-.747 0-1.12 0-1.406.145-.25.128-.454.332-.582.583-.146.285-.146.659-.146 1.405v.534m0 0h10.134c1.12 0 1.68 0 2.108.218a2 2 0 0 1 .874.874c.218.428.218.988.218 2.108V10.8c0 1.12 0 1.68-.218 2.108a2 2 0 0 1-.874.874c-.428.218-.988.218-2.108.218H4.533c-1.12 0-1.68 0-2.108-.218a2 2 0 0 1-.874-.874c-.218-.428-.218-.988-.218-2.108zm9 7-1-1M10 9a2.333 2.333 0 1 1-4.667 0A2.333 2.333 0 0 1 10 9"})}),f$=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"m8.667 4.667-.744-1.488c-.214-.428-.321-.642-.48-.798a1.3 1.3 0 0 0-.499-.308C6.733 2 6.494 2 6.014 2H3.468c-.747 0-1.12 0-1.406.145-.25.128-.454.332-.582.583-.146.285-.146.659-.146 1.405v.534m0 0h10.134c1.12 0 1.68 0 2.108.218a2 2 0 0 1 .874.874c.218.428.218.988.218 2.108V10.8c0 1.12 0 1.68-.218 2.108a2 2 0 0 1-.874.874c-.428.218-.988.218-2.108.218H4.533c-1.12 0-1.68 0-2.108-.218a2 2 0 0 1-.874-.874c-.218-.428-.218-.988-.218-2.108zM8 11.333v-4m-2 2h4"})}),fW=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M8.333 2H5.2c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874C2 3.52 2 4.08 2 5.2v5.6c0 1.12 0 1.68.218 2.108a2 2 0 0 0 .874.874C3.52 14 4.08 14 5.2 14h6.133c.62 0 .93 0 1.185-.068a2 2 0 0 0 1.414-1.414c.068-.255.068-.565.068-1.185m-1.333-6v-4m-2 2h4M7 5.667a1.333 1.333 0 1 1-2.667 0 1.333 1.333 0 0 1 2.667 0m2.993 2.278-5.639 5.127c-.317.288-.476.433-.49.558a.33.33 0 0 0 .111.287c.095.083.31.083.738.083h6.258c.96 0 1.439 0 1.816-.161a2 2 0 0 0 1.052-1.052C14 12.41 14 11.93 14 10.97c0-.323 0-.485-.035-.635a1.3 1.3 0 0 0-.25-.518c-.095-.122-.22-.223-.473-.424l-1.865-1.492c-.252-.202-.378-.303-.517-.339a.67.67 0 0 0-.372.012c-.136.044-.256.153-.495.37"})}),fH=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M13.667 4.852 8 8m0 0L2.333 4.852M8 8v6.333m1.333-.407-.815.453c-.189.105-.284.157-.384.178a.7.7 0 0 1-.268 0c-.1-.02-.195-.073-.384-.178l-4.933-2.74c-.2-.112-.3-.167-.373-.246a.7.7 0 0 1-.142-.243C2 11.048 2 10.934 2 10.706V5.294c0-.228 0-.342.034-.444a.7.7 0 0 1 .142-.243c.073-.079.173-.134.373-.245l4.933-2.74c.189-.106.284-.158.384-.179a.7.7 0 0 1 .268 0c.1.02.195.073.384.178l4.933 2.74c.2.112.3.167.373.246q.097.107.142.243c.034.102.034.216.034.444v3.04M5 3l6 3.333M12.667 14v-4m-2 2h4"})}),fG=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"m14.667 14.667-1-1m1-7H1.333M14.667 8V5.467c0-.747 0-1.12-.146-1.406a1.33 1.33 0 0 0-.582-.582c-.286-.146-.659-.146-1.406-.146H3.467c-.747 0-1.12 0-1.406.146-.25.127-.455.331-.582.582-.146.286-.146.659-.146 1.406v5.066c0 .747 0 1.12.146 1.406.127.25.331.454.582.582.286.146.659.146 1.406.146H7M14.333 12a2.333 2.333 0 1 1-4.666 0 2.333 2.333 0 0 1 4.666 0"})}),fU=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M8 10.333H5c-.93 0-1.396 0-1.774.115a2.67 2.67 0 0 0-1.778 1.778c-.115.378-.115.844-.115 1.774m11.334 0v-4m-2 2h4m-5-7a3 3 0 1 1-6 0 3 3 0 0 1 6 0"})}),fq=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{d:"M8 1.333a6.667 6.667 0 1 0 0 13.334A6.667 6.667 0 0 0 8 1.333m0 10A.667.667 0 1 1 8 10a.667.667 0 0 1 0 1.334m.667-2.666a.667.667 0 0 1-1.334 0V5.333a.667.667 0 1 1 1.334 0z"})}),fZ=e=>(0,to.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,to.jsx)("path",{fill:"currentColor",fillRule:"evenodd",d:"M12.345 2H8.398a2 2 0 0 0-2 2v7.52a2 2 0 0 0 2 2h3.947a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2m-4.92 5.333h.547c.184 0 .333.15.333.334v.213c0 .184-.15.333-.333.333h-.547zm4.92 5.2a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1H8.398a1 1 0 0 0-1 1v2.32h.547c.737 0 1.333.597 1.333 1.333v.214c0 .736-.596 1.333-1.333 1.333h-.547v2.333a1 1 0 0 0 1 1zM1.338 4.28a2.113 2.113 0 0 1 1.947-2.253 2.113 2.113 0 0 1 1.927 2.26v6.18c.007.32-.08.636-.254.906L3.712 13.3a.5.5 0 0 1-.874 0l-1.246-1.927a1.7 1.7 0 0 1-.254-.906zm2.774 6.547a.67.67 0 0 0 .1-.36l.013-6.187c.007-.68-.427-1.253-.94-1.253-.507 0-.94.586-.94 1.253v6.187a.67.67 0 0 0 .087.36l.84 1.333z",clipRule:"evenodd"}),(0,to.jsx)("path",{fill:"currentColor",d:"M3.278 3.453a.5.5 0 0 0-.5.5V6.26a.5.5 0 0 0 1 0V3.953a.493.493 0 0 0-.5-.5M12.199 4.093H9.965a.5.5 0 0 0 0 1h2.233a.5.5 0 0 0 0-1"}),(0,to.jsx)("path",{stroke:"currentColor",strokeWidth:.3,d:"M12.345 2H8.398a2 2 0 0 0-2 2v7.52a2 2 0 0 0 2 2h3.947a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2Zm-4.92 5.333h.547c.184 0 .333.15.333.334v.213c0 .184-.15.333-.333.333h-.547zm4.92 5.2a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1H8.398a1 1 0 0 0-1 1v2.32h.547c.737 0 1.333.597 1.333 1.333v.214c0 .736-.596 1.333-1.333 1.333h-.547v2.333a1 1 0 0 0 1 1zM1.338 4.28a2.113 2.113 0 0 1 1.947-2.253 2.113 2.113 0 0 1 1.927 2.26v6.18c.007.32-.08.636-.254.906L3.712 13.3a.5.5 0 0 1-.874 0l-1.246-1.927a1.7 1.7 0 0 1-.254-.906zm2.774 6.547a.67.67 0 0 0 .1-.36l.013-6.187c.007-.68-.427-1.253-.94-1.253-.507 0-.94.586-.94 1.253v6.187a.67.67 0 0 0 .087.36l.84 1.333z",clipRule:"evenodd"}),(0,to.jsx)("path",{stroke:"currentColor",strokeWidth:.3,d:"M3.278 3.453a.5.5 0 0 0-.5.5V6.26a.5.5 0 0 0 1 0V3.953a.493.493 0 0 0-.5-.5ZM12.199 4.093H9.965a.5.5 0 0 0 0 1h2.233a.5.5 0 0 0 0-1Z"})]}),fK=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{d:"M2.5 9.358c.359 0 .65.292.65.65v1.03a.38.38 0 0 0 .38.379h1.029c.358 0 .65.292.65.65l-.014.131a.65.65 0 0 1-.636.52h-1.03a1.68 1.68 0 0 1-1.68-1.68v-1.03c0-.358.292-.65.651-.65M13.48 9.358a.65.65 0 0 1 .649.65v1.03a1.68 1.68 0 0 1-1.679 1.68h-1.03a.65.65 0 0 1-.636-.52l-.014-.13c0-.36.292-.65.65-.651h1.03a.38.38 0 0 0 .38-.379v-1.03c0-.358.29-.65.65-.65M7.99 6.132c.34 0 .615.277.615.617v.584h.585c.34 0 .616.277.617.617l-.013.124a.62.62 0 0 1-.604.492h-.585v.584a.617.617 0 1 1-1.232 0v-.584h-.585a.62.62 0 0 1-.603-.492l-.013-.124c0-.34.276-.617.616-.617h.585v-.584c0-.34.276-.617.616-.617M4.559 3.183a.651.651 0 0 1 0 1.3h-1.03a.38.38 0 0 0-.268.11.38.38 0 0 0-.11.27v1.029a.651.651 0 0 1-1.301 0v-1.03a1.68 1.68 0 0 1 1.68-1.68zM12.45 3.183a1.68 1.68 0 0 1 1.679 1.68v1.029a.65.65 0 1 1-1.3 0v-1.03a.38.38 0 0 0-.379-.379h-1.03a.651.651 0 0 1 0-1.3z"})}),fJ=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{d:"M8.804 3.47a.75.75 0 0 1 1.003-.052l.057.052 4 4 .051.057a.75.75 0 0 1-.05 1.003l-4 4a.75.75 0 0 1-1.061-1.06l2.72-2.72H2.666a.75.75 0 0 1 0-1.5h8.856l-2.72-2.72-.051-.056a.75.75 0 0 1 .052-1.004"})}),fX=e=>(0,to.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M2 6.667a2 2 0 0 1 2-2v0a2 2 0 0 0 1.6-.8l.3-.4a2 2 0 0 1 1.6-.8h1a2 2 0 0 1 1.6.8l.3.4a2 2 0 0 0 1.6.8v0a2 2 0 0 1 2 2v4.666a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2z"}),(0,to.jsx)("circle",{cx:8,cy:8.667,r:2.667,stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4})]}),fQ=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M11.667 3.504V11a3.667 3.667 0 0 1-7.334 0V3.778a2.444 2.444 0 0 1 4.89 0v7.186a1.222 1.222 0 1 1-2.445 0v-6.53"})}),fY=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M13.165 3.333A7.96 7.96 0 0 1 14.667 8a7.96 7.96 0 0 1-1.502 4.667m-2.668-7.334c.527.756.836 1.675.836 2.667s-.309 1.91-.836 2.667M6.423 2.91l-2.11 2.11c-.116.116-.174.174-.24.215a.7.7 0 0 1-.194.08c-.076.018-.158.018-.32.018H2.4c-.373 0-.56 0-.703.073a.67.67 0 0 0-.291.291c-.073.143-.073.33-.073.703v3.2c0 .373 0 .56.073.703a.67.67 0 0 0 .291.291c.143.073.33.073.703.073h1.158c.163 0 .245 0 .321.018a.7.7 0 0 1 .193.08c.067.041.125.099.24.214l2.11 2.11c.286.286.43.429.552.439a.33.33 0 0 0 .28-.116c.08-.094.08-.296.08-.7V3.288c0-.404 0-.606-.08-.7a.33.33 0 0 0-.28-.116c-.123.01-.266.153-.551.438"})}),f0=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M8.667 1.333 2.729 8.46c-.233.279-.349.418-.35.536-.002.102.043.2.123.264.092.074.273.074.637.074H8l-.667 5.334 5.938-7.126c.233-.279.349-.418.35-.536a.33.33 0 0 0-.123-.264c-.092-.074-.273-.074-.637-.074H8z"})}),f1=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{fillOpacity:.88,d:"M12 3.333h-2c-.4 0-.667.267-.667.667v8c0 .4.267.667.667.667h2c1.467 0 2.667-1.2 2.667-2.667V6c0-1.467-1.2-2.667-2.667-2.667M13.333 10c0 .733-.6 1.333-1.333 1.333h-1.333V10h.666c.4 0 .667-.267.667-.667s-.267-.666-.667-.666h-.666V7.333h.666c.4 0 .667-.266.667-.666S11.733 6 11.333 6h-.666V4.667H12c.733 0 1.333.6 1.333 1.333zm-6-2.667c.4 0 .667-.266.667-.666S7.733 6 7.333 6h-.666V4c0-.4-.267-.667-.667-.667H4A2.675 2.675 0 0 0 1.333 6v4c0 1.467 1.2 2.667 2.667 2.667h2c.4 0 .667-.267.667-.667v-2h.666c.4 0 .667-.267.667-.667s-.267-.666-.667-.666h-.666V7.333zm-2 4H4c-.733 0-1.333-.6-1.333-1.333V6c0-.733.6-1.333 1.333-1.333h1.333z"})}),f2=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M6.167 2.667v10.666M9.833 2.667v10.666m-7.166-3.5h10.666M2.667 6.167h10.666m-8.666 7.166h6.666a2 2 0 0 0 2-2V4.667a2 2 0 0 0-2-2H4.667a2 2 0 0 0-2 2v6.666a2 2 0 0 0 2 2"})}),f3=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M8 1.667V8m0 0 5.667-3.148M8 8 2.333 4.852M8 8v6.333m5.667-3.185-5.149-2.86c-.189-.105-.284-.158-.384-.178a.7.7 0 0 0-.268 0c-.1.02-.195.073-.384.178l-5.149 2.86M14 10.706V5.294c0-.228 0-.342-.034-.444a.7.7 0 0 0-.142-.243c-.073-.079-.173-.134-.373-.245l-4.933-2.74c-.189-.106-.284-.158-.384-.179a.7.7 0 0 0-.268 0c-.1.02-.195.073-.384.178l-4.933 2.74c-.2.112-.3.167-.373.246a.7.7 0 0 0-.142.243C2 4.952 2 5.066 2 5.294v5.412c0 .228 0 .342.034.444q.045.136.142.243c.073.079.173.134.373.245l4.933 2.74c.189.106.284.158.384.179q.134.027.268 0c.1-.02.195-.073.384-.178l4.933-2.74c.2-.112.3-.167.373-.246a.7.7 0 0 0 .142-.243c.034-.102.034-.216.034-.444"})}),f6=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"m8 14-.067-.1c-.463-.695-.694-1.042-1-1.293a2.7 2.7 0 0 0-.919-.492C5.636 12 5.218 12 4.384 12h-.917c-.747 0-1.12 0-1.406-.145a1.33 1.33 0 0 1-.582-.583c-.146-.285-.146-.659-.146-1.405V4.133c0-.746 0-1.12.146-1.405.127-.25.331-.455.582-.583C2.347 2 2.72 2 3.467 2h.266c1.494 0 2.24 0 2.811.29.502.256.91.664 1.165 1.166C8 4.026 8 4.773 8 6.266M8 14V6.267M8 14l.067-.1c.463-.695.694-1.042 1-1.293.271-.223.583-.39.919-.492.378-.115.796-.115 1.63-.115h.917c.747 0 1.12 0 1.406-.145.25-.128.454-.332.582-.583.146-.285.146-.659.146-1.405V4.133c0-.746 0-1.12-.146-1.405a1.33 1.33 0 0 0-.582-.583C13.653 2 13.28 2 12.533 2h-.266c-1.494 0-2.24 0-2.811.29-.502.256-.91.664-1.165 1.166C8 4.026 8 4.773 8 6.266"})}),f4=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M3.333 5.2c0-1.12 0-1.68.218-2.108a2 2 0 0 1 .874-.874C4.853 2 5.413 2 6.533 2h2.934c1.12 0 1.68 0 2.108.218a2 2 0 0 1 .874.874c.218.428.218.988.218 2.108V14L8 11.333 3.333 14z"})}),f8=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M12 6.667V2.4c0-.373 0-.56-.073-.703a.67.67 0 0 0-.291-.291c-.143-.073-.33-.073-.703-.073H5.067c-.374 0-.56 0-.703.073a.67.67 0 0 0-.291.291C4 1.84 4 2.027 4 2.4v4.267m8 0H4m8 0V6.8c0 1.12 0 1.68-.218 2.108a2 2 0 0 1-.874.874C10.48 10 9.92 10 8.8 10H7.2c-1.12 0-1.68 0-2.108-.218a2 2 0 0 1-.874-.874C4 8.48 4 7.92 4 6.8v-.133M9.667 10v3a1.667 1.667 0 1 1-3.334 0v-3"})}),f7=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"m11.667 4.333-7.334 7.334M5.667 7V4.333M4.333 5.667H7m2 4.666h2.667M5.2 14h5.6c1.12 0 1.68 0 2.108-.218a2 2 0 0 0 .874-.874C14 12.48 14 11.92 14 10.8V5.2c0-1.12 0-1.68-.218-2.108a2 2 0 0 0-.874-.874C12.48 2 11.92 2 10.8 2H5.2c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874C2 3.52 2 4.08 2 5.2v5.6c0 1.12 0 1.68.218 2.108a2 2 0 0 0 .874.874C3.52 14 4.08 14 5.2 14"})}),f5=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M14 6.667H2m8.667-5.334V4M5.333 1.333V4M5.2 14.667h5.6c1.12 0 1.68 0 2.108-.218a2 2 0 0 0 .874-.874c.218-.428.218-.988.218-2.108v-5.6c0-1.12 0-1.68-.218-2.108a2 2 0 0 0-.874-.874c-.428-.218-.988-.218-2.108-.218H5.2c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874C2 4.186 2 4.747 2 5.867v5.6c0 1.12 0 1.68.218 2.108a2 2 0 0 0 .874.874c.428.218.988.218 2.108.218"})}),f9=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M3.333 8.667h2M1.333 6l1.334.667.847-2.542c.175-.524.262-.786.424-.98.143-.172.327-.304.535-.386.235-.092.512-.092 1.065-.092h4.924c.553 0 .83 0 1.065.092.208.082.392.214.535.386.162.194.25.456.424.98l.847 2.542L14.667 6m-4 2.667h2m-8.134-2h6.934c1.12 0 1.68 0 2.108.218a2 2 0 0 1 .874.874c.218.428.218.988.218 2.108v1.8c0 .31 0 .464-.026.593a1.33 1.33 0 0 1-1.047 1.048c-.13.025-.284.025-.594.025h-.333A1.333 1.333 0 0 1 11.333 12a.333.333 0 0 0-.333-.333H5a.333.333 0 0 0-.333.333c0 .736-.597 1.333-1.334 1.333H3c-.31 0-.465 0-.593-.025a1.33 1.33 0 0 1-1.048-1.048c-.026-.129-.026-.284-.026-.593v-1.8c0-1.12 0-1.68.218-2.108a2 2 0 0 1 .874-.874c.428-.218.988-.218 2.108-.218"})}),ce=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"m8 14-.067-.1c-.463-.695-.694-1.042-1-1.293a2.7 2.7 0 0 0-.919-.492C5.635 12 5.218 12 4.384 12h-.917c-.747 0-1.12 0-1.406-.145a1.33 1.33 0 0 1-.582-.583c-.146-.285-.146-.659-.146-1.405V4.133c0-.746 0-1.12.146-1.405.127-.25.331-.455.582-.583C2.347 2 2.72 2 3.467 2h.266c1.494 0 2.24 0 2.81.29.503.256.91.664 1.166 1.166C8 4.026 8 4.773 8 6.266M8 14V6.267M8 14l.067-.1c.463-.695.694-1.042 1-1.293.271-.223.583-.39.919-.492.378-.115.796-.115 1.63-.115h.917c.747 0 1.12 0 1.406-.145.25-.128.454-.332.582-.583.146-.285.146-.659.146-1.405V4.133c0-.746 0-1.12-.146-1.405a1.33 1.33 0 0 0-.582-.583C13.653 2 13.28 2 12.533 2h-.266c-1.494 0-2.24 0-2.811.29-.502.256-.91.664-1.165 1.166C8 4.026 8 4.773 8 6.266"})}),ct=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{d:"M14.667 12.2v-1.533c0-.4-.267-.667-.667-.667h-1.333V8.467c.4-.2.666-.667.666-1.134C13.333 6.6 12.733 6 12 6c-.467 0-.933.267-1.133.667h-2.2V5.2c.8-.267 1.333-1 1.333-1.867 0-1.133-.867-2-2-2s-2 .867-2 2c0 .867.533 1.6 1.333 1.867v1.467h-2.2C4.933 6.267 4.467 6 4 6c-.733 0-1.333.6-1.333 1.333 0 .467.266.934.666 1.134V10H2c-.4 0-.667.267-.667.667V12.2c-.4.2-.666.667-.666 1.133 0 .734.6 1.334 1.333 1.334s1.333-.6 1.333-1.334c0-.466-.266-.933-.666-1.133v-.867h2.666v.867c-.4.2-.666.667-.666 1.133 0 .734.6 1.334 1.333 1.334s1.333-.6 1.333-1.334c0-.466-.266-.933-.666-1.133v-1.533c0-.4-.267-.667-.667-.667H4.667V8.467c.2-.134.333-.267.466-.467h5.734c.133.2.266.333.466.467V10H10c-.4 0-.667.267-.667.667V12.2c-.4.2-.666.667-.666 1.133 0 .734.6 1.334 1.333 1.334s1.333-.6 1.333-1.334c0-.466-.266-.933-.666-1.133v-.867h2.666v.867c-.4.2-.666.667-.666 1.133 0 .734.6 1.334 1.333 1.334s1.333-.6 1.333-1.334c0-.466-.266-.933-.666-1.133M8 4c-.4 0-.667-.267-.667-.667S7.6 2.667 8 2.667s.667.266.667.666S8.4 4 8 4"})}),ci=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M14.667 14v-1.333c0-1.243-.85-2.287-2-2.583m-2.334-7.89a2.668 2.668 0 0 1 0 4.945m1 6.861c0-1.242 0-1.864-.203-2.354a2.67 2.67 0 0 0-1.443-1.443C9.197 10 8.576 10 7.333 10h-2c-1.242 0-1.863 0-2.354.203-.653.27-1.172.79-1.443 1.443-.203.49-.203 1.111-.203 2.354M9 4.667a2.667 2.667 0 1 1-5.333 0 2.667 2.667 0 0 1 5.333 0"})}),cn=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"m5.727 9.007 4.553 2.653m-.007-7.32L5.727 6.993M14 3.333a2 2 0 1 1-4 0 2 2 0 0 1 4 0M6 8a2 2 0 1 1-4 0 2 2 0 0 1 4 0m8 4.667a2 2 0 1 1-4 0 2 2 0 0 1 4 0"})}),cr=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 24 24",...e,children:(0,to.jsxs)("g",{clipPath:"url(#chart-scatter_inline_svg__clip0_1257_7155)",children:[(0,to.jsx)("path",{fill:"#fff",fillOpacity:.01,d:"M24 0H0v24h24z"}),(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M3 3v18h18"}),(0,to.jsx)("path",{fill:"currentColor",fillRule:"evenodd",d:"M10 12a2 2 0 1 0 0-4 2 2 0 0 0 0 4M18.5 8a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5M7.5 18a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3M16.5 16a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3",clipRule:"evenodd"})]})}),ca=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("g",{clipPath:"url(#check-circle_inline_svg__clip0_723_2418)",children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"m5 8 2 2 4-4m3.667 2A6.667 6.667 0 1 1 1.333 8a6.667 6.667 0 0 1 13.334 0"})})}),cl=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"m6 7.333 2 2 6.667-6.666m-4-.667H5.2c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874C2 3.52 2 4.08 2 5.2v5.6c0 1.12 0 1.68.218 2.108a2 2 0 0 0 .874.874C3.52 14 4.08 14 5.2 14h5.6c1.12 0 1.68 0 2.108-.218a2 2 0 0 0 .874-.874C14 12.48 14 11.92 14 10.8V8"})}),co=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{d:"M8 1.333a6.667 6.667 0 1 0 0 13.334A6.667 6.667 0 0 0 8 1.333m2.867 5.074-3.047 4a.667.667 0 0 1-1.053.006L5.14 8.34a.667.667 0 0 1 1.053-.82L7.28 8.907 9.8 5.573a.67.67 0 1 1 1.067.814z"})}),cs=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 18 18",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"m4.5 6.75 4.5 4.5 4.5-4.5"})}),cd=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 18 18",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M11.25 13.5 6.75 9l4.5-4.5"})}),cf=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 18 18",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"m6.75 13.5 4.5-4.5-4.5-4.5"})}),cc=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M6 4.667 2.667 8 6 11.333m4-6.666L13.333 8 10 11.333"})}),cu=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 18 18",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M13.5 11.25 9 6.75l-4.5 4.5"})}),cm=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M5 8h.007M11 8h.007M8 8h.007M8 11h.007M8 5h.007M2 5.2v5.6c0 1.12 0 1.68.218 2.108a2 2 0 0 0 .874.874C3.52 14 4.08 14 5.2 14h5.6c1.12 0 1.68 0 2.108-.218a2 2 0 0 0 .874-.874C14 12.48 14 11.92 14 10.8V5.2c0-1.12 0-1.68-.218-2.108a2 2 0 0 0-.874-.874C12.48 2 11.92 2 10.8 2H5.2c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874C2 3.52 2 4.08 2 5.2"})}),cp=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{d:"M8 1.333a6.667 6.667 0 1 0 0 13.334A6.667 6.667 0 0 0 8 1.333M9.807 8.86a.667.667 0 0 1-.217 1.093.67.67 0 0 1-.73-.146L8 8.94l-.86.867a.667.667 0 0 1-1.093-.217.67.67 0 0 1 .146-.73L7.06 8l-.867-.86a.67.67 0 0 1 .947-.947L8 7.06l.86-.867a.67.67 0 0 1 .947.947L8.94 8z"})}),cg=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("g",{clipPath:"url(#close_inline_svg__clip0_723_2211)",children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"m12 4-8 8m0-8 8 8"})})}),ch=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M1.333 9.333h13.334M5.333 14h5.334m-6.134-2h6.934c1.12 0 1.68 0 2.108-.218a2 2 0 0 0 .874-.874c.218-.428.218-.988.218-2.108V5.2c0-1.12 0-1.68-.218-2.108a2 2 0 0 0-.874-.874C13.147 2 12.587 2 11.467 2H4.533c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874c-.218.428-.218.988-.218 2.108v3.6c0 1.12 0 1.68.218 2.108a2 2 0 0 0 .874.874c.428.218.988.218 2.108.218"})}),cb=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.3,d:"M4 6.667h.007m1.326 2.666h.007m1.327-2.666h.006M8 9.333h.007m1.326-2.666h.007m1.327 2.666h.006M12 6.667h.007M3.467 12h9.066c.747 0 1.12 0 1.406-.145.25-.128.454-.332.582-.583.146-.285.146-.659.146-1.405V6.133c0-.746 0-1.12-.146-1.405a1.33 1.33 0 0 0-.582-.583C13.653 4 13.28 4 12.533 4H3.467c-.747 0-1.12 0-1.406.145-.25.128-.454.332-.582.583-.146.285-.146.659-.146 1.405v3.734c0 .746 0 1.12.146 1.405.127.25.331.455.582.583.286.145.659.145 1.406.145"})}),cy=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.3,d:"M4.533 2h-.4c-.746 0-1.12 0-1.405.145-.25.128-.455.332-.583.583C2 3.013 2 3.387 2 4.133v7.734c0 .746 0 1.12.145 1.405.128.25.332.455.583.583.285.145.659.145 1.405.145h.4c.747 0 1.12 0 1.406-.145.25-.128.455-.332.582-.583.146-.285.146-.659.146-1.405V4.133c0-.746 0-1.12-.146-1.405a1.33 1.33 0 0 0-.582-.583C5.653 2 5.28 2 4.533 2M11.867 2h-.4c-.747 0-1.12 0-1.406.145-.25.128-.455.332-.582.583-.146.285-.146.659-.146 1.405v7.734c0 .746 0 1.12.146 1.405.127.25.331.455.582.583.286.145.659.145 1.406.145h.4c.746 0 1.12 0 1.405-.145.25-.128.455-.332.583-.583.145-.285.145-.659.145-1.405V4.133c0-.746 0-1.12-.145-1.405a1.33 1.33 0 0 0-.583-.583C12.987 2 12.613 2 11.867 2"})}),cv=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{d:"M7.334 11.334H2.667a1.333 1.333 0 0 1-1.333-1.333V2A1.333 1.333 0 0 1 2.667.668h8V2h-8v8h4.667V8.668l2.666 2-2.666 2zm5.333 2.667V4.668H5.334v4H4v-4a1.333 1.333 0 0 1 1.334-1.334h7.333A1.333 1.333 0 0 1 14 4.668V14a1.333 1.333 0 0 1-1.333 1.333H5.334A1.333 1.333 0 0 1 4 14.001v-1.333h1.334V14z"})}),cx=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 17 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M2.179 2.138h8.536M2.179 4.465h8.536M2.179 6.793H7.61M13.397 8.766l-3.42 3.419a2 2 0 0 1-1.021.547l-1.489.298.298-1.489a2 2 0 0 1 .547-1.022L11.73 7.1m1.665 1.666.718-.717a1 1 0 0 0 0-1.415l-.252-.251a1 1 0 0 0-1.414 0l-.717.717m1.665 1.666L11.732 7.1"})}),cj=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M3.333 4.667h9.334M3.333 8h9.334M3.333 11.333H8"})}),cw=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{fill:"currentColor",stroke:"currentColor",strokeWidth:.1,d:"m2.579 6.778-.006.008a.7.7 0 0 0-.117.274c-.016.094 0 .19.058.284l.547 1.688a.58.58 0 0 0 .543.431h.249q.153.232.329.445.242.385.563.7a5.2 5.2 0 0 0-1.711 3.338c-.036.335.24.604.57.604.333 0 .593-.27.636-.591a3.95 3.95 0 0 1 1.526-2.626 3.8 3.8 0 0 0 1.685.39h1.098c.6 0 1.162-.138 1.666-.38a3.96 3.96 0 0 1 1.543 2.616c.046.321.305.591.638.591.33 0 .606-.269.57-.604a5.1 5.1 0 0 0-1.727-3.322q.33-.321.58-.716.175-.213.328-.445h.249a.58.58 0 0 0 .543-.431l.547-1.688a.4.4 0 0 0 .058-.284.7.7 0 0 0-.117-.274h.001l-.007-.008c-.103-.105-.259-.219-.426-.238C12.971 3.71 10.761 1.45 8 1.45S3.03 3.71 3.005 6.54c-.167.02-.323.133-.426.238ZM8 2.68c1.843 0 3.354 1.316 3.711 3.097a2.73 2.73 0 0 0-2.063-.936H6.352c-.83 0-1.557.362-2.064.936C4.646 3.997 6.157 2.68 8 2.68Zm1.648 3.392c.906 0 1.599.71 1.599 1.645 0 .386-.074.75-.207 1.08H8.55c-.362 0-.6.31-.6.616 0 .369.3.615.6.615h1.254A3.73 3.73 0 0 1 5.16 9.19a2.84 2.84 0 0 1-.408-1.472c0-.934.693-1.645 1.599-1.645z"})}),cC=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 24 24",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M8 8V5.2c0-1.12 0-1.68.218-2.108a2 2 0 0 1 .874-.874C9.52 2 10.08 2 11.2 2h7.6c1.12 0 1.68 0 2.108.218a2 2 0 0 1 .874.874C22 3.52 22 4.08 22 5.2v7.6c0 1.12 0 1.68-.218 2.108a2 2 0 0 1-.874.874C20.48 16 19.92 16 18.8 16H16M5.2 22h7.6c1.12 0 1.68 0 2.108-.218a2 2 0 0 0 .874-.874C16 20.48 16 19.92 16 18.8v-7.6c0-1.12 0-1.68-.218-2.108a2 2 0 0 0-.874-.874C14.48 8 13.92 8 12.8 8H5.2c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874C2 9.52 2 10.08 2 11.2v7.6c0 1.12 0 1.68.218 2.108a2 2 0 0 0 .874.874C3.52 22 4.08 22 5.2 22"})}),ck=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.3,d:"M10.667 2.667c.62 0 .93 0 1.184.068a2 2 0 0 1 1.414 1.414c.068.254.068.564.068 1.184v6.134c0 1.12 0 1.68-.218 2.108a2 2 0 0 1-.874.874c-.428.218-.988.218-2.108.218H5.867c-1.12 0-1.68 0-2.108-.218a2 2 0 0 1-.874-.874c-.218-.428-.218-.988-.218-2.108V5.333c0-.62 0-.93.068-1.184a2 2 0 0 1 1.414-1.414c.254-.068.564-.068 1.184-.068M6.4 4h3.2c.373 0 .56 0 .703-.073a.67.67 0 0 0 .291-.291c.073-.143.073-.33.073-.703V2.4c0-.373 0-.56-.073-.703a.67.67 0 0 0-.291-.291c-.143-.073-.33-.073-.703-.073H6.4c-.373 0-.56 0-.703.073a.67.67 0 0 0-.291.291c-.073.143-.073.33-.073.703v.533c0 .374 0 .56.073.703a.67.67 0 0 0 .291.291C5.84 4 6.027 4 6.4 4"})}),cT=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("g",{clipPath:"url(#country-select_inline_svg__clip0_1242_1678)",children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M10 1.639a6.667 6.667 0 1 0 3.871 3.201m-2.538-1.007h.004M7 14.593v-1.47c0-.08.029-.156.08-.217l1.658-1.933a.333.333 0 0 0-.088-.506L6.746 9.379a.33.33 0 0 1-.124-.125L5.38 7.08a.33.33 0 0 0-.319-.167l-3.685.329M14 4c0 1.473-1.333 2.667-2.667 4C10 6.667 8.667 5.473 8.667 4A2.667 2.667 0 1 1 14 4m-2.5-.167a.167.167 0 1 1-.333 0 .167.167 0 0 1 .333 0"})})}),cS=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("g",{clipPath:"url(#crop_inline_svg__clip0_723_2340)",children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M6.667 4h3.2c.746 0 1.12 0 1.405.145.25.128.455.332.583.583.145.285.145.659.145 1.405v3.2M1.333 4H4m8 8v2.667M14.667 12H6.133c-.746 0-1.12 0-1.405-.145a1.33 1.33 0 0 1-.583-.583C4 10.987 4 10.613 4 9.867V1.333"})})}),cD=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{d:"M10 10.667H6A.667.667 0 1 0 6 12h4a.666.666 0 1 0 0-1.333m-4-4h.667a.667.667 0 1 0 0-1.334H6a.667.667 0 1 0 0 1.334M10 8H6a.667.667 0 0 0 0 1.333h4A.667.667 0 1 0 10 8m3.14 2.193a.7.7 0 0 0-.22-.14.62.62 0 0 0-.507 0 .7.7 0 0 0-.22.14.8.8 0 0 0-.14.22.67.67 0 0 0 .14.727.67.67 0 0 0 .727.14.8.8 0 0 0 .22-.14.67.67 0 0 0 .14-.727.8.8 0 0 0-.14-.22m.193-4.233a1 1 0 0 0-.04-.18v-.06a.7.7 0 0 0-.126-.187l-4-4a.7.7 0 0 0-.187-.126.2.2 0 0 0-.06 0 .6.6 0 0 0-.22-.074H4.667a2 2 0 0 0-2 2v9.334a2 2 0 0 0 2 2H10a.667.667 0 0 0 0-1.334H4.667A.667.667 0 0 1 4 12.667V3.333a.667.667 0 0 1 .667-.666H8v2a2 2 0 0 0 2 2h2V8a.666.666 0 1 0 1.333 0V5.96M10 5.333a.667.667 0 0 1-.667-.666v-1.06l1.727 1.726zM12.667 12a.666.666 0 0 0-.667.667V14a.666.666 0 1 0 1.333 0v-1.333a.667.667 0 0 0-.666-.667"})}),cE=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsxs)("g",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:1.4,clipPath:"url(#customer-segment-group_inline_svg__clip0_723_2376)",children:[(0,to.jsx)("path",{d:"M4.667 6a2.333 2.333 0 1 0 0-4.667 2.333 2.333 0 0 0 0 4.667ZM11.333 6a2.333 2.333 0 1 0 0-4.667 2.333 2.333 0 0 0 0 4.667Z"}),(0,to.jsx)("path",{strokeLinecap:"round",d:"M1.333 14.667v-3c0-1.841 1.257-3.334 2.807-3.334h1.685C7.186 8.333 8 9.676 8 9.676"}),(0,to.jsx)("path",{strokeLinecap:"round",d:"M14.667 14.667v-3c0-1.841-1.272-3.334-2.84-3.334h-1.705c-1.32 0-2.125 1.343-2.122 1.343M3.667 13.333h9"}),(0,to.jsx)("path",{strokeLinecap:"round",d:"m11.432 12.086.413.416.826.831-.826.854-.413.427M4.777 12.077l-.42.418-.84.836.84.85.42.424"})]})}),cM=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("g",{clipPath:"url(#customer-segment_inline_svg__clip0_723_2373)",children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M8 1.333A6.666 6.666 0 0 1 14.667 8M8 1.333V8m0-6.667A6.667 6.667 0 1 0 14.667 8M8 1.333A6.667 6.667 0 0 1 14.667 8m0 0H8m6.667 0a6.67 6.67 0 0 1-2.748 5.393L8 8"})})}),cI=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("g",{clipPath:"url(#customer_inline_svg__clip0_723_2364)",children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M5.333 9.333s1 1.334 2.667 1.334 2.667-1.334 2.667-1.334m.666-3.173c-.263.323-.623.507-1 .507-.376 0-.726-.184-1-.507m-2.666 0c-.264.323-.624.507-1 .507-.377 0-.727-.184-1-.507m10 1.84A6.667 6.667 0 1 1 1.333 8a6.667 6.667 0 0 1 13.334 0"})})}),cL=e=>(0,to.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:[(0,to.jsx)("path",{d:"M14.42 10.967H5.117l.467-.951 7.763-.014a.54.54 0 0 0 .534-.447l1.075-6.017a.543.543 0 0 0-.533-.64l-9.875-.032-.084-.397a.555.555 0 0 0-.54-.438H1.507a.552.552 0 1 0 0 1.103h1.968l.368 1.754.908 4.395-1.169 1.908a.55.55 0 0 0-.047.575.55.55 0 0 0 .493.303h.98a1.604 1.604 0 0 0 1.281 2.567 1.604 1.604 0 0 0 1.282-2.567h2.518a1.604 1.604 0 1 0 2.884.964c0-.349-.116-.688-.322-.964h1.77a.553.553 0 0 0 .552-.552.553.553 0 0 0-.553-.55M4.778 3.953l8.997.03-.881 4.934-7.067.013zm1.514 9.574a.495.495 0 0 1 0-.988.495.495 0 0 1 0 .988m5.08 0a.495.495 0 0 1 0-.988.495.495 0 0 1 0 .988"}),(0,to.jsx)("path",{d:"M14.42 10.967v-.1zm-9.304 0-.09-.044-.07.144h.16zm.467-.951v-.1h-.062l-.027.056zm7.763-.014v-.1zm.534-.447.099.017zm1.075-6.017.099.017zm-.117-.444.077-.064zm-.416-.196.001-.1zm-9.875-.032-.097.02.016.08h.081zm-.084-.397-.098.02zM1.508 2.03v-.1zm-.551.552h-.1zm.551.551v-.1zm1.968 0 .097-.02-.016-.08h-.081zm.368 1.754.098-.02v-.001zm.908 4.395.085.052.021-.034-.008-.038zM3.583 11.19l.081.06.005-.008zm-.047.575.09-.045v-.001zm1.474.303.08.06.12-.16h-.2zm-.322.964h.1zm2.884-.964v-.1h-.199l.12.16zm2.518 0 .08.06.12-.16h-.2zm-.322.964h.1zm2.884-.964v-.1h-.2l.12.16zm2.322-.552h.1zM4.777 3.953v-.1h-.123l.025.12zm8.997.03.098.017.021-.117h-.119zm-.881 4.934v.1h.083l.015-.082zm-7.067.013-.098.02.016.08h.082zm.465 4.597v-.1zm5.08 0v-.1zm.494-.494h-.1zm2.556-2.166H5.116v.2h9.305zm-9.215.144.467-.951-.18-.088-.467.951zm.378-.895 7.762-.014v-.2l-7.763.014zm7.762-.014c.31 0 .577-.223.633-.53l-.197-.035a.44.44 0 0 1-.436.365zm.633-.53 1.075-6.017-.197-.035-1.075 6.017zm1.075-6.017a.64.64 0 0 0-.14-.525l-.153.128c.084.1.119.233.096.362zm-.14-.526a.65.65 0 0 0-.22-.17l-.085.182q.089.041.152.117zm-.22-.17a.65.65 0 0 0-.271-.06l-.001.2q.099 0 .187.042zm-.271-.06-9.875-.033v.2l9.874.032zm-9.778.046-.084-.397-.196.042.085.396zm-.084-.397a.655.655 0 0 0-.639-.517v.2c.213 0 .4.152.443.358zm-.639-.517H1.508v.2h2.414zm-2.414 0a.65.65 0 0 0-.46.191l.141.142a.45.45 0 0 1 .32-.133zm-.46.191a.65.65 0 0 0-.191.46h.2c0-.119.047-.234.132-.318zm-.191.46c0 .174.068.34.19.462l.142-.142a.45.45 0 0 1-.132-.32zm.19.462c.123.122.289.19.461.19v-.2a.45.45 0 0 1-.319-.132zm.461.19h1.968v-.2H1.508zm1.87-.079.368 1.753.196-.041-.369-1.753zm.368 1.753.908 4.395.196-.04-.908-4.396zm.92 4.323-1.168 1.907.17.105 1.17-1.908zm-1.163 1.9a.65.65 0 0 0-.125.332l.2.017a.45.45 0 0 1 .086-.23zm-.125.332c-.01.12.014.241.07.348l.177-.091a.45.45 0 0 1-.048-.24zm.07.348a.65.65 0 0 0 .58.358v-.2a.45.45 0 0 1-.402-.248zm.58.358h.982v-.2h-.981zm.902-.16a1.7 1.7 0 0 0-.342 1.024h.2a1.5 1.5 0 0 1 .302-.904zm-.342 1.024c0 .94.764 1.703 1.703 1.703v-.2c-.829 0-1.503-.674-1.503-1.503zm1.703 1.703c.94 0 1.703-.764 1.703-1.703h-.2c0 .829-.674 1.503-1.503 1.503zm1.703-1.703c0-.37-.123-.73-.341-1.024l-.16.12c.193.26.301.577.301.904zm-.422-.864h2.518v-.2H7.572zm2.438-.16a1.7 1.7 0 0 0-.342 1.024h.2a1.5 1.5 0 0 1 .301-.904zm-.342 1.024c0 .94.763 1.703 1.703 1.703v-.2c-.83 0-1.503-.674-1.503-1.503zm1.703 1.703c.94 0 1.703-.764 1.703-1.703h-.2c0 .829-.674 1.503-1.503 1.503zm1.703-1.703c0-.37-.123-.73-.342-1.024l-.16.12c.194.26.302.577.302.904zm-.422-.864h1.77v-.2h-1.77zm1.77 0a.653.653 0 0 0 .652-.652h-.2c0 .25-.203.452-.452.452zm.652-.652a.65.65 0 0 0-.193-.46l-.14.142a.45.45 0 0 1 .133.319zm-.193-.46a.65.65 0 0 0-.46-.19v.2c.12 0 .234.048.32.132zM4.777 4.053l8.997.03v-.2l-8.997-.03zm8.898-.088-.88 4.935.196.035L13.872 4zm-.783 4.852-7.067.013v.2l7.068-.013zm-6.969.092L4.875 3.933l-.196.04L5.728 8.95zm.368 4.518a.395.395 0 0 1-.394-.394h-.2c0 .327.267.594.594.594zm-.394-.394c0-.217.178-.394.394-.394v-.2a.595.595 0 0 0-.594.594zm.394-.394c.217 0 .394.177.394.394h.2a.595.595 0 0 0-.594-.594zm.394.394a.4.4 0 0 1-.115.278l.141.142a.6.6 0 0 0 .174-.42zm-.115.278a.4.4 0 0 1-.279.116v.2a.6.6 0 0 0 .42-.174zm4.8.116a.395.395 0 0 1-.393-.394h-.2c0 .327.267.594.594.594zm-.393-.394c0-.217.177-.394.394-.394v-.2a.595.595 0 0 0-.594.594zm.394-.394c.216 0 .394.177.394.394h.2a.595.595 0 0 0-.594-.594zm.394.394a.4.4 0 0 1-.116.278l.142.142a.6.6 0 0 0 .174-.42zm-.116.278a.4.4 0 0 1-.278.116v.2a.6.6 0 0 0 .42-.174z",mask:"url(#customers_inline_svg__path-1-outside-1_723_2410)"})]}),cP=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"m13.333 2.667-7.666 7.666m0-4.666 7.666 7.666M11.667 8h.006m2.994 0h.006M4 2a2 2 0 1 1 0 4 2 2 0 0 1 0-4m0 8a2 2 0 1 1 0 4 2 2 0 0 1 0-4"})}),cN=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("g",{fill:"currentColor",stroke:"currentColor",strokeWidth:.1,clipPath:"url(#dashboard_inline_svg__clip0_638_2071)",children:(0,to.jsx)("path",{d:"M2.167 7.467h6.416A1.217 1.217 0 0 0 9.8 6.25V2.167A1.217 1.217 0 0 0 8.583.95H2.167A1.217 1.217 0 0 0 .95 2.167V6.25a1.217 1.217 0 0 0 1.217 1.217Zm.05-5.25h6.316V6.2H2.217zM13.783.95h-1.7a1.217 1.217 0 0 0-1.216 1.217V6.25a1.217 1.217 0 0 0 1.216 1.217h1.75A1.216 1.216 0 0 0 15.05 6.25V2.167A1.217 1.217 0 0 0 13.833.95zm0 5.25h-1.65V2.217h1.65zM3.917 8.534h-1.75A1.217 1.217 0 0 0 .95 9.75v4.084a1.216 1.216 0 0 0 1.217 1.216h1.75a1.217 1.217 0 0 0 1.216-1.216V9.75a1.217 1.217 0 0 0-1.216-1.216Zm-.05 5.25h-1.65V9.8h1.65zM13.833 8.534H7.417A1.217 1.217 0 0 0 6.2 9.75v4.084a1.216 1.216 0 0 0 1.217 1.216h6.416a1.216 1.216 0 0 0 1.217-1.216V9.75a1.217 1.217 0 0 0-1.217-1.216Zm-.05 5.25H7.467V9.8h6.316z"})})}),cA=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{fill:"currentColor",fillRule:"evenodd",stroke:"currentColor",strokeWidth:.5,d:"M8.235.953a1.2 1.2 0 0 0-.47 0c-.178.037-.338.126-.488.21l-.038.021-4.933 2.74-.04.023c-.159.087-.328.181-.457.321a1.2 1.2 0 0 0-.25.425c-.06.181-.06.375-.06.556l.001.045v5.457c0 .181-.001.375.059.556.052.158.137.303.25.425.13.14.298.234.457.321l.04.022 4.933 2.741.038.02c.15.085.31.174.488.21.155.033.315.033.47 0 .178-.036.338-.125.488-.21l.038-.02 4.933-2.74.04-.023c.159-.087.328-.181.457-.321.113-.122.198-.267.25-.425.06-.181.06-.375.06-.556l-.001-.045V5.249c0-.181.001-.375-.059-.556a1.2 1.2 0 0 0-.25-.425c-.13-.14-.298-.234-.457-.321l-.04-.022-4.933-2.741-.038-.02c-.15-.085-.31-.174-.488-.21Zm-.268.98a.2.2 0 0 1 .066 0q.004 0 .043.018c.043.02.1.052.2.107l4.694 2.609L8 7.428 3.03 4.667l4.695-2.609c.1-.055.156-.086.2-.107zM2.5 5.516l5 2.778v5.523L2.791 11.2a5 5 0 0 1-.207-.12l-.04-.027a.2.2 0 0 1-.035-.06l-.006-.049a5 5 0 0 1-.003-.24z",clipRule:"evenodd"})}),cR=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M13.667 4.852 8 8m0 0L2.333 4.852M8 8v6.333m6-3.627V5.294c0-.228 0-.342-.034-.444a.7.7 0 0 0-.142-.243c-.073-.079-.173-.134-.373-.245l-4.933-2.74c-.189-.106-.284-.158-.384-.179a.7.7 0 0 0-.268 0c-.1.02-.195.073-.384.178l-4.933 2.74c-.2.112-.3.167-.373.246a.7.7 0 0 0-.142.243C2 4.952 2 5.066 2 5.294v5.412c0 .228 0 .342.034.444q.045.136.142.243c.073.079.173.134.373.245l4.933 2.74c.189.106.284.158.384.179q.134.027.268 0c.1-.02.195-.073.384-.178l4.933-2.74c.2-.112.3-.167.373-.246a.7.7 0 0 0 .142-.243c.034-.102.034-.216.034-.444"})}),cO=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M13.333 8.333v-3.8c0-1.12 0-1.68-.218-2.108a2 2 0 0 0-.874-.874c-.428-.218-.987-.218-2.108-.218H5.867c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874c-.218.428-.218.988-.218 2.108v6.934c0 1.12 0 1.68.218 2.108a2 2 0 0 0 .874.874c.428.218.988.218 2.108.218H8m1.333-7.334h-4M6.667 10H5.333m5.334-5.333H5.333m4.334 8L11 14l3-3"})}),cB=e=>(0,to.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:[(0,to.jsx)("path",{fillRule:"evenodd",d:"M10 1.25a.75.75 0 0 1 .75.75v.583h.583a2.083 2.083 0 0 1 2.084 2.084v2.666a.75.75 0 0 1-.75.75H2.75v4.584a.583.583 0 0 0 .583.583h4.53a.75.75 0 0 1 0 1.5h-4.53a2.083 2.083 0 0 1-2.083-2.083v-8a2.083 2.083 0 0 1 2.083-2.084h.584V2a.75.75 0 0 1 1.5 0v.583H9.25V2a.75.75 0 0 1 .75-.75m1.917 3.417v1.916H2.75V4.667a.583.583 0 0 1 .583-.584h.584v.584a.75.75 0 0 0 1.5 0v-.584H9.25v.584a.75.75 0 0 0 1.5 0v-.584h.583a.583.583 0 0 1 .584.584",clipRule:"evenodd"}),(0,to.jsx)("path",{d:"M12.75 10.997a.75.75 0 0 0-1.5 0V12c0 .199.079.39.22.53l.666.667a.75.75 0 0 0 1.061-1.06l-.447-.448z"}),(0,to.jsx)("path",{fillRule:"evenodd",d:"M12 8.583a3.417 3.417 0 1 0 0 6.834 3.417 3.417 0 0 0 0-6.834m-1.355 2.062a1.917 1.917 0 1 1 2.71 2.711 1.917 1.917 0 0 1-2.71-2.711",clipRule:"evenodd"})]}),cF=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M5.374 2 2 5m4.333-1L2 8m4.333-1L2 11m4-1-3 3M6.333 2v12m7-12H2.667A.667.667 0 0 0 2 2.667v10.666c0 .368.298.667.667.667h10.666a.667.667 0 0 0 .667-.667V2.667A.667.667 0 0 0 13.333 2"})}),c_=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M2 6.353h12M5.374 2 2 5m12-1.664-3.333 2.997M8.707 2 3.976 6.208M12.04 2 7.308 6.208M13.333 2H2.667A.667.667 0 0 0 2 2.667v10.666c0 .368.298.667.667.667h10.666a.667.667 0 0 0 .667-.667V2.667A.667.667 0 0 0 13.333 2"})}),cz=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{d:"M14 10.8V9.333C14 8.6 13.4 8 12.667 8h-4V6.6c1.133-.267 2-1.333 2-2.6 0-1.467-1.2-2.667-2.667-2.667A2.675 2.675 0 0 0 5.333 4c0 1.267.867 2.267 2 2.6V8h-4C2.6 8 2 8.6 2 9.333V10.8c-.8.267-1.333 1-1.333 1.867 0 1.133.866 2 2 2s2-.867 2-2c0-.867-.534-1.6-1.334-1.867V9.333h4V10.8c-.8.267-1.333 1-1.333 1.867 0 1.133.867 2 2 2s2-.867 2-2c0-.867-.533-1.6-1.333-1.867V9.333h4V10.8c-.8.267-1.334 1-1.334 1.867 0 1.133.867 2 2 2s2-.867 2-2c0-.867-.533-1.6-1.333-1.867M2.667 13.333c-.4 0-.667-.266-.667-.666S2.267 12 2.667 12s.666.267.666.667-.266.666-.666.666m4-9.333c0-.733.6-1.333 1.333-1.333s1.333.6 1.333 1.333S8.733 5.333 8 5.333 6.667 4.733 6.667 4M8 13.333c-.4 0-.667-.266-.667-.666S7.6 12 8 12s.667.267.667.667-.267.666-.667.666m5.333 0c-.4 0-.666-.266-.666-.666s.266-.667.666-.667.667.267.667.667-.267.666-.667.666"})}),cV=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{fillRule:"evenodd",d:"M5.02 1.289a2.6 2.6 0 0 1 3.293 0l.082.069.005.004.05.043a1.4 1.4 0 0 0 1.498.184l1.808-.804a.6.6 0 0 1 .844.548v6.07c.287.008.524.028.74.086a2.6 2.6 0 0 1 1.838 1.838c.09.332.089.717.089 1.253v2.753a1.933 1.933 0 0 1-1.934 1.934H7.707c-1.098 0-1.958 0-2.65-.057-.704-.057-1.286-.177-1.812-.445a4.6 4.6 0 0 1-2.01-2.01c-.269-.527-.388-1.108-.445-1.812C.733 10.25.733 9.39.733 8.293v-6.96a.6.6 0 0 1 .844-.548l1.808.804.06.026a1.4 1.4 0 0 0 1.488-.253l.005-.004zm8.313 12.778a.733.733 0 0 0 .734-.734v-2.666c0-.659-.005-.87-.048-1.03a1.4 1.4 0 0 0-.99-.99 1.8 1.8 0 0 0-.429-.043v4.73c0 .404.328.733.733.733m-1.79 0h-3.81c-1.13 0-1.941 0-2.578-.053-.63-.051-1.036-.15-1.365-.318a3.4 3.4 0 0 1-1.486-1.486c-.168-.329-.267-.735-.318-1.365-.052-.637-.053-1.448-.053-2.578v-6.01l.965.428.005.002.075.033a2.6 2.6 0 0 0 2.732-.443l.004-.003.066-.057a1.4 1.4 0 0 1 1.84.057l.003.003.063.053a2.6 2.6 0 0 0 2.744.357l.005-.002.965-.428v11.076c0 .26.051.508.144.734M4.068 6a.6.6 0 0 1 .6-.6h2.666a.6.6 0 0 1 0 1.2H4.667a.6.6 0 0 1-.6-.6m2 2.667a.6.6 0 0 1 .6-.6h2a.6.6 0 0 1 0 1.2h-2a.6.6 0 0 1-.6-.6m.6 2.066a.6.6 0 1 0 0 1.2h2a.6.6 0 1 0 0-1.2zM5.333 8.667a.667.667 0 1 1-1.333 0 .667.667 0 0 1 1.333 0M4.667 12a.667.667 0 1 0 0-1.333.667.667 0 0 0 0 1.333",clipRule:"evenodd"})}),c$=e=>(0,to.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 17 16",...e,children:[(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M7.167 2.667h-2a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h6.666a2 2 0 0 0 2-2v0"}),(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:1.5,d:"M12.143 3.333c.493 0 .924.268 1.155.667m-1.155-.667c-.494 0-.925.268-1.155.667m1.155-.667V2m0 5.333V5.978m2.31-2.645L13.297 4M9.833 6l1.155-.667M14.452 6l-1.154-.667m-3.465-2L10.988 4m0 1.333a1.33 1.33 0 0 1 0-1.333m0 1.333c.262.454.71.654 1.155.645m0 0c.458-.01.913-.24 1.155-.645m0 0c.112-.187.178-.41.178-.666 0-.243-.065-.471-.178-.667"}),(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M8.5 10.667v2.666M5.833 13.333h5.334"})]}),cW=e=>(0,to.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 17 16",...e,children:[(0,to.jsx)("path",{d:"M7.772 2.441a.673.673 0 0 1 0 1.32l-.135.013h-1.33c-.518 0-.867 0-1.135.023a1.6 1.6 0 0 0-.397.07l-.072.03c-.16.083-.3.201-.404.346l-.094.153c-.043.084-.08.209-.102.469-.022.268-.022.617-.022 1.136v5.076l.003.661c.003.186.008.34.02.475.02.26.058.385.1.468l.095.154c.105.144.244.263.404.345l.072.03c.082.03.202.055.397.07.268.023.617.023 1.135.023h5.076c.519 0 .868 0 1.136-.022.26-.022.386-.06.469-.101l.153-.095c.145-.105.263-.244.345-.404l.03-.072c.03-.082.055-.202.071-.396.022-.269.023-.618.023-1.136v-1.33a.674.674 0 0 1 1.347 0v1.33c0 .496 0 .909-.027 1.245a2.7 2.7 0 0 1-.19.856l-.054.115c-.209.409-.526.751-.915.99l-.171.096c-.305.155-.628.216-.971.244-.336.027-.75.027-1.246.027H6.307c-.496 0-.909 0-1.245-.027a2.7 2.7 0 0 1-.855-.19l-.116-.054a2.5 2.5 0 0 1-.99-.915l-.096-.171c-.155-.305-.216-.627-.244-.971a9 9 0 0 1-.023-.563l-.004-.682V6c0-.497 0-.91.027-1.245.028-.344.089-.667.244-.971l.096-.171c.239-.39.581-.707.99-.916l.116-.053a2.7 2.7 0 0 1 .855-.19c.336-.028.75-.028 1.245-.028h1.33z"}),(0,to.jsx)("path",{d:"m8.938 5.672.477.475-.554.556a1.287 1.287 0 0 0 0 1.82l.097.09a1.29 1.29 0 0 0 1.723-.09l.556-.554.475.477.476.475-.555.555a2.635 2.635 0 0 1-3.525.181l-.2-.18a2.635 2.635 0 0 1 0-3.726l.555-.555z"}),(0,to.jsx)("path",{d:"M11.237 7.97a.673.673 0 0 1 .951.951zM10.538 7.798a.673.673 0 0 1-.952-.952z"}),(0,to.jsx)("path",{d:"m12.808 4.577.476.475-2.746 2.746-.476-.476-.476-.476L12.332 4.1zM14.407 6.703a.673.673 0 0 1-.952-.952z"}),(0,to.jsx)("path",{d:"M11.436 2.24a2.635 2.635 0 0 1 3.526.182l.181.2c.788.966.788 2.36 0 3.326l-.181.2-.555.555-.476-.477-.476-.475.554-.555.09-.099a1.29 1.29 0 0 0 0-1.625l-.09-.097a1.287 1.287 0 0 0-1.722-.09l-.099.09-.555.554-.475-.476-.477-.476.556-.555zM8.463 5.196a.673.673 0 0 1 .952.951z"}),(0,to.jsx)("path",{d:"M12.332 4.1a.673.673 0 0 1 .952.952zM11.633 3.93a.673.673 0 0 1-.952-.953z"})]}),cH=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 12 14",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.2,d:"M6 9.667A1.333 1.333 0 0 1 6 7m0 2.667A1.333 1.333 0 0 0 6 7m0 2.667v1M6 7V6m2.02 1.167-.866.5M4.846 9l-.867.5M8 9.536l-.856-.516M4.857 7.647 4 7.132M7.333 1v2.667A.667.667 0 0 0 8 4.333h2.667M7.333 1H2.667a1.333 1.333 0 0 0-1.334 1.333v9.334A1.333 1.333 0 0 0 2.667 13h6.666a1.333 1.333 0 0 0 1.334-1.333V4.333M7.333 1l3.334 3.333"})}),cG=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M9.333 1.513v2.754c0 .373 0 .56.073.702a.67.67 0 0 0 .291.292c.143.072.33.072.703.072h2.754m-3.82 6h-4m5.333-2.666H5.333m8-2.008v4.808c0 1.12 0 1.68-.218 2.108a2 2 0 0 1-.874.874c-.428.218-.988.218-2.108.218H5.867c-1.12 0-1.68 0-2.108-.218a2 2 0 0 1-.874-.874c-.218-.428-.218-.988-.218-2.108V4.533c0-1.12 0-1.68.218-2.108a2 2 0 0 1 .874-.874c.427-.218.988-.218 2.108-.218h2.14c.49 0 .735 0 .965.056a2 2 0 0 1 .578.24c.202.123.375.296.72.642l2.126 2.125c.346.346.519.519.643.72q.165.272.24.579c.054.23.054.475.054.964"})}),cU=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"m12.667 3.333-3.96 3.96a1 1 0 0 1-1.414 0l-3.96-3.96M12.667 8.667l-3.96 3.96a1 1 0 0 1-1.414 0l-3.96-3.96"})}),cq=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"m12.667 12.667-3.96-3.96a1 1 0 0 1 0-1.414l3.96-3.96M7.333 12.667l-3.96-3.96a1 1 0 0 1 0-1.414l3.96-3.96"})}),cZ=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"m3.667 3.333 3.96 3.96a1 1 0 0 1 0 1.414l-3.96 3.96M9 3.333l3.96 3.96a1 1 0 0 1 0 1.414L9 12.667"})}),cK=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"m3.333 12.667 3.96-3.96a1 1 0 0 1 1.414 0l3.96 3.96M3.333 7.333l3.96-3.96a1 1 0 0 1 1.414 0l3.96 3.96"})}),cJ=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M2.667 10.828a3 3 0 0 1 1.387-5.482 4.001 4.001 0 0 1 7.893 0 3 3 0 0 1 1.386 5.482m-8 .505L8 14m0 0 2.667-2.667M8 14V8"})}),cX=e=>(0,to.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,to.jsx)("path",{fill:"currentColor",d:"M10.148 1H5.852c-.548 0-.979 0-1.326.028-.354.03-.65.09-.919.226-.439.224-.796.581-1.02 1.02-.136.269-.196.564-.225.919-.029.347-.029.778-.029 1.326v6.963c0 .547 0 .978.029 1.325.029.354.089.65.226.919.223.439.58.796 1.02 1.02.268.137.564.197.918.226.347.028.778.028 1.326.028h2.481a.333.333 0 1 0 0-.667H5.867c-.566 0-.97 0-1.287-.026-.313-.025-.51-.074-.67-.155a1.67 1.67 0 0 1-.728-.729c-.081-.159-.13-.357-.156-.67C3 12.436 3 12.033 3 11.467V4.533c0-.565 0-.97.026-1.286.026-.313.075-.511.156-.67.16-.314.414-.569.728-.729.16-.08.357-.13.67-.155a15 15 0 0 1 1.087-.026V3h-1a.333.333 0 1 0 0 .667h1V5h-1a.333.333 0 1 0 0 .667h1v1a.333.333 0 0 0 .666 0v-1h1a.333.333 0 1 0 0-.667h-1V3.667h1a.333.333 0 1 0 0-.667h-1V1.667h3.8c.566 0 .97 0 1.287.026.313.025.51.074.67.155.314.16.569.415.728.729.081.159.13.357.156.67.026.317.026.72.026 1.286v3.8a.333.333 0 1 0 .667 0V4.52c0-.548 0-.98-.029-1.326-.029-.355-.089-.65-.226-.919a2.33 2.33 0 0 0-1.02-1.02c-.268-.137-.564-.197-.918-.226C11.127 1 10.696 1 10.148 1"}),(0,to.jsx)("path",{fill:"currentColor",d:"M11.667 10.667a.333.333 0 0 0-.667 0v3.195L9.57 12.43a.333.333 0 1 0-.472.471l2 2c.13.13.34.13.471 0l2-2a.333.333 0 1 0-.471-.471l-1.431 1.43z"}),(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:.6,d:"M10.148 1H5.852c-.548 0-.979 0-1.326.028-.354.03-.65.09-.919.226-.439.224-.796.581-1.02 1.02-.136.269-.196.564-.225.919-.029.347-.029.778-.029 1.326v6.963c0 .547 0 .978.029 1.325.029.354.089.65.226.919.223.439.58.796 1.02 1.02.268.137.564.197.918.226.347.028.778.028 1.326.028h2.481a.333.333 0 1 0 0-.667H5.867c-.566 0-.97 0-1.287-.026-.313-.025-.51-.074-.67-.155a1.67 1.67 0 0 1-.728-.729c-.081-.159-.13-.357-.156-.67C3 12.436 3 12.033 3 11.467V4.533c0-.565 0-.97.026-1.286.026-.313.075-.511.156-.67.16-.314.414-.569.728-.729.16-.08.357-.13.67-.155a15 15 0 0 1 1.087-.026V3h-1a.333.333 0 1 0 0 .667h1V5h-1a.333.333 0 1 0 0 .667h1v1a.333.333 0 0 0 .666 0v-1h1a.333.333 0 1 0 0-.667h-1V3.667h1a.333.333 0 1 0 0-.667h-1V1.667h3.8c.566 0 .97 0 1.287.026.313.025.51.074.67.155.314.16.569.415.728.729.081.159.13.357.156.67.026.317.026.72.026 1.286v3.8a.333.333 0 1 0 .667 0V4.52c0-.548 0-.98-.029-1.326-.029-.355-.089-.65-.226-.919a2.33 2.33 0 0 0-1.02-1.02c-.268-.137-.564-.197-.918-.226C11.127 1 10.696 1 10.148 1"}),(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:.6,d:"M11.667 10.667a.333.333 0 0 0-.667 0v3.195L9.57 12.43a.333.333 0 1 0-.472.471l2 2c.13.13.34.13.471 0l2-2a.333.333 0 1 0-.471-.471l-1.431 1.43z"})]}),cQ=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M14 14H2m10-6.667-4 4m0 0-4-4m4 4V2"})}),cY=e=>(0,to.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,to.jsx)("path",{fill:"currentColor",stroke:"currentColor",strokeWidth:.2,d:"M10.667 15.167H2C1.36 15.167.833 14.64.833 14V5.333c0-2.946 1.554-4.5 4.5-4.5h5.334c2.946 0 4.5 1.554 4.5 4.5v5.334c0 2.946-1.554 4.5-4.5 4.5ZM5.333 1.833c-2.386 0-3.5 1.114-3.5 3.5V14c0 .093.074.167.167.167h8.667c2.386 0 3.5-1.114 3.5-3.5V5.333c0-2.386-1.114-3.5-3.5-3.5z"}),(0,to.jsx)("path",{fill:"currentColor",stroke:"currentColor",strokeWidth:.2,d:"M5.3 11.833c-.313 0-.6-.113-.813-.32a1.14 1.14 0 0 1-.307-1l.186-1.32c.04-.286.22-.653.427-.86l3.46-3.46c1.187-1.186 2.22-.653 2.874 0 .513.514.746 1.054.693 1.594-.04.44-.274.853-.694 1.28l-3.46 3.46a1.73 1.73 0 0 1-.86.433l-1.32.187c-.06 0-.126.006-.186.006Zm4.386-6.666c-.246 0-.466.16-.72.406l-3.46 3.46a.8.8 0 0 0-.146.294l-.187 1.32c-.006.066 0 .126.027.153.026.027.086.033.153.027l1.32-.187a.8.8 0 0 0 .293-.147l3.46-3.46c.254-.253.387-.473.407-.673.02-.227-.113-.493-.406-.787-.294-.28-.527-.406-.74-.406Z"}),(0,to.jsx)("path",{fill:"currentColor",stroke:"currentColor",strokeWidth:.2,d:"M10.28 8.387a.4.4 0 0 1-.133-.02 3.65 3.65 0 0 1-2.514-2.514.506.506 0 0 1 .347-.62c.267-.073.54.08.613.347a2.66 2.66 0 0 0 1.82 1.82.503.503 0 0 1-.133.987Z"})]}),c0=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{d:"M6 5a1 1 0 1 0 0-2 1 1 0 0 0 0 2M10 5a1 1 0 1 0 0-2 1 1 0 0 0 0 2M7 12a1 1 0 1 1-2 0 1 1 0 0 1 2 0M10 13a1 1 0 1 0 0-2 1 1 0 0 0 0 2M7 8a1 1 0 1 1-2 0 1 1 0 0 1 2 0M10 9a1 1 0 1 0 0-2 1 1 0 0 0 0 2"})}),c1=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 17 16",...e,children:(0,to.jsx)("g",{clipPath:"url(#drop-target_inline_svg__clip0_723_2307)",children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M7.437 1.335c-.478.006-.765.032-.997.144a1.38 1.38 0 0 0-.619.582c-.118.219-.146.489-.152.939m8.143-1.665c.479.006.766.032.998.144.266.127.483.331.619.582.118.219.146.489.152.939m0 6c-.006.45-.034.72-.152.939-.136.25-.353.454-.62.582-.231.112-.518.138-.996.144m1.77-5.332v1.334M9.917 1.333h1.416m-7.65 13.334h5.384c.793 0 1.19 0 1.493-.146.266-.128.483-.332.619-.582.154-.286.154-.659.154-1.406V7.467c0-.747 0-1.12-.154-1.406a1.38 1.38 0 0 0-.62-.582c-.302-.146-.699-.146-1.492-.146H3.683c-.793 0-1.19 0-1.493.146a1.38 1.38 0 0 0-.619.582c-.154.286-.154.659-.154 1.406v5.066c0 .747 0 1.12.154 1.406.136.25.353.454.62.582.302.146.699.146 1.492.146"})})}),c2=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:1.5,d:"M9.981 3.507a1 1 0 0 1 1.414 0l1.097 1.096a1 1 0 0 1 0 1.414l-6.33 6.335a1 1 0 0 1-.51.273L2.8 13.2l.576-2.848a1 1 0 0 1 .272-.509z",clipRule:"evenodd"})}),c3=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M8 13.333h6m-12 0h1.116c.326 0 .49 0 .643-.037q.205-.048.385-.16c.135-.082.25-.197.48-.427L13 4.333a1.414 1.414 0 1 0-2-2L2.625 10.71c-.23.23-.346.345-.429.48q-.11.181-.16.385C2 11.728 2 11.891 2 12.217z"})}),c6=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 17 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"m15.167 12-4.429-4m-3.81 0L2.5 12m-.333-7.333 5.443 3.81c.44.309.661.463.9.523.213.052.434.052.646 0 .24-.06.46-.214.9-.523l5.444-3.81M5.367 13.333H12.3c1.12 0 1.68 0 2.108-.218a2 2 0 0 0 .874-.874c.218-.428.218-.988.218-2.108V5.867c0-1.12 0-1.68-.218-2.108a2 2 0 0 0-.874-.874c-.428-.218-.988-.218-2.108-.218H5.367c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874c-.218.427-.218.988-.218 2.108v4.266c0 1.12 0 1.68.218 2.108a2 2 0 0 0 .874.874c.428.218.988.218 2.108.218"})}),c4=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M14.667 6H1.333m8 5.667L11 10 9.333 8.333m-2.666 0L5 10l1.667 1.667M1.333 5.2v5.6c0 1.12 0 1.68.218 2.108a2 2 0 0 0 .874.874c.428.218.988.218 2.108.218h6.934c1.12 0 1.68 0 2.108-.218a2 2 0 0 0 .874-.874c.218-.428.218-.988.218-2.108V5.2c0-1.12 0-1.68-.218-2.108a2 2 0 0 0-.874-.874C13.147 2 12.587 2 11.467 2H4.533c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874c-.218.428-.218.988-.218 2.108"})}),c8=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M12.333 10.667c1.289 0 2.334-1.94 2.334-4.334S13.622 2 12.333 2m0 8.667c-1.288 0-2.333-1.94-2.333-4.334S11.045 2 12.333 2m0 8.667L3.63 9.084c-.618-.112-.927-.169-1.177-.291a2 2 0 0 1-1.043-1.249c-.076-.268-.076-.582-.076-1.21 0-.63 0-.943.076-1.211a2 2 0 0 1 1.043-1.249c.25-.123.559-.179 1.177-.291L12.333 2m-9 7.333.263 3.676c.025.35.037.524.113.656.067.117.168.21.289.269.137.066.312.066.662.066h1.188c.4 0 .6 0 .748-.08a.67.67 0 0 0 .293-.316c.069-.154.053-.354.023-.752l-.245-3.185"})}),c7=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"m10 6-4 4m7-2A5 5 0 1 1 3 8a5 5 0 0 1 10 0"})}),c5=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 17 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.3,d:"M9.833 6.667 14.5 2m0 0h-4m4 0v4M7.167 9.333 2.5 14m0 0h4m-4 0v-4"})}),c9=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M6 2H3.333C2.597 2 2 2.597 2 3.333V6m4 8H3.333A1.333 1.333 0 0 1 2 12.667V10m8-8h2.667C13.403 2 14 2.597 14 3.333V6m0 4v2.667c0 .736-.597 1.333-1.333 1.333H10"})}),ue=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M1.333 9.333h13.334M5.333 14h5.334m-6.134-2h6.934c1.12 0 1.68 0 2.108-.218a2 2 0 0 0 .874-.874c.218-.428.218-.988.218-2.108V5.2c0-1.12 0-1.68-.218-2.108a2 2 0 0 0-.874-.874C13.147 2 12.587 2 11.467 2H4.533c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874c-.218.428-.218.988-.218 2.108v3.6c0 1.12 0 1.68.218 2.108a2 2 0 0 0 .874.874c.428.218.988.218 2.108.218"})}),ut=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M4.667 7.333c-.62 0-.93 0-1.185.068a2 2 0 0 0-1.414 1.415C2 9.07 2 9.38 2 10v.8c0 1.12 0 1.68.218 2.108a2 2 0 0 0 .874.874C3.52 14 4.08 14 5.2 14h5.6c1.12 0 1.68 0 2.108-.218a2 2 0 0 0 .874-.874C14 12.48 14 11.92 14 10.8V10c0-.62 0-.93-.068-1.184A2 2 0 0 0 12.518 7.4c-.255-.068-.565-.068-1.185-.068m-.666-2.666L8 2m0 0L5.333 4.667M8 2v8"})}),ui=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M7.162 3.395q.406-.061.838-.062c3.404 0 5.637 3.004 6.387 4.192.09.143.136.215.162.326a.8.8 0 0 1 0 .298c-.026.11-.071.183-.163.328-.2.316-.505.761-.908 1.243M4.483 4.477c-1.441.977-2.42 2.336-2.869 3.047-.091.144-.137.216-.162.327a.8.8 0 0 0 0 .298c.025.11.07.183.161.326.75 1.188 2.984 4.192 6.387 4.192 1.373 0 2.555-.489 3.526-1.15M2 2l12 12M6.586 6.586a2 2 0 0 0 2.828 2.828"})}),un=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsxs)("g",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,children:[(0,to.jsx)("path",{d:"M1.613 8.475c-.09-.143-.136-.215-.161-.326a.8.8 0 0 1 0-.298c.025-.11.07-.183.161-.326C2.363 6.337 4.597 3.333 8 3.333c3.404 0 5.637 3.004 6.387 4.192.09.143.136.215.162.326.019.083.019.215 0 .298-.026.11-.071.183-.162.326-.75 1.188-2.983 4.192-6.387 4.192S2.364 9.663 1.613 8.475"}),(0,to.jsx)("path",{d:"M8 10a2 2 0 1 0 0-4 2 2 0 0 0 0 4"})]})}),ur=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsxs)("g",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.3,clipPath:"url(#factory_inline_svg__clip0_723_2378)",children:[(0,to.jsx)("path",{d:"M2.667 14C3.43 11.32 3.989 8.649 4 6h4c.011 2.649.569 5.32 1.333 8"}),(0,to.jsx)("path",{d:"M8.333 8.667h3c.017 1.741.596 3.53 1.334 5.333M6 3.333a1.6 1.6 0 0 1 1.333-.666 1.6 1.6 0 0 1 1.334.666A1.6 1.6 0 0 0 10 4a1.6 1.6 0 0 0 1.333-.667 1.6 1.6 0 0 1 1.334-.666A1.6 1.6 0 0 1 14 3.333M2 14h12.667"})]})}),ua=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M7.995 3.424C6.663 1.866 4.44 1.446 2.77 2.874 1.1 4.3.865 6.685 2.176 8.373c1.09 1.403 4.39 4.362 5.472 5.32.121.107.182.16.252.182a.34.34 0 0 0 .19 0c.071-.021.132-.075.253-.182 1.081-.958 4.381-3.917 5.472-5.32 1.311-1.688 1.105-4.089-.594-5.5-1.699-1.413-3.893-1.008-5.226.55",clipRule:"evenodd"})}),ul=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M11.867 6.667c.746 0 1.12 0 1.405-.146.25-.127.455-.331.583-.582C14 5.653 14 5.28 14 4.533v-.4c0-.746 0-1.12-.145-1.405a1.33 1.33 0 0 0-.583-.583C12.987 2 12.613 2 11.867 2H4.133c-.746 0-1.12 0-1.405.145-.25.128-.455.332-.583.583C2 3.013 2 3.387 2 4.133v.4c0 .747 0 1.12.145 1.406.128.25.332.455.583.582.285.146.659.146 1.405.146zM11.867 14c.746 0 1.12 0 1.405-.145.25-.128.455-.332.583-.583.145-.285.145-.659.145-1.405v-.4c0-.747 0-1.12-.145-1.406a1.33 1.33 0 0 0-.583-.582c-.285-.146-.659-.146-1.405-.146H4.133c-.746 0-1.12 0-1.405.146-.25.127-.455.331-.583.582C2 10.347 2 10.72 2 11.467v.4c0 .746 0 1.12.145 1.405.128.25.332.455.583.583.285.145.659.145 1.405.145z"})}),uo=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.2,d:"M13.333 6.667V4.533c0-1.12 0-1.68-.218-2.108a2 2 0 0 0-.874-.874c-.428-.218-.988-.218-2.108-.218H5.867c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874c-.218.428-.218.988-.218 2.108v6.934c0 1.12 0 1.68.218 2.108a2 2 0 0 0 .874.874c.428.218.988.218 2.108.218H7m1.667-7.334H5.333m2 2.667h-2m5.334-5.333H5.333m7.5 6.666v-1.166a1.167 1.167 0 1 0-2.333 0v1.166M10.4 14h2.533c.374 0 .56 0 .703-.073a.67.67 0 0 0 .291-.291c.073-.143.073-.33.073-.703V12.4c0-.373 0-.56-.073-.703a.67.67 0 0 0-.291-.291c-.143-.073-.33-.073-.703-.073H10.4c-.373 0-.56 0-.703.073a.67.67 0 0 0-.291.291c-.073.143-.073.33-.073.703v.533c0 .374 0 .56.073.703a.67.67 0 0 0 .291.291c.143.073.33.073.703.073"})}),us=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M2.257 3.778c-.504-.564-.756-.845-.766-1.085a.67.67 0 0 1 .242-.54C1.918 2 2.296 2 3.053 2h9.895c.756 0 1.134 0 1.319.153.16.132.25.332.241.54-.01.24-.261.521-.766 1.085L9.938 8.03c-.1.112-.15.168-.186.232a.7.7 0 0 0-.07.181c-.016.072-.016.147-.016.298v3.565c0 .13 0 .195-.02.252a.33.33 0 0 1-.089.13c-.044.04-.105.064-.226.113l-2.266.906c-.245.098-.368.147-.466.127a.33.33 0 0 1-.21-.142c-.056-.084-.056-.216-.056-.48V8.741c0-.15 0-.226-.016-.298a.7.7 0 0 0-.069-.18c-.036-.065-.086-.121-.187-.233z"})}),ud=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M2.667 10s.666-.667 2.666-.667 3.334 1.334 5.334 1.334S13.333 10 13.333 10V2s-.666.667-2.666.667-3.334-1.334-5.334-1.334S2.667 2 2.667 2v12.667"})}),uf=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 17 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.3,d:"M14.714 6h-9a3 3 0 0 0 0 6h3m6-6-2.666-2.667M14.714 6l-2.666 2.667"})}),uc=e=>(0,to.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:[(0,to.jsx)("path",{d:"M9 8a1 1 0 1 1-2 0 1 1 0 0 1 2 0"}),(0,to.jsx)("path",{fillRule:"evenodd",d:"M12 8a4 4 0 1 1-8 0 4 4 0 0 1 8 0m-1.5 0a2.5 2.5 0 1 1-5 0 2.5 2.5 0 0 1 5 0",clipRule:"evenodd"}),(0,to.jsx)("path",{fillRule:"evenodd",d:"M4 1a3 3 0 0 0-3 3v8a3 3 0 0 0 3 3h8a3 3 0 0 0 3-3V4a3 3 0 0 0-3-3zm8 1.4H4A1.6 1.6 0 0 0 2.4 4v8A1.6 1.6 0 0 0 4 13.6h8a1.6 1.6 0 0 0 1.6-1.6V4A1.6 1.6 0 0 0 12 2.4",clipRule:"evenodd"})]}),uu=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"m8.667 4.667-.744-1.488c-.214-.428-.321-.642-.48-.798a1.3 1.3 0 0 0-.499-.308C6.733 2 6.494 2 6.014 2H3.468c-.747 0-1.12 0-1.406.145-.25.128-.455.332-.582.583-.146.285-.146.659-.146 1.405v.534m0 0h10.134c1.12 0 1.68 0 2.108.218a2 2 0 0 1 .874.874c.218.428.218.988.218 2.108V10.8c0 1.12 0 1.68-.218 2.108a2 2 0 0 1-.874.874c-.428.218-.988.218-2.108.218H4.533c-1.12 0-1.68 0-2.108-.218a2 2 0 0 1-.874-.874c-.218-.428-.218-.988-.218-2.108zM8 11.333v-4m-2 2h4"})}),um=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 24 24",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"m13 7-1.116-2.231c-.32-.642-.481-.963-.72-1.198a2 2 0 0 0-.748-.462C10.1 3 9.74 3 9.022 3H5.2c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874C2 4.52 2 5.08 2 6.2V7m0 0h15.2c1.68 0 2.52 0 3.162.327a3 3 0 0 1 1.311 1.311C22 9.28 22 10.12 22 11.8v4.4c0 1.68 0 2.52-.327 3.162a3 3 0 0 1-1.311 1.311C19.72 21 18.88 21 17.2 21H6.8c-1.68 0-2.52 0-3.162-.327a3 3 0 0 1-1.311-1.311C2 18.72 2 17.88 2 16.2zm13.5 10.5L14 16m1-2.5a3.5 3.5 0 1 1-7 0 3.5 3.5 0 0 1 7 0"})}),up=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"m8.667 4.667-.744-1.488c-.214-.428-.321-.642-.48-.798a1.3 1.3 0 0 0-.499-.308C6.733 2 6.494 2 6.014 2H3.468c-.747 0-1.12 0-1.406.145-.25.128-.455.332-.582.583-.146.285-.146.659-.146 1.405v.534m0 0h10.134c1.12 0 1.68 0 2.108.218a2 2 0 0 1 .874.874c.218.428.218.988.218 2.108V10.8c0 1.12 0 1.68-.218 2.108a2 2 0 0 1-.874.874c-.428.218-.988.218-2.108.218H4.533c-1.12 0-1.68 0-2.108-.218a2 2 0 0 1-.874-.874c-.218-.428-.218-.988-.218-2.108z"})}),ug=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M5.333 8.667v2.666m5.334-4v4M8 4.667v6.666M5.2 14h5.6c1.12 0 1.68 0 2.108-.218a2 2 0 0 0 .874-.874C14 12.48 14 11.92 14 10.8V5.2c0-1.12 0-1.68-.218-2.108a2 2 0 0 0-.874-.874C12.48 2 11.92 2 10.8 2H5.2c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874C2 3.52 2 4.08 2 5.2v5.6c0 1.12 0 1.68.218 2.108a2 2 0 0 0 .874.874C3.52 14 4.08 14 5.2 14"})}),uh=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M6.667 9.367a2.333 2.333 0 1 0-3.333 3.266 2.333 2.333 0 0 0 3.333-3.266m0 0 3.354-3.354m3.346-.68-.862-.862a.667.667 0 0 0-.943 0l-1.541 1.542m0 0 1.312 1.312"})}),ub=e=>(0,to.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,to.jsx)("path",{stroke:"currentColor",strokeWidth:1.4,d:"M2 6c0-1.4 0-2.1.272-2.635a2.5 2.5 0 0 1 1.093-1.093C3.9 2 4.6 2 6 2h4c1.4 0 2.1 0 2.635.272a2.5 2.5 0 0 1 1.092 1.093C14 3.9 14 4.6 14 6v4c0 1.4 0 2.1-.273 2.635a2.5 2.5 0 0 1-1.092 1.092C12.1 14 11.4 14 10 14H6c-1.4 0-2.1 0-2.635-.273a2.5 2.5 0 0 1-1.093-1.092C2 12.1 2 11.4 2 10z"}),(0,to.jsx)("circle",{cx:5.333,cy:8,r:1.3,stroke:"currentColor",strokeWidth:1.4}),(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:1.4,d:"M6.667 8h2.666m2 1.333V8.15a.15.15 0 0 0-.15-.15h-1.85m0 0v1.333"})]}),uy=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 17 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M6.833 11.333H5.5a3.333 3.333 0 1 1 0-6.666h1.333m4 6.666h1.334a3.333 3.333 0 0 0 0-6.666h-1.334M5.5 8h6.667"})}),uv=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M4 2.667v10.666m8-10.666v10.666M5.333 2.667H2.667M12 8H4m1.333 5.333H2.667m10.666 0h-2.666m2.666-10.666h-2.666"})}),ux=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("g",{clipPath:"url(#help-circle_inline_svg__clip0_723_2416)",children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M6.06 6a2 2 0 0 1 3.887.667c0 1.333-2 2-2 2M8 11.333h.007M14.667 8A6.667 6.667 0 1 1 1.333 8a6.667 6.667 0 0 1 13.334 0"})})}),uj=e=>(0,to.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.3,d:"M3.685 11.135a5.333 5.333 0 1 0-1.008-2.8m0 0-1-1m1 1 1-1"}),(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.3,d:"M8 5.333V8l2 2"})]}),uw=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M5.333 11.333h5.334m-3.322-9.49L2.824 5.359c-.303.236-.454.353-.563.5-.096.13-.168.278-.212.434C2 6.469 2 6.66 2 7.043v4.824c0 .746 0 1.12.145 1.405.128.25.332.455.583.583.285.145.659.145 1.405.145h7.734c.746 0 1.12 0 1.405-.145.25-.128.455-.332.583-.583.145-.285.145-.659.145-1.405V7.043c0-.383 0-.574-.05-.75a1.3 1.3 0 0 0-.211-.434c-.11-.147-.26-.264-.563-.5L8.655 1.843c-.234-.182-.351-.274-.48-.309a.67.67 0 0 0-.35 0c-.129.035-.246.127-.48.309"})}),uC=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M10.8 14H4.62c-.403 0-.605 0-.698-.08a.33.33 0 0 1-.116-.28c.01-.122.152-.265.438-.55l5.668-5.67c.264-.263.396-.395.549-.445a.67.67 0 0 1 .412 0c.152.05.284.182.548.446L14 10v.8M10.8 14c1.12 0 1.68 0 2.108-.218a2 2 0 0 0 .874-.874C14 12.48 14 11.92 14 10.8M10.8 14H5.2c-1.12 0-1.68 0-2.108-.218a2 2 0 0 1-.874-.874C2 12.48 2 11.92 2 10.8V5.2c0-1.12 0-1.68.218-2.108a2 2 0 0 1 .874-.874C3.52 2 4.08 2 5.2 2h5.6c1.12 0 1.68 0 2.108.218a2 2 0 0 1 .874.874C14 3.52 14 4.08 14 5.2v5.6M7 5.667a1.333 1.333 0 1 1-2.667 0 1.333 1.333 0 0 1 2.667 0"})}),uk=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M5.333 8 8 10.667m0 0L10.667 8M8 10.667V4.533c0-.927 0-1.39-.367-1.91-.244-.344-.946-.77-1.364-.827-.63-.085-.87.04-1.348.29a6.667 6.667 0 1 0 6.412.14"})}),uT=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("g",{clipPath:"url(#info-circle_inline_svg__clip0_723_2415)",children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M8 10.667V8m0-2.667h.007M14.667 8A6.667 6.667 0 1 1 1.333 8a6.667 6.667 0 0 1 13.334 0"})})}),uS=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{d:"M8 1.333a6.667 6.667 0 1 0 0 13.334A6.667 6.667 0 0 0 8 1.333m.667 9.334a.667.667 0 1 1-1.334 0V7.333a.667.667 0 1 1 1.334 0zM8 6a.667.667 0 1 1 0-1.333A.667.667 0 0 1 8 6"})}),uD=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{fillRule:"evenodd",d:"M2.571 1.5a2 2 0 0 0-2 2V6a2 2 0 0 0 2 2h.31a.7.7 0 0 0-.02.155v.405c0 .433 0 .797.025 1.094.026.311.08.607.224.888.218.428.566.776.994.994.28.143.576.198.888.224.297.024.66.024 1.094.024h.19l-.245.244a.65.65 0 1 0 .92.92l1.354-1.354a.65.65 0 0 0 0-.92L6.95 9.32a.65.65 0 1 0-.92.92l.245.244h-.164c-.466 0-.776 0-1.014-.02-.231-.019-.337-.052-.404-.086a.98.98 0 0 1-.426-.426c-.034-.067-.067-.173-.086-.404-.02-.238-.02-.548-.02-1.014v-.38A.7.7 0 0 0 4.143 8h.928a2 2 0 0 0 2-2V3.5a2 2 0 0 0-2-2zm2.5 1.3h-2.5a.7.7 0 0 0-.7.7V6a.7.7 0 0 0 .7.7h2.5a.7.7 0 0 0 .7-.7V3.5a.7.7 0 0 0-.7-.7M8.929 10a2 2 0 0 1 2-2h2.5a2 2 0 0 1 2 2v2.5a2 2 0 0 1-2 2h-2.5a2 2 0 0 1-2-2zm2-.7h2.5a.7.7 0 0 1 .7.7v2.5a.7.7 0 0 1-.7.7h-2.5a.7.7 0 0 1-.7-.7V10a.7.7 0 0 1 .7-.7",clipRule:"evenodd"})}),uE=e=>(0,to.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:[(0,to.jsx)("path",{fillRule:"evenodd",d:"M2.571 1.5a2 2 0 0 0-2 2V6a2 2 0 0 0 2 2h2.5a2 2 0 0 0 2-2V3.5a2 2 0 0 0-2-2zm2.5 1.3h-2.5a.7.7 0 0 0-.7.7V6a.7.7 0 0 0 .7.7h2.5a.7.7 0 0 0 .7-.7V3.5a.7.7 0 0 0-.7-.7M10.929 8a2 2 0 0 0-2 2v2.5a2 2 0 0 0 2 2h2.5a2 2 0 0 0 2-2V10a2 2 0 0 0-2-2zm2.5 1.3h-2.5a.7.7 0 0 0-.7.7v2.5a.7.7 0 0 0 .7.7h2.5a.7.7 0 0 0 .7-.7V10a.7.7 0 0 0-.7-.7",clipRule:"evenodd"}),(0,to.jsx)("path",{d:"M4.49 9.499a.65.65 0 0 0-.92.919l.582.582-.582.582a.65.65 0 0 0 .92.92l.581-.583.583.582a.65.65 0 0 0 .919-.919L5.99 11l.582-.582a.65.65 0 1 0-.92-.92l-.582.583z"})]}),uM=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M9.333 1.513v2.754c0 .373 0 .56.073.702a.67.67 0 0 0 .291.292c.143.072.33.072.703.072h2.754m-3.82 6.334L11 10 9.333 8.333m-2.666 0L5 10l1.667 1.667m6.666-5.008v4.808c0 1.12 0 1.68-.218 2.108a2 2 0 0 1-.874.874c-.428.218-.988.218-2.108.218H5.867c-1.12 0-1.68 0-2.108-.218a2 2 0 0 1-.874-.874c-.218-.428-.218-.988-.218-2.108V4.533c0-1.12 0-1.68.218-2.108a2 2 0 0 1 .874-.874c.428-.218.988-.218 2.108-.218h2.14c.49 0 .735 0 .965.056a2 2 0 0 1 .578.239c.202.124.375.297.72.643l2.126 2.125c.346.346.519.519.643.72q.165.272.24.579c.054.23.054.475.054.964"})}),uI=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 24 24",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeMiterlimit:10,strokeWidth:2,d:"M7 14c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2Zm5.6-4c-.8-2.3-3-4-5.6-4-3.3 0-6 2.7-6 6s2.7 6 6 6c2.6 0 4.8-1.7 5.6-4H17v4h4v-4h2v-4z"})}),uL=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 24 24",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M6 10h.01M8 14h.01M10 10h.01M12 14h.01M14 10h.01M16 14h.01M18 10h.01M5.2 18h13.6c1.12 0 1.68 0 2.108-.218a2 2 0 0 0 .874-.874C22 16.48 22 15.92 22 14.8V9.2c0-1.12 0-1.68-.218-2.108a2 2 0 0 0-.874-.874C20.48 6 19.92 6 18.8 6H5.2c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874C2 7.52 2 8.08 2 9.2v5.6c0 1.12 0 1.68.218 2.108a2 2 0 0 0 .874.874C3.52 18 4.08 18 5.2 18"})}),uP=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 24 24",...e,children:(0,to.jsx)("path",{d:"M6.5 2c2 0 3.6 1.3 4.2 3H22v3h-4v3h-3V8h-4.3c-.6 1.8-2.3 3-4.2 3C4 11 2 9 2 6.5S4 2 6.5 2m0 3C5.7 5 5 5.7 5 6.5S5.7 8 6.5 8 8 7.3 8 6.5 7.3 5 6.5 5m0 8c2 0 3.6 1.3 4.2 3H22v3h-2v3h-2v-3h-2v3h-3v-3h-2.3c-.6 1.8-2.3 3-4.2 3C4 22 2 20 2 17.5S4 13 6.5 13m0 3c-.8 0-1.5.7-1.5 1.5S5.7 19 6.5 19 8 18.3 8 17.5 7.3 16 6.5 16"})}),uN=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M2.667 10s.666-.667 2.666-.667 3.334 1.334 5.334 1.334S13.333 10 13.333 10V2s-.666.667-2.666.667-3.334-1.334-5.334-1.334S2.667 2 2.667 2v12.667"})}),uA=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M2 6h12M2 10h12M8 2v12M5.2 2h5.6c1.12 0 1.68 0 2.108.218a2 2 0 0 1 .874.874C14 3.52 14 4.08 14 5.2v5.6c0 1.12 0 1.68-.218 2.108a2 2 0 0 1-.874.874C12.48 14 11.92 14 10.8 14H5.2c-1.12 0-1.68 0-2.108-.218a2 2 0 0 1-.874-.874C2 12.48 2 11.92 2 10.8V5.2c0-1.12 0-1.68.218-2.108a2 2 0 0 1 .874-.874C3.52 2 4.08 2 5.2 2"})}),uR=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.3,d:"M11.667 7.333H8.333M11.667 10H8.333m3.334-5.333H8.333M6 2v12M5.2 2h5.6c1.12 0 1.68 0 2.108.218a2 2 0 0 1 .874.874C14 3.52 14 4.08 14 5.2v5.6c0 1.12 0 1.68-.218 2.108a2 2 0 0 1-.874.874C12.48 14 11.92 14 10.8 14H5.2c-1.12 0-1.68 0-2.108-.218a2 2 0 0 1-.874-.874C2 12.48 2 11.92 2 10.8V5.2c0-1.12 0-1.68.218-2.108a2 2 0 0 1 .874-.874C3.52 2 4.08 2 5.2 2"})}),uO=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M14 8H6m8-4H6m8 8H6M3.333 8A.667.667 0 1 1 2 8a.667.667 0 0 1 1.333 0m0-4A.667.667 0 1 1 2 4a.667.667 0 0 1 1.333 0m0 8A.667.667 0 1 1 2 12a.667.667 0 0 1 1.333 0"})}),uB=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("g",{clipPath:"url(#loading_inline_svg__clip0_723_2296)",children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M8 1.5v1.667M8 12v2.667M3.833 8H1.5m12.667 0h-1m-.862 4.305-.472-.472m.61-8.222-.943.942M3.281 12.72l1.886-1.886m-1.748-7.36 1.414 1.414"})})}),uF=e=>(0,to.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,to.jsx)("circle",{cx:8,cy:6.667,r:2,stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4}),(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M12.667 6.5C12.667 10.25 8 14 8 14s-4.667-3.75-4.667-7.5C3.333 4.015 5.423 2 8 2s4.667 2.015 4.667 4.5"})]}),u_=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M11.333 6.667V5.333a3.333 3.333 0 1 0-6.666 0v1.334m3.333 3V11m-2.133 3h4.266c1.12 0 1.68 0 2.108-.218a2 2 0 0 0 .874-.874c.218-.428.218-.988.218-2.108v-.933c0-1.12 0-1.68-.218-2.108a2 2 0 0 0-.874-.874c-.428-.218-.988-.218-2.108-.218H5.867c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874c-.218.428-.218.988-.218 2.108v.933c0 1.12 0 1.68.218 2.108a2 2 0 0 0 .874.874c.427.218.988.218 2.108.218"})}),uz=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M11.333 6.667V5.333a3.333 3.333 0 1 0-6.666 0v1.334m3.333 3V11m-2.133 3h4.266c1.12 0 1.68 0 2.108-.218a2 2 0 0 0 .874-.874c.218-.428.218-.988.218-2.108v-.933c0-1.12 0-1.68-.218-2.108a2 2 0 0 0-.874-.874c-.428-.218-.988-.218-2.108-.218H5.867c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874c-.218.428-.218.988-.218 2.108v.933c0 1.12 0 1.68.218 2.108a2 2 0 0 0 .874.874c.428.218.988.218 2.108.218"})}),uV=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M10.667 11.333 14 8m0 0-3.333-3.333M14 8H6m0-6h-.8c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874C2 3.52 2 4.08 2 5.2v5.6c0 1.12 0 1.68.218 2.108a2 2 0 0 0 .874.874C3.52 14 4.08 14 5.2 14H6"})}),u$=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M10.667 6.667H2M13.333 4H2m11.333 5.333H2M10.667 12H2"})}),uW=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 18 18",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeOpacity:.88,strokeWidth:1.5,d:"M16.125 13.5 11.143 9M6.857 9l-4.982 4.5M1.5 5.25l6.124 4.287c.496.347.744.52 1.013.587.238.06.488.06.726 0 .27-.067.517-.24 1.013-.587L16.5 5.25M5.1 15h7.8c1.26 0 1.89 0 2.371-.245.424-.216.768-.56.984-.984.245-.48.245-1.11.245-2.371V6.6c0-1.26 0-1.89-.245-2.371a2.25 2.25 0 0 0-.983-.984C14.79 3 14.16 3 12.9 3H5.1c-1.26 0-1.89 0-2.371.245a2.25 2.25 0 0 0-.984.984C1.5 4.709 1.5 5.339 1.5 6.6v4.8c0 1.26 0 1.89.245 2.371.216.424.56.768.984.984C3.209 15 3.839 15 5.1 15"})}),uH=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M7.08 12c-1.009 0-4.712 0-5.097-.204a1.84 1.84 0 0 1-.787-.82C1 10.576 1 10.05 1 9V5c0-1.05 0-1.575.196-1.976a1.84 1.84 0 0 1 .787-.82C2.368 2 2.873 2 3.88 2h6.24c1.008 0 1.512 0 1.897.204.34.18.614.467.787.82.195.4.195 3.404.195 4.464V7.5M1.196 3.875 5.688 7.01c.397.29.595.434.811.49.19.05.39.05.58 0 .216-.056.415-.2.811-.49l4.81-3.135m-2.022 7.71-.616 2.035c-.049.16-.073.24-.056.29a.14.14 0 0 0 .088.087c.046.014.116-.02.255-.09l4.412-2.194c.136-.067.204-.101.225-.148a.16.16 0 0 0 0-.13c-.02-.046-.089-.08-.225-.148l-4.414-2.195c-.139-.069-.208-.103-.254-.089a.14.14 0 0 0-.088.087c-.017.05.007.13.055.289l.618 2.059a.3.3 0 0 1 .014.055.2.2 0 0 1 0 .037.3.3 0 0 1-.014.055"})}),uG=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{fillRule:"evenodd",d:"M12 6.083c-.755 0-1.44-.304-1.936-.797L6.709 6.982a3.3 3.3 0 0 1-.157 1.638l3.543 2.064a2.75 2.75 0 1 1-.758 1.295L5.722 9.871a3.25 3.25 0 1 1 .41-4.279l3.194-1.615A2.75 2.75 0 1 1 12 6.083m-1.25-2.75a1.25 1.25 0 1 1 2.5 0 1.25 1.25 0 0 1-2.5 0m0 9.334c0-.201.047-.39.131-.559a.7.7 0 0 0 .084-.143 1.249 1.249 0 0 1 2.285.702 1.25 1.25 0 0 1-2.5 0m-9-5.167a1.75 1.75 0 1 1 3.5 0 1.75 1.75 0 0 1-3.5 0",clipRule:"evenodd"})}),uU=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.3,d:"M14.222 7.716V12a2 2 0 0 1-2 2H3.778a2 2 0 0 1-2-2V7.716M4.5 6.312C4.5 7.245 3.716 8 2.75 8c-.873 0-1.597-.617-1.729-1.423a1.2 1.2 0 0 1 .048-.521l.698-2.578A2 2 0 0 1 3.697 2h8.606a2 2 0 0 1 1.93 1.478l.698 2.578c.046.17.076.347.048.521C14.847 7.383 14.123 8 13.25 8c-.966 0-1.75-.756-1.75-1.687m-7 0C4.5 7.244 5.284 8 6.25 8S8 7.244 8 6.313m-3.5 0L4.889 2M8 6.313C8 7.244 8.784 8 9.75 8s1.75-.756 1.75-1.687m-3.5 0V2m3.5 4.313L11.111 2"})}),uq=e=>(0,to.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,to.jsx)("path",{fill:"currentColor",d:"M4.667 9.667v2zM7.667 7.667v4zM10.667 5.667v6zM13.667 3.667v8z"}),(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M14 14H4.133c-.746 0-1.12 0-1.405-.145a1.33 1.33 0 0 1-.583-.583C2 12.987 2 12.613 2 11.867V2m2.667 7.667v2m3-4v4m3-6v6m3-8v8"})]}),uZ=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M5.6 2H3.067c-.374 0-.56 0-.703.073a.67.67 0 0 0-.291.291C2 2.507 2 2.694 2 3.067V5.6c0 .373 0 .56.073.703a.67.67 0 0 0 .291.291c.143.073.33.073.703.073H5.6c.373 0 .56 0 .703-.073a.67.67 0 0 0 .291-.291c.073-.143.073-.33.073-.703V3.067c0-.374 0-.56-.073-.703a.67.67 0 0 0-.291-.291C6.16 2 5.973 2 5.6 2M12.933 2H10.4c-.373 0-.56 0-.703.073a.67.67 0 0 0-.291.291c-.073.143-.073.33-.073.703V5.6c0 .373 0 .56.073.703a.67.67 0 0 0 .291.291c.143.073.33.073.703.073h2.533c.374 0 .56 0 .703-.073a.67.67 0 0 0 .291-.291C14 6.16 14 5.973 14 5.6V3.067c0-.374 0-.56-.073-.703a.67.67 0 0 0-.291-.291C13.493 2 13.306 2 12.933 2M12.933 9.333H10.4c-.373 0-.56 0-.703.073a.67.67 0 0 0-.291.291c-.073.143-.073.33-.073.703v2.533c0 .374 0 .56.073.703a.67.67 0 0 0 .291.291c.143.073.33.073.703.073h2.533c.374 0 .56 0 .703-.073a.67.67 0 0 0 .291-.291c.073-.143.073-.33.073-.703V10.4c0-.373 0-.56-.073-.703a.67.67 0 0 0-.291-.291c-.143-.073-.33-.073-.703-.073M5.6 9.333H3.067c-.374 0-.56 0-.703.073a.67.67 0 0 0-.291.291C2 9.84 2 10.027 2 10.4v2.533c0 .374 0 .56.073.703a.67.67 0 0 0 .291.291c.143.073.33.073.703.073H5.6c.373 0 .56 0 .703-.073a.67.67 0 0 0 .291-.291c.073-.143.073-.33.073-.703V10.4c0-.373 0-.56-.073-.703a.67.67 0 0 0-.291-.291c-.143-.073-.33-.073-.703-.073"})}),uK=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 17 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M6.048 8h5.333m-5.467 6h5.6c1.12 0 1.68 0 2.108-.218a2 2 0 0 0 .874-.874c.218-.428.218-.988.218-2.108V5.2c0-1.12 0-1.68-.218-2.108a2 2 0 0 0-.874-.874C13.194 2 12.634 2 11.514 2h-5.6c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874c-.218.428-.218.988-.218 2.108v5.6c0 1.12 0 1.68.218 2.108a2 2 0 0 0 .874.874c.428.218.988.218 2.108.218"})}),uJ=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 24 24",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M5 12h14"})}),uX=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{d:"M4 6.667c-.733 0-1.333.6-1.333 1.333S3.267 9.333 4 9.333 5.333 8.733 5.333 8 4.733 6.667 4 6.667m8 0c-.733 0-1.333.6-1.333 1.333s.6 1.333 1.333 1.333 1.333-.6 1.333-1.333-.6-1.333-1.333-1.333m-4 0c-.733 0-1.333.6-1.333 1.333S7.267 9.333 8 9.333 9.333 8.733 9.333 8 8.733 6.667 8 6.667"})}),uQ=e=>(0,to.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M9.333 2.667h4v4h-4zM9.333 9.333h4v4h-4zM6.667 3.333a4 4 0 0 0 0 8"}),(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"m5.597 12.552 1.687-.96-.96-1.686"})]}),uY=e=>(0,to.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M9.333 2.667h4v4h-4zM9.333 9.333h4v4h-4zM6.667 12.916a4 4 0 1 1 0-8"}),(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"m5.597 3.696 1.687.96-.96 1.687"})]}),u0=e=>(0,to.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:[(0,to.jsx)("path",{d:"M4.864 2.864a.75.75 0 1 0-1.061-1.061l-1.47 1.47-.47-.47a.75.75 0 0 0-1.06 1.06l1 1a.75.75 0 0 0 1.06 0zM14.667 2.583h-8a.75.75 0 1 0 0 1.5h8a.75.75 0 0 0 0-1.5M6.667 7.25a.75.75 0 1 0 0 1.5h8a.75.75 0 0 0 0-1.5zM5.917 12.667a.75.75 0 0 1 .75-.75h8a.75.75 0 1 1 0 1.5h-8a.75.75 0 0 1-.75-.75"}),(0,to.jsx)("path",{fillRule:"evenodd",d:"M2.667 5.917a2.083 2.083 0 1 0 0 4.166 2.083 2.083 0 0 0 0-4.166M2.083 8A.583.583 0 1 1 3.25 8a.583.583 0 0 1-1.167 0M.583 12.667a2.083 2.083 0 1 1 4.167 0 2.083 2.083 0 0 1-4.167 0m2.084-.584a.583.583 0 1 0 0 1.167.583.583 0 0 0 0-1.167",clipRule:"evenodd"})]}),u1=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 17 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M3.042 5.453h10.916M12.138 8H4.863m4.366 2.91H4.862m0 2.912h7.277a2.183 2.183 0 0 0 2.183-2.183V4.362a2.183 2.183 0 0 0-2.183-2.184H4.862a2.183 2.183 0 0 0-2.184 2.184v7.277c0 1.205.978 2.183 2.184 2.183"})}),u2=e=>(0,to.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:[(0,to.jsx)("path",{d:"M10.875 7.5H8.5V5.125A.125.125 0 0 0 8.375 5h-.75a.125.125 0 0 0-.125.125V7.5H5.125A.125.125 0 0 0 5 7.625v.75c0 .069.056.125.125.125H7.5v2.375c0 .069.056.125.125.125h.75a.125.125 0 0 0 .125-.125V8.5h2.375A.125.125 0 0 0 11 8.375v-.75a.125.125 0 0 0-.125-.125"}),(0,to.jsx)("path",{d:"M8 1a7 7 0 1 0 .001 14.001A7 7 0 0 0 8 1m0 12.813A5.813 5.813 0 0 1 8 2.188a5.813 5.813 0 0 1 0 11.625"})]}),u3=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("g",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,clipPath:"url(#new-column_inline_svg__clip0_723_2395)",children:(0,to.jsx)("path",{d:"M4 2.667h2.667a.667.667 0 0 1 .666.666v9.334a.667.667 0 0 1-.666.666H4a.667.667 0 0 1-.667-.666V3.333A.667.667 0 0 1 4 2.667M10 8h2.667M11.333 6.667v2.666"})})}),u6=e=>(0,to.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M11.944 2v3.889M10 3.944h3.889"}),(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.3,d:"M10.301 10h.333c.32 0 .48 0 .569-.066a.33.33 0 0 0 .13-.241c.006-.11-.082-.242-.26-.506l-.992-1.475c-.147-.218-.22-.327-.313-.365a.33.33 0 0 0-.252 0c-.093.038-.166.147-.313.365l-.245.365M10.3 10 7.768 6.374c-.146-.209-.219-.313-.31-.35a.33.33 0 0 0-.248 0c-.091.037-.164.141-.31.35L4.94 9.18c-.186.265-.278.398-.273.509a.33.33 0 0 0 .129.244c.089.067.252.067.578.067z"}),(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M5.333 2H5.2c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874C2 3.52 2 4.08 2 5.2v.133M5.333 14H5.2c-1.12 0-1.68 0-2.108-.218a2 2 0 0 1-.874-.874C2 12.48 2 11.92 2 10.8v-.133m12 0v.133c0 1.12 0 1.68-.218 2.108a2 2 0 0 1-.874.874C12.48 14 11.92 14 10.8 14h-.133"})]}),u4=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{fillRule:"evenodd",d:"M9.333 6A3.3 3.3 0 0 0 6 2.667 3.3 3.3 0 0 0 2.667 6c0 1.933 1.933 4.8 3.333 6.6 1.533-2 3.333-4.867 3.333-6.6M8 6c0 1.133-.867 2-2 2s-2-.867-2-2 .867-2 2-2 2 .867 2 2M1.333 6C1.333 3.4 3.4 1.333 6 1.333S10.667 3.4 10.667 6C10.667 9.467 6 14.667 6 14.667S1.333 9.533 1.333 6m4 0c0 .4.267.667.667.667S6.667 6.4 6.667 6 6.4 5.333 6 5.333 5.333 5.6 5.333 6m7.367 4.056a.7.7 0 0 0-1.4 0V11.3h-1.244a.7.7 0 1 0 0 1.4H11.3v1.244a.7.7 0 1 0 1.4 0V12.7h1.245a.7.7 0 0 0 0-1.4H12.7z",clipRule:"evenodd"})}),u8=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M13.333 4v2.667a.667.667 0 0 1-.666.666H3.333a.667.667 0 0 1-.666-.666V4a.667.667 0 0 1 .666-.667h9.334a.667.667 0 0 1 .666.667M8 10v2.667M9.333 11.333H6.667"})}),u7=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M12.667 14v-4m-2 2h4m0-5.333H1.333M14.667 8V5.467c0-.747 0-1.12-.146-1.406a1.33 1.33 0 0 0-.582-.582c-.286-.146-.659-.146-1.406-.146H3.467c-.747 0-1.12 0-1.406.146-.25.127-.455.331-.582.582-.146.286-.146.659-.146 1.406v5.066c0 .747 0 1.12.146 1.406.127.25.331.454.582.582.286.146.659.146 1.406.146H8"})}),u5=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M8 3.333v9.334M3.333 8h9.334"})}),u9=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{fillRule:"evenodd",d:"M5.7 1.3h-.029c-.535 0-.98 0-1.342.03-.376.03-.726.097-1.055.264a2.7 2.7 0 0 0-1.18 1.18c-.167.33-.234.679-.264 1.055-.03.363-.03.807-.03 1.342v5.658c0 .535 0 .98.03 1.342.03.376.097.726.264 1.055a2.7 2.7 0 0 0 1.18 1.18c.33.167.679.234 1.055.264.363.03.807.03 1.342.03h6.258a2.27 2.27 0 0 0 2.271-2.271V6.773c0-.397 0-.736-.023-1.015-.024-.294-.076-.581-.217-.857A2.2 2.2 0 0 0 13 3.94c-.276-.14-.563-.193-.857-.217-.279-.023-.618-.023-1.015-.023h-.112a2.6 2.6 0 0 0-.252-.926 2.7 2.7 0 0 0-1.18-1.18c-.33-.167-.678-.234-1.055-.264a18 18 0 0 0-1.342-.03H5.7m0 12h4.13a2.3 2.3 0 0 1-.173-.871V5.2c0-.572 0-.958-.025-1.257-.023-.29-.066-.434-.117-.533a1.3 1.3 0 0 0-.568-.568c-.098-.05-.243-.093-.533-.117C8.115 2.7 7.729 2.7 7.157 2.7H5.7c-.572 0-.958 0-1.257.025-.29.024-.434.066-.533.117a1.3 1.3 0 0 0-.568.568c-.05.099-.093.243-.117.533C3.2 4.242 3.2 4.628 3.2 5.2v5.6c0 .572 0 .958.025 1.257.024.29.066.434.117.533a1.3 1.3 0 0 0 .568.568c.099.05.243.093.533.117.299.024.685.025 1.257.025m7.1-.871a.871.871 0 0 1-1.743 0V5.1h.043c.432 0 .713 0 .928.018.207.017.29.046.335.07a.8.8 0 0 1 .35.349c.023.045.052.128.069.335.018.215.018.496.018.928zM5.5 3.3a1.7 1.7 0 0 0 0 3.4h2a1.7 1.7 0 1 0 0-3.4zM5.2 5a.3.3 0 0 1 .3-.3h2a.3.3 0 0 1 0 .6h-2a.3.3 0 0 1-.3-.3",clipRule:"evenodd"})}),me=e=>(0,to.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 184 115",...e,children:[(0,to.jsx)("path",{fill:"currentColor",fillOpacity:.06,d:"M25.875 80.5C9.857 84.095 0 88.992 0 94.388c0 11.033 41.19 19.976 92 19.976s92-8.943 92-19.976c0-5.396-9.857-10.293-25.875-13.888v8.708c0 6.058-3.795 11.024-8.481 11.024H34.356c-4.686 0-8.481-4.969-8.481-11.024z"}),(0,to.jsxs)("g",{stroke:"currentColor",strokeOpacity:.06,children:[(0,to.jsx)("path",{fill:"currentColor",fillOpacity:.04,d:"M119.637 45.815c0-4.58 2.858-8.361 6.403-8.364h32.085v51.757c0 6.058-3.795 11.024-8.481 11.024H34.356c-4.686 0-8.481-4.969-8.481-11.024V37.451H57.96c3.545 0 6.403 3.776 6.403 8.356v.063c0 4.58 2.889 8.278 6.431 8.278h42.412c3.542 0 6.431-3.733 6.431-8.313z"}),(0,to.jsx)("path",{d:"m158.125 37.766-29.17-32.823c-1.4-2.237-3.444-3.59-5.597-3.59H60.642c-2.153 0-4.197 1.353-5.597 3.588l-29.17 32.828"})]})]}),mt=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M7.333 2.667H5.2c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874C2 4.187 2 4.747 2 5.867V10.8c0 1.12 0 1.68.218 2.108a2 2 0 0 0 .874.874C3.52 14 4.08 14 5.2 14h4.933c1.12 0 1.68 0 2.108-.218a2 2 0 0 0 .874-.874c.218-.428.218-.988.218-2.108V8.667m-4.666 2.666h-4M10 8.667H4.667m8.747-6.081a2 2 0 1 1-2.828 2.828 2 2 0 0 1 2.828-2.828"})}),mi=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M2 5.2c0-1.12 0-1.68.218-2.108a2 2 0 0 1 .874-.874C3.52 2 4.08 2 5.2 2h5.6c1.12 0 1.68 0 2.108.218a2 2 0 0 1 .874.874C14 3.52 14 4.08 14 5.2v3.6c0 1.12 0 1.68-.218 2.108a2 2 0 0 1-.874.874C12.48 12 11.92 12 10.8 12H9.122c-.416 0-.624 0-.823.04a2 2 0 0 0-.507.179c-.181.092-.344.222-.669.482l-1.59 1.272c-.277.222-.416.333-.533.333a.33.33 0 0 1-.26-.125c-.073-.091-.073-.269-.073-.624V12c-.62 0-.93 0-1.185-.068a2 2 0 0 1-1.414-1.414C2 10.263 2 9.953 2 9.333z"})}),mn=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M7.333 2.667H5.2c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874C2 4.187 2 4.747 2 5.867v3.466c0 .62 0 .93.068 1.185a2 2 0 0 0 1.414 1.414c.255.068.565.068 1.185.068v1.557c0 .355 0 .533.072.624.064.08.16.126.261.126.117 0 .256-.112.533-.334l1.59-1.272c.325-.26.488-.39.669-.482q.24-.123.507-.178C8.5 12 8.706 12 9.123 12h1.01c1.12 0 1.68 0 2.108-.218a2 2 0 0 0 .874-.874c.218-.428.218-.988.218-2.108v-.133m.081-6.081a2 2 0 1 1-2.828 2.828 2 2 0 0 1 2.828-2.828"})}),mr=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{fillOpacity:.85,d:"M4.781 13.512c.457 0 .739-.235.832-.668l.528-2.52h2.18l-.481 2.297c-.106.48.234.89.715.89.468 0 .773-.234.867-.667l.527-2.531h1.219c.457 0 .785-.34.785-.786 0-.398-.281-.691-.668-.691h-1.02l.505-2.379H12c.457 0 .785-.34.785-.785 0-.399-.281-.692-.668-.692h-1.043l.457-2.19a.736.736 0 0 0-.738-.892c-.457 0-.75.235-.844.68L9.445 4.98h-2.18l.446-2.19a.72.72 0 0 0-.715-.892c-.469 0-.762.235-.855.68L5.648 4.98H4.406a.77.77 0 0 0-.785.786c0 .398.281.691.68.691h1.02l-.493 2.379H3.574a.764.764 0 0 0-.785.785c0 .399.281.691.668.691h1.066l-.48 2.31c-.094.48.258.89.738.89m1.57-4.535.54-2.637h2.367l-.551 2.637z"})}),ma=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{fillRule:"evenodd",d:"M4.159 3.15c.41 0 .482.006.538.023a.6.6 0 0 1 .187.1c.046.036.091.091.323.43l.323.472.037.054c.172.251.328.481.542.653.186.151.4.264.631.333.263.079.54.079.845.078h2.758c.353 0 .651.235.747.557H4.863c-.51 0-.932-.001-1.308.144a2.15 2.15 0 0 0-.855.602c-.264.306-.405.704-.576 1.184l-.033.094-.336.94-.201-3.822a13 13 0 0 1-.032-.978c.007-.221.034-.316.06-.372a.85.85 0 0 1 .373-.393c.054-.029.147-.061.368-.08.228-.018.527-.019.978-.019zM.797 12.444a.65.65 0 0 1-.175-.41L.255 5.06l-.001-.026c-.022-.417-.04-.77-.032-1.06.01-.302.05-.596.18-.879a2.15 2.15 0 0 1 .944-.995c.276-.146.567-.2.87-.226.288-.024.64-.024 1.059-.024h.95c.304 0 .582 0 .845.078.23.069.444.182.631.333.213.172.37.402.542.653l.037.054.323.472c.232.339.277.394.323.43a.6.6 0 0 0 .187.1c.056.017.128.023.538.023h2.692c1.073 0 1.957.813 2.067 1.857.541 0 .991 0 1.35.033.373.034.734.107 1.05.312.467.302.799.772.926 1.313.086.367.034.732-.06 1.093-.09.353-.243.78-.428 1.296l-.01.03-.785 2.199-.034.094c-.17.48-.312.878-.576 1.184a2.15 2.15 0 0 1-.854.602c-.377.145-.8.145-1.309.144H4.147c-.548 0-1.002 0-1.365-.033-.372-.033-.733-.107-1.05-.312a2.15 2.15 0 0 1-.935-1.361M5.172 9.35a.65.65 0 0 0 0 1.3h5.6a.65.65 0 1 0 0-1.3zm-1.15-2.143c.121-.046.278-.057.94-.057h7.404c.586 0 .98 0 1.278.028.294.026.406.073.46.109a.85.85 0 0 1 .367.519c.014.063.021.184-.053.47-.075.289-.207.661-.404 1.213l-.786 2.2c-.223.624-.285.768-.37.866a.85.85 0 0 1-.337.238c-.12.046-.278.057-.94.057H4.176c-.585 0-.98 0-1.278-.027-.294-.027-.406-.074-.46-.11a.85.85 0 0 1-.366-.518c-.015-.064-.022-.185.052-.47.075-.29.207-.662.404-1.214l.786-2.2c.223-.624.286-.768.37-.866a.85.85 0 0 1 .338-.238",clipRule:"evenodd"})}),ml=e=>(0,to.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:1.4,d:"M8 5.333V2.667M7 10.667H4M4.167 13.333h7.666a1.5 1.5 0 0 0 1.5-1.5V5.57a1 1 0 0 0-.105-.447l-.675-1.35a2 2 0 0 0-1.79-1.105H5.237a2 2 0 0 0-1.789 1.105l-.675 1.35a1 1 0 0 0-.105.447v6.264a1.5 1.5 0 0 0 1.5 1.5Z"}),(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M3.333 5.333h9.334"})]}),mo=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.3,d:"M10.667 2.667c.62 0 .93 0 1.184.068a2 2 0 0 1 1.414 1.414c.068.254.068.564.068 1.184v6.134c0 1.12 0 1.68-.218 2.108a2 2 0 0 1-.874.874c-.428.218-.988.218-2.108.218H5.867c-1.12 0-1.68 0-2.108-.218a2 2 0 0 1-.874-.874c-.218-.428-.218-.988-.218-2.108V5.333c0-.62 0-.93.068-1.184a2 2 0 0 1 1.414-1.414c.254-.068.564-.068 1.184-.068M6 10l1.333 1.333 3-3M6.4 4h3.2c.373 0 .56 0 .703-.073a.67.67 0 0 0 .291-.291c.073-.143.073-.33.073-.703V2.4c0-.373 0-.56-.073-.703a.67.67 0 0 0-.291-.291c-.143-.073-.33-.073-.703-.073H6.4c-.373 0-.56 0-.703.073a.67.67 0 0 0-.291.291c-.073.143-.073.33-.073.703v.533c0 .374 0 .56.073.703a.67.67 0 0 0 .291.291C5.84 4 6.027 4 6.4 4"})}),ms=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M13.333 8.333v-3.8c0-1.12 0-1.68-.218-2.108a2 2 0 0 0-.874-.874c-.428-.218-.988-.218-2.108-.218H5.867c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874c-.218.428-.218.988-.218 2.108v6.934c0 1.12 0 1.68.218 2.108a2 2 0 0 0 .874.874c.427.218.988.218 2.108.218H8m1.333-7.334h-4M6.667 10H5.333m5.334-5.333H5.333m4.334 8L11 14l3-3"})}),md=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("g",{clipPath:"url(#personal-user_inline_svg__clip0_723_2266)",children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M2.667 14.545c.401.122.944.122 1.866.122h6.934c.922 0 1.465 0 1.866-.122m-10.666 0a1.5 1.5 0 0 1-.242-.096 2 2 0 0 1-.874-.874c-.218-.428-.218-.988-.218-2.108V4.533c0-1.12 0-1.68.218-2.108a2 2 0 0 1 .874-.874c.428-.218.988-.218 2.108-.218h6.934c1.12 0 1.68 0 2.108.218a2 2 0 0 1 .874.874c.218.428.218.988.218 2.108v6.934c0 1.12 0 1.68-.218 2.108a2 2 0 0 1-.874.874 1.5 1.5 0 0 1-.242.096m-10.666 0c0-.54.003-.825.05-1.065a2.67 2.67 0 0 1 2.096-2.095c.258-.052.567-.052 1.187-.052h4c.62 0 .93 0 1.187.052a2.67 2.67 0 0 1 2.095 2.095c.048.24.051.525.051 1.065m-2.666-8.212a2.667 2.667 0 1 1-5.334 0 2.667 2.667 0 0 1 5.334 0"})})}),mf=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("g",{clipPath:"url(#pie-chart_inline_svg__clip0_723_2280)",children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M8 1.333A6.667 6.667 0 0 1 14.667 8M8 1.333V8m0-6.667A6.667 6.667 0 1 0 14.667 8M8 1.333A6.667 6.667 0 0 1 14.667 8m0 0H8m6.667 0a6.67 6.67 0 0 1-2.748 5.393L8 8"})})}),mc=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{d:"M12.667 4.667c-1.134 0-2.134.533-2.8 1.466L7.4 9.8c-.6 1-1.6 1.533-2.733 1.533A3.3 3.3 0 0 1 1.333 8a3.3 3.3 0 0 1 3.334-3.333c1.133 0 2.133.533 2.8 1.466l.4.667.8-1.2-.134-.2C7.667 4.133 6.2 3.333 4.667 3.333A4.64 4.64 0 0 0 0 8c0 2.6 2.067 4.667 4.667 4.667 1.533 0 3-.8 3.866-2.067l.934-1.4.4.667c.6.933 1.666 1.466 2.8 1.466A3.3 3.3 0 0 0 16 8a3.3 3.3 0 0 0-3.333-3.333m0 5.333C12 10 11.4 9.667 11 9.133L10.267 8 11 6.933c.333-.6 1-.933 1.667-.933 1.133 0 2 .867 2 2s-.867 2-2 2"})}),mu=e=>(0,to.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,to.jsx)("path",{stroke:"currentColor",strokeWidth:1.4,d:"M9.302 2.91c.653-.436.98-.654 1.336-.618.355.035.633.312 1.188.867l1.015 1.015c.555.555.832.832.867 1.188s-.182.683-.617 1.336l-.796 1.193-.165.25a8 8 0 0 0-1.137 2.892l-.127.636a.668.668 0 0 1-1.036.419A23.4 23.4 0 0 1 3.912 6.17a.668.668 0 0 1 .419-1.036l.636-.127.293-.06a8 8 0 0 0 2.6-1.077c.062-.04.124-.082.248-.165z"}),(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:1.4,d:"m3.333 12.667 3-3"})]}),mm=e=>(0,to.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,to.jsx)("path",{stroke:"currentColor",strokeWidth:1.4,d:"M5.333 2.974c0-.538.436-.974.974-.974h3.386c.538 0 .974.436.974.974 0 1.538.455 3.042 1.308 4.322l.933 1.399a.54.54 0 0 1-.319.824 18.9 18.9 0 0 1-9.178 0 .54.54 0 0 1-.319-.824l.933-1.399a7.8 7.8 0 0 0 1.308-4.322Z"}),(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:1.4,d:"M8 13.333v-2.666"}),(0,to.jsx)("path",{stroke:"currentColor",strokeWidth:1.4,d:"M4 13.333h8"})]}),mp=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M8 3.333v9.334M3.333 8h9.334"})}),mg=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 17 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M8.714 5.333v5.334M6.048 8h5.333m-5.467 6h5.6c1.12 0 1.68 0 2.108-.218a2 2 0 0 0 .874-.874c.218-.428.218-.988.218-2.108V5.2c0-1.12 0-1.68-.218-2.108a2 2 0 0 0-.874-.874C13.194 2 12.634 2 11.514 2h-5.6c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874c-.218.428-.218.988-.218 2.108v5.6c0 1.12 0 1.68.218 2.108a2 2 0 0 0 .874.874c.428.218.988.218 2.108.218"})}),mh=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M8 10.667V14m0-3.333L12 14m-4-3.333L4 14M14 2v5.467c0 1.12 0 1.68-.218 2.108a2 2 0 0 1-.874.874c-.428.218-.988.218-2.108.218H5.2c-1.12 0-1.68 0-2.108-.218a2 2 0 0 1-.874-.874C2 9.147 2 8.587 2 7.467V2m3.333 4v2M8 4.667V8m2.667-.667V8m4-6H1.333"})}),mb=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M6 14h2m2 0H8m0 0v-2m0 0h4a2 2 0 0 0 2-2V5.333a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2V10a2 2 0 0 0 2 2zm2.49-1.833h.677a1 1 0 0 0 1-1V8.5M5.51 5.167h-.677a1 1 0 0 0-1 1v.666"})}),my=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.3,d:"M2.667 4h6m2-1.333V4m0 1.333V4m0 0h2.666M2.667 12h4m2-1.333V12m0 1.333V12m0 0h4.666M13.333 8h-6m-2 1.333V8m0-1.333V8m0 0H2.667"})}),mv=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{d:"M10.933 9.333C11 8.867 11 8.467 11 8s-.067-.867-.067-1.333H13.2c.133.4.2.866.2 1.333a4.3 4.3 0 0 1-.2 1.333m-3.467 3.734a9.5 9.5 0 0 0 .934-2.4H12.6c-.6 1.066-1.667 1.933-2.867 2.4m-.2-3.734H6.467C6.4 8.867 6.333 8.467 6.333 8s.067-.933.134-1.333H9.6c.067.4.133.866.133 1.333s-.133.867-.2 1.333m-1.533 4c-.533-.8-1-1.666-1.267-2.666h2.534C9 11.6 8.533 12.533 8 13.333m-2.667-8H3.4C4.067 4.2 5.067 3.4 6.267 2.933c-.4.8-.667 1.6-.934 2.4M3.4 10.667h1.933c.267.8.534 1.666.934 2.4-1.2-.467-2.267-1.334-2.867-2.4m-.533-1.334c-.134-.4-.2-.866-.2-1.333s.066-.933.2-1.333h2.266c-.066.466-.066.866-.066 1.333s.066.867.066 1.333M8 2.667c.533.8 1 1.666 1.267 2.666H6.733C7 4.4 7.467 3.467 8 2.667m4.6 2.666h-1.933c-.2-.8-.534-1.6-.934-2.4C10.933 3.4 12 4.2 12.6 5.333m-4.6-4c-3.667 0-6.667 3-6.667 6.667s3 6.667 6.667 6.667 6.667-3 6.667-6.667-3-6.667-6.667-6.667"})}),mx=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{d:"M8 1.333a6.667 6.667 0 1 0 0 13.334A6.667 6.667 0 0 0 8 1.333M8 12a.667.667 0 1 1 0-1.334A.667.667 0 0 1 8 12m.667-3.44v.773a.667.667 0 0 1-1.334 0V8A.667.667 0 0 1 8 7.333a1 1 0 1 0-1-1 .667.667 0 1 1-1.333 0 2.333 2.333 0 1 1 3 2.227"})}),mj=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M2 6h12M5.2 2h5.6c1.12 0 1.68 0 2.108.218a2 2 0 0 1 .874.874C14 3.52 14 4.08 14 5.2v5.6c0 1.12 0 1.68-.218 2.108a2 2 0 0 1-.874.874C12.48 14 11.92 14 10.8 14H5.2c-1.12 0-1.68 0-2.108-.218a2 2 0 0 1-.874-.874C2 12.48 2 11.92 2 10.8V5.2c0-1.12 0-1.68.218-2.108a2 2 0 0 1 .874-.874C3.52 2 4.08 2 5.2 2"})}),mw=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"m12 10 2 2m0 0-2 2m2-2h-1.62c-.627 0-.94 0-1.224-.086a2 2 0 0 1-.689-.369c-.23-.188-.403-.449-.75-.97l-.161-.242M12 2l2 2m0 0-2 2m2-2h-1.62c-.627 0-.94 0-1.224.086a2 2 0 0 0-.689.369c-.23.188-.403.449-.75.97l-3.434 5.15c-.347.521-.52.782-.75.97a2 2 0 0 1-.689.369C4.56 12 4.247 12 3.621 12H2m0-8h1.62c.627 0 .94 0 1.224.086a2 2 0 0 1 .689.369c.23.188.403.449.75.97l.161.242"})}),mC=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M11.333 12.583A5.667 5.667 0 0 0 8 2.333h-.333M8 13.667a5.667 5.667 0 0 1-3.333-10.25m2.666 11.516L8.667 13.6l-1.334-1.333m1.334-8.534L7.333 2.4l1.334-1.333"})}),mk=e=>(0,to.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:1.4,d:"M1.586 1.586a2 2 0 1 0 2.828 2.828M1.586 1.586a2 2 0 1 1 2.828 2.828M1.586 1.586 3 3l1.414 1.414"}),(0,to.jsx)("path",{fill:"currentColor",fillRule:"evenodd",d:"M2.7 5.985a3 3 0 0 1-1.4-.513v3.552c0 .446 0 .815.02 1.118.022.315.068.608.186.891a2.7 2.7 0 0 0 1.46 1.462c.284.117.577.163.892.184.303.021.672.021 1.118.021H5c.36 0 .426.004.479.017a.6.6 0 0 1 .26.13c.042.035.085.086.301.373l.973 1.298.012.015c.062.083.133.178.202.254.076.085.204.212.398.287.241.094.509.094.75 0 .194-.075.322-.202.398-.287.069-.076.14-.171.202-.254l.012-.015.973-1.298c.216-.287.259-.338.3-.373a.6.6 0 0 1 .261-.13c.053-.013.12-.017.479-.017h.024c.446 0 .815 0 1.118-.02.315-.022.608-.068.891-.185a2.7 2.7 0 0 0 1.462-1.462c.117-.283.163-.576.184-.891.021-.303.021-.672.021-1.118V5.17c0-.535 0-.98-.03-1.342-.03-.376-.097-.726-.264-1.055a2.7 2.7 0 0 0-1.18-1.18c-.33-.167-.679-.234-1.055-.264-.363-.03-.807-.03-1.342-.03H5.472c.28.406.462.884.513 1.4H10.8c.572 0 .958 0 1.257.025.29.024.434.066.533.117a1.3 1.3 0 0 1 .568.568c.05.099.093.243.117.533.024.299.025.685.025 1.257V9c0 .476 0 .797-.017 1.047-.017.243-.047.366-.082.45a1.3 1.3 0 0 1-.703.704c-.085.035-.208.065-.451.082-.25.017-.572.017-1.047.017h-.057c-.27 0-.51 0-.743.054a2 2 0 0 0-.836.418c-.184.153-.329.347-.49.562l-.034.046L8 13.5l-.84-1.12-.034-.046c-.161-.215-.306-.409-.49-.562a2 2 0 0 0-.836-.418c-.232-.054-.474-.054-.743-.054H5c-.476 0-.797 0-1.047-.017-.243-.017-.366-.047-.45-.082a1.3 1.3 0 0 1-.704-.703c-.035-.085-.065-.208-.082-.451C2.7 9.797 2.7 9.476 2.7 9z",clipRule:"evenodd"}),(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.3,d:"M10.071 9.38h.3c.288 0 .432 0 .511-.056A.27.27 0 0 0 11 9.12c.006-.093-.074-.205-.234-.43l-.893-1.254c-.132-.185-.198-.278-.282-.31a.32.32 0 0 0-.227 0c-.083.032-.15.125-.281.31l-.221.31m1.21 1.636H5.635c-.293 0-.44 0-.52-.058A.27.27 0 0 1 5 9.116c-.005-.094.079-.207.246-.433L7.01 6.297c.131-.177.197-.266.279-.297a.32.32 0 0 1 .223 0c.082.031.148.12.279.297l1.14 1.542zm1.658-4.548c0 .46-.398.834-.89.834s-.89-.373-.89-.834.398-.833.89-.833.89.373.89.833"})]}),mT=e=>(0,to.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:[(0,to.jsx)("path",{fillRule:"evenodd",d:"M8 6c0 1.133-.867 2-2 2s-2-.867-2-2 .867-2 2-2 2 .867 2 2M5.333 6c0 .4.267.667.667.667S6.667 6.4 6.667 6 6.4 5.333 6 5.333 5.333 5.6 5.333 6",clipRule:"evenodd"}),(0,to.jsx)("path",{fillRule:"evenodd",d:"M1.333 6C1.333 3.4 3.4 1.333 6 1.333S10.667 3.4 10.667 6C10.667 9.467 6 14.667 6 14.667S1.333 9.533 1.333 6m8 0A3.3 3.3 0 0 0 6 2.667 3.3 3.3 0 0 0 2.667 6c0 1.933 1.933 4.8 3.333 6.6 1.533-2 3.333-4.867 3.333-6.6",clipRule:"evenodd"}),(0,to.jsx)("path",{d:"M10.056 11.3a.7.7 0 1 0 0 1.4h3.889a.7.7 0 1 0 0-1.4z"})]}),mS=e=>(0,to.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:[(0,to.jsx)("path",{fillRule:"evenodd",d:"M1.09 1.09a2.7 2.7 0 1 1 3.818 3.818 2.7 2.7 0 0 1-3.817-3.817m1.63.64 1.55 1.55q.03-.135.03-.28a1.3 1.3 0 0 0-1.58-1.27m.56 2.54L1.73 2.72q-.03.135-.03.28a1.3 1.3 0 0 0 1.58 1.27",clipRule:"evenodd"}),(0,to.jsx)("path",{d:"M2.7 5.985a3 3 0 0 1-1.4-.513v3.552c0 .446 0 .815.02 1.118.022.315.068.608.186.891a2.7 2.7 0 0 0 1.46 1.462c.284.117.577.163.892.184.303.021.672.021 1.118.021H5c.36 0 .426.005.479.017a.6.6 0 0 1 .26.13c.042.035.085.086.301.373l.985 1.313c.062.083.133.178.202.254.076.085.204.212.398.287.241.094.509.094.75 0 .194-.075.322-.202.398-.287.069-.076.14-.171.202-.254l.985-1.313c.216-.287.259-.338.3-.373a.6.6 0 0 1 .261-.13c.053-.013.12-.017.479-.017h.024c.446 0 .815 0 1.118-.02.315-.022.608-.068.891-.185a2.7 2.7 0 0 0 1.462-1.462c.117-.283.163-.576.184-.89.021-.304.021-.673.021-1.12V5.172c0-.535 0-.98-.03-1.342-.03-.376-.097-.726-.264-1.055a2.7 2.7 0 0 0-1.18-1.18c-.33-.167-.679-.234-1.055-.264-.363-.03-.807-.03-1.342-.03H5.472c.28.406.462.884.513 1.4H10.8c.572 0 .958 0 1.257.025.29.024.434.066.533.117a1.3 1.3 0 0 1 .568.568c.05.099.093.243.117.533.024.299.025.685.025 1.257V9c0 .476 0 .797-.017 1.047-.017.243-.047.366-.082.45a1.3 1.3 0 0 1-.703.704c-.085.035-.208.065-.451.082-.25.017-.572.017-1.047.017h-.057c-.27 0-.51 0-.743.054a2 2 0 0 0-.836.418c-.184.154-.329.347-.49.562L8 13.5l-.874-1.166c-.161-.215-.306-.408-.49-.562a2 2 0 0 0-.836-.418c-.232-.054-.474-.054-.743-.054H5c-.476 0-.797 0-1.047-.017-.243-.017-.366-.047-.45-.082a1.3 1.3 0 0 1-.704-.703c-.035-.085-.065-.208-.082-.451A17 17 0 0 1 2.7 9z"}),(0,to.jsx)("path",{fillRule:"evenodd",d:"M8.528 4.34a1.5 1.5 0 0 1 .419.174c.15.091.272.214.373.316l.027.026.797.798.026.026c.102.101.225.224.316.373a1.4 1.4 0 0 1 .174.42c.04.17.04.343.04.486v1.864c0 .19 0 .373-.012.527a1.5 1.5 0 0 1-.146.558 1.45 1.45 0 0 1-.634.634c-.195.1-.39.132-.558.145-.154.013-.337.013-.527.013H7.177c-.19 0-.373 0-.527-.013a1.5 1.5 0 0 1-.558-.145 1.45 1.45 0 0 1-.634-.634c-.1-.195-.132-.39-.145-.558-.013-.154-.013-.337-.013-.527V6.177c0-.19 0-.373.013-.527.013-.168.046-.363.145-.558a1.45 1.45 0 0 1 .634-.634c.195-.1.39-.132.558-.145.154-.013.337-.013.527-.013h.864c.143 0 .317 0 .487.04m.767 2.45.002.001-.004-.006zM9.3 8.8V7.2h-.413c-.058 0-.137 0-.208-.006a1 1 0 0 1-.36-.098.95.95 0 0 1-.415-.415 1 1 0 0 1-.098-.36C7.8 6.25 7.8 6.171 7.8 6.113V5.7h-.6c-.222 0-.346 0-.436.008l-.048.005-.003.003-.005.048A6 6 0 0 0 6.7 6.2v2.6c0 .222 0 .346.008.436l.005.048.003.003.048.005c.09.007.214.008.436.008h1.6c.222 0 .346 0 .436-.008l.048-.005.003-.003.005-.048c.008-.09.008-.214.008-.436",clipRule:"evenodd"})]}),mD=e=>(0,to.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:[(0,to.jsx)("path",{fillRule:"evenodd",d:"M1.09 1.09a2.7 2.7 0 1 1 3.818 3.818 2.7 2.7 0 0 1-3.817-3.817m1.63.64 1.55 1.55q.03-.135.03-.28a1.3 1.3 0 0 0-1.58-1.27m.56 2.54L1.73 2.72q-.03.135-.03.28a1.3 1.3 0 0 0 1.58 1.27",clipRule:"evenodd"}),(0,to.jsx)("path",{d:"M2.7 5.985a3 3 0 0 1-1.4-.513v3.552c0 .446 0 .815.02 1.118.022.315.068.608.186.891a2.7 2.7 0 0 0 1.46 1.462c.284.117.577.163.892.184.303.021.672.021 1.118.021H5c.36 0 .426.005.479.017a.6.6 0 0 1 .26.13c.042.035.085.086.301.373l.985 1.313c.062.083.133.178.202.254.076.085.204.212.398.287.241.094.509.094.75 0 .194-.075.322-.202.398-.287.069-.076.14-.171.202-.254l.985-1.313c.216-.287.259-.338.3-.373a.6.6 0 0 1 .261-.13c.053-.013.12-.017.479-.017h.024c.446 0 .815 0 1.118-.02.315-.022.608-.068.891-.185a2.7 2.7 0 0 0 1.462-1.462c.117-.283.163-.576.184-.89.021-.304.021-.673.021-1.12V5.172c0-.535 0-.98-.03-1.342-.03-.376-.097-.726-.264-1.055a2.7 2.7 0 0 0-1.18-1.18c-.33-.167-.679-.234-1.055-.264-.363-.03-.807-.03-1.342-.03H5.472c.28.406.462.884.513 1.4H10.8c.572 0 .958 0 1.257.025.29.024.434.066.533.117a1.3 1.3 0 0 1 .568.568c.05.099.093.243.117.533.024.299.025.685.025 1.257V9c0 .476 0 .797-.017 1.047-.017.243-.047.366-.082.45a1.3 1.3 0 0 1-.703.704c-.085.035-.208.065-.451.082-.25.017-.572.017-1.047.017h-.057c-.27 0-.51 0-.743.054a2 2 0 0 0-.836.418c-.184.154-.329.347-.49.562L8 13.5l-.874-1.166c-.161-.215-.306-.408-.49-.562a2 2 0 0 0-.836-.418c-.232-.054-.474-.054-.743-.054H5c-.476 0-.797 0-1.047-.017-.243-.017-.366-.047-.45-.082a1.3 1.3 0 0 1-.704-.703c-.035-.085-.065-.208-.082-.451A17 17 0 0 1 2.7 9z"}),(0,to.jsx)("path",{fillRule:"evenodd",d:"M6.42 5.25c-.235 0-.443 0-.615.01-.18.01-.375.034-.57.105a1.57 1.57 0 0 0-.747.55c-.15.21-.2.427-.22.606a4 4 0 0 0-.018.48v.997c0 .156 0 .33.017.48.02.18.071.398.22.607.192.268.467.447.748.55.195.07.39.094.57.105.172.01.38.01.615.01h1.66c.235 0 .443 0 .615-.01.18-.01.375-.034.57-.105a1.57 1.57 0 0 0 .747-.55q.075-.106.12-.212l.034.025c.053.037.124.088.19.128a.932.932 0 0 0 1.088-.068.85.85 0 0 0 .296-.558c.01-.086.01-.18.01-.23V6.83c0-.049 0-.143-.01-.229a.85.85 0 0 0-.295-.558.93.93 0 0 0-1.088-.068c-.066.04-.138.09-.19.128l-.035.025a1 1 0 0 0-.12-.212 1.57 1.57 0 0 0-.747-.55 2 2 0 0 0-.57-.105c-.172-.01-.38-.01-.615-.01zm2.33 1.779v.942l-.001.222-.001.033a1 1 0 0 1-.14.017c-.124.007-.287.007-.548.007H6.44c-.26 0-.424 0-.547-.007a1 1 0 0 1-.14-.017l-.002-.033-.001-.222V7.03l.001-.222.001-.033a1 1 0 0 1 .14-.017c.124-.007.287-.007.548-.007h1.62c.26 0 .424 0 .547.007a1 1 0 0 1 .14.017l.002.033z",clipRule:"evenodd"})]}),mE=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.3,d:"M5.333 4.667h5.334M8 4.667v6.666M5.2 14h5.6c1.12 0 1.68 0 2.108-.218a2 2 0 0 0 .874-.874C14 12.48 14 11.92 14 10.8V5.2c0-1.12 0-1.68-.218-2.108a2 2 0 0 0-.874-.874C12.48 2 11.92 2 10.8 2H5.2c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874C2 3.52 2 4.08 2 5.2v5.6c0 1.12 0 1.68.218 2.108a2 2 0 0 0 .874.874C3.52 14 4.08 14 5.2 14"})}),mM=e=>(0,to.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,to.jsx)("path",{fill:"currentColor",d:"M4.667 9.667v2zM7.667 7.667v4zM10.667 5.667v6zM13.667 3.667v8z"}),(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M14 14H4.133c-.746 0-1.12 0-1.405-.145a1.33 1.33 0 0 1-.583-.583C2 12.987 2 12.613 2 11.867V2m2.667 7.667v2m3-4v4m3-6v6m3-8v8"})]}),mI=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 17 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M14.714 13.333h-2.266c-2.24 0-3.36 0-4.216-.436a4 4 0 0 1-1.748-1.748c-.436-.855-.436-1.975-.436-4.216V2.667m0 0L9.38 6M6.048 2.667 2.714 6"})}),mL=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsxs)("g",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,clipPath:"url(#requires_inline_svg__clip0_723_2293)",children:[(0,to.jsx)("path",{d:"M6 10.667a4.667 4.667 0 1 0 0-9.334 4.667 4.667 0 0 0 0 9.334"}),(0,to.jsx)("path",{d:"M10 14.667a4.667 4.667 0 1 0 0-9.334 4.667 4.667 0 0 0 0 9.334"})]})}),mP=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:1.4,d:"M5.333 10H2m0 0V6.667M2 10l2-2c3.333-3.333 8-2.167 10 1"})}),mN=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 17 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M6.714 9.333 3.381 6m0 0 3.333-3.333M3.381 6h4.267c2.24 0 3.36 0 4.216.436a4 4 0 0 1 1.748 1.748c.436.856.436 1.976.436 4.216v.933"})}),mA=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 18 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:1.4,d:"M16.542 8H8.115m-3.55 2.78H2.942m1.623-2.682H1.342m3.223-2.682H2.942m4.471-2.352 8.837 4.285a.724.724 0 0 1 0 1.302l-8.837 4.285c-.605.294-1.249-.325-.979-.942l1.62-3.704a.72.72 0 0 0 0-.58l-1.62-3.704c-.27-.617.374-1.236.98-.942Z"})}),mR=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M4.667 2v2.267c0 .373 0 .56.072.702a.67.67 0 0 0 .292.292c.142.072.329.072.702.072h4.534c.373 0 .56 0 .702-.072a.67.67 0 0 0 .292-.292c.072-.142.072-.329.072-.702v-1.6m0 11.333V9.733c0-.373 0-.56-.072-.702a.67.67 0 0 0-.292-.292c-.142-.072-.329-.072-.702-.072H5.733c-.373 0-.56 0-.702.072a.67.67 0 0 0-.292.292c-.072.142-.072.329-.072.702V14M14 6.217V10.8c0 1.12 0 1.68-.218 2.108a2 2 0 0 1-.874.874C12.48 14 11.92 14 10.8 14H5.2c-1.12 0-1.68 0-2.108-.218a2 2 0 0 1-.874-.874C2 12.48 2 11.92 2 10.8V5.2c0-1.12 0-1.68.218-2.108a2 2 0 0 1 .874-.874C3.52 2 4.08 2 5.2 2h4.583c.326 0 .49 0 .643.037q.205.05.385.16c.135.082.25.197.48.428l2.084 2.084c.23.23.346.345.428.48q.11.181.16.385c.037.154.037.317.037.643"})}),mO=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M14 6.667H2m8.667-5.334V4M5.333 1.333V4M6 10.667 7.333 12l3-3M5.2 14.667h5.6c1.12 0 1.68 0 2.108-.218a2 2 0 0 0 .874-.874c.218-.428.218-.988.218-2.108v-5.6c0-1.12 0-1.68-.218-2.108a2 2 0 0 0-.874-.874c-.428-.218-.988-.218-2.108-.218H5.2c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874C2 4.187 2 4.747 2 5.867v5.6c0 1.12 0 1.68.218 2.108a2 2 0 0 0 .874.874c.428.218.988.218 2.108.218"})}),mB=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.3,d:"m14 14-4-4m1.333-3.333a4.667 4.667 0 1 1-9.333 0 4.667 4.667 0 0 1 9.333 0"})}),mF=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("g",{clipPath:"url(#segment-tagging_inline_svg__clip0_723_2317)",children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M10.667 3.333 12 4.667 14.667 2m0 6v3.467c0 1.12 0 1.68-.218 2.108a2 2 0 0 1-.874.874c-.428.218-.988.218-2.108.218H4.533c-1.12 0-1.68 0-2.108-.218a2 2 0 0 1-.874-.874c-.218-.428-.218-.988-.218-2.108V4.533c0-1.12 0-1.68.218-2.108a2 2 0 0 1 .874-.874c.428-.218.988-.218 2.108-.218H8M1.43 13.284A2.67 2.67 0 0 1 4 11.334h4.667c.619 0 .929 0 1.186.05a2.67 2.67 0 0 1 2.096 2.096c.05.257.05.567.05 1.187M9.334 6.333a2.667 2.667 0 1 1-5.333 0 2.667 2.667 0 0 1 5.333 0"})})}),m_=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeOpacity:.6,strokeWidth:1.3,d:"M7 8H3.334m-.057.194-1.556 4.65c-.123.365-.184.548-.14.66.038.098.12.172.22.2.117.033.293-.046.644-.204l11.141-5.014c.343-.154.515-.231.567-.338a.33.33 0 0 0 0-.296c-.053-.107-.224-.184-.567-.339L2.441 2.499c-.35-.157-.525-.236-.641-.204a.33.33 0 0 0-.221.2c-.044.112.016.294.137.659l1.562 4.704c.02.062.03.094.035.126a.3.3 0 0 1 0 .085c-.004.032-.015.064-.036.126"})}),mz=e=>(0,to.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,to.jsx)("path",{stroke:"currentColor",strokeWidth:1.2,d:"M14.123 2.667H1.878c-.301 0-.545.243-.545.544v9.578c0 .3.244.544.545.544h12.245c.3 0 .544-.243.544-.544V3.211c0-.3-.244-.544-.544-.544Z"}),(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.2,d:"M5.333 6.316c-.666-.983-1.834-.337-1.75.674C3.667 8 5 8 5.083 9.01c.084 1.01-1.083 1.657-1.75.674M8.667 6H7.333v4.333h1.334M7.333 8.333h1.334M12.667 7a1 1 0 0 0-2 0v2.333a1 1 0 1 0 2 0z"})]}),mV=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsxs)("g",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,clipPath:"url(#settings_inline_svg__clip0_723_2314)",children:[(0,to.jsx)("path",{d:"M8 10a2 2 0 1 0 0-4 2 2 0 0 0 0 4"}),(0,to.jsx)("path",{d:"M12.485 9.818a1 1 0 0 0 .2 1.103l.036.037a1.212 1.212 0 1 1-1.715 1.715l-.036-.037a1 1 0 0 0-1.103-.2 1 1 0 0 0-.606.915v.104a1.212 1.212 0 0 1-2.425 0V13.4a1 1 0 0 0-.654-.915 1 1 0 0 0-1.103.2l-.037.036a1.212 1.212 0 1 1-1.715-1.715l.037-.036a1 1 0 0 0 .2-1.103 1 1 0 0 0-.916-.606h-.103a1.212 1.212 0 0 1 0-2.425H2.6a1 1 0 0 0 .915-.654 1 1 0 0 0-.2-1.103l-.036-.037a1.212 1.212 0 1 1 1.715-1.715l.036.037a1 1 0 0 0 1.103.2h.049a1 1 0 0 0 .606-.916v-.103a1.212 1.212 0 0 1 2.424 0V2.6a1 1 0 0 0 .606.915 1 1 0 0 0 1.103-.2l.037-.036a1.21 1.21 0 0 1 1.978.393 1.21 1.21 0 0 1-.263 1.322l-.037.036a1 1 0 0 0-.2 1.103v.049a1 1 0 0 0 .915.606h.103a1.212 1.212 0 1 1 0 2.424H13.4a1 1 0 0 0-.915.606"})]})}),m$=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 14 14",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.3,d:"M12.25 5.25v-3.5m0 0h-3.5m3.5 0L7 7M5.833 1.75H4.55c-.98 0-1.47 0-1.844.19a1.75 1.75 0 0 0-.765.766c-.191.374-.191.864-.191 1.844v4.9c0 .98 0 1.47.19 1.845.169.329.436.597.766.764.374.191.864.191 1.844.191h4.9c.98 0 1.47 0 1.845-.19a1.75 1.75 0 0 0 .764-.766c.191-.374.191-.864.191-1.844V8.167"})}),mW=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"m12.667 14-2-2m0 0 2-2m-2 2h4m-4.334-9.806a2.668 2.668 0 0 1 0 4.945M8 10H5.333c-1.242 0-1.863 0-2.353.203-.654.27-1.173.79-1.444 1.443-.203.49-.203 1.111-.203 2.354M9 4.667a2.667 2.667 0 1 1-5.333 0 2.667 2.667 0 0 1 5.333 0"})}),mH=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M8 9.667v-4m-2 2h4M13.333 8c0 3.273-3.569 5.653-4.868 6.41-.147.086-.221.13-.325.152a.8.8 0 0 1-.28 0c-.104-.023-.178-.066-.325-.152-1.299-.758-4.868-3.137-4.868-6.41V4.812c0-.533 0-.8.087-1.029.077-.202.202-.383.364-.526.184-.162.434-.255.933-.443l3.574-1.34c.14-.052.208-.078.28-.088a.7.7 0 0 1 .19 0c.072.01.14.036.28.088l3.574 1.34c.5.188.749.281.933.443.162.143.287.324.364.526.087.23.087.496.087 1.029z"})}),mG=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M7.535 14.41c.147.086.221.13.325.151.081.018.199.018.28 0 .104-.022.178-.065.325-.151 1.299-.758 4.868-3.138 4.868-6.41V5.467c0-.716 0-1.074-.11-1.328a1.16 1.16 0 0 0-.454-.558c-.226-.16-.67-.252-1.557-.437a5.7 5.7 0 0 1-2.416-1.102c-.329-.254-.494-.382-.622-.417a.56.56 0 0 0-.348 0c-.128.035-.293.163-.622.417a5.7 5.7 0 0 1-2.416 1.102c-.887.185-1.33.277-1.557.437-.23.162-.342.3-.454.558-.11.254-.11.612-.11 1.328V8c0 3.272 3.569 5.652 4.868 6.41"})}),mU=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.3,d:"M9.333 6.667 14 2m0 0h-4m4 0v4M6.667 9.333 2 14m0 0h4m-4 0v-4"})}),mq=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 17 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M9.5 2H6.3c-.747 0-1.12 0-1.405.145-.251.128-.455.332-.583.583-.145.285-.145.659-.145 1.405v7.734c0 .746 0 1.12.145 1.405.128.25.332.455.583.583.284.145.658.145 1.403.145h5.07c.746 0 1.119 0 1.404-.145.25-.128.455-.332.583-.583.145-.285.145-.658.145-1.403V6m-4-4c.19.002.31.01.426.037q.205.05.385.16c.135.082.25.198.48.428l2.084 2.084c.23.23.346.345.428.48q.11.181.16.385c.028.115.035.236.036.426M9.5 2v1.867c0 .746 0 1.12.145 1.405.128.25.332.455.583.583.285.145.658.145 1.403.145H13.5m0 0h.001m-3.333 2.667L11.5 10l-1.333 1.333m-2.667 0L6.167 10 7.5 8.667"})}),mZ=e=>(0,to.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 14 14",...e,children:[(0,to.jsx)("circle",{cx:2.8,cy:2.8,r:2.8,opacity:.5}),(0,to.jsx)("circle",{cx:2.8,cy:11.2,r:2.8}),(0,to.jsx)("circle",{cx:11.2,cy:2.8,r:2.8,opacity:.3}),(0,to.jsx)("circle",{cx:11.2,cy:11.2,r:2.8,opacity:.6})]}),mK=e=>(0,to.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:1.3,d:"M2 5V2.3c0-.166.14-.3.313-.3h4.374C6.86 2 7 2.134 7 2.3v11.4c0 .166-.14.3-.312.3H2.313A.306.306 0 0 1 2 13.7V11M14 11v2.7c0 .166-.14.3-.312.3H9.311A.306.306 0 0 1 9 13.7V2.3c0-.166.14-.3.313-.3h4.374c.173 0 .313.134.313.3V5M9 8h5M2 8h5"}),(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.3,d:"m12 10 .667-.667L14 8l-1.333-1.333L12 6M4 10l-.667-.667L2 8l1.333-1.333L4 6"})]}),mJ=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("g",{clipPath:"url(#style_inline_svg__clip0_723_2279)",children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"m8.667 9.333-2-2m3.34-5v-1m2.626 2.04.707-.706m-.707 6 .707.707m-6-6-.707-.707M13.673 6h1M4.089 13.912l6.158-6.158c.264-.264.396-.396.445-.548a.67.67 0 0 0 0-.412c-.05-.152-.181-.284-.445-.548l-.492-.492c-.264-.264-.396-.396-.548-.445a.67.67 0 0 0-.412 0c-.152.05-.284.181-.548.445l-6.158 6.158c-.264.264-.396.396-.446.549a.67.67 0 0 0 0 .412c.05.152.182.284.446.548l.491.491c.264.264.396.396.548.446a.67.67 0 0 0 .412 0c.153-.05.285-.182.549-.446"})})}),mX=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M14 7.333 8.937 2.271c-.346-.346-.519-.52-.72-.643a2 2 0 0 0-.579-.24c-.23-.055-.474-.055-.963-.055H4M2 5.8v1.316c0 .326 0 .49.037.643q.05.205.16.385c.082.135.197.25.428.48l5.2 5.2c.528.529.792.793 1.096.892.268.087.557.087.824 0 .305-.1.569-.363 1.097-.891l1.65-1.65c.527-.528.791-.792.89-1.096a1.33 1.33 0 0 0 0-.824c-.098-.305-.362-.569-.89-1.097L7.625 4.292c-.23-.231-.346-.346-.48-.429a1.3 1.3 0 0 0-.386-.16c-.153-.036-.317-.036-.643-.036H4.133c-.746 0-1.12 0-1.405.145-.25.128-.455.332-.583.583C2 4.68 2 5.053 2 5.8"})}),mQ=e=>(0,to.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M7.172 2H4a2 2 0 0 0-2 2v3.172a2 2 0 0 0 .586 1.414l3.96 3.96a3 3 0 0 0 4.242 0l1.757-1.758a3 3 0 0 0 0-4.243l-3.96-3.96A2 2 0 0 0 7.173 2"}),(0,to.jsx)("circle",{cx:5,cy:5,r:1,fill:"currentColor"})]}),mY=e=>(0,to.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,to.jsx)("circle",{cx:8,cy:8,r:1.5,stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5}),(0,to.jsx)("circle",{cx:8,cy:8,r:4.5,stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5}),(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M8 3.5V2M12.5 8H14M8 12.5V14M3.5 8H2"})]}),m0=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("g",{clipPath:"url(#tax-class_inline_svg__clip0_1012_1696)",children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M5.667 9.778c0 .859.696 1.555 1.555 1.555h1.445a1.667 1.667 0 1 0 0-3.333H7.333a1.667 1.667 0 0 1 0-3.333h1.445c.859 0 1.555.696 1.555 1.555M8 3.667v1m0 6.666v1M14.667 8A6.667 6.667 0 1 1 1.333 8a6.667 6.667 0 0 1 13.334 0"})})}),m1=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M2.667 4.667c0-.622 0-.932.101-1.177.135-.327.395-.586.722-.722.245-.101.555-.101 1.177-.101h6.666c.622 0 .932 0 1.177.101.327.136.587.395.722.722.101.245.101.555.101 1.177M6 13.333h4M8 2.667v10.666"})}),m2=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M8 10.667 10.667 8m0 0L8 5.333M10.667 8H5.333M5.2 14h5.6c1.12 0 1.68 0 2.108-.218a2 2 0 0 0 .874-.874C14 12.48 14 11.92 14 10.8V5.2c0-1.12 0-1.68-.218-2.108a2 2 0 0 0-.874-.874C12.48 2 11.92 2 10.8 2H5.2c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874C2 3.52 2 4.08 2 5.2v5.6c0 1.12 0 1.68.218 2.108a2 2 0 0 0 .874.874C3.52 14 4.08 14 5.2 14"})}),m3=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsxs)("g",{clipPath:"url(#translate_inline_svg__clip0_723_2351)",children:[(0,to.jsx)("path",{fill:"#fff",fillOpacity:.01,d:"M16 0H0v16h16z"}),(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M9.429 12.333h3.81M14 14l-.762-1.667zm-5.333 0 .762-1.667zm.762-1.667L11.333 8l1.905 4.333zM5.333 2l.334 1M2 3.667h7.333M3.333 5.333S3.93 7.42 5.421 8.58s3.912 2.087 3.912 2.087"}),(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M8 3.667s-.596 2.739-2.088 4.26C4.422 9.45 2 10.668 2 10.668"})]})}),m6=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M6 2h4M2 4h12m-1.333 0-.468 7.013c-.07 1.052-.105 1.578-.332 1.977a2 2 0 0 1-.866.81c-.413.2-.94.2-1.995.2H6.994c-1.055 0-1.582 0-1.995-.2a2 2 0 0 1-.866-.81c-.227-.399-.262-.925-.332-1.977L3.333 4"})}),m4=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeOpacity:.88,strokeWidth:1.4,d:"M2 2v6.8c0 1.12 0 1.68.218 2.108a2 2 0 0 0 .874.874C3.52 12 4.08 12 5.2 12H10m0 0a2 2 0 1 0 4 0 2 2 0 0 0-4 0M2 5.333h8m0 0a2 2 0 1 0 4 0 2 2 0 0 0-4 0"})}),m8=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M9.333 7.333h-4M6.667 10H5.333m5.334-5.333H5.333m8-.134v6.934c0 1.12 0 1.68-.218 2.108a2 2 0 0 1-.874.874c-.428.218-.988.218-2.108.218H5.867c-1.12 0-1.68 0-2.108-.218a2 2 0 0 1-.874-.874c-.218-.428-.218-.988-.218-2.108V4.533c0-1.12 0-1.68.218-2.108a2 2 0 0 1 .874-.874c.428-.218.988-.218 2.108-.218h4.266c1.12 0 1.68 0 2.108.218a2 2 0 0 1 .874.874c.218.428.218.988.218 2.108"})}),m7=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M13.333 6.333v-1.8c0-1.12 0-1.68-.218-2.108a2 2 0 0 0-.874-.874c-.428-.218-.988-.218-2.108-.218H5.867c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874c-.218.428-.218.988-.218 2.108v6.934c0 1.12 0 1.68.218 2.108a2 2 0 0 0 .874.874c.428.218.988.218 2.108.218h3.466m0-7.334h-4M6.667 10H5.333m5.334-5.333H5.333M11 10.002a1.499 1.499 0 0 1 2.913.5c0 .998-1.5 1.498-1.5 1.498m.02 2h.007"})}),m5=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M4.667 6.667V5.333A3.333 3.333 0 0 1 11.056 4M8 9.667V11m-2.133 3h4.266c1.12 0 1.68 0 2.108-.218a2 2 0 0 0 .874-.874c.218-.428.218-.988.218-2.108v-.933c0-1.12 0-1.68-.218-2.108a2 2 0 0 0-.874-.874c-.428-.218-.988-.218-2.108-.218H5.867c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874c-.218.428-.218.988-.218 2.108v.933c0 1.12 0 1.68.218 2.108a2 2 0 0 0 .874.874c.428.218.988.218 2.108.218"})}),m9=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M2.667 10.828a3 3 0 0 1 1.387-5.482 4.001 4.001 0 0 1 7.893 0 3 3 0 0 1 1.386 5.482m-8-.161L8 8m0 0 2.667 2.667M8 8v6"})}),pe=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 14 14",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M13 9v.8c0 1.12 0 1.68-.218 2.108a2 2 0 0 1-.874.874C11.48 13 10.92 13 9.8 13H4.2c-1.12 0-1.68 0-2.108-.218a2 2 0 0 1-.874-.874C1 11.48 1 10.92 1 9.8V9m9.333-4.667L7 1m0 0L3.667 4.333M7 1v8"})}),pt=e=>(0,to.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,to.jsx)("path",{fill:"currentColor",d:"M5.852 1h4.296c.548 0 .979 0 1.326.028.354.03.65.09.919.226.439.224.796.581 1.02 1.02.136.269.196.564.225.919.029.347.029.778.029 1.326v3.814a.333.333 0 0 1-.667 0v-3.8c0-.565 0-.97-.026-1.286-.026-.313-.075-.511-.156-.67a1.67 1.67 0 0 0-.728-.729c-.16-.08-.357-.13-.67-.155-.317-.026-.721-.026-1.287-.026h-3.8V3h1a.333.333 0 1 1 0 .667h-1V5h1a.333.333 0 1 1 0 .667h-1v1a.333.333 0 1 1-.666 0v-1h-1a.333.333 0 1 1 0-.667h1V3.667h-1a.333.333 0 1 1 0-.667h1V1.667c-.463 0-.809.003-1.087.026-.313.025-.51.074-.67.155-.314.16-.569.415-.728.729-.081.159-.13.357-.156.67C3 3.564 3 3.967 3 4.533v6.934c0 .565 0 .97.026 1.286.026.313.075.511.156.67.16.314.414.569.728.729.16.08.357.13.67.155.317.026.721.026 1.287.026h2.466a.333.333 0 0 1 0 .667H5.852c-.548 0-.979 0-1.326-.028-.354-.03-.65-.09-.919-.226a2.33 2.33 0 0 1-1.02-1.02c-.136-.269-.196-.565-.225-.919-.029-.347-.029-.778-.029-1.325V4.519c0-.548 0-.98.029-1.326.029-.355.089-.65.226-.919.223-.439.58-.796 1.02-1.02.268-.137.564-.197.918-.226C4.873 1 5.304 1 5.852 1"}),(0,to.jsx)("path",{fill:"currentColor",d:"M11.333 15a.333.333 0 0 1-.333-.333V11.47l-1.43 1.431a.333.333 0 0 1-.472-.471l2-2c.13-.13.34-.13.471 0l2 2a.333.333 0 1 1-.471.471l-1.431-1.43v3.195c0 .184-.15.333-.334.333"}),(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:.6,d:"M5.852 1h4.296c.548 0 .979 0 1.326.028.354.03.65.09.919.226.439.224.796.581 1.02 1.02.136.269.196.564.225.919.029.347.029.778.029 1.326v3.814a.333.333 0 0 1-.667 0v-3.8c0-.565 0-.97-.026-1.286-.026-.313-.075-.511-.156-.67a1.67 1.67 0 0 0-.728-.729c-.16-.08-.357-.13-.67-.155-.317-.026-.721-.026-1.287-.026h-3.8V3h1a.333.333 0 1 1 0 .667h-1V5h1a.333.333 0 1 1 0 .667h-1v1a.333.333 0 1 1-.666 0v-1h-1a.333.333 0 1 1 0-.667h1V3.667h-1a.333.333 0 1 1 0-.667h1V1.667c-.463 0-.809.003-1.087.026-.313.025-.51.074-.67.155-.314.16-.569.415-.728.729-.081.159-.13.357-.156.67C3 3.564 3 3.967 3 4.533v6.934c0 .565 0 .97.026 1.286.026.313.075.511.156.67.16.314.414.569.728.729.16.08.357.13.67.155.317.026.721.026 1.287.026h2.466a.333.333 0 0 1 0 .667H5.852c-.548 0-.979 0-1.326-.028-.354-.03-.65-.09-.919-.226a2.33 2.33 0 0 1-1.02-1.02c-.136-.269-.196-.565-.225-.919-.029-.347-.029-.778-.029-1.325V4.519c0-.548 0-.98.029-1.326.029-.355.089-.65.226-.919.223-.439.58-.796 1.02-1.02.268-.137.564-.197.918-.226C4.873 1 5.304 1 5.852 1"}),(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:.6,d:"M11.333 15a.333.333 0 0 1-.333-.333V11.47l-1.43 1.431a.333.333 0 0 1-.472-.471l2-2c.13-.13.34-.13.471 0l2 2a.333.333 0 1 1-.471.471l-1.431-1.43v3.195c0 .184-.15.333-.334.333"})]}),pi=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("g",{clipPath:"url(#user-select_inline_svg__clip0_1242_1692)",children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M3.333 13.727c.352.106.827.106 1.634.106h6.066c.807 0 1.282 0 1.634-.106m-9.334 0a1.3 1.3 0 0 1-.21-.084 1.75 1.75 0 0 1-.766-.765c-.19-.374-.19-.865-.19-1.845V4.967c0-.98 0-1.47.19-1.845a1.75 1.75 0 0 1 .765-.765c.375-.19.865-.19 1.845-.19h6.066c.98 0 1.47 0 1.845.19.33.168.597.436.765.765.19.375.19.865.19 1.845v6.066c0 .98 0 1.47-.19 1.845a1.75 1.75 0 0 1-.765.765 1.3 1.3 0 0 1-.211.084m-9.334 0c0-.472.003-.722.045-.932a2.33 2.33 0 0 1 1.833-1.834c.226-.044.497-.044 1.039-.044h3.5c.542 0 .813 0 1.039.044.925.185 1.649.908 1.833 1.834.042.21.044.46.045.932m-2.334-7.185a2.333 2.333 0 1 1-4.666 0 2.333 2.333 0 0 1 4.666 0"})})}),pn=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M13.333 14c0-.93 0-1.396-.114-1.774a2.67 2.67 0 0 0-1.778-1.778c-.379-.115-.844-.115-1.774-.115H6.333c-.93 0-1.395 0-1.774.115a2.67 2.67 0 0 0-1.778 1.778c-.114.378-.114.844-.114 1.774M11 5a3 3 0 1 1-6 0 3 3 0 0 1 6 0"})}),pr=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M11 10.667 14.333 14m0-3.333L11 14m-.667-11.806a2.668 2.668 0 0 1 0 4.945M8 10H5.333c-1.242 0-1.864 0-2.354.203-.653.27-1.172.79-1.443 1.443-.203.49-.203 1.111-.203 2.354M9 4.667a2.667 2.667 0 1 1-5.333 0 2.667 2.667 0 0 1 5.333 0"})}),pa=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 14",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M7.08 11c-1.009 0-4.712 0-5.097-.204a1.84 1.84 0 0 1-.787-.82C1 9.576 1 9.05 1 8V4c0-1.05 0-1.575.196-1.976a1.84 1.84 0 0 1 .787-.82C2.368 1 2.873 1 3.88 1h6.24c1.008 0 1.512 0 1.897.204.34.18.615.467.787.82.195.4.195 3.404.195 4.464V6.5M1.196 2.875 5.688 6.01c.397.29.595.434.811.49.19.05.39.05.58 0 .216-.056.415-.2.811-.49l4.81-3.135m-2.022 7.71-.616 2.035c-.049.16-.073.24-.056.29a.14.14 0 0 0 .088.087c.046.014.116-.02.255-.09l4.413-2.194c.135-.067.203-.101.224-.148a.16.16 0 0 0 0-.13c-.02-.046-.089-.08-.225-.148l-4.414-2.195c-.138-.069-.208-.103-.254-.089a.14.14 0 0 0-.087.087c-.018.05.006.13.054.289l.618 2.059a.3.3 0 0 1 .014.055.2.2 0 0 1 0 .037.3.3 0 0 1-.014.055"})}),pl=e=>(0,to.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M14.667 5.954c0-.404 0-.606-.08-.7a.33.33 0 0 0-.28-.115c-.122.01-.265.153-.55.438L11.332 8l2.423 2.423c.286.286.429.428.551.438a.33.33 0 0 0 .28-.116c.08-.093.08-.295.08-.7z"}),(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M1.333 6.533c0-1.12 0-1.68.218-2.108a2 2 0 0 1 .874-.874c.428-.218.988-.218 2.108-.218h3.6c1.12 0 1.68 0 2.108.218a2 2 0 0 1 .874.874c.218.428.218.988.218 2.108v2.934c0 1.12 0 1.68-.218 2.108a2 2 0 0 1-.874.874c-.428.218-.988.218-2.108.218h-3.6c-1.12 0-1.68 0-2.108-.218a2 2 0 0 1-.874-.874c-.218-.428-.218-.988-.218-2.108z"})]}),po=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.3,d:"M12.667 14h.673c.648 0 .971 0 1.15-.135a.67.67 0 0 0 .263-.492c.014-.223-.166-.493-.525-1.031l-2.007-3.01c-.297-.446-.445-.668-.632-.746a.67.67 0 0 0-.511 0c-.187.078-.335.3-.632.745l-.496.745M12.667 14 7.544 6.6c-.295-.425-.442-.638-.626-.713a.67.67 0 0 0-.502 0c-.184.075-.332.288-.626.713l-3.965 5.726c-.375.542-.563.813-.552 1.039.01.196.105.378.261.498.18.137.51.137 1.168.137zM14 4a2 2 0 1 1-4 0 2 2 0 0 1 4 0"})}),ps=e=>(0,to.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M8 4.667v4M14 8A6 6 0 1 1 2 8a6 6 0 0 1 12 0"}),(0,to.jsx)("circle",{cx:8,cy:11,r:.667,fill:"currentColor"})]}),pd=e=>(0,to.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M8 13.333H2.333a1 1 0 0 1-1-1V3.667a1 1 0 0 1 1-1h11.334a1 1 0 0 1 1 1v4.02"}),(0,to.jsx)("path",{stroke:"currentColor",strokeWidth:1.4,d:"M1.333 3.667a1 1 0 0 1 1-1h11.334a1 1 0 0 1 1 1v3H1.333z"}),(0,to.jsx)("path",{fill:"currentColor",d:"M2.667 4.667a.667.667 0 1 1 1.333 0 .667.667 0 0 1-1.333 0M4.667 4.667a.667.667 0 1 1 1.333 0 .667.667 0 0 1-1.333 0"}),(0,to.jsx)("path",{stroke:"currentColor",strokeWidth:1.4,d:"M12.333 12.333a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z"}),(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M12.333 13.667v-1.334M12.333 10.333V9M10.313 12.5l1.154-.667M13.2 10.833l1.154-.666M10.313 10.167l1.154.666M13.2 11.833l1.154.667"})]}),pf=e=>(0,to.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:[(0,to.jsx)("path",{fillRule:"evenodd",d:"M12.576 8.466a.539.539 0 0 1 .54-.932A3.769 3.769 0 1 1 7.5 11.336H4.77a.539.539 0 0 1 0-1.077h3.223a.54.54 0 0 1 .545.539 2.694 2.694 0 0 0 2.693 2.692 2.694 2.694 0 0 0 1.345-5.024",clipRule:"evenodd"}),(0,to.jsx)("path",{fillRule:"evenodd",d:"M5.308 5.203A.539.539 0 0 1 4.23 5.2a3.768 3.768 0 1 1 6.1 2.963l1.366 2.365a.539.539 0 0 1-.932.538L9.153 8.275a.54.54 0 0 1 .193-.741 2.694 2.694 0 0 0 .986-3.678 2.694 2.694 0 0 0-5.024 1.347",clipRule:"evenodd"}),(0,to.jsx)("path",{fillRule:"evenodd",d:"M6.116 13.13a.539.539 0 0 1 .537.932 3.769 3.769 0 1 1-.485-6.765l1.366-2.364a.539.539 0 0 1 .932.538L6.855 8.263a.54.54 0 0 1-.74.203 2.694 2.694 0 0 0-2.692 4.664 2.69 2.69 0 0 0 2.693 0",clipRule:"evenodd"}),(0,to.jsx)("path",{d:"M11.364 12.407a1.48 1.48 0 1 0 0-2.962 1.48 1.48 0 0 0 0 2.962"}),(0,to.jsx)("path",{fillRule:"evenodd",d:"M6.772 5.962c-.408-.666-.165-1.52.542-1.904s1.614-.156 2.023.51c.408.666.166 1.52-.542 1.904s-1.614.156-2.023-.51M5.69 11.666c-.384.708-1.237.95-1.903.542s-.894-1.315-.51-2.022c.385-.708 1.238-.95 1.904-.542s.894 1.315.51 2.022",clipRule:"evenodd"}),(0,to.jsx)("path",{d:"m12.576 8.466-.05.086zm-.196-.736-.086-.05zm.736-.196-.05.086zM7.5 11.336l.099-.014-.012-.086H7.5zm.493-1.077v.1h.001zm.385.156.07-.071zm-3.07-5.212h-.1zm-.54.538v.1zm-.537-.54h.1zm1.884-3.263.05.087zm5.15 1.38.086-.05zm-.933 4.846-.062-.079-.068.054.043.075zm1.365 2.365-.086.05zm-.197.735-.05-.086zm-.735-.197-.087.05zM9.153 8.275l.086-.05zm-.059-.411-.096-.025zm.252-.33.05.086zm.986-3.678.086-.05zM6.654 2.87l-.05-.087zm-.538 10.258-.05-.087zm.735.198.087-.05zm-.198.735-.05-.086zm-3.768 0-.05.087zm-1.38-5.149-.087-.05zm4.663-1.616-.037.093.08.033.044-.076zm1.366-2.364.086.05zm.735-.197.05-.087zm.197.735.087.05zM6.855 8.263l-.087-.05v.001zm-.328.256-.026-.096zm-.412-.053-.05.087zm-3.677.986.086.05zm.985 3.678-.05.086zm3.35-7.168.085-.052zm.541-1.904.048.088zm2.023.51-.085.053zm-.542 1.904-.048-.088zM5.69 11.666l.088.048zm-1.904.542-.052.086zm-.51-2.022-.088-.048zm1.904-.542.052-.085zm7.445-1.265a.44.44 0 0 1-.16-.599l-.172-.1a.64.64 0 0 0 .232.872zm-.16-.599a.44.44 0 0 1 .6-.16l.1-.173a.64.64 0 0 0-.872.233zm.6-.16a3.67 3.67 0 0 1 1.834 3.178h.2c0-1.431-.778-2.682-1.934-3.35zm1.834 3.178a3.67 3.67 0 0 1-3.67 3.669v.2a3.87 3.87 0 0 0 3.87-3.87zm-3.67 3.669A3.67 3.67 0 0 1 7.6 11.322l-.198.029a3.87 3.87 0 0 0 3.83 3.316zm-3.73-3.23H4.77v.2H7.5zm-2.73 0a.44.44 0 0 1-.44-.44h-.2c0 .353.287.64.64.64zm-.44-.44c0-.241.197-.438.44-.438v-.2a.64.64 0 0 0-.64.639zm.44-.438h3.223v-.2H4.769zm3.224 0a.44.44 0 0 1 .314.127l.14-.143a.64.64 0 0 0-.456-.184zm.314.127c.083.082.13.194.13.312h.2a.64.64 0 0 0-.19-.454zm.13.312a2.794 2.794 0 0 0 2.793 2.792v-.2a2.594 2.594 0 0 1-2.593-2.592zm2.793 2.792a2.794 2.794 0 0 0 2.792-2.792h-.2a2.594 2.594 0 0 1-2.592 2.592zm2.792-2.792a2.79 2.79 0 0 0-1.397-2.419l-.1.173a2.59 2.59 0 0 1 1.297 2.246zM5.208 5.203a.44.44 0 0 1-.44.438v.2a.64.64 0 0 0 .64-.638zm-.44.438a.44.44 0 0 1-.437-.44h-.2c0 .353.285.639.637.64zm-.437-.44a3.67 3.67 0 0 1 1.834-3.176l-.1-.174a3.87 3.87 0 0 0-1.934 3.35zm1.834-3.176c1.754-1.013 4-.411 5.013 1.342l.173-.1a3.87 3.87 0 0 0-5.286-1.416zm5.013 1.342a3.67 3.67 0 0 1-.908 4.718l.124.158a3.87 3.87 0 0 0 .957-4.976zm-.933 4.847 1.366 2.365.173-.1-1.366-2.365zm1.366 2.365c.12.21.049.478-.161.599l.1.173a.64.64 0 0 0 .234-.872zm-.161.599a.44.44 0 0 1-.599-.16l-.173.1c.176.304.567.409.872.233zm-.599-.16L9.24 8.224l-.173.1 1.612 2.792zM9.24 8.223a.44.44 0 0 1-.048-.335l-.193-.05a.64.64 0 0 0 .069.487zM9.19 7.89a.44.44 0 0 1 .205-.269l-.1-.173a.64.64 0 0 0-.298.392zm.205-.269a2.794 2.794 0 0 0 1.022-3.814l-.173.1a2.594 2.594 0 0 1-.949 3.541zm1.022-3.814a2.794 2.794 0 0 0-3.814-1.022l.1.173a2.594 2.594 0 0 1 3.541.949zM6.604 2.784a2.79 2.79 0 0 0-1.396 2.419h.2a2.59 2.59 0 0 1 1.296-2.246zm-.438 10.432a.44.44 0 0 1 .599.161l.173-.1a.64.64 0 0 0-.872-.235zm.599.161c.12.21.048.478-.162.599l.1.173a.64.64 0 0 0 .235-.872zm-.162.599a3.67 3.67 0 0 1-3.668 0l-.1.173a3.87 3.87 0 0 0 3.868 0zm-3.668 0a3.67 3.67 0 0 1-1.343-5.013l-.174-.1a3.87 3.87 0 0 0 1.417 5.286zM1.592 8.963a3.67 3.67 0 0 1 4.54-1.573l.074-.185a3.87 3.87 0 0 0-4.788 1.658zm4.663-1.616L7.62 4.983l-.173-.1-1.365 2.364zM7.62 4.983a.44.44 0 0 1 .6-.16l.1-.174a.64.64 0 0 0-.873.234zm.6-.16c.209.12.28.389.16.598l.173.1a.64.64 0 0 0-.234-.872zm.16.598L6.768 8.213l.173.1 1.612-2.792zM6.767 8.214a.44.44 0 0 1-.266.209l.053.192a.64.64 0 0 0 .388-.303zm-.266.209a.44.44 0 0 1-.336-.043l-.1.173a.64.64 0 0 0 .489.062zm-.336-.043a2.794 2.794 0 0 0-3.814 1.022l.173.1a2.594 2.594 0 0 1 3.541-.95zM2.351 9.402a2.794 2.794 0 0 0 1.022 3.814l.1-.173a2.594 2.594 0 0 1-.949-3.541zm1.022 3.814c.895.517 1.957.48 2.793 0l-.1-.173a2.59 2.59 0 0 1-2.593 0zm7.991-.71a1.58 1.58 0 0 0 1.581-1.58h-.2a1.38 1.38 0 0 1-1.38 1.38zm1.581-1.58a1.58 1.58 0 0 0-1.58-1.58v.2c.762 0 1.38.618 1.38 1.38zm-1.58-1.58a1.58 1.58 0 0 0-1.581 1.58h.2c0-.762.618-1.38 1.38-1.38zm-1.581 1.58c0 .873.707 1.58 1.58 1.58v-.2a1.38 1.38 0 0 1-1.38-1.38zM6.858 5.91c-.377-.615-.156-1.405.504-1.764l-.095-.176c-.756.41-1.02 1.327-.58 2.044zm.504-1.764c.663-.36 1.51-.144 1.89.475l.17-.105c-.438-.714-1.403-.954-2.156-.546zm1.89.475c.377.614.155 1.404-.505 1.763l.096.176c.755-.41 1.02-1.327.579-2.044zm-.505 1.763c-.663.36-1.51.144-1.89-.474l-.17.104c.438.714 1.404.954 2.156.546zm-3.144 5.235c-.359.66-1.149.881-1.764.504l-.104.17c.717.44 1.633.177 2.044-.579zm-1.764.504c-.618-.38-.834-1.226-.474-1.89l-.176-.095c-.408.752-.168 1.718.546 2.156zm-.474-1.89c.359-.66 1.149-.88 1.763-.504l.105-.17c-.718-.44-1.633-.176-2.044.58zm1.763-.504c.619.38.835 1.226.475 1.89l.176.095c.408-.752.167-1.718-.546-2.155z",mask:"url(#webhook_inline_svg__path-1-outside-1_639_2270)"})]}),pc=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("g",{clipPath:"url(#widget_inline_svg__clip0_723_2368)",children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.3,d:"M5.643 5.643 3.286 3.286m0 9.428 2.357-2.357m4.714 0 2.357 2.357m0-9.428-2.357 2.357M14.667 8A6.667 6.667 0 1 1 1.333 8a6.667 6.667 0 0 1 13.334 0m-3.334 0a3.333 3.333 0 1 1-6.666 0 3.333 3.333 0 0 1 6.666 0"})})}),pu=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("g",{clipPath:"url(#workflow_inline_svg__clip0_723_2319)",children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M7.333 3H12.2c.747 0 1.12 0 1.405.145.251.128.455.332.583.583.145.285.145.659.145 1.405V6c0 .621 0 .932-.101 1.177a1.33 1.33 0 0 1-.722.722C13.265 8 12.955 8 12.333 8m-3.666 5H3.8c-.747 0-1.12 0-1.405-.145a1.33 1.33 0 0 1-.583-.583c-.145-.285-.145-.659-.145-1.405V10c0-.621 0-.932.101-1.177.135-.327.395-.586.722-.722C2.735 8 3.045 8 3.667 8m3.2 1.667h2.266c.187 0 .28 0 .352-.037a.33.33 0 0 0 .145-.145c.037-.072.037-.165.037-.352V6.867c0-.187 0-.28-.037-.352a.33.33 0 0 0-.145-.145c-.072-.037-.165-.037-.352-.037H6.867c-.187 0-.28 0-.352.037a.33.33 0 0 0-.145.145c-.037.072-.037.165-.037.352v2.266c0 .187 0 .28.037.352a.33.33 0 0 0 .145.145c.072.037.165.037.352.037m5 5h2.266c.187 0 .28 0 .352-.037a.33.33 0 0 0 .145-.145c.037-.072.037-.165.037-.352v-2.266c0-.187 0-.28-.037-.352a.33.33 0 0 0-.145-.145c-.072-.037-.165-.037-.352-.037h-2.266c-.187 0-.28 0-.352.037a.33.33 0 0 0-.145.145c-.037.072-.037.165-.037.352v2.266c0 .187 0 .28.037.352a.33.33 0 0 0 .145.145c.072.037.165.037.352.037m-10-10h2.266c.187 0 .28 0 .352-.037a.33.33 0 0 0 .145-.145c.037-.072.037-.165.037-.352V1.867c0-.187 0-.28-.037-.352a.33.33 0 0 0-.145-.145c-.072-.037-.165-.037-.352-.037H1.867c-.187 0-.28 0-.352.037a.33.33 0 0 0-.145.145c-.037.072-.037.165-.037.352v2.266c0 .187 0 .28.037.352a.33.33 0 0 0 .145.145c.072.037.165.037.352.037"})})}),pm=e=>(0,to.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,to.jsx)("path",{fill:"currentColor",fillRule:"evenodd",d:"M2.58 8.333h2.333a1.5 1.5 0 0 1 1.5 1.5v2.334a1.5 1.5 0 0 1-1.5 1.5H2.58a1.5 1.5 0 0 1-1.5-1.5V9.833a1.5 1.5 0 0 1 1.5-1.5m2.333 4.334a.5.5 0 0 0 .5-.5V9.833a.5.5 0 0 0-.5-.5H2.58a.507.507 0 0 0-.5.5v2.334a.507.507 0 0 0 .5.5z",clipRule:"evenodd"}),(0,to.jsx)("path",{fill:"currentColor",d:"M9.08 9.167a.5.5 0 1 0 0 1h3.333a.5.5 0 1 0 0-1zM14.413 11.833H9.08a.5.5 0 0 0 0 1h5.333a.5.5 0 1 0 0-1"}),(0,to.jsx)("path",{fill:"currentColor",fillRule:"evenodd",d:"M13.08 7H2.413A1.333 1.333 0 0 1 1.08 5.667v-2c0-.737.597-1.334 1.333-1.334H13.08c.736 0 1.333.597 1.333 1.334v2c0 .736-.597 1.333-1.333 1.333M2.413 3.333a.333.333 0 0 0-.333.334v2c0 .184.15.333.333.333H13.08c.184 0 .333-.15.333-.333v-2a.333.333 0 0 0-.333-.334z",clipRule:"evenodd"}),(0,to.jsx)("path",{stroke:"currentColor",strokeWidth:.5,d:"M2.58 8.333h2.333a1.5 1.5 0 0 1 1.5 1.5v2.334a1.5 1.5 0 0 1-1.5 1.5H2.58a1.5 1.5 0 0 1-1.5-1.5V9.833a1.5 1.5 0 0 1 1.5-1.5Zm2.333 4.334a.5.5 0 0 0 .5-.5V9.833a.5.5 0 0 0-.5-.5H2.58a.507.507 0 0 0-.5.5v2.334a.507.507 0 0 0 .5.5z",clipRule:"evenodd"}),(0,to.jsx)("path",{stroke:"currentColor",strokeWidth:.5,d:"M9.08 9.167a.5.5 0 1 0 0 1h3.333a.5.5 0 1 0 0-1zM14.413 11.833H9.08a.5.5 0 0 0 0 1h5.333a.5.5 0 1 0 0-1Z"}),(0,to.jsx)("path",{stroke:"currentColor",strokeWidth:.5,d:"M13.08 7H2.413A1.333 1.333 0 0 1 1.08 5.667v-2c0-.737.597-1.334 1.333-1.334H13.08c.736 0 1.333.597 1.333 1.334v2c0 .736-.597 1.333-1.333 1.333ZM2.413 3.333a.333.333 0 0 0-.333.334v2c0 .184.15.333.333.333H13.08c.184 0 .333-.15.333-.333v-2a.333.333 0 0 0-.333-.334z",clipRule:"evenodd"})]}),pp=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("g",{clipPath:"url(#x-circle_inline_svg__clip0_723_2417)",children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"m10 6-4 4m0-4 4 4m4.667-2A6.667 6.667 0 1 1 1.333 8a6.667 6.667 0 0 1 13.334 0"})})}),pg=e=>(0,to.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,to.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M9.333 1.513v2.754c0 .373 0 .56.073.702a.67.67 0 0 0 .291.292c.143.072.33.072.703.072h2.754M6.334 8l3.333 3.333m0-3.333-3.334 3.333m3-10H5.867c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874c-.218.428-.218.988-.218 2.108v6.934c0 1.12 0 1.68.218 2.108a2 2 0 0 0 .874.874c.427.218.988.218 2.108.218h4.266c1.12 0 1.68 0 2.108-.218a2 2 0 0 0 .874-.874c.218-.428.218-.988.218-2.108V5.333z"})});eR._.registerModule({onInit:()=>{let e=eB.nC.get(eO.j.iconLibrary);e.register({name:"accessory",component:fz}),e.register({name:"add-find",component:fV}),e.register({name:"add-folder",component:f$}),e.register({name:"add-image",component:fW}),e.register({name:"add-package",component:fH}),e.register({name:"add-something",component:fG}),e.register({name:"add-user",component:fU}),e.register({name:"alert",component:fq}),e.register({name:"application-logger",component:fZ}),e.register({name:"area-brick",component:fK}),e.register({name:"arrow-narrow-right",component:fJ}),e.register({name:"asset",component:fX}),e.register({name:"attachment",component:fQ}),e.register({name:"audio",component:fY}),e.register({name:"auto-save",component:f0}),e.register({name:"automation-integration",component:f1}),e.register({name:"batch-selection",component:f2}),e.register({name:"body-style",component:f3}),e.register({name:"book-open-01",component:f6}),e.register({name:"bookmark",component:f4}),e.register({name:"cache",component:f8}),e.register({name:"calculator",component:f7}),e.register({name:"calendar",component:f5}),e.register({name:"car",component:f9}),e.register({name:"catalog",component:ce}),e.register({name:"category",component:ct}),e.register({name:"cdp",component:ci}),e.register({name:"channels",component:cn}),e.register({name:"chart-scatter",component:cr}),e.register({name:"check-circle",component:ca}),e.register({name:"checkbox",component:cl}),e.register({name:"checkmark",component:co}),e.register({name:"chevron-down",component:cs}),e.register({name:"chevron-left",component:cd}),e.register({name:"chevron-right",component:cf}),e.register({name:"chevron-selector-horizontal",component:cc}),e.register({name:"chevron-up",component:cu}),e.register({name:"children-grid",component:cm}),e.register({name:"close-filled",component:cp}),e.register({name:"close",component:cg}),e.register({name:"cms",component:ch}),e.register({name:"collection",component:cb}),e.register({name:"columns",component:cy}),e.register({name:"content-duplicate",component:cv}),e.register({name:"content-settings",component:cx}),e.register({name:"content",component:cj}),e.register({name:"copilot",component:cw}),e.register({name:"copy-03",component:cC}),e.register({name:"copy",component:ck}),e.register({name:"country-select",component:cT}),e.register({name:"crop",component:cS}),e.register({name:"custom-metadata",component:cD}),e.register({name:"customer-segment-group",component:cE}),e.register({name:"customer-segment",component:cM}),e.register({name:"customer",component:cI}),e.register({name:"customers",component:cL}),e.register({name:"cut",component:cP}),e.register({name:"dashboard",component:cN}),e.register({name:"data-object-variant",component:cA}),e.register({name:"data-object",component:cR}),e.register({name:"data-quality",component:cO}),e.register({name:"date-time-field",component:cB}),e.register({name:"delete-column",component:cF}),e.register({name:"delete-row",component:c_}),e.register({name:"dependencies",component:cz}),e.register({name:"details",component:cV}),e.register({name:"document-configurations",component:c$}),e.register({name:"document-link",component:cW}),e.register({name:"document-types",component:cH}),e.register({name:"document",component:cG}),e.register({name:"double-arrow-down",component:cU}),e.register({name:"double-arrow-left",component:cq}),e.register({name:"double-arrow-right",component:cZ}),e.register({name:"double-arrow-up",component:cK}),e.register({name:"download-cloud",component:cJ}),e.register({name:"download-zip",component:cX}),e.register({name:"download",component:cQ}),e.register({name:"draft",component:cY}),e.register({name:"drag-option",component:c0}),e.register({name:"drop-target",component:c1}),e.register({name:"edit-pen",component:c2}),e.register({name:"edit",component:c3}),e.register({name:"email",component:c6}),e.register({name:"embedded-metadata",component:c4}),e.register({name:"event",component:c8}),e.register({name:"excluded-from-nav",component:c7}),e.register({name:"expand-01",component:c5}),e.register({name:"expand",component:c9}),e.register({name:"experience-commerce",component:ue}),e.register({name:"export",component:ut}),e.register({name:"eye-off",component:ui}),e.register({name:"eye",component:un}),e.register({name:"factory",component:ur}),e.register({name:"favorites",component:ua}),e.register({name:"field-collection-field",component:ul}),e.register({name:"file-locked",component:uo}),e.register({name:"filter",component:us}),e.register({name:"flag",component:ud}),e.register({name:"flip-forward",component:uf}),e.register({name:"focal-point",component:uc}),e.register({name:"folder-plus",component:uu}),e.register({name:"folder-search",component:um}),e.register({name:"folder",component:up}),e.register({name:"graph",component:ug}),e.register({name:"group-by-keys",component:uh}),e.register({name:"group",component:ub}),e.register({name:"hardlink",component:uy}),e.register({name:"heading",component:uv}),e.register({name:"help-circle",component:ux}),e.register({name:"history",component:uj}),e.register({name:"home-root-folder",component:uw}),e.register({name:"image",component:uC}),e.register({name:"import-csv",component:uk}),e.register({name:"info-circle",component:uT}),e.register({name:"info",component:uS}),e.register({name:"inheritance-active",component:uD}),e.register({name:"inheritance-broken",component:uE}),e.register({name:"json",component:uM}),e.register({name:"key",component:uI}),e.register({name:"keyboard",component:uL}),e.register({name:"keys",component:uP}),e.register({name:"language-select",component:uN}),e.register({name:"layout-grid-02",component:uA}),e.register({name:"layout",component:uR}),e.register({name:"list",component:uO}),e.register({name:"loading",component:uB}),e.register({name:"location-marker",component:uF}),e.register({name:"lock",component:u_}),e.register({name:"locked",component:uz}),e.register({name:"log-out",component:uV}),e.register({name:"long-text",component:u$}),e.register({name:"mail-02",component:uW}),e.register({name:"mail-answer",component:uH}),e.register({name:"many-to-many",component:uG}),e.register({name:"market",component:uU}),e.register({name:"marketing",component:uq}),e.register({name:"menu",component:uZ}),e.register({name:"minus-square",component:uK}),e.register({name:"minus",component:uJ}),e.register({name:"more",component:uX}),e.register({name:"move-down",component:uQ}),e.register({name:"move-up",component:uY}),e.register({name:"multi-select",component:u0}),e.register({name:"navigation",component:u1}),e.register({name:"new-circle",component:u2}),e.register({name:"new-column",component:u3}),e.register({name:"new-hotspot",component:u6}),e.register({name:"new-marker",component:u4}),e.register({name:"new-row",component:u8}),e.register({name:"new-something",component:u7}),e.register({name:"new",component:u5}),e.register({name:"news",component:u9}),e.register({name:"no-content",component:me}),e.register({name:"notes-events",component:mt}),e.register({name:"notification-read",component:mi}),e.register({name:"notification-unread",component:mn}),e.register({name:"number-field",component:mr}),e.register({name:"open-folder",component:ma}),e.register({name:"package",component:ml}),e.register({name:"paste",component:mo}),e.register({name:"pdf",component:ms}),e.register({name:"personal-user",component:md}),e.register({name:"pie-chart",component:mf}),e.register({name:"pimcore",component:mc}),e.register({name:"pin",component:mu}),e.register({name:"pined",component:mm}),e.register({name:"plus-circle",component:mp}),e.register({name:"plus-square",component:mg}),e.register({name:"presentation",component:mh}),e.register({name:"preview",component:mb}),e.register({name:"properties",component:my}),e.register({name:"published",component:mv}),e.register({name:"questionmark",component:mx}),e.register({name:"quick-access",component:mj}),e.register({name:"redirect",component:mw}),e.register({name:"refresh",component:mC}),e.register({name:"remove-image-thumbnail",component:mk}),e.register({name:"remove-marker",component:mT}),e.register({name:"remove-pdf-thumbnail",component:mS}),e.register({name:"remove-video-thumbnail",component:mD}),e.register({name:"rename",component:mE}),e.register({name:"reporting",component:mM}),e.register({name:"required-by",component:mI}),e.register({name:"requires",component:mL}),e.register({name:"restore",component:mP}),e.register({name:"reverse",component:mN}),e.register({name:"run",component:mA}),e.register({name:"save",component:mR}),e.register({name:"schedule",component:mO}),e.register({name:"search",component:mB}),e.register({name:"segment-tagging",component:mF}),e.register({name:"send-03",component:m_}),e.register({name:"seo",component:mz}),e.register({name:"settings",component:mV}),e.register({name:"share",component:m$}),e.register({name:"shared-users",component:mW}),e.register({name:"shield-plus",component:mH}),e.register({name:"shield",component:mG}),e.register({name:"show-details",component:mU}),e.register({name:"snippet",component:mq}),e.register({name:"spinner",component:mZ}),e.register({name:"split-view",component:mK}),e.register({name:"style",component:mJ}),e.register({name:"tag-configuration",component:mX}),e.register({name:"tag",component:mQ}),e.register({name:"target",component:mY}),e.register({name:"tax-class",component:m0}),e.register({name:"text-field",component:m1}),e.register({name:"transfer",component:m2}),e.register({name:"translate",component:m3}),e.register({name:"trash",component:m6}),e.register({name:"tree",component:m4}),e.register({name:"txt-docs",component:m8}),e.register({name:"unknown",component:m7}),e.register({name:"unlocked",component:m5}),e.register({name:"upload-cloud",component:m9}),e.register({name:"upload-import",component:pe}),e.register({name:"upload-zip",component:pt}),e.register({name:"user-select",component:pi}),e.register({name:"user",component:pn}),e.register({name:"users-x",component:pr}),e.register({name:"vector",component:pa}),e.register({name:"video",component:pl}),e.register({name:"view",component:po}),e.register({name:"warning-circle",component:ps}),e.register({name:"web-settings",component:pd}),e.register({name:"webhook",component:pf}),e.register({name:"widget",component:pc}),e.register({name:"workflow",component:pu}),e.register({name:"wysiwyg-field",component:pm}),e.register({name:"x-circle",component:pp}),e.register({name:"xlsx-csv",component:pg})}});let ph=(0,ia.createStyles)(e=>{let{token:t,css:i}=e;return{preview:i` display: flex; justify-content: center; align-items: center; @@ -365,7 +365,7 @@ height: 100%; width: 100%; } - `}},{hashPriority:"low"}),pb=e=>{let{styles:t}=ph(),{src:i}=e;return(0,tl.jsx)("div",{className:t.preview,children:(0,tl.jsx)(dX.s,{src:i})})};var py=i(39712),pv=i(25741),px=i(63739);let pj=()=>{let{id:e}=(0,py.G)(),{isLoading:t}=(0,pv.V)(e),[i,n]=(0,ts.useState)("");return((0,ts.useEffect)(()=>{t||(0,px.s)({url:`${(0,eQ.G)()}/assets/${e}/document/stream/pdf-preview`,onSuccess:e=>{n(URL.createObjectURL(e))}}).catch(()=>{(0,is.ZP)(new is.aE("An error occured while loading pdf preview"))})},[e,t]),""===i||t)?(0,tl.jsx)(aB.V,{loading:!0}):(0,tl.jsx)(aF.D,{children:(0,tl.jsx)(pb,{src:i})})};var pw=i(91744),pC=i(1470);eR._.registerModule({onInit:()=>{let e=eB.nC.get(eO.j["Asset/Editor/DocumentTabManager"]);e.register({key:"view",label:"asset.asset-editor-tabs.view",children:(0,tl.jsx)(pj,{}),icon:(0,tl.jsx)(rR.J,{value:"view"})}),e.register(pw.hD),e.register(pC.D9),e.register(pw.V2),e.register(pC.V$),e.register(pC.On),e.register(pC._P),e.register(pC.Hy),e.register(pC.zd)}});var pk=i(56684),pT=i(90093);let pS=e=>{let{t}=(0,t7.useTranslation)();return(0,tl.jsx)(aN.t,{pageSizeOptions:[10,20,50,100],showSizeChanger:!0,showTotal:e=>t("component.pagination.showing-items",{total:e}),...e})};var pD=i(15899),pE=i(78981),pM=i(88148),pI=i(34568),pL=i(59655),pP=i(69019),pN=i(32244),pA=i(17180);let pR=e=>{let{asset:t}=e,{t:i}=(0,t7.useTranslation)(),{openAsset:n}=(0,pE.Q)(),{renameContextMenuItem:r}=(0,pM.j)("asset",(0,pA.eG)("asset","rename",t.id)),{deleteContextMenuItem:a}=(0,pI.R)("asset",(0,pA.eG)("asset","delete",t.id)),{downloadContextMenuItem:o}=(0,pL.i)(),{uploadNewVersionContextMenuItem:l}=(0,pP.M)(),{openContextMenuItem:s}=(0,pN.y)("asset"),d=[s(t),{key:"locate-in-tree",icon:(0,tl.jsx)(rR.J,{value:"target"}),label:i("preview-card.locate-in-tree"),hidden:!0},{key:"info",icon:(0,tl.jsx)(rR.J,{value:"info-circle"}),label:i("info"),hidden:!0},r(t),l(t),o(t),a(t)];return(0,tl.jsx)(pD.o,{dropdownItems:d,imgSrc:"imageThumbnailPath"in t&&(0,eY.isString)(t.imageThumbnailPath)?t.imageThumbnailPath:t.icon,name:t.filename,onClick:e=>{n({config:{id:t.id}})}},t.id)},pO=()=>{let e=(0,ts.useContext)(pT.N),[t,i]=(0,ts.useState)(1),[n,r]=(0,ts.useState)(20),a=e.id,{asset:o}=(0,pv.V)(a),{data:l,isLoading:s}=(0,pk.useAssetGetTreeQuery)({pathIncludeDescendants:!0,page:t,pageSize:n,excludeFolders:!0,path:null==o?void 0:o.fullPath}),d=(null==l?void 0:l.totalItems)??0;function f(e,t){i(e),r(t)}return(0,ts.useMemo)(()=>(0,tl.jsx)(aF.D,{renderToolbar:(0,tl.jsx)(aO.o,{justify:"flex-end",theme:"secondary",children:(0,tl.jsx)(pS,{current:t,defaultPageSize:n,onChange:f,total:d})}),children:(0,tl.jsx)(aB.V,{loading:s,padded:!0,children:(null==l?void 0:l.items)!==void 0&&l.items.length>0&&(0,tl.jsx)(rZ.k,{gap:"extra-small",wrap:!0,children:l.items.map((e,t)=>(0,tl.jsx)(pR,{asset:e},`${e.id}-${t}`))})})}),[t,n,l,s])};var pB=i(41190),pF=i(86833),p_=i(88963),pz=i(57062),pV=i(11091),p$=i(17345),pW=i(1660),pH=i(27348);let pG=(e,t)=>{let{useGridOptions:i,...n}=e;return{...n,useGridOptions:()=>{let{getGridProps:e,transformGridColumn:n,...r}=i(),[a,o]=(0,ts.useState)([]),{useInlineEditApiUpdate:l}=t,{updateCache:s,updateApiData:d}=l(),{useDataQueryHelper:f}=(0,pF.r)(),{getArgs:c}=f(),{decodeColumnIdentifier:u}=(0,pB.N)(),m=e=>{let{rowData:t,columnId:i,value:n}=e,r=u(i);if(void 0===r)return;o(e=>!0===(null==e?void 0:e.some(e=>e.rowIndex===t.id&&e.columnId===i))?e:[...e??[],{rowIndex:t.id,columnId:i}]);let a={getGetRequestArgs:c(),update:{id:t.id,column:r,value:n},meta:e.meta};s(a),d(a).finally(()=>{o(e=>(null==e?void 0:e.filter(e=>e.rowIndex!==t.id||e.columnId!==i))??[])}).catch(()=>{})};return{...r,getGridProps:()=>({...e(),onUpdateCellData:m,modifiedCells:a}),transformGridColumn:e=>{let t=n(e);return{...t,meta:{...t.meta,editable:e.editable}}}}}}};var pU=i(40483);let pq=()=>{let{id:e}=(0,il.i)();return{getId:()=>e}};var pZ=i(7040),pK=i(12395),pJ=i(4026),pX=i(52266),pQ=i(71149);let pY=(0,ts.createContext)({batchEdits:[],setBatchEdits:()=>{}}),p0=e=>{let{children:t}=e,[i,n]=(0,ts.useState)([]);return(0,ts.useMemo)(()=>(0,tl.jsx)(pY.Provider,{value:{batchEdits:i,setBatchEdits:n},children:t}),[i,t])};var p1=i(71881),p2=i(41852),p3=i(8403);let p6=()=>{let{batchEdits:e,setBatchEdits:t}=(0,ts.useContext)(pY);return{batchEdits:e,setBatchEdits:t,updateLocale:(i,n)=>{t(e.map(e=>e.key===i?{...e,locale:n}:e))},resetBatchEdits:()=>{t([])},removeBatchEdit:i=>{t(e.filter(e=>e.key!==i))},addOrUpdateBatchEdit:i=>{let n=[...e],r=e.findIndex(e=>e.key===i.key);-1!==r?n[r]=i:n.push(i),t(n)}}};var p4=i(43970),p8=i(8335),p7=i(93346),p5=i(50444);let p9=e=>{let{batchEdit:t}=e,{frontendType:i,type:n}=t,{getComponentRenderer:r}=(0,tR.D)(),{ComponentRenderer:a}=r({dynamicTypeIds:[n,i],target:"BATCH_EDIT"});return null===a?(0,tl.jsx)(tl.Fragment,{children:"Dynamic Field Filter not supported"}):(0,tl.jsx)(tl.Fragment,{children:a({batchEdit:t})})},ge=()=>{let{batchEdits:e,removeBatchEdit:t}=p6(),{updateLocale:i}=p6(),n=["-",...(0,p5.r)().requiredLanguages],r=e.map(e=>{let r=e.locale??"-";return{id:e.key,children:(0,tl.jsx)(tN.Tag,{children:(0,ii.t)(`${e.key}`)}),renderRightToolbar:(0,tl.jsx)(p8.h,{items:[...e.localizable?[(0,tl.jsx)(p7.k,{languages:n,onSelectLanguage:t=>{i(e.key,(0,p7.N)(t))},selectedLanguage:r},"language-selection")]:[],(0,tl.jsx)(aM.h,{icon:{value:"close"},onClick:()=>{t(e.key)}},"remove")]}),body:(0,tl.jsx)(p9,{batchEdit:e})}});return(0,tl.jsxs)(tl.Fragment,{children:[0===r.length&&(0,tl.jsx)(dV.d,{text:(0,ii.t)("batch-edit.no-content")}),r.length>0&&(0,tl.jsx)(p4.f,{items:r})]})};var gt=i(47503),gi=i(96068),gn=i(13254),gr=i(47588),ga=i(35715);let go=e=>({id:(0,ga.K)(),action:e.action,refreshGrid:e.refreshGrid,type:"batch-edit",title:e.title,status:gr.B.QUEUED,topics:e.topics,config:{assetContextId:e.assetContextId}});var gl=i(62812);let gs=(e,t,i)=>e.map(e=>{if(!(null!==e&&"children"in e&&void 0!==e.children&&Array.isArray(e.children)))return((e,t,i)=>{let n=!0===e.editable,r=t.some(t=>e.key===t.key&&((e,t)=>{let i=e=>"string"==typeof e?e.split("."):Array.isArray(e)?e.flat().map(e=>String(e)):[String(e)],n=i(e),r=i(t);return n.length===r.length&&n.every((e,t)=>e===r[t])})(e.group,t.group)),a=i({target:"BATCH_EDIT",dynamicTypeIds:[null==e?void 0:e.frontendType]});return n&&a&&!r})(e,t,i)?e:null;{let n=gs(e.children,t,i);return{...e,children:n}}}).filter(e=>null!==e&&(!("children"in e&&void 0!==e.children&&Array.isArray(e.children))||e.children.length>0)),gd=e=>e.some(e=>!(null!==e&&"children"in e&&void 0!==e.children&&Array.isArray(e.children))||gd(e.children)),gf=e=>{let{batchEditModalOpen:t,setBatchEditModalOpen:i}=e,{getAvailableColumnsDropdown:n}=(0,p_.L)(),{batchEdits:r,addOrUpdateBatchEdit:a,resetBatchEdits:o}=p6(),[l]=tc.l.useForm(),{t:s}=(0,t7.useTranslation)(),[d,{isError:f,isSuccess:c,error:u}]=(0,pk.useAssetPatchByIdMutation)(),[m,{isError:p,isSuccess:g,error:h}]=(0,pk.useAssetPatchFolderByIdMutation)(),{selectedRows:b}=(0,gt.G)(),y=Object.keys(b??{}).map(Number),v=y.length,{addJob:x}=(0,gn.C)(),{id:j,elementType:w}=(0,il.i)(),{useDataQueryHelper:C}=(0,pF.r)(),{getArgs:k}=C(),{hasType:T}=(0,tR.D)(),{refreshGrid:S}=(0,gl.g)(w),D=()=>{o(),l.resetFields()};(0,ts.useEffect)(()=>{(c||g)&&(i(!1),D()),1===v&&pk.api.util.invalidateTags(gi.xc.ASSET_GRID_ID(y[0]))},[c,g]),(0,ts.useEffect)(()=>{f&&(0,is.ZP)(new is.MS(u)),p&&(0,is.ZP)(new is.MS(h))},[f,g]);let E=async e=>{let t=r.map(t=>({name:t.key,language:t.locale??null,data:e[t.key],type:t.type}));0===v?x(go({title:s("batch-edit.job-title"),topics:[dp.F["patch-finished"],...dp.b],action:async()=>{var e,i,n,r;let a=await m({body:{data:[{folderId:j,metadata:t}],filters:null==(i=k())||null==(e=i.body)?void 0:e.filters}});if((null==(n=a.data)?void 0:n.jobRunId)===void 0)throw(0,is.ZP)(new is.aE("JobRunId is undefined")),Error("JobRunId is undefined");return null==(r=a.data)?void 0:r.jobRunId},refreshGrid:S,assetContextId:j})):1===v?await d({body:{data:[{id:y[0],metadata:t}]}}):x(go({title:s("batch-edit.job-title"),topics:[dp.F["patch-finished"],...dp.b],action:async()=>{var e,i;let n=await d({body:{data:y.map(e=>({id:e,metadata:t}))}});if((null==(e=n.data)?void 0:e.jobRunId)===void 0)throw(0,is.ZP)(new is.aE("JobRunId is undefined")),Error("JobRunId is undefined");return null==(i=n.data)?void 0:i.jobRunId},refreshGrid:S,assetContextId:j}))},M=n(e=>{let t=e.locale??null;a({...e,locale:t})}).menu.items,I=(0,ts.useMemo)(()=>()=>(0,eY.isUndefined)(M)?[]:gs(M,r,T),[M,r,T]),L=!gd(I());return(0,tl.jsx)(p2.i,{afterClose:()=>{D()},footer:(0,tl.jsxs)(p1.m,{divider:!0,justify:"space-between",children:[(0,tl.jsx)(pJ.L,{menu:{items:I()},children:(0,tl.jsx)(dx.W,{disabled:L,icon:{value:"new"},type:"default",children:s("listing.add-column")})}),r.length>0&&(0,tl.jsxs)(rZ.k,{align:"center",gap:"extra-small",children:[(0,tl.jsx)(dx.W,{icon:{value:"close"},onClick:()=>{o()},type:"link",children:s("batch-edit.modal-footer.discard-all-changes")}),(0,tl.jsx)(ai.z,{onClick:()=>{l.submit(),i(!1)},type:"primary",children:s("batch-edit.modal-footer.apply-changes")})]})]}),onCancel:()=>{i(!1),D()},open:t,size:"M",title:(0,tl.jsx)(p3.r,{children:s("batch-edit.modal-title")}),children:(0,tl.jsx)(tc.l,{form:l,onFinish:E,children:(0,tl.jsx)(ge,{})})})},gc=e=>{let{...t}=e,{t:i}=(0,t7.useTranslation)();return(0,tl.jsxs)(tc.l,{layout:"vertical",...t,children:[(0,tl.jsx)(tc.l.Item,{label:i("export-csv-form.form-field.delimiter"),name:"delimiter",rules:[{required:!0,message:i("form.validation.required")}],children:(0,tl.jsx)(tN.Input,{})}),(0,tl.jsx)(tc.l.Item,{label:i("export-csv-form.form-field.header"),name:"header",rules:[{required:!0,message:i("form.validation.required")}],children:(0,tl.jsx)(tC.P,{options:[{value:"name",label:i("export-csv-form.form-field.header.option.name")},{value:"title",label:i("export-csv-form.form-field.header.option.title")},{value:"no_header",label:i("export-csv-form.form-field.header.option.no-header")}]})})]})};var gu=i(42804);let{useExportDownloadCsvQuery:gm,useExportDeleteCsvMutation:gp,useExportCsvMutation:gg,useExportCsvFolderMutation:gh,useExportDownloadXlsxQuery:gb,useExportDeleteXlsxMutation:gy,useExportXlsxMutation:gv,useExportXlsxFolderMutation:gx}=aw.api.enhanceEndpoints({addTagTypes:["Export"]}).injectEndpoints({endpoints:e=>({exportDownloadCsv:e.query({query:e=>({url:`/pimcore-studio/api/export/download/csv/${e.jobRunId}`}),providesTags:["Export"]}),exportDeleteCsv:e.mutation({query:e=>({url:`/pimcore-studio/api/export/download/csv/${e.jobRunId}`,method:"DELETE"}),invalidatesTags:["Export"]}),exportCsv:e.mutation({query:e=>({url:"/pimcore-studio/api/export/csv",method:"POST",body:e.body}),invalidatesTags:["Export"]}),exportCsvFolder:e.mutation({query:e=>({url:"/pimcore-studio/api/export/csv/folder",method:"POST",body:e.body}),invalidatesTags:["Export"]}),exportDownloadXlsx:e.query({query:e=>({url:`/pimcore-studio/api/export/download/xlsx/${e.jobRunId}`}),providesTags:["Export"]}),exportDeleteXlsx:e.mutation({query:e=>({url:`/pimcore-studio/api/export/download/xlsx/${e.jobRunId}`,method:"DELETE"}),invalidatesTags:["Export"]}),exportXlsx:e.mutation({query:e=>({url:"/pimcore-studio/api/export/xlsx",method:"POST",body:e.body}),invalidatesTags:["Export"]}),exportXlsxFolder:e.mutation({query:e=>({url:"/pimcore-studio/api/export/xlsx/folder",method:"POST",body:e.body}),invalidatesTags:["Export"]})}),overrideExisting:!1});var gj=i(97473);let gw=e=>{let[t]=tN.Form.useForm(),{addJob:i}=(0,gn.C)(),{id:n,elementType:r}=(0,il.i)(),{element:a}=(0,gj.q)(n,r),[o,l]=(0,ts.useState)("Element"),[s,{isError:d,error:f}]=gg(),[c,{isError:u,error:m}]=gh(),{selectedRows:p}=(0,gt.G)(),g=void 0!==p?Object.keys(p).map(Number):[],{selectedColumns:h}=(0,pB.N)(),{useDataQueryHelper:b}=(0,pF.r)(),{getArgs:y}=b(),{t:v}=(0,t7.useTranslation)();return(0,ts.useEffect)(()=>{void 0!==a&&("filename"in a&&l(a.filename),"key"in a&&l(a.key))},[a]),(0,ts.useEffect)(()=>{d&&(0,is.ZP)(new is.MS(f))},[d]),(0,ts.useEffect)(()=>{u&&(0,is.ZP)(new is.MS(m))},[u]),(0,tl.jsx)(tN.Modal,{onCancel:()=>{e.setOpen(!1)},onOk:()=>{t.submit()},open:e.open,title:(0,tl.jsx)(p3.r,{iconName:"export",children:v("export-csv-form.modal-title")}),children:(0,tl.jsxs)(tN.Space,{direction:"vertical",size:10,style:{paddingTop:10},children:[(0,tl.jsx)(tN.Alert,{message:v("export-csv-form.export-notice"),showIcon:!0,type:"warning"}),(0,tl.jsx)(gc,{form:t,initialValues:{delimiter:";",header:"name"},onFinish:function(t){i((0,gu.C)({title:v("jobs.csv-job.title",{title:o}),topics:[dp.F["csv-download-ready"],...dp.b],downloadUrl:"/pimcore-studio/api/export/download/csv/{jobRunId}",action:async()=>await x(t.delimiter,t.header)})),e.setOpen(!1)}})]})});async function x(e,t){let i=y().body.columns??[],a=h.map(e=>{let t=i.find(t=>t.key===e.key&&t.locale===e.locale);return"dataobject.advanced"===t.type&&(t=i.find(t=>{var i,n,r,a;return(null==(r=e.originalApiDefinition)||null==(n=r.__meta)||null==(i=n.advancedColumnConfig)?void 0:i.title)===(null==t||null==(a=t.config)?void 0:a.title)})),{key:(t=t??e).key,type:t.type,locale:t.locale,config:t.config}});if(0===g.length){var o,l;let i=(null==(l=y())||null==(o=l.body)?void 0:o.filters)??{};void 0!==i&&(delete i.page,delete i.pageSize);let s=c({body:{folders:[n],elementType:r,columns:a,config:{delimiter:e,header:t},filters:{...i,includeDescendants:!0}}});return(await s).data.jobRunId}{let i=s({body:{elements:g,elementType:r,columns:a,config:{delimiter:e,header:t}}});return(await i).data.jobRunId}}},gC=e=>{let{...t}=e,{t:i}=(0,t7.useTranslation)();return(0,tl.jsx)(tc.l,{layout:"vertical",...t,children:(0,tl.jsx)(tc.l.Item,{label:i("export-xlsx-form.form-field.header"),name:"header",rules:[{required:!0,message:i("form.validation.required")}],children:(0,tl.jsx)(tC.P,{options:[{value:"name",label:i("export-xlsx-form.form-field.header.option.name")},{value:"title",label:i("export-xlsx-form.form-field.header.option.title")},{value:"no_header",label:i("export-xlsx-form.form-field.header.option.no-header")}]})})})},gk=e=>{let[t]=tN.Form.useForm(),{addJob:i}=(0,gn.C)(),{id:n,elementType:r}=(0,il.i)(),{element:a}=(0,gj.q)(n,r),[o,l]=(0,ts.useState)("Element"),[s,{isError:d,error:f}]=gv(),[c,{isError:u,error:m}]=gx(),{selectedRows:p}=(0,gt.G)(),g=void 0!==p?Object.keys(p).map(Number):[],{selectedColumns:h}=(0,pB.N)(),{useDataQueryHelper:b}=(0,pF.r)(),{getArgs:y}=b(),{t:v}=(0,t7.useTranslation)();return(0,ts.useEffect)(()=>{void 0!==a&&("filename"in a&&l(a.filename),"key"in a&&l(a.key))},[a]),(0,ts.useEffect)(()=>{d&&(0,is.ZP)(new is.MS(f))},[d]),(0,ts.useEffect)(()=>{u&&(0,is.ZP)(new is.MS(m))},[u]),(0,tl.jsx)(tN.Modal,{onCancel:()=>{e.setOpen(!1)},onOk:()=>{t.submit()},open:e.open,title:(0,tl.jsx)(p3.r,{iconName:"export",children:v("export-xlsx-form.modal-title")}),children:(0,tl.jsxs)(tN.Space,{direction:"vertical",size:10,style:{paddingTop:10},children:[(0,tl.jsx)(tN.Alert,{message:v("export-xlsx-form.export-notice"),showIcon:!0,type:"warning"}),(0,tl.jsx)(gC,{form:t,initialValues:{header:"name"},onFinish:function(t){i((0,gu.C)({title:v("jobs.xlsx-job.title",{title:o}),topics:[dp.F["xlsx-download-ready"],...dp.b],downloadUrl:"/pimcore-studio/api/export/download/xlsx/{jobRunId}",action:async()=>await x(t.header)})),e.setOpen(!1)}})]})});async function x(e){let t=y().body.columns??[],i=h.map(e=>{let i=t.find(t=>t.key===e.key&&t.locale===e.locale);return"dataobject.advanced"===i.type&&(i=t.find(t=>{var i,n,r,a;return(null==(r=e.originalApiDefinition)||null==(n=r.__meta)||null==(i=n.advancedColumnConfig)?void 0:i.title)===(null==t||null==(a=t.config)?void 0:a.title)})),{key:(i=i??e).key,type:i.type,locale:i.locale,config:i.config}});if(0===g.length){var a,o;let t=(null==(o=y())||null==(a=o.body)?void 0:a.filters)??{};void 0!==t&&(delete t.page,delete t.pageSize);let l=c({body:{folders:[n],elementType:r,columns:i,config:{header:e},filters:{...t,includeDescendants:!0}}});return(await l).data.jobRunId}{let t=s({body:{elements:g,elementType:r,columns:i,config:{header:e}}});return(await t).data.jobRunId}}},gT=e=>({id:(0,ga.K)(),action:e.action,refreshGrid:e.refreshGrid,type:"batch-delete",title:e.title,status:gr.B.QUEUED,topics:e.topics,config:{assetContextId:e.assetContextId}}),gS=()=>{let e=(0,pQ.J)(),{id:t,elementType:i}=(0,il.i)(),{useDataQueryHelper:n}=(0,pF.r)(),{getArgs:r}=n(),{addJob:a}=(0,gn.C)(),{refreshGrid:o}=(0,gl.g)(i),{createZipDownload:l}=(0,pX.F)({type:"folder"}),{createZipDownload:s}=(0,pX.F)({type:"asset-list"}),[d]=(0,pk.useAssetBatchDeleteMutation)(),{data:f}=(0,pk.useAssetGetByIdQuery)({id:t}),[c,u]=(0,ts.useState)("Asset"),[m,p]=(0,ts.useState)(!1),[g,h]=(0,ts.useState)(!1),[b,y]=(0,ts.useState)(!1),{t:v}=(0,t7.useTranslation)();if((0,ts.useEffect)(()=>{void 0!==f&&u(`${f.filename}`)},[f]),void 0===e)return(0,tl.jsx)(tl.Fragment,{});let{selectedRows:x}=e,j=void 0!==x?Object.keys(x).map(Number):[],w=void 0!==x&&Object.keys(x).length>0,C={items:[{key:"1",label:v("listing.actions.batch-edit"),icon:(0,tl.jsx)(rR.J,{value:"batch-selection"}),onClick:()=>{y(!0)}},{key:"2",label:v("listing.actions.export"),icon:(0,tl.jsx)(rR.J,{value:"export"}),children:[{key:"2.1",label:v("listing.actions.csv-export"),icon:(0,tl.jsx)(rR.J,{value:"export"}),onClick:()=>{p(!0)}},{key:"2.2",label:v("listing.actions.xlsx-export"),icon:(0,tl.jsx)(rR.J,{value:"export"}),onClick:()=>{h(!0)}}]},{key:"3",label:v("listing.actions.zip-download"),icon:(0,tl.jsx)(rR.J,{value:"download"}),onClick:()=>{w?s({jobTitle:c,requestData:{body:{assets:j}}}):l({jobTitle:c,requestData:{body:{folders:[t],filters:{includeDescendants:!0,...r().body.filters??{},page:1,pageSize:0xe8d4a50ff6}}}})}},{key:"4",label:v("listing.actions.delete"),icon:(0,tl.jsx)(rR.J,{value:"trash"}),onClick:()=>{a(gT({title:v("batch-delete.job-title"),topics:[dp.F["deletion-finished"],...dp.b],action:async()=>{var e,t;let i=await d({body:{ids:j}});if((0,eY.isUndefined)(null==(e=i.data)?void 0:e.jobRunId))throw(0,is.ZP)(new is.aE("JobRunId is undefined")),Error("JobRunId is undefined");return null==(t=i.data)?void 0:t.jobRunId},refreshGrid:o,assetContextId:t}))}}]};return(0,tl.jsxs)(tl.Fragment,{children:[(0,tl.jsx)(pJ.L,{menu:C,children:(0,tl.jsx)(pK.P,{children:w?v("listing.actions"):v("listing.non-selected.actions")},"dropdown-button")}),(0,tl.jsx)(gw,{open:m,setOpen:p}),(0,tl.jsx)(gk,{open:g,setOpen:h}),(0,tl.jsx)(p0,{children:(0,tl.jsx)(gf,{batchEditModalOpen:b,setBatchEditModalOpen:y})})]})},gD=()=>(0,ts.useMemo)(()=>(0,tl.jsxs)(aO.o,{theme:"secondary",children:[(0,tl.jsxs)(aR.P,{size:"mini",children:[(0,tl.jsx)(fu.q,{}),(0,tl.jsx)(gS,{})]}),(0,tl.jsxs)(aR.P,{size:"extra-small",children:[(0,tl.jsx)(fm.s,{}),(0,tl.jsx)(fp.t,{})]})]}),[]),gE=(0,aj.createColumnHelper)();var gM=i(23526),gI=i(43352);let gL=e=>{let{row:t}=e,{openGridContextMenuItem:i}=(0,pN.y)("asset"),{renameGridContextMenuItem:n}=(0,pM.j)("asset",(0,pA.eG)("asset","rename",Number(t.id))),{deleteGridContextMenuItem:r}=(0,pI.R)("asset",(0,pA.eG)("asset","delete",Number(t.id))),{downloadGridContextMenuItem:a}=(0,pL.i)(),{locateInTreeGridContextMenuItem:o}=(0,gI.B)("asset"),[l,s]=(0,ts.useState)(void 0),d=[i(t),n(t),o(t,()=>{s(void 0)}),r(t),a(t)].filter(Boolean);return(0,tl.jsx)(pJ.L,{menu:{items:d,onClick:e=>{e.key===gM.N.locateInTree&&s(!0)}},open:l,trigger:["contextMenu"],children:e.children},t.id)},gP={...fe.l,ViewComponent:()=>(0,tl.jsx)(pZ.t,{renderToolbar:gD}),useDataQuery:pk.useAssetGetGridQuery,useDataQueryHelper:d8.$,useElementId:pq},gN=(0,fr.q)(fn.y,fi.L,e=>{let{ConfigurationComponent:t,ContextComponent:i,useSidebarOptions:n,...r}=e;return{...r,ContextComponent:(0,pW.i)(i),ConfigurationComponent:()=>{let{isLoading:e,data:i}=(0,pk.useAssetGetAvailableGridColumnsQuery)(),{useElementId:n,useDataQueryHelper:r}=(0,pF.r)(),{getId:a}=n(),{id:o}=(0,pz.m)(),{isLoading:l,data:s}=(0,pk.useAssetGetGridConfigurationByFolderIdQuery)({folderId:a(),configurationId:o}),{setSelectedColumns:d}=(0,pB.N)(),{setAvailableColumns:f}=(0,p_.L)(),{setGridConfig:c}=(0,pV.j)(),{setDataLoadingState:u}=r();return((0,ts.useEffect)(()=>{if(void 0===i||void 0===s)return;let e=[],t=i.columns.map(e=>e);for(let t of s.columns){let n=i.columns.find(e=>e.key===t.key);void 0!==n&&e.push({key:t.key,locale:t.locale,type:n.type,config:n.config,sortable:n.sortable,editable:n.editable,localizable:n.localizable,exportable:n.exportable,frontendType:n.frontendType,group:n.group,originalApiDefinition:n})}d(e),f(t),c(s),u("config-changed")},[i,s]),e||l)?(0,tl.jsx)(aB.V,{loading:!0}):(0,tl.jsx)(t,{})},useSidebarOptions:(0,p$.e)(n)}},[pG,{useInlineEditApiUpdate:()=>{let[e]=(0,pk.useAssetPatchByIdMutation)(),t=(0,pU.useAppDispatch)();return{updateCache:e=>{let{update:i,getGetRequestArgs:n}=e,{id:r,column:a,value:o}=i;t(pk.api.util.updateQueryData("assetGetGrid",n,e=>{e:for(let t of e.items)if(t.id===r){for(let e of t.columns)if(e.key===a.key&&e.locale===a.locale){e.value=o;break e}}return e}))},updateApiData:async t=>{let{update:i}=t,n=e({body:{data:[{id:i.id,metadata:[{name:i.column.key,language:i.column.locale,data:i.value,type:i.column.type}]}]}}),r=await n;return(0,eY.isNil)(r.error)||(0,is.ZP)(new is.MS(r.error)),r}}}}],[pH.G,{rowSelectionMode:"multiple"}],e=>{let{useGridOptions:t,...i}=e;return{...i,useGridOptions:()=>{let{t:e}=(0,t7.useTranslation)(),{transformGridColumnDefinition:i,...n}=t();return{...n,transformGridColumnDefinition:t=>{let n=i(t);return n.push(gE.accessor("actions",{header:e("actions.open"),enableSorting:!1,meta:{type:"asset-actions"},size:65})),n}}}}},e=>{let{useGridOptions:t,...i}=e;return{...i,useGridOptions:()=>{let{getGridProps:e,...i}=t();return{...i,getGridProps:()=>({...e(),contextMenu:gL})}}}},d7.p,ft.o)(gP),gA=()=>(0,tl.jsx)(fe.p,{...gN}),gR={key:"listing",label:"folder.folder-editor-tabs.view",children:(0,tl.jsx)(()=>(0,tl.jsx)(d9.d,{serviceIds:["DynamicTypes/GridCellRegistry","DynamicTypes/MetadataRegistry","DynamicTypes/ListingRegistry","DynamicTypes/BatchEditRegistry","DynamicTypes/FieldFilterRegistry"],children:(0,tl.jsx)(gA,{})}),{}),icon:(0,tl.jsx)(rR.J,{value:"list"}),isDetachable:!1};eR._.registerModule({onInit:()=>{let e=eB.nC.get(eO.j["Asset/Editor/FolderTabManager"]);e.register({children:(0,tl.jsx)(pO,{}),icon:(0,tl.jsx)(rR.J,{value:"image"}),key:"preview",label:"folder.folder-editor-tabs.preview"}),e.register(gR),e.register(pC.D9),e.register(pC.On),e.register(pC._P),e.register(pC.Hy),e.register(pC.zd)}});var gO=i(51139);let gB=()=>{let{id:e}=(0,il.i)(),t=`/pimcore-studio/api/image-editor?id=${e}`;return(0,tl.jsx)(gO.h,{src:t,title:"Image Editor"})},gF=()=>(0,tl.jsx)(aB.V,{children:(0,tl.jsx)(gB,{})}),g_=(0,ia.createStyles)(e=>{let{token:t,css:i}=e;return{imageContainer:i` + `}},{hashPriority:"low"}),pb=e=>{let{styles:t}=ph(),{src:i}=e;return(0,to.jsx)("div",{className:t.preview,children:(0,to.jsx)(dX.s,{src:i})})};var py=i(39712),pv=i(25741),px=i(63739);let pj=()=>{let{id:e}=(0,py.G)(),{isLoading:t}=(0,pv.V)(e),[i,n]=(0,ts.useState)("");return((0,ts.useEffect)(()=>{t||(0,px.s)({url:`${(0,eQ.G)()}/assets/${e}/document/stream/pdf-preview`,onSuccess:e=>{n(URL.createObjectURL(e))}}).catch(()=>{(0,is.ZP)(new is.aE("An error occured while loading pdf preview"))})},[e,t]),""===i||t)?(0,to.jsx)(aB.V,{loading:!0}):(0,to.jsx)(aF.D,{children:(0,to.jsx)(pb,{src:i})})};var pw=i(91744),pC=i(1470);eR._.registerModule({onInit:()=>{let e=eB.nC.get(eO.j["Asset/Editor/DocumentTabManager"]);e.register({key:"view",label:"asset.asset-editor-tabs.view",children:(0,to.jsx)(pj,{}),icon:(0,to.jsx)(rR.J,{value:"view"})}),e.register(pw.hD),e.register(pC.D9),e.register(pw.V2),e.register(pC.V$),e.register(pC.On),e.register(pC._P),e.register(pC.Hy),e.register(pC.zd)}});var pk=i(56684),pT=i(90093);let pS=e=>{let{t}=(0,t7.useTranslation)();return(0,to.jsx)(aN.t,{pageSizeOptions:[10,20,50,100],showSizeChanger:!0,showTotal:e=>t("component.pagination.showing-items",{total:e}),...e})};var pD=i(15899),pE=i(78981),pM=i(88148),pI=i(34568),pL=i(59655),pP=i(69019),pN=i(32244),pA=i(17180);let pR=e=>{let{asset:t}=e,{t:i}=(0,t7.useTranslation)(),{openAsset:n}=(0,pE.Q)(),{renameContextMenuItem:r}=(0,pM.j)("asset",(0,pA.eG)("asset","rename",t.id)),{deleteContextMenuItem:a}=(0,pI.R)("asset",(0,pA.eG)("asset","delete",t.id)),{downloadContextMenuItem:l}=(0,pL.i)(),{uploadNewVersionContextMenuItem:o}=(0,pP.M)(),{openContextMenuItem:s}=(0,pN.y)("asset"),d=[s(t),{key:"locate-in-tree",icon:(0,to.jsx)(rR.J,{value:"target"}),label:i("preview-card.locate-in-tree"),hidden:!0},{key:"info",icon:(0,to.jsx)(rR.J,{value:"info-circle"}),label:i("info"),hidden:!0},r(t),o(t),l(t),a(t)];return(0,to.jsx)(pD.o,{dropdownItems:d,imgSrc:"imageThumbnailPath"in t&&(0,eY.isString)(t.imageThumbnailPath)?t.imageThumbnailPath:t.icon,name:t.filename,onClick:e=>{n({config:{id:t.id}})}},t.id)},pO=()=>{let e=(0,ts.useContext)(pT.N),[t,i]=(0,ts.useState)(1),[n,r]=(0,ts.useState)(20),a=e.id,{asset:l}=(0,pv.V)(a),{data:o,isLoading:s}=(0,pk.useAssetGetTreeQuery)({pathIncludeDescendants:!0,page:t,pageSize:n,excludeFolders:!0,path:null==l?void 0:l.fullPath}),d=(null==o?void 0:o.totalItems)??0;function f(e,t){i(e),r(t)}return(0,ts.useMemo)(()=>(0,to.jsx)(aF.D,{renderToolbar:(0,to.jsx)(aO.o,{justify:"flex-end",theme:"secondary",children:(0,to.jsx)(pS,{current:t,defaultPageSize:n,onChange:f,total:d})}),children:(0,to.jsx)(aB.V,{loading:s,padded:!0,children:(null==o?void 0:o.items)!==void 0&&o.items.length>0&&(0,to.jsx)(rZ.k,{gap:"extra-small",wrap:!0,children:o.items.map((e,t)=>(0,to.jsx)(pR,{asset:e},`${e.id}-${t}`))})})}),[t,n,o,s])};var pB=i(41190),pF=i(86833),p_=i(88963),pz=i(57062),pV=i(11091),p$=i(17345),pW=i(1660),pH=i(27348);let pG=(e,t)=>{let{useGridOptions:i,...n}=e;return{...n,useGridOptions:()=>{let{getGridProps:e,transformGridColumn:n,...r}=i(),[a,l]=(0,ts.useState)([]),{useInlineEditApiUpdate:o}=t,{updateCache:s,updateApiData:d}=o(),{useDataQueryHelper:f}=(0,pF.r)(),{getArgs:c}=f(),{decodeColumnIdentifier:u}=(0,pB.N)(),m=e=>{let{rowData:t,columnId:i,value:n}=e,r=u(i);if(void 0===r)return;l(e=>!0===(null==e?void 0:e.some(e=>e.rowIndex===t.id&&e.columnId===i))?e:[...e??[],{rowIndex:t.id,columnId:i}]);let a={getGetRequestArgs:c(),update:{id:t.id,column:r,value:n},meta:e.meta};s(a),d(a).finally(()=>{l(e=>(null==e?void 0:e.filter(e=>e.rowIndex!==t.id||e.columnId!==i))??[])}).catch(()=>{})};return{...r,getGridProps:()=>({...e(),onUpdateCellData:m,modifiedCells:a}),transformGridColumn:e=>{let t=n(e);return{...t,meta:{...t.meta,editable:e.editable}}}}}}};var pU=i(40483);let pq=()=>{let{id:e}=(0,io.i)();return{getId:()=>e}};var pZ=i(7040),pK=i(12395),pJ=i(4026),pX=i(52266),pQ=i(71149);let pY=(0,ts.createContext)({batchEdits:[],setBatchEdits:()=>{}}),p0=e=>{let{children:t}=e,[i,n]=(0,ts.useState)([]);return(0,ts.useMemo)(()=>(0,to.jsx)(pY.Provider,{value:{batchEdits:i,setBatchEdits:n},children:t}),[i,t])};var p1=i(71881),p2=i(41852),p3=i(8403);let p6=()=>{let{batchEdits:e,setBatchEdits:t}=(0,ts.useContext)(pY);return{batchEdits:e,setBatchEdits:t,updateLocale:(i,n)=>{t(e.map(e=>e.key===i?{...e,locale:n}:e))},resetBatchEdits:()=>{t([])},removeBatchEdit:i=>{t(e.filter(e=>e.key!==i))},addOrUpdateBatchEdit:i=>{let n=[...e],r=e.findIndex(e=>e.key===i.key);-1!==r?n[r]=i:n.push(i),t(n)}}};var p4=i(43970),p8=i(8335),p7=i(93346),p5=i(50444);let p9=e=>{let{batchEdit:t}=e,{frontendType:i,type:n}=t,{getComponentRenderer:r}=(0,tR.D)(),{ComponentRenderer:a}=r({dynamicTypeIds:[n,i],target:"BATCH_EDIT"});return null===a?(0,to.jsx)(to.Fragment,{children:"Dynamic Field Filter not supported"}):(0,to.jsx)(to.Fragment,{children:a({batchEdit:t})})},ge=()=>{let{batchEdits:e,removeBatchEdit:t}=p6(),{updateLocale:i}=p6(),n=["-",...(0,p5.r)().requiredLanguages],r=e.map(e=>{let r=e.locale??"-";return{id:e.key,children:(0,to.jsx)(tN.Tag,{children:(0,ii.t)(`${e.key}`)}),renderRightToolbar:(0,to.jsx)(p8.h,{items:[...e.localizable?[(0,to.jsx)(p7.k,{languages:n,onSelectLanguage:t=>{i(e.key,(0,p7.N)(t))},selectedLanguage:r},"language-selection")]:[],(0,to.jsx)(aM.h,{icon:{value:"close"},onClick:()=>{t(e.key)}},"remove")]}),body:(0,to.jsx)(p9,{batchEdit:e})}});return(0,to.jsxs)(to.Fragment,{children:[0===r.length&&(0,to.jsx)(dV.d,{text:(0,ii.t)("batch-edit.no-content")}),r.length>0&&(0,to.jsx)(p4.f,{items:r})]})};var gt=i(47503),gi=i(96068),gn=i(13254),gr=i(47588),ga=i(35715);let gl=e=>({id:(0,ga.K)(),action:e.action,refreshGrid:e.refreshGrid,type:"batch-edit",title:e.title,status:gr.B.QUEUED,topics:e.topics,config:{assetContextId:e.assetContextId}});var go=i(62812);let gs=(e,t,i)=>e.map(e=>{if(!(null!==e&&"children"in e&&void 0!==e.children&&Array.isArray(e.children)))return((e,t,i)=>{let n=!0===e.editable,r=t.some(t=>e.key===t.key&&((e,t)=>{let i=e=>"string"==typeof e?e.split("."):Array.isArray(e)?e.flat().map(e=>String(e)):[String(e)],n=i(e),r=i(t);return n.length===r.length&&n.every((e,t)=>e===r[t])})(e.group,t.group)),a=i({target:"BATCH_EDIT",dynamicTypeIds:[null==e?void 0:e.frontendType]});return n&&a&&!r})(e,t,i)?e:null;{let n=gs(e.children,t,i);return{...e,children:n}}}).filter(e=>null!==e&&(!("children"in e&&void 0!==e.children&&Array.isArray(e.children))||e.children.length>0)),gd=e=>e.some(e=>!(null!==e&&"children"in e&&void 0!==e.children&&Array.isArray(e.children))||gd(e.children)),gf=e=>{let{batchEditModalOpen:t,setBatchEditModalOpen:i}=e,{getAvailableColumnsDropdown:n}=(0,p_.L)(),{batchEdits:r,addOrUpdateBatchEdit:a,resetBatchEdits:l}=p6(),[o]=tc.l.useForm(),{t:s}=(0,t7.useTranslation)(),[d,{isError:f,isSuccess:c,error:u}]=(0,pk.useAssetPatchByIdMutation)(),[m,{isError:p,isSuccess:g,error:h}]=(0,pk.useAssetPatchFolderByIdMutation)(),{selectedRows:b}=(0,gt.G)(),y=Object.keys(b??{}).map(Number),v=y.length,{addJob:x}=(0,gn.C)(),{id:j,elementType:w}=(0,io.i)(),{useDataQueryHelper:C}=(0,pF.r)(),{getArgs:k}=C(),{hasType:T}=(0,tR.D)(),{refreshGrid:S}=(0,go.g)(w),D=()=>{l(),o.resetFields()};(0,ts.useEffect)(()=>{(c||g)&&(i(!1),D()),1===v&&pk.api.util.invalidateTags(gi.xc.ASSET_GRID_ID(y[0]))},[c,g]),(0,ts.useEffect)(()=>{f&&(0,is.ZP)(new is.MS(u)),p&&(0,is.ZP)(new is.MS(h))},[f,g]);let E=async e=>{let t=r.map(t=>({name:t.key,language:t.locale??null,data:e[t.key],type:t.type}));0===v?x(gl({title:s("batch-edit.job-title"),topics:[dp.F["patch-finished"],...dp.b],action:async()=>{var e,i,n,r;let a=await m({body:{data:[{folderId:j,metadata:t}],filters:null==(i=k())||null==(e=i.body)?void 0:e.filters}});if((null==(n=a.data)?void 0:n.jobRunId)===void 0)throw(0,is.ZP)(new is.aE("JobRunId is undefined")),Error("JobRunId is undefined");return null==(r=a.data)?void 0:r.jobRunId},refreshGrid:S,assetContextId:j})):1===v?await d({body:{data:[{id:y[0],metadata:t}]}}):x(gl({title:s("batch-edit.job-title"),topics:[dp.F["patch-finished"],...dp.b],action:async()=>{var e,i;let n=await d({body:{data:y.map(e=>({id:e,metadata:t}))}});if((null==(e=n.data)?void 0:e.jobRunId)===void 0)throw(0,is.ZP)(new is.aE("JobRunId is undefined")),Error("JobRunId is undefined");return null==(i=n.data)?void 0:i.jobRunId},refreshGrid:S,assetContextId:j}))},M=n(e=>{let t=e.locale??null;a({...e,locale:t})}).menu.items,I=(0,ts.useMemo)(()=>()=>(0,eY.isUndefined)(M)?[]:gs(M,r,T),[M,r,T]),L=!gd(I());return(0,to.jsx)(p2.i,{afterClose:()=>{D()},footer:(0,to.jsxs)(p1.m,{divider:!0,justify:"space-between",children:[(0,to.jsx)(pJ.L,{menu:{items:I()},children:(0,to.jsx)(dx.W,{disabled:L,icon:{value:"new"},type:"default",children:s("listing.add-column")})}),r.length>0&&(0,to.jsxs)(rZ.k,{align:"center",gap:"extra-small",children:[(0,to.jsx)(dx.W,{icon:{value:"close"},onClick:()=>{l()},type:"link",children:s("batch-edit.modal-footer.discard-all-changes")}),(0,to.jsx)(ai.z,{onClick:()=>{o.submit(),i(!1)},type:"primary",children:s("batch-edit.modal-footer.apply-changes")})]})]}),onCancel:()=>{i(!1),D()},open:t,size:"M",title:(0,to.jsx)(p3.r,{children:s("batch-edit.modal-title")}),children:(0,to.jsx)(tc.l,{form:o,onFinish:E,children:(0,to.jsx)(ge,{})})})},gc=e=>{let{...t}=e,{t:i}=(0,t7.useTranslation)();return(0,to.jsxs)(tc.l,{layout:"vertical",...t,children:[(0,to.jsx)(tc.l.Item,{label:i("export-csv-form.form-field.delimiter"),name:"delimiter",rules:[{required:!0,message:i("form.validation.required")}],children:(0,to.jsx)(tN.Input,{})}),(0,to.jsx)(tc.l.Item,{label:i("export-csv-form.form-field.header"),name:"header",rules:[{required:!0,message:i("form.validation.required")}],children:(0,to.jsx)(tC.P,{options:[{value:"name",label:i("export-csv-form.form-field.header.option.name")},{value:"title",label:i("export-csv-form.form-field.header.option.title")},{value:"no_header",label:i("export-csv-form.form-field.header.option.no-header")}]})})]})};var gu=i(42804);let{useExportDownloadCsvQuery:gm,useExportDeleteCsvMutation:gp,useExportCsvMutation:gg,useExportCsvFolderMutation:gh,useExportDownloadXlsxQuery:gb,useExportDeleteXlsxMutation:gy,useExportXlsxMutation:gv,useExportXlsxFolderMutation:gx}=aw.api.enhanceEndpoints({addTagTypes:["Export"]}).injectEndpoints({endpoints:e=>({exportDownloadCsv:e.query({query:e=>({url:`/pimcore-studio/api/export/download/csv/${e.jobRunId}`}),providesTags:["Export"]}),exportDeleteCsv:e.mutation({query:e=>({url:`/pimcore-studio/api/export/download/csv/${e.jobRunId}`,method:"DELETE"}),invalidatesTags:["Export"]}),exportCsv:e.mutation({query:e=>({url:"/pimcore-studio/api/export/csv",method:"POST",body:e.body}),invalidatesTags:["Export"]}),exportCsvFolder:e.mutation({query:e=>({url:"/pimcore-studio/api/export/csv/folder",method:"POST",body:e.body}),invalidatesTags:["Export"]}),exportDownloadXlsx:e.query({query:e=>({url:`/pimcore-studio/api/export/download/xlsx/${e.jobRunId}`}),providesTags:["Export"]}),exportDeleteXlsx:e.mutation({query:e=>({url:`/pimcore-studio/api/export/download/xlsx/${e.jobRunId}`,method:"DELETE"}),invalidatesTags:["Export"]}),exportXlsx:e.mutation({query:e=>({url:"/pimcore-studio/api/export/xlsx",method:"POST",body:e.body}),invalidatesTags:["Export"]}),exportXlsxFolder:e.mutation({query:e=>({url:"/pimcore-studio/api/export/xlsx/folder",method:"POST",body:e.body}),invalidatesTags:["Export"]})}),overrideExisting:!1});var gj=i(97473);let gw=e=>{let[t]=tN.Form.useForm(),{addJob:i}=(0,gn.C)(),{id:n,elementType:r}=(0,io.i)(),{element:a}=(0,gj.q)(n,r),[l,o]=(0,ts.useState)("Element"),[s,{isError:d,error:f}]=gg(),[c,{isError:u,error:m}]=gh(),{selectedRows:p}=(0,gt.G)(),g=void 0!==p?Object.keys(p).map(Number):[],{selectedColumns:h}=(0,pB.N)(),{useDataQueryHelper:b}=(0,pF.r)(),{getArgs:y}=b(),{t:v}=(0,t7.useTranslation)();return(0,ts.useEffect)(()=>{void 0!==a&&("filename"in a&&o(a.filename),"key"in a&&o(a.key))},[a]),(0,ts.useEffect)(()=>{d&&(0,is.ZP)(new is.MS(f))},[d]),(0,ts.useEffect)(()=>{u&&(0,is.ZP)(new is.MS(m))},[u]),(0,to.jsx)(tN.Modal,{onCancel:()=>{e.setOpen(!1)},onOk:()=>{t.submit()},open:e.open,title:(0,to.jsx)(p3.r,{iconName:"export",children:v("export-csv-form.modal-title")}),children:(0,to.jsxs)(tN.Space,{direction:"vertical",size:10,style:{paddingTop:10},children:[(0,to.jsx)(tN.Alert,{message:v("export-csv-form.export-notice"),showIcon:!0,type:"warning"}),(0,to.jsx)(gc,{form:t,initialValues:{delimiter:";",header:"name"},onFinish:function(t){i((0,gu.C)({title:v("jobs.csv-job.title",{title:l}),topics:[dp.F["csv-download-ready"],...dp.b],downloadUrl:"/pimcore-studio/api/export/download/csv/{jobRunId}",action:async()=>await x(t.delimiter,t.header)})),e.setOpen(!1)}})]})});async function x(e,t){let i=y().body.columns??[],a=h.map(e=>{let t=i.find(t=>t.key===e.key&&t.locale===e.locale);return"dataobject.advanced"===t.type&&(t=i.find(t=>{var i,n,r,a;return(null==(r=e.originalApiDefinition)||null==(n=r.__meta)||null==(i=n.advancedColumnConfig)?void 0:i.title)===(null==t||null==(a=t.config)?void 0:a.title)})),{key:(t=t??e).key,type:t.type,locale:t.locale,config:t.config}});if(0===g.length){var l,o;let i=(null==(o=y())||null==(l=o.body)?void 0:l.filters)??{};void 0!==i&&(delete i.page,delete i.pageSize);let s=c({body:{folders:[n],elementType:r,columns:a,config:{delimiter:e,header:t},filters:{...i,includeDescendants:!0}}});return(await s).data.jobRunId}{let i=s({body:{elements:g,elementType:r,columns:a,config:{delimiter:e,header:t}}});return(await i).data.jobRunId}}},gC=e=>{let{...t}=e,{t:i}=(0,t7.useTranslation)();return(0,to.jsx)(tc.l,{layout:"vertical",...t,children:(0,to.jsx)(tc.l.Item,{label:i("export-xlsx-form.form-field.header"),name:"header",rules:[{required:!0,message:i("form.validation.required")}],children:(0,to.jsx)(tC.P,{options:[{value:"name",label:i("export-xlsx-form.form-field.header.option.name")},{value:"title",label:i("export-xlsx-form.form-field.header.option.title")},{value:"no_header",label:i("export-xlsx-form.form-field.header.option.no-header")}]})})})},gk=e=>{let[t]=tN.Form.useForm(),{addJob:i}=(0,gn.C)(),{id:n,elementType:r}=(0,io.i)(),{element:a}=(0,gj.q)(n,r),[l,o]=(0,ts.useState)("Element"),[s,{isError:d,error:f}]=gv(),[c,{isError:u,error:m}]=gx(),{selectedRows:p}=(0,gt.G)(),g=void 0!==p?Object.keys(p).map(Number):[],{selectedColumns:h}=(0,pB.N)(),{useDataQueryHelper:b}=(0,pF.r)(),{getArgs:y}=b(),{t:v}=(0,t7.useTranslation)();return(0,ts.useEffect)(()=>{void 0!==a&&("filename"in a&&o(a.filename),"key"in a&&o(a.key))},[a]),(0,ts.useEffect)(()=>{d&&(0,is.ZP)(new is.MS(f))},[d]),(0,ts.useEffect)(()=>{u&&(0,is.ZP)(new is.MS(m))},[u]),(0,to.jsx)(tN.Modal,{onCancel:()=>{e.setOpen(!1)},onOk:()=>{t.submit()},open:e.open,title:(0,to.jsx)(p3.r,{iconName:"export",children:v("export-xlsx-form.modal-title")}),children:(0,to.jsxs)(tN.Space,{direction:"vertical",size:10,style:{paddingTop:10},children:[(0,to.jsx)(tN.Alert,{message:v("export-xlsx-form.export-notice"),showIcon:!0,type:"warning"}),(0,to.jsx)(gC,{form:t,initialValues:{header:"name"},onFinish:function(t){i((0,gu.C)({title:v("jobs.xlsx-job.title",{title:l}),topics:[dp.F["xlsx-download-ready"],...dp.b],downloadUrl:"/pimcore-studio/api/export/download/xlsx/{jobRunId}",action:async()=>await x(t.header)})),e.setOpen(!1)}})]})});async function x(e){let t=y().body.columns??[],i=h.map(e=>{let i=t.find(t=>t.key===e.key&&t.locale===e.locale);return"dataobject.advanced"===i.type&&(i=t.find(t=>{var i,n,r,a;return(null==(r=e.originalApiDefinition)||null==(n=r.__meta)||null==(i=n.advancedColumnConfig)?void 0:i.title)===(null==t||null==(a=t.config)?void 0:a.title)})),{key:(i=i??e).key,type:i.type,locale:i.locale,config:i.config}});if(0===g.length){var a,l;let t=(null==(l=y())||null==(a=l.body)?void 0:a.filters)??{};void 0!==t&&(delete t.page,delete t.pageSize);let o=c({body:{folders:[n],elementType:r,columns:i,config:{header:e},filters:{...t,includeDescendants:!0}}});return(await o).data.jobRunId}{let t=s({body:{elements:g,elementType:r,columns:i,config:{header:e}}});return(await t).data.jobRunId}}},gT=e=>({id:(0,ga.K)(),action:e.action,refreshGrid:e.refreshGrid,type:"batch-delete",title:e.title,status:gr.B.QUEUED,topics:e.topics,config:{assetContextId:e.assetContextId}}),gS=()=>{let e=(0,pQ.J)(),{id:t,elementType:i}=(0,io.i)(),{useDataQueryHelper:n}=(0,pF.r)(),{getArgs:r}=n(),{addJob:a}=(0,gn.C)(),{refreshGrid:l}=(0,go.g)(i),{createZipDownload:o}=(0,pX.F)({type:"folder"}),{createZipDownload:s}=(0,pX.F)({type:"asset-list"}),[d]=(0,pk.useAssetBatchDeleteMutation)(),{data:f}=(0,pk.useAssetGetByIdQuery)({id:t}),[c,u]=(0,ts.useState)("Asset"),[m,p]=(0,ts.useState)(!1),[g,h]=(0,ts.useState)(!1),[b,y]=(0,ts.useState)(!1),{t:v}=(0,t7.useTranslation)();if((0,ts.useEffect)(()=>{void 0!==f&&u(`${f.filename}`)},[f]),void 0===e)return(0,to.jsx)(to.Fragment,{});let{selectedRows:x}=e,j=void 0!==x?Object.keys(x).map(Number):[],w=void 0!==x&&Object.keys(x).length>0,C={items:[{key:"1",label:v("listing.actions.batch-edit"),icon:(0,to.jsx)(rR.J,{value:"batch-selection"}),onClick:()=>{y(!0)}},{key:"2",label:v("listing.actions.export"),icon:(0,to.jsx)(rR.J,{value:"export"}),children:[{key:"2.1",label:v("listing.actions.csv-export"),icon:(0,to.jsx)(rR.J,{value:"export"}),onClick:()=>{p(!0)}},{key:"2.2",label:v("listing.actions.xlsx-export"),icon:(0,to.jsx)(rR.J,{value:"export"}),onClick:()=>{h(!0)}}]},{key:"3",label:v("listing.actions.zip-download"),icon:(0,to.jsx)(rR.J,{value:"download"}),onClick:()=>{w?s({jobTitle:c,requestData:{body:{assets:j}}}):o({jobTitle:c,requestData:{body:{folders:[t],filters:{includeDescendants:!0,...r().body.filters??{},page:1,pageSize:0xe8d4a50ff6}}}})}},{key:"4",label:v("listing.actions.delete"),icon:(0,to.jsx)(rR.J,{value:"trash"}),onClick:()=>{a(gT({title:v("batch-delete.job-title"),topics:[dp.F["deletion-finished"],...dp.b],action:async()=>{var e,t;let i=await d({body:{ids:j}});if((0,eY.isUndefined)(null==(e=i.data)?void 0:e.jobRunId))throw(0,is.ZP)(new is.aE("JobRunId is undefined")),Error("JobRunId is undefined");return null==(t=i.data)?void 0:t.jobRunId},refreshGrid:l,assetContextId:t}))}}]};return(0,to.jsxs)(to.Fragment,{children:[(0,to.jsx)(pJ.L,{menu:C,children:(0,to.jsx)(pK.P,{children:w?v("listing.actions"):v("listing.non-selected.actions")},"dropdown-button")}),(0,to.jsx)(gw,{open:m,setOpen:p}),(0,to.jsx)(gk,{open:g,setOpen:h}),(0,to.jsx)(p0,{children:(0,to.jsx)(gf,{batchEditModalOpen:b,setBatchEditModalOpen:y})})]})},gD=()=>(0,ts.useMemo)(()=>(0,to.jsxs)(aO.o,{theme:"secondary",children:[(0,to.jsxs)(aR.P,{size:"mini",children:[(0,to.jsx)(fu.q,{}),(0,to.jsx)(gS,{})]}),(0,to.jsxs)(aR.P,{size:"extra-small",children:[(0,to.jsx)(fm.s,{}),(0,to.jsx)(fp.t,{})]})]}),[]),gE=(0,aj.createColumnHelper)();var gM=i(23526),gI=i(43352);let gL=e=>{let{row:t}=e,{openGridContextMenuItem:i}=(0,pN.y)("asset"),{renameGridContextMenuItem:n}=(0,pM.j)("asset",(0,pA.eG)("asset","rename",Number(t.id))),{deleteGridContextMenuItem:r}=(0,pI.R)("asset",(0,pA.eG)("asset","delete",Number(t.id))),{downloadGridContextMenuItem:a}=(0,pL.i)(),{locateInTreeGridContextMenuItem:l}=(0,gI.B)("asset"),[o,s]=(0,ts.useState)(void 0),d=[i(t),n(t),l(t,()=>{s(void 0)}),r(t),a(t)].filter(Boolean);return(0,to.jsx)(pJ.L,{menu:{items:d,onClick:e=>{e.key===gM.N.locateInTree&&s(!0)}},open:o,trigger:["contextMenu"],children:e.children},t.id)},gP={...fe.l,ViewComponent:()=>(0,to.jsx)(pZ.t,{renderToolbar:gD}),useDataQuery:pk.useAssetGetGridQuery,useDataQueryHelper:d8.$,useElementId:pq},gN=(0,fr.q)(fn.y,fi.L,e=>{let{ConfigurationComponent:t,ContextComponent:i,useSidebarOptions:n,...r}=e;return{...r,ContextComponent:(0,pW.i)(i),ConfigurationComponent:()=>{let{isLoading:e,data:i}=(0,pk.useAssetGetAvailableGridColumnsQuery)(),{useElementId:n,useDataQueryHelper:r}=(0,pF.r)(),{getId:a}=n(),{id:l}=(0,pz.m)(),{isLoading:o,data:s}=(0,pk.useAssetGetGridConfigurationByFolderIdQuery)({folderId:a(),configurationId:l}),{setSelectedColumns:d}=(0,pB.N)(),{setAvailableColumns:f}=(0,p_.L)(),{setGridConfig:c}=(0,pV.j)(),{setDataLoadingState:u}=r();return((0,ts.useEffect)(()=>{if(void 0===i||void 0===s)return;let e=[],t=i.columns.map(e=>e);for(let t of s.columns){let n=i.columns.find(e=>e.key===t.key);void 0!==n&&e.push({key:t.key,locale:t.locale,type:n.type,config:n.config,sortable:n.sortable,editable:n.editable,localizable:n.localizable,exportable:n.exportable,frontendType:n.frontendType,group:n.group,originalApiDefinition:n})}d(e),f(t),c(s),u("config-changed")},[i,s]),e||o)?(0,to.jsx)(aB.V,{loading:!0}):(0,to.jsx)(t,{})},useSidebarOptions:(0,p$.e)(n)}},[pG,{useInlineEditApiUpdate:()=>{let[e]=(0,pk.useAssetPatchByIdMutation)(),t=(0,pU.useAppDispatch)();return{updateCache:e=>{let{update:i,getGetRequestArgs:n}=e,{id:r,column:a,value:l}=i;t(pk.api.util.updateQueryData("assetGetGrid",n,e=>{e:for(let t of e.items)if(t.id===r){for(let e of t.columns)if(e.key===a.key&&e.locale===a.locale){e.value=l;break e}}return e}))},updateApiData:async t=>{let{update:i}=t,n=e({body:{data:[{id:i.id,metadata:[{name:i.column.key,language:i.column.locale,data:i.value,type:i.column.type}]}]}}),r=await n;return(0,eY.isNil)(r.error)||(0,is.ZP)(new is.MS(r.error)),r}}}}],[pH.G,{rowSelectionMode:"multiple"}],e=>{let{useGridOptions:t,...i}=e;return{...i,useGridOptions:()=>{let{t:e}=(0,t7.useTranslation)(),{transformGridColumnDefinition:i,...n}=t();return{...n,transformGridColumnDefinition:t=>{let n=i(t);return n.push(gE.accessor("actions",{header:e("actions.open"),enableSorting:!1,meta:{type:"asset-actions"},size:65})),n}}}}},e=>{let{useGridOptions:t,...i}=e;return{...i,useGridOptions:()=>{let{getGridProps:e,...i}=t();return{...i,getGridProps:()=>({...e(),contextMenu:gL})}}}},d7.p,ft.o)(gP),gA=()=>(0,to.jsx)(fe.p,{...gN}),gR={key:"listing",label:"folder.folder-editor-tabs.view",children:(0,to.jsx)(()=>(0,to.jsx)(d9.d,{serviceIds:["DynamicTypes/GridCellRegistry","DynamicTypes/MetadataRegistry","DynamicTypes/ListingRegistry","DynamicTypes/BatchEditRegistry","DynamicTypes/FieldFilterRegistry"],children:(0,to.jsx)(gA,{})}),{}),icon:(0,to.jsx)(rR.J,{value:"list"}),isDetachable:!1};eR._.registerModule({onInit:()=>{let e=eB.nC.get(eO.j["Asset/Editor/FolderTabManager"]);e.register({children:(0,to.jsx)(pO,{}),icon:(0,to.jsx)(rR.J,{value:"image"}),key:"preview",label:"folder.folder-editor-tabs.preview"}),e.register(gR),e.register(pC.D9),e.register(pC.On),e.register(pC._P),e.register(pC.Hy),e.register(pC.zd)}});var gO=i(51139);let gB=()=>{let{id:e}=(0,io.i)(),t=`/pimcore-studio/api/image-editor?id=${e}`;return(0,to.jsx)(gO.h,{src:t,title:"Image Editor"})},gF=()=>(0,to.jsx)(aB.V,{children:(0,to.jsx)(gB,{})}),g_=(0,ia.createStyles)(e=>{let{token:t,css:i}=e;return{imageContainer:i` display: grid; height: 100%; width: 100%; @@ -381,7 +381,7 @@ align-items: center; height: 100%; pointer-events: auto; - `}},{hashPriority:"low"});var gz=i(18289),gV=i(54676),g$=i(4884);let gW={type:"MiniPaint",message:"Image successfully saved!"},gH=e=>{let{src:t}=e,[i,n]=(0,ts.useState)(t),{styles:r}=g_(),a=(0,ts.useContext)(g$.A),{zoom:o,setZoom:l}=td().useContext(g2),{containerRef:s}=a;return(0,ts.useEffect)(()=>{let e=e=>{let{type:i,message:r}=e.data;i===gW.type&&r===gW.message&&n(`${t}?hash=${new Date().getTime()}`)};return window.addEventListener("message",e),()=>{window.removeEventListener("message",e)}},[]),(0,tl.jsxs)(tl.Fragment,{children:[(0,tl.jsx)("div",{className:r.imageContainer,ref:s,children:(0,tl.jsx)(gV.I,{imageSrc:i,zoom:o})}),(0,tl.jsx)("div",{className:r.floatingContainer,children:(0,tl.jsx)("div",{className:r.flexContainer,children:(0,tl.jsx)(gz._,{setZoom:l,zoom:o})})})]})};var gG=i(25202);class gU extends ot.E{}var gq=i(41659);let gZ=(0,ia.createStyles)(e=>{let{token:t,css:i}=e;return{sidebarContentEntry:i` + `}},{hashPriority:"low"});var gz=i(18289),gV=i(54676),g$=i(4884);let gW={type:"MiniPaint",message:"Image successfully saved!"},gH=e=>{let{src:t}=e,[i,n]=(0,ts.useState)(t),{styles:r}=g_(),a=(0,ts.useContext)(g$.A),{zoom:l,setZoom:o}=td().useContext(g2),{containerRef:s}=a;return(0,ts.useEffect)(()=>{let e=e=>{let{type:i,message:r}=e.data;i===gW.type&&r===gW.message&&n(`${t}?hash=${new Date().getTime()}`)};return window.addEventListener("message",e),()=>{window.removeEventListener("message",e)}},[]),(0,to.jsxs)(to.Fragment,{children:[(0,to.jsx)("div",{className:r.imageContainer,ref:s,children:(0,to.jsx)(gV.I,{imageSrc:i,zoom:l})}),(0,to.jsx)("div",{className:r.floatingContainer,children:(0,to.jsx)("div",{className:r.flexContainer,children:(0,to.jsx)(gz._,{setZoom:o,zoom:l})})})]})};var gG=i(25202);class gU extends lt.E{}var gq=i(41659);let gZ=(0,ia.createStyles)(e=>{let{token:t,css:i}=e;return{sidebarContentEntry:i` .sidebar__content-label { color: ${t.colorPrimaryActive}; line-height: 20px; @@ -473,7 +473,7 @@ color: ${t.colorTextDescription}; } } - `}},{hashPriority:"low"});var gK=i(33294);let gJ=e=>{let{width:t,height:i,onClickDownloadByFormat:n,onClickCustomDownload:r}=e,[a,o]=(0,ts.useState)("original"),[l,s]=(0,ts.useState)(t),[d,f]=(0,ts.useState)(i),[c,u]=(0,ts.useState)(-1),[m,p]=(0,ts.useState)(-1),[g,h]=(0,ts.useState)("scaleByWidth"),[b,y]=(0,ts.useState)("JPEG"),{styles:v}=gZ(),{t:x}=(0,t7.useTranslation)(),{getModes:j,getFormats:w,getDownloadFormats:C}=(()=>{let{t:e}=(0,t7.useTranslation)();return{getModes:()=>[{value:"resize",label:e("resize")},{value:"scaleByWidth",label:(0,tl.jsxs)(tl.Fragment,{children:[e("scaleByWidth")+" ",(0,tl.jsxs)("span",{className:"entry-content__download-content-custom__default",children:["(",e("default"),")"]})]})},{value:"scaleByHeight",label:e("scaleByHeight")}],getFormats:()=>[{value:"JPEG",label:(0,tl.jsxs)(tl.Fragment,{children:["JPEG ",(0,tl.jsxs)("span",{className:"entry-content__download-content-custom__default",children:["(",e("default"),")"]})]})},{value:"PNG",label:"PNG"}],getDownloadFormats:()=>[{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")}]}})(),k=j(),T=w(),S=C(),D={label:(0,tl.jsx)("span",{children:x("image-sidebar.tab.details.custom-download")}),children:(0,tl.jsxs)(tN.Form,{initialValues:{width:t,height:i,mode:g,format:b},layout:"vertical",children:[(0,tl.jsxs)("div",{className:"entry-content__download-content-custom__dimensions",children:[(0,tl.jsx)(tN.Form.Item,{label:x("width"),name:"width",children:(0,tl.jsx)(tN.Input,{onChange:e=>{s(e.target.value)},type:"number"})}),(0,tl.jsx)(tN.Form.Item,{label:x("height"),name:"height",children:(0,tl.jsx)(tN.Input,{onChange:e=>{f(e.target.value)},type:"number"})})]}),(0,tl.jsxs)("div",{className:"entry-content__download-content-custom__others",children:[(0,tl.jsxs)("div",{children:[(0,tl.jsx)(tN.Form.Item,{label:x("quality"),name:"quality",children:(0,tl.jsx)(tN.Input,{onChange:e=>{u(e.target.value)},type:"number"})}),(0,tl.jsx)(tN.Form.Item,{label:"DPI",name:"dpi",children:(0,tl.jsx)(tN.Input,{onChange:e=>{p(e.target.value)},type:"number"})})]}),(0,tl.jsx)("div",{children:(0,tl.jsx)(tN.Form.Item,{label:x("mode"),name:"mode",children:(0,tl.jsx)(tC.P,{"aria-label":x("aria.asset.image-sidebar.tab.details.custom-thumbnail-mode"),onChange:e=>{h(e)},options:k})})}),(0,tl.jsx)("div",{children:(0,tl.jsx)(tN.Form.Item,{label:x("format"),name:"format",children:(0,tl.jsx)(tC.P,{"aria-label":x("aria.asset.image-sidebar.tab.details.custom-thumbnail-format"),onChange:e=>{y(e)},options:T})})})]}),(0,tl.jsx)("div",{className:"entry-content__download-content-custom__button",children:(0,tl.jsx)(ai.z,{"aria-label":x("aria.asset.image-sidebar.tab.details.download-custom-thumbnail"),onClick:()=>{r({width:l,height:d,quality:c,dpi:m,mode:g,format:b})},children:x("download")})})]})};return(0,tl.jsxs)(aB.V,{className:v.sidebarContentEntry,padded:!0,padding:{top:"none",x:"small",bottom:"mini"},children:[(0,tl.jsx)(gq.h,{title:x("asset.sidebar.details")}),(0,tl.jsxs)("div",{className:"sidebar__content-entry-content",children:[(0,tl.jsxs)("div",{className:v.sidebarContentDimensions,children:[(0,tl.jsxs)("div",{className:"entry-content__dimensions-label",children:[(0,tl.jsx)("p",{children:x("width")}),(0,tl.jsx)("p",{children:x("height")})]}),(0,tl.jsxs)("div",{className:"m-t-mini entry-content__dimensions-content",children:[(0,tl.jsxs)("p",{children:[t," px"]}),(0,tl.jsxs)("p",{children:[i," px"]})]})]}),(0,tl.jsxs)("div",{className:["m-t-small",v.sidebarContentDownload].join(" "),children:[(0,tl.jsx)("p",{className:"sidebar__content-label",children:x("download")}),(0,tl.jsxs)("div",{className:"entry-content__download-content",children:[(0,tl.jsxs)("div",{className:"entry-content__download-content-thumbnail",children:[(0,tl.jsx)(tC.P,{"aria-label":x("aria.asset.image-sidebar.tab.details.precreated-thumbnail"),onChange:e=>{o(e)},options:S,value:a}),(0,tl.jsx)(aM.h,{"aria-label":x("aria.asset.image-sidebar.tab.details.download-thumbnail"),icon:{value:"download"},onClick:()=>{n(a)}})]}),(0,tl.jsx)("div",{className:"entry-content__download-content-custom",children:(0,tl.jsx)(gK.T,{...D,defaultActive:!0,size:"small",theme:"simple"})})]})]})]})]})};var gX=i(42962),gQ=i(41588),gY=i(99340);let g0=new gU;g0.registerEntry({key:"details",icon:(0,tl.jsx)(rR.J,{options:{width:"16px",height:"16px"},value:"details"}),component:(0,tl.jsx)(()=>{let e=(0,ts.useContext)(pT.N),{data:t}=(0,pk.useAssetGetByIdQuery)({id:e.id});return(0,tl.jsx)(gJ,{height:t.height??0,onClickCustomDownload:async i=>{!function(e,i){let{width:n,height:r,quality:a,dpi:o,mode:l,format:s}=i,d=[{key:"mimeType",value:s},{key:"resizeMode",value:l},{key:"dpi",value:o.toString()},{key:"quality",value:a.toString()},{key:"height",value:r.toString()},{key:"width",value:n.toString()}],f=(0,gQ.I)(d,["","-1"]);fetch(`${(0,eQ.G)()}/assets/${e}/image/download/custom?${f}`).then(async e=>await e.blob()).then(e=>{let i=URL.createObjectURL(e);var n=t.filename,r=i,a=s;let o=(0,gX.B)(n,a.toLowerCase());(0,gX.K)(r,o)}).catch(()=>{(0,is.ZP)(new is.aE("Could not download image"))})}(e.id,i)},onClickDownloadByFormat:async t=>{!function(e,t){if("original"===t)return i(`${(0,eQ.G)()}/assets/${e}/download`,t);i(`${(0,eQ.G)()}/assets/${e}/image/download/format/${t}`,t)}(e.id,t)},width:t.width??0});function i(e,i){fetch(e).then(async e=>await e.blob()).then(e=>{var n,r,a;let o,l=URL.createObjectURL(e);n=t.filename,r=l,a=i,o=n,"original"!==a&&(o=(0,gX.B)(n,"jpg")),(0,gX.K)(r,o)}).catch(()=>{(0,is.ZP)(new is.aE("Could not prepare download"))})}},{})}),g0.registerButton({key:"focal-point",icon:(0,tl.jsx)(rR.J,{options:{width:"16px",height:"16px"},value:"focal-point"}),component:(0,tl.jsx)(gY.H,{icon:(0,tl.jsx)(rR.J,{options:{width:"16px",height:"16px"},value:"focal-point"})},"focal-point")});var g1=i(90938);let g2=(0,ts.createContext)({zoom:100,setZoom:()=>{}}),g3=()=>{let[e,t]=(0,ts.useState)(100),{id:i}=(0,ts.useContext)(pT.N),{isLoading:n}=(0,pv.V)(i),r=g0.getEntries(),a=g0.getButtons(),o=(0,ts.useMemo)(()=>({zoom:e,setZoom:t}),[e]),l=`${(0,eQ.G)()}/assets/${i}/image/stream/preview`;return n?(0,tl.jsx)(aB.V,{loading:!0}):(0,tl.jsx)(g1.l,{children:(0,tl.jsx)(g2.Provider,{value:o,children:(0,tl.jsx)(aF.D,{renderSidebar:(0,tl.jsx)(gG.Y,{buttons:a,entries:r}),children:(0,tl.jsx)(gH,{src:l})})})})};eR._.registerModule({onInit:()=>{let e=eB.nC.get(eO.j["Asset/Editor/ImageTabManager"]);e.register({key:"view",label:"asset.asset-editor-tabs.view",children:(0,tl.jsx)(g3,{}),icon:(0,tl.jsx)(rR.J,{value:"view"})}),e.register({key:"edit",workspacePermission:"publish",label:"asset.asset-editor-tabs.edit",children:(0,tl.jsx)(gF,{}),icon:(0,tl.jsx)(rR.J,{value:"edit-pen"})}),e.register(pw.FV),e.register(pw.hD),e.register(pC.D9),e.register(pw.V2),e.register(pC.V$),e.register(pC.On),e.register(pC._P),e.register(pC.Hy),e.register(pC.zd)}});var g6=i(29186),g4=i(42913);let g8=(0,ia.createStyles)(e=>{let{token:t,css:i}=e;return{relativeContainer:i` + `}},{hashPriority:"low"});var gK=i(33294);let gJ=e=>{let{width:t,height:i,onClickDownloadByFormat:n,onClickCustomDownload:r}=e,[a,l]=(0,ts.useState)("original"),[o,s]=(0,ts.useState)(t),[d,f]=(0,ts.useState)(i),[c,u]=(0,ts.useState)(-1),[m,p]=(0,ts.useState)(-1),[g,h]=(0,ts.useState)("scaleByWidth"),[b,y]=(0,ts.useState)("JPEG"),{styles:v}=gZ(),{t:x}=(0,t7.useTranslation)(),{getModes:j,getFormats:w,getDownloadFormats:C}=(()=>{let{t:e}=(0,t7.useTranslation)();return{getModes:()=>[{value:"resize",label:e("resize")},{value:"scaleByWidth",label:(0,to.jsxs)(to.Fragment,{children:[e("scaleByWidth")+" ",(0,to.jsxs)("span",{className:"entry-content__download-content-custom__default",children:["(",e("default"),")"]})]})},{value:"scaleByHeight",label:e("scaleByHeight")}],getFormats:()=>[{value:"JPEG",label:(0,to.jsxs)(to.Fragment,{children:["JPEG ",(0,to.jsxs)("span",{className:"entry-content__download-content-custom__default",children:["(",e("default"),")"]})]})},{value:"PNG",label:"PNG"}],getDownloadFormats:()=>[{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")}]}})(),k=j(),T=w(),S=C(),D={label:(0,to.jsx)("span",{children:x("image-sidebar.tab.details.custom-download")}),children:(0,to.jsxs)(tN.Form,{initialValues:{width:t,height:i,mode:g,format:b},layout:"vertical",children:[(0,to.jsxs)("div",{className:"entry-content__download-content-custom__dimensions",children:[(0,to.jsx)(tN.Form.Item,{label:x("width"),name:"width",children:(0,to.jsx)(tN.Input,{onChange:e=>{s(e.target.value)},type:"number"})}),(0,to.jsx)(tN.Form.Item,{label:x("height"),name:"height",children:(0,to.jsx)(tN.Input,{onChange:e=>{f(e.target.value)},type:"number"})})]}),(0,to.jsxs)("div",{className:"entry-content__download-content-custom__others",children:[(0,to.jsxs)("div",{children:[(0,to.jsx)(tN.Form.Item,{label:x("quality"),name:"quality",children:(0,to.jsx)(tN.Input,{onChange:e=>{u(e.target.value)},type:"number"})}),(0,to.jsx)(tN.Form.Item,{label:"DPI",name:"dpi",children:(0,to.jsx)(tN.Input,{onChange:e=>{p(e.target.value)},type:"number"})})]}),(0,to.jsx)("div",{children:(0,to.jsx)(tN.Form.Item,{label:x("mode"),name:"mode",children:(0,to.jsx)(tC.P,{"aria-label":x("aria.asset.image-sidebar.tab.details.custom-thumbnail-mode"),onChange:e=>{h(e)},options:k})})}),(0,to.jsx)("div",{children:(0,to.jsx)(tN.Form.Item,{label:x("format"),name:"format",children:(0,to.jsx)(tC.P,{"aria-label":x("aria.asset.image-sidebar.tab.details.custom-thumbnail-format"),onChange:e=>{y(e)},options:T})})})]}),(0,to.jsx)("div",{className:"entry-content__download-content-custom__button",children:(0,to.jsx)(ai.z,{"aria-label":x("aria.asset.image-sidebar.tab.details.download-custom-thumbnail"),onClick:()=>{r({width:o,height:d,quality:c,dpi:m,mode:g,format:b})},children:x("download")})})]})};return(0,to.jsxs)(aB.V,{className:v.sidebarContentEntry,padded:!0,padding:{top:"none",x:"small",bottom:"mini"},children:[(0,to.jsx)(gq.h,{title:x("asset.sidebar.details")}),(0,to.jsxs)("div",{className:"sidebar__content-entry-content",children:[(0,to.jsxs)("div",{className:v.sidebarContentDimensions,children:[(0,to.jsxs)("div",{className:"entry-content__dimensions-label",children:[(0,to.jsx)("p",{children:x("width")}),(0,to.jsx)("p",{children:x("height")})]}),(0,to.jsxs)("div",{className:"m-t-mini entry-content__dimensions-content",children:[(0,to.jsxs)("p",{children:[t," px"]}),(0,to.jsxs)("p",{children:[i," px"]})]})]}),(0,to.jsxs)("div",{className:["m-t-small",v.sidebarContentDownload].join(" "),children:[(0,to.jsx)("p",{className:"sidebar__content-label",children:x("download")}),(0,to.jsxs)("div",{className:"entry-content__download-content",children:[(0,to.jsxs)("div",{className:"entry-content__download-content-thumbnail",children:[(0,to.jsx)(tC.P,{"aria-label":x("aria.asset.image-sidebar.tab.details.precreated-thumbnail"),onChange:e=>{l(e)},options:S,value:a}),(0,to.jsx)(aM.h,{"aria-label":x("aria.asset.image-sidebar.tab.details.download-thumbnail"),icon:{value:"download"},onClick:()=>{n(a)}})]}),(0,to.jsx)("div",{className:"entry-content__download-content-custom",children:(0,to.jsx)(gK.T,{...D,defaultActive:!0,size:"small",theme:"simple"})})]})]})]})]})};var gX=i(42962),gQ=i(41588),gY=i(99340);let g0=new gU;g0.registerEntry({key:"details",icon:(0,to.jsx)(rR.J,{options:{width:"16px",height:"16px"},value:"details"}),component:(0,to.jsx)(()=>{let e=(0,ts.useContext)(pT.N),{data:t}=(0,pk.useAssetGetByIdQuery)({id:e.id});return(0,to.jsx)(gJ,{height:t.height??0,onClickCustomDownload:async i=>{!function(e,i){let{width:n,height:r,quality:a,dpi:l,mode:o,format:s}=i,d=[{key:"mimeType",value:s},{key:"resizeMode",value:o},{key:"dpi",value:l.toString()},{key:"quality",value:a.toString()},{key:"height",value:r.toString()},{key:"width",value:n.toString()}],f=(0,gQ.I)(d,["","-1"]);fetch(`${(0,eQ.G)()}/assets/${e}/image/download/custom?${f}`).then(async e=>await e.blob()).then(e=>{let i=URL.createObjectURL(e);var n=t.filename,r=i,a=s;let l=(0,gX.B)(n,a.toLowerCase());(0,gX.K)(r,l)}).catch(()=>{(0,is.ZP)(new is.aE("Could not download image"))})}(e.id,i)},onClickDownloadByFormat:async t=>{!function(e,t){if("original"===t)return i(`${(0,eQ.G)()}/assets/${e}/download`,t);i(`${(0,eQ.G)()}/assets/${e}/image/download/format/${t}`,t)}(e.id,t)},width:t.width??0});function i(e,i){fetch(e).then(async e=>await e.blob()).then(e=>{var n,r,a;let l,o=URL.createObjectURL(e);n=t.filename,r=o,a=i,l=n,"original"!==a&&(l=(0,gX.B)(n,"jpg")),(0,gX.K)(r,l)}).catch(()=>{(0,is.ZP)(new is.aE("Could not prepare download"))})}},{})}),g0.registerButton({key:"focal-point",icon:(0,to.jsx)(rR.J,{options:{width:"16px",height:"16px"},value:"focal-point"}),component:(0,to.jsx)(gY.H,{icon:(0,to.jsx)(rR.J,{options:{width:"16px",height:"16px"},value:"focal-point"})},"focal-point")});var g1=i(90938);let g2=(0,ts.createContext)({zoom:100,setZoom:()=>{}}),g3=()=>{let[e,t]=(0,ts.useState)(100),{id:i}=(0,ts.useContext)(pT.N),{isLoading:n}=(0,pv.V)(i),r=g0.getEntries(),a=g0.getButtons(),l=(0,ts.useMemo)(()=>({zoom:e,setZoom:t}),[e]),o=`${(0,eQ.G)()}/assets/${i}/image/stream/preview`;return n?(0,to.jsx)(aB.V,{loading:!0}):(0,to.jsx)(g1.l,{children:(0,to.jsx)(g2.Provider,{value:l,children:(0,to.jsx)(aF.D,{renderSidebar:(0,to.jsx)(gG.Y,{buttons:a,entries:r}),children:(0,to.jsx)(gH,{src:o})})})})};eR._.registerModule({onInit:()=>{let e=eB.nC.get(eO.j["Asset/Editor/ImageTabManager"]);e.register({key:"view",label:"asset.asset-editor-tabs.view",children:(0,to.jsx)(g3,{}),icon:(0,to.jsx)(rR.J,{value:"view"})}),e.register({key:"edit",workspacePermission:"publish",label:"asset.asset-editor-tabs.edit",children:(0,to.jsx)(gF,{}),icon:(0,to.jsx)(rR.J,{value:"edit-pen"})}),e.register(pw.FV),e.register(pw.hD),e.register(pC.D9),e.register(pw.V2),e.register(pC.V$),e.register(pC.On),e.register(pC._P),e.register(pC.Hy),e.register(pC.zd)}});var g6=i(29186),g4=i(42913);let g8=(0,ia.createStyles)(e=>{let{token:t,css:i}=e;return{relativeContainer:i` position: relative; width: 100%; `}}),g7=(0,ia.createStyles)(e=>{let{token:t,css:i}=e;return{preview:i` @@ -489,24 +489,24 @@ height: 100%; width: 100%; } - `}},{hashPriority:"low"});var g5=i(65967);let g9=e=>{let{styles:t}=g7(),{src:i,language:n,updateTextData:r}=e,[a,o]=(0,ts.useState)(i??"");return(0,tl.jsx)("div",{className:t.preview,children:(0,tl.jsx)(g5.H,{language:n,setTextValue:e=>{o(e),r(e)},textValue:a})})};var he=i(80087);let ht=()=>{let e=(0,ts.useContext)(pT.N),{asset:t,updateTextData:i}=(0,pv.V)(e.id),{data:n,isError:r}=(0,pk.useAssetGetTextDataByIdQuery)({id:e.id}),{styles:a}=g8(),{t:o}=(0,t7.useTranslation)(),l=null;return((0,eY.isString)(null==t?void 0:t.filename)&&(l=(0,g6.d)(t.filename)),r)?(0,tl.jsx)(aL.x,{padding:"extra-small",children:(0,tl.jsx)(he.b,{message:o("preview-not-available"),showIcon:!0,type:"info"})}):(0,tl.jsx)("div",{className:a.relativeContainer,children:(0,g4.DM)(n)&&(0,tl.jsx)(g9,{language:l,src:n.data,updateTextData:e=>{i(e)}})})};eR._.registerModule({onInit:()=>{let e=eB.nC.get(eO.j["Asset/Editor/TextTabManager"]);e.register({key:"edit",label:"asset.asset-editor-tabs.edit",children:(0,tl.jsx)(ht,{}),icon:(0,tl.jsx)(rR.J,{value:"edit-pen"})}),e.register(pw.hD),e.register(pC.D9),e.register(pw.V2),e.register(pC.V$),e.register(pC.On),e.register(pC._P),e.register(pC.Hy),e.register(pC.zd)}});var hi=i(79678);eR._.registerModule({onInit:()=>{let e=eB.nC.get(eO.j["Asset/Editor/VideoTabManager"]);e.register({key:"view",label:"asset.asset-editor-tabs.view",children:(0,tl.jsx)(hi.p,{}),icon:(0,tl.jsx)(rR.J,{value:"view"})}),e.register(pw.FV),e.register(pw.hD),e.register(pC.D9),e.register(pw.V2),e.register(pC.V$),e.register(pC.On),e.register(pC._P),e.register(pC.Hy),e.register(pC.zd)}});let hn=(0,ia.createStyles)(e=>{let{token:t,css:i}=e;return{preview:i` + `}},{hashPriority:"low"});var g5=i(65967);let g9=e=>{let{styles:t}=g7(),{src:i,language:n,updateTextData:r}=e,[a,l]=(0,ts.useState)(i??"");return(0,to.jsx)("div",{className:t.preview,children:(0,to.jsx)(g5.H,{language:n,setTextValue:e=>{l(e),r(e)},textValue:a})})};var he=i(80087);let ht=()=>{let e=(0,ts.useContext)(pT.N),{asset:t,updateTextData:i}=(0,pv.V)(e.id),{data:n,isError:r}=(0,pk.useAssetGetTextDataByIdQuery)({id:e.id}),{styles:a}=g8(),{t:l}=(0,t7.useTranslation)(),o=null;return((0,eY.isString)(null==t?void 0:t.filename)&&(o=(0,g6.d)(t.filename)),r)?(0,to.jsx)(aL.x,{padding:"extra-small",children:(0,to.jsx)(he.b,{message:l("preview-not-available"),showIcon:!0,type:"info"})}):(0,to.jsx)("div",{className:a.relativeContainer,children:(0,g4.DM)(n)&&(0,to.jsx)(g9,{language:o,src:n.data,updateTextData:e=>{i(e)}})})};eR._.registerModule({onInit:()=>{let e=eB.nC.get(eO.j["Asset/Editor/TextTabManager"]);e.register({key:"edit",label:"asset.asset-editor-tabs.edit",children:(0,to.jsx)(ht,{}),icon:(0,to.jsx)(rR.J,{value:"edit-pen"})}),e.register(pw.hD),e.register(pC.D9),e.register(pw.V2),e.register(pC.V$),e.register(pC.On),e.register(pC._P),e.register(pC.Hy),e.register(pC.zd)}});var hi=i(79678);eR._.registerModule({onInit:()=>{let e=eB.nC.get(eO.j["Asset/Editor/VideoTabManager"]);e.register({key:"view",label:"asset.asset-editor-tabs.view",children:(0,to.jsx)(hi.p,{}),icon:(0,to.jsx)(rR.J,{value:"view"})}),e.register(pw.FV),e.register(pw.hD),e.register(pC.D9),e.register(pw.V2),e.register(pC.V$),e.register(pC.On),e.register(pC._P),e.register(pC.Hy),e.register(pC.zd)}});let hn=(0,ia.createStyles)(e=>{let{token:t,css:i}=e;return{preview:i` display: flex; justify-content: center; align-items: center; height: 100%; width: 100%; object-fit: contain; - `}},{hashPriority:"low"});var hr=i(1949);let ha=e=>{let{styles:t}=hn(),{src:i}=e;return(0,tl.jsx)("div",{className:t.preview,children:(0,tl.jsx)(hr.F,{sources:[{src:i}]})})},ho=()=>{let e=(0,ts.useContext)(pT.N),{data:t}=(0,pk.useAssetGetByIdQuery)({id:e.id});return(0,tl.jsx)(aF.D,{children:(0,tl.jsx)(ha,{src:t.fullPath})})};eR._.registerModule({onInit:()=>{let e=eB.nC.get(eO.j["Asset/Editor/AudioTabManager"]);e.register({key:"view",label:"asset.asset-editor-tabs.view",children:(0,tl.jsx)(ho,{}),icon:(0,tl.jsx)(rR.J,{value:"view"})}),e.register(pw.hD),e.register(pC.D9),e.register(pw.V2),e.register(pC.V$),e.register(pC.On),e.register(pC._P),e.register(pC.Hy),e.register(pC.zd)}}),eR._.registerModule({onInit:()=>{let e=eB.nC.get(eO.j["Asset/Editor/ArchiveTabManager"]);e.register(pw.hD),e.register(pC.D9),e.register(pw.V2),e.register(pC.V$),e.register(pC.On),e.register(pC._P),e.register(pC.Hy),e.register(pC.zd)}}),eR._.registerModule({onInit:()=>{let e=eB.nC.get(eO.j["Asset/Editor/UnknownTabManager"]);e.register(pw.hD),e.register(pC.D9),e.register(pw.V2),e.register(pC.V$),e.register(pC.On),e.register(pC._P),e.register(pC.Hy),e.register(pC.zd)}});var hl=i(9622),hs=i(38419),hd=i(46309),hf=i(33665);let hc={name:"asset-editor",component:e=>(0,tl.jsx)(e_.OR,{component:e_.O8.asset.editor.container.name,props:e}),titleComponent:e=>{let{node:t}=e,{asset:i}=(0,pv.V)(t.getConfig().id),{t:n}=(0,t7.useTranslation)(),r=t.getName();return t.getName=()=>(null==i?void 0:i.parentId)===0?n("home"):(null==i?void 0:i.filename)??r,(0,tl.jsx)(hl.X,{modified:(null==i?void 0:i.modified)??!1,node:t})},defaultGlobalContext:!1,isModified:e=>{let t=e.getConfig(),i=(0,hs._X)(hd.h.getState(),t.id);return(null==i?void 0:i.modified)??!1},getContextProvider:(e,t)=>{let i=e.config;return(0,tl.jsx)(hf.AssetProvider,{id:i.id,children:t})}};var hu=i(62397),hm=i(62588);let hp=e=>{let{showDuplicateEntryModal:t,showMandatoryModal:i}=e,{t:n}=(0,t7.useTranslation)(),{id:r}=(0,ts.useContext)(pT.N),{asset:a,customMetadata:o,setCustomMetadata:l,removeCustomMetadata:s,updateAllCustomMetadata:d,setModifiedCells:f}=(0,pv.V)(r),{data:c,isLoading:u,isError:m,error:p}=(0,pk.useAssetCustomMetadataGetByIdQuery)({id:r}),g="customMetadata",h=(null==a?void 0:a.modifiedCells[g])??[],b=(0,hm.x)(null==a?void 0:a.permissions,"publish");(0,ts.useEffect)(()=>{m&&(0,is.ZP)(new is.MS(p))},[m]);let y=(0,ts.useMemo)(()=>null==o?void 0:o.map(e=>e.type.includes("metadata.")?e:{...e,type:`metadata.${e.type}`}),[o]);(0,ts.useEffect)(()=>{void 0!==c&&(null==a?void 0:a.changes.customMetadata)===void 0&&Array.isArray(c.items)&&l(c.items.map(e=>({...e,rowId:(0,nu.V)()})))},[c]),(0,ts.useEffect)(()=>{h.length>0&&(null==a?void 0:a.changes.customMetadata)===void 0&&f(g,[])},[a]);let v=(0,aj.createColumnHelper)(),x=[v.accessor("type",{header:n("asset.asset-editor-tabs.custom-metadata.columns.type"),meta:{type:"asset-custom-metadata-icon"},size:44}),v.accessor("name",{header:n("asset.asset-editor-tabs.custom-metadata.columns.name"),meta:{editable:b},size:200}),v.accessor("language",{header:n("asset.asset-editor-tabs.custom-metadata.columns.language"),meta:{type:"language-select",editable:b},size:100}),v.accessor("data",{header:n("asset.asset-editor-tabs.custom-metadata.columns.value"),meta:{type:"asset-custom-metadata-value",editable:b,autoWidth:!0},size:400})];return b&&x.push(v.accessor("actions",{header:n("asset.asset-editor-tabs.custom-metadata.columns.actions"),cell:e=>(0,tl.jsx)(aL.x,{padding:"mini",children:(0,tl.jsx)(rZ.k,{align:"center",className:"w-full h-full",justify:"center",children:(0,tl.jsx)(aM.h,{icon:{value:"trash"},onClick:()=>{s(e.row.original)},type:"link"})})}),size:60})),(0,tl.jsx)(az.r,{autoWidth:!0,columns:x,data:y??[],isLoading:u,modifiedCells:h,onUpdateCellData:e=>{let{rowIndex:n,columnId:r,value:a,rowData:l}=e,s=[...o??[]],c=s.findIndex(e=>e.name===l.name&&e.language===l.language),u={...s.at(c),[r]:a};s[c]=u;let m=s.filter(e=>e.name===u.name&&e.language===u.language).length>1;(0,hu.R)(a,r,"name",m,i,t)&&(d(s.map(e=>({...e,type:e.type.split(".")[1]??e.type}))),f(g,[...h,{rowIndex:l.rowId,columnId:r}]))},setRowId:e=>e.rowId})};var hg=i(45554),hh=i(18243);let hb=e=>{let{disableHeaderTitle:t=!1,disableAddPredefinedMetadata:i=!1}=e,{t:n}=(0,t7.useTranslation)(),[r,a]=(0,ts.useState)(!1),o=(0,p5.r)(),{id:l}=(0,ts.useContext)(pT.N),{asset:s,addCustomMetadata:d,customMetadata:f}=(0,pv.V)(l),[c,{isFetching:u,isError:m,error:p}]=(0,hg.gE)(),{showModal:g,closeModal:h,renderModal:b}=(0,hh.dd)({type:"error"}),{showModal:y,closeModal:v,renderModal:x}=(0,hh.dd)({type:"error"});(0,ts.useEffect)(()=>{m&&(0,is.ZP)(new is.MS(p))},[m]);let j=(0,hm.x)(null==s?void 0:s.permissions,"publish"),w=(0,ts.useRef)(""),C=(0,ts.useRef)(null),k=(0,ts.useRef)("input"),T=(0,ts.useRef)(""),S=[...(0,eB.$1)(eO.j["DynamicTypes/MetadataRegistry"]).getTypeSelectionTypes().keys()].map(e=>({value:e,label:n("data-type."+e.split(".")[1])})),D=async()=>{let e=c({body:{}});(await e).data.items.forEach(e=>{(null==f?void 0:f.find(t=>t.name===e.name&&t.language===(e.language??"")))===void 0&&d({...e,rowId:e.id,language:e.language??"",data:e.data??null})})};(0,ts.useEffect)(()=>{if(r){var e;null==(e=C.current)||e.focus()}else k.current="input",w.current="",T.current=""},[r]);let E=[];return r||(i||E.push((0,tl.jsx)(dx.W,{disabled:u,icon:{value:"add-something"},loading:u,onClick:D,children:n("asset.asset-editor-tabs.custom-metadata.add-predefined-definition")},n("asset.asset-editor-tabs.custom-metadata.add-predefined-definition"))),E.push((0,tl.jsx)(dx.W,{icon:{value:"new-something"},onClick:()=>{a(!0)},children:n("asset.asset-editor-tabs.custom-metadata.new-custom-metadata")},n("asset.asset-editor-tabs.custom-metadata.new-custom-metadata")))),(0,tl.jsxs)(aB.V,{padded:!0,children:[(0,tl.jsx)(gq.h,{className:"p-l-mini",title:t?"":n("asset.asset-editor-tabs.custom-metadata.text"),children:(0,tl.jsx)("div",{className:"pimcore-custom-metadata-toolbar",children:(0,tl.jsxs)(as.T,{size:"extra-small",children:[r&&(0,tl.jsxs)(tl.Fragment,{children:[(0,tl.jsxs)(as.T,{size:"extra-small",children:[(0,tl.jsx)(ai.z,{onClick:()=>{a(!1)},type:"link",children:n("asset.asset-editor-tabs.custom-metadata.add-custom-metadata.cancel")}),(0,tl.jsx)(tN.Input,{onChange:function(e){w.current=e.target.value},placeholder:n("asset.asset-editor-tabs.custom-metadata.add-custom-metadata.name"),ref:C}),(0,tl.jsx)(tC.P,{className:"min-w-100",defaultValue:k.current,onSelect:function(e){k.current=e},options:S,placeholder:n("asset.asset-editor-tabs.custom-metadata.add-custom-metadata.type")}),(0,tl.jsx)(tC.P,{allowClear:!0,className:"min-w-100",onClear:function(){T.current=""},onSelect:function(e){T.current=e},options:o.requiredLanguages.map(e=>({value:e,label:e})),placeholder:n("asset.asset-editor-tabs.custom-metadata.add-custom-metadata.language")}),(0,tl.jsx)(dx.W,{icon:{value:"new-something"},onClick:()=>{let e=void 0!==w.current&&w.current.length>0,t=void 0!==k.current;e&&t?(null==f?void 0:f.find(e=>e.name===w.current&&e.language===T.current))!==void 0?g():d({additionalAttributes:[],name:w.current,type:k.current,language:T.current,data:null,rowId:(0,nu.V)()}):y()},children:n("asset.asset-editor-tabs.custom-metadata.new-custom-metadata.create")})]}),(0,tl.jsx)(b,{footer:(0,tl.jsx)(p1.m,{children:(0,tl.jsx)(ai.z,{onClick:h,type:"primary",children:n("button.ok")})}),title:n("asset.asset-editor-tabs.custom-metadata.custom-metadata-already-exist.title"),children:n("asset.asset-editor-tabs.custom-metadata.custom-metadata-already-exist.error")}),(0,tl.jsx)(x,{footer:(0,tl.jsx)(p1.m,{children:(0,tl.jsx)(ai.z,{onClick:v,type:"primary",children:n("button.ok")})}),title:n("asset.asset-editor-tabs.custom-metadata.add-entry-mandatory-fields-missing.title"),children:n("asset.asset-editor-tabs.custom-metadata.add-entry-mandatory-fields-missing.error")})]}),!r&&j&&(0,tl.jsx)(p8.h,{items:E})]})})}),(0,tl.jsx)(hp,{showDuplicateEntryModal:g,showMandatoryModal:y})]})};var hy=i(27775),hv=i(67459);let hx=(0,ia.createStyles)(e=>{let{token:t,css:i}=e,n={versionsLeftSideWidth:"395",...t};return{"right-side":i` + `}},{hashPriority:"low"});var hr=i(1949);let ha=e=>{let{styles:t}=hn(),{src:i}=e;return(0,to.jsx)("div",{className:t.preview,children:(0,to.jsx)(hr.F,{sources:[{src:i}]})})},hl=()=>{let e=(0,ts.useContext)(pT.N),{data:t}=(0,pk.useAssetGetByIdQuery)({id:e.id});return(0,to.jsx)(aF.D,{children:(0,to.jsx)(ha,{src:t.fullPath})})};eR._.registerModule({onInit:()=>{let e=eB.nC.get(eO.j["Asset/Editor/AudioTabManager"]);e.register({key:"view",label:"asset.asset-editor-tabs.view",children:(0,to.jsx)(hl,{}),icon:(0,to.jsx)(rR.J,{value:"view"})}),e.register(pw.hD),e.register(pC.D9),e.register(pw.V2),e.register(pC.V$),e.register(pC.On),e.register(pC._P),e.register(pC.Hy),e.register(pC.zd)}}),eR._.registerModule({onInit:()=>{let e=eB.nC.get(eO.j["Asset/Editor/ArchiveTabManager"]);e.register(pw.hD),e.register(pC.D9),e.register(pw.V2),e.register(pC.V$),e.register(pC.On),e.register(pC._P),e.register(pC.Hy),e.register(pC.zd)}}),eR._.registerModule({onInit:()=>{let e=eB.nC.get(eO.j["Asset/Editor/UnknownTabManager"]);e.register(pw.hD),e.register(pC.D9),e.register(pw.V2),e.register(pC.V$),e.register(pC.On),e.register(pC._P),e.register(pC.Hy),e.register(pC.zd)}});var ho=i(9622),hs=i(38419),hd=i(46309),hf=i(33665);let hc={name:"asset-editor",component:e=>(0,to.jsx)(e_.OR,{component:e_.O8.asset.editor.container.name,props:e}),titleComponent:e=>{let{node:t}=e,{asset:i}=(0,pv.V)(t.getConfig().id),{t:n}=(0,t7.useTranslation)(),r=t.getName();return t.getName=()=>(null==i?void 0:i.parentId)===0?n("home"):(null==i?void 0:i.filename)??r,(0,to.jsx)(ho.X,{modified:(null==i?void 0:i.modified)??!1,node:t})},defaultGlobalContext:!1,isModified:e=>{let t=e.getConfig(),i=(0,hs._X)(hd.h.getState(),t.id);return(null==i?void 0:i.modified)??!1},getContextProvider:(e,t)=>{let i=e.config;return(0,to.jsx)(hf.AssetProvider,{id:i.id,children:t})}};var hu=i(62397),hm=i(62588);let hp=e=>{let{showDuplicateEntryModal:t,showMandatoryModal:i}=e,{t:n}=(0,t7.useTranslation)(),{id:r}=(0,ts.useContext)(pT.N),{asset:a,customMetadata:l,setCustomMetadata:o,removeCustomMetadata:s,updateAllCustomMetadata:d,setModifiedCells:f}=(0,pv.V)(r),{data:c,isLoading:u,isError:m,error:p}=(0,pk.useAssetCustomMetadataGetByIdQuery)({id:r}),g="customMetadata",h=(null==a?void 0:a.modifiedCells[g])??[],b=(0,hm.x)(null==a?void 0:a.permissions,"publish");(0,ts.useEffect)(()=>{m&&(0,is.ZP)(new is.MS(p))},[m]);let y=(0,ts.useMemo)(()=>null==l?void 0:l.map(e=>e.type.includes("metadata.")?e:{...e,type:`metadata.${e.type}`}),[l]);(0,ts.useEffect)(()=>{void 0!==c&&(null==a?void 0:a.changes.customMetadata)===void 0&&Array.isArray(c.items)&&o(c.items.map(e=>({...e,rowId:(0,nu.V)()})))},[c]),(0,ts.useEffect)(()=>{h.length>0&&(null==a?void 0:a.changes.customMetadata)===void 0&&f(g,[])},[a]);let v=(0,aj.createColumnHelper)(),x=[v.accessor("type",{header:n("asset.asset-editor-tabs.custom-metadata.columns.type"),meta:{type:"asset-custom-metadata-icon"},size:44}),v.accessor("name",{header:n("asset.asset-editor-tabs.custom-metadata.columns.name"),meta:{editable:b},size:200}),v.accessor("language",{header:n("asset.asset-editor-tabs.custom-metadata.columns.language"),meta:{type:"language-select",editable:b},size:100}),v.accessor("data",{header:n("asset.asset-editor-tabs.custom-metadata.columns.value"),meta:{type:"asset-custom-metadata-value",editable:b,autoWidth:!0},size:400})];return b&&x.push(v.accessor("actions",{header:n("asset.asset-editor-tabs.custom-metadata.columns.actions"),cell:e=>(0,to.jsx)(aL.x,{padding:"mini",children:(0,to.jsx)(rZ.k,{align:"center",className:"w-full h-full",justify:"center",children:(0,to.jsx)(aM.h,{icon:{value:"trash"},onClick:()=>{s(e.row.original)},type:"link"})})}),size:60})),(0,to.jsx)(az.r,{autoWidth:!0,columns:x,data:y??[],isLoading:u,modifiedCells:h,onUpdateCellData:e=>{let{rowIndex:n,columnId:r,value:a,rowData:o}=e,s=[...l??[]],c=s.findIndex(e=>e.name===o.name&&e.language===o.language),u={...s.at(c),[r]:a};s[c]=u;let m=s.filter(e=>e.name===u.name&&e.language===u.language).length>1;(0,hu.R)(a,r,"name",m,i,t)&&(d(s.map(e=>({...e,type:e.type.split(".")[1]??e.type}))),f(g,[...h,{rowIndex:o.rowId,columnId:r}]))},setRowId:e=>e.rowId})};var hg=i(45554),hh=i(18243);let hb=e=>{let{disableHeaderTitle:t=!1,disableAddPredefinedMetadata:i=!1}=e,{t:n}=(0,t7.useTranslation)(),[r,a]=(0,ts.useState)(!1),l=(0,p5.r)(),{id:o}=(0,ts.useContext)(pT.N),{asset:s,addCustomMetadata:d,customMetadata:f}=(0,pv.V)(o),[c,{isFetching:u,isError:m,error:p}]=(0,hg.gE)(),{showModal:g,closeModal:h,renderModal:b}=(0,hh.dd)({type:"error"}),{showModal:y,closeModal:v,renderModal:x}=(0,hh.dd)({type:"error"});(0,ts.useEffect)(()=>{m&&(0,is.ZP)(new is.MS(p))},[m]);let j=(0,hm.x)(null==s?void 0:s.permissions,"publish"),w=(0,ts.useRef)(""),C=(0,ts.useRef)(null),k=(0,ts.useRef)("input"),T=(0,ts.useRef)(""),S=[...(0,eB.$1)(eO.j["DynamicTypes/MetadataRegistry"]).getTypeSelectionTypes().keys()].map(e=>({value:e,label:n("data-type."+e.split(".")[1])})),D=async()=>{let e=c({body:{}});(await e).data.items.forEach(e=>{(null==f?void 0:f.find(t=>t.name===e.name&&t.language===(e.language??"")))===void 0&&d({...e,rowId:e.id,language:e.language??"",data:e.data??null})})};(0,ts.useEffect)(()=>{if(r){var e;null==(e=C.current)||e.focus()}else k.current="input",w.current="",T.current=""},[r]);let E=[];return r||(i||E.push((0,to.jsx)(dx.W,{disabled:u,icon:{value:"add-something"},loading:u,onClick:D,children:n("asset.asset-editor-tabs.custom-metadata.add-predefined-definition")},n("asset.asset-editor-tabs.custom-metadata.add-predefined-definition"))),E.push((0,to.jsx)(dx.W,{icon:{value:"new-something"},onClick:()=>{a(!0)},children:n("asset.asset-editor-tabs.custom-metadata.new-custom-metadata")},n("asset.asset-editor-tabs.custom-metadata.new-custom-metadata")))),(0,to.jsxs)(aB.V,{padded:!0,children:[(0,to.jsx)(gq.h,{className:"p-l-mini",title:t?"":n("asset.asset-editor-tabs.custom-metadata.text"),children:(0,to.jsx)("div",{className:"pimcore-custom-metadata-toolbar",children:(0,to.jsxs)(as.T,{size:"extra-small",children:[r&&(0,to.jsxs)(to.Fragment,{children:[(0,to.jsxs)(as.T,{size:"extra-small",children:[(0,to.jsx)(ai.z,{onClick:()=>{a(!1)},type:"link",children:n("asset.asset-editor-tabs.custom-metadata.add-custom-metadata.cancel")}),(0,to.jsx)(tN.Input,{onChange:function(e){w.current=e.target.value},placeholder:n("asset.asset-editor-tabs.custom-metadata.add-custom-metadata.name"),ref:C}),(0,to.jsx)(tC.P,{className:"min-w-100",defaultValue:k.current,onSelect:function(e){k.current=e},options:S,placeholder:n("asset.asset-editor-tabs.custom-metadata.add-custom-metadata.type")}),(0,to.jsx)(tC.P,{allowClear:!0,className:"min-w-100",onClear:function(){T.current=""},onSelect:function(e){T.current=e},options:l.requiredLanguages.map(e=>({value:e,label:e})),placeholder:n("asset.asset-editor-tabs.custom-metadata.add-custom-metadata.language")}),(0,to.jsx)(dx.W,{icon:{value:"new-something"},onClick:()=>{let e=void 0!==w.current&&w.current.length>0,t=void 0!==k.current;e&&t?(null==f?void 0:f.find(e=>e.name===w.current&&e.language===T.current))!==void 0?g():d({additionalAttributes:[],name:w.current,type:k.current,language:T.current,data:null,rowId:(0,nu.V)()}):y()},children:n("asset.asset-editor-tabs.custom-metadata.new-custom-metadata.create")})]}),(0,to.jsx)(b,{footer:(0,to.jsx)(p1.m,{children:(0,to.jsx)(ai.z,{onClick:h,type:"primary",children:n("button.ok")})}),title:n("asset.asset-editor-tabs.custom-metadata.custom-metadata-already-exist.title"),children:n("asset.asset-editor-tabs.custom-metadata.custom-metadata-already-exist.error")}),(0,to.jsx)(x,{footer:(0,to.jsx)(p1.m,{children:(0,to.jsx)(ai.z,{onClick:v,type:"primary",children:n("button.ok")})}),title:n("asset.asset-editor-tabs.custom-metadata.add-entry-mandatory-fields-missing.title"),children:n("asset.asset-editor-tabs.custom-metadata.add-entry-mandatory-fields-missing.error")})]}),!r&&j&&(0,to.jsx)(p8.h,{items:E})]})})}),(0,to.jsx)(hp,{showDuplicateEntryModal:g,showMandatoryModal:y})]})};var hy=i(27775),hv=i(67459);let hx=(0,ia.createStyles)(e=>{let{token:t,css:i}=e,n={versionsLeftSideWidth:"395",...t};return{"right-side":i` & .highlight-cell { background-color: ${n.colorWarningBg}; font-weight: bold; } - `}},{hashPriority:"low"});var hj=i(44416);let hw=e=>{let{id:t,fileName:i}=e,[n,r]=(0,ts.useState)(!1),{t:a}=(0,t7.useTranslation)(),o=async()=>{r(!0),fetch(`${(0,eQ.G)()}/versions/${t}/asset/download`).then(async e=>await e.blob()).then(e=>{let t=URL.createObjectURL(e);(0,gX.K)(t,i),r(!1)}).catch(()=>{(0,is.ZP)(new is.aE("Error downloading version asset")),r(!1)})};return(0,tl.jsxs)(rZ.k,{align:"center",gap:"extra-small",vertical:!0,children:[(0,tl.jsx)(nc.x,{children:a("version.no-preview-available")}),(0,tl.jsx)(ai.z,{loading:n,onClick:o,children:a("download")})]})};var hC=((a={}).ASSET="asset",a.DATA_OBJECT="data-object",a),hk=((o={}).SYSTEM_DATA="systemData",o.META="meta",o),hT=i(38340);let hS=[hk.META],hD=e=>{let{categoriesList:t,versionViewData:i,versionKeysList:n,modifiedFields:r}=e,{styles:a}=(0,hT.y)(),{t:o}=(0,t7.useTranslation)();return(0,tl.jsx)(tl.Fragment,{children:null==t?void 0:t.map((e,t)=>(0,tl.jsxs)("div",{children:[(0,tl.jsx)(nc.x,{className:a.sectionTitle,strong:!0,children:o(`version.category.title.${e.key}`)}),(0,tl.jsx)(rZ.k,{className:a.sectionFields,gap:"extra-small",vertical:!0,children:i.map((t,i)=>e.fieldKeys.includes(t.Field.key)&&(0,tl.jsxs)("div",{children:[(e=>{let{categoryName:t,fieldData:i}=e,n=hS.includes(t),r=i.field,l=i.language,s=n?r:o(`version.${i.key}`);return(0,tl.jsxs)(nc.x,{className:a.fieldTitle,children:[s," ",!(0,eY.isEmpty)(l)&&(0,tl.jsxs)(nc.x,{type:"secondary",children:["| ",null==l?void 0:l.toUpperCase()]})]})})({categoryName:e.key,fieldData:t.Field}),(0,tl.jsx)(rZ.k,{gap:"mini",children:n.map((e,i)=>{let n=r.includes(t.Field.key);return(0,tl.jsx)("div",{className:oy()(a.sectionFieldItem,{[a.sectionFieldItemHighlight]:n&&1===i}),children:(0,tl.jsx)(nc.x,{children:t[e]})},`${i}-${e}`)})})]},`${i}-${t.Field.key}`))})]},`${t}-${e.key}`))})};var hE=i(54436),hM=i(41098);let hI=[hk.SYSTEM_DATA],hL=[hM.T.BLOCK,hM.T.FIELD_COLLECTIONS],hP=e=>{let{breadcrumbsList:t,versionViewData:i,versionKeysList:n,isExpandedUnmodifiedFields:r}=e,{styles:a}=(0,hT.y)(),{t:o}=(0,t7.useTranslation)();return(0,tl.jsx)(tl.Fragment,{children:null==t?void 0:t.map((e,t)=>{let l=e.key===hk.SYSTEM_DATA;return(0,tl.jsxs)("div",{children:[(e=>{let{key:t,isCommonSection:i}=e,[n,...r]=(hI.includes(t)?o(`version.category.title.${t}`):t).split("/"),l=r.length>0?` | ${r.join(" | ")}`:"";return(0,dW.O)(n)&&(0,dW.O)(l)?null:(0,tl.jsxs)(nc.x,{className:oy()(a.sectionTitle,{[a.subSectionTitle]:!i}),strong:!0,children:[n,!(0,dW.O)(l)&&(0,tl.jsx)("span",{className:a.subSectionText,children:l})]})})({key:e.key,isCommonSection:l}),(0,tl.jsx)(rZ.k,{className:oy()(a.sectionFields,{[a.sectionFieldsWithoutBorder]:!l}),gap:"extra-small",vertical:!0,children:i.map((t,i)=>{var s;let d=e.key===t.Field.fieldBreadcrumbTitle,f=e.fieldKeys.includes(t.Field.name);return d&&f&&(0,tl.jsxs)("div",{children:[(e=>{let{key:t,locale:i,isCommonSection:n}=e;if((0,dW.O)(t))return(0,tl.jsx)(tl.Fragment,{});let r=n?o(`version.${t}`):t;return(0,tl.jsxs)(nc.x,{className:a.fieldTitle,children:[r," ",!(0,eY.isEmpty)(i)&&(0,tl.jsxs)(nc.x,{type:"secondary",children:["| ",i.toUpperCase()]})]})})({key:t.Field.title,locale:null==(s=t.Field)?void 0:s.locale,isCommonSection:l}),(0,tl.jsx)(rZ.k,{gap:"mini",children:n.map((e,i)=>{let n=(null==t?void 0:t.isModifiedValue)===!0,l=1===i,s=hL.includes(null==t?void 0:t.Field.fieldtype),d=n&&s&&(0,dW.O)(t[e]);return(0,tl.jsxs)("div",{className:a.objectSectionFieldItemWrapper,children:[d&&(0,tl.jsx)(rZ.k,{align:"center",className:oy()(a.objectSectionFieldItem,a.objectSectionEmptyState,{[a.objectSectionEmptyStateDisabled]:0===i,[a.objectSectionEmptyStateHighlight]:l}),justify:"center",children:o("empty")}),(0,tl.jsx)(hE.A,{className:oy()(a.objectSectionFieldItem,"versionFieldItem",{[a.objectSectionFieldItemHighlight]:n&&l,versionFieldItemHighlight:n&&l}),datatype:"data",fieldCollectionModifiedList:null==t?void 0:t.fieldCollectionModifiedList,fieldType:t.Field.fieldtype,isExpandedUnmodifiedFields:r,name:t.Field.name,value:t[e],...t.Field},`${i}-${e}`)]},`${i}-${e}`)})})]},`${i}-${t.Field.name}`)})})]},`${t}-${e.key}`)})})},hN=["reverseObjectRelation"];var hA=i(78245);let hR=e=>{let{data:t}=e,{elementType:i}=(0,il.i)(),n=i===hC.ASSET,r=i===hC.DATA_OBJECT,[a,o]=(0,ts.useState)(!1),{versionKeysList:l,comparisonModifiedData:s,sectionsList:d}=((e,t)=>{let i=Object.keys(e[0]).filter(e=>e.startsWith("Version")),n=e.filter(e=>!(0,eY.isEqual)(e[i[0]]??null,e[i[1]]??null));return{versionKeysList:i,comparisonModifiedData:n,sectionsList:(0,ts.useMemo)(()=>{if(t===hC.ASSET){let t={};return e.forEach(e=>{let i=(e=>{if(e.includes("."))return e.split(".")[0]})(e.Field.key)??hk.SYSTEM_DATA;(0,eY.isUndefined)(t[i])&&(t[i]=new Set),t[i].add(e.Field.key)}),Object.entries(t).map(e=>{let[t,i]=e;return{key:t,fieldKeys:Array.from(i)}})}if(t===hC.DATA_OBJECT){let t={};return e.forEach(e=>{let i=e.Field.fieldBreadcrumbTitle??hk.SYSTEM_DATA;hN.includes(e.Field.fieldtype)||((0,eY.isUndefined)(t[i])&&(t[i]=new Set),t[i].add(e.Field.name))}),Object.entries(t).map(e=>{let[t,i]=e;return{key:t,fieldKeys:Array.from(i)}})}},[e])}})(t,i),{t:f}=(0,t7.useTranslation)(),{styles:c}=(0,hA.y)(),u=!(0,eY.isNil)(l)&&l.length>1,m=a?t:s,p=u?m:t,g=(0,ts.useMemo)(()=>n?(e=>{let{versionViewData:t,categoriesList:i}=e,n=(0,eY.map)(t,"Field.key");return(0,eY.isEmpty)(i)?[]:(0,eY.filter)((0,eY.map)(i,e=>({...e,fieldKeys:(0,eY.intersection)(e.fieldKeys,n)})),e=>!(0,eY.isEmpty)(e.fieldKeys))})({versionViewData:p,categoriesList:d}):r?(e=>{let{versionViewData:t,breadcrumbsList:i}=e,n=(0,eY.map)(t,"Field.name"),r=(0,eY.map)(t,"Field.fieldBreadcrumbTitle");return(0,eY.isEmpty)(i)?[]:(0,eY.filter)((0,eY.map)(i,e=>({...e,fieldKeys:(0,eY.intersection)(e.fieldKeys,n)})),e=>!(0,eY.isEmpty)(e.fieldKeys)&&r.includes(e.key))})({versionViewData:p,breadcrumbsList:d}):void 0,[a,d]),h=(0,ts.useMemo)(()=>{if(u&&!(0,eY.isEmpty)(s)){if(n)return s.map(e=>e.Field.key);if(r)return s.map(e=>e.Field.title)}return[]},[s,u]),b=!(0,eY.isUndefined)(h)&&h.length>0;return(0,tl.jsxs)(rZ.k,{vertical:!0,children:[(0,tl.jsx)(rZ.k,{className:c.headerContainer,wrap:"wrap",children:l.map((e,t)=>((e,t)=>{let i=/\d+/.exec(e),n=(null==i?void 0:i[0])??"0";return(0,tl.jsx)(rZ.k,{className:c.headerItem,children:(0,tl.jsxs)(nc.x,{children:[f("version.version")," ",Number(n)]})},`${t}-${e}`)})(e,t))}),(0,tl.jsxs)(rZ.k,{className:c.content,vertical:!0,children:[u&&(0,tl.jsx)("div",{className:c.switchContainer,children:(0,tl.jsx)(s0.r,{labelLeft:(0,tl.jsx)(nc.x,{children:f("version.expand-unmodified-fields")}),onChange:()=>{o(!a)},value:a})}),u&&!b&&!a&&(0,tl.jsx)(rZ.k,{justify:"center",children:(0,tl.jsx)(nc.x,{className:c.emptyState,children:f("version.no-difference")})}),n&&(0,tl.jsx)(hD,{categoriesList:g,modifiedFields:h,versionKeysList:l,versionViewData:p}),r&&(0,tl.jsx)(hP,{breadcrumbsList:g,isExpandedUnmodifiedFields:a,versionKeysList:l,versionViewData:p})]})]})},hO=e=>{let{versions:t,gridData:i,isImageVersion:n,versionIds:r}=e,{styles:a}=hx();return(0,tl.jsx)("div",{className:a["right-side"],children:(0,tl.jsxs)(tN.Space,{direction:"vertical",size:"large",style:{maxWidth:t.length>1?1200:600},children:[(0,tl.jsx)(tN.Flex,{align:"center",gap:"small",justify:"center",style:{minHeight:100},children:t.map((e,t)=>{var i;let a=r.find(t=>t.count===(null==e?void 0:e.versionCount));return(0,tl.jsx)("div",{children:null!==e.previewImageUrl&&n?(0,tl.jsx)(hj.X,{src:e.previewImageUrl,style:{maxHeight:500,maxWidth:500}}):(0,tl.jsx)(hw,{fileName:null==e||null==(i=e.dataRaw)?void 0:i.fileName,id:null==a?void 0:a.id})},t)})}),(0,tl.jsx)(hR,{data:i})]})})};var hB=i(86167);let hF=(e,t,i)=>({versionCount:i,baseDataFormatted:{fileName:e.fileName,creationDate:(0,dH.o0)({timestamp:e.creationDate??null,dateStyle:"short",timeStyle:"medium"}),modificationDate:(0,dH.o0)({timestamp:e.modificationDate??null,dateStyle:"short",timeStyle:"medium"}),fileSize:void 0!==e.fileSize?(0,hB.t)(e.fileSize):"",mimeType:e.mimeType,dimensions:null!==e.dimensions&&void 0!==e.dimensions?e.dimensions.width+" x "+e.dimensions.height:""},metadata:h_(e.metadata),previewImageUrl:`/pimcore-studio/api/versions/${t}/image/stream`,dataRaw:e}),h_=e=>{let t=eB.nC.get(eO.j["DynamicTypes/MetadataRegistry"]),i=new Map;if(void 0===e)return i;for(let n of e){let e=t.getTypeSelectionTypes().get(`metadata.${n.type}`),r=null!==n.language?`${hk.META}.${n.name}.${n.language}`:n.name;i.set(r,{key:r,field:n.name,language:n.language??void 0,metadataType:n.type,displayValue:void 0!==e?e.getVersionPreviewComponent(n.data):"Metadata type not supported",raw:n})}return i},hz=e=>(null==e?void 0:e.type)==="image",hV=async(e,t)=>{if(!hz(e))return null;let i=null;return await fetch(`/pimcore-studio/api/versions/${t}/image/stream`,{cache:"force-cache"}).then(async e=>await e.blob()).then(e=>{i=URL.createObjectURL(e)}).catch(()=>{(0,is.ZP)(new is.aE("Failed to load preview image"))}),i},h$=e=>{let t=ir().t,i=[],n=[],r=t("field");return e.forEach((e,a)=>{let o=`${t("version.version")} ${e.versionCount}`;Object.keys(e.baseDataFormatted).forEach(n=>{if("dimensions"===n&&!hz(e.dataRaw))return;let a=i.find(e=>e[r].key===n);void 0!==a?a[o]=e.baseDataFormatted[n]:i.push({[r]:{field:t(`version.${n}`),key:n},[o]:e.baseDataFormatted[n]})}),e.metadata.forEach((e,t)=>{let i=n.find(t=>t[r].key===e.key);if(void 0!==i)i[o]=e.displayValue;else{let t={key:e.key,field:e.field,language:e.language,metadataType:e.metadataType};n.push({[r]:t,[o]:e.displayValue})}})}),n.sort((e,i)=>{let n=e[t("field")].key.toLowerCase(),r=i[t("field")].key.toLowerCase();return nr)}),[...i,...n]},hW=e=>{let{versionIds:t}=e,[i,n]=(0,ts.useState)([]),[r,a]=(0,ts.useState)([]),[o,l]=(0,ts.useState)(!1);return((0,ts.useEffect)(()=>{let e=[];a([]),n([]),t.forEach(async t=>{let i=t.id;e.push(hd.h.dispatch(it.hi.endpoints.versionGetById.initiate({id:i})))}),Promise.all(e).then(e=>{let i=[],r=[];e.forEach((e,n)=>{let a=e.data;hz(a)&&l(!0),i.push(hF(a,t[n].id,t[n].count)),r.push(hV(a,t[n].id))}),Promise.all(r).then(e=>{i.forEach((t,i)=>{t.previewImageUrl=e[i]}),a(i),n(h$(i))}).catch(e=>{console.log(e)})}).catch(e=>{console.log(e)})},[t]),0===i.length)?(0,tl.jsx)(aB.V,{fullPage:!0,loading:!0}):(0,tl.jsx)(hO,{gridData:i,isImageVersion:o,versionIds:t,versions:r})},hH=e=>{let{versionId:t,data:i,imgSrc:n,firstVersion:r,lastVersion:a,onClickPrevious:o,onClickNext:l,isImageVersion:s,fileName:d}=e;return(0,tl.jsxs)(tN.Flex,{gap:"small",style:{minWidth:"100%"},vertical:!0,children:[(0,tl.jsxs)(tN.Flex,{align:"center",gap:"small",justify:"center",style:{minHeight:100},children:[(0,tl.jsx)(aM.h,{disabled:r,icon:{value:"chevron-left"},onClick:o,type:"text"}),null!==n&&s?(0,tl.jsx)(hj.X,{className:"image-slider__image",src:n,style:{maxHeight:500,maxWidth:500}}):(0,tl.jsx)(hw,{fileName:d,id:t.id}),(0,tl.jsx)(aM.h,{disabled:a,icon:{value:"chevron-right"},onClick:l,type:"text"})]}),(0,tl.jsx)(hR,{data:i})]})},hG=e=>{let{versions:t,versionId:i,setDetailedVersions:n}=e,[r,a]=(0,ts.useState)(i),[o,l]=(0,ts.useState)([]),[s,d]=(0,ts.useState)(null),[f,c]=(0,ts.useState)(void 0),[u,m]=(0,ts.useState)(!1);function p(e){for(let i=0;i=0&&i+e{i.id!==r.id&&(l([]),a(i))},[i]),(0,ts.useEffect)(()=>{Promise.resolve(hd.h.dispatch(it.hi.endpoints.versionGetById.initiate({id:r.id}))).then(e=>{let t=e.data,i=hF(t,r.id,r.count);hz(t)&&m(!0),c(null==t?void 0:t.fileName),l(h$([i])),d(i.previewImageUrl)}).catch(e=>{console.log(e)})},[r]),0===o.length?(0,tl.jsx)(aB.V,{fullPage:!0,loading:!0}):(0,tl.jsx)(hH,{data:o,fileName:f,firstVersion:t[0].id===r.id,imgSrc:s,isImageVersion:u,lastVersion:t[t.length-1].id===r.id,onClickNext:function(){l([]),p(1)},onClickPrevious:function(){l([]),p(-1)},versionId:r})},hU=()=>(0,tl.jsx)(hv.e,{ComparisonViewComponent:hW,SingleViewComponent:hG}),hq=()=>{var e,t;let{t:i}=(0,t7.useTranslation)(),{id:n}=(0,py.G)(),{data:r,isLoading:a,isError:o}=(0,pk.useAssetCustomSettingsGetByIdQuery)({id:n});if(a||void 0===r)return(0,tl.jsx)(aB.V,{loading:!0});if(o)return(0,tl.jsx)("div",{children:"Error"});let l=(0,aj.createColumnHelper)(),s=[l.accessor("name",{header:i("asset.asset-editor-tabs.embedded-metadata.columns.name"),size:400}),l.accessor("value",{header:i("asset.asset-editor-tabs.embedded-metadata.columns.value"),size:400})],d=Object.entries((null==(t=r.items)||null==(e=t.fixedCustomSettings)?void 0:e.embeddedMetadata)??[]).map(e=>{let[t,i]=e;return{name:String(t).toString(),value:String(i).toString()}});return(0,tl.jsxs)(aB.V,{padded:!0,children:[(0,tl.jsx)(gq.h,{className:"p-l-mini",title:i("asset.asset-editor-tabs.embedded-metadata.headline")}),(0,tl.jsx)(az.r,{columns:s,data:d,enableSorting:!0,sorting:[{id:"name",desc:!1}]})]})};var hZ=i(91892),hK=i(88340),hJ=i(93291);let hX=()=>{let{t:e}=(0,t7.useTranslation)(),{id:t}=(0,ts.useContext)(pT.N),{asset:i}=(0,pv.V)(t),{renameContextMenuItem:n}=(0,pM.j)("asset",(0,pA.eG)("asset","rename",i.id)),{deleteContextMenuItem:r}=(0,pI.R)("asset",(0,pA.eG)("asset","delete",i.id)),{downloadContextMenuItem:a}=(0,pL.i)(),{createZipDownloadContextMenuItem:o}=(0,pX.F)({type:"folder"}),{refreshElement:l}=(0,hK.C)("asset"),{clearImageThumbnailContextMenuItem:s,clearVideoThumbnailContextMenuItem:d,clearPdfThumbnailContextMenuItem:f}=(0,hZ.D)(),c=[n(i,()=>{l(i.id)}),r(i),a(i),o(i),s(i),d(i),f(i)],u=c.filter(e=>null!==e&&"hidden"in e&&(null==e?void 0:e.hidden)===!1),m=[];return m.push((0,tl.jsx)(hJ.t,{hasDataChanged:function(){return Object.keys((null==i?void 0:i.changes)??{}).length>0},onReload:function(){l(t,!0)},title:e("toolbar.reload.confirmation"),children:(0,tl.jsx)(aM.h,{icon:{value:"refresh"},children:e("toolbar.reload")})},"reload-button")),u.length>0&&m.push((0,tl.jsx)(pJ.L,{menu:{items:c},children:(0,tl.jsx)(pK.P,{children:e("toolbar.more")},"dropdown-button")},"more-button")),(0,tl.jsx)(p8.h,{items:m,noSpacing:!0})};var hQ=i(80251),hY=i(97833),h0=i(97686),h1=i(98244);let h2=(0,ia.createStyles)(e=>{let{token:t,css:i}=e;return{button:i` + `}},{hashPriority:"low"});var hj=i(44416);let hw=e=>{let{id:t,fileName:i}=e,[n,r]=(0,ts.useState)(!1),{t:a}=(0,t7.useTranslation)(),l=async()=>{r(!0),fetch(`${(0,eQ.G)()}/versions/${t}/asset/download`).then(async e=>await e.blob()).then(e=>{let t=URL.createObjectURL(e);(0,gX.K)(t,i),r(!1)}).catch(()=>{(0,is.ZP)(new is.aE("Error downloading version asset")),r(!1)})};return(0,to.jsxs)(rZ.k,{align:"center",gap:"extra-small",vertical:!0,children:[(0,to.jsx)(nc.x,{children:a("version.no-preview-available")}),(0,to.jsx)(ai.z,{loading:n,onClick:l,children:a("download")})]})};var hC=((a={}).ASSET="asset",a.DATA_OBJECT="data-object",a),hk=((l={}).SYSTEM_DATA="systemData",l.META="meta",l),hT=i(38340);let hS=[hk.META],hD=e=>{let{categoriesList:t,versionViewData:i,versionKeysList:n,modifiedFields:r}=e,{styles:a}=(0,hT.y)(),{t:l}=(0,t7.useTranslation)();return(0,to.jsx)(to.Fragment,{children:null==t?void 0:t.map((e,t)=>(0,to.jsxs)("div",{children:[(0,to.jsx)(nc.x,{className:a.sectionTitle,strong:!0,children:l(`version.category.title.${e.key}`)}),(0,to.jsx)(rZ.k,{className:a.sectionFields,gap:"extra-small",vertical:!0,children:i.map((t,i)=>e.fieldKeys.includes(t.Field.key)&&(0,to.jsxs)("div",{children:[(e=>{let{categoryName:t,fieldData:i}=e,n=hS.includes(t),r=i.field,o=i.language,s=n?r:l(`version.${i.key}`);return(0,to.jsxs)(nc.x,{className:a.fieldTitle,children:[s," ",!(0,eY.isEmpty)(o)&&(0,to.jsxs)(nc.x,{type:"secondary",children:["| ",null==o?void 0:o.toUpperCase()]})]})})({categoryName:e.key,fieldData:t.Field}),(0,to.jsx)(rZ.k,{gap:"mini",children:n.map((e,i)=>{let n=r.includes(t.Field.key);return(0,to.jsx)("div",{className:ly()(a.sectionFieldItem,{[a.sectionFieldItemHighlight]:n&&1===i}),children:(0,to.jsx)(nc.x,{children:t[e]})},`${i}-${e}`)})})]},`${i}-${t.Field.key}`))})]},`${t}-${e.key}`))})};var hE=i(54436),hM=i(41098);let hI=[hk.SYSTEM_DATA],hL=[hM.T.BLOCK,hM.T.FIELD_COLLECTIONS],hP=e=>{let{breadcrumbsList:t,versionViewData:i,versionKeysList:n,isExpandedUnmodifiedFields:r}=e,{styles:a}=(0,hT.y)(),{t:l}=(0,t7.useTranslation)();return(0,to.jsx)(to.Fragment,{children:null==t?void 0:t.map((e,t)=>{let o=e.key===hk.SYSTEM_DATA;return(0,to.jsxs)("div",{children:[(e=>{let{key:t,isCommonSection:i}=e,[n,...r]=(hI.includes(t)?l(`version.category.title.${t}`):t).split("/"),o=r.length>0?` | ${r.join(" | ")}`:"";return(0,dW.O)(n)&&(0,dW.O)(o)?null:(0,to.jsxs)(nc.x,{className:ly()(a.sectionTitle,{[a.subSectionTitle]:!i}),strong:!0,children:[n,!(0,dW.O)(o)&&(0,to.jsx)("span",{className:a.subSectionText,children:o})]})})({key:e.key,isCommonSection:o}),(0,to.jsx)(rZ.k,{className:ly()(a.sectionFields,{[a.sectionFieldsWithoutBorder]:!o}),gap:"extra-small",vertical:!0,children:i.map((t,i)=>{var s;let d=e.key===t.Field.fieldBreadcrumbTitle,f=e.fieldKeys.includes(t.Field.name);return d&&f&&(0,to.jsxs)("div",{children:[(e=>{let{key:t,locale:i,isCommonSection:n}=e;if((0,dW.O)(t))return(0,to.jsx)(to.Fragment,{});let r=n?l(`version.${t}`):t;return(0,to.jsxs)(nc.x,{className:a.fieldTitle,children:[r," ",!(0,eY.isEmpty)(i)&&(0,to.jsxs)(nc.x,{type:"secondary",children:["| ",i.toUpperCase()]})]})})({key:t.Field.title,locale:null==(s=t.Field)?void 0:s.locale,isCommonSection:o}),(0,to.jsx)(rZ.k,{gap:"mini",children:n.map((e,i)=>{let n=(null==t?void 0:t.isModifiedValue)===!0,o=1===i,s=hL.includes(null==t?void 0:t.Field.fieldtype),d=n&&s&&(0,dW.O)(t[e]);return(0,to.jsxs)("div",{className:a.objectSectionFieldItemWrapper,children:[d&&(0,to.jsx)(rZ.k,{align:"center",className:ly()(a.objectSectionFieldItem,a.objectSectionEmptyState,{[a.objectSectionEmptyStateDisabled]:0===i,[a.objectSectionEmptyStateHighlight]:o}),justify:"center",children:l("empty")}),(0,to.jsx)(hE.A,{className:ly()(a.objectSectionFieldItem,"versionFieldItem",{[a.objectSectionFieldItemHighlight]:n&&o,versionFieldItemHighlight:n&&o}),datatype:"data",fieldCollectionModifiedList:null==t?void 0:t.fieldCollectionModifiedList,fieldType:t.Field.fieldtype,isExpandedUnmodifiedFields:r,name:t.Field.name,value:t[e],...t.Field},`${i}-${e}`)]},`${i}-${e}`)})})]},`${i}-${t.Field.name}`)})})]},`${t}-${e.key}`)})})},hN=["reverseObjectRelation"];var hA=i(78245);let hR=e=>{let{data:t}=e,{elementType:i}=(0,io.i)(),n=i===hC.ASSET,r=i===hC.DATA_OBJECT,[a,l]=(0,ts.useState)(!1),{versionKeysList:o,comparisonModifiedData:s,sectionsList:d}=((e,t)=>{let i=Object.keys(e[0]).filter(e=>e.startsWith("Version")),n=e.filter(e=>!(0,eY.isEqual)(e[i[0]]??null,e[i[1]]??null));return{versionKeysList:i,comparisonModifiedData:n,sectionsList:(0,ts.useMemo)(()=>{if(t===hC.ASSET){let t={};return e.forEach(e=>{let i=(e=>{if(e.includes("."))return e.split(".")[0]})(e.Field.key)??hk.SYSTEM_DATA;(0,eY.isUndefined)(t[i])&&(t[i]=new Set),t[i].add(e.Field.key)}),Object.entries(t).map(e=>{let[t,i]=e;return{key:t,fieldKeys:Array.from(i)}})}if(t===hC.DATA_OBJECT){let t={};return e.forEach(e=>{let i=e.Field.fieldBreadcrumbTitle??hk.SYSTEM_DATA;hN.includes(e.Field.fieldtype)||((0,eY.isUndefined)(t[i])&&(t[i]=new Set),t[i].add(e.Field.name))}),Object.entries(t).map(e=>{let[t,i]=e;return{key:t,fieldKeys:Array.from(i)}})}},[e])}})(t,i),{t:f}=(0,t7.useTranslation)(),{styles:c}=(0,hA.y)(),u=!(0,eY.isNil)(o)&&o.length>1,m=a?t:s,p=u?m:t,g=(0,ts.useMemo)(()=>n?(e=>{let{versionViewData:t,categoriesList:i}=e,n=(0,eY.map)(t,"Field.key");return(0,eY.isEmpty)(i)?[]:(0,eY.filter)((0,eY.map)(i,e=>({...e,fieldKeys:(0,eY.intersection)(e.fieldKeys,n)})),e=>!(0,eY.isEmpty)(e.fieldKeys))})({versionViewData:p,categoriesList:d}):r?(e=>{let{versionViewData:t,breadcrumbsList:i}=e,n=(0,eY.map)(t,"Field.name"),r=(0,eY.map)(t,"Field.fieldBreadcrumbTitle");return(0,eY.isEmpty)(i)?[]:(0,eY.filter)((0,eY.map)(i,e=>({...e,fieldKeys:(0,eY.intersection)(e.fieldKeys,n)})),e=>!(0,eY.isEmpty)(e.fieldKeys)&&r.includes(e.key))})({versionViewData:p,breadcrumbsList:d}):void 0,[a,d]),h=(0,ts.useMemo)(()=>{if(u&&!(0,eY.isEmpty)(s)){if(n)return s.map(e=>e.Field.key);if(r)return s.map(e=>e.Field.title)}return[]},[s,u]),b=!(0,eY.isUndefined)(h)&&h.length>0;return(0,to.jsxs)(rZ.k,{vertical:!0,children:[(0,to.jsx)(rZ.k,{className:c.headerContainer,wrap:"wrap",children:o.map((e,t)=>((e,t)=>{let i=/\d+/.exec(e),n=(null==i?void 0:i[0])??"0";return(0,to.jsx)(rZ.k,{className:c.headerItem,children:(0,to.jsxs)(nc.x,{children:[f("version.version")," ",Number(n)]})},`${t}-${e}`)})(e,t))}),(0,to.jsxs)(rZ.k,{className:c.content,vertical:!0,children:[u&&(0,to.jsx)("div",{className:c.switchContainer,children:(0,to.jsx)(s0.r,{labelLeft:(0,to.jsx)(nc.x,{children:f("version.expand-unmodified-fields")}),onChange:()=>{l(!a)},value:a})}),u&&!b&&!a&&(0,to.jsx)(rZ.k,{justify:"center",children:(0,to.jsx)(nc.x,{className:c.emptyState,children:f("version.no-difference")})}),n&&(0,to.jsx)(hD,{categoriesList:g,modifiedFields:h,versionKeysList:o,versionViewData:p}),r&&(0,to.jsx)(hP,{breadcrumbsList:g,isExpandedUnmodifiedFields:a,versionKeysList:o,versionViewData:p})]})]})},hO=e=>{let{versions:t,gridData:i,isImageVersion:n,versionIds:r}=e,{styles:a}=hx();return(0,to.jsx)("div",{className:a["right-side"],children:(0,to.jsxs)(tN.Space,{direction:"vertical",size:"large",style:{maxWidth:t.length>1?1200:600},children:[(0,to.jsx)(tN.Flex,{align:"center",gap:"small",justify:"center",style:{minHeight:100},children:t.map((e,t)=>{var i;let a=r.find(t=>t.count===(null==e?void 0:e.versionCount));return(0,to.jsx)("div",{children:null!==e.previewImageUrl&&n?(0,to.jsx)(hj.X,{src:e.previewImageUrl,style:{maxHeight:500,maxWidth:500}}):(0,to.jsx)(hw,{fileName:null==e||null==(i=e.dataRaw)?void 0:i.fileName,id:null==a?void 0:a.id})},t)})}),(0,to.jsx)(hR,{data:i})]})})};var hB=i(86167);let hF=(e,t,i)=>({versionCount:i,baseDataFormatted:{fileName:e.fileName,creationDate:(0,dH.o0)({timestamp:e.creationDate??null,dateStyle:"short",timeStyle:"medium"}),modificationDate:(0,dH.o0)({timestamp:e.modificationDate??null,dateStyle:"short",timeStyle:"medium"}),fileSize:void 0!==e.fileSize?(0,hB.t)(e.fileSize):"",mimeType:e.mimeType,dimensions:null!==e.dimensions&&void 0!==e.dimensions?e.dimensions.width+" x "+e.dimensions.height:""},metadata:h_(e.metadata),previewImageUrl:`/pimcore-studio/api/versions/${t}/image/stream`,dataRaw:e}),h_=e=>{let t=eB.nC.get(eO.j["DynamicTypes/MetadataRegistry"]),i=new Map;if(void 0===e)return i;for(let n of e){let e=t.getTypeSelectionTypes().get(`metadata.${n.type}`),r=null!==n.language?`${hk.META}.${n.name}.${n.language}`:n.name;i.set(r,{key:r,field:n.name,language:n.language??void 0,metadataType:n.type,displayValue:void 0!==e?e.getVersionPreviewComponent(n.data):"Metadata type not supported",raw:n})}return i},hz=e=>(null==e?void 0:e.type)==="image",hV=async(e,t)=>{if(!hz(e))return null;let i=null;return await fetch(`/pimcore-studio/api/versions/${t}/image/stream`,{cache:"force-cache"}).then(async e=>await e.blob()).then(e=>{i=URL.createObjectURL(e)}).catch(()=>{(0,is.ZP)(new is.aE("Failed to load preview image"))}),i},h$=e=>{let t=ir().t,i=[],n=[],r=t("field");return e.forEach((e,a)=>{let l=`${t("version.version")} ${e.versionCount}`;Object.keys(e.baseDataFormatted).forEach(n=>{if("dimensions"===n&&!hz(e.dataRaw))return;let a=i.find(e=>e[r].key===n);void 0!==a?a[l]=e.baseDataFormatted[n]:i.push({[r]:{field:t(`version.${n}`),key:n},[l]:e.baseDataFormatted[n]})}),e.metadata.forEach((e,t)=>{let i=n.find(t=>t[r].key===e.key);if(void 0!==i)i[l]=e.displayValue;else{let t={key:e.key,field:e.field,language:e.language,metadataType:e.metadataType};n.push({[r]:t,[l]:e.displayValue})}})}),n.sort((e,i)=>{let n=e[t("field")].key.toLowerCase(),r=i[t("field")].key.toLowerCase();return nr)}),[...i,...n]},hW=e=>{let{versionIds:t}=e,[i,n]=(0,ts.useState)([]),[r,a]=(0,ts.useState)([]),[l,o]=(0,ts.useState)(!1);return((0,ts.useEffect)(()=>{let e=[];a([]),n([]),t.forEach(async t=>{let i=t.id;e.push(hd.h.dispatch(it.hi.endpoints.versionGetById.initiate({id:i})))}),Promise.all(e).then(e=>{let i=[],r=[];e.forEach((e,n)=>{let a=e.data;hz(a)&&o(!0),i.push(hF(a,t[n].id,t[n].count)),r.push(hV(a,t[n].id))}),Promise.all(r).then(e=>{i.forEach((t,i)=>{t.previewImageUrl=e[i]}),a(i),n(h$(i))}).catch(e=>{console.log(e)})}).catch(e=>{console.log(e)})},[t]),0===i.length)?(0,to.jsx)(aB.V,{fullPage:!0,loading:!0}):(0,to.jsx)(hO,{gridData:i,isImageVersion:l,versionIds:t,versions:r})},hH=e=>{let{versionId:t,data:i,imgSrc:n,firstVersion:r,lastVersion:a,onClickPrevious:l,onClickNext:o,isImageVersion:s,fileName:d}=e;return(0,to.jsxs)(tN.Flex,{gap:"small",style:{minWidth:"100%"},vertical:!0,children:[(0,to.jsxs)(tN.Flex,{align:"center",gap:"small",justify:"center",style:{minHeight:100},children:[(0,to.jsx)(aM.h,{disabled:r,icon:{value:"chevron-left"},onClick:l,type:"text"}),null!==n&&s?(0,to.jsx)(hj.X,{className:"image-slider__image",src:n,style:{maxHeight:500,maxWidth:500}}):(0,to.jsx)(hw,{fileName:d,id:t.id}),(0,to.jsx)(aM.h,{disabled:a,icon:{value:"chevron-right"},onClick:o,type:"text"})]}),(0,to.jsx)(hR,{data:i})]})},hG=e=>{let{versions:t,versionId:i,setDetailedVersions:n}=e,[r,a]=(0,ts.useState)(i),[l,o]=(0,ts.useState)([]),[s,d]=(0,ts.useState)(null),[f,c]=(0,ts.useState)(void 0),[u,m]=(0,ts.useState)(!1);function p(e){for(let i=0;i=0&&i+e{i.id!==r.id&&(o([]),a(i))},[i]),(0,ts.useEffect)(()=>{Promise.resolve(hd.h.dispatch(it.hi.endpoints.versionGetById.initiate({id:r.id}))).then(e=>{let t=e.data,i=hF(t,r.id,r.count);hz(t)&&m(!0),c(null==t?void 0:t.fileName),o(h$([i])),d(i.previewImageUrl)}).catch(e=>{console.log(e)})},[r]),0===l.length?(0,to.jsx)(aB.V,{fullPage:!0,loading:!0}):(0,to.jsx)(hH,{data:l,fileName:f,firstVersion:t[0].id===r.id,imgSrc:s,isImageVersion:u,lastVersion:t[t.length-1].id===r.id,onClickNext:function(){o([]),p(1)},onClickPrevious:function(){o([]),p(-1)},versionId:r})},hU=()=>(0,to.jsx)(hv.e,{ComparisonViewComponent:hW,SingleViewComponent:hG}),hq=()=>{var e,t;let{t:i}=(0,t7.useTranslation)(),{id:n}=(0,py.G)(),{data:r,isLoading:a,isError:l}=(0,pk.useAssetCustomSettingsGetByIdQuery)({id:n});if(a||void 0===r)return(0,to.jsx)(aB.V,{loading:!0});if(l)return(0,to.jsx)("div",{children:"Error"});let o=(0,aj.createColumnHelper)(),s=[o.accessor("name",{header:i("asset.asset-editor-tabs.embedded-metadata.columns.name"),size:400}),o.accessor("value",{header:i("asset.asset-editor-tabs.embedded-metadata.columns.value"),size:400})],d=Object.entries((null==(t=r.items)||null==(e=t.fixedCustomSettings)?void 0:e.embeddedMetadata)??[]).map(e=>{let[t,i]=e;return{name:String(t).toString(),value:String(i).toString()}});return(0,to.jsxs)(aB.V,{padded:!0,children:[(0,to.jsx)(gq.h,{className:"p-l-mini",title:i("asset.asset-editor-tabs.embedded-metadata.headline")}),(0,to.jsx)(az.r,{columns:s,data:d,enableSorting:!0,sorting:[{id:"name",desc:!1}]})]})};var hZ=i(91892),hK=i(88340),hJ=i(93291);let hX=()=>{let{t:e}=(0,t7.useTranslation)(),{id:t}=(0,ts.useContext)(pT.N),{asset:i}=(0,pv.V)(t),{renameContextMenuItem:n}=(0,pM.j)("asset",(0,pA.eG)("asset","rename",i.id)),{deleteContextMenuItem:r}=(0,pI.R)("asset",(0,pA.eG)("asset","delete",i.id)),{downloadContextMenuItem:a}=(0,pL.i)(),{createZipDownloadContextMenuItem:l}=(0,pX.F)({type:"folder"}),{refreshElement:o}=(0,hK.C)("asset"),{clearImageThumbnailContextMenuItem:s,clearVideoThumbnailContextMenuItem:d,clearPdfThumbnailContextMenuItem:f}=(0,hZ.D)(),c=[n(i,()=>{o(i.id)}),r(i),a(i),l(i),s(i),d(i),f(i)],u=c.filter(e=>null!==e&&"hidden"in e&&(null==e?void 0:e.hidden)===!1),m=[];return m.push((0,to.jsx)(hJ.t,{hasDataChanged:function(){return Object.keys((null==i?void 0:i.changes)??{}).length>0},onReload:function(){o(t,!0)},title:e("toolbar.reload.confirmation"),children:(0,to.jsx)(aM.h,{icon:{value:"refresh"},children:e("toolbar.reload")})},"reload-button")),u.length>0&&m.push((0,to.jsx)(pJ.L,{menu:{items:c},children:(0,to.jsx)(pK.P,{children:e("toolbar.more")},"dropdown-button")},"more-button")),(0,to.jsx)(p8.h,{items:m,noSpacing:!0})};var hQ=i(80251),hY=i(97833),h0=i(97686),h1=i(98244);let h2=(0,ia.createStyles)(e=>{let{token:t,css:i}=e;return{button:i` min-width: 100%; justify-items: flex-start; `,"not-first":i` margin-top: ${t.marginXXS}px; - `}},{hashPriority:"low"}),h3=e=>{var t,i;let{workflow:n}=e,{openModal:r}=(0,h0.D)(),{submitWorkflowAction:a,submissionLoading:o}=(0,h1.Y)(n.workflowName),{styles:l}=h2(),{t:s}=(0,t7.useTranslation)(),d=(e,t)=>(0,tl.jsx)(ai.z,{className:`${l.button}`,onClick:()=>{var i;i=n.workflowName,"global"===t?r({action:e,transition:t,workflowName:i}):"transition"===t&&a(e,t,i,{})},type:"text",children:s(`${e}`)});return o?(0,tl.jsx)(ai.z,{loading:o,type:"link"}):(0,tl.jsxs)("div",{children:[null==(t=n.allowedTransitions)?void 0:t.map(e=>d(e.label,"transition")),null==(i=n.globalActions)?void 0:i.map(e=>d(e.label,"global"))]})},h6=()=>{let{t:e}=(0,t7.useTranslation)(),[t,i]=td().useState([]),{workflowDetailsData:n,isFetchingWorkflowDetails:r}=(0,h0.D)();return(0,ts.useEffect)(()=>{(null==n?void 0:n.items)!==void 0&&n.items.length>0&&i(n.items.flatMap(t=>{var i;let r=[];return r.push({key:(((null==n||null==(i=n.items)?void 0:i.length)??0)+1).toString(),type:"custom",component:(0,tl.jsx)(h3,{workflow:t})}),{key:e(`${t.workflowName}`),type:"group",label:e(`${t.workflowName}`).toUpperCase(),children:r}}))},[n]),(0,tl.jsxs)(rZ.k,{align:"center",justify:"flex-end",children:[(0,tl.jsx)(hQ.P,{itemGap:"extra-small",list:(null==n?void 0:n.items)!==void 0&&n.items.length>0?[n.items.reduce((t,i)=>(i.workflowStatus.forEach(i=>{if(void 0!==i.visibleInDetail&&i.visibleInDetail){let n=i.colorInverted?{backgroundColor:`${i.color}33`}:{},r={children:e(`${i.label}`),icon:(0,tl.jsx)(hY.C,{color:i.color}),style:n};t.push(r)}}),t),[])]:[[]],wrap:!1}),void 0!==n&&(0,tl.jsx)(pJ.L,{disabled:r,menu:{items:t},children:(0,tl.jsx)(pK.P,{children:(0,tl.jsx)(rR.J,{options:{height:16,width:16},value:"workflow"})})})]})};var h4=i(8577),h8=i(6893);let h7=()=>{let{t:e}=(0,t7.useTranslation)(),{id:t}=(0,il.i)(),{asset:i,properties:n,removeTrackedChanges:r,customMetadata:a,customSettings:o,imageSettings:l,textData:s}=(0,pv.V)(t),[d,{isLoading:f,isSuccess:c,isError:u,error:m}]=(0,pk.useAssetUpdateByIdMutation)(),{saveSchedules:p,isLoading:g,isSuccess:h,isError:b,error:y}=(0,h8.f)("asset",t,!1),v=(0,h4.U)();return(0,ts.useEffect)(()=>{(async()=>{c&&h&&(r(),await v.success(e("save-success")))})().catch(e=>{console.error(e)})},[c,h]),(0,ts.useEffect)(()=>{u&&!(0,eY.isNil)(m)?(0,is.ZP)(new is.MS(m)):b&&!(0,eY.isNil)(y)&&(0,is.ZP)(new is.MS(y))},[u,b,m,y]),(0,tl.jsx)(tl.Fragment,{children:(0,hm.x)(null==i?void 0:i.permissions,"publish")&&(0,tl.jsx)(ai.z,{disabled:f||g,loading:f||g,onClick:function(){if((null==i?void 0:i.changes)===void 0)return;let e={};if(i.changes.properties){let t=null==n?void 0:n.map(e=>{let{rowId:t,...i}=e;if("object"==typeof i.data){var n;return{...i,data:(null==i||null==(n=i.data)?void 0:n.id)??null}}return i});e.properties=null==t?void 0:t.filter(e=>!e.inherited)}i.changes.customMetadata&&(e.metadata=null==a?void 0:a.map(e=>{let{rowId:t,...i}=e;return i.type.startsWith("metadata.")&&(i.type=i.type.replace("metadata.","")),null===i.data&&(("input"===i.type||"textarea"===i.type)&&(i.data=""),"checkbox"===i.type&&(i.data=!1)),i})),i.changes.customSettings&&(e.customSettings=o),i.changes.imageSettings&&(e.image=l),i.changes.textData&&(e.data=s),Promise.all([d({id:t,body:{data:{...e}}}),p()]).catch(e=>{console.log(e)})},type:"primary",children:e("toolbar.save-and-publish")})})};var h5=i(61949),h9=i(55722),be=i(76362),bt=i(60027),bi=i(86493),bn=i(34091);let br=()=>(0,tl.jsx)(aO.o,{children:(0,tl.jsxs)(bt.v,{children:[(0,tl.jsx)(rZ.k,{children:(0,tl.jsx)(bn.O,{slot:hy.O.asset.editor.toolbar.slots.left.name})}),(0,tl.jsx)(rZ.k,{style:{height:"32px"},vertical:!1,children:(0,tl.jsx)(bn.O,{slot:hy.O.asset.editor.toolbar.slots.right.name})}),(0,tl.jsx)(bi.L,{})]})});var ba=i(94593);let bo=e=>{let{id:t}=e,{isLoading:i,isError:n,asset:r,editorType:a}=(0,pv.V)(t),o=(0,h5.Q)(),{setContext:l,removeContext:s}=(0,h9.H)();return((0,ts.useEffect)(()=>()=>{s()},[]),(0,ts.useEffect)(()=>(o&&l({id:t}),()=>{o||s()}),[o]),i)?(0,tl.jsx)(aB.V,{loading:!0}):n?(0,tl.jsx)(aB.V,{padded:!0,children:(0,tl.jsx)(he.b,{message:"Error: Loading of asset failed",type:"error"})}):void 0===r||void 0===a?(0,tl.jsx)(tl.Fragment,{}):(0,tl.jsx)(hf.AssetProvider,{id:t,children:(0,tl.jsx)(ba.S,{dataTestId:`asset-editor-${(0,dM.rR)(t)}`,renderTabbar:(0,tl.jsx)(be.T,{elementEditorType:a}),renderToolbar:(0,tl.jsx)(br,{})})})};eR._.registerModule({onInit:()=>{let e=eB.nC.get(eO.j["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"}),eB.nC.get(eO.j.widgetManager).registerWidget(hc);let t=eB.nC.get(eO.j["App/ComponentRegistry/ComponentRegistry"]);t.register({name:hy.O.asset.editor.container.name,component:bo}),t.register({name:hy.O.asset.editor.tab.embeddedMetadata.name,component:hq}),t.register({name:hy.O.asset.editor.tab.customMetadata.name,component:hb}),t.register({name:hy.O.asset.editor.tab.versions.name,component:hU}),t.registerToSlot("asset.editor.toolbar.slots.left",{name:"contextMenu",priority:100,component:hX}),t.registerToSlot("asset.editor.toolbar.slots.right",{name:"workflowMenu",priority:100,component:h6}),t.registerToSlot("asset.editor.toolbar.slots.right",{name:"saveButton",priority:200,component:h7})}});var bl=i(44832),bs=i(49060),bd=i(14005);let bf=(0,ts.createContext)({pageSize:30}),bc=e=>{let{children:t,classIds:i,pqlQuery:n,pageSize:r}=e,a=(0,ts.useMemo)(()=>({classIds:i,pqlQuery:n,pageSize:r}),[i,n,r]);return(0,tl.jsx)(bf.Provider,{value:a,children:t})},bu=()=>{let e=(0,ts.useContext)(bf);return void 0===e&&(e={pageSize:30}),{...e,treeFilterArgs:{classIds:void 0===e.classIds||0===e.classIds.length?void 0:JSON.stringify(e.classIds),pqlQuery:e.pqlQuery}}},bm=e=>{let{page:t,setPage:i}=(0,bd.J)(e.node.id),{pageSize:n}=bu(),r=e.total;return(0,tl.jsx)(aN.t,{amountOfVisiblePages:3,current:t,defaultPageSize:n,hideOnSinglePage:!0,onChange:function(e){t!==e&&i(e)},total:r})},{Search:bp}=tN.Input,bg=e=>{let{searchTerm:t,setSearchTerm:i,setPage:n}=(0,bd.J)(e.node.id),{total:r}=e,{pageSize:a}=bu();return!(0,eY.isEmpty)(t)||r>a?(0,tl.jsx)(bp,{"aria-label":e.label,defaultValue:t,loading:e.isLoading,onSearch:function(e){i(""===e?void 0:e),n(1)},placeholder:e.label,size:"small"}):(0,tl.jsx)(tl.Fragment,{})},bh=e=>{let{t}=(0,t7.useTranslation)();return(0,tl.jsx)(bg,{...e,label:t("asset.asset-tree.search",{folderName:e.node.label}),node:e.node,total:e.total})};var bb=i(34405),by=i(49454),bv=i(20864),bx=i(14092),bj=i(94374),bw=i(26885);let bC=()=>{let{treeId:e}=(0,bw.d)(),t=(0,bx.useStore)();return{isSourceAllowed:i=>{var n;if(!(0,hm.x)(i.permissions,"settings")||i.isLocked)return!1;let r=t.getState(),a=(0,bj.RX)(r,e,i.id.toString());return!(null==a||null==(n=a.treeNodeProps)?void 0:n.isLocked)},isTargetAllowed:e=>(0,hm.x)(e.permissions,"create")}};var bk=i(18576);let bT=(0,ia.createStyles)(e=>{let{token:t,css:i}=e;return{withDroppable:i` + `}},{hashPriority:"low"}),h3=e=>{var t,i;let{workflow:n}=e,{openModal:r}=(0,h0.D)(),{submitWorkflowAction:a,submissionLoading:l}=(0,h1.Y)(n.workflowName),{styles:o}=h2(),{t:s}=(0,t7.useTranslation)(),d=(e,t)=>(0,to.jsx)(ai.z,{className:`${o.button}`,onClick:()=>{var i;i=n.workflowName,"global"===t?r({action:e,transition:t,workflowName:i}):"transition"===t&&a(e,t,i,{})},type:"text",children:s(`${e}`)});return l?(0,to.jsx)(ai.z,{loading:l,type:"link"}):(0,to.jsxs)("div",{children:[null==(t=n.allowedTransitions)?void 0:t.map(e=>d(e.label,"transition")),null==(i=n.globalActions)?void 0:i.map(e=>d(e.label,"global"))]})},h6=()=>{let{t:e}=(0,t7.useTranslation)(),[t,i]=td().useState([]),{workflowDetailsData:n,isFetchingWorkflowDetails:r}=(0,h0.D)();return(0,ts.useEffect)(()=>{(null==n?void 0:n.items)!==void 0&&n.items.length>0&&i(n.items.flatMap(t=>{var i;let r=[];return r.push({key:(((null==n||null==(i=n.items)?void 0:i.length)??0)+1).toString(),type:"custom",component:(0,to.jsx)(h3,{workflow:t})}),{key:e(`${t.workflowName}`),type:"group",label:e(`${t.workflowName}`).toUpperCase(),children:r}}))},[n]),(0,to.jsxs)(rZ.k,{align:"center",justify:"flex-end",children:[(0,to.jsx)(hQ.P,{itemGap:"extra-small",list:(null==n?void 0:n.items)!==void 0&&n.items.length>0?[n.items.reduce((t,i)=>(i.workflowStatus.forEach(i=>{if(void 0!==i.visibleInDetail&&i.visibleInDetail){let n=i.colorInverted?{backgroundColor:`${i.color}33`}:{},r={children:e(`${i.label}`),icon:(0,to.jsx)(hY.C,{color:i.color}),style:n};t.push(r)}}),t),[])]:[[]],wrap:!1}),void 0!==n&&(0,to.jsx)(pJ.L,{disabled:r,menu:{items:t},children:(0,to.jsx)(pK.P,{children:(0,to.jsx)(rR.J,{options:{height:16,width:16},value:"workflow"})})})]})};var h4=i(8577),h8=i(6893);let h7=()=>{let{t:e}=(0,t7.useTranslation)(),{id:t}=(0,io.i)(),{asset:i,properties:n,removeTrackedChanges:r,customMetadata:a,customSettings:l,imageSettings:o,textData:s}=(0,pv.V)(t),[d,{isLoading:f,isSuccess:c,isError:u,error:m}]=(0,pk.useAssetUpdateByIdMutation)(),{saveSchedules:p,isLoading:g,isSuccess:h,isError:b,error:y}=(0,h8.f)("asset",t,!1),v=(0,h4.U)();return(0,ts.useEffect)(()=>{(async()=>{c&&h&&(r(),await v.success(e("save-success")))})().catch(e=>{console.error(e)})},[c,h]),(0,ts.useEffect)(()=>{u&&!(0,eY.isNil)(m)?(0,is.ZP)(new is.MS(m)):b&&!(0,eY.isNil)(y)&&(0,is.ZP)(new is.MS(y))},[u,b,m,y]),(0,to.jsx)(to.Fragment,{children:(0,hm.x)(null==i?void 0:i.permissions,"publish")&&(0,to.jsx)(ai.z,{disabled:f||g,loading:f||g,onClick:function(){if((null==i?void 0:i.changes)===void 0)return;let e={};if(i.changes.properties){let t=null==n?void 0:n.map(e=>{let{rowId:t,...i}=e;if("object"==typeof i.data){var n;return{...i,data:(null==i||null==(n=i.data)?void 0:n.id)??null}}return i});e.properties=null==t?void 0:t.filter(e=>!e.inherited)}i.changes.customMetadata&&(e.metadata=null==a?void 0:a.map(e=>{let{rowId:t,...i}=e;return i.type.startsWith("metadata.")&&(i.type=i.type.replace("metadata.","")),null===i.data&&(("input"===i.type||"textarea"===i.type)&&(i.data=""),"checkbox"===i.type&&(i.data=!1)),i})),i.changes.customSettings&&(e.customSettings=l),i.changes.imageSettings&&(e.image=o),i.changes.textData&&(e.data=s),Promise.all([d({id:t,body:{data:{...e}}}),p()]).catch(e=>{console.log(e)})},type:"primary",children:e("toolbar.save-and-publish")})})};var h5=i(61949),h9=i(55722),be=i(76362),bt=i(60027),bi=i(86493),bn=i(34091);let br=()=>(0,to.jsx)(aO.o,{children:(0,to.jsxs)(bt.v,{children:[(0,to.jsx)(rZ.k,{children:(0,to.jsx)(bn.O,{slot:hy.O.asset.editor.toolbar.slots.left.name})}),(0,to.jsx)(rZ.k,{style:{height:"32px"},vertical:!1,children:(0,to.jsx)(bn.O,{slot:hy.O.asset.editor.toolbar.slots.right.name})}),(0,to.jsx)(bi.L,{})]})});var ba=i(94593);let bl=e=>{let{id:t}=e,{isLoading:i,isError:n,asset:r,editorType:a}=(0,pv.V)(t),l=(0,h5.Q)(),{setContext:o,removeContext:s}=(0,h9.H)();return((0,ts.useEffect)(()=>()=>{s()},[]),(0,ts.useEffect)(()=>(l&&o({id:t}),()=>{l||s()}),[l]),i)?(0,to.jsx)(aB.V,{loading:!0}):n?(0,to.jsx)(aB.V,{padded:!0,children:(0,to.jsx)(he.b,{message:"Error: Loading of asset failed",type:"error"})}):void 0===r||void 0===a?(0,to.jsx)(to.Fragment,{}):(0,to.jsx)(hf.AssetProvider,{id:t,children:(0,to.jsx)(ba.S,{dataTestId:`asset-editor-${(0,dM.rR)(t)}`,renderTabbar:(0,to.jsx)(be.T,{elementEditorType:a}),renderToolbar:(0,to.jsx)(br,{})})})};eR._.registerModule({onInit:()=>{let e=eB.nC.get(eO.j["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"}),eB.nC.get(eO.j.widgetManager).registerWidget(hc);let t=eB.nC.get(eO.j["App/ComponentRegistry/ComponentRegistry"]);t.register({name:hy.O.asset.editor.container.name,component:bl}),t.register({name:hy.O.asset.editor.tab.embeddedMetadata.name,component:hq}),t.register({name:hy.O.asset.editor.tab.customMetadata.name,component:hb}),t.register({name:hy.O.asset.editor.tab.versions.name,component:hU}),t.registerToSlot("asset.editor.toolbar.slots.left",{name:"contextMenu",priority:100,component:hX}),t.registerToSlot("asset.editor.toolbar.slots.right",{name:"workflowMenu",priority:100,component:h6}),t.registerToSlot("asset.editor.toolbar.slots.right",{name:"saveButton",priority:200,component:h7})}});var bo=i(44832),bs=i(49060),bd=i(14005);let bf=(0,ts.createContext)({pageSize:30}),bc=e=>{let{children:t,classIds:i,pqlQuery:n,pageSize:r}=e,a=(0,ts.useMemo)(()=>({classIds:i,pqlQuery:n,pageSize:r}),[i,n,r]);return(0,to.jsx)(bf.Provider,{value:a,children:t})},bu=()=>{let e=(0,ts.useContext)(bf);return void 0===e&&(e={pageSize:30}),{...e,treeFilterArgs:{classIds:void 0===e.classIds||0===e.classIds.length?void 0:JSON.stringify(e.classIds),pqlQuery:e.pqlQuery}}},bm=e=>{let{page:t,setPage:i}=(0,bd.J)(e.node.id),{pageSize:n}=bu(),r=e.total;return(0,to.jsx)(aN.t,{amountOfVisiblePages:3,current:t,defaultPageSize:n,hideOnSinglePage:!0,onChange:function(e){t!==e&&i(e)},total:r})},{Search:bp}=tN.Input,bg=e=>{let{searchTerm:t,setSearchTerm:i,setPage:n}=(0,bd.J)(e.node.id),{total:r}=e,{pageSize:a}=bu();return!(0,eY.isEmpty)(t)||r>a?(0,to.jsx)(bp,{"aria-label":e.label,defaultValue:t,loading:e.isLoading,onSearch:function(e){i(""===e?void 0:e),n(1)},placeholder:e.label,size:"small"}):(0,to.jsx)(to.Fragment,{})},bh=e=>{let{t}=(0,t7.useTranslation)();return(0,to.jsx)(bg,{...e,label:t("asset.asset-tree.search",{folderName:e.node.label}),node:e.node,total:e.total})};var bb=i(34405),by=i(49454),bv=i(20864),bx=i(14092),bj=i(94374),bw=i(26885);let bC=()=>{let{treeId:e}=(0,bw.d)(),t=(0,bx.useStore)();return{isSourceAllowed:i=>{var n;if(!(0,hm.x)(i.permissions,"settings")||i.isLocked)return!1;let r=t.getState(),a=(0,bj.RX)(r,e,i.id.toString());return!(null==a||null==(n=a.treeNodeProps)?void 0:n.isLocked)},isTargetAllowed:e=>(0,hm.x)(e.permissions,"create")}};var bk=i(18576);let bT=(0,ia.createStyles)(e=>{let{token:t,css:i}=e;return{withDroppable:i` .tree-node__content-inner { background: ${t.colorBgContainerDisabled}; border-radius: ${t.borderRadius}px; @@ -517,7 +517,7 @@ background: transparent; border: 0; } - `}}),bS=e=>(0,ts.forwardRef)((t,i)=>{let n=(0,ts.forwardRef)((e,t)=>{let{children:i}=e,{styles:n}=bT(),{isOver:r,isValid:a}=(0,lr.Z)(),o=oy()("with-droppable-styling",{[n.withDroppable]:r&&a});return(0,tl.jsx)("div",{className:o,ref:t,children:i})});return n.displayName="DroppableStylingWrapper",(0,tl.jsx)(e,{...t,ref:i,wrapNode:e=>(0,tl.jsx)(n,{children:(0,eY.isUndefined)(t.wrapNode)?e:t.wrapNode(e)})})});var bD=i(25172),bE=i(63989);let bM=(0,ia.createStyles)(e=>{let{token:t,css:i}=e;return{dragger:i` + `}}),bS=e=>(0,ts.forwardRef)((t,i)=>{let n=(0,ts.forwardRef)((e,t)=>{let{children:i}=e,{styles:n}=bT(),{isOver:r,isValid:a}=(0,or.Z)(),l=ly()("with-droppable-styling",{[n.withDroppable]:r&&a});return(0,to.jsx)("div",{className:l,ref:t,children:i})});return n.displayName="DroppableStylingWrapper",(0,to.jsx)(e,{...t,ref:i,wrapNode:e=>(0,to.jsx)(n,{children:(0,eY.isUndefined)(t.wrapNode)?e:t.wrapNode(e)})})});var bD=i(25172),bE=i(63989);let bM=(0,ia.createStyles)(e=>{let{token:t,css:i}=e;return{dragger:i` .ant-upload { padding: 0 !important; background: none; @@ -547,7 +547,7 @@ width: 100%; } } - `}});var bI=i(35621),bL=i(58615);let bP=e=>{let{styles:t}=bM(),{Dragger:i}=tN.Upload,n=(0,ts.useRef)(null),r=(0,bI.Z)(n,!0);return(0,tl.jsx)("div",{ref:n,children:r?(0,tl.jsx)(bL.o,{...e,openFileDialogOnClick:!1,uploadComponent:i,uploadComponentClassName:t.dragger}):e.children})};var bN=i(38393);let bA=e=>{let{nodeId:t,children:i}=e,{refreshTree:n}=(0,bN.T)("asset");return(0,tl.jsx)(bP,{onSuccess:async e=>{n(parseInt(t))},skipAssetFetch:!0,targetFolderId:parseInt(t),children:i})};var bR=i(46535),bO=i(42155),bB=i(20040),bF=i(51469),b_=i(24861),bz=i(62659),bV=i(36885);let b$=e=>{let{t}=(0,t7.useTranslation)(),i=e.node??bs.l,{createZipDownloadTreeContextMenuItem:n}=(0,pX.F)({type:"folder"}),{addFolderTreeContextMenuItem:r}=(0,bO.p)("asset"),{renameTreeContextMenuItem:a}=(0,pM.j)("asset",(0,pA.eG)("asset","rename",parseInt(i.id))),{deleteTreeContextMenuItem:o}=(0,pI.R)("asset",(0,pA.eG)("asset","delete",parseInt(i.id))),{refreshTreeContextMenuItem:l}=(0,bN.T)("asset"),{downloadTreeContextMenuItem:s}=(0,pL.i)(),{copyTreeContextMenuItem:d,cutTreeContextMenuItem:f,pasteTreeContextMenuItem:c,pasteCutContextMenuItem:u}=(0,bv.o)("asset"),{lockTreeContextMenuItem:m,lockAndPropagateTreeContextMenuItem:p,unlockTreeContextMenuItem:g,unlockAndPropagateTreeContextMenuItem:h,isLockMenuHidden:b}=(0,bB.Z)("asset"),{uploadNewVersionTreeContextMenuItem:y}=(0,pP.M)(),{uploadContextMenuItem:v,zipUploadContextMenuItem:x}=(()=>{let{triggerUpload:e}=(0,bz.X)(),{t}=(0,t7.useTranslation)(),{refreshTree:i}=(0,bN.T)("asset"),{isTreeActionAllowed:n}=(0,b_._)(),{addJob:r,updateJob:a}=(0,gn.C)(),o=(0,ts.useRef)(void 0),l=t=>{e({targetFolderId:parseInt(t),skipAssetFetch:!0,onSuccess:async()=>{i(parseInt(t))}})},s=i=>{let n,l,s=new Promise((e,t)=>{n=e,l=t});e({action:`${(0,eQ.G)()}/assets/add-zip/${i}`,accept:".zip, .rar, .7zip",name:"zipFile",multiple:!1,beforeUpload:async()=>{let e,n=(e={title:t("jobs.zip-upload-job.title"),topics:[dp.F["zip-upload-finished"],dp.F["asset-upload-finished"],...dp.b],action:async()=>await s,parentFolder:i},{id:(0,ga.K)(),action:e.action,type:"zip-upload",title:e.title,status:gr.B.QUEUED,topics:e.topics,config:{parentFolder:e.parentFolder}});o.current=n.id,r(n)},onSuccess:async e=>{let t=e[0].response.jobRunId??void 0;(0,eY.isUndefined)(o.current)||a(o.current,{status:gr.B.RUNNING}),(0,eY.isNumber)(t)?n(Number(t)):l(Error("Job run ID is undefined"))}})},d=e=>!(0,hm.x)(e.permissions,"create")||(null==e?void 0:e.type)!=="folder";return{upload:l,zipUpload:s,uploadContextMenuItem:e=>({label:t("element.tree.context-menu.add-assets.upload-files"),key:gM.N.upload,icon:(0,tl.jsx)(rR.J,{value:"upload-cloud"}),hidden:d(e)||!n(bF.W.AddUpload),onClick:()=>{l(e.id)}}),zipUploadContextMenuItem:e=>({label:t("element.tree.context-menu.add-assets.upload-zip"),key:gM.N.uploadZip,icon:(0,tl.jsx)(rR.J,{value:"upload-zip"}),hidden:d(e)||!n(bF.W.AddUploadZip),onClick:()=>{s(e.id)}})}})(),{isTreeActionAllowed:j}=(0,b_._)(),w=j(bF.W.HideAdd)||!j(bF.W.AddUpload)&&!j(bF.W.AddUploadZip)||!(0,hm.x)(i.permissions,"create")||(null==i?void 0:i.type)!=="folder",C=[{label:t("element.tree.context-menu.new-assets"),key:"new-assets",icon:(0,tl.jsx)(rR.J,{value:"asset"}),hidden:w,children:[v(i),x(i)]},r(i),a(i),d(i),c(i),f(i),u(i),o(i),n(i),y(i),s(i),{label:t("element.tree.context-menu.advanced"),key:"advanced",icon:(0,tl.jsx)(rR.J,{value:"more"}),hidden:b(i),children:[{label:t("element.lock"),key:"advanced-lock",icon:(0,tl.jsx)(rR.J,{value:"lock"}),hidden:b(i),children:[m(i),p(i),g(i),h(i)]}]},l(i)];return(0,tl.jsx)(bV.v,{dataTestId:(0,dM.Mj)("asset",i.id),items:C})},bW=bS((l=bs.O,s=(0,ts.forwardRef)((e,t)=>{let{ref:i,...n}=e;return(0,tl.jsx)(l,{...e,ref:t,wrapNode:t=>(0,tl.jsx)(bR.ZP,{renderMenu:()=>(0,tl.jsx)(b$,{node:n}),children:(0,eY.isUndefined)(e.wrapNode)?t:e.wrapNode(t)})})}),d=(0,ts.forwardRef)((e,t)=>{var i,n;let r=null==(i=e.metaData)?void 0:i.asset,{t:a}=(0,t7.useTranslation)();if((null==(n=e.metaData)?void 0:n.asset)===void 0)return(0,tl.jsx)(s,{...e,ref:t});let o=(0,eY.isString)(null==r?void 0:r.filename)&&(null==r?void 0:r.filename)!==""?null==r?void 0:r.filename:a("home");return(0,tl.jsx)(bb._,{info:{icon:e.icon,title:o,type:"asset",data:{...r}},children:(0,tl.jsx)(s,{...e,ref:t})})}),f=(0,ts.forwardRef)((e,t)=>{let i=e.isLoading??!1,[,{isLoading:n}]=(0,pk.useAssetPatchByIdMutation)({fixedCacheKey:`ASSET_ACTION_RENAME_ID_${e.id}`}),[,{isLoading:r}]=(0,bk.um)({fixedCacheKey:`ASSET_ACTION_DELETE_ID_${e.id}`}),{isFetching:a,isLoading:o,isDeleting:l}=(0,bd.J)(e.id);return(0,tl.jsx)(d,{...e,danger:i||r||l,isLoading:i||!0!==o&&a||n||r,ref:t})}),c=(0,ts.forwardRef)((e,t)=>"folder"!==e.type?(0,tl.jsx)(f,{...e,ref:t}):(0,tl.jsx)(f,{...e,ref:t,wrapNode:t=>(0,tl.jsx)(bA,{nodeId:e.id,children:(0,eY.isUndefined)(e.wrapNode)?t:e.wrapNode(t)})})),(0,ts.forwardRef)((e,t)=>{var i;let{move:n}=(0,bv.o)("asset"),{isSourceAllowed:r,isTargetAllowed:a}=bC();if((null==(i=e.metaData)?void 0:i.asset)===void 0)return(0,tl.jsx)(c,{...e});let o=e.metaData.asset,l=e=>a(e)&&"folder"===e.type;if(!l(o))return(0,tl.jsx)(c,{...e});let s=e=>{let t=e.data;r(t)&&l(o)&&n({currentElement:{id:t.id,parentId:t.parentId},targetElement:{id:o.id,parentId:o.parentId}}).catch(()=>{(0,is.ZP)(new is.aE("Item could not be moved"))})},d=e=>"asset"===e.type,f=e=>{let t=e.data;return"asset"===e.type&&r(t)&&l(o)};return(0,tl.jsx)(c,{...e,ref:t,wrapNode:t=>(0,tl.jsx)(oE.b,{disableDndActiveIndicator:!0,isValidContext:d,isValidData:f,onDrop:s,children:(0,eY.isUndefined)(e.wrapNode)?t:e.wrapNode(t)})})}))),bH=e=>{let{id:t=1,showRoot:i=!0}=e,{openAsset:n}=(0,pE.Q)(),{rootNode:r,isLoading:a}=(0,bD.V)(t,i),o=(0,bE.q)().get(hy.O.asset.tree.contextMenu.name);if(i&&a)return(0,tl.jsx)(aL.x,{padding:"small",children:(0,tl.jsx)(by.O,{})});async function l(e){n({config:{id:parseInt(e.id)}})}return(0,tl.jsx)(bl.fr,{contextMenu:o,nodeId:t,onSelect:l,renderFilter:bh,renderNode:bW,renderNodeContent:bl.lG.renderNodeContent,renderPager:bm,rootNode:r,showRoot:i})};eR._.registerModule({onInit:()=>{eB.nC.get(eO.j["App/ComponentRegistry/ComponentRegistry"]).register({name:hy.O.asset.tree.contextMenu.name,component:b$})}}),eR._.registerModule({onInit:()=>{eB.nC.get(eO.j.widgetManager).registerWidget({name:"asset-tree",component:bH})}}),i(20227);var bG=i(53320);let bU=e=>{let{data:t}=e;return(0,tl.jsx)(rZ.k,{flex:1,gap:"small",vertical:!0,children:(0,tl.jsx)(hR,{data:t})})},bq=e=>{let{data:t}=e;return(0,tl.jsx)(rZ.k,{flex:1,gap:"small",vertical:!0,children:(0,tl.jsx)(hR,{data:t})})};var bZ=i(1458),bK=i(13392);let bJ={key:"versions",label:"version.label",children:(0,tl.jsx)(bK.w,{children:(0,tl.jsx)(tx._v,{children:(0,tl.jsx)(hv.e,{ComparisonViewComponent:e=>{let{versionIds:t}=e,[i,n]=(0,ts.useState)([]),[r,a]=(0,ts.useState)([]),o=(0,pU.useAppDispatch)(),{id:l}=(0,il.i)(),s=(0,eB.$1)(eO.j["DynamicTypes/ObjectDataRegistry"]),{data:d}=(0,bG.wG)({id:l});return((0,ts.useEffect)(()=>{let e=[];n([]),t.forEach(t=>{let i=t.id;e.push(o(it.hi.endpoints.versionGetById.initiate({id:i})))}),Promise.all(e).then(e=>{let i=[];e.forEach(async(e,o)=>{let f=e.data;(0,eY.isUndefined)(null==d?void 0:d.children)||(0,eY.isUndefined)(f)||(i.push(await (0,a2.Rz)({objectId:l,layout:d.children,versionData:f,versionId:t[o].id,versionCount:t[o].count,objectDataRegistry:s,layoutsList:r,setLayoutsList:a})),n((0,a2.AK)({data:i})))})}).catch(e=>{console.log(e)})},[t,d]),(0,eY.isEmpty)(i))?(0,tl.jsx)(aB.V,{fullPage:!0,loading:!0}):(0,tl.jsx)(bU,{data:i})},SingleViewComponent:e=>{let{versionId:t}=e,i=(0,pU.useAppDispatch)(),{id:n}=(0,il.i)(),r=(0,eB.$1)(eO.j["DynamicTypes/ObjectDataRegistry"]),[a,o]=(0,ts.useState)(t),[l,s]=(0,ts.useState)([]),[d,f]=(0,ts.useState)([]),{data:c}=(0,bG.wG)({id:n});return((0,ts.useEffect)(()=>{t.id!==a.id&&(s([]),o(t))},[t]),(0,ts.useEffect)(()=>{Promise.resolve(i(it.hi.endpoints.versionGetById.initiate({id:a.id}))).then(async e=>{let t=[],i=e.data;(0,eY.isUndefined)(null==c?void 0:c.children)||(0,eY.isUndefined)(i)||(t.push(await (0,a2.Rz)({objectId:n,layout:c.children,versionData:i,versionId:a.id,versionCount:a.count,objectDataRegistry:r,layoutsList:d,setLayoutsList:f})),s((0,a2.AK)({data:t})))}).catch(e=>{console.log(e)})},[a,c]),(0,eY.isEmpty)(l))?(0,tl.jsx)(aB.V,{fullPage:!0,loading:!0}):(0,tl.jsx)(bq,{data:l})}})})}),icon:(0,tl.jsx)(rR.J,{value:"history"}),isDetachable:!0,hidden:e=>!(0,hm.x)(e.permissions,"versions")},bX={key:"preview",label:"preview.label",children:(0,tl.jsx)(()=>{let{id:e}=(0,il.i)();return(0,tl.jsx)(bZ.v,{id:e})},{}),icon:(0,tl.jsx)(rR.J,{value:"preview"}),isDetachable:!0,hidden:e=>!e.hasPreview};var bQ=i(71388),bY=i(47196),b0=i(91893),b1=i(25326);let b2=()=>{let{t:e}=(0,t7.useTranslation)(),{deleteDraft:t,isLoading:i,buttonText:n}=(0,b1._)("data-object"),{id:r}=(0,ts.useContext)(bY.f),{dataObject:a}=(0,am.H)(r);if((0,eY.isNil)(a))return(0,tl.jsx)(tl.Fragment,{});let o=null==a?void 0:a.draftData;if((0,eY.isNil)(o)||a.changes[b0.hD])return(0,tl.jsx)(tl.Fragment,{});let l=(0,tl.jsx)(ai.z,{danger:!0,ghost:!0,loading:i,onClick:t,size:"small",children:n});return(0,tl.jsx)(aL.x,{padding:"extra-small",children:(0,tl.jsx)(he.b,{action:l,icon:(0,tl.jsx)(rR.J,{value:"draft"}),message:e(o.isAutoSave?"draft-alert-auto-save":"draft-alert"),showIcon:!0,type:"info"})})},b3=e=>{let{layout:t,data:i,className:n}=e,{form:r,updateModifiedDataObjectAttributes:a,updateDraft:o,getChangedFieldName:l,disabled:s}=(0,bQ.t)(),d=(0,ap.a)(),f=(e,t)=>{var i;if(s)return;a(e);let n=l(e);console.log({fieldName:n,changedValues:e}),null!==n&&(null==d||null==(i=d.getInheritanceState(n))?void 0:i.inherited)===!0&&(null==d||d.breakInheritance(n)),o().catch(e=>{console.error(e)})};return(0,ts.useMemo)(()=>(0,tl.jsx)(tN.ConfigProvider,{theme:{components:{Form:{itemMarginBottom:0}}},children:(0,tl.jsx)(tx._v,{children:(0,tl.jsx)(tc.l,{className:n,form:r,initialValues:i,layout:"vertical",onValuesChange:f,preserve:!0,children:(0,tl.jsx)(aF.D,{renderTopBar:(0,tl.jsx)(b2,{}),children:(0,tl.jsx)(rH.T,{...t})})})})}),[t,i,n])},b6=(0,ia.createStyles)(e=>{let{token:t,css:i}=e;return{editContainer:i` + `}});var bI=i(35621),bL=i(58615);let bP=e=>{let{styles:t}=bM(),{Dragger:i}=tN.Upload,n=(0,ts.useRef)(null),r=(0,bI.Z)(n,!0);return(0,to.jsx)("div",{ref:n,children:r?(0,to.jsx)(bL.o,{...e,openFileDialogOnClick:!1,uploadComponent:i,uploadComponentClassName:t.dragger}):e.children})};var bN=i(38393);let bA=e=>{let{nodeId:t,children:i}=e,{refreshTree:n}=(0,bN.T)("asset");return(0,to.jsx)(bP,{onSuccess:async e=>{n(parseInt(t))},skipAssetFetch:!0,targetFolderId:parseInt(t),children:i})};var bR=i(46535),bO=i(42155),bB=i(20040),bF=i(51469),b_=i(24861),bz=i(62659),bV=i(36885);let b$=e=>{let{t}=(0,t7.useTranslation)(),i=e.node??bs.l,{createZipDownloadTreeContextMenuItem:n}=(0,pX.F)({type:"folder"}),{addFolderTreeContextMenuItem:r}=(0,bO.p)("asset"),{renameTreeContextMenuItem:a}=(0,pM.j)("asset",(0,pA.eG)("asset","rename",parseInt(i.id))),{deleteTreeContextMenuItem:l}=(0,pI.R)("asset",(0,pA.eG)("asset","delete",parseInt(i.id))),{refreshTreeContextMenuItem:o}=(0,bN.T)("asset"),{downloadTreeContextMenuItem:s}=(0,pL.i)(),{copyTreeContextMenuItem:d,cutTreeContextMenuItem:f,pasteTreeContextMenuItem:c,pasteCutContextMenuItem:u}=(0,bv.o)("asset"),{lockTreeContextMenuItem:m,lockAndPropagateTreeContextMenuItem:p,unlockTreeContextMenuItem:g,unlockAndPropagateTreeContextMenuItem:h,isLockMenuHidden:b}=(0,bB.Z)("asset"),{uploadNewVersionTreeContextMenuItem:y}=(0,pP.M)(),{uploadContextMenuItem:v,zipUploadContextMenuItem:x}=(()=>{let{triggerUpload:e}=(0,bz.X)(),{t}=(0,t7.useTranslation)(),{refreshTree:i}=(0,bN.T)("asset"),{isTreeActionAllowed:n}=(0,b_._)(),{addJob:r,updateJob:a}=(0,gn.C)(),l=(0,ts.useRef)(void 0),o=t=>{e({targetFolderId:parseInt(t),skipAssetFetch:!0,onSuccess:async()=>{i(parseInt(t))}})},s=i=>{let n,o,s=new Promise((e,t)=>{n=e,o=t});e({action:`${(0,eQ.G)()}/assets/add-zip/${i}`,accept:".zip, .rar, .7zip",name:"zipFile",multiple:!1,beforeUpload:async()=>{let e,n=(e={title:t("jobs.zip-upload-job.title"),topics:[dp.F["zip-upload-finished"],dp.F["asset-upload-finished"],...dp.b],action:async()=>await s,parentFolder:i},{id:(0,ga.K)(),action:e.action,type:"zip-upload",title:e.title,status:gr.B.QUEUED,topics:e.topics,config:{parentFolder:e.parentFolder}});l.current=n.id,r(n)},onSuccess:async e=>{let t=e[0].response.jobRunId??void 0;(0,eY.isUndefined)(l.current)||a(l.current,{status:gr.B.RUNNING}),(0,eY.isNumber)(t)?n(Number(t)):o(Error("Job run ID is undefined"))}})},d=e=>!(0,hm.x)(e.permissions,"create")||(null==e?void 0:e.type)!=="folder";return{upload:o,zipUpload:s,uploadContextMenuItem:e=>({label:t("element.tree.context-menu.add-assets.upload-files"),key:gM.N.upload,icon:(0,to.jsx)(rR.J,{value:"upload-cloud"}),hidden:d(e)||!n(bF.W.AddUpload),onClick:()=>{o(e.id)}}),zipUploadContextMenuItem:e=>({label:t("element.tree.context-menu.add-assets.upload-zip"),key:gM.N.uploadZip,icon:(0,to.jsx)(rR.J,{value:"upload-zip"}),hidden:d(e)||!n(bF.W.AddUploadZip),onClick:()=>{s(e.id)}})}})(),{isTreeActionAllowed:j}=(0,b_._)(),w=j(bF.W.HideAdd)||!j(bF.W.AddUpload)&&!j(bF.W.AddUploadZip)||!(0,hm.x)(i.permissions,"create")||(null==i?void 0:i.type)!=="folder",C=[{label:t("element.tree.context-menu.new-assets"),key:"new-assets",icon:(0,to.jsx)(rR.J,{value:"asset"}),hidden:w,children:[v(i),x(i)]},r(i),a(i),d(i),c(i),f(i),u(i),l(i),n(i),y(i),s(i),{label:t("element.tree.context-menu.advanced"),key:"advanced",icon:(0,to.jsx)(rR.J,{value:"more"}),hidden:b(i),children:[{label:t("element.lock"),key:"advanced-lock",icon:(0,to.jsx)(rR.J,{value:"lock"}),hidden:b(i),children:[m(i),p(i),g(i),h(i)]}]},o(i)];return(0,to.jsx)(bV.v,{dataTestId:(0,dM.Mj)("asset",i.id),items:C})},bW=bS((o=bs.O,s=(0,ts.forwardRef)((e,t)=>{let{ref:i,...n}=e;return(0,to.jsx)(o,{...e,ref:t,wrapNode:t=>(0,to.jsx)(bR.ZP,{renderMenu:()=>(0,to.jsx)(b$,{node:n}),children:(0,eY.isUndefined)(e.wrapNode)?t:e.wrapNode(t)})})}),d=(0,ts.forwardRef)((e,t)=>{var i,n;let r=null==(i=e.metaData)?void 0:i.asset,{t:a}=(0,t7.useTranslation)();if((null==(n=e.metaData)?void 0:n.asset)===void 0)return(0,to.jsx)(s,{...e,ref:t});let l=(0,eY.isString)(null==r?void 0:r.filename)&&(null==r?void 0:r.filename)!==""?null==r?void 0:r.filename:a("home");return(0,to.jsx)(bb._,{info:{icon:e.icon,title:l,type:"asset",data:{...r}},children:(0,to.jsx)(s,{...e,ref:t})})}),f=(0,ts.forwardRef)((e,t)=>{let i=e.isLoading??!1,[,{isLoading:n}]=(0,pk.useAssetPatchByIdMutation)({fixedCacheKey:`ASSET_ACTION_RENAME_ID_${e.id}`}),[,{isLoading:r}]=(0,bk.um)({fixedCacheKey:`ASSET_ACTION_DELETE_ID_${e.id}`}),{isFetching:a,isLoading:l,isDeleting:o}=(0,bd.J)(e.id);return(0,to.jsx)(d,{...e,danger:i||r||o,isLoading:i||!0!==l&&a||n||r,ref:t})}),c=(0,ts.forwardRef)((e,t)=>"folder"!==e.type?(0,to.jsx)(f,{...e,ref:t}):(0,to.jsx)(f,{...e,ref:t,wrapNode:t=>(0,to.jsx)(bA,{nodeId:e.id,children:(0,eY.isUndefined)(e.wrapNode)?t:e.wrapNode(t)})})),(0,ts.forwardRef)((e,t)=>{var i;let{move:n}=(0,bv.o)("asset"),{isSourceAllowed:r,isTargetAllowed:a}=bC();if((null==(i=e.metaData)?void 0:i.asset)===void 0)return(0,to.jsx)(c,{...e});let l=e.metaData.asset,o=e=>a(e)&&"folder"===e.type;if(!o(l))return(0,to.jsx)(c,{...e});let s=e=>{let t=e.data;r(t)&&o(l)&&n({currentElement:{id:t.id,parentId:t.parentId},targetElement:{id:l.id,parentId:l.parentId}}).catch(()=>{(0,is.ZP)(new is.aE("Item could not be moved"))})},d=e=>"asset"===e.type,f=e=>{let t=e.data;return"asset"===e.type&&r(t)&&o(l)};return(0,to.jsx)(c,{...e,ref:t,wrapNode:t=>(0,to.jsx)(lE.b,{disableDndActiveIndicator:!0,isValidContext:d,isValidData:f,onDrop:s,children:(0,eY.isUndefined)(e.wrapNode)?t:e.wrapNode(t)})})}))),bH=e=>{let{id:t=1,showRoot:i=!0}=e,{openAsset:n}=(0,pE.Q)(),{rootNode:r,isLoading:a}=(0,bD.V)(t,i),l=(0,bE.q)().get(hy.O.asset.tree.contextMenu.name);if(i&&a)return(0,to.jsx)(aL.x,{padding:"small",children:(0,to.jsx)(by.O,{})});async function o(e){n({config:{id:parseInt(e.id)}})}return(0,to.jsx)(bo.fr,{contextMenu:l,nodeId:t,onSelect:o,renderFilter:bh,renderNode:bW,renderNodeContent:bo.lG.renderNodeContent,renderPager:bm,rootNode:r,showRoot:i})};eR._.registerModule({onInit:()=>{eB.nC.get(eO.j["App/ComponentRegistry/ComponentRegistry"]).register({name:hy.O.asset.tree.contextMenu.name,component:b$})}}),eR._.registerModule({onInit:()=>{eB.nC.get(eO.j.widgetManager).registerWidget({name:"asset-tree",component:bH})}}),i(20227);var bG=i(53320);let bU=e=>{let{data:t}=e;return(0,to.jsx)(rZ.k,{flex:1,gap:"small",vertical:!0,children:(0,to.jsx)(hR,{data:t})})},bq=e=>{let{data:t}=e;return(0,to.jsx)(rZ.k,{flex:1,gap:"small",vertical:!0,children:(0,to.jsx)(hR,{data:t})})};var bZ=i(1458),bK=i(13392);let bJ={key:"versions",label:"version.label",children:(0,to.jsx)(bK.w,{children:(0,to.jsx)(tx._v,{children:(0,to.jsx)(hv.e,{ComparisonViewComponent:e=>{let{versionIds:t}=e,[i,n]=(0,ts.useState)([]),[r,a]=(0,ts.useState)([]),l=(0,pU.useAppDispatch)(),{id:o}=(0,io.i)(),s=(0,eB.$1)(eO.j["DynamicTypes/ObjectDataRegistry"]),{data:d}=(0,bG.wG)({id:o});return((0,ts.useEffect)(()=>{let e=[];n([]),t.forEach(t=>{let i=t.id;e.push(l(it.hi.endpoints.versionGetById.initiate({id:i})))}),Promise.all(e).then(e=>{let i=[];e.forEach(async(e,l)=>{let f=e.data;(0,eY.isUndefined)(null==d?void 0:d.children)||(0,eY.isUndefined)(f)||(i.push(await (0,a2.Rz)({objectId:o,layout:d.children,versionData:f,versionId:t[l].id,versionCount:t[l].count,objectDataRegistry:s,layoutsList:r,setLayoutsList:a})),n((0,a2.AK)({data:i})))})}).catch(e=>{console.log(e)})},[t,d]),(0,eY.isEmpty)(i))?(0,to.jsx)(aB.V,{fullPage:!0,loading:!0}):(0,to.jsx)(bU,{data:i})},SingleViewComponent:e=>{let{versionId:t}=e,i=(0,pU.useAppDispatch)(),{id:n}=(0,io.i)(),r=(0,eB.$1)(eO.j["DynamicTypes/ObjectDataRegistry"]),[a,l]=(0,ts.useState)(t),[o,s]=(0,ts.useState)([]),[d,f]=(0,ts.useState)([]),{data:c}=(0,bG.wG)({id:n});return((0,ts.useEffect)(()=>{t.id!==a.id&&(s([]),l(t))},[t]),(0,ts.useEffect)(()=>{Promise.resolve(i(it.hi.endpoints.versionGetById.initiate({id:a.id}))).then(async e=>{let t=[],i=e.data;(0,eY.isUndefined)(null==c?void 0:c.children)||(0,eY.isUndefined)(i)||(t.push(await (0,a2.Rz)({objectId:n,layout:c.children,versionData:i,versionId:a.id,versionCount:a.count,objectDataRegistry:r,layoutsList:d,setLayoutsList:f})),s((0,a2.AK)({data:t})))}).catch(e=>{console.log(e)})},[a,c]),(0,eY.isEmpty)(o))?(0,to.jsx)(aB.V,{fullPage:!0,loading:!0}):(0,to.jsx)(bq,{data:o})}})})}),icon:(0,to.jsx)(rR.J,{value:"history"}),isDetachable:!0,hidden:e=>!(0,hm.x)(e.permissions,"versions")},bX={key:"preview",label:"preview.label",children:(0,to.jsx)(()=>{let{id:e}=(0,io.i)();return(0,to.jsx)(bZ.v,{id:e})},{}),icon:(0,to.jsx)(rR.J,{value:"preview"}),isDetachable:!0,hidden:e=>!e.hasPreview};var bQ=i(71388),bY=i(47196),b0=i(91893),b1=i(25326);let b2=()=>{let{t:e}=(0,t7.useTranslation)(),{deleteDraft:t,isLoading:i,buttonText:n}=(0,b1._)("data-object"),{id:r}=(0,ts.useContext)(bY.f),{dataObject:a}=(0,am.H)(r);if((0,eY.isNil)(a))return(0,to.jsx)(to.Fragment,{});let l=null==a?void 0:a.draftData;if((0,eY.isNil)(l)||a.changes[b0.hD])return(0,to.jsx)(to.Fragment,{});let o=(0,to.jsx)(ai.z,{danger:!0,ghost:!0,loading:i,onClick:t,size:"small",children:n});return(0,to.jsx)(aL.x,{padding:"extra-small",children:(0,to.jsx)(he.b,{action:o,icon:(0,to.jsx)(rR.J,{value:"draft"}),message:e(l.isAutoSave?"draft-alert-auto-save":"draft-alert"),showIcon:!0,type:"info"})})},b3=e=>{let{layout:t,data:i,className:n}=e,{form:r,updateModifiedDataObjectAttributes:a,updateDraft:l,getChangedFieldName:o,disabled:s}=(0,bQ.t)(),d=(0,ap.a)(),f=(e,t)=>{var i;if(s)return;a(e);let n=o(e);console.log({fieldName:n,changedValues:e}),null!==n&&(null==d||null==(i=d.getInheritanceState(n))?void 0:i.inherited)===!0&&(null==d||d.breakInheritance(n)),l().catch(e=>{console.error(e)})};return(0,ts.useMemo)(()=>(0,to.jsx)(tN.ConfigProvider,{theme:{components:{Form:{itemMarginBottom:0}}},children:(0,to.jsx)(tx._v,{children:(0,to.jsx)(tc.l,{className:n,form:r,initialValues:i,layout:"vertical",onValuesChange:f,preserve:!0,children:(0,to.jsx)(aF.D,{renderTopBar:(0,to.jsx)(b2,{}),children:(0,to.jsx)(rH.T,{...t})})})})}),[t,i,n])},b6=(0,ia.createStyles)(e=>{let{token:t,css:i}=e;return{editContainer:i` display: flex; width: 100%; height: 100%; @@ -563,10 +563,10 @@ width: 100%; } } - `}},{hashPriority:"high"});var b4=i(76639),b8=i(38472);let b7=()=>(0,ts.useContext)(b8.g),b5={key:"edit",label:"asset.asset-editor-tabs.edit",children:(0,tl.jsx)(()=>{let{id:e}=(0,il.i)(),{currentLayout:t}=b7(),{data:i,isLoading:n,error:r}=(0,bG.wG)({id:e,layoutId:t??void 0}),{dataObject:a,isLoading:o}=(0,am.H)(e),{styles:l}=b6();return(void 0!==r&&(0,is.ZP)(new is.MS(r)),void 0===i||n||o)?(0,tl.jsx)(aB.V,{loading:!0}):(0,tl.jsx)(bK.w,{children:(0,tl.jsx)(b4.C,{children:(0,tl.jsx)(b3,{className:l.editContainer,data:null==a?void 0:a.objectData,layout:i})})})},{}),icon:(0,tl.jsx)(rR.J,{value:"edit-pen"}),isDetachable:!0};eR._.registerModule({onInit:()=>{let e=eB.nC.get(eO.j["DataObject/Editor/ObjectTabManager"]);e.register(b5),e.register(bX),e.register(pC.D9),e.register(bJ),e.register(pC.V$),e.register(pC.On),e.register(pC._P),e.register(pC.Hy),e.register(pC.zd)}});var b9=i(54626),ye=i(16211),yt=i(45228);let yi=e=>{let{Component:t}=e,{useElementId:i,ViewComponent:n,useDataQueryHelper:r}=(0,pF.r)(),{setDataLoadingState:a}=r(),{getId:o}=i(),{selectedClassDefinition:l}=(0,ye.v)(),{isLoading:s,data:d}=(0,b9.At)({folderId:o(),classId:l.id}),{id:f}=(0,pz.m)(),{isLoading:c,data:u}=(0,b9.LH)({classId:l.id,folderId:o(),configurationId:f}),{selectedColumns:m,setSelectedColumns:p}=(0,pB.N)(),{setAvailableColumns:g}=(0,p_.L)(),{setGridConfig:h}=(0,pV.j)();return((0,ts.useEffect)(()=>{if(void 0===d||void 0===u)return;let e=[],t=d.columns.map(e=>e);for(let t of u.columns){if("filename"===t.key)continue;let i=d.columns.find(e=>e.key===t.key),n={...i,__meta:{advancedColumnConfig:t.config??{}}};void 0!==i&&e.push({key:t.key,locale:t.locale,type:i.type,config:i.config,sortable:i.sortable,editable:i.editable,localizable:i.localizable,exportable:i.exportable,frontendType:i.frontendType,group:i.group,originalApiDefinition:n})}p(e),g(t),h(u),a("config-changed")},[d,u]),s||c||0===m.length)?(0,tl.jsx)(n,{}):(0,tl.jsx)(t,{})};var yn=i(67288),yr=i(55837),ya=i(21568),yo=i(95505);let yl=td().createContext({columns:[],setColumns:()=>{}}),ys=e=>{let{children:t}=e,[i,n]=(0,ts.useState)([]),r=e=>{if("function"==typeof e)return void n(e(i));n(e.map(e=>{var t,i;return(null==(t=e.__meta)?void 0:t.uniqueId)!==void 0?{...e,__meta:{...e.__meta,uniqueId:e.__meta.uniqueId}}:{...e,__meta:{...e.__meta,uniqueId:(null==(i=e.__meta)?void 0:i.uniqueId)??(0,nu.V)()}}}))};return(0,ts.useMemo)(()=>(0,tl.jsx)(yl.Provider,{value:{columns:i,setColumns:r},children:t}),[i,t])},yd=()=>{let{columns:e,setColumns:t}=(0,ts.useContext)(yl);return{columns:e,setColumns:t,removeColumn:function(i){t(e.filter(e=>e.key!==i.key))},addColumn:function(i){t([...e,i])},resetColumns:function(){t([])}}};var yf=i(69435),yc=i(93206);let yu=e=>{let{children:t,dynamicTypeRegistryId:i}=e,n=(0,eB.$1)(i),{operations:r}=(0,yc.b)(),{config:a}=lM(),{t:o}=(0,t7.useTranslation)(),l=n.getDynamicTypes().filter(e=>e.isAvailableForSelection(a)).map(e=>({key:e.id,label:o(`grid.advanced-column.advancedColumns.${e.id}`),onClick:()=>{r.add({key:e.id})}}));return(0,tl.jsx)(pJ.L,{menu:{items:l},children:t})},ym=e=>{let{dynamicTypeRegistryId:t}=e,{getValueByKey:i}=(0,r9.f)(),n=i("key"),r=(0,ts.useMemo)(()=>n,[n]),a=(0,eB.$1)(t),o=(0,ts.useMemo)(()=>a.getDynamicType(r),[a,r]);return(0,ts.useMemo)(()=>void 0===o?(0,tl.jsxs)("div",{children:["Unknown type: ",r]}):(0,tl.jsx)(tc.l.Item,{name:"config",children:(0,tl.jsx)(tc.l.KeyedList,{children:o.getComponent()})}),[o,r])};var yp=i(24285);let yg=(0,ia.createStyles)(e=>{let{css:t,token:i}=e;return{dynamicGroupItem:t` + `}},{hashPriority:"high"});var b4=i(76639),b8=i(38472);let b7=()=>(0,ts.useContext)(b8.g),b5={key:"edit",label:"asset.asset-editor-tabs.edit",children:(0,to.jsx)(()=>{let{id:e}=(0,io.i)(),{currentLayout:t}=b7(),{data:i,isLoading:n,error:r}=(0,bG.wG)({id:e,layoutId:t??void 0}),{dataObject:a,isLoading:l}=(0,am.H)(e),{styles:o}=b6();return(void 0!==r&&(0,is.ZP)(new is.MS(r)),void 0===i||n||l)?(0,to.jsx)(aB.V,{loading:!0}):(0,to.jsx)(bK.w,{children:(0,to.jsx)(b4.C,{children:(0,to.jsx)(b3,{className:o.editContainer,data:null==a?void 0:a.objectData,layout:i})})})},{}),icon:(0,to.jsx)(rR.J,{value:"edit-pen"}),isDetachable:!0};eR._.registerModule({onInit:()=>{let e=eB.nC.get(eO.j["DataObject/Editor/ObjectTabManager"]);e.register(b5),e.register(bX),e.register(pC.D9),e.register(bJ),e.register(pC.V$),e.register(pC.On),e.register(pC._P),e.register(pC.Hy),e.register(pC.zd)}});var b9=i(54626),ye=i(16211),yt=i(45228);let yi=e=>{let{Component:t}=e,{useElementId:i,ViewComponent:n,useDataQueryHelper:r}=(0,pF.r)(),{setDataLoadingState:a}=r(),{getId:l}=i(),{selectedClassDefinition:o}=(0,ye.v)(),{isLoading:s,data:d}=(0,b9.At)({folderId:l(),classId:o.id}),{id:f}=(0,pz.m)(),{isLoading:c,data:u}=(0,b9.LH)({classId:o.id,folderId:l(),configurationId:f}),{selectedColumns:m,setSelectedColumns:p}=(0,pB.N)(),{setAvailableColumns:g}=(0,p_.L)(),{setGridConfig:h}=(0,pV.j)();return((0,ts.useEffect)(()=>{if(void 0===d||void 0===u)return;let e=[],t=d.columns.map(e=>e);for(let t of u.columns){if("filename"===t.key)continue;let i=d.columns.find(e=>e.key===t.key),n={...i,__meta:{advancedColumnConfig:t.config??{}}};void 0!==i&&e.push({key:t.key,locale:t.locale,type:i.type,config:i.config,sortable:i.sortable,editable:i.editable,localizable:i.localizable,exportable:i.exportable,frontendType:i.frontendType,group:i.group,originalApiDefinition:n})}p(e),g(t),h(u),a("config-changed")},[d,u]),s||c||0===m.length)?(0,to.jsx)(n,{}):(0,to.jsx)(t,{})};var yn=i(67288),yr=i(55837),ya=i(21568),yl=i(95505);let yo=td().createContext({columns:[],setColumns:()=>{}}),ys=e=>{let{children:t}=e,[i,n]=(0,ts.useState)([]),r=e=>{if("function"==typeof e)return void n(e(i));n(e.map(e=>{var t,i;return(null==(t=e.__meta)?void 0:t.uniqueId)!==void 0?{...e,__meta:{...e.__meta,uniqueId:e.__meta.uniqueId}}:{...e,__meta:{...e.__meta,uniqueId:(null==(i=e.__meta)?void 0:i.uniqueId)??(0,nu.V)()}}}))};return(0,ts.useMemo)(()=>(0,to.jsx)(yo.Provider,{value:{columns:i,setColumns:r},children:t}),[i,t])},yd=()=>{let{columns:e,setColumns:t}=(0,ts.useContext)(yo);return{columns:e,setColumns:t,removeColumn:function(i){t(e.filter(e=>e.key!==i.key))},addColumn:function(i){t([...e,i])},resetColumns:function(){t([])}}};var yf=i(69435),yc=i(93206);let yu=e=>{let{children:t,dynamicTypeRegistryId:i}=e,n=(0,eB.$1)(i),{operations:r}=(0,yc.b)(),{config:a}=oM(),{t:l}=(0,t7.useTranslation)(),o=n.getDynamicTypes().filter(e=>e.isAvailableForSelection(a)).map(e=>({key:e.id,label:l(`grid.advanced-column.advancedColumns.${e.id}`),onClick:()=>{r.add({key:e.id})}}));return(0,to.jsx)(pJ.L,{menu:{items:o},children:t})},ym=e=>{let{dynamicTypeRegistryId:t}=e,{getValueByKey:i}=(0,r9.f)(),n=i("key"),r=(0,ts.useMemo)(()=>n,[n]),a=(0,eB.$1)(t),l=(0,ts.useMemo)(()=>a.getDynamicType(r),[a,r]);return(0,ts.useMemo)(()=>void 0===l?(0,to.jsxs)("div",{children:["Unknown type: ",r]}):(0,to.jsx)(tc.l.Item,{name:"config",children:(0,to.jsx)(tc.l.KeyedList,{children:l.getComponent()})}),[l,r])};var yp=i(24285);let yg=(0,ia.createStyles)(e=>{let{css:t,token:i}=e;return{dynamicGroupItem:t` background-color: ${i.colorFillAdditional}; border-radius: ${i.borderRadius}px; - `}}),yh=td().memo(e=>{let{id:t,dynamicTypeRegistryId:i}=e,{operations:n,getValueByKey:r}=(0,yc.b)(),{styles:a}=yg(),{listeners:o,setNodeRef:l,setActivatorNodeRef:s,transform:d,transition:f}=(0,o4.useSortable)({id:t+1}),{t:c}=(0,t7.useTranslation)(),u=(0,ts.useMemo)(()=>({transform:yp.ux.Transform.toString(d),transition:f??void 0}),[d,f]),m=td().useCallback(()=>{n.remove(t)},[n,t]),p=(0,ts.useMemo)(()=>r(t.toString()).key,[r,t]);return(0,tl.jsx)("div",{ref:l,style:u,children:(0,tl.jsxs)(aL.x,{className:a.dynamicGroupItem,padding:{x:"extra-small",top:"mini",bottom:"small"},children:[(0,tl.jsxs)(rZ.k,{align:"center",gap:"small",justify:"space-between",children:[(0,tl.jsxs)(rZ.k,{align:"center",gap:"mini",children:[(0,tl.jsx)(aM.h,{icon:{value:"drag-option"},ref:s,theme:"secondary",variant:"minimal",...o}),(0,tl.jsx)(nc.x,{strong:!0,children:c(`grid.advanced-column.advancedColumns.${p}`)})]}),(0,tl.jsx)(aM.h,{icon:{value:"trash"},onClick:m})]}),(0,tl.jsx)(tc.l.Item,{name:t,children:(0,tl.jsxs)(tc.l.KeyedList,{children:[(0,tl.jsx)(tc.l.Item,{className:"d-none",hidden:!0,name:"key",children:(0,tl.jsx)(ae.I,{})}),(0,tl.jsx)(ym,{dynamicTypeRegistryId:i})]})})]})})}),yb=e=>{let{dynamicTypeRegistryId:t,id:i,showTitle:n=!1}=e,{values:r,operations:a}=(0,yc.b)(),[o,l]=td().useState(()=>r.map((e,t)=>t+1)),s=0===r.length,{t:d}=(0,t7.useTranslation)(),f=(0,ln.useSensors)((0,ln.useSensor)(ln.PointerSensor,{activationConstraint:{distance:5}})),c=(0,ts.useMemo)(()=>r,[r]);(0,ts.useEffect)(()=>{let e=r.map((e,t)=>t+1);l(t=>t.length===e.length&&t.every((t,i)=>t===e[i])?t:e)},[r.length]);let u=td().useCallback(e=>{let{active:t,over:i}=e,n=Number(t.id),r=Number(null==i?void 0:i.id);if(n!==r){let e=o.indexOf(n),t=o.indexOf(r),i=Array.from(o);i.splice(e,1),i.splice(t,0,n),a.move(e,t),l(i)}},[o,a]),m=(0,ts.useMemo)(()=>(0,tl.jsx)(yu,{dynamicTypeRegistryId:t,children:(0,tl.jsx)(dx.W,{icon:{value:"new"},type:"link",children:d(`grid.advanced-column.${i}.add`)})}),[t,i]),p=(0,ts.useMemo)(()=>(0,tl.jsx)(rZ.k,{align:"center",children:(0,tl.jsx)(gq.h,{title:d(`grid.advanced-column.${i}`),children:(0,tl.jsx)(yu,{dynamicTypeRegistryId:t,children:(0,tl.jsx)(dx.W,{icon:{value:"new"},children:d("add")})})})}),[t,i]),g=(0,ts.useMemo)(()=>(0,tl.jsx)(ln.DndContext,{onDragEnd:u,sensors:f,children:(0,tl.jsx)(o4.SortableContext,{items:o,strategy:o4.verticalListSortingStrategy,children:(0,tl.jsx)(as.T,{className:"w-full",direction:"vertical",size:"extra-small",children:c.map((e,i)=>(0,tl.jsx)(td().Fragment,{children:(0,tl.jsx)(yh,{dynamicTypeRegistryId:t,id:i})},e.vId))})})}),[c,o,u,f,t]);return(0,tl.jsx)(aL.x,{padding:{bottom:"mini"},children:(0,tl.jsxs)(as.T,{className:"w-full",direction:"vertical",size:"extra-small",children:[n?p:m,!s&&g]})})},yy=td().memo(e=>{let{id:t,dynamicTypeRegistryId:i,showTitle:n=!1}=e;return(0,tl.jsx)(tc.l.Item,{initialValue:[],name:t,children:(0,tl.jsx)(tc.l.NumberedList,{children:(0,tl.jsx)(yb,{dynamicTypeRegistryId:i,id:t,showTitle:n})})})}),yv=e=>{let{items:t,value:i,onChange:n}=e,[r,a]=(0,ts.useState)(i),o=(0,nR.N)(r,300),l=(0,ts.useMemo)(()=>({components:{Form:{itemMarginBottom:0}}}),[]);(0,ts.useEffect)(()=>{void 0===i||(0,eY.isEqual)(i,r)||a(i)},[i]),(0,ts.useEffect)(()=>{null==n||n(o)},[o]);let s=(0,ts.useMemo)(()=>t,[t]);return void 0===r?(0,tl.jsx)(tl.Fragment,{}):(0,tl.jsx)(tN.ConfigProvider,{theme:l,children:(0,tl.jsx)(tc.l.KeyedList,{onChange:a,value:r,children:s.map((e,t)=>{let i=t===s.length-1;return(0,tl.jsxs)("div",{children:[e.component,!i&&(0,tl.jsx)(yf.i,{style:{margin:0},theme:"secondary"})]},e.id)})})})};yv.CustomItem=e=>{let{children:t,padded:i=!0}=e;return(0,tl.jsx)(aL.x,{padding:i?"mini":"none",children:t})},yv.DynamicGroupItem=yy;let yx=(0,ts.createContext)({item:null,setItem:()=>{}}),yj=e=>{let{children:t}=e,[i,n]=(0,ts.useState)(null);return(0,ts.useMemo)(()=>(0,tl.jsx)(yx.Provider,{value:{item:i,setItem:n},children:t}),[i,t])},yw=()=>{let e=td().useContext(yx);if(void 0===e)throw Error("usePreviewItem must be used within a PreviewItemProvider");return e},yC=e=>{var t,i,n;let{column:r}=e,{data:a}=(0,fo.e)(),{item:o}=yw(),l=a.items[0],s=(null==r||null==(t=r.__meta)?void 0:t.advancedColumnConfig)??r.config,{t:d}=(0,t7.useTranslation)(),{data:f,error:c}=(0,b9.kR)({body:{column:{type:r.type,key:r.key,config:s},objectId:(null==o||null==(i=o.data)?void 0:i.id)??(null==l?void 0:l.id)}});return(0,tl.jsxs)(tl.Fragment,{children:[void 0!==c&&(0,tl.jsxs)(nc.x,{type:"danger",children:["Error loading preview: ","error"in c?null==c?void 0:c.error:(0,tl.jsx)(tl.Fragment,{})," "]}),void 0===c?(0,tl.jsx)(tl.Fragment,{children:(null==f||null==(n=f.value)?void 0:n.length)>0?(0,tl.jsx)(sx,{value:null==f?void 0:f.value}):(0,tl.jsx)("div",{children:d("grid.advanced-column.no-preview-data")})}):null]})},yk=e=>{var t;let{data:i}=(0,fo.e)(),n=(null==i?void 0:i.items.length)>0&&(null==i||null==(t=i.items)?void 0:t[0])!==void 0,r=(0,nR.N)(e.column,300),{t:a}=(0,t7.useTranslation)();return(0,ts.useMemo)(()=>(0,tl.jsx)(aL.x,{padding:{top:"small",bottom:"none",x:"small"},children:(0,tl.jsxs)(rZ.k,{align:"center",gap:"small",children:[(0,tl.jsxs)(nc.x,{style:{wordBreak:"keep-all"},children:[a("grid.advanced-column.preview"),":"]}),n?(0,tl.jsx)(yC,{column:e.column}):(0,tl.jsx)(nc.x,{type:"secondary",children:a("grid.advanced-column.no-preview")})]})}),[r])},yT=(0,ts.createContext)({pipelineLayout:"default"}),yS=e=>{let{children:t,pipelineLayout:i}=e;return(0,ts.useMemo)(()=>(0,tl.jsx)(yT.Provider,{value:{pipelineLayout:i},children:t}),[t,i])},yD=e=>{var t;let{column:i,onChange:n}=e,[r]=tc.l.useForm(),{pipelineLayout:a}=(()=>{let e=(0,ts.useContext)(yT);if(void 0===e)throw Error("usePipelineLayoutContext must be used within a PipelineLayoutProvider");return e})(),{t:o}=(0,t7.useTranslation)();return(0,ts.useEffect)(()=>{var e;r.setFieldValue("value",(null==i||null==(e=i.__meta)?void 0:e.advancedColumnConfig)??{})},[i]),(0,tl.jsx)(tc.l,{form:r,initialValues:null==i||null==(t=i.__meta)?void 0:t.advancedColumnConfig,layout:"vertical",onValuesChange:e=>{let t={...i,__meta:{...i.__meta??{},advancedColumnConfig:{...e.value}}};if(void 0!==n){var r;(0,eY.isEqual)(null==(r=i.__meta)?void 0:r.advancedColumnConfig,e.value)||n(t)}},children:(0,tl.jsx)(lE,{initialConfig:null==i?void 0:i.config,children:(0,tl.jsx)(tc.l.Item,{name:"value",children:(0,tl.jsx)(yv,{items:[{id:"title",component:(0,tl.jsx)(yv.CustomItem,{children:(0,tl.jsx)(aL.x,{padding:{top:"mini",bottom:"mini",x:"none"},children:(0,tl.jsx)(tc.l.Item,{name:"title",children:(0,tl.jsx)(tN.Input,{placeholder:o("grid.advanced-column.title.placeholder")})})})})},{id:"fields",component:(0,tl.jsxs)(yv.CustomItem,{children:["default"===a&&(0,tl.jsx)(ay.m,{items:[{key:"advancedColumns",label:o("grid.advanced-column.advancedColumns"),forceRender:!0,children:(0,tl.jsx)(yv.DynamicGroupItem,{dynamicTypeRegistryId:eO.j["DynamicTypes/Grid/SourceFieldsRegistry"],id:"advancedColumns"})},{key:"transformers",label:o("grid.advanced-column.transformers"),forceRender:!0,children:(0,tl.jsx)(yv.DynamicGroupItem,{dynamicTypeRegistryId:eO.j["DynamicTypes/Grid/TransformersRegistry"],id:"transformers"})}]}),"verbose"===a&&(0,tl.jsx)(d$.K,{leftItem:{children:(0,tl.jsx)(yv.DynamicGroupItem,{dynamicTypeRegistryId:eO.j["DynamicTypes/Grid/SourceFieldsRegistry"],id:"advancedColumns",showTitle:!0}),size:50},rightItem:{children:(0,tl.jsx)(yv.DynamicGroupItem,{dynamicTypeRegistryId:eO.j["DynamicTypes/Grid/TransformersRegistry"],id:"transformers",showTitle:!0}),size:50},withDivider:!0})]})},{id:"Preview",component:(0,tl.jsx)(yk,{column:i})}]})})})})};var yE=i(61442);let yM=()=>{let{setColumns:e,columns:t}=yd(),{t:i}=(0,t7.useTranslation)(),n=(0,ts.useMemo)(()=>t.map(t=>{var r,a,o,l,s;let d=(null==(r=t.__meta)?void 0:r.uniqueId)??(0,nu.V)(),f=`${t.key}`,c="advanced"===t.key,u=(null==t||null==(o=t.__meta)||null==(a=o.advancedColumnConfig)?void 0:a.title)??"Add a title";if("fieldDefinition"in t.config){let e=t.config.fieldDefinition;f=(null==e?void 0:e.title)??t.key}return{id:d,sortable:!0,meta:t,type:c?"collapse":"default",children:c?(0,tl.jsx)(tN.Tag,{color:"purple",children:u}):(0,tl.jsx)(o5.u,{title:Array.isArray(t.group)?t.group.join("/"):void 0,children:(0,tl.jsx)(tN.Tag,{children:i(`${f}`)})}),..."advanced"===t.key?{body:(0,tl.jsx)(yD,{column:t,onChange:t=>{var i,r;i=t,r=d,e(n.map(e=>{if(e.id===r){var t;return{...e,meta:{...e.meta,__meta:{...e.meta.__meta,advancedColumnConfig:null==(t=i.__meta)?void 0:t.advancedColumnConfig}}}}return e}).map(e=>e.meta))}})}:{},renderRightToolbar:(0,tl.jsxs)(as.T,{size:"mini",children:[(l=d,(s=t).localizable?(0,tl.jsx)(yE.X,{isNullable:!0,onChange:t=>{var i,r,a;i=l,r=0,a=t,e(n.map(e=>e.id===i?{...e,meta:{...e.meta,locale:a}}:e).map(e=>e.meta))},value:void 0===s.locale?null:s.locale}):(0,tl.jsx)(tl.Fragment,{})),(0,tl.jsx)(aM.h,{icon:{value:"trash"},onClick:()=>{var t;t=d,e(n.filter(e=>e.id!==t).map(e=>e.meta))},theme:"secondary"})]})}}),[t]);return(0,tl.jsxs)(tl.Fragment,{children:[0===n.length&&(0,tl.jsx)(tN.Empty,{image:tN.Empty.PRESENTED_IMAGE_SIMPLE}),n.length>0&&(0,tl.jsx)(p4.f,{items:n,onItemsChange:function(t){e(t.map(e=>e.meta))},sortable:!0})]})};var yI=i(13030);let yL=()=>{let{setItem:e}=yw(),{selectedClassDefinition:t}=(0,ye.v)(),{open:i}=(0,oT._)({selectionType:oS.RT.Single,areas:{object:!0,asset:!1,document:!1},config:{objects:{allowedTypes:[(null==t?void 0:t.name)??""]}},onFinish:t=>{var i;e(null==t||null==(i=t.items)?void 0:i[0])}});return(0,tl.jsx)(ai.z,{onClick:i,children:"Select Item"})},yP=e=>{let{onCancelClick:t,onApplyClick:i,addColumnMenu:n,open:r=!1,onOpenChange:a}=e,{t:o}=(0,t7.useTranslation)();return(0,tl.jsx)(tl.Fragment,{children:r&&(0,tl.jsx)(yj,{children:(0,tl.jsx)(yS,{pipelineLayout:"verbose",children:(0,tl.jsx)(av.u,{footer:null,onCancel:()=>null==a?void 0:a(!1),onClose:()=>null==a?void 0:a(!1),open:r,size:"XL",title:(0,tl.jsx)(p3.r,{iconName:"settings",children:"Grid Config"}),children:(0,tl.jsxs)(aF.D,{children:[(0,tl.jsx)(aO.o,{padding:{x:"none"},position:"content",theme:"secondary",children:(0,tl.jsx)(yL,{})}),(0,tl.jsx)(aB.V,{style:{height:"calc(80vh - 200px)"},children:(0,tl.jsx)(as.T,{direction:"vertical",style:{width:"100%"},children:(0,tl.jsx)(yM,{})})}),(0,tl.jsxs)(aO.o,{padding:{x:"none",y:"small"},theme:"secondary",children:[!(0,eY.isEmpty)(n)&&(0,tl.jsx)(pJ.L,{menu:{items:n},children:(0,tl.jsx)(dx.W,{icon:{value:"new"},children:o("listing.add-column")})}),(0,tl.jsxs)(as.T,{size:"extra-small",children:[(0,tl.jsx)(ai.z,{onClick:t,type:"default",children:o("button.cancel")}),(0,tl.jsx)(ai.z,{onClick:()=>{i(),null==a||a(!1)},type:"primary",children:o("button.apply")})]})]})]})})})})})},yN=e=>{let[t,i]=(0,ts.useState)(!1),{onCancelClick:n,onApplyClick:r,onEditConfigurationClick:a,onUpdateConfigurationClick:o,onSaveConfigurationClick:l,addColumnMenu:s,gridConfig:d,savedGridConfigurations:f,isUpdating:c,isLoading:u,currentUserId:m}=e,{t:p}=(0,t7.useTranslation)(),g=(null==d?void 0:d.name)!=="Predefined"&&void 0!==d,h=m===(null==d?void 0:d.ownerId);return(0,tl.jsxs)(tl.Fragment,{children:[(0,tl.jsx)(yP,{...e,onOpenChange:i,open:t}),(0,tl.jsx)(aF.D,{renderToolbar:(0,tl.jsxs)(aO.o,{theme:"secondary",children:[(0,tl.jsx)(ai.z,{onClick:n,type:"default",children:p("button.cancel")}),(0,tl.jsxs)(as.T,{size:"extra-small",children:[(0,tl.jsxs)(tl.Fragment,{children:[!g&&(0,tl.jsx)(ai.z,{onClick:l,type:"default",children:p("grid.configuration.save-template")}),g&&(0,tl.jsxs)(tl.Fragment,{children:[h&&(0,tl.jsxs)(yI.D,{children:[(0,tl.jsx)(ai.z,{loading:c,onClick:o,type:"default",children:p("grid.configuration.update-template")}),(0,tl.jsx)(pJ.L,{menu:{items:[{key:0,icon:(0,tl.jsx)(rR.J,{value:"edit"}),label:p("grid.configuration.edit-template-details"),onClick:()=>{a()}},{key:1,icon:(0,tl.jsx)(rR.J,{value:"save"}),label:p("grid.configuration.save-new-template"),onClick:()=>{l()}}]},children:(0,tl.jsx)(aM.h,{icon:{value:"more"},type:"default"})})]}),!h&&(0,tl.jsx)(ai.z,{onClick:l,type:"default",children:p("grid.configuration.save-template")})]})]}),(0,tl.jsx)(ai.z,{onClick:r,type:"primary",children:p("button.apply")})]})]}),children:(0,tl.jsxs)(aB.V,{padded:!0,children:[(0,tl.jsx)(gq.h,{fullWidth:!0,title:p("listing.grid-config.title"),children:(0,tl.jsxs)(rZ.k,{className:"w-full",justify:"space-between",children:[(0,tl.jsx)(pJ.L,{disabled:(null==f?void 0:f.length)===0&&!u,menu:{items:f},children:(0,tl.jsx)(tN.Tooltip,{title:(null==f?void 0:f.length)!==0||u?"":p("grid.configuration.no-saved-templates"),children:(0,tl.jsx)(dx.W,{disabled:(null==f?void 0:f.length)===0&&!u,icon:{value:"style"},loading:u,style:{minHeight:"32px",minWidth:"100px"},children:g?(0,tl.jsx)(tl.Fragment,{children:d.name}):(0,tl.jsx)(tl.Fragment,{children:p("grid.configuration.template")})})})}),(0,tl.jsx)(rZ.k,{gap:"mini",children:(0,tl.jsx)(aM.h,{icon:{value:"show-details"},onClick:()=>{i(!0)}})})]})}),(0,tl.jsxs)(as.T,{direction:"vertical",style:{width:"100%"},children:[(0,tl.jsx)(yM,{}),!(0,eY.isEmpty)(s)&&(0,tl.jsx)(pJ.L,{menu:{items:s},children:(0,tl.jsx)(dx.W,{icon:{value:"new"},type:"link",children:p("listing.add-column")})})]})]})})]})};var yA=i(96514);let yR=(0,ia.createStyles)(e=>{let{css:t,token:i}=e;return{label:t` + `}}),yh=td().memo(e=>{let{id:t,dynamicTypeRegistryId:i}=e,{operations:n,getValueByKey:r}=(0,yc.b)(),{styles:a}=yg(),{listeners:l,setNodeRef:o,setActivatorNodeRef:s,transform:d,transition:f}=(0,l4.useSortable)({id:t+1}),{t:c}=(0,t7.useTranslation)(),u=(0,ts.useMemo)(()=>({transform:yp.ux.Transform.toString(d),transition:f??void 0}),[d,f]),m=td().useCallback(()=>{n.remove(t)},[n,t]),p=(0,ts.useMemo)(()=>r(t.toString()).key,[r,t]);return(0,to.jsx)("div",{ref:o,style:u,children:(0,to.jsxs)(aL.x,{className:a.dynamicGroupItem,padding:{x:"extra-small",top:"mini",bottom:"small"},children:[(0,to.jsxs)(rZ.k,{align:"center",gap:"small",justify:"space-between",children:[(0,to.jsxs)(rZ.k,{align:"center",gap:"mini",children:[(0,to.jsx)(aM.h,{icon:{value:"drag-option"},ref:s,theme:"secondary",variant:"minimal",...l}),(0,to.jsx)(nc.x,{strong:!0,children:c(`grid.advanced-column.advancedColumns.${p}`)})]}),(0,to.jsx)(aM.h,{icon:{value:"trash"},onClick:m})]}),(0,to.jsx)(tc.l.Item,{name:t,children:(0,to.jsxs)(tc.l.KeyedList,{children:[(0,to.jsx)(tc.l.Item,{className:"d-none",hidden:!0,name:"key",children:(0,to.jsx)(ae.I,{})}),(0,to.jsx)(ym,{dynamicTypeRegistryId:i})]})})]})})}),yb=e=>{let{dynamicTypeRegistryId:t,id:i,showTitle:n=!1}=e,{values:r,operations:a}=(0,yc.b)(),[l,o]=td().useState(()=>r.map((e,t)=>t+1)),s=0===r.length,{t:d}=(0,t7.useTranslation)(),f=(0,on.useSensors)((0,on.useSensor)(on.PointerSensor,{activationConstraint:{distance:5}})),c=(0,ts.useMemo)(()=>r,[r]);(0,ts.useEffect)(()=>{let e=r.map((e,t)=>t+1);o(t=>t.length===e.length&&t.every((t,i)=>t===e[i])?t:e)},[r.length]);let u=td().useCallback(e=>{let{active:t,over:i}=e,n=Number(t.id),r=Number(null==i?void 0:i.id);if(n!==r){let e=l.indexOf(n),t=l.indexOf(r),i=Array.from(l);i.splice(e,1),i.splice(t,0,n),a.move(e,t),o(i)}},[l,a]),m=(0,ts.useMemo)(()=>(0,to.jsx)(yu,{dynamicTypeRegistryId:t,children:(0,to.jsx)(dx.W,{icon:{value:"new"},type:"link",children:d(`grid.advanced-column.${i}.add`)})}),[t,i]),p=(0,ts.useMemo)(()=>(0,to.jsx)(rZ.k,{align:"center",children:(0,to.jsx)(gq.h,{title:d(`grid.advanced-column.${i}`),children:(0,to.jsx)(yu,{dynamicTypeRegistryId:t,children:(0,to.jsx)(dx.W,{icon:{value:"new"},children:d("add")})})})}),[t,i]),g=(0,ts.useMemo)(()=>(0,to.jsx)(on.DndContext,{onDragEnd:u,sensors:f,children:(0,to.jsx)(l4.SortableContext,{items:l,strategy:l4.verticalListSortingStrategy,children:(0,to.jsx)(as.T,{className:"w-full",direction:"vertical",size:"extra-small",children:c.map((e,i)=>(0,to.jsx)(td().Fragment,{children:(0,to.jsx)(yh,{dynamicTypeRegistryId:t,id:i})},e.vId))})})}),[c,l,u,f,t]);return(0,to.jsx)(aL.x,{padding:{bottom:"mini"},children:(0,to.jsxs)(as.T,{className:"w-full",direction:"vertical",size:"extra-small",children:[n?p:m,!s&&g]})})},yy=td().memo(e=>{let{id:t,dynamicTypeRegistryId:i,showTitle:n=!1}=e;return(0,to.jsx)(tc.l.Item,{initialValue:[],name:t,children:(0,to.jsx)(tc.l.NumberedList,{children:(0,to.jsx)(yb,{dynamicTypeRegistryId:i,id:t,showTitle:n})})})}),yv=e=>{let{items:t,value:i,onChange:n}=e,[r,a]=(0,ts.useState)(i),l=(0,nR.N)(r,300),o=(0,ts.useMemo)(()=>({components:{Form:{itemMarginBottom:0}}}),[]);(0,ts.useEffect)(()=>{void 0===i||(0,eY.isEqual)(i,r)||a(i)},[i]),(0,ts.useEffect)(()=>{null==n||n(l)},[l]);let s=(0,ts.useMemo)(()=>t,[t]);return void 0===r?(0,to.jsx)(to.Fragment,{}):(0,to.jsx)(tN.ConfigProvider,{theme:o,children:(0,to.jsx)(tc.l.KeyedList,{onChange:a,value:r,children:s.map((e,t)=>{let i=t===s.length-1;return(0,to.jsxs)("div",{children:[e.component,!i&&(0,to.jsx)(yf.i,{style:{margin:0},theme:"secondary"})]},e.id)})})})};yv.CustomItem=e=>{let{children:t,padded:i=!0}=e;return(0,to.jsx)(aL.x,{padding:i?"mini":"none",children:t})},yv.DynamicGroupItem=yy;let yx=(0,ts.createContext)({item:null,setItem:()=>{}}),yj=e=>{let{children:t}=e,[i,n]=(0,ts.useState)(null);return(0,ts.useMemo)(()=>(0,to.jsx)(yx.Provider,{value:{item:i,setItem:n},children:t}),[i,t])},yw=()=>{let e=td().useContext(yx);if(void 0===e)throw Error("usePreviewItem must be used within a PreviewItemProvider");return e},yC=e=>{var t,i,n;let{column:r}=e,{data:a}=(0,fl.e)(),{item:l}=yw(),o=a.items[0],s=(null==r||null==(t=r.__meta)?void 0:t.advancedColumnConfig)??r.config,{t:d}=(0,t7.useTranslation)(),{data:f,error:c}=(0,b9.kR)({body:{column:{type:r.type,key:r.key,config:s},objectId:(null==l||null==(i=l.data)?void 0:i.id)??(null==o?void 0:o.id)}});return(0,to.jsxs)(to.Fragment,{children:[void 0!==c&&(0,to.jsxs)(nc.x,{type:"danger",children:["Error loading preview: ","error"in c?null==c?void 0:c.error:(0,to.jsx)(to.Fragment,{})," "]}),void 0===c?(0,to.jsx)(to.Fragment,{children:(null==f||null==(n=f.value)?void 0:n.length)>0?(0,to.jsx)(sx,{value:null==f?void 0:f.value}):(0,to.jsx)("div",{children:d("grid.advanced-column.no-preview-data")})}):null]})},yk=e=>{var t;let{data:i}=(0,fl.e)(),n=(null==i?void 0:i.items.length)>0&&(null==i||null==(t=i.items)?void 0:t[0])!==void 0,r=(0,nR.N)(e.column,300),{t:a}=(0,t7.useTranslation)();return(0,ts.useMemo)(()=>(0,to.jsx)(aL.x,{padding:{top:"small",bottom:"none",x:"small"},children:(0,to.jsxs)(rZ.k,{align:"center",gap:"small",children:[(0,to.jsxs)(nc.x,{style:{wordBreak:"keep-all"},children:[a("grid.advanced-column.preview"),":"]}),n?(0,to.jsx)(yC,{column:e.column}):(0,to.jsx)(nc.x,{type:"secondary",children:a("grid.advanced-column.no-preview")})]})}),[r])},yT=(0,ts.createContext)({pipelineLayout:"default"}),yS=e=>{let{children:t,pipelineLayout:i}=e;return(0,ts.useMemo)(()=>(0,to.jsx)(yT.Provider,{value:{pipelineLayout:i},children:t}),[t,i])},yD=e=>{var t;let{column:i,onChange:n}=e,[r]=tc.l.useForm(),{pipelineLayout:a}=(()=>{let e=(0,ts.useContext)(yT);if(void 0===e)throw Error("usePipelineLayoutContext must be used within a PipelineLayoutProvider");return e})(),{t:l}=(0,t7.useTranslation)();return(0,ts.useEffect)(()=>{var e;r.setFieldValue("value",(null==i||null==(e=i.__meta)?void 0:e.advancedColumnConfig)??{})},[i]),(0,to.jsx)(tc.l,{form:r,initialValues:null==i||null==(t=i.__meta)?void 0:t.advancedColumnConfig,layout:"vertical",onValuesChange:e=>{let t={...i,__meta:{...i.__meta??{},advancedColumnConfig:{...e.value}}};if(void 0!==n){var r;(0,eY.isEqual)(null==(r=i.__meta)?void 0:r.advancedColumnConfig,e.value)||n(t)}},children:(0,to.jsx)(oE,{initialConfig:null==i?void 0:i.config,children:(0,to.jsx)(tc.l.Item,{name:"value",children:(0,to.jsx)(yv,{items:[{id:"title",component:(0,to.jsx)(yv.CustomItem,{children:(0,to.jsx)(aL.x,{padding:{top:"mini",bottom:"mini",x:"none"},children:(0,to.jsx)(tc.l.Item,{name:"title",children:(0,to.jsx)(tN.Input,{placeholder:l("grid.advanced-column.title.placeholder")})})})})},{id:"fields",component:(0,to.jsxs)(yv.CustomItem,{children:["default"===a&&(0,to.jsx)(ay.m,{items:[{key:"advancedColumns",label:l("grid.advanced-column.advancedColumns"),forceRender:!0,children:(0,to.jsx)(yv.DynamicGroupItem,{dynamicTypeRegistryId:eO.j["DynamicTypes/Grid/SourceFieldsRegistry"],id:"advancedColumns"})},{key:"transformers",label:l("grid.advanced-column.transformers"),forceRender:!0,children:(0,to.jsx)(yv.DynamicGroupItem,{dynamicTypeRegistryId:eO.j["DynamicTypes/Grid/TransformersRegistry"],id:"transformers"})}]}),"verbose"===a&&(0,to.jsx)(d$.K,{leftItem:{children:(0,to.jsx)(yv.DynamicGroupItem,{dynamicTypeRegistryId:eO.j["DynamicTypes/Grid/SourceFieldsRegistry"],id:"advancedColumns",showTitle:!0}),size:50},rightItem:{children:(0,to.jsx)(yv.DynamicGroupItem,{dynamicTypeRegistryId:eO.j["DynamicTypes/Grid/TransformersRegistry"],id:"transformers",showTitle:!0}),size:50},withDivider:!0})]})},{id:"Preview",component:(0,to.jsx)(yk,{column:i})}]})})})})};var yE=i(61442);let yM=()=>{let{setColumns:e,columns:t}=yd(),{t:i}=(0,t7.useTranslation)(),n=(0,ts.useMemo)(()=>t.map(t=>{var r,a,l,o,s;let d=(null==(r=t.__meta)?void 0:r.uniqueId)??(0,nu.V)(),f=`${t.key}`,c="advanced"===t.key,u=(null==t||null==(l=t.__meta)||null==(a=l.advancedColumnConfig)?void 0:a.title)??"Add a title";if("fieldDefinition"in t.config){let e=t.config.fieldDefinition;f=(null==e?void 0:e.title)??t.key}return{id:d,sortable:!0,meta:t,type:c?"collapse":"default",children:c?(0,to.jsx)(tN.Tag,{color:"purple",children:u}):(0,to.jsx)(l5.u,{title:Array.isArray(t.group)?t.group.join("/"):void 0,children:(0,to.jsx)(tN.Tag,{children:i(`${f}`)})}),..."advanced"===t.key?{body:(0,to.jsx)(yD,{column:t,onChange:t=>{var i,r;i=t,r=d,e(n.map(e=>{if(e.id===r){var t;return{...e,meta:{...e.meta,__meta:{...e.meta.__meta,advancedColumnConfig:null==(t=i.__meta)?void 0:t.advancedColumnConfig}}}}return e}).map(e=>e.meta))}})}:{},renderRightToolbar:(0,to.jsxs)(as.T,{size:"mini",children:[(o=d,(s=t).localizable?(0,to.jsx)(yE.X,{isNullable:!0,onChange:t=>{var i,r,a;i=o,r=0,a=t,e(n.map(e=>e.id===i?{...e,meta:{...e.meta,locale:a}}:e).map(e=>e.meta))},value:void 0===s.locale?null:s.locale}):(0,to.jsx)(to.Fragment,{})),(0,to.jsx)(aM.h,{icon:{value:"trash"},onClick:()=>{var t;t=d,e(n.filter(e=>e.id!==t).map(e=>e.meta))},theme:"secondary"})]})}}),[t]);return(0,to.jsxs)(to.Fragment,{children:[0===n.length&&(0,to.jsx)(tN.Empty,{image:tN.Empty.PRESENTED_IMAGE_SIMPLE}),n.length>0&&(0,to.jsx)(p4.f,{items:n,onItemsChange:function(t){e(t.map(e=>e.meta))},sortable:!0})]})};var yI=i(13030);let yL=()=>{let{setItem:e}=yw(),{selectedClassDefinition:t}=(0,ye.v)(),{open:i}=(0,lT._)({selectionType:lS.RT.Single,areas:{object:!0,asset:!1,document:!1},config:{objects:{allowedTypes:[(null==t?void 0:t.name)??""]}},onFinish:t=>{var i;e(null==t||null==(i=t.items)?void 0:i[0])}});return(0,to.jsx)(ai.z,{onClick:i,children:"Select Item"})},yP=e=>{let{onCancelClick:t,onApplyClick:i,addColumnMenu:n,open:r=!1,onOpenChange:a}=e,{t:l}=(0,t7.useTranslation)();return(0,to.jsx)(to.Fragment,{children:r&&(0,to.jsx)(yj,{children:(0,to.jsx)(yS,{pipelineLayout:"verbose",children:(0,to.jsx)(av.u,{footer:null,onCancel:()=>null==a?void 0:a(!1),onClose:()=>null==a?void 0:a(!1),open:r,size:"XL",title:(0,to.jsx)(p3.r,{iconName:"settings",children:"Grid Config"}),children:(0,to.jsxs)(aF.D,{children:[(0,to.jsx)(aO.o,{padding:{x:"none"},position:"content",theme:"secondary",children:(0,to.jsx)(yL,{})}),(0,to.jsx)(aB.V,{style:{height:"calc(80vh - 200px)"},children:(0,to.jsx)(as.T,{direction:"vertical",style:{width:"100%"},children:(0,to.jsx)(yM,{})})}),(0,to.jsxs)(aO.o,{padding:{x:"none",y:"small"},theme:"secondary",children:[!(0,eY.isEmpty)(n)&&(0,to.jsx)(pJ.L,{menu:{items:n},children:(0,to.jsx)(dx.W,{icon:{value:"new"},children:l("listing.add-column")})}),(0,to.jsxs)(as.T,{size:"extra-small",children:[(0,to.jsx)(ai.z,{onClick:t,type:"default",children:l("button.cancel")}),(0,to.jsx)(ai.z,{onClick:()=>{i(),null==a||a(!1)},type:"primary",children:l("button.apply")})]})]})]})})})})})},yN=e=>{let[t,i]=(0,ts.useState)(!1),{onCancelClick:n,onApplyClick:r,onEditConfigurationClick:a,onUpdateConfigurationClick:l,onSaveConfigurationClick:o,addColumnMenu:s,gridConfig:d,savedGridConfigurations:f,isUpdating:c,isLoading:u,currentUserId:m}=e,{t:p}=(0,t7.useTranslation)(),g=(null==d?void 0:d.name)!=="Predefined"&&void 0!==d,h=m===(null==d?void 0:d.ownerId);return(0,to.jsxs)(to.Fragment,{children:[(0,to.jsx)(yP,{...e,onOpenChange:i,open:t}),(0,to.jsx)(aF.D,{renderToolbar:(0,to.jsxs)(aO.o,{theme:"secondary",children:[(0,to.jsx)(ai.z,{onClick:n,type:"default",children:p("button.cancel")}),(0,to.jsxs)(as.T,{size:"extra-small",children:[(0,to.jsxs)(to.Fragment,{children:[!g&&(0,to.jsx)(ai.z,{onClick:o,type:"default",children:p("grid.configuration.save-template")}),g&&(0,to.jsxs)(to.Fragment,{children:[h&&(0,to.jsxs)(yI.D,{children:[(0,to.jsx)(ai.z,{loading:c,onClick:l,type:"default",children:p("grid.configuration.update-template")}),(0,to.jsx)(pJ.L,{menu:{items:[{key:0,icon:(0,to.jsx)(rR.J,{value:"edit"}),label:p("grid.configuration.edit-template-details"),onClick:()=>{a()}},{key:1,icon:(0,to.jsx)(rR.J,{value:"save"}),label:p("grid.configuration.save-new-template"),onClick:()=>{o()}}]},children:(0,to.jsx)(aM.h,{icon:{value:"more"},type:"default"})})]}),!h&&(0,to.jsx)(ai.z,{onClick:o,type:"default",children:p("grid.configuration.save-template")})]})]}),(0,to.jsx)(ai.z,{onClick:r,type:"primary",children:p("button.apply")})]})]}),children:(0,to.jsxs)(aB.V,{padded:!0,children:[(0,to.jsx)(gq.h,{fullWidth:!0,title:p("listing.grid-config.title"),children:(0,to.jsxs)(rZ.k,{className:"w-full",justify:"space-between",children:[(0,to.jsx)(pJ.L,{disabled:(null==f?void 0:f.length)===0&&!u,menu:{items:f},children:(0,to.jsx)(tN.Tooltip,{title:(null==f?void 0:f.length)!==0||u?"":p("grid.configuration.no-saved-templates"),children:(0,to.jsx)(dx.W,{disabled:(null==f?void 0:f.length)===0&&!u,icon:{value:"style"},loading:u,style:{minHeight:"32px",minWidth:"100px"},children:g?(0,to.jsx)(to.Fragment,{children:d.name}):(0,to.jsx)(to.Fragment,{children:p("grid.configuration.template")})})})}),(0,to.jsx)(rZ.k,{gap:"mini",children:(0,to.jsx)(aM.h,{icon:{value:"show-details"},onClick:()=>{i(!0)}})})]})}),(0,to.jsxs)(as.T,{direction:"vertical",style:{width:"100%"},children:[(0,to.jsx)(yM,{}),!(0,eY.isEmpty)(s)&&(0,to.jsx)(pJ.L,{menu:{items:s},children:(0,to.jsx)(dx.W,{icon:{value:"new"},type:"link",children:p("listing.add-column")})})]})]})})]})};var yA=i(96514);let yR=(0,ia.createStyles)(e=>{let{css:t,token:i}=e;return{label:t` color: ${i.colorTextLabel}; `,icon:t` color: ${i.colorTextLabel}; @@ -586,7 +586,7 @@ .ant-tag { background-color: ${i.Colors.Neutral.Fill.colorFillTertiary}; } - `}}),yO={name:"",description:"",shareGlobally:!0,setAsDefault:!1,saveFilters:!1},yB=e=>{var t;let[i,n]=(0,ts.useState)((null==(t=e.initialValues)?void 0:t.shareGlobally)??yO.shareGlobally),[r,a]=(0,ts.useState)(!1),{gridConfig:o,setGridConfig:l}=(0,pV.j)(),s=null==o?void 0:o.sharedUsers,d=null==o?void 0:o.sharedRoles,{t:f}=(0,t7.useTranslation)(),{styles:c}=yR();(0,ts.useEffect)(()=>{var t;null==(t=e.form)||t.resetFields()},[]);let u=()=>{a(!1)},m=(e,t)=>(0,tl.jsx)(rR.J,{className:c.icon,options:{width:t??12,height:t??12},value:e});return(0,tl.jsxs)(tc.l,{layout:"vertical",onValuesChange:(t,i)=>{var r;null==(r=e.onValuesChange)||r.call(e,t,i);let a=t.shareGlobally;void 0!==a&&(n(t.shareGlobally),(0,eY.isEmpty)(o)||l({...o,shareGlobal:a}))},...e,children:[(0,tl.jsx)(tc.l.Item,{label:f("user-management.name"),name:"name",rules:[{required:!0,message:f("form.validation.provide-name")}],children:(0,tl.jsx)(tN.Input,{})}),(0,tl.jsx)(tc.l.Item,{label:f("description"),name:"description",rules:[{required:!1,message:f("form.validation.provide-description")}],children:(0,tl.jsx)(tN.Input.TextArea,{})}),(0,tl.jsx)(as.T,{size:"extra-small",children:(0,tl.jsx)(tc.l.Item,{name:"setAsDefault",valuePropName:"checked",children:(0,tl.jsx)(tN.Checkbox,{children:f("grid.configuration.set-default-template")})})}),(0,tl.jsx)(tN.Flex,{align:"center",gap:"mini",children:(0,tl.jsx)(tc.l.Item,{name:"shareGlobally",valuePropName:"checked",children:(0,tl.jsx)(s0.r,{labelLeft:(0,tl.jsx)(nc.x,{children:f("grid.configuration.shared")}),labelRight:!0===i?(0,tl.jsx)(nc.x,{className:c.label,children:f("common.globally")}):(0,tl.jsxs)(tl.Fragment,{children:[(0,tl.jsxs)(tN.Flex,{gap:10,children:[(0,tl.jsxs)(nc.x,{className:c.label,children:[m("user")," ",f("user-management.user")," | ",m("shield")," ",f("user-management.role")]}),(0,tl.jsxs)(tN.Flex,{align:"center",className:c.updateButton,gap:8,onClick:()=>{a(!r)},children:[m("edit",16),(0,tl.jsx)(nc.x,{className:c.updateButtonText,children:f("button.add-edit")})]})]}),r&&(0,tl.jsx)(yA.h,{handleApplyChanges:e=>{let{sharedUsers:t,sharedRoles:i}=e;(0,eY.isEmpty)(o)||(l({...o,shareGlobal:!1,sharedUsers:t,sharedRoles:i}),u())},handleClose:u,initialSharedRoles:d,initialSharedUsers:s,roleList:null==e?void 0:e.roleList,userList:null==e?void 0:e.userList})]})})})}),!1===i&&(0,tl.jsx)(hQ.P,{itemGap:"mini",list:(()=>{var t,i;let n=[],r=[],a=e=>{let{label:t,iconName:i}=e;return{children:(0,tl.jsx)(nc.x,{ellipsis:!0,style:{maxWidth:"148px"},type:"secondary",children:t}),icon:m(i),bordered:!1}};return null==(t=e.userList)||t.items.forEach(e=>{(null==o?void 0:o.sharedUsers).includes(e.id)&&n.push(a({label:null==e?void 0:e.username,iconName:"user"}))}),null==(i=e.roleList)||i.items.forEach(e=>{(null==o?void 0:o.sharedRoles).includes(e.id)&&r.push(a({label:null==e?void 0:e.name,iconName:"shield"}))}),[n,r]})(),tagListItemClassNames:c.tag})]})},yF=e=>{let{formProps:t,onCancelClick:i,isLoading:n,onDeleteClick:r,isDeleting:a,saveAsNewConfiguration:o,modificationDate:l,userName:s,...d}=e,{form:f}=t,{t:c}=(0,t7.useTranslation)();return(0,tl.jsx)(aF.D,{renderToolbar:(0,tl.jsxs)(aO.o,{theme:"secondary",children:[void 0!==r&&!0!==o?(0,tl.jsx)(tN.Popconfirm,{cancelText:c("button.cancel"),description:c("grid.configuration.delete-template-confirmation"),okText:c("delete"),onConfirm:r,title:c("grid.configuration.delete-this-template"),children:(0,tl.jsx)(dx.W,{disabled:n,icon:{value:"trash"},loading:a,children:c("grid.configuration.delete-template")})}):(0,tl.jsx)("div",{}),(0,tl.jsxs)(as.T,{size:"mini",children:[(0,tl.jsx)(dx.W,{icon:{value:"close"},onClick:i,type:"default",children:c("button.cancel")}),(0,tl.jsx)(ai.z,{disabled:a,loading:n,onClick:()=>null==f?void 0:f.submit(),type:"primary",children:c("button.save-apply")})]})]}),children:(0,tl.jsx)(aB.V,{padded:!0,children:(0,tl.jsxs)(tN.Flex,{gap:"small",vertical:!0,children:[(0,tl.jsx)(gq.h,{title:c("grid.configuration.save-template-configuration")}),!0!==o&&(0,tl.jsxs)(tN.Row,{children:[(0,tl.jsxs)(tN.Col,{span:6,children:[(0,tl.jsxs)(nc.x,{children:[c("common.owner"),":"]})," ",(0,tl.jsx)(nc.x,{type:"secondary",children:s})]}),!(0,dW.O)(l)&&(0,tl.jsxs)(tN.Col,{span:12,children:[(0,tl.jsxs)(nc.x,{children:[c("common.modification-date"),": "]}),(0,tl.jsx)(nc.x,{type:"secondary",children:(0,dH.o0)({timestamp:l,dateStyle:"short",timeStyle:"short"})})]})]}),(0,tl.jsx)(yB,{...t,...d})]})})})};var y_=i(4584),yz=i(61571),yV=i(30683),y$=((u=y$||{}).Edit="edit",u.Save="save",u.Update="update",u);let yW=()=>{let{useElementId:e}=(0,pF.r)(),{getAvailableColumnsDropdown:t}=(0,p_.L)(),{selectedColumns:i,setSelectedColumns:n}=(0,pB.N)(),{columns:r,setColumns:a,addColumn:o}=yd(),{getId:l}=e(),s=(0,dj.a)(),{id:d,setId:f}=(0,pz.m)(),{gridConfig:c,setGridConfig:u}=(0,pV.j)(),{selectedClassDefinition:m}=(0,ye.v)(),{isLoading:p,isFetching:g,data:h}=(0,b9.F6)({classId:m.id}),{data:b}=(0,yz.m)(),{data:y}=(0,yV.Ri)(),{isFetching:v}=(0,b9.LH)({classId:m.id,folderId:l(),configurationId:d}),[x,{isLoading:j}]=(0,b9.j_)(),[w,{isLoading:C}]=(0,b9.Ag)(),[k,{isLoading:T}]=(0,b9.kx)(),[S,D]=(0,ts.useState)(y$.Edit),[E]=(0,y_.Z)(),M=(null==c?void 0:c.name)!=="Predefined"&&void 0!==c,I=(0,ts.useMemo)(()=>{if(void 0!==h){var e;return(null==(e=h.items)?void 0:e.map(e=>({key:e.id,label:e.name,onClick:()=>{f(e.id)}})))??[]}return[]},[h]);(0,ts.useEffect)(()=>{a(i.map(e=>({...e.originalApiDefinition,locale:null==e?void 0:e.locale})))},[i]);let L=e=>{o(e)},P=(0,ts.useMemo)(()=>t(L),[t,r]);function N(e){return e.map(e=>{var t;return{key:e.key,locale:e.locale??null,type:e.type,config:(null==(t=e.__meta)?void 0:t.advancedColumnConfig)??e.config}})}return v||T?(0,tl.jsx)(aB.V,{loading:!0}):(0,tl.jsxs)(tl.Fragment,{children:[S===y$.Edit&&(0,tl.jsx)(yN,{addColumnMenu:P.menu.items,columns:r,currentUserId:null==s?void 0:s.id,gridConfig:c,isLoading:p||g,isUpdating:C,onApplyClick:()=>{n(r.map(e=>({key:e.key,locale:null===e.locale&&e.localizable?void 0:e.locale,type:e.type,config:e.config,sortable:e.sortable,editable:e.editable,localizable:e.localizable,exportable:e.exportable,frontendType:e.frontendType,group:e.group,originalApiDefinition:e})))},onCancelClick:()=>{a(i.map(e=>e.originalApiDefinition))},onEditConfigurationClick:()=>{D(y$.Update)},onSaveConfigurationClick:()=>{D(y$.Save)},onUpdateConfigurationClick:function(){if(void 0===c)return void console.error("No grid configuration available");w({configurationId:c.id,body:{folderId:l(),columns:N(r),name:c.name,description:c.description??"",setAsFavorite:c.setAsFavorite,shareGlobal:c.shareGlobal,sharedRoles:c.sharedRoles,sharedUsers:c.sharedUsers,saveFilter:!1,pageSize:0}}).catch(e=>{console.error("Failed to update grid configuration",e)})},savedGridConfigurations:I}),(S===y$.Save||S===y$.Update)&&(0,tl.jsx)(yF,{formProps:{form:E,onFinish:function(e){let t=N(r);!0!==e.shareGlobally||(0,eY.isEmpty)(c)||u({...c,sharedUsers:[],sharedRoles:[]}),S===y$.Update&&M&&w({configurationId:c.id,body:{folderId:l(),columns:t,name:e.name,description:e.description,setAsFavorite:e.setAsDefault,shareGlobal:e.shareGlobally,sharedRoles:c.sharedRoles,sharedUsers:c.sharedUsers,saveFilter:!1,pageSize:0}}).catch(e=>{console.error("Failed to update grid configuration",e)}).then(()=>{D(y$.Edit)}).catch(e=>{console.error("Failed to switch to edit view",e)}),S===y$.Save&&x({classId:m.id,body:{folderId:l(),columns:t,name:e.name,description:e.description,setAsFavorite:e.setAsDefault,shareGlobal:e.shareGlobally,sharedRoles:null==c?void 0:c.sharedRoles,sharedUsers:null==c?void 0:c.sharedUsers,saveFilter:!1,pageSize:0}}).catch(e=>{console.error("Failed to save grid configuration",e)}).then(e=>{(null==e?void 0:e.data)!==void 0&&(f(e.data.id),D(y$.Edit))}).catch(e=>{console.error("Failed to switch to edit view",e)})},initialValues:S===y$.Update&&M?{name:null==c?void 0:c.name,description:null==c?void 0:c.description,setAsDefault:null==c?void 0:c.setAsFavorite,shareGlobally:null==c?void 0:c.shareGlobal}:{...yO}},isDeleting:T,isLoading:j||C,modificationDate:null==c?void 0:c.modificationDate,onCancelClick:()=>{D(y$.Edit)},onDeleteClick:M?function(){M&&k({configurationId:c.id}).then(()=>{D(y$.Edit),f(void 0)}).catch(e=>{console.error("Failed to switch to edit view",e)})}:void 0,roleList:b,saveAsNewConfiguration:S===y$.Save,userList:y,userName:null==s?void 0:s.username})]})},yH=()=>(0,tl.jsx)(ys,{children:(0,tl.jsx)(yW,{})}),yG=(0,ts.createContext)({batchEdits:[],setBatchEdits:()=>{}}),yU=e=>{let{children:t}=e,[i,n]=(0,ts.useState)([]);return(0,ts.useMemo)(()=>(0,tl.jsx)(yG.Provider,{value:{batchEdits:i,setBatchEdits:n},children:t}),[i,t])},yq=()=>{let{batchEdits:e,setBatchEdits:t}=(0,ts.useContext)(yG),i=(0,p5.r)();return{batchEdits:e,setBatchEdits:t,addOrUpdateBatchEdit:(n,r)=>{let a={...n,locale:n.localizable?n.locale??i.requiredLanguages[0]:null,value:r},o=[...e],l=e.findIndex(e=>e.key===a.key);-1!==l?o[l]=a:o.push(a),t(o)},updateLocale:(i,n)=>{t(e.map(e=>e.key===i?{...e,locale:n}:e))},resetBatchEdits:()=>{t([])},removeBatchEdit:i=>{t(e.filter(e=>e.key!==i))}}},yZ=e=>{let{batchEdit:t}=e,{frontendType:i,type:n}=t,{getComponentRenderer:r}=(0,tR.D)();return(0,ts.useMemo)(()=>{let{ComponentRenderer:e}=r({dynamicTypeIds:[n,i],target:"BATCH_EDIT"});return null===e?(0,tl.jsx)(tl.Fragment,{children:"Dynamic Field Filter not supported"}):(0,tl.jsx)(tl.Fragment,{children:e({batchEdit:t})})},[t])},yK=()=>{let{batchEdits:e,removeBatchEdit:t}=yq(),{updateLocale:i}=yq(),n=(0,p5.r)(),r=n.requiredLanguages,a=e.map(e=>{let a=e.locale??n.requiredLanguages[0];return{id:e.key,children:(0,tl.jsx)(tN.Tag,{children:(0,ii.t)(`${e.key}`)}),renderRightToolbar:(0,tl.jsx)(p8.h,{items:[...e.localizable?[(0,tl.jsx)(p7.k,{languages:r,onSelectLanguage:t=>{i(e.key,(0,p7.N)(t))},selectedLanguage:a},"language-selection")]:[],(0,tl.jsx)(aM.h,{icon:{value:"close"},onClick:()=>{t(e.key)}},"remove")]}),body:(0,tl.jsx)(yZ,{batchEdit:e})}});return(0,tl.jsxs)(tl.Fragment,{children:[0===a.length&&(0,tl.jsx)(dV.d,{text:(0,ii.t)("batch-edit.no-content")}),a.length>0&&(0,tl.jsx)(p4.f,{items:a})]})},yJ=(e,t,i,n)=>e.map(e=>{if(!(null!==e&&"children"in e&&void 0!==e.children&&Array.isArray(e.children)))return((e,t,i,n)=>{let r=!0===e.editable,a=t.some(t=>e.key===t.key&&((e,t)=>{let i=e=>"string"==typeof e?e.split("."):Array.isArray(e)?e.flat().map(e=>String(e)):[String(e)],n=i(e),r=i(t);return n.length===r.length&&n.every((e,t)=>e===r[t])})(e.group,t.group)),o=i({target:"BATCH_EDIT",dynamicTypeIds:[null==e?void 0:e.mainType,null==e?void 0:e.frontendType]}),l=!1,s=eB.nC.get(eO.j["DynamicTypes/ObjectDataRegistry"]);return s.hasDynamicType(null==e?void 0:e.frontendType)&&(l=s.getDynamicType(null==e?void 0:e.frontendType).isAllowedInBatchEdit),r&&o&&!a&&l})(e,t,i,0)?e:null;{let r=yJ(e.children,t,i,n);return{...e,children:r}}}).filter(e=>null!==e&&(!("children"in e&&void 0!==e.children&&Array.isArray(e.children))||e.children.length>0)),yX=e=>e.some(e=>!(null!==e&&"children"in e&&void 0!==e.children&&Array.isArray(e.children))||yX(e.children)),yQ=e=>{let{batchEditModalOpen:t,setBatchEditModalOpen:i}=e,{getAvailableColumnsDropdown:n}=(0,p_.L)(),{batchEdits:r,addOrUpdateBatchEdit:a,resetBatchEdits:o}=yq(),[l]=tc.l.useForm(),{selectedRows:s}=(0,gt.G)(),[d,{error:f,isError:c,isSuccess:u}]=(0,bG.c3)(),[m,{error:p,isError:g,isSuccess:h}]=(0,bG.v)(),{useDataQueryHelper:b}=(0,pF.r)(),{getArgs:y}=b(),{id:v,elementType:x}=(0,il.i)(),j=(0,pU.useAppDispatch)(),{addJob:w}=(0,gn.C)(),C=Object.keys(s??{}),k=C.length,{hasType:T,getType:S}=(0,tR.D)(),{refreshGrid:D}=(0,gl.g)(x),E=()=>{o(),l.resetFields()};(0,ts.useEffect)(()=>{c&&(0,is.ZP)(new is.MS(f)),g&&(0,is.ZP)(new is.MS(p))},[f,p]),(0,ts.useEffect)(()=>{(u||h)&&E(),h&&1===k&&j(bG.hi.util.invalidateTags(gi.xc.DATA_OBJECT_GRID_ID(v)))},[u,h]);let M=async e=>{0===k?w(go({title:(0,ii.t)("batch-edit.job-title"),topics:[dp.F["patch-finished"],...dp.b],action:async()=>{var t,i,n,r;let a=await d({body:{data:[{folderId:v,editableData:e}],filters:null==(i=y())||null==(t=i.body)?void 0:t.filters}});if((null==(n=a.data)?void 0:n.jobRunId)===void 0)throw(0,is.ZP)(new is.aE("JobRunId is undefined")),Error("JobRunId is undefined");return null==(r=a.data)?void 0:r.jobRunId},refreshGrid:D,assetContextId:v})):1===k?await m({body:{data:[{id:parseInt(C[0]),editableData:e}]}}):w(go({title:(0,ii.t)("batch-edit.job-title"),topics:[dp.F["patch-finished"],...dp.b],action:async()=>{var t,i;let n=await m({body:{data:C.map(t=>({id:parseInt(t),editableData:e}))}});if((null==(t=n.data)?void 0:t.jobRunId)===void 0)throw(0,is.ZP)(new is.aE("JobRunId is undefined")),Error("JobRunId is undefined");return null==(i=n.data)?void 0:i.jobRunId},refreshGrid:D,assetContextId:v})),E(),i(!1)},I=n(e=>{a(e,void 0)}).menu.items,L=(0,ts.useMemo)(()=>()=>(0,eY.isUndefined)(I)?[]:yJ(I,r,T,S),[I,r,T,S]),P=!yX(L());return(0,tl.jsx)(bK.w,{children:(0,tl.jsx)(p2.i,{afterClose:()=>{E()},footer:(0,tl.jsxs)(p1.m,{divider:!0,justify:"space-between",children:[(0,tl.jsx)(pJ.L,{menu:{items:L()},children:(0,tl.jsx)(dx.W,{disabled:P,icon:{value:"new"},type:"default",children:(0,ii.t)("listing.add-column")})}),r.length>0&&(0,tl.jsxs)(rZ.k,{align:"center",gap:"extra-small",children:[(0,tl.jsx)(dx.W,{icon:{value:"close"},onClick:()=>{E()},type:"link",children:(0,ii.t)("batch-edit.modal-footer.discard-all-changes")}),(0,tl.jsx)(ai.z,{onClick:()=>{l.submit()},type:"primary",children:(0,ii.t)("batch-edit.modal-footer.apply-changes")})]})]}),onCancel:()=>{i(!1)},open:t,size:"XL",title:(0,tl.jsx)(p3.r,{children:(0,ii.t)("batch-edit.modal-title")}),children:(0,tl.jsx)(tx._v,{fieldWidthValues:{large:9999,medium:9999,small:9999},children:(0,tl.jsx)(tc.l,{form:l,onFinish:M,children:(0,tl.jsx)(yK,{})})})})})},yY=()=>{let e=(0,pQ.J)(),{id:t,elementType:i}=(0,il.i)(),{refreshGrid:n}=(0,gl.g)(i),[r,a]=(0,ts.useState)(!1),[o,l]=(0,ts.useState)(!1),[s,d]=(0,ts.useState)(!1),[f]=(0,b9.CV)(),{addJob:c}=(0,gn.C)(),{t:u}=(0,t7.useTranslation)();if(void 0===e)return(0,tl.jsx)(tl.Fragment,{});let{selectedRows:m}=e,p=void 0!==m?Object.keys(m).map(Number):[],g=void 0!==m&&Object.keys(m).length>0,h={items:[{key:"1",label:u("listing.actions.batch-edit"),icon:(0,tl.jsx)(rR.J,{value:"batch-selection"}),onClick:()=>{a(!0)}},{key:"2",label:u("listing.actions.export"),icon:(0,tl.jsx)(rR.J,{value:"export"}),children:[{key:"2.1",label:u("listing.actions.csv-export"),icon:(0,tl.jsx)(rR.J,{value:"export"}),onClick:()=>{l(!0)}},{key:"2.2",label:u("listing.actions.xlsx-export"),icon:(0,tl.jsx)(rR.J,{value:"export"}),onClick:()=>{d(!0)}}]},{key:"3",label:u("listing.actions.delete"),icon:(0,tl.jsx)(rR.J,{value:"trash"}),onClick:()=>{c(gT({title:u("batch-delete.job-title"),topics:[dp.F["deletion-finished"],...dp.b],action:async()=>{var e,t;let i=await f({body:{ids:p}});if((0,eY.isUndefined)(null==(e=i.data)?void 0:e.jobRunId))throw(0,is.ZP)(new is.aE("JobRunId is undefined")),Error("JobRunId is undefined");return null==(t=i.data)?void 0:t.jobRunId},refreshGrid:n,assetContextId:t}))}}]};return(0,tl.jsxs)(tl.Fragment,{children:[(0,tl.jsx)(pJ.L,{menu:h,children:(0,tl.jsx)(pK.P,{children:g?u("listing.actions"):u("listing.non-selected.actions")},"dropdown-button")}),(0,tl.jsx)(gw,{open:o,setOpen:l}),(0,tl.jsx)(gk,{open:s,setOpen:d}),(0,tl.jsx)(yU,{children:(0,tl.jsx)(yQ,{batchEditModalOpen:r,setBatchEditModalOpen:a})})]})},y0=()=>{let{selectedRows:e}=(0,gt.G)(),t=Object.keys(e??{}).length;return(0,ts.useMemo)(()=>(0,tl.jsxs)(aO.o,{theme:"secondary",children:[(0,tl.jsxs)(aR.P,{children:[(0,tl.jsxs)(as.T,{size:"extra-small",children:[t>0&&(0,tl.jsx)(fu.q,{}),t<=0&&(0,tl.jsx)(fj.i,{})]}),(0,tl.jsx)(yY,{})]}),(0,tl.jsxs)(aR.P,{size:"extra-small",children:[(0,tl.jsx)(fm.s,{}),(0,tl.jsx)(fp.t,{})]})]}),[t])};var y1=i(93430);let y2=(0,aj.createColumnHelper)(),y3=e=>{let{row:t}=e,{openGridContextMenuItem:i}=(0,pN.y)("data-object"),{deleteGridContextMenuItem:n}=(0,pI.R)("data-object"),{locateInTreeGridContextMenuItem:r}=(0,gI.B)("data-object"),[a,o]=(0,ts.useState)(void 0),l=[i(t),r(t,()=>{o(void 0)}),n(t)].filter(Boolean);return(0,tl.jsx)(pJ.L,{menu:{items:l,onClick:e=>{e.key===gM.N.locateInTree&&o(!0)}},open:a,trigger:["contextMenu"],children:e.children},t.id)};var y6=i(41595);let y4={...fe.l,ViewComponent:()=>{let{dataQueryResult:e}=(0,fo.e)(),{selectedClassDefinition:t}=(0,ye.v)();return(0,ts.useMemo)(()=>(0,tl.jsx)(aF.D,{renderSidebar:void 0!==e?(0,tl.jsx)(fl.Y,{}):void 0,renderToolbar:void 0!==e?(0,tl.jsx)(y0,{}):void 0,children:void 0!==t&&void 0!==e&&(0,tl.jsx)(fs.T,{})}),[e])},useDataQuery:b9.v$,useDataQueryHelper:()=>{let{useElementId:e}=(0,pF.r)(),{getId:t}=e(),{selectedColumns:i}=(0,pB.N)(),{availableColumns:n}=(0,p_.L)(),{selectedClassDefinition:r}=(0,ye.v)(),{dataLoadingState:a,setDataLoadingState:o}=(0,fo.e)(),{currentLanguage:l}=(0,yt.Xh)(),s=[];i.forEach(e=>{let t;if("dataobject.advanced"===e.type){var i,n;t=null==(n=e.originalApiDefinition)||null==(i=n.__meta)?void 0:i.advancedColumnConfig}s.push({key:e.key,type:e.type,locale:e.localizable?e.locale??l:void 0,config:t??e.config})}),n.filter(e=>Array.isArray(e.group)&&e.group.includes("system")).forEach(e=>{s.some(t=>t.key===e.key)||s.push({key:e.key,type:e.type,locale:e.locale,config:[]})});let d=()=>{if(void 0===r)throw Error("No class definition selected");return{classId:r.id,body:{folderId:t(),columns:s,filters:{includeDescendants:!0,page:1,pageSize:20}}}};return{getArgs:d,hasRequiredArgs:()=>void 0!==d().body.folderId||void 0!==r,dataLoadingState:a,setDataLoadingState:o}},useElementId:pq,useColumnMapper:()=>{let e=(0,yt.Xh)(),t=(0,ts.useRef)(e.currentLanguage),{shouldMapDataToColumn:i,...n}=(0,y6.r)();t.current=e.currentLanguage;let r=(0,ts.useCallback)((e,n)=>{let r=t.current;return n.localizable&&(null===n.locale||void 0===n.locale)?e.key===n.key&&r===e.locale:i(e,n)},[i]);return{...n,shouldMapDataToColumn:r}}},y8=(0,fr.q)(e=>{let{useGridOptions:t,...i}=e;return{...i,useGridOptions:()=>{let{t:e}=(0,t7.useTranslation)(),{transformGridColumnDefinition:i,...n}=t();return{...n,transformGridColumnDefinition:t=>{let n=i(t);return n.push(y2.accessor("actions",{header:e("actions.open"),enableSorting:!1,meta:{type:"data-object-actions"},size:65})),n}}}}},fn.y,fi.L,[fT.F,{showConfigLayer:!0}],e=>{let{ConfigurationComponent:t,ContextComponent:i,useGridOptions:n,useSidebarOptions:r,...a}=e;return{...a,ConfigurationComponent:()=>{let{selectedClassDefinition:e}=(0,ye.v)();return void 0===e?(0,tl.jsx)(aB.V,{padded:!0,children:(0,tl.jsxs)(rZ.k,{align:"center",gap:"extra-small",children:[(0,tl.jsx)(nc.x,{children:"Select a class to display"}),(0,tl.jsx)(fj.i,{})]})}):(0,tl.jsx)(yi,{Component:t})},ContextComponent:()=>(0,tl.jsx)(yr.H,{children:(0,tl.jsx)(yn.c,{children:(0,tl.jsx)(ya.i,{children:(0,tl.jsx)(i,{})})})}),useGridOptions:(0,yo.m)(n),useSidebarOptions:()=>{let{getProps:e}=r(),{t}=(0,t7.useTranslation)();return{getProps:()=>{let i=e();return{...i,entries:[...i.entries,{component:(0,tl.jsx)(yH,{}),key:"configuration",icon:(0,tl.jsx)(rR.J,{value:"settings"}),tooltip:t("sidebar.grid_config")}]}}}}}},[pG,{useInlineEditApiUpdate:()=>{let[e]=(0,bG.v)(),t=(0,pU.useAppDispatch)(),{currentLanguage:i}=(0,yt.Xh)(),{useColumnMapper:n}=(0,pF.r)(),r=n();return{updateCache:e=>{let{update:i,getGetRequestArgs:n}=e,{id:a,column:o,value:l}=i;t(bG.hi.util.updateQueryData("dataObjectGetGrid",n,e=>{e:for(let t of e.items)if(t.id===a){for(let e of t.columns)if(r.shouldMapDataToColumn(e,o)){e.value=l,!(0,eY.isNil)(e.inheritance)&&"inherited"in e.inheritance&&!0===e.inheritance.inherited&&(e.inheritance.inherited=!1);break e}}return e}))},updateApiData:async t=>{var n;let{update:r}=t,a=r.column.key;if(r.column.localizable){let e=(a??"").split("."),t=e[e.length-1];e.pop();let n=e.length>0&&""!==e[0];a=`${e.join(".")}${n?".":""}localizedfields.${t}.${r.column.locale??i}`}let o=(null==(n=t.meta)?void 0:n[y1.W1])===!0?(0,y1.cI)(r.value,y1.vI.Replace):r.value,l="published"===a,s=e({body:{data:[{id:r.id,...l?{published:o}:{editableData:{...(0,eY.set)({},a??"",o)}}}]}}),d=await s;return(0,eY.isNil)(d.error)||(0,is.ZP)(new is.MS(d.error)),d}}}}],[pH.G,{rowSelectionMode:"multiple"}],e=>{let{useGridOptions:t,...i}=e;return{...i,useGridOptions:()=>{let{getGridProps:e,...i}=t();return{...i,getGridProps:()=>({...e(),contextMenu:y3})}}}},d7.p,ft.o)(y4),y7=()=>(0,tl.jsx)(d9.d,{serviceIds:["DynamicTypes/ObjectDataRegistry","DynamicTypes/GridCellRegistry","DynamicTypes/ListingRegistry","DynamicTypes/BatchEditRegistry","DynamicTypes/FieldFilterRegistry"],children:(0,tl.jsx)(fe.p,{...y8})}),y5={key:"listing",label:"folder.folder-editor-tabs.view",children:(0,tl.jsx)(()=>(0,tl.jsx)(y7,{}),{}),icon:(0,tl.jsx)(rR.J,{value:"list"}),isDetachable:!1};eR._.registerModule({onInit:()=>{let e=eB.nC.get(eO.j["DataObject/Editor/FolderTabManager"]);e.register(y5),e.register(pC.D9),e.register(pC.On),e.register(pC._P),e.register(pC.Hy),e.register(pC.zd)}});var y9=i(70439),ve=i(88087);let vt=()=>{let{t:e}=(0,t7.useTranslation)(),{id:t}=(0,ts.useContext)(bY.f),{dataObject:i}=(0,am.H)(t),{refreshElement:n}=(0,hK.C)("data-object"),{isLoading:r,layouts:a}=(0,ve.z)(t),{setCurrentLayout:o,currentLayout:l}=b7(),[s,d]=(0,ts.useState)(),f=(0,ts.useRef)(null);if((0,ts.useEffect)(()=>{if((0,eY.isString)(s)){var e;null==(e=f.current)||e.refresh()}},[s]),r)return(0,tl.jsx)(tl.Fragment,{});let c=()=>Object.keys((null==i?void 0:i.changes)??{}).length>0,u=(a??[]).map(t=>({key:`reload-${t.id}`,label:(0,tl.jsx)(nc.x,{strong:l===t.id,children:e(t.name)}),onClick:()=>{d(t.id)}}));return(0,tl.jsxs)(tl.Fragment,{children:[(0,tl.jsx)(hJ.t,{hasDataChanged:c,onReload:()=>{n(t,!0)},title:e("toolbar.reload.confirmation"),children:(0,tl.jsx)(aM.h,{icon:{value:"refresh"},children:e("toolbar.reload")})},"reload"),u.length>1&&(0,tl.jsxs)(tl.Fragment,{children:[(0,tl.jsx)(hJ.t,{hasDataChanged:c,onCancel:()=>{d(null)},onReload:()=>{(0,eY.isString)(s)&&o(s),n(t,!0)},ref:f,title:e("toolbar.reload.confirmation")},"reload"),(0,tl.jsx)(pJ.L,{menu:{items:u},trigger:["hover"],children:(0,tl.jsx)(aM.h,{icon:{value:"chevron-down"},onClick:e=>{e.stopPropagation()},children:e("toolbar.switch-layout")})},"switch-layout")]})]})};var vi=i(98994);let vn=()=>{let{t:e}=(0,t7.useTranslation)(),{id:t}=(0,ts.useContext)(bY.f),{dataObject:i}=(0,am.H)(t),{unpublishContextMenuItem:n}=(0,vi.X)("data-object"),{renameContextMenuItem:r}=(0,pM.j)("data-object"),{deleteContextMenuItem:a}=(0,pI.R)("data-object"),[o,l]=(0,ts.useState)(void 0),s=[n(i,()=>{l(void 0)}),a(i),r(i)],d=s.filter(e=>null!==e&&"hidden"in e&&(null==e?void 0:e.hidden)===!1),f=[];return f.push((0,tl.jsx)(vt,{},"reload-button")),d.length>0&&f.push((0,tl.jsx)(pJ.L,{menu:{items:s,onClick:e=>{e.key===gM.N.unpublish&&l(!0)}},open:o,children:(0,tl.jsx)(pK.P,{children:e("toolbar.more")})},"dropdown-button")),(0,tl.jsx)(p8.h,{items:f,noSpacing:!0})};var vr=i(2090);let va=()=>{let{id:e}=(0,ts.useContext)(bY.f),{activeTab:t}=(0,am.H)(e);return[b5.key,y5.key].includes(t??"")?(0,tl.jsx)(vr.k,{}):(0,tl.jsx)(tl.Fragment,{})};var vo=i(3848),vl=i(63406);let vs=()=>{var e;let{t}=(0,t7.useTranslation)(),{id:i}=(0,ts.useContext)(bY.f),{dataObject:n,removeTrackedChanges:r,publishDraft:a}=(0,am.H)(i),{save:o,isLoading:l,isSuccess:s,isError:d,error:f}=(0,vo.O)(),{isAutoSaveLoading:c,runningTask:u}=(0,vl.x)(),{saveSchedules:m,isLoading:p,isSuccess:g,isError:h,error:b}=(0,h8.f)("data-object",i,!1),{getModifiedDataObjectAttributes:y,resetModifiedDataObjectAttributes:v}=(0,bQ.t)(),{deleteDraft:x,isLoading:j,buttonText:w}=(0,b1._)("data-object"),C=(0,h4.U)(),k=(null==n||null==(e=n.draftData)?void 0:e.isAutoSave)===!0;async function T(e,t){(null==n?void 0:n.changes)!==void 0&&Promise.all([o(y(),e,()=>{v(),null==t||t()}),m()]).catch(e=>{console.error(e)})}(0,ts.useEffect)(()=>{(async()=>{s&&g&&(r(),await C.success(t("save-success")))})().catch(e=>{console.error(e)})},[s,g]),(0,ts.useEffect)(()=>{d&&!(0,eY.isNil)(f)?(0,is.ZP)(new is.MS(f)):h&&!(0,eY.isNil)(b)&&(0,is.ZP)(new is.MS(b))},[d,h,f,b]);let S=(()=>{let e=[],i=u===vo.R.Version&&(l||p)||j;if((0,hm.x)(null==n?void 0:n.permissions,"save")){(null==n?void 0:n.published)===!0&&e.push((0,tl.jsx)(ih.Button,{disabled:l||p||i,loading:u===vo.R.Version&&(l||p),onClick:async()=>{await T(vo.R.Version)},type:"default",children:t("toolbar.save-draft")},"save-draft"));let r=l||p||i;(null==n?void 0:n.published)===!1&&(0,hm.x)(null==n?void 0:n.permissions,"save")&&e.push((0,tl.jsx)(ih.Button,{disabled:r,loading:u===vo.R.Publish&&(l||p),onClick:async()=>{await T(vo.R.Publish,()=>{a()})},type:"default",children:t("toolbar.save-and-publish")},"save-draft")),(0,eY.isNil)(null==n?void 0:n.draftData)||e.push((0,tl.jsx)(pJ.L,{menu:{items:[{disabled:l,label:w,key:"delete-draft",onClick:x}]},children:(0,tl.jsx)(aM.h,{disabled:l||p||i,icon:{value:"chevron-down"},loading:j,type:"default"})},"dropdown"))}return e})(),D=(()=>{let e=[],i=l||p||j;return(null==n?void 0:n.published)===!0&&(0,hm.x)(null==n?void 0:n.permissions,"publish")&&e.push((0,tl.jsx)(ih.Button,{disabled:i,loading:u===vo.R.Publish&&(l||p),onClick:async()=>{await T(vo.R.Publish)},type:"primary",children:t("toolbar.save-and-publish")})),(null==n?void 0:n.published)===!1&&(0,hm.x)(null==n?void 0:n.permissions,"save")&&e.push((0,tl.jsx)(ih.Button,{disabled:i,loading:u===vo.R.Save&&(l||p),onClick:async()=>{await T(vo.R.Save)},type:"primary",children:t("toolbar.save-draft")})),e})();return(0,tl.jsxs)(tl.Fragment,{children:[c&&(0,tl.jsx)(o5.u,{title:t("auto-save.loading-tooltip"),children:(0,tl.jsx)(aI.y,{type:"classic"})}),!c&&k&&(0,tl.jsx)(o5.u,{title:t("auto-save.tooltip"),children:(0,tl.jsx)(rR.J,{value:"auto-save"})}),S.length>0&&(0,tl.jsx)(p8.h,{items:S,noSpacing:!0}),D.length>0&&(0,tl.jsx)(p8.h,{items:D,noSpacing:!0})]})};eR._.registerModule({onInit:()=>{let e=eB.nC.get(eO.j["DataObject/Editor/TypeRegistry"]);e.register({name:"object",tabManagerServiceId:"DataObject/Editor/ObjectTabManager"}),e.register({name:"folder",tabManagerServiceId:"DataObject/Editor/FolderTabManager"}),eB.nC.get(eO.j.widgetManager).registerWidget(y9._);let t=eB.nC.get(eO.j["App/ComponentRegistry/ComponentRegistry"]);t.registerToSlot("dataObject.editor.toolbar.slots.left",{name:"contextMenu",priority:100,component:vn}),t.registerToSlot("dataObject.editor.toolbar.slots.left",{name:"languageSelection",priority:200,component:va}),t.registerToSlot("dataObject.editor.toolbar.slots.right",{name:"workflowMenu",priority:100,component:h6}),t.registerToSlot("dataObject.editor.toolbar.slots.right",{name:"saveButtons",priority:200,component:vs})}});var vd=i(10466),vf=i(74939),vc=i(32444),vu=i(50184);let vm=e=>{let{t}=(0,t7.useTranslation)(),i=e.node??bs.l,{addFolderTreeContextMenuItem:n}=(0,bO.p)("data-object"),{renameTreeContextMenuItem:r}=(0,pM.j)("data-object",(0,pA.eG)("data-object","rename",parseInt(i.id))),{deleteTreeContextMenuItem:a}=(0,pI.R)("data-object",(0,pA.eG)("data-object","delete",parseInt(i.id))),{refreshTreeContextMenuItem:o}=(0,bN.T)("data-object"),{copyTreeContextMenuItem:l,cutTreeContextMenuItem:s,pasteCutContextMenuItem:d}=(0,bv.o)("data-object"),{lockTreeContextMenuItem:f,lockAndPropagateTreeContextMenuItem:c,unlockTreeContextMenuItem:u,unlockAndPropagateTreeContextMenuItem:m,isLockMenuHidden:p}=(0,bB.Z)("data-object"),{unpublishTreeContextMenuItem:g}=(0,vi.X)("data-object"),{pasteAsChildRecursiveTreeContextMenuItem:h,pasteRecursiveUpdatingReferencesTreeContextMenuItem:b,pasteAsChildTreeContextMenuItem:y,pasteOnlyContentsTreeContextMenuItem:v,isPasteMenuHidden:x}=(()=>{let{t:e}=(0,t7.useTranslation)(),t=(0,pU.useAppDispatch)(),{paste:i}=(0,bv.o)("data-object"),{treeId:n}=(0,bw.d)(!0),[r]=(0,b9.dX)(),{getStoredNode:a}=(0,vf.K)("data-object"),{isPasteHidden:o}=(0,vc.D)("data-object"),l=async(e,i)=>{t((0,bj.sQ)({treeId:n,nodeId:String(i.id),isFetching:!0}));let a="string"==typeof i.id?parseInt(i.id):i.id,o=r({sourceId:"string"==typeof e.id?parseInt(e.id):e.id,targetId:a});try{let e=await o;void 0!==e.error&&(0,is.ZP)(new is.MS(e.error)),t((0,bj.sQ)({treeId:n,nodeId:String(a),isFetching:!1}))}catch(e){(0,is.ZP)(new is.aE(e.message))}},s=e=>o(e,"copy"),d=e=>{let t=a();return s(e)||"folder"===e.type||e.isLocked||(null==t?void 0:t.type)!==e.type};return{pasteAsChildTreeContextMenuItem:t=>({label:e("element.tree.paste-as-child"),key:gM.N.pasteAsChild,icon:(0,tl.jsx)(rR.J,{value:"paste"}),hidden:s(t),onClick:async()=>{await i(parseInt(t.id),{recursive:!1,updateReferences:!1},a())}}),pasteAsChildRecursiveTreeContextMenuItem:t=>({label:e("element.tree.paste-as-child-recursive"),key:gM.N.pasteAsChildRecursive,icon:(0,tl.jsx)(rR.J,{value:"paste"}),hidden:s(t),onClick:async()=>{await i(parseInt(t.id),{recursive:!0,updateReferences:!1},a())}}),pasteRecursiveUpdatingReferencesTreeContextMenuItem:t=>({label:e("element.tree.paste-recursive-updating-references"),key:gM.N.pasteRecursiveUpdatingReferences,icon:(0,tl.jsx)(rR.J,{value:"paste"}),hidden:s(t),onClick:async()=>{await i(parseInt(t.id),{recursive:!0,updateReferences:!0},a())}}),pasteOnlyContentsTreeContextMenuItem:t=>({label:e("element.tree.paste-only-contents"),key:gM.N.pasteOnlyContents,icon:(0,tl.jsx)(rR.J,{value:"paste"}),hidden:d(t),onClick:async()=>{await l(a(),t)}}),isPasteMenuHidden:e=>{let t=s(e),i=d(e);return t&&i}}})(),{addObjectTreeContextMenuItem:j}=(0,vd.x)(),{publishTreeContextMenuItem:w}=(0,vu.K)("data-object"),C=[j(i),n(i),r(i),l(i),{label:t("element.tree.paste"),key:"paste",icon:(0,tl.jsx)(rR.J,{value:"paste"}),hidden:x(i),children:[h(i),b(i),y(i),v(i)]},s(i),d(i),w(i),g(i),a(i),{label:t("element.tree.context-menu.advanced"),key:"advanced",icon:(0,tl.jsx)(rR.J,{value:"more"}),hidden:p(i),children:[{label:t("element.lock"),key:"advanced-lock",icon:(0,tl.jsx)(rR.J,{value:"lock"}),hidden:p(i),children:[f(i),c(i),u(i),m(i)]}]},o(i)];return(0,tl.jsx)(bV.v,{dataTestId:(0,dM.Mj)("data-object",i.id),items:C})};eR._.registerModule({onInit:()=>{eB.nC.get(eO.j["App/ComponentRegistry/ComponentRegistry"]).register({name:hy.O.dataObject.tree.contextMenu.name,component:vm})}});let vp=e=>{let{t}=(0,t7.useTranslation)();return(0,tl.jsx)(bg,{...e,label:t("data-object.data-object-tree.search",{folderName:e.node.label}),node:e.node,total:e.total})};var vg=i(54658);let vh=bS((m=bs.O,p=(0,ts.forwardRef)((e,t)=>{let{ref:i,...n}=e;return(0,tl.jsx)(m,{...e,ref:t,wrapNode:t=>(0,tl.jsx)(bR.ZP,{renderMenu:()=>(0,tl.jsx)(vm,{node:n}),children:(0,eY.isUndefined)(e.wrapNode)?t:e.wrapNode(t)})})}),g=(0,ts.forwardRef)((e,t)=>{var i;let n=e.metaData.dataObject,{t:r}=(0,t7.useTranslation)();if((null==(i=e.metaData)?void 0:i.dataObject)===void 0)return(0,tl.jsx)(p,{...e});let a=(0,eY.isString)(null==n?void 0:n.key)&&(null==n?void 0:n.key)!==""?null==n?void 0:n.key:r("home");return(0,tl.jsx)(bb._,{info:{icon:e.icon,title:a,type:"data-object",data:{...n}},children:(0,tl.jsx)(p,{...e,ref:t})})}),h=(0,ts.forwardRef)((e,t)=>{let i=e.isLoading??!1,[,{isLoading:n}]=(0,b9.v)({fixedCacheKey:`DATA-OBJECT_ACTION_RENAME_ID_${e.id}`}),[,{isLoading:r}]=(0,bk.um)({fixedCacheKey:`DATA-OBJECT_ACTION_DELETE_ID_${e.id}`}),{isFetching:a,isLoading:o,isDeleting:l}=(0,bd.J)(e.id);return(0,tl.jsx)(g,{...e,danger:i||r||l,isLoading:i||!0!==o&&a||n||r||l||o,ref:t})}),(0,ts.forwardRef)((e,t)=>{var i;let{move:n}=(0,bv.o)("data-object"),{isSourceAllowed:r,isTargetAllowed:a}=bC();if((null==(i=e.metaData)?void 0:i.dataObject)===void 0)return(0,tl.jsx)(h,{...e});let o=e.metaData.dataObject;if(!a(o))return(0,tl.jsx)(h,{...e});let l=e=>{let t=e.data;r(t)&&a(o)&&n({currentElement:{id:t.id,parentId:t.parentId},targetElement:{id:o.id,parentId:o.parentId}}).catch(()=>{(0,is.ZP)(new is.aE("Item could not be moved"))})},s=e=>"data-object"===e.type,d=e=>{let t=e.data;return"data-object"===e.type&&r(t)&&a(o)};return(0,tl.jsx)(h,{...e,ref:t,wrapNode:t=>(0,tl.jsx)(oE.b,{disableDndActiveIndicator:!0,isValidContext:s,isValidData:d,onDrop:l,children:(0,eY.isUndefined)(e.wrapNode)?t:e.wrapNode(t)})})}))),vb=e=>{let{id:t=1,showRoot:i=!0}=e,{openDataObject:n}=(0,vg.n)(),{rootNode:r,isLoading:a}=(0,bD.V)(t,i),o=(0,bE.q)().get(hy.O.dataObject.tree.contextMenu.name);if(i&&a)return(0,tl.jsx)(aL.x,{padding:"small",children:(0,tl.jsx)(by.O,{})});async function l(e){n({config:{id:parseInt(e.id)}})}return(0,tl.jsx)(bl.fr,{contextMenu:o,nodeId:t,onSelect:l,renderFilter:vp,renderNode:vh,renderNodeContent:bl.lG.renderNodeContent,renderPager:bm,rootNode:r,showRoot:i})};eR._.registerModule({onInit:()=>{eB.nC.get(eO.j.widgetManager).registerWidget({name:"data-object-tree",component:vb})}});var vy=i(62667),vv=i(27306),vx=i(23002),vj=i(4169),vw=i(77484);let vC=(0,ia.createStyles)((e,t)=>{let{token:i,css:n}=e,{marginBottom:r}=t,a=((e,t)=>{let i={none:0,mini:e.marginXXS,"extra-small":e.marginXS,small:e.marginSM,normal:e.margin,medium:e.marginMD,large:e.marginLG,"extra-large":e.marginXL,maxi:e.marginXXL};return i[t]??i.normal})(i,r);return{container:n` + `}}),yO={name:"",description:"",shareGlobally:!0,setAsDefault:!1,saveFilters:!1},yB=e=>{var t;let[i,n]=(0,ts.useState)((null==(t=e.initialValues)?void 0:t.shareGlobally)??yO.shareGlobally),[r,a]=(0,ts.useState)(!1),{gridConfig:l,setGridConfig:o}=(0,pV.j)(),s=null==l?void 0:l.sharedUsers,d=null==l?void 0:l.sharedRoles,{t:f}=(0,t7.useTranslation)(),{styles:c}=yR();(0,ts.useEffect)(()=>{var t;null==(t=e.form)||t.resetFields()},[]);let u=()=>{a(!1)},m=(e,t)=>(0,to.jsx)(rR.J,{className:c.icon,options:{width:t??12,height:t??12},value:e});return(0,to.jsxs)(tc.l,{layout:"vertical",onValuesChange:(t,i)=>{var r;null==(r=e.onValuesChange)||r.call(e,t,i);let a=t.shareGlobally;void 0!==a&&(n(t.shareGlobally),(0,eY.isEmpty)(l)||o({...l,shareGlobal:a}))},...e,children:[(0,to.jsx)(tc.l.Item,{label:f("user-management.name"),name:"name",rules:[{required:!0,message:f("form.validation.provide-name")}],children:(0,to.jsx)(tN.Input,{})}),(0,to.jsx)(tc.l.Item,{label:f("description"),name:"description",rules:[{required:!1,message:f("form.validation.provide-description")}],children:(0,to.jsx)(tN.Input.TextArea,{})}),(0,to.jsx)(as.T,{size:"extra-small",children:(0,to.jsx)(tc.l.Item,{name:"setAsDefault",valuePropName:"checked",children:(0,to.jsx)(tN.Checkbox,{children:f("grid.configuration.set-default-template")})})}),(0,to.jsx)(tN.Flex,{align:"center",gap:"mini",children:(0,to.jsx)(tc.l.Item,{name:"shareGlobally",valuePropName:"checked",children:(0,to.jsx)(s0.r,{labelLeft:(0,to.jsx)(nc.x,{children:f("grid.configuration.shared")}),labelRight:!0===i?(0,to.jsx)(nc.x,{className:c.label,children:f("common.globally")}):(0,to.jsxs)(to.Fragment,{children:[(0,to.jsxs)(tN.Flex,{gap:10,children:[(0,to.jsxs)(nc.x,{className:c.label,children:[m("user")," ",f("user-management.user")," | ",m("shield")," ",f("user-management.role")]}),(0,to.jsxs)(tN.Flex,{align:"center",className:c.updateButton,gap:8,onClick:()=>{a(!r)},children:[m("edit",16),(0,to.jsx)(nc.x,{className:c.updateButtonText,children:f("button.add-edit")})]})]}),r&&(0,to.jsx)(yA.h,{handleApplyChanges:e=>{let{sharedUsers:t,sharedRoles:i}=e;(0,eY.isEmpty)(l)||(o({...l,shareGlobal:!1,sharedUsers:t,sharedRoles:i}),u())},handleClose:u,initialSharedRoles:d,initialSharedUsers:s,roleList:null==e?void 0:e.roleList,userList:null==e?void 0:e.userList})]})})})}),!1===i&&(0,to.jsx)(hQ.P,{itemGap:"mini",list:(()=>{var t,i;let n=[],r=[],a=e=>{let{label:t,iconName:i}=e;return{children:(0,to.jsx)(nc.x,{ellipsis:!0,style:{maxWidth:"148px"},type:"secondary",children:t}),icon:m(i),bordered:!1}};return null==(t=e.userList)||t.items.forEach(e=>{(null==l?void 0:l.sharedUsers).includes(e.id)&&n.push(a({label:null==e?void 0:e.username,iconName:"user"}))}),null==(i=e.roleList)||i.items.forEach(e=>{(null==l?void 0:l.sharedRoles).includes(e.id)&&r.push(a({label:null==e?void 0:e.name,iconName:"shield"}))}),[n,r]})(),tagListItemClassNames:c.tag})]})},yF=e=>{let{formProps:t,onCancelClick:i,isLoading:n,onDeleteClick:r,isDeleting:a,saveAsNewConfiguration:l,modificationDate:o,userName:s,...d}=e,{form:f}=t,{t:c}=(0,t7.useTranslation)();return(0,to.jsx)(aF.D,{renderToolbar:(0,to.jsxs)(aO.o,{theme:"secondary",children:[void 0!==r&&!0!==l?(0,to.jsx)(tN.Popconfirm,{cancelText:c("button.cancel"),description:c("grid.configuration.delete-template-confirmation"),okText:c("delete"),onConfirm:r,title:c("grid.configuration.delete-this-template"),children:(0,to.jsx)(dx.W,{disabled:n,icon:{value:"trash"},loading:a,children:c("grid.configuration.delete-template")})}):(0,to.jsx)("div",{}),(0,to.jsxs)(as.T,{size:"mini",children:[(0,to.jsx)(dx.W,{icon:{value:"close"},onClick:i,type:"default",children:c("button.cancel")}),(0,to.jsx)(ai.z,{disabled:a,loading:n,onClick:()=>null==f?void 0:f.submit(),type:"primary",children:c("button.save-apply")})]})]}),children:(0,to.jsx)(aB.V,{padded:!0,children:(0,to.jsxs)(tN.Flex,{gap:"small",vertical:!0,children:[(0,to.jsx)(gq.h,{title:c("grid.configuration.save-template-configuration")}),!0!==l&&(0,to.jsxs)(tN.Row,{children:[(0,to.jsxs)(tN.Col,{span:6,children:[(0,to.jsxs)(nc.x,{children:[c("common.owner"),":"]})," ",(0,to.jsx)(nc.x,{type:"secondary",children:s})]}),!(0,dW.O)(o)&&(0,to.jsxs)(tN.Col,{span:12,children:[(0,to.jsxs)(nc.x,{children:[c("common.modification-date"),": "]}),(0,to.jsx)(nc.x,{type:"secondary",children:(0,dH.o0)({timestamp:o,dateStyle:"short",timeStyle:"short"})})]})]}),(0,to.jsx)(yB,{...t,...d})]})})})};var y_=i(4584),yz=i(61571),yV=i(30683),y$=((u=y$||{}).Edit="edit",u.Save="save",u.Update="update",u);let yW=()=>{let{useElementId:e}=(0,pF.r)(),{getAvailableColumnsDropdown:t}=(0,p_.L)(),{selectedColumns:i,setSelectedColumns:n}=(0,pB.N)(),{columns:r,setColumns:a,addColumn:l}=yd(),{getId:o}=e(),s=(0,dj.a)(),{id:d,setId:f}=(0,pz.m)(),{gridConfig:c,setGridConfig:u}=(0,pV.j)(),{selectedClassDefinition:m}=(0,ye.v)(),{isLoading:p,isFetching:g,data:h}=(0,b9.F6)({classId:m.id}),{data:b}=(0,yz.m)(),{data:y}=(0,yV.Ri)(),{isFetching:v}=(0,b9.LH)({classId:m.id,folderId:o(),configurationId:d}),[x,{isLoading:j}]=(0,b9.j_)(),[w,{isLoading:C}]=(0,b9.Ag)(),[k,{isLoading:T}]=(0,b9.kx)(),[S,D]=(0,ts.useState)(y$.Edit),[E]=(0,y_.Z)(),M=(null==c?void 0:c.name)!=="Predefined"&&void 0!==c,I=(0,ts.useMemo)(()=>{if(void 0!==h){var e;return(null==(e=h.items)?void 0:e.map(e=>({key:e.id,label:e.name,onClick:()=>{f(e.id)}})))??[]}return[]},[h]);(0,ts.useEffect)(()=>{a(i.map(e=>({...e.originalApiDefinition,locale:null==e?void 0:e.locale})))},[i]);let L=e=>{l(e)},P=(0,ts.useMemo)(()=>t(L),[t,r]);function N(e){return e.map(e=>{var t;return{key:e.key,locale:e.locale??null,type:e.type,config:(null==(t=e.__meta)?void 0:t.advancedColumnConfig)??e.config}})}return v||T?(0,to.jsx)(aB.V,{loading:!0}):(0,to.jsxs)(to.Fragment,{children:[S===y$.Edit&&(0,to.jsx)(yN,{addColumnMenu:P.menu.items,columns:r,currentUserId:null==s?void 0:s.id,gridConfig:c,isLoading:p||g,isUpdating:C,onApplyClick:()=>{n(r.map(e=>({key:e.key,locale:null===e.locale&&e.localizable?void 0:e.locale,type:e.type,config:e.config,sortable:e.sortable,editable:e.editable,localizable:e.localizable,exportable:e.exportable,frontendType:e.frontendType,group:e.group,originalApiDefinition:e})))},onCancelClick:()=>{a(i.map(e=>e.originalApiDefinition))},onEditConfigurationClick:()=>{D(y$.Update)},onSaveConfigurationClick:()=>{D(y$.Save)},onUpdateConfigurationClick:function(){if(void 0===c)return void console.error("No grid configuration available");w({configurationId:c.id,body:{folderId:o(),columns:N(r),name:c.name,description:c.description??"",setAsFavorite:c.setAsFavorite,shareGlobal:c.shareGlobal,sharedRoles:c.sharedRoles,sharedUsers:c.sharedUsers,saveFilter:!1,pageSize:0}}).catch(e=>{console.error("Failed to update grid configuration",e)})},savedGridConfigurations:I}),(S===y$.Save||S===y$.Update)&&(0,to.jsx)(yF,{formProps:{form:E,onFinish:function(e){let t=N(r);!0!==e.shareGlobally||(0,eY.isEmpty)(c)||u({...c,sharedUsers:[],sharedRoles:[]}),S===y$.Update&&M&&w({configurationId:c.id,body:{folderId:o(),columns:t,name:e.name,description:e.description,setAsFavorite:e.setAsDefault,shareGlobal:e.shareGlobally,sharedRoles:c.sharedRoles,sharedUsers:c.sharedUsers,saveFilter:!1,pageSize:0}}).catch(e=>{console.error("Failed to update grid configuration",e)}).then(()=>{D(y$.Edit)}).catch(e=>{console.error("Failed to switch to edit view",e)}),S===y$.Save&&x({classId:m.id,body:{folderId:o(),columns:t,name:e.name,description:e.description,setAsFavorite:e.setAsDefault,shareGlobal:e.shareGlobally,sharedRoles:null==c?void 0:c.sharedRoles,sharedUsers:null==c?void 0:c.sharedUsers,saveFilter:!1,pageSize:0}}).catch(e=>{console.error("Failed to save grid configuration",e)}).then(e=>{(null==e?void 0:e.data)!==void 0&&(f(e.data.id),D(y$.Edit))}).catch(e=>{console.error("Failed to switch to edit view",e)})},initialValues:S===y$.Update&&M?{name:null==c?void 0:c.name,description:null==c?void 0:c.description,setAsDefault:null==c?void 0:c.setAsFavorite,shareGlobally:null==c?void 0:c.shareGlobal}:{...yO}},isDeleting:T,isLoading:j||C,modificationDate:null==c?void 0:c.modificationDate,onCancelClick:()=>{D(y$.Edit)},onDeleteClick:M?function(){M&&k({configurationId:c.id}).then(()=>{D(y$.Edit),f(void 0)}).catch(e=>{console.error("Failed to switch to edit view",e)})}:void 0,roleList:b,saveAsNewConfiguration:S===y$.Save,userList:y,userName:null==s?void 0:s.username})]})},yH=()=>(0,to.jsx)(ys,{children:(0,to.jsx)(yW,{})}),yG=(0,ts.createContext)({batchEdits:[],setBatchEdits:()=>{}}),yU=e=>{let{children:t}=e,[i,n]=(0,ts.useState)([]);return(0,ts.useMemo)(()=>(0,to.jsx)(yG.Provider,{value:{batchEdits:i,setBatchEdits:n},children:t}),[i,t])},yq=()=>{let{batchEdits:e,setBatchEdits:t}=(0,ts.useContext)(yG),i=(0,p5.r)();return{batchEdits:e,setBatchEdits:t,addOrUpdateBatchEdit:(n,r)=>{let a={...n,locale:n.localizable?n.locale??i.requiredLanguages[0]:null,value:r},l=[...e],o=e.findIndex(e=>e.key===a.key);-1!==o?l[o]=a:l.push(a),t(l)},updateLocale:(i,n)=>{t(e.map(e=>e.key===i?{...e,locale:n}:e))},resetBatchEdits:()=>{t([])},removeBatchEdit:i=>{t(e.filter(e=>e.key!==i))}}},yZ=e=>{let{batchEdit:t}=e,{frontendType:i,type:n}=t,{getComponentRenderer:r}=(0,tR.D)();return(0,ts.useMemo)(()=>{let{ComponentRenderer:e}=r({dynamicTypeIds:[n,i],target:"BATCH_EDIT"});return null===e?(0,to.jsx)(to.Fragment,{children:"Dynamic Field Filter not supported"}):(0,to.jsx)(to.Fragment,{children:e({batchEdit:t})})},[t])},yK=()=>{let{batchEdits:e,removeBatchEdit:t}=yq(),{updateLocale:i}=yq(),n=(0,p5.r)(),r=n.requiredLanguages,a=e.map(e=>{let a=e.locale??n.requiredLanguages[0];return{id:e.key,children:(0,to.jsx)(tN.Tag,{children:(0,ii.t)(`${e.key}`)}),renderRightToolbar:(0,to.jsx)(p8.h,{items:[...e.localizable?[(0,to.jsx)(p7.k,{languages:r,onSelectLanguage:t=>{i(e.key,(0,p7.N)(t))},selectedLanguage:a},"language-selection")]:[],(0,to.jsx)(aM.h,{icon:{value:"close"},onClick:()=>{t(e.key)}},"remove")]}),body:(0,to.jsx)(yZ,{batchEdit:e})}});return(0,to.jsxs)(to.Fragment,{children:[0===a.length&&(0,to.jsx)(dV.d,{text:(0,ii.t)("batch-edit.no-content")}),a.length>0&&(0,to.jsx)(p4.f,{items:a})]})},yJ=(e,t,i,n)=>e.map(e=>{if(!(null!==e&&"children"in e&&void 0!==e.children&&Array.isArray(e.children)))return((e,t,i,n)=>{let r=!0===e.editable,a=t.some(t=>e.key===t.key&&((e,t)=>{let i=e=>"string"==typeof e?e.split("."):Array.isArray(e)?e.flat().map(e=>String(e)):[String(e)],n=i(e),r=i(t);return n.length===r.length&&n.every((e,t)=>e===r[t])})(e.group,t.group)),l=i({target:"BATCH_EDIT",dynamicTypeIds:[null==e?void 0:e.mainType,null==e?void 0:e.frontendType]}),o=!1,s=eB.nC.get(eO.j["DynamicTypes/ObjectDataRegistry"]);return s.hasDynamicType(null==e?void 0:e.frontendType)&&(o=s.getDynamicType(null==e?void 0:e.frontendType).isAllowedInBatchEdit),r&&l&&!a&&o})(e,t,i,0)?e:null;{let r=yJ(e.children,t,i,n);return{...e,children:r}}}).filter(e=>null!==e&&(!("children"in e&&void 0!==e.children&&Array.isArray(e.children))||e.children.length>0)),yX=e=>e.some(e=>!(null!==e&&"children"in e&&void 0!==e.children&&Array.isArray(e.children))||yX(e.children)),yQ=e=>{let{batchEditModalOpen:t,setBatchEditModalOpen:i}=e,{getAvailableColumnsDropdown:n}=(0,p_.L)(),{batchEdits:r,addOrUpdateBatchEdit:a,resetBatchEdits:l}=yq(),[o]=tc.l.useForm(),{selectedRows:s}=(0,gt.G)(),[d,{error:f,isError:c,isSuccess:u}]=(0,bG.c3)(),[m,{error:p,isError:g,isSuccess:h}]=(0,bG.v)(),{useDataQueryHelper:b}=(0,pF.r)(),{getArgs:y}=b(),{id:v,elementType:x}=(0,io.i)(),j=(0,pU.useAppDispatch)(),{addJob:w}=(0,gn.C)(),C=Object.keys(s??{}),k=C.length,{hasType:T,getType:S}=(0,tR.D)(),{refreshGrid:D}=(0,go.g)(x),E=()=>{l(),o.resetFields()};(0,ts.useEffect)(()=>{c&&(0,is.ZP)(new is.MS(f)),g&&(0,is.ZP)(new is.MS(p))},[f,p]),(0,ts.useEffect)(()=>{(u||h)&&E(),h&&1===k&&j(bG.hi.util.invalidateTags(gi.xc.DATA_OBJECT_GRID_ID(v)))},[u,h]);let M=async e=>{0===k?w(gl({title:(0,ii.t)("batch-edit.job-title"),topics:[dp.F["patch-finished"],...dp.b],action:async()=>{var t,i,n,r;let a=await d({body:{data:[{folderId:v,editableData:e}],filters:null==(i=y())||null==(t=i.body)?void 0:t.filters}});if((null==(n=a.data)?void 0:n.jobRunId)===void 0)throw(0,is.ZP)(new is.aE("JobRunId is undefined")),Error("JobRunId is undefined");return null==(r=a.data)?void 0:r.jobRunId},refreshGrid:D,assetContextId:v})):1===k?await m({body:{data:[{id:parseInt(C[0]),editableData:e}]}}):w(gl({title:(0,ii.t)("batch-edit.job-title"),topics:[dp.F["patch-finished"],...dp.b],action:async()=>{var t,i;let n=await m({body:{data:C.map(t=>({id:parseInt(t),editableData:e}))}});if((null==(t=n.data)?void 0:t.jobRunId)===void 0)throw(0,is.ZP)(new is.aE("JobRunId is undefined")),Error("JobRunId is undefined");return null==(i=n.data)?void 0:i.jobRunId},refreshGrid:D,assetContextId:v})),E(),i(!1)},I=n(e=>{a(e,void 0)}).menu.items,L=(0,ts.useMemo)(()=>()=>(0,eY.isUndefined)(I)?[]:yJ(I,r,T,S),[I,r,T,S]),P=!yX(L());return(0,to.jsx)(bK.w,{children:(0,to.jsx)(p2.i,{afterClose:()=>{E()},footer:(0,to.jsxs)(p1.m,{divider:!0,justify:"space-between",children:[(0,to.jsx)(pJ.L,{menu:{items:L()},children:(0,to.jsx)(dx.W,{disabled:P,icon:{value:"new"},type:"default",children:(0,ii.t)("listing.add-column")})}),r.length>0&&(0,to.jsxs)(rZ.k,{align:"center",gap:"extra-small",children:[(0,to.jsx)(dx.W,{icon:{value:"close"},onClick:()=>{E()},type:"link",children:(0,ii.t)("batch-edit.modal-footer.discard-all-changes")}),(0,to.jsx)(ai.z,{onClick:()=>{o.submit()},type:"primary",children:(0,ii.t)("batch-edit.modal-footer.apply-changes")})]})]}),onCancel:()=>{i(!1)},open:t,size:"XL",title:(0,to.jsx)(p3.r,{children:(0,ii.t)("batch-edit.modal-title")}),children:(0,to.jsx)(tx._v,{fieldWidthValues:{large:9999,medium:9999,small:9999},children:(0,to.jsx)(tc.l,{form:o,onFinish:M,children:(0,to.jsx)(yK,{})})})})})},yY=()=>{let e=(0,pQ.J)(),{id:t,elementType:i}=(0,io.i)(),{refreshGrid:n}=(0,go.g)(i),[r,a]=(0,ts.useState)(!1),[l,o]=(0,ts.useState)(!1),[s,d]=(0,ts.useState)(!1),[f]=(0,b9.CV)(),{addJob:c}=(0,gn.C)(),{t:u}=(0,t7.useTranslation)();if(void 0===e)return(0,to.jsx)(to.Fragment,{});let{selectedRows:m}=e,p=void 0!==m?Object.keys(m).map(Number):[],g=void 0!==m&&Object.keys(m).length>0,h={items:[{key:"1",label:u("listing.actions.batch-edit"),icon:(0,to.jsx)(rR.J,{value:"batch-selection"}),onClick:()=>{a(!0)}},{key:"2",label:u("listing.actions.export"),icon:(0,to.jsx)(rR.J,{value:"export"}),children:[{key:"2.1",label:u("listing.actions.csv-export"),icon:(0,to.jsx)(rR.J,{value:"export"}),onClick:()=>{o(!0)}},{key:"2.2",label:u("listing.actions.xlsx-export"),icon:(0,to.jsx)(rR.J,{value:"export"}),onClick:()=>{d(!0)}}]},{key:"3",label:u("listing.actions.delete"),icon:(0,to.jsx)(rR.J,{value:"trash"}),onClick:()=>{c(gT({title:u("batch-delete.job-title"),topics:[dp.F["deletion-finished"],...dp.b],action:async()=>{var e,t;let i=await f({body:{ids:p}});if((0,eY.isUndefined)(null==(e=i.data)?void 0:e.jobRunId))throw(0,is.ZP)(new is.aE("JobRunId is undefined")),Error("JobRunId is undefined");return null==(t=i.data)?void 0:t.jobRunId},refreshGrid:n,assetContextId:t}))}}]};return(0,to.jsxs)(to.Fragment,{children:[(0,to.jsx)(pJ.L,{menu:h,children:(0,to.jsx)(pK.P,{children:g?u("listing.actions"):u("listing.non-selected.actions")},"dropdown-button")}),(0,to.jsx)(gw,{open:l,setOpen:o}),(0,to.jsx)(gk,{open:s,setOpen:d}),(0,to.jsx)(yU,{children:(0,to.jsx)(yQ,{batchEditModalOpen:r,setBatchEditModalOpen:a})})]})},y0=()=>{let{selectedRows:e}=(0,gt.G)(),t=Object.keys(e??{}).length;return(0,ts.useMemo)(()=>(0,to.jsxs)(aO.o,{theme:"secondary",children:[(0,to.jsxs)(aR.P,{children:[(0,to.jsxs)(as.T,{size:"extra-small",children:[t>0&&(0,to.jsx)(fu.q,{}),t<=0&&(0,to.jsx)(fj.i,{})]}),(0,to.jsx)(yY,{})]}),(0,to.jsxs)(aR.P,{size:"extra-small",children:[(0,to.jsx)(fm.s,{}),(0,to.jsx)(fp.t,{})]})]}),[t])};var y1=i(93430);let y2=(0,aj.createColumnHelper)(),y3=e=>{let{row:t}=e,{openGridContextMenuItem:i}=(0,pN.y)("data-object"),{deleteGridContextMenuItem:n}=(0,pI.R)("data-object"),{locateInTreeGridContextMenuItem:r}=(0,gI.B)("data-object"),[a,l]=(0,ts.useState)(void 0),o=[i(t),r(t,()=>{l(void 0)}),n(t)].filter(Boolean);return(0,to.jsx)(pJ.L,{menu:{items:o,onClick:e=>{e.key===gM.N.locateInTree&&l(!0)}},open:a,trigger:["contextMenu"],children:e.children},t.id)};var y6=i(41595);let y4={...fe.l,ViewComponent:()=>{let{dataQueryResult:e}=(0,fl.e)(),{selectedClassDefinition:t}=(0,ye.v)();return(0,ts.useMemo)(()=>(0,to.jsx)(aF.D,{renderSidebar:void 0!==e?(0,to.jsx)(fo.Y,{}):void 0,renderToolbar:void 0!==e?(0,to.jsx)(y0,{}):void 0,children:void 0!==t&&void 0!==e&&(0,to.jsx)(fs.T,{})}),[e])},useDataQuery:b9.v$,useDataQueryHelper:()=>{let{useElementId:e}=(0,pF.r)(),{getId:t}=e(),{selectedColumns:i}=(0,pB.N)(),{availableColumns:n}=(0,p_.L)(),{selectedClassDefinition:r}=(0,ye.v)(),{dataLoadingState:a,setDataLoadingState:l}=(0,fl.e)(),{currentLanguage:o}=(0,yt.Xh)(),s=[];i.forEach(e=>{let t;if("dataobject.advanced"===e.type){var i,n;t=null==(n=e.originalApiDefinition)||null==(i=n.__meta)?void 0:i.advancedColumnConfig}s.push({key:e.key,type:e.type,locale:e.localizable?e.locale??o:void 0,config:t??e.config})}),n.filter(e=>Array.isArray(e.group)&&e.group.includes("system")).forEach(e=>{s.some(t=>t.key===e.key)||s.push({key:e.key,type:e.type,locale:e.locale,config:[]})});let d=()=>{if(void 0===r)throw Error("No class definition selected");return{classId:r.id,body:{folderId:t(),columns:s,filters:{includeDescendants:!0,page:1,pageSize:20}}}};return{getArgs:d,hasRequiredArgs:()=>void 0!==d().body.folderId||void 0!==r,dataLoadingState:a,setDataLoadingState:l}},useElementId:pq,useColumnMapper:()=>{let e=(0,yt.Xh)(),t=(0,ts.useRef)(e.currentLanguage),{shouldMapDataToColumn:i,...n}=(0,y6.r)();t.current=e.currentLanguage;let r=(0,ts.useCallback)((e,n)=>{let r=t.current;return n.localizable&&(null===n.locale||void 0===n.locale)?e.key===n.key&&r===e.locale:i(e,n)},[i]);return{...n,shouldMapDataToColumn:r}}},y8=(0,fr.q)(e=>{let{useGridOptions:t,...i}=e;return{...i,useGridOptions:()=>{let{t:e}=(0,t7.useTranslation)(),{transformGridColumnDefinition:i,...n}=t();return{...n,transformGridColumnDefinition:t=>{let n=i(t);return n.push(y2.accessor("actions",{header:e("actions.open"),enableSorting:!1,meta:{type:"data-object-actions"},size:65})),n}}}}},fn.y,fi.L,[fT.F,{showConfigLayer:!0}],e=>{let{ConfigurationComponent:t,ContextComponent:i,useGridOptions:n,useSidebarOptions:r,...a}=e;return{...a,ConfigurationComponent:()=>{let{selectedClassDefinition:e}=(0,ye.v)();return void 0===e?(0,to.jsx)(aB.V,{padded:!0,children:(0,to.jsxs)(rZ.k,{align:"center",gap:"extra-small",children:[(0,to.jsx)(nc.x,{children:"Select a class to display"}),(0,to.jsx)(fj.i,{})]})}):(0,to.jsx)(yi,{Component:t})},ContextComponent:()=>(0,to.jsx)(yr.H,{children:(0,to.jsx)(yn.c,{children:(0,to.jsx)(ya.i,{children:(0,to.jsx)(i,{})})})}),useGridOptions:(0,yl.m)(n),useSidebarOptions:()=>{let{getProps:e}=r(),{t}=(0,t7.useTranslation)();return{getProps:()=>{let i=e();return{...i,entries:[...i.entries,{component:(0,to.jsx)(yH,{}),key:"configuration",icon:(0,to.jsx)(rR.J,{value:"settings"}),tooltip:t("sidebar.grid_config")}]}}}}}},[pG,{useInlineEditApiUpdate:()=>{let[e]=(0,bG.v)(),t=(0,pU.useAppDispatch)(),{currentLanguage:i}=(0,yt.Xh)(),{useColumnMapper:n}=(0,pF.r)(),r=n();return{updateCache:e=>{let{update:i,getGetRequestArgs:n}=e,{id:a,column:l,value:o}=i;t(bG.hi.util.updateQueryData("dataObjectGetGrid",n,e=>{e:for(let t of e.items)if(t.id===a){for(let e of t.columns)if(r.shouldMapDataToColumn(e,l)){e.value=o,!(0,eY.isNil)(e.inheritance)&&"inherited"in e.inheritance&&!0===e.inheritance.inherited&&(e.inheritance.inherited=!1);break e}}return e}))},updateApiData:async t=>{var n;let{update:r}=t,a=r.column.key;if(r.column.localizable){let e=(a??"").split("."),t=e[e.length-1];e.pop();let n=e.length>0&&""!==e[0];a=`${e.join(".")}${n?".":""}localizedfields.${t}.${r.column.locale??i}`}let l=(null==(n=t.meta)?void 0:n[y1.W1])===!0?(0,y1.cI)(r.value,y1.vI.Replace):r.value,o="published"===a,s=e({body:{data:[{id:r.id,...o?{published:l}:{editableData:{...(0,eY.set)({},a??"",l)}}}]}}),d=await s;return(0,eY.isNil)(d.error)||(0,is.ZP)(new is.MS(d.error)),d}}}}],[pH.G,{rowSelectionMode:"multiple"}],e=>{let{useGridOptions:t,...i}=e;return{...i,useGridOptions:()=>{let{getGridProps:e,...i}=t();return{...i,getGridProps:()=>({...e(),contextMenu:y3})}}}},d7.p,ft.o)(y4),y7=()=>(0,to.jsx)(d9.d,{serviceIds:["DynamicTypes/ObjectDataRegistry","DynamicTypes/GridCellRegistry","DynamicTypes/ListingRegistry","DynamicTypes/BatchEditRegistry","DynamicTypes/FieldFilterRegistry"],children:(0,to.jsx)(fe.p,{...y8})}),y5={key:"listing",label:"folder.folder-editor-tabs.view",children:(0,to.jsx)(()=>(0,to.jsx)(y7,{}),{}),icon:(0,to.jsx)(rR.J,{value:"list"}),isDetachable:!1};eR._.registerModule({onInit:()=>{let e=eB.nC.get(eO.j["DataObject/Editor/FolderTabManager"]);e.register(y5),e.register(pC.D9),e.register(pC.On),e.register(pC._P),e.register(pC.Hy),e.register(pC.zd)}});var y9=i(70439),ve=i(88087);let vt=()=>{let{t:e}=(0,t7.useTranslation)(),{id:t}=(0,ts.useContext)(bY.f),{dataObject:i}=(0,am.H)(t),{refreshElement:n}=(0,hK.C)("data-object"),{isLoading:r,layouts:a}=(0,ve.z)(t),{setCurrentLayout:l,currentLayout:o}=b7(),[s,d]=(0,ts.useState)(),f=(0,ts.useRef)(null);if((0,ts.useEffect)(()=>{if((0,eY.isString)(s)){var e;null==(e=f.current)||e.refresh()}},[s]),r)return(0,to.jsx)(to.Fragment,{});let c=()=>Object.keys((null==i?void 0:i.changes)??{}).length>0,u=(a??[]).map(t=>({key:`reload-${t.id}`,label:(0,to.jsx)(nc.x,{strong:o===t.id,children:e(t.name)}),onClick:()=>{d(t.id)}}));return(0,to.jsxs)(to.Fragment,{children:[(0,to.jsx)(hJ.t,{hasDataChanged:c,onReload:()=>{n(t,!0)},title:e("toolbar.reload.confirmation"),children:(0,to.jsx)(aM.h,{icon:{value:"refresh"},children:e("toolbar.reload")})},"reload"),u.length>1&&(0,to.jsxs)(to.Fragment,{children:[(0,to.jsx)(hJ.t,{hasDataChanged:c,onCancel:()=>{d(null)},onReload:()=>{(0,eY.isString)(s)&&l(s),n(t,!0)},ref:f,title:e("toolbar.reload.confirmation")},"reload"),(0,to.jsx)(pJ.L,{menu:{items:u},trigger:["hover"],children:(0,to.jsx)(aM.h,{icon:{value:"chevron-down"},onClick:e=>{e.stopPropagation()},children:e("toolbar.switch-layout")})},"switch-layout")]})]})};var vi=i(98994);let vn=()=>{let{t:e}=(0,t7.useTranslation)(),{id:t}=(0,ts.useContext)(bY.f),{dataObject:i}=(0,am.H)(t),{unpublishContextMenuItem:n}=(0,vi.X)("data-object"),{renameContextMenuItem:r}=(0,pM.j)("data-object"),{deleteContextMenuItem:a}=(0,pI.R)("data-object"),[l,o]=(0,ts.useState)(void 0),s=[n(i,()=>{o(void 0)}),a(i),r(i)],d=s.filter(e=>null!==e&&"hidden"in e&&(null==e?void 0:e.hidden)===!1),f=[];return f.push((0,to.jsx)(vt,{},"reload-button")),d.length>0&&f.push((0,to.jsx)(pJ.L,{menu:{items:s,onClick:e=>{e.key===gM.N.unpublish&&o(!0)}},open:l,children:(0,to.jsx)(pK.P,{children:e("toolbar.more")})},"dropdown-button")),(0,to.jsx)(p8.h,{items:f,noSpacing:!0})};var vr=i(2090);let va=()=>{let{id:e}=(0,ts.useContext)(bY.f),{activeTab:t}=(0,am.H)(e);return[b5.key,y5.key].includes(t??"")?(0,to.jsx)(vr.k,{}):(0,to.jsx)(to.Fragment,{})};var vl=i(3848),vo=i(63406);let vs=()=>{var e;let{t}=(0,t7.useTranslation)(),{id:i}=(0,ts.useContext)(bY.f),{dataObject:n,removeTrackedChanges:r,publishDraft:a}=(0,am.H)(i),{save:l,isLoading:o,isSuccess:s,isError:d,error:f}=(0,vl.O)(),{isAutoSaveLoading:c,runningTask:u}=(0,vo.x)(),{saveSchedules:m,isLoading:p,isSuccess:g,isError:h,error:b}=(0,h8.f)("data-object",i,!1),{getModifiedDataObjectAttributes:y,resetModifiedDataObjectAttributes:v}=(0,bQ.t)(),{deleteDraft:x,isLoading:j,buttonText:w}=(0,b1._)("data-object"),C=(0,h4.U)(),k=(null==n||null==(e=n.draftData)?void 0:e.isAutoSave)===!0;async function T(e,t){(null==n?void 0:n.changes)!==void 0&&Promise.all([l(y(),e,()=>{v(),null==t||t()}),m()]).catch(e=>{console.error(e)})}(0,ts.useEffect)(()=>{(async()=>{s&&g&&(r(),await C.success(t("save-success")))})().catch(e=>{console.error(e)})},[s,g]),(0,ts.useEffect)(()=>{d&&!(0,eY.isNil)(f)?(0,is.ZP)(new is.MS(f)):h&&!(0,eY.isNil)(b)&&(0,is.ZP)(new is.MS(b))},[d,h,f,b]);let S=(()=>{let e=[],i=u===vl.R.Version&&(o||p)||j;if((0,hm.x)(null==n?void 0:n.permissions,"save")){(null==n?void 0:n.published)===!0&&e.push((0,to.jsx)(ih.Button,{disabled:o||p||i,loading:u===vl.R.Version&&(o||p),onClick:async()=>{await T(vl.R.Version)},type:"default",children:t("toolbar.save-draft")},"save-draft"));let r=o||p||i;(null==n?void 0:n.published)===!1&&(0,hm.x)(null==n?void 0:n.permissions,"save")&&e.push((0,to.jsx)(ih.Button,{disabled:r,loading:u===vl.R.Publish&&(o||p),onClick:async()=>{await T(vl.R.Publish,()=>{a()})},type:"default",children:t("toolbar.save-and-publish")},"save-draft")),(0,eY.isNil)(null==n?void 0:n.draftData)||e.push((0,to.jsx)(pJ.L,{menu:{items:[{disabled:o,label:w,key:"delete-draft",onClick:x}]},children:(0,to.jsx)(aM.h,{disabled:o||p||i,icon:{value:"chevron-down"},loading:j,type:"default"})},"dropdown"))}return e})(),D=(()=>{let e=[],i=o||p||j;return(null==n?void 0:n.published)===!0&&(0,hm.x)(null==n?void 0:n.permissions,"publish")&&e.push((0,to.jsx)(ih.Button,{disabled:i,loading:u===vl.R.Publish&&(o||p),onClick:async()=>{await T(vl.R.Publish)},type:"primary",children:t("toolbar.save-and-publish")})),(null==n?void 0:n.published)===!1&&(0,hm.x)(null==n?void 0:n.permissions,"save")&&e.push((0,to.jsx)(ih.Button,{disabled:i,loading:u===vl.R.Save&&(o||p),onClick:async()=>{await T(vl.R.Save)},type:"primary",children:t("toolbar.save-draft")})),e})();return(0,to.jsxs)(to.Fragment,{children:[c&&(0,to.jsx)(l5.u,{title:t("auto-save.loading-tooltip"),children:(0,to.jsx)(aI.y,{type:"classic"})}),!c&&k&&(0,to.jsx)(l5.u,{title:t("auto-save.tooltip"),children:(0,to.jsx)(rR.J,{value:"auto-save"})}),S.length>0&&(0,to.jsx)(p8.h,{items:S,noSpacing:!0}),D.length>0&&(0,to.jsx)(p8.h,{items:D,noSpacing:!0})]})};eR._.registerModule({onInit:()=>{let e=eB.nC.get(eO.j["DataObject/Editor/TypeRegistry"]);e.register({name:"object",tabManagerServiceId:"DataObject/Editor/ObjectTabManager"}),e.register({name:"folder",tabManagerServiceId:"DataObject/Editor/FolderTabManager"}),eB.nC.get(eO.j.widgetManager).registerWidget(y9._);let t=eB.nC.get(eO.j["App/ComponentRegistry/ComponentRegistry"]);t.registerToSlot("dataObject.editor.toolbar.slots.left",{name:"contextMenu",priority:100,component:vn}),t.registerToSlot("dataObject.editor.toolbar.slots.left",{name:"languageSelection",priority:200,component:va}),t.registerToSlot("dataObject.editor.toolbar.slots.right",{name:"workflowMenu",priority:100,component:h6}),t.registerToSlot("dataObject.editor.toolbar.slots.right",{name:"saveButtons",priority:200,component:vs})}});var vd=i(10466),vf=i(74939),vc=i(32444),vu=i(50184);let vm=e=>{let{t}=(0,t7.useTranslation)(),i=e.node??bs.l,{addFolderTreeContextMenuItem:n}=(0,bO.p)("data-object"),{renameTreeContextMenuItem:r}=(0,pM.j)("data-object",(0,pA.eG)("data-object","rename",parseInt(i.id))),{deleteTreeContextMenuItem:a}=(0,pI.R)("data-object",(0,pA.eG)("data-object","delete",parseInt(i.id))),{refreshTreeContextMenuItem:l}=(0,bN.T)("data-object"),{copyTreeContextMenuItem:o,cutTreeContextMenuItem:s,pasteCutContextMenuItem:d}=(0,bv.o)("data-object"),{lockTreeContextMenuItem:f,lockAndPropagateTreeContextMenuItem:c,unlockTreeContextMenuItem:u,unlockAndPropagateTreeContextMenuItem:m,isLockMenuHidden:p}=(0,bB.Z)("data-object"),{unpublishTreeContextMenuItem:g}=(0,vi.X)("data-object"),{pasteAsChildRecursiveTreeContextMenuItem:h,pasteRecursiveUpdatingReferencesTreeContextMenuItem:b,pasteAsChildTreeContextMenuItem:y,pasteOnlyContentsTreeContextMenuItem:v,isPasteMenuHidden:x}=(()=>{let{t:e}=(0,t7.useTranslation)(),t=(0,pU.useAppDispatch)(),{paste:i}=(0,bv.o)("data-object"),{treeId:n}=(0,bw.d)(!0),[r]=(0,b9.dX)(),{getStoredNode:a}=(0,vf.K)("data-object"),{isPasteHidden:l}=(0,vc.D)("data-object"),o=async(e,i)=>{t((0,bj.sQ)({treeId:n,nodeId:String(i.id),isFetching:!0}));let a="string"==typeof i.id?parseInt(i.id):i.id,l=r({sourceId:"string"==typeof e.id?parseInt(e.id):e.id,targetId:a});try{let e=await l;void 0!==e.error&&(0,is.ZP)(new is.MS(e.error)),t((0,bj.sQ)({treeId:n,nodeId:String(a),isFetching:!1}))}catch(e){(0,is.ZP)(new is.aE(e.message))}},s=e=>l(e,"copy"),d=e=>{let t=a();return s(e)||"folder"===e.type||e.isLocked||(null==t?void 0:t.type)!==e.type};return{pasteAsChildTreeContextMenuItem:t=>({label:e("element.tree.paste-as-child"),key:gM.N.pasteAsChild,icon:(0,to.jsx)(rR.J,{value:"paste"}),hidden:s(t),onClick:async()=>{await i(parseInt(t.id),{recursive:!1,updateReferences:!1},a())}}),pasteAsChildRecursiveTreeContextMenuItem:t=>({label:e("element.tree.paste-as-child-recursive"),key:gM.N.pasteAsChildRecursive,icon:(0,to.jsx)(rR.J,{value:"paste"}),hidden:s(t),onClick:async()=>{await i(parseInt(t.id),{recursive:!0,updateReferences:!1},a())}}),pasteRecursiveUpdatingReferencesTreeContextMenuItem:t=>({label:e("element.tree.paste-recursive-updating-references"),key:gM.N.pasteRecursiveUpdatingReferences,icon:(0,to.jsx)(rR.J,{value:"paste"}),hidden:s(t),onClick:async()=>{await i(parseInt(t.id),{recursive:!0,updateReferences:!0},a())}}),pasteOnlyContentsTreeContextMenuItem:t=>({label:e("element.tree.paste-only-contents"),key:gM.N.pasteOnlyContents,icon:(0,to.jsx)(rR.J,{value:"paste"}),hidden:d(t),onClick:async()=>{await o(a(),t)}}),isPasteMenuHidden:e=>{let t=s(e),i=d(e);return t&&i}}})(),{addObjectTreeContextMenuItem:j}=(0,vd.x)(),{publishTreeContextMenuItem:w}=(0,vu.K)("data-object"),C=[j(i),n(i),r(i),o(i),{label:t("element.tree.paste"),key:"paste",icon:(0,to.jsx)(rR.J,{value:"paste"}),hidden:x(i),children:[h(i),b(i),y(i),v(i)]},s(i),d(i),w(i),g(i),a(i),{label:t("element.tree.context-menu.advanced"),key:"advanced",icon:(0,to.jsx)(rR.J,{value:"more"}),hidden:p(i),children:[{label:t("element.lock"),key:"advanced-lock",icon:(0,to.jsx)(rR.J,{value:"lock"}),hidden:p(i),children:[f(i),c(i),u(i),m(i)]}]},l(i)];return(0,to.jsx)(bV.v,{dataTestId:(0,dM.Mj)("data-object",i.id),items:C})};eR._.registerModule({onInit:()=>{eB.nC.get(eO.j["App/ComponentRegistry/ComponentRegistry"]).register({name:hy.O.dataObject.tree.contextMenu.name,component:vm})}});let vp=e=>{let{t}=(0,t7.useTranslation)();return(0,to.jsx)(bg,{...e,label:t("data-object.data-object-tree.search",{folderName:e.node.label}),node:e.node,total:e.total})};var vg=i(54658);let vh=bS((m=bs.O,p=(0,ts.forwardRef)((e,t)=>{let{ref:i,...n}=e;return(0,to.jsx)(m,{...e,ref:t,wrapNode:t=>(0,to.jsx)(bR.ZP,{renderMenu:()=>(0,to.jsx)(vm,{node:n}),children:(0,eY.isUndefined)(e.wrapNode)?t:e.wrapNode(t)})})}),g=(0,ts.forwardRef)((e,t)=>{var i;let n=e.metaData.dataObject,{t:r}=(0,t7.useTranslation)();if((null==(i=e.metaData)?void 0:i.dataObject)===void 0)return(0,to.jsx)(p,{...e});let a=(0,eY.isString)(null==n?void 0:n.key)&&(null==n?void 0:n.key)!==""?null==n?void 0:n.key:r("home");return(0,to.jsx)(bb._,{info:{icon:e.icon,title:a,type:"data-object",data:{...n}},children:(0,to.jsx)(p,{...e,ref:t})})}),h=(0,ts.forwardRef)((e,t)=>{let i=e.isLoading??!1,[,{isLoading:n}]=(0,b9.v)({fixedCacheKey:`DATA-OBJECT_ACTION_RENAME_ID_${e.id}`}),[,{isLoading:r}]=(0,bk.um)({fixedCacheKey:`DATA-OBJECT_ACTION_DELETE_ID_${e.id}`}),{isFetching:a,isLoading:l,isDeleting:o}=(0,bd.J)(e.id);return(0,to.jsx)(g,{...e,danger:i||r||o,isLoading:i||!0!==l&&a||n||r||o||l,ref:t})}),(0,ts.forwardRef)((e,t)=>{var i;let{move:n}=(0,bv.o)("data-object"),{isSourceAllowed:r,isTargetAllowed:a}=bC();if((null==(i=e.metaData)?void 0:i.dataObject)===void 0)return(0,to.jsx)(h,{...e});let l=e.metaData.dataObject;if(!a(l))return(0,to.jsx)(h,{...e});let o=e=>{let t=e.data;r(t)&&a(l)&&n({currentElement:{id:t.id,parentId:t.parentId},targetElement:{id:l.id,parentId:l.parentId}}).catch(()=>{(0,is.ZP)(new is.aE("Item could not be moved"))})},s=e=>"data-object"===e.type,d=e=>{let t=e.data;return"data-object"===e.type&&r(t)&&a(l)};return(0,to.jsx)(h,{...e,ref:t,wrapNode:t=>(0,to.jsx)(lE.b,{disableDndActiveIndicator:!0,isValidContext:s,isValidData:d,onDrop:o,children:(0,eY.isUndefined)(e.wrapNode)?t:e.wrapNode(t)})})}))),vb=e=>{let{id:t=1,showRoot:i=!0}=e,{openDataObject:n}=(0,vg.n)(),{rootNode:r,isLoading:a}=(0,bD.V)(t,i),l=(0,bE.q)().get(hy.O.dataObject.tree.contextMenu.name);if(i&&a)return(0,to.jsx)(aL.x,{padding:"small",children:(0,to.jsx)(by.O,{})});async function o(e){n({config:{id:parseInt(e.id)}})}return(0,to.jsx)(bo.fr,{contextMenu:l,nodeId:t,onSelect:o,renderFilter:vp,renderNode:vh,renderNodeContent:bo.lG.renderNodeContent,renderPager:bm,rootNode:r,showRoot:i})};eR._.registerModule({onInit:()=>{eB.nC.get(eO.j.widgetManager).registerWidget({name:"data-object-tree",component:vb})}});var vy=i(62667),vv=i(27306),vx=i(23002),vj=i(4169),vw=i(77484);let vC=(0,ia.createStyles)((e,t)=>{let{token:i,css:n}=e,{marginBottom:r}=t,a=((e,t)=>{let i={none:0,mini:e.marginXXS,"extra-small":e.marginXS,small:e.marginSM,normal:e.margin,medium:e.marginMD,large:e.marginLG,"extra-large":e.marginXL,maxi:e.marginXXL};return i[t]??i.normal})(i,r);return{container:n` padding: 0 ${i.paddingMD}px; margin-bottom: ${a}px; `,containerWithBorder:n` @@ -614,7 +614,7 @@ } `,title:n` - `}}),vk=e=>{let{children:t,withBorder:i=!1,asFormLabel:n=!1,className:r,marginBottom:a="extra-small"}=e,{styles:o}=vC({marginBottom:a}),l=oy()(n?i?o.containerAsFormLabelWithBorder:o.containerAsFormLabel:i?o.containerWithBorder:o.container,r);return(0,tl.jsx)("div",{className:l,children:(0,tl.jsx)(vw.D,{titleClass:o.title,children:t})})};var vT=i(61711),vS=i(66713),vD=i(10962);let vE=e=>{var t,i,n;let{documentId:r,initialValues:a}=e,{t:o}=(0,t7.useTranslation)(),l=(0,p5.r)(),{getDisplayName:s}=(0,vS.Z)(),{document:d,updateSettingsData:f,updateProperty:c,addProperty:u,properties:m}=(0,vx.Z)(r),{debouncedAutoSave:p}=(0,vD.O)(),g=(0,ts.useRef)(null),h=(0,ts.useRef)(null),b=(e,t)=>{(0,eY.isNull)(e.current)||(0,eY.isUndefined)(e.current)||(e.current.textContent=`(${t})`)},y=(0,eY.isNull)(m)||(0,eY.isUndefined)(m)?void 0:m.find(e=>"language"===e.key&&!e.inherited),v=(0,ts.useCallback)((e,t)=>{let{language:i,contentMainDocument:n,...r}=e;(0,eY.isUndefined)(i)||((0,eY.isUndefined)(y)||(0,eY.isNull)(y)?u({key:"language",type:"text",data:i,inherited:!1,inheritable:!0,predefinedName:"Custom",rowId:(0,nu.V)()}):c("language",{...y,data:i,inherited:!1})),(0,eY.isUndefined)(n)||(r.contentMainDocumentId=(null==n?void 0:n.id)??null,r.contentMainDocumentPath=(null==n?void 0:n.fullPath)??null),Object.keys(r).length>0&&f(r),p()},[f,y,c,u,p]),x=[{value:"",label:o("none")},...(null==(t=l.validLanguages)?void 0:t.map(e=>({value:e,label:s(e)})))??[]],j=e=>""===e.value||(0,eY.isUndefined)(e.value)||(0,eY.isNull)(e.value)?(0,tl.jsx)("span",{children:e.label}):(0,tl.jsxs)(rZ.k,{align:"center",gap:"extra-small",children:[(0,tl.jsx)(vT.U,{value:(0,eY.isUndefined)(e.value)||(0,eY.isNull)(e.value)?"":String(e.value)}),(0,tl.jsx)("span",{children:e.label})]});return(0,tl.jsxs)(nd.h,{formProps:{initialValues:a,onValuesChange:v},children:[(null==d?void 0:d.type)==="page"&&(0,tl.jsxs)(tl.Fragment,{children:[(0,tl.jsx)(tc.l.Item,{label:(0,tl.jsxs)("span",{children:[o("title")," ",(0,tl.jsxs)("span",{ref:g,children:["(",(null==(i=a.title)?void 0:i.length)??0,")"]})]}),name:"title",rules:[{max:255,message:o("form.validation.max-length",{max:255})}],children:(0,tl.jsx)(ae.I,{onChange:e=>{b(g,e.target.value.length)}})}),(0,tl.jsx)(tc.l.Item,{label:(0,tl.jsxs)("span",{children:[o("description")," ",(0,tl.jsxs)("span",{ref:h,children:["(",(null==(n=a.description)?void 0:n.length)??0,")"]})]}),name:"description",rules:[{max:350,message:o("form.validation.max-length",{max:350})}],children:(0,tl.jsx)(nf.K,{autoSize:{minRows:3,maxRows:8},onChange:e=>{b(h,e.target.value.length)}})})]}),(0,tl.jsx)(tc.l.Item,{label:(null==d?void 0:d.type)==="page"?(0,tl.jsx)(vk,{asFormLabel:!0,withBorder:!0,children:o("language")}):o("language"),name:"language",children:(0,tl.jsx)(tC.P,{labelRender:e=>j(e),optionRender:e=>j(e),options:x})}),(null==d?void 0:d.type)==="page"&&(0,tl.jsx)(tc.l.Item,{extra:o("pretty-url-override-notice"),label:(0,tl.jsx)(vk,{asFormLabel:!0,withBorder:!0,children:o("pretty-url")}),name:"prettyUrl",children:(0,tl.jsx)(ae.I,{})}),((null==d?void 0:d.type)==="page"||(null==d?void 0:d.type)==="snippet")&&(0,tl.jsx)(tc.l.Item,{label:(0,tl.jsx)(vk,{asFormLabel:!0,withBorder:!0,children:o("content-main-document")}),name:"contentMainDocument",children:(0,tl.jsx)(de.A,{allowToClearRelation:!0,allowedDocumentTypes:["page","snippet"],documentsAllowed:!0,vertical:!0})})]})};var vM=i(12621);let vI=(0,ia.createStyles)(e=>{let{token:t,css:i}=e;return{collapsibleContainer:i` + `}}),vk=e=>{let{children:t,withBorder:i=!1,asFormLabel:n=!1,className:r,marginBottom:a="extra-small"}=e,{styles:l}=vC({marginBottom:a}),o=ly()(n?i?l.containerAsFormLabelWithBorder:l.containerAsFormLabel:i?l.containerWithBorder:l.container,r);return(0,to.jsx)("div",{className:o,children:(0,to.jsx)(vw.D,{titleClass:l.title,children:t})})};var vT=i(61711),vS=i(66713),vD=i(10962);let vE=e=>{var t,i,n;let{documentId:r,initialValues:a}=e,{t:l}=(0,t7.useTranslation)(),o=(0,p5.r)(),{getDisplayName:s}=(0,vS.Z)(),{document:d,updateSettingsData:f,updateProperty:c,addProperty:u,properties:m}=(0,vx.Z)(r),{debouncedAutoSave:p}=(0,vD.O)(),g=(0,ts.useRef)(null),h=(0,ts.useRef)(null),b=(e,t)=>{(0,eY.isNull)(e.current)||(0,eY.isUndefined)(e.current)||(e.current.textContent=`(${t})`)},y=(0,eY.isNull)(m)||(0,eY.isUndefined)(m)?void 0:m.find(e=>"language"===e.key&&!e.inherited),v=(0,ts.useCallback)((e,t)=>{let{language:i,contentMainDocument:n,...r}=e;(0,eY.isUndefined)(i)||((0,eY.isUndefined)(y)||(0,eY.isNull)(y)?u({key:"language",type:"text",data:i,inherited:!1,inheritable:!0,predefinedName:"Custom",rowId:(0,nu.V)()}):c("language",{...y,data:i,inherited:!1})),(0,eY.isUndefined)(n)||(r.contentMainDocumentId=(null==n?void 0:n.id)??null,r.contentMainDocumentPath=(null==n?void 0:n.fullPath)??null),Object.keys(r).length>0&&f(r),p()},[f,y,c,u,p]),x=[{value:"",label:l("none")},...(null==(t=o.validLanguages)?void 0:t.map(e=>({value:e,label:s(e)})))??[]],j=e=>""===e.value||(0,eY.isUndefined)(e.value)||(0,eY.isNull)(e.value)?(0,to.jsx)("span",{children:e.label}):(0,to.jsxs)(rZ.k,{align:"center",gap:"extra-small",children:[(0,to.jsx)(vT.U,{value:(0,eY.isUndefined)(e.value)||(0,eY.isNull)(e.value)?"":String(e.value)}),(0,to.jsx)("span",{children:e.label})]});return(0,to.jsxs)(nd.h,{formProps:{initialValues:a,onValuesChange:v},children:[(null==d?void 0:d.type)==="page"&&(0,to.jsxs)(to.Fragment,{children:[(0,to.jsx)(tc.l.Item,{label:(0,to.jsxs)("span",{children:[l("title")," ",(0,to.jsxs)("span",{ref:g,children:["(",(null==(i=a.title)?void 0:i.length)??0,")"]})]}),name:"title",rules:[{max:255,message:l("form.validation.max-length",{max:255})}],children:(0,to.jsx)(ae.I,{onChange:e=>{b(g,e.target.value.length)}})}),(0,to.jsx)(tc.l.Item,{label:(0,to.jsxs)("span",{children:[l("description")," ",(0,to.jsxs)("span",{ref:h,children:["(",(null==(n=a.description)?void 0:n.length)??0,")"]})]}),name:"description",rules:[{max:350,message:l("form.validation.max-length",{max:350})}],children:(0,to.jsx)(nf.K,{autoSize:{minRows:3,maxRows:8},onChange:e=>{b(h,e.target.value.length)}})})]}),(0,to.jsx)(tc.l.Item,{label:(null==d?void 0:d.type)==="page"?(0,to.jsx)(vk,{asFormLabel:!0,withBorder:!0,children:l("language")}):l("language"),name:"language",children:(0,to.jsx)(tC.P,{labelRender:e=>j(e),optionRender:e=>j(e),options:x})}),(null==d?void 0:d.type)==="page"&&(0,to.jsx)(tc.l.Item,{extra:l("pretty-url-override-notice"),label:(0,to.jsx)(vk,{asFormLabel:!0,withBorder:!0,children:l("pretty-url")}),name:"prettyUrl",children:(0,to.jsx)(ae.I,{})}),((null==d?void 0:d.type)==="page"||(null==d?void 0:d.type)==="snippet")&&(0,to.jsx)(tc.l.Item,{label:(0,to.jsx)(vk,{asFormLabel:!0,withBorder:!0,children:l("content-main-document")}),name:"contentMainDocument",children:(0,to.jsx)(de.A,{allowToClearRelation:!0,allowedDocumentTypes:["page","snippet"],documentsAllowed:!0,vertical:!0})})]})};var vM=i(12621);let vI=(0,ia.createStyles)(e=>{let{token:t,css:i}=e;return{collapsibleContainer:i` width: 100%; `,gridContainer:i` display: grid; @@ -648,7 +648,7 @@ word-wrap: break-word; overflow-wrap: break-word; max-width: 100%; - `}}),vP=e=>{let{type:t,globalIndex:i}=e,{t:n}=(0,t7.useTranslation)(),{styles:r}=vL(),a=((e,t)=>{if((0,dW.H)(e))if(e.includes("."))return{type:"path",value:e};else return{type:"name",value:e};return{type:"name",value:"area-brick"}})(t.icon,0),o={type:"areablock-type",icon:a,title:n(t.name),data:{areablockType:t.type,sourceType:"sidebar"}};return(0,tl.jsx)(bb._,{info:o,children:(0,tl.jsx)(ai.z,{className:r.typeButton,type:"default",children:(0,tl.jsxs)(rZ.k,{align:"center",justify:"center",vertical:!0,children:[(0,tl.jsx)(rR.J,{className:r.typeIcon,options:{width:24,height:24},type:a.type,value:a.value}),(0,tl.jsx)(nc.x,{className:r.typeName,children:n(t.name)})]})})})},vN=()=>{let{t:e}=(0,t7.useTranslation)(),{id:t}=(0,ts.useContext)(oG.R),{styles:i}=vI(),n=Object.entries((0,hd.CG)(e=>(0,vM.FI)(e,t)));if(1===n.length&&n[0][0]===lj){let[,e]=n[0];return(0,tl.jsx)(aL.x,{className:i.gridContainer,padding:{x:"small",bottom:"small"},children:e.map((e,t)=>(0,tl.jsx)(vP,{globalIndex:t,type:e},`${e.areablockName}-${e.type}`))})}return(0,tl.jsx)(aL.x,{className:i.collapsibleContainer,children:n.map((t,r)=>{let[a,o]=t,l=0;return n.slice(0,r).forEach(e=>{let[,t]=e;l+=t.length}),(0,tl.jsx)(rJ.s,{border:!1,collapsed:!1,collapsible:!0,theme:"card-with-highlight",title:e(a),children:(0,tl.jsx)(aL.x,{className:i.gridContainer,children:o.map((e,t)=>{let i=l+t;return(0,tl.jsx)(vP,{globalIndex:i,type:e},`${e.areablockName}-${e.type}`)})})},a)})})},vA=e=>{let{initialValues:t}=e,{t:i}=(0,t7.useTranslation)(),{id:n}=(0,ts.useContext)(oG.R),{properties:r,updateProperty:a,addProperty:o}=(0,vx.Z)(n),{debouncedAutoSave:l}=(0,vD.O)(),s=e=>(0,eY.isNull)(r)||(0,eY.isUndefined)(r)?void 0:r.find(t=>t.key===e),d=(0,ts.useCallback)((e,t)=>{let i=s(e);if((0,eY.isUndefined)(i)||(0,eY.isNull)(i)){let i="navigation_exclude"===e?"bool":"text";o({key:e,type:i,data:t,inherited:!1,inheritable:!1,predefinedName:"Custom",rowId:(0,nu.V)()})}else a(e,{...i,data:t,inherited:!1,inheritable:!1});l()},[s,a,o,l]),f=(0,ts.useCallback)(e=>{Object.entries(e).forEach(e=>{let[t,i]=e;d(t,i)})},[d]);return(0,tl.jsxs)(nd.h,{formProps:{initialValues:t,onValuesChange:f,layout:"vertical"},children:[(0,tl.jsx)(tc.l.Item,{label:i("navigation.name"),name:"navigation_name",children:(0,tl.jsx)(ae.I,{})}),(0,tl.jsx)(tc.l.Item,{label:i("link.title"),name:"navigation_title",children:(0,tl.jsx)(ae.I,{})}),(0,tl.jsx)(tc.l.Item,{label:i("link.target"),name:"navigation_target",children:(0,tl.jsx)(tC.P,{options:[{label:i("link.not-set"),value:""},{label:"_self",value:"_self"},{label:"_blank",value:"_blank"},{label:"_parent",value:"_parent"},{label:"_top",value:"_top"}]})}),(0,tl.jsx)(tc.l.Item,{name:"navigation_exclude",valuePropName:"checked",children:(0,tl.jsx)(s0.r,{labelRight:i("navigation.exclude")})}),(0,tl.jsx)(tc.l.Item,{label:i("link.rel"),name:"navigation_relation",children:(0,tl.jsx)(ae.I,{})}),(0,tl.jsx)(vk,{marginBottom:"none",withBorder:!0,children:i("navigation.advanced-settings")}),(0,tl.jsx)(tc.l.Item,{label:i("link.class"),name:"navigation_class",children:(0,tl.jsx)(ae.I,{})}),(0,tl.jsx)(tc.l.Item,{label:i("link.anchor"),name:"navigation_anchor",children:(0,tl.jsx)(ae.I,{})}),(0,tl.jsx)(tc.l.Item,{label:i("link.parameters"),name:"navigation_parameters",children:(0,tl.jsx)(ae.I,{})}),(0,tl.jsx)(tc.l.Item,{label:i("link.accesskey"),name:"navigation_accesskey",children:(0,tl.jsx)(ae.I,{maxLength:1})}),(0,tl.jsx)(tc.l.Item,{label:i("link.tabindex"),name:"navigation_tabindex",children:(0,tl.jsx)(ae.I,{})})]})};var vR=i(53861),vO=i(26041);let vB=e=>{var t;let{documentId:i,documentType:n,initialValues:r,apiData:a}=e,{t:o}=(0,t7.useTranslation)(),{updateSettingsData:l,document:s}=(0,vx.Z)(i),{debouncedAutoSave:d}=(0,vD.O)(),[f]=tc.l.useForm(),c={...r,staticGeneratorLifetime:r.staticGeneratorLifetime??null},{controllers:u,templates:m,predefinedDocTypes:p}=a,g=(0,ts.useMemo)(()=>[...u.map(e=>({value:e.name,label:e.name}))],[u]),h=(0,ts.useMemo)(()=>[...m.map(e=>({value:e.path,label:e.path}))],[m]),b=(0,ts.useMemo)(()=>[...p.map(e=>({value:e.id,label:e.name??e.id}))],[p]),y=(0,ts.useCallback)((e,t)=>{let i={};if("predefinedDocumentType"in e&&!(0,eY.isNil)(e.predefinedDocumentType)){let n=p.find(t=>t.id===e.predefinedDocumentType);(0,eY.isNil)(n)||(f.setFieldsValue({...t,controller:n.controller??"",template:n.template??""}),i.controller=n.controller??"",i.template=n.template??"")}Object.entries(e).forEach(e=>{let[t,n]=e;"predefinedDocumentType"!==t&&(i[t]=n)}),Object.keys(i).length>0&&(l(i),d())},[l,d,p,f]),v=(0,ts.useMemo)(()=>{var e;let t=null==s||null==(e=s.settingsData)?void 0:e.staticLastGenerated;return(0,tl.jsxs)("span",{children:[o("document-configuration.last-generated",{timestamp:(0,eY.isNil)(t)?o("never"):""}),!(0,eY.isNil)(t)&&(0,tl.jsx)(vO.k,{timestamp:t})]})},[null==s||null==(t=s.settingsData)?void 0:t.staticLastGenerated]);return(0,tl.jsxs)(nd.h,{formProps:{form:f,initialValues:c,onValuesChange:y},children:[(0,tl.jsx)(tc.l.Item,{label:o("document-configuration.predefined-document-type"),name:"predefinedDocumentType",children:(0,tl.jsx)(tC.P,{allowClear:!0,options:b})}),(0,tl.jsx)(tc.l.Item,{label:o("document-configuration.controller"),name:"controller",children:(0,tl.jsx)(tC.P,{allowClear:!0,options:g})}),(0,tl.jsx)(tc.l.Item,{label:o("document-configuration.template"),name:"template",children:(0,tl.jsx)(tC.P,{allowClear:!0,options:h})}),"page"===n&&(0,tl.jsxs)(tl.Fragment,{children:[(0,tl.jsx)(vk,{marginBottom:"none",withBorder:!0,children:o("document-configuration.static-page-generator")}),(0,tl.jsx)(tc.l.Item,{name:"staticGeneratorEnabled",valuePropName:"checked",children:(0,tl.jsx)(s0.r,{labelRight:o("document-configuration.enable-server-side-static-rendering")})}),(0,tl.jsx)(tc.l.Item,{extra:v,label:o("document-configuration.lifetime-for-static-page"),name:"staticGeneratorLifetime",children:(0,tl.jsx)(vR.R,{min:1,step:1})})]})]})},vF={key:"areablock-types",icon:(0,tl.jsx)(rR.J,{value:"new"}),component:(0,tl.jsx)(()=>{let{t:e}=(0,t7.useTranslation)();return(0,tl.jsxs)(ih.Content,{children:[(0,tl.jsx)(vv.R,{withBorder:!0,children:e("add-areas")}),(0,tl.jsx)(vN,{})]})},{}),tooltip:"add-areas",isVisible:e=>{try{let t=hd.h.getState();return(0,vM.qw)(t,e.id)}catch(e){return console.warn("Could not check areablock types visibility:",e),!1}}},v_={key:"content-settings",icon:(0,tl.jsx)(rR.J,{value:"content-settings"}),component:(0,tl.jsx)(()=>{var e;let{t}=(0,t7.useTranslation)(),{id:i}=(0,ts.useContext)(oG.R),{document:n}=(0,vx.Z)(i),{data:r,isLoading:a}=(0,vj.E)(),o=null==r||null==(e=r.items)?void 0:e.find(e=>"language"===e.key),l=(null==o?void 0:o.data)??"",s=(0,ts.useMemo)(()=>{let e=(null==n?void 0:n.settingsData)??{};return{title:(null==e?void 0:e.title)??"",description:(null==e?void 0:e.description)??"",language:l,prettyUrl:(null==e?void 0:e.prettyUrl)??"",contentMainDocument:(0,eY.isUndefined)(null==e?void 0:e.contentMainDocumentId)||(0,eY.isNull)(null==e?void 0:e.contentMainDocumentId)?null:{id:e.contentMainDocumentId,type:"document",fullPath:e.contentMainDocumentPath??""}}},[null==n?void 0:n.settingsData,l]),d=!a&&!(0,eY.isUndefined)(r);return(0,tl.jsxs)(ih.Content,{loading:!d,children:[(0,tl.jsx)(vv.R,{withBorder:!0,children:t("content-settings")}),(0,tl.jsx)(aL.x,{padding:{x:"extra-small",bottom:"small"},children:(0,tl.jsx)(vE,{documentId:i,initialValues:s})})]})},{}),tooltip:"content-settings"},vz={key:"navigation",icon:(0,tl.jsx)(rR.J,{value:"navigation"}),component:(0,tl.jsx)(()=>{let{t:e}=(0,t7.useTranslation)(),{data:t,isLoading:i}=(0,vj.E)(),n=(0,ts.useMemo)(()=>{let e=e=>{var i;let n=null==t||null==(i=t.items)?void 0:i.find(t=>t.key===e);return null==n?void 0:n.data};return{navigation_name:e("navigation_name")??"",navigation_title:e("navigation_title")??"",navigation_target:e("navigation_target")??"",navigation_exclude:e("navigation_exclude")??!1,navigation_relation:e("navigation_relation")??"",navigation_class:e("navigation_class")??"",navigation_anchor:e("navigation_anchor")??"",navigation_parameters:e("navigation_parameters")??"",navigation_accesskey:e("navigation_accesskey")??"",navigation_tabindex:e("navigation_tabindex")??""}},[null==t?void 0:t.items]),r=!i&&!(0,eY.isUndefined)(t);return(0,tl.jsxs)(ih.Content,{loading:!r,children:[(0,tl.jsx)(vv.R,{withBorder:!0,children:e("navigation.sidebar-title")}),(0,tl.jsx)(aL.x,{padding:{x:"extra-small",bottom:"small"},children:(0,tl.jsx)(vA,{initialValues:n})})]})},{}),tooltip:"navigation.sidebar-title"},vV={key:"document-configuration",icon:(0,tl.jsx)(rR.J,{value:"document-configurations"}),component:(0,tl.jsx)(()=>{let{t:e}=(0,t7.useTranslation)(),{id:t}=(0,ts.useContext)(oG.R),{document:i}=(0,vx.Z)(t),{data:n,isLoading:r}=(0,o2.OJ)(void 0,{refetchOnMountOrArgChange:!0}),{data:a,isLoading:o}=(0,o2.lM)(void 0,{refetchOnMountOrArgChange:!0}),{data:l,isLoading:s}=(0,o2.jX)({type:(null==i?void 0:i.type)??"page"},{refetchOnMountOrArgChange:!0}),d=(0,ts.useMemo)(()=>{let e=(null==i?void 0:i.settingsData)??{};return{predefinedDocumentType:"",controller:(null==e?void 0:e.controller)??"",template:(null==e?void 0:e.template)??"",staticGeneratorEnabled:(null==e?void 0:e.staticGeneratorEnabled)??!1,staticGeneratorLifetime:(null==e?void 0:e.staticGeneratorLifetime)??null}},[null==i?void 0:i.settingsData]),f=!(0,eY.isUndefined)(i)&&!r&&!o&&!s,c={controllers:(null==n?void 0:n.items)??[],templates:(null==a?void 0:a.items)??[],predefinedDocTypes:(null==l?void 0:l.items)??[]};return(0,tl.jsxs)(ih.Content,{loading:!f,children:[(0,tl.jsx)(vv.R,{withBorder:!0,children:e("document-configuration.sidebar-title")}),(0,tl.jsx)(aL.x,{padding:{x:"extra-small",bottom:"small"},children:f&&(0,tl.jsx)(vB,{apiData:c,documentId:t,documentType:null==i?void 0:i.type,initialValues:d})})]})},{}),tooltip:"document-configuration.sidebar-title"},v$=e=>{let{documentId:t,initialValues:i}=e,{t:n}=(0,t7.useTranslation)(),{updateSettingsData:r}=(0,vx.Z)(t),{debouncedAutoSave:a}=(0,vD.O)(),[o]=tc.l.useForm(),l=(0,ts.useCallback)(e=>{r(e),a()},[r,a]);return(0,tl.jsxs)(nd.h,{formProps:{form:o,initialValues:i,onValuesChange:l},children:[(0,tl.jsx)(tc.l.Item,{label:n("email-settings.subject"),name:"subject",children:(0,tl.jsx)(ae.I,{})}),(0,tl.jsx)(tc.l.Item,{extra:n("email-settings.from-syntax-hint"),label:n("email-settings.from"),name:"from",children:(0,tl.jsx)(ae.I,{})}),(0,tl.jsx)(tc.l.Item,{label:n("email-settings.reply-to"),name:"replyTo",children:(0,tl.jsx)(ae.I,{})}),(0,tl.jsx)(vk,{marginBottom:"none",withBorder:!0,children:n("email-settings.recipients")}),(0,tl.jsx)(tc.l.Item,{label:n("email-settings.to"),name:"to",children:(0,tl.jsx)(ae.I,{})}),(0,tl.jsx)(tc.l.Item,{label:n("email-settings.cc"),name:"cc",children:(0,tl.jsx)(ae.I,{})}),(0,tl.jsx)(tc.l.Item,{label:n("email-settings.bcc"),name:"bcc",children:(0,tl.jsx)(ae.I,{})}),(0,tl.jsx)(nc.x,{type:"secondary",children:n("email-settings.multiple-recipients-hint")})]})},vW=()=>{let{t:e}=(0,t7.useTranslation)(),{id:t}=(0,ts.useContext)(oG.R),{document:i}=(0,vx.Z)(t),n=(0,ts.useMemo)(()=>{let e=(null==i?void 0:i.settingsData)??{};return{subject:(null==e?void 0:e.subject)??"",from:(null==e?void 0:e.from)??"",replyTo:(null==e?void 0:e.replyTo)??"",to:(null==e?void 0:e.to)??"",cc:(null==e?void 0:e.cc)??"",bcc:(null==e?void 0:e.bcc)??""}},[null==i?void 0:i.settingsData]),r=!(0,eY.isUndefined)(i);return(0,tl.jsxs)(ih.Content,{loading:!r,children:[(0,tl.jsx)(vv.R,{withBorder:!0,children:e("email-settings.sidebar-title")}),(0,tl.jsx)(aL.x,{padding:{x:"extra-small",bottom:"small"},children:r&&(0,tl.jsx)(v$,{documentId:t,initialValues:n})})]})};eR._.registerModule({onInit:()=>{let e=eB.nC.get(eO.j["Document/Editor/EmailTabManager"]);e.register(vy.vr),e.register(vy.kw),e.register(pC.D9),e.register(vy.V2),e.register(pC.On),e.register(pC._P),e.register(pC.Hy),e.register(pC.zd);let t=eB.nC.get(eO.j["Document/Editor/Sidebar/EmailSidebarManager"]);t.registerEntry(vF),t.registerEntry({key:"email-settings",icon:(0,tl.jsx)(rR.J,{value:"email"}),component:(0,tl.jsx)(vW,{}),tooltip:"email-settings.sidebar-title"}),t.registerEntry(v_),t.registerEntry(vV)}});var vH=i(33929),vG=i(81422),vU=i(25937);let vq={key:"properties",label:"properties.label",workspacePermission:"properties",children:(0,tl.jsx)(()=>{let{id:e}=(0,ts.useContext)(oG.R),{document:t}=(0,vx.Z)(e),i=(0,vG.W)(null==t?void 0:t.type).getButtons(),n=(0,vU.n)();return(0,tl.jsx)(aF.D,{renderSidebar:(0,tl.jsx)(gG.Y,{buttons:i,entries:n,sizing:"medium",translateTooltips:!0}),children:(0,tl.jsx)(vH.i,{})})},{}),icon:(0,tl.jsx)(rR.J,{value:"settings"}),isDetachable:!0};eR._.registerModule({onInit:()=>{let e=eB.nC.get(eO.j["Document/Editor/FolderTabManager"]);e.register(vq),e.register(pC.On),e.register(pC._P),e.register(pC.Hy),e.register(pC.zd),eB.nC.get(eO.j["Document/Editor/Sidebar/FolderSidebarManager"]).registerEntry(v_)}});let vZ={key:"edit",label:"edit.label",children:(0,tl.jsx)(()=>{let{t:e}=(0,t7.useTranslation)(),[t]=tN.Form.useForm(),{id:i}=(0,ts.useContext)(oG.R),{document:n,updateSettingsData:r}=(0,vx.Z)(i),a=(0,vG.W)(null==n?void 0:n.type).getButtons(),o=(0,vU.n)(),l=td().useMemo(()=>{let e=(null==n?void 0:n.settingsData)??{},t=null;return(0,eY.isNil)(e.sourceId)||(t={type:"document",id:e.sourceId,fullPath:e.sourcePath??"",textInput:!1}),{sourceDocument:t,propertiesFromSource:!!e.propertiesFromSource,childrenFromSource:!!e.childrenFromSource}},[null==n?void 0:n.settingsData]);return(0,tl.jsx)(aF.D,{renderSidebar:(0,tl.jsx)(gG.Y,{buttons:a,entries:o,sizing:"medium",translateTooltips:!0}),children:(0,tl.jsx)(ih.Content,{padded:!0,children:(0,tl.jsxs)(tN.Form,{form:t,initialValues:l,layout:"vertical",children:[(0,tl.jsx)(tN.Form.Item,{label:e("document.hardlink.source"),name:"sourceDocument",children:(0,tl.jsx)(de.A,{allowToClearRelation:!0,documentsAllowed:!0,onChange:e=>{let t={};(0,eY.isNull)(e)?(t.sourceId=null,t.sourcePath=null):!0!==e.textInput&&(t.sourceId=e.id,t.sourcePath=e.fullPath??""),r(t)},showOpenForTextInput:!0})}),(0,tl.jsx)(tN.Form.Item,{label:e("document.hardlink.properties-from-source"),name:"propertiesFromSource",valuePropName:"checked",children:(0,tl.jsx)(tN.Switch,{onChange:e=>{r({propertiesFromSource:e})}})}),(0,tl.jsx)(tN.Form.Item,{label:e("document.hardlink.children-from-source"),name:"childrenFromSource",valuePropName:"checked",children:(0,tl.jsx)(tN.Switch,{onChange:e=>{r({childrenFromSource:e})}})})]})})})},{}),icon:(0,tl.jsx)(rR.J,{value:"edit"})};eR._.registerModule({onInit:()=>{let e=eB.nC.get(eO.j["Document/Editor/HardlinkTabManager"]);e.register(vZ),e.register(pC.D9),e.register(pC.On),e.register(pC.V$),e.register(pC._P),e.register(pC.Hy),e.register(pC.zd),eB.nC.get(eO.j["Document/Editor/Sidebar/HardlinkSidebarManager"]).registerEntry(v_)}});let vK={key:"edit",label:"edit.label",children:(0,tl.jsx)(()=>{let{t:e}=(0,t7.useTranslation)(),[t]=tN.Form.useForm(),{id:i}=(0,ts.useContext)(oG.R),{document:n,updateSettingsData:r}=(0,vx.Z)(i),a=(0,vG.W)(null==n?void 0:n.type).getButtons(),o=(0,vU.n)(),l=td().useMemo(()=>{let e=(null==n?void 0:n.settingsData)??{};return"direct"===e.linkType&&(0,dW.H)(e.direct)?{linkTarget:{textInput:!0,fullPath:e.direct}}:e.internal&&!(0,eY.isNil)(e.internalType)?{linkTarget:{id:e.internal,type:e.internalType,fullPath:e.rawHref??"",textInput:!1}}:{linkTarget:null}},[null==n?void 0:n.settingsData]);return(0,tl.jsx)(aF.D,{renderSidebar:(0,tl.jsx)(gG.Y,{buttons:a,entries:o,sizing:"medium",translateTooltips:!0}),children:(0,tl.jsx)(ih.Content,{padded:!0,children:(0,tl.jsx)(tN.Form,{form:t,initialValues:l,layout:"vertical",children:(0,tl.jsx)(tN.Form.Item,{label:e("document.link.target"),name:"linkTarget",children:(0,tl.jsx)(de.A,{allowPathTextInput:!0,allowToClearRelation:!0,assetsAllowed:!0,dataObjectsAllowed:!0,documentsAllowed:!0,onChange:e=>{let t={};null===e?(t.linkType="direct",t.internal=null,t.internalType=null,t.direct=null,t.href=null,t.rawHref=null,t.path=null):!0===e.textInput?(t.linkType="direct",t.direct=e.fullPath,t.rawHref=e.fullPath,t.href=e.fullPath,t.path=e.fullPath):(t.linkType="internal",t.internal=e.id,t.internalType=e.type,t.rawHref=e.fullPath??"",t.path=e.fullPath??""),r(t)},showOpenForTextInput:!0})})})})})},{}),icon:(0,tl.jsx)(rR.J,{value:"edit"})};eR._.registerModule({onInit:()=>{let e=eB.nC.get(eO.j["Document/Editor/LinkTabManager"]);e.register(vK),e.register(pC.D9),e.register(pC.V$),e.register(pC.On),e.register(pC._P),e.register(pC.Hy),e.register(pC.zd);let t=eB.nC.get(eO.j["Document/Editor/Sidebar/LinkSidebarManager"]);t.registerEntry(v_),t.registerEntry(vz)}}),eR._.registerModule({onInit:()=>{let e=eB.nC.get(eO.j["Document/Editor/PageTabManager"]);e.register(vy.vr),e.register(vy.kw),e.register(pC.D9),e.register(vy.V2),e.register(pC.V$),e.register(pC.On),e.register(pC._P),e.register(pC.Hy),e.register(pC.zd);let t=eB.nC.get(eO.j["Document/Editor/Sidebar/PageSidebarManager"]);t.registerEntry(vF),t.registerEntry(v_),t.registerEntry(vV),t.registerEntry(vz)}}),eR._.registerModule({onInit:()=>{let e=eB.nC.get(eO.j["Document/Editor/SnippetTabManager"]);e.register(vy.vr),e.register(pC.D9),e.register(vy.V2),e.register(pC.V$),e.register(pC.On),e.register(pC._P),e.register(pC.Hy),e.register(pC.zd);let t=eB.nC.get(eO.j["Document/Editor/Sidebar/SnippetSidebarManager"]);t.registerEntry(vF),t.registerEntry(v_),t.registerEntry(vV)}});var vJ=i(66472),vX=i(60791);let vQ=()=>(0,tl.jsx)(aO.o,{children:(0,tl.jsxs)(bt.v,{children:[(0,tl.jsx)(rZ.k,{children:(0,tl.jsx)(bn.O,{slot:hy.O.document.editor.toolbar.slots.left.name})}),(0,tl.jsx)(rZ.k,{align:"center",gap:"extra-small",style:{height:"32px"},vertical:!1,children:(0,tl.jsx)(bn.O,{slot:hy.O.document.editor.toolbar.slots.right.name})}),(0,tl.jsx)(bi.L,{})]})}),vY=e=>{let{id:t}=e,{isLoading:i,isError:n,document:r,editorType:a}=(0,vx.Z)(t),o=(0,h5.Q)(),{setContext:l,removeContext:s}=(0,vX.L)();return((0,ts.useEffect)(()=>()=>{s()},[]),(0,ts.useEffect)(()=>(o&&l({id:t}),()=>{o||s()}),[o]),i)?(0,tl.jsx)(aB.V,{loading:!0}):n?(0,tl.jsx)(aB.V,{padded:!0,children:(0,tl.jsx)(he.b,{message:"Error: Loading of asset failed",type:"error"})}):void 0===r||void 0===a?(0,tl.jsx)(tl.Fragment,{}):(0,tl.jsx)(oG.p,{id:t,children:(0,tl.jsx)(ba.S,{dataTestId:`document-editor-${(0,dM.rR)(t)}`,renderTabbar:(0,tl.jsx)(be.T,{elementEditorType:a}),renderToolbar:(0,tl.jsx)(vQ,{})})})},v0=()=>{let{t:e}=(0,t7.useTranslation)(),{id:t}=(0,ts.useContext)(oG.R),{document:i}=(0,vx.Z)(t),{refreshElement:n}=(0,hK.C)("document");return(0,tl.jsx)(hJ.t,{hasDataChanged:()=>Object.keys((null==i?void 0:i.changes)??{}).length>0,onReload:()=>{n(t,!0)},title:e("toolbar.reload.confirmation"),children:(0,tl.jsx)(aM.h,{icon:{value:"refresh"},children:e("toolbar.reload")})},"reload")};var v1=i(16939),v2=i(47302),v3=i(3018),v6=i(84680);let v4=e=>{var t;let{isOpen:i,selectedDocument:n,onSelectedDocumentChange:r,onClose:a,onSubmit:o}=e,{t:l}=(0,t7.useTranslation)(),{getDisplayName:s}=(0,vS.Z)(),[d,f]=(0,ts.useState)(!1),{data:c,isLoading:u,error:m}=(0,v6.y8)({elementType:"document",id:(null==n?void 0:n.id)??0},{skip:(0,eY.isNull)(n)});(0,ts.useEffect)(()=>{(0,eY.isUndefined)(m)||(0,is.ZP)(new is.MS(m))},[m]);let p=null==c||null==(t=c.items)?void 0:t.find(e=>"language"===e.key),g=(0,eY.isString)(null==p?void 0:p.data)?p.data:"",h=async()=>{f(!0);try{await o()}finally{f(!1)}};return(0,tl.jsxs)(p2.i,{footer:(0,tl.jsxs)(p1.m,{children:[(0,tl.jsx)(ai.z,{onClick:a,type:"default",children:l("cancel")}),(0,tl.jsx)(ai.z,{disabled:(0,eY.isNull)(n),loading:d,onClick:h,type:"primary",children:l("apply")})]}),onCancel:a,open:i,size:"L",title:l("document.translation.link-existing-document"),children:[(0,tl.jsx)(ih.Form.Item,{label:l("document.translation.title"),layout:"vertical",children:(0,tl.jsx)(de.A,{allowToClearRelation:!0,documentsAllowed:!0,onChange:r,value:n})}),!(0,eY.isNull)(n)&&(0,tl.jsx)(nd.h.Panel,{border:!0,theme:"border-highlight",title:l("language"),children:u?(0,tl.jsx)(aI.y,{size:"small"}):(0,dW.H)(g)?(0,tl.jsxs)(rZ.k,{align:"center",gap:"small",children:[(0,tl.jsx)(vT.U,{value:g}),(0,tl.jsxs)("span",{children:[s(g)," [",g,"]"]})]}):(0,tl.jsx)(nc.x,{italic:!0,type:"secondary",children:l("no-data-available")})})]})},v8=()=>{let{t:e}=(0,t7.useTranslation)(),{id:t}=(0,ts.useContext)(oG.R),{document:i}=(0,vx.Z)(t),{unpublishContextMenuItem:n}=(0,vi.X)("document"),{renameContextMenuItem:r}=(0,pM.j)("document"),{deleteContextMenuItem:a}=(0,pI.R)("document"),{openInNewWindowContextMenuItem:o,openPreviewInNewWindowContextMenuItem:l}=(0,v1.N)(),{translationContextMenuItem:s}=(e=>{let{t}=(0,t7.useTranslation)(),{openDocument:i}=(0,v2.l)(),{getDisplayName:n}=(0,vS.Z)(),[r,{error:a}]=(0,o2.Vz)(),[o,{error:l}]=(0,o2.rG)(),[s,d]=(0,ts.useState)(!1),[f,c]=(0,ts.useState)(null),[u,m]=(0,ts.useState)(null),[p,g]=(0,ts.useState)(null),{addModal:h,removeModal:b}=(()=>{let e=(0,ts.useContext)(v3.t);if((0,eY.isNil)(e))throw Error("useModalHolder must be used within a ModalHolderProvider");return e})(),y=(0,ts.useMemo)(()=>`translation-modal-${(0,nu.V)()}`,[]),{data:v,error:x}=(0,o2.eI)({id:e.id},{skip:(0,eY.isNil)(e.id)});(0,ts.useEffect)(()=>{(0,eY.isUndefined)(a)||(0,is.ZP)(new is.MS(a))},[a]),(0,ts.useEffect)(()=>{(0,eY.isUndefined)(l)||(0,is.ZP)(new is.MS(l))},[l]),(0,ts.useEffect)(()=>{(0,eY.isUndefined)(x)||(0,is.ZP)(new is.MS(x))},[x]);let j=async()=>{!(0,eY.isNull)(f)&&(await o({id:Number(u.id),translationId:f.id}).unwrap(),c(null),d(!1),(0,eY.isNull)(p)||p())},w=()=>{c(null),d(!1),g(null)};return(0,ts.useEffect)(()=>(s&&!(0,eY.isNull)(u)?h(y,(0,tl.jsx)(v4,{isOpen:s,onClose:w,onSelectedDocumentChange:c,onSubmit:j,selectedDocument:f})):b(y),()=>{b(y)}),[s,u,f]),{translationContextMenuItem:a=>{let o=((null==v?void 0:v.translationLinks)??[]).filter(t=>t.documentId!==Number(e.id)),l=!(0,eY.isEmpty)(o),s=[];if(s.push({label:t("document.translation.link-existing-document"),key:"link-existing-document",icon:(0,tl.jsx)(rR.J,{value:"document-link"}),onClick:()=>{m(e),g(()=>a),d(!0)}}),l){let e=[];for(let t of o)e.push({label:`${n(t.language)} [${t.language}]`,key:`translation-${t.language}`,icon:(0,tl.jsx)(vT.U,{value:t.language}),onClick:async()=>{await i({config:{id:t.documentId}}),void 0!==a&&a()}});s.push({label:t("document.translation.open-translation"),key:"open-translation",icon:(0,tl.jsx)(rR.J,{value:"open-folder"}),children:e})}if(l){let i=[];for(let t of o)i.push({label:`${n(t.language)} [${t.language}]`,key:`unlink-translation-${t.language}`,icon:(0,tl.jsx)(vT.U,{value:t.language}),onClick:async()=>{await r({id:Number(e.id),translationId:t.documentId}).unwrap(),null==a||a()}});s.push({label:t("document.translation.unlink-existing-document"),key:"unlink-existing-document",icon:(0,tl.jsx)(rR.J,{value:"trash"}),children:i})}return{label:t("document.translation.title"),key:"translation",icon:(0,tl.jsx)(rR.J,{value:"translate"}),hidden:!1,children:s}}}})(i),[d,f]=(0,ts.useState)(void 0),c=[n(i,()=>{f(void 0)}),a(i),r(i),s(()=>{f(void 0)}),o(i),l(i)],u=c.filter(e=>null!==e&&"hidden"in e&&(null==e?void 0:e.hidden)===!1),m=[];return m.push((0,tl.jsx)(v0,{},"reload-button")),u.length>0&&m.push((0,tl.jsx)(pJ.L,{menu:{items:c,onClick:e=>{e.key===gM.N.unpublish&&f(!0)}},open:d,children:(0,tl.jsx)(pK.P,{children:e("toolbar.more")})},"dropdown-button")),(0,tl.jsx)(p8.h,{items:m,noSpacing:!0})};var v7=i(62002);let v5=()=>{var e;let{t}=(0,t7.useTranslation)(),{id:i}=(0,ts.useContext)(oG.R),{document:n,removeTrackedChanges:r,publishDraft:a}=(0,vx.Z)(i),{save:o,isLoading:l,isSuccess:s,isError:d,error:f}=(0,vD.O)(),{isAutoSaveLoading:c,runningTask:u}=(()=>{let{id:e}=(0,ts.useContext)(oG.R),[t,i]=(0,ts.useState)();return(0,ts.useEffect)(()=>{let t=v7.xr.getInstance(e),n=t.onRunningTaskChange(i);return i(t.getRunningTask()),()=>{n()}},[e]),{runningTask:t,isAutoSaveLoading:t===v7.Rm.AutoSave,isLoading:void 0!==t&&t!==v7.Rm.AutoSave}})(),{saveSchedules:m,isLoading:p,isSuccess:g,isError:h,error:b}=(0,h8.f)("document",i,!1),{deleteDraft:y,isLoading:v,buttonText:x}=(0,b1._)("document"),j=(0,h4.U)(),w=(null==n||null==(e=n.draftData)?void 0:e.isAutoSave)===!0;async function C(e,t){(null==n?void 0:n.changes)!==void 0&&Promise.all([o(e,()=>{null==t||t()}),m()]).catch(e=>{console.error(e)})}(0,ts.useEffect)(()=>{(async()=>{s&&g&&(r(),await j.success(t("save-success")))})().catch(e=>{console.error(e)})},[s,g]),(0,ts.useEffect)(()=>{d&&!(0,eY.isNil)(f)?(0,is.ZP)(new is.MS(f)):h&&!(0,eY.isNil)(b)&&(0,is.ZP)(new is.MS(b))},[d,h,f,b]),(0,ts.useEffect)(()=>v7.xr.getInstance(i).onErrorChange((e,i)=>{i===vD.R.AutoSave&&(j.error(t("auto-save-failed")),console.error("Auto-save failed:",e))}),[i,j,t]);let k=(()=>{let e=[],i=u===vD.R.Version&&(l||p)||v;if((0,hm.x)(null==n?void 0:n.permissions,"save")){(null==n?void 0:n.published)===!0&&e.push((0,tl.jsx)(ih.Button,{disabled:l||p||i,loading:u===vD.R.Version&&(l||p),onClick:async()=>{await C(vD.R.Version)},type:"default",children:t("toolbar.save-draft")},"save-draft"));let r=l||p||i;(null==n?void 0:n.published)===!1&&(0,hm.x)(null==n?void 0:n.permissions,"save")&&e.push((0,tl.jsx)(ih.Button,{disabled:r,loading:u===vD.R.Publish&&(l||p),onClick:async()=>{await C(vD.R.Publish,()=>{a()})},type:"default",children:t("toolbar.save-and-publish")},"save-draft")),(0,eY.isNil)(null==n?void 0:n.draftData)||e.push((0,tl.jsx)(pJ.L,{menu:{items:[{disabled:l,label:x,key:"delete-draft",onClick:y}]},children:(0,tl.jsx)(aM.h,{disabled:l||p||i,icon:{value:"chevron-down"},loading:v,type:"default"})},"dropdown"))}return e})(),T=(()=>{let e=[],i=l||p||v;return(null==n?void 0:n.published)===!0&&(0,hm.x)(null==n?void 0:n.permissions,"publish")&&e.push((0,tl.jsx)(ih.Button,{disabled:i,loading:u===vD.R.Publish&&(l||p),onClick:async()=>{await C(vD.R.Publish)},type:"primary",children:t("toolbar.save-and-publish")})),(null==n?void 0:n.published)===!1&&(0,hm.x)(null==n?void 0:n.permissions,"save")&&e.push((0,tl.jsx)(ih.Button,{disabled:i,loading:u===vD.R.Save&&(l||p),onClick:async()=>{await C(vD.R.Save)},type:"primary",children:t("toolbar.save-draft")})),e})();return(0,tl.jsxs)(tl.Fragment,{children:[c&&(0,tl.jsx)(o5.u,{title:t("auto-save.loading-tooltip"),children:(0,tl.jsx)(aI.y,{type:"classic"})}),!c&&w&&(0,tl.jsx)(o5.u,{title:t("auto-save.tooltip"),children:(0,tl.jsx)(rR.J,{value:"auto-save"})}),k.length>0&&(0,tl.jsx)(p8.h,{items:k,noSpacing:!0}),T.length>0&&(0,tl.jsx)(p8.h,{items:T,noSpacing:!0})]})};eR._.registerModule({onInit:()=>{let e=eB.nC.get(eO.j["Document/Editor/TypeRegistry"]);e.register({name:"page",tabManagerServiceId:"Document/Editor/PageTabManager"}),e.register({name:"email",tabManagerServiceId:"Document/Editor/EmailTabManager"}),e.register({name:"folder",tabManagerServiceId:"Document/Editor/FolderTabManager"}),e.register({name:"hardlink",tabManagerServiceId:"Document/Editor/HardlinkTabManager"}),e.register({name:"link",tabManagerServiceId:"Document/Editor/LinkTabManager"}),e.register({name:"snippet",tabManagerServiceId:"Document/Editor/SnippetTabManager"});let t=eB.nC.get(eO.j["App/ComponentRegistry/ComponentRegistry"]);t.register({name:e_.O8.document.editor.container.name,component:vY}),t.registerToSlot(e_.O8.document.editor.toolbar.slots.left.name,{name:"contextMenu",priority:100,component:v8}),t.registerToSlot(e_.O8.document.editor.toolbar.slots.right.name,{name:"workflowMenu",priority:100,component:h6}),t.registerToSlot(e_.O8.document.editor.toolbar.slots.right.name,{name:"saveButtons",priority:200,component:v5}),eB.nC.get(eO.j.widgetManager).registerWidget(vJ.K)}});var v9=i(42839),xe=i(16983);let xt={page:{icon:"document",labelKey:"page"},snippet:{icon:"snippet",labelKey:"snippet"},email:{icon:"email",labelKey:"email"},link:{icon:"document-link",labelKey:"link"},hardlink:{icon:"hardlink",labelKey:"hardlink"}};var xi=i(35272),xn=i(5207);class xr extends xn.w{async executeCloneRequest(){var e;let t={id:this.sourceId,parentId:this.targetId,documentCloneParameters:this.parameters??{}},i=await hd.h.dispatch(v9.hi.endpoints.documentClone.initiate(t));return(0,eY.isUndefined)(i.error)?(null==(e=i.data)?void 0:e.jobRunId)??null:((0,is.ZP)(new is.MS(i.error)),null)}constructor(e){super({sourceId:e.sourceId,targetId:e.targetId,title:e.title,elementType:s2.a.document,treeId:e.treeId,nodeId:e.nodeId}),this.parameters=e.parameters}}var xa=i(35950),xo=i(65638);let xl=e=>{let{t}=(0,t7.useTranslation)(),i=e.node??bs.l,{addFolderTreeContextMenuItem:n}=(0,bO.p)("document"),{renameTreeContextMenuItem:r}=(0,pM.j)("document",(0,pA.eG)("document","rename",parseInt(i.id))),{deleteTreeContextMenuItem:a}=(0,pI.R)("document",(0,pA.eG)("document","delete",parseInt(i.id))),{refreshTreeContextMenuItem:o}=(0,bN.T)("document"),{copyTreeContextMenuItem:l,cutTreeContextMenuItem:s,pasteCutContextMenuItem:d}=(0,bv.o)("document"),{lockTreeContextMenuItem:f,lockAndPropagateTreeContextMenuItem:c,unlockTreeContextMenuItem:u,unlockAndPropagateTreeContextMenuItem:m,isLockMenuHidden:p}=(0,bB.Z)("document"),{unpublishTreeContextMenuItem:g}=(0,vi.X)("document"),{publishTreeContextMenuItem:h}=(0,vu.K)("document"),{openInNewWindowTreeContextMenuItem:b}=(0,v1.N)(),{convertTreeContextMenuItem:y,canConvert:v}=(()=>{let{t:e}=(0,t7.useTranslation)(),[t,{isError:i,error:n}]=(0,v9.tV)(),{closeWidget:r}=(0,dy.A)(),a=(0,an.U8)(),o=(0,pU.useAppDispatch)(),{isTreeActionAllowed:l}=(0,b_._)();(0,ts.useEffect)(()=>{i&&(0,is.ZP)(new is.MS(n))},[i,n]);let s=async(e,i)=>{if(void 0!==(await t({id:e,type:i})).error)return;r((0,xe.h)("document",e));let n=(e=>{let t=xt[e];return{type:"name",value:(null==t?void 0:t.icon)??xt.page.icon}})(i);o((0,bj.P4)({nodeId:String(e),elementType:"document",newType:i,newIcon:n}))};return{convertTreeContextMenuItem:(t,i)=>{let n=parseInt(t.id),r=t.type,o=xt[i];return r===i||(0,eY.isNil)(o)?{key:`convert-to-${i}`,label:"",hidden:!0}:{key:`convert-to-${i}`,label:e(o.labelKey),icon:(0,tl.jsx)(rR.J,{value:o.icon}),onClick:()=>{a.confirm({title:e("convert-document"),content:e("convert-document-warning"),onOk:async()=>{await s(n,i)}})}}},canConvert:e=>l(bF.W.Convert)&&!(0,eY.isNil)(e.type)&&1!==parseInt(e.id)&&(0,eY.isNil)(e.locked)&&!(0,eY.isNil)(e.permissions)&&(0,hm.x)(e.permissions,"publish")}})(),{removeSiteTreeContextMenuItem:x,useAsSiteTreeContextMenuItem:j,editSiteTreeContextMenuItem:w}=(()=>{let{t:e}=(0,t7.useTranslation)(),[t,{error:i}]=(0,o2.Bj)(),[n,{error:r}]=(0,o2.XY)(),[a,{error:o}]=(0,o2.vC)(),{modal:l}=tN.App.useApp(),s=(0,pU.useAppDispatch)(),{isTreeActionAllowed:d}=(0,b_._)(),{treeId:f}=(0,bw.d)(),{openModal:c,currentDocumentId:u}=(()=>{let e=(0,ts.useContext)(xo.p);if(void 0===e)throw Error("useSiteModal must be used within a SiteModalProvider");return e})(),m=e=>{s((0,bj.sQ)({treeId:f,nodeId:String(e),isFetching:!1}))},p=e=>(0,eY.toNumber)(e.id);(0,ts.useEffect)(()=>{(0,eY.isUndefined)(i)||(0,is.ZP)(new is.MS(i))},[i]),(0,ts.useEffect)(()=>{(0,eY.isUndefined)(r)||(0,is.ZP)(new is.MS(r))},[r]),(0,ts.useEffect)(()=>{(0,eY.isUndefined)(o)||(0,is.ZP)(new is.MS(o))},[o]);let g=async e=>{let i=await t({id:e});(0,eY.isUndefined)(i.error)&&s((0,bj.v9)({nodeId:String(e),isSite:!1}))},h=async(e,t)=>{let i=(0,dW.H)(t.domains)?t.domains.split(/\r?\n/).map(e=>e.trim()).filter(Boolean):[],r={};(0,eY.isUndefined)(t.errorDocuments)||null===t.errorDocuments||Object.entries(t.errorDocuments).forEach(e=>{let[t,i]=e;(0,eY.isObject)(i)&&(0,eY.has)(i,"fullPath")&&(0,dW.H)(i.fullPath)&&(r[t]=i.fullPath)});let a={mainDomain:t.mainDomain??"",domains:i,errorDocument:(0,eY.isObject)(t.errorDocument)&&(0,eY.has)(t.errorDocument,"fullPath")&&(0,dW.H)(t.errorDocument.fullPath)?t.errorDocument.fullPath:"",localizedErrorDocuments:r,redirectToMainDomain:!!t.redirectToMainDomain},o=await n({id:e,updateSite:a});(0,eY.isUndefined)(o.error)&&s((0,bj.v9)({nodeId:String(e),isSite:!0}))},b=async(t,i)=>{c({title:e("document.site.use-as-site"),documentId:t,documentPath:i,initialValues:{mainDomain:"",domains:"",errorDocument:null,errorDocuments:{},redirectToMainDomain:!1},onSubmit:async e=>{await h(t,e)}})},y=async(t,i)=>{try{if(u===t)return void m(t);let{data:n,error:r}=await a({documentId:t},!1);if(!(0,eY.isUndefined)(r))return void m(t);if(!(0,eY.isUndefined)(n)&&null!==n){let r={mainDomain:n.mainDomain??"",domains:(0,eY.isUndefined)(n.domains)||null===n.domains?"":n.domains.join("\n"),errorDocument:n.errorDocument??null,errorDocuments:n.localizedErrorDocuments??{},redirectToMainDomain:!!n.redirectToMainDomain};c({title:(0,eY.isNil)(n.id)?e("document.site.edit-site"):`${e("document.site.edit-site")} - ID: ${n.id}`,documentId:t,documentPath:i,initialValues:r,onSubmit:async e=>{await h(t,e)}}),setTimeout(()=>{m(t)},100)}}catch(e){m(t),console.error("Error loading site data:",e)}};return{removeSiteTreeContextMenuItem:t=>{let i=!0===t.isSite;return{key:"removeSite",label:e("document.site.remove-site"),icon:(0,tl.jsx)(rR.J,{value:"trash"}),hidden:"page"!==t.type||!i||!(0,xa.y)("sites")||!d(bF.W.RemoveSite),onClick:()=>{var i;i=p(t),l.confirm({title:e("document.site.remove-site"),content:e("document.site.remove-site-confirmation"),okText:e("remove"),onOk:async()=>{await g(i)}})}}},useAsSiteTreeContextMenuItem:t=>{let i=!0===t.isSite;return{key:"useAsSite",label:e("document.site.use-as-site"),icon:(0,tl.jsx)(rR.J,{value:"home-root-folder"}),hidden:"page"!==t.type||i||!(0,xa.y)("sites")||!d(bF.W.UseAsSite),onClick:()=>{b(p(t),t.fullPath)}}},editSiteTreeContextMenuItem:t=>{let i=!0===t.isSite;return{key:"editSite",label:e("document.site.edit-site"),icon:(0,tl.jsx)(rR.J,{value:"edit"}),hidden:"page"!==t.type||!i||!(0,xa.y)("sites")||!d(bF.W.EditSite),onClick:()=>{var e;e=p(t),s((0,bj.sQ)({treeId:f,nodeId:String(e),isFetching:!0})),y(p(t),t.fullPath)}}}}})(),{pasteAsChildRecursiveTreeContextMenuItem:C,pasteRecursiveUpdatingReferencesTreeContextMenuItem:k,pasteAsChildTreeContextMenuItem:T,pasteAsNewLanguageVariantTreeContextMenuItem:S,pasteAsNewLanguageVariantRecursiveTreeContextMenuItem:D,pasteLanguageRecursiveUpdatingReferencesTreeContextMenuItem:E,pasteOnlyContentsTreeContextMenuItem:M,pasteAsChildRecursiveInheritanceTreeContextMenuItem:I,pasteRecursiveUpdatingReferencesInheritanceTreeContextMenuItem:L,pasteAsChildInheritanceTreeContextMenuItem:P,pasteAsNewLanguageVariantInheritanceTreeContextMenuItem:N,pasteAsNewLanguageVariantRecursiveInheritanceTreeContextMenuItem:A,pasteLanguageRecursiveUpdatingReferencesInheritanceTreeContextMenuItem:R,isPasteMenuHidden:O,isPasteInheritanceMenuHidden:B}=(()=>{let{t:e}=(0,t7.useTranslation)(),t=(0,pU.useAppDispatch)(),{paste:i}=(0,bv.o)("document"),{treeId:n}=(0,bw.d)(!0),{getStoredNode:r}=(0,vf.K)("document"),{isPasteHidden:a}=(0,vc.D)("document"),o=(0,p5.r)(),l=(0,xi.o)(),{getDisplayName:s}=(0,vS.Z)(),{modal:d}=tN.App.useApp(),[f]=tc.l.useForm(),c=(o.validLanguages??[]).map(e=>({value:e,label:`${s(e)} [${e}]`})),u=async(t,i,r)=>{if((0,eY.isNil)(t))throw Error("Source node is null");let a="string"==typeof t.id?parseInt(t.id):t.id,o="string"==typeof i.id?parseInt(i.id):i.id,s=new xr({sourceId:a,targetId:o,parameters:r,title:e("jobs.document-clone-job.title"),treeId:n,nodeId:String(o)});await l.runJob(s)},m=async(e,i)=>{if((0,eY.isNil)(e))return;let r="string"==typeof e.id?parseInt(e.id):e.id,a="string"==typeof i.id?parseInt(i.id):i.id;t((0,bj.sQ)({treeId:n,nodeId:String(a),isFetching:!0}));try{await t(v9.hi.endpoints.documentReplaceContent.initiate({sourceId:r,targetId:a})).unwrap()}catch(e){(0,is.ZP)(new is.aE(e.message))}finally{t((0,bj.sQ)({treeId:n,nodeId:String(a),isFetching:!1}))}},p=(e,t)=>{h(e,t,!1)},g=(e,t)=>{h(e,t,!0)},h=(t,i,n)=>{d.confirm({title:e("document.language-required"),content:(0,tl.jsx)(tc.l,{form:f,children:(0,tl.jsx)(tc.l.Item,{label:e("language"),name:"language",rules:[{required:!0,message:e("form.validation.required")}],children:(0,tl.jsx)(tC.P,{options:c})})}),onOk:async()=>{await b(t,i,n)},onCancel:y,okText:e("paste"),cancelText:e("cancel")})},b=async(e,t,i)=>{let{language:n}=await f.validateFields();try{let a;switch(t){case"child":a={language:n,enableInheritance:i,recursive:!1,updateReferences:!1};break;case"recursive":a={language:n,enableInheritance:i,recursive:!0,updateReferences:!1};break;case"recursive-update-references":a={language:n,enableInheritance:i,recursive:!0,updateReferences:!0};break;default:return}await u(r(),e,a),f.resetFields()}catch(e){console.error("Clone operation failed:",e)}},y=()=>{f.resetFields()},v=e=>a(e,"copy");return{pasteTreeContextMenuItem:t=>({label:e("element.tree.paste"),key:gM.N.paste,icon:(0,tl.jsx)(rR.J,{value:"paste"}),hidden:v(t),onClick:async()=>{await i(parseInt(t.id))}}),pasteAsChildRecursiveTreeContextMenuItem:t=>({label:e("element.tree.paste-as-child-recursive"),key:gM.N.pasteAsChildRecursive,icon:(0,tl.jsx)(rR.J,{value:"paste"}),hidden:v(t),onClick:async()=>{await u(r(),t,{language:null,enableInheritance:!1,recursive:!0,updateReferences:!1})}}),pasteRecursiveUpdatingReferencesTreeContextMenuItem:t=>({label:e("element.tree.paste-recursive-updating-references"),key:gM.N.pasteRecursiveUpdatingReferences,icon:(0,tl.jsx)(rR.J,{value:"paste"}),hidden:v(t),onClick:async()=>{await u(r(),t,{language:null,enableInheritance:!1,recursive:!0,updateReferences:!0})}}),pasteAsChildTreeContextMenuItem:t=>({label:e("element.tree.paste-as-child"),key:gM.N.pasteAsChild,icon:(0,tl.jsx)(rR.J,{value:"paste"}),hidden:v(t),onClick:async()=>{await u(r(),t,{language:null,enableInheritance:!1,recursive:!1,updateReferences:!1})}}),pasteAsNewLanguageVariantTreeContextMenuItem:t=>({label:e("document.paste-as-new-language-variant"),key:"pasteAsNewLanguageVariant",icon:(0,tl.jsx)(rR.J,{value:"paste"}),hidden:v(t),onClick:()=>{p(t,"child")}}),pasteAsNewLanguageVariantRecursiveTreeContextMenuItem:t=>({label:e("document.paste-as-new-language-variant-recursive"),key:"pasteAsNewLanguageVariantRecursive",icon:(0,tl.jsx)(rR.J,{value:"paste"}),hidden:v(t),onClick:()=>{p(t,"recursive")}}),pasteLanguageRecursiveUpdatingReferencesTreeContextMenuItem:t=>({label:e("document.paste-language-recursive-updating-references"),key:"pasteLanguageRecursiveUpdatingReferences",icon:(0,tl.jsx)(rR.J,{value:"paste"}),hidden:v(t),onClick:()=>{p(t,"recursive-update-references")}}),pasteOnlyContentsTreeContextMenuItem:t=>({label:e("element.tree.paste-only-contents"),key:gM.N.pasteOnlyContents,icon:(0,tl.jsx)(rR.J,{value:"paste"}),hidden:(e=>{let t=r();return v(e)||"folder"===e.type||e.isLocked||(null==t?void 0:t.type)!==e.type})(t),onClick:async()=>{await m(r(),t)}}),pasteAsChildRecursiveInheritanceTreeContextMenuItem:t=>({label:e("element.tree.paste-as-child-recursive"),key:`${gM.N.pasteAsChildRecursive}-inheritance`,icon:(0,tl.jsx)(rR.J,{value:"paste"}),hidden:v(t),onClick:async()=>{await u(r(),t,{language:null,enableInheritance:!0,recursive:!0,updateReferences:!1})}}),pasteRecursiveUpdatingReferencesInheritanceTreeContextMenuItem:t=>({label:e("element.tree.paste-recursive-updating-references"),key:`${gM.N.pasteRecursiveUpdatingReferences}-inheritance`,icon:(0,tl.jsx)(rR.J,{value:"paste"}),hidden:v(t),onClick:async()=>{await u(r(),t,{language:null,enableInheritance:!0,recursive:!0,updateReferences:!0})}}),pasteAsChildInheritanceTreeContextMenuItem:t=>({label:e("element.tree.paste-as-child"),key:`${gM.N.pasteAsChild}-inheritance`,icon:(0,tl.jsx)(rR.J,{value:"paste"}),hidden:v(t),onClick:async()=>{await u(r(),t,{language:null,enableInheritance:!0,recursive:!1,updateReferences:!1})}}),pasteAsNewLanguageVariantInheritanceTreeContextMenuItem:t=>({label:e("document.paste-as-new-language-variant"),key:"pasteAsNewLanguageVariant-inheritance",icon:(0,tl.jsx)(rR.J,{value:"paste"}),hidden:v(t),onClick:()=>{g(t,"child")}}),pasteAsNewLanguageVariantRecursiveInheritanceTreeContextMenuItem:t=>({label:e("document.paste-as-new-language-variant-recursive"),key:"pasteAsNewLanguageVariantRecursive-inheritance",icon:(0,tl.jsx)(rR.J,{value:"paste"}),hidden:v(t),onClick:()=>{g(t,"recursive")}}),pasteLanguageRecursiveUpdatingReferencesInheritanceTreeContextMenuItem:t=>({label:e("document.paste-language-recursive-updating-references"),key:"pasteLanguageRecursiveUpdatingReferences-inheritance",icon:(0,tl.jsx)(rR.J,{value:"paste"}),hidden:v(t),onClick:()=>{g(t,"recursive-update-references")}}),isPasteMenuHidden:e=>v(e),isPasteInheritanceMenuHidden:e=>v(e)}})(),F=[n(i),r(i),l(i),{label:t("element.tree.paste"),key:"paste",icon:(0,tl.jsx)(rR.J,{value:"paste"}),hidden:O(i),children:[C(i),k(i),T(i),S(i),D(i),E(i),M(i)]},{label:t("document.paste-inheritance"),key:"paste-inheritance",icon:(0,tl.jsx)(rR.J,{value:"paste"}),hidden:B(i),children:[I(i),L(i),P(i),N(i),A(i),R(i)]},s(i),d(i),h(i),g(i),a(i),b(i),{label:t("element.tree.context-menu.advanced"),key:"advanced",icon:(0,tl.jsx)(rR.J,{value:"more"}),children:[{label:t("convert-to"),key:"convert-to",icon:(0,tl.jsx)(rR.J,{value:"flip-forward"}),hidden:!v(i),children:[y(i,"page"),y(i,"snippet"),y(i,"email"),y(i,"link"),y(i,"hardlink")]},{label:t("element.lock"),key:"advanced-lock",icon:(0,tl.jsx)(rR.J,{value:"lock"}),hidden:p(i),children:[f(i),c(i),u(i),m(i)]},j(i),w(i),x(i)]},o(i)];return(0,tl.jsx)(bV.v,{dataTestId:(0,dM.Mj)("document",i.id),items:F})};eR._.registerModule({onInit:()=>{eB.nC.get(eO.j["App/ComponentRegistry/ComponentRegistry"]).register({name:hy.O.document.tree.contextMenu.name,component:xl})}});let xs=e=>{let{t}=(0,t7.useTranslation)();return(0,tl.jsx)(bg,{...e,label:t("document.document-tree.search",{folderName:e.node.label}),node:e.node,total:e.total})},xd=bS((b=bs.O,y=(0,ts.forwardRef)((e,t)=>{let{ref:i,...n}=e;return(0,tl.jsx)(b,{...e,ref:t,wrapNode:t=>(0,tl.jsx)(bR.ZP,{renderMenu:()=>(0,tl.jsx)(xl,{node:n}),children:(0,eY.isUndefined)(e.wrapNode)?t:e.wrapNode(t)})})}),v=(0,ts.forwardRef)((e,t)=>{var i;let n=e.metaData.document,{t:r}=(0,t7.useTranslation)();if((null==(i=e.metaData)?void 0:i.document)===void 0)return(0,tl.jsx)(y,{...e});let a=(0,eY.isString)(null==n?void 0:n.key)&&(null==n?void 0:n.key)!==""?null==n?void 0:n.key:r("home");return(0,tl.jsx)(bb._,{info:{icon:e.icon,title:a,type:"document",data:{...n}},children:(0,tl.jsx)(y,{...e,ref:t})})}),x=(0,ts.forwardRef)((e,t)=>{let i=e.isLoading??!1,[,{isLoading:n}]=(0,bk.um)({fixedCacheKey:`DOCUMENT_ACTION_DELETE_ID_${e.id}`}),{isFetching:r,isLoading:a,isDeleting:o}=(0,bd.J)(e.id);return(0,tl.jsx)(v,{...e,danger:i||n||o,isLoading:i||!0!==a&&r||n||o||a,ref:t})}),(0,ts.forwardRef)((e,t)=>{var i;let{move:n}=(0,bv.o)("document"),{isSourceAllowed:r,isTargetAllowed:a}=bC();if((null==(i=e.metaData)?void 0:i.document)===void 0)return(0,tl.jsx)(x,{...e});let o=e.metaData.document;if(!a(o))return(0,tl.jsx)(x,{...e});let l=e=>{let t=e.data;r(t)&&a(o)&&n({currentElement:{id:t.id,parentId:t.parentId},targetElement:{id:o.id,parentId:o.parentId}}).catch(()=>{(0,is.ZP)(new is.aE("Item could not be moved"))})},s=e=>"document"===e.type,d=e=>{let t=e.data;return"document"===e.type&&r(t)&&a(o)};return(0,tl.jsx)(x,{...e,ref:t,wrapNode:t=>(0,tl.jsx)(oE.b,{disableDndActiveIndicator:!0,isValidContext:s,isValidData:d,onDrop:l,children:(0,eY.isUndefined)(e.wrapNode)?t:e.wrapNode(t)})})}))),xf=e=>{let{id:t=1,showRoot:i=!0}=e,{openDocument:n}=(0,v2.l)(),{rootNode:r,isLoading:a}=(0,bD.V)(t,i),o=(0,bE.q)().get(hy.O.document.tree.contextMenu.name);if(i&&a)return(0,tl.jsx)(aL.x,{padding:"small",children:(0,tl.jsx)(by.O,{})});async function l(e){n({config:{id:parseInt(e.id)}})}return(0,tl.jsx)(bl.fr,{contextMenu:o,nodeId:t,onSelect:l,renderFilter:xs,renderNode:xd,renderNodeContent:bl.lG.renderNodeContent,renderPager:bm,rootNode:r,showRoot:i})};function xc(e){let{description:t}=e,{t:i}=(0,t7.useTranslation)();return(0,tl.jsx)(aB.V,{centered:!0,children:(0,tl.jsxs)(rZ.k,{align:"center",gap:"mini",style:{maxWidth:"300px",textAlign:"center"},vertical:!0,children:[(0,tl.jsxs)(rZ.k,{align:"center",gap:"mini",children:[(0,tl.jsx)(rR.J,{value:"info-circle"}),(0,tl.jsx)("span",{children:i("widget.missing-context.title")})]}),(0,tl.jsx)(nc.x,{type:"secondary",children:t})]})})}eR._.registerModule({onInit:()=>{eB.nC.get(eO.j.widgetManager).registerWidget({name:"document-tree",component:xf})}});var xu=i(33159);function xm(e){let{dataObject:t}=(0,am.H)(e.id),{t:i}=(0,t7.useTranslation)();return(null==t?void 0:t.modified)!==!0?(0,tl.jsx)(tl.Fragment,{}):(0,tl.jsx)(o5.u,{placement:"bottomLeft",title:(0,tl.jsxs)(tl.Fragment,{children:[i("detached-tab.draft-tooltip"),(0,tl.jsx)(aL.x,{padding:{top:"normal"},children:i("detached-tab.draft-tooltip-addon")})]}),children:(0,tl.jsx)(aL.x,{padding:{x:"extra-small"},children:(0,tl.jsxs)(rZ.k,{align:"flex-start",gap:"mini",children:[(0,tl.jsx)(rR.J,{value:"draft"}),(0,tl.jsx)(nc.x,{children:"Draft"})]})})})}function xp(e){let{context:t,tabKey:i}=e,{getOpenedMainWidget:n}=(0,dy.A)(),{editorType:r,isLoading:a}=(0,gj.q)(t.config.id,t.type),{t:o}=(0,t7.useTranslation)();if(a)return(0,tl.jsx)(aB.V,{loading:!0});if(void 0===r)return(0,tl.jsx)(xc,{description:o("widget.missing-tab-context.description")});let l=n(),s=eB.nC.get(r.tabManagerServiceId).getTab(i),d=eB.nC.get(eO.j.widgetManager);if(void 0===s||void 0===l)return(0,tl.jsx)(xc,{description:o("widget.missing-tab-context.description")});let f=d.getWidget((null==l?void 0:l.getComponent())??"");if((null==f?void 0:f.getContextProvider)===void 0)return(0,tl.jsx)(xc,{description:o("widget.missing-tab-context.description")});let c=f.getContextProvider(t,s.children);return void 0===c?(0,tl.jsx)(xc,{description:o("widget.missing-tab-context.description")}):(0,tl.jsx)(aF.D,{renderTopBar:(0,tl.jsxs)(aO.o,{align:"center",position:"top",size:"small",theme:"secondary",children:[(0,tl.jsx)(xu.U,{elementType:t.type,id:t.config.id}),"data-object"===t.type&&(0,tl.jsx)(xm,{id:t.config.id})]}),children:c})}var xg=i(75796);let xh=e=>{let{tabKey:t}=e,{context:i}=(0,xg.Q)(),{t:n}=(0,t7.useTranslation)();return void 0===i?(0,tl.jsx)(xc,{description:n("widget.missing-context.description")}):(0,tl.jsx)(xp,{context:i,tabKey:t},i.type)};eR._.registerModule({onInit:()=>{eB.nC.get(eO.j.widgetManager).registerWidget({name:"detachable-tab",component:xh})}});var xb=i(67247),xy=i(97676);let xv=()=>{let{pageSize:e,treeFilterArgs:t}=bu(),i=(0,pU.useAppDispatch)();async function n(t,n){let r=i(bG.hi.endpoints.dataObjectGetTree.initiate(n,{forceRefetch:!0}));return await r.then(i=>{let{data:n,isError:r,error:a}=i;if(r)return void(0,is.ZP)(new is.MS(a));if(!r&&!(0,eY.isUndefined)(n)){let i=[];return n.items.forEach(e=>{i.push({id:e.id.toString(),elementType:s2.a.dataObject,icon:(0,pA.Ff)(e,{type:"name",value:"data-object"}),label:e.key,type:e.type,parentId:e.parentId.toString(),fullPath:e.fullPath,hasChildren:e.hasChildren,locked:e.locked,isLocked:e.isLocked,isPublished:e.published,metaData:{dataObject:e},permissions:e.permissions??[],internalKey:`${t.internalKey}-${e.id}`})}),{nodes:i,total:n.totalItems??e}}}).catch(()=>void 0)}return{fetchRoot:async function(e){return await n({id:"0",internalKey:"0"},{pageSize:1,page:1,excludeFolders:!1,pathIncludeParent:!0,pathIncludeDescendants:!1,pqlQuery:1===e?void 0:"id = "+e})},fetchChildren:async function(i,r){return await n(i,{parentId:parseInt(i.id),pageSize:e,page:r.page,idSearchTerm:r.searchTerm,...t})}}},xx=()=>{let{pageSize:e,treeFilterArgs:t}=bu(),i=(0,pU.useAppDispatch)();async function n(t,n){let r=i(pk.api.endpoints.assetGetTree.initiate(n,{forceRefetch:!0}));return await r.then(i=>{let{data:n,isError:r,error:a}=i;if(r)return void(0,is.ZP)(new is.MS(a));if(!r&&!(0,eY.isUndefined)(n)){let i=[];return n.items.forEach(e=>{i.push({id:e.id.toString(),elementType:s2.a.asset,icon:(0,pA.Ff)(e,{type:"name",value:"unknown"}),label:e.filename,type:e.type,parentId:e.parentId.toString(),fullPath:e.fullPath,hasChildren:e.hasChildren,locked:e.locked,isLocked:e.isLocked,metaData:{asset:e},permissions:e.permissions??[],internalKey:`${t.internalKey}-${e.id}`})}),{nodes:i,total:n.totalItems??e}}}).catch(()=>void 0)}return{fetchRoot:async function(e){return await n({id:"0",internalKey:"0"},{pageSize:1,page:1,excludeFolders:!1,pathIncludeParent:!0,pathIncludeDescendants:!1,pqlQuery:1===e?void 0:"id = "+e})},fetchChildren:async function(i,r){return await n(i,{parentId:parseInt(i.id),pageSize:e,page:r.page,idSearchTerm:r.searchTerm,...t})}}},xj=()=>{let{pageSize:e,treeFilterArgs:t}=bu(),i=(0,pU.useAppDispatch)();async function n(t,n){let r=i(o2.hi.endpoints.documentGetTree.initiate(n,{forceRefetch:!0}));return await r.then(i=>{let{data:n,isError:r,error:a}=i;if(r)return void(0,is.ZP)(new is.MS(a));if(!r&&!(0,eY.isUndefined)(n)){let i=[];return n.items.forEach(e=>{i.push({id:e.id.toString(),elementType:s2.a.document,icon:(0,pA.Ff)(e,{type:"name",value:"document"}),label:e.key,type:e.type,parentId:e.parentId.toString(),fullPath:e.fullPath,hasChildren:e.hasChildren,locked:e.locked,isLocked:e.isLocked,isPublished:e.published,isSite:e.isSite,metaData:{document:e},permissions:e.permissions??[],internalKey:`${t.internalKey}-${e.id}`})}),{nodes:i,total:n.totalItems??e}}}).catch(()=>void 0)}return{fetchRoot:async function(e){return await n({id:"0",internalKey:"0"},{pageSize:1,page:1,excludeFolders:!1,pathIncludeParent:!0,pathIncludeDescendants:!1,pqlQuery:1===e?void 0:"id = "+e})},fetchChildren:async function(i,r){return await n(i,{parentId:parseInt(i.id),pageSize:e,page:r.page,idSearchTerm:r.searchTerm,...t})}}};var xw=i(52060);let xC=e=>{let{id:t,elementType:i,rootFolderId:n,classes:r,pql:a,pageSize:o,contextPermissions:l,showRoot:s=!1}=e,{asset_tree_paging_limit:d,object_tree_paging_limit:f}=(0,p5.r)(),c=o??(i===s2.a.asset?d:f);return(0,tl.jsx)(xy.s,{treeId:t,children:(0,tl.jsx)(xb.W,{permissions:{...l},children:(0,tl.jsxs)(bc,{classIds:r,pageSize:c,pqlQuery:a??void 0,children:[i===s2.a.asset&&(0,tl.jsx)(xw.Q,{nodeApiHook:xx,children:(0,tl.jsx)(bH,{id:n??1,showRoot:s})}),i===s2.a.dataObject&&(0,tl.jsx)(xw.Q,{nodeApiHook:xv,children:(0,tl.jsx)(vb,{id:n??1,showRoot:s})}),i===s2.a.document&&(0,tl.jsx)(xw.Q,{nodeApiHook:xj,children:(0,tl.jsx)(xf,{id:n??1,showRoot:s})})]})})})};eR._.registerModule({onInit:()=>{eB.nC.get(eO.j.widgetManager).registerWidget({name:"element_tree",component:xC})}});var xk=i(65179),xT=i(24568);let xS=e=>{let{removeJob:t}=(0,gn.C)(),{t:i}=(0,t7.useTranslation)();return(0,tl.jsx)(xT.R,{failureButtonActions:[{label:i("jobs.job.button-hide"),handler:()=>{t(e.id)}}],finishedWithErrorsButtonActions:[{label:i("jobs.job.button-hide"),handler:()=>{t(e.id)}}],successButtonActions:[{label:i("jobs.job.button-hide"),handler:()=>{t(e.id)}}],...e,progress:e.config.progress??0})};var xD=i(54275);let xE=e=>{let{id:t,topics:i,status:n,action:r}=e,{open:a,close:o}=(0,xD.L)({topics:i,messageHandler:function(e){let i=JSON.parse(e.data);i.jobRunId===c.current&&(void 0!==i.progress&&s(i.progress),void 0!==i.status&&("finished"===i.status&&(d(t,{status:gr.B.SUCCESS}),o()),"failed"===i.status&&(d(t,{status:gr.B.FAILED}),o())))},openHandler:function(){r().then(e=>{c.current=e}).catch(console.error)}}),[l,s]=(0,ts.useState)(0),{updateJob:d,removeJob:f}=(0,gn.C)(),c=(0,ts.useRef)(),{t:u}=(0,t7.useTranslation)();return(0,ts.useEffect)(()=>{gr.B.QUEUED===n&&(d(t,{status:gr.B.RUNNING}),a())},[e.status]),(0,tl.jsx)(xT.R,{failureButtonActions:[{label:u("jobs.job.button-retry"),handler:function(){d(t,{status:gr.B.QUEUED})}},{label:u("jobs.job.button-hide"),handler:()=>{f(t)}}],successButtonActions:[{label:u("jobs.job.button-download"),handler:function(){let i=e.config.downloadUrl,n=document.createElement("a");n.href=i.replace("{jobRunId}",c.current.toString()),n.download="",n.click(),f(t)}}],...e,progress:l})},xM=e=>{let{id:t,topics:i,status:n,action:r}=e,[a,o]=(0,ts.useState)(0),{updateJob:l,removeJob:s}=(0,gn.C)(),d=(0,ts.useRef)(),{t:f}=(0,t7.useTranslation)(),[c,u]=(0,ts.useState)(void 0),m=(0,pU.useAppDispatch)(),p=()=>{l(t,{status:gr.B.SUCCESS})},{open:g,close:h}=(0,xD.L)({topics:i,messageHandler:e=>{let i=JSON.parse(e.data);if(i.jobRunId===d.current&&(void 0!==i.progress&&o(i.progress),void 0!==i.status)){if("finished"===i.status&&void 0!==i.messages){let e=i.messages;void 0!==e.jobRunChildId&&(d.current=e.jobRunChildId,u(2),o(0)),void 0===e.jobRunChildId&&(p(),h())}"finished_with_errors"===i.status&&(p(),h()),"failed"===i.status&&(l(t,{status:gr.B.FAILED}),h())}},openHandler:()=>{r().then(e=>{d.current=e}).catch(()=>{s(t)})}});(0,ts.useEffect)(()=>{gr.B.QUEUED===n&&g(),gr.B.RUNNING===n&&u(1),gr.B.SUCCESS===n&&(u(void 0),m((0,bj.D9)({nodeId:e.config.parentFolder,elementType:"asset"})))},[e.status]);let b=(0,eY.isUndefined)(c)?e.title:f(`jobs.zip-upload-job.step${c}.title`);return(0,tl.jsx)(xT.R,{failureButtonActions:[{label:f("jobs.job.button-hide"),handler:()=>{s(t)}}],successButtonActions:[{label:f("jobs.job.button-hide"),handler:()=>{s(t)}}],...e,progress:a,step:c,title:b,totalSteps:2})};var xI=i(35985);let xL=e=>{let{id:t,topics:i,status:n,action:r,refreshGrid:a}=e,[o,l]=(0,ts.useState)(0),s=(0,ts.useRef)(),{t:d}=(0,t7.useTranslation)(),{open:f,close:c}=(0,xD.L)({topics:i,messageHandler:function(i){let n=JSON.parse(i.data);n.jobRunId===s.current&&(void 0!==n.progress&&l(n.progress),void 0!==n.status&&("finished"===n.status&&(u(t,{status:gr.B.SUCCESS}),c(),xI.Y.publish({identifier:{type:"asset:listing:refresh",id:e.config.assetContextId}})),"failed"===n.status&&(u(t,{status:gr.B.FAILED}),c())))},openHandler:function(){r().then(e=>{s.current=e}).catch(console.error)}}),{updateJob:u,removeJob:m}=(0,gn.C)();(0,ts.useEffect)(()=>{gr.B.QUEUED===n&&(u(t,{status:gr.B.RUNNING}),f())},[]);let p=async()=>{await a()};return(0,tl.jsx)(xT.R,{failureButtonActions:[{label:d("jobs.job.button-retry"),handler:()=>{u(t,{status:gr.B.QUEUED}),f()}},{label:d("jobs.job.button-hide"),handler:()=>{m(t)}}],successButtonActions:[{label:d("jobs.job.button-reload"),handler:async()=>{await p()}},{label:d("jobs.job.button-hide"),handler:()=>{m(t)}}],...e,progress:o})},xP=e=>{let{id:t,topics:i,status:n,action:r,refreshGrid:a}=e,[o,l]=(0,ts.useState)(0),s=(0,ts.useRef)(),{t:d}=(0,t7.useTranslation)(),{open:f,close:c}=(0,xD.L)({topics:i,messageHandler:function(i){let n=JSON.parse(i.data);n.jobRunId===s.current&&(void 0!==n.progress&&l(n.progress),void 0!==n.status&&("finished"===n.status&&(u(t,{status:gr.B.SUCCESS}),c(),xI.Y.publish({identifier:{type:"asset:listing:refresh",id:e.config.assetContextId}})),"failed"===n.status&&(u(t,{status:gr.B.FAILED}),c())))},openHandler:function(){r().then(e=>{s.current=e}).catch(console.error)}}),{updateJob:u,removeJob:m}=(0,gn.C)();(0,ts.useEffect)(()=>{gr.B.QUEUED===n&&(u(t,{status:gr.B.RUNNING}),f())},[]);let p=async()=>{await a()};return(0,tl.jsx)(xT.R,{failureButtonActions:[{label:d("jobs.job.button-retry"),handler:()=>{u(t,{status:gr.B.QUEUED}),f()}},{label:d("jobs.job.button-hide"),handler:()=>{m(t)}}],successButtonActions:[{label:d("jobs.job.button-reload"),handler:async()=>{await p()}},{label:d("jobs.job.button-hide"),handler:()=>{m(t)}}],...e,progress:o})},xN=e=>{let{id:t,topics:i,status:n,action:r}=e,{open:a,close:o}=(0,xD.L)({topics:i,messageHandler:function(e){let i=JSON.parse(e.data);i.jobRunId===c.current&&(void 0!==i.progress&&s(i.progress),void 0!==i.status&&("finished"===i.status&&(d(t,{status:gr.B.SUCCESS}),o()),"finished_with_errors"===i.status&&(d(t,{status:gr.B.SUCCESS}),o()),"failed"===i.status&&(d(t,{status:gr.B.FAILED}),o())))},openHandler:function(){r().then(e=>{c.current=e}).catch(console.error)}}),[l,s]=(0,ts.useState)(0),{updateJob:d,removeJob:f}=(0,gn.C)(),c=(0,ts.useRef)(),{t:u}=(0,t7.useTranslation)();return(0,ts.useEffect)(()=>{gr.B.QUEUED===n&&(d(t,{status:gr.B.RUNNING}),a())},[e.status]),(0,tl.jsx)(xT.R,{failureButtonActions:[{label:u("jobs.job.button-hide"),handler:()=>{f(t)}}],successButtonActions:[{label:u("jobs.job.button-hide"),handler:()=>{f(t)}}],...e,progress:l})};eR._.registerModule({onInit(){let e=eB.nC.get(eO.j["ExecutionEngine/JobComponentRegistry"]);e.registerComponent("default",xk.v),e.registerComponent("default-message-bus",xS),e.registerComponent("download",xE),e.registerComponent("batch-edit",xL),e.registerComponent("batch-delete",xP),e.registerComponent("zip-upload",xM),e.registerComponent("tag-assign",xN)}}),eR._.registerModule({onInit(){let e=eB.nC.get(eO.j["DynamicTypes/FieldFilterRegistry"]);e.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/FieldFilter/DataObjectAdapter"])),e.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/FieldFilter/DataObjectObjectBrick"])),e.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/FieldFilter/String"])),e.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/FieldFilter/Fulltext"])),e.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/FieldFilter/Input"])),e.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/FieldFilter/None"])),e.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/FieldFilter/Id"])),e.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/FieldFilter/Number"])),e.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/FieldFilter/Multiselect"])),e.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/FieldFilter/Date"])),e.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/FieldFilter/Boolean"])),e.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/FieldFilter/BooleanSelect"]));let t=eB.nC.get(eO.j["DynamicTypes/BatchEditRegistry"]);t.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/BatchEdit/Text"])),t.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/BatchEdit/TextArea"])),t.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/BatchEdit/Datetime"])),t.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/BatchEdit/Select"])),t.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/BatchEdit/Checkbox"])),t.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/BatchEdit/ElementDropzone"])),t.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/BatchEdit/DataObjectAdapter"])),t.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/BatchEdit/DataObjectObjectBrick"])),eB.nC.get(eO.j["DynamicTypes/ListingRegistry"]).registerDynamicType(eB.nC.get(eO.j["DynamicTypes/Listing/AssetLink"]));let i=eB.nC.get(eO.j["DynamicTypes/GridCellRegistry"]);i.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/GridCell/Text"])),i.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/GridCell/String"])),i.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/GridCell/Textarea"])),i.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/GridCell/Number"])),i.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/GridCell/Select"])),i.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/GridCell/MultiSelect"])),i.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/GridCell/Boolean"])),i.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/GridCell/Checkbox"])),i.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/GridCell/Date"])),i.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/GridCell/Time"])),i.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/GridCell/DateTime"])),i.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/GridCell/AssetLink"])),i.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/GridCell/ObjectLink"])),i.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/GridCell/DocumentLink"])),i.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/GridCell/OpenElement"])),i.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/GridCell/AssetPreview"])),i.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/GridCell/AssetActions"])),i.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/GridCell/DataObjectActions"])),i.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/GridCell/DependencyTypeIcon"])),i.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/GridCell/AssetCustomMetadataIcon"])),i.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/GridCell/AssetCustomMetadataValue"])),i.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/GridCell/PropertyIcon"])),i.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/GridCell/PropertyValue"])),i.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/GridCell/WebsiteSettingsValue"])),i.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/GridCell/ScheduleActionsSelect"])),i.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/GridCell/VersionsIdSelect"])),i.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/GridCell/AssetVersionPreviewFieldLabel"])),i.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/GridCell/Asset"])),i.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/GridCell/Object"])),i.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/GridCell/Document"])),i.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/GridCell/Element"])),i.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/GridCell/LanguageSelect"])),i.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/GridCell/Translate"])),i.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/GridCell/DataObjectAdapter"])),i.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/GridCell/DataObjectAdvanced"])),i.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/GridCell/DataObjectObjectBrick"])),eB.nC.get(eO.j["DynamicTypes/AdvancedGridCellRegistry"]).registerDynamicType(eB.nC.get(eO.j["DynamicTypes/GridCell/String"]));let n=eB.nC.get(eO.j["DynamicTypes/MetadataRegistry"]);n.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/Metadata/Asset"])),n.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/Metadata/Checkbox"])),n.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/Metadata/Date"])),n.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/Metadata/Document"])),n.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/Metadata/Input"])),n.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/Metadata/Object"])),n.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/Metadata/Select"])),n.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/Metadata/Textarea"]));let r=eB.nC.get(eO.j["DynamicTypes/ObjectLayoutRegistry"]);r.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectLayout/Panel"])),r.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectLayout/Tabpanel"])),r.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectLayout/Accordion"])),r.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectLayout/Region"])),r.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectLayout/Text"])),r.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectLayout/Fieldset"])),r.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectLayout/FieldContainer"]));let a=eB.nC.get(eO.j["DynamicTypes/ObjectDataRegistry"]);a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/Input"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/Textarea"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/Wysiwyg"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/Password"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/InputQuantityValue"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/Select"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/MultiSelect"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/Language"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/LanguageMultiSelect"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/Country"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/CountryMultiSelect"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/User"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/BooleanSelect"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/Numeric"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/NumericRange"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/Slider"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/QuantityValue"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/QuantityValueRange"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/Consent"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/Firstname"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/Lastname"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/Email"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/Gender"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/RgbaColor"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/EncryptedField"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/CalculatedValue"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/Checkbox"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/Link"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/UrlSlug"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/Date"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/Datetime"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/DateRange"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/Time"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/ExternalImage"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/Image"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/Video"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/HotspotImage"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/ImageGallery"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/GeoPoint"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/GeoBounds"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/GeoPolygon"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/GeoPolyLine"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/ManyToOneRelation"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/ManyToManyRelation"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/ManyToManyObjectRelation"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/AdvancedManyToManyObjectRelation"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/AdvancedManyToManyRelation"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/ReverseObjectRelation"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/Table"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/StructuredTable"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/Block"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/LocalizedFields"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/FieldCollection"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/ObjectBrick"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/ClassificationStore"]));let o=eB.nC.get(eO.j["DynamicTypes/DocumentEditableRegistry"]);o.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/DocumentEditable/Block"])),o.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/DocumentEditable/ScheduledBlock"])),o.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/DocumentEditable/Checkbox"])),o.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/DocumentEditable/Date"])),o.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/DocumentEditable/Embed"])),o.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/DocumentEditable/Input"])),o.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/DocumentEditable/Link"])),o.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/DocumentEditable/Numeric"])),o.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/DocumentEditable/Relation"])),o.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/DocumentEditable/Relations"])),o.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/DocumentEditable/Renderlet"])),o.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/DocumentEditable/Select"])),o.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/DocumentEditable/Snippet"])),o.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/DocumentEditable/Table"])),o.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/DocumentEditable/Textarea"])),o.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/DocumentEditable/Wysiwyg"])),o.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/DocumentEditable/MultiSelect"])),o.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/DocumentEditable/Image"])),o.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/DocumentEditable/Pdf"])),o.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/DocumentEditable/Video"])),o.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/DocumentEditable/Area"])),o.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/DocumentEditable/Areablock"]));let l=eB.nC.get(eO.j["DynamicTypes/EditableDialogLayoutRegistry"]);l.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/EditableDialogLayout/Tabpanel"])),l.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/EditableDialogLayout/Panel"]));let s=eB.nC.get(eO.j["DynamicTypes/AssetRegistry"]);s.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/Asset/Archive"])),s.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/Asset/Audio"])),s.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/Asset/Document"])),s.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/Asset/Folder"])),s.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/Asset/Image"])),s.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/Asset/Text"])),s.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/Asset/Unknown"])),s.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/Asset/Video"]));let d=eB.nC.get(eO.j["DynamicTypes/DocumentRegistry"]);d.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/Document/Email"])),d.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/Document/Folder"])),d.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/Document/Hardlink"])),d.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/Document/Link"])),d.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/Document/Newsletter"])),d.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/Document/Snippet"])),d.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/Document/Page"]));let f=eB.nC.get(eO.j["DynamicTypes/ObjectRegistry"]);f.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/Object/Folder"])),f.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/Object/Object"])),f.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/Object/Variant"]));let c=eB.nC.get(eO.j["DynamicTypes/Grid/SourceFieldsRegistry"]);c.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/Grid/SourceFields/Text"])),c.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/Grid/SourceFields/SimpleField"])),c.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/Grid/SourceFields/RelationField"]));let u=eB.nC.get(eO.j["DynamicTypes/Grid/TransformersRegistry"]);u.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/Grid/Transformers/ChangeCase"])),u.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/Grid/Transformers/Combine"]))}}),eR._.registerModule({onInit:()=>{let e=eB.nC.get(eO.j["DynamicTypes/ThemeRegistry"]);e.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/Theme/StudioDefaultLight"])),e.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/Theme/StudioDefaultDark"]))}});let xA=(0,ia.createStyles)(e=>{let{css:t,token:i}=e,n=t` + `}}),vP=e=>{let{type:t,globalIndex:i}=e,{t:n}=(0,t7.useTranslation)(),{styles:r}=vL(),a=((e,t)=>{if((0,dW.H)(e))if(e.includes("."))return{type:"path",value:e};else return{type:"name",value:e};return{type:"name",value:"area-brick"}})(t.icon,0),l={type:"areablock-type",icon:a,title:n(t.name),data:{areablockType:t.type,sourceType:"sidebar"}};return(0,to.jsx)(bb._,{info:l,children:(0,to.jsx)(ai.z,{className:r.typeButton,type:"default",children:(0,to.jsxs)(rZ.k,{align:"center",justify:"center",vertical:!0,children:[(0,to.jsx)(rR.J,{className:r.typeIcon,options:{width:24,height:24},type:a.type,value:a.value}),(0,to.jsx)(nc.x,{className:r.typeName,children:n(t.name)})]})})})},vN=()=>{let{t:e}=(0,t7.useTranslation)(),{id:t}=(0,ts.useContext)(lG.R),{styles:i}=vI(),n=Object.entries((0,hd.CG)(e=>(0,vM.FI)(e,t)));if(1===n.length&&n[0][0]===oj){let[,e]=n[0];return(0,to.jsx)(aL.x,{className:i.gridContainer,padding:{x:"small",bottom:"small"},children:e.map((e,t)=>(0,to.jsx)(vP,{globalIndex:t,type:e},`${e.areablockName}-${e.type}`))})}return(0,to.jsx)(aL.x,{className:i.collapsibleContainer,children:n.map((t,r)=>{let[a,l]=t,o=0;return n.slice(0,r).forEach(e=>{let[,t]=e;o+=t.length}),(0,to.jsx)(rJ.s,{border:!1,collapsed:!1,collapsible:!0,theme:"card-with-highlight",title:e(a),children:(0,to.jsx)(aL.x,{className:i.gridContainer,children:l.map((e,t)=>{let i=o+t;return(0,to.jsx)(vP,{globalIndex:i,type:e},`${e.areablockName}-${e.type}`)})})},a)})})},vA=e=>{let{initialValues:t}=e,{t:i}=(0,t7.useTranslation)(),{id:n}=(0,ts.useContext)(lG.R),{properties:r,updateProperty:a,addProperty:l}=(0,vx.Z)(n),{debouncedAutoSave:o}=(0,vD.O)(),s=e=>(0,eY.isNull)(r)||(0,eY.isUndefined)(r)?void 0:r.find(t=>t.key===e),d=(0,ts.useCallback)((e,t)=>{let i=s(e);if((0,eY.isUndefined)(i)||(0,eY.isNull)(i)){let i="navigation_exclude"===e?"bool":"text";l({key:e,type:i,data:t,inherited:!1,inheritable:!1,predefinedName:"Custom",rowId:(0,nu.V)()})}else a(e,{...i,data:t,inherited:!1,inheritable:!1});o()},[s,a,l,o]),f=(0,ts.useCallback)(e=>{Object.entries(e).forEach(e=>{let[t,i]=e;d(t,i)})},[d]);return(0,to.jsxs)(nd.h,{formProps:{initialValues:t,onValuesChange:f,layout:"vertical"},children:[(0,to.jsx)(tc.l.Item,{label:i("navigation.name"),name:"navigation_name",children:(0,to.jsx)(ae.I,{})}),(0,to.jsx)(tc.l.Item,{label:i("link.title"),name:"navigation_title",children:(0,to.jsx)(ae.I,{})}),(0,to.jsx)(tc.l.Item,{label:i("link.target"),name:"navigation_target",children:(0,to.jsx)(tC.P,{options:[{label:i("link.not-set"),value:""},{label:"_self",value:"_self"},{label:"_blank",value:"_blank"},{label:"_parent",value:"_parent"},{label:"_top",value:"_top"}]})}),(0,to.jsx)(tc.l.Item,{name:"navigation_exclude",valuePropName:"checked",children:(0,to.jsx)(s0.r,{labelRight:i("navigation.exclude")})}),(0,to.jsx)(tc.l.Item,{label:i("link.rel"),name:"navigation_relation",children:(0,to.jsx)(ae.I,{})}),(0,to.jsx)(vk,{marginBottom:"none",withBorder:!0,children:i("navigation.advanced-settings")}),(0,to.jsx)(tc.l.Item,{label:i("link.class"),name:"navigation_class",children:(0,to.jsx)(ae.I,{})}),(0,to.jsx)(tc.l.Item,{label:i("link.anchor"),name:"navigation_anchor",children:(0,to.jsx)(ae.I,{})}),(0,to.jsx)(tc.l.Item,{label:i("link.parameters"),name:"navigation_parameters",children:(0,to.jsx)(ae.I,{})}),(0,to.jsx)(tc.l.Item,{label:i("link.accesskey"),name:"navigation_accesskey",children:(0,to.jsx)(ae.I,{maxLength:1})}),(0,to.jsx)(tc.l.Item,{label:i("link.tabindex"),name:"navigation_tabindex",children:(0,to.jsx)(ae.I,{})})]})};var vR=i(53861),vO=i(26041);let vB=e=>{var t;let{documentId:i,documentType:n,initialValues:r,apiData:a}=e,{t:l}=(0,t7.useTranslation)(),{updateSettingsData:o,document:s}=(0,vx.Z)(i),{debouncedAutoSave:d}=(0,vD.O)(),[f]=tc.l.useForm(),c={...r,staticGeneratorLifetime:r.staticGeneratorLifetime??null},{controllers:u,templates:m,predefinedDocTypes:p}=a,g=(0,ts.useMemo)(()=>[...u.map(e=>({value:e.name,label:e.name}))],[u]),h=(0,ts.useMemo)(()=>[...m.map(e=>({value:e.path,label:e.path}))],[m]),b=(0,ts.useMemo)(()=>[...p.map(e=>({value:e.id,label:e.name??e.id}))],[p]),y=(0,ts.useCallback)((e,t)=>{let i={};if("predefinedDocumentType"in e&&!(0,eY.isNil)(e.predefinedDocumentType)){let n=p.find(t=>t.id===e.predefinedDocumentType);(0,eY.isNil)(n)||(f.setFieldsValue({...t,controller:n.controller??"",template:n.template??""}),i.controller=n.controller??"",i.template=n.template??"")}Object.entries(e).forEach(e=>{let[t,n]=e;"predefinedDocumentType"!==t&&(i[t]=n)}),Object.keys(i).length>0&&(o(i),d())},[o,d,p,f]),v=(0,ts.useMemo)(()=>{var e;let t=null==s||null==(e=s.settingsData)?void 0:e.staticLastGenerated;return(0,to.jsxs)("span",{children:[l("document-configuration.last-generated",{timestamp:(0,eY.isNil)(t)?l("never"):""}),!(0,eY.isNil)(t)&&(0,to.jsx)(vO.k,{timestamp:t})]})},[null==s||null==(t=s.settingsData)?void 0:t.staticLastGenerated]);return(0,to.jsxs)(nd.h,{formProps:{form:f,initialValues:c,onValuesChange:y},children:[(0,to.jsx)(tc.l.Item,{label:l("document-configuration.predefined-document-type"),name:"predefinedDocumentType",children:(0,to.jsx)(tC.P,{allowClear:!0,options:b})}),(0,to.jsx)(tc.l.Item,{label:l("document-configuration.controller"),name:"controller",children:(0,to.jsx)(tC.P,{allowClear:!0,options:g})}),(0,to.jsx)(tc.l.Item,{label:l("document-configuration.template"),name:"template",children:(0,to.jsx)(tC.P,{allowClear:!0,options:h})}),"page"===n&&(0,to.jsxs)(to.Fragment,{children:[(0,to.jsx)(vk,{marginBottom:"none",withBorder:!0,children:l("document-configuration.static-page-generator")}),(0,to.jsx)(tc.l.Item,{name:"staticGeneratorEnabled",valuePropName:"checked",children:(0,to.jsx)(s0.r,{labelRight:l("document-configuration.enable-server-side-static-rendering")})}),(0,to.jsx)(tc.l.Item,{extra:v,label:l("document-configuration.lifetime-for-static-page"),name:"staticGeneratorLifetime",children:(0,to.jsx)(vR.R,{min:1,step:1})})]})]})},vF={key:"areablock-types",icon:(0,to.jsx)(rR.J,{value:"new"}),component:(0,to.jsx)(()=>{let{t:e}=(0,t7.useTranslation)();return(0,to.jsxs)(ih.Content,{children:[(0,to.jsx)(vv.R,{withBorder:!0,children:e("add-areas")}),(0,to.jsx)(vN,{})]})},{}),tooltip:"add-areas",isVisible:e=>{try{let t=hd.h.getState();return(0,vM.qw)(t,e.id)}catch(e){return console.warn("Could not check areablock types visibility:",e),!1}}},v_={key:"content-settings",icon:(0,to.jsx)(rR.J,{value:"content-settings"}),component:(0,to.jsx)(()=>{var e;let{t}=(0,t7.useTranslation)(),{id:i}=(0,ts.useContext)(lG.R),{document:n}=(0,vx.Z)(i),{data:r,isLoading:a}=(0,vj.E)(),l=null==r||null==(e=r.items)?void 0:e.find(e=>"language"===e.key),o=(null==l?void 0:l.data)??"",s=(0,ts.useMemo)(()=>{let e=(null==n?void 0:n.settingsData)??{};return{title:(null==e?void 0:e.title)??"",description:(null==e?void 0:e.description)??"",language:o,prettyUrl:(null==e?void 0:e.prettyUrl)??"",contentMainDocument:(0,eY.isUndefined)(null==e?void 0:e.contentMainDocumentId)||(0,eY.isNull)(null==e?void 0:e.contentMainDocumentId)?null:{id:e.contentMainDocumentId,type:"document",fullPath:e.contentMainDocumentPath??""}}},[null==n?void 0:n.settingsData,o]),d=!a&&!(0,eY.isUndefined)(r);return(0,to.jsxs)(ih.Content,{loading:!d,children:[(0,to.jsx)(vv.R,{withBorder:!0,children:t("content-settings")}),(0,to.jsx)(aL.x,{padding:{x:"extra-small",bottom:"small"},children:(0,to.jsx)(vE,{documentId:i,initialValues:s})})]})},{}),tooltip:"content-settings"},vz={key:"navigation",icon:(0,to.jsx)(rR.J,{value:"navigation"}),component:(0,to.jsx)(()=>{let{t:e}=(0,t7.useTranslation)(),{data:t,isLoading:i}=(0,vj.E)(),n=(0,ts.useMemo)(()=>{let e=e=>{var i;let n=null==t||null==(i=t.items)?void 0:i.find(t=>t.key===e);return null==n?void 0:n.data};return{navigation_name:e("navigation_name")??"",navigation_title:e("navigation_title")??"",navigation_target:e("navigation_target")??"",navigation_exclude:e("navigation_exclude")??!1,navigation_relation:e("navigation_relation")??"",navigation_class:e("navigation_class")??"",navigation_anchor:e("navigation_anchor")??"",navigation_parameters:e("navigation_parameters")??"",navigation_accesskey:e("navigation_accesskey")??"",navigation_tabindex:e("navigation_tabindex")??""}},[null==t?void 0:t.items]),r=!i&&!(0,eY.isUndefined)(t);return(0,to.jsxs)(ih.Content,{loading:!r,children:[(0,to.jsx)(vv.R,{withBorder:!0,children:e("navigation.sidebar-title")}),(0,to.jsx)(aL.x,{padding:{x:"extra-small",bottom:"small"},children:(0,to.jsx)(vA,{initialValues:n})})]})},{}),tooltip:"navigation.sidebar-title"},vV={key:"document-configuration",icon:(0,to.jsx)(rR.J,{value:"document-configurations"}),component:(0,to.jsx)(()=>{let{t:e}=(0,t7.useTranslation)(),{id:t}=(0,ts.useContext)(lG.R),{document:i}=(0,vx.Z)(t),{data:n,isLoading:r}=(0,l2.OJ)(void 0,{refetchOnMountOrArgChange:!0}),{data:a,isLoading:l}=(0,l2.lM)(void 0,{refetchOnMountOrArgChange:!0}),{data:o,isLoading:s}=(0,l2.jX)({type:(null==i?void 0:i.type)??"page"},{refetchOnMountOrArgChange:!0}),d=(0,ts.useMemo)(()=>{let e=(null==i?void 0:i.settingsData)??{};return{predefinedDocumentType:"",controller:(null==e?void 0:e.controller)??"",template:(null==e?void 0:e.template)??"",staticGeneratorEnabled:(null==e?void 0:e.staticGeneratorEnabled)??!1,staticGeneratorLifetime:(null==e?void 0:e.staticGeneratorLifetime)??null}},[null==i?void 0:i.settingsData]),f=!(0,eY.isUndefined)(i)&&!r&&!l&&!s,c={controllers:(null==n?void 0:n.items)??[],templates:(null==a?void 0:a.items)??[],predefinedDocTypes:(null==o?void 0:o.items)??[]};return(0,to.jsxs)(ih.Content,{loading:!f,children:[(0,to.jsx)(vv.R,{withBorder:!0,children:e("document-configuration.sidebar-title")}),(0,to.jsx)(aL.x,{padding:{x:"extra-small",bottom:"small"},children:f&&(0,to.jsx)(vB,{apiData:c,documentId:t,documentType:null==i?void 0:i.type,initialValues:d})})]})},{}),tooltip:"document-configuration.sidebar-title"},v$=e=>{let{documentId:t,initialValues:i}=e,{t:n}=(0,t7.useTranslation)(),{updateSettingsData:r}=(0,vx.Z)(t),{debouncedAutoSave:a}=(0,vD.O)(),[l]=tc.l.useForm(),o=(0,ts.useCallback)(e=>{r(e),a()},[r,a]);return(0,to.jsxs)(nd.h,{formProps:{form:l,initialValues:i,onValuesChange:o},children:[(0,to.jsx)(tc.l.Item,{label:n("email-settings.subject"),name:"subject",children:(0,to.jsx)(ae.I,{})}),(0,to.jsx)(tc.l.Item,{extra:n("email-settings.from-syntax-hint"),label:n("email-settings.from"),name:"from",children:(0,to.jsx)(ae.I,{})}),(0,to.jsx)(tc.l.Item,{label:n("email-settings.reply-to"),name:"replyTo",children:(0,to.jsx)(ae.I,{})}),(0,to.jsx)(vk,{marginBottom:"none",withBorder:!0,children:n("email-settings.recipients")}),(0,to.jsx)(tc.l.Item,{label:n("email-settings.to"),name:"to",children:(0,to.jsx)(ae.I,{})}),(0,to.jsx)(tc.l.Item,{label:n("email-settings.cc"),name:"cc",children:(0,to.jsx)(ae.I,{})}),(0,to.jsx)(tc.l.Item,{label:n("email-settings.bcc"),name:"bcc",children:(0,to.jsx)(ae.I,{})}),(0,to.jsx)(nc.x,{type:"secondary",children:n("email-settings.multiple-recipients-hint")})]})},vW=()=>{let{t:e}=(0,t7.useTranslation)(),{id:t}=(0,ts.useContext)(lG.R),{document:i}=(0,vx.Z)(t),n=(0,ts.useMemo)(()=>{let e=(null==i?void 0:i.settingsData)??{};return{subject:(null==e?void 0:e.subject)??"",from:(null==e?void 0:e.from)??"",replyTo:(null==e?void 0:e.replyTo)??"",to:(null==e?void 0:e.to)??"",cc:(null==e?void 0:e.cc)??"",bcc:(null==e?void 0:e.bcc)??""}},[null==i?void 0:i.settingsData]),r=!(0,eY.isUndefined)(i);return(0,to.jsxs)(ih.Content,{loading:!r,children:[(0,to.jsx)(vv.R,{withBorder:!0,children:e("email-settings.sidebar-title")}),(0,to.jsx)(aL.x,{padding:{x:"extra-small",bottom:"small"},children:r&&(0,to.jsx)(v$,{documentId:t,initialValues:n})})]})};eR._.registerModule({onInit:()=>{let e=eB.nC.get(eO.j["Document/Editor/EmailTabManager"]);e.register(vy.vr),e.register(vy.kw),e.register(pC.D9),e.register(vy.V2),e.register(pC.On),e.register(pC._P),e.register(pC.Hy),e.register(pC.zd);let t=eB.nC.get(eO.j["Document/Editor/Sidebar/EmailSidebarManager"]);t.registerEntry(vF),t.registerEntry({key:"email-settings",icon:(0,to.jsx)(rR.J,{value:"email"}),component:(0,to.jsx)(vW,{}),tooltip:"email-settings.sidebar-title"}),t.registerEntry(v_),t.registerEntry(vV)}});var vH=i(33929),vG=i(81422),vU=i(25937);let vq={key:"properties",label:"properties.label",workspacePermission:"properties",children:(0,to.jsx)(()=>{let{id:e}=(0,ts.useContext)(lG.R),{document:t}=(0,vx.Z)(e),i=(0,vG.W)(null==t?void 0:t.type).getButtons(),n=(0,vU.n)();return(0,to.jsx)(aF.D,{renderSidebar:(0,to.jsx)(gG.Y,{buttons:i,entries:n,sizing:"medium",translateTooltips:!0}),children:(0,to.jsx)(vH.i,{})})},{}),icon:(0,to.jsx)(rR.J,{value:"settings"}),isDetachable:!0};eR._.registerModule({onInit:()=>{let e=eB.nC.get(eO.j["Document/Editor/FolderTabManager"]);e.register(vq),e.register(pC.On),e.register(pC._P),e.register(pC.Hy),e.register(pC.zd),eB.nC.get(eO.j["Document/Editor/Sidebar/FolderSidebarManager"]).registerEntry(v_)}});let vZ={key:"edit",label:"edit.label",children:(0,to.jsx)(()=>{let{t:e}=(0,t7.useTranslation)(),[t]=tN.Form.useForm(),{id:i}=(0,ts.useContext)(lG.R),{document:n,updateSettingsData:r}=(0,vx.Z)(i),a=(0,vG.W)(null==n?void 0:n.type).getButtons(),l=(0,vU.n)(),o=td().useMemo(()=>{let e=(null==n?void 0:n.settingsData)??{},t=null;return(0,eY.isNil)(e.sourceId)||(t={type:"document",id:e.sourceId,fullPath:e.sourcePath??"",textInput:!1}),{sourceDocument:t,propertiesFromSource:!!e.propertiesFromSource,childrenFromSource:!!e.childrenFromSource}},[null==n?void 0:n.settingsData]);return(0,to.jsx)(aF.D,{renderSidebar:(0,to.jsx)(gG.Y,{buttons:a,entries:l,sizing:"medium",translateTooltips:!0}),children:(0,to.jsx)(ih.Content,{padded:!0,children:(0,to.jsxs)(tN.Form,{form:t,initialValues:o,layout:"vertical",children:[(0,to.jsx)(tN.Form.Item,{label:e("document.hardlink.source"),name:"sourceDocument",children:(0,to.jsx)(de.A,{allowToClearRelation:!0,documentsAllowed:!0,onChange:e=>{let t={};(0,eY.isNull)(e)?(t.sourceId=null,t.sourcePath=null):!0!==e.textInput&&(t.sourceId=e.id,t.sourcePath=e.fullPath??""),r(t)},showOpenForTextInput:!0})}),(0,to.jsx)(tN.Form.Item,{label:e("document.hardlink.properties-from-source"),name:"propertiesFromSource",valuePropName:"checked",children:(0,to.jsx)(tN.Switch,{onChange:e=>{r({propertiesFromSource:e})}})}),(0,to.jsx)(tN.Form.Item,{label:e("document.hardlink.children-from-source"),name:"childrenFromSource",valuePropName:"checked",children:(0,to.jsx)(tN.Switch,{onChange:e=>{r({childrenFromSource:e})}})})]})})})},{}),icon:(0,to.jsx)(rR.J,{value:"edit"})};eR._.registerModule({onInit:()=>{let e=eB.nC.get(eO.j["Document/Editor/HardlinkTabManager"]);e.register(vZ),e.register(pC.D9),e.register(pC.On),e.register(pC.V$),e.register(pC._P),e.register(pC.Hy),e.register(pC.zd),eB.nC.get(eO.j["Document/Editor/Sidebar/HardlinkSidebarManager"]).registerEntry(v_)}});let vK={key:"edit",label:"edit.label",children:(0,to.jsx)(()=>{let{t:e}=(0,t7.useTranslation)(),[t]=tN.Form.useForm(),{id:i}=(0,ts.useContext)(lG.R),{document:n,updateSettingsData:r}=(0,vx.Z)(i),a=(0,vG.W)(null==n?void 0:n.type).getButtons(),l=(0,vU.n)(),o=td().useMemo(()=>{let e=(null==n?void 0:n.settingsData)??{};return"direct"===e.linkType&&(0,dW.H)(e.direct)?{linkTarget:{textInput:!0,fullPath:e.direct}}:e.internal&&!(0,eY.isNil)(e.internalType)?{linkTarget:{id:e.internal,type:e.internalType,fullPath:e.rawHref??"",textInput:!1}}:{linkTarget:null}},[null==n?void 0:n.settingsData]);return(0,to.jsx)(aF.D,{renderSidebar:(0,to.jsx)(gG.Y,{buttons:a,entries:l,sizing:"medium",translateTooltips:!0}),children:(0,to.jsx)(ih.Content,{padded:!0,children:(0,to.jsx)(tN.Form,{form:t,initialValues:o,layout:"vertical",children:(0,to.jsx)(tN.Form.Item,{label:e("document.link.target"),name:"linkTarget",children:(0,to.jsx)(de.A,{allowPathTextInput:!0,allowToClearRelation:!0,assetsAllowed:!0,dataObjectsAllowed:!0,documentsAllowed:!0,onChange:e=>{let t={};null===e?(t.linkType="direct",t.internal=null,t.internalType=null,t.direct=null,t.href=null,t.rawHref=null,t.path=null):!0===e.textInput?(t.linkType="direct",t.direct=e.fullPath,t.rawHref=e.fullPath,t.href=e.fullPath,t.path=e.fullPath):(t.linkType="internal",t.internal=e.id,t.internalType=e.type,t.rawHref=e.fullPath??"",t.path=e.fullPath??""),r(t)},showOpenForTextInput:!0})})})})})},{}),icon:(0,to.jsx)(rR.J,{value:"edit"})};eR._.registerModule({onInit:()=>{let e=eB.nC.get(eO.j["Document/Editor/LinkTabManager"]);e.register(vK),e.register(pC.D9),e.register(pC.V$),e.register(pC.On),e.register(pC._P),e.register(pC.Hy),e.register(pC.zd);let t=eB.nC.get(eO.j["Document/Editor/Sidebar/LinkSidebarManager"]);t.registerEntry(v_),t.registerEntry(vz)}}),eR._.registerModule({onInit:()=>{let e=eB.nC.get(eO.j["Document/Editor/PageTabManager"]);e.register(vy.vr),e.register(vy.kw),e.register(pC.D9),e.register(vy.V2),e.register(pC.V$),e.register(pC.On),e.register(pC._P),e.register(pC.Hy),e.register(pC.zd);let t=eB.nC.get(eO.j["Document/Editor/Sidebar/PageSidebarManager"]);t.registerEntry(vF),t.registerEntry(v_),t.registerEntry(vV),t.registerEntry(vz)}}),eR._.registerModule({onInit:()=>{let e=eB.nC.get(eO.j["Document/Editor/SnippetTabManager"]);e.register(vy.vr),e.register(pC.D9),e.register(vy.V2),e.register(pC.V$),e.register(pC.On),e.register(pC._P),e.register(pC.Hy),e.register(pC.zd);let t=eB.nC.get(eO.j["Document/Editor/Sidebar/SnippetSidebarManager"]);t.registerEntry(vF),t.registerEntry(v_),t.registerEntry(vV)}});var vJ=i(66472),vX=i(60791);let vQ=()=>(0,to.jsx)(aO.o,{children:(0,to.jsxs)(bt.v,{children:[(0,to.jsx)(rZ.k,{children:(0,to.jsx)(bn.O,{slot:hy.O.document.editor.toolbar.slots.left.name})}),(0,to.jsx)(rZ.k,{align:"center",gap:"extra-small",style:{height:"32px"},vertical:!1,children:(0,to.jsx)(bn.O,{slot:hy.O.document.editor.toolbar.slots.right.name})}),(0,to.jsx)(bi.L,{})]})}),vY=e=>{let{id:t}=e,{isLoading:i,isError:n,document:r,editorType:a}=(0,vx.Z)(t),l=(0,h5.Q)(),{setContext:o,removeContext:s}=(0,vX.L)();return((0,ts.useEffect)(()=>()=>{s()},[]),(0,ts.useEffect)(()=>(l&&o({id:t}),()=>{l||s()}),[l]),i)?(0,to.jsx)(aB.V,{loading:!0}):n?(0,to.jsx)(aB.V,{padded:!0,children:(0,to.jsx)(he.b,{message:"Error: Loading of asset failed",type:"error"})}):void 0===r||void 0===a?(0,to.jsx)(to.Fragment,{}):(0,to.jsx)(lG.p,{id:t,children:(0,to.jsx)(ba.S,{dataTestId:`document-editor-${(0,dM.rR)(t)}`,renderTabbar:(0,to.jsx)(be.T,{elementEditorType:a}),renderToolbar:(0,to.jsx)(vQ,{})})})},v0=()=>{let{t:e}=(0,t7.useTranslation)(),{id:t}=(0,ts.useContext)(lG.R),{document:i}=(0,vx.Z)(t),{refreshElement:n}=(0,hK.C)("document");return(0,to.jsx)(hJ.t,{hasDataChanged:()=>Object.keys((null==i?void 0:i.changes)??{}).length>0,onReload:()=>{n(t,!0)},title:e("toolbar.reload.confirmation"),children:(0,to.jsx)(aM.h,{icon:{value:"refresh"},children:e("toolbar.reload")})},"reload")};var v1=i(16939),v2=i(47302),v3=i(3018),v6=i(84680);let v4=e=>{var t;let{isOpen:i,selectedDocument:n,onSelectedDocumentChange:r,onClose:a,onSubmit:l}=e,{t:o}=(0,t7.useTranslation)(),{getDisplayName:s}=(0,vS.Z)(),[d,f]=(0,ts.useState)(!1),{data:c,isLoading:u,error:m}=(0,v6.y8)({elementType:"document",id:(null==n?void 0:n.id)??0},{skip:(0,eY.isNull)(n)});(0,ts.useEffect)(()=>{(0,eY.isUndefined)(m)||(0,is.ZP)(new is.MS(m))},[m]);let p=null==c||null==(t=c.items)?void 0:t.find(e=>"language"===e.key),g=(0,eY.isString)(null==p?void 0:p.data)?p.data:"",h=async()=>{f(!0);try{await l()}finally{f(!1)}};return(0,to.jsxs)(p2.i,{footer:(0,to.jsxs)(p1.m,{children:[(0,to.jsx)(ai.z,{onClick:a,type:"default",children:o("cancel")}),(0,to.jsx)(ai.z,{disabled:(0,eY.isNull)(n),loading:d,onClick:h,type:"primary",children:o("apply")})]}),onCancel:a,open:i,size:"L",title:o("document.translation.link-existing-document"),children:[(0,to.jsx)(ih.Form.Item,{label:o("document.translation.title"),layout:"vertical",children:(0,to.jsx)(de.A,{allowToClearRelation:!0,documentsAllowed:!0,onChange:r,value:n})}),!(0,eY.isNull)(n)&&(0,to.jsx)(nd.h.Panel,{border:!0,theme:"border-highlight",title:o("language"),children:u?(0,to.jsx)(aI.y,{size:"small"}):(0,dW.H)(g)?(0,to.jsxs)(rZ.k,{align:"center",gap:"small",children:[(0,to.jsx)(vT.U,{value:g}),(0,to.jsxs)("span",{children:[s(g)," [",g,"]"]})]}):(0,to.jsx)(nc.x,{italic:!0,type:"secondary",children:o("no-data-available")})})]})},v8=()=>{let{t:e}=(0,t7.useTranslation)(),{id:t}=(0,ts.useContext)(lG.R),{document:i}=(0,vx.Z)(t),{unpublishContextMenuItem:n}=(0,vi.X)("document"),{renameContextMenuItem:r}=(0,pM.j)("document"),{deleteContextMenuItem:a}=(0,pI.R)("document"),{openInNewWindowContextMenuItem:l,openPreviewInNewWindowContextMenuItem:o}=(0,v1.N)(),{translationContextMenuItem:s}=(e=>{let{t}=(0,t7.useTranslation)(),{openDocument:i}=(0,v2.l)(),{getDisplayName:n}=(0,vS.Z)(),[r,{error:a}]=(0,l2.Vz)(),[l,{error:o}]=(0,l2.rG)(),[s,d]=(0,ts.useState)(!1),[f,c]=(0,ts.useState)(null),[u,m]=(0,ts.useState)(null),[p,g]=(0,ts.useState)(null),{addModal:h,removeModal:b}=(()=>{let e=(0,ts.useContext)(v3.t);if((0,eY.isNil)(e))throw Error("useModalHolder must be used within a ModalHolderProvider");return e})(),y=(0,ts.useMemo)(()=>`translation-modal-${(0,nu.V)()}`,[]),{data:v,error:x}=(0,l2.eI)({id:e.id},{skip:(0,eY.isNil)(e.id)});(0,ts.useEffect)(()=>{(0,eY.isUndefined)(a)||(0,is.ZP)(new is.MS(a))},[a]),(0,ts.useEffect)(()=>{(0,eY.isUndefined)(o)||(0,is.ZP)(new is.MS(o))},[o]),(0,ts.useEffect)(()=>{(0,eY.isUndefined)(x)||(0,is.ZP)(new is.MS(x))},[x]);let j=async()=>{!(0,eY.isNull)(f)&&(await l({id:Number(u.id),translationId:f.id}).unwrap(),c(null),d(!1),(0,eY.isNull)(p)||p())},w=()=>{c(null),d(!1),g(null)};return(0,ts.useEffect)(()=>(s&&!(0,eY.isNull)(u)?h(y,(0,to.jsx)(v4,{isOpen:s,onClose:w,onSelectedDocumentChange:c,onSubmit:j,selectedDocument:f})):b(y),()=>{b(y)}),[s,u,f]),{translationContextMenuItem:a=>{let l=((null==v?void 0:v.translationLinks)??[]).filter(t=>t.documentId!==Number(e.id)),o=!(0,eY.isEmpty)(l),s=[];if(s.push({label:t("document.translation.link-existing-document"),key:"link-existing-document",icon:(0,to.jsx)(rR.J,{value:"document-link"}),onClick:()=>{m(e),g(()=>a),d(!0)}}),o){let e=[];for(let t of l)e.push({label:`${n(t.language)} [${t.language}]`,key:`translation-${t.language}`,icon:(0,to.jsx)(vT.U,{value:t.language}),onClick:async()=>{await i({config:{id:t.documentId}}),void 0!==a&&a()}});s.push({label:t("document.translation.open-translation"),key:"open-translation",icon:(0,to.jsx)(rR.J,{value:"open-folder"}),children:e})}if(o){let i=[];for(let t of l)i.push({label:`${n(t.language)} [${t.language}]`,key:`unlink-translation-${t.language}`,icon:(0,to.jsx)(vT.U,{value:t.language}),onClick:async()=>{await r({id:Number(e.id),translationId:t.documentId}).unwrap(),null==a||a()}});s.push({label:t("document.translation.unlink-existing-document"),key:"unlink-existing-document",icon:(0,to.jsx)(rR.J,{value:"trash"}),children:i})}return{label:t("document.translation.title"),key:"translation",icon:(0,to.jsx)(rR.J,{value:"translate"}),hidden:!1,children:s}}}})(i),[d,f]=(0,ts.useState)(void 0),c=[n(i,()=>{f(void 0)}),a(i),r(i),s(()=>{f(void 0)}),l(i),o(i)],u=c.filter(e=>null!==e&&"hidden"in e&&(null==e?void 0:e.hidden)===!1),m=[];return m.push((0,to.jsx)(v0,{},"reload-button")),u.length>0&&m.push((0,to.jsx)(pJ.L,{menu:{items:c,onClick:e=>{e.key===gM.N.unpublish&&f(!0)}},open:d,children:(0,to.jsx)(pK.P,{children:e("toolbar.more")})},"dropdown-button")),(0,to.jsx)(p8.h,{items:m,noSpacing:!0})};var v7=i(62002);let v5=()=>{var e;let{t}=(0,t7.useTranslation)(),{id:i}=(0,ts.useContext)(lG.R),{document:n,removeTrackedChanges:r,publishDraft:a}=(0,vx.Z)(i),{save:l,isLoading:o,isSuccess:s,isError:d,error:f}=(0,vD.O)(),{isAutoSaveLoading:c,runningTask:u}=(()=>{let{id:e}=(0,ts.useContext)(lG.R),[t,i]=(0,ts.useState)();return(0,ts.useEffect)(()=>{let t=v7.xr.getInstance(e),n=t.onRunningTaskChange(i);return i(t.getRunningTask()),()=>{n()}},[e]),{runningTask:t,isAutoSaveLoading:t===v7.Rm.AutoSave,isLoading:void 0!==t&&t!==v7.Rm.AutoSave}})(),{saveSchedules:m,isLoading:p,isSuccess:g,isError:h,error:b}=(0,h8.f)("document",i,!1),{deleteDraft:y,isLoading:v,buttonText:x}=(0,b1._)("document"),j=(0,h4.U)(),w=(null==n||null==(e=n.draftData)?void 0:e.isAutoSave)===!0;async function C(e,t){(null==n?void 0:n.changes)!==void 0&&Promise.all([l(e,()=>{null==t||t()}),m()]).catch(e=>{console.error(e)})}(0,ts.useEffect)(()=>{(async()=>{s&&g&&(r(),await j.success(t("save-success")))})().catch(e=>{console.error(e)})},[s,g]),(0,ts.useEffect)(()=>{d&&!(0,eY.isNil)(f)?(0,is.ZP)(new is.MS(f)):h&&!(0,eY.isNil)(b)&&(0,is.ZP)(new is.MS(b))},[d,h,f,b]),(0,ts.useEffect)(()=>v7.xr.getInstance(i).onErrorChange((e,i)=>{i===vD.R.AutoSave&&(j.error(t("auto-save-failed")),console.error("Auto-save failed:",e))}),[i,j,t]);let k=(()=>{let e=[],i=u===vD.R.Version&&(o||p)||v;if((0,hm.x)(null==n?void 0:n.permissions,"save")){(null==n?void 0:n.published)===!0&&e.push((0,to.jsx)(ih.Button,{disabled:o||p||i,loading:u===vD.R.Version&&(o||p),onClick:async()=>{await C(vD.R.Version)},type:"default",children:t("toolbar.save-draft")},"save-draft"));let r=o||p||i;(null==n?void 0:n.published)===!1&&(0,hm.x)(null==n?void 0:n.permissions,"save")&&e.push((0,to.jsx)(ih.Button,{disabled:r,loading:u===vD.R.Publish&&(o||p),onClick:async()=>{await C(vD.R.Publish,()=>{a()})},type:"default",children:t("toolbar.save-and-publish")},"save-draft")),(0,eY.isNil)(null==n?void 0:n.draftData)||e.push((0,to.jsx)(pJ.L,{menu:{items:[{disabled:o,label:x,key:"delete-draft",onClick:y}]},children:(0,to.jsx)(aM.h,{disabled:o||p||i,icon:{value:"chevron-down"},loading:v,type:"default"})},"dropdown"))}return e})(),T=(()=>{let e=[],i=o||p||v;return(null==n?void 0:n.published)===!0&&(0,hm.x)(null==n?void 0:n.permissions,"publish")&&e.push((0,to.jsx)(ih.Button,{disabled:i,loading:u===vD.R.Publish&&(o||p),onClick:async()=>{await C(vD.R.Publish)},type:"primary",children:t("toolbar.save-and-publish")})),(null==n?void 0:n.published)===!1&&(0,hm.x)(null==n?void 0:n.permissions,"save")&&e.push((0,to.jsx)(ih.Button,{disabled:i,loading:u===vD.R.Save&&(o||p),onClick:async()=>{await C(vD.R.Save)},type:"primary",children:t("toolbar.save-draft")})),e})();return(0,to.jsxs)(to.Fragment,{children:[c&&(0,to.jsx)(l5.u,{title:t("auto-save.loading-tooltip"),children:(0,to.jsx)(aI.y,{type:"classic"})}),!c&&w&&(0,to.jsx)(l5.u,{title:t("auto-save.tooltip"),children:(0,to.jsx)(rR.J,{value:"auto-save"})}),k.length>0&&(0,to.jsx)(p8.h,{items:k,noSpacing:!0}),T.length>0&&(0,to.jsx)(p8.h,{items:T,noSpacing:!0})]})};eR._.registerModule({onInit:()=>{let e=eB.nC.get(eO.j["Document/Editor/TypeRegistry"]);e.register({name:"page",tabManagerServiceId:"Document/Editor/PageTabManager"}),e.register({name:"email",tabManagerServiceId:"Document/Editor/EmailTabManager"}),e.register({name:"folder",tabManagerServiceId:"Document/Editor/FolderTabManager"}),e.register({name:"hardlink",tabManagerServiceId:"Document/Editor/HardlinkTabManager"}),e.register({name:"link",tabManagerServiceId:"Document/Editor/LinkTabManager"}),e.register({name:"snippet",tabManagerServiceId:"Document/Editor/SnippetTabManager"});let t=eB.nC.get(eO.j["App/ComponentRegistry/ComponentRegistry"]);t.register({name:e_.O8.document.editor.container.name,component:vY}),t.registerToSlot(e_.O8.document.editor.toolbar.slots.left.name,{name:"contextMenu",priority:100,component:v8}),t.registerToSlot(e_.O8.document.editor.toolbar.slots.right.name,{name:"workflowMenu",priority:100,component:h6}),t.registerToSlot(e_.O8.document.editor.toolbar.slots.right.name,{name:"saveButtons",priority:200,component:v5}),eB.nC.get(eO.j.widgetManager).registerWidget(vJ.K)}});var v9=i(42839),xe=i(16983);let xt={page:{icon:"document",labelKey:"page"},snippet:{icon:"snippet",labelKey:"snippet"},email:{icon:"email",labelKey:"email"},link:{icon:"document-link",labelKey:"link"},hardlink:{icon:"hardlink",labelKey:"hardlink"}};var xi=i(35272),xn=i(5207);class xr extends xn.w{async executeCloneRequest(){var e;let t={id:this.sourceId,parentId:this.targetId,documentCloneParameters:this.parameters??{}},i=await hd.h.dispatch(v9.hi.endpoints.documentClone.initiate(t));return(0,eY.isUndefined)(i.error)?(null==(e=i.data)?void 0:e.jobRunId)??null:((0,is.ZP)(new is.MS(i.error)),null)}constructor(e){super({sourceId:e.sourceId,targetId:e.targetId,title:e.title,elementType:s2.a.document,treeId:e.treeId,nodeId:e.nodeId}),this.parameters=e.parameters}}var xa=i(35950),xl=i(65638);let xo=e=>{let{t}=(0,t7.useTranslation)(),i=e.node??bs.l,{addFolderTreeContextMenuItem:n}=(0,bO.p)("document"),{renameTreeContextMenuItem:r}=(0,pM.j)("document",(0,pA.eG)("document","rename",parseInt(i.id))),{deleteTreeContextMenuItem:a}=(0,pI.R)("document",(0,pA.eG)("document","delete",parseInt(i.id))),{refreshTreeContextMenuItem:l}=(0,bN.T)("document"),{copyTreeContextMenuItem:o,cutTreeContextMenuItem:s,pasteCutContextMenuItem:d}=(0,bv.o)("document"),{lockTreeContextMenuItem:f,lockAndPropagateTreeContextMenuItem:c,unlockTreeContextMenuItem:u,unlockAndPropagateTreeContextMenuItem:m,isLockMenuHidden:p}=(0,bB.Z)("document"),{unpublishTreeContextMenuItem:g}=(0,vi.X)("document"),{publishTreeContextMenuItem:h}=(0,vu.K)("document"),{openInNewWindowTreeContextMenuItem:b}=(0,v1.N)(),{convertTreeContextMenuItem:y,canConvert:v}=(()=>{let{t:e}=(0,t7.useTranslation)(),[t,{isError:i,error:n}]=(0,v9.tV)(),{closeWidget:r}=(0,dy.A)(),a=(0,an.U8)(),l=(0,pU.useAppDispatch)(),{isTreeActionAllowed:o}=(0,b_._)();(0,ts.useEffect)(()=>{i&&(0,is.ZP)(new is.MS(n))},[i,n]);let s=async(e,i)=>{if(void 0!==(await t({id:e,type:i})).error)return;r((0,xe.h)("document",e));let n=(e=>{let t=xt[e];return{type:"name",value:(null==t?void 0:t.icon)??xt.page.icon}})(i);l((0,bj.P4)({nodeId:String(e),elementType:"document",newType:i,newIcon:n}))};return{convertTreeContextMenuItem:(t,i)=>{let n=parseInt(t.id),r=t.type,l=xt[i];return r===i||(0,eY.isNil)(l)?{key:`convert-to-${i}`,label:"",hidden:!0}:{key:`convert-to-${i}`,label:e(l.labelKey),icon:(0,to.jsx)(rR.J,{value:l.icon}),onClick:()=>{a.confirm({title:e("convert-document"),content:e("convert-document-warning"),onOk:async()=>{await s(n,i)}})}}},canConvert:e=>o(bF.W.Convert)&&!(0,eY.isNil)(e.type)&&1!==parseInt(e.id)&&(0,eY.isNil)(e.locked)&&!(0,eY.isNil)(e.permissions)&&(0,hm.x)(e.permissions,"publish")}})(),{removeSiteTreeContextMenuItem:x,useAsSiteTreeContextMenuItem:j,editSiteTreeContextMenuItem:w}=(()=>{let{t:e}=(0,t7.useTranslation)(),[t,{error:i}]=(0,l2.Bj)(),[n,{error:r}]=(0,l2.XY)(),[a,{error:l}]=(0,l2.vC)(),{modal:o}=tN.App.useApp(),s=(0,pU.useAppDispatch)(),{isTreeActionAllowed:d}=(0,b_._)(),{treeId:f}=(0,bw.d)(),{openModal:c,currentDocumentId:u}=(()=>{let e=(0,ts.useContext)(xl.p);if(void 0===e)throw Error("useSiteModal must be used within a SiteModalProvider");return e})(),m=e=>{s((0,bj.sQ)({treeId:f,nodeId:String(e),isFetching:!1}))},p=e=>(0,eY.toNumber)(e.id);(0,ts.useEffect)(()=>{(0,eY.isUndefined)(i)||(0,is.ZP)(new is.MS(i))},[i]),(0,ts.useEffect)(()=>{(0,eY.isUndefined)(r)||(0,is.ZP)(new is.MS(r))},[r]),(0,ts.useEffect)(()=>{(0,eY.isUndefined)(l)||(0,is.ZP)(new is.MS(l))},[l]);let g=async e=>{let i=await t({id:e});(0,eY.isUndefined)(i.error)&&s((0,bj.v9)({nodeId:String(e),isSite:!1}))},h=async(e,t)=>{let i=(0,dW.H)(t.domains)?t.domains.split(/\r?\n/).map(e=>e.trim()).filter(Boolean):[],r={};(0,eY.isUndefined)(t.errorDocuments)||null===t.errorDocuments||Object.entries(t.errorDocuments).forEach(e=>{let[t,i]=e;(0,eY.isObject)(i)&&(0,eY.has)(i,"fullPath")&&(0,dW.H)(i.fullPath)&&(r[t]=i.fullPath)});let a={mainDomain:t.mainDomain??"",domains:i,errorDocument:(0,eY.isObject)(t.errorDocument)&&(0,eY.has)(t.errorDocument,"fullPath")&&(0,dW.H)(t.errorDocument.fullPath)?t.errorDocument.fullPath:"",localizedErrorDocuments:r,redirectToMainDomain:!!t.redirectToMainDomain},l=await n({id:e,updateSite:a});(0,eY.isUndefined)(l.error)&&s((0,bj.v9)({nodeId:String(e),isSite:!0}))},b=async(t,i)=>{c({title:e("document.site.use-as-site"),documentId:t,documentPath:i,initialValues:{mainDomain:"",domains:"",errorDocument:null,errorDocuments:{},redirectToMainDomain:!1},onSubmit:async e=>{await h(t,e)}})},y=async(t,i)=>{try{if(u===t)return void m(t);let{data:n,error:r}=await a({documentId:t},!1);if(!(0,eY.isUndefined)(r))return void m(t);if(!(0,eY.isUndefined)(n)&&null!==n){let r={mainDomain:n.mainDomain??"",domains:(0,eY.isUndefined)(n.domains)||null===n.domains?"":n.domains.join("\n"),errorDocument:n.errorDocument??null,errorDocuments:n.localizedErrorDocuments??{},redirectToMainDomain:!!n.redirectToMainDomain};c({title:(0,eY.isNil)(n.id)?e("document.site.edit-site"):`${e("document.site.edit-site")} - ID: ${n.id}`,documentId:t,documentPath:i,initialValues:r,onSubmit:async e=>{await h(t,e)}}),setTimeout(()=>{m(t)},100)}}catch(e){m(t),console.error("Error loading site data:",e)}};return{removeSiteTreeContextMenuItem:t=>{let i=!0===t.isSite;return{key:"removeSite",label:e("document.site.remove-site"),icon:(0,to.jsx)(rR.J,{value:"trash"}),hidden:"page"!==t.type||!i||!(0,xa.y)("sites")||!d(bF.W.RemoveSite),onClick:()=>{var i;i=p(t),o.confirm({title:e("document.site.remove-site"),content:e("document.site.remove-site-confirmation"),okText:e("remove"),onOk:async()=>{await g(i)}})}}},useAsSiteTreeContextMenuItem:t=>{let i=!0===t.isSite;return{key:"useAsSite",label:e("document.site.use-as-site"),icon:(0,to.jsx)(rR.J,{value:"home-root-folder"}),hidden:"page"!==t.type||i||!(0,xa.y)("sites")||!d(bF.W.UseAsSite),onClick:()=>{b(p(t),t.fullPath)}}},editSiteTreeContextMenuItem:t=>{let i=!0===t.isSite;return{key:"editSite",label:e("document.site.edit-site"),icon:(0,to.jsx)(rR.J,{value:"edit"}),hidden:"page"!==t.type||!i||!(0,xa.y)("sites")||!d(bF.W.EditSite),onClick:()=>{var e;e=p(t),s((0,bj.sQ)({treeId:f,nodeId:String(e),isFetching:!0})),y(p(t),t.fullPath)}}}}})(),{pasteAsChildRecursiveTreeContextMenuItem:C,pasteRecursiveUpdatingReferencesTreeContextMenuItem:k,pasteAsChildTreeContextMenuItem:T,pasteAsNewLanguageVariantTreeContextMenuItem:S,pasteAsNewLanguageVariantRecursiveTreeContextMenuItem:D,pasteLanguageRecursiveUpdatingReferencesTreeContextMenuItem:E,pasteOnlyContentsTreeContextMenuItem:M,pasteAsChildRecursiveInheritanceTreeContextMenuItem:I,pasteRecursiveUpdatingReferencesInheritanceTreeContextMenuItem:L,pasteAsChildInheritanceTreeContextMenuItem:P,pasteAsNewLanguageVariantInheritanceTreeContextMenuItem:N,pasteAsNewLanguageVariantRecursiveInheritanceTreeContextMenuItem:A,pasteLanguageRecursiveUpdatingReferencesInheritanceTreeContextMenuItem:R,isPasteMenuHidden:O,isPasteInheritanceMenuHidden:B}=(()=>{let{t:e}=(0,t7.useTranslation)(),t=(0,pU.useAppDispatch)(),{paste:i}=(0,bv.o)("document"),{treeId:n}=(0,bw.d)(!0),{getStoredNode:r}=(0,vf.K)("document"),{isPasteHidden:a}=(0,vc.D)("document"),l=(0,p5.r)(),o=(0,xi.o)(),{getDisplayName:s}=(0,vS.Z)(),{modal:d}=tN.App.useApp(),[f]=tc.l.useForm(),c=(l.validLanguages??[]).map(e=>({value:e,label:`${s(e)} [${e}]`})),u=async(t,i,r)=>{if((0,eY.isNil)(t))throw Error("Source node is null");let a="string"==typeof t.id?parseInt(t.id):t.id,l="string"==typeof i.id?parseInt(i.id):i.id,s=new xr({sourceId:a,targetId:l,parameters:r,title:e("jobs.document-clone-job.title"),treeId:n,nodeId:String(l)});await o.runJob(s)},m=async(e,i)=>{if((0,eY.isNil)(e))return;let r="string"==typeof e.id?parseInt(e.id):e.id,a="string"==typeof i.id?parseInt(i.id):i.id;t((0,bj.sQ)({treeId:n,nodeId:String(a),isFetching:!0}));try{await t(v9.hi.endpoints.documentReplaceContent.initiate({sourceId:r,targetId:a})).unwrap()}catch(e){(0,is.ZP)(new is.aE(e.message))}finally{t((0,bj.sQ)({treeId:n,nodeId:String(a),isFetching:!1}))}},p=(e,t)=>{h(e,t,!1)},g=(e,t)=>{h(e,t,!0)},h=(t,i,n)=>{d.confirm({title:e("document.language-required"),content:(0,to.jsx)(tc.l,{form:f,children:(0,to.jsx)(tc.l.Item,{label:e("language"),name:"language",rules:[{required:!0,message:e("form.validation.required")}],children:(0,to.jsx)(tC.P,{options:c})})}),onOk:async()=>{await b(t,i,n)},onCancel:y,okText:e("paste"),cancelText:e("cancel")})},b=async(e,t,i)=>{let{language:n}=await f.validateFields();try{let a;switch(t){case"child":a={language:n,enableInheritance:i,recursive:!1,updateReferences:!1};break;case"recursive":a={language:n,enableInheritance:i,recursive:!0,updateReferences:!1};break;case"recursive-update-references":a={language:n,enableInheritance:i,recursive:!0,updateReferences:!0};break;default:return}await u(r(),e,a),f.resetFields()}catch(e){console.error("Clone operation failed:",e)}},y=()=>{f.resetFields()},v=e=>a(e,"copy");return{pasteTreeContextMenuItem:t=>({label:e("element.tree.paste"),key:gM.N.paste,icon:(0,to.jsx)(rR.J,{value:"paste"}),hidden:v(t),onClick:async()=>{await i(parseInt(t.id))}}),pasteAsChildRecursiveTreeContextMenuItem:t=>({label:e("element.tree.paste-as-child-recursive"),key:gM.N.pasteAsChildRecursive,icon:(0,to.jsx)(rR.J,{value:"paste"}),hidden:v(t),onClick:async()=>{await u(r(),t,{language:null,enableInheritance:!1,recursive:!0,updateReferences:!1})}}),pasteRecursiveUpdatingReferencesTreeContextMenuItem:t=>({label:e("element.tree.paste-recursive-updating-references"),key:gM.N.pasteRecursiveUpdatingReferences,icon:(0,to.jsx)(rR.J,{value:"paste"}),hidden:v(t),onClick:async()=>{await u(r(),t,{language:null,enableInheritance:!1,recursive:!0,updateReferences:!0})}}),pasteAsChildTreeContextMenuItem:t=>({label:e("element.tree.paste-as-child"),key:gM.N.pasteAsChild,icon:(0,to.jsx)(rR.J,{value:"paste"}),hidden:v(t),onClick:async()=>{await u(r(),t,{language:null,enableInheritance:!1,recursive:!1,updateReferences:!1})}}),pasteAsNewLanguageVariantTreeContextMenuItem:t=>({label:e("document.paste-as-new-language-variant"),key:"pasteAsNewLanguageVariant",icon:(0,to.jsx)(rR.J,{value:"paste"}),hidden:v(t),onClick:()=>{p(t,"child")}}),pasteAsNewLanguageVariantRecursiveTreeContextMenuItem:t=>({label:e("document.paste-as-new-language-variant-recursive"),key:"pasteAsNewLanguageVariantRecursive",icon:(0,to.jsx)(rR.J,{value:"paste"}),hidden:v(t),onClick:()=>{p(t,"recursive")}}),pasteLanguageRecursiveUpdatingReferencesTreeContextMenuItem:t=>({label:e("document.paste-language-recursive-updating-references"),key:"pasteLanguageRecursiveUpdatingReferences",icon:(0,to.jsx)(rR.J,{value:"paste"}),hidden:v(t),onClick:()=>{p(t,"recursive-update-references")}}),pasteOnlyContentsTreeContextMenuItem:t=>({label:e("element.tree.paste-only-contents"),key:gM.N.pasteOnlyContents,icon:(0,to.jsx)(rR.J,{value:"paste"}),hidden:(e=>{let t=r();return v(e)||"folder"===e.type||e.isLocked||(null==t?void 0:t.type)!==e.type})(t),onClick:async()=>{await m(r(),t)}}),pasteAsChildRecursiveInheritanceTreeContextMenuItem:t=>({label:e("element.tree.paste-as-child-recursive"),key:`${gM.N.pasteAsChildRecursive}-inheritance`,icon:(0,to.jsx)(rR.J,{value:"paste"}),hidden:v(t),onClick:async()=>{await u(r(),t,{language:null,enableInheritance:!0,recursive:!0,updateReferences:!1})}}),pasteRecursiveUpdatingReferencesInheritanceTreeContextMenuItem:t=>({label:e("element.tree.paste-recursive-updating-references"),key:`${gM.N.pasteRecursiveUpdatingReferences}-inheritance`,icon:(0,to.jsx)(rR.J,{value:"paste"}),hidden:v(t),onClick:async()=>{await u(r(),t,{language:null,enableInheritance:!0,recursive:!0,updateReferences:!0})}}),pasteAsChildInheritanceTreeContextMenuItem:t=>({label:e("element.tree.paste-as-child"),key:`${gM.N.pasteAsChild}-inheritance`,icon:(0,to.jsx)(rR.J,{value:"paste"}),hidden:v(t),onClick:async()=>{await u(r(),t,{language:null,enableInheritance:!0,recursive:!1,updateReferences:!1})}}),pasteAsNewLanguageVariantInheritanceTreeContextMenuItem:t=>({label:e("document.paste-as-new-language-variant"),key:"pasteAsNewLanguageVariant-inheritance",icon:(0,to.jsx)(rR.J,{value:"paste"}),hidden:v(t),onClick:()=>{g(t,"child")}}),pasteAsNewLanguageVariantRecursiveInheritanceTreeContextMenuItem:t=>({label:e("document.paste-as-new-language-variant-recursive"),key:"pasteAsNewLanguageVariantRecursive-inheritance",icon:(0,to.jsx)(rR.J,{value:"paste"}),hidden:v(t),onClick:()=>{g(t,"recursive")}}),pasteLanguageRecursiveUpdatingReferencesInheritanceTreeContextMenuItem:t=>({label:e("document.paste-language-recursive-updating-references"),key:"pasteLanguageRecursiveUpdatingReferences-inheritance",icon:(0,to.jsx)(rR.J,{value:"paste"}),hidden:v(t),onClick:()=>{g(t,"recursive-update-references")}}),isPasteMenuHidden:e=>v(e),isPasteInheritanceMenuHidden:e=>v(e)}})(),F=[n(i),r(i),o(i),{label:t("element.tree.paste"),key:"paste",icon:(0,to.jsx)(rR.J,{value:"paste"}),hidden:O(i),children:[C(i),k(i),T(i),S(i),D(i),E(i),M(i)]},{label:t("document.paste-inheritance"),key:"paste-inheritance",icon:(0,to.jsx)(rR.J,{value:"paste"}),hidden:B(i),children:[I(i),L(i),P(i),N(i),A(i),R(i)]},s(i),d(i),h(i),g(i),a(i),b(i),{label:t("element.tree.context-menu.advanced"),key:"advanced",icon:(0,to.jsx)(rR.J,{value:"more"}),children:[{label:t("convert-to"),key:"convert-to",icon:(0,to.jsx)(rR.J,{value:"flip-forward"}),hidden:!v(i),children:[y(i,"page"),y(i,"snippet"),y(i,"email"),y(i,"link"),y(i,"hardlink")]},{label:t("element.lock"),key:"advanced-lock",icon:(0,to.jsx)(rR.J,{value:"lock"}),hidden:p(i),children:[f(i),c(i),u(i),m(i)]},j(i),w(i),x(i)]},l(i)];return(0,to.jsx)(bV.v,{dataTestId:(0,dM.Mj)("document",i.id),items:F})};eR._.registerModule({onInit:()=>{eB.nC.get(eO.j["App/ComponentRegistry/ComponentRegistry"]).register({name:hy.O.document.tree.contextMenu.name,component:xo})}});let xs=e=>{let{t}=(0,t7.useTranslation)();return(0,to.jsx)(bg,{...e,label:t("document.document-tree.search",{folderName:e.node.label}),node:e.node,total:e.total})},xd=bS((b=bs.O,y=(0,ts.forwardRef)((e,t)=>{let{ref:i,...n}=e;return(0,to.jsx)(b,{...e,ref:t,wrapNode:t=>(0,to.jsx)(bR.ZP,{renderMenu:()=>(0,to.jsx)(xo,{node:n}),children:(0,eY.isUndefined)(e.wrapNode)?t:e.wrapNode(t)})})}),v=(0,ts.forwardRef)((e,t)=>{var i;let n=e.metaData.document,{t:r}=(0,t7.useTranslation)();if((null==(i=e.metaData)?void 0:i.document)===void 0)return(0,to.jsx)(y,{...e});let a=(0,eY.isString)(null==n?void 0:n.key)&&(null==n?void 0:n.key)!==""?null==n?void 0:n.key:r("home");return(0,to.jsx)(bb._,{info:{icon:e.icon,title:a,type:"document",data:{...n}},children:(0,to.jsx)(y,{...e,ref:t})})}),x=(0,ts.forwardRef)((e,t)=>{let i=e.isLoading??!1,[,{isLoading:n}]=(0,bk.um)({fixedCacheKey:`DOCUMENT_ACTION_DELETE_ID_${e.id}`}),{isFetching:r,isLoading:a,isDeleting:l}=(0,bd.J)(e.id);return(0,to.jsx)(v,{...e,danger:i||n||l,isLoading:i||!0!==a&&r||n||l||a,ref:t})}),(0,ts.forwardRef)((e,t)=>{var i;let{move:n}=(0,bv.o)("document"),{isSourceAllowed:r,isTargetAllowed:a}=bC();if((null==(i=e.metaData)?void 0:i.document)===void 0)return(0,to.jsx)(x,{...e});let l=e.metaData.document;if(!a(l))return(0,to.jsx)(x,{...e});let o=e=>{let t=e.data;r(t)&&a(l)&&n({currentElement:{id:t.id,parentId:t.parentId},targetElement:{id:l.id,parentId:l.parentId}}).catch(()=>{(0,is.ZP)(new is.aE("Item could not be moved"))})},s=e=>"document"===e.type,d=e=>{let t=e.data;return"document"===e.type&&r(t)&&a(l)};return(0,to.jsx)(x,{...e,ref:t,wrapNode:t=>(0,to.jsx)(lE.b,{disableDndActiveIndicator:!0,isValidContext:s,isValidData:d,onDrop:o,children:(0,eY.isUndefined)(e.wrapNode)?t:e.wrapNode(t)})})}))),xf=e=>{let{id:t=1,showRoot:i=!0}=e,{openDocument:n}=(0,v2.l)(),{rootNode:r,isLoading:a}=(0,bD.V)(t,i),l=(0,bE.q)().get(hy.O.document.tree.contextMenu.name);if(i&&a)return(0,to.jsx)(aL.x,{padding:"small",children:(0,to.jsx)(by.O,{})});async function o(e){n({config:{id:parseInt(e.id)}})}return(0,to.jsx)(bo.fr,{contextMenu:l,nodeId:t,onSelect:o,renderFilter:xs,renderNode:xd,renderNodeContent:bo.lG.renderNodeContent,renderPager:bm,rootNode:r,showRoot:i})};function xc(e){let{description:t}=e,{t:i}=(0,t7.useTranslation)();return(0,to.jsx)(aB.V,{centered:!0,children:(0,to.jsxs)(rZ.k,{align:"center",gap:"mini",style:{maxWidth:"300px",textAlign:"center"},vertical:!0,children:[(0,to.jsxs)(rZ.k,{align:"center",gap:"mini",children:[(0,to.jsx)(rR.J,{value:"info-circle"}),(0,to.jsx)("span",{children:i("widget.missing-context.title")})]}),(0,to.jsx)(nc.x,{type:"secondary",children:t})]})})}eR._.registerModule({onInit:()=>{eB.nC.get(eO.j.widgetManager).registerWidget({name:"document-tree",component:xf})}});var xu=i(33159);function xm(e){let{dataObject:t}=(0,am.H)(e.id),{t:i}=(0,t7.useTranslation)();return(null==t?void 0:t.modified)!==!0?(0,to.jsx)(to.Fragment,{}):(0,to.jsx)(l5.u,{placement:"bottomLeft",title:(0,to.jsxs)(to.Fragment,{children:[i("detached-tab.draft-tooltip"),(0,to.jsx)(aL.x,{padding:{top:"normal"},children:i("detached-tab.draft-tooltip-addon")})]}),children:(0,to.jsx)(aL.x,{padding:{x:"extra-small"},children:(0,to.jsxs)(rZ.k,{align:"flex-start",gap:"mini",children:[(0,to.jsx)(rR.J,{value:"draft"}),(0,to.jsx)(nc.x,{children:"Draft"})]})})})}function xp(e){let{context:t,tabKey:i}=e,{getOpenedMainWidget:n}=(0,dy.A)(),{editorType:r,isLoading:a}=(0,gj.q)(t.config.id,t.type),{t:l}=(0,t7.useTranslation)();if(a)return(0,to.jsx)(aB.V,{loading:!0});if(void 0===r)return(0,to.jsx)(xc,{description:l("widget.missing-tab-context.description")});let o=n(),s=eB.nC.get(r.tabManagerServiceId).getTab(i),d=eB.nC.get(eO.j.widgetManager);if(void 0===s||void 0===o)return(0,to.jsx)(xc,{description:l("widget.missing-tab-context.description")});let f=d.getWidget((null==o?void 0:o.getComponent())??"");if((null==f?void 0:f.getContextProvider)===void 0)return(0,to.jsx)(xc,{description:l("widget.missing-tab-context.description")});let c=f.getContextProvider(t,s.children);return void 0===c?(0,to.jsx)(xc,{description:l("widget.missing-tab-context.description")}):(0,to.jsx)(aF.D,{renderTopBar:(0,to.jsxs)(aO.o,{align:"center",position:"top",size:"small",theme:"secondary",children:[(0,to.jsx)(xu.U,{elementType:t.type,id:t.config.id}),"data-object"===t.type&&(0,to.jsx)(xm,{id:t.config.id})]}),children:c})}var xg=i(75796);let xh=e=>{let{tabKey:t}=e,{context:i}=(0,xg.Q)(),{t:n}=(0,t7.useTranslation)();return void 0===i?(0,to.jsx)(xc,{description:n("widget.missing-context.description")}):(0,to.jsx)(xp,{context:i,tabKey:t},i.type)};eR._.registerModule({onInit:()=>{eB.nC.get(eO.j.widgetManager).registerWidget({name:"detachable-tab",component:xh})}});var xb=i(67247),xy=i(97676);let xv=()=>{let{pageSize:e,treeFilterArgs:t}=bu(),i=(0,pU.useAppDispatch)();async function n(t,n){let r=i(bG.hi.endpoints.dataObjectGetTree.initiate(n,{forceRefetch:!0}));return await r.then(i=>{let{data:n,isError:r,error:a}=i;if(r)return void(0,is.ZP)(new is.MS(a));if(!r&&!(0,eY.isUndefined)(n)){let i=[];return n.items.forEach(e=>{i.push({id:e.id.toString(),elementType:s2.a.dataObject,icon:(0,pA.Ff)(e,{type:"name",value:"data-object"}),label:e.key,type:e.type,parentId:e.parentId.toString(),fullPath:e.fullPath,hasChildren:e.hasChildren,locked:e.locked,isLocked:e.isLocked,isPublished:e.published,metaData:{dataObject:e},permissions:e.permissions??[],internalKey:`${t.internalKey}-${e.id}`})}),{nodes:i,total:n.totalItems??e}}}).catch(()=>void 0)}return{fetchRoot:async function(e){return await n({id:"0",internalKey:"0"},{pageSize:1,page:1,excludeFolders:!1,pathIncludeParent:!0,pathIncludeDescendants:!1,pqlQuery:1===e?void 0:"id = "+e})},fetchChildren:async function(i,r){return await n(i,{parentId:parseInt(i.id),pageSize:e,page:r.page,idSearchTerm:r.searchTerm,...t})}}},xx=()=>{let{pageSize:e,treeFilterArgs:t}=bu(),i=(0,pU.useAppDispatch)();async function n(t,n){let r=i(pk.api.endpoints.assetGetTree.initiate(n,{forceRefetch:!0}));return await r.then(i=>{let{data:n,isError:r,error:a}=i;if(r)return void(0,is.ZP)(new is.MS(a));if(!r&&!(0,eY.isUndefined)(n)){let i=[];return n.items.forEach(e=>{i.push({id:e.id.toString(),elementType:s2.a.asset,icon:(0,pA.Ff)(e,{type:"name",value:"unknown"}),label:e.filename,type:e.type,parentId:e.parentId.toString(),fullPath:e.fullPath,hasChildren:e.hasChildren,locked:e.locked,isLocked:e.isLocked,metaData:{asset:e},permissions:e.permissions??[],internalKey:`${t.internalKey}-${e.id}`})}),{nodes:i,total:n.totalItems??e}}}).catch(()=>void 0)}return{fetchRoot:async function(e){return await n({id:"0",internalKey:"0"},{pageSize:1,page:1,excludeFolders:!1,pathIncludeParent:!0,pathIncludeDescendants:!1,pqlQuery:1===e?void 0:"id = "+e})},fetchChildren:async function(i,r){return await n(i,{parentId:parseInt(i.id),pageSize:e,page:r.page,idSearchTerm:r.searchTerm,...t})}}},xj=()=>{let{pageSize:e,treeFilterArgs:t}=bu(),i=(0,pU.useAppDispatch)();async function n(t,n){let r=i(l2.hi.endpoints.documentGetTree.initiate(n,{forceRefetch:!0}));return await r.then(i=>{let{data:n,isError:r,error:a}=i;if(r)return void(0,is.ZP)(new is.MS(a));if(!r&&!(0,eY.isUndefined)(n)){let i=[];return n.items.forEach(e=>{i.push({id:e.id.toString(),elementType:s2.a.document,icon:(0,pA.Ff)(e,{type:"name",value:"document"}),label:e.key,type:e.type,parentId:e.parentId.toString(),fullPath:e.fullPath,hasChildren:e.hasChildren,locked:e.locked,isLocked:e.isLocked,isPublished:e.published,isSite:e.isSite,metaData:{document:e},permissions:e.permissions??[],internalKey:`${t.internalKey}-${e.id}`})}),{nodes:i,total:n.totalItems??e}}}).catch(()=>void 0)}return{fetchRoot:async function(e){return await n({id:"0",internalKey:"0"},{pageSize:1,page:1,excludeFolders:!1,pathIncludeParent:!0,pathIncludeDescendants:!1,pqlQuery:1===e?void 0:"id = "+e})},fetchChildren:async function(i,r){return await n(i,{parentId:parseInt(i.id),pageSize:e,page:r.page,idSearchTerm:r.searchTerm,...t})}}};var xw=i(52060);let xC=e=>{let{id:t,elementType:i,rootFolderId:n,classes:r,pql:a,pageSize:l,contextPermissions:o,showRoot:s=!1}=e,{asset_tree_paging_limit:d,object_tree_paging_limit:f}=(0,p5.r)(),c=l??(i===s2.a.asset?d:f);return(0,to.jsx)(xy.s,{treeId:t,children:(0,to.jsx)(xb.W,{permissions:{...o},children:(0,to.jsxs)(bc,{classIds:r,pageSize:c,pqlQuery:a??void 0,children:[i===s2.a.asset&&(0,to.jsx)(xw.Q,{nodeApiHook:xx,children:(0,to.jsx)(bH,{id:n??1,showRoot:s})}),i===s2.a.dataObject&&(0,to.jsx)(xw.Q,{nodeApiHook:xv,children:(0,to.jsx)(vb,{id:n??1,showRoot:s})}),i===s2.a.document&&(0,to.jsx)(xw.Q,{nodeApiHook:xj,children:(0,to.jsx)(xf,{id:n??1,showRoot:s})})]})})})};eR._.registerModule({onInit:()=>{eB.nC.get(eO.j.widgetManager).registerWidget({name:"element_tree",component:xC})}});var xk=i(65179),xT=i(24568);let xS=e=>{let{removeJob:t}=(0,gn.C)(),{t:i}=(0,t7.useTranslation)();return(0,to.jsx)(xT.R,{failureButtonActions:[{label:i("jobs.job.button-hide"),handler:()=>{t(e.id)}}],finishedWithErrorsButtonActions:[{label:i("jobs.job.button-hide"),handler:()=>{t(e.id)}}],successButtonActions:[{label:i("jobs.job.button-hide"),handler:()=>{t(e.id)}}],...e,progress:e.config.progress??0})};var xD=i(54275);let xE=e=>{let{id:t,topics:i,status:n,action:r}=e,{open:a,close:l}=(0,xD.L)({topics:i,messageHandler:function(e){let i=JSON.parse(e.data);i.jobRunId===c.current&&(void 0!==i.progress&&s(i.progress),void 0!==i.status&&("finished"===i.status&&(d(t,{status:gr.B.SUCCESS}),l()),"failed"===i.status&&(d(t,{status:gr.B.FAILED}),l())))},openHandler:function(){r().then(e=>{c.current=e}).catch(console.error)}}),[o,s]=(0,ts.useState)(0),{updateJob:d,removeJob:f}=(0,gn.C)(),c=(0,ts.useRef)(),{t:u}=(0,t7.useTranslation)();return(0,ts.useEffect)(()=>{gr.B.QUEUED===n&&(d(t,{status:gr.B.RUNNING}),a())},[e.status]),(0,to.jsx)(xT.R,{failureButtonActions:[{label:u("jobs.job.button-retry"),handler:function(){d(t,{status:gr.B.QUEUED})}},{label:u("jobs.job.button-hide"),handler:()=>{f(t)}}],successButtonActions:[{label:u("jobs.job.button-download"),handler:function(){let i=e.config.downloadUrl,n=document.createElement("a");n.href=i.replace("{jobRunId}",c.current.toString()),n.download="",n.click(),f(t)}}],...e,progress:o})},xM=e=>{let{id:t,topics:i,status:n,action:r}=e,[a,l]=(0,ts.useState)(0),{updateJob:o,removeJob:s}=(0,gn.C)(),d=(0,ts.useRef)(),{t:f}=(0,t7.useTranslation)(),[c,u]=(0,ts.useState)(void 0),m=(0,pU.useAppDispatch)(),p=()=>{o(t,{status:gr.B.SUCCESS})},{open:g,close:h}=(0,xD.L)({topics:i,messageHandler:e=>{let i=JSON.parse(e.data);if(i.jobRunId===d.current&&(void 0!==i.progress&&l(i.progress),void 0!==i.status)){if("finished"===i.status&&void 0!==i.messages){let e=i.messages;void 0!==e.jobRunChildId&&(d.current=e.jobRunChildId,u(2),l(0)),void 0===e.jobRunChildId&&(p(),h())}"finished_with_errors"===i.status&&(p(),h()),"failed"===i.status&&(o(t,{status:gr.B.FAILED}),h())}},openHandler:()=>{r().then(e=>{d.current=e}).catch(()=>{s(t)})}});(0,ts.useEffect)(()=>{gr.B.QUEUED===n&&g(),gr.B.RUNNING===n&&u(1),gr.B.SUCCESS===n&&(u(void 0),m((0,bj.D9)({nodeId:e.config.parentFolder,elementType:"asset"})))},[e.status]);let b=(0,eY.isUndefined)(c)?e.title:f(`jobs.zip-upload-job.step${c}.title`);return(0,to.jsx)(xT.R,{failureButtonActions:[{label:f("jobs.job.button-hide"),handler:()=>{s(t)}}],successButtonActions:[{label:f("jobs.job.button-hide"),handler:()=>{s(t)}}],...e,progress:a,step:c,title:b,totalSteps:2})};var xI=i(35985);let xL=e=>{let{id:t,topics:i,status:n,action:r,refreshGrid:a}=e,[l,o]=(0,ts.useState)(0),s=(0,ts.useRef)(),{t:d}=(0,t7.useTranslation)(),{open:f,close:c}=(0,xD.L)({topics:i,messageHandler:function(i){let n=JSON.parse(i.data);n.jobRunId===s.current&&(void 0!==n.progress&&o(n.progress),void 0!==n.status&&("finished"===n.status&&(u(t,{status:gr.B.SUCCESS}),c(),xI.Y.publish({identifier:{type:"asset:listing:refresh",id:e.config.assetContextId}})),"failed"===n.status&&(u(t,{status:gr.B.FAILED}),c())))},openHandler:function(){r().then(e=>{s.current=e}).catch(console.error)}}),{updateJob:u,removeJob:m}=(0,gn.C)();(0,ts.useEffect)(()=>{gr.B.QUEUED===n&&(u(t,{status:gr.B.RUNNING}),f())},[]);let p=async()=>{await a()};return(0,to.jsx)(xT.R,{failureButtonActions:[{label:d("jobs.job.button-retry"),handler:()=>{u(t,{status:gr.B.QUEUED}),f()}},{label:d("jobs.job.button-hide"),handler:()=>{m(t)}}],successButtonActions:[{label:d("jobs.job.button-reload"),handler:async()=>{await p()}},{label:d("jobs.job.button-hide"),handler:()=>{m(t)}}],...e,progress:l})},xP=e=>{let{id:t,topics:i,status:n,action:r,refreshGrid:a}=e,[l,o]=(0,ts.useState)(0),s=(0,ts.useRef)(),{t:d}=(0,t7.useTranslation)(),{open:f,close:c}=(0,xD.L)({topics:i,messageHandler:function(i){let n=JSON.parse(i.data);n.jobRunId===s.current&&(void 0!==n.progress&&o(n.progress),void 0!==n.status&&("finished"===n.status&&(u(t,{status:gr.B.SUCCESS}),c(),xI.Y.publish({identifier:{type:"asset:listing:refresh",id:e.config.assetContextId}})),"failed"===n.status&&(u(t,{status:gr.B.FAILED}),c())))},openHandler:function(){r().then(e=>{s.current=e}).catch(console.error)}}),{updateJob:u,removeJob:m}=(0,gn.C)();(0,ts.useEffect)(()=>{gr.B.QUEUED===n&&(u(t,{status:gr.B.RUNNING}),f())},[]);let p=async()=>{await a()};return(0,to.jsx)(xT.R,{failureButtonActions:[{label:d("jobs.job.button-retry"),handler:()=>{u(t,{status:gr.B.QUEUED}),f()}},{label:d("jobs.job.button-hide"),handler:()=>{m(t)}}],successButtonActions:[{label:d("jobs.job.button-reload"),handler:async()=>{await p()}},{label:d("jobs.job.button-hide"),handler:()=>{m(t)}}],...e,progress:l})},xN=e=>{let{id:t,topics:i,status:n,action:r}=e,{open:a,close:l}=(0,xD.L)({topics:i,messageHandler:function(e){let i=JSON.parse(e.data);i.jobRunId===c.current&&(void 0!==i.progress&&s(i.progress),void 0!==i.status&&("finished"===i.status&&(d(t,{status:gr.B.SUCCESS}),l()),"finished_with_errors"===i.status&&(d(t,{status:gr.B.SUCCESS}),l()),"failed"===i.status&&(d(t,{status:gr.B.FAILED}),l())))},openHandler:function(){r().then(e=>{c.current=e}).catch(console.error)}}),[o,s]=(0,ts.useState)(0),{updateJob:d,removeJob:f}=(0,gn.C)(),c=(0,ts.useRef)(),{t:u}=(0,t7.useTranslation)();return(0,ts.useEffect)(()=>{gr.B.QUEUED===n&&(d(t,{status:gr.B.RUNNING}),a())},[e.status]),(0,to.jsx)(xT.R,{failureButtonActions:[{label:u("jobs.job.button-hide"),handler:()=>{f(t)}}],successButtonActions:[{label:u("jobs.job.button-hide"),handler:()=>{f(t)}}],...e,progress:o})};eR._.registerModule({onInit(){let e=eB.nC.get(eO.j["ExecutionEngine/JobComponentRegistry"]);e.registerComponent("default",xk.v),e.registerComponent("default-message-bus",xS),e.registerComponent("download",xE),e.registerComponent("batch-edit",xL),e.registerComponent("batch-delete",xP),e.registerComponent("zip-upload",xM),e.registerComponent("tag-assign",xN)}}),eR._.registerModule({onInit(){let e=eB.nC.get(eO.j["DynamicTypes/FieldFilterRegistry"]);e.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/FieldFilter/DataObjectAdapter"])),e.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/FieldFilter/DataObjectObjectBrick"])),e.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/FieldFilter/String"])),e.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/FieldFilter/Fulltext"])),e.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/FieldFilter/Input"])),e.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/FieldFilter/None"])),e.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/FieldFilter/Id"])),e.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/FieldFilter/Number"])),e.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/FieldFilter/Multiselect"])),e.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/FieldFilter/Date"])),e.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/FieldFilter/Boolean"])),e.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/FieldFilter/BooleanSelect"]));let t=eB.nC.get(eO.j["DynamicTypes/BatchEditRegistry"]);t.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/BatchEdit/Text"])),t.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/BatchEdit/TextArea"])),t.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/BatchEdit/Datetime"])),t.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/BatchEdit/Select"])),t.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/BatchEdit/Checkbox"])),t.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/BatchEdit/ElementDropzone"])),t.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/BatchEdit/DataObjectAdapter"])),t.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/BatchEdit/DataObjectObjectBrick"])),eB.nC.get(eO.j["DynamicTypes/ListingRegistry"]).registerDynamicType(eB.nC.get(eO.j["DynamicTypes/Listing/AssetLink"]));let i=eB.nC.get(eO.j["DynamicTypes/GridCellRegistry"]);i.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/GridCell/Text"])),i.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/GridCell/String"])),i.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/GridCell/Textarea"])),i.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/GridCell/Number"])),i.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/GridCell/Select"])),i.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/GridCell/MultiSelect"])),i.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/GridCell/Boolean"])),i.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/GridCell/Checkbox"])),i.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/GridCell/Date"])),i.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/GridCell/Time"])),i.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/GridCell/DateTime"])),i.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/GridCell/AssetLink"])),i.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/GridCell/ObjectLink"])),i.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/GridCell/DocumentLink"])),i.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/GridCell/OpenElement"])),i.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/GridCell/AssetPreview"])),i.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/GridCell/AssetActions"])),i.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/GridCell/DataObjectActions"])),i.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/GridCell/DependencyTypeIcon"])),i.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/GridCell/AssetCustomMetadataIcon"])),i.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/GridCell/AssetCustomMetadataValue"])),i.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/GridCell/PropertyIcon"])),i.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/GridCell/PropertyValue"])),i.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/GridCell/WebsiteSettingsValue"])),i.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/GridCell/ScheduleActionsSelect"])),i.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/GridCell/VersionsIdSelect"])),i.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/GridCell/AssetVersionPreviewFieldLabel"])),i.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/GridCell/Asset"])),i.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/GridCell/Object"])),i.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/GridCell/Document"])),i.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/GridCell/Element"])),i.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/GridCell/LanguageSelect"])),i.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/GridCell/Translate"])),i.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/GridCell/DataObjectAdapter"])),i.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/GridCell/DataObjectAdvanced"])),i.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/GridCell/DataObjectObjectBrick"])),eB.nC.get(eO.j["DynamicTypes/AdvancedGridCellRegistry"]).registerDynamicType(eB.nC.get(eO.j["DynamicTypes/GridCell/String"]));let n=eB.nC.get(eO.j["DynamicTypes/MetadataRegistry"]);n.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/Metadata/Asset"])),n.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/Metadata/Checkbox"])),n.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/Metadata/Date"])),n.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/Metadata/Document"])),n.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/Metadata/Input"])),n.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/Metadata/Object"])),n.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/Metadata/Select"])),n.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/Metadata/Textarea"]));let r=eB.nC.get(eO.j["DynamicTypes/ObjectLayoutRegistry"]);r.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectLayout/Panel"])),r.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectLayout/Tabpanel"])),r.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectLayout/Accordion"])),r.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectLayout/Region"])),r.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectLayout/Text"])),r.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectLayout/Fieldset"])),r.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectLayout/FieldContainer"]));let a=eB.nC.get(eO.j["DynamicTypes/ObjectDataRegistry"]);a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/Input"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/Textarea"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/Wysiwyg"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/Password"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/InputQuantityValue"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/Select"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/MultiSelect"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/Language"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/LanguageMultiSelect"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/Country"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/CountryMultiSelect"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/User"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/BooleanSelect"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/Numeric"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/NumericRange"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/Slider"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/QuantityValue"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/QuantityValueRange"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/Consent"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/Firstname"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/Lastname"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/Email"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/Gender"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/RgbaColor"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/EncryptedField"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/CalculatedValue"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/Checkbox"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/Link"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/UrlSlug"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/Date"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/Datetime"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/DateRange"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/Time"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/ExternalImage"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/Image"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/Video"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/HotspotImage"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/ImageGallery"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/GeoPoint"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/GeoBounds"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/GeoPolygon"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/GeoPolyLine"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/ManyToOneRelation"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/ManyToManyRelation"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/ManyToManyObjectRelation"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/AdvancedManyToManyObjectRelation"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/AdvancedManyToManyRelation"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/ReverseObjectRelation"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/Table"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/StructuredTable"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/Block"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/LocalizedFields"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/FieldCollection"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/ObjectBrick"])),a.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/ObjectData/ClassificationStore"]));let l=eB.nC.get(eO.j["DynamicTypes/DocumentEditableRegistry"]);l.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/DocumentEditable/Block"])),l.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/DocumentEditable/ScheduledBlock"])),l.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/DocumentEditable/Checkbox"])),l.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/DocumentEditable/Date"])),l.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/DocumentEditable/Embed"])),l.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/DocumentEditable/Input"])),l.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/DocumentEditable/Link"])),l.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/DocumentEditable/Numeric"])),l.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/DocumentEditable/Relation"])),l.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/DocumentEditable/Relations"])),l.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/DocumentEditable/Renderlet"])),l.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/DocumentEditable/Select"])),l.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/DocumentEditable/Snippet"])),l.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/DocumentEditable/Table"])),l.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/DocumentEditable/Textarea"])),l.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/DocumentEditable/Wysiwyg"])),l.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/DocumentEditable/MultiSelect"])),l.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/DocumentEditable/Image"])),l.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/DocumentEditable/Pdf"])),l.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/DocumentEditable/Video"])),l.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/DocumentEditable/Area"])),l.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/DocumentEditable/Areablock"]));let o=eB.nC.get(eO.j["DynamicTypes/EditableDialogLayoutRegistry"]);o.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/EditableDialogLayout/Tabpanel"])),o.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/EditableDialogLayout/Panel"]));let s=eB.nC.get(eO.j["DynamicTypes/AssetRegistry"]);s.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/Asset/Archive"])),s.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/Asset/Audio"])),s.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/Asset/Document"])),s.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/Asset/Folder"])),s.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/Asset/Image"])),s.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/Asset/Text"])),s.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/Asset/Unknown"])),s.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/Asset/Video"]));let d=eB.nC.get(eO.j["DynamicTypes/DocumentRegistry"]);d.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/Document/Email"])),d.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/Document/Folder"])),d.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/Document/Hardlink"])),d.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/Document/Link"])),d.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/Document/Newsletter"])),d.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/Document/Snippet"])),d.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/Document/Page"]));let f=eB.nC.get(eO.j["DynamicTypes/ObjectRegistry"]);f.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/Object/Folder"])),f.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/Object/Object"])),f.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/Object/Variant"]));let c=eB.nC.get(eO.j["DynamicTypes/Grid/SourceFieldsRegistry"]);c.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/Grid/SourceFields/Text"])),c.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/Grid/SourceFields/SimpleField"])),c.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/Grid/SourceFields/RelationField"]));let u=eB.nC.get(eO.j["DynamicTypes/Grid/TransformersRegistry"]);u.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/Grid/Transformers/ChangeCase"])),u.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/Grid/Transformers/Combine"]))}}),eR._.registerModule({onInit:()=>{let e=eB.nC.get(eO.j["DynamicTypes/ThemeRegistry"]);e.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/Theme/StudioDefaultLight"])),e.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/Theme/StudioDefaultDark"]))}});let xA=(0,ia.createStyles)(e=>{let{css:t,token:i}=e,n=t` min-height: 100px; cursor: text; `,r=t` @@ -690,7 +690,7 @@ } ${r} - `}}),xR=(0,ts.forwardRef)((e,t)=>{let{value:i,onChange:n,disabled:r,width:a,height:o,placeholder:l,context:s}=e,d=(0,ts.useRef)(null),{styles:f}=xA(),c=(0,eY.isNil)(i)||(0,eY.isEmpty)(i)||""===i.trim()||"

"===i||"
"===i;return(0,ts.useImperativeHandle)(t,()=>({onDrop:e=>{}})),(0,ts.useEffect)(()=>{(0,eY.isNull)(d.current)||d.current.innerHTML===i||(d.current.innerHTML=i??"")},[i]),(0,tl.jsx)("div",{children:(0,tl.jsx)("div",{className:s===rF.v.DOCUMENT?f.editorDocument:f.editor,contentEditable:!0!==r,"data-empty":c,"data-placeholder":l,onInput:e=>{null!=n&&n(e.currentTarget.innerHTML)},ref:d,style:{maxWidth:(0,rN.s)(a),minHeight:(0,rN.s)(o)}})})});xR.displayName="DefaultWysiwygEditor",eR._.registerModule({onInit:()=>{eB.nC.get(eO.j["App/ComponentRegistry/ComponentRegistry"]).register({name:e_.O8.wysiwyg.editor.name,component:xR})}});let xO=sQ.hi.enhanceEndpoints({addTagTypes:[gi.fV.PERSPECTIVES,gi.fV.PERSPECTIVE_DETAIL,gi.fV.WIDGETS,gi.fV.WIDGET_DETAIL],endpoints:{perspectiveGetConfigCollection:{providesTags:e=>{let t=[];return null==e||e.items.forEach(e=>{t.push(...gi.Kx.PERSPECTIVE_DETAIL(e.id))}),[...t,...gi.Kx.PERSPECTIVES()]}},perspectiveCreate:{invalidatesTags:()=>[]},perspectiveDelete:{invalidatesTags:()=>[]},perspectiveWidgetGetConfigCollection:{providesTags:e=>{let t=[];return null==e||e.items.forEach(e=>{t.push(...gi.Kx.WIDGET_DETAIL(e.id))}),[...t,...gi.Kx.WIDGETS()]}},perspectiveWidgetCreate:{invalidatesTags:()=>[]},perspectiveWidgetDelete:{invalidatesTags:()=>[]}}}),{usePerspectiveCreateMutation:xB,usePerspectiveGetConfigCollectionQuery:xF,usePerspectiveGetConfigByIdQuery:x_,usePerspectiveUpdateConfigByIdMutation:xz,usePerspectiveDeleteMutation:xV,usePerspectiveWidgetCreateMutation:x$,usePerspectiveWidgetGetConfigCollectionQuery:xW,usePerspectiveWidgetGetConfigByIdQuery:xH,usePerspectiveWidgetUpdateConfigByIdMutation:xG,usePerspectiveWidgetDeleteMutation:xU,usePerspectiveWidgetGetTypeCollectionQuery:xq}=xO,xZ=()=>{let e=(0,hd.TL)(),t=(0,an.U8)(),{t:i}=(0,t7.useTranslation)(),{success:n}=(0,h4.U)(),[r]=xB(),[a]=xz(),[o]=xV(),l=async(t,a)=>{let o=r({addPerspectiveConfig:{name:t}});try{let r=await o;void 0!==r.error&&(0,is.ZP)(new is.MS(r.error)),null==a||a(t),e(xO.util.invalidateTags(gi.xc.PERSPECTIVES())),n(i("perspective-editor.create.success"))}catch{(0,is.ZP)(new is.aE("Failed to create new perspective."))}},s=async(t,r)=>{let a=o({perspectiveId:t});try{let t=await a;if(!(0,eY.isUndefined)(t.error))return void(0,is.ZP)(new is.MS(t.error));e(xO.util.invalidateTags(gi.xc.PERSPECTIVES())),null==r||r(),n(i("perspective-editor.delete.success"))}catch{(0,is.ZP)(new is.aE("Failed to delete perspective"))}};return{createPerspective:e=>{t.input({title:i("perspective-editor.add-modal.title"),label:i("perspective-editor.add-modal.name.label"),rule:{required:!0,message:i("perspective-editor.add-modal.name.validation")},onOk:async t=>{await l(t,()=>{null==e||e(t)})}})},getPerspectiveById:async t=>{try{let{data:i,isError:n,error:r}=await e(xO.endpoints.perspectiveGetConfigById.initiate({perspectiveId:t}));if(!(0,eY.isUndefined)(i)&&n)return void(0,is.ZP)(new is.MS(r));return i}catch{(0,is.ZP)(new is.aE('Failed to load perspective data of perspective "'+t+'".'))}},updatePerspective:async(e,t,r)=>{let o=a({perspectiveId:e,savePerspectiveConfig:t});try{let e=await o;if(void 0!==e.error){null==r||r(),(0,is.ZP)(new is.MS(e.error));return}null==r||r(),n(i("perspective-editor.update.success"))}catch{null==r||r(),(0,is.ZP)(new is.aE("Failed to update perspective."))}},removeWithConfirmation:(e,n)=>{t.confirm({title:i("element.delete.confirmation.title"),content:(0,tl.jsx)("span",{children:i("element.delete.confirmation.text")}),okText:i("element.delete.confirmation.ok"),onOk:async()=>{await s(e,()=>{null==n||n()})}})}}},xK=(0,ts.createContext)(void 0),xJ=e=>{let{children:t}=e,[i,n]=(0,ts.useState)(void 0),[r,a]=(0,ts.useState)([]),{getPerspectiveById:o}=xZ(),[l,s]=(0,ts.useState)(!1),d=async e=>{let t=await o(e);(0,eY.isNil)(t)||a(e=>e.findIndex(e=>e.id===t.id)>=0?(n(t.id),e):(n(t.id),[...e,t]))},f=e=>{let t=r.filter(t=>t.id!==e);a(t),i===e&&(t.length>0?n(t[0].id):n(void 0))},c=(0,ts.useMemo)(()=>({activeTabId:i,setActiveTabId:n,perspectives:r,setPerspectives:a,openPerspective:d,closePerspective:f,isLoading:l,setIsLoading:s}),[i,r,l]);return(0,tl.jsx)(xK.Provider,{value:c,children:t})};var xX=i(57147);let xQ=e=>{let t,i,n,r=(0,xX.c)(10),{leftItem:a,rightItem:o,withDivider:l,resizeAble:s,withToolbar:d}=e,f=void 0===l||l,c=void 0!==s&&s,u=void 0===d||d;r[0]!==a?(t={size:20,minSize:170,...a},r[0]=a,r[1]=t):t=r[1];let m=t;r[2]!==o?(i={size:80,...o},r[2]=o,r[3]=i):i=r[3];let p=i;return r[4]!==m||r[5]!==p||r[6]!==c||r[7]!==f||r[8]!==u?(n=(0,tl.jsx)(d$.K,{leftItem:m,resizeAble:c,rightItem:p,withDivider:f,withToolbar:u}),r[4]=m,r[5]=p,r[6]=c,r[7]=f,r[8]=u,r[9]=n):n=r[9],n},xY=()=>{let e=(0,ts.useContext)(xK);if(void 0===e)throw Error("usePerspectiveEditorContext must be used within a PerspectiveEditorProvider");return e},x0=()=>{let{t:e}=(0,t7.useTranslation)(),{menuEntries:t,isLoading:i}=(()=>{let{data:e,isLoading:t}=(0,sQ.wc)({perspectiveId:"studio_default_perspective"});return{menuEntries:(0,ts.useMemo)(()=>(null==e?void 0:e.contextPermissions)??{},[e]),isLoading:t}})();return i?(0,tl.jsx)(nd.h.Panel,{collapsed:!1,collapsible:!0,theme:"fieldset",title:e("perspective-editor.form.allowed-context-menu.title"),children:(0,tl.jsx)(aI.y,{})}):(0,tl.jsxs)(rZ.k,{gap:4,vertical:!0,children:[(0,tl.jsx)("p",{children:e("perspective-editor.form.allowed-context-menu.title")}),(0,tl.jsx)(rZ.k,{gap:8,vertical:!0,children:Object.entries(t).map(t=>{let[i,n]=t;return(0,tl.jsx)(nd.h.Panel,{collapsed:!1,collapsible:!0,theme:"fieldset",title:e(`perspective-editor.form.allowed-context-menu.category.${i}`),children:(0,tl.jsx)(rZ.k,{gap:4,vertical:!0,children:Object.entries(n).sort((e,t)=>{let[i]=e,[n]=t;return"hidden"===i?-1:+("hidden"===n)}).map(t=>{let[n,r]=t;return(0,tl.jsx)(tc.l.Item,{name:["contextPermissions",i,n],children:(0,tl.jsx)(s0.r,{labelRight:e(`perspective-editor.form.allowed-context-menu.${i}.${n}`),size:"small"})},`${i}.${n}`)})})},i)})})]})},x1=(0,ia.createStyles)(e=>{let{token:t,css:i}=e;return{iconGrid:i` + `}}),xR=(0,ts.forwardRef)((e,t)=>{let{value:i,onChange:n,disabled:r,width:a,height:l,placeholder:o,context:s}=e,d=(0,ts.useRef)(null),{styles:f}=xA(),c=(0,eY.isNil)(i)||(0,eY.isEmpty)(i)||""===i.trim()||"

"===i||"
"===i;return(0,ts.useImperativeHandle)(t,()=>({onDrop:e=>{}})),(0,ts.useEffect)(()=>{(0,eY.isNull)(d.current)||d.current.innerHTML===i||(d.current.innerHTML=i??"")},[i]),(0,to.jsx)("div",{children:(0,to.jsx)("div",{className:s===rF.v.DOCUMENT?f.editorDocument:f.editor,contentEditable:!0!==r,"data-empty":c,"data-placeholder":o,onInput:e=>{null!=n&&n(e.currentTarget.innerHTML)},ref:d,style:{maxWidth:(0,rN.s)(a),minHeight:(0,rN.s)(l)}})})});xR.displayName="DefaultWysiwygEditor",eR._.registerModule({onInit:()=>{eB.nC.get(eO.j["App/ComponentRegistry/ComponentRegistry"]).register({name:e_.O8.wysiwyg.editor.name,component:xR})}});let xO=sQ.hi.enhanceEndpoints({addTagTypes:[gi.fV.PERSPECTIVES,gi.fV.PERSPECTIVE_DETAIL,gi.fV.WIDGETS,gi.fV.WIDGET_DETAIL],endpoints:{perspectiveGetConfigCollection:{providesTags:e=>{let t=[];return null==e||e.items.forEach(e=>{t.push(...gi.Kx.PERSPECTIVE_DETAIL(e.id))}),[...t,...gi.Kx.PERSPECTIVES()]}},perspectiveCreate:{invalidatesTags:()=>[]},perspectiveDelete:{invalidatesTags:()=>[]},perspectiveWidgetGetConfigCollection:{providesTags:e=>{let t=[];return null==e||e.items.forEach(e=>{t.push(...gi.Kx.WIDGET_DETAIL(e.id))}),[...t,...gi.Kx.WIDGETS()]}},perspectiveWidgetCreate:{invalidatesTags:()=>[]},perspectiveWidgetDelete:{invalidatesTags:()=>[]}}}),{usePerspectiveCreateMutation:xB,usePerspectiveGetConfigCollectionQuery:xF,usePerspectiveGetConfigByIdQuery:x_,usePerspectiveUpdateConfigByIdMutation:xz,usePerspectiveDeleteMutation:xV,usePerspectiveWidgetCreateMutation:x$,usePerspectiveWidgetGetConfigCollectionQuery:xW,usePerspectiveWidgetGetConfigByIdQuery:xH,usePerspectiveWidgetUpdateConfigByIdMutation:xG,usePerspectiveWidgetDeleteMutation:xU,usePerspectiveWidgetGetTypeCollectionQuery:xq}=xO,xZ=()=>{let e=(0,hd.TL)(),t=(0,an.U8)(),{t:i}=(0,t7.useTranslation)(),{success:n}=(0,h4.U)(),[r]=xB(),[a]=xz(),[l]=xV(),o=async(t,a)=>{let l=r({addPerspectiveConfig:{name:t}});try{let r=await l;void 0!==r.error&&(0,is.ZP)(new is.MS(r.error)),null==a||a(t),e(xO.util.invalidateTags(gi.xc.PERSPECTIVES())),n(i("perspective-editor.create.success"))}catch{(0,is.ZP)(new is.aE("Failed to create new perspective."))}},s=async(t,r)=>{let a=l({perspectiveId:t});try{let t=await a;if(!(0,eY.isUndefined)(t.error))return void(0,is.ZP)(new is.MS(t.error));e(xO.util.invalidateTags(gi.xc.PERSPECTIVES())),null==r||r(),n(i("perspective-editor.delete.success"))}catch{(0,is.ZP)(new is.aE("Failed to delete perspective"))}};return{createPerspective:e=>{t.input({title:i("perspective-editor.add-modal.title"),label:i("perspective-editor.add-modal.name.label"),rule:{required:!0,message:i("perspective-editor.add-modal.name.validation")},onOk:async t=>{await o(t,()=>{null==e||e(t)})}})},getPerspectiveById:async t=>{try{let{data:i,isError:n,error:r}=await e(xO.endpoints.perspectiveGetConfigById.initiate({perspectiveId:t}));if(!(0,eY.isUndefined)(i)&&n)return void(0,is.ZP)(new is.MS(r));return i}catch{(0,is.ZP)(new is.aE('Failed to load perspective data of perspective "'+t+'".'))}},updatePerspective:async(e,t,r)=>{let l=a({perspectiveId:e,savePerspectiveConfig:t});try{let e=await l;if(void 0!==e.error){null==r||r(),(0,is.ZP)(new is.MS(e.error));return}null==r||r(),n(i("perspective-editor.update.success"))}catch{null==r||r(),(0,is.ZP)(new is.aE("Failed to update perspective."))}},removeWithConfirmation:(e,n)=>{t.confirm({title:i("element.delete.confirmation.title"),content:(0,to.jsx)("span",{children:i("element.delete.confirmation.text")}),okText:i("element.delete.confirmation.ok"),onOk:async()=>{await s(e,()=>{null==n||n()})}})}}},xK=(0,ts.createContext)(void 0),xJ=e=>{let{children:t}=e,[i,n]=(0,ts.useState)(void 0),[r,a]=(0,ts.useState)([]),{getPerspectiveById:l}=xZ(),[o,s]=(0,ts.useState)(!1),d=async e=>{let t=await l(e);(0,eY.isNil)(t)||a(e=>e.findIndex(e=>e.id===t.id)>=0?(n(t.id),e):(n(t.id),[...e,t]))},f=e=>{let t=r.filter(t=>t.id!==e);a(t),i===e&&(t.length>0?n(t[0].id):n(void 0))},c=(0,ts.useMemo)(()=>({activeTabId:i,setActiveTabId:n,perspectives:r,setPerspectives:a,openPerspective:d,closePerspective:f,isLoading:o,setIsLoading:s}),[i,r,o]);return(0,to.jsx)(xK.Provider,{value:c,children:t})};var xX=i(57147);let xQ=e=>{let t,i,n,r=(0,xX.c)(10),{leftItem:a,rightItem:l,withDivider:o,resizeAble:s,withToolbar:d}=e,f=void 0===o||o,c=void 0!==s&&s,u=void 0===d||d;r[0]!==a?(t={size:20,minSize:170,...a},r[0]=a,r[1]=t):t=r[1];let m=t;r[2]!==l?(i={size:80,...l},r[2]=l,r[3]=i):i=r[3];let p=i;return r[4]!==m||r[5]!==p||r[6]!==c||r[7]!==f||r[8]!==u?(n=(0,to.jsx)(d$.K,{leftItem:m,resizeAble:c,rightItem:p,withDivider:f,withToolbar:u}),r[4]=m,r[5]=p,r[6]=c,r[7]=f,r[8]=u,r[9]=n):n=r[9],n},xY=()=>{let e=(0,ts.useContext)(xK);if(void 0===e)throw Error("usePerspectiveEditorContext must be used within a PerspectiveEditorProvider");return e},x0=()=>{let{t:e}=(0,t7.useTranslation)(),{menuEntries:t,isLoading:i}=(()=>{let{data:e,isLoading:t}=(0,sQ.wc)({perspectiveId:"studio_default_perspective"});return{menuEntries:(0,ts.useMemo)(()=>(null==e?void 0:e.contextPermissions)??{},[e]),isLoading:t}})();return i?(0,to.jsx)(nd.h.Panel,{collapsed:!1,collapsible:!0,theme:"fieldset",title:e("perspective-editor.form.allowed-context-menu.title"),children:(0,to.jsx)(aI.y,{})}):(0,to.jsxs)(rZ.k,{gap:4,vertical:!0,children:[(0,to.jsx)("p",{children:e("perspective-editor.form.allowed-context-menu.title")}),(0,to.jsx)(rZ.k,{gap:8,vertical:!0,children:Object.entries(t).map(t=>{let[i,n]=t;return(0,to.jsx)(nd.h.Panel,{collapsed:!1,collapsible:!0,theme:"fieldset",title:e(`perspective-editor.form.allowed-context-menu.category.${i}`),children:(0,to.jsx)(rZ.k,{gap:4,vertical:!0,children:Object.entries(n).sort((e,t)=>{let[i]=e,[n]=t;return"hidden"===i?-1:+("hidden"===n)}).map(t=>{let[n,r]=t;return(0,to.jsx)(tc.l.Item,{name:["contextPermissions",i,n],children:(0,to.jsx)(s0.r,{labelRight:e(`perspective-editor.form.allowed-context-menu.${i}.${n}`),size:"small"})},`${i}.${n}`)})})},i)})})]})},x1=(0,ia.createStyles)(e=>{let{token:t,css:i}=e;return{iconGrid:i` display: grid; grid-template-columns: repeat(10, 1fr); grid-template-rows: repeat(4, 76px); @@ -765,21 +765,21 @@ gap: 0 !important; } - `}}),x2=e=>{let{customIconPath:t,onCustomIconPathChange:i}=e,[n,r]=(0,ts.useState)(t),{styles:a}=x1();return(0,ts.useEffect)(()=>{r(t)},[t]),(0,tl.jsx)(rZ.k,{className:a.customIconContainer,gap:"large",vertical:!0,children:(0,tl.jsxs)(rZ.k,{gap:"small",vertical:!0,children:[(0,tl.jsx)("span",{children:(0,ii.t)("icon-selector.custom-icon-path")}),(0,tl.jsx)(ih.SearchInput,{maxWidth:"1000px",onChange:e=>{r(e.target.value)},onSearch:()=>{""!==n.trim()?i({type:"path",value:n.trim()}):i(void 0)},placeholder:(0,ii.t)("icon-selector.custom-icon-path-placeholder"),searchButtonIcon:"refresh",value:n,withPrefix:!1,withoutAddon:!1})]})})},x3=e=>{let{icon:t,isSelected:i,onClick:n}=e,{styles:r}=x1(),a=`${r.iconCard} ${i?r.selectedCard:""}`;return(0,tl.jsxs)(ih.Space,{className:a,onClick:n,size:"mini",children:[(0,tl.jsx)(rR.J,{options:{height:24,width:24},type:t.type,value:t.value}),(0,tl.jsx)("span",{className:r.iconName,children:(e=>{if("path"===e.type){var t;return(null==(t=e.value.split("/").pop())?void 0:t.replace(".svg",""))??e.value}return e.value})(t)})]},t.value)},x6=e=>{let{icon:t,onLoadError:i}=e;return(0,eY.isUndefined)(t)?(0,tl.jsx)("div",{}):(0,tl.jsx)(o5.u,{placement:"bottom",title:t.value,children:(0,tl.jsx)(rR.J,{onLoadError:i,options:{height:16,width:16},type:t.type,value:t.value})})},x4=e=>{let{value:t,onChange:i}=e,n=(0,eB.$1)(eO.j["DynamicTypes/IconSetRegistry"]),{styles:r}=x1(),[a,o]=(0,ts.useState)(!1),[l,s]=(0,ts.useState)(""),[d,f]=(0,ts.useState)(1),[c,u]=(0,ts.useState)(40),[m,p]=(0,ts.useState)("all"),[g,h]=(0,ts.useState)(t),[b,y]=(0,ts.useState)(!1);(0,ts.useEffect)(()=>{h(t)},[t]);let v=()=>{o(!1),s(""),f(1),u(40),p("all"),h(t),y(!1)},x=[{key:"all",label:(0,ii.t)("icon-selector.all-icons"),children:null},...n.getDynamicTypes().map(e=>({key:e.id,label:(0,ii.t)(`icon-selector.${e.name}`),children:null})),{key:"custom",label:(0,ii.t)("icon-selector.custom-icon"),children:null}],j=(0,ts.useMemo)(()=>(e=>{if("all"===e)return n.getDynamicTypes().flatMap(e=>e.getIcons());let t=n.getDynamicTypes().find(t=>t.id===e);return(0,eY.isUndefined)(t)?[]:t.getIcons()})(m).filter(e=>e.value.toLowerCase().includes(l.toLowerCase())),[l,m,n]),w=(0,ts.useMemo)(()=>{let e=(d-1)*c,t=e+c;return j.slice(e,t)},[j,d,c]),C=()=>{h(void 0),y(!1),null==i||i(void 0)};return(0,tl.jsxs)(tl.Fragment,{children:[(0,tl.jsxs)(rZ.k,{gap:"extra-small",children:[(0,tl.jsx)(rZ.k,{align:"center",className:r.selectionPreview,justify:"center",children:(0,tl.jsx)(x6,{icon:t})}),(0,tl.jsx)(ih.IconButton,{icon:{value:"folder-search"},onClick:()=>{o(!0)},type:"default"}),(0,tl.jsx)(ih.IconButton,{icon:{value:"trash"},onClick:C,title:(0,ii.t)("icon-selector.clear-selection"),type:"default"})]}),(0,tl.jsx)(ih.Modal,{className:r.iconSelectorModal,footer:(0,tl.jsx)(ih.ModalFooter,{divider:!0,children:(0,tl.jsx)(tN.Button,{disabled:(0,eY.isUndefined)(g)||b,onClick:()=>{null==i||i(g),v()},type:"primary",children:(0,ii.t)("icon-selector.save")})}),onCancel:()=>{v()},open:a,size:"ML",children:(0,tl.jsxs)(rZ.k,{vertical:!0,children:[(0,tl.jsx)(ih.Tabs,{activeKey:m,items:x,onChange:e=>{p(e),s(""),f(1)}}),"custom"!==m&&(0,tl.jsx)(ih.SearchInput,{maxWidth:"1000px",onSearch:e=>{s(e),f(1)},placeholder:(0,ii.t)("icon-selector.search-placeholder"),withPrefix:!1,withoutAddon:!1}),"custom"!==m&&(0,tl.jsx)("div",{className:r.iconGrid,children:w.map(e=>(0,tl.jsx)(x3,{icon:e,isSelected:(null==g?void 0:g.value)===e.value&&(null==g?void 0:g.type)===e.type,onClick:()=>{h(e),y(!1)}},e.value))}),"custom"===m&&(0,tl.jsx)(x2,{customIconPath:(null==g?void 0:g.type)==="path"?g.value:"",onCustomIconPathChange:e=>{h(e),(0,eY.isUndefined)(e)&&y(!1)}}),(0,tl.jsxs)(rZ.k,{justify:"space-between",children:[(0,tl.jsxs)(rZ.k,{align:"center",gap:"small",children:[(0,tl.jsx)("span",{className:r.selectionLabel,children:(0,ii.t)("icon-selector.current-selection")}),(0,tl.jsx)(rZ.k,{align:"center",className:oy()(r.selectionPreview,{[r.selectionPreviewError]:b}),justify:"center",children:(0,tl.jsx)(x6,{icon:g,onLoadError:y})}),!(0,eY.isUndefined)(g)&&!b&&(0,tl.jsx)(ih.IconButton,{icon:{value:"trash"},onClick:C,title:(0,ii.t)("icon-selector.clear-selection"),type:"default"})]}),"custom"!==m&&(0,tl.jsx)(rZ.k,{align:"center",gap:"small",justify:"flex-end",children:(0,tl.jsx)(ih.Pagination,{current:d,defaultPageSize:c,onChange:(e,t)=>{f(e),(0,eY.isUndefined)(t)||u(t)},pageSizeOptions:[40,80,120],showSizeChanger:!0,showTotal:e=>(0,ii.t)("pagination.show-total",{total:e}),total:j.length})})]})]})})]})},x8=()=>{let{t:e}=(0,t7.useTranslation)();return(0,tl.jsxs)(tl.Fragment,{children:[(0,tl.jsx)(tc.l.Item,{label:e("perspective-editor.form.general.name"),name:"name",children:(0,tl.jsx)(ae.I,{})}),(0,tl.jsx)(tc.l.Item,{label:e("perspective-editor.form.general.icon"),name:"icon",children:(0,tl.jsx)(x4,{})})]})};var x7=i(50857);let x5=(0,ts.createContext)(void 0),x9=e=>{let{children:t,formChange:i,value:n}=e,[r,a]=(0,ts.useState)((null==n?void 0:n.widgets)??[]),[o,l]=(0,ts.useState)((null==n?void 0:n.expanded)??null),s=(e,t)=>{null==i||i({widgets:e,expanded:t})},d=e=>{if(r.some(t=>t.id===e.id))return;let t=[...r,e];a(t),s(t,o)},f=e=>{let t=r.filter(t=>t.id!==e),i=o===e?null:o;a(t),l(i),s(t,i)},c=e=>{let t=e.map(e=>r.find(t=>t.id===e.id)).filter(e=>void 0!==e);a(t),s(t,o)},u=e=>{let t=o===e?null:e;l(t),s(r,t)},m=(0,ts.useMemo)(()=>({widgetConfigs:r,expandedWidget:o,onAdd:d,onRemove:f,onReorder:c,setExpanded:u}),[r,o]);return(0,tl.jsx)(x5.Provider,{value:m,children:t})},je=()=>{let e=(0,ts.useContext)(x5);if(void 0===e)throw Error("useWidgetConfiguratorContext must be used within a WidgetConfiguratorProvider");return e},jt=()=>{let{t:e}=(0,t7.useTranslation)(),{onAdd:t}=je(),i=eB.nC.get(eO.j["DynamicTypes/WidgetEditor/WidgetTypeRegistry"]),{data:n,isFetching:r}=xW(),a=[...i.getMenuItems((null==n?void 0:n.items)??[],e=>{null==t||t(e)})];return(0,tl.jsx)(pJ.L,{menu:{items:a},children:(0,tl.jsx)(ai.z,{loading:r,type:"default",children:e("add")})})},ji=e=>{let{widget:t}=e;return(0,eY.isNil)(t)?(0,tl.jsx)(tl.Fragment,{}):(0,tl.jsxs)(rZ.k,{align:"center",gap:8,children:[(0,tl.jsx)(rR.J,{...t.icon}),(0,tl.jsx)("span",{children:t.name})]})},jn=e=>{let{widget:t,allowExpandControl:i}=e,{expandedWidget:n,setExpanded:r,onRemove:a}=je(),o=n===t.id,l=[(0,tl.jsx)(aM.h,{icon:{value:"trash"},onClick:()=>{a(t.id)},theme:"secondary"},"remove")];return!0===i&&(l=[(0,tl.jsx)(aM.h,{icon:{value:o?"eye":"eye-off"},onClick:()=>{r(t.id)},theme:"secondary"},"expand"),...l]),(0,tl.jsx)(p8.h,{items:l,noSpacing:!0})},jr=e=>{let{allowExpandControl:t=!0}=e,[i,n]=(0,ts.useState)([]),{onReorder:r,widgetConfigs:a}=je();return(0,ts.useEffect)(()=>{n(a.map((e,i)=>({id:e.id,sortable:!0,renderRightToolbar:(0,tl.jsx)(jn,{allowExpandControl:t,widget:e}),children:(0,tl.jsx)(ji,{widget:e})})))},[a]),(0,tl.jsx)(p4.f,{items:i,onItemsChange:r,sortable:!0})},ja=e=>{let{label:t,value:i,onChange:n,allowExpandControl:r=!0}=e;return(0,tl.jsx)(x9,{formChange:n,value:i,children:(0,tl.jsx)(x7.Z,{className:"w-full",title:(0,tl.jsxs)(ih.Flex,{align:"center",gap:8,children:[(0,tl.jsx)("span",{children:t}),(0,tl.jsx)(jt,{})]}),children:(0,tl.jsx)(jr,{allowExpandControl:r})})})},jo=()=>{let{t:e}=(0,t7.useTranslation)();return(0,tl.jsxs)(rZ.k,{gap:10,children:[(0,tl.jsx)(tc.l.Item,{name:"widgetsLeft",style:{flexGrow:1},children:(0,tl.jsx)(ja,{label:e("perspective-editor.system-widgets.left")})}),(0,tl.jsx)(tc.l.Item,{name:"widgetsBottom",style:{flexGrow:1},children:(0,tl.jsx)(ja,{allowExpandControl:!1,label:e("perspective-editor.system-widgets.bottom")})}),(0,tl.jsx)(tc.l.Item,{name:"widgetsRight",style:{flexGrow:1},children:(0,tl.jsx)(ja,{label:e("perspective-editor.system-widgets.right")})})]})},jl=()=>{let{t:e}=(0,t7.useTranslation)();return(0,tl.jsxs)(rZ.k,{gap:4,vertical:!0,children:[(0,tl.jsx)("p",{children:e("perspective-editor.form.general.widget-congfiguration")}),(0,tl.jsx)(jo,{})]})},js=e=>{let{perspective:t}=e,{t:i}=(0,t7.useTranslation)(),{updatePerspective:n,removeWithConfirmation:r}=xZ(),{isLoading:a,setIsLoading:o,setPerspectives:l}=xY(),[s]=tc.l.useForm(),d={...t,widgetsLeft:{widgets:t.widgetsLeft,expanded:t.expandedLeft},widgetsRight:{widgets:t.widgetsRight,expanded:t.expandedRight},widgetsBottom:{widgets:t.widgetsBottom}};return(0,tl.jsx)(nd.h,{formProps:{form:s,initialValues:d,onFinish:async e=>{o(!0);let{widgetsLeft:i,widgetsRight:r,widgetsBottom:a,...l}=e,s={...l,widgetsLeft:Object.fromEntries(i.widgets.map(e=>[e.id,e.widgetType])),expandedLeft:i.expanded,widgetsRight:Object.fromEntries(r.widgets.map(e=>[e.id,e.widgetType])),expandedRight:r.expanded,widgetsBottom:Object.fromEntries(a.widgets.map(e=>[e.id,e.widgetType]))};await n(t.id,s,()=>{o(!1)})}},children:(0,tl.jsxs)(rZ.k,{className:"makeTabsGreatAgain",justify:"space-between",vertical:!0,children:[(0,tl.jsxs)(aB.V,{padded:!0,padding:{x:"small",y:"none"},children:[(0,tl.jsx)(x8,{}),(0,tl.jsx)(jl,{}),(0,tl.jsx)(x0,{})]}),(0,tl.jsxs)(aO.o,{justify:"space-between",children:[(0,tl.jsxs)("div",{children:[(0,tl.jsx)(aM.h,{disabled:a,icon:{value:"refresh"},onClick:()=>{s.resetFields(),s.setFieldsValue(d)},title:i("refresh")}),(0,tl.jsx)(aM.h,{disabled:a,icon:{value:"trash"},onClick:()=>{r(t.id,()=>{l(e=>e.filter(e=>e.id!==t.id))})},title:i("delete")})]}),(0,tl.jsx)(ai.z,{htmlType:"submit",loading:a,type:"primary",children:i("save")})]})]})})},jd=e=>{let{id:t}=e,{perspectives:i}=xY(),n=i.find(e=>e.id===t);return void 0===n?(0,tl.jsx)(tl.Fragment,{}):(0,tl.jsx)(js,{perspective:n})},jf=()=>{let{perspectives:e,activeTabId:t,setActiveTabId:i,closePerspective:n}=xY();return(0,tl.jsx)(ih.Tabs,{activeKey:t,fullHeight:!0,items:e.map(e=>({key:e.id,label:e.name,children:(0,tl.jsx)(jd,{id:e.id})})),onChange:e=>{i(e)},onClose:e=>{n(e)}})},jc=()=>{let{t:e}=(0,t7.useTranslation)(),[t,i]=(0,ts.useState)(""),[n,r]=(0,ts.useState)([]),{openPerspective:a,isLoading:o,setIsLoading:l}=xY(),{createPerspective:s}=xZ(),{data:d,isFetching:f}=(0,sQ.V9)(),c=(0,pU.useAppDispatch)(),u=e=>e.map(e=>({title:e.name,key:e.id,icon:(0,tl.jsx)(ih.Icon,{value:e.icon.value})}));return(0,ts.useEffect)(()=>{(0,eY.isUndefined)(d)&&r([]),(0,eY.isUndefined)(d)||r(u(d.items))},[d]),(0,tl.jsx)(ih.ContentLayout,{renderToolbar:(0,tl.jsxs)(ih.Toolbar,{justify:"space-between",children:[(0,tl.jsx)(ih.IconButton,{icon:{value:"refresh"},loading:o||f,onClick:async()=>{l(!0),c(xO.util.invalidateTags(gi.xc.PERSPECTIVES())),l(!1)},title:e("refresh")}),(0,tl.jsx)(ih.IconTextButton,{disabled:o||f,icon:{value:"new"},loading:o||f,onClick:async()=>{s()},children:e("toolbar.new")})]}),children:(0,tl.jsxs)(ih.Content,{loading:o||f,padded:!0,children:[(0,tl.jsx)(ih.SearchInput,{onChange:e=>{i(e.target.value)},onClear:()=>{i(""),(0,eY.isUndefined)(d)||r(u(d.items))},onSearch:e=>{if(0===e.length){(0,eY.isUndefined)(d)||r(u(d.items));return}(0,eY.isUndefined)(d)||r(u(d.items.filter(t=>!(0,eY.isNil)(t.name)&&t.name.toLowerCase().includes(e.toLowerCase()))))},value:t,withoutAddon:!0}),(0,tl.jsx)(ih.TreeElement,{hasRoot:!1,onSelected:e=>{a(e)},treeData:n})]})})},ju=()=>{let e={id:"widget-editor.perspective-editor.sidebar",minSize:170,children:[(0,tl.jsx)(jc,{},"widget-editor.perspective-editor.sidebar")]},t={id:"widget-editor.perspective-editor.main",minSize:600,children:[(0,tl.jsx)(jf,{},"widget-editor.perspective-editor.main.detailTab")]};return(0,tl.jsx)(xQ,{leftItem:e,rightItem:t})},jm=()=>(0,tl.jsx)(xJ,{children:(0,tl.jsx)(ju,{})});var jp=((j={}).ToolsHidden="extras.hidden",j.NotesAndEvents="extras.notesEvents",j.Mails="extras.emails",j.RecycleBin="extras.recycle_bin",j.ApplicationLogger="extras.applicationlog",j.Redirects="extras.redirects",j.FileHidden="file.hidden",j.OpenDocument="file.open_document",j.OpenObject="file.open_object",j.OpenAsset="file.open_asset",j.Perspectives="file.perspectives",j.SettingsHidden="settings.hidden",j.TagConfiguration="settings.tagConfiguration",j.DocumentTypes="settings.documentTypes",j.WebsiteSettings="settings.website",j.PredefinedProperties="settings.predefinedProperties",j.UsersHidden="settings.users_hidden",j.Users="settings.users_users",j.Roles="settings.users_roles",j.MarketingHidden="marketing.hidden",j.Reports="marketing.reports",j),jg=i(34769);eR._.registerModule({onInit:()=>{eB.nC.get(eO.j.widgetManager).registerWidget({name:"perspective-editor",component:jm}),eB.nC.get(eO.j.mainNavRegistry).registerMainNavItem({path:"System/Perspective-Editor",label:"navigation.widget-editor.perspective-editor",order:400,dividerBottom:!0,className:"item-style-modifier",permission:jg.P.PerspectiveEditor,perspectivePermission:jp.Perspectives,widgetConfig:{name:"perspectiveEditor",id:"perspective-editor",component:"perspective-editor",config:{translationKey:"widget.widget-editor.perspective-editor",icon:{type:"name",value:"book-open-01"}}}})}});let jh=()=>{let e=(0,hd.TL)(),t=(0,an.U8)(),{t:i}=(0,t7.useTranslation)(),{success:n}=(0,h4.U)(),[r]=x$(),[a]=xU(),[o]=xG(),l=async(t,r,o)=>{let l=a({widgetId:t,widgetType:r});try{let t=await l;if(!(0,eY.isUndefined)(t.error))return void(0,is.ZP)(new is.MS(t.error));null==o||o(),e(xO.util.invalidateTags(gi.xc.WIDGETS())),n(i("widget-editor.delete.success"))}catch{(0,is.ZP)(new is.aE("Failed to delete widget"))}};return{createWidget:async(t,a,o)=>{let l=r({widgetType:a,body:{data:{name:t}}});try{let r=await l;void 0!==r.error&&(0,is.ZP)(new is.MS(r.error)),null==o||o(t),e(xO.util.invalidateTags(gi.xc.WIDGETS())),n(i("widget-editor.create.success"))}catch{(0,is.ZP)(new is.aE("Failed to create new widget."))}},getWidgetById:async(t,i)=>{try{let{data:n,isError:r,error:a}=await e(xO.endpoints.perspectiveWidgetGetConfigById.initiate({widgetId:t,widgetType:i}));if(!(0,eY.isUndefined)(n)&&r)return void(0,is.ZP)(new is.MS(a));return null==n?void 0:n.data}catch{(0,is.ZP)(new is.aE('Failed to load widget data of widget "'+t+'" with type "'+i+'".'))}},updateWidget:async(e,t,i,n)=>{let r=o({widgetId:e,widgetType:t,body:{data:{...i}}});try{let e=await r;if(void 0!==e.error)return void(0,is.ZP)(new is.MS(e.error));null==n||n(i)}catch{(0,is.ZP)(new is.aE("Failed to create new perspective."))}},removeWithConfirmation:(e,n,r)=>{t.confirm({title:i("element.delete.confirmation.title"),content:(0,tl.jsxs)("span",{children:[i("element.delete.confirmation.text")," "]}),okText:i("element.delete.confirmation.ok"),onOk:async()=>{await l(e,n,()=>{null==r||r()})}})}}},jb=e=>{let{t}=(0,t7.useTranslation)(),i=pU.container.get(pU.serviceIds["DynamicTypes/WidgetEditor/WidgetTypeRegistry"]).getDynamicTypes();return(0,tl.jsx)(tC.P,{...e,options:i.map(e=>({label:t(`widget-editor.create-form.widgetType.${e.name}`),value:e.id}))})};var jy=((w=jy||{}).ElementTree="element_tree",w);let jv=e=>{let{form:t,initialValues:i,inputRef:n}=e,{t:r}=(0,t7.useTranslation)();return(0,tl.jsxs)(tc.l,{form:t,initialValues:{widgetType:jy.ElementTree,...i},layout:"vertical",children:[(0,tl.jsx)(tc.l.Item,{label:r("widget-editor.create-form.name"),name:"name",rules:[{required:!0,message:r("widget-editor.create-form.name.required")}],children:(0,tl.jsx)(ih.Input,{ref:n})}),(0,tl.jsx)(tc.l.Item,{label:r("widget-editor.create-form.widgetType"),name:"widgetType",children:(0,tl.jsx)(jb,{})})]})},jx=(0,ts.createContext)(void 0),jj=e=>{let{children:t}=e,[i,n]=(0,ts.useState)(void 0),[r,a]=(0,ts.useState)([]),{getWidgetById:o}=jh(),[l,s]=(0,ts.useState)(!1),{createWidget:d}=jh(),{t:f}=(0,t7.useTranslation)(),[c]=ih.Form.useForm(),[u,m]=(0,ts.useState)(!1),p=td().useRef(null);(0,ts.useEffect)(()=>{if(l){var e;null==(e=p.current)||e.focus()}},[l]);let g=async(e,t)=>{let i=await o(e,t);void 0!==i&&a(e=>e.findIndex(e=>e.id===i.id)>=0?(n(i.id),e):(n(i.id),[...e,i]))},h=e=>{let t=r.filter(t=>t.id!==e);a(t),i===e&&(t.length>0?n(t[0].id):n(void 0))},b=async()=>{s(!0)},y=async()=>{await c.validateFields().then(async()=>{m(!0);let{name:e,widgetType:t}=c.getFieldsValue();await d(e,t,()=>{s(!1),c.resetFields()}),m(!1)})},v=(0,ts.useMemo)(()=>({activeTabId:i,setActiveTabId:n,widgets:r,setWidgets:a,openWidget:g,closeWidget:h,createWidget:b,isLoading:u,setIsLoading:m}),[i,r,u]);return(0,tl.jsxs)(jx.Provider,{value:v,children:[t,(0,tl.jsx)(ih.Modal,{okButtonProps:{loading:u},okText:f("widget-editor.create-modal.create"),onCancel:()=>{s(!1)},onOk:async()=>{await y()},open:l,size:"M",children:(0,tl.jsx)(jv,{form:c,inputRef:p})})]})},jw=()=>{let e=(0,ts.useContext)(jx);if(void 0===e)throw Error("useWidgetEditorContext must be used within a WidgetEditorProvider");return e};var jC=i(94009);let jk=()=>{let{t:e}=(0,t7.useTranslation)(),[t,i]=(0,ts.useState)(""),[n,r]=(0,ts.useState)([]),{openWidget:a,createWidget:o,setIsLoading:l,isLoading:s}=jw(),{data:d,isFetching:f}=(0,jC.usePerspectiveWidgetGetConfigCollectionQuery)(),c=(0,hd.TL)(),u=e=>e.map(e=>({title:e.name,key:e.id,icon:(0,tl.jsx)(ih.Icon,{value:e.icon.value})}));return(0,ts.useEffect)(()=>{(0,eY.isUndefined)(d)&&r([]),(0,eY.isUndefined)(d)||r(u(d.items))},[d]),(0,tl.jsx)(ih.ContentLayout,{renderToolbar:(0,tl.jsxs)(ih.Toolbar,{justify:"space-between",children:[(0,tl.jsx)(ih.IconButton,{icon:{value:"refresh"},loading:s||f,onClick:()=>{l(!0),c(xO.util.invalidateTags(gi.xc.WIDGETS())),l(!1)},title:e("refresh")}),(0,tl.jsx)(ih.IconTextButton,{icon:{value:"new"},loading:s||f,onClick:o,children:e("toolbar.new")})]}),children:(0,tl.jsxs)(ih.Content,{loading:s||f,padded:!0,children:[(0,tl.jsx)(ih.SearchInput,{onChange:e=>{i(e.target.value)},onClear:()=>{i(""),(0,eY.isUndefined)(d)||r(u(d.items))},onSearch:e=>{if(0===e.length){(0,eY.isUndefined)(d)||r(u(d.items));return}(0,eY.isUndefined)(d)||r(u(d.items.filter(t=>!(0,eY.isNil)(t.name)&&t.name.toLowerCase().includes(e.toLowerCase()))))},value:t,withoutAddon:!0}),(0,tl.jsx)(ih.TreeElement,{hasRoot:!1,onSelected:e=>{let t=d.items.find(t=>(0,eY.isString)(t.id)&&(0,eY.isString)(e)&&t.id===e);void 0!==t&&a(t.id,t.widgetType)},treeData:n})]})})},jT=()=>{let{t:e}=(0,t7.useTranslation)();return(0,tl.jsxs)(nd.h.Panel,{collapsed:!1,collapsible:!0,title:e("widget-editor.widget-form.general.title"),children:[(0,tl.jsx)(tc.l.Item,{label:e("widget-editor.widget-form.general.name"),name:"name",children:(0,tl.jsx)(ae.I,{})}),(0,tl.jsx)(tc.l.Item,{label:e("widget-editor.widget-form.general.icon"),name:"icon",children:(0,tl.jsx)(x4,{})})]})},jS=e=>{let{form:t}=e,{t:i}=(0,t7.useTranslation)(),{form:n,widget:r}=da(),{isLoading:a,setWidgets:o,setIsLoading:l}=jw(),{removeWithConfirmation:s,updateWidget:d}=jh();return(0,tl.jsx)(nd.h,{formProps:{form:n,layout:"vertical",initialValues:{...r},onFinish:async e=>{l(!0),console.table(e),await d(r.id,r.widgetType,e,()=>{l(!1)})}},children:(0,tl.jsxs)(rZ.k,{className:"makeTabsGreatAgain",justify:"space-between",vertical:!0,children:[(0,tl.jsxs)(aB.V,{padded:!0,padding:{x:"small",y:"none"},children:[(0,tl.jsx)(jT,{}),(0,tl.jsx)(t,{})]}),(0,tl.jsxs)(aO.o,{justify:"space-between",children:[(0,tl.jsxs)("div",{children:[(0,tl.jsx)(aM.h,{disabled:a,icon:{value:"refresh"},onClick:()=>{n.resetFields()},title:i("refresh")}),(0,tl.jsx)(aM.h,{disabled:a,icon:{value:"trash"},onClick:()=>{s(r.id,r.widgetType,()=>{o(e=>e.filter(e=>e.id!==r.id))})},title:i("delete")})]}),(0,tl.jsx)(ai.z,{htmlType:"submit",loading:a,type:"primary",children:i("save")})]})]})})},jD=e=>{let{id:t}=e,{widgets:i}=jw(),n=i.find(e=>e.id===t);if(void 0===n)return(0,tl.jsx)(tl.Fragment,{});let{form:r}=pU.container.get("DynamicTypes/WidgetEditor/WidgetTypeRegistry").getDynamicType(n.widgetType);return(0,tl.jsx)(dr,{widget:n,children:(0,tl.jsx)(jS,{form:r})})},jE=()=>{let{widgets:e,activeTabId:t,setActiveTabId:i,closeWidget:n}=jw();return(0,tl.jsx)(ay.m,{activeKey:t,fullHeight:!0,items:e.map(e=>({key:e.id,label:e.name,closable:!0,children:(0,tl.jsx)(jD,{id:e.id})})),onChange:e=>{i(e)},onClose:e=>{n(e)}})},jM=()=>{let e={id:"widget-editor.widget-editor.sidebar",minSize:170,children:[(0,tl.jsx)(jk,{},"widget-editor.widget-editor.sidebar")]},t={id:"widget-editor.widget-editor.main",minSize:600,children:[(0,tl.jsx)(jE,{},"widget-editor.widget-editor.main.detailTab")]};return(0,tl.jsx)(xQ,{leftItem:e,rightItem:t})},jI=()=>(0,tl.jsx)(jj,{children:(0,tl.jsx)(jM,{})});eR._.registerModule({onInit:()=>{eB.nC.get(pU.serviceIds.widgetManager).registerWidget({name:"widget-editor",component:jI}),eB.nC.get(pU.serviceIds.mainNavRegistry).registerMainNavItem({path:"System/Widget-Editor",label:"navigation.widget-editor.widget-editor",order:300,className:"item-style-modifier",permission:jg.P.WidgetEditor,perspectivePermission:jp.Perspectives,widgetConfig:{name:"widgetEditor",id:"widget-editor",component:"widget-editor",config:{translationKey:"widget.widget-editor.widget-editor",icon:{type:"name",value:"layout-grid-02"}}}}),eB.nC.get(pU.serviceIds["DynamicTypes/WidgetEditor/WidgetTypeRegistry"]).registerDynamicType(eB.nC.get(pU.serviceIds["DynamicTypes/WidgetEditor/ElementTree"]))}}),i(6635);var jL=i(67712),jP=i(60387),jN=i(92637);let jA=()=>{let e=(0,an.U8)(),{t}=(0,t7.useTranslation)(),[i]=(0,jP.F)(),[n]=(0,jP.Ik)(),{success:r}=(0,h4.U)(),a=async(e,n)=>{let a=i({emailAddressParameter:{email:e}});try{let e=await a;(0,eY.isUndefined)(e.error)||(0,jN.trackError)(new jN.ApiError(e.error)),null==n||n(),r(t("email-blocklist.add.email.success"))}catch(e){(0,jN.trackError)(new jN.GeneralError("Failed to add email to blocklist"))}};return{addNewEmail:async i=>{e.input({title:t("email-blocklist.add.label"),label:t("email-blocklist.add.email-address.label"),rule:{required:!0,type:"email",message:t("email-blocklist.add.validation")},onOk:async e=>{await a(e,()=>{null==i||i(e)})}})},removeEmail:async(e,t)=>{let i=n({email:e});try{let e=await i;void 0!==e.error&&(0,jN.trackError)(new jN.ApiError(e.error)),null==t||t()}catch(e){(0,jN.trackError)(new jN.GeneralError("Failed to remove email from blocklist"))}}}},jR=e=>{let{entry:t}=e,{t:i}=(0,t7.useTranslation)(),{removeEmail:n}=jA(),[r,a]=(0,ts.useState)(!1);return(0,tl.jsx)(x7.Z,{children:(0,tl.jsxs)(rZ.k,{align:"center",justify:"space-between",children:[(0,tl.jsx)("span",{children:t.email}),(0,tl.jsxs)(tN.Space,{children:[(0,tl.jsx)("span",{children:(0,ov.formatDateTime)({timestamp:t.modificationDate,dateStyle:"short",timeStyle:"short"})}),(0,tl.jsx)(ih.IconButton,{"aria-label":i("aria.email-blocklist.remove.email"),icon:r?{value:"spinner"}:{value:"trash"},loading:r,onClick:()=>{a(!0),n(t.email)},type:"link"})]})]})})},jO=()=>{var e;let{t}=(0,t7.useTranslation)(),i=(0,hd.TL)(),{addNewEmail:n}=jA(),[r,a]=(0,ts.useState)(1),[o,l]=(0,ts.useState)(20),[s,d]=(0,ts.useState)(!1),{data:f,isLoading:c}=(0,jP.dd)({page:r,pageSize:o}),u=(null==f?void 0:f.totalItems)??0;return(0,tl.jsx)(aF.D,{renderToolbar:(0,tl.jsxs)(aO.o,{justify:"space-between",theme:"secondary",children:[(0,tl.jsx)(aM.h,{disabled:s||c,icon:{value:"refresh"},onClick:()=>{d(!0),i(jL.hi.util.invalidateTags(aw.invalidatingTags.EMAIL_BLOCKLIST())),d(!1)}}),(0,tl.jsx)(ih.Pagination,{current:r,defaultPageSize:o,onChange:(e,t)=>{a(e),l(t)},showSizeChanger:!0,showTotal:e=>t("pagination.show-total",{total:e}),total:u})]}),renderTopBar:(0,tl.jsx)(aO.o,{justify:"space-between",margin:{x:"mini",y:"none"},theme:"secondary",children:(0,tl.jsxs)(rZ.k,{gap:"small",children:[(0,tl.jsx)(vw.D,{icon:(0,tl.jsx)(ih.Icon,{value:"users-x"}),children:t("widget.email-blocklist")}),(0,tl.jsx)(dx.W,{disabled:s||c,icon:{value:"new"},onClick:async()=>{await n(()=>{d(!1)})},children:t("email-blocklist.add")})]})}),children:(0,tl.jsx)(aB.V,{loading:s,none:(0,eY.isUndefined)(null==f?void 0:f.items)||0===f.items.length,padded:!0,children:(null==f?void 0:f.items)!==void 0&&(null==f||null==(e=f.items)?void 0:e.length)>0?f.items.map(e=>(0,tl.jsx)(jR,{entry:e},e.email)):""})})},jB=()=>{let e=(0,an.U8)(),{t}=(0,t7.useTranslation)(),i=(0,hd.TL)(),[n]=(0,jP.ln)(),[r]=(0,jP.xV)(),[a]=(0,jL.ae)(),{success:o}=(0,h4.U)(),l=async(e,i)=>{let r=n({id:e});try{let e=await r;(0,eY.isUndefined)(e.error)||(0,is.ZP)(new is.MS(e.error)),null==i||i(),o(t("email-log.resend.email.success"))}catch(e){(0,is.ZP)(new is.aE("Failed to resend email"))}},s=async(e,n)=>{let r=a({id:e});try{let e=await r;(0,eY.isUndefined)(e.error)||(0,is.ZP)(new is.MS(e.error)),i(jL.hi.util.invalidateTags(gi.xc.EMAIL_LOG())),null==n||n(),o(t("email-log.delete.email.success"))}catch(e){(0,is.ZP)(new is.aE("Failed to delete email"))}};return{resendWithConfirmation:(i,n)=>{e.confirm({title:t("email-log.resend.confirmation.title"),content:(0,tl.jsxs)("span",{children:[t("email-log.resend.confirmation.text")," "]}),okText:t("email-log.resend.confirmation.ok"),onOk:async()=>{await l(i,()=>{null==n||n()})}})},resend:l,forward:async(e,i,n)=>{let a=r({id:e,emailAddressParameter:{email:i}});try{let e=await a;(0,eY.isUndefined)(e.error)||(0,is.ZP)(new is.MS(e.error)),null==n||n(),o(t("email-log.forward.email.success"))}catch(e){(0,is.ZP)(new is.aE("Failed to forward email"))}},remove:s,removeWithConfirmation:(i,n)=>{e.confirm({title:t("element.delete.confirmation.title"),content:(0,tl.jsxs)("span",{children:[t("element.delete.confirmation.text")," "]}),okText:t("element.delete.confirmation.ok"),onOk:async()=>{await s(i,()=>{null==n||n()})}})}}},jF=(0,ia.createStyles)(e=>{let{token:t,css:i}=e;return{iframe:i` + `}}),x2=e=>{let{customIconPath:t,onCustomIconPathChange:i}=e,[n,r]=(0,ts.useState)(t),{styles:a}=x1();return(0,ts.useEffect)(()=>{r(t)},[t]),(0,to.jsx)(rZ.k,{className:a.customIconContainer,gap:"large",vertical:!0,children:(0,to.jsxs)(rZ.k,{gap:"small",vertical:!0,children:[(0,to.jsx)("span",{children:(0,ii.t)("icon-selector.custom-icon-path")}),(0,to.jsx)(ih.SearchInput,{maxWidth:"1000px",onChange:e=>{r(e.target.value)},onSearch:()=>{""!==n.trim()?i({type:"path",value:n.trim()}):i(void 0)},placeholder:(0,ii.t)("icon-selector.custom-icon-path-placeholder"),searchButtonIcon:"refresh",value:n,withPrefix:!1,withoutAddon:!1})]})})},x3=e=>{let{icon:t,isSelected:i,onClick:n}=e,{styles:r}=x1(),a=`${r.iconCard} ${i?r.selectedCard:""}`;return(0,to.jsxs)(ih.Space,{className:a,onClick:n,size:"mini",children:[(0,to.jsx)(rR.J,{options:{height:24,width:24},type:t.type,value:t.value}),(0,to.jsx)("span",{className:r.iconName,children:(e=>{if("path"===e.type){var t;return(null==(t=e.value.split("/").pop())?void 0:t.replace(".svg",""))??e.value}return e.value})(t)})]},t.value)},x6=e=>{let{icon:t,onLoadError:i}=e;return(0,eY.isUndefined)(t)?(0,to.jsx)("div",{}):(0,to.jsx)(l5.u,{placement:"bottom",title:t.value,children:(0,to.jsx)(rR.J,{onLoadError:i,options:{height:16,width:16},type:t.type,value:t.value})})},x4=e=>{let{value:t,onChange:i}=e,n=(0,eB.$1)(eO.j["DynamicTypes/IconSetRegistry"]),{styles:r}=x1(),[a,l]=(0,ts.useState)(!1),[o,s]=(0,ts.useState)(""),[d,f]=(0,ts.useState)(1),[c,u]=(0,ts.useState)(40),[m,p]=(0,ts.useState)("all"),[g,h]=(0,ts.useState)(t),[b,y]=(0,ts.useState)(!1);(0,ts.useEffect)(()=>{h(t)},[t]);let v=()=>{l(!1),s(""),f(1),u(40),p("all"),h(t),y(!1)},x=[{key:"all",label:(0,ii.t)("icon-selector.all-icons"),children:null},...n.getDynamicTypes().map(e=>({key:e.id,label:(0,ii.t)(`icon-selector.${e.name}`),children:null})),{key:"custom",label:(0,ii.t)("icon-selector.custom-icon"),children:null}],j=(0,ts.useMemo)(()=>(e=>{if("all"===e)return n.getDynamicTypes().flatMap(e=>e.getIcons());let t=n.getDynamicTypes().find(t=>t.id===e);return(0,eY.isUndefined)(t)?[]:t.getIcons()})(m).filter(e=>e.value.toLowerCase().includes(o.toLowerCase())),[o,m,n]),w=(0,ts.useMemo)(()=>{let e=(d-1)*c,t=e+c;return j.slice(e,t)},[j,d,c]),C=()=>{h(void 0),y(!1),null==i||i(void 0)};return(0,to.jsxs)(to.Fragment,{children:[(0,to.jsxs)(rZ.k,{gap:"extra-small",children:[(0,to.jsx)(rZ.k,{align:"center",className:r.selectionPreview,justify:"center",children:(0,to.jsx)(x6,{icon:t})}),(0,to.jsx)(ih.IconButton,{icon:{value:"folder-search"},onClick:()=>{l(!0)},type:"default"}),(0,to.jsx)(ih.IconButton,{icon:{value:"trash"},onClick:C,title:(0,ii.t)("icon-selector.clear-selection"),type:"default"})]}),(0,to.jsx)(ih.Modal,{className:r.iconSelectorModal,footer:(0,to.jsx)(ih.ModalFooter,{divider:!0,children:(0,to.jsx)(tN.Button,{disabled:(0,eY.isUndefined)(g)||b,onClick:()=>{null==i||i(g),v()},type:"primary",children:(0,ii.t)("icon-selector.save")})}),onCancel:()=>{v()},open:a,size:"ML",children:(0,to.jsxs)(rZ.k,{vertical:!0,children:[(0,to.jsx)(ih.Tabs,{activeKey:m,items:x,onChange:e=>{p(e),s(""),f(1)}}),"custom"!==m&&(0,to.jsx)(ih.SearchInput,{maxWidth:"1000px",onSearch:e=>{s(e),f(1)},placeholder:(0,ii.t)("icon-selector.search-placeholder"),withPrefix:!1,withoutAddon:!1}),"custom"!==m&&(0,to.jsx)("div",{className:r.iconGrid,children:w.map(e=>(0,to.jsx)(x3,{icon:e,isSelected:(null==g?void 0:g.value)===e.value&&(null==g?void 0:g.type)===e.type,onClick:()=>{h(e),y(!1)}},e.value))}),"custom"===m&&(0,to.jsx)(x2,{customIconPath:(null==g?void 0:g.type)==="path"?g.value:"",onCustomIconPathChange:e=>{h(e),(0,eY.isUndefined)(e)&&y(!1)}}),(0,to.jsxs)(rZ.k,{justify:"space-between",children:[(0,to.jsxs)(rZ.k,{align:"center",gap:"small",children:[(0,to.jsx)("span",{className:r.selectionLabel,children:(0,ii.t)("icon-selector.current-selection")}),(0,to.jsx)(rZ.k,{align:"center",className:ly()(r.selectionPreview,{[r.selectionPreviewError]:b}),justify:"center",children:(0,to.jsx)(x6,{icon:g,onLoadError:y})}),!(0,eY.isUndefined)(g)&&!b&&(0,to.jsx)(ih.IconButton,{icon:{value:"trash"},onClick:C,title:(0,ii.t)("icon-selector.clear-selection"),type:"default"})]}),"custom"!==m&&(0,to.jsx)(rZ.k,{align:"center",gap:"small",justify:"flex-end",children:(0,to.jsx)(ih.Pagination,{current:d,defaultPageSize:c,onChange:(e,t)=>{f(e),(0,eY.isUndefined)(t)||u(t)},pageSizeOptions:[40,80,120],showSizeChanger:!0,showTotal:e=>(0,ii.t)("pagination.show-total",{total:e}),total:j.length})})]})]})})]})},x8=()=>{let{t:e}=(0,t7.useTranslation)();return(0,to.jsxs)(to.Fragment,{children:[(0,to.jsx)(tc.l.Item,{label:e("perspective-editor.form.general.name"),name:"name",children:(0,to.jsx)(ae.I,{})}),(0,to.jsx)(tc.l.Item,{label:e("perspective-editor.form.general.icon"),name:"icon",children:(0,to.jsx)(x4,{})})]})};var x7=i(50857);let x5=(0,ts.createContext)(void 0),x9=e=>{let{children:t,formChange:i,value:n}=e,[r,a]=(0,ts.useState)((null==n?void 0:n.widgets)??[]),[l,o]=(0,ts.useState)((null==n?void 0:n.expanded)??null),s=(e,t)=>{null==i||i({widgets:e,expanded:t})},d=e=>{if(r.some(t=>t.id===e.id))return;let t=[...r,e];a(t),s(t,l)},f=e=>{let t=r.filter(t=>t.id!==e),i=l===e?null:l;a(t),o(i),s(t,i)},c=e=>{let t=e.map(e=>r.find(t=>t.id===e.id)).filter(e=>void 0!==e);a(t),s(t,l)},u=e=>{let t=l===e?null:e;o(t),s(r,t)},m=(0,ts.useMemo)(()=>({widgetConfigs:r,expandedWidget:l,onAdd:d,onRemove:f,onReorder:c,setExpanded:u}),[r,l]);return(0,to.jsx)(x5.Provider,{value:m,children:t})},je=()=>{let e=(0,ts.useContext)(x5);if(void 0===e)throw Error("useWidgetConfiguratorContext must be used within a WidgetConfiguratorProvider");return e},jt=()=>{let{t:e}=(0,t7.useTranslation)(),{onAdd:t}=je(),i=eB.nC.get(eO.j["DynamicTypes/WidgetEditor/WidgetTypeRegistry"]),{data:n,isFetching:r}=xW(),a=[...i.getMenuItems((null==n?void 0:n.items)??[],e=>{null==t||t(e)})];return(0,to.jsx)(pJ.L,{menu:{items:a},children:(0,to.jsx)(ai.z,{loading:r,type:"default",children:e("add")})})},ji=e=>{let{widget:t}=e;return(0,eY.isNil)(t)?(0,to.jsx)(to.Fragment,{}):(0,to.jsxs)(rZ.k,{align:"center",gap:8,children:[(0,to.jsx)(rR.J,{...t.icon}),(0,to.jsx)("span",{children:t.name})]})},jn=e=>{let{widget:t,allowExpandControl:i}=e,{expandedWidget:n,setExpanded:r,onRemove:a}=je(),l=n===t.id,o=[(0,to.jsx)(aM.h,{icon:{value:"trash"},onClick:()=>{a(t.id)},theme:"secondary"},"remove")];return!0===i&&(o=[(0,to.jsx)(aM.h,{icon:{value:l?"eye":"eye-off"},onClick:()=>{r(t.id)},theme:"secondary"},"expand"),...o]),(0,to.jsx)(p8.h,{items:o,noSpacing:!0})},jr=e=>{let{allowExpandControl:t=!0}=e,[i,n]=(0,ts.useState)([]),{onReorder:r,widgetConfigs:a}=je();return(0,ts.useEffect)(()=>{n(a.map((e,i)=>({id:e.id,sortable:!0,renderRightToolbar:(0,to.jsx)(jn,{allowExpandControl:t,widget:e}),children:(0,to.jsx)(ji,{widget:e})})))},[a]),(0,to.jsx)(p4.f,{items:i,onItemsChange:r,sortable:!0})},ja=e=>{let{label:t,value:i,onChange:n,allowExpandControl:r=!0}=e;return(0,to.jsx)(x9,{formChange:n,value:i,children:(0,to.jsx)(x7.Z,{className:"w-full",title:(0,to.jsxs)(ih.Flex,{align:"center",gap:8,children:[(0,to.jsx)("span",{children:t}),(0,to.jsx)(jt,{})]}),children:(0,to.jsx)(jr,{allowExpandControl:r})})})},jl=()=>{let{t:e}=(0,t7.useTranslation)();return(0,to.jsxs)(rZ.k,{gap:10,children:[(0,to.jsx)(tc.l.Item,{name:"widgetsLeft",style:{flexGrow:1},children:(0,to.jsx)(ja,{label:e("perspective-editor.system-widgets.left")})}),(0,to.jsx)(tc.l.Item,{name:"widgetsBottom",style:{flexGrow:1},children:(0,to.jsx)(ja,{allowExpandControl:!1,label:e("perspective-editor.system-widgets.bottom")})}),(0,to.jsx)(tc.l.Item,{name:"widgetsRight",style:{flexGrow:1},children:(0,to.jsx)(ja,{label:e("perspective-editor.system-widgets.right")})})]})},jo=()=>{let{t:e}=(0,t7.useTranslation)();return(0,to.jsxs)(rZ.k,{gap:4,vertical:!0,children:[(0,to.jsx)("p",{children:e("perspective-editor.form.general.widget-congfiguration")}),(0,to.jsx)(jl,{})]})},js=e=>{let{perspective:t}=e,{t:i}=(0,t7.useTranslation)(),{updatePerspective:n,removeWithConfirmation:r}=xZ(),{isLoading:a,setIsLoading:l,setPerspectives:o}=xY(),[s]=tc.l.useForm(),d={...t,widgetsLeft:{widgets:t.widgetsLeft,expanded:t.expandedLeft},widgetsRight:{widgets:t.widgetsRight,expanded:t.expandedRight},widgetsBottom:{widgets:t.widgetsBottom}};return(0,to.jsx)(nd.h,{formProps:{form:s,initialValues:d,onFinish:async e=>{l(!0);let{widgetsLeft:i,widgetsRight:r,widgetsBottom:a,...o}=e,s={...o,widgetsLeft:Object.fromEntries(i.widgets.map(e=>[e.id,e.widgetType])),expandedLeft:i.expanded,widgetsRight:Object.fromEntries(r.widgets.map(e=>[e.id,e.widgetType])),expandedRight:r.expanded,widgetsBottom:Object.fromEntries(a.widgets.map(e=>[e.id,e.widgetType]))};await n(t.id,s,()=>{l(!1)})}},children:(0,to.jsxs)(rZ.k,{className:"makeTabsGreatAgain",justify:"space-between",vertical:!0,children:[(0,to.jsxs)(aB.V,{padded:!0,padding:{x:"small",y:"none"},children:[(0,to.jsx)(x8,{}),(0,to.jsx)(jo,{}),(0,to.jsx)(x0,{})]}),(0,to.jsxs)(aO.o,{justify:"space-between",children:[(0,to.jsxs)("div",{children:[(0,to.jsx)(aM.h,{disabled:a,icon:{value:"refresh"},onClick:()=>{s.resetFields(),s.setFieldsValue(d)},title:i("refresh")}),(0,to.jsx)(aM.h,{disabled:a,icon:{value:"trash"},onClick:()=>{r(t.id,()=>{o(e=>e.filter(e=>e.id!==t.id))})},title:i("delete")})]}),(0,to.jsx)(ai.z,{htmlType:"submit",loading:a,type:"primary",children:i("save")})]})]})})},jd=e=>{let{id:t}=e,{perspectives:i}=xY(),n=i.find(e=>e.id===t);return void 0===n?(0,to.jsx)(to.Fragment,{}):(0,to.jsx)(js,{perspective:n})},jf=()=>{let{perspectives:e,activeTabId:t,setActiveTabId:i,closePerspective:n}=xY();return(0,to.jsx)(ih.Tabs,{activeKey:t,fullHeight:!0,items:e.map(e=>({key:e.id,label:e.name,children:(0,to.jsx)(jd,{id:e.id})})),onChange:e=>{i(e)},onClose:e=>{n(e)}})},jc=()=>{let{t:e}=(0,t7.useTranslation)(),[t,i]=(0,ts.useState)(""),[n,r]=(0,ts.useState)([]),{openPerspective:a,isLoading:l,setIsLoading:o}=xY(),{createPerspective:s}=xZ(),{data:d,isFetching:f}=(0,sQ.V9)(),c=(0,pU.useAppDispatch)(),u=e=>e.map(e=>({title:e.name,key:e.id,icon:(0,to.jsx)(ih.Icon,{value:e.icon.value})}));return(0,ts.useEffect)(()=>{(0,eY.isUndefined)(d)&&r([]),(0,eY.isUndefined)(d)||r(u(d.items))},[d]),(0,to.jsx)(ih.ContentLayout,{renderToolbar:(0,to.jsxs)(ih.Toolbar,{justify:"space-between",children:[(0,to.jsx)(ih.IconButton,{icon:{value:"refresh"},loading:l||f,onClick:async()=>{o(!0),c(xO.util.invalidateTags(gi.xc.PERSPECTIVES())),o(!1)},title:e("refresh")}),(0,to.jsx)(ih.IconTextButton,{disabled:l||f,icon:{value:"new"},loading:l||f,onClick:async()=>{s()},children:e("toolbar.new")})]}),children:(0,to.jsxs)(ih.Content,{loading:l||f,padded:!0,children:[(0,to.jsx)(ih.SearchInput,{onChange:e=>{i(e.target.value)},onClear:()=>{i(""),(0,eY.isUndefined)(d)||r(u(d.items))},onSearch:e=>{if(0===e.length){(0,eY.isUndefined)(d)||r(u(d.items));return}(0,eY.isUndefined)(d)||r(u(d.items.filter(t=>!(0,eY.isNil)(t.name)&&t.name.toLowerCase().includes(e.toLowerCase()))))},value:t,withoutAddon:!0}),(0,to.jsx)(ih.TreeElement,{hasRoot:!1,onSelected:e=>{a(e)},treeData:n})]})})},ju=()=>{let e={id:"widget-editor.perspective-editor.sidebar",minSize:170,children:[(0,to.jsx)(jc,{},"widget-editor.perspective-editor.sidebar")]},t={id:"widget-editor.perspective-editor.main",minSize:600,children:[(0,to.jsx)(jf,{},"widget-editor.perspective-editor.main.detailTab")]};return(0,to.jsx)(xQ,{leftItem:e,rightItem:t})},jm=()=>(0,to.jsx)(xJ,{children:(0,to.jsx)(ju,{})});var jp=((j={}).ToolsHidden="extras.hidden",j.NotesAndEvents="extras.notesEvents",j.Mails="extras.emails",j.RecycleBin="extras.recycle_bin",j.ApplicationLogger="extras.applicationlog",j.Redirects="extras.redirects",j.FileHidden="file.hidden",j.OpenDocument="file.open_document",j.OpenObject="file.open_object",j.OpenAsset="file.open_asset",j.Perspectives="file.perspectives",j.SettingsHidden="settings.hidden",j.TagConfiguration="settings.tagConfiguration",j.DocumentTypes="settings.documentTypes",j.WebsiteSettings="settings.website",j.PredefinedProperties="settings.predefinedProperties",j.UsersHidden="settings.users_hidden",j.Users="settings.users_users",j.Roles="settings.users_roles",j.MarketingHidden="marketing.hidden",j.Reports="marketing.reports",j),jg=i(34769);eR._.registerModule({onInit:()=>{eB.nC.get(eO.j.widgetManager).registerWidget({name:"perspective-editor",component:jm}),eB.nC.get(eO.j.mainNavRegistry).registerMainNavItem({path:"System/Perspective-Editor",label:"navigation.widget-editor.perspective-editor",order:400,dividerBottom:!0,className:"item-style-modifier",permission:jg.P.PerspectiveEditor,perspectivePermission:jp.Perspectives,widgetConfig:{name:"perspectiveEditor",id:"perspective-editor",component:"perspective-editor",config:{translationKey:"widget.widget-editor.perspective-editor",icon:{type:"name",value:"book-open-01"}}}})}});let jh=()=>{let e=(0,hd.TL)(),t=(0,an.U8)(),{t:i}=(0,t7.useTranslation)(),{success:n}=(0,h4.U)(),[r]=x$(),[a]=xU(),[l]=xG(),o=async(t,r,l)=>{let o=a({widgetId:t,widgetType:r});try{let t=await o;if(!(0,eY.isUndefined)(t.error))return void(0,is.ZP)(new is.MS(t.error));null==l||l(),e(xO.util.invalidateTags(gi.xc.WIDGETS())),n(i("widget-editor.delete.success"))}catch{(0,is.ZP)(new is.aE("Failed to delete widget"))}};return{createWidget:async(t,a,l)=>{let o=r({widgetType:a,body:{data:{name:t}}});try{let r=await o;void 0!==r.error&&(0,is.ZP)(new is.MS(r.error)),null==l||l(t),e(xO.util.invalidateTags(gi.xc.WIDGETS())),n(i("widget-editor.create.success"))}catch{(0,is.ZP)(new is.aE("Failed to create new widget."))}},getWidgetById:async(t,i)=>{try{let{data:n,isError:r,error:a}=await e(xO.endpoints.perspectiveWidgetGetConfigById.initiate({widgetId:t,widgetType:i}));if(!(0,eY.isUndefined)(n)&&r)return void(0,is.ZP)(new is.MS(a));return null==n?void 0:n.data}catch{(0,is.ZP)(new is.aE('Failed to load widget data of widget "'+t+'" with type "'+i+'".'))}},updateWidget:async(e,t,i,n)=>{let r=l({widgetId:e,widgetType:t,body:{data:{...i}}});try{let e=await r;if(void 0!==e.error)return void(0,is.ZP)(new is.MS(e.error));null==n||n(i)}catch{(0,is.ZP)(new is.aE("Failed to create new perspective."))}},removeWithConfirmation:(e,n,r)=>{t.confirm({title:i("element.delete.confirmation.title"),content:(0,to.jsxs)("span",{children:[i("element.delete.confirmation.text")," "]}),okText:i("element.delete.confirmation.ok"),onOk:async()=>{await o(e,n,()=>{null==r||r()})}})}}},jb=e=>{let{t}=(0,t7.useTranslation)(),i=pU.container.get(pU.serviceIds["DynamicTypes/WidgetEditor/WidgetTypeRegistry"]).getDynamicTypes();return(0,to.jsx)(tC.P,{...e,options:i.map(e=>({label:t(`widget-editor.create-form.widgetType.${e.name}`),value:e.id}))})};var jy=((w=jy||{}).ElementTree="element_tree",w);let jv=e=>{let{form:t,initialValues:i,inputRef:n}=e,{t:r}=(0,t7.useTranslation)();return(0,to.jsxs)(tc.l,{form:t,initialValues:{widgetType:jy.ElementTree,...i},layout:"vertical",children:[(0,to.jsx)(tc.l.Item,{label:r("widget-editor.create-form.name"),name:"name",rules:[{required:!0,message:r("widget-editor.create-form.name.required")}],children:(0,to.jsx)(ih.Input,{ref:n})}),(0,to.jsx)(tc.l.Item,{label:r("widget-editor.create-form.widgetType"),name:"widgetType",children:(0,to.jsx)(jb,{})})]})},jx=(0,ts.createContext)(void 0),jj=e=>{let{children:t}=e,[i,n]=(0,ts.useState)(void 0),[r,a]=(0,ts.useState)([]),{getWidgetById:l}=jh(),[o,s]=(0,ts.useState)(!1),{createWidget:d}=jh(),{t:f}=(0,t7.useTranslation)(),[c]=ih.Form.useForm(),[u,m]=(0,ts.useState)(!1),p=td().useRef(null);(0,ts.useEffect)(()=>{if(o){var e;null==(e=p.current)||e.focus()}},[o]);let g=async(e,t)=>{let i=await l(e,t);void 0!==i&&a(e=>e.findIndex(e=>e.id===i.id)>=0?(n(i.id),e):(n(i.id),[...e,i]))},h=e=>{let t=r.filter(t=>t.id!==e);a(t),i===e&&(t.length>0?n(t[0].id):n(void 0))},b=async()=>{s(!0)},y=async()=>{await c.validateFields().then(async()=>{m(!0);let{name:e,widgetType:t}=c.getFieldsValue();await d(e,t,()=>{s(!1),c.resetFields()}),m(!1)})},v=(0,ts.useMemo)(()=>({activeTabId:i,setActiveTabId:n,widgets:r,setWidgets:a,openWidget:g,closeWidget:h,createWidget:b,isLoading:u,setIsLoading:m}),[i,r,u]);return(0,to.jsxs)(jx.Provider,{value:v,children:[t,(0,to.jsx)(ih.Modal,{okButtonProps:{loading:u},okText:f("widget-editor.create-modal.create"),onCancel:()=>{s(!1)},onOk:async()=>{await y()},open:o,size:"M",children:(0,to.jsx)(jv,{form:c,inputRef:p})})]})},jw=()=>{let e=(0,ts.useContext)(jx);if(void 0===e)throw Error("useWidgetEditorContext must be used within a WidgetEditorProvider");return e};var jC=i(94009);let jk=()=>{let{t:e}=(0,t7.useTranslation)(),[t,i]=(0,ts.useState)(""),[n,r]=(0,ts.useState)([]),{openWidget:a,createWidget:l,setIsLoading:o,isLoading:s}=jw(),{data:d,isFetching:f}=(0,jC.usePerspectiveWidgetGetConfigCollectionQuery)(),c=(0,hd.TL)(),u=e=>e.map(e=>({title:e.name,key:e.id,icon:(0,to.jsx)(ih.Icon,{value:e.icon.value})}));return(0,ts.useEffect)(()=>{(0,eY.isUndefined)(d)&&r([]),(0,eY.isUndefined)(d)||r(u(d.items))},[d]),(0,to.jsx)(ih.ContentLayout,{renderToolbar:(0,to.jsxs)(ih.Toolbar,{justify:"space-between",children:[(0,to.jsx)(ih.IconButton,{icon:{value:"refresh"},loading:s||f,onClick:()=>{o(!0),c(xO.util.invalidateTags(gi.xc.WIDGETS())),o(!1)},title:e("refresh")}),(0,to.jsx)(ih.IconTextButton,{icon:{value:"new"},loading:s||f,onClick:l,children:e("toolbar.new")})]}),children:(0,to.jsxs)(ih.Content,{loading:s||f,padded:!0,children:[(0,to.jsx)(ih.SearchInput,{onChange:e=>{i(e.target.value)},onClear:()=>{i(""),(0,eY.isUndefined)(d)||r(u(d.items))},onSearch:e=>{if(0===e.length){(0,eY.isUndefined)(d)||r(u(d.items));return}(0,eY.isUndefined)(d)||r(u(d.items.filter(t=>!(0,eY.isNil)(t.name)&&t.name.toLowerCase().includes(e.toLowerCase()))))},value:t,withoutAddon:!0}),(0,to.jsx)(ih.TreeElement,{hasRoot:!1,onSelected:e=>{let t=d.items.find(t=>(0,eY.isString)(t.id)&&(0,eY.isString)(e)&&t.id===e);void 0!==t&&a(t.id,t.widgetType)},treeData:n})]})})},jT=()=>{let{t:e}=(0,t7.useTranslation)();return(0,to.jsxs)(nd.h.Panel,{collapsed:!1,collapsible:!0,title:e("widget-editor.widget-form.general.title"),children:[(0,to.jsx)(tc.l.Item,{label:e("widget-editor.widget-form.general.name"),name:"name",children:(0,to.jsx)(ae.I,{})}),(0,to.jsx)(tc.l.Item,{label:e("widget-editor.widget-form.general.icon"),name:"icon",children:(0,to.jsx)(x4,{})})]})},jS=e=>{let{form:t}=e,{t:i}=(0,t7.useTranslation)(),{form:n,widget:r}=da(),{isLoading:a,setWidgets:l,setIsLoading:o}=jw(),{removeWithConfirmation:s,updateWidget:d}=jh();return(0,to.jsx)(nd.h,{formProps:{form:n,layout:"vertical",initialValues:{...r},onFinish:async e=>{o(!0),console.table(e),await d(r.id,r.widgetType,e,()=>{o(!1)})}},children:(0,to.jsxs)(rZ.k,{className:"makeTabsGreatAgain",justify:"space-between",vertical:!0,children:[(0,to.jsxs)(aB.V,{padded:!0,padding:{x:"small",y:"none"},children:[(0,to.jsx)(jT,{}),(0,to.jsx)(t,{})]}),(0,to.jsxs)(aO.o,{justify:"space-between",children:[(0,to.jsxs)("div",{children:[(0,to.jsx)(aM.h,{disabled:a,icon:{value:"refresh"},onClick:()=>{n.resetFields()},title:i("refresh")}),(0,to.jsx)(aM.h,{disabled:a,icon:{value:"trash"},onClick:()=>{s(r.id,r.widgetType,()=>{l(e=>e.filter(e=>e.id!==r.id))})},title:i("delete")})]}),(0,to.jsx)(ai.z,{htmlType:"submit",loading:a,type:"primary",children:i("save")})]})]})})},jD=e=>{let{id:t}=e,{widgets:i}=jw(),n=i.find(e=>e.id===t);if(void 0===n)return(0,to.jsx)(to.Fragment,{});let{form:r}=pU.container.get("DynamicTypes/WidgetEditor/WidgetTypeRegistry").getDynamicType(n.widgetType);return(0,to.jsx)(dr,{widget:n,children:(0,to.jsx)(jS,{form:r})})},jE=()=>{let{widgets:e,activeTabId:t,setActiveTabId:i,closeWidget:n}=jw();return(0,to.jsx)(ay.m,{activeKey:t,fullHeight:!0,items:e.map(e=>({key:e.id,label:e.name,closable:!0,children:(0,to.jsx)(jD,{id:e.id})})),onChange:e=>{i(e)},onClose:e=>{n(e)}})},jM=()=>{let e={id:"widget-editor.widget-editor.sidebar",minSize:170,children:[(0,to.jsx)(jk,{},"widget-editor.widget-editor.sidebar")]},t={id:"widget-editor.widget-editor.main",minSize:600,children:[(0,to.jsx)(jE,{},"widget-editor.widget-editor.main.detailTab")]};return(0,to.jsx)(xQ,{leftItem:e,rightItem:t})},jI=()=>(0,to.jsx)(jj,{children:(0,to.jsx)(jM,{})});eR._.registerModule({onInit:()=>{eB.nC.get(pU.serviceIds.widgetManager).registerWidget({name:"widget-editor",component:jI}),eB.nC.get(pU.serviceIds.mainNavRegistry).registerMainNavItem({path:"System/Widget-Editor",label:"navigation.widget-editor.widget-editor",order:300,className:"item-style-modifier",permission:jg.P.WidgetEditor,perspectivePermission:jp.Perspectives,widgetConfig:{name:"widgetEditor",id:"widget-editor",component:"widget-editor",config:{translationKey:"widget.widget-editor.widget-editor",icon:{type:"name",value:"layout-grid-02"}}}}),eB.nC.get(pU.serviceIds["DynamicTypes/WidgetEditor/WidgetTypeRegistry"]).registerDynamicType(eB.nC.get(pU.serviceIds["DynamicTypes/WidgetEditor/ElementTree"]))}}),i(6635);var jL=i(67712),jP=i(60387),jN=i(92637);let jA=()=>{let e=(0,an.U8)(),{t}=(0,t7.useTranslation)(),[i]=(0,jP.F)(),[n]=(0,jP.Ik)(),{success:r}=(0,h4.U)(),a=async(e,n)=>{let a=i({emailAddressParameter:{email:e}});try{let e=await a;(0,eY.isUndefined)(e.error)||(0,jN.trackError)(new jN.ApiError(e.error)),null==n||n(),r(t("email-blocklist.add.email.success"))}catch(e){(0,jN.trackError)(new jN.GeneralError("Failed to add email to blocklist"))}};return{addNewEmail:async i=>{e.input({title:t("email-blocklist.add.label"),label:t("email-blocklist.add.email-address.label"),rule:{required:!0,type:"email",message:t("email-blocklist.add.validation")},onOk:async e=>{await a(e,()=>{null==i||i(e)})}})},removeEmail:async(e,t)=>{let i=n({email:e});try{let e=await i;void 0!==e.error&&(0,jN.trackError)(new jN.ApiError(e.error)),null==t||t()}catch(e){(0,jN.trackError)(new jN.GeneralError("Failed to remove email from blocklist"))}}}},jR=e=>{let{entry:t}=e,{t:i}=(0,t7.useTranslation)(),{removeEmail:n}=jA(),[r,a]=(0,ts.useState)(!1);return(0,to.jsx)(x7.Z,{children:(0,to.jsxs)(rZ.k,{align:"center",justify:"space-between",children:[(0,to.jsx)("span",{children:t.email}),(0,to.jsxs)(tN.Space,{children:[(0,to.jsx)("span",{children:(0,lv.formatDateTime)({timestamp:t.modificationDate,dateStyle:"short",timeStyle:"short"})}),(0,to.jsx)(ih.IconButton,{"aria-label":i("aria.email-blocklist.remove.email"),icon:r?{value:"spinner"}:{value:"trash"},loading:r,onClick:()=>{a(!0),n(t.email)},type:"link"})]})]})})},jO=()=>{var e;let{t}=(0,t7.useTranslation)(),i=(0,hd.TL)(),{addNewEmail:n}=jA(),[r,a]=(0,ts.useState)(1),[l,o]=(0,ts.useState)(20),[s,d]=(0,ts.useState)(!1),{data:f,isLoading:c}=(0,jP.dd)({page:r,pageSize:l}),u=(null==f?void 0:f.totalItems)??0;return(0,to.jsx)(aF.D,{renderToolbar:(0,to.jsxs)(aO.o,{justify:"space-between",theme:"secondary",children:[(0,to.jsx)(aM.h,{disabled:s||c,icon:{value:"refresh"},onClick:()=>{d(!0),i(jL.hi.util.invalidateTags(aw.invalidatingTags.EMAIL_BLOCKLIST())),d(!1)}}),(0,to.jsx)(ih.Pagination,{current:r,defaultPageSize:l,onChange:(e,t)=>{a(e),o(t)},showSizeChanger:!0,showTotal:e=>t("pagination.show-total",{total:e}),total:u})]}),renderTopBar:(0,to.jsx)(aO.o,{justify:"space-between",margin:{x:"mini",y:"none"},theme:"secondary",children:(0,to.jsxs)(rZ.k,{gap:"small",children:[(0,to.jsx)(vw.D,{icon:(0,to.jsx)(ih.Icon,{value:"users-x"}),children:t("widget.email-blocklist")}),(0,to.jsx)(dx.W,{disabled:s||c,icon:{value:"new"},onClick:async()=>{await n(()=>{d(!1)})},children:t("email-blocklist.add")})]})}),children:(0,to.jsx)(aB.V,{loading:s,none:(0,eY.isUndefined)(null==f?void 0:f.items)||0===f.items.length,padded:!0,children:(null==f?void 0:f.items)!==void 0&&(null==f||null==(e=f.items)?void 0:e.length)>0?f.items.map(e=>(0,to.jsx)(jR,{entry:e},e.email)):""})})},jB=()=>{let e=(0,an.U8)(),{t}=(0,t7.useTranslation)(),i=(0,hd.TL)(),[n]=(0,jP.ln)(),[r]=(0,jP.xV)(),[a]=(0,jL.ae)(),{success:l}=(0,h4.U)(),o=async(e,i)=>{let r=n({id:e});try{let e=await r;(0,eY.isUndefined)(e.error)||(0,is.ZP)(new is.MS(e.error)),null==i||i(),l(t("email-log.resend.email.success"))}catch(e){(0,is.ZP)(new is.aE("Failed to resend email"))}},s=async(e,n)=>{let r=a({id:e});try{let e=await r;(0,eY.isUndefined)(e.error)||(0,is.ZP)(new is.MS(e.error)),i(jL.hi.util.invalidateTags(gi.xc.EMAIL_LOG())),null==n||n(),l(t("email-log.delete.email.success"))}catch(e){(0,is.ZP)(new is.aE("Failed to delete email"))}};return{resendWithConfirmation:(i,n)=>{e.confirm({title:t("email-log.resend.confirmation.title"),content:(0,to.jsxs)("span",{children:[t("email-log.resend.confirmation.text")," "]}),okText:t("email-log.resend.confirmation.ok"),onOk:async()=>{await o(i,()=>{null==n||n()})}})},resend:o,forward:async(e,i,n)=>{let a=r({id:e,emailAddressParameter:{email:i}});try{let e=await a;(0,eY.isUndefined)(e.error)||(0,is.ZP)(new is.MS(e.error)),null==n||n(),l(t("email-log.forward.email.success"))}catch(e){(0,is.ZP)(new is.aE("Failed to forward email"))}},remove:s,removeWithConfirmation:(i,n)=>{e.confirm({title:t("element.delete.confirmation.title"),content:(0,to.jsxs)("span",{children:[t("element.delete.confirmation.text")," "]}),okText:t("element.delete.confirmation.ok"),onOk:async()=>{await s(i,()=>{null==n||n()})}})}}},jF=(0,ia.createStyles)(e=>{let{token:t,css:i}=e;return{iframe:i` border: none; - `}}),j_=e=>{let{email:t,height:i=650}=e,{t:n}=(0,t7.useTranslation)(),{styles:r}=jF(),{data:a,isLoading:o}=(0,jP.yn)({id:t.id});return(0,tl.jsx)(aB.V,{loading:o,none:(0,eY.isUndefined)(null==a?void 0:a.data)||0===a.data.length,children:(0,tl.jsx)("iframe",{className:r.iframe,height:i,sandbox:"",srcDoc:(null==a?void 0:a.data)??"",title:n("aria.email-log.html.preview")})})},jz=e=>{let{email:t,...i}=e,{t:n}=(0,t7.useTranslation)(),[r]=(0,y_.Z)(),[a,o]=(0,ts.useState)(!1),{forward:l}=jB(),s=(0,hd.TL)(),d=async e=>{o(!0),await l(t.id,e.to,()=>{s(jL.hi.util.invalidateTags(gi.xc.EMAIL_LOG()))}),i.setOpen(!1),r.resetFields(),o(!1)};return(0,tl.jsx)(av.u,{okButtonProps:{loading:a},okText:n("email-log.send.label"),onCancel:()=>{i.setOpen(!1),r.resetFields()},onOk:()=>{r.submit()},open:i.open,size:"L",title:(0,tl.jsx)(p3.r,{iconName:"flip-forward",children:n("email-log.forward.label")}),children:(0,tl.jsxs)(rZ.k,{gap:"small",vertical:!0,children:[(0,tl.jsxs)(tc.l,{form:r,layout:"vertical",onFinish:d,children:[(0,tl.jsx)(tc.l.Item,{label:n("email-log.subject"),children:(0,tl.jsx)(ae.I,{disabled:!0,value:t.subject})}),(0,tl.jsx)(tc.l.Item,{label:n("widget.email-log.from"),children:(0,tl.jsx)(ae.I,{disabled:!0,value:t.from})}),(0,tl.jsx)(tc.l.Item,{label:n("widget.email-log.to"),name:"to",rules:[{type:"email",required:!0,message:n("email-blocklist.add.validation")}],children:(0,tl.jsx)(ae.I,{})})]}),(0,tl.jsx)(j_,{email:t,height:300})]})})},jV=e=>{let{email:t}=e,{t:i}=(0,t7.useTranslation)(),{resendWithConfirmation:n,removeWithConfirmation:r}=jB(),[a,o]=(0,ts.useState)(!1),{data:l}=(0,jP.yU)({id:t.id}),s=(0,hd.TL)();return(0,tl.jsxs)(rZ.k,{className:"email-log-content__header",justify:"space-between",children:[(0,tl.jsxs)(rZ.k,{vertical:!0,children:[(0,tl.jsx)(ih.Text,{type:"secondary",children:`${i("widget.email-log.from")}: ${t.from}`}),(0,tl.jsxs)(rZ.k,{align:"center",gap:"mini",children:[(0,tl.jsx)(ih.Text,{type:"secondary",children:`${i("widget.email-log.to")}: ${t.from}`}),!(0,eY.isNil)(null==l?void 0:l.cc)&&(0,tl.jsxs)(tl.Fragment,{children:[(0,tl.jsx)(tN.Divider,{type:"vertical"}),(0,tl.jsx)(ih.Text,{type:"secondary",children:`${i("widget.email-log.cc")}: ${l.cc}`})]}),!(0,eY.isNil)(null==l?void 0:l.bcc)&&(0,tl.jsxs)(tl.Fragment,{children:[(0,tl.jsx)(tN.Divider,{type:"vertical"}),(0,tl.jsx)(ih.Text,{type:"secondary",children:`${i("widget.email-log.bcc")}: ${l.bcc}`})]})]})]}),(0,tl.jsxs)("div",{children:[(0,tl.jsx)(o5.u,{title:i("email-log.tooltip.resend"),children:(0,tl.jsx)(aM.h,{icon:{value:"vector"},onClick:()=>{n(t.id,()=>{s(jL.hi.util.invalidateTags(gi.xc.EMAIL_LOG()))})}})}),(0,tl.jsx)(o5.u,{title:i("email-log.tooltip.forward"),children:(0,tl.jsx)(aM.h,{icon:{value:"flip-forward"},onClick:()=>{o(!0)}})}),(0,tl.jsx)(o5.u,{title:i("email-log.tooltip.delete"),children:(0,tl.jsx)(aM.h,{icon:{value:"trash"},onClick:()=>{r(t.id,()=>{s(jL.hi.util.invalidateTags(gi.xc.EMAIL_LOG()))})}})})]}),(0,tl.jsx)(jz,{email:t,open:a,setOpen:o})]})},j$=e=>{let{email:t}=e,{data:i,isLoading:n}=(0,jP.yU)({id:t.id});return n?(0,tl.jsx)(tl.Fragment,{}):(0,tl.jsx)(ih.Alert,{description:(null==i?void 0:i.error)??"",showIcon:!0,type:"error"})},jW=e=>{let{email:t}=e,{t:i}=(0,t7.useTranslation)(),{data:n,isLoading:r}=(0,jP.EV)({id:t.id}),a=(0,aj.createColumnHelper)(),o=[a.accessor("name",{header:i("widget.email-log.grid.name")}),a.accessor("computedValue",{id:"computedValue",header:i("widget.email-log.grid.value"),meta:{editable:!1},cell:e=>{let t=e.row.original;return(0,tl.jsx)(ih.DefaultCell,{...(0,ih.addColumnMeta)(e,{type:(0,eY.isNil)(t.objectData)?"text":"element"})})}})],l=((null==n?void 0:n.data)??[]).map(e=>{let t;return(0,eY.isNil)(e.objectData)||(t={...e.objectData,fullPath:e.objectData.path}),{...e,computedValue:t??e.value}});return(0,tl.jsx)(aB.V,{loading:r,none:(0,eY.isUndefined)(null==n?void 0:n.data)||0===n.data.length,children:(0,tl.jsx)(az.r,{autoWidth:!0,columns:o,data:l})})};var jH=i(29649),jG=i.n(jH);let jU=(0,ia.createStyles)(e=>{let{token:t,css:i}=e;return{codeEditor:i` + `}}),j_=e=>{let{email:t,height:i=650}=e,{t:n}=(0,t7.useTranslation)(),{styles:r}=jF(),{data:a,isLoading:l}=(0,jP.yn)({id:t.id});return(0,to.jsx)(aB.V,{loading:l,none:(0,eY.isUndefined)(null==a?void 0:a.data)||0===a.data.length,children:(0,to.jsx)("iframe",{className:r.iframe,height:i,sandbox:"",srcDoc:(null==a?void 0:a.data)??"",title:n("aria.email-log.html.preview")})})},jz=e=>{let{email:t,...i}=e,{t:n}=(0,t7.useTranslation)(),[r]=(0,y_.Z)(),[a,l]=(0,ts.useState)(!1),{forward:o}=jB(),s=(0,hd.TL)(),d=async e=>{l(!0),await o(t.id,e.to,()=>{s(jL.hi.util.invalidateTags(gi.xc.EMAIL_LOG()))}),i.setOpen(!1),r.resetFields(),l(!1)};return(0,to.jsx)(av.u,{okButtonProps:{loading:a},okText:n("email-log.send.label"),onCancel:()=>{i.setOpen(!1),r.resetFields()},onOk:()=>{r.submit()},open:i.open,size:"L",title:(0,to.jsx)(p3.r,{iconName:"flip-forward",children:n("email-log.forward.label")}),children:(0,to.jsxs)(rZ.k,{gap:"small",vertical:!0,children:[(0,to.jsxs)(tc.l,{form:r,layout:"vertical",onFinish:d,children:[(0,to.jsx)(tc.l.Item,{label:n("email-log.subject"),children:(0,to.jsx)(ae.I,{disabled:!0,value:t.subject})}),(0,to.jsx)(tc.l.Item,{label:n("widget.email-log.from"),children:(0,to.jsx)(ae.I,{disabled:!0,value:t.from})}),(0,to.jsx)(tc.l.Item,{label:n("widget.email-log.to"),name:"to",rules:[{type:"email",required:!0,message:n("email-blocklist.add.validation")}],children:(0,to.jsx)(ae.I,{})})]}),(0,to.jsx)(j_,{email:t,height:300})]})})},jV=e=>{let{email:t}=e,{t:i}=(0,t7.useTranslation)(),{resendWithConfirmation:n,removeWithConfirmation:r}=jB(),[a,l]=(0,ts.useState)(!1),{data:o}=(0,jP.yU)({id:t.id}),s=(0,hd.TL)();return(0,to.jsxs)(rZ.k,{className:"email-log-content__header",justify:"space-between",children:[(0,to.jsxs)(rZ.k,{vertical:!0,children:[(0,to.jsx)(ih.Text,{type:"secondary",children:`${i("widget.email-log.from")}: ${t.from}`}),(0,to.jsxs)(rZ.k,{align:"center",gap:"mini",children:[(0,to.jsx)(ih.Text,{type:"secondary",children:`${i("widget.email-log.to")}: ${t.from}`}),!(0,eY.isNil)(null==o?void 0:o.cc)&&(0,to.jsxs)(to.Fragment,{children:[(0,to.jsx)(tN.Divider,{type:"vertical"}),(0,to.jsx)(ih.Text,{type:"secondary",children:`${i("widget.email-log.cc")}: ${o.cc}`})]}),!(0,eY.isNil)(null==o?void 0:o.bcc)&&(0,to.jsxs)(to.Fragment,{children:[(0,to.jsx)(tN.Divider,{type:"vertical"}),(0,to.jsx)(ih.Text,{type:"secondary",children:`${i("widget.email-log.bcc")}: ${o.bcc}`})]})]})]}),(0,to.jsxs)("div",{children:[(0,to.jsx)(l5.u,{title:i("email-log.tooltip.resend"),children:(0,to.jsx)(aM.h,{icon:{value:"vector"},onClick:()=>{n(t.id,()=>{s(jL.hi.util.invalidateTags(gi.xc.EMAIL_LOG()))})}})}),(0,to.jsx)(l5.u,{title:i("email-log.tooltip.forward"),children:(0,to.jsx)(aM.h,{icon:{value:"flip-forward"},onClick:()=>{l(!0)}})}),(0,to.jsx)(l5.u,{title:i("email-log.tooltip.delete"),children:(0,to.jsx)(aM.h,{icon:{value:"trash"},onClick:()=>{r(t.id,()=>{s(jL.hi.util.invalidateTags(gi.xc.EMAIL_LOG()))})}})})]}),(0,to.jsx)(jz,{email:t,open:a,setOpen:l})]})},j$=e=>{let{email:t}=e,{data:i,isLoading:n}=(0,jP.yU)({id:t.id});return n?(0,to.jsx)(to.Fragment,{}):(0,to.jsx)(ih.Alert,{description:(null==i?void 0:i.error)??"",showIcon:!0,type:"error"})},jW=e=>{let{email:t}=e,{t:i}=(0,t7.useTranslation)(),{data:n,isLoading:r}=(0,jP.EV)({id:t.id}),a=(0,aj.createColumnHelper)(),l=[a.accessor("name",{header:i("widget.email-log.grid.name")}),a.accessor("computedValue",{id:"computedValue",header:i("widget.email-log.grid.value"),meta:{editable:!1},cell:e=>{let t=e.row.original;return(0,to.jsx)(ih.DefaultCell,{...(0,ih.addColumnMeta)(e,{type:(0,eY.isNil)(t.objectData)?"text":"element"})})}})],o=((null==n?void 0:n.data)??[]).map(e=>{let t;return(0,eY.isNil)(e.objectData)||(t={...e.objectData,fullPath:e.objectData.path}),{...e,computedValue:t??e.value}});return(0,to.jsx)(aB.V,{loading:r,none:(0,eY.isUndefined)(null==n?void 0:n.data)||0===n.data.length,children:(0,to.jsx)(az.r,{autoWidth:!0,columns:l,data:o})})};var jH=i(29649),jG=i.n(jH);let jU=(0,ia.createStyles)(e=>{let{token:t,css:i}=e;return{codeEditor:i` max-height: 650px; - `}}),jq=e=>{let{email:t}=e,{data:i,isLoading:n}=(0,jP._b)({id:t.id}),{styles:r}=jU();return(0,tl.jsx)(aB.V,{loading:n,none:(0,eY.isUndefined)(null==i?void 0:i.data)||0===i.data.length,children:(0,tl.jsx)(jG(),{basicSetup:{lineNumbers:!0,syntaxHighlighting:!0,searchKeymap:!0},className:r.codeEditor,extensions:(0,g6.F)("html"),readOnly:!0,value:(null==i?void 0:i.data)??""})})},jZ=(0,ia.createStyles)(e=>{let{token:t,css:i}=e;return{errorIcon:i` + `}}),jq=e=>{let{email:t}=e,{data:i,isLoading:n}=(0,jP._b)({id:t.id}),{styles:r}=jU();return(0,to.jsx)(aB.V,{loading:n,none:(0,eY.isUndefined)(null==i?void 0:i.data)||0===i.data.length,children:(0,to.jsx)(jG(),{basicSetup:{lineNumbers:!0,syntaxHighlighting:!0,searchKeymap:!0},className:r.codeEditor,extensions:(0,g6.F)("html"),readOnly:!0,value:(null==i?void 0:i.data)??""})})},jZ=(0,ia.createStyles)(e=>{let{token:t,css:i}=e;return{errorIcon:i` color: ${t.colorError}; `,divider:i` border-color: ${t.colorTextSecondary}; margin-left: 2px; margin-right: 2px; - `}}),jK=e=>{let{emails:t}=e,{t:i}=(0,t7.useTranslation)(),{styles:n}=jZ(),r=t.map(e=>(e=>{let t=[{label:i("widget.email-log.tab.text"),key:"text",children:(0,tl.jsx)(jq,{email:e})},{label:i("widget.email-log.tab.html"),key:"html",children:(0,tl.jsx)(j_,{email:e})},{label:i("widget.email-log.tab.parameters"),key:"parameters",children:(0,tl.jsx)(jW,{email:e})}];return{key:e.id.toString(),label:(0,tl.jsxs)(rZ.k,{align:"center",gap:"extra-small",children:[(0,tl.jsx)(rR.J,{value:"send-03"}),(0,tl.jsx)("span",{children:e.subject})]}),subLabel:(0,tl.jsxs)(rZ.k,{align:"center",gap:"mini",children:[(0,tl.jsx)("span",{children:`${i("widget.email-log.from")}: ${e.from}`}),(0,tl.jsx)(yf.i,{className:n.divider,type:"vertical"}),(0,tl.jsx)("span",{children:`${i("widget.email-log.to")}: ${e.to}`})]}),theme:e.hasError?"error":"default",subLabelPosition:"inline",extra:(0,tl.jsxs)(rZ.k,{align:"center",gap:4,children:[e.hasError&&(0,tl.jsx)(rR.J,{className:n.errorIcon,value:"close-filled"}),(0,tl.jsx)("span",{children:(0,ov.formatDateTime)({timestamp:e.sentDate,dateStyle:"short",timeStyle:"short"})})]}),children:(0,tl.jsxs)(rZ.k,{className:"email-log-content",gap:"small",vertical:!0,children:[(0,tl.jsx)(jV,{email:e}),e.hasError&&(0,tl.jsx)(rZ.k,{vertical:!0,children:(0,tl.jsx)(j$,{email:e})}),(0,tl.jsx)(ay.m,{destroyInactiveTabPane:!0,items:t,noPadding:!0})]})}})(e));return(0,tl.jsx)(rU.UO,{items:r})},jJ=()=>{let{t:e}=(0,t7.useTranslation)(),t=(0,hd.TL)(),[i,n]=(0,ts.useState)(1),[r,a]=(0,ts.useState)(20),[o,l]=(0,ts.useState)(!1),{data:s,isLoading:d,isFetching:f}=(0,jP.Uc)({page:i,pageSize:r}),c=(null==s?void 0:s.totalItems)??0;return(0,ts.useEffect)(()=>{f||l(!1)},[f]),(0,tl.jsx)(aF.D,{renderToolbar:(0,tl.jsxs)(aO.o,{justify:"space-between",theme:"secondary",children:[(0,tl.jsx)(aM.h,{disabled:d||o,icon:{value:"refresh"},onClick:()=>{l(!0),t(jL.hi.util.invalidateTags(gi.xc.EMAIL_LOG()))}}),(0,tl.jsx)(aN.t,{current:i,defaultPageSize:r,onChange:(e,t)=>{n(e),a(t)},showSizeChanger:!0,showTotal:t=>e("pagination.show-total",{total:t}),total:c})]}),renderTopBar:(0,tl.jsx)(aO.o,{justify:"space-between",margin:{x:"mini",y:"none"},theme:"secondary",children:(0,tl.jsx)(rZ.k,{gap:"small",children:(0,tl.jsx)(vw.D,{children:e("widget.email-log")})})}),children:(0,tl.jsx)(aB.V,{loading:d||o&&f,none:(0,eY.isUndefined)(null==s?void 0:s.items)||0===s.items.length,padded:!0,children:!(0,eY.isUndefined)(null==s?void 0:s.items)&&(0,tl.jsx)(jK,{emails:s.items})})})};var jX=i(47192);let jQ=()=>{let{t:e}=(0,t7.useTranslation)(),{setIsOpen:t}=(()=>{let e=(0,ts.useContext)(jX.r);if((0,eY.isNil)(e))throw Error("useSendTestEmailContext must be used within a SendTestEmailProvider");return e})();return(0,tl.jsx)("button",{className:"main-nav__list-btn",onClick:()=>{t(!0)},children:e("navigation.test-email")})};eR._.registerModule({onInit:()=>{let e=eB.nC.get(eO.j.widgetManager);e.registerWidget({name:"email-blocklist",component:jO}),e.registerWidget({name:"email-log",component:jJ});let t=eB.nC.get(eO.j.mainNavRegistry);t.registerMainNavItem({path:"ExperienceEcommerce/Email",label:"navigation.email",order:300,permission:jg.P.Emails,perspectivePermission:jp.Mails}),t.registerMainNavItem({path:"ExperienceEcommerce/Email/Sent-Emails",label:"navigation.email-log",order:100,className:"item-style-modifier",permission:jg.P.Emails,perspectivePermission:jp.Mails,widgetConfig:{name:"emailLog",id:"email-log",component:"email-log",config:{translationKey:"widget.email-log",icon:{type:"name",value:"mail-02"}}}}),t.registerMainNavItem({path:"ExperienceEcommerce/Email/Email-Blocklist",label:"navigation.email-blocklist",order:200,className:"item-style-modifier",permission:jg.P.Emails,perspectivePermission:jp.Mails,widgetConfig:{name:"EmailBlocklist",id:"email-blocklist",component:"email-blocklist",config:{translationKey:"widget.email-blocklist",icon:{type:"name",value:"mail-02"}}}}),t.registerMainNavItem({path:"ExperienceEcommerce/Email/Send Test-Email",label:"navigation.test-email",order:300,className:"item-style-modifier",permission:jg.P.Emails,perspectivePermission:jp.Mails,button:()=>td().createElement(jQ)})}});let{SelectedRowsProvider:jY,useSelectedRowsContext:j0}=function(){let e=(0,ts.createContext)(void 0);return{SelectedRowsProvider:t=>{let{children:i,initialValue:n}=t,[r,a]=(0,ts.useState)(n),o=()=>{a(n)},l=(0,ts.useMemo)(()=>({selectedRows:r,setSelectedRows:a,resetSelectedRows:o}),[r,n]);return(0,tl.jsx)(e.Provider,{value:l,children:i})},useSelectedRowsContext:function(){let t=(0,ts.useContext)(e);if((0,eY.isUndefined)(t))throw Error("useSelectedRowsContext must be used within a SelectedRowsProvider");return t}}}();var j1=i(6436);let j2=e=>{let{items:t}=e,{t:i}=(0,t7.useTranslation)(),{selectedRows:n}=j0(),{removeItems:r,restoreItems:a}=(0,j1.A)(),o=()=>Object.keys(n).map(e=>t.find(t=>t.id===parseInt(e,10))).filter(e=>void 0!==e),l={items:[{key:"1",label:i("recycle-bin.actions.delete"),icon:(0,tl.jsx)(rR.J,{value:"trash"}),onClick:()=>{r(o())}},{key:"2",label:i("recycle-bin.actions.restore"),icon:(0,tl.jsx)(rR.J,{value:"restore"}),onClick:()=>{a(o())}}]};return(0,tl.jsx)(pJ.L,{menu:l,children:(0,tl.jsx)(pK.P,{children:i("listing.actions")},"dropdown-button")})},j3=()=>{let{t:e}=(0,t7.useTranslation)(),{selectedRows:t,resetSelectedRows:i}=j0(),n=Object.keys(t).length;return(0,tl.jsxs)(rZ.k,{align:"center",children:[0===n&&(0,tl.jsx)(tl.Fragment,{}),n>0&&(0,tl.jsx)(tf.X,{checked:n>0,onClick:e=>{e.stopPropagation(),n>0&&i()},children:e("listing.selection.total",{total:n})})]})},j6=(0,ia.createStyles)(e=>{let{token:t,css:i}=e;return{icons:i` + `}}),jK=e=>{let{emails:t}=e,{t:i}=(0,t7.useTranslation)(),{styles:n}=jZ(),r=t.map(e=>(e=>{let t=[{label:i("widget.email-log.tab.text"),key:"text",children:(0,to.jsx)(jq,{email:e})},{label:i("widget.email-log.tab.html"),key:"html",children:(0,to.jsx)(j_,{email:e})},{label:i("widget.email-log.tab.parameters"),key:"parameters",children:(0,to.jsx)(jW,{email:e})}];return{key:e.id.toString(),label:(0,to.jsxs)(rZ.k,{align:"center",gap:"extra-small",children:[(0,to.jsx)(rR.J,{value:"send-03"}),(0,to.jsx)("span",{children:e.subject})]}),subLabel:(0,to.jsxs)(rZ.k,{align:"center",gap:"mini",children:[(0,to.jsx)("span",{children:`${i("widget.email-log.from")}: ${e.from}`}),(0,to.jsx)(yf.i,{className:n.divider,type:"vertical"}),(0,to.jsx)("span",{children:`${i("widget.email-log.to")}: ${e.to}`})]}),theme:e.hasError?"error":"default",subLabelPosition:"inline",extra:(0,to.jsxs)(rZ.k,{align:"center",gap:4,children:[e.hasError&&(0,to.jsx)(rR.J,{className:n.errorIcon,value:"close-filled"}),(0,to.jsx)("span",{children:(0,lv.formatDateTime)({timestamp:e.sentDate,dateStyle:"short",timeStyle:"short"})})]}),children:(0,to.jsxs)(rZ.k,{className:"email-log-content",gap:"small",vertical:!0,children:[(0,to.jsx)(jV,{email:e}),e.hasError&&(0,to.jsx)(rZ.k,{vertical:!0,children:(0,to.jsx)(j$,{email:e})}),(0,to.jsx)(ay.m,{destroyInactiveTabPane:!0,items:t,noPadding:!0})]})}})(e));return(0,to.jsx)(rU.UO,{items:r})},jJ=()=>{let{t:e}=(0,t7.useTranslation)(),t=(0,hd.TL)(),[i,n]=(0,ts.useState)(1),[r,a]=(0,ts.useState)(20),[l,o]=(0,ts.useState)(!1),{data:s,isLoading:d,isFetching:f}=(0,jP.Uc)({page:i,pageSize:r}),c=(null==s?void 0:s.totalItems)??0;return(0,ts.useEffect)(()=>{f||o(!1)},[f]),(0,to.jsx)(aF.D,{renderToolbar:(0,to.jsxs)(aO.o,{justify:"space-between",theme:"secondary",children:[(0,to.jsx)(aM.h,{disabled:d||l,icon:{value:"refresh"},onClick:()=>{o(!0),t(jL.hi.util.invalidateTags(gi.xc.EMAIL_LOG()))}}),(0,to.jsx)(aN.t,{current:i,defaultPageSize:r,onChange:(e,t)=>{n(e),a(t)},showSizeChanger:!0,showTotal:t=>e("pagination.show-total",{total:t}),total:c})]}),renderTopBar:(0,to.jsx)(aO.o,{justify:"space-between",margin:{x:"mini",y:"none"},theme:"secondary",children:(0,to.jsx)(rZ.k,{gap:"small",children:(0,to.jsx)(vw.D,{children:e("widget.email-log")})})}),children:(0,to.jsx)(aB.V,{loading:d||l&&f,none:(0,eY.isUndefined)(null==s?void 0:s.items)||0===s.items.length,padded:!0,children:!(0,eY.isUndefined)(null==s?void 0:s.items)&&(0,to.jsx)(jK,{emails:s.items})})})};var jX=i(47192);let jQ=()=>{let{t:e}=(0,t7.useTranslation)(),{setIsOpen:t}=(()=>{let e=(0,ts.useContext)(jX.r);if((0,eY.isNil)(e))throw Error("useSendTestEmailContext must be used within a SendTestEmailProvider");return e})();return(0,to.jsx)("button",{className:"main-nav__list-btn",onClick:()=>{t(!0)},children:e("navigation.test-email")})};eR._.registerModule({onInit:()=>{let e=eB.nC.get(eO.j.widgetManager);e.registerWidget({name:"email-blocklist",component:jO}),e.registerWidget({name:"email-log",component:jJ});let t=eB.nC.get(eO.j.mainNavRegistry);t.registerMainNavItem({path:"ExperienceEcommerce/Email",label:"navigation.email",order:300,permission:jg.P.Emails,perspectivePermission:jp.Mails}),t.registerMainNavItem({path:"ExperienceEcommerce/Email/Sent-Emails",label:"navigation.email-log",order:100,className:"item-style-modifier",permission:jg.P.Emails,perspectivePermission:jp.Mails,widgetConfig:{name:"emailLog",id:"email-log",component:"email-log",config:{translationKey:"widget.email-log",icon:{type:"name",value:"mail-02"}}}}),t.registerMainNavItem({path:"ExperienceEcommerce/Email/Email-Blocklist",label:"navigation.email-blocklist",order:200,className:"item-style-modifier",permission:jg.P.Emails,perspectivePermission:jp.Mails,widgetConfig:{name:"EmailBlocklist",id:"email-blocklist",component:"email-blocklist",config:{translationKey:"widget.email-blocklist",icon:{type:"name",value:"mail-02"}}}}),t.registerMainNavItem({path:"ExperienceEcommerce/Email/Send Test-Email",label:"navigation.test-email",order:300,className:"item-style-modifier",permission:jg.P.Emails,perspectivePermission:jp.Mails,button:()=>td().createElement(jQ)})}});let{SelectedRowsProvider:jY,useSelectedRowsContext:j0}=function(){let e=(0,ts.createContext)(void 0);return{SelectedRowsProvider:t=>{let{children:i,initialValue:n}=t,[r,a]=(0,ts.useState)(n),l=()=>{a(n)},o=(0,ts.useMemo)(()=>({selectedRows:r,setSelectedRows:a,resetSelectedRows:l}),[r,n]);return(0,to.jsx)(e.Provider,{value:o,children:i})},useSelectedRowsContext:function(){let t=(0,ts.useContext)(e);if((0,eY.isUndefined)(t))throw Error("useSelectedRowsContext must be used within a SelectedRowsProvider");return t}}}();var j1=i(6436);let j2=e=>{let{items:t}=e,{t:i}=(0,t7.useTranslation)(),{selectedRows:n}=j0(),{removeItems:r,restoreItems:a}=(0,j1.A)(),l=()=>Object.keys(n).map(e=>t.find(t=>t.id===parseInt(e,10))).filter(e=>void 0!==e),o={items:[{key:"1",label:i("recycle-bin.actions.delete"),icon:(0,to.jsx)(rR.J,{value:"trash"}),onClick:()=>{r(l())}},{key:"2",label:i("recycle-bin.actions.restore"),icon:(0,to.jsx)(rR.J,{value:"restore"}),onClick:()=>{a(l())}}]};return(0,to.jsx)(pJ.L,{menu:o,children:(0,to.jsx)(pK.P,{children:i("listing.actions")},"dropdown-button")})},j3=()=>{let{t:e}=(0,t7.useTranslation)(),{selectedRows:t,resetSelectedRows:i}=j0(),n=Object.keys(t).length;return(0,to.jsxs)(rZ.k,{align:"center",children:[0===n&&(0,to.jsx)(to.Fragment,{}),n>0&&(0,to.jsx)(tf.X,{checked:n>0,onClick:e=>{e.stopPropagation(),n>0&&i()},children:e("listing.selection.total",{total:n})})]})},j6=(0,ia.createStyles)(e=>{let{token:t,css:i}=e;return{icons:i` .pimcore-icon { color: ${t.Button.defaultColor}; } - `}}),j4=e=>{let{items:t}=e,{t:i}=(0,t7.useTranslation)(),{styles:n}=j6(),[r,a]=(0,ts.useState)([]),[o,l]=(0,ts.useState)([]),{restoreItems:s,removeItems:d}=(0,j1.A)(),{selectedRows:f,setSelectedRows:c}=j0(),u=t.map(e=>({...e,date:(0,ov.formatDateTime)({timestamp:e.date,dateStyle:"short",timeStyle:"short"})})),m=(0,aj.createColumnHelper)(),p=[m.accessor("type",{header:i("recycle-bin.columns.type"),cell:e=>{let{row:t}=e,i=t.original.type;return(0,tl.jsx)(rZ.k,{align:"center",className:n.icons,justify:"center",children:(()=>{switch(i){case"document":return(0,tl.jsx)(rR.J,{value:"document"});case"asset":return(0,tl.jsx)(rR.J,{value:"asset"});case"object":return(0,tl.jsx)(rR.J,{value:"data-object"});default:return(0,tl.jsx)(tl.Fragment,{})}})()})},size:50}),m.accessor("path",{header:i("recycle-bin.columns.path"),meta:{editable:!1,clearable:!1,type:"element",config:{getElementInfo:e=>({fullPath:e.row.original.path})},autoWidth:!0}}),m.accessor("amount",{header:i("recycle-bin.columns.amount"),size:100}),m.accessor("deletedBy",{header:i("recycle-bin.columns.deleted-by"),size:100}),m.accessor("date",{header:i("recycle-bin.columns.date"),size:150}),m.accessor("actions",{header:i("recycle-bin.columns.actions"),cell:e=>{let{row:t}=e;return(0,tl.jsxs)(rZ.k,{align:"center",justify:"center",children:[(0,tl.jsx)(aM.h,{"data-testid":(0,dM.wE)(["button","restore"]),icon:{value:"restore"},loading:r.includes(t.original.id),onClick:()=>{a(e=>[...e,t.original.id]),s([t.original],()=>{a(e=>e.filter(e=>e!==t.original.id))})},type:"link"}),(0,tl.jsx)(aM.h,{"data-testid":(0,dM.wE)(["button","delete"]),icon:{value:"trash"},loading:o.includes(t.original.id),onClick:()=>{l(e=>[...e,t.original.id]),d([t.original],()=>{l(e=>e.filter(e=>e!==t.original.id))})},type:"link"})]})},size:100})];return(0,tl.jsx)(az.r,{autoWidth:!0,columns:p,data:u,enableMultipleRowSelection:!0,modifiedCells:[],onSelectedRowsChange:e=>{c(e)},resizable:!0,selectedRows:f,setRowId:e=>String(e.id)})};var j8=i(31936),j7=i(69543);let j5=()=>{let{t:e}=(0,t7.useTranslation)(),t=(0,pU.useAppDispatch)(),[i,n]=(0,ts.useState)(void 0),[r,a]=(0,ts.useState)(1),[o,l]=(0,ts.useState)(20),[s,d]=(0,ts.useState)(!1),{flush:f}=(0,j1.A)(),{selectedRows:c}=j0(),{data:u,isLoading:m,isFetching:p}=(0,j7.TK)({body:{filters:{page:r,pageSize:o,columnFilters:i}}}),g=(null==u?void 0:u.totalItems)??0;return(0,ts.useEffect)(()=>{p||d(!1)},[p]),(0,tl.jsx)(aF.D,{renderToolbar:(0,tl.jsxs)(aO.o,{theme:"secondary",children:[Object.keys(c).length>0?(0,tl.jsxs)(rZ.k,{children:[(0,tl.jsx)(j3,{}),(0,tl.jsx)(j2,{items:(null==u?void 0:u.items)??[]})]}):(0,tl.jsx)(ih.IconTextButton,{disabled:m||s||(null==u?void 0:u.items.length)===0,icon:{value:"trash"},onClick:()=>{d(!0),f(()=>{t(j8.hi.util.invalidateTags(gi.xc.RECYCLING_BIN())),d(!1)})},type:"link",children:e("recycle-bin.actions.cleanup")}),(0,tl.jsxs)(rZ.k,{align:"center",children:[(0,tl.jsx)(aM.h,{disabled:m||s,icon:{value:"refresh"},onClick:()=>{t(j8.hi.util.invalidateTags(gi.xc.RECYCLING_BIN()))}}),g>0&&(0,tl.jsxs)(tl.Fragment,{children:[(0,tl.jsx)(ih.Divider,{size:"small",type:"vertical"}),(0,tl.jsx)(aN.t,{current:r,defaultPageSize:o,onChange:(e,t)=>{a(e),l(t)},showSizeChanger:!0,showTotal:t=>e("pagination.show-total",{total:t}),total:g})]})]})]}),renderTopBar:(0,tl.jsxs)(aO.o,{justify:"space-between",margin:{x:"mini",y:"none"},theme:"secondary",children:[(0,tl.jsx)(rZ.k,{gap:"small",children:(0,tl.jsx)(vw.D,{children:e("widget.recycle-bin")})}),(0,tl.jsx)(a_.M,{loading:p||s,onSearch:e=>{let t={key:"path",type:"like",filterValue:""};""!==e&&(t.filterValue=e),n({...i,path:t})},placeholder:e("component.search.pleaceholder"),withPrefix:!1,withoutAddon:!1})]}),children:(0,tl.jsx)(aB.V,{loading:s||m,margin:{x:"extra-small",y:"none"},none:(0,eY.isUndefined)(null==u?void 0:u.items)||0===u.items.length,children:(0,tl.jsx)(aL.x,{margin:{x:"extra-small",y:"none"},children:(0,tl.jsx)(j4,{items:(null==u?void 0:u.items)??[]})})})})},j9=()=>(0,tl.jsx)(jY,{initialValue:{},children:(0,tl.jsx)(j5,{})});eR._.registerModule({onInit:()=>{eB.nC.get(eO.j.widgetManager).registerWidget({name:"recycle-bin",component:j9}),eB.nC.get(eO.j.mainNavRegistry).registerMainNavItem({path:"QuickAccess/Recycle Bin",label:"navigation.recycle-bin",permission:jg.P.RecycleBin,order:400,perspectivePermission:jp.RecycleBin,widgetConfig:{name:"recycleBin",id:"recycle-bin",component:"recycle-bin",config:{translationKey:"widget.recycle-bin",icon:{type:"name",value:"trash"}}}})}}),eR._.registerModule({onInit:()=>{let e=eB.nC.get(eO.j.mainNavRegistry);e.registerMainNavItem({path:"QuickAccess/Open Asset",label:"navigation.open-asset",order:100,permission:jg.P.Assets,perspectivePermission:jp.OpenAsset,button:()=>td().createElement(dE,{elementType:"asset"})}),e.registerMainNavItem({path:"QuickAccess/Open Data Object",label:"navigation.open-data-object",order:200,permission:jg.P.Objects,perspectivePermission:jp.OpenObject,button:()=>td().createElement(dE,{elementType:"data-object"})}),e.registerMainNavItem({path:"QuickAccess/Open Document",label:"navigation.open-document",dividerBottom:!0,order:300,permission:jg.P.Documents,perspectivePermission:jp.OpenDocument,button:()=>td().createElement(dE,{elementType:"document"})})}});let we=(0,ia.createStyles)(e=>{let{token:t,css:i}=e;return{table:i` + `}}),j4=e=>{let{items:t}=e,{t:i}=(0,t7.useTranslation)(),{styles:n}=j6(),[r,a]=(0,ts.useState)([]),[l,o]=(0,ts.useState)([]),{restoreItems:s,removeItems:d}=(0,j1.A)(),{selectedRows:f,setSelectedRows:c}=j0(),u=t.map(e=>({...e,date:(0,lv.formatDateTime)({timestamp:e.date,dateStyle:"short",timeStyle:"short"})})),m=(0,aj.createColumnHelper)(),p=[m.accessor("type",{header:i("recycle-bin.columns.type"),cell:e=>{let{row:t}=e,i=t.original.type;return(0,to.jsx)(rZ.k,{align:"center",className:n.icons,justify:"center",children:(()=>{switch(i){case"document":return(0,to.jsx)(rR.J,{value:"document"});case"asset":return(0,to.jsx)(rR.J,{value:"asset"});case"object":return(0,to.jsx)(rR.J,{value:"data-object"});default:return(0,to.jsx)(to.Fragment,{})}})()})},size:50}),m.accessor("path",{header:i("recycle-bin.columns.path"),meta:{editable:!1,clearable:!1,type:"element",config:{getElementInfo:e=>({fullPath:e.row.original.path})},autoWidth:!0}}),m.accessor("amount",{header:i("recycle-bin.columns.amount"),size:100}),m.accessor("deletedBy",{header:i("recycle-bin.columns.deleted-by"),size:100}),m.accessor("date",{header:i("recycle-bin.columns.date"),size:150}),m.accessor("actions",{header:i("recycle-bin.columns.actions"),cell:e=>{let{row:t}=e;return(0,to.jsxs)(rZ.k,{align:"center",justify:"center",children:[(0,to.jsx)(aM.h,{"data-testid":(0,dM.wE)(["button","restore"]),icon:{value:"restore"},loading:r.includes(t.original.id),onClick:()=>{a(e=>[...e,t.original.id]),s([t.original],()=>{a(e=>e.filter(e=>e!==t.original.id))})},type:"link"}),(0,to.jsx)(aM.h,{"data-testid":(0,dM.wE)(["button","delete"]),icon:{value:"trash"},loading:l.includes(t.original.id),onClick:()=>{o(e=>[...e,t.original.id]),d([t.original],()=>{o(e=>e.filter(e=>e!==t.original.id))})},type:"link"})]})},size:100})];return(0,to.jsx)(az.r,{autoWidth:!0,columns:p,data:u,enableMultipleRowSelection:!0,modifiedCells:[],onSelectedRowsChange:e=>{c(e)},resizable:!0,selectedRows:f,setRowId:e=>String(e.id)})};var j8=i(31936),j7=i(69543);let j5=()=>{let{t:e}=(0,t7.useTranslation)(),t=(0,pU.useAppDispatch)(),[i,n]=(0,ts.useState)(void 0),[r,a]=(0,ts.useState)(1),[l,o]=(0,ts.useState)(20),[s,d]=(0,ts.useState)(!1),{flush:f}=(0,j1.A)(),{selectedRows:c}=j0(),{data:u,isLoading:m,isFetching:p}=(0,j7.TK)({body:{filters:{page:r,pageSize:l,columnFilters:i}}}),g=(null==u?void 0:u.totalItems)??0;return(0,ts.useEffect)(()=>{p||d(!1)},[p]),(0,to.jsx)(aF.D,{renderToolbar:(0,to.jsxs)(aO.o,{theme:"secondary",children:[Object.keys(c).length>0?(0,to.jsxs)(rZ.k,{children:[(0,to.jsx)(j3,{}),(0,to.jsx)(j2,{items:(null==u?void 0:u.items)??[]})]}):(0,to.jsx)(ih.IconTextButton,{disabled:m||s||(null==u?void 0:u.items.length)===0,icon:{value:"trash"},onClick:()=>{d(!0),f(()=>{t(j8.hi.util.invalidateTags(gi.xc.RECYCLING_BIN())),d(!1)})},type:"link",children:e("recycle-bin.actions.cleanup")}),(0,to.jsxs)(rZ.k,{align:"center",children:[(0,to.jsx)(aM.h,{disabled:m||s,icon:{value:"refresh"},onClick:()=>{t(j8.hi.util.invalidateTags(gi.xc.RECYCLING_BIN()))}}),g>0&&(0,to.jsxs)(to.Fragment,{children:[(0,to.jsx)(ih.Divider,{size:"small",type:"vertical"}),(0,to.jsx)(aN.t,{current:r,defaultPageSize:l,onChange:(e,t)=>{a(e),o(t)},showSizeChanger:!0,showTotal:t=>e("pagination.show-total",{total:t}),total:g})]})]})]}),renderTopBar:(0,to.jsxs)(aO.o,{justify:"space-between",margin:{x:"mini",y:"none"},theme:"secondary",children:[(0,to.jsx)(rZ.k,{gap:"small",children:(0,to.jsx)(vw.D,{children:e("widget.recycle-bin")})}),(0,to.jsx)(a_.M,{loading:p||s,onSearch:e=>{let t={key:"path",type:"like",filterValue:""};""!==e&&(t.filterValue=e),n({...i,path:t})},placeholder:e("component.search.pleaceholder"),withPrefix:!1,withoutAddon:!1})]}),children:(0,to.jsx)(aB.V,{loading:s||m,margin:{x:"extra-small",y:"none"},none:(0,eY.isUndefined)(null==u?void 0:u.items)||0===u.items.length,children:(0,to.jsx)(aL.x,{margin:{x:"extra-small",y:"none"},children:(0,to.jsx)(j4,{items:(null==u?void 0:u.items)??[]})})})})},j9=()=>(0,to.jsx)(jY,{initialValue:{},children:(0,to.jsx)(j5,{})});eR._.registerModule({onInit:()=>{eB.nC.get(eO.j.widgetManager).registerWidget({name:"recycle-bin",component:j9}),eB.nC.get(eO.j.mainNavRegistry).registerMainNavItem({path:"QuickAccess/Recycle Bin",label:"navigation.recycle-bin",permission:jg.P.RecycleBin,order:400,perspectivePermission:jp.RecycleBin,widgetConfig:{name:"recycleBin",id:"recycle-bin",component:"recycle-bin",config:{translationKey:"widget.recycle-bin",icon:{type:"name",value:"trash"}}}})}}),eR._.registerModule({onInit:()=>{let e=eB.nC.get(eO.j.mainNavRegistry);e.registerMainNavItem({path:"QuickAccess/Open Asset",label:"navigation.open-asset",order:100,permission:jg.P.Assets,perspectivePermission:jp.OpenAsset,button:()=>td().createElement(dE,{elementType:"asset"})}),e.registerMainNavItem({path:"QuickAccess/Open Data Object",label:"navigation.open-data-object",order:200,permission:jg.P.Objects,perspectivePermission:jp.OpenObject,button:()=>td().createElement(dE,{elementType:"data-object"})}),e.registerMainNavItem({path:"QuickAccess/Open Document",label:"navigation.open-document",dividerBottom:!0,order:300,permission:jg.P.Documents,perspectivePermission:jp.OpenDocument,button:()=>td().createElement(dE,{elementType:"document"})})}});let we=(0,ia.createStyles)(e=>{let{token:t,css:i}=e;return{table:i` .ant-table { .ant-table-tbody { @@ -812,7 +812,7 @@ text-overflow: ellipsis; max-width: 100%; cursor: pointer; - }`}});var wt=i(69334);let wi=e=>{let{noteDetail:t,setNoteDetail:i}=e,{t:n}=(0,t7.useTranslation)(),r=function(e,t){let i=!(arguments.length>2)||void 0===arguments[2]||arguments[2];return(0,tl.jsxs)(aL.x,{margin:"small",children:[(0,tl.jsx)(nc.x,{children:t}),(0,tl.jsx)(nf.K,{disabled:!0,value:e,...i?{autoSize:{maxRows:1,minRows:1}}:{size:"small"}})]})};return(0,tl.jsx)(av.u,{footer:(0,tl.jsx)(tl.Fragment,{}),onCancel:()=>{i(void 0)},onClose:()=>{i(void 0)},open:!(0,eY.isUndefined)(t),size:"L",title:n("notes-and-events-modal.detail-information"),children:(0,tl.jsxs)(tl.Fragment,{children:[r(t.type,n("notes-and-events.columns.type")),r(t.title,n("notes-and-events.columns.title")),r(t.description,n("notes-and-events.columns.description"),!1),t.data.length>0&&(0,tl.jsx)(aL.x,{margin:"small",children:(0,tl.jsx)(wt.b,{note:t})}),(0,eY.isString)(t.userName)&&r(t.userName,n("notes-and-events.columns.user")),r((0,dH.o0)({timestamp:t.date,dateStyle:"short",timeStyle:"short"}),n("notes-and-events.columns.date"))]})})},wn=e=>{let{notesAndEvents:t,notesAndEventsFetching:i}=e,{t:n}=(0,t7.useTranslation)(),{styles:r}=we(),{openElement:a,mapToElementType:o}=(0,ig.f)(),[l,s]=(0,ts.useState)([]),[d,f]=(0,ts.useState)(void 0);(0,ts.useEffect)(()=>{void 0!==t&&Array.isArray(t)&&s(c(t))},[t]);let c=e=>e.map(e=>({...e,fields:e.data.length,rowId:(0,nu.V)(),dateFormatted:(0,dH.o0)({timestamp:e.date,dateStyle:"short",timeStyle:"short"})})),u=(0,aj.createColumnHelper)(),m=[u.accessor("type",{header:n("notes-and-events.columns.type"),size:100}),u.accessor(e=>({path:e.cPath,elementType:e.cType,id:e.cId}),{id:"element",header:n("notes-and-events.columns.element"),meta:{editable:!1,type:"element",config:{getElementInfo:e=>{let t=e.row.original;return{elementType:o(String(t.cType),!0),id:t.cId,fullPath:!(0,eY.isEmpty)(t.cPath)&&decodeURIComponent(String(t.cPath))}}}},size:300}),u.accessor("title",{header:n("notes-and-events.columns.title"),size:200}),u.accessor("description",{header:n("notes-and-events.columns.description"),meta:{autoWidth:!0}}),u.accessor("fields",{header:n("notes-and-events.columns.details"),size:70}),u.accessor("userName",{header:n("notes-and-events.columns.user"),size:120}),u.accessor("dateFormatted",{header:n("notes-and-events.columns.date"),size:120}),u.accessor("actions",{header:n("notes-and-events.columns.actions"),size:70,cell:e=>{let t=e.row.getValue("element"),i=o(t.elementType,!0),n=t.id;return(0,eY.isUndefined)(t.path)||""===t.path?(0,tl.jsx)(rZ.k,{align:"center",className:"w-full",children:(0,tl.jsx)(aM.h,{icon:{value:"show-details"},onClick:async()=>{f(e.row.original)},type:"link"})}):(0,tl.jsxs)(rZ.k,{align:"center",className:"w-full",children:[(0,tl.jsx)(aM.h,{icon:{value:"open-folder"},onClick:async()=>{(0,eY.isUndefined)(i)||await a({type:i,id:n})},type:"link"}),(0,tl.jsx)(aM.h,{icon:{value:"show-details"},onClick:async()=>{f(e.row.original)},type:"link"})]})}})];return(0,tl.jsxs)("div",{className:r.table,children:[void 0!==d&&(0,tl.jsx)(wi,{noteDetail:d,setNoteDetail:f}),(0,tl.jsx)(az.r,{autoWidth:!0,columns:m,data:l,isLoading:i,modifiedCells:[],resizable:!0,setRowId:e=>e.rowId})]})};var wr=i(48538);let wa=()=>{let{t:e}=(0,t7.useTranslation)(),{totalItems:t,notesAndEvents:i,isLoading:n,isFetching:r,page:a,setPage:o,setPageSize:l,setFilter:s}=(()=>{let[e,t]=(0,ts.useState)(""),[i,n]=(0,ts.useState)(1),[r,a]=(0,ts.useState)(20),o=(0,ts.useMemo)(()=>({body:{page:i,pageSize:r,filter:e}}),[i,r,e]),{data:l,isLoading:s,isFetching:d}=(0,wr.hc)(o);return{totalItems:(null==l?void 0:l.totalItems)??0,notesAndEvents:(null==l?void 0:l.items)??[],isLoading:s,isFetching:d,page:i,setPage:n,pageSize:r,setPageSize:a,setFilter:t}})();return(0,tl.jsx)(aF.D,{renderToolbar:0!==i.length?(0,tl.jsx)(aO.o,{justify:"flex-end",theme:"secondary",children:(0,tl.jsx)(aN.t,{current:a,onChange:(e,t)=>{o(e),l(t)},showSizeChanger:!0,showTotal:t=>e("pagination.show-total",{total:t}),total:t})}):void 0,renderTopBar:(0,tl.jsxs)(aO.o,{justify:"space-between",margin:{x:"mini",y:"none"},theme:"secondary",children:[(0,tl.jsx)(vw.D,{children:e("notes-and-events.label")}),(0,tl.jsx)(a_.M,{loading:r,onSearch:e=>{s(e)},placeholder:"Search",withPrefix:!1,withoutAddon:!1})]}),children:(0,tl.jsx)(aB.V,{loading:n,none:0===i.length,children:(0,tl.jsx)(aL.x,{margin:{x:"extra-small",y:"none"},children:(0,tl.jsx)(wn,{notesAndEvents:i,notesAndEventsFetching:r})})})})};eR._.registerModule({onInit:()=>{eB.nC.get(eO.j.mainNavRegistry).registerMainNavItem({path:"DataManagement/Notes & Events",label:"navigation.notes-and-events",dividerBottom:!0,order:400,className:"item-style-modifier",permission:jg.P.NotesAndEvents,perspectivePermission:jp.NotesAndEvents,widgetConfig:{name:"Notes & Events",id:"notes-and-events",component:"notes-and-events",config:{translationKey:"widget.notes-and-events",icon:{type:"name",value:"notes-events"}}}}),eB.nC.get(eO.j.widgetManager).registerWidget({name:"notes-and-events",component:wa})}});var wo=i(80174);let wl=()=>{let[e,{isLoading:t}]=(0,wo.Hg)(),[i,{isLoading:n}]=(0,wo.b$)(),[r,{isLoading:a}]=(0,wo.ft)();return{createNewProperty:async()=>{try{let t=await e();if("data"in t)return{success:!0,data:t.data}}catch(e){(0,is.ZP)(new is.aE("Was not able to create Property"))}return{success:!1}},createLoading:t,deletePropertyById:async e=>{try{let t=await i({id:e});return{success:"data"in t}}catch(e){return(0,is.ZP)(new is.aE("Was not able to delete Property")),{success:!1}}},deleteLoading:n,updatePropertyById:async(e,t)=>{try{let i=await r({id:e,updatePredefinedProperty:{name:t.name??"",description:t.description??"",key:t.key??"",type:t.type??"",data:t.data??"",config:t.config??"",ctype:t.ctype??"",inheritable:t.inheritable}});return{success:"data"in i}}catch(e){return(0,is.ZP)(new is.aE("Was not able to update Property")),{success:!1}}},updateLoading:a}};var ws=((C={}).Text="text",C.Document="document",C.Asset="asset",C.Object="object",C.Boolean="bool",C.Select="select",C),wd=i(46979);let wf=e=>{let{info:t,setPredefinedPropertyRows:i}=e,n=t.row.original.id,{deletePropertyById:r,deleteLoading:a}=wl(),o=async()=>{let{success:e}=await r(n);e&&i(e=>e.filter(e=>e.id!==n))};return(0,tl.jsxs)("div",{className:"properties-table--actions-column",children:[(0,tl.jsx)(ih.IconButton,{icon:{value:"translate"},onClick:()=>{console.log("Open Translate View")},type:"link"}),(0,tl.jsx)(ih.IconButton,{icon:{value:"trash"},loading:a,onClick:o,type:"link"})]})},wc=e=>{let{predefinedPropertyRows:t,setPredefinedPropertyRows:i}=e,{t:n}=(0,t7.useTranslation)(),{updatePropertyById:r}=wl(),[a,o]=(0,ts.useState)([]),l=(0,aj.createColumnHelper)(),s=[l.accessor("name",{header:n("properties.columns.name"),meta:{editable:!0},size:200}),l.accessor("description",{header:n("properties.columns.description"),meta:{editable:!0},size:200}),l.accessor("key",{header:n("properties.columns.key"),meta:{editable:!0},size:200}),l.accessor("type",{header:n("properties.columns.type"),meta:{type:"select",editable:!0,config:{options:Object.values(ws)}},size:100}),l.accessor("data",{header:n("properties.columns.data"),meta:{editable:!0},size:150}),l.accessor("config",{header:n("properties.columns.configuration"),meta:{editable:!0},size:150}),l.accessor("ctype",{header:n("properties.columns.content-type"),meta:{type:"select",editable:!0,config:{options:wd.allLegacyElementTypes}},size:110}),l.accessor("inheritable",{header:n("properties.columns.inheritable"),size:95,meta:{type:"checkbox",editable:!0,config:{align:"center"}}}),l.accessor("actions",{header:n("properties.columns.actions"),size:80,cell:e=>(0,tl.jsx)(wf,{info:e,setPredefinedPropertyRows:i})})],d=async e=>{let{columnId:t,value:n,rowData:a}=e,l=a.rowId,s={...a,[t]:n};i(e=>e.map(e=>e.rowId===l?s:e)),o([{columnId:t,rowIndex:l}]);let{success:d}=await r(s.id,s);d?o([]):i(e=>e.map(e=>e.rowId===l?a:e))};return(0,tl.jsx)("div",{children:(0,tl.jsx)(az.r,{autoWidth:!0,columns:s,data:t,enableSorting:!0,modifiedCells:a,onUpdateCellData:d,resizable:!0,setRowId:e=>e.rowId})})},wu=()=>{let{createNewProperty:e,createLoading:t}=wl(),[i,n]=(0,ts.useState)(""),r=(0,ts.useMemo)(()=>({filter:i}),[i]),{data:a,isLoading:o,isFetching:l,error:s,refetch:d}=(0,wo.jo)(r),f=()=>{d().catch(()=>{(0,is.ZP)(new is.aE("Error while reloading"))})};(0,ts.useEffect)(()=>{f()},[]);let[c,u]=(0,ts.useState)([]),m=null==a?void 0:a.items,p=[...c].sort((e,t)=>t.creationDate-e.creationDate);(0,ts.useEffect)(()=>{(0,eY.isUndefined)(m)||u(m.map(e=>({...e,rowId:(0,ov.uuid)()})))},[m]),(0,ts.useEffect)(()=>{(0,eY.isUndefined)(s)||(0,is.ZP)(new is.MS(s))},[s]);let g=async()=>{let{success:t,data:i}=await e();t&&void 0!==i&&u(e=>[{...i,rowId:(0,ov.uuid)()},...e])};return(0,tl.jsx)(aF.D,{renderToolbar:(0,tl.jsx)(aO.o,{theme:"secondary",children:(0,tl.jsx)(aM.h,{disabled:l,icon:{value:"refresh"},onClick:f})}),renderTopBar:(0,tl.jsxs)(aO.o,{justify:"space-between",margin:{x:"mini",y:"none"},theme:"secondary",children:[(0,tl.jsxs)(rZ.k,{gap:"small",children:[(0,tl.jsx)(vw.D,{children:(0,ii.t)("widget.predefined-properties")}),(0,tl.jsx)(ih.IconTextButton,{disabled:o||t,icon:{value:"new"},loading:t,onClick:g,children:(0,ii.t)("predefined-properties.new")})]}),(0,tl.jsx)(ih.SearchInput,{loading:l,onSearch:e=>{n(e)},placeholder:"Search",withPrefix:!1,withoutAddon:!1})]}),children:(0,tl.jsx)(aB.V,{loading:o||l,margin:{x:"extra-small",y:"none"},none:(0,eY.isUndefined)(m)||0===m.length,children:(0,tl.jsx)(ih.Box,{margin:{x:"extra-small",y:"none"},children:(0,tl.jsx)(wc,{predefinedPropertyRows:p,setPredefinedPropertyRows:u})})})})};eR._.registerModule({onInit:()=>{eB.nC.get(eO.j.mainNavRegistry).registerMainNavItem({path:"DataManagement/Predefined Properties",label:"navigation.predefined-properties",order:100,className:"item-style-modifier",permission:jg.P.PredefinedProperties,perspectivePermission:jp.PredefinedProperties,widgetConfig:{name:"Predefined Properties",id:"predefined-properties",component:"predefined-properties",config:{translationKey:"widget.predefined-properties",icon:{type:"name",value:"properties"}}}}),eB.nC.get(eO.j.widgetManager).registerWidget({name:"predefined-properties",component:wu})}});var wm=i(16110),wp=i(83122),wg=i(77318);let wh=()=>{let e=(0,pU.useAppDispatch)(),{tags:t,tagsFetching:i,tagsLoading:n,rootTagFolder:r,getTag:a,tagDeletion:o,setTagFilter:l,handleTagUpdate:s,handleTagCreation:d}=(()=>{let[e,t]=(0,ts.useState)([]),i={id:0,text:"All Tags",hasChildren:!1,children:[],path:"/All Tags",parentId:0,iconName:"folder"},n=(0,h4.U)(),[r,a]=(0,ts.useState)(""),{data:o,isFetching:l,isLoading:s}=(0,wg.bm)({page:1,pageSize:9999,filter:r}),[d]=(0,wg.Xv)(),[f]=(0,wg.O4)(),[c]=(0,wg.XM)();(0,ts.useEffect)(()=>{t((e=>{let t=[],i=e=>{for(let n of e)t.push(n),(0,eY.isNil)(n.children)||i(n.children)};return i(e),t})((null==o?void 0:o.items)??[]))},[o]);let u=t=>[i,...e].find(e=>e.id.toString()===t)??void 0,m=async(e,t)=>{let i=await d({id:e,updateTagParameters:t});"data"in i&&n.success({content:(0,ii.t)("tag-configuration.successful-update"),type:"success",duration:3}),(0,eY.isEmpty)((0,eY.get)(i,"error.data.error"))||(0,is.ZP)(new is.aE(`Error updating tag: ${(0,eY.get)(i,"error.data.error")}`)),null!=i.error&&(0,is.ZP)(new is.aE("Error updating tag"))},p=async(e,t,i)=>{let n=u(e.toString());if(null==n)(0,is.ZP)(new is.aE(`Tag with id ${e} not found`));else{let r={parentId:t,name:i??n.text};await m(e,r)}},g=async e=>{let t=await c({createTagParameters:e});"data"in t&&n.success({content:(0,ii.t)("tag-configuration.successful-add"),type:"success",duration:3}),(0,eY.isEmpty)((0,eY.get)(t,"error.data.error"))||(0,is.ZP)(new is.aE(`Error creating tag: ${(0,eY.get)(t,"error.data.error")}`)),null!=t.error&&(0,is.ZP)(new is.aE("Error creating tag"))},h=async(e,t)=>{await g({parentId:t,name:e})},b=async e=>{let t=await f({id:e});"data"in t&&n.success({content:(0,ii.t)("tag-configuration.successful-deletion"),type:"success",duration:3}),(0,eY.isEmpty)((0,eY.get)(t,"error.data.error"))||(0,is.ZP)(new is.aE(`Error deleting tag: ${(0,eY.get)(t,"error.data.error")}`)),null!=t.error&&(0,is.ZP)(new is.aE("Error deleting tag"))};return{tags:(null==o?void 0:o.items)??[],setTagFilter:a,tagsFetching:l,tagsLoading:s,handleTagUpdate:p,handleTagCreation:h,tagDeletion:b,getTag:u,rootTagFolder:i}})(),{confirm:f,input:c}=(0,an.U8)(),[u,m]=(0,ts.useState)(""),[p,g]=td().useState([0]);(0,ts.useEffect)(()=>{i&&void 0===u?h():b()},[i]);let h=()=>{m(r.id.toString())},b=()=>{m(void 0)},y=(0,wp.h)({tags:t,loadingNodes:void 0!==u?new Set([u]):new Set,actions:[{key:"add-tag",icon:"new"},{key:"rename-tag",icon:"edit"},{key:"delete-tag",icon:"trash"}],rootActions:[{key:"add-tag",icon:"new"}]}),v=(e,t)=>{let i=(e=>{let t=a(e);return null==t?void(0,is.ZP)(new is.aE(`Tag with Id ${e} not found`)):t})(e);if(null!=i)switch(t){case"add-tag":c({title:(0,ii.t)("tag-configuration.new-tag"),label:(0,ii.t)("tag-configuration.name"),rule:{required:!0,message:"Please enter a tag name"},okText:(0,ii.t)("tag-configuration.create"),onOk:async e=>{m(i.id.toString()),await d(e,i.id)}});break;case"rename-tag":c({title:(0,ii.t)("tag-configuration.rename"),label:(0,ii.t)("tag-configuration.name"),rule:{required:!0,message:"Please enter a tag name"},okText:(0,ii.t)("tag-configuration.save"),initialValue:i.text,onOk:async e=>{m(i.id.toString()),await s(i.id,i.parentId,e)}});break;case"delete-tag":f({title:i.hasChildren?(0,ii.t)("tag-configuration.warn-delete-parent-tag-modal-title"):(0,ii.t)("tag-configuration.warn-delete-tag-modal-title"),content:i.hasChildren?(0,ii.t)("tag-configuration.warn-delete-parent-tag-modal-text"):(0,ii.t)("tag-configuration.warn-delete-tag-modal-text"),okText:i.hasChildren?(0,ii.t)("tag-configuration.delete-parent-tag"):(0,ii.t)("tag-configuration.delete-tag"),cancelText:(0,ii.t)("tag-configuration.cancel"),onOk:async()=>{m(i.id.toString()),await o(i.id)}})}};return(0,tl.jsx)(aF.D,{renderToolbar:(0,tl.jsx)(aO.o,{theme:"secondary",children:(0,tl.jsx)(aM.h,{icon:{value:"refresh"},onClick:()=>{h(),e(wr.hi.util.invalidateTags(gi.xc.AVAILABLE_TAGS()))}})}),renderTopBar:(0,tl.jsxs)(aO.o,{justify:"space-between",margin:{x:"mini",y:"none"},theme:"secondary",children:[(0,tl.jsxs)(rZ.k,{gap:"small",children:[(0,tl.jsx)(vw.D,{children:(0,ii.t)("widget.tag-configuration")}),(0,tl.jsx)(dx.W,{disabled:void 0!==u,icon:{value:"new"},onClick:()=>{v(r.id.toString(),"add-tag")},children:(0,ii.t)("tag-configuration.new")})]}),(0,tl.jsx)(a_.M,{loading:i,onSearch:e=>{l(e)},placeholder:"Search",withPrefix:!1,withoutAddon:!1})]}),children:(0,tl.jsx)(aB.V,{loading:n,margin:{x:"extra-small",y:"none"},none:0===t.length,children:(0,tl.jsx)(wm._,{checkStrictly:!0,defaultExpandedKeys:p,draggable:!0,onActionsClick:v,onDragAndDrop:async e=>{m(e.dragNode.key.toString()),await s(Number(e.dragNode.key),Number(e.node.key))},onExpand:e=>{g(e)},treeData:y,withCustomSwitcherIcon:!0})})})};eR._.registerModule({onInit:()=>{eB.nC.get(eO.j.mainNavRegistry).registerMainNavItem({path:"DataManagement/Tag Configuration",label:"navigation.tag-configuration",className:"item-style-modifier",order:100,permission:jg.P.TagsConfiguration,perspectivePermission:jp.TagConfiguration,widgetConfig:{name:"Tag Configuration",id:"tag-configuration",component:"tag-configuration",config:{translationKey:"widget.tag-configuration",icon:{type:"name",value:"tag-configuration"}}}}),eB.nC.get(eO.j.widgetManager).registerWidget({name:"tag-configuration",component:wh})}});let wb=aw.api.enhanceEndpoints({addTagTypes:["Bundle Seo"]}).injectEndpoints({endpoints:e=>({bundleSeoRedirectAdd:e.mutation({query:e=>({url:"/pimcore-studio/api/bundle/seo/redirects/add",method:"POST",body:e.bundleSeoRedirectAdd}),invalidatesTags:["Bundle Seo"]}),bundleSeoRedirectCleanup:e.mutation({query:()=>({url:"/pimcore-studio/api/bundle/seo/redirects/cleanup",method:"DELETE"}),invalidatesTags:["Bundle Seo"]}),bundleSeoRedirectsGetCollection:e.query({query:e=>({url:"/pimcore-studio/api/bundle/seo/redirects",method:"POST",body:e.body}),providesTags:["Bundle Seo"]}),bundleSeoRedirectUpdateById:e.mutation({query:e=>({url:`/pimcore-studio/api/bundle/seo/redirects/${e.id}`,method:"PUT",body:e.bundleSeoRedirectUpdate}),invalidatesTags:["Bundle Seo"]}),bundleSeoRedirectDelete:e.mutation({query:e=>({url:`/pimcore-studio/api/bundle/seo/redirects/${e.id}`,method:"DELETE"}),invalidatesTags:["Bundle Seo"]}),bundleSeoRedirectsExport:e.query({query:()=>({url:"/pimcore-studio/api/bundle/seo/redirects/export"}),providesTags:["Bundle Seo"]}),bundleSeoRedirectsImport:e.mutation({query:e=>({url:"/pimcore-studio/api/bundle/seo/redirects/import",method:"POST",body:e.body}),invalidatesTags:["Bundle Seo"]}),bundleSeoRedirectListPriorities:e.query({query:()=>({url:"/pimcore-studio/api/bundle/seo/redirects/priorities"}),providesTags:["Bundle Seo"]}),bundleSeoRedirectListStatuses:e.query({query:()=>({url:"/pimcore-studio/api/bundle/seo/redirects/statuses"}),providesTags:["Bundle Seo"]}),bundleSeoRedirectListTypes:e.query({query:()=>({url:"/pimcore-studio/api/bundle/seo/redirects/types"}),providesTags:["Bundle Seo"]})}),overrideExisting:!1}),{useBundleSeoRedirectAddMutation:wy,useBundleSeoRedirectCleanupMutation:wv,useBundleSeoRedirectsGetCollectionQuery:wx,useBundleSeoRedirectUpdateByIdMutation:wj,useBundleSeoRedirectDeleteMutation:ww,useBundleSeoRedirectsExportQuery:wC,useBundleSeoRedirectsImportMutation:wk,useBundleSeoRedirectListPrioritiesQuery:wT,useBundleSeoRedirectListStatusesQuery:wS,useBundleSeoRedirectListTypesQuery:wD}=wb,wE=wb.enhanceEndpoints({addTagTypes:[gi.fV.REDIRECTS],endpoints:{bundleSeoRedirectsGetCollection:{providesTags:(e,t,i)=>gi.Kx.REDIRECTS()},bundleSeoRedirectDelete:{invalidatesTags:()=>[]},bundleSeoRedirectAdd:{invalidatesTags:()=>[]},bundleSeoRedirectUpdateById:{invalidatesTags:()=>[]},bundleSeoRedirectsExport:{query:()=>({url:"/pimcore-studio/api/bundle/seo/redirects/export",responseHandler:async e=>await e.blob()})},bundleSeoRedirectsImport:{query:e=>{let t=new FormData;return t.append("file",e.body.file),{url:"/pimcore-studio/api/bundle/seo/redirects/import",method:"POST",body:t}},invalidatesTags:()=>[gi.fV.REDIRECTS]}}}),{useBundleSeoRedirectAddMutation:wM,useBundleSeoRedirectCleanupMutation:wI,useBundleSeoRedirectsGetCollectionQuery:wL,useBundleSeoRedirectUpdateByIdMutation:wP,useBundleSeoRedirectDeleteMutation:wN,useBundleSeoRedirectsExportQuery:wA,useBundleSeoRedirectsImportMutation:wR,useBundleSeoRedirectListPrioritiesQuery:wO,useBundleSeoRedirectListStatusesQuery:wB,useBundleSeoRedirectListTypesQuery:wF}=wE,w_=()=>{let[e,{isLoading:t}]=wM(),[i,{isLoading:n}]=wN(),[r,{isLoading:a}]=wP(),[o,{isLoading:l}]=wI();return{createNewRedirect:async t=>{try{let i={type:(null==t?void 0:t.type)??"entire_uri",source:(null==t?void 0:t.source)??null,target:(null==t?void 0:t.target)??null},n=await e({bundleSeoRedirectAdd:i});if(!(0,eY.isUndefined)(n.error))return(0,is.ZP)(new is.MS(n.error)),{success:!1};if("data"in n)return{success:!0,data:n.data}}catch{(0,is.ZP)(new is.aE("Was not able to create Redirect"))}return{success:!1}},createLoading:t,deleteRedirectById:async e=>{try{let t=await i({id:e});return{success:"data"in t}}catch{return(0,is.ZP)(new is.aE("Was not able to delete Redirect")),{success:!1}}},deleteLoading:n,updateRedirectById:async(e,t)=>{try{let i=await r({id:e,bundleSeoRedirectUpdate:{type:t.type??"",sourceSite:t.sourceSite,source:t.source,targetSite:t.targetSite,target:t.target,statusCode:t.statusCode??301,priority:t.priority??1,regex:t.regex??!1,active:t.active??!0,passThroughParameters:t.passThroughParameters??!1,expiry:t.expiry}});return{success:"data"in i}}catch{return(0,is.ZP)(new is.aE("Was not able to update Redirect")),{success:!1}}},updateLoading:a,cleanupRedirects:async()=>{try{return await o(),{success:!0}}catch{return(0,is.ZP)(new is.aE("Was not able to cleanup redirects")),{success:!1}}},cleanupLoading:l}},wz=e=>{let{info:t,setRedirectRows:i}=e,n=t.row.original,{deleteRedirectById:r,deleteLoading:a}=w_(),o=async()=>{if(null!==n.id){let{success:e}=await r(n.id);e&&i(e=>e.filter(e=>e.rowId!==n.rowId))}};return(0,tl.jsx)(ih.Flex,{align:"center",className:"redirects-table--actions-column",justify:"center",children:(0,tl.jsx)(ih.IconButton,{icon:{value:"trash"},loading:a,onClick:o,type:"link"})})};var wV=i(4444);let w$=e=>{let{onSortingChange:t,sorting:i,redirectRows:n,setRedirectRows:r}=e,{t:a}=(0,t7.useTranslation)(),{updateRedirectById:o}=w_(),{data:l}=wF(),{data:s}=wB(),{data:d}=wO(),{getAllSites:f}=(0,wV.k)(),[c,u]=(0,ts.useState)([]),m=f().map(e=>({value:e.id,label:a(e.domain)})),p=(0,ts.useMemo)(()=>{var e;return(null==l||null==(e=l.types)?void 0:e.map(e=>({label:a(e),value:e})))??[]},[l]),g=(0,ts.useMemo)(()=>{var e;return(null==s||null==(e=s.statuses)?void 0:e.map(e=>({label:`${e.code} - ${e.label}`,value:e.code})))??[]},[s]),h=(0,ts.useMemo)(()=>{var e;return(null==d||null==(e=d.priorities)?void 0:e.map(e=>({label:e.toString(),value:e})))??[]},[d]),b=(0,aj.createColumnHelper)(),y=[b.accessor("type",{header:a("redirects.type"),meta:{type:"select",editable:!0,config:{options:p}},size:120}),b.accessor("sourceSite",{header:a("redirects.source-site"),meta:{type:"select",editable:!0,config:{options:m}},size:100}),b.accessor("source",{header:a("redirects.source"),meta:{editable:!0},size:200}),b.accessor("targetSite",{header:a("redirects.target-site"),meta:{type:"select",editable:!0,config:{options:m}},size:100}),b.accessor("target",{header:a("redirects.target"),meta:{editable:!0,type:"element",config:{allowedTypes:["asset","document"],showPublishedState:!1,expectsStringValue:!0,allowTextInput:!0}},size:200}),b.accessor("statusCode",{header:a("redirects.status"),meta:{type:"select",editable:!0,config:{options:g}},size:100}),b.accessor("priority",{header:a("redirects.priority"),meta:{type:"select",editable:!0,config:{options:h}},size:80}),b.accessor("regex",{header:a("redirects.regex"),size:80,meta:{type:"checkbox",editable:!0,config:{align:"center"}}}),b.accessor("passThroughParameters",{header:a("redirects.pass-through"),size:110,meta:{type:"checkbox",editable:!0,config:{align:"center"}}}),b.accessor("active",{header:a("redirects.active"),size:80,meta:{type:"checkbox",editable:!0,config:{align:"center"}}}),b.accessor("expiry",{header:a("redirects.expiry"),size:80,meta:{type:"date",editable:!0}}),b.accessor("actions",{header:a("redirects.actions"),size:80,enableSorting:!1,cell:e=>(0,tl.jsx)(wz,{info:e,setRedirectRows:r})})],v=async e=>{let{columnId:t,value:i,rowData:n}=e,a=n.rowId,l={...n,[t]:i};if(r(e=>e.map(e=>e.rowId===a?l:e)),u([{columnId:t,rowIndex:a}]),null!==l.id){let{success:e}=await o(l.id,l);e?u([]):r(e=>e.map(e=>e.rowId===a?n:e))}};return(0,tl.jsx)(az.r,{autoWidth:!0,columns:y,data:n,manualSorting:!0,modifiedCells:c,onSortingChange:t,onUpdateCellData:v,resizable:!0,setRowId:e=>e.rowId,sorting:i})},wW=(0,ia.createStyles)(e=>{let{token:t,css:i}=e;return{csvTargetContainer:i` + }`}});var wt=i(69334);let wi=e=>{let{noteDetail:t,setNoteDetail:i}=e,{t:n}=(0,t7.useTranslation)(),r=function(e,t){let i=!(arguments.length>2)||void 0===arguments[2]||arguments[2];return(0,to.jsxs)(aL.x,{margin:"small",children:[(0,to.jsx)(nc.x,{children:t}),(0,to.jsx)(nf.K,{disabled:!0,value:e,...i?{autoSize:{maxRows:1,minRows:1}}:{size:"small"}})]})};return(0,to.jsx)(av.u,{footer:(0,to.jsx)(to.Fragment,{}),onCancel:()=>{i(void 0)},onClose:()=>{i(void 0)},open:!(0,eY.isUndefined)(t),size:"L",title:n("notes-and-events-modal.detail-information"),children:(0,to.jsxs)(to.Fragment,{children:[r(t.type,n("notes-and-events.columns.type")),r(t.title,n("notes-and-events.columns.title")),r(t.description,n("notes-and-events.columns.description"),!1),t.data.length>0&&(0,to.jsx)(aL.x,{margin:"small",children:(0,to.jsx)(wt.b,{note:t})}),(0,eY.isString)(t.userName)&&r(t.userName,n("notes-and-events.columns.user")),r((0,dH.o0)({timestamp:t.date,dateStyle:"short",timeStyle:"short"}),n("notes-and-events.columns.date"))]})})},wn=e=>{let{notesAndEvents:t,notesAndEventsFetching:i}=e,{t:n}=(0,t7.useTranslation)(),{styles:r}=we(),{openElement:a,mapToElementType:l}=(0,ig.f)(),[o,s]=(0,ts.useState)([]),[d,f]=(0,ts.useState)(void 0);(0,ts.useEffect)(()=>{void 0!==t&&Array.isArray(t)&&s(c(t))},[t]);let c=e=>e.map(e=>({...e,fields:e.data.length,rowId:(0,nu.V)(),dateFormatted:(0,dH.o0)({timestamp:e.date,dateStyle:"short",timeStyle:"short"})})),u=(0,aj.createColumnHelper)(),m=[u.accessor("type",{header:n("notes-and-events.columns.type"),size:100}),u.accessor(e=>({path:e.cPath,elementType:e.cType,id:e.cId}),{id:"element",header:n("notes-and-events.columns.element"),meta:{editable:!1,type:"element",config:{getElementInfo:e=>{let t=e.row.original;return{elementType:l(String(t.cType),!0),id:t.cId,fullPath:!(0,eY.isEmpty)(t.cPath)&&decodeURIComponent(String(t.cPath))}}}},size:300}),u.accessor("title",{header:n("notes-and-events.columns.title"),size:200}),u.accessor("description",{header:n("notes-and-events.columns.description"),meta:{autoWidth:!0}}),u.accessor("fields",{header:n("notes-and-events.columns.details"),size:70}),u.accessor("userName",{header:n("notes-and-events.columns.user"),size:120}),u.accessor("dateFormatted",{header:n("notes-and-events.columns.date"),size:120}),u.accessor("actions",{header:n("notes-and-events.columns.actions"),size:70,cell:e=>{let t=e.row.getValue("element"),i=l(t.elementType,!0),n=t.id;return(0,eY.isUndefined)(t.path)||""===t.path?(0,to.jsx)(rZ.k,{align:"center",className:"w-full",children:(0,to.jsx)(aM.h,{icon:{value:"show-details"},onClick:async()=>{f(e.row.original)},type:"link"})}):(0,to.jsxs)(rZ.k,{align:"center",className:"w-full",children:[(0,to.jsx)(aM.h,{icon:{value:"open-folder"},onClick:async()=>{(0,eY.isUndefined)(i)||await a({type:i,id:n})},type:"link"}),(0,to.jsx)(aM.h,{icon:{value:"show-details"},onClick:async()=>{f(e.row.original)},type:"link"})]})}})];return(0,to.jsxs)("div",{className:r.table,children:[void 0!==d&&(0,to.jsx)(wi,{noteDetail:d,setNoteDetail:f}),(0,to.jsx)(az.r,{autoWidth:!0,columns:m,data:o,isLoading:i,modifiedCells:[],resizable:!0,setRowId:e=>e.rowId})]})};var wr=i(48538);let wa=()=>{let{t:e}=(0,t7.useTranslation)(),{totalItems:t,notesAndEvents:i,isLoading:n,isFetching:r,page:a,setPage:l,setPageSize:o,setFilter:s}=(()=>{let[e,t]=(0,ts.useState)(""),[i,n]=(0,ts.useState)(1),[r,a]=(0,ts.useState)(20),l=(0,ts.useMemo)(()=>({body:{page:i,pageSize:r,filter:e}}),[i,r,e]),{data:o,isLoading:s,isFetching:d}=(0,wr.hc)(l);return{totalItems:(null==o?void 0:o.totalItems)??0,notesAndEvents:(null==o?void 0:o.items)??[],isLoading:s,isFetching:d,page:i,setPage:n,pageSize:r,setPageSize:a,setFilter:t}})();return(0,to.jsx)(aF.D,{renderToolbar:0!==i.length?(0,to.jsx)(aO.o,{justify:"flex-end",theme:"secondary",children:(0,to.jsx)(aN.t,{current:a,onChange:(e,t)=>{l(e),o(t)},showSizeChanger:!0,showTotal:t=>e("pagination.show-total",{total:t}),total:t})}):void 0,renderTopBar:(0,to.jsxs)(aO.o,{justify:"space-between",margin:{x:"mini",y:"none"},theme:"secondary",children:[(0,to.jsx)(vw.D,{children:e("notes-and-events.label")}),(0,to.jsx)(a_.M,{loading:r,onSearch:e=>{s(e)},placeholder:"Search",withPrefix:!1,withoutAddon:!1})]}),children:(0,to.jsx)(aB.V,{loading:n,none:0===i.length,children:(0,to.jsx)(aL.x,{margin:{x:"extra-small",y:"none"},children:(0,to.jsx)(wn,{notesAndEvents:i,notesAndEventsFetching:r})})})})};eR._.registerModule({onInit:()=>{eB.nC.get(eO.j.mainNavRegistry).registerMainNavItem({path:"DataManagement/Notes & Events",label:"navigation.notes-and-events",dividerBottom:!0,order:400,className:"item-style-modifier",permission:jg.P.NotesAndEvents,perspectivePermission:jp.NotesAndEvents,widgetConfig:{name:"Notes & Events",id:"notes-and-events",component:"notes-and-events",config:{translationKey:"widget.notes-and-events",icon:{type:"name",value:"notes-events"}}}}),eB.nC.get(eO.j.widgetManager).registerWidget({name:"notes-and-events",component:wa})}});var wl=i(80174);let wo=()=>{let[e,{isLoading:t}]=(0,wl.Hg)(),[i,{isLoading:n}]=(0,wl.b$)(),[r,{isLoading:a}]=(0,wl.ft)();return{createNewProperty:async()=>{try{let t=await e();if("data"in t)return{success:!0,data:t.data}}catch(e){(0,is.ZP)(new is.aE("Was not able to create Property"))}return{success:!1}},createLoading:t,deletePropertyById:async e=>{try{let t=await i({id:e});return{success:"data"in t}}catch(e){return(0,is.ZP)(new is.aE("Was not able to delete Property")),{success:!1}}},deleteLoading:n,updatePropertyById:async(e,t)=>{try{let i=await r({id:e,updatePredefinedProperty:{name:t.name??"",description:t.description??"",key:t.key??"",type:t.type??"",data:t.data??"",config:t.config??"",ctype:t.ctype??"",inheritable:t.inheritable}});return{success:"data"in i}}catch(e){return(0,is.ZP)(new is.aE("Was not able to update Property")),{success:!1}}},updateLoading:a}};var ws=((C={}).Text="text",C.Document="document",C.Asset="asset",C.Object="object",C.Boolean="bool",C.Select="select",C),wd=i(46979);let wf=e=>{let{info:t,setPredefinedPropertyRows:i}=e,n=t.row.original.id,{deletePropertyById:r,deleteLoading:a}=wo(),l=async()=>{let{success:e}=await r(n);e&&i(e=>e.filter(e=>e.id!==n))};return(0,to.jsxs)("div",{className:"properties-table--actions-column",children:[(0,to.jsx)(ih.IconButton,{icon:{value:"translate"},onClick:()=>{console.log("Open Translate View")},type:"link"}),(0,to.jsx)(ih.IconButton,{icon:{value:"trash"},loading:a,onClick:l,type:"link"})]})},wc=e=>{let{predefinedPropertyRows:t,setPredefinedPropertyRows:i}=e,{t:n}=(0,t7.useTranslation)(),{updatePropertyById:r}=wo(),[a,l]=(0,ts.useState)([]),o=(0,aj.createColumnHelper)(),s=[o.accessor("name",{header:n("properties.columns.name"),meta:{editable:!0},size:200}),o.accessor("description",{header:n("properties.columns.description"),meta:{editable:!0},size:200}),o.accessor("key",{header:n("properties.columns.key"),meta:{editable:!0},size:200}),o.accessor("type",{header:n("properties.columns.type"),meta:{type:"select",editable:!0,config:{options:Object.values(ws)}},size:100}),o.accessor("data",{header:n("properties.columns.data"),meta:{editable:!0},size:150}),o.accessor("config",{header:n("properties.columns.configuration"),meta:{editable:!0},size:150}),o.accessor("ctype",{header:n("properties.columns.content-type"),meta:{type:"select",editable:!0,config:{options:wd.allLegacyElementTypes}},size:110}),o.accessor("inheritable",{header:n("properties.columns.inheritable"),size:95,meta:{type:"checkbox",editable:!0,config:{align:"center"}}}),o.accessor("actions",{header:n("properties.columns.actions"),size:80,cell:e=>(0,to.jsx)(wf,{info:e,setPredefinedPropertyRows:i})})],d=async e=>{let{columnId:t,value:n,rowData:a}=e,o=a.rowId,s={...a,[t]:n};i(e=>e.map(e=>e.rowId===o?s:e)),l([{columnId:t,rowIndex:o}]);let{success:d}=await r(s.id,s);d?l([]):i(e=>e.map(e=>e.rowId===o?a:e))};return(0,to.jsx)("div",{children:(0,to.jsx)(az.r,{autoWidth:!0,columns:s,data:t,enableSorting:!0,modifiedCells:a,onUpdateCellData:d,resizable:!0,setRowId:e=>e.rowId})})},wu=()=>{let{createNewProperty:e,createLoading:t}=wo(),[i,n]=(0,ts.useState)(""),r=(0,ts.useMemo)(()=>({filter:i}),[i]),{data:a,isLoading:l,isFetching:o,error:s,refetch:d}=(0,wl.jo)(r),f=()=>{d().catch(()=>{(0,is.ZP)(new is.aE("Error while reloading"))})};(0,ts.useEffect)(()=>{f()},[]);let[c,u]=(0,ts.useState)([]),m=null==a?void 0:a.items,p=[...c].sort((e,t)=>t.creationDate-e.creationDate);(0,ts.useEffect)(()=>{(0,eY.isUndefined)(m)||u(m.map(e=>({...e,rowId:(0,lv.uuid)()})))},[m]),(0,ts.useEffect)(()=>{(0,eY.isUndefined)(s)||(0,is.ZP)(new is.MS(s))},[s]);let g=async()=>{let{success:t,data:i}=await e();t&&void 0!==i&&u(e=>[{...i,rowId:(0,lv.uuid)()},...e])};return(0,to.jsx)(aF.D,{renderToolbar:(0,to.jsx)(aO.o,{theme:"secondary",children:(0,to.jsx)(aM.h,{disabled:o,icon:{value:"refresh"},onClick:f})}),renderTopBar:(0,to.jsxs)(aO.o,{justify:"space-between",margin:{x:"mini",y:"none"},theme:"secondary",children:[(0,to.jsxs)(rZ.k,{gap:"small",children:[(0,to.jsx)(vw.D,{children:(0,ii.t)("widget.predefined-properties")}),(0,to.jsx)(ih.IconTextButton,{disabled:l||t,icon:{value:"new"},loading:t,onClick:g,children:(0,ii.t)("predefined-properties.new")})]}),(0,to.jsx)(ih.SearchInput,{loading:o,onSearch:e=>{n(e)},placeholder:"Search",withPrefix:!1,withoutAddon:!1})]}),children:(0,to.jsx)(aB.V,{loading:l||o,margin:{x:"extra-small",y:"none"},none:(0,eY.isUndefined)(m)||0===m.length,children:(0,to.jsx)(ih.Box,{margin:{x:"extra-small",y:"none"},children:(0,to.jsx)(wc,{predefinedPropertyRows:p,setPredefinedPropertyRows:u})})})})};eR._.registerModule({onInit:()=>{eB.nC.get(eO.j.mainNavRegistry).registerMainNavItem({path:"DataManagement/Predefined Properties",label:"navigation.predefined-properties",order:100,className:"item-style-modifier",permission:jg.P.PredefinedProperties,perspectivePermission:jp.PredefinedProperties,widgetConfig:{name:"Predefined Properties",id:"predefined-properties",component:"predefined-properties",config:{translationKey:"widget.predefined-properties",icon:{type:"name",value:"properties"}}}}),eB.nC.get(eO.j.widgetManager).registerWidget({name:"predefined-properties",component:wu})}});var wm=i(16110),wp=i(83122),wg=i(77318);let wh=()=>{let e=(0,pU.useAppDispatch)(),{tags:t,tagsFetching:i,tagsLoading:n,rootTagFolder:r,getTag:a,tagDeletion:l,setTagFilter:o,handleTagUpdate:s,handleTagCreation:d}=(()=>{let[e,t]=(0,ts.useState)([]),i={id:0,text:"All Tags",hasChildren:!1,children:[],path:"/All Tags",parentId:0,iconName:"folder"},n=(0,h4.U)(),[r,a]=(0,ts.useState)(""),{data:l,isFetching:o,isLoading:s}=(0,wg.bm)({page:1,pageSize:9999,filter:r}),[d]=(0,wg.Xv)(),[f]=(0,wg.O4)(),[c]=(0,wg.XM)();(0,ts.useEffect)(()=>{t((e=>{let t=[],i=e=>{for(let n of e)t.push(n),(0,eY.isNil)(n.children)||i(n.children)};return i(e),t})((null==l?void 0:l.items)??[]))},[l]);let u=t=>[i,...e].find(e=>e.id.toString()===t)??void 0,m=async(e,t)=>{let i=await d({id:e,updateTagParameters:t});"data"in i&&n.success({content:(0,ii.t)("tag-configuration.successful-update"),type:"success",duration:3}),(0,eY.isEmpty)((0,eY.get)(i,"error.data.error"))||(0,is.ZP)(new is.aE(`Error updating tag: ${(0,eY.get)(i,"error.data.error")}`)),null!=i.error&&(0,is.ZP)(new is.aE("Error updating tag"))},p=async(e,t,i)=>{let n=u(e.toString());if(null==n)(0,is.ZP)(new is.aE(`Tag with id ${e} not found`));else{let r={parentId:t,name:i??n.text};await m(e,r)}},g=async e=>{let t=await c({createTagParameters:e});"data"in t&&n.success({content:(0,ii.t)("tag-configuration.successful-add"),type:"success",duration:3}),(0,eY.isEmpty)((0,eY.get)(t,"error.data.error"))||(0,is.ZP)(new is.aE(`Error creating tag: ${(0,eY.get)(t,"error.data.error")}`)),null!=t.error&&(0,is.ZP)(new is.aE("Error creating tag"))},h=async(e,t)=>{await g({parentId:t,name:e})},b=async e=>{let t=await f({id:e});"data"in t&&n.success({content:(0,ii.t)("tag-configuration.successful-deletion"),type:"success",duration:3}),(0,eY.isEmpty)((0,eY.get)(t,"error.data.error"))||(0,is.ZP)(new is.aE(`Error deleting tag: ${(0,eY.get)(t,"error.data.error")}`)),null!=t.error&&(0,is.ZP)(new is.aE("Error deleting tag"))};return{tags:(null==l?void 0:l.items)??[],setTagFilter:a,tagsFetching:o,tagsLoading:s,handleTagUpdate:p,handleTagCreation:h,tagDeletion:b,getTag:u,rootTagFolder:i}})(),{confirm:f,input:c}=(0,an.U8)(),[u,m]=(0,ts.useState)(""),[p,g]=td().useState([0]);(0,ts.useEffect)(()=>{i&&void 0===u?h():b()},[i]);let h=()=>{m(r.id.toString())},b=()=>{m(void 0)},y=(0,wp.h)({tags:t,loadingNodes:void 0!==u?new Set([u]):new Set,actions:[{key:"add-tag",icon:"new"},{key:"rename-tag",icon:"edit"},{key:"delete-tag",icon:"trash"}],rootActions:[{key:"add-tag",icon:"new"}]}),v=(e,t)=>{let i=(e=>{let t=a(e);return null==t?void(0,is.ZP)(new is.aE(`Tag with Id ${e} not found`)):t})(e);if(null!=i)switch(t){case"add-tag":c({title:(0,ii.t)("tag-configuration.new-tag"),label:(0,ii.t)("tag-configuration.name"),rule:{required:!0,message:"Please enter a tag name"},okText:(0,ii.t)("tag-configuration.create"),onOk:async e=>{m(i.id.toString()),await d(e,i.id)}});break;case"rename-tag":c({title:(0,ii.t)("tag-configuration.rename"),label:(0,ii.t)("tag-configuration.name"),rule:{required:!0,message:"Please enter a tag name"},okText:(0,ii.t)("tag-configuration.save"),initialValue:i.text,onOk:async e=>{m(i.id.toString()),await s(i.id,i.parentId,e)}});break;case"delete-tag":f({title:i.hasChildren?(0,ii.t)("tag-configuration.warn-delete-parent-tag-modal-title"):(0,ii.t)("tag-configuration.warn-delete-tag-modal-title"),content:i.hasChildren?(0,ii.t)("tag-configuration.warn-delete-parent-tag-modal-text"):(0,ii.t)("tag-configuration.warn-delete-tag-modal-text"),okText:i.hasChildren?(0,ii.t)("tag-configuration.delete-parent-tag"):(0,ii.t)("tag-configuration.delete-tag"),cancelText:(0,ii.t)("tag-configuration.cancel"),onOk:async()=>{m(i.id.toString()),await l(i.id)}})}};return(0,to.jsx)(aF.D,{renderToolbar:(0,to.jsx)(aO.o,{theme:"secondary",children:(0,to.jsx)(aM.h,{icon:{value:"refresh"},onClick:()=>{h(),e(wr.hi.util.invalidateTags(gi.xc.AVAILABLE_TAGS()))}})}),renderTopBar:(0,to.jsxs)(aO.o,{justify:"space-between",margin:{x:"mini",y:"none"},theme:"secondary",children:[(0,to.jsxs)(rZ.k,{gap:"small",children:[(0,to.jsx)(vw.D,{children:(0,ii.t)("widget.tag-configuration")}),(0,to.jsx)(dx.W,{disabled:void 0!==u,icon:{value:"new"},onClick:()=>{v(r.id.toString(),"add-tag")},children:(0,ii.t)("tag-configuration.new")})]}),(0,to.jsx)(a_.M,{loading:i,onSearch:e=>{o(e)},placeholder:"Search",withPrefix:!1,withoutAddon:!1})]}),children:(0,to.jsx)(aB.V,{loading:n,margin:{x:"extra-small",y:"none"},none:0===t.length,children:(0,to.jsx)(wm._,{checkStrictly:!0,defaultExpandedKeys:p,draggable:!0,onActionsClick:v,onDragAndDrop:async e=>{m(e.dragNode.key.toString()),await s(Number(e.dragNode.key),Number(e.node.key))},onExpand:e=>{g(e)},treeData:y,withCustomSwitcherIcon:!0})})})};eR._.registerModule({onInit:()=>{eB.nC.get(eO.j.mainNavRegistry).registerMainNavItem({path:"DataManagement/Tag Configuration",label:"navigation.tag-configuration",className:"item-style-modifier",order:100,permission:jg.P.TagsConfiguration,perspectivePermission:jp.TagConfiguration,widgetConfig:{name:"Tag Configuration",id:"tag-configuration",component:"tag-configuration",config:{translationKey:"widget.tag-configuration",icon:{type:"name",value:"tag-configuration"}}}}),eB.nC.get(eO.j.widgetManager).registerWidget({name:"tag-configuration",component:wh})}});let wb=aw.api.enhanceEndpoints({addTagTypes:["Bundle Seo"]}).injectEndpoints({endpoints:e=>({bundleSeoRedirectAdd:e.mutation({query:e=>({url:"/pimcore-studio/api/bundle/seo/redirects/add",method:"POST",body:e.bundleSeoRedirectAdd}),invalidatesTags:["Bundle Seo"]}),bundleSeoRedirectCleanup:e.mutation({query:()=>({url:"/pimcore-studio/api/bundle/seo/redirects/cleanup",method:"DELETE"}),invalidatesTags:["Bundle Seo"]}),bundleSeoRedirectsGetCollection:e.query({query:e=>({url:"/pimcore-studio/api/bundle/seo/redirects",method:"POST",body:e.body}),providesTags:["Bundle Seo"]}),bundleSeoRedirectUpdateById:e.mutation({query:e=>({url:`/pimcore-studio/api/bundle/seo/redirects/${e.id}`,method:"PUT",body:e.bundleSeoRedirectUpdate}),invalidatesTags:["Bundle Seo"]}),bundleSeoRedirectDelete:e.mutation({query:e=>({url:`/pimcore-studio/api/bundle/seo/redirects/${e.id}`,method:"DELETE"}),invalidatesTags:["Bundle Seo"]}),bundleSeoRedirectsExport:e.query({query:()=>({url:"/pimcore-studio/api/bundle/seo/redirects/export"}),providesTags:["Bundle Seo"]}),bundleSeoRedirectsImport:e.mutation({query:e=>({url:"/pimcore-studio/api/bundle/seo/redirects/import",method:"POST",body:e.body}),invalidatesTags:["Bundle Seo"]}),bundleSeoRedirectListPriorities:e.query({query:()=>({url:"/pimcore-studio/api/bundle/seo/redirects/priorities"}),providesTags:["Bundle Seo"]}),bundleSeoRedirectListStatuses:e.query({query:()=>({url:"/pimcore-studio/api/bundle/seo/redirects/statuses"}),providesTags:["Bundle Seo"]}),bundleSeoRedirectListTypes:e.query({query:()=>({url:"/pimcore-studio/api/bundle/seo/redirects/types"}),providesTags:["Bundle Seo"]})}),overrideExisting:!1}),{useBundleSeoRedirectAddMutation:wy,useBundleSeoRedirectCleanupMutation:wv,useBundleSeoRedirectsGetCollectionQuery:wx,useBundleSeoRedirectUpdateByIdMutation:wj,useBundleSeoRedirectDeleteMutation:ww,useBundleSeoRedirectsExportQuery:wC,useBundleSeoRedirectsImportMutation:wk,useBundleSeoRedirectListPrioritiesQuery:wT,useBundleSeoRedirectListStatusesQuery:wS,useBundleSeoRedirectListTypesQuery:wD}=wb,wE=wb.enhanceEndpoints({addTagTypes:[gi.fV.REDIRECTS],endpoints:{bundleSeoRedirectsGetCollection:{providesTags:(e,t,i)=>gi.Kx.REDIRECTS()},bundleSeoRedirectDelete:{invalidatesTags:()=>[]},bundleSeoRedirectAdd:{invalidatesTags:()=>[]},bundleSeoRedirectUpdateById:{invalidatesTags:()=>[]},bundleSeoRedirectsExport:{query:()=>({url:"/pimcore-studio/api/bundle/seo/redirects/export",responseHandler:async e=>await e.blob()})},bundleSeoRedirectsImport:{query:e=>{let t=new FormData;return t.append("file",e.body.file),{url:"/pimcore-studio/api/bundle/seo/redirects/import",method:"POST",body:t}},invalidatesTags:()=>[gi.fV.REDIRECTS]}}}),{useBundleSeoRedirectAddMutation:wM,useBundleSeoRedirectCleanupMutation:wI,useBundleSeoRedirectsGetCollectionQuery:wL,useBundleSeoRedirectUpdateByIdMutation:wP,useBundleSeoRedirectDeleteMutation:wN,useBundleSeoRedirectsExportQuery:wA,useBundleSeoRedirectsImportMutation:wR,useBundleSeoRedirectListPrioritiesQuery:wO,useBundleSeoRedirectListStatusesQuery:wB,useBundleSeoRedirectListTypesQuery:wF}=wE,w_=()=>{let[e,{isLoading:t}]=wM(),[i,{isLoading:n}]=wN(),[r,{isLoading:a}]=wP(),[l,{isLoading:o}]=wI();return{createNewRedirect:async t=>{try{let i={type:(null==t?void 0:t.type)??"entire_uri",source:(null==t?void 0:t.source)??null,target:(null==t?void 0:t.target)??null},n=await e({bundleSeoRedirectAdd:i});if(!(0,eY.isUndefined)(n.error))return(0,is.ZP)(new is.MS(n.error)),{success:!1};if("data"in n)return{success:!0,data:n.data}}catch{(0,is.ZP)(new is.aE("Was not able to create Redirect"))}return{success:!1}},createLoading:t,deleteRedirectById:async e=>{try{let t=await i({id:e});return{success:"data"in t}}catch{return(0,is.ZP)(new is.aE("Was not able to delete Redirect")),{success:!1}}},deleteLoading:n,updateRedirectById:async(e,t)=>{try{let i=await r({id:e,bundleSeoRedirectUpdate:{type:t.type??"",sourceSite:t.sourceSite,source:t.source,targetSite:t.targetSite,target:t.target,statusCode:t.statusCode??301,priority:t.priority??1,regex:t.regex??!1,active:t.active??!0,passThroughParameters:t.passThroughParameters??!1,expiry:t.expiry}});return{success:"data"in i}}catch{return(0,is.ZP)(new is.aE("Was not able to update Redirect")),{success:!1}}},updateLoading:a,cleanupRedirects:async()=>{try{return await l(),{success:!0}}catch{return(0,is.ZP)(new is.aE("Was not able to cleanup redirects")),{success:!1}}},cleanupLoading:o}},wz=e=>{let{info:t,setRedirectRows:i}=e,n=t.row.original,{deleteRedirectById:r,deleteLoading:a}=w_(),l=async()=>{if(null!==n.id){let{success:e}=await r(n.id);e&&i(e=>e.filter(e=>e.rowId!==n.rowId))}};return(0,to.jsx)(ih.Flex,{align:"center",className:"redirects-table--actions-column",justify:"center",children:(0,to.jsx)(ih.IconButton,{icon:{value:"trash"},loading:a,onClick:l,type:"link"})})};var wV=i(4444);let w$=e=>{let{onSortingChange:t,sorting:i,redirectRows:n,setRedirectRows:r}=e,{t:a}=(0,t7.useTranslation)(),{updateRedirectById:l}=w_(),{data:o}=wF(),{data:s}=wB(),{data:d}=wO(),{getAllSites:f}=(0,wV.k)(),[c,u]=(0,ts.useState)([]),m=f().map(e=>({value:e.id,label:a(e.domain)})),p=(0,ts.useMemo)(()=>{var e;return(null==o||null==(e=o.types)?void 0:e.map(e=>({label:a(e),value:e})))??[]},[o]),g=(0,ts.useMemo)(()=>{var e;return(null==s||null==(e=s.statuses)?void 0:e.map(e=>({label:`${e.code} - ${e.label}`,value:e.code})))??[]},[s]),h=(0,ts.useMemo)(()=>{var e;return(null==d||null==(e=d.priorities)?void 0:e.map(e=>({label:e.toString(),value:e})))??[]},[d]),b=(0,aj.createColumnHelper)(),y=[b.accessor("type",{header:a("redirects.type"),meta:{type:"select",editable:!0,config:{options:p}},size:120}),b.accessor("sourceSite",{header:a("redirects.source-site"),meta:{type:"select",editable:!0,config:{options:m}},size:100}),b.accessor("source",{header:a("redirects.source"),meta:{editable:!0},size:200}),b.accessor("targetSite",{header:a("redirects.target-site"),meta:{type:"select",editable:!0,config:{options:m}},size:100}),b.accessor("target",{header:a("redirects.target"),meta:{editable:!0,type:"element",config:{allowedTypes:["asset","document"],showPublishedState:!1,expectsStringValue:!0,allowTextInput:!0}},size:200}),b.accessor("statusCode",{header:a("redirects.status"),meta:{type:"select",editable:!0,config:{options:g}},size:100}),b.accessor("priority",{header:a("redirects.priority"),meta:{type:"select",editable:!0,config:{options:h}},size:80}),b.accessor("regex",{header:a("redirects.regex"),size:80,meta:{type:"checkbox",editable:!0,config:{align:"center"}}}),b.accessor("passThroughParameters",{header:a("redirects.pass-through"),size:110,meta:{type:"checkbox",editable:!0,config:{align:"center"}}}),b.accessor("active",{header:a("redirects.active"),size:80,meta:{type:"checkbox",editable:!0,config:{align:"center"}}}),b.accessor("expiry",{header:a("redirects.expiry"),size:80,meta:{type:"date",editable:!0}}),b.accessor("actions",{header:a("redirects.actions"),size:80,enableSorting:!1,cell:e=>(0,to.jsx)(wz,{info:e,setRedirectRows:r})})],v=async e=>{let{columnId:t,value:i,rowData:n}=e,a=n.rowId,o={...n,[t]:i};if(r(e=>e.map(e=>e.rowId===a?o:e)),u([{columnId:t,rowIndex:a}]),null!==o.id){let{success:e}=await l(o.id,o);e?u([]):r(e=>e.map(e=>e.rowId===a?n:e))}};return(0,to.jsx)(az.r,{autoWidth:!0,columns:y,data:n,manualSorting:!0,modifiedCells:c,onSortingChange:t,onUpdateCellData:v,resizable:!0,setRowId:e=>e.rowId,sorting:i})},wW=(0,ia.createStyles)(e=>{let{token:t,css:i}=e;return{csvTargetContainer:i` border-radius: ${t.borderRadiusLG}px; outline: 2px dashed ${t.colorBorder}; background: ${t.controlItemBgHover}; @@ -865,7 +865,7 @@ .icon-button--theme-primary { margin-top: 3px; } - `}}),{Dragger:wH}=tN.Upload,wG=e=>{let{open:t,onCancel:i,onImport:n,loading:r=!1}=e,[a,o]=(0,ts.useState)(null),{styles:l}=wW(),s=(0,ts.useRef)(null);(0,ts.useEffect)(()=>{t&&(o(null),null!==s.current&&(s.current.value=""))},[t]);let d=e=>{"text/csv"===e.type||"application/csv"===e.type||e.name.endsWith(".csv")?o(e):(0,jN.trackError)(new jN.GeneralError("File rejected - not a CSV"))};return(0,tl.jsxs)(ih.Modal,{footer:(0,tl.jsxs)(ih.ModalFooter,{divider:!0,justify:null===a?"space-between":"end",children:[null===a&&(0,tl.jsx)(ih.IconTextButton,{disabled:r,icon:{value:"upload-import"},onClick:()=>{var e;null==(e=s.current)||e.click()},children:(0,ii.t)("redirects.browse-files")}),(0,tl.jsx)(tN.Button,{disabled:null===a||r,loading:r,onClick:()=>{null!==a&&n(a)},type:"primary",children:(0,ii.t)("redirects.upload")})]}),onCancel:()=>{o(null),i()},open:t,size:"M",title:(0,ii.t)("redirects.csv-import-modal.redirects-import"),children:[(0,tl.jsx)("input",{accept:".csv",disabled:r,onChange:e=>{var t;let i=null==(t=e.target.files)?void 0:t[0];void 0!==i&&d(i)},ref:s,style:{display:"none"},type:"file"}),null===a?(0,tl.jsx)(wH,{...{name:"file",multiple:!1,accept:".csv,text/csv,application/csv",beforeUpload:e=>(console.log("File dropped/selected:",e),d(e),!1),showUploadList:!1,disabled:r},children:(0,tl.jsxs)(rZ.k,{align:"center",gap:"mini",justify:"center",style:{padding:"20px"},vertical:!0,children:[(0,tl.jsx)("div",{className:"icon-container",children:(0,tl.jsxs)(rZ.k,{align:"center",gap:"mini",justify:"center",children:[(0,tl.jsx)(rR.J,{options:{height:20,width:20},value:"new"}),(0,tl.jsx)(rR.J,{options:{height:20,width:20},value:"drop-target"})]})}),(0,tl.jsx)("div",{className:"csv-target-title",children:(0,ii.t)("redirects.import-drag-drop")})]})}):(0,tl.jsx)("div",{className:l.uploadedFile,children:(0,tl.jsxs)(rZ.k,{align:"start",gap:10,children:[(0,tl.jsx)(rZ.k,{children:(0,tl.jsxs)("div",{children:[(0,tl.jsx)("div",{className:"file-name",children:a.name}),(0,tl.jsx)("div",{className:"file-size",children:(e=>{if(0===e)return"0 Bytes";let t=Math.floor(Math.log(e)/Math.log(1024));return parseFloat((e/Math.pow(1024,t)).toFixed(2))+" "+["Bytes","KB","MB","GB"][t]})(a.size)})]})}),!r&&(0,tl.jsx)(ih.IconButton,{icon:{value:"close"},iconPosition:"start",onClick:()=>{o(null),null!==s.current&&(s.current.value="")},type:"link",variant:"minimal"})]})})]})},wU=(0,ia.createStyles)(e=>{let{token:t,css:i}=e;return{statisticsContainer:i` + `}}),{Dragger:wH}=tN.Upload,wG=e=>{let{open:t,onCancel:i,onImport:n,loading:r=!1}=e,[a,l]=(0,ts.useState)(null),{styles:o}=wW(),s=(0,ts.useRef)(null);(0,ts.useEffect)(()=>{t&&(l(null),null!==s.current&&(s.current.value=""))},[t]);let d=e=>{"text/csv"===e.type||"application/csv"===e.type||e.name.endsWith(".csv")?l(e):(0,jN.trackError)(new jN.GeneralError("File rejected - not a CSV"))};return(0,to.jsxs)(ih.Modal,{footer:(0,to.jsxs)(ih.ModalFooter,{divider:!0,justify:null===a?"space-between":"end",children:[null===a&&(0,to.jsx)(ih.IconTextButton,{disabled:r,icon:{value:"upload-import"},onClick:()=>{var e;null==(e=s.current)||e.click()},children:(0,ii.t)("redirects.browse-files")}),(0,to.jsx)(tN.Button,{disabled:null===a||r,loading:r,onClick:()=>{null!==a&&n(a)},type:"primary",children:(0,ii.t)("redirects.upload")})]}),onCancel:()=>{l(null),i()},open:t,size:"M",title:(0,ii.t)("redirects.csv-import-modal.redirects-import"),children:[(0,to.jsx)("input",{accept:".csv",disabled:r,onChange:e=>{var t;let i=null==(t=e.target.files)?void 0:t[0];void 0!==i&&d(i)},ref:s,style:{display:"none"},type:"file"}),null===a?(0,to.jsx)(wH,{...{name:"file",multiple:!1,accept:".csv,text/csv,application/csv",beforeUpload:e=>(console.log("File dropped/selected:",e),d(e),!1),showUploadList:!1,disabled:r},children:(0,to.jsxs)(rZ.k,{align:"center",gap:"mini",justify:"center",style:{padding:"20px"},vertical:!0,children:[(0,to.jsx)("div",{className:"icon-container",children:(0,to.jsxs)(rZ.k,{align:"center",gap:"mini",justify:"center",children:[(0,to.jsx)(rR.J,{options:{height:20,width:20},value:"new"}),(0,to.jsx)(rR.J,{options:{height:20,width:20},value:"drop-target"})]})}),(0,to.jsx)("div",{className:"csv-target-title",children:(0,ii.t)("redirects.import-drag-drop")})]})}):(0,to.jsx)("div",{className:o.uploadedFile,children:(0,to.jsxs)(rZ.k,{align:"start",gap:10,children:[(0,to.jsx)(rZ.k,{children:(0,to.jsxs)("div",{children:[(0,to.jsx)("div",{className:"file-name",children:a.name}),(0,to.jsx)("div",{className:"file-size",children:(e=>{if(0===e)return"0 Bytes";let t=Math.floor(Math.log(e)/Math.log(1024));return parseFloat((e/Math.pow(1024,t)).toFixed(2))+" "+["Bytes","KB","MB","GB"][t]})(a.size)})]})}),!r&&(0,to.jsx)(ih.IconButton,{icon:{value:"close"},iconPosition:"start",onClick:()=>{l(null),null!==s.current&&(s.current.value="")},type:"link",variant:"minimal"})]})})]})},wU=(0,ia.createStyles)(e=>{let{token:t,css:i}=e;return{statisticsContainer:i` .statistics-list { padding-top: 10px; padding-left: 5px; @@ -928,7 +928,7 @@ } } } - `}}),wq=e=>{let{open:t,onClose:i,results:n}=e,{styles:r}=wU();if(null===n)return(0,tl.jsx)(tl.Fragment,{});let a=n.errored>0&&"object"==typeof n.errors&&Object.keys(n.errors).length>0;return(0,tl.jsxs)(ih.Modal,{footer:null,onCancel:i,open:t,size:"M",title:(0,ii.t)("redirects.csv-import-modal.redirects-import"),children:[(0,tl.jsx)("div",{className:r.statisticsContainer,children:(0,tl.jsxs)("div",{className:"statistics-list",children:[(0,tl.jsxs)(ih.Flex,{children:[(0,tl.jsx)("div",{className:"statistic-normal",children:(0,ii.t)("redirects.csv-import-results.total")}),(0,tl.jsx)("div",{children:n.total})]}),(0,tl.jsxs)(ih.Flex,{children:[(0,tl.jsx)("div",{className:"statistic-bold",children:(0,ii.t)("redirects.csv-import-results.created")}),(0,tl.jsx)("div",{className:"statistic-bold",children:n.created})]}),(0,tl.jsxs)(ih.Flex,{children:[(0,tl.jsx)("div",{className:"statistic-bold",children:(0,ii.t)("redirects.csv-import-results.updated")}),(0,tl.jsx)("div",{className:"statistic-bold",children:n.updated})]}),n.errored>0&&(0,tl.jsxs)(ih.Flex,{className:oy()("statistic-item","errored"),children:[(0,tl.jsx)("div",{className:"statistic-bold",children:(0,ii.t)("redirects.csv-import-results.errored")}),(0,tl.jsx)("div",{className:"statistic-bold",children:n.errored})]})]})}),a&&(0,tl.jsx)("div",{className:r.errorSection,children:(0,tl.jsx)("div",{className:"error-list",children:(0,tl.jsxs)(ih.Flex,{className:"error-item",gap:8,justify:"space-between",children:[(0,tl.jsx)(rR.J,{className:"error-icon",options:{width:20,height:20},value:"alert"}),(0,tl.jsx)(ih.Flex,{vertical:!0,children:Object.entries(n.errors).map(e=>{let[t,i]=e;return(0,tl.jsxs)(ih.Flex,{children:[(0,tl.jsxs)("span",{className:"error-line",children:[(0,ii.t)("redirects.csv-import-results.line",{line:t}),":"]}),(0,tl.jsx)("span",{className:"error-message",children:"string"==typeof i?i:JSON.stringify(i)})]},t)})})]})})})]})},wZ=e=>{let{currentPage:t,redirectRowsLength:i,redirectsFetching:n,totalItems:r,onPageChange:a,onRefresh:o}=e,{t:l}=(0,t7.useTranslation)(),s=(0,pU.useAppDispatch)(),[d,f]=(0,ts.useState)(!1),[c,u]=(0,ts.useState)(!1),[m,p]=(0,ts.useState)(null),[g,h]=(0,ts.useState)(!1),{cleanupRedirects:b,cleanupLoading:y}=w_(),[v,{isLoading:x}]=wR(),j=async()=>{let{success:e}=await b();e&&o()},w=async()=>{try{h(!0);let e=await s(wE.endpoints.bundleSeoRedirectsExport.initiate());if("data"in e&&e.data instanceof Blob){let t=window.URL.createObjectURL(e.data),i=document.createElement("a");i.href=t,i.download=`redirects-export-${new Date().toISOString().split("T")[0]}.csv`,i.style.display="none",document.body.appendChild(i),i.click(),document.body.removeChild(i),window.URL.revokeObjectURL(t)}else(0,is.ZP)(new is.aE("Export failed: No blob data received"))}catch{(0,is.ZP)(new is.aE("Failed to export redirects"))}finally{h(!1)}},C=async e=>{try{let t=await v({body:{file:e}}).unwrap();p(t),f(!1),u(!0),o()}catch{(0,is.ZP)(new is.aE("Failed to import redirects"))}};return(0,tl.jsxs)(tl.Fragment,{children:[(0,tl.jsxs)(aO.o,{theme:"secondary",children:[(0,tl.jsx)(rZ.k,{align:"center",justify:"start",style:{width:"100%",height:"100%"},children:(0,tl.jsxs)("div",{children:[(0,tl.jsx)(ih.IconTextButton,{disabled:i<1||y||n,icon:{value:"trash"},loading:y,onClick:j,type:"link",children:l("redirects.clean-up")}),(0,tl.jsx)(ih.IconTextButton,{disabled:i<1||n||g,icon:{value:"download"},loading:g,onClick:w,type:"link",children:l("redirects.csv-export")}),(0,tl.jsx)(ih.IconTextButton,{disabled:n||x,icon:{value:"import-csv"},loading:x,onClick:()=>{f(!0)},type:"link",children:l("redirects.csv-import")})]})}),r>0?(0,tl.jsxs)(ih.Split,{children:[(0,tl.jsx)(rZ.k,{align:"center",children:(0,tl.jsx)(aM.h,{disabled:n,icon:{value:"refresh"},onClick:o,variant:"minimal"})}),(0,tl.jsx)(ih.Pagination,{current:t,onChange:(e,t)=>{a(e,t)},showSizeChanger:!0,showTotal:e=>l("pagination.show-total",{total:e}),total:r})]}):(0,tl.jsx)(rZ.k,{align:"center",children:(0,tl.jsx)(aM.h,{disabled:n,icon:{value:"refresh"},onClick:o})})]}),(0,tl.jsx)(wG,{loading:x,onCancel:()=>{f(!1)},onImport:C,open:d}),(0,tl.jsx)(wq,{onClose:()=>{u(!1)},open:c,results:m})]})},wK=e=>{let{redirectsLoading:t,createLoading:i,redirectsFetching:n,onBeginnerClick:r,onExpertClick:a,onSearch:o}=e,{t:l}=(0,t7.useTranslation)();return(0,tl.jsxs)(aO.o,{justify:"space-between",margin:{x:"mini",y:"none"},theme:"secondary",children:[(0,tl.jsxs)(rZ.k,{gap:"small",children:[(0,tl.jsx)(vw.D,{children:l("widget.redirects")}),(0,tl.jsx)(ih.IconTextButton,{disabled:t||i||n,icon:{value:"new"},onClick:r,children:l("redirects.beginner")}),(0,tl.jsx)(ih.IconTextButton,{disabled:t||i||n,icon:{value:"new"},loading:i,onClick:a,children:l("redirects.expert")})]}),(0,tl.jsx)(ih.SearchInput,{loading:n||t,onSearch:o,placeholder:l("redirects.search"),withPrefix:!1,withoutAddon:!1})]})},wJ=e=>{var t;let{open:i,setOpen:n,createRedirect:r}=e,{t:a}=(0,t7.useTranslation)(),[o]=(0,y_.Z)(),[l,s]=(0,ts.useState)(!1),{data:d}=wF(),f=(null==d||null==(t=d.types)?void 0:t.map(e=>({label:a(e),value:e})))??[],c=async e=>{s(!0),await r({type:e.type,source:e.path,target:e.target})&&(n(!1),o.resetFields()),s(!1)};return(0,tl.jsx)(av.u,{cancelButtonProps:{style:{display:"none"}},okButtonProps:{loading:l},okText:a("redirects.beginner-modal.create"),onCancel:()=>{n(!1),o.resetFields()},onOk:()=>{o.submit()},open:i,size:"M",title:(0,tl.jsx)(p3.r,{iconName:"new",children:a("redirects.beginner-modal.title")}),children:(0,tl.jsxs)(tc.l,{form:o,layout:"vertical",onFinish:c,children:[(0,tl.jsx)(tc.l.Item,{label:a("redirects.beginner-modal.type"),name:"type",rules:[{required:!0,message:a("redirects.beginner-modal.type.required")}],children:(0,tl.jsx)(tC.P,{options:f,placeholder:a("redirects.beginner-modal.type")})}),(0,tl.jsx)(tc.l.Item,{label:a("redirects.beginner-modal.path"),name:"path",rules:[{required:!0,message:a("redirects.beginner-modal.path.required")}],children:(0,tl.jsx)(ae.I,{placeholder:a("redirects.beginner-modal.path")})}),(0,tl.jsx)(tc.l.Item,{label:a("redirects.beginner-modal.target"),name:"target",rules:[{required:!0,message:a("redirects.beginner-modal.target.required")}],children:(0,tl.jsx)(ae.I,{placeholder:a("redirects.beginner-modal.target")})})]})})},wX=()=>{let e=(0,pU.useAppDispatch)(),[t,i]=(0,ts.useState)(1),[n,r]=(0,ts.useState)(50),[a,o]=(0,ts.useState)([{id:"source",desc:!1}]),[l,s]=(0,ts.useState)(""),[d,f]=(0,ts.useState)(!1),{createNewRedirect:c,createLoading:u}=w_(),[m,p]=(0,ts.useState)([]),{data:g,isLoading:h,isFetching:b,error:y}=wL((0,ts.useMemo)(()=>({body:{filters:{page:t,pageSize:n,columnFilters:""!==l?[{type:"search",filterValue:l}]:[]},sortFilter:a.length>0?{key:a[0].id.startsWith("_")?a[0].id.substring(1):a[0].id,direction:a[0].desc?"DESC":"ASC"}:[]}}),[t,n,l,a]),{refetchOnMountOrArgChange:!0}),v=null==g?void 0:g.items,x=async e=>{let t=(0,ov.uuid)(),i={id:Date.now(),type:(null==e?void 0:e.type)??"entire_uri",source:(null==e?void 0:e.source)??null,target:(null==e?void 0:e.target)??null,sourceSite:null,targetSite:null,statusCode:301,priority:1,regex:!1,active:!0,passThroughParameters:!1,expiry:null,creationDate:Date.now(),modificationDate:Date.now(),userOwner:null,userModification:null,additionalAttributes:void 0,rowId:t};p(e=>[i,...e]);let{success:n,data:r}=await c(e);return n&&!(0,eY.isUndefined)(r)?p(e=>e.map(e=>e.rowId===t?{...r,rowId:(0,ov.uuid)()}:e)):p(e=>e.filter(e=>e.rowId!==t)),n};(0,ts.useEffect)(()=>{(0,eY.isUndefined)(v)||p(v.map(e=>({...e,rowId:(0,ov.uuid)()})))},[v]),(0,ts.useEffect)(()=>{(0,eY.isUndefined)(y)||(0,is.ZP)(new is.MS(y))},[y]);let j=h||b;return(0,tl.jsxs)(aF.D,{renderToolbar:(0,tl.jsx)(wZ,{currentPage:t,onPageChange:(e,t)=>{i(e),r(t)},onRefresh:()=>{e(wE.util.invalidateTags(aw.invalidatingTags.REDIRECTS()))},redirectRowsLength:m.length,redirectsFetching:j,totalItems:(null==g?void 0:g.totalItems)??0}),renderTopBar:(0,tl.jsx)(wK,{createLoading:u,onBeginnerClick:()=>{f(!0)},onExpertClick:async()=>{await x()},onSearch:e=>{s(e),i(1)},redirectsFetching:j,redirectsLoading:h}),children:[(0,tl.jsx)(aB.V,{loading:j,margin:{x:"extra-small",y:"none"},none:!j&&0===m.length,children:(0,tl.jsx)(ih.Box,{margin:{x:"extra-small",y:"none"},children:(0,tl.jsx)(w$,{onSortingChange:e=>{o(e),i(1)},redirectRows:m,setRedirectRows:p,sorting:a})})}),(0,tl.jsx)(wJ,{createRedirect:x,open:d,setOpen:f})]})};eR._.registerModule({onInit:()=>{eB.nC.get(eO.j.mainNavRegistry).registerMainNavItem({path:"ExperienceEcommerce/Redirects",label:"navigation.redirects",className:"item-style-modifier",order:600,permission:jg.P.Redirects,perspectivePermission:jp.Redirects,widgetConfig:{name:"Redirects",id:"redirects",component:"redirects",config:{translationKey:"widget.redirects",icon:{type:"name",value:"redirect"}}}}),eB.nC.get(eO.j.widgetManager).registerWidget({name:"redirects",component:wX})}});let wQ=()=>{let[e,{isLoading:t}]=(0,v9.ZR)(),[i,{isLoading:n}]=(0,v9.c8)(),[r,{isLoading:a}]=(0,v9.rZ)(),o={docTypeAddParameters:{name:"New Document Type",type:"page"}};return{createNewDocumentType:async()=>{try{let t=await e(o);if((0,eY.isUndefined)(t.error)||(0,is.ZP)(new is.MS(t.error)),"data"in t)return{success:!0,data:t.data}}catch{(0,is.ZP)(new is.aE("Was not able to create DocumentType"))}return{success:!1}},createLoading:t,deleteDocumentTypeById:async e=>{try{let t=await i({id:e});return(0,eY.isUndefined)(t.error)||(0,is.ZP)(new is.MS(t.error)),{success:"data"in t}}catch{return(0,is.ZP)(new is.aE("Was not able to delete DocumentType")),{success:!1}}},deleteLoading:n,updateDocumentTypeById:async(e,t)=>{try{let i=await r({id:e,docTypeUpdateParameters:{name:t.name??"",type:t.type??"",group:t.group??"",controller:t.controller??"",template:t.template??"",priority:t.priority??0,staticGeneratorEnabled:t.staticGeneratorEnabled??!1}});return(0,eY.isUndefined)(i.error)||(0,is.ZP)(new is.MS(i.error)),{success:"data"in i}}catch{return(0,is.ZP)(new is.aE("Was not able to update DocumentType")),{success:!1}}},updateLoading:a}},wY=e=>{let{documentTypeRows:t,setDocumentTypeRows:i,config:n}=e,{t:r}=(0,t7.useTranslation)(),{updateDocumentTypeById:a}=wQ(),{controllers:o,templates:l,docTypes:s}=n,[d,f]=(0,ts.useState)([]),c=o.map(e=>e.name),u=l.map(e=>e.path),m=s.map(e=>e.name),p=(0,aj.createColumnHelper)(),g=[p.accessor("name",{header:r("document-types.columns.name"),meta:{editable:!0},size:200}),p.accessor("group",{header:r("document-types.columns.group"),meta:{editable:!0},size:100}),p.accessor("controller",{header:r("document-types.columns.controller"),meta:{type:"select",editable:!0,config:{options:Object.values(c)}},size:200}),p.accessor("template",{header:r("document-types.columns.template"),meta:{type:"select",editable:!0,config:{options:Object.values(u)}},size:150}),p.accessor("type",{header:r("document-types.columns.type"),meta:{type:"select",editable:!0,config:{options:Object.values(m)}},size:80}),p.accessor("staticGeneratorEnabled",{header:r("document-types.columns.static"),size:70,cell:e=>(0,tl.jsx)(ih.Flex,{align:"center",justify:"center",children:"page"===e.row.original.type&&(0,tl.jsx)(ih.Checkbox,{checked:!!e.getValue(),onChange:t=>{var i,n;null==(n=e.table.options.meta)||null==(i=n.onUpdateCellData)||i.call(n,{rowIndex:e.row.index,columnId:e.column.id,value:t.target.checked,rowData:e.row.original})}})})}),p.accessor("priority",{header:r("document-types.columns.priority"),meta:{type:"number",editable:!0},size:80}),p.accessor("creationDate",{header:r("document-types.columns.creation-date"),meta:{type:"date"},size:150}),p.accessor("modificationDate",{header:r("document-types.columns.modification-date"),meta:{type:"date"},size:150}),p.accessor("actions",{header:r("document-types.columns.actions"),size:80,cell:e=>(e=>{let{info:t,setDocumentTypeRows:i}=e,n=t.row.original.id,{deleteDocumentTypeById:r,deleteLoading:a}=wQ(),o=async()=>{let{success:e}=await r(n);e&&i(e=>e.filter(e=>e.id!==n))};return(0,tl.jsxs)("div",{className:"document-types-table--actions-column",children:[(0,tl.jsx)(ih.IconButton,{icon:{value:"translate"},onClick:()=>{console.log("Open Translate View")},type:"link"}),(0,tl.jsx)(ih.IconButton,{icon:{value:"trash"},loading:a,onClick:o,type:"link"})]})})({info:e,setDocumentTypeRows:i})})],h=async e=>{let{columnId:t,value:n,rowData:r}=e,o=r.rowId,l={...r,[t]:n};i(e=>e.map(e=>e.rowId===o?l:e)),f([{columnId:t,rowIndex:o}]);let{success:s}=await a(l.id,l);s?f([]):i(e=>e.map(e=>e.rowId===o?r:e))};return(0,tl.jsx)("div",{children:(0,tl.jsx)(az.r,{autoWidth:!0,columns:g,data:t,enableSorting:!0,modifiedCells:d,onUpdateCellData:h,resizable:!0,setRowId:e=>e.rowId})})},w0=()=>{let{createNewDocumentType:e,createLoading:t}=wQ(),i=(()=>{let{data:e,error:t}=(0,o2.OJ)(),{data:i,error:n}=(0,o2.lM)(),{data:r,error:a}=(0,o2.ES)();return(0,ts.useEffect)(()=>{(0,eY.isUndefined)(t)||(0,is.ZP)(new is.MS(t))},[t]),(0,ts.useEffect)(()=>{(0,eY.isUndefined)(n)||(0,is.ZP)(new is.MS(n))},[n]),(0,ts.useEffect)(()=>{(0,eY.isUndefined)(a)||(0,is.ZP)(new is.MS(a))},[a]),{controllers:(0,eY.isUndefined)(e)?[]:null==e?void 0:e.items,templates:(0,eY.isUndefined)(i)?[]:null==i?void 0:i.items,docTypes:(0,eY.isUndefined)(r)?[]:null==r?void 0:r.items}})(),{data:n,isLoading:r,isFetching:a,error:o,refetch:l}=(0,o2.jX)({}),s=()=>{l().catch(()=>{(0,is.ZP)(new is.aE("Error while reloading"))})};(0,ts.useEffect)(()=>{s()},[]);let[d,f]=(0,ts.useState)([]),c=(null==n?void 0:n.items)??[],u=[...d].sort((e,t)=>{let i=e.name??"",n=t.name??"";return i.localeCompare(n)});(0,ts.useEffect)(()=>{(0,eY.isUndefined)(c)||f(c.map(e=>({...e,rowId:(0,ov.uuid)()})))},[c]);let m=async()=>{let{success:t,data:i}=await e();t&&void 0!==i&&f(e=>[{...i,rowId:(0,ov.uuid)()},...e])};return(0,ts.useEffect)(()=>{(0,eY.isUndefined)(o)||(0,is.ZP)(new is.MS(o))},[o]),(0,tl.jsx)(aF.D,{renderToolbar:(0,tl.jsx)(aO.o,{theme:"secondary",children:(0,tl.jsx)(ih.IconButton,{disabled:a,icon:{value:"refresh"},onClick:s})}),renderTopBar:(0,tl.jsx)(aO.o,{justify:"space-between",margin:{x:"mini",y:"none"},theme:"secondary",children:(0,tl.jsxs)(rZ.k,{gap:"small",children:[(0,tl.jsx)(vw.D,{children:(0,ii.t)("widget.document-types")}),(0,tl.jsx)(ih.IconTextButton,{disabled:r??t,icon:{value:"new"},loading:t,onClick:m,children:(0,ii.t)("document-types.new")})]})}),children:(0,tl.jsx)(aB.V,{loading:r||a,margin:{x:"extra-small",y:"none"},none:(0,eY.isUndefined)(c)??0===c.length,children:(0,tl.jsx)(ih.Box,{margin:{x:"extra-small",y:"none"},children:(0,tl.jsx)(wY,{config:i,documentTypeRows:u,setDocumentTypeRows:f})})})})};eR._.registerModule({onInit:()=>{eB.nC.get(eO.j.mainNavRegistry).registerMainNavItem({path:"ExperienceEcommerce/Document Types",label:"navigation.document-types",className:"item-style-modifier",order:900,permission:jg.P.DocumentTypes,perspectivePermission:jp.DocumentTypes,widgetConfig:{name:"Document Types",id:"document-types",component:"document-types",config:{translationKey:"widget.document-types",icon:{type:"name",value:"document-types"}}}}),eB.nC.get(eO.j.widgetManager).registerWidget({name:"document-types",component:w0})}});let w1=aw.api.enhanceEndpoints({addTagTypes:["Website Settings"]}).injectEndpoints({endpoints:e=>({websiteSettingsAdd:e.mutation({query:e=>({url:"/pimcore-studio/api/website-settings/add",method:"POST",body:e.websiteSettingsAdd}),invalidatesTags:["Website Settings"]}),websiteSettingsGetCollection:e.query({query:e=>({url:"/pimcore-studio/api/website-settings",method:"POST",body:e.body}),providesTags:["Website Settings"]}),websiteSettingsUpdate:e.mutation({query:e=>({url:`/pimcore-studio/api/website-settings/${e.id}`,method:"PUT",body:e.websiteSettingsUpdate}),invalidatesTags:["Website Settings"]}),websiteSettingsDelete:e.mutation({query:e=>({url:`/pimcore-studio/api/website-settings/${e.id}`,method:"DELETE"}),invalidatesTags:["Website Settings"]}),websiteSettingsListTypes:e.query({query:()=>({url:"/pimcore-studio/api/website-settings/types"}),providesTags:["Website Settings"]})}),overrideExisting:!1}),{useWebsiteSettingsAddMutation:w2,useWebsiteSettingsGetCollectionQuery:w3,useWebsiteSettingsUpdateMutation:w6,useWebsiteSettingsDeleteMutation:w4,useWebsiteSettingsListTypesQuery:w8}=w1,w7=w1.enhanceEndpoints({addTagTypes:[gi.fV.WEBSITE_SETTINGS],endpoints:{websiteSettingsGetCollection:{providesTags:(e,t,i)=>gi.Kx.WEBSITE_SETTINGS()},websiteSettingsDelete:{invalidatesTags:()=>[]},websiteSettingsAdd:{invalidatesTags:()=>[]},websiteSettingsUpdate:{invalidatesTags:()=>[]},websiteSettingsListTypes:{providesTags:()=>[]}}}),{useWebsiteSettingsAddMutation:w5,useWebsiteSettingsDeleteMutation:w9,useWebsiteSettingsGetCollectionQuery:Ce,useWebsiteSettingsUpdateMutation:Ct,useWebsiteSettingsListTypesQuery:Ci}=w7,Cn=()=>{let[e,{isLoading:t}]=w5(),[i,{isLoading:n}]=w9(),[r,{isLoading:a}]=Ct();return{createNewSetting:async(t,i)=>{try{let n=await e({websiteSettingsAdd:{name:t,type:i}});if((0,eY.isUndefined)(n.error)||(0,is.ZP)(new is.MS(n.error)),"data"in n)return{success:!0,data:n.data}}catch{(0,is.ZP)(new is.aE("Error creating Website Settings"))}return{success:!1}},createLoading:t,deleteSettingById:async e=>{try{let t=await i({id:e});return(0,eY.isUndefined)(t.error)||(0,is.ZP)(new is.MS(t.error)),{success:"data"in t}}catch{return(0,is.ZP)(new is.aE("Error deleting Website Settings")),{success:!1}}},deleteLoading:n,updateSettingById:async(e,t)=>{try{let i=await r({id:e,websiteSettingsUpdate:t});return(0,eY.isUndefined)(i.error)||(0,is.ZP)(new is.MS(i.error)),{success:"data"in i}}catch{return(0,is.ZP)(new is.aE("Error updating Website Settings")),{success:!1}}},updateLoading:a}},Cr=e=>{let{info:t,setWebsiteSettingRows:i}=e,n=t.row.original.id,{deleteSettingById:r,deleteLoading:a}=Cn(),o=async()=>{let{success:e}=await r(n);e&&i(e=>e.filter(e=>e.id!==n))};return(0,tl.jsx)(ih.Flex,{align:"center",className:"website-settings-table--actions-column",justify:"center",children:(0,tl.jsx)(ih.IconButton,{icon:{value:"trash"},loading:a,onClick:o,type:"link"})})},Ca=e=>{let{websiteSettingRows:t,setWebsiteSettingRows:i,typeSelectOptions:n}=e,{t:r}=(0,t7.useTranslation)(),{updateSettingById:a}=Cn(),[o,l]=(0,ts.useState)([]),{getAllSites:s,getSiteById:d}=(0,wV.k)(),f=t.map(e=>{if(null==e.siteId)return{...e,siteDomain:""};let t=isNaN(Number(null==e?void 0:e.siteId))?void 0:d(Number(e.siteId)),i=(0,eY.isUndefined)(t)?"":r(t.domain);return{...e,siteDomain:i}}),c=s().map(e=>({value:e.id,label:r(e.domain)})),u=async e=>{let{columnId:t,value:n,rowData:r}=e,o=r.rowId,s={...r,["siteDomain"===t?"siteId":t]:n};i(e=>e.map(e=>e.rowId===o?s:e)),l([{columnId:t,rowIndex:o}]);let{success:d}=await a(s.id,{name:s.name??"",language:s.language??"",data:s.data,siteId:s.siteId??0});d?l([]):i(e=>e.map(e=>e.rowId===o?r:e))},m=(0,aj.createColumnHelper)(),p=[m.accessor("type",{header:r("website-settings.columns.type"),meta:{type:"select",editable:!1,config:{options:n}},size:80}),m.accessor("name",{header:r("website-settings.columns.name"),meta:{editable:!0},size:200}),m.accessor("language",{header:r("website-settings.columns.language"),meta:{type:"language-select",editable:!0},size:60}),m.accessor("data",{header:r("website-settings.columns.value"),meta:{type:"website-settings-value",editable:!0,clearable:!0,showPublishedState:!1},size:200}),m.accessor("siteDomain",{header:r("website-settings.columns.site"),meta:{type:"select",editable:!0,config:{options:c}},size:110}),m.accessor("actions",{header:r("properties.columns.actions"),size:60,cell:e=>(0,tl.jsx)(Cr,{info:e,setWebsiteSettingRows:i})})];return(0,tl.jsx)("div",{children:(0,tl.jsx)(az.r,{autoWidth:!0,columns:p,data:f,enableSorting:!0,modifiedCells:o,onUpdateCellData:u,resizable:!0,setRowId:e=>e.rowId})})},Co=()=>{let[e]=ih.Form.useForm(),[t,i]=(0,ts.useState)(""),[n,r]=(0,ts.useState)(1),[a,o]=(0,ts.useState)(20),{data:l}=Ci(),s=null==l?void 0:l.items,d=(0,eY.isUndefined)(s)?[]:s.map(e=>({value:e.key,label:e.title})),{data:f,isLoading:c,isFetching:u,error:m}=Ce((0,ts.useMemo)(()=>({body:{filters:{page:n,pageSize:a,columnFilters:t.length>0?[{key:"name",type:"like",filterValue:t}]:[]}}}),[t,n,a]),{refetchOnMountOrArgChange:!0}),{createNewSetting:p,createLoading:g}=Cn(),h=(0,pU.useAppDispatch)(),[b,y]=(0,ts.useState)([]),v=(null==f?void 0:f.items)??[],x=[...b].sort((e,t)=>{let i=e.name??"",n=t.name??"";return i.localeCompare(n)});(0,ts.useEffect)(()=>{(0,eY.isUndefined)(v)||y(v.map(e=>({...e,rowId:(0,ov.uuid)()})))},[v]),(0,ts.useEffect)(()=>{(0,eY.isUndefined)(m)||(0,is.ZP)(new is.MS(m))},[m]);let{showModal:j,closeModal:w,renderModal:C}=(0,ih.useModal)({type:"error"}),{showModal:k,closeModal:T,renderModal:S}=(0,ih.useModal)({type:"error"}),D=(0,tl.jsxs)(tl.Fragment,{children:[(0,tl.jsx)(C,{footer:(0,tl.jsx)(ih.ModalFooter,{children:(0,tl.jsx)(ih.Button,{onClick:w,type:"primary",children:(0,ii.t)("button.ok")})}),title:(0,ii.t)("website-settings.website-settings-already-exist.title"),children:(0,ii.t)("website-settings.website-settings-already-exist.error")}),(0,tl.jsx)(S,{footer:(0,tl.jsx)(ih.ModalFooter,{children:(0,tl.jsx)(ih.Button,{onClick:T,type:"primary",children:(0,ii.t)("button.ok")})}),title:(0,ii.t)("website-settings.website-settings.add-entry-mandatory-fields-missing.title"),children:(0,ii.t)("website-settings.website-settings.add-entry-mandatory-fields-missing.error")})]}),E=async(t,i)=>{let n=void 0!==i&&""!==i;if(""===t||void 0===t||!n)return void k();if((null==b?void 0:b.find(e=>e.name===t))!==void 0)return void j();let{success:r,data:a}=await p(t,i);r&&void 0!==a&&(y(e=>[{...a,rowId:(0,ov.uuid)()},...e]),e.resetFields())};return(0,tl.jsx)(aF.D,{renderToolbar:(0,tl.jsxs)(aO.o,{theme:"secondary",children:[(0,tl.jsx)(aM.h,{disabled:u,icon:{value:"refresh"},onClick:()=>{h(w7.util.invalidateTags(aw.invalidatingTags.WEBSITE_SETTINGS()))}}),(0,tl.jsx)(ih.Pagination,{current:n,onChange:(e,t)=>{r(e),o(t)},showSizeChanger:!0,showTotal:e=>(0,ii.t)("pagination.show-total",{total:e}),total:(null==f?void 0:f.totalItems)??0})]}),renderTopBar:(0,tl.jsxs)(aO.o,{justify:"space-between",margin:{x:"mini",y:"none"},padding:{x:"small"},theme:"secondary",children:[(0,tl.jsxs)(rZ.k,{gap:"small",children:[(0,tl.jsx)(vw.D,{children:(0,ii.t)("widget.website-settings")}),(0,tl.jsx)(ih.Form,{form:e,layout:"inline",onFinish:e=>{let{name:t,type:i}=e;E(t,i)},children:(0,tl.jsxs)(rZ.k,{children:[(0,tl.jsx)(ih.Form.Item,{name:"name",children:(0,tl.jsx)(ih.Input,{placeholder:(0,ii.t)("properties.add-custom-property.key")})}),(0,tl.jsx)(ih.Form.Item,{name:"type",children:(0,tl.jsx)(ih.Select,{className:"min-w-100",options:d,placeholder:(0,ii.t)("properties.add-custom-property.type")})}),(0,tl.jsx)(ih.Form.Item,{children:(0,tl.jsx)(ih.IconTextButton,{htmlType:"submit",icon:{value:"new"},loading:g,children:(0,ii.t)("website-settings.new")})})]})})]}),(0,tl.jsx)(ih.SearchInput,{loading:u,onSearch:e=>{i(e)},placeholder:"Search",withPrefix:!1,withoutAddon:!1})]}),children:(0,tl.jsx)(aB.V,{loading:c||u,margin:{x:"extra-small",y:"none"},none:(0,eY.isUndefined)(b)||0===b.length,children:(0,tl.jsxs)(ih.Box,{margin:{x:"extra-small",y:"none"},children:[(0,tl.jsx)(Ca,{setWebsiteSettingRows:y,typeSelectOptions:d,websiteSettingRows:x}),D]})})})};eR._.registerModule({onInit:()=>{eB.nC.get(eO.j.mainNavRegistry).registerMainNavItem({path:"ExperienceEcommerce/Website Settings",label:"navigation.website-settings",order:100,className:"item-style-modifier",permission:jg.P.WebsiteSettings,perspectivePermission:jp.WebsiteSettings,widgetConfig:{name:"Website Settings",id:"website-settings",component:"website-settings",config:{translationKey:"widget.website-settings",icon:{type:"name",value:"web-settings"}}}}),eB.nC.get(eO.j.widgetManager).registerWidget({name:"website-settings",component:Co})}});let Cl=(0,ts.createContext)({domain:"message",setDomain:()=>{}}),Cs=e=>{let{children:t}=e,[i,n]=(0,ts.useState)("messages");return(0,ts.useMemo)(()=>(0,tl.jsx)(Cl.Provider,{value:{domain:i,setDomain:n},children:t}),[i,t])},Cd=()=>{let e=(0,ts.useContext)(Cl);if(void 0===e)throw Error("useTranslationDomain must be used within a TranslationDomainProvider");return e};var Cf=i(54246),Cc=i(11347);let Cu=()=>{let e=(0,p5.r)(),{domain:t}=Cd(),[i,{isLoading:n}]=(0,Cc.KY)(),[r,{isLoading:a}]=(0,Cc.KK)(),[o,{isLoading:l}]=(0,Cc.XO)(),s=(e,t,i)=>({translation:e[`_${t}`]??"",locale:t});return{createNewTranslation:async n=>{try{let r={translationData:[{key:n,type:"simple",domain:t}]},a=await i({createTranslation:r});if("data"in a){let t={key:r.translationData[0].key,type:r.translationData[0].type,...e.validLanguages.reduce((e,t)=>(e[`_${t}`]="",e),{})};return{success:!0,data:t}}}catch{(0,is.ZP)(new is.aE("Was not able to create Translation"))}return{success:!1}},createLoading:n,deleteTranslationByKey:async e=>{try{let i=await r({key:e,domain:t});return{success:"data"in i}}catch{return(0,is.ZP)(new is.aE("Was not able to delete Translation")),{success:!1}}},deleteLoading:a,updateTranslationByKey:async(e,t,i)=>{try{if("type"===e){let e=Object.keys(t).filter(e=>e.startsWith("_")).map(e=>e.substring(1));if(e.length>0){let n=e[0],r=[s(t,n,i)],a=await o({domain:i,body:{data:[{key:t.key,type:t.type,translationData:r}]}});return{success:"data"in a}}return(0,is.ZP)(new is.aE("No locales found in translation row data")),{success:!1}}let n=e.substring(1),r=[s(t,n,i)],a=await o({domain:i,body:{data:[{key:t.key,type:t.type,translationData:r}]}});return{success:"data"in a}}catch{return(0,is.ZP)(new is.aE("Was not able to update Translation")),{success:!1}}},updateLoading:l}},Cm=e=>{let{info:t,setTranslationRows:i}=e,n=t.row.original.key,{deleteTranslationByKey:r,deleteLoading:a}=Cu(),o=async()=>{let{success:e}=await r(n);e&&i(e=>e.filter(e=>e.key!==n))};return(0,tl.jsx)(ih.Flex,{align:"center",className:"translations-table--actions-column",justify:"center",children:(0,tl.jsx)(ih.IconButton,{icon:{value:"trash"},loading:a,onClick:o,type:"link"})})},Cp=e=>{let{language:t,display:i}=e;return(0,tl.jsxs)("div",{style:{display:"flex",alignItems:"center",gap:"8px"},children:[(0,tl.jsx)(vT.U,{value:t}),(0,tl.jsx)("span",{children:i})]})};var Cg=i(45681);let Ch=e=>{let{translationRow:t,locale:i,...n}=e,{t:r}=(0,t7.useTranslation)(),[a]=ih.Form.useForm(),[o,l]=(0,ts.useState)(!1),{updateTranslationByKey:s}=Cu(),{domain:d}=Cd(),f=(null==t?void 0:t[`_${i}`])??"",[c,u]=(0,ts.useState)("plain-text"),[m,p]=(0,ts.useState)(""),g=(0,ts.useMemo)(()=>(0,Cg.ug)(f),[f]),h=(0,Cg.ug)(m),b=g&&h;(0,ts.useEffect)(()=>{null!==t&&n.open&&(a.setFieldsValue({translation:f}),p(f),u(b?"html":"plain-text"))},[t,i,n.open,a,f]);let y=async e=>{if(null!==t){if(l(!0),void 0!==n.onSave)n.onSave(e.translation);else{let n={...t,[`_${i}`]:e.translation};await s(`_${i}`,n,d)}n.setOpen(!1),a.resetFields(),l(!1)}},v=[{label:r("translations.edit-modal.tab.plain-text"),key:"plain-text",children:(0,tl.jsx)(ih.Form.Item,{name:"translation",children:(0,tl.jsx)(ih.TextArea,{autoSize:{minRows:3,maxRows:15}})})},{label:r("translations.edit-modal.tab.html"),key:"html",children:(0,tl.jsx)(ih.Form.Item,{name:"translation",children:(0,tl.jsx)(rP.F,{context:rF.v.TRANSLATION,height:300})})}],x=b?[v[1]]:v;return(0,tl.jsx)(av.u,{footer:(0,tl.jsx)(p1.m,{children:(0,tl.jsxs)(rZ.k,{justify:"space-between",style:{width:"100%"},children:[(0,tl.jsx)("div",{children:h&&(0,tl.jsx)(ih.Button,{onClick:()=>{let e=(0,Cg.oN)(m,[]),t=(0,Cg.aV)(e);a.setFieldsValue({translation:t.trim()}),p(t.trim()),u("plain-text")},type:"default",children:r("translations.edit-modal.restore")})}),(0,tl.jsx)(ih.Button,{loading:o,onClick:()=>{a.submit()},type:"primary",children:r("translations.edit-modal.save")})]})}),onCancel:()=>{n.setOpen(!1),a.resetFields()},open:n.open,size:"L",title:(0,tl.jsx)(p3.r,{iconName:"edit",children:r("translations.edit-modal.title")}),children:(0,tl.jsx)(ih.Form,{form:a,onFinish:y,onValuesChange:(e,t)=>{p(t.translation??"")},children:(0,tl.jsx)(ay.m,{activeKey:b?"html":c,destroyInactiveTabPane:!0,items:x,onChange:e=>{let t=a.getFieldsValue().translation??"";"html"===e&&"plain-text"===c?t=t.replace(/\n/g,"
"):"plain-text"===e&&"html"===c&&(t=t.replace(//gi,"\n")),a.setFieldsValue({translation:t}),p(t),u(e)}})})})},Cb=e=>{let{translationRows:t,setTranslationRows:i,visibleLocales:n,editableLocales:r,domainLanguages:a,sorting:o,onSortingChange:l}=e,{t:s}=(0,t7.useTranslation)(),{updateTranslationByKey:d}=Cu(),{domain:f}=Cd(),[c,u]=(0,ts.useState)([]),[m,p]=(0,ts.useState)(!1),[g,h]=(0,ts.useState)(null),[b,y]=(0,ts.useState)(""),v=n.map(e=>{let t=a.find(t=>t.locale===e);return(0,eY.isUndefined)(t)?((0,jN.trackError)(new jN.GeneralError(`Language "${e}" not found in domain languages`)),{language:e,display:e.toUpperCase(),canEdit:r.includes(e)}):{language:t.locale,display:t.displayName,canEdit:r.includes(e)}}).filter(Boolean),x=(0,aj.createColumnHelper)(),[j,w]=(0,ts.useState)(null),C=async(e,t,i)=>await new Promise(n=>{h(void 0!==i?{...e,[t]:i}:e),y(t.replace("_","")),w(()=>n),p(!0)}),k=(0,ts.useMemo)(()=>v.map(e=>x.accessor(`_${e.language}`,{id:`_${e.language}`,header:()=>(0,tl.jsx)(Cp,{display:e.display,language:e.language}),meta:{editable:e.canEdit??!1,type:"textarea",callback:!0,editCallback:C,htmlDetection:!0},size:200})),[v,x,C]),T=[{value:"simple",label:s("translations.type-options.simple")},{value:"custom",label:s("translations.type-options.custom")}],S=(0,ts.useMemo)(()=>[x.accessor("key",{header:s("translations.columns.key"),meta:{editable:!1},size:200}),x.accessor("type",{header:s("translations.columns.type"),meta:{type:"select",editable:!0,config:{options:T}},size:100}),...k,x.accessor("actions",{header:s("translations.columns.actions"),size:80,enableSorting:!1,cell:e=>(0,tl.jsx)(Cm,{info:e,setTranslationRows:i})})],[k,t,n,r]),D=async e=>{let{columnId:t,value:n,rowData:r}=e,a=r.rowId,o={...r,[t]:n};i(e=>e.map(e=>e.rowId===a?o:e)),u([{columnId:t,rowIndex:a}]);let{success:l}=await d(t,o,f);l?u([]):i(e=>e.map(e=>e.rowId===a?r:e))};return(0,tl.jsxs)("div",{children:[(0,tl.jsx)(az.r,{autoWidth:!0,columns:S,data:t,enableSorting:!0,manualSorting:!0,modifiedCells:c,onSortingChange:l,onUpdateCellData:D,resizable:!0,setRowId:e=>e.rowId,sorting:o}),(0,tl.jsx)(Ch,{locale:b,onSave:e=>{null!==j&&(j(e),w(null))},open:m,setOpen:e=>{p(e),e||null===j||(j((null==g?void 0:g[`_${b}`])??""),w(null))},translationRow:g})]})},Cy=e=>{let{MandatoryModal:t,closeMandatoryModal:i}=e;return(0,tl.jsx)(t,{footer:(0,tl.jsx)(ih.ModalFooter,{children:(0,tl.jsx)(ih.Button,{onClick:i,type:"primary",children:(0,ii.t)("button.ok")})}),title:(0,ii.t)("translations.add-translation-mandatory-field-missing.title"),children:(0,ii.t)("translations.add-translation-mandatory-field-missing.error")})},Cv=()=>{let[e]=ih.Form.useForm(),t=(0,pU.useAppDispatch)(),{showModal:i,closeModal:n,renderModal:r}=(0,ih.useModal)({type:"error"}),{createNewTranslation:a,createLoading:o}=Cu(),{domain:l,setDomain:s}=Cd(),[d,f]=(0,ts.useState)(null),[c,u]=(0,ts.useState)([]),[m,p]=(0,ts.useState)(""),[g,h]=(0,ts.useState)(1),[b,y]=(0,ts.useState)(20),[v,x]=(0,ts.useState)([{id:"key",desc:!1}]),{data:j,isLoading:w,error:C}=(0,Cf.Oc)(),k=j??[],T=k.find(e=>e.domain===l),S=(null==T?void 0:T.isFrontendDomain)??!1,D=(()=>{let e=(0,dj.a)(),{getDisplayName:t,isLoading:i}=(0,vS.Z)();return{languages:(0,ts.useMemo)(()=>{let i=e.allowedLanguagesForEditingWebsiteTranslations??[];return Array.from(new Set(e.allowedLanguagesForViewingWebsiteTranslations??[])).filter(e=>!(0,eY.isNil)(e)&&(0,eY.isString)(e)).map(e=>({locale:e,displayName:t(e),canEdit:i.includes(e),canView:!0})).sort((e,t)=>(e.displayName??"UNKNOWN").localeCompare(t.displayName??"UNKNOWN"))},[e,t]),isLoading:i}})(),E=(()=>{let e=(0,p5.r)(),{getDisplayName:t,isLoading:i}=(0,vS.Z)();return{languages:(0,ts.useMemo)(()=>((null==e?void 0:e.availableAdminLanguages)??[]).filter(e=>!(0,eY.isNil)(e)&&(0,eY.isString)(e)).map(e=>({locale:e,displayName:t(e),canEdit:!0,canView:!0})).sort((e,t)=>(e.displayName??"UNKNOWN").localeCompare(t.displayName??"UNKNOWN")),[e,t]),isLoading:i}})(),{languages:M,isLoading:I}=S?D:E,L=(0,ts.useMemo)(()=>({domain:l,body:{filters:{page:g,pageSize:b,columnFilters:m.length>=0?[{type:"search",filterValue:m}]:[],sortFilter:v.length>0?{key:v[0].id.startsWith("_")?v[0].id.substring(1):v[0].id,direction:v[0].desc?"DESC":"ASC"}:[]}}}),[l,g,b,m,v]),{data:P,isLoading:N,isFetching:A,error:R}=(0,Cf.m4)(L,{refetchOnMountOrArgChange:!0});(0,ts.useEffect)(()=>{k.length>0&&!k.some(e=>e.domain===l)&&s(k[0].domain)},[k,l]),(0,ts.useEffect)(()=>{void 0!==P&&u(P.items.map(e=>{let t={key:e.key,type:e.type,rowId:(0,ov.uuid)()};return null!==e.translations&&"object"==typeof e.translations&&Object.entries(e.translations).forEach(e=>{let[i,n]=e;t[`_${i}`]="string"==typeof n?n:""}),t}))},[P]),(0,ts.useEffect)(()=>{(0,eY.isUndefined)(C)||(0,is.ZP)(new is.MS(C))},[C]),(0,ts.useEffect)(()=>{(0,eY.isUndefined)(R)||(0,is.ZP)(new is.MS(R))},[R]);let O=M.filter(e=>e.canView),B=M.filter(e=>e.canEdit),F=async t=>{if(""===t||void 0===t)return void i();let{success:n,data:r}=await a(t);if(n&&void 0!==r){let t={...r,rowId:(0,ov.uuid)()};u(e=>[t,...e]),e.resetFields()}};return(0,tl.jsx)(aF.D,{renderToolbar:(0,tl.jsxs)(aO.o,{theme:"secondary",children:[(0,tl.jsx)(aM.h,{disabled:N,icon:{value:"refresh"},onClick:()=>{t(Cf.hi.util.invalidateTags(gi.xc.DOMAIN_TRANSLATIONS()))}}),(0,tl.jsx)(ih.Pagination,{current:g,onChange:(e,t)=>{h(e),y(t)},showSizeChanger:!0,showTotal:e=>(0,ii.t)("pagination.show-total",{total:e}),total:(null==P?void 0:P.totalItems)??0})]}),renderTopBar:(0,tl.jsxs)(aO.o,{justify:"space-between",margin:{x:"mini",y:"none"},theme:"secondary",children:[(0,tl.jsxs)(rZ.k,{gap:"small",children:[(0,tl.jsx)(vw.D,{children:(0,ii.t)("translations.new-translation")}),(0,tl.jsx)(ih.Form,{form:e,layout:"inline",onFinish:e=>{let{translationKey:t}=e;F(t)},children:(0,tl.jsxs)(rZ.k,{children:[(0,tl.jsx)(ih.Form.Item,{name:"translationKey",children:(0,tl.jsx)(ih.Input,{placeholder:(0,ii.t)("translations.add-translation.key")})}),(0,tl.jsx)(ih.Form.Item,{children:(0,tl.jsx)(ih.IconTextButton,{htmlType:"submit",icon:{value:"new"},loading:o,children:(0,ii.t)("translations.new")})})]})}),(0,tl.jsx)(ih.Select,{loading:w,onChange:e=>{s(e),h(1)},options:k.map(e=>({value:e.domain,label:e.domain})),placeholder:(0,ii.t)("translations.select-domain"),style:{minWidth:120},value:l})]}),(0,tl.jsxs)(rZ.k,{gap:"small",children:[(0,tl.jsx)(ih.Select,{allowClear:!0,disabled:0===O.length||I,dropdownStyle:{minWidth:250},filterOption:(e,t)=>{var i;return((null==t||null==(i=t.label)?void 0:i.toString())??"").toLowerCase().includes(e.toLowerCase())},loading:I,maxTagCount:"responsive",mode:"multiple",onChange:e=>{f(e.length>0?e:null)},options:O.map(e=>({value:e.locale,label:e.displayName})),placeholder:(0,ii.t)("translations.show-hide-locale"),showSearch:!0,style:{minWidth:220},value:d??[]}),(0,tl.jsx)(ih.SearchInput,{loading:N,onSearch:e=>{p(e),h(1)},placeholder:"Search",withPrefix:!1,withoutAddon:!1})]})]}),children:(0,tl.jsx)(aB.V,{loading:N||A||I,margin:{x:"extra-small",y:"none"},none:!N&&!I&&0===c.length,children:(0,tl.jsxs)(ih.Box,{margin:{x:"extra-small",y:"none"},children:[(0,tl.jsx)(Cb,{domainLanguages:M,editableLocales:B.map(e=>e.locale),onSortingChange:e=>{x(e),h(1)},setTranslationRows:u,sorting:v,translationRows:c,visibleLocales:d??O.map(e=>e.locale)}),(0,tl.jsx)(Cy,{MandatoryModal:r,closeMandatoryModal:n})]})})})},Cx=()=>(0,tl.jsx)(Cs,{children:(0,tl.jsx)(Cv,{})});eR._.registerModule({onInit:()=>{eB.nC.get(eO.j.mainNavRegistry).registerMainNavItem({path:"Translations/Translations",label:"navigation.translations",className:"item-style-modifier",order:100,permission:jg.P.Translations,perspectivePermission:jp.PredefinedProperties,widgetConfig:{name:"Translations",id:"translations",component:"translations",config:{translationKey:"widget.translations",icon:{type:"name",value:"translate"}}}}),eB.nC.get(eO.j.widgetManager).registerWidget({name:"translations",component:Cx})}});let{FilterProvider:Cj,useFilterContext:Cw}=function(){let e=(0,ts.createContext)(void 0);return{FilterProvider:t=>{let{children:i,initialValue:n}=t,[r,a]=(0,ts.useState)(n),o=()=>{a(n)},l=(0,ts.useMemo)(()=>({filters:r,setFilters:a,resetFilters:o}),[r,n]);return(0,tl.jsx)(e.Provider,{value:l,children:i})},useFilterContext:function(){let t=(0,ts.useContext)(e);if((0,eY.isUndefined)(t))throw Error("useFilterContext must be used within a FilterProvider");return t}}}(),CC=(0,ts.createContext)(void 0),Ck=e=>{let{children:t}=e,[i,n]=(0,ts.useState)([]),[r,a]=(0,ts.useState)([]),o=()=>{n(r)},l=e=>{n([...i,e])},s=(0,ts.useMemo)(()=>({columns:i,setColumns:n,initialColumns:r,setInitialColumns:a,resetColumnsToInitial:o,addColumn:l}),[i,n,r,a]);return(0,tl.jsx)(CC.Provider,{value:s,children:t})},CT=()=>{let e=(0,ts.useContext)(CC);if((0,eY.isUndefined)(e))throw Error("useColumnsContext must be used within a ColumnsProvider");return e},CS=void 0,CD=(0,ts.createContext)(void 0),CE=e=>{let{name:t,children:i}=e,[n,r]=(0,ts.useState)(1),[a,o]=(0,ts.useState)(50),[l,s]=(0,ts.useState)(CS),{filters:d}=Cw(),f=()=>{r(1),o(50),s(CS)},c=(e=>{let{name:t,filters:i,page:n,pageSize:r,sorting:a}=e,{isLoading:o,data:l,refetch:s,isFetching:d}=nj({name:t},{skip:(0,dW.O)(t)}),{isLoading:f,data:c,refetch:u,isFetching:m}=ng({body:{name:t,filters:i,page:n,pageSize:r,sortBy:null==a?void 0:a.sortBy,sortOrder:null==a?void 0:a.sortOrder}},{skip:(0,dW.O)(t)});return{reportDetailData:l,chartDetailData:c,isLoading:o||f,isFetching:d||m,refetchAll:()=>{s().catch(e=>{console.error(e)}),u().catch(e=>{console.error(e)})}}})({name:t,filters:d,page:n,pageSize:a,sorting:l}),u=(0,ts.useMemo)(()=>({...c,page:n,setPage:r,pageSize:a,setPageSize:o,sorting:l,setSorting:s,resetData:f}),[c,n,r,a,o,l,s]);return(0,tl.jsx)(CD.Provider,{value:u,children:i})},CM=()=>{let e=(0,ts.useContext)(CD);if((0,eY.isUndefined)(e))throw Error("useReportDataContext must be used within a ReportDataProvider");return e},CI=e=>{let{isFetching:t,refetch:i}=e;return t?(0,tl.jsx)(aL.x,{padding:{x:"extra-small",y:"extra-small"},children:(0,tl.jsx)(aI.y,{})}):(0,tl.jsx)(aM.h,{icon:{value:"refresh"},onClick:async()=>{i()}})};var CL=i(83472);let CP=(0,ia.createStyles)(e=>{let{css:t,token:i}=e;return{selectReportLabel:t` + `}}),wq=e=>{let{open:t,onClose:i,results:n}=e,{styles:r}=wU();if(null===n)return(0,to.jsx)(to.Fragment,{});let a=n.errored>0&&"object"==typeof n.errors&&Object.keys(n.errors).length>0;return(0,to.jsxs)(ih.Modal,{footer:null,onCancel:i,open:t,size:"M",title:(0,ii.t)("redirects.csv-import-modal.redirects-import"),children:[(0,to.jsx)("div",{className:r.statisticsContainer,children:(0,to.jsxs)("div",{className:"statistics-list",children:[(0,to.jsxs)(ih.Flex,{children:[(0,to.jsx)("div",{className:"statistic-normal",children:(0,ii.t)("redirects.csv-import-results.total")}),(0,to.jsx)("div",{children:n.total})]}),(0,to.jsxs)(ih.Flex,{children:[(0,to.jsx)("div",{className:"statistic-bold",children:(0,ii.t)("redirects.csv-import-results.created")}),(0,to.jsx)("div",{className:"statistic-bold",children:n.created})]}),(0,to.jsxs)(ih.Flex,{children:[(0,to.jsx)("div",{className:"statistic-bold",children:(0,ii.t)("redirects.csv-import-results.updated")}),(0,to.jsx)("div",{className:"statistic-bold",children:n.updated})]}),n.errored>0&&(0,to.jsxs)(ih.Flex,{className:ly()("statistic-item","errored"),children:[(0,to.jsx)("div",{className:"statistic-bold",children:(0,ii.t)("redirects.csv-import-results.errored")}),(0,to.jsx)("div",{className:"statistic-bold",children:n.errored})]})]})}),a&&(0,to.jsx)("div",{className:r.errorSection,children:(0,to.jsx)("div",{className:"error-list",children:(0,to.jsxs)(ih.Flex,{className:"error-item",gap:8,justify:"space-between",children:[(0,to.jsx)(rR.J,{className:"error-icon",options:{width:20,height:20},value:"alert"}),(0,to.jsx)(ih.Flex,{vertical:!0,children:Object.entries(n.errors).map(e=>{let[t,i]=e;return(0,to.jsxs)(ih.Flex,{children:[(0,to.jsxs)("span",{className:"error-line",children:[(0,ii.t)("redirects.csv-import-results.line",{line:t}),":"]}),(0,to.jsx)("span",{className:"error-message",children:"string"==typeof i?i:JSON.stringify(i)})]},t)})})]})})})]})},wZ=e=>{let{currentPage:t,redirectRowsLength:i,redirectsFetching:n,totalItems:r,onPageChange:a,onRefresh:l}=e,{t:o}=(0,t7.useTranslation)(),s=(0,pU.useAppDispatch)(),[d,f]=(0,ts.useState)(!1),[c,u]=(0,ts.useState)(!1),[m,p]=(0,ts.useState)(null),[g,h]=(0,ts.useState)(!1),{cleanupRedirects:b,cleanupLoading:y}=w_(),[v,{isLoading:x}]=wR(),j=async()=>{let{success:e}=await b();e&&l()},w=async()=>{try{h(!0);let e=await s(wE.endpoints.bundleSeoRedirectsExport.initiate());if("data"in e&&e.data instanceof Blob){let t=window.URL.createObjectURL(e.data),i=document.createElement("a");i.href=t,i.download=`redirects-export-${new Date().toISOString().split("T")[0]}.csv`,i.style.display="none",document.body.appendChild(i),i.click(),document.body.removeChild(i),window.URL.revokeObjectURL(t)}else(0,is.ZP)(new is.aE("Export failed: No blob data received"))}catch{(0,is.ZP)(new is.aE("Failed to export redirects"))}finally{h(!1)}},C=async e=>{try{let t=await v({body:{file:e}}).unwrap();p(t),f(!1),u(!0),l()}catch{(0,is.ZP)(new is.aE("Failed to import redirects"))}};return(0,to.jsxs)(to.Fragment,{children:[(0,to.jsxs)(aO.o,{theme:"secondary",children:[(0,to.jsx)(rZ.k,{align:"center",justify:"start",style:{width:"100%",height:"100%"},children:(0,to.jsxs)("div",{children:[(0,to.jsx)(ih.IconTextButton,{disabled:i<1||y||n,icon:{value:"trash"},loading:y,onClick:j,type:"link",children:o("redirects.clean-up")}),(0,to.jsx)(ih.IconTextButton,{disabled:i<1||n||g,icon:{value:"download"},loading:g,onClick:w,type:"link",children:o("redirects.csv-export")}),(0,to.jsx)(ih.IconTextButton,{disabled:n||x,icon:{value:"import-csv"},loading:x,onClick:()=>{f(!0)},type:"link",children:o("redirects.csv-import")})]})}),r>0?(0,to.jsxs)(ih.Split,{children:[(0,to.jsx)(rZ.k,{align:"center",children:(0,to.jsx)(aM.h,{disabled:n,icon:{value:"refresh"},onClick:l,variant:"minimal"})}),(0,to.jsx)(ih.Pagination,{current:t,onChange:(e,t)=>{a(e,t)},showSizeChanger:!0,showTotal:e=>o("pagination.show-total",{total:e}),total:r})]}):(0,to.jsx)(rZ.k,{align:"center",children:(0,to.jsx)(aM.h,{disabled:n,icon:{value:"refresh"},onClick:l})})]}),(0,to.jsx)(wG,{loading:x,onCancel:()=>{f(!1)},onImport:C,open:d}),(0,to.jsx)(wq,{onClose:()=>{u(!1)},open:c,results:m})]})},wK=e=>{let{redirectsLoading:t,createLoading:i,redirectsFetching:n,onBeginnerClick:r,onExpertClick:a,onSearch:l}=e,{t:o}=(0,t7.useTranslation)();return(0,to.jsxs)(aO.o,{justify:"space-between",margin:{x:"mini",y:"none"},theme:"secondary",children:[(0,to.jsxs)(rZ.k,{gap:"small",children:[(0,to.jsx)(vw.D,{children:o("widget.redirects")}),(0,to.jsx)(ih.IconTextButton,{disabled:t||i||n,icon:{value:"new"},onClick:r,children:o("redirects.beginner")}),(0,to.jsx)(ih.IconTextButton,{disabled:t||i||n,icon:{value:"new"},loading:i,onClick:a,children:o("redirects.expert")})]}),(0,to.jsx)(ih.SearchInput,{loading:n||t,onSearch:l,placeholder:o("redirects.search"),withPrefix:!1,withoutAddon:!1})]})},wJ=e=>{var t;let{open:i,setOpen:n,createRedirect:r}=e,{t:a}=(0,t7.useTranslation)(),[l]=(0,y_.Z)(),[o,s]=(0,ts.useState)(!1),{data:d}=wF(),f=(null==d||null==(t=d.types)?void 0:t.map(e=>({label:a(e),value:e})))??[],c=async e=>{s(!0),await r({type:e.type,source:e.path,target:e.target})&&(n(!1),l.resetFields()),s(!1)};return(0,to.jsx)(av.u,{cancelButtonProps:{style:{display:"none"}},okButtonProps:{loading:o},okText:a("redirects.beginner-modal.create"),onCancel:()=>{n(!1),l.resetFields()},onOk:()=>{l.submit()},open:i,size:"M",title:(0,to.jsx)(p3.r,{iconName:"new",children:a("redirects.beginner-modal.title")}),children:(0,to.jsxs)(tc.l,{form:l,layout:"vertical",onFinish:c,children:[(0,to.jsx)(tc.l.Item,{label:a("redirects.beginner-modal.type"),name:"type",rules:[{required:!0,message:a("redirects.beginner-modal.type.required")}],children:(0,to.jsx)(tC.P,{options:f,placeholder:a("redirects.beginner-modal.type")})}),(0,to.jsx)(tc.l.Item,{label:a("redirects.beginner-modal.path"),name:"path",rules:[{required:!0,message:a("redirects.beginner-modal.path.required")}],children:(0,to.jsx)(ae.I,{placeholder:a("redirects.beginner-modal.path")})}),(0,to.jsx)(tc.l.Item,{label:a("redirects.beginner-modal.target"),name:"target",rules:[{required:!0,message:a("redirects.beginner-modal.target.required")}],children:(0,to.jsx)(ae.I,{placeholder:a("redirects.beginner-modal.target")})})]})})},wX=()=>{let e=(0,pU.useAppDispatch)(),[t,i]=(0,ts.useState)(1),[n,r]=(0,ts.useState)(50),[a,l]=(0,ts.useState)([{id:"source",desc:!1}]),[o,s]=(0,ts.useState)(""),[d,f]=(0,ts.useState)(!1),{createNewRedirect:c,createLoading:u}=w_(),[m,p]=(0,ts.useState)([]),{data:g,isLoading:h,isFetching:b,error:y}=wL((0,ts.useMemo)(()=>({body:{filters:{page:t,pageSize:n,columnFilters:""!==o?[{type:"search",filterValue:o}]:[]},sortFilter:a.length>0?{key:a[0].id.startsWith("_")?a[0].id.substring(1):a[0].id,direction:a[0].desc?"DESC":"ASC"}:[]}}),[t,n,o,a]),{refetchOnMountOrArgChange:!0}),v=null==g?void 0:g.items,x=async e=>{let t=(0,lv.uuid)(),i={id:Date.now(),type:(null==e?void 0:e.type)??"entire_uri",source:(null==e?void 0:e.source)??null,target:(null==e?void 0:e.target)??null,sourceSite:null,targetSite:null,statusCode:301,priority:1,regex:!1,active:!0,passThroughParameters:!1,expiry:null,creationDate:Date.now(),modificationDate:Date.now(),userOwner:null,userModification:null,additionalAttributes:void 0,rowId:t};p(e=>[i,...e]);let{success:n,data:r}=await c(e);return n&&!(0,eY.isUndefined)(r)?p(e=>e.map(e=>e.rowId===t?{...r,rowId:(0,lv.uuid)()}:e)):p(e=>e.filter(e=>e.rowId!==t)),n};(0,ts.useEffect)(()=>{(0,eY.isUndefined)(v)||p(v.map(e=>({...e,rowId:(0,lv.uuid)()})))},[v]),(0,ts.useEffect)(()=>{(0,eY.isUndefined)(y)||(0,is.ZP)(new is.MS(y))},[y]);let j=h||b;return(0,to.jsxs)(aF.D,{renderToolbar:(0,to.jsx)(wZ,{currentPage:t,onPageChange:(e,t)=>{i(e),r(t)},onRefresh:()=>{e(wE.util.invalidateTags(aw.invalidatingTags.REDIRECTS()))},redirectRowsLength:m.length,redirectsFetching:j,totalItems:(null==g?void 0:g.totalItems)??0}),renderTopBar:(0,to.jsx)(wK,{createLoading:u,onBeginnerClick:()=>{f(!0)},onExpertClick:async()=>{await x()},onSearch:e=>{s(e),i(1)},redirectsFetching:j,redirectsLoading:h}),children:[(0,to.jsx)(aB.V,{loading:j,margin:{x:"extra-small",y:"none"},none:!j&&0===m.length,children:(0,to.jsx)(ih.Box,{margin:{x:"extra-small",y:"none"},children:(0,to.jsx)(w$,{onSortingChange:e=>{l(e),i(1)},redirectRows:m,setRedirectRows:p,sorting:a})})}),(0,to.jsx)(wJ,{createRedirect:x,open:d,setOpen:f})]})};eR._.registerModule({onInit:()=>{eB.nC.get(eO.j.mainNavRegistry).registerMainNavItem({path:"ExperienceEcommerce/Redirects",label:"navigation.redirects",className:"item-style-modifier",order:600,permission:jg.P.Redirects,perspectivePermission:jp.Redirects,widgetConfig:{name:"Redirects",id:"redirects",component:"redirects",config:{translationKey:"widget.redirects",icon:{type:"name",value:"redirect"}}}}),eB.nC.get(eO.j.widgetManager).registerWidget({name:"redirects",component:wX})}});let wQ=()=>{let[e,{isLoading:t}]=(0,v9.ZR)(),[i,{isLoading:n}]=(0,v9.c8)(),[r,{isLoading:a}]=(0,v9.rZ)(),l={docTypeAddParameters:{name:"New Document Type",type:"page"}};return{createNewDocumentType:async()=>{try{let t=await e(l);if((0,eY.isUndefined)(t.error)||(0,is.ZP)(new is.MS(t.error)),"data"in t)return{success:!0,data:t.data}}catch{(0,is.ZP)(new is.aE("Was not able to create DocumentType"))}return{success:!1}},createLoading:t,deleteDocumentTypeById:async e=>{try{let t=await i({id:e});return(0,eY.isUndefined)(t.error)||(0,is.ZP)(new is.MS(t.error)),{success:"data"in t}}catch{return(0,is.ZP)(new is.aE("Was not able to delete DocumentType")),{success:!1}}},deleteLoading:n,updateDocumentTypeById:async(e,t)=>{try{let i=await r({id:e,docTypeUpdateParameters:{name:t.name??"",type:t.type??"",group:t.group??"",controller:t.controller??"",template:t.template??"",priority:t.priority??0,staticGeneratorEnabled:t.staticGeneratorEnabled??!1}});return(0,eY.isUndefined)(i.error)||(0,is.ZP)(new is.MS(i.error)),{success:"data"in i}}catch{return(0,is.ZP)(new is.aE("Was not able to update DocumentType")),{success:!1}}},updateLoading:a}},wY=e=>{let{documentTypeRows:t,setDocumentTypeRows:i,config:n}=e,{t:r}=(0,t7.useTranslation)(),{updateDocumentTypeById:a}=wQ(),{controllers:l,templates:o,docTypes:s}=n,[d,f]=(0,ts.useState)([]),c=l.map(e=>e.name),u=o.map(e=>e.path),m=s.map(e=>e.name),p=(0,aj.createColumnHelper)(),g=[p.accessor("name",{header:r("document-types.columns.name"),meta:{editable:!0},size:200}),p.accessor("group",{header:r("document-types.columns.group"),meta:{editable:!0},size:100}),p.accessor("controller",{header:r("document-types.columns.controller"),meta:{type:"select",editable:!0,config:{options:Object.values(c)}},size:200}),p.accessor("template",{header:r("document-types.columns.template"),meta:{type:"select",editable:!0,config:{options:Object.values(u)}},size:150}),p.accessor("type",{header:r("document-types.columns.type"),meta:{type:"select",editable:!0,config:{options:Object.values(m)}},size:80}),p.accessor("staticGeneratorEnabled",{header:r("document-types.columns.static"),size:70,cell:e=>(0,to.jsx)(ih.Flex,{align:"center",justify:"center",children:"page"===e.row.original.type&&(0,to.jsx)(ih.Checkbox,{checked:!!e.getValue(),onChange:t=>{var i,n;null==(n=e.table.options.meta)||null==(i=n.onUpdateCellData)||i.call(n,{rowIndex:e.row.index,columnId:e.column.id,value:t.target.checked,rowData:e.row.original})}})})}),p.accessor("priority",{header:r("document-types.columns.priority"),meta:{type:"number",editable:!0},size:80}),p.accessor("creationDate",{header:r("document-types.columns.creation-date"),meta:{type:"date"},size:150}),p.accessor("modificationDate",{header:r("document-types.columns.modification-date"),meta:{type:"date"},size:150}),p.accessor("actions",{header:r("document-types.columns.actions"),size:80,cell:e=>(e=>{let{info:t,setDocumentTypeRows:i}=e,n=t.row.original.id,{deleteDocumentTypeById:r,deleteLoading:a}=wQ(),l=async()=>{let{success:e}=await r(n);e&&i(e=>e.filter(e=>e.id!==n))};return(0,to.jsxs)("div",{className:"document-types-table--actions-column",children:[(0,to.jsx)(ih.IconButton,{icon:{value:"translate"},onClick:()=>{console.log("Open Translate View")},type:"link"}),(0,to.jsx)(ih.IconButton,{icon:{value:"trash"},loading:a,onClick:l,type:"link"})]})})({info:e,setDocumentTypeRows:i})})],h=async e=>{let{columnId:t,value:n,rowData:r}=e,l=r.rowId,o={...r,[t]:n};i(e=>e.map(e=>e.rowId===l?o:e)),f([{columnId:t,rowIndex:l}]);let{success:s}=await a(o.id,o);s?f([]):i(e=>e.map(e=>e.rowId===l?r:e))};return(0,to.jsx)("div",{children:(0,to.jsx)(az.r,{autoWidth:!0,columns:g,data:t,enableSorting:!0,modifiedCells:d,onUpdateCellData:h,resizable:!0,setRowId:e=>e.rowId})})},w0=()=>{let{createNewDocumentType:e,createLoading:t}=wQ(),i=(()=>{let{data:e,error:t}=(0,l2.OJ)(),{data:i,error:n}=(0,l2.lM)(),{data:r,error:a}=(0,l2.ES)();return(0,ts.useEffect)(()=>{(0,eY.isUndefined)(t)||(0,is.ZP)(new is.MS(t))},[t]),(0,ts.useEffect)(()=>{(0,eY.isUndefined)(n)||(0,is.ZP)(new is.MS(n))},[n]),(0,ts.useEffect)(()=>{(0,eY.isUndefined)(a)||(0,is.ZP)(new is.MS(a))},[a]),{controllers:(0,eY.isUndefined)(e)?[]:null==e?void 0:e.items,templates:(0,eY.isUndefined)(i)?[]:null==i?void 0:i.items,docTypes:(0,eY.isUndefined)(r)?[]:null==r?void 0:r.items}})(),{data:n,isLoading:r,isFetching:a,error:l,refetch:o}=(0,l2.jX)({}),s=()=>{o().catch(()=>{(0,is.ZP)(new is.aE("Error while reloading"))})};(0,ts.useEffect)(()=>{s()},[]);let[d,f]=(0,ts.useState)([]),c=(null==n?void 0:n.items)??[],u=[...d].sort((e,t)=>{let i=e.name??"",n=t.name??"";return i.localeCompare(n)});(0,ts.useEffect)(()=>{(0,eY.isUndefined)(c)||f(c.map(e=>({...e,rowId:(0,lv.uuid)()})))},[c]);let m=async()=>{let{success:t,data:i}=await e();t&&void 0!==i&&f(e=>[{...i,rowId:(0,lv.uuid)()},...e])};return(0,ts.useEffect)(()=>{(0,eY.isUndefined)(l)||(0,is.ZP)(new is.MS(l))},[l]),(0,to.jsx)(aF.D,{renderToolbar:(0,to.jsx)(aO.o,{theme:"secondary",children:(0,to.jsx)(ih.IconButton,{disabled:a,icon:{value:"refresh"},onClick:s})}),renderTopBar:(0,to.jsx)(aO.o,{justify:"space-between",margin:{x:"mini",y:"none"},theme:"secondary",children:(0,to.jsxs)(rZ.k,{gap:"small",children:[(0,to.jsx)(vw.D,{children:(0,ii.t)("widget.document-types")}),(0,to.jsx)(ih.IconTextButton,{disabled:r??t,icon:{value:"new"},loading:t,onClick:m,children:(0,ii.t)("document-types.new")})]})}),children:(0,to.jsx)(aB.V,{loading:r||a,margin:{x:"extra-small",y:"none"},none:(0,eY.isUndefined)(c)??0===c.length,children:(0,to.jsx)(ih.Box,{margin:{x:"extra-small",y:"none"},children:(0,to.jsx)(wY,{config:i,documentTypeRows:u,setDocumentTypeRows:f})})})})};eR._.registerModule({onInit:()=>{eB.nC.get(eO.j.mainNavRegistry).registerMainNavItem({path:"ExperienceEcommerce/Document Types",label:"navigation.document-types",className:"item-style-modifier",order:900,permission:jg.P.DocumentTypes,perspectivePermission:jp.DocumentTypes,widgetConfig:{name:"Document Types",id:"document-types",component:"document-types",config:{translationKey:"widget.document-types",icon:{type:"name",value:"document-types"}}}}),eB.nC.get(eO.j.widgetManager).registerWidget({name:"document-types",component:w0})}});let w1=aw.api.enhanceEndpoints({addTagTypes:["Website Settings"]}).injectEndpoints({endpoints:e=>({websiteSettingsAdd:e.mutation({query:e=>({url:"/pimcore-studio/api/website-settings/add",method:"POST",body:e.websiteSettingsAdd}),invalidatesTags:["Website Settings"]}),websiteSettingsGetCollection:e.query({query:e=>({url:"/pimcore-studio/api/website-settings",method:"POST",body:e.body}),providesTags:["Website Settings"]}),websiteSettingsUpdate:e.mutation({query:e=>({url:`/pimcore-studio/api/website-settings/${e.id}`,method:"PUT",body:e.websiteSettingsUpdate}),invalidatesTags:["Website Settings"]}),websiteSettingsDelete:e.mutation({query:e=>({url:`/pimcore-studio/api/website-settings/${e.id}`,method:"DELETE"}),invalidatesTags:["Website Settings"]}),websiteSettingsListTypes:e.query({query:()=>({url:"/pimcore-studio/api/website-settings/types"}),providesTags:["Website Settings"]})}),overrideExisting:!1}),{useWebsiteSettingsAddMutation:w2,useWebsiteSettingsGetCollectionQuery:w3,useWebsiteSettingsUpdateMutation:w6,useWebsiteSettingsDeleteMutation:w4,useWebsiteSettingsListTypesQuery:w8}=w1,w7=w1.enhanceEndpoints({addTagTypes:[gi.fV.WEBSITE_SETTINGS],endpoints:{websiteSettingsGetCollection:{providesTags:(e,t,i)=>gi.Kx.WEBSITE_SETTINGS()},websiteSettingsDelete:{invalidatesTags:()=>[]},websiteSettingsAdd:{invalidatesTags:()=>[]},websiteSettingsUpdate:{invalidatesTags:()=>[]},websiteSettingsListTypes:{providesTags:()=>[]}}}),{useWebsiteSettingsAddMutation:w5,useWebsiteSettingsDeleteMutation:w9,useWebsiteSettingsGetCollectionQuery:Ce,useWebsiteSettingsUpdateMutation:Ct,useWebsiteSettingsListTypesQuery:Ci}=w7,Cn=()=>{let[e,{isLoading:t}]=w5(),[i,{isLoading:n}]=w9(),[r,{isLoading:a}]=Ct();return{createNewSetting:async(t,i)=>{try{let n=await e({websiteSettingsAdd:{name:t,type:i}});if((0,eY.isUndefined)(n.error)||(0,is.ZP)(new is.MS(n.error)),"data"in n)return{success:!0,data:n.data}}catch{(0,is.ZP)(new is.aE("Error creating Website Settings"))}return{success:!1}},createLoading:t,deleteSettingById:async e=>{try{let t=await i({id:e});return(0,eY.isUndefined)(t.error)||(0,is.ZP)(new is.MS(t.error)),{success:"data"in t}}catch{return(0,is.ZP)(new is.aE("Error deleting Website Settings")),{success:!1}}},deleteLoading:n,updateSettingById:async(e,t)=>{try{let i=await r({id:e,websiteSettingsUpdate:t});return(0,eY.isUndefined)(i.error)||(0,is.ZP)(new is.MS(i.error)),{success:"data"in i}}catch{return(0,is.ZP)(new is.aE("Error updating Website Settings")),{success:!1}}},updateLoading:a}},Cr=e=>{let{info:t,setWebsiteSettingRows:i}=e,n=t.row.original.id,{deleteSettingById:r,deleteLoading:a}=Cn(),l=async()=>{let{success:e}=await r(n);e&&i(e=>e.filter(e=>e.id!==n))};return(0,to.jsx)(ih.Flex,{align:"center",className:"website-settings-table--actions-column",justify:"center",children:(0,to.jsx)(ih.IconButton,{icon:{value:"trash"},loading:a,onClick:l,type:"link"})})},Ca=e=>{let{websiteSettingRows:t,setWebsiteSettingRows:i,typeSelectOptions:n}=e,{t:r}=(0,t7.useTranslation)(),{updateSettingById:a}=Cn(),[l,o]=(0,ts.useState)([]),{getAllSites:s,getSiteById:d}=(0,wV.k)(),f=t.map(e=>{if(null==e.siteId)return{...e,siteDomain:""};let t=isNaN(Number(null==e?void 0:e.siteId))?void 0:d(Number(e.siteId)),i=(0,eY.isUndefined)(t)?"":r(t.domain);return{...e,siteDomain:i}}),c=s().map(e=>({value:e.id,label:r(e.domain)})),u=async e=>{let{columnId:t,value:n,rowData:r}=e,l=r.rowId,s={...r,["siteDomain"===t?"siteId":t]:n};i(e=>e.map(e=>e.rowId===l?s:e)),o([{columnId:t,rowIndex:l}]);let{success:d}=await a(s.id,{name:s.name??"",language:s.language??"",data:s.data,siteId:s.siteId??0});d?o([]):i(e=>e.map(e=>e.rowId===l?r:e))},m=(0,aj.createColumnHelper)(),p=[m.accessor("type",{header:r("website-settings.columns.type"),meta:{type:"select",editable:!1,config:{options:n}},size:80}),m.accessor("name",{header:r("website-settings.columns.name"),meta:{editable:!0},size:200}),m.accessor("language",{header:r("website-settings.columns.language"),meta:{type:"language-select",editable:!0},size:60}),m.accessor("data",{header:r("website-settings.columns.value"),meta:{type:"website-settings-value",editable:!0,clearable:!0,showPublishedState:!1},size:200}),m.accessor("siteDomain",{header:r("website-settings.columns.site"),meta:{type:"select",editable:!0,config:{options:c}},size:110}),m.accessor("actions",{header:r("properties.columns.actions"),size:60,cell:e=>(0,to.jsx)(Cr,{info:e,setWebsiteSettingRows:i})})];return(0,to.jsx)("div",{children:(0,to.jsx)(az.r,{autoWidth:!0,columns:p,data:f,enableSorting:!0,modifiedCells:l,onUpdateCellData:u,resizable:!0,setRowId:e=>e.rowId})})},Cl=()=>{let[e]=ih.Form.useForm(),[t,i]=(0,ts.useState)(""),[n,r]=(0,ts.useState)(1),[a,l]=(0,ts.useState)(20),{data:o}=Ci(),s=null==o?void 0:o.items,d=(0,eY.isUndefined)(s)?[]:s.map(e=>({value:e.key,label:e.title})),{data:f,isLoading:c,isFetching:u,error:m}=Ce((0,ts.useMemo)(()=>({body:{filters:{page:n,pageSize:a,columnFilters:t.length>0?[{key:"name",type:"like",filterValue:t}]:[]}}}),[t,n,a]),{refetchOnMountOrArgChange:!0}),{createNewSetting:p,createLoading:g}=Cn(),h=(0,pU.useAppDispatch)(),[b,y]=(0,ts.useState)([]),v=(null==f?void 0:f.items)??[],x=[...b].sort((e,t)=>{let i=e.name??"",n=t.name??"";return i.localeCompare(n)});(0,ts.useEffect)(()=>{(0,eY.isUndefined)(v)||y(v.map(e=>({...e,rowId:(0,lv.uuid)()})))},[v]),(0,ts.useEffect)(()=>{(0,eY.isUndefined)(m)||(0,is.ZP)(new is.MS(m))},[m]);let{showModal:j,closeModal:w,renderModal:C}=(0,ih.useModal)({type:"error"}),{showModal:k,closeModal:T,renderModal:S}=(0,ih.useModal)({type:"error"}),D=(0,to.jsxs)(to.Fragment,{children:[(0,to.jsx)(C,{footer:(0,to.jsx)(ih.ModalFooter,{children:(0,to.jsx)(ih.Button,{onClick:w,type:"primary",children:(0,ii.t)("button.ok")})}),title:(0,ii.t)("website-settings.website-settings-already-exist.title"),children:(0,ii.t)("website-settings.website-settings-already-exist.error")}),(0,to.jsx)(S,{footer:(0,to.jsx)(ih.ModalFooter,{children:(0,to.jsx)(ih.Button,{onClick:T,type:"primary",children:(0,ii.t)("button.ok")})}),title:(0,ii.t)("website-settings.website-settings.add-entry-mandatory-fields-missing.title"),children:(0,ii.t)("website-settings.website-settings.add-entry-mandatory-fields-missing.error")})]}),E=async(t,i)=>{let n=void 0!==i&&""!==i;if(""===t||void 0===t||!n)return void k();if((null==b?void 0:b.find(e=>e.name===t))!==void 0)return void j();let{success:r,data:a}=await p(t,i);r&&void 0!==a&&(y(e=>[{...a,rowId:(0,lv.uuid)()},...e]),e.resetFields())};return(0,to.jsx)(aF.D,{renderToolbar:(0,to.jsxs)(aO.o,{theme:"secondary",children:[(0,to.jsx)(aM.h,{disabled:u,icon:{value:"refresh"},onClick:()=>{h(w7.util.invalidateTags(aw.invalidatingTags.WEBSITE_SETTINGS()))}}),(0,to.jsx)(ih.Pagination,{current:n,onChange:(e,t)=>{r(e),l(t)},showSizeChanger:!0,showTotal:e=>(0,ii.t)("pagination.show-total",{total:e}),total:(null==f?void 0:f.totalItems)??0})]}),renderTopBar:(0,to.jsxs)(aO.o,{justify:"space-between",margin:{x:"mini",y:"none"},padding:{x:"small"},theme:"secondary",children:[(0,to.jsxs)(rZ.k,{gap:"small",children:[(0,to.jsx)(vw.D,{children:(0,ii.t)("widget.website-settings")}),(0,to.jsx)(ih.Form,{form:e,layout:"inline",onFinish:e=>{let{name:t,type:i}=e;E(t,i)},children:(0,to.jsxs)(rZ.k,{children:[(0,to.jsx)(ih.Form.Item,{name:"name",children:(0,to.jsx)(ih.Input,{placeholder:(0,ii.t)("properties.add-custom-property.key")})}),(0,to.jsx)(ih.Form.Item,{name:"type",children:(0,to.jsx)(ih.Select,{className:"min-w-100",options:d,placeholder:(0,ii.t)("properties.add-custom-property.type")})}),(0,to.jsx)(ih.Form.Item,{children:(0,to.jsx)(ih.IconTextButton,{htmlType:"submit",icon:{value:"new"},loading:g,children:(0,ii.t)("website-settings.new")})})]})})]}),(0,to.jsx)(ih.SearchInput,{loading:u,onSearch:e=>{i(e)},placeholder:"Search",withPrefix:!1,withoutAddon:!1})]}),children:(0,to.jsx)(aB.V,{loading:c||u,margin:{x:"extra-small",y:"none"},none:(0,eY.isUndefined)(b)||0===b.length,children:(0,to.jsxs)(ih.Box,{margin:{x:"extra-small",y:"none"},children:[(0,to.jsx)(Ca,{setWebsiteSettingRows:y,typeSelectOptions:d,websiteSettingRows:x}),D]})})})};eR._.registerModule({onInit:()=>{eB.nC.get(eO.j.mainNavRegistry).registerMainNavItem({path:"ExperienceEcommerce/Website Settings",label:"navigation.website-settings",order:100,className:"item-style-modifier",permission:jg.P.WebsiteSettings,perspectivePermission:jp.WebsiteSettings,widgetConfig:{name:"Website Settings",id:"website-settings",component:"website-settings",config:{translationKey:"widget.website-settings",icon:{type:"name",value:"web-settings"}}}}),eB.nC.get(eO.j.widgetManager).registerWidget({name:"website-settings",component:Cl})}});let Co=(0,ts.createContext)({domain:"message",setDomain:()=>{}}),Cs=e=>{let{children:t}=e,[i,n]=(0,ts.useState)("messages");return(0,ts.useMemo)(()=>(0,to.jsx)(Co.Provider,{value:{domain:i,setDomain:n},children:t}),[i,t])},Cd=()=>{let e=(0,ts.useContext)(Co);if(void 0===e)throw Error("useTranslationDomain must be used within a TranslationDomainProvider");return e};var Cf=i(54246),Cc=i(11347);let Cu=()=>{let e=(0,p5.r)(),{domain:t}=Cd(),[i,{isLoading:n}]=(0,Cc.KY)(),[r,{isLoading:a}]=(0,Cc.KK)(),[l,{isLoading:o}]=(0,Cc.XO)(),s=(e,t,i)=>({translation:e[`_${t}`]??"",locale:t});return{createNewTranslation:async n=>{try{let r={translationData:[{key:n,type:"simple",domain:t}]},a=await i({createTranslation:r});if("data"in a){let t={key:r.translationData[0].key,type:r.translationData[0].type,...e.validLanguages.reduce((e,t)=>(e[`_${t}`]="",e),{})};return{success:!0,data:t}}}catch{(0,is.ZP)(new is.aE("Was not able to create Translation"))}return{success:!1}},createLoading:n,deleteTranslationByKey:async e=>{try{let i=await r({key:e,domain:t});return{success:"data"in i}}catch{return(0,is.ZP)(new is.aE("Was not able to delete Translation")),{success:!1}}},deleteLoading:a,updateTranslationByKey:async(e,t,i)=>{try{if("type"===e){let e=Object.keys(t).filter(e=>e.startsWith("_")).map(e=>e.substring(1));if(e.length>0){let n=e[0],r=[s(t,n,i)],a=await l({domain:i,body:{data:[{key:t.key,type:t.type,translationData:r}]}});return{success:"data"in a}}return(0,is.ZP)(new is.aE("No locales found in translation row data")),{success:!1}}let n=e.substring(1),r=[s(t,n,i)],a=await l({domain:i,body:{data:[{key:t.key,type:t.type,translationData:r}]}});return{success:"data"in a}}catch{return(0,is.ZP)(new is.aE("Was not able to update Translation")),{success:!1}}},updateLoading:o}},Cm=e=>{let{info:t,setTranslationRows:i}=e,n=t.row.original.key,{deleteTranslationByKey:r,deleteLoading:a}=Cu(),l=async()=>{let{success:e}=await r(n);e&&i(e=>e.filter(e=>e.key!==n))};return(0,to.jsx)(ih.Flex,{align:"center",className:"translations-table--actions-column",justify:"center",children:(0,to.jsx)(ih.IconButton,{icon:{value:"trash"},loading:a,onClick:l,type:"link"})})},Cp=e=>{let{language:t,display:i}=e;return(0,to.jsxs)("div",{style:{display:"flex",alignItems:"center",gap:"8px"},children:[(0,to.jsx)(vT.U,{value:t}),(0,to.jsx)("span",{children:i})]})};var Cg=i(45681);let Ch=e=>{let{translationRow:t,locale:i,...n}=e,{t:r}=(0,t7.useTranslation)(),[a]=ih.Form.useForm(),[l,o]=(0,ts.useState)(!1),{updateTranslationByKey:s}=Cu(),{domain:d}=Cd(),f=(null==t?void 0:t[`_${i}`])??"",[c,u]=(0,ts.useState)("plain-text"),[m,p]=(0,ts.useState)(""),g=(0,ts.useMemo)(()=>(0,Cg.ug)(f),[f]),h=(0,Cg.ug)(m),b=g&&h;(0,ts.useEffect)(()=>{null!==t&&n.open&&(a.setFieldsValue({translation:f}),p(f),u(b?"html":"plain-text"))},[t,i,n.open,a,f]);let y=async e=>{if(null!==t){if(o(!0),void 0!==n.onSave)n.onSave(e.translation);else{let n={...t,[`_${i}`]:e.translation};await s(`_${i}`,n,d)}n.setOpen(!1),a.resetFields(),o(!1)}},v=[{label:r("translations.edit-modal.tab.plain-text"),key:"plain-text",children:(0,to.jsx)(ih.Form.Item,{name:"translation",children:(0,to.jsx)(ih.TextArea,{autoSize:{minRows:3,maxRows:15}})})},{label:r("translations.edit-modal.tab.html"),key:"html",children:(0,to.jsx)(ih.Form.Item,{name:"translation",children:(0,to.jsx)(rP.F,{context:rF.v.TRANSLATION,height:300})})}],x=b?[v[1]]:v;return(0,to.jsx)(av.u,{footer:(0,to.jsx)(p1.m,{children:(0,to.jsxs)(rZ.k,{justify:"space-between",style:{width:"100%"},children:[(0,to.jsx)("div",{children:h&&(0,to.jsx)(ih.Button,{onClick:()=>{let e=(0,Cg.oN)(m,[]),t=(0,Cg.aV)(e);a.setFieldsValue({translation:t.trim()}),p(t.trim()),u("plain-text")},type:"default",children:r("translations.edit-modal.restore")})}),(0,to.jsx)(ih.Button,{loading:l,onClick:()=>{a.submit()},type:"primary",children:r("translations.edit-modal.save")})]})}),onCancel:()=>{n.setOpen(!1),a.resetFields()},open:n.open,size:"L",title:(0,to.jsx)(p3.r,{iconName:"edit",children:r("translations.edit-modal.title")}),children:(0,to.jsx)(ih.Form,{form:a,onFinish:y,onValuesChange:(e,t)=>{p(t.translation??"")},children:(0,to.jsx)(ay.m,{activeKey:b?"html":c,destroyInactiveTabPane:!0,items:x,onChange:e=>{let t=a.getFieldsValue().translation??"";"html"===e&&"plain-text"===c?t=t.replace(/\n/g,"
"):"plain-text"===e&&"html"===c&&(t=t.replace(//gi,"\n")),a.setFieldsValue({translation:t}),p(t),u(e)}})})})},Cb=e=>{let{translationRows:t,setTranslationRows:i,visibleLocales:n,editableLocales:r,domainLanguages:a,sorting:l,onSortingChange:o}=e,{t:s}=(0,t7.useTranslation)(),{updateTranslationByKey:d}=Cu(),{domain:f}=Cd(),[c,u]=(0,ts.useState)([]),[m,p]=(0,ts.useState)(!1),[g,h]=(0,ts.useState)(null),[b,y]=(0,ts.useState)(""),v=n.map(e=>{let t=a.find(t=>t.locale===e);return(0,eY.isUndefined)(t)?((0,jN.trackError)(new jN.GeneralError(`Language "${e}" not found in domain languages`)),{language:e,display:e.toUpperCase(),canEdit:r.includes(e)}):{language:t.locale,display:t.displayName,canEdit:r.includes(e)}}).filter(Boolean),x=(0,aj.createColumnHelper)(),[j,w]=(0,ts.useState)(null),C=async(e,t,i)=>await new Promise(n=>{h(void 0!==i?{...e,[t]:i}:e),y(t.replace("_","")),w(()=>n),p(!0)}),k=(0,ts.useMemo)(()=>v.map(e=>x.accessor(`_${e.language}`,{id:`_${e.language}`,header:()=>(0,to.jsx)(Cp,{display:e.display,language:e.language}),meta:{editable:e.canEdit??!1,type:"textarea",callback:!0,editCallback:C,htmlDetection:!0},size:200})),[v,x,C]),T=[{value:"simple",label:s("translations.type-options.simple")},{value:"custom",label:s("translations.type-options.custom")}],S=(0,ts.useMemo)(()=>[x.accessor("key",{header:s("translations.columns.key"),meta:{editable:!1},size:200}),x.accessor("type",{header:s("translations.columns.type"),meta:{type:"select",editable:!0,config:{options:T}},size:100}),...k,x.accessor("actions",{header:s("translations.columns.actions"),size:80,enableSorting:!1,cell:e=>(0,to.jsx)(Cm,{info:e,setTranslationRows:i})})],[k,t,n,r]),D=async e=>{let{columnId:t,value:n,rowData:r}=e,a=r.rowId,l={...r,[t]:n};i(e=>e.map(e=>e.rowId===a?l:e)),u([{columnId:t,rowIndex:a}]);let{success:o}=await d(t,l,f);o?u([]):i(e=>e.map(e=>e.rowId===a?r:e))};return(0,to.jsxs)("div",{children:[(0,to.jsx)(az.r,{autoWidth:!0,columns:S,data:t,enableSorting:!0,manualSorting:!0,modifiedCells:c,onSortingChange:o,onUpdateCellData:D,resizable:!0,setRowId:e=>e.rowId,sorting:l}),(0,to.jsx)(Ch,{locale:b,onSave:e=>{null!==j&&(j(e),w(null))},open:m,setOpen:e=>{p(e),e||null===j||(j((null==g?void 0:g[`_${b}`])??""),w(null))},translationRow:g})]})},Cy=e=>{let{MandatoryModal:t,closeMandatoryModal:i}=e;return(0,to.jsx)(t,{footer:(0,to.jsx)(ih.ModalFooter,{children:(0,to.jsx)(ih.Button,{onClick:i,type:"primary",children:(0,ii.t)("button.ok")})}),title:(0,ii.t)("translations.add-translation-mandatory-field-missing.title"),children:(0,ii.t)("translations.add-translation-mandatory-field-missing.error")})},Cv=()=>{let[e]=ih.Form.useForm(),t=(0,pU.useAppDispatch)(),{showModal:i,closeModal:n,renderModal:r}=(0,ih.useModal)({type:"error"}),{createNewTranslation:a,createLoading:l}=Cu(),{domain:o,setDomain:s}=Cd(),[d,f]=(0,ts.useState)(null),[c,u]=(0,ts.useState)([]),[m,p]=(0,ts.useState)(""),[g,h]=(0,ts.useState)(1),[b,y]=(0,ts.useState)(20),[v,x]=(0,ts.useState)([{id:"key",desc:!1}]),{data:j,isLoading:w,error:C}=(0,Cf.Oc)(),k=j??[],T=k.find(e=>e.domain===o),S=(null==T?void 0:T.isFrontendDomain)??!1,D=(()=>{let e=(0,dj.a)(),{getDisplayName:t,isLoading:i}=(0,vS.Z)();return{languages:(0,ts.useMemo)(()=>{let i=e.allowedLanguagesForEditingWebsiteTranslations??[];return Array.from(new Set(e.allowedLanguagesForViewingWebsiteTranslations??[])).filter(e=>!(0,eY.isNil)(e)&&(0,eY.isString)(e)).map(e=>({locale:e,displayName:t(e),canEdit:i.includes(e),canView:!0})).sort((e,t)=>(e.displayName??"UNKNOWN").localeCompare(t.displayName??"UNKNOWN"))},[e,t]),isLoading:i}})(),E=(()=>{let e=(0,p5.r)(),{getDisplayName:t,isLoading:i}=(0,vS.Z)();return{languages:(0,ts.useMemo)(()=>((null==e?void 0:e.availableAdminLanguages)??[]).filter(e=>!(0,eY.isNil)(e)&&(0,eY.isString)(e)).map(e=>({locale:e,displayName:t(e),canEdit:!0,canView:!0})).sort((e,t)=>(e.displayName??"UNKNOWN").localeCompare(t.displayName??"UNKNOWN")),[e,t]),isLoading:i}})(),{languages:M,isLoading:I}=S?D:E,L=(0,ts.useMemo)(()=>({domain:o,body:{filters:{page:g,pageSize:b,columnFilters:m.length>=0?[{type:"search",filterValue:m}]:[],sortFilter:v.length>0?{key:v[0].id.startsWith("_")?v[0].id.substring(1):v[0].id,direction:v[0].desc?"DESC":"ASC"}:[]}}}),[o,g,b,m,v]),{data:P,isLoading:N,isFetching:A,error:R}=(0,Cf.m4)(L,{refetchOnMountOrArgChange:!0});(0,ts.useEffect)(()=>{k.length>0&&!k.some(e=>e.domain===o)&&s(k[0].domain)},[k,o]),(0,ts.useEffect)(()=>{void 0!==P&&u(P.items.map(e=>{let t={key:e.key,type:e.type,rowId:(0,lv.uuid)()};return null!==e.translations&&"object"==typeof e.translations&&Object.entries(e.translations).forEach(e=>{let[i,n]=e;t[`_${i}`]="string"==typeof n?n:""}),t}))},[P]),(0,ts.useEffect)(()=>{(0,eY.isUndefined)(C)||(0,is.ZP)(new is.MS(C))},[C]),(0,ts.useEffect)(()=>{(0,eY.isUndefined)(R)||(0,is.ZP)(new is.MS(R))},[R]);let O=M.filter(e=>e.canView),B=M.filter(e=>e.canEdit),F=async t=>{if(""===t||void 0===t)return void i();let{success:n,data:r}=await a(t);if(n&&void 0!==r){let t={...r,rowId:(0,lv.uuid)()};u(e=>[t,...e]),e.resetFields()}};return(0,to.jsx)(aF.D,{renderToolbar:(0,to.jsxs)(aO.o,{theme:"secondary",children:[(0,to.jsx)(aM.h,{disabled:N,icon:{value:"refresh"},onClick:()=>{t(Cf.hi.util.invalidateTags(gi.xc.DOMAIN_TRANSLATIONS()))}}),(0,to.jsx)(ih.Pagination,{current:g,onChange:(e,t)=>{h(e),y(t)},showSizeChanger:!0,showTotal:e=>(0,ii.t)("pagination.show-total",{total:e}),total:(null==P?void 0:P.totalItems)??0})]}),renderTopBar:(0,to.jsxs)(aO.o,{justify:"space-between",margin:{x:"mini",y:"none"},theme:"secondary",children:[(0,to.jsxs)(rZ.k,{gap:"small",children:[(0,to.jsx)(vw.D,{children:(0,ii.t)("translations.new-translation")}),(0,to.jsx)(ih.Form,{form:e,layout:"inline",onFinish:e=>{let{translationKey:t}=e;F(t)},children:(0,to.jsxs)(rZ.k,{children:[(0,to.jsx)(ih.Form.Item,{name:"translationKey",children:(0,to.jsx)(ih.Input,{placeholder:(0,ii.t)("translations.add-translation.key")})}),(0,to.jsx)(ih.Form.Item,{children:(0,to.jsx)(ih.IconTextButton,{htmlType:"submit",icon:{value:"new"},loading:l,children:(0,ii.t)("translations.new")})})]})}),(0,to.jsx)(ih.Select,{loading:w,onChange:e=>{s(e),h(1)},options:k.map(e=>({value:e.domain,label:e.domain})),placeholder:(0,ii.t)("translations.select-domain"),style:{minWidth:120},value:o})]}),(0,to.jsxs)(rZ.k,{gap:"small",children:[(0,to.jsx)(ih.Select,{allowClear:!0,disabled:0===O.length||I,dropdownStyle:{minWidth:250},filterOption:(e,t)=>{var i;return((null==t||null==(i=t.label)?void 0:i.toString())??"").toLowerCase().includes(e.toLowerCase())},loading:I,maxTagCount:"responsive",mode:"multiple",onChange:e=>{f(e.length>0?e:null)},options:O.map(e=>({value:e.locale,label:e.displayName})),placeholder:(0,ii.t)("translations.show-hide-locale"),showSearch:!0,style:{minWidth:220},value:d??[]}),(0,to.jsx)(ih.SearchInput,{loading:N,onSearch:e=>{p(e),h(1)},placeholder:"Search",withPrefix:!1,withoutAddon:!1})]})]}),children:(0,to.jsx)(aB.V,{loading:N||A||I,margin:{x:"extra-small",y:"none"},none:!N&&!I&&0===c.length,children:(0,to.jsxs)(ih.Box,{margin:{x:"extra-small",y:"none"},children:[(0,to.jsx)(Cb,{domainLanguages:M,editableLocales:B.map(e=>e.locale),onSortingChange:e=>{x(e),h(1)},setTranslationRows:u,sorting:v,translationRows:c,visibleLocales:d??O.map(e=>e.locale)}),(0,to.jsx)(Cy,{MandatoryModal:r,closeMandatoryModal:n})]})})})},Cx=()=>(0,to.jsx)(Cs,{children:(0,to.jsx)(Cv,{})});eR._.registerModule({onInit:()=>{eB.nC.get(eO.j.mainNavRegistry).registerMainNavItem({path:"Translations/Translations",label:"navigation.translations",className:"item-style-modifier",order:100,permission:jg.P.Translations,perspectivePermission:jp.PredefinedProperties,widgetConfig:{name:"Translations",id:"translations",component:"translations",config:{translationKey:"widget.translations",icon:{type:"name",value:"translate"}}}}),eB.nC.get(eO.j.widgetManager).registerWidget({name:"translations",component:Cx})}});let{FilterProvider:Cj,useFilterContext:Cw}=function(){let e=(0,ts.createContext)(void 0);return{FilterProvider:t=>{let{children:i,initialValue:n}=t,[r,a]=(0,ts.useState)(n),l=()=>{a(n)},o=(0,ts.useMemo)(()=>({filters:r,setFilters:a,resetFilters:l}),[r,n]);return(0,to.jsx)(e.Provider,{value:o,children:i})},useFilterContext:function(){let t=(0,ts.useContext)(e);if((0,eY.isUndefined)(t))throw Error("useFilterContext must be used within a FilterProvider");return t}}}(),CC=(0,ts.createContext)(void 0),Ck=e=>{let{children:t}=e,[i,n]=(0,ts.useState)([]),[r,a]=(0,ts.useState)([]),l=()=>{n(r)},o=e=>{n([...i,e])},s=(0,ts.useMemo)(()=>({columns:i,setColumns:n,initialColumns:r,setInitialColumns:a,resetColumnsToInitial:l,addColumn:o}),[i,n,r,a]);return(0,to.jsx)(CC.Provider,{value:s,children:t})},CT=()=>{let e=(0,ts.useContext)(CC);if((0,eY.isUndefined)(e))throw Error("useColumnsContext must be used within a ColumnsProvider");return e},CS=void 0,CD=(0,ts.createContext)(void 0),CE=e=>{let{name:t,children:i}=e,[n,r]=(0,ts.useState)(1),[a,l]=(0,ts.useState)(50),[o,s]=(0,ts.useState)(CS),{filters:d}=Cw(),f=()=>{r(1),l(50),s(CS)},c=(e=>{let{name:t,filters:i,page:n,pageSize:r,sorting:a}=e,{isLoading:l,data:o,refetch:s,isFetching:d}=nj({name:t},{skip:(0,dW.O)(t)}),{isLoading:f,data:c,refetch:u,isFetching:m}=ng({body:{name:t,filters:i,page:n,pageSize:r,sortBy:null==a?void 0:a.sortBy,sortOrder:null==a?void 0:a.sortOrder}},{skip:(0,dW.O)(t)});return{reportDetailData:o,chartDetailData:c,isLoading:l||f,isFetching:d||m,refetchAll:()=>{s().catch(e=>{console.error(e)}),u().catch(e=>{console.error(e)})}}})({name:t,filters:d,page:n,pageSize:a,sorting:o}),u=(0,ts.useMemo)(()=>({...c,page:n,setPage:r,pageSize:a,setPageSize:l,sorting:o,setSorting:s,resetData:f}),[c,n,r,a,l,o,s]);return(0,to.jsx)(CD.Provider,{value:u,children:i})},CM=()=>{let e=(0,ts.useContext)(CD);if((0,eY.isUndefined)(e))throw Error("useReportDataContext must be used within a ReportDataProvider");return e},CI=e=>{let{isFetching:t,refetch:i}=e;return t?(0,to.jsx)(aL.x,{padding:{x:"extra-small",y:"extra-small"},children:(0,to.jsx)(aI.y,{})}):(0,to.jsx)(aM.h,{icon:{value:"refresh"},onClick:async()=>{i()}})};var CL=i(83472);let CP=(0,ia.createStyles)(e=>{let{css:t,token:i}=e;return{selectReportLabel:t` color: ${i.itemActiveColor}; font-weight: ${i.fontWeightStrong}; `,selectReportGroupLabel:t` @@ -953,7 +953,7 @@ `,gridTable:t` min-height: 300px; overflow: auto; - `}}),CN=()=>{let{columns:e,setColumns:t,initialColumns:i,addColumn:n,resetColumnsToInitial:r}=CT(),[a,o]=(0,ts.useState)([]),{t:l}=(0,t7.useTranslation)(),{styles:s}=CP();(0,ts.useEffect)(()=>{var t;o(null==i||null==(t=i.filter(t=>!e.some(e=>t.accessorKey===e.accessorKey)))?void 0:t.map(e=>({key:e.accessorKey,label:e.header,onClick:()=>{n(e)}})))},[e]);let d=e.map(e=>{let i=(0,nu.V)();return{id:i,sortable:!0,meta:e,children:(0,tl.jsx)(CL.V,{children:e.header}),renderRightToolbar:(0,tl.jsx)(as.T,{size:"mini",children:(0,tl.jsx)(aM.h,{icon:{value:"trash"},onClick:()=>{t(d.filter(e=>e.id!==i).map(e=>e.meta))},theme:"secondary"})})}});return(0,tl.jsx)(aF.D,{renderToolbar:(0,tl.jsx)(aO.o,{theme:"secondary",children:(0,tl.jsx)(ai.z,{className:s.btnLink,onClick:r,type:"link",children:l("reports.grid-config.restore-to-default")})}),children:(0,tl.jsxs)(aB.V,{padded:!0,children:[(0,tl.jsx)(vw.D,{children:l("reports.grid-config.title-columns")}),(0,tl.jsxs)(as.T,{direction:"vertical",style:{width:"100%"},children:[(0,tl.jsxs)(rZ.k,{vertical:!0,children:[0===d.length&&(0,tl.jsx)(tN.Empty,{image:tN.Empty.PRESENTED_IMAGE_SIMPLE}),d.length>0&&(0,tl.jsx)(p4.f,{items:d,onItemsChange:e=>{t(e.map(e=>e.meta))},sortable:!0})]}),!(0,eY.isEmpty)(a)&&(0,tl.jsx)(pJ.L,{menu:{items:a},children:(0,tl.jsx)(dx.W,{icon:{value:"new"},type:"link",children:l("reports.grid-config.add-column")})})]})]})})};var CA=i(82792);let CR={string:{frontendType:"select",type:"system.string"},numeric:{frontendType:"id",type:"system.id"},boolean:{frontendType:"checkbox",type:"system.string"},date:{frontendType:"datetime",type:"system.datetime"}},CO=Object.fromEntries(Object.entries(CR).map(e=>{let[t,i]=e;return[i.frontendType,t]})),CB=(0,ts.createContext)(void 0),CF=e=>{let{children:t}=e,[i,n]=(0,ts.useState)([]),[r,a]=(0,ts.useState)([]),o=(0,ts.useMemo)(()=>({columnsFilters:i,setColumnsFilters:n,fieldFilters:r,setFieldFilters:a}),[i,n,r,a]);return(0,tl.jsx)(CB.Provider,{value:o,children:t})},C_=()=>{let e=(0,ts.useContext)(CB);if((0,eY.isUndefined)(e))throw Error("useColumnsFiltersContext must be used within a ColumnsFiltersProvider");return e},Cz=()=>{let{t:e}=(0,t7.useTranslation)(),[t,i]=(0,ts.useState)([]),{reportDetailData:n}=CM(),{setColumnsFilters:r,fieldFilters:a,setFieldFilters:o}=C_(),{data:l}=(e=>{let{name:t}=e,{isLoading:i,data:n}=ng({body:{name:t,page:1,pageSize:0x2540be3ff}},{skip:(0,dW.O)(t)});return{isLoading:i,data:n}})({name:(null==n?void 0:n.name)??""}),s=e=>(0,dW.O)(e.label)?e.name:e.label;return(0,ts.useEffect)(()=>{o([]),r([])},[n]),(0,ts.useEffect)(()=>{var e;if((0,eY.isEmpty)(l))return;let t=null==n?void 0:n.columnConfigurations.filter(e=>e.display);i(null==t||null==(e=t.filter(e=>!a.some(t=>e.name===t.name)))?void 0:e.map(e=>({key:e.id,label:s(e),onClick:()=>{(e=>{let t=e.filterType??"string",i=CR[t].frontendType,n=CR[t].type,r=s(e),d=e.name,f=(0,eY.reject)(null==l?void 0:l.items.map(e=>e.data[d]),e=>(0,eY.isNull)(e));o([...a,{data:void 0,id:r,name:d,type:n,frontendType:i,config:{options:(0,eY.uniq)(f),showSearch:"select"===i}}])})(e)}})))},[l,n,a]),(0,tl.jsxs)(tl.Fragment,{children:[(0,tl.jsx)(vw.D,{children:e("reports.field-filters")}),(0,tl.jsxs)(tN.Space,{direction:"vertical",style:{width:"100%"},children:[(0,tl.jsxs)(rZ.k,{vertical:!0,children:[0===a.length&&(0,tl.jsx)(tN.Empty,{image:tN.Empty.PRESENTED_IMAGE_SIMPLE}),a.length>0&&(0,tl.jsx)(CA.B,{data:a,onChange:e=>{o(e);let t=e.filter(e=>!(0,eY.isUndefined)(e.data)).map(e=>({property:e.name,type:CO[e.frontendType],operator:"eq",value:String(e.data)}));(0,eY.isUndefined)(t)||r(t)}})]}),!(0,eY.isEmpty)(t)&&(0,tl.jsx)(pJ.L,{menu:{items:t},children:(0,tl.jsx)(dx.W,{icon:{value:"new"},type:"link",children:e("reports.grid-config.add-column")})})]})]})},CV=()=>{let{filters:e,setFilters:t}=Cw(),{columnsFilters:i,setColumnsFilters:n,setFieldFilters:r}=C_(),{setPage:a}=CM(),{t:o}=(0,t7.useTranslation)(),{styles:l}=CP();return(0,tl.jsx)(aF.D,{renderToolbar:(0,tl.jsxs)(aO.o,{theme:"secondary",children:[(0,tl.jsx)(ai.z,{className:l.btnLink,onClick:()=>{n([]),r([]),t({...e,columnFilters:[]})},type:"link",children:o("sidebar.clear-all-filters")}),(0,tl.jsx)(ai.z,{onClick:()=>{a(1),t({...e,columnFilters:i})},type:"primary",children:o("button.apply")})]}),children:(0,tl.jsx)(aB.V,{padded:!0,children:(0,tl.jsx)(Cz,{})})})},C$=()=>{let{t:e}=(0,t7.useTranslation)(),t={entries:[{component:(0,tl.jsx)(CN,{}),key:"reports-columns-configuration",icon:(0,tl.jsx)(rR.J,{value:"columns"}),tooltip:e("reports.grid-config.title-columns")},{component:(0,tl.jsx)(CF,{children:(0,tl.jsx)(CV,{})}),key:"reports-field-filters",icon:(0,tl.jsx)(rR.J,{value:"filter"}),tooltip:e("reports.field-filters")}]};return(0,tl.jsx)(gG.Y,{...t})},CW=e=>{let{page:t,setPage:i,pageSize:n,setPageSize:r,totalItems:a}=e,{t:o}=(0,t7.useTranslation)();return(0,tl.jsx)(aN.t,{current:t,defaultPageSize:n,onChange:(e,t)=>{i(e),r(parseInt(t))},pageSizeOptions:[10,20,50,100],showSizeChanger:!0,showTotal:e=>o("pagination.show-total",{total:e}),total:a})},CH=e=>{let{currentReport:t,page:i,setPage:n,pageSize:r,setPageSize:a,totalItems:o}=e,[l,{isError:s,error:d}]=nC(),{addJob:f}=(0,gn.C)(),{filters:c}=Cw(),{t:u}=(0,t7.useTranslation)(),{styles:m}=CP(),p=e=>{let{includeHeaders:i}=e;f((0,gu.C)({title:u("jobs.csv-job.title",{title:t}),topics:[dp.F["csv-download-ready"],...dp.b],downloadUrl:"/pimcore-studio/api/export/download/csv/{jobRunId}",action:async()=>await l({body:{name:t,filters:c,includeHeaders:i}}).unwrap()}))};(0,ts.useEffect)(()=>{s&&(0,is.ZP)(new is.MS(d))},[s]);let g=function(e){let t=!(arguments.length>1)||void 0===arguments[1]||arguments[1];return(0,tl.jsxs)(rZ.k,{align:"center",className:m.dropdownLabel,gap:"extra-small",children:[t&&(0,tl.jsx)(rR.J,{value:"export"}),u(e)]})},h=[{key:"csv-export",label:g("reports.csv-export"),onClick:()=>{p({includeHeaders:!1})}},{key:"csv-export-with-headers",label:g("reports.csv-export-with-headers"),onClick:()=>{p({includeHeaders:!0})}}];return(0,tl.jsxs)(aO.o,{justify:"space-between",theme:"secondary",children:[(0,tl.jsx)(pJ.L,{menu:{items:h},children:(0,tl.jsx)(pK.P,{children:g("reports.export",!1)})}),(0,tl.jsx)(CW,{page:i,pageSize:r,setPage:n,setPageSize:a,totalItems:o})]})},CG=e=>{let{currentReport:t,setCurrentReport:i,reportsTreeOptions:n}=e,{t:r}=(0,t7.useTranslation)(),{styles:a}=CP(),{resetFilters:o}=Cw(),{resetData:l}=CM();return(0,tl.jsx)(aB.V,{padded:!0,padding:{top:"extra-small",right:"extra-small",bottom:"extra-small",left:"extra-small"},children:(0,tl.jsx)(aO.o,{padding:{top:"extra-small",bottom:"extra-small",left:"none",right:"none"},position:"top",size:"auto",theme:"secondary",children:(0,tl.jsxs)(rZ.k,{align:"center",gap:"extra-small",children:[(0,tl.jsx)(nc.x,{className:a.selectReportLabel,children:r("reports.reports-title")}),(0,tl.jsx)(tC.P,{className:"min-w-200",onChange:e=>{l(),o(),i(e)},options:n,placeholder:r("reports.select-report"),showSearch:!0,value:t})]})})})};var CU=i(63430),Cq=i(86286);let CZ=[Cq.purple,Cq.magenta,Cq.geekblue,Cq.cyan,Cq.blue,Cq.green,Cq.yellow,Cq.lime,Cq.gold,Cq.volcano,Cq.orange,Cq.red],CK=[4,6,8,2,5,3,7,1,9,0],CJ=e=>{let t=[],i=Object.values(CZ);for(let e of CK)for(let n of i)(0,eY.isUndefined)(n[e])||t.push(n[e]);let n=e-t.length;if(n>0){let e=(e=>{let t=[];for(let i=0;ie.toString(16).padStart(2,"0")).join("");t.push(e)}return t})(n);t.push(...e)}return t},CX=(0,ia.createStyles)(e=>{let{css:t,token:i}=e;return{legendItem:t` + `}}),CN=()=>{let{columns:e,setColumns:t,initialColumns:i,addColumn:n,resetColumnsToInitial:r}=CT(),[a,l]=(0,ts.useState)([]),{t:o}=(0,t7.useTranslation)(),{styles:s}=CP();(0,ts.useEffect)(()=>{var t;l(null==i||null==(t=i.filter(t=>!e.some(e=>t.accessorKey===e.accessorKey)))?void 0:t.map(e=>({key:e.accessorKey,label:e.header,onClick:()=>{n(e)}})))},[e]);let d=e.map(e=>{let i=(0,nu.V)();return{id:i,sortable:!0,meta:e,children:(0,to.jsx)(CL.V,{children:e.header}),renderRightToolbar:(0,to.jsx)(as.T,{size:"mini",children:(0,to.jsx)(aM.h,{icon:{value:"trash"},onClick:()=>{t(d.filter(e=>e.id!==i).map(e=>e.meta))},theme:"secondary"})})}});return(0,to.jsx)(aF.D,{renderToolbar:(0,to.jsx)(aO.o,{theme:"secondary",children:(0,to.jsx)(ai.z,{className:s.btnLink,onClick:r,type:"link",children:o("reports.grid-config.restore-to-default")})}),children:(0,to.jsxs)(aB.V,{padded:!0,children:[(0,to.jsx)(vw.D,{children:o("reports.grid-config.title-columns")}),(0,to.jsxs)(as.T,{direction:"vertical",style:{width:"100%"},children:[(0,to.jsxs)(rZ.k,{vertical:!0,children:[0===d.length&&(0,to.jsx)(tN.Empty,{image:tN.Empty.PRESENTED_IMAGE_SIMPLE}),d.length>0&&(0,to.jsx)(p4.f,{items:d,onItemsChange:e=>{t(e.map(e=>e.meta))},sortable:!0})]}),!(0,eY.isEmpty)(a)&&(0,to.jsx)(pJ.L,{menu:{items:a},children:(0,to.jsx)(dx.W,{icon:{value:"new"},type:"link",children:o("reports.grid-config.add-column")})})]})]})})};var CA=i(82792);let CR={string:{frontendType:"select",type:"system.string"},numeric:{frontendType:"id",type:"system.id"},boolean:{frontendType:"checkbox",type:"system.string"},date:{frontendType:"datetime",type:"system.datetime"}},CO=Object.fromEntries(Object.entries(CR).map(e=>{let[t,i]=e;return[i.frontendType,t]})),CB=(0,ts.createContext)(void 0),CF=e=>{let{children:t}=e,[i,n]=(0,ts.useState)([]),[r,a]=(0,ts.useState)([]),l=(0,ts.useMemo)(()=>({columnsFilters:i,setColumnsFilters:n,fieldFilters:r,setFieldFilters:a}),[i,n,r,a]);return(0,to.jsx)(CB.Provider,{value:l,children:t})},C_=()=>{let e=(0,ts.useContext)(CB);if((0,eY.isUndefined)(e))throw Error("useColumnsFiltersContext must be used within a ColumnsFiltersProvider");return e},Cz=()=>{let{t:e}=(0,t7.useTranslation)(),[t,i]=(0,ts.useState)([]),{reportDetailData:n}=CM(),{setColumnsFilters:r,fieldFilters:a,setFieldFilters:l}=C_(),{data:o}=(e=>{let{name:t}=e,{isLoading:i,data:n}=ng({body:{name:t,page:1,pageSize:0x2540be3ff}},{skip:(0,dW.O)(t)});return{isLoading:i,data:n}})({name:(null==n?void 0:n.name)??""}),s=e=>(0,dW.O)(e.label)?e.name:e.label;return(0,ts.useEffect)(()=>{l([]),r([])},[n]),(0,ts.useEffect)(()=>{var e;if((0,eY.isEmpty)(o))return;let t=null==n?void 0:n.columnConfigurations.filter(e=>e.display);i(null==t||null==(e=t.filter(e=>!a.some(t=>e.name===t.name)))?void 0:e.map(e=>({key:e.id,label:s(e),onClick:()=>{(e=>{let t=e.filterType??"string",i=CR[t].frontendType,n=CR[t].type,r=s(e),d=e.name,f=(0,eY.reject)(null==o?void 0:o.items.map(e=>e.data[d]),e=>(0,eY.isNull)(e));l([...a,{data:void 0,id:r,name:d,type:n,frontendType:i,config:{options:(0,eY.uniq)(f),showSearch:"select"===i}}])})(e)}})))},[o,n,a]),(0,to.jsxs)(to.Fragment,{children:[(0,to.jsx)(vw.D,{children:e("reports.field-filters")}),(0,to.jsxs)(tN.Space,{direction:"vertical",style:{width:"100%"},children:[(0,to.jsxs)(rZ.k,{vertical:!0,children:[0===a.length&&(0,to.jsx)(tN.Empty,{image:tN.Empty.PRESENTED_IMAGE_SIMPLE}),a.length>0&&(0,to.jsx)(CA.B,{data:a,onChange:e=>{l(e);let t=e.filter(e=>!(0,eY.isUndefined)(e.data)).map(e=>({property:e.name,type:CO[e.frontendType],operator:"eq",value:String(e.data)}));(0,eY.isUndefined)(t)||r(t)}})]}),!(0,eY.isEmpty)(t)&&(0,to.jsx)(pJ.L,{menu:{items:t},children:(0,to.jsx)(dx.W,{icon:{value:"new"},type:"link",children:e("reports.grid-config.add-column")})})]})]})},CV=()=>{let{filters:e,setFilters:t}=Cw(),{columnsFilters:i,setColumnsFilters:n,setFieldFilters:r}=C_(),{setPage:a}=CM(),{t:l}=(0,t7.useTranslation)(),{styles:o}=CP();return(0,to.jsx)(aF.D,{renderToolbar:(0,to.jsxs)(aO.o,{theme:"secondary",children:[(0,to.jsx)(ai.z,{className:o.btnLink,onClick:()=>{n([]),r([]),t({...e,columnFilters:[]})},type:"link",children:l("sidebar.clear-all-filters")}),(0,to.jsx)(ai.z,{onClick:()=>{a(1),t({...e,columnFilters:i})},type:"primary",children:l("button.apply")})]}),children:(0,to.jsx)(aB.V,{padded:!0,children:(0,to.jsx)(Cz,{})})})},C$=()=>{let{t:e}=(0,t7.useTranslation)(),t={entries:[{component:(0,to.jsx)(CN,{}),key:"reports-columns-configuration",icon:(0,to.jsx)(rR.J,{value:"columns"}),tooltip:e("reports.grid-config.title-columns")},{component:(0,to.jsx)(CF,{children:(0,to.jsx)(CV,{})}),key:"reports-field-filters",icon:(0,to.jsx)(rR.J,{value:"filter"}),tooltip:e("reports.field-filters")}]};return(0,to.jsx)(gG.Y,{...t})},CW=e=>{let{page:t,setPage:i,pageSize:n,setPageSize:r,totalItems:a}=e,{t:l}=(0,t7.useTranslation)();return(0,to.jsx)(aN.t,{current:t,defaultPageSize:n,onChange:(e,t)=>{i(e),r(parseInt(t))},pageSizeOptions:[10,20,50,100],showSizeChanger:!0,showTotal:e=>l("pagination.show-total",{total:e}),total:a})},CH=e=>{let{currentReport:t,page:i,setPage:n,pageSize:r,setPageSize:a,totalItems:l}=e,[o,{isError:s,error:d}]=nC(),{addJob:f}=(0,gn.C)(),{filters:c}=Cw(),{t:u}=(0,t7.useTranslation)(),{styles:m}=CP(),p=e=>{let{includeHeaders:i}=e;f((0,gu.C)({title:u("jobs.csv-job.title",{title:t}),topics:[dp.F["csv-download-ready"],...dp.b],downloadUrl:"/pimcore-studio/api/export/download/csv/{jobRunId}",action:async()=>await o({body:{name:t,filters:c,includeHeaders:i}}).unwrap()}))};(0,ts.useEffect)(()=>{s&&(0,is.ZP)(new is.MS(d))},[s]);let g=function(e){let t=!(arguments.length>1)||void 0===arguments[1]||arguments[1];return(0,to.jsxs)(rZ.k,{align:"center",className:m.dropdownLabel,gap:"extra-small",children:[t&&(0,to.jsx)(rR.J,{value:"export"}),u(e)]})},h=[{key:"csv-export",label:g("reports.csv-export"),onClick:()=>{p({includeHeaders:!1})}},{key:"csv-export-with-headers",label:g("reports.csv-export-with-headers"),onClick:()=>{p({includeHeaders:!0})}}];return(0,to.jsxs)(aO.o,{justify:"space-between",theme:"secondary",children:[(0,to.jsx)(pJ.L,{menu:{items:h},children:(0,to.jsx)(pK.P,{children:g("reports.export",!1)})}),(0,to.jsx)(CW,{page:i,pageSize:r,setPage:n,setPageSize:a,totalItems:l})]})},CG=e=>{let{currentReport:t,setCurrentReport:i,reportsTreeOptions:n}=e,{t:r}=(0,t7.useTranslation)(),{styles:a}=CP(),{resetFilters:l}=Cw(),{resetData:o}=CM();return(0,to.jsx)(aB.V,{padded:!0,padding:{top:"extra-small",right:"extra-small",bottom:"extra-small",left:"extra-small"},children:(0,to.jsx)(aO.o,{padding:{top:"extra-small",bottom:"extra-small",left:"none",right:"none"},position:"top",size:"auto",theme:"secondary",children:(0,to.jsxs)(rZ.k,{align:"center",gap:"extra-small",children:[(0,to.jsx)(nc.x,{className:a.selectReportLabel,children:r("reports.reports-title")}),(0,to.jsx)(tC.P,{className:"min-w-200",onChange:e=>{o(),l(),i(e)},options:n,placeholder:r("reports.select-report"),showSearch:!0,value:t})]})})})};var CU=i(63430),Cq=i(86286);let CZ=[Cq.purple,Cq.magenta,Cq.geekblue,Cq.cyan,Cq.blue,Cq.green,Cq.yellow,Cq.lime,Cq.gold,Cq.volcano,Cq.orange,Cq.red],CK=[4,6,8,2,5,3,7,1,9,0],CJ=e=>{let t=[],i=Object.values(CZ);for(let e of CK)for(let n of i)(0,eY.isUndefined)(n[e])||t.push(n[e]);let n=e-t.length;if(n>0){let e=(e=>{let t=[];for(let i=0;ie.toString(16).padStart(2,"0")).join("");t.push(e)}return t})(n);t.push(...e)}return t},CX=(0,ia.createStyles)(e=>{let{css:t,token:i}=e;return{legendItem:t` padding: 0 ${i.paddingXXS}px; border: 1px solid ${i.colorBorderTertiary}; border-radius: ${i.borderRadiusSM}px; @@ -966,7 +966,7 @@ width: 12px; height: 12px; border-radius: 50%; - `}}),CQ=e=>{let{label:t,value:i,disabled:n,markerColor:r,handleClick:a}=e,{styles:o}=CX();return(0,tl.jsxs)(rZ.k,{align:"center",className:oy()(o.legendItem,{[o.legendItemDisabled]:n}),onClick:a,children:[(0,tl.jsx)("div",{className:o.circle,style:{background:r}}),(0,tl.jsxs)(rZ.k,{gap:"small",children:[(0,tl.jsx)(nc.x,{type:"secondary",children:t}),!(0,eY.isUndefined)(i)&&(0,tl.jsx)(nc.x,{children:i})]})]})},CY=function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],[t,i]=(0,ts.useState)(!1),n=(0,ts.useMemo)(()=>t?e:null==e?void 0:e.slice(0,5),[t,e]);return{isExpanded:t,visibleItems:n,toggle:()=>{i(!t)},initialVisibleCount:5}},C0=e=>{let{isExpanded:t,toggle:i}=e,{t:n}=(0,t7.useTranslation)();return(0,tl.jsx)(rZ.k,{className:"m-t-mini",justify:"center",children:(0,tl.jsx)(dx.W,{icon:{value:t?"chevron-up":"chevron-down"},iconPlacement:"right",onClick:i,type:"link",children:n(t?"reports.show-fewer-labels":"reports.show-all-labels")})})},C1="type",C2="value",C3="color",C6=e=>{let{reportData:t,chartData:i}=e,n=(null==t?void 0:t.pieLabelColumn)??"",r=(null==t?void 0:t.pieColumn)??"",[a]=(0,ts.useState)(CJ(i.length)),o=i.map((e,t)=>({[C1]:null==e?void 0:e[n],[C2]:null==e?void 0:e[r],[C3]:a[t]})),{isExpanded:l,visibleItems:s,toggle:d,initialVisibleCount:f}=CY(o),[c,u]=(0,ts.useState)([]),[m,p]=(0,ts.useState)(null),[g,h]=(0,ts.useState)(0);(0,ts.useEffect)(()=>{null!==m&&(m.chart.changeData(o),h(o.filter(e=>!c.includes(e[C1])).reduce((e,t)=>e+t[C2],0)))},[i]);let b={data:o,colorField:C3,angleField:C2,autoFit:!0,height:230,scale:{color:{type:"identity"}},innerRadius:.6,legend:!1,onReady:e=>{p(e)},tooltip:{items:[e=>({name:`${e.type}`,value:`${e.value} (${Math.round(100*e.value/g)}%)`})]},annotations:[{type:"text",data:[],style:{text:g.toString(),x:"50%",y:"50%",textAlign:"center",fontSize:40,fontStyle:"bold"}}]};return(0,tl.jsxs)("div",{children:[(0,tl.jsx)(CU.Z,{...b}),(0,tl.jsx)(rZ.k,{gap:"mini",justify:"center",wrap:"wrap",children:null==s?void 0:s.map((e,t)=>{let i=c.includes(e.type);return(0,tl.jsx)(CQ,{disabled:i,handleClick:()=>{(e=>{let t=(null==c?void 0:c.includes(e))?c.filter(t=>t!==e):[...c,e];if(u(t),null!==m){let e=m.chart,i=(0,eY.isEmpty)(t)?o:o.filter(e=>!t.includes(e[C1]));h(i.reduce((e,t)=>e+t[C2],0)),e.changeData(i)}})(e.type)},label:e.type,markerColor:e.color,value:e.value},`${t}-${e.type}`)})}),(null==o?void 0:o.length)>f&&(0,tl.jsx)(C0,{isExpanded:l,toggle:d})]})};var C4=i(80652);let C8=(0,ia.createStyles)(e=>{let{css:t,token:i}=e;return{tooltipTitle:t` + `}}),CQ=e=>{let{label:t,value:i,disabled:n,markerColor:r,handleClick:a}=e,{styles:l}=CX();return(0,to.jsxs)(rZ.k,{align:"center",className:ly()(l.legendItem,{[l.legendItemDisabled]:n}),onClick:a,children:[(0,to.jsx)("div",{className:l.circle,style:{background:r}}),(0,to.jsxs)(rZ.k,{gap:"small",children:[(0,to.jsx)(nc.x,{type:"secondary",children:t}),!(0,eY.isUndefined)(i)&&(0,to.jsx)(nc.x,{children:i})]})]})},CY=function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],[t,i]=(0,ts.useState)(!1),n=(0,ts.useMemo)(()=>t?e:null==e?void 0:e.slice(0,5),[t,e]);return{isExpanded:t,visibleItems:n,toggle:()=>{i(!t)},initialVisibleCount:5}},C0=e=>{let{isExpanded:t,toggle:i}=e,{t:n}=(0,t7.useTranslation)();return(0,to.jsx)(rZ.k,{className:"m-t-mini",justify:"center",children:(0,to.jsx)(dx.W,{icon:{value:t?"chevron-up":"chevron-down"},iconPlacement:"right",onClick:i,type:"link",children:n(t?"reports.show-fewer-labels":"reports.show-all-labels")})})},C1="type",C2="value",C3="color",C6=e=>{let{reportData:t,chartData:i}=e,n=(null==t?void 0:t.pieLabelColumn)??"",r=(null==t?void 0:t.pieColumn)??"",[a]=(0,ts.useState)(CJ(i.length)),l=i.map((e,t)=>({[C1]:null==e?void 0:e[n],[C2]:null==e?void 0:e[r],[C3]:a[t]})),{isExpanded:o,visibleItems:s,toggle:d,initialVisibleCount:f}=CY(l),[c,u]=(0,ts.useState)([]),[m,p]=(0,ts.useState)(null),[g,h]=(0,ts.useState)(0);(0,ts.useEffect)(()=>{null!==m&&(m.chart.changeData(l),h(l.filter(e=>!c.includes(e[C1])).reduce((e,t)=>e+t[C2],0)))},[i]);let b={data:l,colorField:C3,angleField:C2,autoFit:!0,height:230,scale:{color:{type:"identity"}},innerRadius:.6,legend:!1,onReady:e=>{p(e)},tooltip:{items:[e=>({name:`${e.type}`,value:`${e.value} (${Math.round(100*e.value/g)}%)`})]},annotations:[{type:"text",data:[],style:{text:g.toString(),x:"50%",y:"50%",textAlign:"center",fontSize:40,fontStyle:"bold"}}]};return(0,to.jsxs)("div",{children:[(0,to.jsx)(CU.Z,{...b}),(0,to.jsx)(rZ.k,{gap:"mini",justify:"center",wrap:"wrap",children:null==s?void 0:s.map((e,t)=>{let i=c.includes(e.type);return(0,to.jsx)(CQ,{disabled:i,handleClick:()=>{(e=>{let t=(null==c?void 0:c.includes(e))?c.filter(t=>t!==e):[...c,e];if(u(t),null!==m){let e=m.chart,i=(0,eY.isEmpty)(t)?l:l.filter(e=>!t.includes(e[C1]));h(i.reduce((e,t)=>e+t[C2],0)),e.changeData(i)}})(e.type)},label:e.type,markerColor:e.color,value:e.value},`${t}-${e.type}`)})}),(null==l?void 0:l.length)>f&&(0,to.jsx)(C0,{isExpanded:o,toggle:d})]})};var C4=i(80652);let C8=(0,ia.createStyles)(e=>{let{css:t,token:i}=e;return{tooltipTitle:t` color: ${i.colorTextTertiary}; `,tooltipItemValue:t` color: ${i.colorText}; @@ -974,7 +974,7 @@ width: 8px; height: 8px; border-radius: 50%; - `}}),C7="name",C5="value",C9=e=>{let{chartData:t,reportData:i,chartLabelMap:n}=e,{styles:r}=C8(),a=(0,ts.useRef)(null),{width:o}=(0,oL.Z)(a),[l]=(0,ts.useState)(CJ(t.length)),s=(null==i?void 0:i.xAxis)??"",d=null==i?void 0:i.yAxis,f=t.flatMap((e,t)=>Object.entries(e).filter(e=>{let[t]=e;return t!==s&&(null==d?void 0:d.includes(t))}).map(t=>{let[i,n]=t;return{[s]:null==e?void 0:e[s],[C7]:i,[C5]:(0,eY.toNumber)(n)}})),c=[...new Set(f.map(e=>e.name))],{isExpanded:u,visibleItems:m,toggle:p,initialVisibleCount:g}=CY(c),[h,b]=(0,ts.useState)(c),y={...Object.fromEntries(c.map((e,t)=>[e,l[t]]))},v=(0,ts.useMemo)(()=>f.filter(e=>h.includes(e.name)),[f,h]),x=(0,ts.useMemo)(()=>({data:v,xField:s,yField:C5,colorField:C7,scale:{color:{range:l}},height:250,point:{shapeField:"circle",sizeField:4},legend:!1,interaction:{tooltip:{bounding:{x:20,y:20,height:250,width:o},render:(e,t)=>{let{title:i,items:a}=t;return(0,tl.jsxs)(rZ.k,{gap:"mini",vertical:!0,children:[(0,tl.jsx)("div",{className:r.tooltipTitle,children:i}),(0,tl.jsx)(rZ.k,{vertical:!0,children:a.map(e=>(0,tl.jsxs)(rZ.k,{gap:"small",justify:"space-between",children:[(0,tl.jsxs)(rZ.k,{align:"center",gap:"mini",children:[(0,tl.jsx)("div",{className:r.circle,style:{backgroundColor:e.color}}),(0,tl.jsx)("div",{children:n[e.name]??e.name})]}),(0,tl.jsx)("div",{className:r.tooltipItemValue,children:e.value})]},e.name))})]})}}}}),[o]);return(0,tl.jsxs)("div",{className:"m-t-mini",children:[(0,tl.jsx)("div",{ref:a,style:{overflowX:"hidden"},children:(0,tl.jsx)(C4.Z,{...x})}),(0,tl.jsx)(rZ.k,{gap:"mini",justify:"center",wrap:"wrap",children:m.map((e,t)=>{let i=h.includes(e);return(0,tl.jsx)(CQ,{disabled:!i,handleClick:()=>{b(t=>t.includes(e)?t.filter(t=>t!==e):[...t,e])},label:n[e]??e,markerColor:y[e]},`${t}-${e}`)})}),(null==c?void 0:c.length)>g&&(0,tl.jsx)(C0,{isExpanded:u,toggle:p})]})};var ke=i(78677);let kt=(0,ia.createStyles)(e=>{let{css:t,token:i}=e;return{tooltipTitle:t` + `}}),C7="name",C5="value",C9=e=>{let{chartData:t,reportData:i,chartLabelMap:n}=e,{styles:r}=C8(),a=(0,ts.useRef)(null),{width:l}=(0,lL.Z)(a),[o]=(0,ts.useState)(CJ(t.length)),s=(null==i?void 0:i.xAxis)??"",d=null==i?void 0:i.yAxis,f=t.flatMap((e,t)=>Object.entries(e).filter(e=>{let[t]=e;return t!==s&&(null==d?void 0:d.includes(t))}).map(t=>{let[i,n]=t;return{[s]:null==e?void 0:e[s],[C7]:i,[C5]:(0,eY.toNumber)(n)}})),c=[...new Set(f.map(e=>e.name))],{isExpanded:u,visibleItems:m,toggle:p,initialVisibleCount:g}=CY(c),[h,b]=(0,ts.useState)(c),y={...Object.fromEntries(c.map((e,t)=>[e,o[t]]))},v=(0,ts.useMemo)(()=>f.filter(e=>h.includes(e.name)),[f,h]),x=(0,ts.useMemo)(()=>({data:v,xField:s,yField:C5,colorField:C7,scale:{color:{range:o}},height:250,point:{shapeField:"circle",sizeField:4},legend:!1,interaction:{tooltip:{bounding:{x:20,y:20,height:250,width:l},render:(e,t)=>{let{title:i,items:a}=t;return(0,to.jsxs)(rZ.k,{gap:"mini",vertical:!0,children:[(0,to.jsx)("div",{className:r.tooltipTitle,children:i}),(0,to.jsx)(rZ.k,{vertical:!0,children:a.map(e=>(0,to.jsxs)(rZ.k,{gap:"small",justify:"space-between",children:[(0,to.jsxs)(rZ.k,{align:"center",gap:"mini",children:[(0,to.jsx)("div",{className:r.circle,style:{backgroundColor:e.color}}),(0,to.jsx)("div",{children:n[e.name]??e.name})]}),(0,to.jsx)("div",{className:r.tooltipItemValue,children:e.value})]},e.name))})]})}}}}),[l]);return(0,to.jsxs)("div",{className:"m-t-mini",children:[(0,to.jsx)("div",{ref:a,style:{overflowX:"hidden"},children:(0,to.jsx)(C4.Z,{...x})}),(0,to.jsx)(rZ.k,{gap:"mini",justify:"center",wrap:"wrap",children:m.map((e,t)=>{let i=h.includes(e);return(0,to.jsx)(CQ,{disabled:!i,handleClick:()=>{b(t=>t.includes(e)?t.filter(t=>t!==e):[...t,e])},label:n[e]??e,markerColor:y[e]},`${t}-${e}`)})}),(null==c?void 0:c.length)>g&&(0,to.jsx)(C0,{isExpanded:u,toggle:p})]})};var ke=i(78677);let kt=(0,ia.createStyles)(e=>{let{css:t,token:i}=e;return{tooltipTitle:t` color: ${i.colorTextTertiary}; `,tooltipItemValue:t` color: ${i.colorText}; @@ -982,7 +982,7 @@ width: 8px; height: 8px; border-radius: 50%; - `}}),ki="name",kn="value",kr=e=>{let{chartData:t,reportData:i,chartLabelMap:n}=e,{styles:r}=kt(),a=(0,ts.useRef)(null),{width:o}=(0,oL.Z)(a),[l]=(0,ts.useState)(CJ(t.length)),s=(null==i?void 0:i.xAxis)??"",d=null==i?void 0:i.yAxis,f=t.flatMap(e=>Object.entries(e).filter(e=>{let[t]=e;return t!==s&&(null==d?void 0:d.includes(t))}).map(t=>{let[i,n]=t;return{[s]:null==e?void 0:e[s],[ki]:i,[kn]:(0,eY.toNumber)(n)}})),c=[...new Set(f.map(e=>e.name))],{isExpanded:u,visibleItems:m,toggle:p,initialVisibleCount:g}=CY(c),[h,b]=(0,ts.useState)(c),y={...Object.fromEntries(c.map((e,t)=>[e,l[t]]))},v=(0,ts.useMemo)(()=>f.filter(e=>h.includes(e.name)),[f,h]),x=(0,ts.useMemo)(()=>({data:v,xField:s,yField:kn,seriesField:ki,colorField:ki,scale:{color:{range:l}},height:250,point:{shapeField:"circle",sizeField:4},legend:!1,interaction:{tooltip:{bounding:{x:20,y:20,height:250,width:o},render:(e,t)=>{let{title:i,items:a}=t;return(0,tl.jsxs)(rZ.k,{gap:"mini",vertical:!0,children:[(0,tl.jsx)("div",{className:r.tooltipTitle,children:i}),(0,tl.jsx)(rZ.k,{vertical:!0,children:a.map(e=>(0,tl.jsxs)(rZ.k,{gap:"small",justify:"space-between",children:[(0,tl.jsxs)(rZ.k,{align:"center",gap:"mini",children:[(0,tl.jsx)("div",{className:r.circle,style:{backgroundColor:e.color}}),(0,tl.jsx)("div",{children:n[e.name]??e.name})]}),(0,tl.jsx)("div",{className:r.tooltipItemValue,children:e.value})]},e.name))})]})}}}}),[o]);return(0,tl.jsxs)("div",{className:"m-t-mini",children:[(0,tl.jsx)("div",{ref:a,style:{overflowX:"hidden"},children:(0,tl.jsx)(ke.Z,{...x})}),(0,tl.jsx)(rZ.k,{gap:"mini",justify:"center",wrap:"wrap",children:m.map((e,t)=>{let i=h.includes(e);return(0,tl.jsx)(CQ,{disabled:!i,handleClick:()=>{b(t=>t.includes(e)?t.filter(t=>t!==e):[...t,e])},label:n[e]??e,markerColor:y[e]},`${t}-${e}`)})}),(null==c?void 0:c.length)>g&&(0,tl.jsx)(C0,{isExpanded:u,toggle:p})]})},ka="line",ko=e=>{let{chartData:t,reportData:i}=e;if((0,eY.isUndefined)(i)||(0,eY.isUndefined)(t))return(0,tl.jsx)(aB.V,{loading:!0});let n=(null==i?void 0:i.chartType)??"default",r=(0,eY.fromPairs)((0,eY.map)(null==i?void 0:i.columnConfigurations,e=>[e.name,(0,dW.O)(e.label)?e.name:e.label])),a={reportData:i,chartData:t,chartLabelMap:r};if((0,dW.O)(t))return(0,tl.jsx)(tN.Empty,{image:tN.Empty.PRESENTED_IMAGE_SIMPLE});switch(n){case"pie":return(0,tl.jsx)(C6,{...a});case ka:return(0,tl.jsx)(C9,{...a});case"bar":return(0,tl.jsx)(kr,{...a});default:return(0,tl.jsx)(C6,{...a})}};var kl=((k={}).ONLY_FILTER="only_filter",k.FILTER_AND_SHOW="filter_and_show",k);let ks=e=>{var t;let{reportName:i,field:n}=e,{filters:r,setFilters:a}=Cw(),{data:o,isLoading:l}=np({body:{name:i,field:n.name??null}}),{t:s}=(0,t7.useTranslation)(),{styles:d}=CP(),[f,c]=(0,ts.useState)(null);return(0,tl.jsxs)(rZ.k,{align:"center",gap:"extra-small",children:[(0,tl.jsx)(nc.x,{className:d.drillDownSelectLabel,children:n.label}),(0,tl.jsx)(tC.P,{className:"min-w-200",loading:l,onSelect:e=>{c(e);let t={...(null==r?void 0:r.drillDownFilters)??{}};t[n.name]=String(e),a({...r,drillDownFilters:t})},options:null==o||null==(t=o.items)?void 0:t.map(e=>({label:e.name,value:e.value})),placeholder:s("select"),value:f})]})};var kd=((T={}).OPEN_OBJECT="openObject",T.OPEN_DOCUMENT="openDocument",T.OPEN_ASSET="openAsset",T.OPEN_URL="openUrl",T);let kf=(0,aj.createColumnHelper)(),kc=e=>{var t;let{isLoading:i,currentReport:n,reportDetailData:r,chartDetailData:a}=e,[o,l]=(0,ts.useState)(!1),s=(0,ts.useRef)(null),{sorting:d,setSorting:f}=CM();(0,ts.useEffect)(()=>{n!==s.current&&(s.current=n,(0,eY.isUndefined)(n)||(0,eY.isNil)(n)||!i||l(!0))},[n,i]),(0,ts.useEffect)(()=>{i||l(!1)},[i]);let{columns:c,setColumns:u,setInitialColumns:m}=CT(),{openElement:p}=(0,ig.f)(),{t:g}=(0,t7.useTranslation)(),{styles:h}=CP(),b=(0,ts.useMemo)(()=>(0,eY.isUndefined)(d)?[]:[{id:d.sortBy,desc:"DESC"===d.sortOrder}],[d]),y=()=>{var e;let t=[];return null==r||null==(e=r.columnConfigurations)||e.forEach((e,i)=>{if(e.display&&e.filterDrilldown!==kl.ONLY_FILTER){let n=(null==e?void 0:e.name)??`id-${i}`;t.push(kf.accessor(n,{header:(0,dW.O)(e.label)?e.name:e.label})),(0,dW.O)(e.action)||t.push(kf.accessor(`${n}-action`,{header:g("actions.open"),enableSorting:!1,size:50,cell:t=>(e=>{let{id:t,actionType:i}=e;return(0,tl.jsx)(rZ.k,{align:"center",justify:"center",children:(0,tl.jsx)(aM.h,{icon:{value:"open-folder"},onClick:()=>{(e=>{let{id:t,actionType:i}=e;if(i===kd.OPEN_URL)window.open(`${eA.G}/pimcore-studio/${t}`,"_blank");else{let e=(e=>{switch(e){case"openObject":default:return"data-object";case"openDocument":return"document";case"openAsset":return"asset"}})(i);p({id:Number(t),type:e})}})({id:Number(t),actionType:i})},type:"link"})})})({id:t.row.original[n],actionType:e.action})}))}}),t.filter(e=>!(0,eY.isUndefined)(e))};(0,ts.useEffect)(()=>{u(y()??[]),m(y()??[])},[r,u]);let v=(0,ts.useMemo)(()=>{var e;return null==r||null==(e=r.columnConfigurations)?void 0:e.filter(e=>!(0,eY.isNil)(e.filterDrilldown)&&!(0,eY.isNil)(e.filterType)).map(e=>e)},[r]),x=!(0,dW.O)(null==r?void 0:r.chartType),j=null==a||null==(t=a.items)?void 0:t.map(e=>e.data),w=(null==r?void 0:r.name)??"";return i&&o?(0,tl.jsx)(aB.V,{loading:!0}):(0,tl.jsxs)(rZ.k,{className:"h-full",gap:"small",vertical:!0,children:[!(0,eY.isUndefined)(v)&&(0,tl.jsx)(rZ.k,{gap:"small",wrap:!0,children:null==v?void 0:v.map(e=>(0,tl.jsx)(ks,{field:e,reportName:w},e.name))}),(0,tl.jsxs)(rZ.k,{className:"h-full",gap:"small",justify:"flex-start",vertical:!0,children:[x&&(0,tl.jsx)(ko,{chartData:j,reportData:r}),!(0,eY.isUndefined)(j)&&(0,tl.jsx)(az.r,{autoWidth:!0,className:h.gridTable,columns:c,data:j,enableSorting:!0,isLoading:i,manualSorting:!0,onSortingChange:e=>{if(e.length>0){let{id:t,desc:i}=e[0];f({sortBy:t,sortOrder:i?"DESC":"ASC"})}else f(void 0)},sorting:b})]})]})},ku=e=>{let{currentReport:t,setCurrentReport:i,reportsTreeOptions:n}=e,{t:r}=(0,t7.useTranslation)(),{isLoading:a,isFetching:o,reportDetailData:l,chartDetailData:s,refetchAll:d,page:f,setPage:c,pageSize:u,setPageSize:m}=CM(),p=!(0,dW.O)(t),g=a||o;return(0,tl.jsx)(ba.S,{renderTabbar:(0,tl.jsx)(aF.D,{renderSidebar:!(0,eY.isEmpty)(l)&&(0,tl.jsx)(C$,{}),renderToolbar:!(0,eY.isEmpty)(null==s?void 0:s.items)&&!o&&(0,tl.jsx)(CH,{currentReport:t,page:f,pageSize:u,setPage:c,setPageSize:m,totalItems:(null==s?void 0:s.totalItems)??0}),renderTopBar:(0,tl.jsx)(CG,{currentReport:t,reportsTreeOptions:n,setCurrentReport:i}),children:(0,tl.jsx)(aB.V,{centered:!p,className:"h-full",padded:!0,padding:{top:"none",right:"extra-small",bottom:"extra-small",left:"extra-small"},children:p?(0,tl.jsx)(kc,{chartDetailData:s,currentReport:t,isLoading:g,reportDetailData:l}):(0,tl.jsx)(rZ.k,{align:"center",justify:"center",children:(0,tl.jsx)(nc.x,{children:r("reports.select-report-name")})})})}),renderToolbar:(0,tl.jsx)(aO.o,{children:(0,tl.jsx)(CI,{isFetching:g,refetch:d})})})},km=e=>{let{reportId:t}=e,[i,n]=(0,ts.useState)(t??null),{isLoading:r,data:a}=nk({page:1,pageSize:9999}),{styles:o}=CP(),l=(e,t)=>(0,tl.jsxs)(rZ.k,{align:"center",gap:"mini",children:[!(0,dW.O)(e)&&(0,tl.jsx)(rR.J,{value:e}),t]}),s=(0,ts.useMemo)(()=>{if(!(0,eY.isUndefined)(null==a?void 0:a.items)){var e;let t={},i=[];null==(e=a.items)||e.forEach(e=>{let n=(0,dW.O)(e.niceName)?e.name:e.niceName;if((0,dW.O)(e.group))return void i.push({label:l(e.iconClass,n),value:e.name});(0,eY.isUndefined)(t[e.group])&&(t[e.group]={label:l(e.groupIconClass,e.group),title:e.group,options:[]}),t[e.group].options.push({label:l(e.iconClass,n),value:e.name})});let n=i.length>0;return Object.keys(t).forEach((e,i)=>{let r=t[e].label;t[e].label=(0,tl.jsx)("div",{className:oy()(o.selectReportGroupLabel,{[o.withDivider]:n||i>0}),children:r})}),[...i,...Object.values(t)]}return[]},[a]),d=r&&(0,eY.isEmpty)(s);return(0,tl.jsx)(aB.V,{loading:d,children:(0,tl.jsx)(CE,{name:i??"",children:(0,tl.jsx)(ku,{currentReport:i,reportsTreeOptions:s,setCurrentReport:n})})})},kp=e=>{let{reportId:t}=e;return(0,tl.jsx)(Cj,{initialValue:{columnFilters:[],drillDownFilters:{}},children:(0,tl.jsx)(Ck,{children:(0,tl.jsx)(d9.d,{serviceIds:["DynamicTypes/FieldFilterRegistry"],children:(0,tl.jsx)(km,{reportId:t})})})})},kg=e=>{let{isFetching:t,refetch:i,handleReportAdd:n}=e,{t:r}=(0,t7.useTranslation)();return(0,tl.jsxs)(aO.o,{children:[(0,tl.jsx)(CI,{isFetching:t,refetch:i}),(0,tl.jsx)(dx.W,{icon:{value:"new"},onClick:n,type:"link",children:r("new")})]})},kh=(e,t)=>{(0,ts.useEffect)(()=>{e&&!(0,eY.isUndefined)(t)&&(0,is.ZP)(new is.MS(t))},[e,t])},kb=()=>{let[e,{isError:t,error:i}]=nh(),[n,{isError:r,error:a}]=nb(),[o,{isError:l,error:s}]=nx(),[d,{isError:f,error:c}]=nv();return kh(t,i),kh(r,a),kh(l,s),kh(f,c),{addReport:async t=>{await e(t)},cloneReport:async e=>{await n(e)},deleteReport:async e=>{await o(e)},updateReport:async e=>{await d(e)}}},ky=(0,ia.createStyles)(e=>{let{css:t,token:i}=e;return{sidebarReportItem:t` + `}}),ki="name",kn="value",kr=e=>{let{chartData:t,reportData:i,chartLabelMap:n}=e,{styles:r}=kt(),a=(0,ts.useRef)(null),{width:l}=(0,lL.Z)(a),[o]=(0,ts.useState)(CJ(t.length)),s=(null==i?void 0:i.xAxis)??"",d=null==i?void 0:i.yAxis,f=t.flatMap(e=>Object.entries(e).filter(e=>{let[t]=e;return t!==s&&(null==d?void 0:d.includes(t))}).map(t=>{let[i,n]=t;return{[s]:null==e?void 0:e[s],[ki]:i,[kn]:(0,eY.toNumber)(n)}})),c=[...new Set(f.map(e=>e.name))],{isExpanded:u,visibleItems:m,toggle:p,initialVisibleCount:g}=CY(c),[h,b]=(0,ts.useState)(c),y={...Object.fromEntries(c.map((e,t)=>[e,o[t]]))},v=(0,ts.useMemo)(()=>f.filter(e=>h.includes(e.name)),[f,h]),x=(0,ts.useMemo)(()=>({data:v,xField:s,yField:kn,seriesField:ki,colorField:ki,scale:{color:{range:o}},height:250,point:{shapeField:"circle",sizeField:4},legend:!1,interaction:{tooltip:{bounding:{x:20,y:20,height:250,width:l},render:(e,t)=>{let{title:i,items:a}=t;return(0,to.jsxs)(rZ.k,{gap:"mini",vertical:!0,children:[(0,to.jsx)("div",{className:r.tooltipTitle,children:i}),(0,to.jsx)(rZ.k,{vertical:!0,children:a.map(e=>(0,to.jsxs)(rZ.k,{gap:"small",justify:"space-between",children:[(0,to.jsxs)(rZ.k,{align:"center",gap:"mini",children:[(0,to.jsx)("div",{className:r.circle,style:{backgroundColor:e.color}}),(0,to.jsx)("div",{children:n[e.name]??e.name})]}),(0,to.jsx)("div",{className:r.tooltipItemValue,children:e.value})]},e.name))})]})}}}}),[l]);return(0,to.jsxs)("div",{className:"m-t-mini",children:[(0,to.jsx)("div",{ref:a,style:{overflowX:"hidden"},children:(0,to.jsx)(ke.Z,{...x})}),(0,to.jsx)(rZ.k,{gap:"mini",justify:"center",wrap:"wrap",children:m.map((e,t)=>{let i=h.includes(e);return(0,to.jsx)(CQ,{disabled:!i,handleClick:()=>{b(t=>t.includes(e)?t.filter(t=>t!==e):[...t,e])},label:n[e]??e,markerColor:y[e]},`${t}-${e}`)})}),(null==c?void 0:c.length)>g&&(0,to.jsx)(C0,{isExpanded:u,toggle:p})]})},ka="line",kl=e=>{let{chartData:t,reportData:i}=e;if((0,eY.isUndefined)(i)||(0,eY.isUndefined)(t))return(0,to.jsx)(aB.V,{loading:!0});let n=(null==i?void 0:i.chartType)??"default",r=(0,eY.fromPairs)((0,eY.map)(null==i?void 0:i.columnConfigurations,e=>[e.name,(0,dW.O)(e.label)?e.name:e.label])),a={reportData:i,chartData:t,chartLabelMap:r};if((0,dW.O)(t))return(0,to.jsx)(tN.Empty,{image:tN.Empty.PRESENTED_IMAGE_SIMPLE});switch(n){case"pie":return(0,to.jsx)(C6,{...a});case ka:return(0,to.jsx)(C9,{...a});case"bar":return(0,to.jsx)(kr,{...a});default:return(0,to.jsx)(C6,{...a})}};var ko=((k={}).ONLY_FILTER="only_filter",k.FILTER_AND_SHOW="filter_and_show",k);let ks=e=>{var t;let{reportName:i,field:n}=e,{filters:r,setFilters:a}=Cw(),{data:l,isLoading:o}=np({body:{name:i,field:n.name??null}}),{t:s}=(0,t7.useTranslation)(),{styles:d}=CP(),[f,c]=(0,ts.useState)(null);return(0,to.jsxs)(rZ.k,{align:"center",gap:"extra-small",children:[(0,to.jsx)(nc.x,{className:d.drillDownSelectLabel,children:n.label}),(0,to.jsx)(tC.P,{className:"min-w-200",loading:o,onSelect:e=>{c(e);let t={...(null==r?void 0:r.drillDownFilters)??{}};t[n.name]=String(e),a({...r,drillDownFilters:t})},options:null==l||null==(t=l.items)?void 0:t.map(e=>({label:e.name,value:e.value})),placeholder:s("select"),value:f})]})};var kd=((T={}).OPEN_OBJECT="openObject",T.OPEN_DOCUMENT="openDocument",T.OPEN_ASSET="openAsset",T.OPEN_URL="openUrl",T);let kf=(0,aj.createColumnHelper)(),kc=e=>{var t;let{isLoading:i,currentReport:n,reportDetailData:r,chartDetailData:a}=e,[l,o]=(0,ts.useState)(!1),s=(0,ts.useRef)(null),{sorting:d,setSorting:f}=CM();(0,ts.useEffect)(()=>{n!==s.current&&(s.current=n,(0,eY.isUndefined)(n)||(0,eY.isNil)(n)||!i||o(!0))},[n,i]),(0,ts.useEffect)(()=>{i||o(!1)},[i]);let{columns:c,setColumns:u,setInitialColumns:m}=CT(),{openElement:p}=(0,ig.f)(),{t:g}=(0,t7.useTranslation)(),{styles:h}=CP(),b=(0,ts.useMemo)(()=>(0,eY.isUndefined)(d)?[]:[{id:d.sortBy,desc:"DESC"===d.sortOrder}],[d]),y=()=>{var e;let t=[];return null==r||null==(e=r.columnConfigurations)||e.forEach((e,i)=>{if(e.display&&e.filterDrilldown!==ko.ONLY_FILTER){let n=(null==e?void 0:e.name)??`id-${i}`;t.push(kf.accessor(n,{header:(0,dW.O)(e.label)?e.name:e.label})),(0,dW.O)(e.action)||t.push(kf.accessor(`${n}-action`,{header:g("actions.open"),enableSorting:!1,size:50,cell:t=>(e=>{let{id:t,actionType:i}=e;return(0,to.jsx)(rZ.k,{align:"center",justify:"center",children:(0,to.jsx)(aM.h,{icon:{value:"open-folder"},onClick:()=>{(e=>{let{id:t,actionType:i}=e;if(i===kd.OPEN_URL)window.open(`${eA.G}/pimcore-studio/${t}`,"_blank");else{let e=(e=>{switch(e){case"openObject":default:return"data-object";case"openDocument":return"document";case"openAsset":return"asset"}})(i);p({id:Number(t),type:e})}})({id:Number(t),actionType:i})},type:"link"})})})({id:t.row.original[n],actionType:e.action})}))}}),t.filter(e=>!(0,eY.isUndefined)(e))};(0,ts.useEffect)(()=>{u(y()??[]),m(y()??[])},[r,u]);let v=(0,ts.useMemo)(()=>{var e;return null==r||null==(e=r.columnConfigurations)?void 0:e.filter(e=>!(0,eY.isNil)(e.filterDrilldown)&&!(0,eY.isNil)(e.filterType)).map(e=>e)},[r]),x=!(0,dW.O)(null==r?void 0:r.chartType),j=null==a||null==(t=a.items)?void 0:t.map(e=>e.data),w=(null==r?void 0:r.name)??"";return i&&l?(0,to.jsx)(aB.V,{loading:!0}):(0,to.jsxs)(rZ.k,{className:"h-full",gap:"small",vertical:!0,children:[!(0,eY.isUndefined)(v)&&(0,to.jsx)(rZ.k,{gap:"small",wrap:!0,children:null==v?void 0:v.map(e=>(0,to.jsx)(ks,{field:e,reportName:w},e.name))}),(0,to.jsxs)(rZ.k,{className:"h-full",gap:"small",justify:"flex-start",vertical:!0,children:[x&&(0,to.jsx)(kl,{chartData:j,reportData:r}),!(0,eY.isUndefined)(j)&&(0,to.jsx)(az.r,{autoWidth:!0,className:h.gridTable,columns:c,data:j,enableSorting:!0,isLoading:i,manualSorting:!0,onSortingChange:e=>{if(e.length>0){let{id:t,desc:i}=e[0];f({sortBy:t,sortOrder:i?"DESC":"ASC"})}else f(void 0)},sorting:b})]})]})},ku=e=>{let{currentReport:t,setCurrentReport:i,reportsTreeOptions:n}=e,{t:r}=(0,t7.useTranslation)(),{isLoading:a,isFetching:l,reportDetailData:o,chartDetailData:s,refetchAll:d,page:f,setPage:c,pageSize:u,setPageSize:m}=CM(),p=!(0,dW.O)(t),g=a||l;return(0,to.jsx)(ba.S,{renderTabbar:(0,to.jsx)(aF.D,{renderSidebar:!(0,eY.isEmpty)(o)&&(0,to.jsx)(C$,{}),renderToolbar:!(0,eY.isEmpty)(null==s?void 0:s.items)&&!l&&(0,to.jsx)(CH,{currentReport:t,page:f,pageSize:u,setPage:c,setPageSize:m,totalItems:(null==s?void 0:s.totalItems)??0}),renderTopBar:(0,to.jsx)(CG,{currentReport:t,reportsTreeOptions:n,setCurrentReport:i}),children:(0,to.jsx)(aB.V,{centered:!p,className:"h-full",padded:!0,padding:{top:"none",right:"extra-small",bottom:"extra-small",left:"extra-small"},children:p?(0,to.jsx)(kc,{chartDetailData:s,currentReport:t,isLoading:g,reportDetailData:o}):(0,to.jsx)(rZ.k,{align:"center",justify:"center",children:(0,to.jsx)(nc.x,{children:r("reports.select-report-name")})})})}),renderToolbar:(0,to.jsx)(aO.o,{children:(0,to.jsx)(CI,{isFetching:g,refetch:d})})})},km=e=>{let{reportId:t}=e,[i,n]=(0,ts.useState)(t??null),{isLoading:r,data:a}=nk({page:1,pageSize:9999}),{styles:l}=CP(),o=(e,t)=>(0,to.jsxs)(rZ.k,{align:"center",gap:"mini",children:[!(0,dW.O)(e)&&(0,to.jsx)(rR.J,{value:e}),t]}),s=(0,ts.useMemo)(()=>{if(!(0,eY.isUndefined)(null==a?void 0:a.items)){var e;let t={},i=[];null==(e=a.items)||e.forEach(e=>{let n=(0,dW.O)(e.niceName)?e.name:e.niceName;if((0,dW.O)(e.group))return void i.push({label:o(e.iconClass,n),value:e.name});(0,eY.isUndefined)(t[e.group])&&(t[e.group]={label:o(e.groupIconClass,e.group),title:e.group,options:[]}),t[e.group].options.push({label:o(e.iconClass,n),value:e.name})});let n=i.length>0;return Object.keys(t).forEach((e,i)=>{let r=t[e].label;t[e].label=(0,to.jsx)("div",{className:ly()(l.selectReportGroupLabel,{[l.withDivider]:n||i>0}),children:r})}),[...i,...Object.values(t)]}return[]},[a]),d=r&&(0,eY.isEmpty)(s);return(0,to.jsx)(aB.V,{loading:d,children:(0,to.jsx)(CE,{name:i??"",children:(0,to.jsx)(ku,{currentReport:i,reportsTreeOptions:s,setCurrentReport:n})})})},kp=e=>{let{reportId:t}=e;return(0,to.jsx)(Cj,{initialValue:{columnFilters:[],drillDownFilters:{}},children:(0,to.jsx)(Ck,{children:(0,to.jsx)(d9.d,{serviceIds:["DynamicTypes/FieldFilterRegistry"],children:(0,to.jsx)(km,{reportId:t})})})})},kg=e=>{let{isFetching:t,refetch:i,handleReportAdd:n}=e,{t:r}=(0,t7.useTranslation)();return(0,to.jsxs)(aO.o,{children:[(0,to.jsx)(CI,{isFetching:t,refetch:i}),(0,to.jsx)(dx.W,{icon:{value:"new"},onClick:n,type:"link",children:r("new")})]})},kh=(e,t)=>{(0,ts.useEffect)(()=>{e&&!(0,eY.isUndefined)(t)&&(0,is.ZP)(new is.MS(t))},[e,t])},kb=()=>{let[e,{isError:t,error:i}]=nh(),[n,{isError:r,error:a}]=nb(),[l,{isError:o,error:s}]=nx(),[d,{isError:f,error:c}]=nv();return kh(t,i),kh(r,a),kh(o,s),kh(f,c),{addReport:async t=>{await e(t)},cloneReport:async e=>{await n(e)},deleteReport:async e=>{await l(e)},updateReport:async e=>{await d(e)}}},ky=(0,ia.createStyles)(e=>{let{css:t,token:i}=e;return{sidebarReportItem:t` padding: 2px ${i.paddingXS}px; &:hover { @@ -1006,7 +1006,7 @@ } `,dropdownButton:t` padding: 0 ${i.paddingXS}px; - `}}),kv=e=>{let{isLoading:t,refetch:i,isFetching:n,reportsList:r,handleOpenReport:a,handleCloseReport:o}=e,[l,s]=(0,ts.useState)([]),[d,f]=(0,ts.useState)(null);(0,ts.useEffect)(()=>{(0,eY.isNil)(null==r?void 0:r.items)||s(r.items)},[r]);let{styles:c}=ky(),{t:u}=(0,t7.useTranslation)(),m=(0,an.U8)(),{addReport:p,cloneReport:g,deleteReport:h}=kb(),b=[{icon:(0,tl.jsx)(rR.J,{value:"copy-03"}),key:"copy",label:u("clone"),onClick:()=>{m.input({label:u("reports.editor.clone.content"),rule:{pattern:/^[a-zA-Z0-9_-]+$/,message:u("reports.editor.content.validation.message")},onOk:async e=>{var t;if((0,eY.isNil)(d))return;await g({name:d.id,bundleCustomReportClone:{newName:e}});let{data:n}=await i(),r=null==n||null==(t=n.items)?void 0:t.find(t=>t.id===e);(0,eY.isUndefined)(r)||a(r)}})}},{icon:(0,tl.jsx)(rR.J,{value:"trash"}),key:"delete",label:u("delete"),onClick:()=>{m.confirm({title:u("delete"),content:u("reports.editor.delete.content",{reportName:null==d?void 0:d.text}),onOk:async()=>{(0,eY.isNil)(d)||h({name:d.id}).then(()=>{o(d.id)})}})}}];return(0,tl.jsx)(aF.D,{renderToolbar:(0,tl.jsx)(kg,{handleReportAdd:()=>{m.input({label:u("reports.editor.add.content"),rule:{pattern:/^[a-zA-Z0-9_-]+$/,message:u("reports.editor.content.validation.message")},onOk:async e=>{var t;await p({bundleCustomReportAdd:{name:e}});let{data:n}=await i(),r=null==n||null==(t=n.items)?void 0:t.find(t=>t.id===e);(0,eY.isUndefined)(r)||a(r)}})},isFetching:n,refetch:i}),children:(0,tl.jsxs)(aB.V,{loading:t,padded:!0,children:[(0,tl.jsx)(a_.M,{onChange:e=>{(e=>{var t;if((0,dW.O)(e))return s((null==r?void 0:r.items)??[]);s((null==r||null==(t=r.items)?void 0:t.filter(t=>t.text.toLowerCase().includes(e.toLowerCase())))??[])})(e.target.value)},placeholder:u("search"),withoutAddon:!0}),(0,tl.jsx)(rZ.k,{className:"h-full",gap:"mini",justify:n?"center":"start",vertical:!0,children:n?(0,tl.jsx)(rZ.k,{align:"center",justify:"center",children:(0,tl.jsx)(aI.y,{asContainer:!0,tip:"Loading"})}):(0,tl.jsx)(tl.Fragment,{children:l.map(e=>(0,tl.jsx)(pJ.L,{menu:{items:b},onOpenChange:t=>{t&&f(e)},trigger:["contextMenu"],children:(0,tl.jsxs)(rZ.k,{align:"center",className:c.sidebarReportItem,gap:"mini",onClick:()=>{a(e)},children:[(0,tl.jsx)(rR.J,{className:c.sidebarReportItemIcon,value:"chart-scatter"}),(0,tl.jsx)(nc.x,{className:c.sidebarReportItemTitle,children:e.text})]})},e.id))})})]})})},kx=e=>{let{children:t,targetId:i}=e,n=document.getElementById(i);return(0,eY.isNull)(n)?(console.error(`Portal target "${i}" not found in DOM`),null):(0,og.createPortal)(t,n)},kj=()=>{let{t:e}=(0,t7.useTranslation)(),t=e=>{let{label:t,name:i,disabled:n=!1,tooltip:r}=e;return(0,tl.jsx)(tc.l.Item,{label:t,name:i,tooltip:r,children:(0,tl.jsx)(ae.I,{disabled:n})})};return(0,tl.jsxs)(nd.h.Panel,{title:e("reports.editor.general-settings.title"),children:[t({label:e("reports.editor.general-settings.name-label"),name:"name",disabled:!0}),t({label:e("reports.editor.general-settings.display-name-label"),name:"niceName"}),t({label:e("reports.editor.general-settings.icon-class-label"),name:"iconClass"}),t({label:e("reports.editor.general-settings.group-label"),name:"group",tooltip:e("reports.editor.general-settings.group-tooltip")}),t({label:e("reports.editor.general-settings.report-class-label"),name:"reportClass"}),t({label:e("reports.editor.general-settings.group-icon-class-label"),name:"groupIconClass"}),(0,tl.jsx)(tc.l.Item,{name:"menuShortcut",children:(0,tl.jsx)(s0.r,{labelRight:e("reports.editor.general-settings.shortcut-menu-label")})})]})},kw=e=>{var t;let{currentData:i,updateFormData:n}=e,{t:r}=(0,t7.useTranslation)(),{styles:a}=ky(),o=tc.l.useFormInstance(),[l,s]=(0,ts.useState)(null==(t=i.dataSourceConfig)?void 0:t.type),d=(0,eY.isUndefined)(l),f=eB.nC.get(eO.j["DynamicTypes/CustomReportDefinitionRegistry"]),c=f.getDynamicTypes(),u=d?void 0:f.getDynamicType(l),m=(0,ts.useMemo)(()=>c.map(e=>({key:e.id,label:e.label})),[c]);return(0,tl.jsxs)(nd.h.Panel,{extra:d&&(0,tl.jsx)(pJ.L,{menu:{items:m,onClick:e=>{var t;s(t=e.key),o.setFieldsValue({dataSourceConfig:{type:t}})}},trigger:["click"],children:(0,tl.jsx)(dx.W,{className:a.dropdownButton,icon:{value:"plus-circle"},children:r("add")})}),extraPosition:"start",title:r("reports.editor.source-definition.title"),children:[d&&(0,tl.jsx)(nc.x,{type:"secondary",children:r("reports.editor.source-definition.no-content")}),!d&&(0,tl.jsx)(rZ.k,{gap:"extra-small",vertical:!0,children:(0,tl.jsxs)(tc.l.Group,{name:"dataSourceConfig",children:[(0,tl.jsx)(tc.l.Item,{label:r("reports.editor.source-definition.select-source-definition"),name:"type",children:(0,tl.jsx)(tC.P,{fieldNames:{label:"label",value:"key"},options:m})}),null==u?void 0:u.getCustomReportData({currentData:i,updateFormData:n})]})})]})},kC=(0,ia.createStyles)(e=>{let{css:t,token:i}=e;return{grid:t` + `}}),kv=e=>{let{isLoading:t,refetch:i,isFetching:n,reportsList:r,handleOpenReport:a,handleCloseReport:l}=e,[o,s]=(0,ts.useState)([]),[d,f]=(0,ts.useState)(null);(0,ts.useEffect)(()=>{(0,eY.isNil)(null==r?void 0:r.items)||s(r.items)},[r]);let{styles:c}=ky(),{t:u}=(0,t7.useTranslation)(),m=(0,an.U8)(),{addReport:p,cloneReport:g,deleteReport:h}=kb(),b=[{icon:(0,to.jsx)(rR.J,{value:"copy-03"}),key:"copy",label:u("clone"),onClick:()=>{m.input({label:u("reports.editor.clone.content"),rule:{pattern:/^[a-zA-Z0-9_-]+$/,message:u("reports.editor.content.validation.message")},onOk:async e=>{var t;if((0,eY.isNil)(d))return;await g({name:d.id,bundleCustomReportClone:{newName:e}});let{data:n}=await i(),r=null==n||null==(t=n.items)?void 0:t.find(t=>t.id===e);(0,eY.isUndefined)(r)||a(r)}})}},{icon:(0,to.jsx)(rR.J,{value:"trash"}),key:"delete",label:u("delete"),onClick:()=>{m.confirm({title:u("delete"),content:u("reports.editor.delete.content",{reportName:null==d?void 0:d.text}),onOk:async()=>{(0,eY.isNil)(d)||h({name:d.id}).then(()=>{l(d.id)})}})}}];return(0,to.jsx)(aF.D,{renderToolbar:(0,to.jsx)(kg,{handleReportAdd:()=>{m.input({label:u("reports.editor.add.content"),rule:{pattern:/^[a-zA-Z0-9_-]+$/,message:u("reports.editor.content.validation.message")},onOk:async e=>{var t;await p({bundleCustomReportAdd:{name:e}});let{data:n}=await i(),r=null==n||null==(t=n.items)?void 0:t.find(t=>t.id===e);(0,eY.isUndefined)(r)||a(r)}})},isFetching:n,refetch:i}),children:(0,to.jsxs)(aB.V,{loading:t,padded:!0,children:[(0,to.jsx)(a_.M,{onChange:e=>{(e=>{var t;if((0,dW.O)(e))return s((null==r?void 0:r.items)??[]);s((null==r||null==(t=r.items)?void 0:t.filter(t=>t.text.toLowerCase().includes(e.toLowerCase())))??[])})(e.target.value)},placeholder:u("search"),withoutAddon:!0}),(0,to.jsx)(rZ.k,{className:"h-full",gap:"mini",justify:n?"center":"start",vertical:!0,children:n?(0,to.jsx)(rZ.k,{align:"center",justify:"center",children:(0,to.jsx)(aI.y,{asContainer:!0,tip:"Loading"})}):(0,to.jsx)(to.Fragment,{children:o.map(e=>(0,to.jsx)(pJ.L,{menu:{items:b},onOpenChange:t=>{t&&f(e)},trigger:["contextMenu"],children:(0,to.jsxs)(rZ.k,{align:"center",className:c.sidebarReportItem,gap:"mini",onClick:()=>{a(e)},children:[(0,to.jsx)(rR.J,{className:c.sidebarReportItemIcon,value:"chart-scatter"}),(0,to.jsx)(nc.x,{className:c.sidebarReportItemTitle,children:e.text})]})},e.id))})})]})})},kx=e=>{let{children:t,targetId:i}=e,n=document.getElementById(i);return(0,eY.isNull)(n)?(console.error(`Portal target "${i}" not found in DOM`),null):(0,lg.createPortal)(t,n)},kj=()=>{let{t:e}=(0,t7.useTranslation)(),t=e=>{let{label:t,name:i,disabled:n=!1,tooltip:r}=e;return(0,to.jsx)(tc.l.Item,{label:t,name:i,tooltip:r,children:(0,to.jsx)(ae.I,{disabled:n})})};return(0,to.jsxs)(nd.h.Panel,{title:e("reports.editor.general-settings.title"),children:[t({label:e("reports.editor.general-settings.name-label"),name:"name",disabled:!0}),t({label:e("reports.editor.general-settings.display-name-label"),name:"niceName"}),t({label:e("reports.editor.general-settings.icon-class-label"),name:"iconClass"}),t({label:e("reports.editor.general-settings.group-label"),name:"group",tooltip:e("reports.editor.general-settings.group-tooltip")}),t({label:e("reports.editor.general-settings.report-class-label"),name:"reportClass"}),t({label:e("reports.editor.general-settings.group-icon-class-label"),name:"groupIconClass"}),(0,to.jsx)(tc.l.Item,{name:"menuShortcut",children:(0,to.jsx)(s0.r,{labelRight:e("reports.editor.general-settings.shortcut-menu-label")})})]})},kw=e=>{var t;let{currentData:i,updateFormData:n}=e,{t:r}=(0,t7.useTranslation)(),{styles:a}=ky(),l=tc.l.useFormInstance(),[o,s]=(0,ts.useState)(null==(t=i.dataSourceConfig)?void 0:t.type),d=(0,eY.isUndefined)(o),f=eB.nC.get(eO.j["DynamicTypes/CustomReportDefinitionRegistry"]),c=f.getDynamicTypes(),u=d?void 0:f.getDynamicType(o),m=(0,ts.useMemo)(()=>c.map(e=>({key:e.id,label:e.label})),[c]);return(0,to.jsxs)(nd.h.Panel,{extra:d&&(0,to.jsx)(pJ.L,{menu:{items:m,onClick:e=>{var t;s(t=e.key),l.setFieldsValue({dataSourceConfig:{type:t}})}},trigger:["click"],children:(0,to.jsx)(dx.W,{className:a.dropdownButton,icon:{value:"plus-circle"},children:r("add")})}),extraPosition:"start",title:r("reports.editor.source-definition.title"),children:[d&&(0,to.jsx)(nc.x,{type:"secondary",children:r("reports.editor.source-definition.no-content")}),!d&&(0,to.jsx)(rZ.k,{gap:"extra-small",vertical:!0,children:(0,to.jsxs)(tc.l.Group,{name:"dataSourceConfig",children:[(0,to.jsx)(tc.l.Item,{label:r("reports.editor.source-definition.select-source-definition"),name:"type",children:(0,to.jsx)(tC.P,{fieldNames:{label:"label",value:"key"},options:m})}),null==u?void 0:u.getCustomReportData({currentData:i,updateFormData:n})]})})]})},kC=(0,ia.createStyles)(e=>{let{css:t,token:i}=e;return{grid:t` width: 100%; overflow-y: scroll; `,permissionLabel:t` @@ -1029,7 +1029,7 @@ .ant-tag { background-color: ${i.Colors.Neutral.Fill.colorFillTertiary}; } - `}}),kk=e=>{let{currentData:t,updateFormData:i}=e,{t:n}=(0,t7.useTranslation)(),{styles:r}=kC(),a=(()=>{let e=(0,aj.createColumnHelper)(),{t}=(0,t7.useTranslation)();return[e.accessor("rowDragCol",{header:"",size:40}),e.accessor(nT,{header:t("reports.editor.manage-column-configuration.name"),meta:{type:"text-cell"}}),e.accessor(nS,{header:t("reports.editor.manage-column-configuration.display"),meta:{type:"checkbox",editable:!0}}),e.accessor(nD,{header:t("reports.editor.manage-column-configuration.export"),meta:{type:"checkbox",editable:!0}}),e.accessor(nE,{header:t("reports.editor.manage-column-configuration.order"),meta:{type:"checkbox",editable:!0}}),e.accessor(nM,{header:t("reports.editor.manage-column-configuration.filter-type"),meta:{type:"select",editable:!0,config:{options:[{label:t("reports.editor.manage-column-configuration.filter-type.empty"),value:""},{label:t("reports.editor.manage-column-configuration.filter-type.text"),value:"string"},{label:t("reports.editor.manage-column-configuration.filter-type.number"),value:"numeric"},{label:t("reports.editor.manage-column-configuration.filter-type.date"),value:"date"},{label:t("reports.editor.manage-column-configuration.filter-type.bool"),value:"boolean"}]}}}),e.accessor(nI,{header:t("reports.editor.manage-column-configuration.display-type"),meta:{type:"select",editable:!0,config:{options:[{label:t("reports.editor.manage-column-configuration.display-type.none"),value:""},{label:t("reports.editor.manage-column-configuration.display-type.text"),value:"text"},{label:t("reports.editor.manage-column-configuration.display-type.date"),value:"date"},{label:t("reports.editor.manage-column-configuration.display-type.hide"),value:"hide"}]}}}),e.accessor(nL,{header:t("reports.editor.manage-column-configuration.filter-drilldown"),meta:{type:"select",editable:!0,config:{options:[{label:t("reports.editor.manage-column-configuration.filter-drilldown.empty"),value:""},{label:t("reports.editor.manage-column-configuration.filter-drilldown.only-filter"),value:"only_filter"},{label:t("reports.editor.manage-column-configuration.filter-drilldown.filter-and-show"),value:"filter_and_show"}]}}}),e.accessor(nP,{header:t("reports.editor.manage-column-configuration.width"),meta:{type:"number-cell",editable:!0}}),e.accessor(nN,{header:t("reports.editor.manage-column-configuration.label"),meta:{type:"text-cell",editable:!0}}),e.accessor(nA,{header:t("reports.editor.manage-column-configuration.action"),meta:{type:"select",editable:!0,config:{options:[{label:t("reports.editor.manage-column-configuration.action.none"),value:""},{label:t("reports.editor.manage-column-configuration.action.open-document"),value:"openDocument"},{label:t("reports.editor.manage-column-configuration.action.open-asset"),value:"openAsset"},{label:t("reports.editor.manage-column-configuration.action.open-object"),value:"openObject"},{label:t("reports.editor.manage-column-configuration.action.open-url"),value:"openUrl"}]}}})]})(),o=null==t?void 0:t.columnConfigurations;return(0,tl.jsx)(nd.h.Panel,{title:n("reports.editor.manage-column-configuration.title"),children:(0,tl.jsx)(az.r,{autoWidth:!0,className:r.grid,columns:a,data:o,enableRowDrag:!0,handleDragEnd:e=>{let{active:n,over:r}=e;if(!(0,eY.isNil)(n)&&!(0,eY.isNil)(r)&&!(0,eY.isEqual)(n.id,r.id)){let e=null==o?void 0:o.findIndex(e=>e.id===n.id),a=null==o?void 0:o.findIndex(e=>e.id===r.id);if(-1===e||-1===a)return;let l=(0,o4.arrayMove)(o,e,a);null==i||i({...t,columnConfigurations:l})}},onUpdateCellData:e=>{let{rowIndex:n,columnId:r,value:a}=e,l=null==o?void 0:o.map((e,t)=>t===n?{...e,[r]:a}:e);null==i||i({...t,columnConfigurations:l})},resizable:!0,setRowId:e=>e.id})})},kT=e=>{let{currentData:t}=e,{t:i}=(0,t7.useTranslation)(),n=[{value:"",label:i("reports.editor.chart-settings.chart-type.none")},{value:"pie",label:i("reports.editor.chart-settings.chart-type.pie-chart")},{value:ka,label:i("reports.editor.chart-settings.chart-type.line-chart")},{value:"bar",label:i("reports.editor.chart-settings.chart-type.bar-chart")}],r=(0,ts.useMemo)(()=>t.columnConfigurations.map(e=>({value:e.name,label:e.name})),[t]),a=e=>{let{label:t,name:i,mode:n}=e;return(0,tl.jsx)(tc.l.Item,{label:t,name:i,children:(0,tl.jsx)(tC.P,{className:"w-full",mode:n,options:r})})};return(0,tl.jsxs)(nd.h.Panel,{title:i("reports.editor.chart-settings.title"),children:[(0,tl.jsx)(tc.l.Item,{label:i("reports.editor.chart-settings.chart-type"),name:"chartType",children:(0,tl.jsx)(tC.P,{options:n})}),(0,tl.jsx)(sX.h,{condition:e=>"pie"===e.chartType,children:(0,tl.jsxs)(nd.h.Panel,{border:!0,theme:"fieldset",title:i("reports.editor.chart-settings.settings"),children:[a({label:i("reports.editor.chart-settings.pie-label"),name:"pieLabelColumn"}),a({label:i("reports.editor.chart-settings.pie-data"),name:"pieColumn"})]})}),(0,tl.jsx)(sX.h,{condition:e=>e.chartType===ka,children:(0,tl.jsxs)(nd.h.Panel,{border:!0,theme:"fieldset",title:i("reports.editor.chart-settings.settings"),children:[a({label:i("reports.editor.chart-settings.x-axis"),name:"xAxis"}),a({label:i("reports.editor.chart-settings.y-axis"),name:"yAxis",mode:"multiple"})]})}),(0,tl.jsx)(sX.h,{condition:e=>"bar"===e.chartType,children:(0,tl.jsxs)(nd.h.Panel,{border:!0,theme:"fieldset",title:i("reports.editor.chart-settings.settings"),children:[a({label:i("reports.editor.chart-settings.x-axis"),name:"xAxis"}),a({label:i("reports.editor.chart-settings.y-axis"),name:"yAxis",mode:"multiple"})]})})]})},kS=e=>{let{currentData:t,updateFormData:i}=e,{t:n}=(0,t7.useTranslation)(),{styles:r}=kC(),{data:a}=(0,yz.m)(),{data:o}=(0,yV.Ri)(),[l,s]=(0,ts.useState)(t.sharedGlobally),[d,f]=(0,ts.useState)(!1),c=()=>{f(!1)},u=(0,ts.useMemo)(()=>t.sharedUserNames.map(e=>{var t;return null==o||null==(t=o.items.find(t=>t.username===e))?void 0:t.id}).filter(e=>!(0,eY.isUndefined)(e)),[t.sharedUserNames]),m=(0,ts.useMemo)(()=>t.sharedRoleNames.map(e=>{var t;return null==a||null==(t=a.items.find(t=>t.name===e))?void 0:t.id}).filter(e=>!(0,eY.isUndefined)(e)),[t.sharedRoleNames]),p=(e,t)=>(0,tl.jsx)(rR.J,{className:r.permissionIcon,options:{width:t??12,height:t??12},value:e});return(0,tl.jsxs)(nd.h.Panel,{title:n("reports.editor.permissions.title"),children:[(0,tl.jsx)(tc.l.Item,{name:"sharedGlobally",children:(0,tl.jsx)(s0.r,{labelLeft:(0,tl.jsx)(nc.x,{children:n("grid.configuration.shared")}),labelRight:l?(0,tl.jsx)(nc.x,{className:r.permissionLabel,children:n("common.globally")}):(0,tl.jsxs)(tl.Fragment,{children:[(0,tl.jsxs)(rZ.k,{gap:10,children:[(0,tl.jsxs)(nc.x,{className:r.permissionLabel,children:[p("user")," ",n("user-management.user")," | ",p("shield")," ",n("user-management.role")]}),(0,tl.jsxs)(rZ.k,{align:"center",className:r.permissionUpdateButton,gap:8,onClick:()=>{f(!d)},children:[p("edit",16),(0,tl.jsx)(nc.x,{className:r.permissionUpdateButtonText,children:n("button.add-edit")})]})]}),d&&(0,tl.jsx)(yA.h,{handleApplyChanges:e=>{let{sharedUsers:n,sharedRoles:r}=e,l=n.map(e=>{var t;return null==o||null==(t=o.items.find(t=>t.id===e))?void 0:t.username}).filter(e=>!(0,eY.isUndefined)(e)),s=r.map(e=>{var t;return null==a||null==(t=a.items.find(t=>t.id===e))?void 0:t.name}).filter(e=>!(0,eY.isUndefined)(e));null==i||i({...t,sharedUserNames:l,sharedRoleNames:s}),c()},handleClose:c,initialSharedRoles:m,initialSharedUsers:u,placement:"top",roleList:a,userList:o})]}),onChange:e=>{s(e)}})}),!l&&(0,tl.jsx)(hQ.P,{itemGap:"mini",list:(()=>{let e=[],i=[],n=e=>{let{label:t,iconName:i}=e;return{children:(0,tl.jsx)(nc.x,{ellipsis:!0,style:{maxWidth:"148px"},type:"secondary",children:t}),icon:p(i),bordered:!1}};return t.sharedUserNames.forEach(t=>{e.push(n({label:t,iconName:"user"}))}),t.sharedRoleNames.forEach(e=>{i.push(n({label:e,iconName:"shield"}))}),[e,i]})(),tagListItemClassNames:r.permissionTag})]})},kD=e=>{let{report:t,isActive:i}=e,{isLoading:n,data:r,isFetching:a,refetch:o}=nj({name:t.id}),{initializeForm:l,currentData:s,isDirty:d,updateFormData:f,markFormSaved:c}=(()=>{let[e,t]=(0,ts.useState)(null),[i,n]=(0,ts.useState)(null),r=(0,ts.useMemo)(()=>!((0,eY.isNull)(e)||(0,eY.isNull)(i))&&!(0,eY.isEqual)(e,i),[e,i]);return{initialData:e,currentData:i,isDirty:r,initializeForm:e=>{t({...e}),n({...e})},updateFormData:e=>{n(t=>(0,eY.isNull)(t)?null:{...t,...e})},markFormSaved:()=>{(0,eY.isNull)(i)||t({...i})}}})(),{updateReport:u}=kb(),[m,p]=(0,ts.useState)(!1),{t:g}=(0,t7.useTranslation)();return(0,ts.useEffect)(()=>{(0,eY.isUndefined)(r)||l(r)},[r]),(0,tl.jsx)(aB.V,{loading:n,padded:!0,padding:{top:"none",right:"extra-small",bottom:"none",left:"extra-small"},children:!(0,eY.isNull)(s)&&(0,tl.jsxs)(nd.h,{formProps:{initialValues:s,onValuesChange:(e,t)=>{f({...s,...t})}},children:[(0,tl.jsx)(kj,{}),(0,tl.jsx)(kw,{currentData:s,updateFormData:f}),(0,tl.jsx)(kk,{currentData:s,updateFormData:f}),(0,tl.jsx)(kT,{currentData:s}),(0,tl.jsx)(kS,{currentData:s,updateFormData:f}),i&&(0,tl.jsx)(kx,{targetId:kM,children:(0,tl.jsx)(CI,{isFetching:a,refetch:o})}),i&&(0,tl.jsx)(kx,{targetId:kI,children:(0,tl.jsx)(ai.z,{disabled:!d,loading:m,onClick:()=>{if((0,eY.isNull)(s))return;p(!0);let e={...s,...{dataSourceConfig:(0,eY.castArray)((null==s?void 0:s.dataSourceConfig)??[])},...""===s.chartType?{xAxis:"",yAxis:[],pieColumn:"",pieLabelColumn:""}:{pieColumn:s.pieColumn,pieLabelColumn:s.pieLabelColumn,xAxis:s.xAxis,yAxis:(0,eY.isNull)(s.yAxis)?[]:(0,eY.castArray)(s.yAxis)},...s.sharedGlobally&&{sharedRoleNames:[],sharedUserNames:[]}};u({name:t.id,bundleCustomReportUpdate:e}).then(()=>{c(),p(!1)})},type:"primary",children:g("save")})})]})})},kE=e=>{let{id:t,...i}=e;return(0,tl.jsx)("div",{id:t,...i})},kM="reports-editor-toolbar-refetch-btn",kI="reports-editor-toolbar-save-btn",kL=()=>{let{data:e,isLoading:t,isFetching:i,refetch:n}=nw({page:1,pageSize:9999}),[r,a]=(0,ts.useState)([]),[o,l]=(0,ts.useState)(void 0),{styles:s}=ky(),d=(0,ts.useMemo)(()=>{var t;let i=new Set(null==e||null==(t=e.items)?void 0:t.map(e=>e.id));return r.filter(e=>i.has(e.id)).map(e=>({key:e.id,label:e.text,children:(0,tl.jsx)(kD,{isActive:o===e.id,report:e})}))},[e,r,o]),f=e=>{let t=r.findIndex(t=>t.id===e),i=r.filter(t=>t.id!==e);if(e===o){let e=r[t-1];l((0,eY.isUndefined)(e)?void 0:e.id)}a(i)};return(0,tl.jsx)(xQ,{leftItem:{children:(0,tl.jsx)(kv,{handleCloseReport:f,handleOpenReport:e=>{r.some(t=>t.id===e.id)||a([...r,e]),l(e.id)},isFetching:i,isLoading:t,refetch:n,reportsList:e})},rightItem:{children:(0,eY.isUndefined)(o)?(0,tl.jsx)(aB.V,{none:!0}):(0,tl.jsx)(aF.D,{renderToolbar:(0,tl.jsxs)(aO.o,{justify:"space-between",children:[(0,tl.jsx)(kE,{id:kM}),(0,tl.jsx)(kE,{id:kI})]}),children:(0,tl.jsx)(ay.m,{activeKey:o,className:s.tabs,hasStickyHeader:!0,items:d,onChange:e=>{l(e)},onClose:f,rootClassName:s.tabsContainer})})}})},kP="Reporting";eR._.registerModule({onInit:()=>{let e=eB.nC.get(eO.j.mainNavRegistry);eB.nC.get(eO.j["DynamicTypes/CustomReportDefinitionRegistry"]).registerDynamicType(eB.nC.get(eO.j["DynamicTypes/CustomReportDefinition/Sql"])),e.registerMainNavItem({path:`${kP}/Reports`,label:"navigation.reports",className:"item-style-modifier",order:100,dividerBottom:!0,permission:jg.P.Reports,perspectivePermission:jp.Reports,widgetConfig:{name:"Reports",id:"reports",component:"reports",config:{translationKey:"navigation.reports",icon:{type:"name",value:"pie-chart"}}}}),e.registerMainNavItem({path:`${kP}/Custom Reports`,label:"navigation.custom-reports",order:200,dividerBottom:!0,permission:jg.P.ReportsConfig,perspectivePermission:jp.Reports,widgetConfig:{name:"Custom Reports",id:"custom-reports",component:"custom-reports",config:{translationKey:"navigation.custom-reports",icon:{type:"name",value:"chart-scatter"}}}});let t=eB.nC.get(eO.j.widgetManager);t.registerWidget({name:"reports",component:kp}),t.registerWidget({name:"custom-reports",component:kL}),hd.h.dispatch(nm.hi.endpoints.customReportsGetTree.initiate({page:1,pageSize:999999})).unwrap().then(i=>{(0,eY.isUndefined)(null==i?void 0:i.items)||(i.items.forEach((t,i)=>{if(t.menuShortcut){let n=t.name,r=(0,dW.O)(t.niceName)?n:t.niceName,a=(0,dW.O)(t.group)?`${kP}/${n}`:`${kP}/${t.group}/${n}`;e.registerMainNavItem({id:`${n}-${i}`,path:a,label:r,group:t.group,order:300+i,permission:jg.P.Reports,perspectivePermission:jp.Reports,widgetConfig:{component:"dynamic-report",config:{translationKey:"navigation.reports",icon:{type:"name",value:"pie-chart"},reportId:n}}})}}),t.registerWidget({name:"dynamic-report",component:kp}))}).catch(e=>{console.error("Failed to load reports for menu:",e)})}});let kN=aw.api.enhanceEndpoints({addTagTypes:["Bundle Application Logger"]}).injectEndpoints({endpoints:e=>({bundleApplicationLoggerGetCollection:e.query({query:e=>({url:"/pimcore-studio/api/bundle/application-logger/list",method:"POST",body:e.body}),providesTags:["Bundle Application Logger"]}),bundleApplicationLoggerListComponents:e.query({query:()=>({url:"/pimcore-studio/api/bundle/application-logger/components"}),providesTags:["Bundle Application Logger"]}),bundleApplicationLoggerListPriorities:e.query({query:()=>({url:"/pimcore-studio/api/bundle/application-logger/priorities"}),providesTags:["Bundle Application Logger"]})}),overrideExisting:!1}),{useBundleApplicationLoggerGetCollectionQuery:kA,useBundleApplicationLoggerListComponentsQuery:kR,useBundleApplicationLoggerListPrioritiesQuery:kO}=kN,kB=kN.enhanceEndpoints({addTagTypes:[gi.fV.APPLICATION_LOGGER,gi.fV.APPLICATION_LOGGER_DETAIL],endpoints:{bundleApplicationLoggerGetCollection:{providesTags:(e,t,i)=>{var n;let r=[];return null==e||null==(n=e.items)||n.forEach(e=>{r.push(...gi.Kx.APPLICATION_LOGGER_DETAIL(e.id))}),[...r,...gi.Kx.APPLICATION_LOGGER()]}}}}),{useBundleApplicationLoggerGetCollectionQuery:kF,useBundleApplicationLoggerListComponentsQuery:k_,useBundleApplicationLoggerListPrioritiesQuery:kz}=kB;class kV extends ot.E{}let k$=(0,ts.createContext)(void 0),kW=e=>{let[t,i]=td().useState(null),[n,r]=td().useState(null),[a,o]=td().useState([]),[l,s]=td().useState(null),[d,f]=td().useState(null),[c,u]=td().useState(null),[m,p]=td().useState(null),[g,h]=td().useState(null),[b,y]=td().useState(!1),v=()=>{o(j())},x=()=>{i(()=>null),r(()=>null),s(()=>null),f(()=>null),u(()=>null),p(()=>null),h(()=>null),o([])},j=()=>{let e=[];return(0,eY.isNil)(t)||e.push({key:"dateFrom",type:"date",filterValue:{operator:"from",value:t}}),(0,eY.isNil)(n)||e.push({key:"dateTo",type:"date",filterValue:{operator:"to",value:n}}),(0,eY.isNil)(l)||e.push({key:"priority",type:"equals",filterValue:parseInt(l)}),(0,eY.isNil)(d)||e.push({key:"component",type:"equals",filterValue:d}),(0,eY.isNil)(c)||e.push({key:"relatedobject",type:"equals",filterValue:c}),(0,eY.isNil)(m)||e.push({key:"message",type:"like",filterValue:m}),(0,eY.isNil)(g)||e.push({key:"pid",type:"equals",filterValue:g}),e};return(0,ts.useMemo)(()=>(0,tl.jsx)(k$.Provider,{value:{dateFrom:t,setDateFrom:i,dateTo:n,setDateTo:r,logLevel:l,setLogLevel:s,component:d,setComponent:f,relatedObjectId:c,setRelatedObjectId:u,message:m,setMessage:p,pid:g,setPid:h,columnFilters:a,updateFilters:v,resetFilters:x,isLoading:b,setIsLoading:y},children:e.children}),[t,n,a,l,d,c,m,g,b])},kH=()=>{let e=(0,ts.useContext)(k$);if(void 0===e)throw Error("useFilter must be used within a FilterProvider");return e},kG=()=>{let{data:e,isLoading:t}=kR(),[i,n]=(0,ts.useState)([]),{component:r,setComponent:a}=kH();return(0,ts.useEffect)(()=>{if((null==e?void 0:e.items)!==void 0&&e.items.length>0){let t=[];e.items.forEach(e=>{t.push({value:e,label:e})}),n(t)}},[e]),(0,tl.jsx)(ih.Select,{loading:t,onChange:e=>{a(e)},options:i??[],value:r??void 0})},kU=()=>{let{t:e}=(0,t7.useTranslation)(),{data:t,isLoading:i}=kz(),[n,r]=(0,ts.useState)([]),{logLevel:a,setLogLevel:o}=kH();return(0,ts.useEffect)(()=>{if((null==t?void 0:t.priorities)!==void 0&&t.priorities.length>0){let i=[];t.priorities.forEach(t=>{i.push({value:t.toString(),label:e("application-logger.filter.priority-level."+t.toString())})}),r(i)}},[t]),(0,tl.jsx)(ih.Select,{loading:i,onChange:e=>{o(e)},options:n??[],value:a??void 0})},kq="YYYY-MM-DD HH:mm",kZ=new kV;kZ.registerEntry({key:"filter",icon:(0,tl.jsx)(rR.J,{options:{width:"16px",height:"16px"},value:"filter"}),component:(0,tl.jsx)(()=>{let{t:e}=(0,t7.useTranslation)(),[t]=ih.Form.useForm(),{dateFrom:i,setDateFrom:n,dateTo:r,setDateTo:a,relatedObjectId:o,setRelatedObjectId:l,message:s,setMessage:d,pid:f,setPid:c,resetFilters:u,updateFilters:m,isLoading:p}=kH();return(0,tl.jsx)(ih.ContentLayout,{renderToolbar:(0,tl.jsxs)(ih.Toolbar,{theme:"secondary",children:[(0,tl.jsx)(ih.IconTextButton,{disabled:p,icon:{value:"close"},onClick:()=>{u(),t.resetFields()},type:"link",children:e("sidebar.clear-all-filters")}),(0,tl.jsx)(ih.Button,{disabled:p,loading:p,onClick:m,type:"primary",children:e("button.apply")})]}),children:(0,tl.jsx)(ih.Content,{padded:!0,children:(0,tl.jsx)(ih.Form,{form:t,layout:"vertical",children:(0,tl.jsxs)(ih.Space,{direction:"vertical",size:"none",style:{width:"100%"},children:[(0,tl.jsx)(ih.Title,{children:e("application-logger.sidebar.search-parameter")}),(0,tl.jsx)(ih.Form.Item,{label:e("application-logger.filter.date-from"),name:"dateFrom",children:(0,tl.jsx)(ih.DatePicker,{className:"w-full",format:kq,onChange:e=>{n(e)},outputType:"dateString",showTime:{format:"HH:mm"},value:i})}),(0,tl.jsx)(ih.Form.Item,{label:e("application-logger.filter.date-to"),name:"dateTo",children:(0,tl.jsx)(ih.DatePicker,{className:"w-full",format:kq,onChange:e=>{a(e)},outputType:"dateString",showTime:{format:"HH:mm"},value:r})}),(0,tl.jsx)(ih.Form.Item,{label:e("application-logger.filter.priority"),name:"priority",children:(0,tl.jsx)(kU,{})}),(0,tl.jsx)(ih.Form.Item,{label:e("application-logger.filter.component"),name:"component",children:(0,tl.jsx)(kG,{})}),(0,tl.jsx)(ih.Form.Item,{label:e("application-logger.filter.related-object-id"),name:"relatedObjectId",children:(0,tl.jsx)(ih.Input,{min:"0",onChange:e=>{let t=e.target.value;l(""!==t?parseInt(t):null)},step:"1",type:"number",value:o??void 0})}),(0,tl.jsx)(ih.Form.Item,{label:e("application-logger.filter.message"),name:"message",children:(0,tl.jsx)(ih.Input,{onChange:e=>{d(e.target.value??null)},value:s??void 0})}),(0,tl.jsx)(ih.Form.Item,{label:e("application-logger.filter.pid"),name:"pid",children:(0,tl.jsx)(ih.Input,{min:"0",onChange:e=>{let t=e.target.value;c(""!==t?parseInt(t):null)},step:"1",type:"number",value:f??void 0})})]})})})})},{})});let kK=e=>{var t,i,n,r,a,o,l;let{t:s}=(0,t7.useTranslation)(),[d]=tc.l.useForm(),f=()=>{e.setOpen(!1)},c={date:(null==(t=e.data)?void 0:t.date)??"",message:(null==(i=e.data)?void 0:i.message)??"",priority:(null==(n=e.data)?void 0:n.priority)??"",component:(null==(r=e.data)?void 0:r.component)??"",source:(null==(a=e.data)?void 0:a.source)??"",fileObject:(null==(o=e.data)?void 0:o.relatedElementData)??null};return(0,ts.useEffect)(()=>{e.open&&!(0,eY.isNil)(e.data)&&d.setFieldsValue(c)},[e.open,e.data,d]),(0,tl.jsx)(av.u,{onCancel:f,onClose:f,onOk:f,open:e.open,title:(0,tl.jsx)(p3.r,{children:s("application-logger.detail-modal.title")}),children:(0,tl.jsx)(tx._v,{children:(0,tl.jsxs)(tc.l,{form:d,initialValues:c,layout:"vertical",children:[(0,tl.jsx)(tc.l.Item,{label:s("application-logger.columns.timestamp"),name:"date",children:(0,tl.jsx)(ae.I,{readOnly:!0})}),(0,tl.jsx)(tc.l.Item,{label:s("application-logger.columns.message"),name:"message",children:(0,tl.jsx)(nf.K,{readOnly:!0})}),(0,tl.jsx)(tc.l.Item,{label:s("application-logger.columns.type"),name:"priority",children:(0,tl.jsx)(ae.I,{readOnly:!0})}),(0,tl.jsx)(tc.l.Item,{label:s("application-logger.columns.component"),name:"component",children:(0,tl.jsx)(ae.I,{readOnly:!0})}),(0,tl.jsx)(tc.l.Item,{label:s("application-logger.columns.source"),name:"source",children:(0,tl.jsx)(ae.I,{readOnly:!0})}),(null==(l=e.data)?void 0:l.fileObject)!==null&&(0,tl.jsx)(tc.l.Item,{label:s("application-logger.columns.related-object"),name:"fileObject",children:(0,tl.jsx)(tv.A,{assetsAllowed:!0,dataObjectsAllowed:!0,documentsAllowed:!0,readOnly:!0})})]})})})},kJ=e=>{let{items:t}=e,{t:i}=(0,t7.useTranslation)(),{openElement:n}=(0,ig.f)(),[r,a]=(0,ts.useState)(!1),[o,l]=(0,ts.useState)(null),s=t.map(e=>({...e,date:(0,dH.o0)({timestamp:e.date,dateStyle:"short",timeStyle:"short"}),translatedPriority:i(`application-logger.filter.priority-level.${e.priority}`)})),d=(0,aj.createColumnHelper)(),f=[d.accessor("date",{header:i("application-logger.columns.timestamp"),size:80}),d.accessor("pid",{header:i("application-logger.columns.pid"),size:60}),d.accessor("message",{header:i("application-logger.columns.message")}),d.accessor("translatedPriority",{header:i("application-logger.columns.type"),size:60}),d.accessor("fileObject",{header:i("application-logger.columns.file-object"),cell:e=>{let{row:t}=e,n=t.original;return(0,eY.isNil)(n.fileObject)?(0,tl.jsx)(tl.Fragment,{}):(0,tl.jsx)(ih.Button,{href:"/admin/bundle/applicationlogger/log/show-file-object?filePath="+n.fileObject,target:"_blank",type:"link",children:i("open")})},size:60}),d.accessor("relatedElementData",{header:i("application-logger.columns.related-object"),cell:e=>{let{row:t}=e,i=t.original;if((0,eY.isNil)(i.relatedElementData))return(0,tl.jsx)(tl.Fragment,{});let r=i.relatedElementData;return(0,tl.jsx)(ih.Button,{onClick:()=>{n({id:r.id,type:"object"===r.type?"data-object":r.type}).catch(()=>{})},type:"link",children:`${r.type} ${r.id}`})},size:60}),d.accessor("component",{header:i("application-logger.columns.component"),size:100}),d.accessor("source",{header:i("application-logger.columns.source")}),d.accessor("actions",{header:i("application-logger.columns.details"),cell:e=>{let{row:t}=e,i=t.original;return(0,tl.jsx)(rZ.k,{align:"center",className:"w-full",children:(0,tl.jsx)(aM.h,{icon:{value:"expand-01"},onClick:async()=>{l(i),a(!0)},type:"link"})})},size:40})];return(0,tl.jsxs)(tl.Fragment,{children:[(0,tl.jsx)(az.r,{autoWidth:!0,columns:f,data:s,modifiedCells:[],resizable:!0}),(0,tl.jsx)(kK,{data:o,open:r,setOpen:a})]})},kX=e=>{let{items:t}=e;return(0,eY.isNil)(t)?(0,tl.jsx)(tl.Fragment,{}):(0,tl.jsx)(ih.ContentLayout,{renderSidebar:(0,tl.jsx)(ih.Sidebar,{entries:kZ.getEntries()}),children:(0,tl.jsx)(kJ,{items:t})})},kQ=()=>{let{t:e}=(0,t7.useTranslation)(),t=(0,pU.useAppDispatch)(),[i,n]=(0,ts.useState)(1),[r,a]=(0,ts.useState)(20),[o,l]=(0,ts.useState)(!1),[s,d]=(0,ts.useState)(void 0),{columnFilters:f,setIsLoading:c}=kH(),{data:u,isFetching:m}=kA({body:{filters:{page:i,pageSize:r,columnFilters:f}}}),p=(null==u?void 0:u.totalItems)??0,g=(0,ts.useCallback)(()=>{t(kB.util.invalidateTags(gi.xc.APPLICATION_LOGGER()))},[t]);return(0,ts.useEffect)(()=>{if((0,eY.isNil)(s))return;let e=setInterval(()=>{g()},1e3*parseInt(s));return()=>{clearInterval(e)}},[s,g]),(0,ts.useEffect)(()=>{c(m)},[m]),(0,tl.jsx)(aF.D,{renderToolbar:(0,tl.jsxs)(aO.o,{justify:"space-between",theme:"secondary",children:[(0,tl.jsxs)(rZ.k,{align:"center",gap:8,children:[!(0,eY.isNil)(s)&&(0,tl.jsx)("span",{children:e("application-logger.refresh-interval")}),(0,tl.jsx)(ih.CreatableSelect,{allowClear:!0,inputType:"number",minWidth:200,numberInputProps:{min:1},onChange:e=>{d(e)},onCreateOption:t=>({value:t,label:e("application-logger.refresh-interval.seconds",{seconds:t})}),options:[{value:"3",label:e("application-logger.refresh-interval.seconds",{seconds:3})},{value:"5",label:e("application-logger.refresh-interval.seconds",{seconds:5})},{value:"10",label:e("application-logger.refresh-interval.seconds",{seconds:10})},{value:"30",label:e("application-logger.refresh-interval.seconds",{seconds:30})},{value:"60",label:e("application-logger.refresh-interval.seconds",{seconds:60})}],placeholder:e("application-logger.refresh-interval.select"),validate:e=>!isNaN(parseInt(e))&&parseInt(e)>0,value:s})]}),(0,tl.jsxs)(rZ.k,{children:[(0,tl.jsx)(aM.h,{disabled:o||m,icon:{value:"refresh"},onClick:()=>{l(!0),g(),l(!1)}}),p>0&&(0,tl.jsxs)(tl.Fragment,{children:[(0,tl.jsx)(yf.i,{size:"small",type:"vertical"}),(0,tl.jsx)(aN.t,{current:i,defaultPageSize:r,onChange:(e,t)=>{n(e),a(t)},showSizeChanger:!0,showTotal:t=>e("pagination.show-total",{total:t}),total:p})]})]})]}),renderTopBar:(0,tl.jsx)(aO.o,{justify:"space-between",margin:{x:"mini",y:"none"},theme:"secondary",children:(0,tl.jsx)(vw.D,{children:e("application-logger.label")})}),children:(0,tl.jsx)(aB.V,{loading:o,children:(0,tl.jsx)(aL.x,{className:"h-full",margin:{x:"extra-small",y:"none"},children:(0,tl.jsx)(kX,{items:(null==u?void 0:u.items)??[]})})})})},kY=()=>(0,tl.jsx)(kW,{children:(0,tl.jsx)(kQ,{})});eR._.registerModule({onInit:()=>{eB.nC.get(eO.j.mainNavRegistry).registerMainNavItem({path:"System/Application Logger",label:"navigation.application-logger",dividerBottom:!0,order:400,permission:jg.P.ApplicationLogger,perspectivePermission:jp.ApplicationLogger,widgetConfig:{name:"Application Logger",id:"application-logger",component:"application-logger",config:{translationKey:"widget.application-logger",icon:{type:"name",value:"application-logger"}}}}),eB.nC.get(eO.j.widgetManager).registerWidget({name:"application-logger",component:kY})}});var k0=i(77733);let k1=e=>{let{actions:t,onReload:i,onAddItem:n,onAddFolder:r}=e,{t:a}=(0,t7.useTranslation)(),o=t??[{key:"1",label:a("tree.actions.user"),icon:(0,tl.jsx)(rR.J,{value:"add-user"}),onClick:n??(()=>{})},{key:"2",label:a("tree.actions.folder"),icon:(0,tl.jsx)(rR.J,{value:"folder-plus"}),onClick:r??(()=>{})}];return(0,tl.jsxs)(aO.o,{children:[(0,tl.jsx)(aM.h,{icon:{value:"refresh"},onClick:i,children:a("toolbar.reload")}),(0,tl.jsx)(pJ.L,{menu:{items:o},trigger:["click"],children:(0,tl.jsx)(pK.P,{children:(0,tl.jsxs)(rZ.k,{align:"center",children:[(0,tl.jsx)(rR.J,{options:{width:18,height:18},value:"new"})," ",a("toolbar.new")]})})})]})},k2=(0,ia.createStyles)(e=>{let{token:t,css:i}=e;return{treeContainer:i` + `}}),kk=e=>{let{currentData:t,updateFormData:i}=e,{t:n}=(0,t7.useTranslation)(),{styles:r}=kC(),a=(()=>{let e=(0,aj.createColumnHelper)(),{t}=(0,t7.useTranslation)();return[e.accessor("rowDragCol",{header:"",size:40}),e.accessor(nT,{header:t("reports.editor.manage-column-configuration.name"),meta:{type:"text-cell"}}),e.accessor(nS,{header:t("reports.editor.manage-column-configuration.display"),meta:{type:"checkbox",editable:!0}}),e.accessor(nD,{header:t("reports.editor.manage-column-configuration.export"),meta:{type:"checkbox",editable:!0}}),e.accessor(nE,{header:t("reports.editor.manage-column-configuration.order"),meta:{type:"checkbox",editable:!0}}),e.accessor(nM,{header:t("reports.editor.manage-column-configuration.filter-type"),meta:{type:"select",editable:!0,config:{options:[{label:t("reports.editor.manage-column-configuration.filter-type.empty"),value:""},{label:t("reports.editor.manage-column-configuration.filter-type.text"),value:"string"},{label:t("reports.editor.manage-column-configuration.filter-type.number"),value:"numeric"},{label:t("reports.editor.manage-column-configuration.filter-type.date"),value:"date"},{label:t("reports.editor.manage-column-configuration.filter-type.bool"),value:"boolean"}]}}}),e.accessor(nI,{header:t("reports.editor.manage-column-configuration.display-type"),meta:{type:"select",editable:!0,config:{options:[{label:t("reports.editor.manage-column-configuration.display-type.none"),value:""},{label:t("reports.editor.manage-column-configuration.display-type.text"),value:"text"},{label:t("reports.editor.manage-column-configuration.display-type.date"),value:"date"},{label:t("reports.editor.manage-column-configuration.display-type.hide"),value:"hide"}]}}}),e.accessor(nL,{header:t("reports.editor.manage-column-configuration.filter-drilldown"),meta:{type:"select",editable:!0,config:{options:[{label:t("reports.editor.manage-column-configuration.filter-drilldown.empty"),value:""},{label:t("reports.editor.manage-column-configuration.filter-drilldown.only-filter"),value:"only_filter"},{label:t("reports.editor.manage-column-configuration.filter-drilldown.filter-and-show"),value:"filter_and_show"}]}}}),e.accessor(nP,{header:t("reports.editor.manage-column-configuration.width"),meta:{type:"number-cell",editable:!0}}),e.accessor(nN,{header:t("reports.editor.manage-column-configuration.label"),meta:{type:"text-cell",editable:!0}}),e.accessor(nA,{header:t("reports.editor.manage-column-configuration.action"),meta:{type:"select",editable:!0,config:{options:[{label:t("reports.editor.manage-column-configuration.action.none"),value:""},{label:t("reports.editor.manage-column-configuration.action.open-document"),value:"openDocument"},{label:t("reports.editor.manage-column-configuration.action.open-asset"),value:"openAsset"},{label:t("reports.editor.manage-column-configuration.action.open-object"),value:"openObject"},{label:t("reports.editor.manage-column-configuration.action.open-url"),value:"openUrl"}]}}})]})(),l=null==t?void 0:t.columnConfigurations;return(0,to.jsx)(nd.h.Panel,{title:n("reports.editor.manage-column-configuration.title"),children:(0,to.jsx)(az.r,{autoWidth:!0,className:r.grid,columns:a,data:l,enableRowDrag:!0,handleDragEnd:e=>{let{active:n,over:r}=e;if(!(0,eY.isNil)(n)&&!(0,eY.isNil)(r)&&!(0,eY.isEqual)(n.id,r.id)){let e=null==l?void 0:l.findIndex(e=>e.id===n.id),a=null==l?void 0:l.findIndex(e=>e.id===r.id);if(-1===e||-1===a)return;let o=(0,l4.arrayMove)(l,e,a);null==i||i({...t,columnConfigurations:o})}},onUpdateCellData:e=>{let{rowIndex:n,columnId:r,value:a}=e,o=null==l?void 0:l.map((e,t)=>t===n?{...e,[r]:a}:e);null==i||i({...t,columnConfigurations:o})},resizable:!0,setRowId:e=>e.id})})},kT=e=>{let{currentData:t}=e,{t:i}=(0,t7.useTranslation)(),n=[{value:"",label:i("reports.editor.chart-settings.chart-type.none")},{value:"pie",label:i("reports.editor.chart-settings.chart-type.pie-chart")},{value:ka,label:i("reports.editor.chart-settings.chart-type.line-chart")},{value:"bar",label:i("reports.editor.chart-settings.chart-type.bar-chart")}],r=(0,ts.useMemo)(()=>t.columnConfigurations.map(e=>({value:e.name,label:e.name})),[t]),a=e=>{let{label:t,name:i,mode:n}=e;return(0,to.jsx)(tc.l.Item,{label:t,name:i,children:(0,to.jsx)(tC.P,{className:"w-full",mode:n,options:r})})};return(0,to.jsxs)(nd.h.Panel,{title:i("reports.editor.chart-settings.title"),children:[(0,to.jsx)(tc.l.Item,{label:i("reports.editor.chart-settings.chart-type"),name:"chartType",children:(0,to.jsx)(tC.P,{options:n})}),(0,to.jsx)(sX.h,{condition:e=>"pie"===e.chartType,children:(0,to.jsxs)(nd.h.Panel,{border:!0,theme:"fieldset",title:i("reports.editor.chart-settings.settings"),children:[a({label:i("reports.editor.chart-settings.pie-label"),name:"pieLabelColumn"}),a({label:i("reports.editor.chart-settings.pie-data"),name:"pieColumn"})]})}),(0,to.jsx)(sX.h,{condition:e=>e.chartType===ka,children:(0,to.jsxs)(nd.h.Panel,{border:!0,theme:"fieldset",title:i("reports.editor.chart-settings.settings"),children:[a({label:i("reports.editor.chart-settings.x-axis"),name:"xAxis"}),a({label:i("reports.editor.chart-settings.y-axis"),name:"yAxis",mode:"multiple"})]})}),(0,to.jsx)(sX.h,{condition:e=>"bar"===e.chartType,children:(0,to.jsxs)(nd.h.Panel,{border:!0,theme:"fieldset",title:i("reports.editor.chart-settings.settings"),children:[a({label:i("reports.editor.chart-settings.x-axis"),name:"xAxis"}),a({label:i("reports.editor.chart-settings.y-axis"),name:"yAxis",mode:"multiple"})]})})]})},kS=e=>{let{currentData:t,updateFormData:i}=e,{t:n}=(0,t7.useTranslation)(),{styles:r}=kC(),{data:a}=(0,yz.m)(),{data:l}=(0,yV.Ri)(),[o,s]=(0,ts.useState)(t.sharedGlobally),[d,f]=(0,ts.useState)(!1),c=()=>{f(!1)},u=(0,ts.useMemo)(()=>t.sharedUserNames.map(e=>{var t;return null==l||null==(t=l.items.find(t=>t.username===e))?void 0:t.id}).filter(e=>!(0,eY.isUndefined)(e)),[t.sharedUserNames]),m=(0,ts.useMemo)(()=>t.sharedRoleNames.map(e=>{var t;return null==a||null==(t=a.items.find(t=>t.name===e))?void 0:t.id}).filter(e=>!(0,eY.isUndefined)(e)),[t.sharedRoleNames]),p=(e,t)=>(0,to.jsx)(rR.J,{className:r.permissionIcon,options:{width:t??12,height:t??12},value:e});return(0,to.jsxs)(nd.h.Panel,{title:n("reports.editor.permissions.title"),children:[(0,to.jsx)(tc.l.Item,{name:"sharedGlobally",children:(0,to.jsx)(s0.r,{labelLeft:(0,to.jsx)(nc.x,{children:n("grid.configuration.shared")}),labelRight:o?(0,to.jsx)(nc.x,{className:r.permissionLabel,children:n("common.globally")}):(0,to.jsxs)(to.Fragment,{children:[(0,to.jsxs)(rZ.k,{gap:10,children:[(0,to.jsxs)(nc.x,{className:r.permissionLabel,children:[p("user")," ",n("user-management.user")," | ",p("shield")," ",n("user-management.role")]}),(0,to.jsxs)(rZ.k,{align:"center",className:r.permissionUpdateButton,gap:8,onClick:()=>{f(!d)},children:[p("edit",16),(0,to.jsx)(nc.x,{className:r.permissionUpdateButtonText,children:n("button.add-edit")})]})]}),d&&(0,to.jsx)(yA.h,{handleApplyChanges:e=>{let{sharedUsers:n,sharedRoles:r}=e,o=n.map(e=>{var t;return null==l||null==(t=l.items.find(t=>t.id===e))?void 0:t.username}).filter(e=>!(0,eY.isUndefined)(e)),s=r.map(e=>{var t;return null==a||null==(t=a.items.find(t=>t.id===e))?void 0:t.name}).filter(e=>!(0,eY.isUndefined)(e));null==i||i({...t,sharedUserNames:o,sharedRoleNames:s}),c()},handleClose:c,initialSharedRoles:m,initialSharedUsers:u,placement:"top",roleList:a,userList:l})]}),onChange:e=>{s(e)}})}),!o&&(0,to.jsx)(hQ.P,{itemGap:"mini",list:(()=>{let e=[],i=[],n=e=>{let{label:t,iconName:i}=e;return{children:(0,to.jsx)(nc.x,{ellipsis:!0,style:{maxWidth:"148px"},type:"secondary",children:t}),icon:p(i),bordered:!1}};return t.sharedUserNames.forEach(t=>{e.push(n({label:t,iconName:"user"}))}),t.sharedRoleNames.forEach(e=>{i.push(n({label:e,iconName:"shield"}))}),[e,i]})(),tagListItemClassNames:r.permissionTag})]})},kD=e=>{let{report:t,isActive:i}=e,{isLoading:n,data:r,isFetching:a,refetch:l}=nj({name:t.id}),{initializeForm:o,currentData:s,isDirty:d,updateFormData:f,markFormSaved:c}=(()=>{let[e,t]=(0,ts.useState)(null),[i,n]=(0,ts.useState)(null),r=(0,ts.useMemo)(()=>!((0,eY.isNull)(e)||(0,eY.isNull)(i))&&!(0,eY.isEqual)(e,i),[e,i]);return{initialData:e,currentData:i,isDirty:r,initializeForm:e=>{t({...e}),n({...e})},updateFormData:e=>{n(t=>(0,eY.isNull)(t)?null:{...t,...e})},markFormSaved:()=>{(0,eY.isNull)(i)||t({...i})}}})(),{updateReport:u}=kb(),[m,p]=(0,ts.useState)(!1),{t:g}=(0,t7.useTranslation)();return(0,ts.useEffect)(()=>{(0,eY.isUndefined)(r)||o(r)},[r]),(0,to.jsx)(aB.V,{loading:n,padded:!0,padding:{top:"none",right:"extra-small",bottom:"none",left:"extra-small"},children:!(0,eY.isNull)(s)&&(0,to.jsxs)(nd.h,{formProps:{initialValues:s,onValuesChange:(e,t)=>{f({...s,...t})}},children:[(0,to.jsx)(kj,{}),(0,to.jsx)(kw,{currentData:s,updateFormData:f}),(0,to.jsx)(kk,{currentData:s,updateFormData:f}),(0,to.jsx)(kT,{currentData:s}),(0,to.jsx)(kS,{currentData:s,updateFormData:f}),i&&(0,to.jsx)(kx,{targetId:kM,children:(0,to.jsx)(CI,{isFetching:a,refetch:l})}),i&&(0,to.jsx)(kx,{targetId:kI,children:(0,to.jsx)(ai.z,{disabled:!d,loading:m,onClick:()=>{if((0,eY.isNull)(s))return;p(!0);let e={...s,...{dataSourceConfig:(0,eY.castArray)((null==s?void 0:s.dataSourceConfig)??[])},...""===s.chartType?{xAxis:"",yAxis:[],pieColumn:"",pieLabelColumn:""}:{pieColumn:s.pieColumn,pieLabelColumn:s.pieLabelColumn,xAxis:s.xAxis,yAxis:(0,eY.isNull)(s.yAxis)?[]:(0,eY.castArray)(s.yAxis)},...s.sharedGlobally&&{sharedRoleNames:[],sharedUserNames:[]}};u({name:t.id,bundleCustomReportUpdate:e}).then(()=>{c(),p(!1)})},type:"primary",children:g("save")})})]})})},kE=e=>{let{id:t,...i}=e;return(0,to.jsx)("div",{id:t,...i})},kM="reports-editor-toolbar-refetch-btn",kI="reports-editor-toolbar-save-btn",kL=()=>{let{data:e,isLoading:t,isFetching:i,refetch:n}=nw({page:1,pageSize:9999}),[r,a]=(0,ts.useState)([]),[l,o]=(0,ts.useState)(void 0),{styles:s}=ky(),d=(0,ts.useMemo)(()=>{var t;let i=new Set(null==e||null==(t=e.items)?void 0:t.map(e=>e.id));return r.filter(e=>i.has(e.id)).map(e=>({key:e.id,label:e.text,children:(0,to.jsx)(kD,{isActive:l===e.id,report:e})}))},[e,r,l]),f=e=>{let t=r.findIndex(t=>t.id===e),i=r.filter(t=>t.id!==e);if(e===l){let e=r[t-1];o((0,eY.isUndefined)(e)?void 0:e.id)}a(i)};return(0,to.jsx)(xQ,{leftItem:{children:(0,to.jsx)(kv,{handleCloseReport:f,handleOpenReport:e=>{r.some(t=>t.id===e.id)||a([...r,e]),o(e.id)},isFetching:i,isLoading:t,refetch:n,reportsList:e})},rightItem:{children:(0,eY.isUndefined)(l)?(0,to.jsx)(aB.V,{none:!0}):(0,to.jsx)(aF.D,{renderToolbar:(0,to.jsxs)(aO.o,{justify:"space-between",children:[(0,to.jsx)(kE,{id:kM}),(0,to.jsx)(kE,{id:kI})]}),children:(0,to.jsx)(ay.m,{activeKey:l,className:s.tabs,hasStickyHeader:!0,items:d,onChange:e=>{o(e)},onClose:f,rootClassName:s.tabsContainer})})}})},kP="Reporting";eR._.registerModule({onInit:()=>{let e=eB.nC.get(eO.j.mainNavRegistry);eB.nC.get(eO.j["DynamicTypes/CustomReportDefinitionRegistry"]).registerDynamicType(eB.nC.get(eO.j["DynamicTypes/CustomReportDefinition/Sql"])),e.registerMainNavItem({path:`${kP}/Reports`,label:"navigation.reports",className:"item-style-modifier",order:100,dividerBottom:!0,permission:jg.P.Reports,perspectivePermission:jp.Reports,widgetConfig:{name:"Reports",id:"reports",component:"reports",config:{translationKey:"navigation.reports",icon:{type:"name",value:"pie-chart"}}}}),e.registerMainNavItem({path:`${kP}/Custom Reports`,label:"navigation.custom-reports",order:200,dividerBottom:!0,permission:jg.P.ReportsConfig,perspectivePermission:jp.Reports,widgetConfig:{name:"Custom Reports",id:"custom-reports",component:"custom-reports",config:{translationKey:"navigation.custom-reports",icon:{type:"name",value:"chart-scatter"}}}});let t=eB.nC.get(eO.j.widgetManager);t.registerWidget({name:"reports",component:kp}),t.registerWidget({name:"custom-reports",component:kL}),hd.h.dispatch(nm.hi.endpoints.customReportsGetTree.initiate({page:1,pageSize:999999})).unwrap().then(i=>{(0,eY.isUndefined)(null==i?void 0:i.items)||(i.items.forEach((t,i)=>{if(t.menuShortcut){let n=t.name,r=(0,dW.O)(t.niceName)?n:t.niceName,a=(0,dW.O)(t.group)?`${kP}/${n}`:`${kP}/${t.group}/${n}`;e.registerMainNavItem({id:`${n}-${i}`,path:a,label:r,group:t.group,order:300+i,permission:jg.P.Reports,perspectivePermission:jp.Reports,widgetConfig:{component:"dynamic-report",config:{translationKey:"navigation.reports",icon:{type:"name",value:"pie-chart"},reportId:n}}})}}),t.registerWidget({name:"dynamic-report",component:kp}))}).catch(e=>{console.error("Failed to load reports for menu:",e)})}});let kN=aw.api.enhanceEndpoints({addTagTypes:["Bundle Application Logger"]}).injectEndpoints({endpoints:e=>({bundleApplicationLoggerGetCollection:e.query({query:e=>({url:"/pimcore-studio/api/bundle/application-logger/list",method:"POST",body:e.body}),providesTags:["Bundle Application Logger"]}),bundleApplicationLoggerListComponents:e.query({query:()=>({url:"/pimcore-studio/api/bundle/application-logger/components"}),providesTags:["Bundle Application Logger"]}),bundleApplicationLoggerListPriorities:e.query({query:()=>({url:"/pimcore-studio/api/bundle/application-logger/priorities"}),providesTags:["Bundle Application Logger"]})}),overrideExisting:!1}),{useBundleApplicationLoggerGetCollectionQuery:kA,useBundleApplicationLoggerListComponentsQuery:kR,useBundleApplicationLoggerListPrioritiesQuery:kO}=kN,kB=kN.enhanceEndpoints({addTagTypes:[gi.fV.APPLICATION_LOGGER,gi.fV.APPLICATION_LOGGER_DETAIL],endpoints:{bundleApplicationLoggerGetCollection:{providesTags:(e,t,i)=>{var n;let r=[];return null==e||null==(n=e.items)||n.forEach(e=>{r.push(...gi.Kx.APPLICATION_LOGGER_DETAIL(e.id))}),[...r,...gi.Kx.APPLICATION_LOGGER()]}}}}),{useBundleApplicationLoggerGetCollectionQuery:kF,useBundleApplicationLoggerListComponentsQuery:k_,useBundleApplicationLoggerListPrioritiesQuery:kz}=kB;class kV extends lt.E{}let k$=(0,ts.createContext)(void 0),kW=e=>{let[t,i]=td().useState(null),[n,r]=td().useState(null),[a,l]=td().useState([]),[o,s]=td().useState(null),[d,f]=td().useState(null),[c,u]=td().useState(null),[m,p]=td().useState(null),[g,h]=td().useState(null),[b,y]=td().useState(!1),v=()=>{l(j())},x=()=>{i(()=>null),r(()=>null),s(()=>null),f(()=>null),u(()=>null),p(()=>null),h(()=>null),l([])},j=()=>{let e=[];return(0,eY.isNil)(t)||e.push({key:"dateFrom",type:"date",filterValue:{operator:"from",value:t}}),(0,eY.isNil)(n)||e.push({key:"dateTo",type:"date",filterValue:{operator:"to",value:n}}),(0,eY.isNil)(o)||e.push({key:"priority",type:"equals",filterValue:parseInt(o)}),(0,eY.isNil)(d)||e.push({key:"component",type:"equals",filterValue:d}),(0,eY.isNil)(c)||e.push({key:"relatedobject",type:"equals",filterValue:c}),(0,eY.isNil)(m)||e.push({key:"message",type:"like",filterValue:m}),(0,eY.isNil)(g)||e.push({key:"pid",type:"equals",filterValue:g}),e};return(0,ts.useMemo)(()=>(0,to.jsx)(k$.Provider,{value:{dateFrom:t,setDateFrom:i,dateTo:n,setDateTo:r,logLevel:o,setLogLevel:s,component:d,setComponent:f,relatedObjectId:c,setRelatedObjectId:u,message:m,setMessage:p,pid:g,setPid:h,columnFilters:a,updateFilters:v,resetFilters:x,isLoading:b,setIsLoading:y},children:e.children}),[t,n,a,o,d,c,m,g,b])},kH=()=>{let e=(0,ts.useContext)(k$);if(void 0===e)throw Error("useFilter must be used within a FilterProvider");return e},kG=()=>{let{data:e,isLoading:t}=kR(),[i,n]=(0,ts.useState)([]),{component:r,setComponent:a}=kH();return(0,ts.useEffect)(()=>{if((null==e?void 0:e.items)!==void 0&&e.items.length>0){let t=[];e.items.forEach(e=>{t.push({value:e,label:e})}),n(t)}},[e]),(0,to.jsx)(ih.Select,{loading:t,onChange:e=>{a(e)},options:i??[],value:r??void 0})},kU=()=>{let{t:e}=(0,t7.useTranslation)(),{data:t,isLoading:i}=kz(),[n,r]=(0,ts.useState)([]),{logLevel:a,setLogLevel:l}=kH();return(0,ts.useEffect)(()=>{if((null==t?void 0:t.priorities)!==void 0&&t.priorities.length>0){let i=[];t.priorities.forEach(t=>{i.push({value:t.toString(),label:e("application-logger.filter.priority-level."+t.toString())})}),r(i)}},[t]),(0,to.jsx)(ih.Select,{loading:i,onChange:e=>{l(e)},options:n??[],value:a??void 0})},kq="YYYY-MM-DD HH:mm",kZ=new kV;kZ.registerEntry({key:"filter",icon:(0,to.jsx)(rR.J,{options:{width:"16px",height:"16px"},value:"filter"}),component:(0,to.jsx)(()=>{let{t:e}=(0,t7.useTranslation)(),[t]=ih.Form.useForm(),{dateFrom:i,setDateFrom:n,dateTo:r,setDateTo:a,relatedObjectId:l,setRelatedObjectId:o,message:s,setMessage:d,pid:f,setPid:c,resetFilters:u,updateFilters:m,isLoading:p}=kH();return(0,to.jsx)(ih.ContentLayout,{renderToolbar:(0,to.jsxs)(ih.Toolbar,{theme:"secondary",children:[(0,to.jsx)(ih.IconTextButton,{disabled:p,icon:{value:"close"},onClick:()=>{u(),t.resetFields()},type:"link",children:e("sidebar.clear-all-filters")}),(0,to.jsx)(ih.Button,{disabled:p,loading:p,onClick:m,type:"primary",children:e("button.apply")})]}),children:(0,to.jsx)(ih.Content,{padded:!0,children:(0,to.jsx)(ih.Form,{form:t,layout:"vertical",children:(0,to.jsxs)(ih.Space,{direction:"vertical",size:"none",style:{width:"100%"},children:[(0,to.jsx)(ih.Title,{children:e("application-logger.sidebar.search-parameter")}),(0,to.jsx)(ih.Form.Item,{label:e("application-logger.filter.date-from"),name:"dateFrom",children:(0,to.jsx)(ih.DatePicker,{className:"w-full",format:kq,onChange:e=>{n(e)},outputType:"dateString",showTime:{format:"HH:mm"},value:i})}),(0,to.jsx)(ih.Form.Item,{label:e("application-logger.filter.date-to"),name:"dateTo",children:(0,to.jsx)(ih.DatePicker,{className:"w-full",format:kq,onChange:e=>{a(e)},outputType:"dateString",showTime:{format:"HH:mm"},value:r})}),(0,to.jsx)(ih.Form.Item,{label:e("application-logger.filter.priority"),name:"priority",children:(0,to.jsx)(kU,{})}),(0,to.jsx)(ih.Form.Item,{label:e("application-logger.filter.component"),name:"component",children:(0,to.jsx)(kG,{})}),(0,to.jsx)(ih.Form.Item,{label:e("application-logger.filter.related-object-id"),name:"relatedObjectId",children:(0,to.jsx)(ih.Input,{min:"0",onChange:e=>{let t=e.target.value;o(""!==t?parseInt(t):null)},step:"1",type:"number",value:l??void 0})}),(0,to.jsx)(ih.Form.Item,{label:e("application-logger.filter.message"),name:"message",children:(0,to.jsx)(ih.Input,{onChange:e=>{d(e.target.value??null)},value:s??void 0})}),(0,to.jsx)(ih.Form.Item,{label:e("application-logger.filter.pid"),name:"pid",children:(0,to.jsx)(ih.Input,{min:"0",onChange:e=>{let t=e.target.value;c(""!==t?parseInt(t):null)},step:"1",type:"number",value:f??void 0})})]})})})})},{})});let kK=e=>{var t,i,n,r,a,l,o;let{t:s}=(0,t7.useTranslation)(),[d]=tc.l.useForm(),f=()=>{e.setOpen(!1)},c={date:(null==(t=e.data)?void 0:t.date)??"",message:(null==(i=e.data)?void 0:i.message)??"",priority:(null==(n=e.data)?void 0:n.priority)??"",component:(null==(r=e.data)?void 0:r.component)??"",source:(null==(a=e.data)?void 0:a.source)??"",fileObject:(null==(l=e.data)?void 0:l.relatedElementData)??null};return(0,ts.useEffect)(()=>{e.open&&!(0,eY.isNil)(e.data)&&d.setFieldsValue(c)},[e.open,e.data,d]),(0,to.jsx)(av.u,{onCancel:f,onClose:f,onOk:f,open:e.open,title:(0,to.jsx)(p3.r,{children:s("application-logger.detail-modal.title")}),children:(0,to.jsx)(tx._v,{children:(0,to.jsxs)(tc.l,{form:d,initialValues:c,layout:"vertical",children:[(0,to.jsx)(tc.l.Item,{label:s("application-logger.columns.timestamp"),name:"date",children:(0,to.jsx)(ae.I,{readOnly:!0})}),(0,to.jsx)(tc.l.Item,{label:s("application-logger.columns.message"),name:"message",children:(0,to.jsx)(nf.K,{readOnly:!0})}),(0,to.jsx)(tc.l.Item,{label:s("application-logger.columns.type"),name:"priority",children:(0,to.jsx)(ae.I,{readOnly:!0})}),(0,to.jsx)(tc.l.Item,{label:s("application-logger.columns.component"),name:"component",children:(0,to.jsx)(ae.I,{readOnly:!0})}),(0,to.jsx)(tc.l.Item,{label:s("application-logger.columns.source"),name:"source",children:(0,to.jsx)(ae.I,{readOnly:!0})}),(null==(o=e.data)?void 0:o.fileObject)!==null&&(0,to.jsx)(tc.l.Item,{label:s("application-logger.columns.related-object"),name:"fileObject",children:(0,to.jsx)(tv.A,{assetsAllowed:!0,dataObjectsAllowed:!0,documentsAllowed:!0,readOnly:!0})})]})})})},kJ=e=>{let{items:t}=e,{t:i}=(0,t7.useTranslation)(),{openElement:n}=(0,ig.f)(),[r,a]=(0,ts.useState)(!1),[l,o]=(0,ts.useState)(null),s=t.map(e=>({...e,date:(0,dH.o0)({timestamp:e.date,dateStyle:"short",timeStyle:"short"}),translatedPriority:i(`application-logger.filter.priority-level.${e.priority}`)})),d=(0,aj.createColumnHelper)(),f=[d.accessor("date",{header:i("application-logger.columns.timestamp"),size:80}),d.accessor("pid",{header:i("application-logger.columns.pid"),size:60}),d.accessor("message",{header:i("application-logger.columns.message")}),d.accessor("translatedPriority",{header:i("application-logger.columns.type"),size:60}),d.accessor("fileObject",{header:i("application-logger.columns.file-object"),cell:e=>{let{row:t}=e,n=t.original;return(0,eY.isNil)(n.fileObject)?(0,to.jsx)(to.Fragment,{}):(0,to.jsx)(ih.Button,{href:"/admin/bundle/applicationlogger/log/show-file-object?filePath="+n.fileObject,target:"_blank",type:"link",children:i("open")})},size:60}),d.accessor("relatedElementData",{header:i("application-logger.columns.related-object"),cell:e=>{let{row:t}=e,i=t.original;if((0,eY.isNil)(i.relatedElementData))return(0,to.jsx)(to.Fragment,{});let r=i.relatedElementData;return(0,to.jsx)(ih.Button,{onClick:()=>{n({id:r.id,type:"object"===r.type?"data-object":r.type}).catch(()=>{})},type:"link",children:`${r.type} ${r.id}`})},size:60}),d.accessor("component",{header:i("application-logger.columns.component"),size:100}),d.accessor("source",{header:i("application-logger.columns.source")}),d.accessor("actions",{header:i("application-logger.columns.details"),cell:e=>{let{row:t}=e,i=t.original;return(0,to.jsx)(rZ.k,{align:"center",className:"w-full",children:(0,to.jsx)(aM.h,{icon:{value:"expand-01"},onClick:async()=>{o(i),a(!0)},type:"link"})})},size:40})];return(0,to.jsxs)(to.Fragment,{children:[(0,to.jsx)(az.r,{autoWidth:!0,columns:f,data:s,modifiedCells:[],resizable:!0}),(0,to.jsx)(kK,{data:l,open:r,setOpen:a})]})},kX=e=>{let{items:t}=e;return(0,eY.isNil)(t)?(0,to.jsx)(to.Fragment,{}):(0,to.jsx)(ih.ContentLayout,{renderSidebar:(0,to.jsx)(ih.Sidebar,{entries:kZ.getEntries()}),children:(0,to.jsx)(kJ,{items:t})})},kQ=()=>{let{t:e}=(0,t7.useTranslation)(),t=(0,pU.useAppDispatch)(),[i,n]=(0,ts.useState)(1),[r,a]=(0,ts.useState)(20),[l,o]=(0,ts.useState)(!1),[s,d]=(0,ts.useState)(void 0),{columnFilters:f,setIsLoading:c}=kH(),{data:u,isFetching:m}=kA({body:{filters:{page:i,pageSize:r,columnFilters:f}}}),p=(null==u?void 0:u.totalItems)??0,g=(0,ts.useCallback)(()=>{t(kB.util.invalidateTags(gi.xc.APPLICATION_LOGGER()))},[t]);return(0,ts.useEffect)(()=>{if((0,eY.isNil)(s))return;let e=setInterval(()=>{g()},1e3*parseInt(s));return()=>{clearInterval(e)}},[s,g]),(0,ts.useEffect)(()=>{c(m)},[m]),(0,to.jsx)(aF.D,{renderToolbar:(0,to.jsxs)(aO.o,{justify:"space-between",theme:"secondary",children:[(0,to.jsxs)(rZ.k,{align:"center",gap:8,children:[!(0,eY.isNil)(s)&&(0,to.jsx)("span",{children:e("application-logger.refresh-interval")}),(0,to.jsx)(ih.CreatableSelect,{allowClear:!0,inputType:"number",minWidth:200,numberInputProps:{min:1},onChange:e=>{d(e)},onCreateOption:t=>({value:t,label:e("application-logger.refresh-interval.seconds",{seconds:t})}),options:[{value:"3",label:e("application-logger.refresh-interval.seconds",{seconds:3})},{value:"5",label:e("application-logger.refresh-interval.seconds",{seconds:5})},{value:"10",label:e("application-logger.refresh-interval.seconds",{seconds:10})},{value:"30",label:e("application-logger.refresh-interval.seconds",{seconds:30})},{value:"60",label:e("application-logger.refresh-interval.seconds",{seconds:60})}],placeholder:e("application-logger.refresh-interval.select"),validate:e=>!isNaN(parseInt(e))&&parseInt(e)>0,value:s})]}),(0,to.jsxs)(rZ.k,{children:[(0,to.jsx)(aM.h,{disabled:l||m,icon:{value:"refresh"},onClick:()=>{o(!0),g(),o(!1)}}),p>0&&(0,to.jsxs)(to.Fragment,{children:[(0,to.jsx)(yf.i,{size:"small",type:"vertical"}),(0,to.jsx)(aN.t,{current:i,defaultPageSize:r,onChange:(e,t)=>{n(e),a(t)},showSizeChanger:!0,showTotal:t=>e("pagination.show-total",{total:t}),total:p})]})]})]}),renderTopBar:(0,to.jsx)(aO.o,{justify:"space-between",margin:{x:"mini",y:"none"},theme:"secondary",children:(0,to.jsx)(vw.D,{children:e("application-logger.label")})}),children:(0,to.jsx)(aB.V,{loading:l,children:(0,to.jsx)(aL.x,{className:"h-full",margin:{x:"extra-small",y:"none"},children:(0,to.jsx)(kX,{items:(null==u?void 0:u.items)??[]})})})})},kY=()=>(0,to.jsx)(kW,{children:(0,to.jsx)(kQ,{})});eR._.registerModule({onInit:()=>{eB.nC.get(eO.j.mainNavRegistry).registerMainNavItem({path:"System/Application Logger",label:"navigation.application-logger",dividerBottom:!0,order:400,permission:jg.P.ApplicationLogger,perspectivePermission:jp.ApplicationLogger,widgetConfig:{name:"Application Logger",id:"application-logger",component:"application-logger",config:{translationKey:"widget.application-logger",icon:{type:"name",value:"application-logger"}}}}),eB.nC.get(eO.j.widgetManager).registerWidget({name:"application-logger",component:kY})}});var k0=i(77733);let k1=e=>{let{actions:t,onReload:i,onAddItem:n,onAddFolder:r}=e,{t:a}=(0,t7.useTranslation)(),l=t??[{key:"1",label:a("tree.actions.user"),icon:(0,to.jsx)(rR.J,{value:"add-user"}),onClick:n??(()=>{})},{key:"2",label:a("tree.actions.folder"),icon:(0,to.jsx)(rR.J,{value:"folder-plus"}),onClick:r??(()=>{})}];return(0,to.jsxs)(aO.o,{children:[(0,to.jsx)(aM.h,{icon:{value:"refresh"},onClick:i,children:a("toolbar.reload")}),(0,to.jsx)(pJ.L,{menu:{items:l},trigger:["click"],children:(0,to.jsx)(pK.P,{children:(0,to.jsxs)(rZ.k,{align:"center",children:[(0,to.jsx)(rR.J,{options:{width:18,height:18},value:"new"})," ",a("toolbar.new")]})})})]})},k2=(0,ia.createStyles)(e=>{let{token:t,css:i}=e;return{treeContainer:i` margin-top: ${t.paddingSM}px; .tree--search { @@ -1039,7 +1039,7 @@ :has(.tree--search) { margin-top: 0; } - `}},{hashPriority:"low"});var k3=i(17386),k6=i(4098);let k4=e=>{let{loading:t=!0,...i}=e,{t:n}=(0,t7.useTranslation)(),{openUser:r,searchUserByText:a}=(0,k0.w)(),[o,l]=(0,ts.useState)([]),[s,d]=(0,ts.useState)(""),{Text:f}=tN.Typography,{styles:c}=(0,k6.y)();return(0,tl.jsx)(tN.AutoComplete,{className:"tree--search",onSearch:e=>{d(e),a(s).then(e=>{l(e.items.map(e=>({value:e.id.toString(),label:(0,tl.jsxs)(tN.Row,{gutter:8,wrap:!1,children:[(0,tl.jsx)(tN.Col,{flex:"none",children:(0,tl.jsx)(tN.Avatar,{icon:(0,tl.jsx)(k3.Z,{}),size:26})}),(0,tl.jsxs)(tN.Col,{flex:"auto",children:[(0,tl.jsx)("div",{children:e.username}),(0,tl.jsxs)(f,{strong:!0,children:[n("user-management.search.id"),": "]})," ",e.id]})]})})))}).catch(e=>{(0,is.ZP)(new is.aE("An error occured while searching for a user"))})},onSelect:(e,t)=>{r(Number(e)),d("")},options:o,value:s,children:(0,tl.jsx)(tN.Input.Search,{allowClear:{clearIcon:(0,tl.jsx)(rR.J,{className:c.closeIcon,value:"close"})},className:c.searchWithoutAddon,placeholder:n("user-management.search"),prefix:(0,tl.jsx)(rR.J,{className:c.searchIcon,options:{width:12,height:12},value:"search"})})})},k8=(e,t)=>{for(let i of e){if(parseInt(i.key)===parseInt(t))return i;if(void 0!==i.children&&null!==i.children){let e=k8(i.children,t);if(void 0!==e)return e}}},k7=function(e,t){let i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null;for(let n of e){if(parseInt(n.key)===parseInt(t))return i;if(void 0!==n.children&&null!==n.children){let e=k7(n.children,t,n);if(null!==e)return e}}return null},k5=e=>{let{expandedKeys:t,treeData:i,onLoadTreeData:n,onReloadTree:r,onSetExpandedKeys:a,onUpdateTreeData:o,...l}=e,{t:s}=(0,t7.useTranslation)(),{openUser:d,moveUserById:f,addNewUser:c,addNewFolder:u,removeUser:m,cloneUser:p,removeFolder:g}=(0,k0.w)(),{styles:h}=k2(),b=[h.treeContainer],y=(0,an.U8)(),v=e=>{y.input({title:s("user-management.add-user"),label:s("user-management.add-user.label"),onOk:async t=>{await c({parentId:e,name:t}),r([e])}})},x=e=>{y.input({title:s("user-management.add-folder"),label:s("user-management.add-folder.label"),onOk:async t=>{await u({parentId:e,name:t}),r([e])}})};return(0,tl.jsx)(aF.D,{renderToolbar:(0,tl.jsx)(k1,{onAddFolder:()=>{x(0)},onAddItem:()=>{v(0)},onReload:()=>{r([0])}}),children:(0,tl.jsxs)(aB.V,{className:b.join(", "),children:[(0,tl.jsx)(k4,{}),(0,tl.jsx)(wm._,{defaultExpandedKeys:t,draggable:!0,expandedKeys:t,onActionsClick:(e,t)=>{switch("string"==typeof e&&(e=parseInt(e)),t){case"add-folder":x(e);break;case"add-user":v(e);break;case"clone-user":y.input({title:s("user-management.clone-user"),label:s("user-management.clone-user.label"),onOk:async t=>{var n;let a=null==(n=k7(i,e))?void 0:n.key;void 0!==await p({id:e,name:t})&&r([a])}});break;case"remove-user":y.confirm({title:s("user-management.remove-user"),content:s("user-management.remove-user.text",{name:((e,t)=>{let i=k8(e,t);return(null==i?void 0:i.title)??""})(i,e)}),okText:s("button.confirm"),cancelText:s("button.cancel"),onOk:async()=>{var t;await m({id:Number(e)}),r([null==(t=k7(i,e))?void 0:t.key])}});break;case"remove-folder":y.confirm({title:s("user-management.remove-folder"),content:s("user-management.remove-folder.text"),okText:s("button.confirm"),cancelText:s("button.cancel"),onOk:async()=>{var t;await g({id:Number(e)}),r([null==(t=k7(i,e))?void 0:t.key])}})}},onDragAndDrop:async e=>{if(void 0!==await f({id:Number(e.dragNode.key),parentId:Number(e.node.key)})){var t;r([null==(t=k7(i,e.dragNode.key))?void 0:t.key,e.node.key])}},onExpand:e=>{a(e)},onLoadData:n,onSelected:e=>{var t;(null==(t=k8(i,e))?void 0:t.selectable)===!0&&d(Number(e))},treeData:i})]})})};var k9=i(76541),Te=i(43409);let Tt=(0,ts.createContext)({id:-1}),Ti=e=>{let{id:t,children:i}=e;return(0,ts.useMemo)(()=>(0,tl.jsx)(Tt.Provider,{value:{id:t},children:i}),[t])},Tn=()=>{let{id:e}=(0,ts.useContext)(Tt);return{id:e}};var Tr=i(45464),Ta=i(67697);let To=e=>{let{isDisabled:t,...i}=e,{t:n}=(0,t7.useTranslation)(),{Text:r}=tN.Typography,a=[{key:"1",title:(0,tl.jsx)(tl.Fragment,{children:n("user-management.admin")}),children:(0,tl.jsxs)(tl.Fragment,{children:[(0,tl.jsx)(tN.Form.Item,{name:"admin",children:(0,tl.jsx)(s0.r,{disabled:t,labelRight:n("user-management.admin"),size:"small"})}),(0,tl.jsx)(r,{disabled:!0,children:n("user-management.admin.info")}),(0,tl.jsx)("div",{className:"m-t-normal",children:(0,tl.jsx)(ai.z,{disabled:t,onClick:()=>{console.log("todo login")},type:"default",children:n("user-management.admin.login")})})]})}];return(0,tl.jsx)(k9.U,{activeKey:"1",bordered:!0,items:a,size:"small"})};var Tl=i(37274);let Ts=e=>{let{isAdmin:t,...i}=e,{t:n}=(0,t7.useTranslation)(),{availableAdminLanguages:r}=(0,p5.r)(),{getDisplayName:a}=(0,vS.Z)(),[o,l]=(0,ts.useState)([]),[s,d]=(0,ts.useState)([]),{getRoleCollection:f}=(0,Tl.d)(),{getPerspectiveConfigCollection:c}=(0,dw.o)();(0,ts.useEffect)(()=>{0===s.length&&c().then(e=>{void 0!==e&&d(e.items.map(e=>({value:e.id,label:e.name})))}).catch(e=>{console.error("Error fetching perspective config collection:",e)}),0===o.length&&f().then(e=>{void 0!==e&&l(e.items.map(e=>({value:e.id,label:e.name})))}).catch(e=>{console.error("Error fetching role collection:",e)})},[]);let u=[{key:"1",title:(0,tl.jsx)(tl.Fragment,{children:n("user-management.customisation")}),children:(0,tl.jsxs)(tl.Fragment,{children:[(0,tl.jsx)(tN.Form.Item,{label:n("user-management.firstname"),name:"firstname",children:(0,tl.jsx)(tN.Input,{})}),(0,tl.jsx)(tN.Form.Item,{label:n("user-management.lastname"),name:"lastname",children:(0,tl.jsx)(tN.Input,{})}),(0,tl.jsx)(tN.Form.Item,{label:n("user-management.email"),name:"email",children:(0,tl.jsx)(tN.Input,{type:"email"})}),(0,tl.jsx)(tN.Form.Item,{label:n("user-management.language"),name:"language",children:(0,tl.jsx)(tC.P,{optionFilterProp:"label",options:r.map(e=>({value:e,label:a(e)})),placeholder:n("user-management.language"),showSearch:!0})}),!1===t?(0,tl.jsxs)(tl.Fragment,{children:[(0,tl.jsx)(tN.Form.Item,{label:n("user-management.roles"),name:"roles",children:(0,tl.jsx)(tC.P,{mode:"multiple",options:o,placeholder:n("user-management.roles")})}),(0,tl.jsx)(tN.Form.Item,{label:n("user-management.perspectives"),name:"perspectives",children:(0,tl.jsx)(tC.P,{mode:"multiple",options:s,placeholder:n("user-management.perspectives")})})]}):null,(0,tl.jsx)(tN.Form.Item,{label:"TODO "+n("user-management.dateTime"),name:"dateTime",children:(0,tl.jsx)(tC.P,{optionFilterProp:"label",options:r.map(e=>({value:e,label:a(e)})),placeholder:n("user-management.dateTime"),showSearch:!0})}),(0,tl.jsx)(tN.Form.Item,{name:"welcomeScreen",style:{marginBottom:"0"},children:(0,tl.jsx)(s0.r,{labelRight:n("user-management.welcomeScreen"),size:"small"})}),(0,tl.jsx)(tN.Form.Item,{name:"memorizeTabs",style:{marginBottom:"0"},children:(0,tl.jsx)(s0.r,{labelRight:n("user-management.memorizeTabs"),size:"small"})}),(0,tl.jsx)(tN.Form.Item,{name:"allowDirtyClose",style:{marginBottom:"0"},children:(0,tl.jsx)(s0.r,{labelRight:n("user-management.allowDirtyClose"),size:"small"})}),(0,tl.jsx)(tN.Form.Item,{name:"closeWarning",style:{marginBottom:"0"},children:(0,tl.jsx)(s0.r,{labelRight:n("user-management.closeWarning"),size:"small"})})]})}];return(0,tl.jsx)(k9.U,{activeKey:"1",bordered:!0,items:u,size:"small"})},Td=e=>{let{permissions:t,...i}=e,{t:n}=(0,t7.useTranslation)(),r=[{key:"1",title:(0,tl.jsx)(tl.Fragment,{children:n("user-management.permissions.default")}),children:(0,tl.jsxs)(tl.Fragment,{children:[(0,tl.jsx)(tN.Form.Item,{name:"permissionsDefault",children:(0,tl.jsx)(tC.P,{mode:"multiple",options:t.default.map(e=>({value:e.key,label:e.key})),placeholder:n("user-management.permissions.default")})}),(0,tl.jsx)(tN.Form.Item,{name:"permissionsBundles",children:(0,tl.jsx)(tC.P,{mode:"multiple",options:t.bundles.map(e=>({value:e.key,label:e.key})),placeholder:n("user-management.permissions.bundles")})})]})}];return(0,tl.jsx)(k9.U,{activeKey:"1",bordered:!0,items:r,size:"small"})};var Tf=i(18962);let Tc=()=>{let{t:e}=(0,t7.useTranslation)(),{data:t,isLoading:i}=(0,Tf.zE)(),n=[{key:"1",title:(0,tl.jsx)(tl.Fragment,{children:e("user-management.types-and-classes")}),children:(0,tl.jsxs)(tl.Fragment,{children:[(0,tl.jsx)(tN.Form.Item,{name:"docTypes",children:(0,tl.jsx)(tC.P,{disabled:i,mode:"multiple",options:[],placeholder:e("user-management.doc-types")})}),(0,tl.jsx)(tN.Form.Item,{name:"classes",children:(0,tl.jsx)(tC.P,{disabled:i,mode:"multiple",options:null==t?void 0:t.items.map(e=>({label:e.name,value:e.id})),placeholder:e("user-management.classes")})})]})}];return(0,tl.jsx)(k9.U,{activeKey:"1",bordered:!0,items:n,size:"small"})};var Tu=i(2277),Tm=i(19974);let Tp=e=>{let{data:t,viewData:i,editData:n,onChange:r,...a}=e,{t:o}=(0,t7.useTranslation)(),l=[{key:"1",title:(0,tl.jsx)(tl.Fragment,{children:o("user-management.shared-translation-settings")}),children:(0,tl.jsx)(Tm.U,{data:t,editData:n,onChange:e=>{r(e)},viewData:i})}];return(0,tl.jsx)(k9.U,{activeKey:"1",bordered:!0,items:l,size:"small",table:!0})},Tg=e=>{let{...t}=e,{validLanguages:i}=(0,p5.r)(),[n]=tc.l.useForm(),{t:r}=(0,t7.useTranslation)(),{Text:a}=tN.Typography,{id:o}=Tn(),l=(0,dj.a)(),{user:s,isLoading:d,changeUserInState:f,updateUserImageInState:c}=(0,Te.u)(o),{getAvailablePermissions:u}=(0,k0.w)(),m=(0,Ta.b)(u()),[p,g]=td().useState("password");(0,ts.useEffect)(()=>{if(!d){var e;n.setFieldsValue({active:null==s?void 0:s.active,admin:null==s?void 0:s.admin,classes:null==s?void 0:s.classes,name:null==s?void 0:s.name,twoFactorAuthenticationRequired:(null==s||null==(e=s.twoFactorAuthentication)?void 0:e.required)??!1,firstname:null==s?void 0:s.firstname,lastname:null==s?void 0:s.lastname,email:null==s?void 0:s.email,language:null==s?void 0:s.language,welcomeScreen:null==s?void 0:s.welcomeScreen,memorizeTabs:null==s?void 0:s.memorizeTabs,allowDirtyClose:null==s?void 0:s.allowDirtyClose,closeWarning:null==s?void 0:s.closeWarning,roles:(null==s?void 0:s.roles)??[],permissionsDefault:Array.isArray(null==s?void 0:s.permissions)?s.permissions.filter(e=>m.default.some(t=>t.key===e)):[],permissionsBundles:Array.isArray(null==s?void 0:s.permissions)?s.permissions.filter(e=>m.bundles.some(t=>t.key===e)):[]})}},[s,d]);let h=(0,ts.useCallback)((0,eY.debounce)((e,t)=>{(void 0!==e.permissionsDefault||void 0!==e.permissionsBundles)&&(t.permissions=[...e.permissionsDefault??t.permissionsDefault??[],...e.permissionsBundles??t.permissionsBundles??[]]),f(t)},300),[f]);return d?(0,tl.jsx)(aB.V,{loading:!0}):(0,tl.jsx)(tc.l,{"data-testid":(0,dM.Xv)(o.toString(),{prefix:"user-detail-tab",tabKey:"settings"}),form:n,layout:"vertical",onValuesChange:h,children:(0,tl.jsxs)(tN.Row,{gutter:[10,10],children:[(0,tl.jsx)(tN.Col,{span:8,children:(0,tl.jsx)(k9.U,{activeKey:"1",bordered:!0,items:[{key:"1",title:(0,tl.jsx)(tl.Fragment,{children:r("user-management.general")}),info:"ID: "+o,children:(0,tl.jsxs)(tl.Fragment,{children:[(0,tl.jsxs)(tN.Flex,{align:"center",gap:"small",children:[(0,tl.jsx)(tc.l.Item,{className:"m-b-none",name:"active",children:(0,tl.jsx)(s0.r,{disabled:(null==l?void 0:l.id)===(null==s?void 0:s.id),labelRight:r("user-management.active"),size:"small"})}),(null==s?void 0:s.lastLogin)!==void 0&&(null==s?void 0:s.lastLogin)!==null?(0,tl.jsxs)(a,{disabled:!0,children:[r("user-management.last-login"),": ",new Date(1e3*s.lastLogin).toLocaleString()]}):null]}),(0,tl.jsx)(tc.l.Item,{label:r("user-management.name"),name:"name",children:(0,tl.jsx)(tN.Input,{disabled:!0})}),(0,tl.jsx)(tc.l.Item,{label:r("user-management.password"),name:"password",rules:[{min:10}],children:(0,tl.jsx)(tN.Input,{autoComplete:"new-password",suffix:(0,tl.jsx)(aM.h,{icon:{value:"locked"},onClick:()=>{let e=(0,Ta.F)();n.setFieldValue("password",e),f({password:e}),g("text")},title:r("user-management.generate-password"),variant:"minimal"}),type:p})}),(0,tl.jsx)(tc.l.Item,{name:"twoFactorAuthenticationRequired",style:{marginBottom:"0"},children:(0,tl.jsx)(s0.r,{labelRight:r("user-management.two-factor-authentication"),size:"small"})})]})}],size:"small"})}),(0,tl.jsx)(tN.Col,{span:8,children:(0,tl.jsx)(Tr.Y,{onUserImageChanged:e=>{c(e)},user:s})}),(0,tl.jsx)(tN.Col,{span:16,children:(0,tl.jsx)(Ts,{isAdmin:null==s?void 0:s.admin})}),(0,tl.jsx)(tN.Col,{span:16,children:(0,tl.jsx)(To,{isDisabled:(null==l?void 0:l.id)===(null==s?void 0:s.id)})}),(null==s?void 0:s.admin)===!1?(0,tl.jsxs)(tl.Fragment,{children:[(0,tl.jsx)(tN.Col,{span:16,children:(0,tl.jsx)(Td,{permissions:m})}),(0,tl.jsx)(tN.Col,{span:16,children:(0,tl.jsx)(Tc,{})})]}):null,(0,tl.jsx)(tN.Col,{span:16,children:(0,tl.jsx)(Tu.O,{data:null==s?void 0:s.contentLanguages,editData:null==s?void 0:s.websiteTranslationLanguagesEdit,onChange:e=>{f({contentLanguages:e})},viewData:null==s?void 0:s.websiteTranslationLanguagesView})}),(null==s?void 0:s.admin)===!1?(0,tl.jsx)(tN.Col,{span:16,children:(0,tl.jsx)(Tp,{data:i,editData:null==s?void 0:s.websiteTranslationLanguagesEdit,onChange:e=>{f({websiteTranslationLanguagesEdit:e.filter(e=>e.edit).map(e=>e.abbreviation),websiteTranslationLanguagesView:e.filter(e=>e.view).map(e=>e.abbreviation)})},viewData:null==s?void 0:s.websiteTranslationLanguagesView})}):null]})})},Th=e=>{let{showDuplicatePropertyModal:t,data:i,type:n,isLoading:r,onUpdateData:a}=e,{t:o}=(0,t7.useTranslation)(),[l,s]=td().useState(i),d=n===Tb.ASSET;(0,ts.useEffect)(()=>{s(i)},[i]);let f=(0,aj.createColumnHelper)(),c=[...[f.accessor("cpath",{header:o("user-management.workspaces.columns.cpath"),meta:{type:n,editable:!0,autoWidth:!0},size:272}),f.accessor("list",{header:o("user-management.workspaces.columns.list"),size:72,meta:{type:"checkbox",editable:!0,config:{align:"center"}}}),f.accessor("view",{header:o("user-management.workspaces.columns.view"),size:72,meta:{type:"checkbox",editable:!0,config:{align:"center"}}}),!d?f.accessor("save",{header:o("user-management.workspaces.columns.save"),size:72,meta:{type:"checkbox",editable:!0,config:{align:"center"}}}):null,f.accessor("publish",{header:o("user-management.workspaces.columns.publish"),size:72,meta:{type:"checkbox",editable:!0,config:{align:"center"}}}),!d?f.accessor("unpublish",{header:o("user-management.workspaces.columns.unpublish"),size:72,meta:{type:"checkbox",editable:!0,config:{align:"center"}}}):null,f.accessor("delete",{header:o("user-management.workspaces.columns.delete"),size:72,meta:{type:"checkbox",editable:!0,config:{align:"center"}}}),f.accessor("rename",{header:o("user-management.workspaces.columns.rename"),size:72,meta:{type:"checkbox",editable:!0,config:{align:"center"}}}),f.accessor("create",{header:o("user-management.workspaces.columns.create"),size:72,meta:{type:"checkbox",editable:!0,config:{align:"center"}}}),f.accessor("settings",{header:o("user-management.workspaces.columns.settings"),size:72,meta:{type:"checkbox",editable:!0,config:{align:"center"}}}),f.accessor("versions",{header:o("user-management.workspaces.columns.versions"),size:72,meta:{type:"checkbox",editable:!0,config:{align:"center"}}}),f.accessor("properties",{header:o("user-management.workspaces.columns.properties"),size:72,meta:{type:"checkbox",editable:!0,config:{align:"center"}}}),f.accessor("actions",{header:o("user-management.workspaces.columns.delete"),size:60,cell:e=>(0,tl.jsx)(tN.Flex,{align:"center",className:"w-full h-full",justify:"center",children:(0,tl.jsx)(aM.h,{icon:{value:"trash"},onClick:()=>{u(e.row.id)},type:"link"})})})].filter(Boolean)],u=e=>{let t=[...l??[]],i=t.findIndex(t=>t.cid===e);t.splice(i,1),s(t),a(t)};return(0,tl.jsx)(az.r,{autoWidth:!0,columns:c,data:l,dataTestId:(0,dM.y)(`user-workspaces-${n??"unknown"}`),isLoading:r,onUpdateCellData:e=>{let{rowIndex:i,columnId:n,value:r,rowData:o}=e;s(l.map((e,t)=>t===i?{...e,[n]:r}:e));let d=[...l??[]],f=d.findIndex(e=>e.cpath===o.cpath),c={...d.at(f),[n]:r,cid:void 0!==r.id?r.id:o.cid,cpath:void 0!==r.fullPath?r.fullPath:o.cpath};d[f]=c,d.filter(e=>e.cpath===c.cpath).length>1?(c.cpath="",s(d),t()):(s(d),a(d))},resizable:!0,setRowId:e=>e.cid})},Tb=((S={}).DOCUMENT="document",S.ASSET="asset",S.OBJECT="object",S),Ty=e=>{let{...t}=e,{t:i}=(0,t7.useTranslation)(),{id:n}=Tn(),{user:r,isLoading:a,changeUserInState:o}=(0,Te.u)(n),[l,s]=(0,ts.useState)((null==r?void 0:r.assetWorkspaces)??[]),[d,f]=(0,ts.useState)((null==r?void 0:r.documentWorkspaces)??[]),[c,u]=(0,ts.useState)((null==r?void 0:r.dataObjectWorkspaces)??[]),{showModal:m,closeModal:p,renderModal:g}=(0,hh.dd)({type:"error"});if(void 0===r)return(0,tl.jsx)(tl.Fragment,{});let h=[{key:"documents",id:"documents",title:(0,tl.jsx)(tl.Fragment,{children:i("user-management.workspaces.documents")}),info:(0,tl.jsx)(dx.W,{icon:{value:"add-find"},onClick:()=>{f([...r.documentWorkspaces,{cid:new Date().getTime(),cpath:"",list:!1,view:!1,save:!1,publish:!1,unpublish:!1,delete:!1,rename:!1,create:!1,settings:!1,versions:!1,properties:!1}])},children:i("user-management.workspaces.add")}),children:(0,tl.jsx)(Th,{data:d,isLoading:a,onUpdateData:e=>{o({documentWorkspaces:e})},showDuplicatePropertyModal:()=>{m()},type:Tb.DOCUMENT})}],b=[{key:"assets",id:"assets",title:(0,tl.jsx)(tl.Fragment,{children:i("user-management.workspaces.assets")}),info:(0,tl.jsx)(dx.W,{icon:{value:"add-find"},onClick:()=>{s([...r.assetWorkspaces,{cid:new Date().getTime(),cpath:"",list:!1,view:!1,publish:!1,delete:!1,rename:!1,create:!1,settings:!1,versions:!1,properties:!1}])},children:i("user-management.workspaces.add")}),children:(0,tl.jsx)(Th,{data:l,isLoading:a,onUpdateData:e=>{o({assetWorkspaces:e})},showDuplicatePropertyModal:()=>{m()},type:Tb.ASSET})}],y=[{key:"objects",id:"objects",title:(0,tl.jsx)(tl.Fragment,{children:i("user-management.workspaces.objects")}),info:(0,tl.jsx)(dx.W,{icon:{value:"add-find"},onClick:()=>{u([...r.dataObjectWorkspaces,{cid:new Date().getTime(),cpath:"",list:!1,view:!1,save:!1,publish:!1,unpublish:!1,delete:!1,rename:!1,create:!1,settings:!1,versions:!1,properties:!1}])},children:i("user-management.workspaces.add")}),children:(0,tl.jsx)(Th,{data:c,isLoading:a,onUpdateData:e=>{o({dataObjectWorkspaces:e})},showDuplicatePropertyModal:()=>{m()},type:Tb.OBJECT})}];return(0,tl.jsxs)(rZ.k,{"data-testid":(0,dM.Xv)(n.toString(),{prefix:"user-detail-tab",tabKey:"workspaces"}),gap:"small",vertical:!0,children:[(0,tl.jsx)(k9.U,{activeKey:"documents",bordered:!0,collapsible:"icon",items:h,size:"small",table:!0}),(0,tl.jsx)(k9.U,{activeKey:"assets",bordered:!0,collapsible:"icon",items:b,size:"small",table:!0}),(0,tl.jsx)(k9.U,{activeKey:"objects",bordered:!0,collapsible:"icon",items:y,size:"small",table:!0}),(0,tl.jsx)(g,{footer:(0,tl.jsx)(p1.m,{children:(0,tl.jsx)(ai.z,{onClick:p,type:"primary",children:i("button.ok")})}),title:i("properties.property-already-exist.title"),children:i("properties.property-already-exist.error")})]})};var Tv=i(77764);let Tx=e=>{let{...t}=e,[i]=tc.l.useForm(),{id:n}=Tn(),{user:r,isLoading:a,updateUserKeyBinding:o,changeUserInState:l}=(0,Te.u)(n),{resetUserKeyBindings:s,getDefaultKeyBindings:d}=(0,k0.w)();if(!a){var f;(null==r||null==(f=r.keyBindings)?void 0:f.length)===0&&d().then(e=>{l({keyBindings:e.items})}).catch(e=>{console.error("error setting default key bindings",e)})}return a?(0,tl.jsx)(aB.V,{loading:!0}):(0,tl.jsx)(tc.l,{"data-testid":(0,dM.Xv)(n.toString(),{prefix:"user-detail-tab",tabKey:"key-bindings"}),form:i,layout:"vertical",children:(0,tl.jsx)(Tv.G,{onChange:(e,t)=>{o(e,t)},onResetKeyBindings:async()=>await s(n),values:null==r?void 0:r.keyBindings})})},Tj=e=>{let{data:t,isLoading:i}=e,{t:n}=(0,t7.useTranslation)(),[r,a]=td().useState(t);(0,ts.useEffect)(()=>{a(t)},[t]);let o=(0,aj.createColumnHelper)(),l=[o.accessor("id",{header:n("user-management.workspaces.columns.id"),meta:{type:"element-cell",editable:!0},size:100}),o.accessor("path",{header:n("user-management.workspaces.columns.path"),meta:{type:"element-cell",editable:!0,autoWidth:!0}}),o.accessor("subtype",{header:n("user-management.workspaces.columns.subtype"),meta:{type:"element-cell",editable:!0},size:150})];return(0,tl.jsx)(az.r,{autoWidth:!0,columns:l,data:r,isLoading:i,resizable:!0,setRowId:e=>e.cid})},Tw=e=>{var t;let{...i}=e,{t:n}=(0,t7.useTranslation)(),{id:r}=Tn(),{user:a}=(0,Te.u)(r),o=[{key:"1",title:(0,tl.jsx)(tl.Fragment,{children:n("user-management.references.documents")}),children:(0,tl.jsx)(Tj,{data:(null==a||null==(t=a.objectDependencies)?void 0:t.dependencies)??[],isLoading:!1})}];return(0,tl.jsx)(k9.U,{activeKey:"1",bordered:!0,collapsible:"icon","data-testid":(0,dM.Xv)(r.toString(),{prefix:"user-detail-tab",tabKey:"user-references"}),items:o,size:"small",table:!0})};var TC=i(55128);let Tk=e=>{let{id:t,...i}=e,{t:n}=(0,t7.useTranslation)(),r=(0,h5.Q)(),{setContext:a,removeContext:o}=(0,TC.q)(),{user:l,isLoading:s,isError:d,removeUserFromState:f}=(0,Te.u)(t);if((0,ts.useEffect)(()=>()=>{o(),f()},[]),(0,ts.useEffect)(()=>(r&&a({id:t}),()=>{r||o()}),[r]),d)return(0,tl.jsx)("div",{children:"Error"});if(s)return(0,tl.jsx)(aB.V,{loading:!0});if(void 0===l)return(0,tl.jsx)(tl.Fragment,{});let c=[{key:"settings",label:n("user-management.settings.title"),children:(0,tl.jsx)(Tg,{})},{key:"workspaces",label:n("user-management.workspaces.title"),children:(0,tl.jsx)(Ty,{}),disabled:l.admin},{key:"key-bindings",label:n("user-management.key-bindings.title"),children:(0,tl.jsx)(Tx,{})},{key:"user-references",label:n("user-management.references.title"),children:(0,tl.jsx)(Tw,{})}];return(0,tl.jsx)(Ti,{id:t,children:(0,tl.jsx)(ay.m,{defaultActiveKey:"1",destroyInactiveTabPane:!0,items:c})})};var TT=i(52741);let TS=e=>{let{id:t,onCloneUser:i,onRemoveUser:n,...r}=e,{t:a}=(0,t7.useTranslation)(),{user:o,isLoading:l,reloadUser:s}=(0,Te.u)(t),{updateUserById:d}=(0,k0.w)(),f=(null==o?void 0:o.modified)===!0,[c,u]=(0,ts.useState)(!1),m=[{key:"1",label:a("tree.actions.clone-user"),icon:(0,tl.jsx)(rR.J,{value:"copy"}),onClick:i},{key:"2",label:a("tree.actions.remove-user"),icon:(0,tl.jsx)(rR.J,{value:"trash"}),onClick:n}];return(0,tl.jsxs)(aO.o,{children:[(0,tl.jsxs)(rZ.k,{children:[(0,tl.jsx)(tN.Popconfirm,{onCancel:()=>{u(!1)},onConfirm:()=>{u(!1),s()},onOpenChange:e=>{if(!e)return void u(!1);f?u(!0):s()},open:c,title:a("toolbar.reload.confirmation"),children:(0,tl.jsx)(aM.h,{icon:{value:"refresh"},children:a("toolbar.reload")})}),null!==i||null!==n?(0,tl.jsx)(pJ.L,{menu:{items:m},trigger:["click"],children:(0,tl.jsx)(pK.P,{children:a("toolbar.more")})}):null]}),(0,tl.jsx)(ih.Button,{disabled:!f||l,loading:l,onClick:()=>{d({id:t,user:{...o}}).catch(()=>{console.error("error")})},type:"primary",children:a("toolbar.save-and-publish")})]})},TD=(0,ia.createStyles)(e=>{let{token:t,css:i}=e;return{detailTabs:i` + `}},{hashPriority:"low"});var k3=i(17386),k6=i(4098);let k4=e=>{let{loading:t=!0,...i}=e,{t:n}=(0,t7.useTranslation)(),{openUser:r,searchUserByText:a}=(0,k0.w)(),[l,o]=(0,ts.useState)([]),[s,d]=(0,ts.useState)(""),{Text:f}=tN.Typography,{styles:c}=(0,k6.y)();return(0,to.jsx)(tN.AutoComplete,{className:"tree--search",onSearch:e=>{d(e),a(s).then(e=>{o(e.items.map(e=>({value:e.id.toString(),label:(0,to.jsxs)(tN.Row,{gutter:8,wrap:!1,children:[(0,to.jsx)(tN.Col,{flex:"none",children:(0,to.jsx)(tN.Avatar,{icon:(0,to.jsx)(k3.Z,{}),size:26})}),(0,to.jsxs)(tN.Col,{flex:"auto",children:[(0,to.jsx)("div",{children:e.username}),(0,to.jsxs)(f,{strong:!0,children:[n("user-management.search.id"),": "]})," ",e.id]})]})})))}).catch(e=>{(0,is.ZP)(new is.aE("An error occured while searching for a user"))})},onSelect:(e,t)=>{r(Number(e)),d("")},options:l,value:s,children:(0,to.jsx)(tN.Input.Search,{allowClear:{clearIcon:(0,to.jsx)(rR.J,{className:c.closeIcon,value:"close"})},className:c.searchWithoutAddon,placeholder:n("user-management.search"),prefix:(0,to.jsx)(rR.J,{className:c.searchIcon,options:{width:12,height:12},value:"search"})})})},k8=(e,t)=>{for(let i of e){if(parseInt(i.key)===parseInt(t))return i;if(void 0!==i.children&&null!==i.children){let e=k8(i.children,t);if(void 0!==e)return e}}},k7=function(e,t){let i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null;for(let n of e){if(parseInt(n.key)===parseInt(t))return i;if(void 0!==n.children&&null!==n.children){let e=k7(n.children,t,n);if(null!==e)return e}}return null},k5=e=>{let{expandedKeys:t,treeData:i,onLoadTreeData:n,onReloadTree:r,onSetExpandedKeys:a,onUpdateTreeData:l,...o}=e,{t:s}=(0,t7.useTranslation)(),{openUser:d,moveUserById:f,addNewUser:c,addNewFolder:u,removeUser:m,cloneUser:p,removeFolder:g}=(0,k0.w)(),{styles:h}=k2(),b=[h.treeContainer],y=(0,an.U8)(),v=e=>{y.input({title:s("user-management.add-user"),label:s("user-management.add-user.label"),onOk:async t=>{await c({parentId:e,name:t}),r([e])}})},x=e=>{y.input({title:s("user-management.add-folder"),label:s("user-management.add-folder.label"),onOk:async t=>{await u({parentId:e,name:t}),r([e])}})};return(0,to.jsx)(aF.D,{renderToolbar:(0,to.jsx)(k1,{onAddFolder:()=>{x(0)},onAddItem:()=>{v(0)},onReload:()=>{r([0])}}),children:(0,to.jsxs)(aB.V,{className:b.join(", "),children:[(0,to.jsx)(k4,{}),(0,to.jsx)(wm._,{defaultExpandedKeys:t,draggable:!0,expandedKeys:t,onActionsClick:(e,t)=>{switch("string"==typeof e&&(e=parseInt(e)),t){case"add-folder":x(e);break;case"add-user":v(e);break;case"clone-user":y.input({title:s("user-management.clone-user"),label:s("user-management.clone-user.label"),onOk:async t=>{var n;let a=null==(n=k7(i,e))?void 0:n.key;void 0!==await p({id:e,name:t})&&r([a])}});break;case"remove-user":y.confirm({title:s("user-management.remove-user"),content:s("user-management.remove-user.text",{name:((e,t)=>{let i=k8(e,t);return(null==i?void 0:i.title)??""})(i,e)}),okText:s("button.confirm"),cancelText:s("button.cancel"),onOk:async()=>{var t;await m({id:Number(e)}),r([null==(t=k7(i,e))?void 0:t.key])}});break;case"remove-folder":y.confirm({title:s("user-management.remove-folder"),content:s("user-management.remove-folder.text"),okText:s("button.confirm"),cancelText:s("button.cancel"),onOk:async()=>{var t;await g({id:Number(e)}),r([null==(t=k7(i,e))?void 0:t.key])}})}},onDragAndDrop:async e=>{if(void 0!==await f({id:Number(e.dragNode.key),parentId:Number(e.node.key)})){var t;r([null==(t=k7(i,e.dragNode.key))?void 0:t.key,e.node.key])}},onExpand:e=>{a(e)},onLoadData:n,onSelected:e=>{var t;(null==(t=k8(i,e))?void 0:t.selectable)===!0&&d(Number(e))},treeData:i})]})})};var k9=i(76541),Te=i(43409);let Tt=(0,ts.createContext)({id:-1}),Ti=e=>{let{id:t,children:i}=e;return(0,ts.useMemo)(()=>(0,to.jsx)(Tt.Provider,{value:{id:t},children:i}),[t])},Tn=()=>{let{id:e}=(0,ts.useContext)(Tt);return{id:e}};var Tr=i(45464),Ta=i(67697);let Tl=e=>{let{isDisabled:t,...i}=e,{t:n}=(0,t7.useTranslation)(),{Text:r}=tN.Typography,a=[{key:"1",title:(0,to.jsx)(to.Fragment,{children:n("user-management.admin")}),children:(0,to.jsxs)(to.Fragment,{children:[(0,to.jsx)(tN.Form.Item,{name:"admin",children:(0,to.jsx)(s0.r,{disabled:t,labelRight:n("user-management.admin"),size:"small"})}),(0,to.jsx)(r,{disabled:!0,children:n("user-management.admin.info")}),(0,to.jsx)("div",{className:"m-t-normal",children:(0,to.jsx)(ai.z,{disabled:t,onClick:()=>{console.log("todo login")},type:"default",children:n("user-management.admin.login")})})]})}];return(0,to.jsx)(k9.U,{activeKey:"1",bordered:!0,items:a,size:"small"})};var To=i(37274);let Ts=e=>{let{isAdmin:t,...i}=e,{t:n}=(0,t7.useTranslation)(),{availableAdminLanguages:r}=(0,p5.r)(),{getDisplayName:a}=(0,vS.Z)(),[l,o]=(0,ts.useState)([]),[s,d]=(0,ts.useState)([]),{getRoleCollection:f}=(0,To.d)(),{getPerspectiveConfigCollection:c}=(0,dw.o)();(0,ts.useEffect)(()=>{0===s.length&&c().then(e=>{void 0!==e&&d(e.items.map(e=>({value:e.id,label:e.name})))}).catch(e=>{console.error("Error fetching perspective config collection:",e)}),0===l.length&&f().then(e=>{void 0!==e&&o(e.items.map(e=>({value:e.id,label:e.name})))}).catch(e=>{console.error("Error fetching role collection:",e)})},[]);let u=[{key:"1",title:(0,to.jsx)(to.Fragment,{children:n("user-management.customisation")}),children:(0,to.jsxs)(to.Fragment,{children:[(0,to.jsx)(tN.Form.Item,{label:n("user-management.firstname"),name:"firstname",children:(0,to.jsx)(tN.Input,{})}),(0,to.jsx)(tN.Form.Item,{label:n("user-management.lastname"),name:"lastname",children:(0,to.jsx)(tN.Input,{})}),(0,to.jsx)(tN.Form.Item,{label:n("user-management.email"),name:"email",children:(0,to.jsx)(tN.Input,{type:"email"})}),(0,to.jsx)(tN.Form.Item,{label:n("user-management.language"),name:"language",children:(0,to.jsx)(tC.P,{optionFilterProp:"label",options:r.map(e=>({value:e,label:a(e)})),placeholder:n("user-management.language"),showSearch:!0})}),!1===t?(0,to.jsxs)(to.Fragment,{children:[(0,to.jsx)(tN.Form.Item,{label:n("user-management.roles"),name:"roles",children:(0,to.jsx)(tC.P,{mode:"multiple",options:l,placeholder:n("user-management.roles")})}),(0,to.jsx)(tN.Form.Item,{label:n("user-management.perspectives"),name:"perspectives",children:(0,to.jsx)(tC.P,{mode:"multiple",options:s,placeholder:n("user-management.perspectives")})})]}):null,(0,to.jsx)(tN.Form.Item,{label:"TODO "+n("user-management.dateTime"),name:"dateTime",children:(0,to.jsx)(tC.P,{optionFilterProp:"label",options:r.map(e=>({value:e,label:a(e)})),placeholder:n("user-management.dateTime"),showSearch:!0})}),(0,to.jsx)(tN.Form.Item,{name:"welcomeScreen",style:{marginBottom:"0"},children:(0,to.jsx)(s0.r,{labelRight:n("user-management.welcomeScreen"),size:"small"})}),(0,to.jsx)(tN.Form.Item,{name:"memorizeTabs",style:{marginBottom:"0"},children:(0,to.jsx)(s0.r,{labelRight:n("user-management.memorizeTabs"),size:"small"})}),(0,to.jsx)(tN.Form.Item,{name:"allowDirtyClose",style:{marginBottom:"0"},children:(0,to.jsx)(s0.r,{labelRight:n("user-management.allowDirtyClose"),size:"small"})}),(0,to.jsx)(tN.Form.Item,{name:"closeWarning",style:{marginBottom:"0"},children:(0,to.jsx)(s0.r,{labelRight:n("user-management.closeWarning"),size:"small"})})]})}];return(0,to.jsx)(k9.U,{activeKey:"1",bordered:!0,items:u,size:"small"})},Td=e=>{let{permissions:t,...i}=e,{t:n}=(0,t7.useTranslation)(),r=[{key:"1",title:(0,to.jsx)(to.Fragment,{children:n("user-management.permissions.default")}),children:(0,to.jsxs)(to.Fragment,{children:[(0,to.jsx)(tN.Form.Item,{name:"permissionsDefault",children:(0,to.jsx)(tC.P,{mode:"multiple",options:t.default.map(e=>({value:e.key,label:e.key})),placeholder:n("user-management.permissions.default")})}),(0,to.jsx)(tN.Form.Item,{name:"permissionsBundles",children:(0,to.jsx)(tC.P,{mode:"multiple",options:t.bundles.map(e=>({value:e.key,label:e.key})),placeholder:n("user-management.permissions.bundles")})})]})}];return(0,to.jsx)(k9.U,{activeKey:"1",bordered:!0,items:r,size:"small"})};var Tf=i(18962);let Tc=()=>{let{t:e}=(0,t7.useTranslation)(),{data:t,isLoading:i}=(0,Tf.zE)(),n=[{key:"1",title:(0,to.jsx)(to.Fragment,{children:e("user-management.types-and-classes")}),children:(0,to.jsxs)(to.Fragment,{children:[(0,to.jsx)(tN.Form.Item,{name:"docTypes",children:(0,to.jsx)(tC.P,{disabled:i,mode:"multiple",options:[],placeholder:e("user-management.doc-types")})}),(0,to.jsx)(tN.Form.Item,{name:"classes",children:(0,to.jsx)(tC.P,{disabled:i,mode:"multiple",options:null==t?void 0:t.items.map(e=>({label:e.name,value:e.id})),placeholder:e("user-management.classes")})})]})}];return(0,to.jsx)(k9.U,{activeKey:"1",bordered:!0,items:n,size:"small"})};var Tu=i(2277),Tm=i(19974);let Tp=e=>{let{data:t,viewData:i,editData:n,onChange:r,...a}=e,{t:l}=(0,t7.useTranslation)(),o=[{key:"1",title:(0,to.jsx)(to.Fragment,{children:l("user-management.shared-translation-settings")}),children:(0,to.jsx)(Tm.U,{data:t,editData:n,onChange:e=>{r(e)},viewData:i})}];return(0,to.jsx)(k9.U,{activeKey:"1",bordered:!0,items:o,size:"small",table:!0})},Tg=e=>{let{...t}=e,{validLanguages:i}=(0,p5.r)(),[n]=tc.l.useForm(),{t:r}=(0,t7.useTranslation)(),{Text:a}=tN.Typography,{id:l}=Tn(),o=(0,dj.a)(),{user:s,isLoading:d,changeUserInState:f,updateUserImageInState:c}=(0,Te.u)(l),{getAvailablePermissions:u}=(0,k0.w)(),m=(0,Ta.b)(u()),[p,g]=td().useState("password");(0,ts.useEffect)(()=>{if(!d){var e;n.setFieldsValue({active:null==s?void 0:s.active,admin:null==s?void 0:s.admin,classes:null==s?void 0:s.classes,name:null==s?void 0:s.name,twoFactorAuthenticationRequired:(null==s||null==(e=s.twoFactorAuthentication)?void 0:e.required)??!1,firstname:null==s?void 0:s.firstname,lastname:null==s?void 0:s.lastname,email:null==s?void 0:s.email,language:null==s?void 0:s.language,welcomeScreen:null==s?void 0:s.welcomeScreen,memorizeTabs:null==s?void 0:s.memorizeTabs,allowDirtyClose:null==s?void 0:s.allowDirtyClose,closeWarning:null==s?void 0:s.closeWarning,roles:(null==s?void 0:s.roles)??[],permissionsDefault:Array.isArray(null==s?void 0:s.permissions)?s.permissions.filter(e=>m.default.some(t=>t.key===e)):[],permissionsBundles:Array.isArray(null==s?void 0:s.permissions)?s.permissions.filter(e=>m.bundles.some(t=>t.key===e)):[]})}},[s,d]);let h=(0,ts.useCallback)((0,eY.debounce)((e,t)=>{(void 0!==e.permissionsDefault||void 0!==e.permissionsBundles)&&(t.permissions=[...e.permissionsDefault??t.permissionsDefault??[],...e.permissionsBundles??t.permissionsBundles??[]]),f(t)},300),[f]);return d?(0,to.jsx)(aB.V,{loading:!0}):(0,to.jsx)(tc.l,{"data-testid":(0,dM.Xv)(l.toString(),{prefix:"user-detail-tab",tabKey:"settings"}),form:n,layout:"vertical",onValuesChange:h,children:(0,to.jsxs)(tN.Row,{gutter:[10,10],children:[(0,to.jsx)(tN.Col,{span:8,children:(0,to.jsx)(k9.U,{activeKey:"1",bordered:!0,items:[{key:"1",title:(0,to.jsx)(to.Fragment,{children:r("user-management.general")}),info:"ID: "+l,children:(0,to.jsxs)(to.Fragment,{children:[(0,to.jsxs)(tN.Flex,{align:"center",gap:"small",children:[(0,to.jsx)(tc.l.Item,{className:"m-b-none",name:"active",children:(0,to.jsx)(s0.r,{disabled:(null==o?void 0:o.id)===(null==s?void 0:s.id),labelRight:r("user-management.active"),size:"small"})}),(null==s?void 0:s.lastLogin)!==void 0&&(null==s?void 0:s.lastLogin)!==null?(0,to.jsxs)(a,{disabled:!0,children:[r("user-management.last-login"),": ",new Date(1e3*s.lastLogin).toLocaleString()]}):null]}),(0,to.jsx)(tc.l.Item,{label:r("user-management.name"),name:"name",children:(0,to.jsx)(tN.Input,{disabled:!0})}),(0,to.jsx)(tc.l.Item,{label:r("user-management.password"),name:"password",rules:[{min:10}],children:(0,to.jsx)(tN.Input,{autoComplete:"new-password",suffix:(0,to.jsx)(aM.h,{icon:{value:"locked"},onClick:()=>{let e=(0,Ta.F)();n.setFieldValue("password",e),f({password:e}),g("text")},title:r("user-management.generate-password"),variant:"minimal"}),type:p})}),(0,to.jsx)(tc.l.Item,{name:"twoFactorAuthenticationRequired",style:{marginBottom:"0"},children:(0,to.jsx)(s0.r,{labelRight:r("user-management.two-factor-authentication"),size:"small"})})]})}],size:"small"})}),(0,to.jsx)(tN.Col,{span:8,children:(0,to.jsx)(Tr.Y,{onUserImageChanged:e=>{c(e)},user:s})}),(0,to.jsx)(tN.Col,{span:16,children:(0,to.jsx)(Ts,{isAdmin:null==s?void 0:s.admin})}),(0,to.jsx)(tN.Col,{span:16,children:(0,to.jsx)(Tl,{isDisabled:(null==o?void 0:o.id)===(null==s?void 0:s.id)})}),(null==s?void 0:s.admin)===!1?(0,to.jsxs)(to.Fragment,{children:[(0,to.jsx)(tN.Col,{span:16,children:(0,to.jsx)(Td,{permissions:m})}),(0,to.jsx)(tN.Col,{span:16,children:(0,to.jsx)(Tc,{})})]}):null,(0,to.jsx)(tN.Col,{span:16,children:(0,to.jsx)(Tu.O,{data:null==s?void 0:s.contentLanguages,editData:null==s?void 0:s.websiteTranslationLanguagesEdit,onChange:e=>{f({contentLanguages:e})},viewData:null==s?void 0:s.websiteTranslationLanguagesView})}),(null==s?void 0:s.admin)===!1?(0,to.jsx)(tN.Col,{span:16,children:(0,to.jsx)(Tp,{data:i,editData:null==s?void 0:s.websiteTranslationLanguagesEdit,onChange:e=>{f({websiteTranslationLanguagesEdit:e.filter(e=>e.edit).map(e=>e.abbreviation),websiteTranslationLanguagesView:e.filter(e=>e.view).map(e=>e.abbreviation)})},viewData:null==s?void 0:s.websiteTranslationLanguagesView})}):null]})})},Th=e=>{let{showDuplicatePropertyModal:t,data:i,type:n,isLoading:r,onUpdateData:a,onShowSpecialSettings:l}=e,{t:o}=(0,t7.useTranslation)(),[s,d]=td().useState(i),f=n===Tv.ASSET,c=n===Tv.OBJECT;(0,ts.useEffect)(()=>{d(i)},[i]);let u=(0,aj.createColumnHelper)(),m=[...[u.accessor("cpath",{header:o("user-management.workspaces.columns.cpath"),meta:{type:n,editable:!0,autoWidth:!0},size:272}),u.accessor("list",{header:o("user-management.workspaces.columns.list"),size:72,meta:{type:"checkbox",editable:!0,config:{align:"center"}}}),u.accessor("view",{header:o("user-management.workspaces.columns.view"),size:72,meta:{type:"checkbox",editable:!0,config:{align:"center"}}}),!f?u.accessor("save",{header:o("user-management.workspaces.columns.save"),size:72,meta:{type:"checkbox",editable:!0,config:{align:"center"}}}):null,u.accessor("publish",{header:o("user-management.workspaces.columns.publish"),size:72,meta:{type:"checkbox",editable:!0,config:{align:"center"}}}),!f?u.accessor("unpublish",{header:o("user-management.workspaces.columns.unpublish"),size:72,meta:{type:"checkbox",editable:!0,config:{align:"center"}}}):null,u.accessor("delete",{header:o("user-management.workspaces.columns.delete"),size:72,meta:{type:"checkbox",editable:!0,config:{align:"center"}}}),u.accessor("rename",{header:o("user-management.workspaces.columns.rename"),size:72,meta:{type:"checkbox",editable:!0,config:{align:"center"}}}),u.accessor("create",{header:o("user-management.workspaces.columns.create"),size:72,meta:{type:"checkbox",editable:!0,config:{align:"center"}}}),u.accessor("settings",{header:o("user-management.workspaces.columns.settings"),size:72,meta:{type:"checkbox",editable:!0,config:{align:"center"}}}),u.accessor("versions",{header:o("user-management.workspaces.columns.versions"),size:72,meta:{type:"checkbox",editable:!0,config:{align:"center"}}}),u.accessor("properties",{header:o("user-management.workspaces.columns.properties"),size:72,meta:{type:"checkbox",editable:!0,config:{align:"center"}}}),...c?[u.accessor("specialSettings",{header:"",size:40,cell:e=>(0,to.jsx)(aM.h,{icon:{value:"settings"},onClick:()=>null==l?void 0:l(e.row.original.cid),type:"link"})})]:[],u.accessor("actions",{header:"",size:40,cell:e=>(0,to.jsx)(tN.Flex,{align:"center",className:"w-full h-full",justify:"center",children:(0,to.jsx)(aM.h,{icon:{value:"trash"},onClick:()=>{p(e.row.id)},type:"link"})})})].filter(Boolean)],p=e=>{let t=[...s??[]],i=t.findIndex(t=>t.cid===e);t.splice(i,1),d(t),a(t)};return(0,to.jsx)(az.r,{autoWidth:!0,columns:m,data:s,dataTestId:(0,dM.y)(`user-workspaces-${n??"unknown"}`),isLoading:r,onUpdateCellData:e=>{let{rowIndex:i,columnId:n,value:r,rowData:l}=e;d(s.map((e,t)=>t===i?{...e,[n]:r}:e));let o=[...s??[]],f=o.findIndex(e=>e.cpath===l.cpath),c={...o.at(f),[n]:r,cid:void 0!==r.id?r.id:l.cid,cpath:void 0!==r.fullPath?r.fullPath:l.cpath};o[f]=c,o.filter(e=>e.cpath===c.cpath).length>1?(c.cpath="",d(o),t()):(d(o),a(o))},resizable:!0,setRowId:e=>e.cid})};var Tb=i(6925);let Ty=e=>{let{localizedView:t,localizedEdit:i,layouts:n,onValuesChange:r}=e,{t:a}=(0,t7.useTranslation)(),{data:l}=(0,Tb.JD)(),{validLanguages:o}=(0,p5.r)(),{getDisplayName:s}=(0,vS.Z)(),[d]=tN.Form.useForm();return(0,ts.useEffect)(()=>{d.setFieldsValue({localizedView:t,localizedEdit:i,layouts:n})},[]),(0,to.jsx)(tN.Form,{form:d,layout:"vertical",onValuesChange:r,children:(0,to.jsxs)(rZ.k,{gap:"small",vertical:!0,children:[(0,to.jsx)(k9.U,{activeKey:"localizedFields",bordered:!0,items:[{key:"localizedFields",title:(0,to.jsx)(to.Fragment,{children:a("user-management.workspaces.localized-fields")}),children:(0,to.jsxs)(to.Fragment,{children:[(0,to.jsx)(tN.Form.Item,{label:a("user-management.workspaces.localized-fields.view"),name:"localizedView",children:(0,to.jsx)(tC.P,{mode:"multiple",options:o.map(e=>({value:e,label:s(e)})),placeholder:a("user-management.workspaces.localized-fields.view")})}),(0,to.jsx)(tN.Form.Item,{label:a("user-management.workspaces.localized-fields.edit"),name:"localizedEdit",children:(0,to.jsx)(tC.P,{mode:"multiple",options:o.map(e=>({value:e,label:s(e)})),placeholder:a("user-management.workspaces.localized-fields.edit")})})]})}],size:"small"}),(0,to.jsx)(k9.U,{activeKey:"customLayouts",bordered:!0,items:[{key:"customLayouts",title:(0,to.jsx)(to.Fragment,{children:a("user-management.workspaces.custom-layouts")}),children:(0,to.jsx)(tN.Form.Item,{label:a("user-management.workspaces.custom-layouts.select"),name:"layouts",children:(0,to.jsx)(tC.P,{mode:"multiple",options:null==l?void 0:l.items.map(e=>({value:e.id,label:e.name})),placeholder:a("user-management.workspaces.custom-layouts.select")})})}],size:"small"})]})})},Tv=((S={}).DOCUMENT="document",S.ASSET="asset",S.OBJECT="object",S),Tx=e=>{let{...t}=e,{t:i}=(0,t7.useTranslation)(),{id:n}=Tn(),{user:r,isLoading:a,changeUserInState:l}=(0,Te.u)(n),[o,s]=(0,ts.useState)((null==r?void 0:r.assetWorkspaces)??[]),[d,f]=(0,ts.useState)((null==r?void 0:r.documentWorkspaces)??[]),[c,u]=(0,ts.useState)((null==r?void 0:r.dataObjectWorkspaces)??[]),[m,p]=(0,ts.useState)(null),{showModal:g,closeModal:h,renderModal:b}=(0,hh.dd)({type:"error"}),{renderModal:y,showModal:v,handleCancel:x,handleOk:j}=(0,hh.dd)({type:"default"});if(void 0===r)return(0,to.jsx)(to.Fragment,{});let w=[{key:"documents",id:"documents",title:(0,to.jsx)(to.Fragment,{children:i("user-management.workspaces.documents")}),info:(0,to.jsx)(dx.W,{icon:{value:"add-find"},onClick:()=>{f([...r.documentWorkspaces,{cid:new Date().getTime(),cpath:"",list:!1,view:!1,save:!1,publish:!1,unpublish:!1,delete:!1,rename:!1,create:!1,settings:!1,versions:!1,properties:!1}])},children:i("user-management.workspaces.add")}),children:(0,to.jsx)(Th,{data:d,isLoading:a,onUpdateData:e=>{l({documentWorkspaces:e})},showDuplicatePropertyModal:()=>{g()},type:Tv.DOCUMENT})}],C=[{key:"assets",id:"assets",title:(0,to.jsx)(to.Fragment,{children:i("user-management.workspaces.assets")}),info:(0,to.jsx)(dx.W,{icon:{value:"add-find"},onClick:()=>{s([...r.assetWorkspaces,{cid:new Date().getTime(),cpath:"",list:!1,view:!1,publish:!1,delete:!1,rename:!1,create:!1,settings:!1,versions:!1,properties:!1}])},children:i("user-management.workspaces.add")}),children:(0,to.jsx)(Th,{data:o,isLoading:a,onUpdateData:e=>{l({assetWorkspaces:e})},showDuplicatePropertyModal:()=>{g()},type:Tv.ASSET})}],k={},T=e=>{var t;return(null==r||null==(t=r.dataObjectWorkspaces.find(e=>e.cid===m))?void 0:t[e])??[]},S=[{key:"objects",id:"objects",title:(0,to.jsx)(to.Fragment,{children:i("user-management.workspaces.objects")}),info:(0,to.jsx)(dx.W,{icon:{value:"add-find"},onClick:()=>{u([...r.dataObjectWorkspaces,{cid:new Date().getTime(),cpath:"",list:!1,view:!1,save:!1,publish:!1,unpublish:!1,delete:!1,rename:!1,create:!1,settings:!1,versions:!1,properties:!1}])},children:i("user-management.workspaces.add")}),children:(0,to.jsx)(Th,{data:c,isLoading:a,onShowSpecialSettings:e=>{p(e),v()},onUpdateData:e=>{l({dataObjectWorkspaces:e})},showDuplicatePropertyModal:()=>{g()},type:Tv.OBJECT})}];return(0,to.jsxs)(rZ.k,{"data-testid":(0,dM.Xv)(n.toString(),{prefix:"user-detail-tab",tabKey:"workspaces"}),gap:"small",vertical:!0,children:[(0,to.jsx)(k9.U,{activeKey:"documents",bordered:!0,collapsible:"icon",items:w,size:"small",table:!0}),(0,to.jsx)(k9.U,{activeKey:"assets",bordered:!0,collapsible:"icon",items:C,size:"small",table:!0}),(0,to.jsx)(k9.U,{activeKey:"objects",bordered:!0,collapsible:"icon",items:S,size:"small",table:!0}),(0,to.jsx)(b,{footer:(0,to.jsx)(p1.m,{children:(0,to.jsx)(ai.z,{onClick:h,type:"primary",children:i("button.ok")})}),title:i("properties.property-already-exist.title"),children:i("properties.property-already-exist.error")}),(0,to.jsx)(y,{footer:(0,to.jsxs)(p1.m,{children:[(0,to.jsx)(ai.z,{onClick:x,type:"default",children:i("button.cancel")}),(0,to.jsx)(ai.z,{onClick:()=>{l({dataObjectWorkspaces:r.dataObjectWorkspaces.map(e=>e.cid===m?{...e,...k}:e)}),j()},type:"primary",children:i("button.apply")})]}),size:"L",title:i("user-management.workspaces.additional-settings"),children:(0,to.jsx)(Ty,{layouts:T("layouts"),localizedEdit:T("localizedEdit"),localizedView:T("localizedView"),onValuesChange:e=>{k={...k,...e}}})})]})};var Tj=i(77764);let Tw=e=>{let{...t}=e,[i]=tc.l.useForm(),{id:n}=Tn(),{user:r,isLoading:a,updateUserKeyBinding:l,changeUserInState:o}=(0,Te.u)(n),{resetUserKeyBindings:s,getDefaultKeyBindings:d}=(0,k0.w)();if(!a){var f;(null==r||null==(f=r.keyBindings)?void 0:f.length)===0&&d().then(e=>{o({keyBindings:e.items})}).catch(e=>{console.error("error setting default key bindings",e)})}return a?(0,to.jsx)(aB.V,{loading:!0}):(0,to.jsx)(tc.l,{"data-testid":(0,dM.Xv)(n.toString(),{prefix:"user-detail-tab",tabKey:"key-bindings"}),form:i,layout:"vertical",children:(0,to.jsx)(Tj.G,{onChange:(e,t)=>{l(e,t)},onResetKeyBindings:async()=>await s(n),values:null==r?void 0:r.keyBindings})})},TC=e=>{let{data:t,isLoading:i}=e,{t:n}=(0,t7.useTranslation)(),[r,a]=td().useState(t);(0,ts.useEffect)(()=>{a(t)},[t]);let l=(0,aj.createColumnHelper)(),o=[l.accessor("id",{header:n("user-management.workspaces.columns.id"),meta:{type:"element-cell",editable:!0},size:100}),l.accessor("path",{header:n("user-management.workspaces.columns.path"),meta:{type:"element-cell",editable:!0,autoWidth:!0}}),l.accessor("subtype",{header:n("user-management.workspaces.columns.subtype"),meta:{type:"element-cell",editable:!0},size:150})];return(0,to.jsx)(az.r,{autoWidth:!0,columns:o,data:r,isLoading:i,resizable:!0,setRowId:e=>e.cid})},Tk=e=>{var t;let{...i}=e,{t:n}=(0,t7.useTranslation)(),{id:r}=Tn(),{user:a}=(0,Te.u)(r),l=[{key:"1",title:(0,to.jsx)(to.Fragment,{children:n("user-management.references.documents")}),children:(0,to.jsx)(TC,{data:(null==a||null==(t=a.objectDependencies)?void 0:t.dependencies)??[],isLoading:!1})}];return(0,to.jsx)(k9.U,{activeKey:"1",bordered:!0,collapsible:"icon","data-testid":(0,dM.Xv)(r.toString(),{prefix:"user-detail-tab",tabKey:"user-references"}),items:l,size:"small",table:!0})};var TT=i(55128);let TS=e=>{let{id:t,...i}=e,{t:n}=(0,t7.useTranslation)(),r=(0,h5.Q)(),{setContext:a,removeContext:l}=(0,TT.q)(),{user:o,isLoading:s,isError:d,removeUserFromState:f}=(0,Te.u)(t);if((0,ts.useEffect)(()=>()=>{l(),f()},[]),(0,ts.useEffect)(()=>(r&&a({id:t}),()=>{r||l()}),[r]),d)return(0,to.jsx)("div",{children:"Error"});if(s)return(0,to.jsx)(aB.V,{loading:!0});if(void 0===o)return(0,to.jsx)(to.Fragment,{});let c=[{key:"settings",label:n("user-management.settings.title"),children:(0,to.jsx)(Tg,{})},{key:"workspaces",label:n("user-management.workspaces.title"),children:(0,to.jsx)(Tx,{}),disabled:o.admin},{key:"key-bindings",label:n("user-management.key-bindings.title"),children:(0,to.jsx)(Tw,{})},{key:"user-references",label:n("user-management.references.title"),children:(0,to.jsx)(Tk,{})}];return(0,to.jsx)(Ti,{id:t,children:(0,to.jsx)(ay.m,{defaultActiveKey:"1",destroyInactiveTabPane:!0,items:c})})};var TD=i(52741);let TE=e=>{let{id:t,onCloneUser:i,onRemoveUser:n,...r}=e,{t:a}=(0,t7.useTranslation)(),{user:l,isLoading:o,reloadUser:s}=(0,Te.u)(t),{updateUserById:d}=(0,k0.w)(),f=(null==l?void 0:l.modified)===!0,[c,u]=(0,ts.useState)(!1),m=[{key:"1",label:a("tree.actions.clone-user"),icon:(0,to.jsx)(rR.J,{value:"copy"}),onClick:i},{key:"2",label:a("tree.actions.remove-user"),icon:(0,to.jsx)(rR.J,{value:"trash"}),onClick:n}];return(0,to.jsxs)(aO.o,{children:[(0,to.jsxs)(rZ.k,{children:[(0,to.jsx)(tN.Popconfirm,{onCancel:()=>{u(!1)},onConfirm:()=>{u(!1),s()},onOpenChange:e=>{if(!e)return void u(!1);f?u(!0):s()},open:c,title:a("toolbar.reload.confirmation"),children:(0,to.jsx)(aM.h,{icon:{value:"refresh"},children:a("toolbar.reload")})}),null!==i||null!==n?(0,to.jsx)(pJ.L,{menu:{items:m},trigger:["click"],children:(0,to.jsx)(pK.P,{children:a("toolbar.more")})}):null]}),(0,to.jsx)(ih.Button,{disabled:!f||o,loading:o,onClick:()=>{d({id:t,user:{...l}}).catch(()=>{console.error("error")})},type:"primary",children:a("toolbar.save-and-publish")})]})},TM=(0,ia.createStyles)(e=>{let{token:t,css:i}=e;return{detailTabs:i` display: flex; flex-direction: column; overflow: hidden; @@ -1076,7 +1076,7 @@ overflow: auto; } } - `}},{hashPriority:"low"});var TE=i(80987);let TM=e=>{let{onCloneUser:t,onRemoveItem:i,...n}=e,{t:r}=(0,t7.useTranslation)(),{styles:a}=TD(),o=["detail-tabs",a.detailTabs],l=(0,an.U8)(),{user:s}=(0,TE.O)(),{openUser:d,closeUser:f,removeUser:c,cloneUser:u,getAllIds:m,activeId:p}=(0,k0.w)(),{user:g}=(0,Te.u)(p),[h,b]=(0,ts.useState)(null),y=()=>{f(p),d(m[m.length-2])};return((0,ts.useEffect)(()=>{b(null)},[s]),void 0===p)?(0,tl.jsx)(aB.V,{none:!0}):(0,tl.jsx)(aF.D,{renderToolbar:(0,tl.jsx)(TS,{id:p,onCloneUser:()=>{l.input({title:r("user-management.clone-user"),label:r("user-management.clone-user.label"),onOk:async e=>{t(await u({id:p,name:e}),null==g?void 0:g.parentId)}})},onRemoveUser:()=>{l.confirm({title:r("user-management.remove-user"),content:r("user-management.remove-user.text"),onOk:async()=>{y(),await c({id:p}),i(p,null==g?void 0:g.parentId)}})}}),children:(0,tl.jsxs)("div",{className:o.join(" "),children:[(0,tl.jsx)(ay.m,{activeKey:p.toString(),items:m.map(e=>{var t,i;return{key:e.toString(),label:(0,tl.jsxs)(tN.Popconfirm,{onCancel:()=>{b(null)},onConfirm:y,open:h===e,title:r("widget-manager.tab-title.close-confirmation"),children:[null==(t=(0,TT.Ls)(hd.h.getState(),e))?void 0:t.name," ",(null==(i=(0,TT.Ls)(hd.h.getState(),e))?void 0:i.modified)?"*":""]})}}),onChange:e=>{d(Number(e))},onClose:e=>{var t,i;return(null==(t=(0,TT.Ls)(hd.h.getState(),parseInt(e)))?void 0:t.modified)&&null===h?void((null==s?void 0:s.allowDirtyClose)?y():b(parseInt(e))):(null==(i=(0,TT.Ls)(hd.h.getState(),parseInt(e)))?void 0:i.modified)?void(null!==h&&b(null)):void y()}}),(0,tl.jsx)(aB.V,{className:"detail-tabs__content","data-testid":(0,dM.Xv)(p,{prefix:"user-tab"}),children:(0,tl.jsx)(Tk,{id:p})})]})})},TI=e=>{let{...t}=e,{t:i}=(0,t7.useTranslation)(),{getUserTree:n}=(0,k0.w)(),[r,a]=td().useState([0]),o={title:i("user-management.tree.all"),key:0,icon:(0,tl.jsx)(rR.J,{value:"folder"}),"data-testid":(0,dM.tx)(0,"folder"),children:[],actions:[{key:"add-folder",icon:"folder-plus"},{key:"add-user",icon:"add-user"}]},[l,s]=td().useState([o]),d=(e,t)=>{c(e,!1),s(i=>{let n=k8(i,e);if(void 0!==n){n.children=n.children??[],0===t.length?(n.isLeaf=!0,a(r.filter(t=>t!==e))):n.isLeaf=!1;let i=t.map(e=>({title:e.name,key:e.id,selectable:"user"===e.type,allowDrop:"user"!==e.type,allowDrag:"user"===e.type,icon:"user"===e.type?(0,tl.jsx)(rR.J,{value:"user"}):(0,tl.jsx)(rR.J,{value:"folder"}),"data-testid":(0,dM.tx)(e.id,e.type),actions:"user"===e.type?[{key:"clone-user",icon:"copy"},{key:"remove-user",icon:"trash"}]:[{key:"add-folder",icon:"folder-plus"},{key:"add-user",icon:"add-user"},{key:"remove-folder",icon:"trash"}],children:[],isLeaf:!1===e.children})),o=new Set(i.map(e=>e.key));n.children=n.children.filter(e=>o.has(e.key));let l=new Set(n.children.map(e=>e.key));n.children=[...n.children,...i.filter(e=>!l.has(e.key))]}return[...i]})},f=async e=>{await n({parentId:Number(e.key)}).then(t=>{d(e.key,t.items)})},c=(e,t)=>{let i=k8(l,e);void 0!==i&&(i.switcherIcon=t?(0,tl.jsx)(aI.y,{type:"classic"}):void 0),s([...l])},u=async e=>{void 0===e&&(e=0);let{items:t}=await n({parentId:e});d(e,t)},m={id:"user-tree",minSize:170,children:[(0,tl.jsx)(k5,{expandedKeys:r,onLoadTreeData:f,onReloadTree:async e=>{for(let t of e)c(t,!0),await u(t)},onSetExpandedKeys:e=>{a(e)},onUpdateTreeData:d,treeData:l},"user-tree")]},p={id:"user-detail",minSize:600,children:[(0,tl.jsx)(TM,{onCloneUser:async(e,t)=>{c(t,!0),await u(t)},onRemoveItem:async(e,t)=>{c(t,!0),await u(t)}},"user-detail")]};return(0,tl.jsx)(xQ,{leftItem:m,rightItem:p})},TL=e=>{let{loading:t=!0,...i}=e,{t:n}=(0,t7.useTranslation)(),{openRole:r,searchRoleByText:a}=(0,Tl.d)(),[o,l]=(0,ts.useState)([]),[s,d]=(0,ts.useState)(""),{Text:f}=tN.Typography,{styles:c}=(0,k6.y)();return(0,tl.jsx)(tN.AutoComplete,{className:"tree--search",onSearch:e=>{d(e),a(s).then(e=>{l(e.items.map(e=>({value:e.id.toString(),label:(0,tl.jsxs)(tl.Fragment,{children:[(0,tl.jsx)("div",{children:e.name}),(0,tl.jsxs)(f,{strong:!0,children:[n("roles.search.id"),": "]})," ",e.id]})})))}).catch(e=>{(0,is.ZP)(new is.aE("An error occured while searching for a role"))})},onSelect:(e,t)=>{r(Number(e)),d("")},options:o,value:s,children:(0,tl.jsx)(tN.Input.Search,{allowClear:{clearIcon:(0,tl.jsx)(rR.J,{className:c.closeIcon,value:"close"})},className:c.searchWithoutAddon,placeholder:n("roles.search"),prefix:(0,tl.jsx)(rR.J,{className:c.searchIcon,options:{width:12,height:12},value:"search"})})})},TP=e=>{let{expandedKeys:t,treeData:i,onLoadTreeData:n,onReloadTree:r,onSetExpandedKeys:a,onUpdateTreeData:o,...l}=e,{t:s}=(0,t7.useTranslation)(),{openRole:d,addNewRole:f,addNewFolder:c,removeRole:u,cloneRole:m,removeFolder:p,moveRoleById:g}=(0,Tl.d)(),{styles:h}=k2(),b=[h.treeContainer],y=(0,an.U8)(),v=e=>{y.input({title:s("roles.add-role"),label:s("roles.add-role.label"),onOk:async t=>{await f({parentId:e,name:t}),r([e])}})},x=e=>{y.input({title:s("roles.add-folder"),label:s("roles.add-folder.label"),onOk:async t=>{await c({parentId:e,name:t}),r([e])}})};return(0,tl.jsx)(aF.D,{renderToolbar:(0,tl.jsx)(k1,{actions:[{key:"add-role",label:s("tree.actions.role"),icon:(0,tl.jsx)(rR.J,{value:"shield-plus"}),onClick:()=>{v(0)}},{key:"add-folder",label:s("tree.actions.folder"),icon:(0,tl.jsx)(rR.J,{value:"folder-plus"}),onClick:()=>{x(0)}}],onReload:()=>{r([0])}}),children:(0,tl.jsxs)(aB.V,{className:b.join(", "),children:[(0,tl.jsx)(TL,{}),(0,tl.jsx)(wm._,{defaultExpandedKeys:t,draggable:!0,expandedKeys:t,onActionsClick:(e,t)=>{switch("string"==typeof e&&(e=parseInt(e)),t){case"add-folder":x(e);break;case"add-role":v(e);break;case"clone-role":y.input({title:s("roles.clone-role"),label:s("roles.clone-role.text"),onOk:async t=>{var n;let a=null==(n=k7(i,e))?void 0:n.key;void 0!==await m({id:e,name:t})&&r([a])}});break;case"remove-role":y.confirm({title:s("roles.remove-role"),content:s("roles.remove-role.text",{name:((e,t)=>{let i=k8(e,t);return(null==i?void 0:i.title)??""})(i,e)}),okText:s("button.confirm"),cancelText:s("button.cancel"),onOk:async()=>{var t;await u({id:Number(e)}),r([null==(t=k7(i,e))?void 0:t.key])}});break;case"remove-folder":y.confirm({title:s("roles.remove-folder"),content:s("roles.remove-folder.text"),okText:s("button.confirm"),cancelText:s("button.cancel"),onOk:async()=>{var t;await p({id:Number(e)}),r([null==(t=k7(i,e))?void 0:t.key])}})}},onDragAndDrop:async e=>{if(void 0!==await g({id:Number(e.dragNode.key),parentId:Number(e.node.key)})){var t;r([null==(t=k7(i,e.dragNode.key))?void 0:t.key,e.node.key])}},onExpand:e=>{a(e)},onLoadData:n,onSelected:e=>{var t;(null==(t=k8(i,e))?void 0:t.selectable)===!0&&d(Number(e))},treeData:i})]})})},TN=(0,ts.createContext)({id:-1}),TA=e=>{let{id:t,children:i}=e;return(0,ts.useMemo)(()=>(0,tl.jsx)(TN.Provider,{value:{id:t},children:i}),[t])},TR=()=>{let{id:e}=(0,ts.useContext)(TN);return{id:e}},TO=()=>{let{t:e}=(0,t7.useTranslation)(),{id:t}=TR(),[i,n]=(0,ts.useState)([]),{getPerspectiveConfigCollection:r}=(0,dw.o)(),a=(0,ts.useCallback)(()=>{r().then(e=>{(null==e?void 0:e.items)!==void 0&&n(e.items.map(e=>({value:e.id,label:e.name})))}).catch(e=>{console.error("Error fetching perspective config collection:",e)})},[r]);(0,ts.useEffect)(()=>{0===i.length&&a()},[t]);let o=[{key:"1",title:(0,tl.jsx)(tl.Fragment,{children:e("roles.general")}),info:"ID: "+t,children:(0,tl.jsx)(tN.Form.Item,{label:e("user-management.perspectives"),name:"perspectives",children:(0,tl.jsx)(tC.P,{mode:"multiple",options:i,placeholder:e("user-management.perspectives")})})}];return(0,tl.jsx)(k9.U,{activeKey:"1",bordered:!0,items:o,size:"small"})};var TB=i(81241);let TF=e=>{let{...t}=e,{validLanguages:i}=(0,p5.r)(),[n]=tc.l.useForm(),{id:r}=TR(),{role:a,isLoading:o,changeRoleInState:l}=(0,TB.p)(r),{getAvailablePermissions:s}=(0,k0.w)(),d=(0,Ta.b)(s());(0,ts.useEffect)(()=>{o||n.setFieldsValue({name:null==a?void 0:a.name,classes:(null==a?void 0:a.classes)??[],docTypes:null==a?void 0:a.docTypes,perspectives:(null==a?void 0:a.perspectives)??[],permissionsDefault:Array.isArray(null==a?void 0:a.permissions)?a.permissions.filter(e=>d.default.some(t=>t.key===e)):[],permissionsBundles:Array.isArray(null==a?void 0:a.permissions)?a.permissions.filter(e=>d.bundles.some(t=>t.key===e)):[]})},[a,o]);let f=(0,ts.useCallback)((0,eY.debounce)((e,t)=>{let i={...t};(void 0!==e.permissionsDefault||void 0!==e.permissionsBundles)&&(i.permissions=[...e.permissionsDefault??t.permissionsDefault??[],...e.permissionsBundles??t.permissionsBundles??[]]),l(i)},300),[l]);return o?(0,tl.jsx)(aB.V,{loading:!0}):(0,tl.jsx)(tc.l,{form:n,layout:"vertical",onValuesChange:f,children:(0,tl.jsxs)(tN.Row,{gutter:[10,10],children:[(0,tl.jsx)(tN.Col,{span:16,children:(0,tl.jsx)(TO,{})}),(0,tl.jsx)(tN.Col,{span:16,children:(0,tl.jsx)(Td,{permissions:d})}),(0,tl.jsx)(tN.Col,{span:16,children:(0,tl.jsx)(Tc,{})}),(0,tl.jsx)(tN.Col,{span:16,children:(0,tl.jsx)(Tp,{data:i,editData:null==a?void 0:a.websiteTranslationLanguagesEdit,onChange:e=>{l({websiteTranslationLanguagesEdit:e.filter(e=>e.edit).map(e=>e.abbreviation),websiteTranslationLanguagesView:e.filter(e=>e.view).map(e=>e.abbreviation)})},viewData:null==a?void 0:a.websiteTranslationLanguagesView})})]})})},T_=e=>{let{...t}=e,{t:i}=(0,t7.useTranslation)(),{id:n}=TR(),{role:r,isLoading:a,changeRoleInState:o}=(0,TB.p)(n),[l,s]=td().useState((null==r?void 0:r.assetWorkspaces)??[]),[d,f]=td().useState((null==r?void 0:r.documentWorkspaces)??[]),[c,u]=td().useState((null==r?void 0:r.dataObjectWorkspaces)??[]),{showModal:m,closeModal:p,renderModal:g}=(0,hh.dd)({type:"error"});if(void 0===r)return(0,tl.jsx)(tl.Fragment,{});let h=(e,t)=>{let i={cid:new Date().getTime(),cpath:"",list:!1,view:!1,publish:!1,delete:!1,rename:!1,create:!1,settings:!1,versions:!1,properties:!1};switch(t){case"document":f([...e,i]);break;case"asset":s([...e,i]);break;case"object":u([...e,i])}},b=[{key:"1",title:(0,tl.jsx)(tl.Fragment,{children:i("user-management.workspaces.documents")}),info:(0,tl.jsx)(dx.W,{icon:{value:"add-find"},onClick:()=>{h(r.documentWorkspaces,"document")},children:i("user-management.workspaces.add")}),children:(0,tl.jsx)(Th,{data:d,isLoading:a,onUpdateData:e=>{o({documentWorkspaces:e})},showDuplicatePropertyModal:()=>{m()},type:"document"})}],y=[{key:"1",title:(0,tl.jsx)(tl.Fragment,{children:i("user-management.workspaces.assets")}),info:(0,tl.jsx)(dx.W,{icon:{value:"add-find"},onClick:()=>{h(r.assetWorkspaces,"asset")},children:i("user-management.workspaces.add")}),children:(0,tl.jsx)(Th,{data:l,isLoading:a,onUpdateData:e=>{o({assetWorkspaces:e})},showDuplicatePropertyModal:()=>{m()},type:"asset"})}],v=[{key:"1",title:(0,tl.jsx)(tl.Fragment,{children:i("user-management.workspaces.objects")}),info:(0,tl.jsx)(dx.W,{icon:{value:"add-find"},onClick:()=>{h(r.dataObjectWorkspaces,"object")},children:i("user-management.workspaces.add")}),children:(0,tl.jsx)(Th,{data:c,isLoading:a,onUpdateData:e=>{o({dataObjectWorkspaces:e})},showDuplicatePropertyModal:()=>{m()},type:"object"})}];return(0,tl.jsxs)(tN.Flex,{gap:"middle",vertical:!0,children:[(0,tl.jsx)(k9.U,{activeKey:"1",bordered:!0,collapsible:"icon",items:b,size:"small",table:!0}),(0,tl.jsx)(k9.U,{activeKey:"1",bordered:!0,collapsible:"icon",items:y,size:"small",table:!0}),(0,tl.jsx)(k9.U,{activeKey:"1",bordered:!0,collapsible:"icon",items:v,size:"small",table:!0}),(0,tl.jsx)(g,{footer:(0,tl.jsx)(p1.m,{children:(0,tl.jsx)(ai.z,{onClick:p,type:"primary",children:i("button.ok")})}),title:i("properties.property-already-exist.title"),children:i("properties.property-already-exist.error")})]})},Tz=e=>{let{id:t}=e,{t:i}=(0,t7.useTranslation)(),n=(0,h5.Q)(),{setContext:r,removeContext:a}=(0,TC.q)(),{role:o,isLoading:l,isError:s,removeRoleFromState:d}=(0,TB.p)(t);if((0,ts.useEffect)(()=>()=>{a(),d()},[]),(0,ts.useEffect)(()=>(n&&r({id:t}),()=>{n||a()}),[n]),s)return(0,tl.jsx)("div",{children:"Error"});if(l)return(0,tl.jsx)(aB.V,{loading:!0});if(void 0===o)return(0,tl.jsx)(tl.Fragment,{});let f=[{key:"settings",label:i("roles.settings.title"),children:(0,tl.jsx)(TF,{})},{key:"workspaces",label:i("roles.workspaces.title"),children:(0,tl.jsx)(T_,{})}];return(0,tl.jsx)(TA,{id:t,children:(0,tl.jsx)(ay.m,{defaultActiveKey:"1",destroyInactiveTabPane:!0,items:f})})};var TV=i(66904);let T$=e=>{let{id:t,onCloneRole:i,onRemoveRole:n}=e,{t:r}=(0,t7.useTranslation)(),{role:a,isLoading:o,reloadRole:l}=(0,TB.p)(t),{updateRoleById:s}=(0,Tl.d)(),d=(null==a?void 0:a.modified)===!0,[f,c]=(0,ts.useState)(!1),u=[{key:"1",label:r("tree.actions.clone-role"),icon:(0,tl.jsx)(rR.J,{value:"copy"}),onClick:i},{key:"2",label:r("tree.actions.remove-role"),icon:(0,tl.jsx)(rR.J,{value:"trash"}),onClick:n}];return(0,tl.jsxs)(aO.o,{children:[(0,tl.jsxs)(rZ.k,{children:[(0,tl.jsx)(tN.Popconfirm,{onCancel:()=>{c(!1)},onConfirm:()=>{c(!1),l()},onOpenChange:e=>{if(!e)return void c(!1);d?c(!0):l()},open:f,title:r("toolbar.reload.confirmation"),children:(0,tl.jsx)(aM.h,{icon:{value:"refresh"},children:r("toolbar.reload")})}),(0,tl.jsx)(pJ.L,{menu:{items:u},trigger:["click"],children:(0,tl.jsx)(pK.P,{children:r("toolbar.more")})})]}),(0,tl.jsx)(ai.z,{disabled:!d||o,loading:o,onClick:()=>{s({id:t,item:a}).catch(e=>{console.error(e)})},type:"primary",children:r("toolbar.save-and-publish")})]})},TW=(0,ia.createStyles)(e=>{let{token:t,css:i}=e;return{detailTabs:i` + `}},{hashPriority:"low"});var TI=i(80987);let TL=e=>{let{onCloneUser:t,onRemoveItem:i,...n}=e,{t:r}=(0,t7.useTranslation)(),{styles:a}=TM(),l=["detail-tabs",a.detailTabs],o=(0,an.U8)(),{user:s}=(0,TI.O)(),{openUser:d,closeUser:f,removeUser:c,cloneUser:u,getAllIds:m,activeId:p}=(0,k0.w)(),{user:g}=(0,Te.u)(p),[h,b]=(0,ts.useState)(null),y=()=>{f(p),d(m[m.length-2])};return((0,ts.useEffect)(()=>{b(null)},[s]),void 0===p)?(0,to.jsx)(aB.V,{none:!0}):(0,to.jsx)(aF.D,{renderToolbar:(0,to.jsx)(TE,{id:p,onCloneUser:()=>{o.input({title:r("user-management.clone-user"),label:r("user-management.clone-user.label"),onOk:async e=>{t(await u({id:p,name:e}),null==g?void 0:g.parentId)}})},onRemoveUser:()=>{o.confirm({title:r("user-management.remove-user"),content:r("user-management.remove-user.text"),onOk:async()=>{y(),await c({id:p}),i(p,null==g?void 0:g.parentId)}})}}),children:(0,to.jsxs)("div",{className:l.join(" "),children:[(0,to.jsx)(ay.m,{activeKey:p.toString(),items:m.map(e=>{var t,i;return{key:e.toString(),label:(0,to.jsxs)(tN.Popconfirm,{onCancel:()=>{b(null)},onConfirm:y,open:h===e,title:r("widget-manager.tab-title.close-confirmation"),children:[null==(t=(0,TD.Ls)(hd.h.getState(),e))?void 0:t.name," ",(null==(i=(0,TD.Ls)(hd.h.getState(),e))?void 0:i.modified)?"*":""]})}}),onChange:e=>{d(Number(e))},onClose:e=>{var t,i;return(null==(t=(0,TD.Ls)(hd.h.getState(),parseInt(e)))?void 0:t.modified)&&null===h?void((null==s?void 0:s.allowDirtyClose)?y():b(parseInt(e))):(null==(i=(0,TD.Ls)(hd.h.getState(),parseInt(e)))?void 0:i.modified)?void(null!==h&&b(null)):void y()}}),(0,to.jsx)(aB.V,{className:"detail-tabs__content","data-testid":(0,dM.Xv)(p,{prefix:"user-tab"}),children:(0,to.jsx)(TS,{id:p})})]})})},TP=e=>{let{...t}=e,{t:i}=(0,t7.useTranslation)(),{getUserTree:n}=(0,k0.w)(),[r,a]=td().useState([0]),l={title:i("user-management.tree.all"),key:0,icon:(0,to.jsx)(rR.J,{value:"folder"}),"data-testid":(0,dM.tx)(0,"folder"),children:[],actions:[{key:"add-folder",icon:"folder-plus"},{key:"add-user",icon:"add-user"}]},[o,s]=td().useState([l]),d=(e,t)=>{c(e,!1),s(i=>{let n=k8(i,e);if(void 0!==n){n.children=n.children??[],0===t.length?(n.isLeaf=!0,a(r.filter(t=>t!==e))):n.isLeaf=!1;let i=t.map(e=>({title:e.name,key:e.id,selectable:"user"===e.type,allowDrop:"user"!==e.type,allowDrag:"user"===e.type,icon:"user"===e.type?(0,to.jsx)(rR.J,{value:"user"}):(0,to.jsx)(rR.J,{value:"folder"}),"data-testid":(0,dM.tx)(e.id,e.type),actions:"user"===e.type?[{key:"clone-user",icon:"copy"},{key:"remove-user",icon:"trash"}]:[{key:"add-folder",icon:"folder-plus"},{key:"add-user",icon:"add-user"},{key:"remove-folder",icon:"trash"}],children:[],isLeaf:!1===e.children})),l=new Set(i.map(e=>e.key));n.children=n.children.filter(e=>l.has(e.key));let o=new Set(n.children.map(e=>e.key));n.children=[...n.children,...i.filter(e=>!o.has(e.key))]}return[...i]})},f=async e=>{await n({parentId:Number(e.key)}).then(t=>{d(e.key,t.items)})},c=(e,t)=>{let i=k8(o,e);void 0!==i&&(i.switcherIcon=t?(0,to.jsx)(aI.y,{type:"classic"}):void 0),s([...o])},u=async e=>{void 0===e&&(e=0);let{items:t}=await n({parentId:e});d(e,t)},m={id:"user-tree",minSize:170,children:[(0,to.jsx)(k5,{expandedKeys:r,onLoadTreeData:f,onReloadTree:async e=>{for(let t of e)c(t,!0),await u(t)},onSetExpandedKeys:e=>{a(e)},onUpdateTreeData:d,treeData:o},"user-tree")]},p={id:"user-detail",minSize:600,children:[(0,to.jsx)(TL,{onCloneUser:async(e,t)=>{c(t,!0),await u(t)},onRemoveItem:async(e,t)=>{c(t,!0),await u(t)}},"user-detail")]};return(0,to.jsx)(xQ,{leftItem:m,rightItem:p})},TN=e=>{let{loading:t=!0,...i}=e,{t:n}=(0,t7.useTranslation)(),{openRole:r,searchRoleByText:a}=(0,To.d)(),[l,o]=(0,ts.useState)([]),[s,d]=(0,ts.useState)(""),{Text:f}=tN.Typography,{styles:c}=(0,k6.y)();return(0,to.jsx)(tN.AutoComplete,{className:"tree--search",onSearch:e=>{d(e),a(s).then(e=>{o(e.items.map(e=>({value:e.id.toString(),label:(0,to.jsxs)(to.Fragment,{children:[(0,to.jsx)("div",{children:e.name}),(0,to.jsxs)(f,{strong:!0,children:[n("roles.search.id"),": "]})," ",e.id]})})))}).catch(e=>{(0,is.ZP)(new is.aE("An error occured while searching for a role"))})},onSelect:(e,t)=>{r(Number(e)),d("")},options:l,value:s,children:(0,to.jsx)(tN.Input.Search,{allowClear:{clearIcon:(0,to.jsx)(rR.J,{className:c.closeIcon,value:"close"})},className:c.searchWithoutAddon,placeholder:n("roles.search"),prefix:(0,to.jsx)(rR.J,{className:c.searchIcon,options:{width:12,height:12},value:"search"})})})},TA=e=>{let{expandedKeys:t,treeData:i,onLoadTreeData:n,onReloadTree:r,onSetExpandedKeys:a,onUpdateTreeData:l,...o}=e,{t:s}=(0,t7.useTranslation)(),{openRole:d,addNewRole:f,addNewFolder:c,removeRole:u,cloneRole:m,removeFolder:p,moveRoleById:g}=(0,To.d)(),{styles:h}=k2(),b=[h.treeContainer],y=(0,an.U8)(),v=e=>{y.input({title:s("roles.add-role"),label:s("roles.add-role.label"),onOk:async t=>{await f({parentId:e,name:t}),r([e])}})},x=e=>{y.input({title:s("roles.add-folder"),label:s("roles.add-folder.label"),onOk:async t=>{await c({parentId:e,name:t}),r([e])}})};return(0,to.jsx)(aF.D,{renderToolbar:(0,to.jsx)(k1,{actions:[{key:"add-role",label:s("tree.actions.role"),icon:(0,to.jsx)(rR.J,{value:"shield-plus"}),onClick:()=>{v(0)}},{key:"add-folder",label:s("tree.actions.folder"),icon:(0,to.jsx)(rR.J,{value:"folder-plus"}),onClick:()=>{x(0)}}],onReload:()=>{r([0])}}),children:(0,to.jsxs)(aB.V,{className:b.join(", "),children:[(0,to.jsx)(TN,{}),(0,to.jsx)(wm._,{defaultExpandedKeys:t,draggable:!0,expandedKeys:t,onActionsClick:(e,t)=>{switch("string"==typeof e&&(e=parseInt(e)),t){case"add-folder":x(e);break;case"add-role":v(e);break;case"clone-role":y.input({title:s("roles.clone-role"),label:s("roles.clone-role.text"),onOk:async t=>{var n;let a=null==(n=k7(i,e))?void 0:n.key;void 0!==await m({id:e,name:t})&&r([a])}});break;case"remove-role":y.confirm({title:s("roles.remove-role"),content:s("roles.remove-role.text",{name:((e,t)=>{let i=k8(e,t);return(null==i?void 0:i.title)??""})(i,e)}),okText:s("button.confirm"),cancelText:s("button.cancel"),onOk:async()=>{var t;await u({id:Number(e)}),r([null==(t=k7(i,e))?void 0:t.key])}});break;case"remove-folder":y.confirm({title:s("roles.remove-folder"),content:s("roles.remove-folder.text"),okText:s("button.confirm"),cancelText:s("button.cancel"),onOk:async()=>{var t;await p({id:Number(e)}),r([null==(t=k7(i,e))?void 0:t.key])}})}},onDragAndDrop:async e=>{if(void 0!==await g({id:Number(e.dragNode.key),parentId:Number(e.node.key)})){var t;r([null==(t=k7(i,e.dragNode.key))?void 0:t.key,e.node.key])}},onExpand:e=>{a(e)},onLoadData:n,onSelected:e=>{var t;(null==(t=k8(i,e))?void 0:t.selectable)===!0&&d(Number(e))},treeData:i})]})})},TR=(0,ts.createContext)({id:-1}),TO=e=>{let{id:t,children:i}=e;return(0,ts.useMemo)(()=>(0,to.jsx)(TR.Provider,{value:{id:t},children:i}),[t])},TB=()=>{let{id:e}=(0,ts.useContext)(TR);return{id:e}},TF=()=>{let{t:e}=(0,t7.useTranslation)(),{id:t}=TB(),[i,n]=(0,ts.useState)([]),{getPerspectiveConfigCollection:r}=(0,dw.o)(),a=(0,ts.useCallback)(()=>{r().then(e=>{(null==e?void 0:e.items)!==void 0&&n(e.items.map(e=>({value:e.id,label:e.name})))}).catch(e=>{console.error("Error fetching perspective config collection:",e)})},[r]);(0,ts.useEffect)(()=>{0===i.length&&a()},[t]);let l=[{key:"1",title:(0,to.jsx)(to.Fragment,{children:e("roles.general")}),info:"ID: "+t,children:(0,to.jsx)(tN.Form.Item,{label:e("user-management.perspectives"),name:"perspectives",children:(0,to.jsx)(tC.P,{mode:"multiple",options:i,placeholder:e("user-management.perspectives")})})}];return(0,to.jsx)(k9.U,{activeKey:"1",bordered:!0,items:l,size:"small"})};var T_=i(81241);let Tz=e=>{let{...t}=e,{validLanguages:i}=(0,p5.r)(),[n]=tc.l.useForm(),{id:r}=TB(),{role:a,isLoading:l,changeRoleInState:o}=(0,T_.p)(r),{getAvailablePermissions:s}=(0,k0.w)(),d=(0,Ta.b)(s());(0,ts.useEffect)(()=>{l||n.setFieldsValue({name:null==a?void 0:a.name,classes:(null==a?void 0:a.classes)??[],docTypes:null==a?void 0:a.docTypes,perspectives:(null==a?void 0:a.perspectives)??[],permissionsDefault:Array.isArray(null==a?void 0:a.permissions)?a.permissions.filter(e=>d.default.some(t=>t.key===e)):[],permissionsBundles:Array.isArray(null==a?void 0:a.permissions)?a.permissions.filter(e=>d.bundles.some(t=>t.key===e)):[]})},[a,l]);let f=(0,ts.useCallback)((0,eY.debounce)((e,t)=>{let i={...t};(void 0!==e.permissionsDefault||void 0!==e.permissionsBundles)&&(i.permissions=[...e.permissionsDefault??t.permissionsDefault??[],...e.permissionsBundles??t.permissionsBundles??[]]),o(i)},300),[o]);return l?(0,to.jsx)(aB.V,{loading:!0}):(0,to.jsx)(tc.l,{form:n,layout:"vertical",onValuesChange:f,children:(0,to.jsxs)(tN.Row,{gutter:[10,10],children:[(0,to.jsx)(tN.Col,{span:16,children:(0,to.jsx)(TF,{})}),(0,to.jsx)(tN.Col,{span:16,children:(0,to.jsx)(Td,{permissions:d})}),(0,to.jsx)(tN.Col,{span:16,children:(0,to.jsx)(Tc,{})}),(0,to.jsx)(tN.Col,{span:16,children:(0,to.jsx)(Tp,{data:i,editData:null==a?void 0:a.websiteTranslationLanguagesEdit,onChange:e=>{o({websiteTranslationLanguagesEdit:e.filter(e=>e.edit).map(e=>e.abbreviation),websiteTranslationLanguagesView:e.filter(e=>e.view).map(e=>e.abbreviation)})},viewData:null==a?void 0:a.websiteTranslationLanguagesView})})]})})},TV=e=>{let{...t}=e,{t:i}=(0,t7.useTranslation)(),{id:n}=TB(),{role:r,isLoading:a,changeRoleInState:l}=(0,T_.p)(n),[o,s]=td().useState((null==r?void 0:r.assetWorkspaces)??[]),[d,f]=td().useState((null==r?void 0:r.documentWorkspaces)??[]),[c,u]=td().useState((null==r?void 0:r.dataObjectWorkspaces)??[]),{showModal:m,closeModal:p,renderModal:g}=(0,hh.dd)({type:"error"});if(void 0===r)return(0,to.jsx)(to.Fragment,{});let h=(e,t)=>{let i={cid:new Date().getTime(),cpath:"",list:!1,view:!1,publish:!1,delete:!1,rename:!1,create:!1,settings:!1,versions:!1,properties:!1};switch(t){case"document":f([...e,i]);break;case"asset":s([...e,i]);break;case"object":u([...e,i])}},b=[{key:"1",title:(0,to.jsx)(to.Fragment,{children:i("user-management.workspaces.documents")}),info:(0,to.jsx)(dx.W,{icon:{value:"add-find"},onClick:()=>{h(r.documentWorkspaces,"document")},children:i("user-management.workspaces.add")}),children:(0,to.jsx)(Th,{data:d,isLoading:a,onUpdateData:e=>{l({documentWorkspaces:e})},showDuplicatePropertyModal:()=>{m()},type:"document"})}],y=[{key:"1",title:(0,to.jsx)(to.Fragment,{children:i("user-management.workspaces.assets")}),info:(0,to.jsx)(dx.W,{icon:{value:"add-find"},onClick:()=>{h(r.assetWorkspaces,"asset")},children:i("user-management.workspaces.add")}),children:(0,to.jsx)(Th,{data:o,isLoading:a,onUpdateData:e=>{l({assetWorkspaces:e})},showDuplicatePropertyModal:()=>{m()},type:"asset"})}],v=[{key:"1",title:(0,to.jsx)(to.Fragment,{children:i("user-management.workspaces.objects")}),info:(0,to.jsx)(dx.W,{icon:{value:"add-find"},onClick:()=>{h(r.dataObjectWorkspaces,"object")},children:i("user-management.workspaces.add")}),children:(0,to.jsx)(Th,{data:c,isLoading:a,onUpdateData:e=>{l({dataObjectWorkspaces:e})},showDuplicatePropertyModal:()=>{m()},type:"object"})}];return(0,to.jsxs)(tN.Flex,{gap:"middle",vertical:!0,children:[(0,to.jsx)(k9.U,{activeKey:"1",bordered:!0,collapsible:"icon",items:b,size:"small",table:!0}),(0,to.jsx)(k9.U,{activeKey:"1",bordered:!0,collapsible:"icon",items:y,size:"small",table:!0}),(0,to.jsx)(k9.U,{activeKey:"1",bordered:!0,collapsible:"icon",items:v,size:"small",table:!0}),(0,to.jsx)(g,{footer:(0,to.jsx)(p1.m,{children:(0,to.jsx)(ai.z,{onClick:p,type:"primary",children:i("button.ok")})}),title:i("properties.property-already-exist.title"),children:i("properties.property-already-exist.error")})]})},T$=e=>{let{id:t}=e,{t:i}=(0,t7.useTranslation)(),n=(0,h5.Q)(),{setContext:r,removeContext:a}=(0,TT.q)(),{role:l,isLoading:o,isError:s,removeRoleFromState:d}=(0,T_.p)(t);if((0,ts.useEffect)(()=>()=>{a(),d()},[]),(0,ts.useEffect)(()=>(n&&r({id:t}),()=>{n||a()}),[n]),s)return(0,to.jsx)("div",{children:"Error"});if(o)return(0,to.jsx)(aB.V,{loading:!0});if(void 0===l)return(0,to.jsx)(to.Fragment,{});let f=[{key:"settings",label:i("roles.settings.title"),children:(0,to.jsx)(Tz,{})},{key:"workspaces",label:i("roles.workspaces.title"),children:(0,to.jsx)(TV,{})}];return(0,to.jsx)(TO,{id:t,children:(0,to.jsx)(ay.m,{defaultActiveKey:"1",destroyInactiveTabPane:!0,items:f})})};var TW=i(66904);let TH=e=>{let{id:t,onCloneRole:i,onRemoveRole:n}=e,{t:r}=(0,t7.useTranslation)(),{role:a,isLoading:l,reloadRole:o}=(0,T_.p)(t),{updateRoleById:s}=(0,To.d)(),d=(null==a?void 0:a.modified)===!0,[f,c]=(0,ts.useState)(!1),u=[{key:"1",label:r("tree.actions.clone-role"),icon:(0,to.jsx)(rR.J,{value:"copy"}),onClick:i},{key:"2",label:r("tree.actions.remove-role"),icon:(0,to.jsx)(rR.J,{value:"trash"}),onClick:n}];return(0,to.jsxs)(aO.o,{children:[(0,to.jsxs)(rZ.k,{children:[(0,to.jsx)(tN.Popconfirm,{onCancel:()=>{c(!1)},onConfirm:()=>{c(!1),o()},onOpenChange:e=>{if(!e)return void c(!1);d?c(!0):o()},open:f,title:r("toolbar.reload.confirmation"),children:(0,to.jsx)(aM.h,{icon:{value:"refresh"},children:r("toolbar.reload")})}),(0,to.jsx)(pJ.L,{menu:{items:u},trigger:["click"],children:(0,to.jsx)(pK.P,{children:r("toolbar.more")})})]}),(0,to.jsx)(ai.z,{disabled:!d||l,loading:l,onClick:()=>{s({id:t,item:a}).catch(e=>{console.error(e)})},type:"primary",children:r("toolbar.save-and-publish")})]})},TG=(0,ia.createStyles)(e=>{let{token:t,css:i}=e;return{detailTabs:i` display: flex; flex-direction: column; overflow: hidden; @@ -1113,6 +1113,6 @@ overflow: auto; } } - `}},{hashPriority:"low"}),TH=e=>{let{onCloneRole:t,onRemoveRole:i,...n}=e,{t:r}=(0,t7.useTranslation)(),{styles:a}=TW(),o=["detail-tabs",a.detailTabs],l=(0,an.U8)(),{user:s}=(0,TE.O)(),{openRole:d,closeRole:f,removeRole:c,cloneRole:u,getAllIds:m,activeId:p}=(0,Tl.d)(),{role:g}=(0,TB.p)(p),[h,b]=(0,ts.useState)(null),y=()=>{f(p),d(m[m.length-2])};return((0,ts.useEffect)(()=>{b(null)},[g]),void 0===p)?(0,tl.jsx)(aB.V,{none:!0}):(0,tl.jsx)(aF.D,{renderToolbar:(0,tl.jsx)(T$,{id:p,onCloneRole:()=>{l.input({title:r("roles.clone-item"),label:r("roles.clone-item.label"),onOk:async e=>{t(await u({id:p,name:e}),(null==g?void 0:g.parentId)??0)}})},onRemoveRole:()=>{l.confirm({title:r("roles.remove-item"),content:r("roles.remove-item.text"),onOk:async()=>{y(),await c({id:p}),i(p,(null==g?void 0:g.parentId)??0)}})}}),children:(0,tl.jsxs)("div",{className:o.join(" "),children:[(0,tl.jsx)(ay.m,{activeKey:p.toString(),items:m.map(e=>{var t,i;return{key:e.toString(),label:(0,tl.jsxs)(tN.Popconfirm,{onCancel:()=>{b(null)},onConfirm:y,open:h===e,title:r("widget-manager.tab-title.close-confirmation"),children:[null==(t=(0,TV.VL)(hd.h.getState(),e))?void 0:t.name," ",(null==(i=(0,TV.VL)(hd.h.getState(),e))?void 0:i.modified)?"*":""]})}}),onChange:e=>{d(Number(e))},onClose:e=>{let t=(0,TV.VL)(hd.h.getState(),parseInt(e));return(null==t?void 0:t.modified)&&null===h?void((null==s?void 0:s.allowDirtyClose)?y():b(parseInt(e))):(null==t?void 0:t.modified)?void(null!==h&&b(null)):void y()}}),(0,tl.jsx)(aB.V,{className:"detail-tabs__content",children:(0,tl.jsx)(Tz,{id:p})})]})})},TG=e=>{let{...t}=e,{t:i}=(0,t7.useTranslation)(),{getRoleTree:n}=(0,Tl.d)(),[r,a]=td().useState([0]),o={title:i("roles.tree.all"),key:0,icon:(0,tl.jsx)(rR.J,{value:"folder"}),"data-testid":(0,dM.tx)(0,"folder"),children:[],actions:[{key:"add-folder",icon:"folder-plus"},{key:"add-role",icon:"shield-plus"}]},[l,s]=(0,ts.useState)([o]),d=(e,t)=>{c(e,!1),s(i=>{let n=k8(i,e);if(void 0!==n){n.children=n.children??[],0===t.length?(n.isLeaf=!0,a(r.filter(t=>t!==e))):n.isLeaf=!1;let i=t.map(e=>({title:e.name,key:e.id,selectable:"role"===e.type,allowDrop:"role"!==e.type,allowDrag:"role"===e.type,icon:"role"===e.type?(0,tl.jsx)(rR.J,{value:"shield"}):(0,tl.jsx)(rR.J,{value:"folder"}),"data-testid":(0,dM.tx)(e.id,e.type),actions:"role"===e.type?[{key:"clone-role",icon:"copy"},{key:"remove-role",icon:"trash"}]:[{key:"add-folder",icon:"folder-plus"},{key:"add-role",icon:"shield-plus"},{key:"remove-folder",icon:"trash"}],children:[],isLeaf:!1===e.children})),o=new Set(i.map(e=>e.key));n.children=n.children.filter(e=>o.has(e.key));let l=new Set(n.children.map(e=>e.key));n.children=[...n.children,...i.filter(e=>!l.has(e.key))]}return[...i]})},f=async e=>{await n({parentId:Number(e.key)}).then(t=>{d(e.key,t.items)})},c=(e,t)=>{let i=k8(l,e);void 0!==i&&(i.switcherIcon=t?(0,tl.jsx)(aI.y,{type:"classic"}):void 0),s([...l])},u=async e=>{void 0===e&&(e=0);let{items:t}=await n({parentId:e});d(e,t)},m={id:"role-tree",size:20,minSize:170,children:[(0,tl.jsx)(TP,{expandedKeys:r,onLoadTreeData:f,onReloadTree:async e=>{for(let t of e)c(t,!0),await u(t)},onSetExpandedKeys:e=>{a(e)},onUpdateTreeData:d,treeData:l},"role-tree")]},p={id:"role-detail",size:80,minSize:600,children:[(0,tl.jsx)(TH,{onCloneRole:async(e,t)=>{c(t,!0),await u(t)},onRemoveRole:async(e,t)=>{c(t,!0),await u(t)}},"role-detail")]};return(0,tl.jsx)(xQ,{leftItem:m,rightItem:p})},TU={name:"user-profile",component:i(95735).U,titleComponent:e=>{let{node:t}=e,i=(0,dj.a)();return(0,tl.jsx)(hl.X,{modified:(null==i?void 0:i.modified)??!1,node:t})}};eR._.registerModule({onInit:()=>{let e=eB.nC.get(eO.j.mainNavRegistry);e.registerMainNavItem({path:"System/User & Roles",label:"navigation.user-and-roles",order:100,dividerBottom:!0,permission:jg.P.Users,perspectivePermissionHide:jp.UsersHidden}),e.registerMainNavItem({path:"System/User & Roles/Users",label:"navigation.users",order:100,className:"item-style-modifier",permission:jg.P.Users,perspectivePermission:jp.Users,widgetConfig:{name:"Users",id:"user-management",component:"user-management",config:{translationKey:"widget.user-management",icon:{type:"name",value:"user"}}}}),e.registerMainNavItem({path:"System/User & Roles/Roles",label:"navigation.roles",order:200,permission:jg.P.Users,perspectivePermission:jp.Roles,widgetConfig:{name:"Roles",id:"role-management",component:"role-management",config:{translationKey:"widget.role-management",icon:{type:"name",value:"user"}}}});let t=eB.nC.get(eO.j.widgetManager);t.registerWidget({name:"user-management",component:TI}),t.registerWidget({name:"role-management",component:TG}),t.registerWidget(TU)}}),eR._.registerModule({onInit:()=>{let e=eB.nC.get(eO.j["DynamicTypes/IconSetRegistry"]);e.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/IconSet/PimcoreDefault"])),e.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/IconSet/Twemoji"]))}})},42782:function(e,t,i){i.d(t,{HZ:()=>o,Js:()=>l,Kr:()=>f,RA:()=>d,Zm:()=>u,aU:()=>s,hx:()=>c,um:()=>a});var n=i(18576),r=i(96068);let{useElementDeleteMutation:a,useElementGetDeleteInfoQuery:o,useElementFolderCreateMutation:l,useElementGetContextPermissionsQuery:s,useElementGetIdByPathQuery:d,useElementGetSubtypeQuery:f,useElementResolveBySearchTermQuery:c,useLazyElementResolveBySearchTermQuery:u}=n.hi.enhanceEndpoints({addTagTypes:[r.fV.DATA_OBJECT_DETAIL,r.fV.ASSET_DETAIL],endpoints:{elementDelete:{invalidatesTags:(e,t,i)=>r.xc.ELEMENT_DETAIL(i.elementType,i.id)}}})},67712:function(e,t,i){i.d(t,{Th:()=>h,ae:()=>f,hi:()=>r});var n=i(96068);let r=i(60387).hi.enhanceEndpoints({addTagTypes:[n.fV.EMAIL_BLOCKLIST,n.fV.EMAIL_BLOCKLIST_DETAIL,n.fV.EMAIL_LOG,n.fV.EMAIL_LOG_DETAIL],endpoints:{emailBlocklistGetCollection:{providesTags:(e,t,i)=>{var r;let a=[];return null==e||null==(r=e.items)||r.forEach(e=>{a.push(...n.Kx.EMAIL_BLOCKLIST_DETAIL(e.email))}),[...a,...n.Kx.EMAIL_BLOCKLIST()]}},emailBlocklistAdd:{invalidatesTags:(e,t,i)=>n.xc.EMAIL_BLOCKLIST()},emailBlocklistDelete:{invalidatesTags:(e,t,i)=>n.xc.EMAIL_BLOCKLIST_DETAIL(i.email)},emailLogGetCollection:{providesTags:(e,t,i)=>{var r;let a=[];return null==e||null==(r=e.items)||r.forEach(e=>{a.push(...n.Kx.EMAIL_LOG_DETAIL(e.id))}),[...a,...n.Kx.EMAIL_LOG()]}},emailLogDelete:{invalidatesTags:()=>[]}}}),{useEmailBlocklistGetCollectionQuery:a,useEmailBlocklistAddMutation:o,useEmailBlocklistDeleteMutation:l,useEmailLogGetCollectionQuery:s,useEmailLogGetByIdQuery:d,useEmailLogDeleteMutation:f,useEmailLogGetHtmlQuery:c,useEmailLogGetParamsQuery:u,useEmailLogGetTextQuery:m,useEmailLogForwardByIdMutation:p,useEmailLogResendByIdMutation:g,useEmailSendTestMutation:h}=r},60387:function(e,t,i){i.d(t,{EV:()=>c,F:()=>a,Ik:()=>o,Uc:()=>l,_b:()=>u,dd:()=>r,hi:()=>n,ln:()=>p,xV:()=>m,yU:()=>s,yn:()=>f});let n=i(42125).api.enhanceEndpoints({addTagTypes:["E-Mails"]}).injectEndpoints({endpoints:e=>({emailBlocklistGetCollection:e.query({query:e=>({url:"/pimcore-studio/api/emails/blocklist",params:{page:e.page,pageSize:e.pageSize,email:e.email}}),providesTags:["E-Mails"]}),emailBlocklistAdd:e.mutation({query:e=>({url:"/pimcore-studio/api/emails/blocklist",method:"POST",body:e.emailAddressParameter}),invalidatesTags:["E-Mails"]}),emailBlocklistDelete:e.mutation({query:e=>({url:"/pimcore-studio/api/emails/blocklist",method:"DELETE",params:{email:e.email}}),invalidatesTags:["E-Mails"]}),emailLogGetCollection:e.query({query:e=>({url:"/pimcore-studio/api/emails",params:{page:e.page,pageSize:e.pageSize}}),providesTags:["E-Mails"]}),emailLogGetById:e.query({query:e=>({url:`/pimcore-studio/api/emails/${e.id}`}),providesTags:["E-Mails"]}),emailLogDelete:e.mutation({query:e=>({url:`/pimcore-studio/api/emails/${e.id}`,method:"DELETE"}),invalidatesTags:["E-Mails"]}),emailLogGetHtml:e.query({query:e=>({url:`/pimcore-studio/api/emails/${e.id}/html`}),providesTags:["E-Mails"]}),emailLogGetParams:e.query({query:e=>({url:`/pimcore-studio/api/emails/${e.id}/params`}),providesTags:["E-Mails"]}),emailLogGetText:e.query({query:e=>({url:`/pimcore-studio/api/emails/${e.id}/text`}),providesTags:["E-Mails"]}),emailLogForwardById:e.mutation({query:e=>({url:`/pimcore-studio/api/emails/${e.id}/forward`,method:"POST",body:e.emailAddressParameter}),invalidatesTags:["E-Mails"]}),emailLogResendById:e.mutation({query:e=>({url:`/pimcore-studio/api/emails/${e.id}/resend`,method:"POST"}),invalidatesTags:["E-Mails"]}),emailSendTest:e.mutation({query:e=>({url:"/pimcore-studio/api/emails/test",method:"POST",body:e.sendEmailParameters}),invalidatesTags:["E-Mails"]})}),overrideExisting:!1}),{useEmailBlocklistGetCollectionQuery:r,useEmailBlocklistAddMutation:a,useEmailBlocklistDeleteMutation:o,useEmailLogGetCollectionQuery:l,useEmailLogGetByIdQuery:s,useEmailLogDeleteMutation:d,useEmailLogGetHtmlQuery:f,useEmailLogGetParamsQuery:c,useEmailLogGetTextQuery:u,useEmailLogForwardByIdMutation:m,useEmailLogResendByIdMutation:p,useEmailSendTestMutation:g}=n},80090:function(e,t,i){i.d(t,{W:()=>a});var n=i(28395),r=i(60476);class a{register(e){let{name:t,component:i}=e;this.icons.set(t,i)}get(e){return this.icons.get(e)}getIcons(){return this.icons}constructor(){this.icons=new Map}}a=(0,n.gn)([(0,r.injectable)()],a)},37021:function(e,t,i){i.d(t,{CX:()=>u,LA:()=>r,OE:()=>m,Rs:()=>p,UN:()=>h,V9:()=>l,YI:()=>c,hi:()=>a,iP:()=>g,jc:()=>f,oT:()=>d,qk:()=>o,wc:()=>s});var n=i(42125);let r=["Perspectives"],a=n.api.enhanceEndpoints({addTagTypes:r}).injectEndpoints({endpoints:e=>({perspectiveCreate:e.mutation({query:e=>({url:"/pimcore-studio/api/perspectives/configuration",method:"POST",body:e.addPerspectiveConfig}),invalidatesTags:["Perspectives"]}),perspectiveGetConfigCollection:e.query({query:()=>({url:"/pimcore-studio/api/perspectives/configurations"}),providesTags:["Perspectives"]}),perspectiveGetConfigById:e.query({query:e=>({url:`/pimcore-studio/api/perspectives/configuration/${e.perspectiveId}`}),providesTags:["Perspectives"]}),perspectiveUpdateConfigById:e.mutation({query:e=>({url:`/pimcore-studio/api/perspectives/configuration/${e.perspectiveId}`,method:"PUT",body:e.savePerspectiveConfig}),invalidatesTags:["Perspectives"]}),perspectiveDelete:e.mutation({query:e=>({url:`/pimcore-studio/api/perspectives/configuration/${e.perspectiveId}`,method:"DELETE"}),invalidatesTags:["Perspectives"]}),perspectiveWidgetCreate:e.mutation({query:e=>({url:`/pimcore-studio/api/perspectives/widgets/${e.widgetType}/configuration`,method:"POST",body:e.body}),invalidatesTags:["Perspectives"]}),perspectiveWidgetGetConfigCollection:e.query({query:()=>({url:"/pimcore-studio/api/perspectives/widgets/configurations"}),providesTags:["Perspectives"]}),perspectiveWidgetGetConfigById:e.query({query:e=>({url:`/pimcore-studio/api/perspectives/widgets/${e.widgetType}/configuration/${e.widgetId}`}),providesTags:["Perspectives"]}),perspectiveWidgetUpdateConfigById:e.mutation({query:e=>({url:`/pimcore-studio/api/perspectives/widgets/${e.widgetType}/configuration/${e.widgetId}`,method:"PUT",body:e.body}),invalidatesTags:["Perspectives"]}),perspectiveWidgetDelete:e.mutation({query:e=>({url:`/pimcore-studio/api/perspectives/widgets/${e.widgetType}/configuration/${e.widgetId}`,method:"DELETE"}),invalidatesTags:["Perspectives"]}),perspectiveWidgetGetTypeCollection:e.query({query:()=>({url:"/pimcore-studio/api/perspectives/widgets/types"}),providesTags:["Perspectives"]})}),overrideExisting:!1}),{usePerspectiveCreateMutation:o,usePerspectiveGetConfigCollectionQuery:l,usePerspectiveGetConfigByIdQuery:s,usePerspectiveUpdateConfigByIdMutation:d,usePerspectiveDeleteMutation:f,usePerspectiveWidgetCreateMutation:c,usePerspectiveWidgetGetConfigCollectionQuery:u,usePerspectiveWidgetGetConfigByIdQuery:m,usePerspectiveWidgetUpdateConfigByIdMutation:p,usePerspectiveWidgetDeleteMutation:g,usePerspectiveWidgetGetTypeCollectionQuery:h}=a},56232:function(e,t,i){i.d(t,{$5:()=>m,Ah:()=>g,LA:()=>r,O0:()=>s,ON:()=>o,R9:()=>c,YR:()=>f,_2:()=>l,dF:()=>d,hi:()=>a,jT:()=>h,lY:()=>p,ms:()=>u});var n=i(42125);let r=["Bundle Custom Reports"],a=n.api.enhanceEndpoints({addTagTypes:r}).injectEndpoints({endpoints:e=>({customReportsListDrillDownOptions:e.query({query:e=>({url:"/pimcore-studio/api/bundle/custom-reports/drill-down-options",method:"POST",body:e.body}),providesTags:["Bundle Custom Reports"]}),customReportsChart:e.query({query:e=>({url:"/pimcore-studio/api/bundle/custom-reports/chart",method:"POST",body:e.body}),providesTags:["Bundle Custom Reports"]}),customReportsConfigAdd:e.mutation({query:e=>({url:"/pimcore-studio/api/bundle/custom-reports/config/add",method:"POST",body:e.bundleCustomReportAdd}),invalidatesTags:["Bundle Custom Reports"]}),customReportsConfigClone:e.mutation({query:e=>({url:`/pimcore-studio/api/bundle/custom-reports/config/clone/${e.name}`,method:"POST",body:e.bundleCustomReportClone}),invalidatesTags:["Bundle Custom Reports"]}),customReportsColumnConfigList:e.query({query:e=>({url:`/pimcore-studio/api/bundle/custom-reports/column-config/${e.name}`,method:"POST",body:e.bundleCustomReportsDataSourceConfig}),providesTags:["Bundle Custom Reports"]}),customReportsConfigUpdate:e.mutation({query:e=>({url:`/pimcore-studio/api/bundle/custom-reports/config/${e.name}`,method:"PUT",body:e.bundleCustomReportUpdate}),invalidatesTags:["Bundle Custom Reports"]}),customReportsConfigDelete:e.mutation({query:e=>({url:`/pimcore-studio/api/bundle/custom-reports/config/${e.name}`,method:"DELETE"}),invalidatesTags:["Bundle Custom Reports"]}),customReportsReport:e.query({query:e=>({url:`/pimcore-studio/api/bundle/custom-reports/report/${e.name}`}),providesTags:["Bundle Custom Reports"]}),customReportsConfigGetTree:e.query({query:e=>({url:"/pimcore-studio/api/bundle/custom-reports/tree/config",params:{page:e.page,pageSize:e.pageSize}}),providesTags:["Bundle Custom Reports"]}),customReportExportCsv:e.mutation({query:e=>({url:"/pimcore-studio/api/bundle/custom-reports/export/csv",method:"POST",body:e.body}),invalidatesTags:["Bundle Custom Reports"]}),customReportsGetTree:e.query({query:e=>({url:"/pimcore-studio/api/bundle/custom-reports/tree",params:{page:e.page,pageSize:e.pageSize}}),providesTags:["Bundle Custom Reports"]})}),overrideExisting:!1}),{useCustomReportsListDrillDownOptionsQuery:o,useCustomReportsChartQuery:l,useCustomReportsConfigAddMutation:s,useCustomReportsConfigCloneMutation:d,useCustomReportsColumnConfigListQuery:f,useCustomReportsConfigUpdateMutation:c,useCustomReportsConfigDeleteMutation:u,useCustomReportsReportQuery:m,useCustomReportsConfigGetTreeQuery:p,useCustomReportExportCsvMutation:g,useCustomReportsGetTreeQuery:h}=a},55128:function(e,t,i){i.d(t,{q:()=>a});var n=i(40483),r=i(20085);let a=()=>{let e=(0,n.useAppDispatch)();return{context:(0,n.useAppSelector)(e=>(0,r._F)(e,"user")),setContext:function(t){e((0,r._z)({type:"user",config:t}))},removeContext:function(){e((0,r.qX)("user"))}}}},94009:function(e,t,i){i.r(t),i.d(t,{addTagTypes:()=>n.LA,api:()=>n.hi,usePerspectiveCreateMutation:()=>n.qk,usePerspectiveDeleteMutation:()=>n.jc,usePerspectiveGetConfigByIdQuery:()=>n.wc,usePerspectiveGetConfigCollectionQuery:()=>n.V9,usePerspectiveUpdateConfigByIdMutation:()=>n.oT,usePerspectiveWidgetCreateMutation:()=>n.YI,usePerspectiveWidgetDeleteMutation:()=>n.iP,usePerspectiveWidgetGetConfigByIdQuery:()=>n.OE,usePerspectiveWidgetGetConfigCollectionQuery:()=>n.CX,usePerspectiveWidgetGetTypeCollectionQuery:()=>n.UN,usePerspectiveWidgetUpdateConfigByIdMutation:()=>n.Rs});var n=i(37021);void 0!==(e=i.hmd(e)).hot&&e.hot.accept()},13436:function(e,t,i){i.d(t,{R:()=>d});var n=i(85893),r=i(80380),a=i(46309),o=i(69296);i(81004);var l=i(14092),s=i(38466);let d=e=>{let{children:t,themeId:i}=e;return(0,n.jsx)(r.jm,{children:(0,n.jsx)(o.f,{id:i,children:(0,n.jsx)(l.Provider,{store:a.h,children:(0,n.jsx)(s.Be,{children:t})})})})}},3018:function(e,t,i){i.d(t,{$:()=>l,t:()=>o});var n=i(85893),r=i(81004),a=i.n(r);let o=(0,r.createContext)(void 0),l=e=>{let{children:t}=e,[i,l]=(0,r.useState)(new Map),s=(e,t)=>{l(i=>{let n=new Map(i);return n.set(e,{id:e,component:t}),n})},d=e=>{l(t=>{let i=new Map(t);return i.delete(e),i})},f=e=>i.has(e),c=(0,r.useMemo)(()=>({addModal:s,removeModal:d,hasModal:f}),[]);return(0,n.jsxs)(o.Provider,{value:c,children:[t,Array.from(i.values()).map(e=>(0,n.jsx)(a().Fragment,{children:e.component},e.id))]})}},14651:function(e,t,i){i.d(t,{$:()=>u});var n=i(85893);i(81004);var r=i(48e3),a=i(16859),o=i(66508),l=i(50532),s=i(18521),d=i(47192),f=i(65638),c=i(3018);let u=e=>{let{children:t}=e;return(0,n.jsx)(c.$,{children:(0,n.jsx)(r.k,{children:(0,n.jsx)(a.A,{children:(0,n.jsx)(o.P,{children:(0,n.jsx)(l.n,{children:(0,n.jsx)(s.k,{children:(0,n.jsx)(d.Z,{children:(0,n.jsx)(f.$,{children:t})})})})})})})})}},65638:function(e,t,i){i.d(t,{$:()=>C,p:()=>w});var n=i(85893),r=i(33311),a=i(81004),o=i(71695),l=i(26788),s=i(53478),d=i(41852),f=i(10048),c=i(77244),u=i(16042),m=i(70202),p=i(54524),g=i(28253),h=i(82596),b=i(50444),y=i(66713);let v=e=>{let{form:t,initialValues:i,onValuesChange:l}=e,{t:s}=(0,o.useTranslation)(),d=(0,b.r)(),{getDisplayName:f}=(0,y.Z)(),c=(null==d?void 0:d.validLanguages)??[];return(0,a.useEffect)(()=>{t.setFieldsValue(i)},[t,i]),(0,n.jsxs)(u.h,{formProps:{form:t,layout:"vertical",onValuesChange:l},children:[(0,n.jsx)(r.l.Item,{label:s("document.site.form.main-domain"),name:"mainDomain",children:(0,n.jsx)(m.I,{})}),(0,n.jsx)(r.l.Item,{label:s("document.site.form.additional-domains"),name:"domains",tooltip:s("document.site.form.additional-domains-tooltip"),children:(0,n.jsx)(p.K,{autoSize:{minRows:3,maxRows:8}})}),(0,n.jsx)(r.l.Item,{name:"redirectToMainDomain",valuePropName:"checked",children:(0,n.jsx)(g.r,{labelRight:s("document.site.form.redirect-to-main-domain")})}),(0,n.jsxs)(u.h.Panel,{title:s("document.site.form.error-documents"),children:[(0,n.jsx)(r.l.Item,{label:s("document.site.form.default-error-document"),name:"errorDocument",children:(0,n.jsx)(h.A,{allowToClearRelation:!0,allowedDocumentTypes:["page"],documentsAllowed:!0})}),c.length>0&&(0,n.jsx)(n.Fragment,{children:c.map(e=>(0,n.jsx)(r.l.Item,{label:s("document.site.form.error-document-language",{language:f(String(e))}),name:["errorDocuments",e],children:(0,n.jsx)(h.A,{allowToClearRelation:!0,allowedDocumentTypes:["page"],documentsAllowed:!0})},e))})]})]})};var x=i(30225);let j=e=>{let{modal:t,onClose:i,onSubmit:r,onFormChange:a}=e,{t:s}=(0,o.useTranslation)(),u=async()=>{let e=t.form.getFieldsValue();await r(e)},m=(0,n.jsxs)(l.Flex,{align:"center",gap:"small",children:[(0,n.jsx)("span",{children:t.config.title}),(0,x.H)(t.config.documentPath)&&(0,n.jsx)(f.V,{elementType:c.a.document,id:t.config.documentId,inline:!0,path:t.config.documentPath})]});return(0,n.jsx)(d.i,{okButtonProps:{loading:t.isLoading},okText:s("save"),onCancel:i,onClose:i,onOk:u,open:!0,size:"L",title:m,children:(0,n.jsx)(v,{form:t.form,initialValues:t.config.initialValues,onValuesChange:a})})},w=(0,a.createContext)(void 0),C=e=>{let{children:t}=e,{t:i}=(0,o.useTranslation)(),{modal:d}=l.App.useApp(),[f,c]=(0,a.useState)(null),[u]=r.l.useForm(),m=e=>{if(!(0,s.isNull)(f)){if(f.config.documentId===e.documentId)return void c(t=>(0,s.isNull)(t)?null:{...t,config:e});if(f.hasUnsavedChanges)return void d.confirm({title:i("unsaved-changes.title"),content:i("unsaved-changes.message"),okText:i("save-and-continue"),cancelText:i("discard-and-continue"),onOk:()=>{(async()=>{try{let t=f.form.getFieldsValue();await f.config.onSubmit(t),p(e)}catch(e){console.error("Failed to save current changes:",e)}})()},onCancel:()=>{p(e)}})}p(e)},p=e=>{u.resetFields(),u.setFieldsValue(e.initialValues),c({config:e,form:u,isLoading:!1,hasUnsavedChanges:!1})},g=()=>{(0,s.isNull)(f)||!f.hasUnsavedChanges?c(null):d.confirm({title:i("unsaved-changes.title"),content:i("unsaved-changes.close-message"),okText:i("discard-changes"),cancelText:i("cancel"),onOk:()=>{c(null)}})},h=e=>{c(t=>(0,s.isNull)(t)?null:{...t,isLoading:e})},b=async e=>{if(!(0,s.isNull)(f)){h(!0);try{await f.config.onSubmit(e),c(e=>(0,s.isNull)(e)?null:{...e,hasUnsavedChanges:!1}),c(null)}catch(e){console.error("Site modal submission failed:",e)}finally{h(!1)}}},y=(0,a.useMemo)(()=>({openModal:m,closeModal:g,isOpen:null!==f,currentDocumentId:(null==f?void 0:f.config.documentId)??null}),[f]);return(0,n.jsxs)(w.Provider,{value:y,children:[(0,s.isNull)(f)?null:(0,n.jsx)(j,{modal:f,onClose:g,onFormChange:()=>{c(e=>(0,s.isNull)(e)?null:{...e,hasUnsavedChanges:!0})},onSubmit:b}),t]})}},47192:function(e,t,i){i.d(t,{r:()=>S,Z:()=>D});var n,r=i(85893),a=i(33311),o=i(41852),l=i(81004),s=i(71695),d=i(60685),f=i(70202),c=i(2092),u=i(78777),m=i(45114),p=i(52309),g=i(37934),h=i(91936);let b=(0,i(29202).createStyles)(e=>{let{token:t,css:i}=e;return{formLabel:i` + `}},{hashPriority:"low"}),TU=e=>{let{onCloneRole:t,onRemoveRole:i,...n}=e,{t:r}=(0,t7.useTranslation)(),{styles:a}=TG(),l=["detail-tabs",a.detailTabs],o=(0,an.U8)(),{user:s}=(0,TI.O)(),{openRole:d,closeRole:f,removeRole:c,cloneRole:u,getAllIds:m,activeId:p}=(0,To.d)(),{role:g}=(0,T_.p)(p),[h,b]=(0,ts.useState)(null),y=()=>{f(p),d(m[m.length-2])};return((0,ts.useEffect)(()=>{b(null)},[g]),void 0===p)?(0,to.jsx)(aB.V,{none:!0}):(0,to.jsx)(aF.D,{renderToolbar:(0,to.jsx)(TH,{id:p,onCloneRole:()=>{o.input({title:r("roles.clone-item"),label:r("roles.clone-item.label"),onOk:async e=>{t(await u({id:p,name:e}),(null==g?void 0:g.parentId)??0)}})},onRemoveRole:()=>{o.confirm({title:r("roles.remove-item"),content:r("roles.remove-item.text"),onOk:async()=>{y(),await c({id:p}),i(p,(null==g?void 0:g.parentId)??0)}})}}),children:(0,to.jsxs)("div",{className:l.join(" "),children:[(0,to.jsx)(ay.m,{activeKey:p.toString(),items:m.map(e=>{var t,i;return{key:e.toString(),label:(0,to.jsxs)(tN.Popconfirm,{onCancel:()=>{b(null)},onConfirm:y,open:h===e,title:r("widget-manager.tab-title.close-confirmation"),children:[null==(t=(0,TW.VL)(hd.h.getState(),e))?void 0:t.name," ",(null==(i=(0,TW.VL)(hd.h.getState(),e))?void 0:i.modified)?"*":""]})}}),onChange:e=>{d(Number(e))},onClose:e=>{let t=(0,TW.VL)(hd.h.getState(),parseInt(e));return(null==t?void 0:t.modified)&&null===h?void((null==s?void 0:s.allowDirtyClose)?y():b(parseInt(e))):(null==t?void 0:t.modified)?void(null!==h&&b(null)):void y()}}),(0,to.jsx)(aB.V,{className:"detail-tabs__content",children:(0,to.jsx)(T$,{id:p})})]})})},Tq=e=>{let{...t}=e,{t:i}=(0,t7.useTranslation)(),{getRoleTree:n}=(0,To.d)(),[r,a]=td().useState([0]),l={title:i("roles.tree.all"),key:0,icon:(0,to.jsx)(rR.J,{value:"folder"}),"data-testid":(0,dM.tx)(0,"folder"),children:[],actions:[{key:"add-folder",icon:"folder-plus"},{key:"add-role",icon:"shield-plus"}]},[o,s]=(0,ts.useState)([l]),d=(e,t)=>{c(e,!1),s(i=>{let n=k8(i,e);if(void 0!==n){n.children=n.children??[],0===t.length?(n.isLeaf=!0,a(r.filter(t=>t!==e))):n.isLeaf=!1;let i=t.map(e=>({title:e.name,key:e.id,selectable:"role"===e.type,allowDrop:"role"!==e.type,allowDrag:"role"===e.type,icon:"role"===e.type?(0,to.jsx)(rR.J,{value:"shield"}):(0,to.jsx)(rR.J,{value:"folder"}),"data-testid":(0,dM.tx)(e.id,e.type),actions:"role"===e.type?[{key:"clone-role",icon:"copy"},{key:"remove-role",icon:"trash"}]:[{key:"add-folder",icon:"folder-plus"},{key:"add-role",icon:"shield-plus"},{key:"remove-folder",icon:"trash"}],children:[],isLeaf:!1===e.children})),l=new Set(i.map(e=>e.key));n.children=n.children.filter(e=>l.has(e.key));let o=new Set(n.children.map(e=>e.key));n.children=[...n.children,...i.filter(e=>!o.has(e.key))]}return[...i]})},f=async e=>{await n({parentId:Number(e.key)}).then(t=>{d(e.key,t.items)})},c=(e,t)=>{let i=k8(o,e);void 0!==i&&(i.switcherIcon=t?(0,to.jsx)(aI.y,{type:"classic"}):void 0),s([...o])},u=async e=>{void 0===e&&(e=0);let{items:t}=await n({parentId:e});d(e,t)},m={id:"role-tree",size:20,minSize:170,children:[(0,to.jsx)(TA,{expandedKeys:r,onLoadTreeData:f,onReloadTree:async e=>{for(let t of e)c(t,!0),await u(t)},onSetExpandedKeys:e=>{a(e)},onUpdateTreeData:d,treeData:o},"role-tree")]},p={id:"role-detail",size:80,minSize:600,children:[(0,to.jsx)(TU,{onCloneRole:async(e,t)=>{c(t,!0),await u(t)},onRemoveRole:async(e,t)=>{c(t,!0),await u(t)}},"role-detail")]};return(0,to.jsx)(xQ,{leftItem:m,rightItem:p})},TZ={name:"user-profile",component:i(95735).U,titleComponent:e=>{let{node:t}=e,i=(0,dj.a)();return(0,to.jsx)(ho.X,{modified:(null==i?void 0:i.modified)??!1,node:t})}};eR._.registerModule({onInit:()=>{let e=eB.nC.get(eO.j.mainNavRegistry);e.registerMainNavItem({path:"System/User & Roles",label:"navigation.user-and-roles",order:100,dividerBottom:!0,permission:jg.P.Users,perspectivePermissionHide:jp.UsersHidden}),e.registerMainNavItem({path:"System/User & Roles/Users",label:"navigation.users",order:100,className:"item-style-modifier",permission:jg.P.Users,perspectivePermission:jp.Users,widgetConfig:{name:"Users",id:"user-management",component:"user-management",config:{translationKey:"widget.user-management",icon:{type:"name",value:"user"}}}}),e.registerMainNavItem({path:"System/User & Roles/Roles",label:"navigation.roles",order:200,permission:jg.P.Users,perspectivePermission:jp.Roles,widgetConfig:{name:"Roles",id:"role-management",component:"role-management",config:{translationKey:"widget.role-management",icon:{type:"name",value:"user"}}}});let t=eB.nC.get(eO.j.widgetManager);t.registerWidget({name:"user-management",component:TP}),t.registerWidget({name:"role-management",component:Tq}),t.registerWidget(TZ)}}),eR._.registerModule({onInit:()=>{let e=eB.nC.get(eO.j["DynamicTypes/IconSetRegistry"]);e.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/IconSet/PimcoreDefault"])),e.registerDynamicType(eB.nC.get(eO.j["DynamicTypes/IconSet/Twemoji"]))}})},42782:function(e,t,i){i.d(t,{HZ:()=>l,Js:()=>o,Kr:()=>f,RA:()=>d,Zm:()=>u,aU:()=>s,hx:()=>c,um:()=>a});var n=i(18576),r=i(96068);let{useElementDeleteMutation:a,useElementGetDeleteInfoQuery:l,useElementFolderCreateMutation:o,useElementGetContextPermissionsQuery:s,useElementGetIdByPathQuery:d,useElementGetSubtypeQuery:f,useElementResolveBySearchTermQuery:c,useLazyElementResolveBySearchTermQuery:u}=n.hi.enhanceEndpoints({addTagTypes:[r.fV.DATA_OBJECT_DETAIL,r.fV.ASSET_DETAIL],endpoints:{elementDelete:{invalidatesTags:(e,t,i)=>r.xc.ELEMENT_DETAIL(i.elementType,i.id)}}})},67712:function(e,t,i){i.d(t,{Th:()=>h,ae:()=>f,hi:()=>r});var n=i(96068);let r=i(60387).hi.enhanceEndpoints({addTagTypes:[n.fV.EMAIL_BLOCKLIST,n.fV.EMAIL_BLOCKLIST_DETAIL,n.fV.EMAIL_LOG,n.fV.EMAIL_LOG_DETAIL],endpoints:{emailBlocklistGetCollection:{providesTags:(e,t,i)=>{var r;let a=[];return null==e||null==(r=e.items)||r.forEach(e=>{a.push(...n.Kx.EMAIL_BLOCKLIST_DETAIL(e.email))}),[...a,...n.Kx.EMAIL_BLOCKLIST()]}},emailBlocklistAdd:{invalidatesTags:(e,t,i)=>n.xc.EMAIL_BLOCKLIST()},emailBlocklistDelete:{invalidatesTags:(e,t,i)=>n.xc.EMAIL_BLOCKLIST_DETAIL(i.email)},emailLogGetCollection:{providesTags:(e,t,i)=>{var r;let a=[];return null==e||null==(r=e.items)||r.forEach(e=>{a.push(...n.Kx.EMAIL_LOG_DETAIL(e.id))}),[...a,...n.Kx.EMAIL_LOG()]}},emailLogDelete:{invalidatesTags:()=>[]}}}),{useEmailBlocklistGetCollectionQuery:a,useEmailBlocklistAddMutation:l,useEmailBlocklistDeleteMutation:o,useEmailLogGetCollectionQuery:s,useEmailLogGetByIdQuery:d,useEmailLogDeleteMutation:f,useEmailLogGetHtmlQuery:c,useEmailLogGetParamsQuery:u,useEmailLogGetTextQuery:m,useEmailLogForwardByIdMutation:p,useEmailLogResendByIdMutation:g,useEmailSendTestMutation:h}=r},60387:function(e,t,i){i.d(t,{EV:()=>c,F:()=>a,Ik:()=>l,Uc:()=>o,_b:()=>u,dd:()=>r,hi:()=>n,ln:()=>p,xV:()=>m,yU:()=>s,yn:()=>f});let n=i(42125).api.enhanceEndpoints({addTagTypes:["E-Mails"]}).injectEndpoints({endpoints:e=>({emailBlocklistGetCollection:e.query({query:e=>({url:"/pimcore-studio/api/emails/blocklist",params:{page:e.page,pageSize:e.pageSize,email:e.email}}),providesTags:["E-Mails"]}),emailBlocklistAdd:e.mutation({query:e=>({url:"/pimcore-studio/api/emails/blocklist",method:"POST",body:e.emailAddressParameter}),invalidatesTags:["E-Mails"]}),emailBlocklistDelete:e.mutation({query:e=>({url:"/pimcore-studio/api/emails/blocklist",method:"DELETE",params:{email:e.email}}),invalidatesTags:["E-Mails"]}),emailLogGetCollection:e.query({query:e=>({url:"/pimcore-studio/api/emails",params:{page:e.page,pageSize:e.pageSize}}),providesTags:["E-Mails"]}),emailLogGetById:e.query({query:e=>({url:`/pimcore-studio/api/emails/${e.id}`}),providesTags:["E-Mails"]}),emailLogDelete:e.mutation({query:e=>({url:`/pimcore-studio/api/emails/${e.id}`,method:"DELETE"}),invalidatesTags:["E-Mails"]}),emailLogGetHtml:e.query({query:e=>({url:`/pimcore-studio/api/emails/${e.id}/html`}),providesTags:["E-Mails"]}),emailLogGetParams:e.query({query:e=>({url:`/pimcore-studio/api/emails/${e.id}/params`}),providesTags:["E-Mails"]}),emailLogGetText:e.query({query:e=>({url:`/pimcore-studio/api/emails/${e.id}/text`}),providesTags:["E-Mails"]}),emailLogForwardById:e.mutation({query:e=>({url:`/pimcore-studio/api/emails/${e.id}/forward`,method:"POST",body:e.emailAddressParameter}),invalidatesTags:["E-Mails"]}),emailLogResendById:e.mutation({query:e=>({url:`/pimcore-studio/api/emails/${e.id}/resend`,method:"POST"}),invalidatesTags:["E-Mails"]}),emailSendTest:e.mutation({query:e=>({url:"/pimcore-studio/api/emails/test",method:"POST",body:e.sendEmailParameters}),invalidatesTags:["E-Mails"]})}),overrideExisting:!1}),{useEmailBlocklistGetCollectionQuery:r,useEmailBlocklistAddMutation:a,useEmailBlocklistDeleteMutation:l,useEmailLogGetCollectionQuery:o,useEmailLogGetByIdQuery:s,useEmailLogDeleteMutation:d,useEmailLogGetHtmlQuery:f,useEmailLogGetParamsQuery:c,useEmailLogGetTextQuery:u,useEmailLogForwardByIdMutation:m,useEmailLogResendByIdMutation:p,useEmailSendTestMutation:g}=n},80090:function(e,t,i){i.d(t,{W:()=>a});var n=i(28395),r=i(60476);class a{register(e){let{name:t,component:i}=e;this.icons.set(t,i)}get(e){return this.icons.get(e)}getIcons(){return this.icons}constructor(){this.icons=new Map}}a=(0,n.gn)([(0,r.injectable)()],a)},37021:function(e,t,i){i.d(t,{CX:()=>u,LA:()=>r,OE:()=>m,Rs:()=>p,UN:()=>h,V9:()=>o,YI:()=>c,hi:()=>a,iP:()=>g,jc:()=>f,oT:()=>d,qk:()=>l,wc:()=>s});var n=i(42125);let r=["Perspectives"],a=n.api.enhanceEndpoints({addTagTypes:r}).injectEndpoints({endpoints:e=>({perspectiveCreate:e.mutation({query:e=>({url:"/pimcore-studio/api/perspectives/configuration",method:"POST",body:e.addPerspectiveConfig}),invalidatesTags:["Perspectives"]}),perspectiveGetConfigCollection:e.query({query:()=>({url:"/pimcore-studio/api/perspectives/configurations"}),providesTags:["Perspectives"]}),perspectiveGetConfigById:e.query({query:e=>({url:`/pimcore-studio/api/perspectives/configuration/${e.perspectiveId}`}),providesTags:["Perspectives"]}),perspectiveUpdateConfigById:e.mutation({query:e=>({url:`/pimcore-studio/api/perspectives/configuration/${e.perspectiveId}`,method:"PUT",body:e.savePerspectiveConfig}),invalidatesTags:["Perspectives"]}),perspectiveDelete:e.mutation({query:e=>({url:`/pimcore-studio/api/perspectives/configuration/${e.perspectiveId}`,method:"DELETE"}),invalidatesTags:["Perspectives"]}),perspectiveWidgetCreate:e.mutation({query:e=>({url:`/pimcore-studio/api/perspectives/widgets/${e.widgetType}/configuration`,method:"POST",body:e.body}),invalidatesTags:["Perspectives"]}),perspectiveWidgetGetConfigCollection:e.query({query:()=>({url:"/pimcore-studio/api/perspectives/widgets/configurations"}),providesTags:["Perspectives"]}),perspectiveWidgetGetConfigById:e.query({query:e=>({url:`/pimcore-studio/api/perspectives/widgets/${e.widgetType}/configuration/${e.widgetId}`}),providesTags:["Perspectives"]}),perspectiveWidgetUpdateConfigById:e.mutation({query:e=>({url:`/pimcore-studio/api/perspectives/widgets/${e.widgetType}/configuration/${e.widgetId}`,method:"PUT",body:e.body}),invalidatesTags:["Perspectives"]}),perspectiveWidgetDelete:e.mutation({query:e=>({url:`/pimcore-studio/api/perspectives/widgets/${e.widgetType}/configuration/${e.widgetId}`,method:"DELETE"}),invalidatesTags:["Perspectives"]}),perspectiveWidgetGetTypeCollection:e.query({query:()=>({url:"/pimcore-studio/api/perspectives/widgets/types"}),providesTags:["Perspectives"]})}),overrideExisting:!1}),{usePerspectiveCreateMutation:l,usePerspectiveGetConfigCollectionQuery:o,usePerspectiveGetConfigByIdQuery:s,usePerspectiveUpdateConfigByIdMutation:d,usePerspectiveDeleteMutation:f,usePerspectiveWidgetCreateMutation:c,usePerspectiveWidgetGetConfigCollectionQuery:u,usePerspectiveWidgetGetConfigByIdQuery:m,usePerspectiveWidgetUpdateConfigByIdMutation:p,usePerspectiveWidgetDeleteMutation:g,usePerspectiveWidgetGetTypeCollectionQuery:h}=a},56232:function(e,t,i){i.d(t,{$5:()=>m,Ah:()=>g,LA:()=>r,O0:()=>s,ON:()=>l,R9:()=>c,YR:()=>f,_2:()=>o,dF:()=>d,hi:()=>a,jT:()=>h,lY:()=>p,ms:()=>u});var n=i(42125);let r=["Bundle Custom Reports"],a=n.api.enhanceEndpoints({addTagTypes:r}).injectEndpoints({endpoints:e=>({customReportsListDrillDownOptions:e.query({query:e=>({url:"/pimcore-studio/api/bundle/custom-reports/drill-down-options",method:"POST",body:e.body}),providesTags:["Bundle Custom Reports"]}),customReportsChart:e.query({query:e=>({url:"/pimcore-studio/api/bundle/custom-reports/chart",method:"POST",body:e.body}),providesTags:["Bundle Custom Reports"]}),customReportsConfigAdd:e.mutation({query:e=>({url:"/pimcore-studio/api/bundle/custom-reports/config/add",method:"POST",body:e.bundleCustomReportAdd}),invalidatesTags:["Bundle Custom Reports"]}),customReportsConfigClone:e.mutation({query:e=>({url:`/pimcore-studio/api/bundle/custom-reports/config/clone/${e.name}`,method:"POST",body:e.bundleCustomReportClone}),invalidatesTags:["Bundle Custom Reports"]}),customReportsColumnConfigList:e.query({query:e=>({url:`/pimcore-studio/api/bundle/custom-reports/column-config/${e.name}`,method:"POST",body:e.bundleCustomReportsDataSourceConfig}),providesTags:["Bundle Custom Reports"]}),customReportsConfigUpdate:e.mutation({query:e=>({url:`/pimcore-studio/api/bundle/custom-reports/config/${e.name}`,method:"PUT",body:e.bundleCustomReportUpdate}),invalidatesTags:["Bundle Custom Reports"]}),customReportsConfigDelete:e.mutation({query:e=>({url:`/pimcore-studio/api/bundle/custom-reports/config/${e.name}`,method:"DELETE"}),invalidatesTags:["Bundle Custom Reports"]}),customReportsReport:e.query({query:e=>({url:`/pimcore-studio/api/bundle/custom-reports/report/${e.name}`}),providesTags:["Bundle Custom Reports"]}),customReportsConfigGetTree:e.query({query:e=>({url:"/pimcore-studio/api/bundle/custom-reports/tree/config",params:{page:e.page,pageSize:e.pageSize}}),providesTags:["Bundle Custom Reports"]}),customReportExportCsv:e.mutation({query:e=>({url:"/pimcore-studio/api/bundle/custom-reports/export/csv",method:"POST",body:e.body}),invalidatesTags:["Bundle Custom Reports"]}),customReportsGetTree:e.query({query:e=>({url:"/pimcore-studio/api/bundle/custom-reports/tree",params:{page:e.page,pageSize:e.pageSize}}),providesTags:["Bundle Custom Reports"]})}),overrideExisting:!1}),{useCustomReportsListDrillDownOptionsQuery:l,useCustomReportsChartQuery:o,useCustomReportsConfigAddMutation:s,useCustomReportsConfigCloneMutation:d,useCustomReportsColumnConfigListQuery:f,useCustomReportsConfigUpdateMutation:c,useCustomReportsConfigDeleteMutation:u,useCustomReportsReportQuery:m,useCustomReportsConfigGetTreeQuery:p,useCustomReportExportCsvMutation:g,useCustomReportsGetTreeQuery:h}=a},55128:function(e,t,i){i.d(t,{q:()=>a});var n=i(40483),r=i(20085);let a=()=>{let e=(0,n.useAppDispatch)();return{context:(0,n.useAppSelector)(e=>(0,r._F)(e,"user")),setContext:function(t){e((0,r._z)({type:"user",config:t}))},removeContext:function(){e((0,r.qX)("user"))}}}},94009:function(e,t,i){i.r(t),i.d(t,{addTagTypes:()=>n.LA,api:()=>n.hi,usePerspectiveCreateMutation:()=>n.qk,usePerspectiveDeleteMutation:()=>n.jc,usePerspectiveGetConfigByIdQuery:()=>n.wc,usePerspectiveGetConfigCollectionQuery:()=>n.V9,usePerspectiveUpdateConfigByIdMutation:()=>n.oT,usePerspectiveWidgetCreateMutation:()=>n.YI,usePerspectiveWidgetDeleteMutation:()=>n.iP,usePerspectiveWidgetGetConfigByIdQuery:()=>n.OE,usePerspectiveWidgetGetConfigCollectionQuery:()=>n.CX,usePerspectiveWidgetGetTypeCollectionQuery:()=>n.UN,usePerspectiveWidgetUpdateConfigByIdMutation:()=>n.Rs});var n=i(37021);void 0!==(e=i.hmd(e)).hot&&e.hot.accept()},13436:function(e,t,i){i.d(t,{R:()=>d});var n=i(85893),r=i(80380),a=i(46309),l=i(69296);i(81004);var o=i(14092),s=i(38466);let d=e=>{let{children:t,themeId:i}=e;return(0,n.jsx)(r.jm,{children:(0,n.jsx)(l.f,{id:i,children:(0,n.jsx)(o.Provider,{store:a.h,children:(0,n.jsx)(s.Be,{children:t})})})})}},3018:function(e,t,i){i.d(t,{$:()=>o,t:()=>l});var n=i(85893),r=i(81004),a=i.n(r);let l=(0,r.createContext)(void 0),o=e=>{let{children:t}=e,[i,o]=(0,r.useState)(new Map),s=(e,t)=>{o(i=>{let n=new Map(i);return n.set(e,{id:e,component:t}),n})},d=e=>{o(t=>{let i=new Map(t);return i.delete(e),i})},f=e=>i.has(e),c=(0,r.useMemo)(()=>({addModal:s,removeModal:d,hasModal:f}),[]);return(0,n.jsxs)(l.Provider,{value:c,children:[t,Array.from(i.values()).map(e=>(0,n.jsx)(a().Fragment,{children:e.component},e.id))]})}},14651:function(e,t,i){i.d(t,{$:()=>u});var n=i(85893);i(81004);var r=i(48e3),a=i(16859),l=i(66508),o=i(50532),s=i(18521),d=i(47192),f=i(65638),c=i(3018);let u=e=>{let{children:t}=e;return(0,n.jsx)(c.$,{children:(0,n.jsx)(r.k,{children:(0,n.jsx)(a.A,{children:(0,n.jsx)(l.P,{children:(0,n.jsx)(o.n,{children:(0,n.jsx)(s.k,{children:(0,n.jsx)(d.Z,{children:(0,n.jsx)(f.$,{children:t})})})})})})})})}},65638:function(e,t,i){i.d(t,{$:()=>C,p:()=>w});var n=i(85893),r=i(33311),a=i(81004),l=i(71695),o=i(26788),s=i(53478),d=i(41852),f=i(10048),c=i(77244),u=i(16042),m=i(70202),p=i(54524),g=i(28253),h=i(82596),b=i(50444),y=i(66713);let v=e=>{let{form:t,initialValues:i,onValuesChange:o}=e,{t:s}=(0,l.useTranslation)(),d=(0,b.r)(),{getDisplayName:f}=(0,y.Z)(),c=(null==d?void 0:d.validLanguages)??[];return(0,a.useEffect)(()=>{t.setFieldsValue(i)},[t,i]),(0,n.jsxs)(u.h,{formProps:{form:t,layout:"vertical",onValuesChange:o},children:[(0,n.jsx)(r.l.Item,{label:s("document.site.form.main-domain"),name:"mainDomain",children:(0,n.jsx)(m.I,{})}),(0,n.jsx)(r.l.Item,{label:s("document.site.form.additional-domains"),name:"domains",tooltip:s("document.site.form.additional-domains-tooltip"),children:(0,n.jsx)(p.K,{autoSize:{minRows:3,maxRows:8}})}),(0,n.jsx)(r.l.Item,{name:"redirectToMainDomain",valuePropName:"checked",children:(0,n.jsx)(g.r,{labelRight:s("document.site.form.redirect-to-main-domain")})}),(0,n.jsxs)(u.h.Panel,{title:s("document.site.form.error-documents"),children:[(0,n.jsx)(r.l.Item,{label:s("document.site.form.default-error-document"),name:"errorDocument",children:(0,n.jsx)(h.A,{allowToClearRelation:!0,allowedDocumentTypes:["page"],documentsAllowed:!0})}),c.length>0&&(0,n.jsx)(n.Fragment,{children:c.map(e=>(0,n.jsx)(r.l.Item,{label:s("document.site.form.error-document-language",{language:f(String(e))}),name:["errorDocuments",e],children:(0,n.jsx)(h.A,{allowToClearRelation:!0,allowedDocumentTypes:["page"],documentsAllowed:!0})},e))})]})]})};var x=i(30225);let j=e=>{let{modal:t,onClose:i,onSubmit:r,onFormChange:a}=e,{t:s}=(0,l.useTranslation)(),u=async()=>{let e=t.form.getFieldsValue();await r(e)},m=(0,n.jsxs)(o.Flex,{align:"center",gap:"small",children:[(0,n.jsx)("span",{children:t.config.title}),(0,x.H)(t.config.documentPath)&&(0,n.jsx)(f.V,{elementType:c.a.document,id:t.config.documentId,inline:!0,path:t.config.documentPath})]});return(0,n.jsx)(d.i,{okButtonProps:{loading:t.isLoading},okText:s("save"),onCancel:i,onClose:i,onOk:u,open:!0,size:"L",title:m,children:(0,n.jsx)(v,{form:t.form,initialValues:t.config.initialValues,onValuesChange:a})})},w=(0,a.createContext)(void 0),C=e=>{let{children:t}=e,{t:i}=(0,l.useTranslation)(),{modal:d}=o.App.useApp(),[f,c]=(0,a.useState)(null),[u]=r.l.useForm(),m=e=>{if(!(0,s.isNull)(f)){if(f.config.documentId===e.documentId)return void c(t=>(0,s.isNull)(t)?null:{...t,config:e});if(f.hasUnsavedChanges)return void d.confirm({title:i("unsaved-changes.title"),content:i("unsaved-changes.message"),okText:i("save-and-continue"),cancelText:i("discard-and-continue"),onOk:()=>{(async()=>{try{let t=f.form.getFieldsValue();await f.config.onSubmit(t),p(e)}catch(e){console.error("Failed to save current changes:",e)}})()},onCancel:()=>{p(e)}})}p(e)},p=e=>{u.resetFields(),u.setFieldsValue(e.initialValues),c({config:e,form:u,isLoading:!1,hasUnsavedChanges:!1})},g=()=>{(0,s.isNull)(f)||!f.hasUnsavedChanges?c(null):d.confirm({title:i("unsaved-changes.title"),content:i("unsaved-changes.close-message"),okText:i("discard-changes"),cancelText:i("cancel"),onOk:()=>{c(null)}})},h=e=>{c(t=>(0,s.isNull)(t)?null:{...t,isLoading:e})},b=async e=>{if(!(0,s.isNull)(f)){h(!0);try{await f.config.onSubmit(e),c(e=>(0,s.isNull)(e)?null:{...e,hasUnsavedChanges:!1}),c(null)}catch(e){console.error("Site modal submission failed:",e)}finally{h(!1)}}},y=(0,a.useMemo)(()=>({openModal:m,closeModal:g,isOpen:null!==f,currentDocumentId:(null==f?void 0:f.config.documentId)??null}),[f]);return(0,n.jsxs)(w.Provider,{value:y,children:[(0,s.isNull)(f)?null:(0,n.jsx)(j,{modal:f,onClose:g,onFormChange:()=>{c(e=>(0,s.isNull)(e)?null:{...e,hasUnsavedChanges:!0})},onSubmit:b}),t]})}},47192:function(e,t,i){i.d(t,{r:()=>S,Z:()=>D});var n,r=i(85893),a=i(33311),l=i(41852),o=i(81004),s=i(71695),d=i(60685),f=i(70202),c=i(2092),u=i(78777),m=i(45114),p=i(52309),g=i(37934),h=i(91936);let b=(0,i(29202).createStyles)(e=>{let{token:t,css:i}=e;return{formLabel:i` padding-left: 4px; - `}}),y=e=>{let{form:t}=e,{t:i}=(0,s.useTranslation)(),{styles:n}=b(),[a,o]=(0,l.useState)([{key:"",value:""}]),d=(0,h.createColumnHelper)(),f=[d.accessor("key",{header:i("test-email.parameters.columns.key"),meta:{editable:!0}}),d.accessor("value",{header:i("test-email.parameters.columns.value"),meta:{autoWidth:!0,editable:!0}})],c=async e=>{let{rowIndex:i,value:n,columnId:r}=e,l=[...a];l[i]={...l[i],[r]:n},o(l),t.setFieldValue("documentParameters",l)};return(0,r.jsxs)(p.k,{gap:4,vertical:!0,children:[(0,r.jsxs)(p.k,{align:"center",justify:"space-between",children:[(0,r.jsx)("p",{className:n.formLabel,children:i("test-email.form.parameters")}),(0,r.jsx)(m.IconTextButton,{icon:{value:"new"},onClick:()=>{o([...a,{key:"",value:""}])},title:i("test-email.form.parameters.add-parameter"),children:i("test-email.parameters.add")})]}),(0,r.jsx)(g.r,{autoWidth:!0,columns:f,data:a,onUpdateCellData:c,resizable:!0})]})};var v=((n=v||{}).Document="document",n.HTML="html",n.Text="text",n);let x=e=>{let{initialValues:t,form:i}=e,{t:n}=(0,s.useTranslation)();return(0,r.jsxs)(a.l,{form:i,initialValues:{contentType:v.Text,...t},layout:"vertical",children:[(0,r.jsx)(a.l.Item,{label:n("test-email.form.from"),name:"from",rules:[{required:!0,message:n("test-email.validation.from.required")},{type:"email",message:n("test-email.validation.from.email.type")}],children:(0,r.jsx)(f.I,{type:"email"})}),(0,r.jsx)(a.l.Item,{label:n("test-email.form.to"),name:"to",rules:[{required:!0,message:n("test-email.validation.to.required")},{type:"email",message:n("test-email.validation.to.email.type")}],children:(0,r.jsx)(f.I,{type:"email"})}),(0,r.jsx)(a.l.Item,{label:n("test-email.form.subject"),name:"subject",rules:[{required:!0,message:n("test-email.validation.subject.required")}],children:(0,r.jsx)(f.I,{})}),(0,r.jsx)(a.l.Item,{label:n("test-email.form.contentType"),name:"contentType",children:(0,r.jsx)(c.P,{options:[{label:n(`test-email.contentType.${v.Document}`),value:v.Document},{label:n(`test-email.contentType.${v.HTML}`),value:v.HTML},{label:n(`test-email.contentType.${v.Text}`),value:v.Text}]})}),(0,r.jsx)(a.l.Item,{dependencies:["contentType"],noStyle:!0,children:e=>{let{getFieldValue:t}=e;switch(t("contentType")??v.Text){case v.Document:return(0,r.jsxs)(r.Fragment,{children:[(0,r.jsx)(a.l.Item,{label:n("test-email.form.document"),name:"documentPath",rules:[{required:!0,message:n("test-email.validation.documentPath.required")}],children:(0,r.jsx)(u.A,{allowToClearRelation:!0,allowedDocumentTypes:["email"],documentsAllowed:!0})}),(0,r.jsx)(a.l.Item,{name:"documentParameters",children:(0,r.jsx)(y,{form:i})})]});case v.HTML:return(0,r.jsx)(a.l.Item,{label:n("test-email.form.message"),name:"content",rules:[{required:!0,message:n("test-email.validation.content.required")}],children:(0,r.jsx)(d.p,{basicSetup:{lineNumbers:!0,syntaxHighlighting:!0,searchKeymap:!0},extensions:(0,m.getLanguageExtensions)("html"),minHeight:"200px"})});case v.Text:return(0,r.jsx)(a.l.Item,{label:n("test-email.form.message"),name:"content",rules:[{required:!0,message:n("test-email.validation.content.required")}],children:(0,r.jsx)(m.TextArea,{autoSize:{minRows:10}})})}}})]})};var j=i(74347),w=i(83101),C=i(37172),k=i(53478),T=i(67712);let S=(0,l.createContext)(void 0),D=e=>{let{children:t}=e,{t:i}=(0,s.useTranslation)(),[n,d]=(0,l.useState)(!1),{send:f}=(()=>{let[e]=(0,T.Th)(),{t}=(0,s.useTranslation)(),i=(0,m.useFormModal)();return{send:async(n,r,a)=>{let o=e({sendEmailParameters:n});try{let e=await o;if(!(0,k.isUndefined)(e.error)){null==a||a(),(0,C.Z)(new j.Z(e.error));return}i.confirm({title:t("test-email.success.modal.title"),content:t("test-email.success.modal.text"),okText:t("yes"),cancelText:t("no"),onCancel:()=>{null==r||r()},onOk:()=>{null==a||a()}})}catch{null==a||a(),(0,C.Z)(new w.Z(t("test-email.send.error")))}}}})(),[c]=a.l.useForm(),[u,p]=(0,l.useState)(!1),g=()=>{c.resetFields(),d(!1)},h=async()=>{p(!0),await c.validateFields().then(async()=>{var e;let t=c.getFieldsValue(),i={...t,documentPath:(null==(e=t.documentPath)?void 0:e.fullPath)??null};await f(i,()=>{g()})}).finally(()=>{p(!1)})},b=(0,l.useMemo)(()=>({isOpen:n,setIsOpen:d,form:c,closeModal:g}),[n,c]);return(0,r.jsxs)(S.Provider,{value:b,children:[(0,r.jsx)(o.i,{okButtonProps:{loading:u},okText:i("test-email-modal-send"),onCancel:()=>{g()},onClose:()=>{g()},onOk:async()=>{await h()},open:n,size:"L",title:i("test-email-modal-title"),children:(0,r.jsx)(x,{form:c})}),t]})}},63654:function(e,t,i){i.d(t,{o:()=>j});var n=i(85893),r=i(81004),a=i(40483),o=i(61186),l=i(70912),s=i(98482),d=i(92428),f=i(35316),c=i(48497),u=i(37021),m=i(81343),p=i(53478),g=i(26788),h=i(71695),b=i(82141),y=i(2067),v=i(52309),x=i(44780);let j=()=>{let e=(0,a.useAppDispatch)(),t=(0,c.a)(),[i]=(0,o.Lw)(),[j,w]=(0,r.useState)(!1),{modal:C}=g.App.useApp(),{t:k}=(0,h.useTranslation)(),T=async t=>{let i=e(u.hi.endpoints.perspectiveGetConfigById.initiate({perspectiveId:t}));return i.then(t=>{let{data:i,isSuccess:n,isError:r,error:a}=t;r&&(0,m.ZP)(new m.MS(a)),n&&(0,p.isPlainObject)(i)&&(e((0,l.ZX)(i)),e((0,s.jy)((0,d.i)())))}).catch(()=>{}),await i};return{switchPerspective:async r=>{w(!0);let a=C.info({title:(0,n.jsxs)(v.k,{align:"center",gap:"small",children:[(0,n.jsx)(y.y,{type:"classic"}),k("perspective.switching.title")]}),content:(0,n.jsxs)("div",{children:[(0,n.jsxs)(x.x,{margin:{bottom:"small"},children:[k("perspective.switching.description"),":"]}),(0,n.jsx)(b.W,{color:"primary",icon:r.icon,variant:"filled",children:k(r.name)})]}),footer:!1}),o=r.id,l=await i({perspectiveId:o});(0,p.isUndefined)(l.error)?(await T(o),e((0,f.av)({...t,activePerspective:o}))):(0,m.ZP)(new m.MS(l.error)),w(!1),setTimeout(()=>{a.destroy()},500)},loadPerspective:T,loadPerspectiveById:async t=>{try{let i=e(u.hi.endpoints.perspectiveGetConfigById.initiate({perspectiveId:t})),{data:n,isSuccess:r,isError:a,error:o}=await i;if(a)return void(0,m.ZP)(new m.MS(o));if(r&&(0,p.isPlainObject)(n))return n;return}catch{(0,m.ZP)(new m.aE(`Error loading perspective (\`${t}\`) information`));return}},getPerspectiveConfigCollection:async()=>{let{data:t,isError:i,error:n}=await e(u.hi.endpoints.perspectiveGetConfigCollection.initiate());return i&&(0,m.ZP)(new m.MS(n)),t},isLoading:j}}},43409:function(e,t,i){i.d(t,{u:()=>s});var n=i(40483),r=i(52741),a=i(61186),o=i(81004),l=i(81343);let s=e=>{let t=(0,n.useAppDispatch)(),i=(0,n.useAppSelector)(t=>(0,r.Ls)(t,e)),[s,d]=(0,o.useState)(!0),[f,c]=(0,o.useState)(!1);async function u(){let{data:i,isError:n,error:r}=await t(a.hi.endpoints.userGetById.initiate({id:e}));return(n&&(0,l.ZP)(new l.MS(r)),void 0!==i)?i:{}}function m(){d(!0),u().then(e=>{t((0,r.V3)({...e,modified:!1,changes:{},modifiedCells:{}}))}).catch(()=>{c(!0)}).finally(()=>{d(!1)})}return(0,o.useEffect)(()=>{void 0===i&&void 0!==e?m():d(!1)},[i]),{isLoading:s,isError:f,user:i,removeUserFromState:function(){void 0!==i&&t((0,r.Yg)(i.id))},changeUserInState:function(e){void 0!==i&&("boolean"==typeof e.twoFactorAuthenticationRequired&&(e.twoFactorAuthentication={...i.twoFactorAuthentication,required:e.twoFactorAuthenticationRequired}),t((0,r.AQ)({id:i.id,changes:e})))},reloadUser:function(){m()},updateUserKeyBinding:function(e,n){let a=[...i.keyBindings],o=a.findIndex(t=>t.action===e);-1!==o?a[o]={action:e,...n}:a.push({action:e,...n}),t((0,r.AQ)({id:i.id,changes:{keyBindings:a}}))},updateUserImageInState:function(e){t((0,r.bY)({id:i.id,image:e}))}}}},81241:function(e,t,i){i.d(t,{p:()=>l});var n=i(40483),r=i(66904),a=i(78288),o=i(81004);let l=e=>{let t=(0,n.useAppDispatch)(),i=(0,n.useAppSelector)(t=>(0,r.VL)(t,e)),[l,s]=(0,o.useState)(!0),[d,f]=(0,o.useState)(!1);async function c(){let{data:i}=await t(a.hi.endpoints.roleGetById.initiate({id:e}));return void 0!==i?i:{}}function u(){s(!0),c().then(e=>{t((0,r.gC)(e))}).catch(()=>{f(!0)}).finally(()=>{s(!1)})}function m(){void 0!==i&&t((0,r.hf)(i.id))}return(0,o.useEffect)(()=>{void 0===i&&void 0!==e?u():s(!1)},[i]),{isLoading:l,isError:d,role:i,removeRoleFromState:m,changeRoleInState:function(e){void 0!==i&&t((0,r.T8)({id:i.id,changes:e}))},reloadRole:function(){m(),u()}}}},37274:function(e,t,i){i.d(t,{d:()=>s});var n=i(40483),r=i(66904),a=i(75324),o=i(71695),l=i(78288);let s=()=>{let{t:e}=(0,o.useTranslation)(),[t]=(0,a.l)(),i=(0,n.useAppDispatch)(),s=(i,n)=>{if(void 0!==n){var r;t.open({type:"error",message:(null==n||null==(r=n.data)?void 0:r.message)??e("error")})}else t.open({type:"success",message:i})};async function d(e){let{id:t}=e,{data:n}=await i(l.hi.endpoints.roleGetById.initiate({id:t}));return n}async function f(e){let{parentId:t}=e,{data:n}=await i(l.hi.endpoints.roleGetTree.initiate({parentId:t}));return n}async function c(e){let{data:t}=await i(l.hi.endpoints.roleSearch.initiate({searchQuery:e}));return t}async function u(t){let{parentId:n,name:r}=t,{data:a,error:o}=await i(l.hi.endpoints.roleCreate.initiate({body:{parentId:n,name:r}}));return s(e("roles.add-item.success"),o),a}async function m(t){let{parentId:n,name:r}=t,{data:a,error:o}=await i(l.hi.endpoints.roleFolderCreate.initiate({body:{parentId:n,name:r}}));return s(e("roles.add-folder.success"),o),a}async function p(t){let{id:n}=t,{data:r,error:a}=await i(l.hi.endpoints.roleDeleteById.initiate({id:n}));return s(e("roles.remove-item.success"),a),r}async function g(t){let{id:n}=t,{data:r,error:a}=await i(l.hi.endpoints.roleFolderDeleteById.initiate({id:n}));return s(e("roles.remove-folder.success"),a),r}async function h(t){let{id:n,name:a}=t,{data:o,error:d}=await i(l.hi.endpoints.roleCloneById.initiate({id:n,body:{name:a}}));return s(e("roles.clone-item.success"),d),i((0,r.TU)(o.id)),o}async function b(t){let{id:n,item:a}=t,{data:o,error:d}=await i(l.hi.endpoints.roleUpdateById.initiate({id:n,updateRole:{name:a.name,classes:a.classes,parentId:a.parentId??0,permissions:a.permissions,docTypes:a.docTypes,websiteTranslationLanguagesEdit:a.websiteTranslationLanguagesEdit,websiteTranslationLanguagesView:a.websiteTranslationLanguagesView,assetWorkspaces:a.assetWorkspaces,dataObjectWorkspaces:a.dataObjectWorkspaces,documentWorkspaces:a.documentWorkspaces,perspectives:a.perspectives}}));return s(e("roles.save-item.success"),d),i((0,r.Tp)(n)),o}async function y(t){let{id:n,parentId:r}=t,a=await d({id:n}),{data:o,error:f}=await i(l.hi.endpoints.roleUpdateById.initiate({id:n,updateRole:{...a,parentId:r}}));return s(e("roles.save-item.success"),f),o}async function v(){let{data:e}=await i(l.hi.endpoints.roleGetCollection.initiate());return e}return{openRole:function(e){i((0,r.TU)(e))},closeRole:function(e){i((0,r.L7)(e))},getRoleTree:f,addNewRole:u,addNewFolder:m,removeRole:p,cloneRole:h,removeFolder:g,updateRoleById:b,moveRoleById:y,getRoleCollection:v,searchRoleByText:c,activeId:(0,n.useAppSelector)(e=>e.role.activeId),getAllIds:(0,n.useAppSelector)(e=>e.role.ids)}}},66904:function(e,t,i){i.d(t,{L7:()=>d,T8:()=>u,TU:()=>s,Tp:()=>c,VL:()=>m,gC:()=>f,hf:()=>l});var n=i(73288),r=i(40483);let a=(0,n.createEntityAdapter)({}),o=(0,n.createSlice)({name:"role",initialState:a.getInitialState({modified:!1,activeId:void 0,changedIds:[]}),reducers:{roleOpened:(e,t)=>{e.activeId=t.payload},roleClosed:(e,t)=>{e.activeId=void 0,a.removeOne(e,t.payload)},roleFetched:(e,t)=>{void 0!==t.payload.id&&a.upsertOne(e,t)},roleRemoved:(e,t)=>{a.removeOne(e,t.payload)},changeRole:(e,t)=>{let i=t.payload.id;e.changedIds.includes(i)||e.changedIds.push(i);let n={id:t.payload.id,changes:{...t.payload.changes,modified:!0}};a.updateOne(e,n)},roleUpdated:(e,t)=>{e.changedIds=e.changedIds.filter(e=>e!==t.payload);let i={id:t.payload,changes:{modified:!1}};a.updateOne(e,i)}}});(0,r.injectSliceWithState)(o);let{roleRemoved:l,roleOpened:s,roleClosed:d,roleFetched:f,roleUpdated:c,changeRole:u}=o.actions,{selectById:m}=a.getSelectors(e=>e.role)}}]); \ No newline at end of file + `}}),y=e=>{let{form:t}=e,{t:i}=(0,s.useTranslation)(),{styles:n}=b(),[a,l]=(0,o.useState)([{key:"",value:""}]),d=(0,h.createColumnHelper)(),f=[d.accessor("key",{header:i("test-email.parameters.columns.key"),meta:{editable:!0}}),d.accessor("value",{header:i("test-email.parameters.columns.value"),meta:{autoWidth:!0,editable:!0}})],c=async e=>{let{rowIndex:i,value:n,columnId:r}=e,o=[...a];o[i]={...o[i],[r]:n},l(o),t.setFieldValue("documentParameters",o)};return(0,r.jsxs)(p.k,{gap:4,vertical:!0,children:[(0,r.jsxs)(p.k,{align:"center",justify:"space-between",children:[(0,r.jsx)("p",{className:n.formLabel,children:i("test-email.form.parameters")}),(0,r.jsx)(m.IconTextButton,{icon:{value:"new"},onClick:()=>{l([...a,{key:"",value:""}])},title:i("test-email.form.parameters.add-parameter"),children:i("test-email.parameters.add")})]}),(0,r.jsx)(g.r,{autoWidth:!0,columns:f,data:a,onUpdateCellData:c,resizable:!0})]})};var v=((n=v||{}).Document="document",n.HTML="html",n.Text="text",n);let x=e=>{let{initialValues:t,form:i}=e,{t:n}=(0,s.useTranslation)();return(0,r.jsxs)(a.l,{form:i,initialValues:{contentType:v.Text,...t},layout:"vertical",children:[(0,r.jsx)(a.l.Item,{label:n("test-email.form.from"),name:"from",rules:[{required:!0,message:n("test-email.validation.from.required")},{type:"email",message:n("test-email.validation.from.email.type")}],children:(0,r.jsx)(f.I,{type:"email"})}),(0,r.jsx)(a.l.Item,{label:n("test-email.form.to"),name:"to",rules:[{required:!0,message:n("test-email.validation.to.required")},{type:"email",message:n("test-email.validation.to.email.type")}],children:(0,r.jsx)(f.I,{type:"email"})}),(0,r.jsx)(a.l.Item,{label:n("test-email.form.subject"),name:"subject",rules:[{required:!0,message:n("test-email.validation.subject.required")}],children:(0,r.jsx)(f.I,{})}),(0,r.jsx)(a.l.Item,{label:n("test-email.form.contentType"),name:"contentType",children:(0,r.jsx)(c.P,{options:[{label:n(`test-email.contentType.${v.Document}`),value:v.Document},{label:n(`test-email.contentType.${v.HTML}`),value:v.HTML},{label:n(`test-email.contentType.${v.Text}`),value:v.Text}]})}),(0,r.jsx)(a.l.Item,{dependencies:["contentType"],noStyle:!0,children:e=>{let{getFieldValue:t}=e;switch(t("contentType")??v.Text){case v.Document:return(0,r.jsxs)(r.Fragment,{children:[(0,r.jsx)(a.l.Item,{label:n("test-email.form.document"),name:"documentPath",rules:[{required:!0,message:n("test-email.validation.documentPath.required")}],children:(0,r.jsx)(u.A,{allowToClearRelation:!0,allowedDocumentTypes:["email"],documentsAllowed:!0})}),(0,r.jsx)(a.l.Item,{name:"documentParameters",children:(0,r.jsx)(y,{form:i})})]});case v.HTML:return(0,r.jsx)(a.l.Item,{label:n("test-email.form.message"),name:"content",rules:[{required:!0,message:n("test-email.validation.content.required")}],children:(0,r.jsx)(d.p,{basicSetup:{lineNumbers:!0,syntaxHighlighting:!0,searchKeymap:!0},extensions:(0,m.getLanguageExtensions)("html"),minHeight:"200px"})});case v.Text:return(0,r.jsx)(a.l.Item,{label:n("test-email.form.message"),name:"content",rules:[{required:!0,message:n("test-email.validation.content.required")}],children:(0,r.jsx)(m.TextArea,{autoSize:{minRows:10}})})}}})]})};var j=i(74347),w=i(83101),C=i(37172),k=i(53478),T=i(67712);let S=(0,o.createContext)(void 0),D=e=>{let{children:t}=e,{t:i}=(0,s.useTranslation)(),[n,d]=(0,o.useState)(!1),{send:f}=(()=>{let[e]=(0,T.Th)(),{t}=(0,s.useTranslation)(),i=(0,m.useFormModal)();return{send:async(n,r,a)=>{let l=e({sendEmailParameters:n});try{let e=await l;if(!(0,k.isUndefined)(e.error)){null==a||a(),(0,C.Z)(new j.Z(e.error));return}i.confirm({title:t("test-email.success.modal.title"),content:t("test-email.success.modal.text"),okText:t("yes"),cancelText:t("no"),onCancel:()=>{null==r||r()},onOk:()=>{null==a||a()}})}catch{null==a||a(),(0,C.Z)(new w.Z(t("test-email.send.error")))}}}})(),[c]=a.l.useForm(),[u,p]=(0,o.useState)(!1),g=()=>{c.resetFields(),d(!1)},h=async()=>{p(!0),await c.validateFields().then(async()=>{var e;let t=c.getFieldsValue(),i={...t,documentPath:(null==(e=t.documentPath)?void 0:e.fullPath)??null};await f(i,()=>{g()})}).finally(()=>{p(!1)})},b=(0,o.useMemo)(()=>({isOpen:n,setIsOpen:d,form:c,closeModal:g}),[n,c]);return(0,r.jsxs)(S.Provider,{value:b,children:[(0,r.jsx)(l.i,{okButtonProps:{loading:u},okText:i("test-email-modal-send"),onCancel:()=>{g()},onClose:()=>{g()},onOk:async()=>{await h()},open:n,size:"L",title:i("test-email-modal-title"),children:(0,r.jsx)(x,{form:c})}),t]})}},63654:function(e,t,i){i.d(t,{o:()=>j});var n=i(85893),r=i(81004),a=i(40483),l=i(61186),o=i(70912),s=i(98482),d=i(92428),f=i(35316),c=i(48497),u=i(37021),m=i(81343),p=i(53478),g=i(26788),h=i(71695),b=i(82141),y=i(2067),v=i(52309),x=i(44780);let j=()=>{let e=(0,a.useAppDispatch)(),t=(0,c.a)(),[i]=(0,l.Lw)(),[j,w]=(0,r.useState)(!1),{modal:C}=g.App.useApp(),{t:k}=(0,h.useTranslation)(),T=async t=>{let i=e(u.hi.endpoints.perspectiveGetConfigById.initiate({perspectiveId:t}));return i.then(t=>{let{data:i,isSuccess:n,isError:r,error:a}=t;r&&(0,m.ZP)(new m.MS(a)),n&&(0,p.isPlainObject)(i)&&(e((0,o.ZX)(i)),e((0,s.jy)((0,d.i)())))}).catch(()=>{}),await i};return{switchPerspective:async r=>{w(!0);let a=C.info({title:(0,n.jsxs)(v.k,{align:"center",gap:"small",children:[(0,n.jsx)(y.y,{type:"classic"}),k("perspective.switching.title")]}),content:(0,n.jsxs)("div",{children:[(0,n.jsxs)(x.x,{margin:{bottom:"small"},children:[k("perspective.switching.description"),":"]}),(0,n.jsx)(b.W,{color:"primary",icon:r.icon,variant:"filled",children:k(r.name)})]}),footer:!1}),l=r.id,o=await i({perspectiveId:l});(0,p.isUndefined)(o.error)?(await T(l),e((0,f.av)({...t,activePerspective:l}))):(0,m.ZP)(new m.MS(o.error)),w(!1),setTimeout(()=>{a.destroy()},500)},loadPerspective:T,loadPerspectiveById:async t=>{try{let i=e(u.hi.endpoints.perspectiveGetConfigById.initiate({perspectiveId:t})),{data:n,isSuccess:r,isError:a,error:l}=await i;if(a)return void(0,m.ZP)(new m.MS(l));if(r&&(0,p.isPlainObject)(n))return n;return}catch{(0,m.ZP)(new m.aE(`Error loading perspective (\`${t}\`) information`));return}},getPerspectiveConfigCollection:async()=>{let{data:t,isError:i,error:n}=await e(u.hi.endpoints.perspectiveGetConfigCollection.initiate());return i&&(0,m.ZP)(new m.MS(n)),t},isLoading:j}}},43409:function(e,t,i){i.d(t,{u:()=>s});var n=i(40483),r=i(52741),a=i(61186),l=i(81004),o=i(81343);let s=e=>{let t=(0,n.useAppDispatch)(),i=(0,n.useAppSelector)(t=>(0,r.Ls)(t,e)),[s,d]=(0,l.useState)(!0),[f,c]=(0,l.useState)(!1);async function u(){let{data:i,isError:n,error:r}=await t(a.hi.endpoints.userGetById.initiate({id:e}));return(n&&(0,o.ZP)(new o.MS(r)),void 0!==i)?i:{}}function m(){d(!0),u().then(e=>{t((0,r.V3)({...e,modified:!1,changes:{},modifiedCells:{}}))}).catch(()=>{c(!0)}).finally(()=>{d(!1)})}return(0,l.useEffect)(()=>{void 0===i&&void 0!==e?m():d(!1)},[i]),{isLoading:s,isError:f,user:i,removeUserFromState:function(){void 0!==i&&t((0,r.Yg)(i.id))},changeUserInState:function(e){void 0!==i&&("boolean"==typeof e.twoFactorAuthenticationRequired&&(e.twoFactorAuthentication={...i.twoFactorAuthentication,required:e.twoFactorAuthenticationRequired}),t((0,r.AQ)({id:i.id,changes:e})))},reloadUser:function(){m()},updateUserKeyBinding:function(e,n){let a=[...i.keyBindings],l=a.findIndex(t=>t.action===e);-1!==l?a[l]={action:e,...n}:a.push({action:e,...n}),t((0,r.AQ)({id:i.id,changes:{keyBindings:a}}))},updateUserImageInState:function(e){t((0,r.bY)({id:i.id,image:e}))}}}},81241:function(e,t,i){i.d(t,{p:()=>o});var n=i(40483),r=i(66904),a=i(78288),l=i(81004);let o=e=>{let t=(0,n.useAppDispatch)(),i=(0,n.useAppSelector)(t=>(0,r.VL)(t,e)),[o,s]=(0,l.useState)(!0),[d,f]=(0,l.useState)(!1);async function c(){let{data:i}=await t(a.hi.endpoints.roleGetById.initiate({id:e}));return void 0!==i?i:{}}function u(){s(!0),c().then(e=>{t((0,r.gC)(e))}).catch(()=>{f(!0)}).finally(()=>{s(!1)})}function m(){void 0!==i&&t((0,r.hf)(i.id))}return(0,l.useEffect)(()=>{void 0===i&&void 0!==e?u():s(!1)},[i]),{isLoading:o,isError:d,role:i,removeRoleFromState:m,changeRoleInState:function(e){void 0!==i&&t((0,r.T8)({id:i.id,changes:e}))},reloadRole:function(){m(),u()}}}},37274:function(e,t,i){i.d(t,{d:()=>s});var n=i(40483),r=i(66904),a=i(75324),l=i(71695),o=i(78288);let s=()=>{let{t:e}=(0,l.useTranslation)(),[t]=(0,a.l)(),i=(0,n.useAppDispatch)(),s=(i,n)=>{if(void 0!==n){var r;t.open({type:"error",message:(null==n||null==(r=n.data)?void 0:r.message)??e("error")})}else t.open({type:"success",message:i})};async function d(e){let{id:t}=e,{data:n}=await i(o.hi.endpoints.roleGetById.initiate({id:t}));return n}async function f(e){let{parentId:t}=e,{data:n}=await i(o.hi.endpoints.roleGetTree.initiate({parentId:t}));return n}async function c(e){let{data:t}=await i(o.hi.endpoints.roleSearch.initiate({searchQuery:e}));return t}async function u(t){let{parentId:n,name:r}=t,{data:a,error:l}=await i(o.hi.endpoints.roleCreate.initiate({body:{parentId:n,name:r}}));return s(e("roles.add-item.success"),l),a}async function m(t){let{parentId:n,name:r}=t,{data:a,error:l}=await i(o.hi.endpoints.roleFolderCreate.initiate({body:{parentId:n,name:r}}));return s(e("roles.add-folder.success"),l),a}async function p(t){let{id:n}=t,{data:r,error:a}=await i(o.hi.endpoints.roleDeleteById.initiate({id:n}));return s(e("roles.remove-item.success"),a),r}async function g(t){let{id:n}=t,{data:r,error:a}=await i(o.hi.endpoints.roleFolderDeleteById.initiate({id:n}));return s(e("roles.remove-folder.success"),a),r}async function h(t){let{id:n,name:a}=t,{data:l,error:d}=await i(o.hi.endpoints.roleCloneById.initiate({id:n,body:{name:a}}));return s(e("roles.clone-item.success"),d),i((0,r.TU)(l.id)),l}async function b(t){let{id:n,item:a}=t,{data:l,error:d}=await i(o.hi.endpoints.roleUpdateById.initiate({id:n,updateRole:{name:a.name,classes:a.classes,parentId:a.parentId??0,permissions:a.permissions,docTypes:a.docTypes,websiteTranslationLanguagesEdit:a.websiteTranslationLanguagesEdit,websiteTranslationLanguagesView:a.websiteTranslationLanguagesView,assetWorkspaces:a.assetWorkspaces,dataObjectWorkspaces:a.dataObjectWorkspaces,documentWorkspaces:a.documentWorkspaces,perspectives:a.perspectives}}));return s(e("roles.save-item.success"),d),i((0,r.Tp)(n)),l}async function y(t){let{id:n,parentId:r}=t,a=await d({id:n}),{data:l,error:f}=await i(o.hi.endpoints.roleUpdateById.initiate({id:n,updateRole:{...a,parentId:r}}));return s(e("roles.save-item.success"),f),l}async function v(){let{data:e}=await i(o.hi.endpoints.roleGetCollection.initiate());return e}return{openRole:function(e){i((0,r.TU)(e))},closeRole:function(e){i((0,r.L7)(e))},getRoleTree:f,addNewRole:u,addNewFolder:m,removeRole:p,cloneRole:h,removeFolder:g,updateRoleById:b,moveRoleById:y,getRoleCollection:v,searchRoleByText:c,activeId:(0,n.useAppSelector)(e=>e.role.activeId),getAllIds:(0,n.useAppSelector)(e=>e.role.ids)}}},66904:function(e,t,i){i.d(t,{L7:()=>d,T8:()=>u,TU:()=>s,Tp:()=>c,VL:()=>m,gC:()=>f,hf:()=>o});var n=i(73288),r=i(40483);let a=(0,n.createEntityAdapter)({}),l=(0,n.createSlice)({name:"role",initialState:a.getInitialState({modified:!1,activeId:void 0,changedIds:[]}),reducers:{roleOpened:(e,t)=>{e.activeId=t.payload},roleClosed:(e,t)=>{e.activeId=void 0,a.removeOne(e,t.payload)},roleFetched:(e,t)=>{void 0!==t.payload.id&&a.upsertOne(e,t)},roleRemoved:(e,t)=>{a.removeOne(e,t.payload)},changeRole:(e,t)=>{let i=t.payload.id;e.changedIds.includes(i)||e.changedIds.push(i);let n={id:t.payload.id,changes:{...t.payload.changes,modified:!0}};a.updateOne(e,n)},roleUpdated:(e,t)=>{e.changedIds=e.changedIds.filter(e=>e!==t.payload);let i={id:t.payload,changes:{modified:!1}};a.updateOne(e,i)}}});(0,r.injectSliceWithState)(l);let{roleRemoved:o,roleOpened:s,roleClosed:d,roleFetched:f,roleUpdated:c,changeRole:u}=l.actions,{selectById:m}=a.getSelectors(e=>e.role)}}]); \ No newline at end of file diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4322.343e0435.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1560.4e3adaa6.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4322.343e0435.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1560.4e3adaa6.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1567.1b498cf5.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1567.1b498cf5.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1567.1b498cf5.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1567.1b498cf5.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1595.3793e4f4.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1567.1b498cf5.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1595.3793e4f4.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1567.1b498cf5.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1595.3793e4f4.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1595.3793e4f4.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1595.3793e4f4.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1595.3793e4f4.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1597.8c0076ee.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1595.3793e4f4.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1597.8c0076ee.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1595.3793e4f4.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1597.8c0076ee.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1597.8c0076ee.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1597.8c0076ee.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1597.8c0076ee.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1623.a127f6ac.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1597.8c0076ee.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1623.a127f6ac.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1597.8c0076ee.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/161.ff32631b.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/161.ff32631b.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/161.ff32631b.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/161.ff32631b.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7091.48f5b66b.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/161.ff32631b.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7091.48f5b66b.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/161.ff32631b.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1623.a127f6ac.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1623.a127f6ac.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1623.a127f6ac.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1623.a127f6ac.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1657.1d133530.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1623.a127f6ac.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1657.1d133530.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1623.a127f6ac.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1657.1d133530.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1657.1d133530.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1657.1d133530.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1657.1d133530.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1690.b2b98aaf.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1657.1d133530.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1690.b2b98aaf.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1657.1d133530.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1690.b2b98aaf.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1690.b2b98aaf.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1690.b2b98aaf.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1690.b2b98aaf.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1698.da67ca2a.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1690.b2b98aaf.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1698.da67ca2a.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1690.b2b98aaf.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1698.da67ca2a.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1698.da67ca2a.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1698.da67ca2a.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1698.da67ca2a.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1746.20f0870c.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1698.da67ca2a.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1746.20f0870c.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1698.da67ca2a.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1746.20f0870c.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1746.20f0870c.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1746.20f0870c.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1746.20f0870c.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1758.7d46b820.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1746.20f0870c.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1758.7d46b820.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1746.20f0870c.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1752.b8d97cb5.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1752.b8d97cb5.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1752.b8d97cb5.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1752.b8d97cb5.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1752.b8d97cb5.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1752.b8d97cb5.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1752.b8d97cb5.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1752.b8d97cb5.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1758.7d46b820.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1758.7d46b820.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1758.7d46b820.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1758.7d46b820.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1778.f279d1cd.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1758.7d46b820.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1778.f279d1cd.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1758.7d46b820.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1778.f279d1cd.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1778.f279d1cd.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1778.f279d1cd.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1778.f279d1cd.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1851.50e72f7c.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1778.f279d1cd.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1851.50e72f7c.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1778.f279d1cd.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1851.50e72f7c.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1851.50e72f7c.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1851.50e72f7c.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1851.50e72f7c.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1882.f07f0a1d.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1851.50e72f7c.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1882.f07f0a1d.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1851.50e72f7c.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1869.daad6453.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1869.daad6453.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1869.daad6453.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1869.daad6453.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8902.fc737248.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1869.daad6453.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8902.fc737248.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1869.daad6453.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1882.f07f0a1d.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1882.f07f0a1d.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1882.f07f0a1d.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1882.f07f0a1d.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1888.980ce494.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1882.f07f0a1d.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1888.980ce494.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1882.f07f0a1d.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1888.980ce494.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1888.980ce494.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1888.980ce494.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1888.980ce494.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1910.88cf73f4.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1888.980ce494.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1910.88cf73f4.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1888.980ce494.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1910.88cf73f4.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1910.88cf73f4.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/1910.88cf73f4.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1910.88cf73f4.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/2009.ca309c35.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1910.88cf73f4.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/2009.ca309c35.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/1910.88cf73f4.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/2009.ca309c35.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2009.ca309c35.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/2009.ca309c35.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2009.ca309c35.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/2011.cfb5b180.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2009.ca309c35.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/2011.cfb5b180.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2009.ca309c35.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/2011.cfb5b180.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2011.cfb5b180.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/2011.cfb5b180.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2011.cfb5b180.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/2027.42242eaa.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2011.cfb5b180.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/2027.42242eaa.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2011.cfb5b180.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/2027.42242eaa.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2027.42242eaa.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/2027.42242eaa.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2027.42242eaa.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/207.dc534702.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2027.42242eaa.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/207.dc534702.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2027.42242eaa.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/207.dc534702.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/207.dc534702.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/207.dc534702.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/207.dc534702.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/2076.640559f7.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/207.dc534702.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/2076.640559f7.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/207.dc534702.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/2076.640559f7.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2076.640559f7.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/2076.640559f7.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2076.640559f7.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/2080.73ea7df5.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2076.640559f7.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/2080.73ea7df5.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2076.640559f7.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/2080.73ea7df5.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2080.73ea7df5.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/2080.73ea7df5.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2080.73ea7df5.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/2092.fae343e8.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2080.73ea7df5.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/2092.fae343e8.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2080.73ea7df5.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/2092.fae343e8.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2092.fae343e8.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/2092.fae343e8.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2092.fae343e8.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/2111.1b5f8480.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2092.fae343e8.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/2111.1b5f8480.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2092.fae343e8.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/2111.1b5f8480.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2111.1b5f8480.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/2111.1b5f8480.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2111.1b5f8480.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/2172.3cb9bf31.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2111.1b5f8480.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/2172.3cb9bf31.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2111.1b5f8480.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/2172.3cb9bf31.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2172.3cb9bf31.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/2172.3cb9bf31.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2172.3cb9bf31.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/2181.8892c01c.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2172.3cb9bf31.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/2181.8892c01c.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2172.3cb9bf31.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/2181.8892c01c.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2181.8892c01c.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/2181.8892c01c.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2181.8892c01c.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/2202.482aa090.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2181.8892c01c.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/2202.482aa090.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2181.8892c01c.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/2202.482aa090.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2202.482aa090.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/2202.482aa090.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2202.482aa090.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/2227.0c29417c.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2202.482aa090.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/2227.0c29417c.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2202.482aa090.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/2227.0c29417c.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2227.0c29417c.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/2227.0c29417c.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2227.0c29417c.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/2252.8ba16355.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2227.0c29417c.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/2252.8ba16355.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2227.0c29417c.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/2252.8ba16355.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2252.8ba16355.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/2252.8ba16355.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2252.8ba16355.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/2301.3e1c8906.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2252.8ba16355.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/2301.3e1c8906.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2252.8ba16355.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/2301.3e1c8906.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2301.3e1c8906.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/2301.3e1c8906.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2301.3e1c8906.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/2423.cb31495e.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2301.3e1c8906.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/2423.cb31495e.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2301.3e1c8906.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/2423.cb31495e.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2423.cb31495e.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/2423.cb31495e.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2423.cb31495e.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/2447.f3c20c06.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2423.cb31495e.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/2447.f3c20c06.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2423.cb31495e.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/2447.f3c20c06.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2447.f3c20c06.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/2447.f3c20c06.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2447.f3c20c06.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/2455.f6530cc5.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2447.f3c20c06.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/2455.f6530cc5.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2447.f3c20c06.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/2455.f6530cc5.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2455.f6530cc5.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/2455.f6530cc5.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2455.f6530cc5.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/2468.acc189ed.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2455.f6530cc5.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/2468.acc189ed.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2455.f6530cc5.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/2468.acc189ed.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2468.acc189ed.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/2468.acc189ed.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2468.acc189ed.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/2490.44bedd93.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2468.acc189ed.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/2490.44bedd93.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2468.acc189ed.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/2490.44bedd93.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2490.44bedd93.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/2490.44bedd93.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2490.44bedd93.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/2496.b4d4039a.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2490.44bedd93.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/2496.b4d4039a.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2490.44bedd93.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/2496.b4d4039a.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2496.b4d4039a.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/2496.b4d4039a.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2496.b4d4039a.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/2557.e9bb4d27.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2496.b4d4039a.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/2557.e9bb4d27.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2496.b4d4039a.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/2557.e9bb4d27.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2557.e9bb4d27.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/2557.e9bb4d27.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2557.e9bb4d27.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/2612.10fbf2cb.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2557.e9bb4d27.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/2612.10fbf2cb.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2557.e9bb4d27.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/2612.10fbf2cb.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2612.10fbf2cb.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/2612.10fbf2cb.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2612.10fbf2cb.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/2880.c4ae9e92.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2612.10fbf2cb.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/2880.c4ae9e92.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2612.10fbf2cb.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/281.8dfb4b16.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/281.8dfb4b16.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/281.8dfb4b16.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/281.8dfb4b16.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/281.8dfb4b16.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/281.8dfb4b16.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/281.8dfb4b16.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/281.8dfb4b16.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/2880.c4ae9e92.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2880.c4ae9e92.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/2880.c4ae9e92.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2880.c4ae9e92.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/2967.50db3862.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2880.c4ae9e92.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/2967.50db3862.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2880.c4ae9e92.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/2967.50db3862.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2967.50db3862.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/2967.50db3862.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2967.50db3862.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/2993.0685d6bc.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2967.50db3862.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/2993.0685d6bc.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2967.50db3862.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/2993.0685d6bc.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2993.0685d6bc.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/2993.0685d6bc.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2993.0685d6bc.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3016.0f65694f.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2993.0685d6bc.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3016.0f65694f.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/2993.0685d6bc.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3016.0f65694f.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3016.0f65694f.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3016.0f65694f.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3016.0f65694f.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3037.df1119a5.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3016.0f65694f.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3037.df1119a5.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3016.0f65694f.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3037.df1119a5.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3037.df1119a5.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3037.df1119a5.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3037.df1119a5.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3075.f80a7faa.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3037.df1119a5.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3075.f80a7faa.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3037.df1119a5.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3075.f80a7faa.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3075.f80a7faa.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3075.f80a7faa.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3075.f80a7faa.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3105.91f2f020.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3075.f80a7faa.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3105.91f2f020.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3075.f80a7faa.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3105.91f2f020.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3105.91f2f020.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3105.91f2f020.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3105.91f2f020.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3107.a2e539dc.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3105.91f2f020.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3107.a2e539dc.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3105.91f2f020.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3107.a2e539dc.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3107.a2e539dc.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3107.a2e539dc.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3107.a2e539dc.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3111.05f4b107.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3107.a2e539dc.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3111.05f4b107.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3107.a2e539dc.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3111.05f4b107.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3111.05f4b107.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3111.05f4b107.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3111.05f4b107.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3118.44d9247d.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3111.05f4b107.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3118.44d9247d.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3111.05f4b107.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3118.44d9247d.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3118.44d9247d.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3118.44d9247d.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3118.44d9247d.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3350.35853242.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3118.44d9247d.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3350.35853242.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3118.44d9247d.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3350.35853242.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3350.35853242.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3350.35853242.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3350.35853242.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3386.115905f2.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3350.35853242.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3386.115905f2.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3350.35853242.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3386.115905f2.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3386.115905f2.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3386.115905f2.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3386.115905f2.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3395.fc64b4c1.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3386.115905f2.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3395.fc64b4c1.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3386.115905f2.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3395.fc64b4c1.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3395.fc64b4c1.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3395.fc64b4c1.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3395.fc64b4c1.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3410.7a951fb2.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3395.fc64b4c1.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3410.7a951fb2.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3395.fc64b4c1.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3410.7a951fb2.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3410.7a951fb2.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3410.7a951fb2.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3410.7a951fb2.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3449.8c724520.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3410.7a951fb2.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3449.8c724520.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3410.7a951fb2.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3449.8c724520.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3449.8c724520.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3449.8c724520.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3449.8c724520.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/346.6816c503.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3449.8c724520.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/346.6816c503.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3449.8c724520.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/346.6816c503.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/346.6816c503.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/346.6816c503.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/346.6816c503.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3513.3b8ff637.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/346.6816c503.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3513.3b8ff637.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/346.6816c503.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3513.3b8ff637.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3513.3b8ff637.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3513.3b8ff637.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3513.3b8ff637.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3618.97f3baf4.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3513.3b8ff637.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3618.97f3baf4.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3513.3b8ff637.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3618.97f3baf4.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3618.97f3baf4.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3618.97f3baf4.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3618.97f3baf4.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3636.874609a2.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3618.97f3baf4.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3636.874609a2.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3618.97f3baf4.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3636.874609a2.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3636.874609a2.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3636.874609a2.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3636.874609a2.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3648.7f4751c2.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3636.874609a2.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3648.7f4751c2.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3636.874609a2.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3648.7f4751c2.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3648.7f4751c2.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3648.7f4751c2.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3648.7f4751c2.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3716.f732acfb.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3648.7f4751c2.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3716.f732acfb.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3648.7f4751c2.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3716.f732acfb.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3716.f732acfb.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3716.f732acfb.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3716.f732acfb.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/372.3f29f28f.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3716.f732acfb.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/372.3f29f28f.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3716.f732acfb.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/372.3f29f28f.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/372.3f29f28f.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/372.3f29f28f.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/372.3f29f28f.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3770.007f6481.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/372.3f29f28f.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3770.007f6481.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/372.3f29f28f.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3770.007f6481.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3770.007f6481.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3770.007f6481.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3770.007f6481.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3852.98b45d65.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3770.007f6481.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3852.98b45d65.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3770.007f6481.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3852.98b45d65.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3852.98b45d65.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3852.98b45d65.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3852.98b45d65.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3858.002ff261.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3852.98b45d65.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3858.002ff261.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3852.98b45d65.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3858.002ff261.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3858.002ff261.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3858.002ff261.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3858.002ff261.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3866.1193117e.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3858.002ff261.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3866.1193117e.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3858.002ff261.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3866.1193117e.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3866.1193117e.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3866.1193117e.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3866.1193117e.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3941.bbee473e.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3866.1193117e.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3941.bbee473e.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3866.1193117e.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3941.bbee473e.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3941.bbee473e.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3941.bbee473e.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3941.bbee473e.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3956.43790616.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3941.bbee473e.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3956.43790616.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3941.bbee473e.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3948.ca4bddea.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3948.ca4bddea.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3948.ca4bddea.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3948.ca4bddea.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3948.ca4bddea.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3948.ca4bddea.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3948.ca4bddea.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3948.ca4bddea.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3956.43790616.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3956.43790616.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3956.43790616.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3956.43790616.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3969.2cf8ec77.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3956.43790616.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3969.2cf8ec77.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3956.43790616.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3969.2cf8ec77.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3969.2cf8ec77.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/3969.2cf8ec77.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3969.2cf8ec77.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4093.6ecd4f21.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3969.2cf8ec77.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4093.6ecd4f21.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/3969.2cf8ec77.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4093.6ecd4f21.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4093.6ecd4f21.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4093.6ecd4f21.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4093.6ecd4f21.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4099.1db429ed.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4093.6ecd4f21.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4099.1db429ed.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4093.6ecd4f21.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4099.1db429ed.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4099.1db429ed.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4099.1db429ed.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4099.1db429ed.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4149.02bec4c1.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4099.1db429ed.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4149.02bec4c1.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4099.1db429ed.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4149.02bec4c1.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4149.02bec4c1.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4149.02bec4c1.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4149.02bec4c1.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4190.892ea34a.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4149.02bec4c1.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4190.892ea34a.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4149.02bec4c1.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4190.892ea34a.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4190.892ea34a.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4190.892ea34a.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4190.892ea34a.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/420.c386c9c2.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4190.892ea34a.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/420.c386c9c2.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4190.892ea34a.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/420.c386c9c2.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/420.c386c9c2.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/420.c386c9c2.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/420.c386c9c2.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4234.8a693543.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/420.c386c9c2.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4234.8a693543.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/420.c386c9c2.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4234.8a693543.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4234.8a693543.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4234.8a693543.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4234.8a693543.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4238.20c56b2d.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4234.8a693543.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4238.20c56b2d.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4234.8a693543.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4238.20c56b2d.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4238.20c56b2d.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4238.20c56b2d.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4238.20c56b2d.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4301.cb8866ae.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4238.20c56b2d.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4301.cb8866ae.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4238.20c56b2d.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4301.cb8866ae.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4301.cb8866ae.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4301.cb8866ae.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4301.cb8866ae.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4353.4487c361.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4301.cb8866ae.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4353.4487c361.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4301.cb8866ae.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4322.343e0435.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4322.343e0435.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4322.343e0435.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4322.343e0435.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose__internal___mf_bootstrap.4aec5d69.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4322.343e0435.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose__internal___mf_bootstrap.4aec5d69.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4322.343e0435.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4353.4487c361.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4353.4487c361.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4353.4487c361.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4353.4487c361.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4370.e2476933.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4353.4487c361.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4370.e2476933.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4353.4487c361.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4370.e2476933.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4370.e2476933.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4370.e2476933.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4370.e2476933.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4374.c99deb71.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4370.e2476933.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4374.c99deb71.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4370.e2476933.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4374.c99deb71.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4374.c99deb71.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4374.c99deb71.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4374.c99deb71.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/438.b6d0170e.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4374.c99deb71.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/438.b6d0170e.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4374.c99deb71.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/438.b6d0170e.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/438.b6d0170e.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/438.b6d0170e.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/438.b6d0170e.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4397.da3d320a.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/438.b6d0170e.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4397.da3d320a.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/438.b6d0170e.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4397.da3d320a.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4397.da3d320a.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4397.da3d320a.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4397.da3d320a.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4434.86886f2f.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4397.da3d320a.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4434.86886f2f.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4397.da3d320a.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4434.86886f2f.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4434.86886f2f.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4434.86886f2f.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4434.86886f2f.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/448.ff033188.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4434.86886f2f.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/448.ff033188.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4434.86886f2f.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/448.ff033188.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/448.ff033188.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/448.ff033188.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/448.ff033188.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4487.6d152c7f.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/448.ff033188.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4487.6d152c7f.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/448.ff033188.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4487.6d152c7f.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4487.6d152c7f.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4487.6d152c7f.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4487.6d152c7f.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4513.90c6869b.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4487.6d152c7f.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4513.90c6869b.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4487.6d152c7f.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4513.90c6869b.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4513.90c6869b.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4513.90c6869b.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4513.90c6869b.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4515.16482028.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4513.90c6869b.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4515.16482028.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4513.90c6869b.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4515.16482028.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4515.16482028.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4515.16482028.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4515.16482028.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4549.74ab684b.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4515.16482028.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4549.74ab684b.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4515.16482028.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4549.74ab684b.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4549.74ab684b.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4549.74ab684b.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4549.74ab684b.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4590.ffd38ea0.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4549.74ab684b.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4590.ffd38ea0.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4549.74ab684b.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4590.ffd38ea0.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4590.ffd38ea0.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4590.ffd38ea0.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4590.ffd38ea0.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/46.29b9e7fb.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4590.ffd38ea0.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/46.29b9e7fb.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4590.ffd38ea0.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/46.29b9e7fb.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/46.29b9e7fb.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/46.29b9e7fb.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/46.29b9e7fb.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4611.cad23c63.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/46.29b9e7fb.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4611.cad23c63.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/46.29b9e7fb.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4611.cad23c63.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4611.cad23c63.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4611.cad23c63.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4611.cad23c63.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4621.ec5e4711.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4611.cad23c63.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4621.ec5e4711.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4611.cad23c63.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4621.ec5e4711.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4621.ec5e4711.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4621.ec5e4711.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4621.ec5e4711.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4650.14b4e4d5.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4621.ec5e4711.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4650.14b4e4d5.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4621.ec5e4711.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4650.14b4e4d5.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4650.14b4e4d5.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4650.14b4e4d5.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4650.14b4e4d5.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4778.612171c0.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4650.14b4e4d5.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4778.612171c0.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4650.14b4e4d5.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4778.612171c0.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4778.612171c0.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4778.612171c0.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4778.612171c0.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4804.c516461b.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4778.612171c0.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4804.c516461b.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4778.612171c0.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4804.c516461b.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4804.c516461b.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4804.c516461b.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4804.c516461b.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4854.4e190585.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4804.c516461b.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4854.4e190585.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4804.c516461b.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4819.c23fd1b3.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4819.c23fd1b3.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4819.c23fd1b3.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4819.c23fd1b3.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4819.c23fd1b3.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4819.c23fd1b3.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4819.c23fd1b3.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4819.c23fd1b3.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4854.4e190585.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4854.4e190585.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4854.4e190585.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4854.4e190585.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4855.4f5863cc.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4854.4e190585.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4855.4f5863cc.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4854.4e190585.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4855.4f5863cc.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4855.4f5863cc.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4855.4f5863cc.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4855.4f5863cc.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4857.30a58545.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4855.4f5863cc.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4857.30a58545.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4855.4f5863cc.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4857.30a58545.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4857.30a58545.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4857.30a58545.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4857.30a58545.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4864.192b3c9c.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4857.30a58545.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4864.192b3c9c.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4857.30a58545.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4864.192b3c9c.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4864.192b3c9c.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4864.192b3c9c.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4864.192b3c9c.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4898.dcac9ca5.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4864.192b3c9c.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4898.dcac9ca5.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4864.192b3c9c.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4876.f79595ca.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4876.f79595ca.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4876.f79595ca.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4876.f79595ca.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4876.f79595ca.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4876.f79595ca.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4876.f79595ca.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4876.f79595ca.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4898.dcac9ca5.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4898.dcac9ca5.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/4898.dcac9ca5.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4898.dcac9ca5.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5012.9980a00a.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4898.dcac9ca5.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5012.9980a00a.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/4898.dcac9ca5.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5012.9980a00a.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5012.9980a00a.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5012.9980a00a.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5012.9980a00a.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5022.a2a1d487.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5012.9980a00a.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5022.a2a1d487.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5012.9980a00a.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5022.a2a1d487.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5022.a2a1d487.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5022.a2a1d487.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5022.a2a1d487.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5032.bf3d9c93.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5022.a2a1d487.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5032.bf3d9c93.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5022.a2a1d487.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5032.bf3d9c93.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5032.bf3d9c93.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5032.bf3d9c93.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5032.bf3d9c93.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5153.16512cb0.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5032.bf3d9c93.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5153.16512cb0.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5032.bf3d9c93.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5153.16512cb0.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5153.16512cb0.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5153.16512cb0.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5153.16512cb0.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/516.0e2f23ae.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5153.16512cb0.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/516.0e2f23ae.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5153.16512cb0.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/516.0e2f23ae.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/516.0e2f23ae.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/516.0e2f23ae.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/516.0e2f23ae.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5182.cdd2efd8.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/516.0e2f23ae.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5182.cdd2efd8.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/516.0e2f23ae.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5182.cdd2efd8.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5182.cdd2efd8.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5182.cdd2efd8.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5182.cdd2efd8.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5221.5e6b1bc4.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5182.cdd2efd8.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5221.5e6b1bc4.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5182.cdd2efd8.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5221.5e6b1bc4.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5221.5e6b1bc4.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5221.5e6b1bc4.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5221.5e6b1bc4.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5232.c6d51e6e.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5221.5e6b1bc4.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5232.c6d51e6e.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5221.5e6b1bc4.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5232.c6d51e6e.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5232.c6d51e6e.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5232.c6d51e6e.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5232.c6d51e6e.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5239.8451c759.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5232.c6d51e6e.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5239.8451c759.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5232.c6d51e6e.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5239.8451c759.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5239.8451c759.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5239.8451c759.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5239.8451c759.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/526.3100dd15.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5239.8451c759.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/526.3100dd15.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5239.8451c759.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/526.3100dd15.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/526.3100dd15.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/526.3100dd15.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/526.3100dd15.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5263.e342215d.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/526.3100dd15.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5263.e342215d.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/526.3100dd15.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5263.e342215d.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5263.e342215d.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5263.e342215d.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5263.e342215d.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5267.2c16866e.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5263.e342215d.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5267.2c16866e.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5263.e342215d.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5267.2c16866e.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5267.2c16866e.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5267.2c16866e.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5267.2c16866e.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5277.b1fb56c1.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5267.2c16866e.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5277.b1fb56c1.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5267.2c16866e.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5277.b1fb56c1.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5277.b1fb56c1.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5277.b1fb56c1.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5277.b1fb56c1.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/528.336a27ba.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5277.b1fb56c1.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/528.336a27ba.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5277.b1fb56c1.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/528.336a27ba.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/528.336a27ba.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/528.336a27ba.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/528.336a27ba.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/531.727a2b70.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/528.336a27ba.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/531.727a2b70.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/528.336a27ba.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/531.727a2b70.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/531.727a2b70.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/531.727a2b70.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/531.727a2b70.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5362.71548a48.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/531.727a2b70.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5362.71548a48.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/531.727a2b70.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5362.71548a48.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5362.71548a48.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5362.71548a48.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5362.71548a48.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5424.af1b8211.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5362.71548a48.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5424.af1b8211.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5362.71548a48.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5424.af1b8211.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5424.af1b8211.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5424.af1b8211.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5424.af1b8211.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5428.44819fb0.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5424.af1b8211.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5428.44819fb0.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5424.af1b8211.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5428.44819fb0.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5428.44819fb0.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5428.44819fb0.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5428.44819fb0.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5435.19dc6838.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5428.44819fb0.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5435.19dc6838.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5428.44819fb0.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5435.19dc6838.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5435.19dc6838.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5435.19dc6838.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5435.19dc6838.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5539.3643c747.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5435.19dc6838.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5539.3643c747.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5435.19dc6838.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5539.3643c747.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5539.3643c747.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5539.3643c747.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5539.3643c747.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5540.fb4920b4.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5539.3643c747.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5540.fb4920b4.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5539.3643c747.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5540.fb4920b4.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5540.fb4920b4.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5540.fb4920b4.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5540.fb4920b4.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5559.18aa4708.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5540.fb4920b4.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5559.18aa4708.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5540.fb4920b4.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5559.18aa4708.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5559.18aa4708.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5559.18aa4708.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5559.18aa4708.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5627.5412f3ad.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5559.18aa4708.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5627.5412f3ad.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5559.18aa4708.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5627.5412f3ad.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5627.5412f3ad.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5627.5412f3ad.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5627.5412f3ad.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5639.f1f63e2c.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5627.5412f3ad.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5639.f1f63e2c.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5627.5412f3ad.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5639.f1f63e2c.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5639.f1f63e2c.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5639.f1f63e2c.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5639.f1f63e2c.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5647.9b011d98.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5639.f1f63e2c.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5647.9b011d98.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5639.f1f63e2c.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5647.9b011d98.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5647.9b011d98.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5647.9b011d98.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5647.9b011d98.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5694.3d4e7cd2.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5647.9b011d98.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5694.3d4e7cd2.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5647.9b011d98.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5694.3d4e7cd2.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5694.3d4e7cd2.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5694.3d4e7cd2.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5694.3d4e7cd2.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5704.3a9a4a6c.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5694.3d4e7cd2.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5704.3a9a4a6c.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5694.3d4e7cd2.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5704.3a9a4a6c.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5704.3a9a4a6c.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5704.3a9a4a6c.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5704.3a9a4a6c.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5705.f6f1946a.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5704.3a9a4a6c.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5705.f6f1946a.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5704.3a9a4a6c.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5705.f6f1946a.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5705.f6f1946a.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5705.f6f1946a.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5705.f6f1946a.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5765.53f199f6.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5705.f6f1946a.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5765.53f199f6.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5705.f6f1946a.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5765.53f199f6.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5765.53f199f6.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5765.53f199f6.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5765.53f199f6.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5791.e28d60a8.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5765.53f199f6.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5791.e28d60a8.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5765.53f199f6.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5791.e28d60a8.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5791.e28d60a8.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5791.e28d60a8.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5791.e28d60a8.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5818.bab2860a.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5791.e28d60a8.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5818.bab2860a.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5791.e28d60a8.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5818.bab2860a.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5818.bab2860a.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5818.bab2860a.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5818.bab2860a.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5854.b6a22ba5.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5818.bab2860a.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5854.b6a22ba5.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5818.bab2860a.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5853.b21bc216.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5853.b21bc216.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5853.b21bc216.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5853.b21bc216.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5853.b21bc216.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5853.b21bc216.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5853.b21bc216.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5853.b21bc216.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5854.b6a22ba5.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5854.b6a22ba5.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5854.b6a22ba5.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5854.b6a22ba5.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5868.2a3bb0e0.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5854.b6a22ba5.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5868.2a3bb0e0.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5854.b6a22ba5.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5868.2a3bb0e0.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5868.2a3bb0e0.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5868.2a3bb0e0.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5868.2a3bb0e0.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5887.5599eda1.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5868.2a3bb0e0.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5887.5599eda1.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5868.2a3bb0e0.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5887.5599eda1.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5887.5599eda1.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5887.5599eda1.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5887.5599eda1.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5933.0a25011f.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5887.5599eda1.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5933.0a25011f.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5887.5599eda1.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5933.0a25011f.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5933.0a25011f.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5933.0a25011f.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5933.0a25011f.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5976.3732d0b9.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5933.0a25011f.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5976.3732d0b9.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5933.0a25011f.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5976.3732d0b9.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5976.3732d0b9.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5976.3732d0b9.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5976.3732d0b9.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5978.246f8ba2.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5976.3732d0b9.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5978.246f8ba2.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5976.3732d0b9.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5978.246f8ba2.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5978.246f8ba2.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5978.246f8ba2.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5978.246f8ba2.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5991.735b928d.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5978.246f8ba2.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5991.735b928d.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5978.246f8ba2.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5991.735b928d.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5991.735b928d.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/5991.735b928d.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5991.735b928d.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6024.4826005c.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5991.735b928d.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6024.4826005c.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/5991.735b928d.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6024.4826005c.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6024.4826005c.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6024.4826005c.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6024.4826005c.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6040.016dd42b.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6024.4826005c.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6040.016dd42b.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6024.4826005c.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6040.016dd42b.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6040.016dd42b.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6040.016dd42b.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6040.016dd42b.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6060.f5aecc63.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6040.016dd42b.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6060.f5aecc63.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6040.016dd42b.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6060.f5aecc63.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6060.f5aecc63.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6060.f5aecc63.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6060.f5aecc63.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6132.faee4341.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6060.f5aecc63.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6132.faee4341.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6060.f5aecc63.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6132.faee4341.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6132.faee4341.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6132.faee4341.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6132.faee4341.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6134.a5153d0d.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6132.faee4341.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6134.a5153d0d.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6132.faee4341.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6134.a5153d0d.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6134.a5153d0d.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6134.a5153d0d.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6134.a5153d0d.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6144.88fc1f36.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6134.a5153d0d.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6144.88fc1f36.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6134.a5153d0d.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6144.88fc1f36.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6144.88fc1f36.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6144.88fc1f36.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6144.88fc1f36.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6153.d6711a99.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6144.88fc1f36.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6153.d6711a99.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6144.88fc1f36.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6153.d6711a99.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6153.d6711a99.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6153.d6711a99.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6153.d6711a99.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6175.47ee7301.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6153.d6711a99.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6175.47ee7301.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6153.d6711a99.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6175.47ee7301.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6175.47ee7301.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6175.47ee7301.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6175.47ee7301.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6177.c04a6699.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6175.47ee7301.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6177.c04a6699.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6175.47ee7301.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6177.c04a6699.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6177.c04a6699.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6177.c04a6699.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6177.c04a6699.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6210.0866341b.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6177.c04a6699.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6210.0866341b.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6177.c04a6699.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6210.0866341b.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6210.0866341b.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6210.0866341b.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6210.0866341b.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6269.17488d08.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6210.0866341b.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6269.17488d08.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6210.0866341b.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6269.17488d08.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6269.17488d08.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6269.17488d08.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6269.17488d08.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6274.913bbdc8.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6269.17488d08.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6274.913bbdc8.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6269.17488d08.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6274.913bbdc8.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6274.913bbdc8.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6274.913bbdc8.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6274.913bbdc8.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6301.5c2999cb.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6274.913bbdc8.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6301.5c2999cb.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6274.913bbdc8.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6301.5c2999cb.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6301.5c2999cb.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6301.5c2999cb.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6301.5c2999cb.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6344.c189db04.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6301.5c2999cb.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6344.c189db04.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6301.5c2999cb.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6344.c189db04.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6344.c189db04.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6344.c189db04.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6344.c189db04.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6421.7c99f384.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6344.c189db04.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6421.7c99f384.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6344.c189db04.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6421.7c99f384.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6421.7c99f384.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6421.7c99f384.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6421.7c99f384.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6458.3374e02c.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6421.7c99f384.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6458.3374e02c.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6421.7c99f384.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6458.3374e02c.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6458.3374e02c.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6458.3374e02c.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6458.3374e02c.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6497.e801df72.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6458.3374e02c.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6497.e801df72.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6458.3374e02c.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6497.e801df72.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6497.e801df72.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6497.e801df72.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6497.e801df72.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6520.40be04a5.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6497.e801df72.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6520.40be04a5.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6497.e801df72.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6520.40be04a5.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6520.40be04a5.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6520.40be04a5.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6520.40be04a5.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6526.2f880946.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6520.40be04a5.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6526.2f880946.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6520.40be04a5.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6526.2f880946.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6526.2f880946.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6526.2f880946.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6526.2f880946.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6547.266123c1.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6526.2f880946.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6547.266123c1.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6526.2f880946.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6534.241f683d.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6534.241f683d.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6534.241f683d.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6534.241f683d.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6534.241f683d.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6534.241f683d.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6534.241f683d.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6534.241f683d.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6547.266123c1.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6547.266123c1.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6547.266123c1.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6547.266123c1.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6564.02a274f5.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6547.266123c1.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6564.02a274f5.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6547.266123c1.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6564.02a274f5.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6564.02a274f5.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6564.02a274f5.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6564.02a274f5.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6565.565c63bb.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6564.02a274f5.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6565.565c63bb.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6564.02a274f5.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6565.565c63bb.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6565.565c63bb.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6565.565c63bb.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6565.565c63bb.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6648.51d04568.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6565.565c63bb.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6648.51d04568.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6565.565c63bb.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6648.51d04568.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6648.51d04568.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6648.51d04568.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6648.51d04568.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6671.78f65d14.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6648.51d04568.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6671.78f65d14.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6648.51d04568.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6671.78f65d14.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6671.78f65d14.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6671.78f65d14.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6671.78f65d14.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6686.526f417d.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6671.78f65d14.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6686.526f417d.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6671.78f65d14.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6686.526f417d.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6686.526f417d.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6686.526f417d.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6686.526f417d.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6693.cf072c5b.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6686.526f417d.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6693.cf072c5b.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6686.526f417d.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6693.cf072c5b.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6693.cf072c5b.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6693.cf072c5b.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6693.cf072c5b.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6732.d6b8cdc4.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6693.cf072c5b.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6732.d6b8cdc4.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6693.cf072c5b.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6732.d6b8cdc4.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6732.d6b8cdc4.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6732.d6b8cdc4.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6732.d6b8cdc4.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6743.b12f6c26.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6732.d6b8cdc4.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6743.b12f6c26.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6732.d6b8cdc4.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6743.b12f6c26.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6743.b12f6c26.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6743.b12f6c26.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6743.b12f6c26.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6789.3dc3b52a.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6743.b12f6c26.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6789.3dc3b52a.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6743.b12f6c26.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6789.3dc3b52a.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6789.3dc3b52a.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6789.3dc3b52a.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6789.3dc3b52a.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6807.43933893.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6789.3dc3b52a.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6807.43933893.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6789.3dc3b52a.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6807.43933893.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6807.43933893.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6807.43933893.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6807.43933893.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6816.8f55482c.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6807.43933893.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6816.8f55482c.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6807.43933893.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6816.8f55482c.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6816.8f55482c.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6816.8f55482c.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6816.8f55482c.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6913.dae2685b.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6816.8f55482c.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6913.dae2685b.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6816.8f55482c.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6913.dae2685b.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6913.dae2685b.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6913.dae2685b.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6913.dae2685b.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6938.45560ce7.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6913.dae2685b.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6938.45560ce7.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6913.dae2685b.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6938.45560ce7.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6938.45560ce7.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6938.45560ce7.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6938.45560ce7.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6974.5f2c957b.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6938.45560ce7.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6974.5f2c957b.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6938.45560ce7.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6974.5f2c957b.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6974.5f2c957b.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/6974.5f2c957b.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6974.5f2c957b.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7046.648a6262.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6974.5f2c957b.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7046.648a6262.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/6974.5f2c957b.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7046.648a6262.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7046.648a6262.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7046.648a6262.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7046.648a6262.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7050.7467db7e.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7046.648a6262.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7050.7467db7e.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7046.648a6262.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7050.7467db7e.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7050.7467db7e.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7050.7467db7e.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7050.7467db7e.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7065.b8fc6306.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7050.7467db7e.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7065.b8fc6306.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7050.7467db7e.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7065.b8fc6306.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7065.b8fc6306.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7065.b8fc6306.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7065.b8fc6306.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/707.5d05993a.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7065.b8fc6306.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/707.5d05993a.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7065.b8fc6306.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/707.5d05993a.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/707.5d05993a.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/707.5d05993a.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/707.5d05993a.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7071.bc68c184.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/707.5d05993a.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7071.bc68c184.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/707.5d05993a.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7071.bc68c184.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7071.bc68c184.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7071.bc68c184.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7071.bc68c184.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7085.68695551.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7071.bc68c184.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7085.68695551.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7071.bc68c184.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7085.68695551.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7085.68695551.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7085.68695551.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7085.68695551.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7121.a3f1cdbc.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7085.68695551.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7121.a3f1cdbc.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7085.68695551.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7121.a3f1cdbc.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7121.a3f1cdbc.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7121.a3f1cdbc.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7121.a3f1cdbc.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7138.f2408353.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7121.a3f1cdbc.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7138.f2408353.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7121.a3f1cdbc.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7138.f2408353.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7138.f2408353.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7138.f2408353.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7138.f2408353.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7219.8c91f726.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7138.f2408353.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7219.8c91f726.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7138.f2408353.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7219.8c91f726.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7219.8c91f726.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7219.8c91f726.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7219.8c91f726.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7311.2ab0eccd.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7219.8c91f726.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7311.2ab0eccd.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7219.8c91f726.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7311.2ab0eccd.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7311.2ab0eccd.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7311.2ab0eccd.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7311.2ab0eccd.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7337.a17f68de.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7311.2ab0eccd.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7337.a17f68de.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7311.2ab0eccd.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7337.a17f68de.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7337.a17f68de.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7337.a17f68de.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7337.a17f68de.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7374.352137d7.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7337.a17f68de.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7374.352137d7.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7337.a17f68de.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7374.352137d7.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7374.352137d7.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7374.352137d7.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7374.352137d7.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7386.bb50ee06.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7374.352137d7.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7386.bb50ee06.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7374.352137d7.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7386.bb50ee06.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7386.bb50ee06.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7386.bb50ee06.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7386.bb50ee06.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7392.61615569.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7386.bb50ee06.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7392.61615569.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7386.bb50ee06.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7392.61615569.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7392.61615569.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7392.61615569.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7392.61615569.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7404.12da9f5b.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7392.61615569.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7404.12da9f5b.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7392.61615569.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7404.12da9f5b.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7404.12da9f5b.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7404.12da9f5b.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7404.12da9f5b.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7467.95d94a75.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7404.12da9f5b.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7467.95d94a75.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7404.12da9f5b.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7448.892a4f4c.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7448.892a4f4c.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7448.892a4f4c.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7448.892a4f4c.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7448.892a4f4c.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7448.892a4f4c.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7448.892a4f4c.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7448.892a4f4c.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7467.95d94a75.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7467.95d94a75.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7467.95d94a75.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7467.95d94a75.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7468.eeba76a0.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7467.95d94a75.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7468.eeba76a0.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7467.95d94a75.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7468.eeba76a0.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7468.eeba76a0.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7468.eeba76a0.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7468.eeba76a0.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7472.9a55331e.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7468.eeba76a0.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7472.9a55331e.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7468.eeba76a0.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7472.9a55331e.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7472.9a55331e.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7472.9a55331e.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7472.9a55331e.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7502.8f68529a.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7472.9a55331e.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7502.8f68529a.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7472.9a55331e.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7502.8f68529a.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7502.8f68529a.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7502.8f68529a.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7502.8f68529a.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7516.8977ec47.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7502.8f68529a.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7516.8977ec47.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7502.8f68529a.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7516.8977ec47.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7516.8977ec47.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7516.8977ec47.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7516.8977ec47.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/753.f617a5fd.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7516.8977ec47.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/753.f617a5fd.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7516.8977ec47.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/753.f617a5fd.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/753.f617a5fd.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/753.f617a5fd.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/753.f617a5fd.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7551.d1469cb7.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/753.f617a5fd.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7551.d1469cb7.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/753.f617a5fd.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7551.d1469cb7.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7551.d1469cb7.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7551.d1469cb7.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7551.d1469cb7.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7553.3b83762f.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7551.d1469cb7.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7553.3b83762f.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7551.d1469cb7.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7553.3b83762f.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7553.3b83762f.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7553.3b83762f.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7553.3b83762f.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7577.a926bedf.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7553.3b83762f.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7577.a926bedf.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7553.3b83762f.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7577.a926bedf.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7577.a926bedf.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7577.a926bedf.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7577.a926bedf.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7599.f501b0a1.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7577.a926bedf.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7599.f501b0a1.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7577.a926bedf.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7599.f501b0a1.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7599.f501b0a1.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7599.f501b0a1.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7599.f501b0a1.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7602.3f85988f.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7599.f501b0a1.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7602.3f85988f.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7599.f501b0a1.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7602.3f85988f.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7602.3f85988f.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7602.3f85988f.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7602.3f85988f.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7642.9c387651.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7602.3f85988f.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7642.9c387651.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7602.3f85988f.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7642.9c387651.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7642.9c387651.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7642.9c387651.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7642.9c387651.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7658.2d37af52.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7642.9c387651.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7658.2d37af52.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7642.9c387651.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7658.2d37af52.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7658.2d37af52.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7658.2d37af52.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7658.2d37af52.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7675.8fe0706f.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7658.2d37af52.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7675.8fe0706f.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7658.2d37af52.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7675.8fe0706f.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7675.8fe0706f.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7675.8fe0706f.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7675.8fe0706f.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7696.a959d2b1.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7675.8fe0706f.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7696.a959d2b1.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7675.8fe0706f.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7696.a959d2b1.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7696.a959d2b1.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7696.a959d2b1.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7696.a959d2b1.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7698.c996ed42.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7696.a959d2b1.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7698.c996ed42.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7696.a959d2b1.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7698.c996ed42.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7698.c996ed42.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7698.c996ed42.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7698.c996ed42.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7700.56fbbd81.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7698.c996ed42.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7700.56fbbd81.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7698.c996ed42.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7700.56fbbd81.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7700.56fbbd81.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7700.56fbbd81.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7700.56fbbd81.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7775.942e75ea.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7700.56fbbd81.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7775.942e75ea.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7700.56fbbd81.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7775.942e75ea.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7775.942e75ea.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7775.942e75ea.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7775.942e75ea.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7800.b8d10431.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7775.942e75ea.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7800.b8d10431.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7775.942e75ea.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7800.b8d10431.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7800.b8d10431.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7800.b8d10431.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7800.b8d10431.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7809.b208df94.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7800.b8d10431.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7809.b208df94.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7800.b8d10431.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7809.b208df94.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7809.b208df94.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7809.b208df94.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7809.b208df94.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7998.52fcf760.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7809.b208df94.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7998.52fcf760.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7809.b208df94.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7830.a6bff57b.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7830.a6bff57b.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7830.a6bff57b.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7830.a6bff57b.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7830.a6bff57b.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7830.a6bff57b.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7830.a6bff57b.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7830.a6bff57b.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7981.970f7b9e.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7981.970f7b9e.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7981.970f7b9e.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7981.970f7b9e.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7981.970f7b9e.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7981.970f7b9e.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7981.970f7b9e.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7981.970f7b9e.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7998.52fcf760.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7998.52fcf760.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/7998.52fcf760.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7998.52fcf760.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8006.5c3fb0f6.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7998.52fcf760.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8006.5c3fb0f6.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/7998.52fcf760.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8006.5c3fb0f6.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8006.5c3fb0f6.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8006.5c3fb0f6.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8006.5c3fb0f6.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8096.8918e684.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8006.5c3fb0f6.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8096.8918e684.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8006.5c3fb0f6.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8096.8918e684.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8096.8918e684.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8096.8918e684.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8096.8918e684.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8097.69160b55.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8096.8918e684.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8097.69160b55.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8096.8918e684.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8097.69160b55.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8097.69160b55.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8097.69160b55.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8097.69160b55.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8165.0098ecbf.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8097.69160b55.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8165.0098ecbf.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8097.69160b55.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8165.0098ecbf.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8165.0098ecbf.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8165.0098ecbf.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8165.0098ecbf.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8192.317eb32f.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8165.0098ecbf.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8192.317eb32f.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8165.0098ecbf.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8192.317eb32f.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8192.317eb32f.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8192.317eb32f.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8192.317eb32f.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8226.765afaed.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8192.317eb32f.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8226.765afaed.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8192.317eb32f.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8226.765afaed.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8226.765afaed.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8226.765afaed.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8226.765afaed.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8275.7d57d2b4.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8226.765afaed.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8275.7d57d2b4.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8226.765afaed.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8275.7d57d2b4.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8275.7d57d2b4.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8275.7d57d2b4.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8275.7d57d2b4.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8308.6ff2a32b.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8275.7d57d2b4.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8308.6ff2a32b.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8275.7d57d2b4.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8308.6ff2a32b.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8308.6ff2a32b.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8308.6ff2a32b.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8308.6ff2a32b.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/833.94eee6df.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8308.6ff2a32b.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/833.94eee6df.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8308.6ff2a32b.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/833.94eee6df.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/833.94eee6df.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/833.94eee6df.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/833.94eee6df.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8336.063332be.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/833.94eee6df.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8336.063332be.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/833.94eee6df.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8336.063332be.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8336.063332be.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8336.063332be.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8336.063332be.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8360.54b8db04.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8336.063332be.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8360.54b8db04.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8336.063332be.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8360.54b8db04.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8360.54b8db04.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8360.54b8db04.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8360.54b8db04.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8385.16a46dc2.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8360.54b8db04.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8385.16a46dc2.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8360.54b8db04.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8385.16a46dc2.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8385.16a46dc2.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8385.16a46dc2.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8385.16a46dc2.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8420.fb4b3f98.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8385.16a46dc2.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8420.fb4b3f98.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8385.16a46dc2.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8420.fb4b3f98.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8420.fb4b3f98.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8420.fb4b3f98.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8420.fb4b3f98.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8434.fcc60125.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8420.fb4b3f98.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8434.fcc60125.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8420.fb4b3f98.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8434.fcc60125.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8434.fcc60125.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8434.fcc60125.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8434.fcc60125.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8476.a2da556e.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8434.fcc60125.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8476.a2da556e.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8434.fcc60125.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8476.a2da556e.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8476.a2da556e.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8476.a2da556e.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8476.a2da556e.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8500.f6813f14.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8476.a2da556e.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8500.f6813f14.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8476.a2da556e.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8500.f6813f14.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8500.f6813f14.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8500.f6813f14.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8500.f6813f14.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8511.d1d99ec3.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8500.f6813f14.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8511.d1d99ec3.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8500.f6813f14.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8511.d1d99ec3.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8511.d1d99ec3.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8511.d1d99ec3.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8511.d1d99ec3.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8526.3a758371.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8511.d1d99ec3.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8526.3a758371.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8511.d1d99ec3.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8526.3a758371.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8526.3a758371.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8526.3a758371.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8526.3a758371.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8554.e76562c3.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8526.3a758371.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8554.e76562c3.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8526.3a758371.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8554.e76562c3.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8554.e76562c3.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8554.e76562c3.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8554.e76562c3.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8559.0bb884a7.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8554.e76562c3.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8559.0bb884a7.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8554.e76562c3.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8559.0bb884a7.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8559.0bb884a7.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8559.0bb884a7.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8559.0bb884a7.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/862.d21f7451.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8559.0bb884a7.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/862.d21f7451.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8559.0bb884a7.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/862.d21f7451.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/862.d21f7451.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/862.d21f7451.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/862.d21f7451.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8625.2a5d3e9a.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/862.d21f7451.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8625.2a5d3e9a.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/862.d21f7451.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8625.2a5d3e9a.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8625.2a5d3e9a.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8625.2a5d3e9a.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8625.2a5d3e9a.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8636.591240c3.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8625.2a5d3e9a.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8636.591240c3.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8625.2a5d3e9a.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8636.591240c3.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8636.591240c3.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8636.591240c3.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8636.591240c3.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8642.8b0a997f.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8636.591240c3.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8642.8b0a997f.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8636.591240c3.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8642.8b0a997f.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8642.8b0a997f.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8642.8b0a997f.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8642.8b0a997f.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8690.64b37ae9.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8642.8b0a997f.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8690.64b37ae9.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8642.8b0a997f.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8690.64b37ae9.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8690.64b37ae9.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8690.64b37ae9.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8690.64b37ae9.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8723.2f1df9d5.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8690.64b37ae9.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8723.2f1df9d5.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8690.64b37ae9.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8723.2f1df9d5.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8723.2f1df9d5.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8723.2f1df9d5.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8723.2f1df9d5.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8791.c8a6f64e.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8723.2f1df9d5.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8791.c8a6f64e.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8723.2f1df9d5.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8791.c8a6f64e.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8791.c8a6f64e.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8791.c8a6f64e.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8791.c8a6f64e.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8819.e80def20.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8791.c8a6f64e.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8819.e80def20.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8791.c8a6f64e.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8819.e80def20.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8819.e80def20.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8819.e80def20.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8819.e80def20.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8843.a2b58ed4.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8819.e80def20.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8843.a2b58ed4.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8819.e80def20.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8843.a2b58ed4.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8843.a2b58ed4.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8843.a2b58ed4.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8843.a2b58ed4.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8868.7f37a2ab.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8843.a2b58ed4.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8868.7f37a2ab.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8843.a2b58ed4.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8868.7f37a2ab.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8868.7f37a2ab.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8868.7f37a2ab.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8868.7f37a2ab.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8888.387774c0.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8868.7f37a2ab.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8888.387774c0.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8868.7f37a2ab.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8888.387774c0.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8888.387774c0.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8888.387774c0.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8888.387774c0.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8935.aa3c069a.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8888.387774c0.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8935.aa3c069a.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8888.387774c0.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8902.fc737248.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8902.fc737248.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8902.fc737248.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8902.fc737248.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.974c9686.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8902.fc737248.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.974c9686.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8902.fc737248.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8935.aa3c069a.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8935.aa3c069a.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8935.aa3c069a.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8935.aa3c069a.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8961.2b24b15b.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8935.aa3c069a.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8961.2b24b15b.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8935.aa3c069a.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8961.2b24b15b.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8961.2b24b15b.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/8961.2b24b15b.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8961.2b24b15b.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/902.868bc783.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8961.2b24b15b.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/902.868bc783.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/8961.2b24b15b.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/902.868bc783.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/902.868bc783.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/902.868bc783.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/902.868bc783.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9036.8b6cac41.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/902.868bc783.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9036.8b6cac41.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/902.868bc783.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9036.8b6cac41.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9036.8b6cac41.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9036.8b6cac41.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9036.8b6cac41.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9086.69a661be.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9036.8b6cac41.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9086.69a661be.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9036.8b6cac41.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9086.69a661be.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9086.69a661be.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9086.69a661be.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9086.69a661be.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9100.3a9e0477.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9086.69a661be.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9100.3a9e0477.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9086.69a661be.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9100.3a9e0477.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9100.3a9e0477.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9100.3a9e0477.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9100.3a9e0477.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9214.f2fc22c6.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9100.3a9e0477.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9214.f2fc22c6.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9100.3a9e0477.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9214.f2fc22c6.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9214.f2fc22c6.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9214.f2fc22c6.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9214.f2fc22c6.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9242.1f1a62c9.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9214.f2fc22c6.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9242.1f1a62c9.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9214.f2fc22c6.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9242.1f1a62c9.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9242.1f1a62c9.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9242.1f1a62c9.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9242.1f1a62c9.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9345.afd5c749.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9242.1f1a62c9.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9345.afd5c749.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9242.1f1a62c9.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9345.afd5c749.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9345.afd5c749.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9345.afd5c749.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9345.afd5c749.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9368.b04ae990.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9345.afd5c749.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9368.b04ae990.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9345.afd5c749.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9368.b04ae990.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9368.b04ae990.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9368.b04ae990.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9368.b04ae990.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9430.35458b7e.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9368.b04ae990.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9430.35458b7e.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9368.b04ae990.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9430.35458b7e.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9430.35458b7e.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9430.35458b7e.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9430.35458b7e.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9440.e652cdcc.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9430.35458b7e.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9440.e652cdcc.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9430.35458b7e.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9440.e652cdcc.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9440.e652cdcc.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9440.e652cdcc.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9440.e652cdcc.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9488.b9085241.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9440.e652cdcc.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9488.b9085241.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9440.e652cdcc.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9488.b9085241.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9488.b9085241.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9488.b9085241.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9488.b9085241.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9503.931d6960.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9488.b9085241.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9503.931d6960.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9488.b9085241.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9503.931d6960.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9503.931d6960.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9503.931d6960.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9503.931d6960.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9530.85e2cc52.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9503.931d6960.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9530.85e2cc52.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9503.931d6960.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9530.85e2cc52.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9530.85e2cc52.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9530.85e2cc52.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9530.85e2cc52.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9563.ff6db423.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9530.85e2cc52.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9563.ff6db423.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9530.85e2cc52.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9563.ff6db423.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9563.ff6db423.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9563.ff6db423.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9563.ff6db423.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9566.23d76ee1.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9563.ff6db423.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9566.23d76ee1.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9563.ff6db423.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9566.23d76ee1.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9566.23d76ee1.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9566.23d76ee1.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9566.23d76ee1.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/960.79eb8316.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9566.23d76ee1.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/960.79eb8316.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9566.23d76ee1.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/960.79eb8316.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/960.79eb8316.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/960.79eb8316.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/960.79eb8316.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9638.a46cb712.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/960.79eb8316.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9638.a46cb712.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/960.79eb8316.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9638.a46cb712.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9638.a46cb712.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9638.a46cb712.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9638.a46cb712.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9662.79263c53.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9638.a46cb712.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9662.79263c53.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9638.a46cb712.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9662.79263c53.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9662.79263c53.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9662.79263c53.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9662.79263c53.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9706.f33e713d.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9662.79263c53.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9706.f33e713d.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9662.79263c53.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9706.f33e713d.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9706.f33e713d.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9706.f33e713d.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9706.f33e713d.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9708.fe9ac705.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9706.f33e713d.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9708.fe9ac705.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9706.f33e713d.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9708.fe9ac705.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9708.fe9ac705.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9708.fe9ac705.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9708.fe9ac705.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9714.030e0c2c.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9708.fe9ac705.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9714.030e0c2c.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9708.fe9ac705.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9714.030e0c2c.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9714.030e0c2c.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9714.030e0c2c.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9714.030e0c2c.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9815.0e900f0f.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9714.030e0c2c.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9815.0e900f0f.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9714.030e0c2c.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9815.0e900f0f.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9815.0e900f0f.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9815.0e900f0f.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9815.0e900f0f.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9879.fdd218f8.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9815.0e900f0f.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9879.fdd218f8.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9815.0e900f0f.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9879.fdd218f8.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9879.fdd218f8.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9879.fdd218f8.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9879.fdd218f8.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9882.d5988f6d.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9879.fdd218f8.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9882.d5988f6d.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9879.fdd218f8.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9882.d5988f6d.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9882.d5988f6d.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9882.d5988f6d.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9882.d5988f6d.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/99.d0983e15.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9882.d5988f6d.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/99.d0983e15.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9882.d5988f6d.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/99.d0983e15.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/99.d0983e15.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/99.d0983e15.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/99.d0983e15.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9906.16d2a9a6.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/99.d0983e15.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9906.16d2a9a6.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/99.d0983e15.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9906.16d2a9a6.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9906.16d2a9a6.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9906.16d2a9a6.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9906.16d2a9a6.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9972.24cbd462.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9906.16d2a9a6.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9972.24cbd462.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9906.16d2a9a6.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9972.24cbd462.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9972.24cbd462.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9972.24cbd462.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9972.24cbd462.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9983.2287eb9d.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9972.24cbd462.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9983.2287eb9d.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9972.24cbd462.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9983.2287eb9d.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9983.2287eb9d.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/9983.2287eb9d.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9983.2287eb9d.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/index.b5f51d13.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9983.2287eb9d.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/index.b5f51d13.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/9983.2287eb9d.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose__internal___mf_bootstrap.4aec5d69.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose__internal___mf_bootstrap.e95ec0a5.js similarity index 96% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose__internal___mf_bootstrap.4aec5d69.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose__internal___mf_bootstrap.e95ec0a5.js index f1981b4f62..2b2a8f099f 100644 --- a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose__internal___mf_bootstrap.4aec5d69.js +++ b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose__internal___mf_bootstrap.e95ec0a5.js @@ -1,5 +1,5 @@ -/*! For license information please see __federation_expose__internal___mf_bootstrap.4aec5d69.js.LICENSE.txt */ -"use strict";(self.webpackChunkpimcore_studio_ui_bundle=self.webpackChunkpimcore_studio_ui_bundle||[]).push([["8785"],{8178:function(e,i,a){a.d(i,{LA:()=>n,d_:()=>r,hi:()=>m,wG:()=>p});var t=a(42125);let n=["Settings"],m=t.api.enhanceEndpoints({addTagTypes:n}).injectEndpoints({endpoints:e=>({systemSettingsGet:e.query({query:()=>({url:"/pimcore-studio/api/settings"}),providesTags:["Settings"]}),activeBundlesGet:e.query({query:()=>({url:"/pimcore-studio/api/settings/active-bundles"}),providesTags:["Settings"]})}),overrideExisting:!1}),{useSystemSettingsGetQuery:r,useActiveBundlesGetQuery:p}=m},11918:function(e,i,a){a.a(e,async function(t,n){try{a.r(i),a(6134);var m=a(483),r=a(55620),p=a(80452),g=a(69984);e=a.hmd(e),void 0!==e.hot&&e.hot.accept(),window.Pimcore=(await Promise.resolve().then(a.bind(a,80452))).Pimcore,window.PimcoreStudio=p.PimcoreStudio,window.addEventListener("load",async()=>{await r.p.loadPlugins(),r.p.initPlugins(),r.p.startupPlugins(),g._.initModules(),(0,m.m)()}),n()}catch(e){n(e)}},1)},483:function(e,i,a){a.d(i,{m:()=>R});var t=a(85893),n=a(81004),m=a(20745),r=a(13436),p=a(26788),g=a(20602),d=a(51415),o=a(46309),l=a(62368),h=a(29202);let s=(0,h.createGlobalStyle)` +/*! For license information please see __federation_expose__internal___mf_bootstrap.e95ec0a5.js.LICENSE.txt */ +"use strict";(self.webpackChunkpimcore_studio_ui_bundle=self.webpackChunkpimcore_studio_ui_bundle||[]).push([["8785"],{8178:function(e,i,a){a.d(i,{LA:()=>n,d_:()=>r,hi:()=>m,wG:()=>p});var t=a(42125);let n=["Settings"],m=t.api.enhanceEndpoints({addTagTypes:n}).injectEndpoints({endpoints:e=>({systemSettingsGet:e.query({query:()=>({url:"/pimcore-studio/api/settings"}),providesTags:["Settings"]}),activeBundlesGet:e.query({query:()=>({url:"/pimcore-studio/api/settings/active-bundles"}),providesTags:["Settings"]})}),overrideExisting:!1}),{useSystemSettingsGetQuery:r,useActiveBundlesGetQuery:p}=m},11918:function(e,i,a){a.a(e,async function(t,n){try{a.r(i),a(19014);var m=a(483),r=a(55620),p=a(80452),g=a(69984);e=a.hmd(e),void 0!==e.hot&&e.hot.accept(),window.Pimcore=(await Promise.resolve().then(a.bind(a,80452))).Pimcore,window.PimcoreStudio=p.PimcoreStudio,window.addEventListener("load",async()=>{await r.p.loadPlugins(),r.p.initPlugins(),r.p.startupPlugins(),g._.initModules(),(0,m.m)()}),n()}catch(e){n(e)}},1)},483:function(e,i,a){a.d(i,{m:()=>R});var t=a(85893),n=a(81004),m=a(20745),r=a(13436),p=a(26788),g=a(20602),d=a(51415),o=a(46309),l=a(62368),h=a(29202);let s=(0,h.createGlobalStyle)` * { box-sizing: border-box; } diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_api.f367fc93.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose__internal___mf_bootstrap.e95ec0a5.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_api.f367fc93.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose__internal___mf_bootstrap.e95ec0a5.js.LICENSE.txt diff --git a/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.feecb57f.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.feecb57f.js new file mode 100644 index 0000000000..5cb0361720 --- /dev/null +++ b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.feecb57f.js @@ -0,0 +1,2 @@ +/*! For license information please see __federation_expose__internal___mf_bootstrap_document_editor_iframe.feecb57f.js.LICENSE.txt */ +"use strict";(self.webpackChunkpimcore_studio_ui_bundle=self.webpackChunkpimcore_studio_ui_bundle||[]).push([["216"],{76923:function(e,t,n){n.a(e,async function(i,r){try{n.r(t),n(19014);var a=n(55620),s=n(69984),o=n(46554);e=n.hmd(e),void 0!==e.hot&&e.hot.accept(),window.Pimcore=(await n.e("161").then(n.bind(n,80452))).Pimcore,window.PimcoreDocumentEditor=(await n.e("8902").then(n.bind(n,44274))).PimcoreDocumentEditor,window.addEventListener("load",async()=>{await a.p.loadPlugins(),a.p.initPlugins(),a.p.startupPlugins(),s._.initModules(),(0,o.m)()}),r()}catch(e){r(e)}},1)},46554:function(e,t,n){n.d(t,{m:()=>L});var i=n(85893),r=n(81004),a=n(20745),s=n(81343),o=n(53478),c=n(80380),l=n(79771),d=n(60433),u=n(66858),m=n(3859),p=n.n(m),f=n(29865);let g=e=>{let{editableDefinitions:t}=e,n=(0,r.useRef)({});return t.forEach(e=>{(0,o.isUndefined)(n.current[e.id])&&(n.current[e.id]=(0,r.createRef)())}),(0,i.jsx)(i.Fragment,{children:t.map(e=>{let t=document.getElementById(e.id);return(0,o.isNull)(t)?null:(!(0,o.isNull)(n.current[e.id])&&(0,o.isNull)(n.current[e.id].current)&&(n.current[e.id].current=t),p().createPortal((0,i.jsx)(f.k,{containerRef:n.current[e.id],editableDefinition:e},e.id),t))})})},y=e=>{let{editableDefinitions:t}=e,n=(0,c.$1)(l.j["DynamicTypes/DocumentEditableRegistry"]),a=(0,r.useRef)(!1),[s,m]=(0,r.useState)(!1),{initializeData:p,notifyReady:f,initializeInheritanceState:y}=(0,d.b)(),{id:h}=(0,r.useContext)(u.R);return((0,r.useEffect)(()=>{a.current||(p((e=>{let t={};return e.forEach(e=>{let i=n.hasDynamicType(e.type)?n.getDynamicType(e.type):void 0;t[e.name]={type:e.type,data:(0,o.isUndefined)(i)?e.data??null:i.transformValue(e.data,e)}}),t})(t)),y((e=>{let t={};return e.forEach(e=>{t[e.name]=e.inherited}),t})(t)),a.current=!0,m(!0))},[t,p,y]),(0,r.useEffect)(()=>{if(a.current){f();try{n.notifyDocumentReady(h,t)}catch(e){console.warn("Could not process document ready events:",e)}}},[f,t,h,n]),s)?(0,i.jsx)(g,{editableDefinitions:t}):(0,i.jsx)(i.Fragment,{})};var h=n(13436),w=n(80087),b=n(26788),x=n(91061),R=n(65980),E=n(45628),j=n.n(E),v=n(71695),D=n(42801),k=n(29618);let I=async()=>{try{let{i18n:e}=(0,D.sH)(),t=e.getTranslationResources(),n=e.getCurrentLanguage(),i=e.getFallbackLanguage(),r={};Object.keys(t).forEach(e=>{r[e]={translation:t[e]}}),await j().use(v.initReactI18next).init({lng:n,fallbackLng:i,ns:["translation"],defaultNS:"translation",resources:r,saveMissing:!0,postProcess:["returnKeyIfEmpty"],interpolation:{escapeValue:!1}}),j().use(k.N),j().on("missingKey",(t,r,a,s)=>{try{e.reportMissingTranslation(a),j().addResource(n,r,a,a),n!==i&&j().addResource(i,r,a,a),console.debug(`Missing translation key reported to parent: ${a}`)}catch(e){console.warn(`Could not report missing translation key '${a}' to parent window:`,e),j().addResource(n,r,a,a),n!==i&&j().addResource(i,r,a,a)}})}catch(e){console.warn("Could not initialize iframe i18n from parent window, falling back to basic setup:",e),await j().use(v.initReactI18next).init({lng:"en",fallbackLng:"en",ns:["translation"],resources:{},saveMissing:!1})}};var P=n(14651);let N=()=>{let e=window.editableDefinitions??[],{isInitialized:t}=(()=>{let[e,t]=(0,r.useState)(!1),[n,i]=(0,r.useState)(null);return(0,r.useEffect)(()=>{(async()=>{try{await I(),t(!0)}catch(n){let e=n instanceof Error?n:Error("Failed to initialize iframe i18n");console.error("Failed to initialize iframe i18n:",e),i(e),t(!0)}})()},[]),{isInitialized:e,error:n}})(),n=new URLSearchParams(window.location.search).get("documentId"),a=(0,o.isNil)(n)?void 0:parseInt(n,10);return t?(0,o.isNil)(a)||!(0,o.isNumber)(a)||(0,o.isNaN)(a)||a<=0?(0,i.jsx)(w.b,{description:"A valid documentId parameter is required in the URL.",message:"Error: Invalid Document ID",showIcon:!0,type:"error"}):(0,i.jsx)(r.StrictMode,{children:(0,i.jsx)(R.Z,{children:(0,i.jsx)(h.R,{children:(0,i.jsx)(b.App,{children:(0,i.jsx)(P.$,{children:(0,i.jsx)(x.z,{children:(0,i.jsx)(u.p,{id:a,children:(0,i.jsx)(y,{editableDefinitions:e})})})})})})})}):(0,i.jsx)("div",{style:{padding:"20px",textAlign:"center"},children:"Loading translations..."})};function L(){let e=document.getElementById("pimcore-studio-app");if(null===e)return void(0,s.ZP)(new s.aE("Root element not found"));(0,a.createRoot)(e).render((0,i.jsx)(N,{}))}}}]); \ No newline at end of file diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_api__class_definition.318f5a5e.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.feecb57f.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_api__class_definition.318f5a5e.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.feecb57f.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_api.f367fc93.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api.f367fc93.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_api.f367fc93.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api.f367fc93.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_api__custom_metadata.2db5c3ae.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api.f367fc93.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_api__custom_metadata.2db5c3ae.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api.f367fc93.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_api__class_definition.318f5a5e.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__class_definition.318f5a5e.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_api__class_definition.318f5a5e.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__class_definition.318f5a5e.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_api__data_object.bb9c013f.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__class_definition.318f5a5e.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_api__data_object.bb9c013f.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__class_definition.318f5a5e.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_api__custom_metadata.2db5c3ae.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__custom_metadata.2db5c3ae.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_api__custom_metadata.2db5c3ae.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__custom_metadata.2db5c3ae.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_api__dependencies.1b4f4baf.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__custom_metadata.2db5c3ae.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_api__dependencies.1b4f4baf.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__custom_metadata.2db5c3ae.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_api__data_object.bb9c013f.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__data_object.bb9c013f.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_api__data_object.bb9c013f.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__data_object.bb9c013f.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_api__documents.bf1f71bb.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__data_object.bb9c013f.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_api__documents.bf1f71bb.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__data_object.bb9c013f.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_api__dependencies.1b4f4baf.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__dependencies.1b4f4baf.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_api__dependencies.1b4f4baf.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__dependencies.1b4f4baf.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_api__elements.a748d1c6.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__dependencies.1b4f4baf.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_api__elements.a748d1c6.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__dependencies.1b4f4baf.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_api__documents.bf1f71bb.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__documents.bf1f71bb.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_api__documents.bf1f71bb.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__documents.bf1f71bb.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_api__metadata.600f2a76.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__documents.bf1f71bb.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_api__metadata.600f2a76.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__documents.bf1f71bb.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_api__elements.a748d1c6.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__elements.a748d1c6.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_api__elements.a748d1c6.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__elements.a748d1c6.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_api__perspectives.49b81869.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__elements.a748d1c6.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_api__perspectives.49b81869.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__elements.a748d1c6.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_api__metadata.600f2a76.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__metadata.600f2a76.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_api__metadata.600f2a76.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__metadata.600f2a76.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_api__properties.3336d115.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__metadata.600f2a76.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_api__properties.3336d115.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__metadata.600f2a76.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_api__perspectives.49b81869.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__perspectives.49b81869.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_api__perspectives.49b81869.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__perspectives.49b81869.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_api__reports.90166d3e.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__perspectives.49b81869.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_api__reports.90166d3e.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__perspectives.49b81869.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_api__properties.3336d115.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__properties.3336d115.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_api__properties.3336d115.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__properties.3336d115.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_api__role.c05bcddf.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__properties.3336d115.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_api__role.c05bcddf.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__properties.3336d115.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_api__reports.90166d3e.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__reports.90166d3e.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_api__reports.90166d3e.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__reports.90166d3e.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_api__schedule.d847219d.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__reports.90166d3e.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_api__schedule.d847219d.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__reports.90166d3e.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_api__role.c05bcddf.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__role.c05bcddf.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_api__role.c05bcddf.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__role.c05bcddf.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_api__settings.1fe87b47.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__role.c05bcddf.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_api__settings.1fe87b47.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__role.c05bcddf.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_api__schedule.d847219d.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__schedule.d847219d.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_api__schedule.d847219d.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__schedule.d847219d.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_api__tags.4244ce4b.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__schedule.d847219d.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_api__tags.4244ce4b.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__schedule.d847219d.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_api__settings.1fe87b47.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__settings.1fe87b47.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_api__settings.1fe87b47.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__settings.1fe87b47.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_api__thumbnails.fb843215.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__settings.1fe87b47.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_api__thumbnails.fb843215.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__settings.1fe87b47.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_api__tags.4244ce4b.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__tags.4244ce4b.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_api__tags.4244ce4b.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__tags.4244ce4b.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_api__translations.6b808d2b.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__tags.4244ce4b.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_api__translations.6b808d2b.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__tags.4244ce4b.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_api__thumbnails.fb843215.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__thumbnails.fb843215.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_api__thumbnails.fb843215.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__thumbnails.fb843215.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_api__user.6c028a06.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__thumbnails.fb843215.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_api__user.6c028a06.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__thumbnails.fb843215.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_api__translations.6b808d2b.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__translations.6b808d2b.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_api__translations.6b808d2b.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__translations.6b808d2b.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_api__version.1fe07415.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__translations.6b808d2b.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_api__version.1fe07415.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__translations.6b808d2b.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_api__user.6c028a06.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__user.6c028a06.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_api__user.6c028a06.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__user.6c028a06.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_api__workflow.4002dbf4.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__user.6c028a06.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_api__workflow.4002dbf4.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__user.6c028a06.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_api__version.1fe07415.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__version.1fe07415.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_api__version.1fe07415.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__version.1fe07415.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_app.5b207115.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__version.1fe07415.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_app.5b207115.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__version.1fe07415.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_api__workflow.4002dbf4.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__workflow.4002dbf4.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_api__workflow.4002dbf4.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__workflow.4002dbf4.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_default_export.b3f494c2.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__workflow.4002dbf4.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_default_export.b3f494c2.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_api__workflow.4002dbf4.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_app.5b207115.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_app.5b207115.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_app.5b207115.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_app.5b207115.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_modules__asset.fa50b6ac.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_app.5b207115.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_modules__asset.fa50b6ac.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_app.5b207115.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_default_export.b3f494c2.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_default_export.b3f494c2.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_default_export.b3f494c2.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_default_export.b3f494c2.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_modules__class_definitions.29986990.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_default_export.b3f494c2.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_modules__class_definitions.29986990.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_default_export.b3f494c2.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_modules__asset.fa50b6ac.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_modules__asset.fa50b6ac.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_modules__asset.fa50b6ac.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_modules__asset.fa50b6ac.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_modules__data_object.9692bdfb.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_modules__asset.fa50b6ac.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_modules__data_object.9692bdfb.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_modules__asset.fa50b6ac.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_modules__class_definitions.29986990.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_modules__class_definitions.29986990.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_modules__class_definitions.29986990.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_modules__class_definitions.29986990.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_modules__document.67bc95cd.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_modules__class_definitions.29986990.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_modules__document.67bc95cd.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_modules__class_definitions.29986990.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_modules__data_object.9692bdfb.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_modules__data_object.9692bdfb.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_modules__data_object.9692bdfb.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_modules__data_object.9692bdfb.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_modules__icon_library.fceebdff.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_modules__data_object.9692bdfb.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_modules__icon_library.fceebdff.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_modules__data_object.9692bdfb.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_modules__document.67bc95cd.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_modules__document.67bc95cd.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_modules__document.67bc95cd.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_modules__document.67bc95cd.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_modules__user.6f21700a.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_modules__document.67bc95cd.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_modules__user.6f21700a.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_modules__document.67bc95cd.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_modules__icon_library.fceebdff.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_modules__icon_library.fceebdff.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_modules__icon_library.fceebdff.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_modules__icon_library.fceebdff.js diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_utils.518ac1a0.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_modules__icon_library.fceebdff.js.LICENSE.txt similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_utils.518ac1a0.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_modules__icon_library.fceebdff.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_modules__user.6f21700a.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_modules__user.6f21700a.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_modules__user.6f21700a.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_modules__user.6f21700a.js diff --git a/public/build/2af75d99-f6a5-43e2-b168-858e56812c27/static/js/documentEditorIframe.08ab12aa.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_modules__user.6f21700a.js.LICENSE.txt similarity index 100% rename from public/build/2af75d99-f6a5-43e2-b168-858e56812c27/static/js/documentEditorIframe.08ab12aa.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_modules__user.6f21700a.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_utils.518ac1a0.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_utils.518ac1a0.js similarity index 100% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/async/__federation_expose_utils.518ac1a0.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_utils.518ac1a0.js diff --git a/public/build/2af75d99-f6a5-43e2-b168-858e56812c27/static/js/main.b56cb6ab.js.LICENSE.txt b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_utils.518ac1a0.js.LICENSE.txt similarity index 100% rename from public/build/2af75d99-f6a5-43e2-b168-858e56812c27/static/js/main.b56cb6ab.js.LICENSE.txt rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/async/__federation_expose_utils.518ac1a0.js.LICENSE.txt diff --git a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/index.b5f51d13.js b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/index.2a7ef42d.js similarity index 97% rename from public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/index.b5f51d13.js rename to public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/index.2a7ef42d.js index 03661d1eff..9f248760d6 100644 --- a/public/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/static/js/index.b5f51d13.js +++ b/public/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/static/js/index.2a7ef42d.js @@ -1,2 +1,2 @@ -/*! For license information please see index.b5f51d13.js.LICENSE.txt */ -(()=>{var e={88067:function(){}},r={};function a(o){var n=r[o];if(void 0!==n)return n.exports;var i=r[o]={id:o,loaded:!1,exports:{}};return e[o].call(i.exports,i,i.exports,a),i.loaded=!0,i.exports}a.m=e,a.c=r,a.federation||(a.federation={chunkMatcher:function(e){return!/^(1318|3209|4892|7977|814)$/.test(e)},rootOutputDir:"../../"}),a.n=e=>{var r=e&&e.__esModule?()=>e.default:()=>e;return a.d(r,{a:r}),r},a.d=(e,r)=>{for(var o in r)a.o(r,o)&&!a.o(e,o)&&Object.defineProperty(e,o,{enumerable:!0,get:r[o]})},a.f={},a.e=e=>Promise.all(Object.keys(a.f).reduce((r,o)=>(a.f[o](e,r),r),[])),a.u=e=>"static/js/async/"+e+"."+({1447:"23221551",1567:"1b498cf5",1595:"3793e4f4",1752:"b8d97cb5",1778:"f279d1cd",1888:"980ce494",281:"8dfb4b16",3948:"ca4bddea",3956:"43790616",3969:"2cf8ec77",4374:"c99deb71",448:"ff033188",4650:"14b4e4d5",4854:"4e190585",4876:"f79595ca",5435:"19dc6838",5639:"f1f63e2c",5853:"b21bc216",5991:"735b928d",6060:"f5aecc63",6565:"565c63bb",6671:"78f65d14",6732:"d6b8cdc4",7448:"892a4f4c",7577:"a926bedf",7599:"f501b0a1",7700:"56fbbd81",7830:"a6bff57b",7981:"970f7b9e",8360:"54b8db04",8385:"16a46dc2",8526:"3a758371"})[e]+".js",a.miniCssF=e=>""+e+".css",a.h=()=>"0c1aacd49a45d254",a.g=(()=>{if("object"==typeof globalThis)return globalThis;try{return this||Function("return this")()}catch(e){if("object"==typeof window)return window}})(),a.o=(e,r)=>Object.prototype.hasOwnProperty.call(e,r),(()=>{var e={},r="pimcore_studio_ui_bundle:";a.l=function(o,n,i,t){if(e[o])return void e[o].push(n);if(void 0!==i)for(var s,c,d=document.getElementsByTagName("script"),l=0;l{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},a.nmd=e=>(e.paths=[],e.children||(e.children=[]),e),(()=>{var e=[];a.O=(r,o,n,i)=>{if(o){i=i||0;for(var t=e.length;t>0&&e[t-1][2]>i;t--)e[t]=e[t-1];e[t]=[o,n,i];return}for(var s=1/0,t=0;t=i)&&Object.keys(a.O).every(e=>a.O[e](o[d]))?o.splice(d--,1):(c=!1,i()=>a(32282),eager:1,singleton:1,requiredVersion:"^7.2.1"},{name:"@codemirror/lang-css",version:"6.3.1",factory:()=>Promise.all([a.e("7599"),a.e("8360")]).then(()=>()=>a(77151)),eager:0,requiredVersion:"^6.3.0"},{name:"@codemirror/lang-html",version:"6.4.9",factory:()=>Promise.all([a.e("7599"),a.e("7577"),a.e("4892")]).then(()=>()=>a(12227)),eager:0,requiredVersion:"^6.4.9"},{name:"@codemirror/lang-javascript",version:"6.2.4",factory:()=>Promise.all([a.e("7599"),a.e("7700")]).then(()=>()=>a(18666)),eager:0,requiredVersion:"^6.2.2"},{name:"@codemirror/lang-json",version:"6.0.2",factory:()=>Promise.all([a.e("7599"),a.e("5639")]).then(()=>()=>a(62243)),eager:0,requiredVersion:"^6.0.1"},{name:"@codemirror/lang-markdown",version:"6.3.3",factory:()=>Promise.all([a.e("1447"),a.e("3209")]).then(()=>()=>a(62230)),eager:0,requiredVersion:"^6.3.1"},{name:"@codemirror/lang-sql",version:"6.9.0",factory:()=>Promise.all([a.e("7599"),a.e("3969")]).then(()=>()=>a(35589)),eager:0,requiredVersion:"^6.8.0"},{name:"@codemirror/lang-xml",version:"6.1.0",factory:()=>Promise.all([a.e("7599"),a.e("8385")]).then(()=>()=>a(54949)),eager:0,requiredVersion:"^6.1.0"},{name:"@codemirror/lang-yaml",version:"6.1.2",factory:()=>Promise.all([a.e("7599"),a.e("6732")]).then(()=>()=>a(21825)),eager:0,requiredVersion:"^6.1.2"},{name:"@dnd-kit/core",version:"6.3.1",factory:()=>Promise.all([a.e("4854"),a.e("6671")]).then(()=>()=>a(95684)),eager:0,requiredVersion:"^6.1.0"},{name:"@dnd-kit/modifiers",version:"7.0.0",factory:()=>a.e("6060").then(()=>()=>a(32339)),eager:0,requiredVersion:"^7.0.0"},{name:"@dnd-kit/sortable",version:"8.0.0",factory:()=>Promise.all([a.e("1595"),a.e("814"),a.e("5991")]).then(()=>()=>a(45587)),eager:0,requiredVersion:"^8.0.0"},{name:"@reduxjs/toolkit",version:"2.8.2",factory:()=>Promise.all([a.e("8526"),a.e("448"),a.e("7977")]).then(()=>()=>a(94902)),eager:0,requiredVersion:"^2.3.0"},{name:"@tanstack/react-table",version:"8.21.3",factory:()=>a.e("281").then(()=>()=>a(94679)),eager:0,requiredVersion:"^8.20.5"},{name:"@uiw/react-codemirror",version:"^4.23.6",factory:()=>()=>a(48370),eager:1,singleton:1,requiredVersion:"^4.23.6"},{name:"antd-style",version:"3.7.1",factory:()=>Promise.all([a.e("7448"),a.e("1318")]).then(()=>()=>a(86028)),eager:0,requiredVersion:"3.7.x"},{name:"antd",version:"5.22.7",factory:()=>()=>a(98587),eager:1,singleton:1,requiredVersion:"5.22.x"},{name:"classnames",version:"2.5.1",factory:()=>()=>a(63387),eager:1,singleton:1,requiredVersion:"^2.5.1"},{name:"dompurify",version:"3.2.6",factory:()=>a.e("7830").then(()=>()=>a(75373)),eager:0,requiredVersion:"^3.2.1"},{name:"flexlayout-react",version:"0.7.15",factory:()=>a.e("5435").then(()=>()=>a(86352)),eager:0,requiredVersion:"^0.7.15"},{name:"framer-motion",version:"11.18.2",factory:()=>a.e("3956").then(()=>()=>a(47552)),eager:0,requiredVersion:"^11.11.17"},{name:"i18next",version:"23.16.8",factory:()=>a.e("1567").then(()=>()=>a(20994)),eager:0,requiredVersion:"^23.16.8"},{name:"immer",version:"10.1.1",factory:()=>a.e("4374").then(()=>()=>a(18241)),eager:0,requiredVersion:"^10.1.1"},{name:"inversify",version:"6.1.x",factory:()=>()=>a(83427),eager:1},{name:"leaflet-draw",version:"1.0.4",factory:()=>a.e("6565").then(()=>()=>a(21787)),eager:0,requiredVersion:"^1.0.4"},{name:"leaflet",version:"1.9.4",factory:()=>a.e("4876").then(()=>()=>a(45243)),eager:0,requiredVersion:"^1.9.4"},{name:"lodash",version:"4.17.21",factory:()=>a.e("3948").then(()=>()=>a(96486)),eager:0,requiredVersion:"^4.17.21"},{name:"react-compiler-runtime",version:"19.1.0-rc.2",factory:()=>a.e("1752").then(()=>()=>a(65490)),eager:0,requiredVersion:"^19.1.0-rc.2"},{name:"react-dom",version:"18.3.1",factory:()=>()=>a(73935),eager:1,singleton:1,requiredVersion:"18.3.x"},{name:"react-draggable",version:"4.5.0",factory:()=>a.e("1778").then(()=>()=>a(61193)),eager:0,requiredVersion:"^4.4.6"},{name:"react-i18next",version:"14.1.3",factory:()=>a.e("4650").then(()=>()=>a(74976)),eager:0,requiredVersion:"^14.1.3"},{name:"react-redux",version:"9.2.0",factory:()=>a.e("7981").then(()=>()=>a(81722)),eager:0,requiredVersion:"^9.1.2"},{name:"react-router-dom",version:"6.30.1",factory:()=>a.e("5853").then(()=>()=>a(10417)),eager:0,requiredVersion:"^6.28.0"},{name:"react",version:"18.3.1",factory:()=>()=>a(67294),eager:1,singleton:1,requiredVersion:"18.3.x"},{name:"reflect-metadata",version:"0.2.2",factory:()=>()=>a(39481),eager:1,singleton:1,requiredVersion:"*"},{name:"uuid",version:"10.0.0",factory:()=>a.e("1888").then(()=>()=>a(31024)),eager:0,requiredVersion:"^10.0.0"}]},uniqueName:"pimcore_studio_ui_bundle"},a.I=a.I||function(){throw Error("should have __webpack_require__.I")},a.consumesLoadingData={chunkMapping:{1318:["26788"],2980:["58793","3859","81004","14691","86286"],4892:["50903","55216"],814:["52595"],7977:["65605"],3209:["97687"]},moduleIdToConsumeDataMapping:{50903:{shareScope:"default",shareKey:"@codemirror/lang-css",import:"@codemirror/lang-css",requiredVersion:"^6.3.0",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>Promise.all([a.e("7599"),a.e("8360")]).then(()=>()=>a(77151))},97687:{shareScope:"default",shareKey:"@codemirror/lang-html",import:"@codemirror/lang-html",requiredVersion:"^6.4.9",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>Promise.all([a.e("7599"),a.e("7577"),a.e("4892")]).then(()=>()=>a(12227))},55216:{shareScope:"default",shareKey:"@codemirror/lang-javascript",import:"@codemirror/lang-javascript",requiredVersion:"^6.2.2",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>Promise.all([a.e("7599"),a.e("7700")]).then(()=>()=>a(18666))},86286:{shareScope:"default",shareKey:"@ant-design/colors",import:"@ant-design/colors",requiredVersion:"^7.2.1",strictVersion:!1,singleton:!0,eager:!0,fallback:()=>()=>a(32282)},58793:{shareScope:"default",shareKey:"classnames",import:"classnames",requiredVersion:"^2.5.1",strictVersion:!1,singleton:!0,eager:!0,fallback:()=>()=>a(63387)},3859:{shareScope:"default",shareKey:"react-dom",import:"react-dom",requiredVersion:"18.3.x",strictVersion:!1,singleton:!0,eager:!0,fallback:()=>()=>a(73935)},52595:{shareScope:"default",shareKey:"@dnd-kit/core",import:"@dnd-kit/core",requiredVersion:"^6.1.0",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>a.e("4854").then(()=>()=>a(95684))},65605:{shareScope:"default",shareKey:"immer",import:"immer",requiredVersion:"^10.1.1",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>a.e("4374").then(()=>()=>a(18241))},14691:{shareScope:"default",shareKey:"reflect-metadata",import:"reflect-metadata",requiredVersion:"*",strictVersion:!1,singleton:!0,eager:!0,fallback:()=>()=>a(39481)},26788:{shareScope:"default",shareKey:"antd",import:"antd",requiredVersion:"5.22.x",strictVersion:!1,singleton:!0,eager:!0,fallback:()=>()=>a(98587)},81004:{shareScope:"default",shareKey:"react",import:"react",requiredVersion:"18.3.x",strictVersion:!1,singleton:!0,eager:!0,fallback:()=>()=>a(67294)}},initialConsumes:["58793","3859","81004","14691","86286"]},a.f.consumes=a.f.consumes||function(){throw Error("should have __webpack_require__.f.consumes")},(()=>{var e={2980:0};a.f.j=function(r,o){var n=a.o(e,r)?e[r]:void 0;if(0!==n)if(n)o.push(n[2]);else if(/^(1318|3209|4892|7977|814)$/.test(r))e[r]=0;else{var i=new Promise((a,o)=>n=e[r]=[a,o]);o.push(n[2]=i);var t=a.p+a.u(r),s=Error();a.l(t,function(o){if(a.o(e,r)&&(0!==(n=e[r])&&(e[r]=void 0),n)){var i=o&&("load"===o.type?"missing":o.type),t=o&&o.target&&o.target.src;s.message="Loading chunk "+r+" failed.\n("+i+": "+t+")",s.name="ChunkLoadError",s.type=i,s.request=t,n[1](s)}},"chunk-"+r,r)}},a.O.j=r=>0===e[r];var r=(r,o)=>{var n,i,[t,s,c]=o,d=0;if(t.some(r=>0!==e[r])){for(n in s)a.o(s,n)&&(a.m[n]=s[n]);if(c)var l=c(a)}for(r&&r(o);d{var e={88067:function(){}},r={};function a(o){var n=r[o];if(void 0!==n)return n.exports;var i=r[o]={id:o,loaded:!1,exports:{}};return e[o].call(i.exports,i,i.exports,a),i.loaded=!0,i.exports}a.m=e,a.c=r,a.federation||(a.federation={chunkMatcher:function(e){return!/^(1318|3209|4892|7977|814)$/.test(e)},rootOutputDir:"../../"}),a.n=e=>{var r=e&&e.__esModule?()=>e.default:()=>e;return a.d(r,{a:r}),r},a.d=(e,r)=>{for(var o in r)a.o(r,o)&&!a.o(e,o)&&Object.defineProperty(e,o,{enumerable:!0,get:r[o]})},a.f={},a.e=e=>Promise.all(Object.keys(a.f).reduce((r,o)=>(a.f[o](e,r),r),[])),a.u=e=>"static/js/async/"+e+"."+({1447:"23221551",1567:"1b498cf5",1595:"3793e4f4",1752:"b8d97cb5",1778:"f279d1cd",1888:"980ce494",281:"8dfb4b16",3948:"ca4bddea",3956:"43790616",3969:"2cf8ec77",4374:"c99deb71",448:"ff033188",4650:"14b4e4d5",4854:"4e190585",4876:"f79595ca",5435:"19dc6838",5639:"f1f63e2c",5853:"b21bc216",5991:"735b928d",6060:"f5aecc63",6565:"565c63bb",6671:"78f65d14",6732:"d6b8cdc4",7448:"892a4f4c",7577:"a926bedf",7599:"f501b0a1",7700:"56fbbd81",7830:"a6bff57b",7981:"970f7b9e",8360:"54b8db04",8385:"16a46dc2",8526:"3a758371"})[e]+".js",a.miniCssF=e=>""+e+".css",a.h=()=>"614852b2f74c4c1b",a.g=(()=>{if("object"==typeof globalThis)return globalThis;try{return this||Function("return this")()}catch(e){if("object"==typeof window)return window}})(),a.o=(e,r)=>Object.prototype.hasOwnProperty.call(e,r),(()=>{var e={},r="pimcore_studio_ui_bundle:";a.l=function(o,n,i,t){if(e[o])return void e[o].push(n);if(void 0!==i)for(var s,c,d=document.getElementsByTagName("script"),l=0;l{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},a.nmd=e=>(e.paths=[],e.children||(e.children=[]),e),(()=>{var e=[];a.O=(r,o,n,i)=>{if(o){i=i||0;for(var t=e.length;t>0&&e[t-1][2]>i;t--)e[t]=e[t-1];e[t]=[o,n,i];return}for(var s=1/0,t=0;t=i)&&Object.keys(a.O).every(e=>a.O[e](o[d]))?o.splice(d--,1):(c=!1,i()=>a(32282),eager:1,singleton:1,requiredVersion:"^7.2.1"},{name:"@codemirror/lang-css",version:"6.3.1",factory:()=>Promise.all([a.e("7599"),a.e("8360")]).then(()=>()=>a(77151)),eager:0,requiredVersion:"^6.3.0"},{name:"@codemirror/lang-html",version:"6.4.9",factory:()=>Promise.all([a.e("7599"),a.e("7577"),a.e("4892")]).then(()=>()=>a(12227)),eager:0,requiredVersion:"^6.4.9"},{name:"@codemirror/lang-javascript",version:"6.2.4",factory:()=>Promise.all([a.e("7599"),a.e("7700")]).then(()=>()=>a(18666)),eager:0,requiredVersion:"^6.2.2"},{name:"@codemirror/lang-json",version:"6.0.2",factory:()=>Promise.all([a.e("7599"),a.e("5639")]).then(()=>()=>a(62243)),eager:0,requiredVersion:"^6.0.1"},{name:"@codemirror/lang-markdown",version:"6.3.3",factory:()=>Promise.all([a.e("1447"),a.e("3209")]).then(()=>()=>a(62230)),eager:0,requiredVersion:"^6.3.1"},{name:"@codemirror/lang-sql",version:"6.9.0",factory:()=>Promise.all([a.e("7599"),a.e("3969")]).then(()=>()=>a(35589)),eager:0,requiredVersion:"^6.8.0"},{name:"@codemirror/lang-xml",version:"6.1.0",factory:()=>Promise.all([a.e("7599"),a.e("8385")]).then(()=>()=>a(54949)),eager:0,requiredVersion:"^6.1.0"},{name:"@codemirror/lang-yaml",version:"6.1.2",factory:()=>Promise.all([a.e("7599"),a.e("6732")]).then(()=>()=>a(21825)),eager:0,requiredVersion:"^6.1.2"},{name:"@dnd-kit/core",version:"6.3.1",factory:()=>Promise.all([a.e("4854"),a.e("6671")]).then(()=>()=>a(95684)),eager:0,requiredVersion:"^6.1.0"},{name:"@dnd-kit/modifiers",version:"7.0.0",factory:()=>a.e("6060").then(()=>()=>a(32339)),eager:0,requiredVersion:"^7.0.0"},{name:"@dnd-kit/sortable",version:"8.0.0",factory:()=>Promise.all([a.e("1595"),a.e("814"),a.e("5991")]).then(()=>()=>a(45587)),eager:0,requiredVersion:"^8.0.0"},{name:"@reduxjs/toolkit",version:"2.8.2",factory:()=>Promise.all([a.e("8526"),a.e("448"),a.e("7977")]).then(()=>()=>a(94902)),eager:0,requiredVersion:"^2.3.0"},{name:"@tanstack/react-table",version:"8.21.3",factory:()=>a.e("281").then(()=>()=>a(94679)),eager:0,requiredVersion:"^8.20.5"},{name:"@uiw/react-codemirror",version:"^4.23.6",factory:()=>()=>a(48370),eager:1,singleton:1,requiredVersion:"^4.23.6"},{name:"antd-style",version:"3.7.1",factory:()=>Promise.all([a.e("7448"),a.e("1318")]).then(()=>()=>a(86028)),eager:0,requiredVersion:"3.7.x"},{name:"antd",version:"5.22.7",factory:()=>()=>a(98587),eager:1,singleton:1,requiredVersion:"5.22.x"},{name:"classnames",version:"2.5.1",factory:()=>()=>a(63387),eager:1,singleton:1,requiredVersion:"^2.5.1"},{name:"dompurify",version:"3.2.6",factory:()=>a.e("7830").then(()=>()=>a(75373)),eager:0,requiredVersion:"^3.2.1"},{name:"flexlayout-react",version:"0.7.15",factory:()=>a.e("5435").then(()=>()=>a(86352)),eager:0,requiredVersion:"^0.7.15"},{name:"framer-motion",version:"11.18.2",factory:()=>a.e("3956").then(()=>()=>a(47552)),eager:0,requiredVersion:"^11.11.17"},{name:"i18next",version:"23.16.8",factory:()=>a.e("1567").then(()=>()=>a(20994)),eager:0,requiredVersion:"^23.16.8"},{name:"immer",version:"10.1.1",factory:()=>a.e("4374").then(()=>()=>a(18241)),eager:0,requiredVersion:"^10.1.1"},{name:"inversify",version:"6.1.x",factory:()=>()=>a(83427),eager:1},{name:"leaflet-draw",version:"1.0.4",factory:()=>a.e("6565").then(()=>()=>a(21787)),eager:0,requiredVersion:"^1.0.4"},{name:"leaflet",version:"1.9.4",factory:()=>a.e("4876").then(()=>()=>a(45243)),eager:0,requiredVersion:"^1.9.4"},{name:"lodash",version:"4.17.21",factory:()=>a.e("3948").then(()=>()=>a(96486)),eager:0,requiredVersion:"^4.17.21"},{name:"react-compiler-runtime",version:"19.1.0-rc.2",factory:()=>a.e("1752").then(()=>()=>a(65490)),eager:0,requiredVersion:"^19.1.0-rc.2"},{name:"react-dom",version:"18.3.1",factory:()=>()=>a(73935),eager:1,singleton:1,requiredVersion:"18.3.x"},{name:"react-draggable",version:"4.5.0",factory:()=>a.e("1778").then(()=>()=>a(61193)),eager:0,requiredVersion:"^4.4.6"},{name:"react-i18next",version:"14.1.3",factory:()=>a.e("4650").then(()=>()=>a(74976)),eager:0,requiredVersion:"^14.1.3"},{name:"react-redux",version:"9.2.0",factory:()=>a.e("7981").then(()=>()=>a(81722)),eager:0,requiredVersion:"^9.1.2"},{name:"react-router-dom",version:"6.30.1",factory:()=>a.e("5853").then(()=>()=>a(10417)),eager:0,requiredVersion:"^6.28.0"},{name:"react",version:"18.3.1",factory:()=>()=>a(67294),eager:1,singleton:1,requiredVersion:"18.3.x"},{name:"reflect-metadata",version:"0.2.2",factory:()=>()=>a(39481),eager:1,singleton:1,requiredVersion:"*"},{name:"uuid",version:"10.0.0",factory:()=>a.e("1888").then(()=>()=>a(31024)),eager:0,requiredVersion:"^10.0.0"}]},uniqueName:"pimcore_studio_ui_bundle"},a.I=a.I||function(){throw Error("should have __webpack_require__.I")},a.consumesLoadingData={chunkMapping:{1318:["26788"],2980:["58793","3859","81004","14691","86286"],4892:["50903","55216"],814:["52595"],7977:["65605"],3209:["97687"]},moduleIdToConsumeDataMapping:{50903:{shareScope:"default",shareKey:"@codemirror/lang-css",import:"@codemirror/lang-css",requiredVersion:"^6.3.0",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>Promise.all([a.e("7599"),a.e("8360")]).then(()=>()=>a(77151))},97687:{shareScope:"default",shareKey:"@codemirror/lang-html",import:"@codemirror/lang-html",requiredVersion:"^6.4.9",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>Promise.all([a.e("7599"),a.e("7577"),a.e("4892")]).then(()=>()=>a(12227))},55216:{shareScope:"default",shareKey:"@codemirror/lang-javascript",import:"@codemirror/lang-javascript",requiredVersion:"^6.2.2",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>Promise.all([a.e("7599"),a.e("7700")]).then(()=>()=>a(18666))},86286:{shareScope:"default",shareKey:"@ant-design/colors",import:"@ant-design/colors",requiredVersion:"^7.2.1",strictVersion:!1,singleton:!0,eager:!0,fallback:()=>()=>a(32282)},58793:{shareScope:"default",shareKey:"classnames",import:"classnames",requiredVersion:"^2.5.1",strictVersion:!1,singleton:!0,eager:!0,fallback:()=>()=>a(63387)},3859:{shareScope:"default",shareKey:"react-dom",import:"react-dom",requiredVersion:"18.3.x",strictVersion:!1,singleton:!0,eager:!0,fallback:()=>()=>a(73935)},52595:{shareScope:"default",shareKey:"@dnd-kit/core",import:"@dnd-kit/core",requiredVersion:"^6.1.0",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>a.e("4854").then(()=>()=>a(95684))},65605:{shareScope:"default",shareKey:"immer",import:"immer",requiredVersion:"^10.1.1",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>a.e("4374").then(()=>()=>a(18241))},14691:{shareScope:"default",shareKey:"reflect-metadata",import:"reflect-metadata",requiredVersion:"*",strictVersion:!1,singleton:!0,eager:!0,fallback:()=>()=>a(39481)},26788:{shareScope:"default",shareKey:"antd",import:"antd",requiredVersion:"5.22.x",strictVersion:!1,singleton:!0,eager:!0,fallback:()=>()=>a(98587)},81004:{shareScope:"default",shareKey:"react",import:"react",requiredVersion:"18.3.x",strictVersion:!1,singleton:!0,eager:!0,fallback:()=>()=>a(67294)}},initialConsumes:["58793","3859","81004","14691","86286"]},a.f.consumes=a.f.consumes||function(){throw Error("should have __webpack_require__.f.consumes")},(()=>{var e={2980:0};a.f.j=function(r,o){var n=a.o(e,r)?e[r]:void 0;if(0!==n)if(n)o.push(n[2]);else if(/^(1318|3209|4892|7977|814)$/.test(r))e[r]=0;else{var i=new Promise((a,o)=>n=e[r]=[a,o]);o.push(n[2]=i);var t=a.p+a.u(r),s=Error();a.l(t,function(o){if(a.o(e,r)&&(0!==(n=e[r])&&(e[r]=void 0),n)){var i=o&&("load"===o.type?"missing":o.type),t=o&&o.target&&o.target.src;s.message="Loading chunk "+r+" failed.\n("+i+": "+t+")",s.name="ChunkLoadError",s.type=i,s.request=t,n[1](s)}},"chunk-"+r,r)}},a.O.j=r=>0===e[r];var r=(r,o)=>{var n,i,[t,s,c]=o,d=0;if(t.some(r=>0!==e[r])){for(n in s)a.o(s,n)&&(a.m[n]=s[n]);if(c)var l=c(a)}for(r&&r(o);de.key===d),n=e.find(e=>e.key===f);if(void 0!==e.find(e=>e.key===c))return function(e,t){if(void 0!==t||void 0!==e)throw new v(U.missingInjectionDecorator,"Expected a single @inject, @multiInject or @unmanaged metadata");return{kind:G.unmanaged}}(t,n);if(void 0===n&&void 0===t)throw new v(U.missingInjectionDecorator,"Expected @inject, @multiInject or @unmanaged metadata");let r=e.find(e=>e.key===l),o=e.find(e=>e.key===u),i=e.find(e=>e.key===s);return{kind:void 0===t?G.multipleInjection:G.singleInjection,name:r?.value,optional:void 0!==o,tags:new Map(e.filter(e=>m.every(t=>e.key!==t)).map(e=>[e.key,e.value])),targetName:i?.value,value:void 0===t?n?.value:t.value}}function x(e,t,n){try{return w(n)}catch(n){throw v.isErrorOfKind(n,U.missingInjectionDecorator)?new v(U.missingInjectionDecorator,`Expected a single @inject, @multiInject or @unmanaged decorator at type "${e.name}" at constructor arguments at index "${t.toString()}"`,{cause:n}):n}}function S(e){let t=i(e,"design:paramtypes"),n=i(e,"inversify:tagged"),r=[];if(void 0!==n)for(let[t,o]of Object.entries(n)){let n=parseInt(t);r[n]=x(e,n,o)}if(void 0!==t){for(let e=0;eNumber.MIN_SAFE_INTEGER):a(Object,P,e,e=>e+1),e}(),this.#r=e,this.#o=void 0,this.#e=t,this.#i=new R("string"==typeof e?e:e.toString().slice(7,-1)),this.#a=n}get id(){return this.#n}get identifier(){return this.#r}get metadata(){return void 0===this.#o&&(this.#o=N(this.#e)),this.#o}get name(){return this.#i}get type(){return this.#a}get serviceIdentifier(){return o.is(this.#e.value)?this.#e.value.unwrap():this.#e.value}getCustomTags(){return[...this.#e.tags.entries()].map(([e,t])=>({key:e,value:t}))}getNamedTag(){return void 0===this.#e.name?null:{key:l,value:this.#e.name}}hasTag(e){return this.metadata.some(t=>t.key===e)}isArray(){return this.#e.kind===G.multipleInjection}isNamed(){return void 0!==this.#e.name}isOptional(){return this.#e.optional}isTagged(){return this.#e.tags.size>0}matchesArray(e){return this.isArray()&&this.#e.value===e}matchesNamedTag(e){return this.#e.name===e}matchesTag(e){return t=>this.metadata.some(n=>n.key===e&&n.value===t)}}let j=e=>(function(e,t){return function(n){let r=e(n),o=I(n);for(;void 0!==o&&o!==Object;){for(let[e,n]of t(o))r.properties.has(e)||r.properties.set(e,n);o=I(o)}let i=[];for(let e of r.constructorArguments)if(e.kind!==G.unmanaged){let t=e.targetName??"";i.push(new T(t,e,"ConstructorArgument"))}for(let[e,t]of r.properties)if(t.kind!==G.unmanaged){let n=t.targetName??e;i.push(new T(n,t,"ClassProperty"))}return i}})(void 0===e?E:t=>M(t,e),void 0===e?C:t=>O(t,e)),A="named",D="name",_="unmanaged",L="optional",z="inject",B="multi_inject",H="inversify:tagged",F="inversify:tagged_props",W="inversify:paramtypes",V="design:paramtypes",q="post_construct",K="pre_destroy",X=[z,B,D,_,A,L];var U,G,Y,Q,J=Object.freeze({__proto__:null,DESIGN_PARAM_TYPES:V,INJECT_TAG:z,MULTI_INJECT_TAG:B,NAMED_TAG:A,NAME_TAG:D,NON_CUSTOM_TAG_KEYS:X,OPTIONAL_TAG:L,PARAM_TYPES:W,POST_CONSTRUCT:q,PRE_DESTROY:K,TAGGED:H,TAGGED_PROP:F,UNMANAGED_TAG:_});let ee={Request:"Request",Singleton:"Singleton",Transient:"Transient"},et={ConstantValue:"ConstantValue",Constructor:"Constructor",DynamicValue:"DynamicValue",Factory:"Factory",Function:"Function",Instance:"Instance",Invalid:"Invalid",Provider:"Provider"},en={ClassProperty:"ClassProperty",ConstructorArgument:"ConstructorArgument",Variable:"Variable"},er=0;function eo(){return er++}class ei{id;moduleId;activated;serviceIdentifier;implementationType;cache;dynamicValue;scope;type;factory;provider;constraint;onActivation;onDeactivation;constructor(e,t){this.id=eo(),this.activated=!1,this.serviceIdentifier=e,this.scope=t,this.type=et.Invalid,this.constraint=e=>!0,this.implementationType=null,this.cache=null,this.factory=null,this.provider=null,this.onActivation=null,this.onDeactivation=null,this.dynamicValue=null}clone(){let e=new ei(this.serviceIdentifier,this.scope);return e.activated=e.scope===ee.Singleton&&this.activated,e.implementationType=this.implementationType,e.dynamicValue=this.dynamicValue,e.scope=this.scope,e.type=this.type,e.factory=this.factory,e.provider=this.provider,e.constraint=this.constraint,e.onActivation=this.onActivation,e.onDeactivation=this.onDeactivation,e.cache=this.cache,e}}let ea="Metadata key was used more than once in a parameter:",el="NULL argument",es="Key Not Found",ec="Ambiguous match found for serviceIdentifier:",eu="No matching bindings found for serviceIdentifier:",ed="The @inject @multiInject @tagged and @named decorators must be applied to the parameters of a class constructor or a class property.",ef=(e,t)=>`onDeactivation() error in class ${e}: ${t}`;class eh{getConstructorMetadata(e){return{compilerGeneratedMetadata:Reflect.getMetadata(V,e)??[],userGeneratedMetadata:Reflect.getMetadata(H,e)??{}}}getPropertiesMetadata(e){return Reflect.getMetadata(F,e)??{}}}function ep(e){return e instanceof RangeError||"Maximum call stack size exceeded"===e.message}function em(e){return"function"==typeof e?e.name:"symbol"==typeof e?e.toString():e}function eg(e,t,n){let r="",o=n(e,t);return 0!==o.length&&(r="\nRegistered bindings:",o.forEach(e=>{let t="Object";null!==e.implementationType&&(t=ey(e.implementationType)),r=`${r} ${t}`,e.constraint.metaData&&(r=`${r} - ${e.constraint.metaData}`)})),r}function ev(e,t){return null!==e.parentRequest&&(e.parentRequest.serviceIdentifier===t||ev(e.parentRequest,t))}function eb(e){e.childRequests.forEach(t=>{if(ev(e,t.serviceIdentifier)){let e=function(e){return(function e(t,n=[]){let r=em(t.serviceIdentifier);return n.push(r),null!==t.parentRequest?e(t.parentRequest,n):n})(e).reverse().join(" --\x3e ")}(t);throw Error(`Circular dependency found: ${e}`)}eb(t)})}function ey(e){if(null!=e.name&&""!==e.name)return e.name;{let t=e.toString(),n=t.match(/^function\s*([^\s(]+)/);return null===n?`Anonymous function: ${t}`:n[1]}}function ew(e){return`{"key":"${e.key.toString()}","value":"${e.value.toString()}"}`}!function(e){e[e.MultipleBindingsAvailable=2]="MultipleBindingsAvailable",e[e.NoBindingsAvailable=0]="NoBindingsAvailable",e[e.OnlyOneBindingAvailable=1]="OnlyOneBindingAvailable"}(Y||(Y={}));class ex{id;container;plan;currentRequest;constructor(e){this.id=eo(),this.container=e}addPlan(e){this.plan=e}setCurrentRequest(e){this.currentRequest=e}}class eS{key;value;constructor(e,t){this.key=e,this.value=t}toString(){return this.key===A?`named: ${String(this.value).toString()} `:`tagged: { key:${this.key.toString()}, value: ${String(this.value)} }`}}class ek{parentContext;rootRequest;constructor(e,t){this.parentContext=e,this.rootRequest=t}}function eC(e,t){let n=function(e){let t=Object.getPrototypeOf(e.prototype);return t?.constructor}(t);if(void 0===n||n===Object)return 0;let r=j(e)(n),o=r.map(e=>e.metadata.filter(e=>e.key===_)),i=[].concat.apply([],o).length,a=r.length-i;return a>0?a:eC(e,n)}class eE{id;serviceIdentifier;parentContext;parentRequest;bindings;childRequests;target;requestScope;constructor(e,t,n,r,o){this.id=eo(),this.serviceIdentifier=e,this.parentContext=t,this.parentRequest=n,this.target=o,this.childRequests=[],this.bindings=Array.isArray(r)?r:[r],this.requestScope=null===n?new Map:null}addChildRequest(e,t,n){let r=new eE(e,this.parentContext,this,t,n);return this.childRequests.push(r),r}}function e$(e){return e._bindingDictionary}function eO(e,t,n,r,o){let i=eN(n.container,o.serviceIdentifier),a=[];return i.length===Y.NoBindingsAvailable&&!0===n.container.options.autoBindInjectable&&"function"==typeof o.serviceIdentifier&&e.getConstructorMetadata(o.serviceIdentifier).compilerGeneratedMetadata&&(n.container.bind(o.serviceIdentifier).toSelf(),i=eN(n.container,o.serviceIdentifier)),a=t?i:i.filter(e=>{let t=new eE(e.serviceIdentifier,n,r,e,o);return e.constraint(t)}),function(e,t,n,r,o){switch(t.length){case Y.NoBindingsAvailable:if(r.isOptional())return;{let t=em(e),i=eu;throw i+=function(e,t){if(t.isTagged()||t.isNamed()){let n="",r=t.getNamedTag(),o=t.getCustomTags();return null!==r&&(n+=ew(r)+"\n"),null!==o&&o.forEach(e=>{n+=ew(e)+"\n"}),` ${e} ${e} - ${n}`}return` ${e}`}(t,r),i+=eg(o,t,eN),null!==n&&(i+=` -Trying to resolve bindings for "${em(n.serviceIdentifier)}"`),Error(i)}case Y.OnlyOneBindingAvailable:return;case Y.MultipleBindingsAvailable:default:if(r.isArray())return;{let t=em(e),n=`${ec} ${t}`;throw Error(n+=eg(o,t,eN))}}}(o.serviceIdentifier,a,r,o,n.container),a}function eM(e,t,n,r){let o=[new eS(e?B:z,t)];return void 0!==n&&o.push(new eS(n,r)),o}function eI(e,t,n,r,o,i){let a,l;if(null===o){a=eO(e,t,r,null,i),l=new eE(n,r,null,a,i);let o=new ek(r,l);r.addPlan(o)}else a=eO(e,t,r,o,i),l=o.addChildRequest(i.serviceIdentifier,a,i);a.forEach(t=>{let n=null;if(i.isArray())n=l.addChildRequest(t.serviceIdentifier,t,i);else{if(null!==t.cache)return;n=l}if(t.type===et.Instance&&null!==t.implementationType){let o=function(e,t){return j(e)(t)}(e,t.implementationType);if(!0!==r.container.options.skipBaseClassChecks){let n=eC(e,t.implementationType);if(o.length= than the number of constructor arguments of its base class.`)}o.forEach(t=>{eI(e,!1,t.serviceIdentifier,r,n,t)})}})}function eN(e,t){let n=[],r=e$(e);return r.hasKey(t)?n=r.get(t):null!==e.parent&&(n=eN(e.parent,t)),n}function eZ(e,t,n,r,o,i,a,l=!1){let s=new ex(t),c=function(e,t,n,r,o,i){let a=w(eM(e,n,o,i));if(a.kind===G.unmanaged)throw Error("Unexpected metadata when creating target");return new T("",a,t)}(n,r,o,0,i,a);try{return eI(e,l,o,s,null,c),s}catch(e){throw ep(e)&&eb(s.plan.rootRequest),e}}function eR(e){return("object"==typeof e&&null!==e||"function"==typeof e)&&"function"==typeof e.then}function eP(e){return!!eR(e)||Array.isArray(e)&&e.some(eR)}let eT=(e,t,n)=>{e.has(t.id)||e.set(t.id,n)},ej=(e,t)=>{e.cache=t,e.activated=!0,eR(t)&&eA(e,t)},eA=async(e,t)=>{try{e.cache=await t}catch(t){throw e.cache=null,e.activated=!1,t}};!function(e){e.DynamicValue="toDynamicValue",e.Factory="toFactory",e.Provider="toProvider"}(Q||(Q={}));let eD=e=>t=>(...n)=>{n.forEach(n=>{e.bind(n).toService(t)})};function e_(e,t,n){let r;if(t.length>0){let o=function(e,t){return e.reduce((e,n)=>{let r=t(n);return n.target.type===en.ConstructorArgument?e.constructorInjections.push(r):(e.propertyRequests.push(n),e.propertyInjections.push(r)),e.isAsync||(e.isAsync=eP(r)),e},{constructorInjections:[],isAsync:!1,propertyInjections:[],propertyRequests:[]})}(t,n),i={...o,constr:e};r=o.isAsync?async function(e){let t=await ez(e.constructorInjections),n=await ez(e.propertyInjections);return eL({...e,constructorInjections:t,propertyInjections:n})}(i):eL(i)}else r=new e;return r}function eL(e){let t=new e.constr(...e.constructorInjections);return e.propertyRequests.forEach((n,r)=>{let o=n.target.identifier,i=e.propertyInjections[r];n.target.isOptional()&&void 0===i||(t[o]=i)}),t}async function ez(e){let t=[];for(let n of e)Array.isArray(n)?t.push(Promise.all(n)):t.push(n);return Promise.all(t)}function eB(e,t){let n=function(e,t){var n,r;if(Reflect.hasMetadata(q,e)){let o=Reflect.getMetadata(q,e);try{return t[o.value]?.()}catch(t){if(t instanceof Error)throw Error((n=e.name,r=t.message,`@postConstruct error in class ${n}: ${r}`))}}}(e,t);return eR(n)?n.then(()=>t):t}function eH(e,t){e.scope!==ee.Singleton&&function(e,t){let n=`Class cannot be instantiated in ${e.scope===ee.Request?"request":"transient"} scope.`;if("function"==typeof e.onDeactivation)throw Error(ef(t.name,n));if(Reflect.hasMetadata(K,t))throw Error(`@preDestroy error in class ${t.name}: ${n}`)}(e,t)}let eF=e=>t=>{t.parentContext.setCurrentRequest(t);let n=t.bindings,r=t.childRequests,o=t.target&&t.target.isArray(),i=!(t.parentRequest&&t.parentRequest.target&&t.target&&t.parentRequest.target.matchesArray(t.target.serviceIdentifier));return o&&i?r.map(t=>eF(e)(t)):t.target.isOptional()&&0===n.length?void 0:eK(e,t,n[0])},eW=(e,t)=>{let n=(e=>{switch(e.type){case et.Factory:return{factory:e.factory,factoryType:Q.Factory};case et.Provider:return{factory:e.provider,factoryType:Q.Provider};case et.DynamicValue:return{factory:e.dynamicValue,factoryType:Q.DynamicValue};default:throw Error(`Unexpected factory type ${e.type}`)}})(e);return((e,t)=>{try{return e()}catch(e){if(ep(e))throw t();throw e}})(()=>n.factory.bind(e)(t),()=>{var e,r;return Error((e=n.factoryType,r=t.currentRequest.serviceIdentifier.toString(),`It looks like there is a circular dependency in one of the '${e}' bindings. Please investigate bindings with service identifier '${r}'.`))})},eV=(e,t,n)=>{let r,o=t.childRequests;switch((e=>{let t=null;switch(e.type){case et.ConstantValue:case et.Function:t=e.cache;break;case et.Constructor:case et.Instance:t=e.implementationType;break;case et.DynamicValue:t=e.dynamicValue;break;case et.Provider:t=e.provider;break;case et.Factory:t=e.factory}if(null===t){let t=em(e.serviceIdentifier);throw Error(`Invalid binding type: ${t}`)}})(n),n.type){case et.ConstantValue:case et.Function:r=n.cache;break;case et.Constructor:r=n.implementationType;break;case et.Instance:r=function(e,t,n,r){eH(e,t);let o=e_(t,n,r);return eR(o)?o.then(e=>eB(t,e)):eB(t,o)}(n,n.implementationType,o,eF(e));break;default:r=eW(n,t.parentContext)}return r},eq=(e,t,n)=>{let r,o,i=(r=e,(o=t).scope===ee.Singleton&&o.activated?o.cache:o.scope===ee.Request&&r.has(o.id)?r.get(o.id):null);return null!==i||((e,t,n)=>{t.scope===ee.Singleton&&ej(t,n),t.scope===ee.Request&&eT(e,t,n)})(e,t,i=n()),i},eK=(e,t,n)=>eq(e,n,()=>{let r=eV(e,t,n);return eR(r)?r.then(e=>eX(t,n,e)):eX(t,n,r)});function eX(e,t,n){let r=eU(e.parentContext,t,n),o=eJ(e.parentContext.container),i,a=o.next();do{i=a.value;let t=e.parentContext,n=eQ(i,e.serviceIdentifier);r=eR(r)?eY(n,t,r):eG(n,t,r),a=o.next()}while(!0!==a.done&&!e$(i).hasKey(e.serviceIdentifier));return r}let eU=(e,t,n)=>"function"==typeof t.onActivation?t.onActivation(e,n):n,eG=(e,t,n)=>{let r=e.next();for(;!0!==r.done;){if(eR(n=r.value(t,n)))return eY(e,t,n);r=e.next()}return n},eY=async(e,t,n)=>{let r=await n,o=e.next();for(;!0!==o.done;)r=await o.value(t,r),o=e.next();return r},eQ=(e,t)=>{let n=e._activations;return n.hasKey(t)?n.get(t).values():[].values()},eJ=e=>{let t=[e],n=e.parent;for(;null!==n;)t.push(n),n=n.parent;return{next:()=>{let e=t.pop();return void 0!==e?{done:!1,value:e}:{done:!0,value:void 0}}}},e0=(e,t)=>{let n=e.parentRequest;return null!==n&&(!!t(n)||e0(n,t))},e1=e=>t=>{let n=n=>null!==n&&null!==n.target&&n.target.matchesTag(e)(t);return n.metaData=new eS(e,t),n},e2=e1(A),e4=e=>t=>{let n=null;return null!==t&&((n=t.bindings[0],"string"==typeof e)?n.serviceIdentifier===e:e===t.bindings[0].implementationType)};class e3{_binding;constructor(e){this._binding=e}when(e){return this._binding.constraint=e,new e8(this._binding)}whenTargetNamed(e){return this._binding.constraint=e2(e),new e8(this._binding)}whenTargetIsDefault(){return this._binding.constraint=e=>null!==e&&null!==e.target&&!e.target.isNamed()&&!e.target.isTagged(),new e8(this._binding)}whenTargetTagged(e,t){return this._binding.constraint=e1(e)(t),new e8(this._binding)}whenInjectedInto(e){return this._binding.constraint=t=>null!==t&&e4(e)(t.parentRequest),new e8(this._binding)}whenParentNamed(e){return this._binding.constraint=t=>null!==t&&e2(e)(t.parentRequest),new e8(this._binding)}whenParentTagged(e,t){return this._binding.constraint=n=>null!==n&&e1(e)(t)(n.parentRequest),new e8(this._binding)}whenAnyAncestorIs(e){return this._binding.constraint=t=>null!==t&&e0(t,e4(e)),new e8(this._binding)}whenNoAncestorIs(e){return this._binding.constraint=t=>null!==t&&!e0(t,e4(e)),new e8(this._binding)}whenAnyAncestorNamed(e){return this._binding.constraint=t=>null!==t&&e0(t,e2(e)),new e8(this._binding)}whenNoAncestorNamed(e){return this._binding.constraint=t=>null!==t&&!e0(t,e2(e)),new e8(this._binding)}whenAnyAncestorTagged(e,t){return this._binding.constraint=n=>null!==n&&e0(n,e1(e)(t)),new e8(this._binding)}whenNoAncestorTagged(e,t){return this._binding.constraint=n=>null!==n&&!e0(n,e1(e)(t)),new e8(this._binding)}whenAnyAncestorMatches(e){return this._binding.constraint=t=>null!==t&&e0(t,e),new e8(this._binding)}whenNoAncestorMatches(e){return this._binding.constraint=t=>null!==t&&!e0(t,e),new e8(this._binding)}}class e8{_binding;constructor(e){this._binding=e}onActivation(e){return this._binding.onActivation=e,new e3(this._binding)}onDeactivation(e){return this._binding.onDeactivation=e,new e3(this._binding)}}class e5{_bindingWhenSyntax;_bindingOnSyntax;_binding;constructor(e){this._binding=e,this._bindingWhenSyntax=new e3(this._binding),this._bindingOnSyntax=new e8(this._binding)}when(e){return this._bindingWhenSyntax.when(e)}whenTargetNamed(e){return this._bindingWhenSyntax.whenTargetNamed(e)}whenTargetIsDefault(){return this._bindingWhenSyntax.whenTargetIsDefault()}whenTargetTagged(e,t){return this._bindingWhenSyntax.whenTargetTagged(e,t)}whenInjectedInto(e){return this._bindingWhenSyntax.whenInjectedInto(e)}whenParentNamed(e){return this._bindingWhenSyntax.whenParentNamed(e)}whenParentTagged(e,t){return this._bindingWhenSyntax.whenParentTagged(e,t)}whenAnyAncestorIs(e){return this._bindingWhenSyntax.whenAnyAncestorIs(e)}whenNoAncestorIs(e){return this._bindingWhenSyntax.whenNoAncestorIs(e)}whenAnyAncestorNamed(e){return this._bindingWhenSyntax.whenAnyAncestorNamed(e)}whenAnyAncestorTagged(e,t){return this._bindingWhenSyntax.whenAnyAncestorTagged(e,t)}whenNoAncestorNamed(e){return this._bindingWhenSyntax.whenNoAncestorNamed(e)}whenNoAncestorTagged(e,t){return this._bindingWhenSyntax.whenNoAncestorTagged(e,t)}whenAnyAncestorMatches(e){return this._bindingWhenSyntax.whenAnyAncestorMatches(e)}whenNoAncestorMatches(e){return this._bindingWhenSyntax.whenNoAncestorMatches(e)}onActivation(e){return this._bindingOnSyntax.onActivation(e)}onDeactivation(e){return this._bindingOnSyntax.onDeactivation(e)}}class e6{_binding;constructor(e){this._binding=e}inRequestScope(){return this._binding.scope=ee.Request,new e5(this._binding)}inSingletonScope(){return this._binding.scope=ee.Singleton,new e5(this._binding)}inTransientScope(){return this._binding.scope=ee.Transient,new e5(this._binding)}}class e7{_bindingInSyntax;_bindingWhenSyntax;_bindingOnSyntax;_binding;constructor(e){this._binding=e,this._bindingWhenSyntax=new e3(this._binding),this._bindingOnSyntax=new e8(this._binding),this._bindingInSyntax=new e6(e)}inRequestScope(){return this._bindingInSyntax.inRequestScope()}inSingletonScope(){return this._bindingInSyntax.inSingletonScope()}inTransientScope(){return this._bindingInSyntax.inTransientScope()}when(e){return this._bindingWhenSyntax.when(e)}whenTargetNamed(e){return this._bindingWhenSyntax.whenTargetNamed(e)}whenTargetIsDefault(){return this._bindingWhenSyntax.whenTargetIsDefault()}whenTargetTagged(e,t){return this._bindingWhenSyntax.whenTargetTagged(e,t)}whenInjectedInto(e){return this._bindingWhenSyntax.whenInjectedInto(e)}whenParentNamed(e){return this._bindingWhenSyntax.whenParentNamed(e)}whenParentTagged(e,t){return this._bindingWhenSyntax.whenParentTagged(e,t)}whenAnyAncestorIs(e){return this._bindingWhenSyntax.whenAnyAncestorIs(e)}whenNoAncestorIs(e){return this._bindingWhenSyntax.whenNoAncestorIs(e)}whenAnyAncestorNamed(e){return this._bindingWhenSyntax.whenAnyAncestorNamed(e)}whenAnyAncestorTagged(e,t){return this._bindingWhenSyntax.whenAnyAncestorTagged(e,t)}whenNoAncestorNamed(e){return this._bindingWhenSyntax.whenNoAncestorNamed(e)}whenNoAncestorTagged(e,t){return this._bindingWhenSyntax.whenNoAncestorTagged(e,t)}whenAnyAncestorMatches(e){return this._bindingWhenSyntax.whenAnyAncestorMatches(e)}whenNoAncestorMatches(e){return this._bindingWhenSyntax.whenNoAncestorMatches(e)}onActivation(e){return this._bindingOnSyntax.onActivation(e)}onDeactivation(e){return this._bindingOnSyntax.onDeactivation(e)}}class e9{_binding;constructor(e){this._binding=e}to(e){return this._binding.type=et.Instance,this._binding.implementationType=e,new e7(this._binding)}toSelf(){if("function"!=typeof this._binding.serviceIdentifier)throw Error("The toSelf function can only be applied when a constructor is used as service identifier");let e=this._binding.serviceIdentifier;return this.to(e)}toConstantValue(e){return this._binding.type=et.ConstantValue,this._binding.cache=e,this._binding.dynamicValue=null,this._binding.implementationType=null,this._binding.scope=ee.Singleton,new e5(this._binding)}toDynamicValue(e){return this._binding.type=et.DynamicValue,this._binding.cache=null,this._binding.dynamicValue=e,this._binding.implementationType=null,new e7(this._binding)}toConstructor(e){return this._binding.type=et.Constructor,this._binding.implementationType=e,this._binding.scope=ee.Singleton,new e5(this._binding)}toFactory(e){return this._binding.type=et.Factory,this._binding.factory=e,this._binding.scope=ee.Singleton,new e5(this._binding)}toFunction(e){if("function"!=typeof e)throw Error("Value provided to function binding must be a function!");let t=this.toConstantValue(e);return this._binding.type=et.Function,this._binding.scope=ee.Singleton,t}toAutoFactory(e){return this._binding.type=et.Factory,this._binding.factory=t=>()=>t.container.get(e),this._binding.scope=ee.Singleton,new e5(this._binding)}toAutoNamedFactory(e){return this._binding.type=et.Factory,this._binding.factory=t=>n=>t.container.getNamed(e,n),new e5(this._binding)}toProvider(e){return this._binding.type=et.Provider,this._binding.provider=e,this._binding.scope=ee.Singleton,new e5(this._binding)}toService(e){this._binding.type=et.DynamicValue,Object.defineProperty(this._binding,"cache",{configurable:!0,enumerable:!0,get:()=>null,set(e){}}),this._binding.dynamicValue=t=>{try{return t.container.get(e)}catch(n){return t.container.getAsync(e)}},this._binding.implementationType=null}}class te{bindings;activations;deactivations;middleware;moduleActivationStore;static of(e,t,n,r,o){let i=new te;return i.bindings=e,i.middleware=t,i.deactivations=r,i.activations=n,i.moduleActivationStore=o,i}}class tt{_map;constructor(){this._map=new Map}getMap(){return this._map}add(e,t){if(this._checkNonNulish(e),null==t)throw Error(el);let n=this._map.get(e);void 0!==n?n.push(t):this._map.set(e,[t])}get(e){this._checkNonNulish(e);let t=this._map.get(e);if(void 0!==t)return t;throw Error(es)}remove(e){if(this._checkNonNulish(e),!this._map.delete(e))throw Error(es)}removeIntersection(e){this.traverse((t,n)=>{let r=e.hasKey(t)?e.get(t):void 0;if(void 0!==r){let e=n.filter(e=>!r.some(t=>e===t));this._setValue(t,e)}})}removeByCondition(e){let t=[];return this._map.forEach((n,r)=>{let o=[];for(let r of n)e(r)?t.push(r):o.push(r);this._setValue(r,o)}),t}hasKey(e){return this._checkNonNulish(e),this._map.has(e)}clone(){let e=new tt;return this._map.forEach((t,n)=>{t.forEach(t=>{var r;e.add(n,"object"==typeof(r=t)&&null!==r&&"clone"in r&&"function"==typeof r.clone?t.clone():t)})}),e}traverse(e){this._map.forEach((t,n)=>{e(n,t)})}_checkNonNulish(e){if(null==e)throw Error(el)}_setValue(e,t){t.length>0?this._map.set(e,t):this._map.delete(e)}}class tn{_map=new Map;remove(e){let t=this._map.get(e);return void 0===t?this._getEmptyHandlersStore():(this._map.delete(e),t)}addDeactivation(e,t,n){this._getModuleActivationHandlers(e).onDeactivations.add(t,n)}addActivation(e,t,n){this._getModuleActivationHandlers(e).onActivations.add(t,n)}clone(){let e=new tn;return this._map.forEach((t,n)=>{e._map.set(n,{onActivations:t.onActivations.clone(),onDeactivations:t.onDeactivations.clone()})}),e}_getModuleActivationHandlers(e){let t=this._map.get(e);return void 0===t&&(t=this._getEmptyHandlersStore(),this._map.set(e,t)),t}_getEmptyHandlersStore(){return{onActivations:new tt,onDeactivations:new tt}}}class tr{id;parent;options;_middleware;_bindingDictionary;_activations;_deactivations;_snapshots;_metadataReader;_moduleActivationStore;constructor(e){let t=e||{};if("object"!=typeof t)throw Error("Invalid Container constructor argument. Container options must be an object.");if(void 0===t.defaultScope)t.defaultScope=ee.Transient;else if(t.defaultScope!==ee.Singleton&&t.defaultScope!==ee.Transient&&t.defaultScope!==ee.Request)throw Error('Invalid Container option. Default scope must be a string ("singleton" or "transient").');if(void 0===t.autoBindInjectable)t.autoBindInjectable=!1;else if("boolean"!=typeof t.autoBindInjectable)throw Error("Invalid Container option. Auto bind injectable must be a boolean");if(void 0===t.skipBaseClassChecks)t.skipBaseClassChecks=!1;else if("boolean"!=typeof t.skipBaseClassChecks)throw Error("Invalid Container option. Skip base check must be a boolean");this.options={autoBindInjectable:t.autoBindInjectable,defaultScope:t.defaultScope,skipBaseClassChecks:t.skipBaseClassChecks},this.id=eo(),this._bindingDictionary=new tt,this._snapshots=[],this._middleware=null,this._activations=new tt,this._deactivations=new tt,this.parent=null,this._metadataReader=new eh,this._moduleActivationStore=new tn}static merge(e,t,...n){let r=new tr,o=[e,t,...n].map(e=>e$(e)),i=e$(r);return o.forEach(e=>{var t;t=i,e.traverse((e,n)=>{n.forEach(e=>{t.add(e.serviceIdentifier,e.clone())})})}),r}load(...e){let t=this._getContainerModuleHelpersFactory();for(let n of e){let e=t(n.id);n.registry(e.bindFunction,e.unbindFunction,e.isboundFunction,e.rebindFunction,e.unbindAsyncFunction,e.onActivationFunction,e.onDeactivationFunction)}}async loadAsync(...e){let t=this._getContainerModuleHelpersFactory();for(let n of e){let e=t(n.id);await n.registry(e.bindFunction,e.unbindFunction,e.isboundFunction,e.rebindFunction,e.unbindAsyncFunction,e.onActivationFunction,e.onDeactivationFunction)}}unload(...e){e.forEach(e=>{let t=this._removeModuleBindings(e.id);this._deactivateSingletons(t),this._removeModuleHandlers(e.id)})}async unloadAsync(...e){for(let t of e){let e=this._removeModuleBindings(t.id);await this._deactivateSingletonsAsync(e),this._removeModuleHandlers(t.id)}}bind(e){return this._bind(this._buildBinding(e))}rebind(e){return this.unbind(e),this.bind(e)}async rebindAsync(e){return await this.unbindAsync(e),this.bind(e)}unbind(e){if(this._bindingDictionary.hasKey(e)){let t=this._bindingDictionary.get(e);this._deactivateSingletons(t)}this._removeServiceFromDictionary(e)}async unbindAsync(e){if(this._bindingDictionary.hasKey(e)){let t=this._bindingDictionary.get(e);await this._deactivateSingletonsAsync(t)}this._removeServiceFromDictionary(e)}unbindAll(){this._bindingDictionary.traverse((e,t)=>{this._deactivateSingletons(t)}),this._bindingDictionary=new tt}async unbindAllAsync(){let e=[];this._bindingDictionary.traverse((t,n)=>{e.push(this._deactivateSingletonsAsync(n))}),await Promise.all(e),this._bindingDictionary=new tt}onActivation(e,t){this._activations.add(e,t)}onDeactivation(e,t){this._deactivations.add(e,t)}isBound(e){let t=this._bindingDictionary.hasKey(e);return!t&&this.parent&&(t=this.parent.isBound(e)),t}isCurrentBound(e){return this._bindingDictionary.hasKey(e)}isBoundNamed(e,t){return this.isBoundTagged(e,A,t)}isBoundTagged(e,t,n){let r=!1;if(this._bindingDictionary.hasKey(e)){let o=this._bindingDictionary.get(e),i=function(e,t,n,r){let o=w(eM(!1,t,n,r));if(o.kind===G.unmanaged)throw Error("Unexpected metadata when creating target");let i=new T("",o,"Variable");return new eE(t,new ex(e),null,[],i)}(this,e,t,n);r=o.some(e=>e.constraint(i))}return!r&&this.parent&&(r=this.parent.isBoundTagged(e,t,n)),r}snapshot(){this._snapshots.push(te.of(this._bindingDictionary.clone(),this._middleware,this._activations.clone(),this._deactivations.clone(),this._moduleActivationStore.clone()))}restore(){let e=this._snapshots.pop();if(void 0===e)throw Error("No snapshot available to restore.");this._bindingDictionary=e.bindings,this._activations=e.activations,this._deactivations=e.deactivations,this._middleware=e.middleware,this._moduleActivationStore=e.moduleActivationStore}createChild(e){let t=new tr(e||this.options);return t.parent=this,t}applyMiddleware(...e){let t=this._middleware?this._middleware:this._planAndResolve();this._middleware=e.reduce((e,t)=>t(e),t)}applyCustomMetadataReader(e){this._metadataReader=e}get(e){let t=this._getNotAllArgs(e,!1);return this._getButThrowIfAsync(t)}async getAsync(e){let t=this._getNotAllArgs(e,!1);return this._get(t)}getTagged(e,t,n){let r=this._getNotAllArgs(e,!1,t,n);return this._getButThrowIfAsync(r)}async getTaggedAsync(e,t,n){let r=this._getNotAllArgs(e,!1,t,n);return this._get(r)}getNamed(e,t){return this.getTagged(e,A,t)}async getNamedAsync(e,t){return this.getTaggedAsync(e,A,t)}getAll(e){let t=this._getAllArgs(e);return this._getButThrowIfAsync(t)}async getAllAsync(e){let t=this._getAllArgs(e);return this._getAll(t)}getAllTagged(e,t,n){let r=this._getNotAllArgs(e,!0,t,n);return this._getButThrowIfAsync(r)}async getAllTaggedAsync(e,t,n){let r=this._getNotAllArgs(e,!0,t,n);return this._getAll(r)}getAllNamed(e,t){return this.getAllTagged(e,A,t)}async getAllNamedAsync(e,t){return this.getAllTaggedAsync(e,A,t)}resolve(e){let t=this.isBound(e);t||this.bind(e).toSelf();let n=this.get(e);return t||this.unbind(e),n}_preDestroy(e,t){if(void 0!==e&&Reflect.hasMetadata(K,e)){let n=Reflect.getMetadata(K,e);return t[n.value]?.()}}_removeModuleHandlers(e){let t=this._moduleActivationStore.remove(e);this._activations.removeIntersection(t.onActivations),this._deactivations.removeIntersection(t.onDeactivations)}_removeModuleBindings(e){return this._bindingDictionary.removeByCondition(t=>t.moduleId===e)}_deactivate(e,t){let n=null==t?void 0:Object.getPrototypeOf(t).constructor;try{if(this._deactivations.hasKey(e.serviceIdentifier)){let r=this._deactivateContainer(t,this._deactivations.get(e.serviceIdentifier).values());if(eR(r))return this._handleDeactivationError(r.then(async()=>this._propagateContainerDeactivationThenBindingAndPreDestroyAsync(e,t,n)),e.serviceIdentifier)}let r=this._propagateContainerDeactivationThenBindingAndPreDestroy(e,t,n);if(eR(r))return this._handleDeactivationError(r,e.serviceIdentifier)}catch(t){if(t instanceof Error)throw Error(ef(em(e.serviceIdentifier),t.message))}}async _handleDeactivationError(e,t){try{await e}catch(e){if(e instanceof Error)throw Error(ef(em(t),e.message))}}_deactivateContainer(e,t){let n=t.next();for(;"function"==typeof n.value;){let r=n.value(e);if(eR(r))return r.then(async()=>this._deactivateContainerAsync(e,t));n=t.next()}}async _deactivateContainerAsync(e,t){let n=t.next();for(;"function"==typeof n.value;)await n.value(e),n=t.next()}_getContainerModuleHelpersFactory(){let e=e=>t=>{let n=this._buildBinding(t);return n.moduleId=e,this._bind(n)},t=()=>e=>{this.unbind(e)},n=()=>async e=>this.unbindAsync(e),r=()=>e=>this.isBound(e),o=t=>{let n=e(t);return e=>(this.unbind(e),n(e))},i=e=>(t,n)=>{this._moduleActivationStore.addActivation(e,t,n),this.onActivation(t,n)},a=e=>(t,n)=>{this._moduleActivationStore.addDeactivation(e,t,n),this.onDeactivation(t,n)};return l=>({bindFunction:e(l),isboundFunction:r(),onActivationFunction:i(l),onDeactivationFunction:a(l),rebindFunction:o(l),unbindAsyncFunction:n(),unbindFunction:t()})}_bind(e){return this._bindingDictionary.add(e.serviceIdentifier,e),new e9(e)}_buildBinding(e){return new ei(e,this.options.defaultScope||ee.Transient)}async _getAll(e){return Promise.all(this._get(e))}_get(e){let t={...e,contextInterceptor:e=>e,targetType:en.Variable};if(this._middleware){let e=this._middleware(t);if(null==e)throw Error("Invalid return type in middleware. Middleware must return!");return e}return this._planAndResolve()(t)}_getButThrowIfAsync(e){let t=this._get(e);if(eP(t))throw Error(`You are attempting to construct ${function(e){return"function"==typeof e?`[function/class ${e.name||""}]`:"symbol"==typeof e?e.toString():`'${e}'`}(e.serviceIdentifier)} in a synchronous way but it has asynchronous dependencies.`);return t}_getAllArgs(e){return{avoidConstraints:!0,isMultiInject:!0,serviceIdentifier:e}}_getNotAllArgs(e,t,n,r){return{avoidConstraints:!1,isMultiInject:t,key:n,serviceIdentifier:e,value:r}}_planAndResolve(){return e=>{let t=eZ(this._metadataReader,this,e.isMultiInject,e.targetType,e.serviceIdentifier,e.key,e.value,e.avoidConstraints);return function(e){return eF(e.plan.rootRequest.requestScope)(e.plan.rootRequest)}(t=e.contextInterceptor(t))}}_deactivateIfSingleton(e){if(e.activated)return eR(e.cache)?e.cache.then(t=>this._deactivate(e,t)):this._deactivate(e,e.cache)}_deactivateSingletons(e){for(let t of e)if(eR(this._deactivateIfSingleton(t)))throw Error("Attempting to unbind dependency with asynchronous destruction (@preDestroy or onDeactivation)")}async _deactivateSingletonsAsync(e){await Promise.all(e.map(async e=>this._deactivateIfSingleton(e)))}_propagateContainerDeactivationThenBindingAndPreDestroy(e,t,n){return this.parent?this._deactivate.bind(this.parent)(e,t):this._bindingDeactivationAndPreDestroy(e,t,n)}async _propagateContainerDeactivationThenBindingAndPreDestroyAsync(e,t,n){this.parent?await this._deactivate.bind(this.parent)(e,t):await this._bindingDeactivationAndPreDestroyAsync(e,t,n)}_removeServiceFromDictionary(e){try{this._bindingDictionary.remove(e)}catch(t){throw Error(`Could not unbind serviceIdentifier: ${em(e)}`)}}_bindingDeactivationAndPreDestroy(e,t,n){if("function"==typeof e.onDeactivation){let r=e.onDeactivation(t);if(eR(r))return r.then(()=>this._preDestroy(n,t))}return this._preDestroy(n,t)}async _bindingDeactivationAndPreDestroyAsync(e,t,n){"function"==typeof e.onDeactivation&&await e.onDeactivation(t),await this._preDestroy(n,t)}}class to{id;registry;constructor(e){this.id=eo(),this.registry=e}}class ti{id;registry;constructor(e){this.id=eo(),this.registry=e}}function ta(e,t,n,r){!function(e){if(void 0!==e)throw Error(ed)}(t),ts(H,e,n.toString(),r)}function tl(e){let t=[];if(Array.isArray(e)){let n=function(e){let t=new Set;for(let n of e){if(t.has(n))return n;t.add(n)}}((t=e).map(e=>e.key));if(void 0!==n)throw Error(`${ea} ${n.toString()}`)}else t=[e];return t}function ts(e,t,n,r){let o=tl(r),i={};Reflect.hasOwnMetadata(e,t)&&(i=Reflect.getMetadata(e,t));let a=i[n];if(void 0===a)a=[];else for(let e of a)if(o.some(t=>t.key===e.key))throw Error(`${ea} ${e.key.toString()}`);a.push(...o),i[n]=a,Reflect.defineMetadata(e,i,t)}function tc(e){return(t,n,r)=>{"number"==typeof r?ta(t,n,r,e):function(e,t,n){if(void 0!==e.prototype)throw Error(ed);ts(F,e.constructor,t,n)}(t,n,e)}}function tu(e,t){Reflect.decorate(e,t)}function td(e,t){return function(n,r){t(n,r,e)}}function tf(e,t,n){"number"==typeof n?tu([td(n,e)],t):"string"==typeof n?Reflect.decorate([e],t,n):tu([e],t)}function th(){return function(e){if(Reflect.hasOwnMetadata(W,e))throw Error("Cannot apply @injectable decorator multiple times.");return Reflect.defineMetadata(W,Reflect.getMetadata(V,e)||[],e),e}}function tp(e,t){return tc(new eS(e,t))}function tm(e){return tc(new eS(A,e))}function tg(e){return t=>(n,r,o)=>{if(void 0===t){let e="function"==typeof n?n.name:n.constructor.name;throw Error(`@inject called with undefined this could mean that the class ${e} has a circular dependency problem. You can use a LazyServiceIdentifer to overcome this limitation.`)}tc(new eS(e,t))(n,r,o)}}let tv=tg(z);function tb(){return tc(new eS(L,!0))}function ty(){return function(e,t,n){ta(e,t,n,new eS(_,!0))}}let tw=tg(B);function tx(e){return function(t,n,r){ta(t,n,r,new eS(D,e))}}function tS(e,t){return()=>(n,r)=>{let o=new eS(e,r);if(Reflect.hasOwnMetadata(e,n.constructor))throw Error(t);Reflect.defineMetadata(e,o,n.constructor)}}let tk=tS(q,"Cannot apply @postConstruct decorator multiple times in the same class"),tC=tS(K,"Cannot apply @preDestroy decorator multiple times in the same class"),tE=J},52028:function(e,t,n){"use strict";n.d(t,{Z:()=>u});let r=e=>"object"==typeof e&&null!=e&&1===e.nodeType,o=(e,t)=>(!t||"hidden"!==e)&&"visible"!==e&&"clip"!==e,i=(e,t)=>{if(e.clientHeight{let t=(e=>{if(!e.ownerDocument||!e.ownerDocument.defaultView)return null;try{return e.ownerDocument.defaultView.frameElement}catch(e){return null}})(e);return!!t&&(t.clientHeightit||i>e&&a=t&&l>=n?i-e-r:a>t&&ln?a-t+o:0,l=e=>{let t=e.parentElement;return null==t?e.getRootNode().host||null:t},s=(e,t)=>{var n,o,s,c;if("undefined"==typeof document)return[];let{scrollMode:u,block:d,inline:f,boundary:h,skipOverflowHiddenElements:p}=t,m="function"==typeof h?h:e=>e!==h;if(!r(e))throw TypeError("Invalid target");let g=document.scrollingElement||document.documentElement,v=[],b=e;for(;r(b)&&m(b);){if((b=l(b))===g){v.push(b);break}null!=b&&b===document.body&&i(b)&&!i(document.documentElement)||null!=b&&i(b,p)&&v.push(b)}let y=null!=(o=null==(n=window.visualViewport)?void 0:n.width)?o:innerWidth,w=null!=(c=null==(s=window.visualViewport)?void 0:s.height)?c:innerHeight,{scrollX:x,scrollY:S}=window,{height:k,width:C,top:E,right:$,bottom:O,left:M}=e.getBoundingClientRect(),{top:I,right:N,bottom:Z,left:R}=(e=>{let t=window.getComputedStyle(e);return{top:parseFloat(t.scrollMarginTop)||0,right:parseFloat(t.scrollMarginRight)||0,bottom:parseFloat(t.scrollMarginBottom)||0,left:parseFloat(t.scrollMarginLeft)||0}})(e),P="start"===d||"nearest"===d?E-I:"end"===d?O+Z:E+k/2-I+Z,T="center"===f?M+C/2-R+N:"end"===f?$+N:M-R,j=[];for(let e=0;e=0&&M>=0&&O<=w&&$<=y&&(t===g&&!i(t)||E>=o&&O<=s&&M>=c&&$<=l))break;let h=getComputedStyle(t),p=parseInt(h.borderLeftWidth,10),m=parseInt(h.borderTopWidth,10),b=parseInt(h.borderRightWidth,10),I=parseInt(h.borderBottomWidth,10),N=0,Z=0,R="offsetWidth"in t?t.offsetWidth-t.clientWidth-p-b:0,A="offsetHeight"in t?t.offsetHeight-t.clientHeight-m-I:0,D="offsetWidth"in t?0===t.offsetWidth?0:r/t.offsetWidth:0,_="offsetHeight"in t?0===t.offsetHeight?0:n/t.offsetHeight:0;if(g===t)N="start"===d?P:"end"===d?P-w:"nearest"===d?a(S,S+w,w,m,I,S+P,S+P+k,k):P-w/2,Z="start"===f?T:"center"===f?T-y/2:"end"===f?T-y:a(x,x+y,y,p,b,x+T,x+T+C,C),N=Math.max(0,N+S),Z=Math.max(0,Z+x);else{N="start"===d?P-o-m:"end"===d?P-s+I+A:"nearest"===d?a(o,s,n,m,I+A,P,P+k,k):P-(o+n/2)+A/2,Z="start"===f?T-c-p:"center"===f?T-(c+r/2)+R/2:"end"===f?T-l+b+R:a(c,l,r,p,b+R,T,T+C,C);let{scrollLeft:e,scrollTop:i}=t;N=0===_?0:Math.max(0,Math.min(i+N/_,t.scrollHeight-n/_+A)),Z=0===D?0:Math.max(0,Math.min(e+Z/D,t.scrollWidth-r/D+R)),P+=i-N,T+=e-Z}j.push({el:t,top:N,left:Z})}return j},c=e=>{let t;return!1===e?{block:"end",inline:"nearest"}:(t=e)===Object(t)&&0!==Object.keys(t).length?e:{block:"start",inline:"nearest"}};function u(e,t){let n;if(!e.isConnected||!(e=>{let t=e;for(;t&&t.parentNode;){if(t.parentNode===document)return!0;t=t.parentNode instanceof ShadowRoot?t.parentNode.host:t.parentNode}return!1})(e))return;let r=(e=>{let t=window.getComputedStyle(e);return{top:parseFloat(t.scrollMarginTop)||0,right:parseFloat(t.scrollMarginRight)||0,bottom:parseFloat(t.scrollMarginBottom)||0,left:parseFloat(t.scrollMarginLeft)||0}})(e);if("object"==typeof(n=t)&&"function"==typeof n.behavior)return t.behavior(s(e,t));let o="boolean"==typeof t||null==t?void 0:t.behavior;for(let{el:n,top:i,left:a}of s(e,c(t))){let e=i-r.top+r.bottom,t=a-r.left+r.right;n.scroll({top:e,left:t,behavior:o})}}},20855:function(e,t,n){"use strict";n.d(t,{V:()=>l});let r="ΝΌ",o="undefined"==typeof Symbol?"__"+r:Symbol.for(r),i="undefined"==typeof Symbol?"__styleSet"+Math.floor(1e8*Math.random()):Symbol("styleSet"),a="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:{};class l{constructor(e,t){this.rules=[];let{finish:n}=t||{};function r(e){return/^@/.test(e)?[e]:e.split(/,\s*/)}function o(e,t,i,a){let l=[],s=/^@(\w+)\b/.exec(e[0]),c=s&&"keyframes"==s[1];if(s&&null==t)return i.push(e[0]+";");for(let n in t){let a=t[n];if(/&/.test(n))o(n.split(/,\s*/).map(t=>e.map(e=>t.replace(/&/,e))).reduce((e,t)=>e.concat(t)),a,i);else if(a&&"object"==typeof a){if(!s)throw RangeError("The value of a property ("+n+") should be a primitive value.");o(r(n),a,l,c)}else null!=a&&l.push(n.replace(/_.*/,"").replace(/[A-Z]/g,e=>"-"+e.toLowerCase())+": "+a+";")}(l.length||c)&&i.push((n&&!s&&!a?e.map(n):e).join(", ")+" {"+l.join(" ")+"}")}for(let t in e)o(r(t),e[t],this.rules)}getRules(){return this.rules.join("\n")}static newName(){let e=a[o]||1;return a[o]=e+1,r+e.toString(36)}static mount(e,t,n){let r=e[i],o=n&&n.nonce;r?o&&r.setNonce(o):r=new c(e,o),r.mount(Array.isArray(t)?t:[t],e)}}let s=new Map;class c{constructor(e,t){let n=e.ownerDocument||e,r=n.defaultView;if(!e.head&&e.adoptedStyleSheets&&r.CSSStyleSheet){let t=s.get(n);if(t)return e[i]=t;this.sheet=new r.CSSStyleSheet,s.set(n,this)}else this.styleTag=n.createElement("style"),t&&this.styleTag.setAttribute("nonce",t);this.modules=[],e[i]=this}mount(e,t){let n=this.sheet,r=0,o=0;for(let t=0;t-1&&(this.modules.splice(a,1),o--,a=-1),-1==a){if(this.modules.splice(o++,0,i),n)for(let e=0;et.adoptedStyleSheets.indexOf(this.sheet)&&(t.adoptedStyleSheets=[this.sheet,...t.adoptedStyleSheets]);else{let e="";for(let t=0;t{__webpack_require__.federation||(__webpack_require__.federation={chunkMatcher:function(e){return!/^(1318|3209|3604|4656|4892|7339|7977|814)$/.test(e)},rootOutputDir:"../../"})})(),(()=>{var e="function"==typeof Symbol?Symbol("webpack queues"):"__webpack_queues__",t="function"==typeof Symbol?Symbol("webpack exports"):"__webpack_exports__",n="function"==typeof Symbol?Symbol("webpack error"):"__webpack_error__",r=e=>{e&&e.d<1&&(e.d=1,e.forEach(e=>e.r--),e.forEach(e=>e.r--?e.r++:e()))},o=o=>o.map(o=>{if(null!==o&&"object"==typeof o){if(o[e])return o;if(o.then){var i=[];i.d=0,o.then(e=>{a[t]=e,r(i)},e=>{a[n]=e,r(i)});var a={};return a[e]=e=>e(i),a}}var l={};return l[e]=function(){},l[t]=o,l});__webpack_require__.a=(i,a,l)=>{l&&((s=[]).d=-1);var s,c,u,d,f=new Set,h=i.exports,p=new Promise((e,t)=>{d=t,u=e});p[t]=h,p[e]=e=>{s&&e(s),f.forEach(e),p.catch(function(){})},i.exports=p,a(r=>{c=o(r);var i,a=()=>c.map(e=>{if(e[n])throw e[n];return e[t]}),l=new Promise(t=>{(i=()=>t(a)).r=0;var n=e=>e!==s&&!f.has(e)&&(f.add(e),e&&!e.d&&(i.r++,e.push(i)));c.map(t=>t[e](n))});return i.r?l:a()},e=>(e?d(p[n]=e):u(h),r(s))),s&&s.d<0&&(s.d=0)}})(),(()=>{__webpack_require__.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return __webpack_require__.d(t,{a:t}),t}})(),(()=>{__webpack_require__.d=(e,t)=>{for(var n in t)__webpack_require__.o(t,n)&&!__webpack_require__.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})}})(),(()=>{__webpack_require__.f={},__webpack_require__.e=e=>Promise.all(Object.keys(__webpack_require__.f).reduce((t,n)=>(__webpack_require__.f[n](e,t),t),[]))})(),(()=>{__webpack_require__.hmd=e=>((e=Object.create(e)).children||(e.children=[]),Object.defineProperty(e,"exports",{enumerable:!0,set:()=>{throw Error("ES Modules may not assign module.exports or exports.*, Use ESM export syntax, instead: "+e.id)}}),e)})(),(()=>{__webpack_require__.u=e=>"static/js/async/"+(({1085:"__federation_expose_modules__data_object",1159:"__federation_expose_api__user",1249:"__federation_expose_default_export",1633:"__federation_expose_api__thumbnails",1663:"__federation_expose_api__elements",216:"__federation_expose__internal___mf_bootstrap_document_editor_iframe",2316:"__federation_expose_api__perspectives",251:"__federation_expose_api__properties",2660:"__federation_expose_api__custom_metadata",2785:"__federation_expose_api__workflow",2883:"__federation_expose_modules__icon_library",33:"__federation_expose_api__data_object",3639:"__federation_expose_api__tags",3665:"__federation_expose_api__dependencies",3889:"__federation_expose_api__reports",4101:"__federation_expose_modules__document",4196:"__federation_expose_api__schedule",4408:"__federation_expose_modules__class_definitions",4498:"__federation_expose_api__settings",4665:"__federation_expose_api__version",5282:"__federation_expose_api__role",6834:"__federation_expose_api",6884:"__federation_expose_api__documents",7134:"__federation_expose_api__translations",7194:"__federation_expose_app",7750:"__federation_expose_modules__user",7950:"__federation_expose_api__class_definition",8174:"__federation_expose_api__metadata",840:"__federation_expose_modules__asset",8522:"__federation_expose_utils",8785:"__federation_expose__internal___mf_bootstrap"})[e]||e)+"."+({0:"9576d6fe",1047:"2bb3fd91",105:"b3ed03a6",1064:"a444e516",1069:"c751acfe",1085:"9692bdfb",1151:"1de88f3a",1159:"6c028a06",1224:"4353a5f1",1245:"7092be8b",1249:"b3f494c2",1267:"a35fa847",1296:"93efc03d",1333:"00749a1d",1334:"676803d0",1447:"23221551",1472:"10b13d60",148:"e9ac8d64",1489:"c79950dd",1498:"76119a63",1519:"b0a37b46",1528:"5353f329",1567:"1b498cf5",1595:"3793e4f4",1597:"8c0076ee",161:"ff32631b",1623:"a127f6ac",1633:"fb843215",1657:"1d133530",1663:"a748d1c6",1690:"b2b98aaf",1698:"da67ca2a",1746:"20f0870c",1752:"b8d97cb5",1758:"7d46b820",1778:"f279d1cd",1851:"50e72f7c",1869:"daad6453",1882:"f07f0a1d",1888:"980ce494",1910:"88cf73f4",2009:"ca309c35",2011:"cfb5b180",2027:"42242eaa",207:"dc534702",2076:"640559f7",2080:"73ea7df5",2092:"fae343e8",2111:"1b5f8480",216:"974c9686",2172:"3cb9bf31",2181:"8892c01c",2202:"482aa090",2227:"0c29417c",2252:"8ba16355",2301:"3e1c8906",2316:"49b81869",2423:"cb31495e",2447:"f3c20c06",2455:"f6530cc5",2468:"acc189ed",2490:"44bedd93",2496:"b4d4039a",251:"3336d115",2557:"e9bb4d27",2612:"10fbf2cb",2660:"2db5c3ae",2785:"4002dbf4",281:"8dfb4b16",2880:"c4ae9e92",2883:"fceebdff",2967:"50db3862",2993:"0685d6bc",3016:"0f65694f",3037:"df1119a5",3075:"f80a7faa",3105:"91f2f020",3107:"a2e539dc",3111:"05f4b107",3118:"44d9247d",33:"bb9c013f",3350:"35853242",3386:"115905f2",3395:"fc64b4c1",3410:"7a951fb2",3449:"8c724520",346:"6816c503",3513:"3b8ff637",3618:"97f3baf4",3636:"874609a2",3639:"4244ce4b",3648:"7f4751c2",3665:"1b4f4baf",3716:"f732acfb",372:"3f29f28f",3770:"007f6481",3852:"98b45d65",3858:"002ff261",3866:"1193117e",3889:"90166d3e",3941:"bbee473e",3948:"ca4bddea",3956:"43790616",3969:"2cf8ec77",4093:"6ecd4f21",4099:"1db429ed",4101:"67bc95cd",4149:"02bec4c1",4190:"892ea34a",4196:"d847219d",420:"c386c9c2",4234:"8a693543",4238:"20c56b2d",4301:"cb8866ae",4322:"343e0435",4353:"4487c361",4370:"e2476933",4374:"c99deb71",438:"b6d0170e",4397:"da3d320a",4408:"29986990",4434:"86886f2f",448:"ff033188",4487:"6d152c7f",4498:"1fe87b47",4513:"90c6869b",4515:"16482028",4549:"74ab684b",4590:"ffd38ea0",46:"29b9e7fb",4611:"cad23c63",4621:"ec5e4711",4650:"14b4e4d5",4665:"1fe07415",4778:"612171c0",4804:"c516461b",4819:"c23fd1b3",4854:"4e190585",4855:"4f5863cc",4857:"30a58545",4864:"192b3c9c",4876:"f79595ca",4898:"dcac9ca5",5012:"9980a00a",5022:"a2a1d487",5032:"bf3d9c93",5153:"16512cb0",516:"0e2f23ae",5182:"cdd2efd8",5221:"5e6b1bc4",5232:"c6d51e6e",5239:"8451c759",526:"3100dd15",5263:"e342215d",5267:"2c16866e",5277:"b1fb56c1",528:"336a27ba",5282:"c05bcddf",531:"727a2b70",5362:"71548a48",5424:"af1b8211",5428:"44819fb0",5435:"19dc6838",5539:"3643c747",5540:"fb4920b4",5559:"18aa4708",5627:"5412f3ad",5639:"f1f63e2c",5647:"9b011d98",5694:"3d4e7cd2",5704:"3a9a4a6c",5705:"f6f1946a",5765:"53f199f6",5791:"e28d60a8",5818:"bab2860a",5853:"b21bc216",5854:"b6a22ba5",5868:"2a3bb0e0",5887:"5599eda1",5933:"0a25011f",5976:"3732d0b9",5978:"246f8ba2",5991:"735b928d",6024:"4826005c",6040:"016dd42b",6060:"f5aecc63",6132:"faee4341",6134:"a5153d0d",6144:"88fc1f36",6153:"d6711a99",6175:"47ee7301",6177:"c04a6699",6210:"0866341b",6269:"17488d08",6274:"913bbdc8",6301:"5c2999cb",6344:"c189db04",6421:"7c99f384",6458:"3374e02c",6497:"e801df72",6520:"40be04a5",6526:"2f880946",6534:"241f683d",6547:"266123c1",6564:"02a274f5",6565:"565c63bb",6648:"51d04568",6671:"78f65d14",6686:"526f417d",6693:"cf072c5b",6732:"d6b8cdc4",6743:"b12f6c26",6789:"3dc3b52a",6807:"43933893",6816:"8f55482c",6834:"f367fc93",6884:"bf1f71bb",6913:"dae2685b",6938:"45560ce7",6974:"5f2c957b",7046:"648a6262",7050:"7467db7e",7065:"b8fc6306",707:"5d05993a",7071:"bc68c184",7085:"68695551",7091:"48f5b66b",7121:"a3f1cdbc",7134:"6b808d2b",7138:"f2408353",7194:"5b207115",7219:"8c91f726",7311:"2ab0eccd",7337:"a17f68de",7374:"352137d7",7386:"bb50ee06",7392:"61615569",7404:"12da9f5b",7448:"892a4f4c",7467:"95d94a75",7468:"eeba76a0",7472:"9a55331e",7502:"8f68529a",7516:"8977ec47",753:"f617a5fd",7551:"d1469cb7",7553:"3b83762f",7577:"a926bedf",7599:"f501b0a1",7602:"3f85988f",7642:"9c387651",7658:"2d37af52",7675:"8fe0706f",7696:"a959d2b1",7698:"c996ed42",7700:"56fbbd81",7750:"6f21700a",7775:"942e75ea",7800:"b8d10431",7809:"b208df94",7830:"a6bff57b",7950:"318f5a5e",7981:"970f7b9e",7998:"52fcf760",8006:"5c3fb0f6",8096:"8918e684",8097:"69160b55",8165:"0098ecbf",8174:"600f2a76",8192:"317eb32f",8226:"765afaed",8275:"7d57d2b4",8308:"6ff2a32b",833:"94eee6df",8336:"063332be",8360:"54b8db04",8385:"16a46dc2",840:"fa50b6ac",8420:"fb4b3f98",8434:"fcc60125",8476:"a2da556e",8500:"f6813f14",8511:"d1d99ec3",8522:"518ac1a0",8526:"3a758371",8554:"e76562c3",8559:"0bb884a7",862:"d21f7451",8625:"2a5d3e9a",8636:"591240c3",8642:"8b0a997f",8690:"64b37ae9",8723:"2f1df9d5",8785:"4aec5d69",8791:"c8a6f64e",8819:"e80def20",8843:"a2b58ed4",8868:"7f37a2ab",8888:"387774c0",8902:"fc737248",8935:"aa3c069a",8961:"2b24b15b",902:"868bc783",9036:"8b6cac41",9086:"69a661be",9100:"3a9e0477",9214:"f2fc22c6",9242:"1f1a62c9",9345:"afd5c749",9368:"b04ae990",9430:"35458b7e",9440:"e652cdcc",9488:"b9085241",9503:"931d6960",9530:"85e2cc52",9563:"ff6db423",9566:"23d76ee1",960:"79eb8316",9638:"a46cb712",9662:"79263c53",9706:"f33e713d",9708:"fe9ac705",9714:"030e0c2c",9815:"0e900f0f",9879:"fdd218f8",9882:"d5988f6d",99:"d0983e15",9906:"16d2a9a6",9972:"24cbd462",9983:"2287eb9d"})[e]+".js"})(),(()=>{__webpack_require__.miniCssF=e=>"static/css/async/"+(({216:"__federation_expose__internal___mf_bootstrap_document_editor_iframe",8785:"__federation_expose__internal___mf_bootstrap"})[e]||e)+"."+({216:"5d6c6f99",6534:"e945e8ba",8785:"5d6c6f99"})[e]+".css"})(),(()=>{__webpack_require__.h=()=>"0c1aacd49a45d254"})(),(()=>{__webpack_require__.g=(()=>{if("object"==typeof globalThis)return globalThis;try{return this||Function("return this")()}catch(e){if("object"==typeof window)return window}})()})(),(()=>{__webpack_require__.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t)})(),(()=>{var e={},t="pimcore_studio_ui_bundle:";__webpack_require__.l=function(n,r,o,i){if(e[n])return void e[n].push(r);if(void 0!==o)for(var a,l,s=document.getElementsByTagName("script"),c=0;c{__webpack_require__.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})}})(),(()=>{__webpack_require__.nmd=e=>(e.paths=[],e.children||(e.children=[]),e)})(),(()=>{__webpack_require__.p="/bundles/pimcorestudioui/build/29a13ccc-8fcc-46fd-853f-7fcf92bb9cc0/"})(),(()=>{__webpack_require__.S={},__webpack_require__.initializeSharingData={scopeToSharingDataMapping:{default:[{name:"@ant-design/colors",version:"7.2.1",factory:()=>()=>__webpack_require__(32282),eager:1,singleton:1,requiredVersion:"^7.2.1"},{name:"@codemirror/lang-css",version:"6.3.1",factory:()=>Promise.all([__webpack_require__.e("7599"),__webpack_require__.e("8360")]).then(()=>()=>__webpack_require__(77151)),eager:0,requiredVersion:"^6.3.0"},{name:"@codemirror/lang-html",version:"6.4.9",factory:()=>Promise.all([__webpack_require__.e("7599"),__webpack_require__.e("7577"),__webpack_require__.e("4892")]).then(()=>()=>__webpack_require__(12227)),eager:0,requiredVersion:"^6.4.9"},{name:"@codemirror/lang-javascript",version:"6.2.4",factory:()=>Promise.all([__webpack_require__.e("7599"),__webpack_require__.e("7700")]).then(()=>()=>__webpack_require__(18666)),eager:0,requiredVersion:"^6.2.2"},{name:"@codemirror/lang-json",version:"6.0.2",factory:()=>Promise.all([__webpack_require__.e("7599"),__webpack_require__.e("5639")]).then(()=>()=>__webpack_require__(62243)),eager:0,requiredVersion:"^6.0.1"},{name:"@codemirror/lang-markdown",version:"6.3.3",factory:()=>Promise.all([__webpack_require__.e("1447"),__webpack_require__.e("3209")]).then(()=>()=>__webpack_require__(62230)),eager:0,requiredVersion:"^6.3.1"},{name:"@codemirror/lang-sql",version:"6.9.0",factory:()=>Promise.all([__webpack_require__.e("7599"),__webpack_require__.e("3969")]).then(()=>()=>__webpack_require__(35589)),eager:0,requiredVersion:"^6.8.0"},{name:"@codemirror/lang-xml",version:"6.1.0",factory:()=>Promise.all([__webpack_require__.e("7599"),__webpack_require__.e("8385")]).then(()=>()=>__webpack_require__(54949)),eager:0,requiredVersion:"^6.1.0"},{name:"@codemirror/lang-yaml",version:"6.1.2",factory:()=>Promise.all([__webpack_require__.e("7599"),__webpack_require__.e("6732")]).then(()=>()=>__webpack_require__(21825)),eager:0,requiredVersion:"^6.1.2"},{name:"@dnd-kit/core",version:"6.3.1",factory:()=>Promise.all([__webpack_require__.e("4854"),__webpack_require__.e("6671")]).then(()=>()=>__webpack_require__(95684)),eager:0,requiredVersion:"^6.1.0"},{name:"@dnd-kit/modifiers",version:"7.0.0",factory:()=>__webpack_require__.e("6060").then(()=>()=>__webpack_require__(32339)),eager:0,requiredVersion:"^7.0.0"},{name:"@dnd-kit/sortable",version:"8.0.0",factory:()=>Promise.all([__webpack_require__.e("1595"),__webpack_require__.e("814"),__webpack_require__.e("5991")]).then(()=>()=>__webpack_require__(45587)),eager:0,requiredVersion:"^8.0.0"},{name:"@reduxjs/toolkit",version:"2.8.2",factory:()=>Promise.all([__webpack_require__.e("8526"),__webpack_require__.e("448"),__webpack_require__.e("7977")]).then(()=>()=>__webpack_require__(94902)),eager:0,requiredVersion:"^2.3.0"},{name:"@tanstack/react-table",version:"8.21.3",factory:()=>__webpack_require__.e("281").then(()=>()=>__webpack_require__(94679)),eager:0,requiredVersion:"^8.20.5"},{name:"@uiw/react-codemirror",version:"^4.23.6",factory:()=>()=>__webpack_require__(48370),eager:1,singleton:1,requiredVersion:"^4.23.6"},{name:"antd-style",version:"3.7.1",factory:()=>Promise.all([__webpack_require__.e("7448"),__webpack_require__.e("1318")]).then(()=>()=>__webpack_require__(86028)),eager:0,requiredVersion:"3.7.x"},{name:"antd",version:"5.22.7",factory:()=>()=>__webpack_require__(98587),eager:1,singleton:1,requiredVersion:"5.22.x"},{name:"classnames",version:"2.5.1",factory:()=>()=>__webpack_require__(63387),eager:1,singleton:1,requiredVersion:"^2.5.1"},{name:"dompurify",version:"3.2.6",factory:()=>__webpack_require__.e("7830").then(()=>()=>__webpack_require__(75373)),eager:0,requiredVersion:"^3.2.1"},{name:"flexlayout-react",version:"0.7.15",factory:()=>__webpack_require__.e("5435").then(()=>()=>__webpack_require__(86352)),eager:0,requiredVersion:"^0.7.15"},{name:"framer-motion",version:"11.18.2",factory:()=>__webpack_require__.e("3956").then(()=>()=>__webpack_require__(47552)),eager:0,requiredVersion:"^11.11.17"},{name:"i18next",version:"23.16.8",factory:()=>__webpack_require__.e("1567").then(()=>()=>__webpack_require__(20994)),eager:0,requiredVersion:"^23.16.8"},{name:"immer",version:"10.1.1",factory:()=>__webpack_require__.e("4374").then(()=>()=>__webpack_require__(18241)),eager:0,requiredVersion:"^10.1.1"},{name:"inversify",version:"6.1.x",factory:()=>()=>__webpack_require__(83427),eager:1},{name:"leaflet-draw",version:"1.0.4",factory:()=>__webpack_require__.e("6565").then(()=>()=>__webpack_require__(21787)),eager:0,requiredVersion:"^1.0.4"},{name:"leaflet",version:"1.9.4",factory:()=>__webpack_require__.e("4876").then(()=>()=>__webpack_require__(45243)),eager:0,requiredVersion:"^1.9.4"},{name:"lodash",version:"4.17.21",factory:()=>__webpack_require__.e("3948").then(()=>()=>__webpack_require__(96486)),eager:0,requiredVersion:"^4.17.21"},{name:"react-compiler-runtime",version:"19.1.0-rc.2",factory:()=>__webpack_require__.e("1752").then(()=>()=>__webpack_require__(65490)),eager:0,requiredVersion:"^19.1.0-rc.2"},{name:"react-dom",version:"18.3.1",factory:()=>()=>__webpack_require__(73935),eager:1,singleton:1,requiredVersion:"18.3.x"},{name:"react-draggable",version:"4.5.0",factory:()=>__webpack_require__.e("1778").then(()=>()=>__webpack_require__(61193)),eager:0,requiredVersion:"^4.4.6"},{name:"react-i18next",version:"14.1.3",factory:()=>__webpack_require__.e("4650").then(()=>()=>__webpack_require__(74976)),eager:0,requiredVersion:"^14.1.3"},{name:"react-redux",version:"9.2.0",factory:()=>__webpack_require__.e("7981").then(()=>()=>__webpack_require__(81722)),eager:0,requiredVersion:"^9.1.2"},{name:"react-router-dom",version:"6.30.1",factory:()=>__webpack_require__.e("5853").then(()=>()=>__webpack_require__(10417)),eager:0,requiredVersion:"^6.28.0"},{name:"react",version:"18.3.1",factory:()=>()=>__webpack_require__(67294),eager:1,singleton:1,requiredVersion:"18.3.x"},{name:"reflect-metadata",version:"0.2.2",factory:()=>()=>__webpack_require__(39481),eager:1,singleton:1,requiredVersion:"*"},{name:"uuid",version:"10.0.0",factory:()=>__webpack_require__.e("1888").then(()=>()=>__webpack_require__(31024)),eager:0,requiredVersion:"^10.0.0"}]},uniqueName:"pimcore_studio_ui_bundle"},__webpack_require__.I=__webpack_require__.I||function(){throw Error("should have __webpack_require__.I")}})(),(()=>{__webpack_require__.consumesLoadingData={chunkMapping:{3209:["97687"],7194:["20173","61742","18898","65707","29649","20602","98914","18788","57147","95445","63583","89935","91363","91936","27823","38558"],4073:["58793","3859","81004","14691","86286"],7339:["60476"],3604:["73288","14092"],4656:["53478"],4892:["50903","55216"],814:["52595"],8522:["45628","25825","29202","79743","71695"],7977:["65605"],1318:["26788"]},moduleIdToConsumeDataMapping:{63583:{shareScope:"default",shareKey:"framer-motion",import:"framer-motion",requiredVersion:"^11.11.17",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>__webpack_require__.e("3956").then(()=>()=>__webpack_require__(47552))},14092:{shareScope:"default",shareKey:"react-redux",import:"react-redux",requiredVersion:"^9.1.2",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>__webpack_require__.e("7981").then(()=>()=>__webpack_require__(81722))},98914:{shareScope:"default",shareKey:"react-draggable",import:"react-draggable",requiredVersion:"^4.4.6",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>__webpack_require__.e("1778").then(()=>()=>__webpack_require__(61193))},71695:{shareScope:"default",shareKey:"react-i18next",import:"react-i18next",requiredVersion:"^14.1.3",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>__webpack_require__.e("4650").then(()=>()=>__webpack_require__(74976))},58793:{shareScope:"default",shareKey:"classnames",import:"classnames",requiredVersion:"^2.5.1",strictVersion:!1,singleton:!0,eager:!0,fallback:()=>()=>__webpack_require__(63387)},3859:{shareScope:"default",shareKey:"react-dom",import:"react-dom",requiredVersion:"18.3.x",strictVersion:!1,singleton:!0,eager:!0,fallback:()=>()=>__webpack_require__(73935)},52595:{shareScope:"default",shareKey:"@dnd-kit/core",import:"@dnd-kit/core",requiredVersion:"^6.1.0",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>__webpack_require__.e("4854").then(()=>()=>__webpack_require__(95684))},91936:{shareScope:"default",shareKey:"@tanstack/react-table",import:"@tanstack/react-table",requiredVersion:"^8.20.5",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>__webpack_require__.e("281").then(()=>()=>__webpack_require__(94679))},20602:{shareScope:"default",shareKey:"react-router-dom",import:"react-router-dom",requiredVersion:"^6.28.0",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>__webpack_require__.e("5853").then(()=>()=>__webpack_require__(10417))},81004:{shareScope:"default",shareKey:"react",import:"react",requiredVersion:"18.3.x",strictVersion:!1,singleton:!0,eager:!0,fallback:()=>()=>__webpack_require__(67294)},27823:{shareScope:"default",shareKey:"@codemirror/lang-yaml",import:"@codemirror/lang-yaml",requiredVersion:"^6.1.2",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>Promise.all([__webpack_require__.e("7599"),__webpack_require__.e("6732")]).then(()=>()=>__webpack_require__(21825))},53478:{shareScope:"default",shareKey:"lodash",import:"lodash",requiredVersion:"^4.17.21",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>__webpack_require__.e("3948").then(()=>()=>__webpack_require__(96486))},20173:{shareScope:"default",shareKey:"@codemirror/lang-xml",import:"@codemirror/lang-xml",requiredVersion:"^6.1.0",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>Promise.all([__webpack_require__.e("7599"),__webpack_require__.e("8385")]).then(()=>()=>__webpack_require__(54949))},89935:{shareScope:"default",shareKey:"flexlayout-react",import:"flexlayout-react",requiredVersion:"^0.7.15",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>__webpack_require__.e("5435").then(()=>()=>__webpack_require__(86352))},73288:{shareScope:"default",shareKey:"@reduxjs/toolkit",import:"@reduxjs/toolkit",requiredVersion:"^2.3.0",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>__webpack_require__.e("448").then(()=>()=>__webpack_require__(94902))},18788:{shareScope:"default",shareKey:"@codemirror/lang-sql",import:"@codemirror/lang-sql",requiredVersion:"^6.8.0",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>Promise.all([__webpack_require__.e("7599"),__webpack_require__.e("3969")]).then(()=>()=>__webpack_require__(35589))},86286:{shareScope:"default",shareKey:"@ant-design/colors",import:"@ant-design/colors",requiredVersion:"^7.2.1",strictVersion:!1,singleton:!0,eager:!0,fallback:()=>()=>__webpack_require__(32282)},57147:{shareScope:"default",shareKey:"react-compiler-runtime",import:"react-compiler-runtime",requiredVersion:"^19.1.0-rc.2",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>__webpack_require__.e("1752").then(()=>()=>__webpack_require__(65490))},79743:{shareScope:"default",shareKey:"uuid",import:"uuid",requiredVersion:"^10.0.0",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>__webpack_require__.e("1888").then(()=>()=>__webpack_require__(31024))},61742:{shareScope:"default",shareKey:"leaflet-draw",import:"leaflet-draw",requiredVersion:"^1.0.4",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>__webpack_require__.e("6565").then(()=>()=>__webpack_require__(21787))},25825:{shareScope:"default",shareKey:"dompurify",import:"dompurify",requiredVersion:"^3.2.1",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>__webpack_require__.e("7830").then(()=>()=>__webpack_require__(75373))},55216:{shareScope:"default",shareKey:"@codemirror/lang-javascript",import:"@codemirror/lang-javascript",requiredVersion:"^6.2.2",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>Promise.all([__webpack_require__.e("7599"),__webpack_require__.e("7700")]).then(()=>()=>__webpack_require__(18666))},45628:{shareScope:"default",shareKey:"i18next",import:"i18next",requiredVersion:"^23.16.8",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>__webpack_require__.e("1567").then(()=>()=>__webpack_require__(20994))},60476:{shareScope:"default",shareKey:"inversify",import:"inversify",requiredVersion:"6.1.x",strictVersion:!0,singleton:!1,eager:!0,fallback:()=>()=>__webpack_require__(83427)},29649:{shareScope:"default",shareKey:"@uiw/react-codemirror",import:"@uiw/react-codemirror",requiredVersion:"^4.23.6",strictVersion:!1,singleton:!0,eager:!0,fallback:()=>()=>__webpack_require__(48370)},95445:{shareScope:"default",shareKey:"@codemirror/lang-json",import:"@codemirror/lang-json",requiredVersion:"^6.0.1",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>Promise.all([__webpack_require__.e("7599"),__webpack_require__.e("5639")]).then(()=>()=>__webpack_require__(62243))},18898:{shareScope:"default",shareKey:"@dnd-kit/modifiers",import:"@dnd-kit/modifiers",requiredVersion:"^7.0.0",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>__webpack_require__.e("8642").then(()=>()=>__webpack_require__(32339))},50903:{shareScope:"default",shareKey:"@codemirror/lang-css",import:"@codemirror/lang-css",requiredVersion:"^6.3.0",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>Promise.all([__webpack_require__.e("7599"),__webpack_require__.e("8360")]).then(()=>()=>__webpack_require__(77151))},97687:{shareScope:"default",shareKey:"@codemirror/lang-html",import:"@codemirror/lang-html",requiredVersion:"^6.4.9",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>Promise.all([__webpack_require__.e("7599"),__webpack_require__.e("7577"),__webpack_require__.e("4892")]).then(()=>()=>__webpack_require__(12227))},91363:{shareScope:"default",shareKey:"leaflet",import:"leaflet",requiredVersion:"^1.9.4",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>__webpack_require__.e("4876").then(()=>()=>__webpack_require__(45243))},38558:{shareScope:"default",shareKey:"@dnd-kit/sortable",import:"@dnd-kit/sortable",requiredVersion:"^8.0.0",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>__webpack_require__.e("1595").then(()=>()=>__webpack_require__(45587))},65707:{shareScope:"default",shareKey:"@codemirror/lang-markdown",import:"@codemirror/lang-markdown",requiredVersion:"^6.3.1",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>__webpack_require__.e("1447").then(()=>()=>__webpack_require__(62230))},65605:{shareScope:"default",shareKey:"immer",import:"immer",requiredVersion:"^10.1.1",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>__webpack_require__.e("4374").then(()=>()=>__webpack_require__(18241))},29202:{shareScope:"default",shareKey:"antd-style",import:"antd-style",requiredVersion:"3.7.x",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>Promise.all([__webpack_require__.e("7448"),__webpack_require__.e("1318")]).then(()=>()=>__webpack_require__(86028))},14691:{shareScope:"default",shareKey:"reflect-metadata",import:"reflect-metadata",requiredVersion:"*",strictVersion:!1,singleton:!0,eager:!0,fallback:()=>()=>__webpack_require__(39481)},26788:{shareScope:"default",shareKey:"antd",import:"antd",requiredVersion:"5.22.x",strictVersion:!1,singleton:!0,eager:!0,fallback:()=>()=>__webpack_require__(98587)}},initialConsumes:["58793","3859","81004","14691","86286"]},__webpack_require__.f.consumes=__webpack_require__.f.consumes||function(){throw Error("should have __webpack_require__.f.consumes")}})(),(()=>{if("undefined"!=typeof document){var e=function(e,t,n,r,o){var i=document.createElement("link");i.rel="stylesheet",i.type="text/css",__webpack_require__.nc&&(i.nonce=__webpack_require__.nc);var a=function(n){if(i.onerror=i.onload=null,"load"===n.type)r();else{var a=n&&("load"===n.type?"missing":n.type),l=n&&n.target&&n.target.href||t,s=Error("Loading CSS chunk "+e+" failed.\\n("+l+")");s.code="CSS_CHUNK_LOAD_FAILED",s.type=a,s.request=l,i.parentNode&&i.parentNode.removeChild(i),o(s)}};return i.onerror=i.onload=a,i.href=t,n?n.parentNode.insertBefore(i,n.nextSibling):document.head.appendChild(i),i},t=function(e,t){for(var n=document.getElementsByTagName("link"),r=0;r{__webpack_require__.initializeExposesData={moduleMap:{".":()=>__webpack_require__.e("1249").then(()=>()=>__webpack_require__(94778)),"./_internal_/mf-bootstrap":()=>Promise.all([__webpack_require__.e("8526"),__webpack_require__.e("1047"),__webpack_require__.e("6534"),__webpack_require__.e("4819"),__webpack_require__.e("7977"),__webpack_require__.e("3604"),__webpack_require__.e("0"),__webpack_require__.e("4656"),__webpack_require__.e("8522"),__webpack_require__.e("1869"),__webpack_require__.e("4892"),__webpack_require__.e("7339"),__webpack_require__.e("1318"),__webpack_require__.e("814"),__webpack_require__.e("3209"),__webpack_require__.e("7194"),__webpack_require__.e("1085"),__webpack_require__.e("4322"),__webpack_require__.e("840"),__webpack_require__.e("7091"),__webpack_require__.e("161"),__webpack_require__.e("8785")]).then(()=>()=>__webpack_require__(11918)),"./_internal_/mf-bootstrap-document-editor-iframe":()=>Promise.all([__webpack_require__.e("8526"),__webpack_require__.e("1047"),__webpack_require__.e("6534"),__webpack_require__.e("4819"),__webpack_require__.e("7977"),__webpack_require__.e("3604"),__webpack_require__.e("0"),__webpack_require__.e("4656"),__webpack_require__.e("8522"),__webpack_require__.e("1869"),__webpack_require__.e("4892"),__webpack_require__.e("7339"),__webpack_require__.e("1318"),__webpack_require__.e("814"),__webpack_require__.e("3209"),__webpack_require__.e("7194"),__webpack_require__.e("1085"),__webpack_require__.e("4322"),__webpack_require__.e("840"),__webpack_require__.e("7091"),__webpack_require__.e("216")]).then(()=>()=>__webpack_require__(76923)),"./components":()=>Promise.all([__webpack_require__.e("8526"),__webpack_require__.e("1047"),__webpack_require__.e("6534"),__webpack_require__.e("7977"),__webpack_require__.e("3604"),__webpack_require__.e("0"),__webpack_require__.e("4656"),__webpack_require__.e("8522"),__webpack_require__.e("1869"),__webpack_require__.e("4892"),__webpack_require__.e("7339"),__webpack_require__.e("1318"),__webpack_require__.e("814"),__webpack_require__.e("3209"),__webpack_require__.e("7194")]).then(()=>()=>__webpack_require__(45114)),"./app":()=>Promise.all([__webpack_require__.e("8526"),__webpack_require__.e("1047"),__webpack_require__.e("6534"),__webpack_require__.e("7977"),__webpack_require__.e("3604"),__webpack_require__.e("0"),__webpack_require__.e("4656"),__webpack_require__.e("8522"),__webpack_require__.e("1869"),__webpack_require__.e("4892"),__webpack_require__.e("7339"),__webpack_require__.e("1318"),__webpack_require__.e("814"),__webpack_require__.e("3209"),__webpack_require__.e("7194")]).then(()=>()=>__webpack_require__(40483)),"./api":()=>Promise.all([__webpack_require__.e("8526"),__webpack_require__.e("1047"),__webpack_require__.e("7977"),__webpack_require__.e("3604"),__webpack_require__.e("6834")]).then(()=>()=>__webpack_require__(42125)),"./api/asset":()=>Promise.all([__webpack_require__.e("8526"),__webpack_require__.e("1047"),__webpack_require__.e("7977"),__webpack_require__.e("3604"),__webpack_require__.e("1869"),__webpack_require__.e("5282")]).then(()=>()=>__webpack_require__(77632)),"./api/class-definition":()=>Promise.all([__webpack_require__.e("8526"),__webpack_require__.e("1047"),__webpack_require__.e("7977"),__webpack_require__.e("3604"),__webpack_require__.e("0"),__webpack_require__.e("7950")]).then(()=>()=>__webpack_require__(73813)),"./api/custom-metadata":()=>Promise.all([__webpack_require__.e("8526"),__webpack_require__.e("1047"),__webpack_require__.e("7977"),__webpack_require__.e("3604"),__webpack_require__.e("2660")]).then(()=>()=>__webpack_require__(42829)),"./api/data-object":()=>Promise.all([__webpack_require__.e("8526"),__webpack_require__.e("1047"),__webpack_require__.e("7977"),__webpack_require__.e("3604"),__webpack_require__.e("33")]).then(()=>()=>__webpack_require__(42399)),"./api/dependencies":()=>Promise.all([__webpack_require__.e("8526"),__webpack_require__.e("1047"),__webpack_require__.e("7977"),__webpack_require__.e("3604"),__webpack_require__.e("3665")]).then(()=>()=>__webpack_require__(10003)),"./api/documents":()=>Promise.all([__webpack_require__.e("8526"),__webpack_require__.e("1047"),__webpack_require__.e("7977"),__webpack_require__.e("3604"),__webpack_require__.e("4656"),__webpack_require__.e("6884")]).then(()=>()=>__webpack_require__(28167)),"./api/elements":()=>Promise.all([__webpack_require__.e("8526"),__webpack_require__.e("1047"),__webpack_require__.e("7977"),__webpack_require__.e("3604"),__webpack_require__.e("1663")]).then(()=>()=>__webpack_require__(31861)),"./api/metadata":()=>Promise.all([__webpack_require__.e("8526"),__webpack_require__.e("1047"),__webpack_require__.e("7977"),__webpack_require__.e("3604"),__webpack_require__.e("8174")]).then(()=>()=>__webpack_require__(61885)),"./api/perspectives":()=>Promise.all([__webpack_require__.e("8526"),__webpack_require__.e("1047"),__webpack_require__.e("7977"),__webpack_require__.e("3604"),__webpack_require__.e("2316")]).then(()=>()=>__webpack_require__(94009)),"./api/properties":()=>Promise.all([__webpack_require__.e("8526"),__webpack_require__.e("1047"),__webpack_require__.e("7977"),__webpack_require__.e("3604"),__webpack_require__.e("251")]).then(()=>()=>__webpack_require__(13966)),"./api/role":()=>Promise.all([__webpack_require__.e("8526"),__webpack_require__.e("1047"),__webpack_require__.e("7977"),__webpack_require__.e("3604"),__webpack_require__.e("1869"),__webpack_require__.e("5282")]).then(()=>()=>__webpack_require__(77632)),"./api/schedule":()=>Promise.all([__webpack_require__.e("8526"),__webpack_require__.e("1047"),__webpack_require__.e("7977"),__webpack_require__.e("3604"),__webpack_require__.e("4196")]).then(()=>()=>__webpack_require__(9161)),"./api/settings":()=>Promise.all([__webpack_require__.e("8526"),__webpack_require__.e("1047"),__webpack_require__.e("7977"),__webpack_require__.e("3604"),__webpack_require__.e("4498")]).then(()=>()=>__webpack_require__(97830)),"./api/tags":()=>Promise.all([__webpack_require__.e("8526"),__webpack_require__.e("1047"),__webpack_require__.e("7977"),__webpack_require__.e("3604"),__webpack_require__.e("3639")]).then(()=>()=>__webpack_require__(12405)),"./api/thumbnails":()=>Promise.all([__webpack_require__.e("8526"),__webpack_require__.e("1047"),__webpack_require__.e("7977"),__webpack_require__.e("3604"),__webpack_require__.e("1633")]).then(()=>()=>__webpack_require__(64039)),"./api/translations":()=>Promise.all([__webpack_require__.e("8526"),__webpack_require__.e("1047"),__webpack_require__.e("7977"),__webpack_require__.e("3604"),__webpack_require__.e("7134")]).then(()=>()=>__webpack_require__(75124)),"./api/user":()=>Promise.all([__webpack_require__.e("8526"),__webpack_require__.e("1047"),__webpack_require__.e("7977"),__webpack_require__.e("3604"),__webpack_require__.e("1159")]).then(()=>()=>__webpack_require__(47866)),"./api/version":()=>Promise.all([__webpack_require__.e("8526"),__webpack_require__.e("1047"),__webpack_require__.e("7977"),__webpack_require__.e("3604"),__webpack_require__.e("4665")]).then(()=>()=>__webpack_require__(91425)),"./api/workflow":()=>Promise.all([__webpack_require__.e("8526"),__webpack_require__.e("1047"),__webpack_require__.e("7977"),__webpack_require__.e("3604"),__webpack_require__.e("2785")]).then(()=>()=>__webpack_require__(70919)),"./api/reports":()=>Promise.all([__webpack_require__.e("8526"),__webpack_require__.e("1047"),__webpack_require__.e("7977"),__webpack_require__.e("3604"),__webpack_require__.e("3889")]).then(()=>()=>__webpack_require__(91504)),"./modules/app":()=>Promise.all([__webpack_require__.e("8526"),__webpack_require__.e("1047"),__webpack_require__.e("6534"),__webpack_require__.e("7977"),__webpack_require__.e("3604"),__webpack_require__.e("0"),__webpack_require__.e("4656"),__webpack_require__.e("8522"),__webpack_require__.e("1869"),__webpack_require__.e("4892"),__webpack_require__.e("7339"),__webpack_require__.e("1318"),__webpack_require__.e("814"),__webpack_require__.e("3209"),__webpack_require__.e("7194")]).then(()=>()=>__webpack_require__(92637)),"./modules/asset":()=>Promise.all([__webpack_require__.e("8526"),__webpack_require__.e("1047"),__webpack_require__.e("6534"),__webpack_require__.e("7977"),__webpack_require__.e("3604"),__webpack_require__.e("0"),__webpack_require__.e("4656"),__webpack_require__.e("8522"),__webpack_require__.e("1869"),__webpack_require__.e("4892"),__webpack_require__.e("7339"),__webpack_require__.e("1318"),__webpack_require__.e("814"),__webpack_require__.e("3209"),__webpack_require__.e("7194"),__webpack_require__.e("840")]).then(()=>()=>__webpack_require__(33665)),"./modules/class-definitions":()=>Promise.all([__webpack_require__.e("8526"),__webpack_require__.e("1047"),__webpack_require__.e("7977"),__webpack_require__.e("3604"),__webpack_require__.e("0"),__webpack_require__.e("4408")]).then(()=>()=>__webpack_require__(80128)),"./modules/data-object":()=>Promise.all([__webpack_require__.e("8526"),__webpack_require__.e("1047"),__webpack_require__.e("6534"),__webpack_require__.e("7977"),__webpack_require__.e("3604"),__webpack_require__.e("0"),__webpack_require__.e("4656"),__webpack_require__.e("8522"),__webpack_require__.e("1869"),__webpack_require__.e("4892"),__webpack_require__.e("7339"),__webpack_require__.e("1318"),__webpack_require__.e("814"),__webpack_require__.e("3209"),__webpack_require__.e("7194"),__webpack_require__.e("1085")]).then(()=>()=>__webpack_require__(13221)),"./modules/document":()=>Promise.all([__webpack_require__.e("8526"),__webpack_require__.e("1047"),__webpack_require__.e("6534"),__webpack_require__.e("7977"),__webpack_require__.e("3604"),__webpack_require__.e("0"),__webpack_require__.e("4656"),__webpack_require__.e("8522"),__webpack_require__.e("1869"),__webpack_require__.e("4892"),__webpack_require__.e("7339"),__webpack_require__.e("1318"),__webpack_require__.e("814"),__webpack_require__.e("3209"),__webpack_require__.e("7194"),__webpack_require__.e("1085"),__webpack_require__.e("4322"),__webpack_require__.e("4101")]).then(()=>()=>__webpack_require__(88466)),"./modules/element":()=>Promise.all([__webpack_require__.e("8526"),__webpack_require__.e("1047"),__webpack_require__.e("6534"),__webpack_require__.e("7977"),__webpack_require__.e("3604"),__webpack_require__.e("0"),__webpack_require__.e("4656"),__webpack_require__.e("8522"),__webpack_require__.e("1869"),__webpack_require__.e("4892"),__webpack_require__.e("7339"),__webpack_require__.e("1318"),__webpack_require__.e("814"),__webpack_require__.e("3209"),__webpack_require__.e("7194")]).then(()=>()=>__webpack_require__(46979)),"./modules/icon-library":()=>Promise.all([__webpack_require__.e("7339"),__webpack_require__.e("2883")]).then(()=>()=>__webpack_require__(20615)),"./modules/user":()=>Promise.all([__webpack_require__.e("8526"),__webpack_require__.e("1047"),__webpack_require__.e("6534"),__webpack_require__.e("7977"),__webpack_require__.e("3604"),__webpack_require__.e("0"),__webpack_require__.e("4656"),__webpack_require__.e("8522"),__webpack_require__.e("1869"),__webpack_require__.e("4892"),__webpack_require__.e("7339"),__webpack_require__.e("1318"),__webpack_require__.e("814"),__webpack_require__.e("3209"),__webpack_require__.e("7194"),__webpack_require__.e("7750")]).then(()=>()=>__webpack_require__(93156)),"./modules/widget-manager":()=>Promise.all([__webpack_require__.e("8526"),__webpack_require__.e("1047"),__webpack_require__.e("6534"),__webpack_require__.e("7977"),__webpack_require__.e("3604"),__webpack_require__.e("0"),__webpack_require__.e("4656"),__webpack_require__.e("8522"),__webpack_require__.e("1869"),__webpack_require__.e("4892"),__webpack_require__.e("7339"),__webpack_require__.e("1318"),__webpack_require__.e("814"),__webpack_require__.e("3209"),__webpack_require__.e("7194")]).then(()=>()=>__webpack_require__(48150)),"./modules/wysiwyg":()=>Promise.all([__webpack_require__.e("8526"),__webpack_require__.e("1047"),__webpack_require__.e("6534"),__webpack_require__.e("7977"),__webpack_require__.e("3604"),__webpack_require__.e("0"),__webpack_require__.e("4656"),__webpack_require__.e("8522"),__webpack_require__.e("1869"),__webpack_require__.e("4892"),__webpack_require__.e("7339"),__webpack_require__.e("1318"),__webpack_require__.e("814"),__webpack_require__.e("3209"),__webpack_require__.e("7194")]).then(()=>()=>__webpack_require__(24853)),"./utils":()=>Promise.all([__webpack_require__.e("4656"),__webpack_require__.e("8522")]).then(()=>()=>__webpack_require__(39679))},shareScope:"default"},__webpack_require__.getContainer=__webpack_require__.getContainer||function(){throw Error("should have __webpack_require__.getContainer")},__webpack_require__.initContainer=__webpack_require__.initContainer||function(){throw Error("should have __webpack_require__.initContainer")}})(),(()=>{var e={4073:0};__webpack_require__.f.j=function(t,n){var r=__webpack_require__.o(e,t)?e[t]:void 0;if(0!==r)if(r)n.push(r[2]);else if(/^(1318|3209|3604|4656|4892|7339|7977|814)$/.test(t))e[t]=0;else{var o=new Promise((n,o)=>r=e[t]=[n,o]);n.push(r[2]=o);var i=__webpack_require__.p+__webpack_require__.u(t),a=Error(),l=function(n){if(__webpack_require__.o(e,t)&&(0!==(r=e[t])&&(e[t]=void 0),r)){var o=n&&("load"===n.type?"missing":n.type),i=n&&n.target&&n.target.src;a.message="Loading chunk "+t+" failed.\n("+o+": "+i+")",a.name="ChunkLoadError",a.type=o,a.request=i,r[1](a)}};__webpack_require__.l(i,l,"chunk-"+t,t)}};var t=(t,n)=>{var r,o,[i,a,l]=n,s=0;if(i.some(t=>0!==e[t])){for(r in a)__webpack_require__.o(a,r)&&(__webpack_require__.m[r]=a[r]);l&&l(__webpack_require__)}for(t&&t(n);s{let n=null;if(i.isArray())n=l.addChildRequest(t.serviceIdentifier,t,i);else{if(null!==t.cache)return;n=l}if(t.type===et.Instance&&null!==t.implementationType){let o=function(e,t){return j(e)(t)}(e,t.implementationType);if(!0!==r.container.options.skipBaseClassChecks){let n=eC(e,t.implementationType);if(o.length= than the number of constructor arguments of its base class.`)}o.forEach(t=>{eI(e,!1,t.serviceIdentifier,r,n,t)})}})}function eN(e,t){let n=[],r=e$(e);return r.hasKey(t)?n=r.get(t):null!==e.parent&&(n=eN(e.parent,t)),n}function eZ(e,t,n,r,o,i,a,l=!1){let s=new ex(t),c=function(e,t,n,r,o,i){let a=w(eM(e,n,o,i));if(a.kind===G.unmanaged)throw Error("Unexpected metadata when creating target");return new T("",a,t)}(n,r,o,0,i,a);try{return eI(e,l,o,s,null,c),s}catch(e){throw ep(e)&&eb(s.plan.rootRequest),e}}function eR(e){return("object"==typeof e&&null!==e||"function"==typeof e)&&"function"==typeof e.then}function eP(e){return!!eR(e)||Array.isArray(e)&&e.some(eR)}let eT=(e,t,n)=>{e.has(t.id)||e.set(t.id,n)},ej=(e,t)=>{e.cache=t,e.activated=!0,eR(t)&&eA(e,t)},eA=async(e,t)=>{try{e.cache=await t}catch(t){throw e.cache=null,e.activated=!1,t}};!function(e){e.DynamicValue="toDynamicValue",e.Factory="toFactory",e.Provider="toProvider"}(Q||(Q={}));let eD=e=>t=>(...n)=>{n.forEach(n=>{e.bind(n).toService(t)})};function e_(e,t,n){let r;if(t.length>0){let o=function(e,t){return e.reduce((e,n)=>{let r=t(n);return n.target.type===en.ConstructorArgument?e.constructorInjections.push(r):(e.propertyRequests.push(n),e.propertyInjections.push(r)),e.isAsync||(e.isAsync=eP(r)),e},{constructorInjections:[],isAsync:!1,propertyInjections:[],propertyRequests:[]})}(t,n),i={...o,constr:e};r=o.isAsync?async function(e){let t=await ez(e.constructorInjections),n=await ez(e.propertyInjections);return eL({...e,constructorInjections:t,propertyInjections:n})}(i):eL(i)}else r=new e;return r}function eL(e){let t=new e.constr(...e.constructorInjections);return e.propertyRequests.forEach((n,r)=>{let o=n.target.identifier,i=e.propertyInjections[r];n.target.isOptional()&&void 0===i||(t[o]=i)}),t}async function ez(e){let t=[];for(let n of e)Array.isArray(n)?t.push(Promise.all(n)):t.push(n);return Promise.all(t)}function eB(e,t){let n=function(e,t){var n,r;if(Reflect.hasMetadata(q,e)){let o=Reflect.getMetadata(q,e);try{return t[o.value]?.()}catch(t){if(t instanceof Error)throw Error((n=e.name,r=t.message,`@postConstruct error in class ${n}: ${r}`))}}}(e,t);return eR(n)?n.then(()=>t):t}function eH(e,t){e.scope!==ee.Singleton&&function(e,t){let n=`Class cannot be instantiated in ${e.scope===ee.Request?"request":"transient"} scope.`;if("function"==typeof e.onDeactivation)throw Error(ef(t.name,n));if(Reflect.hasMetadata(K,t))throw Error(`@preDestroy error in class ${t.name}: ${n}`)}(e,t)}let eF=e=>t=>{t.parentContext.setCurrentRequest(t);let n=t.bindings,r=t.childRequests,o=t.target&&t.target.isArray(),i=!(t.parentRequest&&t.parentRequest.target&&t.target&&t.parentRequest.target.matchesArray(t.target.serviceIdentifier));return o&&i?r.map(t=>eF(e)(t)):t.target.isOptional()&&0===n.length?void 0:eK(e,t,n[0])},eW=(e,t)=>{let n=(e=>{switch(e.type){case et.Factory:return{factory:e.factory,factoryType:Q.Factory};case et.Provider:return{factory:e.provider,factoryType:Q.Provider};case et.DynamicValue:return{factory:e.dynamicValue,factoryType:Q.DynamicValue};default:throw Error(`Unexpected factory type ${e.type}`)}})(e);return((e,t)=>{try{return e()}catch(e){if(ep(e))throw t();throw e}})(()=>n.factory.bind(e)(t),()=>{var e,r;return Error((e=n.factoryType,r=t.currentRequest.serviceIdentifier.toString(),`It looks like there is a circular dependency in one of the '${e}' bindings. Please investigate bindings with service identifier '${r}'.`))})},eV=(e,t,n)=>{let r,o=t.childRequests;switch((e=>{let t=null;switch(e.type){case et.ConstantValue:case et.Function:t=e.cache;break;case et.Constructor:case et.Instance:t=e.implementationType;break;case et.DynamicValue:t=e.dynamicValue;break;case et.Provider:t=e.provider;break;case et.Factory:t=e.factory}if(null===t){let t=em(e.serviceIdentifier);throw Error(`Invalid binding type: ${t}`)}})(n),n.type){case et.ConstantValue:case et.Function:r=n.cache;break;case et.Constructor:r=n.implementationType;break;case et.Instance:r=function(e,t,n,r){eH(e,t);let o=e_(t,n,r);return eR(o)?o.then(e=>eB(t,e)):eB(t,o)}(n,n.implementationType,o,eF(e));break;default:r=eW(n,t.parentContext)}return r},eq=(e,t,n)=>{let r,o,i=(r=e,(o=t).scope===ee.Singleton&&o.activated?o.cache:o.scope===ee.Request&&r.has(o.id)?r.get(o.id):null);return null!==i||((e,t,n)=>{t.scope===ee.Singleton&&ej(t,n),t.scope===ee.Request&&eT(e,t,n)})(e,t,i=n()),i},eK=(e,t,n)=>eq(e,n,()=>{let r=eV(e,t,n);return eR(r)?r.then(e=>eX(t,n,e)):eX(t,n,r)});function eX(e,t,n){let r=eU(e.parentContext,t,n),o=eJ(e.parentContext.container),i,a=o.next();do{i=a.value;let t=e.parentContext,n=eQ(i,e.serviceIdentifier);r=eR(r)?eY(n,t,r):eG(n,t,r),a=o.next()}while(!0!==a.done&&!e$(i).hasKey(e.serviceIdentifier));return r}let eU=(e,t,n)=>"function"==typeof t.onActivation?t.onActivation(e,n):n,eG=(e,t,n)=>{let r=e.next();for(;!0!==r.done;){if(eR(n=r.value(t,n)))return eY(e,t,n);r=e.next()}return n},eY=async(e,t,n)=>{let r=await n,o=e.next();for(;!0!==o.done;)r=await o.value(t,r),o=e.next();return r},eQ=(e,t)=>{let n=e._activations;return n.hasKey(t)?n.get(t).values():[].values()},eJ=e=>{let t=[e],n=e.parent;for(;null!==n;)t.push(n),n=n.parent;return{next:()=>{let e=t.pop();return void 0!==e?{done:!1,value:e}:{done:!0,value:void 0}}}},e0=(e,t)=>{let n=e.parentRequest;return null!==n&&(!!t(n)||e0(n,t))},e1=e=>t=>{let n=n=>null!==n&&null!==n.target&&n.target.matchesTag(e)(t);return n.metaData=new eS(e,t),n},e2=e1(A),e4=e=>t=>{let n=null;return null!==t&&((n=t.bindings[0],"string"==typeof e)?n.serviceIdentifier===e:e===t.bindings[0].implementationType)};class e3{_binding;constructor(e){this._binding=e}when(e){return this._binding.constraint=e,new e8(this._binding)}whenTargetNamed(e){return this._binding.constraint=e2(e),new e8(this._binding)}whenTargetIsDefault(){return this._binding.constraint=e=>null!==e&&null!==e.target&&!e.target.isNamed()&&!e.target.isTagged(),new e8(this._binding)}whenTargetTagged(e,t){return this._binding.constraint=e1(e)(t),new e8(this._binding)}whenInjectedInto(e){return this._binding.constraint=t=>null!==t&&e4(e)(t.parentRequest),new e8(this._binding)}whenParentNamed(e){return this._binding.constraint=t=>null!==t&&e2(e)(t.parentRequest),new e8(this._binding)}whenParentTagged(e,t){return this._binding.constraint=n=>null!==n&&e1(e)(t)(n.parentRequest),new e8(this._binding)}whenAnyAncestorIs(e){return this._binding.constraint=t=>null!==t&&e0(t,e4(e)),new e8(this._binding)}whenNoAncestorIs(e){return this._binding.constraint=t=>null!==t&&!e0(t,e4(e)),new e8(this._binding)}whenAnyAncestorNamed(e){return this._binding.constraint=t=>null!==t&&e0(t,e2(e)),new e8(this._binding)}whenNoAncestorNamed(e){return this._binding.constraint=t=>null!==t&&!e0(t,e2(e)),new e8(this._binding)}whenAnyAncestorTagged(e,t){return this._binding.constraint=n=>null!==n&&e0(n,e1(e)(t)),new e8(this._binding)}whenNoAncestorTagged(e,t){return this._binding.constraint=n=>null!==n&&!e0(n,e1(e)(t)),new e8(this._binding)}whenAnyAncestorMatches(e){return this._binding.constraint=t=>null!==t&&e0(t,e),new e8(this._binding)}whenNoAncestorMatches(e){return this._binding.constraint=t=>null!==t&&!e0(t,e),new e8(this._binding)}}class e8{_binding;constructor(e){this._binding=e}onActivation(e){return this._binding.onActivation=e,new e3(this._binding)}onDeactivation(e){return this._binding.onDeactivation=e,new e3(this._binding)}}class e5{_bindingWhenSyntax;_bindingOnSyntax;_binding;constructor(e){this._binding=e,this._bindingWhenSyntax=new e3(this._binding),this._bindingOnSyntax=new e8(this._binding)}when(e){return this._bindingWhenSyntax.when(e)}whenTargetNamed(e){return this._bindingWhenSyntax.whenTargetNamed(e)}whenTargetIsDefault(){return this._bindingWhenSyntax.whenTargetIsDefault()}whenTargetTagged(e,t){return this._bindingWhenSyntax.whenTargetTagged(e,t)}whenInjectedInto(e){return this._bindingWhenSyntax.whenInjectedInto(e)}whenParentNamed(e){return this._bindingWhenSyntax.whenParentNamed(e)}whenParentTagged(e,t){return this._bindingWhenSyntax.whenParentTagged(e,t)}whenAnyAncestorIs(e){return this._bindingWhenSyntax.whenAnyAncestorIs(e)}whenNoAncestorIs(e){return this._bindingWhenSyntax.whenNoAncestorIs(e)}whenAnyAncestorNamed(e){return this._bindingWhenSyntax.whenAnyAncestorNamed(e)}whenAnyAncestorTagged(e,t){return this._bindingWhenSyntax.whenAnyAncestorTagged(e,t)}whenNoAncestorNamed(e){return this._bindingWhenSyntax.whenNoAncestorNamed(e)}whenNoAncestorTagged(e,t){return this._bindingWhenSyntax.whenNoAncestorTagged(e,t)}whenAnyAncestorMatches(e){return this._bindingWhenSyntax.whenAnyAncestorMatches(e)}whenNoAncestorMatches(e){return this._bindingWhenSyntax.whenNoAncestorMatches(e)}onActivation(e){return this._bindingOnSyntax.onActivation(e)}onDeactivation(e){return this._bindingOnSyntax.onDeactivation(e)}}class e6{_binding;constructor(e){this._binding=e}inRequestScope(){return this._binding.scope=ee.Request,new e5(this._binding)}inSingletonScope(){return this._binding.scope=ee.Singleton,new e5(this._binding)}inTransientScope(){return this._binding.scope=ee.Transient,new e5(this._binding)}}class e7{_bindingInSyntax;_bindingWhenSyntax;_bindingOnSyntax;_binding;constructor(e){this._binding=e,this._bindingWhenSyntax=new e3(this._binding),this._bindingOnSyntax=new e8(this._binding),this._bindingInSyntax=new e6(e)}inRequestScope(){return this._bindingInSyntax.inRequestScope()}inSingletonScope(){return this._bindingInSyntax.inSingletonScope()}inTransientScope(){return this._bindingInSyntax.inTransientScope()}when(e){return this._bindingWhenSyntax.when(e)}whenTargetNamed(e){return this._bindingWhenSyntax.whenTargetNamed(e)}whenTargetIsDefault(){return this._bindingWhenSyntax.whenTargetIsDefault()}whenTargetTagged(e,t){return this._bindingWhenSyntax.whenTargetTagged(e,t)}whenInjectedInto(e){return this._bindingWhenSyntax.whenInjectedInto(e)}whenParentNamed(e){return this._bindingWhenSyntax.whenParentNamed(e)}whenParentTagged(e,t){return this._bindingWhenSyntax.whenParentTagged(e,t)}whenAnyAncestorIs(e){return this._bindingWhenSyntax.whenAnyAncestorIs(e)}whenNoAncestorIs(e){return this._bindingWhenSyntax.whenNoAncestorIs(e)}whenAnyAncestorNamed(e){return this._bindingWhenSyntax.whenAnyAncestorNamed(e)}whenAnyAncestorTagged(e,t){return this._bindingWhenSyntax.whenAnyAncestorTagged(e,t)}whenNoAncestorNamed(e){return this._bindingWhenSyntax.whenNoAncestorNamed(e)}whenNoAncestorTagged(e,t){return this._bindingWhenSyntax.whenNoAncestorTagged(e,t)}whenAnyAncestorMatches(e){return this._bindingWhenSyntax.whenAnyAncestorMatches(e)}whenNoAncestorMatches(e){return this._bindingWhenSyntax.whenNoAncestorMatches(e)}onActivation(e){return this._bindingOnSyntax.onActivation(e)}onDeactivation(e){return this._bindingOnSyntax.onDeactivation(e)}}class e9{_binding;constructor(e){this._binding=e}to(e){return this._binding.type=et.Instance,this._binding.implementationType=e,new e7(this._binding)}toSelf(){if("function"!=typeof this._binding.serviceIdentifier)throw Error("The toSelf function can only be applied when a constructor is used as service identifier");let e=this._binding.serviceIdentifier;return this.to(e)}toConstantValue(e){return this._binding.type=et.ConstantValue,this._binding.cache=e,this._binding.dynamicValue=null,this._binding.implementationType=null,this._binding.scope=ee.Singleton,new e5(this._binding)}toDynamicValue(e){return this._binding.type=et.DynamicValue,this._binding.cache=null,this._binding.dynamicValue=e,this._binding.implementationType=null,new e7(this._binding)}toConstructor(e){return this._binding.type=et.Constructor,this._binding.implementationType=e,this._binding.scope=ee.Singleton,new e5(this._binding)}toFactory(e){return this._binding.type=et.Factory,this._binding.factory=e,this._binding.scope=ee.Singleton,new e5(this._binding)}toFunction(e){if("function"!=typeof e)throw Error("Value provided to function binding must be a function!");let t=this.toConstantValue(e);return this._binding.type=et.Function,this._binding.scope=ee.Singleton,t}toAutoFactory(e){return this._binding.type=et.Factory,this._binding.factory=t=>()=>t.container.get(e),this._binding.scope=ee.Singleton,new e5(this._binding)}toAutoNamedFactory(e){return this._binding.type=et.Factory,this._binding.factory=t=>n=>t.container.getNamed(e,n),new e5(this._binding)}toProvider(e){return this._binding.type=et.Provider,this._binding.provider=e,this._binding.scope=ee.Singleton,new e5(this._binding)}toService(e){this._binding.type=et.DynamicValue,Object.defineProperty(this._binding,"cache",{configurable:!0,enumerable:!0,get:()=>null,set(e){}}),this._binding.dynamicValue=t=>{try{return t.container.get(e)}catch(n){return t.container.getAsync(e)}},this._binding.implementationType=null}}class te{bindings;activations;deactivations;middleware;moduleActivationStore;static of(e,t,n,r,o){let i=new te;return i.bindings=e,i.middleware=t,i.deactivations=r,i.activations=n,i.moduleActivationStore=o,i}}class tt{_map;constructor(){this._map=new Map}getMap(){return this._map}add(e,t){if(this._checkNonNulish(e),null==t)throw Error(el);let n=this._map.get(e);void 0!==n?n.push(t):this._map.set(e,[t])}get(e){this._checkNonNulish(e);let t=this._map.get(e);if(void 0!==t)return t;throw Error(es)}remove(e){if(this._checkNonNulish(e),!this._map.delete(e))throw Error(es)}removeIntersection(e){this.traverse((t,n)=>{let r=e.hasKey(t)?e.get(t):void 0;if(void 0!==r){let e=n.filter(e=>!r.some(t=>e===t));this._setValue(t,e)}})}removeByCondition(e){let t=[];return this._map.forEach((n,r)=>{let o=[];for(let r of n)e(r)?t.push(r):o.push(r);this._setValue(r,o)}),t}hasKey(e){return this._checkNonNulish(e),this._map.has(e)}clone(){let e=new tt;return this._map.forEach((t,n)=>{t.forEach(t=>{var r;e.add(n,"object"==typeof(r=t)&&null!==r&&"clone"in r&&"function"==typeof r.clone?t.clone():t)})}),e}traverse(e){this._map.forEach((t,n)=>{e(n,t)})}_checkNonNulish(e){if(null==e)throw Error(el)}_setValue(e,t){t.length>0?this._map.set(e,t):this._map.delete(e)}}class tn{_map=new Map;remove(e){let t=this._map.get(e);return void 0===t?this._getEmptyHandlersStore():(this._map.delete(e),t)}addDeactivation(e,t,n){this._getModuleActivationHandlers(e).onDeactivations.add(t,n)}addActivation(e,t,n){this._getModuleActivationHandlers(e).onActivations.add(t,n)}clone(){let e=new tn;return this._map.forEach((t,n)=>{e._map.set(n,{onActivations:t.onActivations.clone(),onDeactivations:t.onDeactivations.clone()})}),e}_getModuleActivationHandlers(e){let t=this._map.get(e);return void 0===t&&(t=this._getEmptyHandlersStore(),this._map.set(e,t)),t}_getEmptyHandlersStore(){return{onActivations:new tt,onDeactivations:new tt}}}class tr{id;parent;options;_middleware;_bindingDictionary;_activations;_deactivations;_snapshots;_metadataReader;_moduleActivationStore;constructor(e){let t=e||{};if("object"!=typeof t)throw Error("Invalid Container constructor argument. Container options must be an object.");if(void 0===t.defaultScope)t.defaultScope=ee.Transient;else if(t.defaultScope!==ee.Singleton&&t.defaultScope!==ee.Transient&&t.defaultScope!==ee.Request)throw Error('Invalid Container option. Default scope must be a string ("singleton" or "transient").');if(void 0===t.autoBindInjectable)t.autoBindInjectable=!1;else if("boolean"!=typeof t.autoBindInjectable)throw Error("Invalid Container option. Auto bind injectable must be a boolean");if(void 0===t.skipBaseClassChecks)t.skipBaseClassChecks=!1;else if("boolean"!=typeof t.skipBaseClassChecks)throw Error("Invalid Container option. Skip base check must be a boolean");this.options={autoBindInjectable:t.autoBindInjectable,defaultScope:t.defaultScope,skipBaseClassChecks:t.skipBaseClassChecks},this.id=eo(),this._bindingDictionary=new tt,this._snapshots=[],this._middleware=null,this._activations=new tt,this._deactivations=new tt,this.parent=null,this._metadataReader=new eh,this._moduleActivationStore=new tn}static merge(e,t,...n){let r=new tr,o=[e,t,...n].map(e=>e$(e)),i=e$(r);return o.forEach(e=>{var t;t=i,e.traverse((e,n)=>{n.forEach(e=>{t.add(e.serviceIdentifier,e.clone())})})}),r}load(...e){let t=this._getContainerModuleHelpersFactory();for(let n of e){let e=t(n.id);n.registry(e.bindFunction,e.unbindFunction,e.isboundFunction,e.rebindFunction,e.unbindAsyncFunction,e.onActivationFunction,e.onDeactivationFunction)}}async loadAsync(...e){let t=this._getContainerModuleHelpersFactory();for(let n of e){let e=t(n.id);await n.registry(e.bindFunction,e.unbindFunction,e.isboundFunction,e.rebindFunction,e.unbindAsyncFunction,e.onActivationFunction,e.onDeactivationFunction)}}unload(...e){e.forEach(e=>{let t=this._removeModuleBindings(e.id);this._deactivateSingletons(t),this._removeModuleHandlers(e.id)})}async unloadAsync(...e){for(let t of e){let e=this._removeModuleBindings(t.id);await this._deactivateSingletonsAsync(e),this._removeModuleHandlers(t.id)}}bind(e){return this._bind(this._buildBinding(e))}rebind(e){return this.unbind(e),this.bind(e)}async rebindAsync(e){return await this.unbindAsync(e),this.bind(e)}unbind(e){if(this._bindingDictionary.hasKey(e)){let t=this._bindingDictionary.get(e);this._deactivateSingletons(t)}this._removeServiceFromDictionary(e)}async unbindAsync(e){if(this._bindingDictionary.hasKey(e)){let t=this._bindingDictionary.get(e);await this._deactivateSingletonsAsync(t)}this._removeServiceFromDictionary(e)}unbindAll(){this._bindingDictionary.traverse((e,t)=>{this._deactivateSingletons(t)}),this._bindingDictionary=new tt}async unbindAllAsync(){let e=[];this._bindingDictionary.traverse((t,n)=>{e.push(this._deactivateSingletonsAsync(n))}),await Promise.all(e),this._bindingDictionary=new tt}onActivation(e,t){this._activations.add(e,t)}onDeactivation(e,t){this._deactivations.add(e,t)}isBound(e){let t=this._bindingDictionary.hasKey(e);return!t&&this.parent&&(t=this.parent.isBound(e)),t}isCurrentBound(e){return this._bindingDictionary.hasKey(e)}isBoundNamed(e,t){return this.isBoundTagged(e,A,t)}isBoundTagged(e,t,n){let r=!1;if(this._bindingDictionary.hasKey(e)){let o=this._bindingDictionary.get(e),i=function(e,t,n,r){let o=w(eM(!1,t,n,r));if(o.kind===G.unmanaged)throw Error("Unexpected metadata when creating target");let i=new T("",o,"Variable");return new eE(t,new ex(e),null,[],i)}(this,e,t,n);r=o.some(e=>e.constraint(i))}return!r&&this.parent&&(r=this.parent.isBoundTagged(e,t,n)),r}snapshot(){this._snapshots.push(te.of(this._bindingDictionary.clone(),this._middleware,this._activations.clone(),this._deactivations.clone(),this._moduleActivationStore.clone()))}restore(){let e=this._snapshots.pop();if(void 0===e)throw Error("No snapshot available to restore.");this._bindingDictionary=e.bindings,this._activations=e.activations,this._deactivations=e.deactivations,this._middleware=e.middleware,this._moduleActivationStore=e.moduleActivationStore}createChild(e){let t=new tr(e||this.options);return t.parent=this,t}applyMiddleware(...e){let t=this._middleware?this._middleware:this._planAndResolve();this._middleware=e.reduce((e,t)=>t(e),t)}applyCustomMetadataReader(e){this._metadataReader=e}get(e){let t=this._getNotAllArgs(e,!1);return this._getButThrowIfAsync(t)}async getAsync(e){let t=this._getNotAllArgs(e,!1);return this._get(t)}getTagged(e,t,n){let r=this._getNotAllArgs(e,!1,t,n);return this._getButThrowIfAsync(r)}async getTaggedAsync(e,t,n){let r=this._getNotAllArgs(e,!1,t,n);return this._get(r)}getNamed(e,t){return this.getTagged(e,A,t)}async getNamedAsync(e,t){return this.getTaggedAsync(e,A,t)}getAll(e){let t=this._getAllArgs(e);return this._getButThrowIfAsync(t)}async getAllAsync(e){let t=this._getAllArgs(e);return this._getAll(t)}getAllTagged(e,t,n){let r=this._getNotAllArgs(e,!0,t,n);return this._getButThrowIfAsync(r)}async getAllTaggedAsync(e,t,n){let r=this._getNotAllArgs(e,!0,t,n);return this._getAll(r)}getAllNamed(e,t){return this.getAllTagged(e,A,t)}async getAllNamedAsync(e,t){return this.getAllTaggedAsync(e,A,t)}resolve(e){let t=this.isBound(e);t||this.bind(e).toSelf();let n=this.get(e);return t||this.unbind(e),n}_preDestroy(e,t){if(void 0!==e&&Reflect.hasMetadata(K,e)){let n=Reflect.getMetadata(K,e);return t[n.value]?.()}}_removeModuleHandlers(e){let t=this._moduleActivationStore.remove(e);this._activations.removeIntersection(t.onActivations),this._deactivations.removeIntersection(t.onDeactivations)}_removeModuleBindings(e){return this._bindingDictionary.removeByCondition(t=>t.moduleId===e)}_deactivate(e,t){let n=null==t?void 0:Object.getPrototypeOf(t).constructor;try{if(this._deactivations.hasKey(e.serviceIdentifier)){let r=this._deactivateContainer(t,this._deactivations.get(e.serviceIdentifier).values());if(eR(r))return this._handleDeactivationError(r.then(async()=>this._propagateContainerDeactivationThenBindingAndPreDestroyAsync(e,t,n)),e.serviceIdentifier)}let r=this._propagateContainerDeactivationThenBindingAndPreDestroy(e,t,n);if(eR(r))return this._handleDeactivationError(r,e.serviceIdentifier)}catch(t){if(t instanceof Error)throw Error(ef(em(e.serviceIdentifier),t.message))}}async _handleDeactivationError(e,t){try{await e}catch(e){if(e instanceof Error)throw Error(ef(em(t),e.message))}}_deactivateContainer(e,t){let n=t.next();for(;"function"==typeof n.value;){let r=n.value(e);if(eR(r))return r.then(async()=>this._deactivateContainerAsync(e,t));n=t.next()}}async _deactivateContainerAsync(e,t){let n=t.next();for(;"function"==typeof n.value;)await n.value(e),n=t.next()}_getContainerModuleHelpersFactory(){let e=e=>t=>{let n=this._buildBinding(t);return n.moduleId=e,this._bind(n)},t=()=>e=>{this.unbind(e)},n=()=>async e=>this.unbindAsync(e),r=()=>e=>this.isBound(e),o=t=>{let n=e(t);return e=>(this.unbind(e),n(e))},i=e=>(t,n)=>{this._moduleActivationStore.addActivation(e,t,n),this.onActivation(t,n)},a=e=>(t,n)=>{this._moduleActivationStore.addDeactivation(e,t,n),this.onDeactivation(t,n)};return l=>({bindFunction:e(l),isboundFunction:r(),onActivationFunction:i(l),onDeactivationFunction:a(l),rebindFunction:o(l),unbindAsyncFunction:n(),unbindFunction:t()})}_bind(e){return this._bindingDictionary.add(e.serviceIdentifier,e),new e9(e)}_buildBinding(e){return new ei(e,this.options.defaultScope||ee.Transient)}async _getAll(e){return Promise.all(this._get(e))}_get(e){let t={...e,contextInterceptor:e=>e,targetType:en.Variable};if(this._middleware){let e=this._middleware(t);if(null==e)throw Error("Invalid return type in middleware. Middleware must return!");return e}return this._planAndResolve()(t)}_getButThrowIfAsync(e){let t=this._get(e);if(eP(t))throw Error(`You are attempting to construct ${function(e){return"function"==typeof e?`[function/class ${e.name||""}]`:"symbol"==typeof e?e.toString():`'${e}'`}(e.serviceIdentifier)} in a synchronous way but it has asynchronous dependencies.`);return t}_getAllArgs(e){return{avoidConstraints:!0,isMultiInject:!0,serviceIdentifier:e}}_getNotAllArgs(e,t,n,r){return{avoidConstraints:!1,isMultiInject:t,key:n,serviceIdentifier:e,value:r}}_planAndResolve(){return e=>{let t=eZ(this._metadataReader,this,e.isMultiInject,e.targetType,e.serviceIdentifier,e.key,e.value,e.avoidConstraints);return function(e){return eF(e.plan.rootRequest.requestScope)(e.plan.rootRequest)}(t=e.contextInterceptor(t))}}_deactivateIfSingleton(e){if(e.activated)return eR(e.cache)?e.cache.then(t=>this._deactivate(e,t)):this._deactivate(e,e.cache)}_deactivateSingletons(e){for(let t of e)if(eR(this._deactivateIfSingleton(t)))throw Error("Attempting to unbind dependency with asynchronous destruction (@preDestroy or onDeactivation)")}async _deactivateSingletonsAsync(e){await Promise.all(e.map(async e=>this._deactivateIfSingleton(e)))}_propagateContainerDeactivationThenBindingAndPreDestroy(e,t,n){return this.parent?this._deactivate.bind(this.parent)(e,t):this._bindingDeactivationAndPreDestroy(e,t,n)}async _propagateContainerDeactivationThenBindingAndPreDestroyAsync(e,t,n){this.parent?await this._deactivate.bind(this.parent)(e,t):await this._bindingDeactivationAndPreDestroyAsync(e,t,n)}_removeServiceFromDictionary(e){try{this._bindingDictionary.remove(e)}catch(t){throw Error(`Could not unbind serviceIdentifier: ${em(e)}`)}}_bindingDeactivationAndPreDestroy(e,t,n){if("function"==typeof e.onDeactivation){let r=e.onDeactivation(t);if(eR(r))return r.then(()=>this._preDestroy(n,t))}return this._preDestroy(n,t)}async _bindingDeactivationAndPreDestroyAsync(e,t,n){"function"==typeof e.onDeactivation&&await e.onDeactivation(t),await this._preDestroy(n,t)}}class to{id;registry;constructor(e){this.id=eo(),this.registry=e}}class ti{id;registry;constructor(e){this.id=eo(),this.registry=e}}function ta(e,t,n,r){!function(e){if(void 0!==e)throw Error(ed)}(t),ts(H,e,n.toString(),r)}function tl(e){let t=[];if(Array.isArray(e)){let n=function(e){let t=new Set;for(let n of e){if(t.has(n))return n;t.add(n)}}((t=e).map(e=>e.key));if(void 0!==n)throw Error(`${ea} ${n.toString()}`)}else t=[e];return t}function ts(e,t,n,r){let o=tl(r),i={};Reflect.hasOwnMetadata(e,t)&&(i=Reflect.getMetadata(e,t));let a=i[n];if(void 0===a)a=[];else for(let e of a)if(o.some(t=>t.key===e.key))throw Error(`${ea} ${e.key.toString()}`);a.push(...o),i[n]=a,Reflect.defineMetadata(e,i,t)}function tc(e){return(t,n,r)=>{"number"==typeof r?ta(t,n,r,e):function(e,t,n){if(void 0!==e.prototype)throw Error(ed);ts(F,e.constructor,t,n)}(t,n,e)}}function tu(e,t){Reflect.decorate(e,t)}function td(e,t){return function(n,r){t(n,r,e)}}function tf(e,t,n){"number"==typeof n?tu([td(n,e)],t):"string"==typeof n?Reflect.decorate([e],t,n):tu([e],t)}function th(){return function(e){if(Reflect.hasOwnMetadata(W,e))throw Error("Cannot apply @injectable decorator multiple times.");return Reflect.defineMetadata(W,Reflect.getMetadata(V,e)||[],e),e}}function tp(e,t){return tc(new eS(e,t))}function tm(e){return tc(new eS(A,e))}function tg(e){return t=>(n,r,o)=>{if(void 0===t){let e="function"==typeof n?n.name:n.constructor.name;throw Error(`@inject called with undefined this could mean that the class ${e} has a circular dependency problem. You can use a LazyServiceIdentifer to overcome this limitation.`)}tc(new eS(e,t))(n,r,o)}}let tv=tg(z);function tb(){return tc(new eS(L,!0))}function ty(){return function(e,t,n){ta(e,t,n,new eS(_,!0))}}let tw=tg(B);function tx(e){return function(t,n,r){ta(t,n,r,new eS(D,e))}}function tS(e,t){return()=>(n,r)=>{let o=new eS(e,r);if(Reflect.hasOwnMetadata(e,n.constructor))throw Error(t);Reflect.defineMetadata(e,o,n.constructor)}}let tk=tS(q,"Cannot apply @postConstruct decorator multiple times in the same class"),tC=tS(K,"Cannot apply @preDestroy decorator multiple times in the same class"),tE=J},52028:function(e,t,n){"use strict";n.d(t,{Z:()=>u});let r=e=>"object"==typeof e&&null!=e&&1===e.nodeType,o=(e,t)=>(!t||"hidden"!==e)&&"visible"!==e&&"clip"!==e,i=(e,t)=>{if(e.clientHeight{let t=(e=>{if(!e.ownerDocument||!e.ownerDocument.defaultView)return null;try{return e.ownerDocument.defaultView.frameElement}catch(e){return null}})(e);return!!t&&(t.clientHeightit||i>e&&a=t&&l>=n?i-e-r:a>t&&ln?a-t+o:0,l=e=>{let t=e.parentElement;return null==t?e.getRootNode().host||null:t},s=(e,t)=>{var n,o,s,c;if("undefined"==typeof document)return[];let{scrollMode:u,block:d,inline:f,boundary:h,skipOverflowHiddenElements:p}=t,m="function"==typeof h?h:e=>e!==h;if(!r(e))throw TypeError("Invalid target");let g=document.scrollingElement||document.documentElement,v=[],b=e;for(;r(b)&&m(b);){if((b=l(b))===g){v.push(b);break}null!=b&&b===document.body&&i(b)&&!i(document.documentElement)||null!=b&&i(b,p)&&v.push(b)}let y=null!=(o=null==(n=window.visualViewport)?void 0:n.width)?o:innerWidth,w=null!=(c=null==(s=window.visualViewport)?void 0:s.height)?c:innerHeight,{scrollX:x,scrollY:S}=window,{height:k,width:C,top:E,right:$,bottom:O,left:M}=e.getBoundingClientRect(),{top:I,right:N,bottom:Z,left:R}=(e=>{let t=window.getComputedStyle(e);return{top:parseFloat(t.scrollMarginTop)||0,right:parseFloat(t.scrollMarginRight)||0,bottom:parseFloat(t.scrollMarginBottom)||0,left:parseFloat(t.scrollMarginLeft)||0}})(e),P="start"===d||"nearest"===d?E-I:"end"===d?O+Z:E+k/2-I+Z,T="center"===f?M+C/2-R+N:"end"===f?$+N:M-R,j=[];for(let e=0;e=0&&M>=0&&O<=w&&$<=y&&(t===g&&!i(t)||E>=o&&O<=s&&M>=c&&$<=l))break;let h=getComputedStyle(t),p=parseInt(h.borderLeftWidth,10),m=parseInt(h.borderTopWidth,10),b=parseInt(h.borderRightWidth,10),I=parseInt(h.borderBottomWidth,10),N=0,Z=0,R="offsetWidth"in t?t.offsetWidth-t.clientWidth-p-b:0,A="offsetHeight"in t?t.offsetHeight-t.clientHeight-m-I:0,D="offsetWidth"in t?0===t.offsetWidth?0:r/t.offsetWidth:0,_="offsetHeight"in t?0===t.offsetHeight?0:n/t.offsetHeight:0;if(g===t)N="start"===d?P:"end"===d?P-w:"nearest"===d?a(S,S+w,w,m,I,S+P,S+P+k,k):P-w/2,Z="start"===f?T:"center"===f?T-y/2:"end"===f?T-y:a(x,x+y,y,p,b,x+T,x+T+C,C),N=Math.max(0,N+S),Z=Math.max(0,Z+x);else{N="start"===d?P-o-m:"end"===d?P-s+I+A:"nearest"===d?a(o,s,n,m,I+A,P,P+k,k):P-(o+n/2)+A/2,Z="start"===f?T-c-p:"center"===f?T-(c+r/2)+R/2:"end"===f?T-l+b+R:a(c,l,r,p,b+R,T,T+C,C);let{scrollLeft:e,scrollTop:i}=t;N=0===_?0:Math.max(0,Math.min(i+N/_,t.scrollHeight-n/_+A)),Z=0===D?0:Math.max(0,Math.min(e+Z/D,t.scrollWidth-r/D+R)),P+=i-N,T+=e-Z}j.push({el:t,top:N,left:Z})}return j},c=e=>{let t;return!1===e?{block:"end",inline:"nearest"}:(t=e)===Object(t)&&0!==Object.keys(t).length?e:{block:"start",inline:"nearest"}};function u(e,t){let n;if(!e.isConnected||!(e=>{let t=e;for(;t&&t.parentNode;){if(t.parentNode===document)return!0;t=t.parentNode instanceof ShadowRoot?t.parentNode.host:t.parentNode}return!1})(e))return;let r=(e=>{let t=window.getComputedStyle(e);return{top:parseFloat(t.scrollMarginTop)||0,right:parseFloat(t.scrollMarginRight)||0,bottom:parseFloat(t.scrollMarginBottom)||0,left:parseFloat(t.scrollMarginLeft)||0}})(e);if("object"==typeof(n=t)&&"function"==typeof n.behavior)return t.behavior(s(e,t));let o="boolean"==typeof t||null==t?void 0:t.behavior;for(let{el:n,top:i,left:a}of s(e,c(t))){let e=i-r.top+r.bottom,t=a-r.left+r.right;n.scroll({top:e,left:t,behavior:o})}}},20855:function(e,t,n){"use strict";n.d(t,{V:()=>l});let r="ΝΌ",o="undefined"==typeof Symbol?"__"+r:Symbol.for(r),i="undefined"==typeof Symbol?"__styleSet"+Math.floor(1e8*Math.random()):Symbol("styleSet"),a="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:{};class l{constructor(e,t){this.rules=[];let{finish:n}=t||{};function r(e){return/^@/.test(e)?[e]:e.split(/,\s*/)}function o(e,t,i,a){let l=[],s=/^@(\w+)\b/.exec(e[0]),c=s&&"keyframes"==s[1];if(s&&null==t)return i.push(e[0]+";");for(let n in t){let a=t[n];if(/&/.test(n))o(n.split(/,\s*/).map(t=>e.map(e=>t.replace(/&/,e))).reduce((e,t)=>e.concat(t)),a,i);else if(a&&"object"==typeof a){if(!s)throw RangeError("The value of a property ("+n+") should be a primitive value.");o(r(n),a,l,c)}else null!=a&&l.push(n.replace(/_.*/,"").replace(/[A-Z]/g,e=>"-"+e.toLowerCase())+": "+a+";")}(l.length||c)&&i.push((n&&!s&&!a?e.map(n):e).join(", ")+" {"+l.join(" ")+"}")}for(let t in e)o(r(t),e[t],this.rules)}getRules(){return this.rules.join("\n")}static newName(){let e=a[o]||1;return a[o]=e+1,r+e.toString(36)}static mount(e,t,n){let r=e[i],o=n&&n.nonce;r?o&&r.setNonce(o):r=new c(e,o),r.mount(Array.isArray(t)?t:[t],e)}}let s=new Map;class c{constructor(e,t){let n=e.ownerDocument||e,r=n.defaultView;if(!e.head&&e.adoptedStyleSheets&&r.CSSStyleSheet){let t=s.get(n);if(t)return e[i]=t;this.sheet=new r.CSSStyleSheet,s.set(n,this)}else this.styleTag=n.createElement("style"),t&&this.styleTag.setAttribute("nonce",t);this.modules=[],e[i]=this}mount(e,t){let n=this.sheet,r=0,o=0;for(let t=0;t-1&&(this.modules.splice(a,1),o--,a=-1),-1==a){if(this.modules.splice(o++,0,i),n)for(let e=0;et.adoptedStyleSheets.indexOf(this.sheet)&&(t.adoptedStyleSheets=[this.sheet,...t.adoptedStyleSheets]);else{let e="";for(let t=0;t{__webpack_require__.federation||(__webpack_require__.federation={chunkMatcher:function(e){return!/^(1318|3209|3604|4656|4892|7339|7977|814)$/.test(e)},rootOutputDir:"../../"})})(),(()=>{var e="function"==typeof Symbol?Symbol("webpack queues"):"__webpack_queues__",t="function"==typeof Symbol?Symbol("webpack exports"):"__webpack_exports__",n="function"==typeof Symbol?Symbol("webpack error"):"__webpack_error__",r=e=>{e&&e.d<1&&(e.d=1,e.forEach(e=>e.r--),e.forEach(e=>e.r--?e.r++:e()))},o=o=>o.map(o=>{if(null!==o&&"object"==typeof o){if(o[e])return o;if(o.then){var i=[];i.d=0,o.then(e=>{a[t]=e,r(i)},e=>{a[n]=e,r(i)});var a={};return a[e]=e=>e(i),a}}var l={};return l[e]=function(){},l[t]=o,l});__webpack_require__.a=(i,a,l)=>{l&&((s=[]).d=-1);var s,c,u,d,f=new Set,h=i.exports,p=new Promise((e,t)=>{d=t,u=e});p[t]=h,p[e]=e=>{s&&e(s),f.forEach(e),p.catch(function(){})},i.exports=p,a(r=>{c=o(r);var i,a=()=>c.map(e=>{if(e[n])throw e[n];return e[t]}),l=new Promise(t=>{(i=()=>t(a)).r=0;var n=e=>e!==s&&!f.has(e)&&(f.add(e),e&&!e.d&&(i.r++,e.push(i)));c.map(t=>t[e](n))});return i.r?l:a()},e=>(e?d(p[n]=e):u(h),r(s))),s&&s.d<0&&(s.d=0)}})(),(()=>{__webpack_require__.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return __webpack_require__.d(t,{a:t}),t}})(),(()=>{__webpack_require__.d=(e,t)=>{for(var n in t)__webpack_require__.o(t,n)&&!__webpack_require__.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})}})(),(()=>{__webpack_require__.f={},__webpack_require__.e=e=>Promise.all(Object.keys(__webpack_require__.f).reduce((t,n)=>(__webpack_require__.f[n](e,t),t),[]))})(),(()=>{__webpack_require__.hmd=e=>((e=Object.create(e)).children||(e.children=[]),Object.defineProperty(e,"exports",{enumerable:!0,set:()=>{throw Error("ES Modules may not assign module.exports or exports.*, Use ESM export syntax, instead: "+e.id)}}),e)})(),(()=>{__webpack_require__.u=e=>"static/js/async/"+(({1085:"__federation_expose_modules__data_object",1159:"__federation_expose_api__user",1249:"__federation_expose_default_export",1633:"__federation_expose_api__thumbnails",1663:"__federation_expose_api__elements",216:"__federation_expose__internal___mf_bootstrap_document_editor_iframe",2316:"__federation_expose_api__perspectives",251:"__federation_expose_api__properties",2660:"__federation_expose_api__custom_metadata",2785:"__federation_expose_api__workflow",2883:"__federation_expose_modules__icon_library",33:"__federation_expose_api__data_object",3639:"__federation_expose_api__tags",3665:"__federation_expose_api__dependencies",3889:"__federation_expose_api__reports",4101:"__federation_expose_modules__document",4196:"__federation_expose_api__schedule",4408:"__federation_expose_modules__class_definitions",4498:"__federation_expose_api__settings",4665:"__federation_expose_api__version",5282:"__federation_expose_api__role",6834:"__federation_expose_api",6884:"__federation_expose_api__documents",7134:"__federation_expose_api__translations",7194:"__federation_expose_app",7750:"__federation_expose_modules__user",7950:"__federation_expose_api__class_definition",8174:"__federation_expose_api__metadata",840:"__federation_expose_modules__asset",8522:"__federation_expose_utils",8785:"__federation_expose__internal___mf_bootstrap"})[e]||e)+"."+({0:"d9c21d67",1047:"2bb3fd91",105:"b3ed03a6",1064:"a444e516",1069:"c751acfe",1085:"9692bdfb",1151:"1de88f3a",1159:"6c028a06",1224:"4353a5f1",1245:"7092be8b",1249:"b3f494c2",1267:"a35fa847",1296:"93efc03d",1333:"00749a1d",1334:"676803d0",1447:"23221551",1472:"10b13d60",148:"e9ac8d64",1489:"c79950dd",1498:"76119a63",1519:"b0a37b46",1528:"5353f329",1560:"4e3adaa6",1567:"1b498cf5",1595:"3793e4f4",1597:"8c0076ee",161:"ff32631b",1623:"a127f6ac",1633:"fb843215",1657:"1d133530",1663:"a748d1c6",1690:"b2b98aaf",1698:"da67ca2a",1746:"20f0870c",1752:"b8d97cb5",1758:"7d46b820",1778:"f279d1cd",1851:"50e72f7c",1869:"daad6453",1882:"f07f0a1d",1888:"980ce494",1910:"88cf73f4",2009:"ca309c35",2011:"cfb5b180",2027:"42242eaa",207:"dc534702",2076:"640559f7",2080:"73ea7df5",2092:"fae343e8",2111:"1b5f8480",216:"feecb57f",2172:"3cb9bf31",2181:"8892c01c",2202:"482aa090",2227:"0c29417c",2252:"8ba16355",2301:"3e1c8906",2316:"49b81869",2423:"cb31495e",2447:"f3c20c06",2455:"f6530cc5",2468:"acc189ed",2490:"44bedd93",2496:"b4d4039a",251:"3336d115",2557:"e9bb4d27",2612:"10fbf2cb",2660:"2db5c3ae",2785:"4002dbf4",281:"8dfb4b16",2880:"c4ae9e92",2883:"fceebdff",2967:"50db3862",2993:"0685d6bc",3016:"0f65694f",3037:"df1119a5",3075:"f80a7faa",3105:"91f2f020",3107:"a2e539dc",3111:"05f4b107",3118:"44d9247d",33:"bb9c013f",3350:"35853242",3386:"115905f2",3395:"fc64b4c1",3410:"7a951fb2",3449:"8c724520",346:"6816c503",3513:"3b8ff637",3618:"97f3baf4",3636:"874609a2",3639:"4244ce4b",3648:"7f4751c2",3665:"1b4f4baf",3716:"f732acfb",372:"3f29f28f",3770:"007f6481",3852:"98b45d65",3858:"002ff261",3866:"1193117e",3889:"90166d3e",3941:"bbee473e",3948:"ca4bddea",3956:"43790616",3969:"2cf8ec77",4093:"6ecd4f21",4099:"1db429ed",4101:"67bc95cd",4149:"02bec4c1",4190:"892ea34a",4196:"d847219d",420:"c386c9c2",4234:"8a693543",4238:"20c56b2d",4301:"cb8866ae",4322:"343e0435",4353:"4487c361",4370:"e2476933",4374:"c99deb71",438:"b6d0170e",4397:"da3d320a",4408:"29986990",4434:"86886f2f",448:"ff033188",4487:"6d152c7f",4498:"1fe87b47",4513:"90c6869b",4515:"16482028",4549:"74ab684b",4590:"ffd38ea0",46:"29b9e7fb",4611:"cad23c63",4621:"ec5e4711",4650:"14b4e4d5",4665:"1fe07415",4778:"612171c0",4804:"c516461b",4819:"c23fd1b3",4854:"4e190585",4855:"4f5863cc",4857:"30a58545",4864:"192b3c9c",4876:"f79595ca",4898:"dcac9ca5",5012:"9980a00a",5022:"a2a1d487",5032:"bf3d9c93",5153:"16512cb0",516:"0e2f23ae",5182:"cdd2efd8",5221:"5e6b1bc4",5232:"c6d51e6e",5239:"8451c759",526:"3100dd15",5263:"e342215d",5267:"2c16866e",5277:"b1fb56c1",528:"336a27ba",5282:"c05bcddf",531:"727a2b70",5362:"71548a48",5424:"af1b8211",5428:"44819fb0",5435:"19dc6838",5539:"3643c747",5540:"fb4920b4",5559:"18aa4708",5627:"5412f3ad",5639:"f1f63e2c",5647:"9b011d98",5694:"3d4e7cd2",5704:"3a9a4a6c",5705:"f6f1946a",5765:"53f199f6",5791:"e28d60a8",5818:"bab2860a",5853:"b21bc216",5854:"b6a22ba5",5868:"2a3bb0e0",5887:"5599eda1",5933:"0a25011f",5976:"3732d0b9",5978:"246f8ba2",5991:"735b928d",6024:"4826005c",6040:"016dd42b",6060:"f5aecc63",6132:"faee4341",6134:"a5153d0d",6144:"88fc1f36",6153:"d6711a99",6175:"47ee7301",6177:"c04a6699",6210:"0866341b",6269:"17488d08",6274:"913bbdc8",6301:"5c2999cb",6344:"c189db04",6421:"7c99f384",6458:"3374e02c",6497:"e801df72",6520:"40be04a5",6526:"2f880946",6534:"241f683d",6547:"266123c1",6564:"02a274f5",6565:"565c63bb",6648:"51d04568",6671:"78f65d14",6686:"526f417d",6693:"cf072c5b",6732:"d6b8cdc4",6743:"b12f6c26",6789:"3dc3b52a",6807:"43933893",6816:"8f55482c",6834:"f367fc93",6884:"bf1f71bb",6913:"dae2685b",6938:"45560ce7",6974:"5f2c957b",7046:"648a6262",7050:"7467db7e",7065:"b8fc6306",707:"5d05993a",7071:"bc68c184",7085:"68695551",7121:"a3f1cdbc",7134:"6b808d2b",7138:"f2408353",7194:"5b207115",7219:"8c91f726",7311:"2ab0eccd",7337:"a17f68de",7374:"352137d7",7386:"bb50ee06",7392:"61615569",7404:"12da9f5b",7448:"892a4f4c",7467:"95d94a75",7468:"eeba76a0",7472:"9a55331e",7502:"8f68529a",7516:"8977ec47",753:"f617a5fd",7551:"d1469cb7",7553:"3b83762f",7577:"a926bedf",7599:"f501b0a1",7602:"3f85988f",7642:"9c387651",7658:"2d37af52",7675:"8fe0706f",7696:"a959d2b1",7698:"c996ed42",7700:"56fbbd81",7750:"6f21700a",7775:"942e75ea",7800:"b8d10431",7809:"b208df94",7830:"a6bff57b",7950:"318f5a5e",7981:"970f7b9e",7998:"52fcf760",8006:"5c3fb0f6",8096:"8918e684",8097:"69160b55",8165:"0098ecbf",8174:"600f2a76",8192:"317eb32f",8226:"765afaed",8275:"7d57d2b4",8308:"6ff2a32b",833:"94eee6df",8336:"063332be",8360:"54b8db04",8385:"16a46dc2",840:"fa50b6ac",8420:"fb4b3f98",8434:"fcc60125",8476:"a2da556e",8500:"f6813f14",8511:"d1d99ec3",8522:"518ac1a0",8526:"3a758371",8554:"e76562c3",8559:"0bb884a7",862:"d21f7451",8625:"2a5d3e9a",8636:"591240c3",8642:"8b0a997f",8690:"64b37ae9",8723:"2f1df9d5",8785:"e95ec0a5",8791:"c8a6f64e",8819:"e80def20",8843:"a2b58ed4",8868:"7f37a2ab",8888:"387774c0",8902:"fc737248",8935:"aa3c069a",8961:"2b24b15b",902:"868bc783",9036:"8b6cac41",9086:"69a661be",9100:"3a9e0477",9214:"f2fc22c6",9242:"1f1a62c9",9345:"afd5c749",9368:"b04ae990",9430:"35458b7e",9440:"e652cdcc",9488:"b9085241",9503:"931d6960",9530:"85e2cc52",9563:"ff6db423",9566:"23d76ee1",960:"79eb8316",9638:"a46cb712",9662:"79263c53",9706:"f33e713d",9708:"fe9ac705",9714:"030e0c2c",9815:"0e900f0f",9879:"fdd218f8",9882:"d5988f6d",99:"d0983e15",9906:"16d2a9a6",9972:"24cbd462",9983:"2287eb9d"})[e]+".js"})(),(()=>{__webpack_require__.miniCssF=e=>"static/css/async/"+(({216:"__federation_expose__internal___mf_bootstrap_document_editor_iframe",8785:"__federation_expose__internal___mf_bootstrap"})[e]||e)+"."+({216:"6b370b4c",6534:"cf521767",8785:"6b370b4c"})[e]+".css"})(),(()=>{__webpack_require__.h=()=>"614852b2f74c4c1b"})(),(()=>{__webpack_require__.g=(()=>{if("object"==typeof globalThis)return globalThis;try{return this||Function("return this")()}catch(e){if("object"==typeof window)return window}})()})(),(()=>{__webpack_require__.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t)})(),(()=>{var e={},t="pimcore_studio_ui_bundle:";__webpack_require__.l=function(n,r,o,i){if(e[n])return void e[n].push(r);if(void 0!==o)for(var a,l,s=document.getElementsByTagName("script"),c=0;c{__webpack_require__.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})}})(),(()=>{__webpack_require__.nmd=e=>(e.paths=[],e.children||(e.children=[]),e)})(),(()=>{__webpack_require__.p="/bundles/pimcorestudioui/build/f1b59a1c-7c9f-49c1-a324-4217f9b30611/"})(),(()=>{__webpack_require__.S={},__webpack_require__.initializeSharingData={scopeToSharingDataMapping:{default:[{name:"@ant-design/colors",version:"7.2.1",factory:()=>()=>__webpack_require__(32282),eager:1,singleton:1,requiredVersion:"^7.2.1"},{name:"@codemirror/lang-css",version:"6.3.1",factory:()=>Promise.all([__webpack_require__.e("7599"),__webpack_require__.e("8360")]).then(()=>()=>__webpack_require__(77151)),eager:0,requiredVersion:"^6.3.0"},{name:"@codemirror/lang-html",version:"6.4.9",factory:()=>Promise.all([__webpack_require__.e("7599"),__webpack_require__.e("7577"),__webpack_require__.e("4892")]).then(()=>()=>__webpack_require__(12227)),eager:0,requiredVersion:"^6.4.9"},{name:"@codemirror/lang-javascript",version:"6.2.4",factory:()=>Promise.all([__webpack_require__.e("7599"),__webpack_require__.e("7700")]).then(()=>()=>__webpack_require__(18666)),eager:0,requiredVersion:"^6.2.2"},{name:"@codemirror/lang-json",version:"6.0.2",factory:()=>Promise.all([__webpack_require__.e("7599"),__webpack_require__.e("5639")]).then(()=>()=>__webpack_require__(62243)),eager:0,requiredVersion:"^6.0.1"},{name:"@codemirror/lang-markdown",version:"6.3.3",factory:()=>Promise.all([__webpack_require__.e("1447"),__webpack_require__.e("3209")]).then(()=>()=>__webpack_require__(62230)),eager:0,requiredVersion:"^6.3.1"},{name:"@codemirror/lang-sql",version:"6.9.0",factory:()=>Promise.all([__webpack_require__.e("7599"),__webpack_require__.e("3969")]).then(()=>()=>__webpack_require__(35589)),eager:0,requiredVersion:"^6.8.0"},{name:"@codemirror/lang-xml",version:"6.1.0",factory:()=>Promise.all([__webpack_require__.e("7599"),__webpack_require__.e("8385")]).then(()=>()=>__webpack_require__(54949)),eager:0,requiredVersion:"^6.1.0"},{name:"@codemirror/lang-yaml",version:"6.1.2",factory:()=>Promise.all([__webpack_require__.e("7599"),__webpack_require__.e("6732")]).then(()=>()=>__webpack_require__(21825)),eager:0,requiredVersion:"^6.1.2"},{name:"@dnd-kit/core",version:"6.3.1",factory:()=>Promise.all([__webpack_require__.e("4854"),__webpack_require__.e("6671")]).then(()=>()=>__webpack_require__(95684)),eager:0,requiredVersion:"^6.1.0"},{name:"@dnd-kit/modifiers",version:"7.0.0",factory:()=>__webpack_require__.e("6060").then(()=>()=>__webpack_require__(32339)),eager:0,requiredVersion:"^7.0.0"},{name:"@dnd-kit/sortable",version:"8.0.0",factory:()=>Promise.all([__webpack_require__.e("1595"),__webpack_require__.e("814"),__webpack_require__.e("5991")]).then(()=>()=>__webpack_require__(45587)),eager:0,requiredVersion:"^8.0.0"},{name:"@reduxjs/toolkit",version:"2.8.2",factory:()=>Promise.all([__webpack_require__.e("8526"),__webpack_require__.e("448"),__webpack_require__.e("7977")]).then(()=>()=>__webpack_require__(94902)),eager:0,requiredVersion:"^2.3.0"},{name:"@tanstack/react-table",version:"8.21.3",factory:()=>__webpack_require__.e("281").then(()=>()=>__webpack_require__(94679)),eager:0,requiredVersion:"^8.20.5"},{name:"@uiw/react-codemirror",version:"^4.23.6",factory:()=>()=>__webpack_require__(48370),eager:1,singleton:1,requiredVersion:"^4.23.6"},{name:"antd-style",version:"3.7.1",factory:()=>Promise.all([__webpack_require__.e("7448"),__webpack_require__.e("1318")]).then(()=>()=>__webpack_require__(86028)),eager:0,requiredVersion:"3.7.x"},{name:"antd",version:"5.22.7",factory:()=>()=>__webpack_require__(98587),eager:1,singleton:1,requiredVersion:"5.22.x"},{name:"classnames",version:"2.5.1",factory:()=>()=>__webpack_require__(63387),eager:1,singleton:1,requiredVersion:"^2.5.1"},{name:"dompurify",version:"3.2.6",factory:()=>__webpack_require__.e("7830").then(()=>()=>__webpack_require__(75373)),eager:0,requiredVersion:"^3.2.1"},{name:"flexlayout-react",version:"0.7.15",factory:()=>__webpack_require__.e("5435").then(()=>()=>__webpack_require__(86352)),eager:0,requiredVersion:"^0.7.15"},{name:"framer-motion",version:"11.18.2",factory:()=>__webpack_require__.e("3956").then(()=>()=>__webpack_require__(47552)),eager:0,requiredVersion:"^11.11.17"},{name:"i18next",version:"23.16.8",factory:()=>__webpack_require__.e("1567").then(()=>()=>__webpack_require__(20994)),eager:0,requiredVersion:"^23.16.8"},{name:"immer",version:"10.1.1",factory:()=>__webpack_require__.e("4374").then(()=>()=>__webpack_require__(18241)),eager:0,requiredVersion:"^10.1.1"},{name:"inversify",version:"6.1.x",factory:()=>()=>__webpack_require__(83427),eager:1},{name:"leaflet-draw",version:"1.0.4",factory:()=>__webpack_require__.e("6565").then(()=>()=>__webpack_require__(21787)),eager:0,requiredVersion:"^1.0.4"},{name:"leaflet",version:"1.9.4",factory:()=>__webpack_require__.e("4876").then(()=>()=>__webpack_require__(45243)),eager:0,requiredVersion:"^1.9.4"},{name:"lodash",version:"4.17.21",factory:()=>__webpack_require__.e("3948").then(()=>()=>__webpack_require__(96486)),eager:0,requiredVersion:"^4.17.21"},{name:"react-compiler-runtime",version:"19.1.0-rc.2",factory:()=>__webpack_require__.e("1752").then(()=>()=>__webpack_require__(65490)),eager:0,requiredVersion:"^19.1.0-rc.2"},{name:"react-dom",version:"18.3.1",factory:()=>()=>__webpack_require__(73935),eager:1,singleton:1,requiredVersion:"18.3.x"},{name:"react-draggable",version:"4.5.0",factory:()=>__webpack_require__.e("1778").then(()=>()=>__webpack_require__(61193)),eager:0,requiredVersion:"^4.4.6"},{name:"react-i18next",version:"14.1.3",factory:()=>__webpack_require__.e("4650").then(()=>()=>__webpack_require__(74976)),eager:0,requiredVersion:"^14.1.3"},{name:"react-redux",version:"9.2.0",factory:()=>__webpack_require__.e("7981").then(()=>()=>__webpack_require__(81722)),eager:0,requiredVersion:"^9.1.2"},{name:"react-router-dom",version:"6.30.1",factory:()=>__webpack_require__.e("5853").then(()=>()=>__webpack_require__(10417)),eager:0,requiredVersion:"^6.28.0"},{name:"react",version:"18.3.1",factory:()=>()=>__webpack_require__(67294),eager:1,singleton:1,requiredVersion:"18.3.x"},{name:"reflect-metadata",version:"0.2.2",factory:()=>()=>__webpack_require__(39481),eager:1,singleton:1,requiredVersion:"*"},{name:"uuid",version:"10.0.0",factory:()=>__webpack_require__.e("1888").then(()=>()=>__webpack_require__(31024)),eager:0,requiredVersion:"^10.0.0"}]},uniqueName:"pimcore_studio_ui_bundle"},__webpack_require__.I=__webpack_require__.I||function(){throw Error("should have __webpack_require__.I")}})(),(()=>{__webpack_require__.consumesLoadingData={chunkMapping:{3209:["97687"],7194:["20173","61742","18898","65707","29649","20602","98914","18788","57147","95445","63583","89935","91363","91936","27823","38558"],4073:["58793","3859","81004","14691","86286"],7339:["60476"],3604:["73288","14092"],4656:["53478"],4892:["50903","55216"],814:["52595"],8522:["45628","25825","29202","79743","71695"],7977:["65605"],1318:["26788"]},moduleIdToConsumeDataMapping:{63583:{shareScope:"default",shareKey:"framer-motion",import:"framer-motion",requiredVersion:"^11.11.17",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>__webpack_require__.e("3956").then(()=>()=>__webpack_require__(47552))},14092:{shareScope:"default",shareKey:"react-redux",import:"react-redux",requiredVersion:"^9.1.2",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>__webpack_require__.e("7981").then(()=>()=>__webpack_require__(81722))},98914:{shareScope:"default",shareKey:"react-draggable",import:"react-draggable",requiredVersion:"^4.4.6",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>__webpack_require__.e("1778").then(()=>()=>__webpack_require__(61193))},71695:{shareScope:"default",shareKey:"react-i18next",import:"react-i18next",requiredVersion:"^14.1.3",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>__webpack_require__.e("4650").then(()=>()=>__webpack_require__(74976))},58793:{shareScope:"default",shareKey:"classnames",import:"classnames",requiredVersion:"^2.5.1",strictVersion:!1,singleton:!0,eager:!0,fallback:()=>()=>__webpack_require__(63387)},3859:{shareScope:"default",shareKey:"react-dom",import:"react-dom",requiredVersion:"18.3.x",strictVersion:!1,singleton:!0,eager:!0,fallback:()=>()=>__webpack_require__(73935)},52595:{shareScope:"default",shareKey:"@dnd-kit/core",import:"@dnd-kit/core",requiredVersion:"^6.1.0",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>__webpack_require__.e("4854").then(()=>()=>__webpack_require__(95684))},91936:{shareScope:"default",shareKey:"@tanstack/react-table",import:"@tanstack/react-table",requiredVersion:"^8.20.5",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>__webpack_require__.e("281").then(()=>()=>__webpack_require__(94679))},20602:{shareScope:"default",shareKey:"react-router-dom",import:"react-router-dom",requiredVersion:"^6.28.0",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>__webpack_require__.e("5853").then(()=>()=>__webpack_require__(10417))},81004:{shareScope:"default",shareKey:"react",import:"react",requiredVersion:"18.3.x",strictVersion:!1,singleton:!0,eager:!0,fallback:()=>()=>__webpack_require__(67294)},27823:{shareScope:"default",shareKey:"@codemirror/lang-yaml",import:"@codemirror/lang-yaml",requiredVersion:"^6.1.2",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>Promise.all([__webpack_require__.e("7599"),__webpack_require__.e("6732")]).then(()=>()=>__webpack_require__(21825))},53478:{shareScope:"default",shareKey:"lodash",import:"lodash",requiredVersion:"^4.17.21",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>__webpack_require__.e("3948").then(()=>()=>__webpack_require__(96486))},20173:{shareScope:"default",shareKey:"@codemirror/lang-xml",import:"@codemirror/lang-xml",requiredVersion:"^6.1.0",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>Promise.all([__webpack_require__.e("7599"),__webpack_require__.e("8385")]).then(()=>()=>__webpack_require__(54949))},89935:{shareScope:"default",shareKey:"flexlayout-react",import:"flexlayout-react",requiredVersion:"^0.7.15",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>__webpack_require__.e("5435").then(()=>()=>__webpack_require__(86352))},73288:{shareScope:"default",shareKey:"@reduxjs/toolkit",import:"@reduxjs/toolkit",requiredVersion:"^2.3.0",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>__webpack_require__.e("448").then(()=>()=>__webpack_require__(94902))},18788:{shareScope:"default",shareKey:"@codemirror/lang-sql",import:"@codemirror/lang-sql",requiredVersion:"^6.8.0",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>Promise.all([__webpack_require__.e("7599"),__webpack_require__.e("3969")]).then(()=>()=>__webpack_require__(35589))},86286:{shareScope:"default",shareKey:"@ant-design/colors",import:"@ant-design/colors",requiredVersion:"^7.2.1",strictVersion:!1,singleton:!0,eager:!0,fallback:()=>()=>__webpack_require__(32282)},57147:{shareScope:"default",shareKey:"react-compiler-runtime",import:"react-compiler-runtime",requiredVersion:"^19.1.0-rc.2",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>__webpack_require__.e("1752").then(()=>()=>__webpack_require__(65490))},79743:{shareScope:"default",shareKey:"uuid",import:"uuid",requiredVersion:"^10.0.0",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>__webpack_require__.e("1888").then(()=>()=>__webpack_require__(31024))},61742:{shareScope:"default",shareKey:"leaflet-draw",import:"leaflet-draw",requiredVersion:"^1.0.4",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>__webpack_require__.e("6565").then(()=>()=>__webpack_require__(21787))},25825:{shareScope:"default",shareKey:"dompurify",import:"dompurify",requiredVersion:"^3.2.1",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>__webpack_require__.e("7830").then(()=>()=>__webpack_require__(75373))},55216:{shareScope:"default",shareKey:"@codemirror/lang-javascript",import:"@codemirror/lang-javascript",requiredVersion:"^6.2.2",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>Promise.all([__webpack_require__.e("7599"),__webpack_require__.e("7700")]).then(()=>()=>__webpack_require__(18666))},45628:{shareScope:"default",shareKey:"i18next",import:"i18next",requiredVersion:"^23.16.8",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>__webpack_require__.e("1567").then(()=>()=>__webpack_require__(20994))},60476:{shareScope:"default",shareKey:"inversify",import:"inversify",requiredVersion:"6.1.x",strictVersion:!0,singleton:!1,eager:!0,fallback:()=>()=>__webpack_require__(83427)},29649:{shareScope:"default",shareKey:"@uiw/react-codemirror",import:"@uiw/react-codemirror",requiredVersion:"^4.23.6",strictVersion:!1,singleton:!0,eager:!0,fallback:()=>()=>__webpack_require__(48370)},95445:{shareScope:"default",shareKey:"@codemirror/lang-json",import:"@codemirror/lang-json",requiredVersion:"^6.0.1",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>Promise.all([__webpack_require__.e("7599"),__webpack_require__.e("5639")]).then(()=>()=>__webpack_require__(62243))},18898:{shareScope:"default",shareKey:"@dnd-kit/modifiers",import:"@dnd-kit/modifiers",requiredVersion:"^7.0.0",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>__webpack_require__.e("8642").then(()=>()=>__webpack_require__(32339))},50903:{shareScope:"default",shareKey:"@codemirror/lang-css",import:"@codemirror/lang-css",requiredVersion:"^6.3.0",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>Promise.all([__webpack_require__.e("7599"),__webpack_require__.e("8360")]).then(()=>()=>__webpack_require__(77151))},97687:{shareScope:"default",shareKey:"@codemirror/lang-html",import:"@codemirror/lang-html",requiredVersion:"^6.4.9",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>Promise.all([__webpack_require__.e("7599"),__webpack_require__.e("7577"),__webpack_require__.e("4892")]).then(()=>()=>__webpack_require__(12227))},91363:{shareScope:"default",shareKey:"leaflet",import:"leaflet",requiredVersion:"^1.9.4",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>__webpack_require__.e("4876").then(()=>()=>__webpack_require__(45243))},38558:{shareScope:"default",shareKey:"@dnd-kit/sortable",import:"@dnd-kit/sortable",requiredVersion:"^8.0.0",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>__webpack_require__.e("1595").then(()=>()=>__webpack_require__(45587))},65707:{shareScope:"default",shareKey:"@codemirror/lang-markdown",import:"@codemirror/lang-markdown",requiredVersion:"^6.3.1",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>__webpack_require__.e("1447").then(()=>()=>__webpack_require__(62230))},65605:{shareScope:"default",shareKey:"immer",import:"immer",requiredVersion:"^10.1.1",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>__webpack_require__.e("4374").then(()=>()=>__webpack_require__(18241))},29202:{shareScope:"default",shareKey:"antd-style",import:"antd-style",requiredVersion:"3.7.x",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>Promise.all([__webpack_require__.e("7448"),__webpack_require__.e("1318")]).then(()=>()=>__webpack_require__(86028))},14691:{shareScope:"default",shareKey:"reflect-metadata",import:"reflect-metadata",requiredVersion:"*",strictVersion:!1,singleton:!0,eager:!0,fallback:()=>()=>__webpack_require__(39481)},26788:{shareScope:"default",shareKey:"antd",import:"antd",requiredVersion:"5.22.x",strictVersion:!1,singleton:!0,eager:!0,fallback:()=>()=>__webpack_require__(98587)}},initialConsumes:["58793","3859","81004","14691","86286"]},__webpack_require__.f.consumes=__webpack_require__.f.consumes||function(){throw Error("should have __webpack_require__.f.consumes")}})(),(()=>{if("undefined"!=typeof document){var e=function(e,t,n,r,o){var i=document.createElement("link");i.rel="stylesheet",i.type="text/css",__webpack_require__.nc&&(i.nonce=__webpack_require__.nc);var a=function(n){if(i.onerror=i.onload=null,"load"===n.type)r();else{var a=n&&("load"===n.type?"missing":n.type),l=n&&n.target&&n.target.href||t,s=Error("Loading CSS chunk "+e+" failed.\\n("+l+")");s.code="CSS_CHUNK_LOAD_FAILED",s.type=a,s.request=l,i.parentNode&&i.parentNode.removeChild(i),o(s)}};return i.onerror=i.onload=a,i.href=t,n?n.parentNode.insertBefore(i,n.nextSibling):document.head.appendChild(i),i},t=function(e,t){for(var n=document.getElementsByTagName("link"),r=0;r{__webpack_require__.initializeExposesData={moduleMap:{".":()=>__webpack_require__.e("1249").then(()=>()=>__webpack_require__(94778)),"./_internal_/mf-bootstrap":()=>Promise.all([__webpack_require__.e("8526"),__webpack_require__.e("1047"),__webpack_require__.e("6534"),__webpack_require__.e("4819"),__webpack_require__.e("7977"),__webpack_require__.e("3604"),__webpack_require__.e("0"),__webpack_require__.e("4656"),__webpack_require__.e("8522"),__webpack_require__.e("1869"),__webpack_require__.e("4892"),__webpack_require__.e("7339"),__webpack_require__.e("1318"),__webpack_require__.e("814"),__webpack_require__.e("3209"),__webpack_require__.e("7194"),__webpack_require__.e("1085"),__webpack_require__.e("4322"),__webpack_require__.e("840"),__webpack_require__.e("1560"),__webpack_require__.e("161"),__webpack_require__.e("8785")]).then(()=>()=>__webpack_require__(11918)),"./_internal_/mf-bootstrap-document-editor-iframe":()=>Promise.all([__webpack_require__.e("8526"),__webpack_require__.e("1047"),__webpack_require__.e("6534"),__webpack_require__.e("4819"),__webpack_require__.e("7977"),__webpack_require__.e("3604"),__webpack_require__.e("0"),__webpack_require__.e("4656"),__webpack_require__.e("8522"),__webpack_require__.e("1869"),__webpack_require__.e("4892"),__webpack_require__.e("7339"),__webpack_require__.e("1318"),__webpack_require__.e("814"),__webpack_require__.e("3209"),__webpack_require__.e("7194"),__webpack_require__.e("1085"),__webpack_require__.e("4322"),__webpack_require__.e("840"),__webpack_require__.e("1560"),__webpack_require__.e("216")]).then(()=>()=>__webpack_require__(76923)),"./components":()=>Promise.all([__webpack_require__.e("8526"),__webpack_require__.e("1047"),__webpack_require__.e("6534"),__webpack_require__.e("7977"),__webpack_require__.e("3604"),__webpack_require__.e("0"),__webpack_require__.e("4656"),__webpack_require__.e("8522"),__webpack_require__.e("1869"),__webpack_require__.e("4892"),__webpack_require__.e("7339"),__webpack_require__.e("1318"),__webpack_require__.e("814"),__webpack_require__.e("3209"),__webpack_require__.e("7194")]).then(()=>()=>__webpack_require__(45114)),"./app":()=>Promise.all([__webpack_require__.e("8526"),__webpack_require__.e("1047"),__webpack_require__.e("6534"),__webpack_require__.e("7977"),__webpack_require__.e("3604"),__webpack_require__.e("0"),__webpack_require__.e("4656"),__webpack_require__.e("8522"),__webpack_require__.e("1869"),__webpack_require__.e("4892"),__webpack_require__.e("7339"),__webpack_require__.e("1318"),__webpack_require__.e("814"),__webpack_require__.e("3209"),__webpack_require__.e("7194")]).then(()=>()=>__webpack_require__(40483)),"./api":()=>Promise.all([__webpack_require__.e("8526"),__webpack_require__.e("1047"),__webpack_require__.e("7977"),__webpack_require__.e("3604"),__webpack_require__.e("6834")]).then(()=>()=>__webpack_require__(42125)),"./api/asset":()=>Promise.all([__webpack_require__.e("8526"),__webpack_require__.e("1047"),__webpack_require__.e("7977"),__webpack_require__.e("3604"),__webpack_require__.e("1869"),__webpack_require__.e("5282")]).then(()=>()=>__webpack_require__(77632)),"./api/class-definition":()=>Promise.all([__webpack_require__.e("8526"),__webpack_require__.e("1047"),__webpack_require__.e("7977"),__webpack_require__.e("3604"),__webpack_require__.e("0"),__webpack_require__.e("7950")]).then(()=>()=>__webpack_require__(73813)),"./api/custom-metadata":()=>Promise.all([__webpack_require__.e("8526"),__webpack_require__.e("1047"),__webpack_require__.e("7977"),__webpack_require__.e("3604"),__webpack_require__.e("2660")]).then(()=>()=>__webpack_require__(42829)),"./api/data-object":()=>Promise.all([__webpack_require__.e("8526"),__webpack_require__.e("1047"),__webpack_require__.e("7977"),__webpack_require__.e("3604"),__webpack_require__.e("33")]).then(()=>()=>__webpack_require__(42399)),"./api/dependencies":()=>Promise.all([__webpack_require__.e("8526"),__webpack_require__.e("1047"),__webpack_require__.e("7977"),__webpack_require__.e("3604"),__webpack_require__.e("3665")]).then(()=>()=>__webpack_require__(10003)),"./api/documents":()=>Promise.all([__webpack_require__.e("8526"),__webpack_require__.e("1047"),__webpack_require__.e("7977"),__webpack_require__.e("3604"),__webpack_require__.e("4656"),__webpack_require__.e("6884")]).then(()=>()=>__webpack_require__(28167)),"./api/elements":()=>Promise.all([__webpack_require__.e("8526"),__webpack_require__.e("1047"),__webpack_require__.e("7977"),__webpack_require__.e("3604"),__webpack_require__.e("1663")]).then(()=>()=>__webpack_require__(31861)),"./api/metadata":()=>Promise.all([__webpack_require__.e("8526"),__webpack_require__.e("1047"),__webpack_require__.e("7977"),__webpack_require__.e("3604"),__webpack_require__.e("8174")]).then(()=>()=>__webpack_require__(61885)),"./api/perspectives":()=>Promise.all([__webpack_require__.e("8526"),__webpack_require__.e("1047"),__webpack_require__.e("7977"),__webpack_require__.e("3604"),__webpack_require__.e("2316")]).then(()=>()=>__webpack_require__(94009)),"./api/properties":()=>Promise.all([__webpack_require__.e("8526"),__webpack_require__.e("1047"),__webpack_require__.e("7977"),__webpack_require__.e("3604"),__webpack_require__.e("251")]).then(()=>()=>__webpack_require__(13966)),"./api/role":()=>Promise.all([__webpack_require__.e("8526"),__webpack_require__.e("1047"),__webpack_require__.e("7977"),__webpack_require__.e("3604"),__webpack_require__.e("1869"),__webpack_require__.e("5282")]).then(()=>()=>__webpack_require__(77632)),"./api/schedule":()=>Promise.all([__webpack_require__.e("8526"),__webpack_require__.e("1047"),__webpack_require__.e("7977"),__webpack_require__.e("3604"),__webpack_require__.e("4196")]).then(()=>()=>__webpack_require__(9161)),"./api/settings":()=>Promise.all([__webpack_require__.e("8526"),__webpack_require__.e("1047"),__webpack_require__.e("7977"),__webpack_require__.e("3604"),__webpack_require__.e("4498")]).then(()=>()=>__webpack_require__(97830)),"./api/tags":()=>Promise.all([__webpack_require__.e("8526"),__webpack_require__.e("1047"),__webpack_require__.e("7977"),__webpack_require__.e("3604"),__webpack_require__.e("3639")]).then(()=>()=>__webpack_require__(12405)),"./api/thumbnails":()=>Promise.all([__webpack_require__.e("8526"),__webpack_require__.e("1047"),__webpack_require__.e("7977"),__webpack_require__.e("3604"),__webpack_require__.e("1633")]).then(()=>()=>__webpack_require__(64039)),"./api/translations":()=>Promise.all([__webpack_require__.e("8526"),__webpack_require__.e("1047"),__webpack_require__.e("7977"),__webpack_require__.e("3604"),__webpack_require__.e("7134")]).then(()=>()=>__webpack_require__(75124)),"./api/user":()=>Promise.all([__webpack_require__.e("8526"),__webpack_require__.e("1047"),__webpack_require__.e("7977"),__webpack_require__.e("3604"),__webpack_require__.e("1159")]).then(()=>()=>__webpack_require__(47866)),"./api/version":()=>Promise.all([__webpack_require__.e("8526"),__webpack_require__.e("1047"),__webpack_require__.e("7977"),__webpack_require__.e("3604"),__webpack_require__.e("4665")]).then(()=>()=>__webpack_require__(91425)),"./api/workflow":()=>Promise.all([__webpack_require__.e("8526"),__webpack_require__.e("1047"),__webpack_require__.e("7977"),__webpack_require__.e("3604"),__webpack_require__.e("2785")]).then(()=>()=>__webpack_require__(70919)),"./api/reports":()=>Promise.all([__webpack_require__.e("8526"),__webpack_require__.e("1047"),__webpack_require__.e("7977"),__webpack_require__.e("3604"),__webpack_require__.e("3889")]).then(()=>()=>__webpack_require__(91504)),"./modules/app":()=>Promise.all([__webpack_require__.e("8526"),__webpack_require__.e("1047"),__webpack_require__.e("6534"),__webpack_require__.e("7977"),__webpack_require__.e("3604"),__webpack_require__.e("0"),__webpack_require__.e("4656"),__webpack_require__.e("8522"),__webpack_require__.e("1869"),__webpack_require__.e("4892"),__webpack_require__.e("7339"),__webpack_require__.e("1318"),__webpack_require__.e("814"),__webpack_require__.e("3209"),__webpack_require__.e("7194")]).then(()=>()=>__webpack_require__(92637)),"./modules/asset":()=>Promise.all([__webpack_require__.e("8526"),__webpack_require__.e("1047"),__webpack_require__.e("6534"),__webpack_require__.e("7977"),__webpack_require__.e("3604"),__webpack_require__.e("0"),__webpack_require__.e("4656"),__webpack_require__.e("8522"),__webpack_require__.e("1869"),__webpack_require__.e("4892"),__webpack_require__.e("7339"),__webpack_require__.e("1318"),__webpack_require__.e("814"),__webpack_require__.e("3209"),__webpack_require__.e("7194"),__webpack_require__.e("840")]).then(()=>()=>__webpack_require__(33665)),"./modules/class-definitions":()=>Promise.all([__webpack_require__.e("8526"),__webpack_require__.e("1047"),__webpack_require__.e("7977"),__webpack_require__.e("3604"),__webpack_require__.e("0"),__webpack_require__.e("4408")]).then(()=>()=>__webpack_require__(80128)),"./modules/data-object":()=>Promise.all([__webpack_require__.e("8526"),__webpack_require__.e("1047"),__webpack_require__.e("6534"),__webpack_require__.e("7977"),__webpack_require__.e("3604"),__webpack_require__.e("0"),__webpack_require__.e("4656"),__webpack_require__.e("8522"),__webpack_require__.e("1869"),__webpack_require__.e("4892"),__webpack_require__.e("7339"),__webpack_require__.e("1318"),__webpack_require__.e("814"),__webpack_require__.e("3209"),__webpack_require__.e("7194"),__webpack_require__.e("1085")]).then(()=>()=>__webpack_require__(13221)),"./modules/document":()=>Promise.all([__webpack_require__.e("8526"),__webpack_require__.e("1047"),__webpack_require__.e("6534"),__webpack_require__.e("7977"),__webpack_require__.e("3604"),__webpack_require__.e("0"),__webpack_require__.e("4656"),__webpack_require__.e("8522"),__webpack_require__.e("1869"),__webpack_require__.e("4892"),__webpack_require__.e("7339"),__webpack_require__.e("1318"),__webpack_require__.e("814"),__webpack_require__.e("3209"),__webpack_require__.e("7194"),__webpack_require__.e("1085"),__webpack_require__.e("4322"),__webpack_require__.e("4101")]).then(()=>()=>__webpack_require__(88466)),"./modules/element":()=>Promise.all([__webpack_require__.e("8526"),__webpack_require__.e("1047"),__webpack_require__.e("6534"),__webpack_require__.e("7977"),__webpack_require__.e("3604"),__webpack_require__.e("0"),__webpack_require__.e("4656"),__webpack_require__.e("8522"),__webpack_require__.e("1869"),__webpack_require__.e("4892"),__webpack_require__.e("7339"),__webpack_require__.e("1318"),__webpack_require__.e("814"),__webpack_require__.e("3209"),__webpack_require__.e("7194")]).then(()=>()=>__webpack_require__(46979)),"./modules/icon-library":()=>Promise.all([__webpack_require__.e("7339"),__webpack_require__.e("2883")]).then(()=>()=>__webpack_require__(20615)),"./modules/user":()=>Promise.all([__webpack_require__.e("8526"),__webpack_require__.e("1047"),__webpack_require__.e("6534"),__webpack_require__.e("7977"),__webpack_require__.e("3604"),__webpack_require__.e("0"),__webpack_require__.e("4656"),__webpack_require__.e("8522"),__webpack_require__.e("1869"),__webpack_require__.e("4892"),__webpack_require__.e("7339"),__webpack_require__.e("1318"),__webpack_require__.e("814"),__webpack_require__.e("3209"),__webpack_require__.e("7194"),__webpack_require__.e("7750")]).then(()=>()=>__webpack_require__(93156)),"./modules/widget-manager":()=>Promise.all([__webpack_require__.e("8526"),__webpack_require__.e("1047"),__webpack_require__.e("6534"),__webpack_require__.e("7977"),__webpack_require__.e("3604"),__webpack_require__.e("0"),__webpack_require__.e("4656"),__webpack_require__.e("8522"),__webpack_require__.e("1869"),__webpack_require__.e("4892"),__webpack_require__.e("7339"),__webpack_require__.e("1318"),__webpack_require__.e("814"),__webpack_require__.e("3209"),__webpack_require__.e("7194")]).then(()=>()=>__webpack_require__(48150)),"./modules/wysiwyg":()=>Promise.all([__webpack_require__.e("8526"),__webpack_require__.e("1047"),__webpack_require__.e("6534"),__webpack_require__.e("7977"),__webpack_require__.e("3604"),__webpack_require__.e("0"),__webpack_require__.e("4656"),__webpack_require__.e("8522"),__webpack_require__.e("1869"),__webpack_require__.e("4892"),__webpack_require__.e("7339"),__webpack_require__.e("1318"),__webpack_require__.e("814"),__webpack_require__.e("3209"),__webpack_require__.e("7194")]).then(()=>()=>__webpack_require__(24853)),"./utils":()=>Promise.all([__webpack_require__.e("4656"),__webpack_require__.e("8522")]).then(()=>()=>__webpack_require__(39679))},shareScope:"default"},__webpack_require__.getContainer=__webpack_require__.getContainer||function(){throw Error("should have __webpack_require__.getContainer")},__webpack_require__.initContainer=__webpack_require__.initContainer||function(){throw Error("should have __webpack_require__.initContainer")}})(),(()=>{var e={4073:0};__webpack_require__.f.j=function(t,n){var r=__webpack_require__.o(e,t)?e[t]:void 0;if(0!==r)if(r)n.push(r[2]);else if(/^(1318|3209|3604|4656|4892|7339|7977|814)$/.test(t))e[t]=0;else{var o=new Promise((n,o)=>r=e[t]=[n,o]);n.push(r[2]=o);var i=__webpack_require__.p+__webpack_require__.u(t),a=Error(),l=function(n){if(__webpack_require__.o(e,t)&&(0!==(r=e[t])&&(e[t]=void 0),r)){var o=n&&("load"===n.type?"missing":n.type),i=n&&n.target&&n.target.src;a.message="Loading chunk "+t+" failed.\n("+o+": "+i+")",a.name="ChunkLoadError",a.type=o,a.request=i,r[1](a)}};__webpack_require__.l(i,l,"chunk-"+t,t)}};var t=(t,n)=>{var r,o,[i,a,l]=n,s=0;if(i.some(t=>0!==e[t])){for(r in a)__webpack_require__.o(a,r)&&(__webpack_require__.m[r]=a[r]);l&&l(__webpack_require__)}for(t&&t(n);s