@zanichelli/albe-web-components 5.5.0 → 5.5.1-rc.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zanichelli/albe-web-components",
3
- "version": "5.5.0",
3
+ "version": "5.5.1-rc.2",
4
4
  "description": "The Web Components implementation of Albe, the Zanichelli's design system.",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.js",
@@ -10,6 +10,7 @@
10
10
  "collection": "dist/collection/collection-manifest.json",
11
11
  "collection:main": "dist/collection/index.js",
12
12
  "unpkg": "dist/web-components-library/web-components-library.esm.js",
13
+ "jsdelivr": "./dist/web-components-library/web-components-library.esm.js",
13
14
  "files": [
14
15
  "dist/",
15
16
  "loader/",
package/readme.md CHANGED
@@ -152,6 +152,10 @@ import '@zanichelli/albe-web-components/www/build/web-components-library.css';
152
152
  or via link tag:
153
153
 
154
154
  ```html
155
+ // using jsDelivr
156
+ <link type="text/css" rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@zanichelli/albe-web-components/www/build/web-components-library.css" />
157
+
158
+ // using unpkg
155
159
  <link type="text/css" rel="stylesheet" href="https://unpkg.com/@zanichelli/albe-web-components/www/build/web-components-library.css" />
156
160
  ```
157
161
 
@@ -171,6 +175,10 @@ applyPolyfills().then(() => {
171
175
  or via a script tag:
172
176
 
173
177
  ```html
178
+ // using jsDelivr
179
+ <script src="https://cdn.jsdelivr.net/npm/@zanichelli/albe-web-components/dist/web-components-library/web-components-library.esm.js"></script>
180
+
181
+ // using unpkg
174
182
  <script src="https://unpkg.com/@zanichelli/albe-web-components/dist/web-components-library/web-components-library.esm.js"></script>
175
183
  ```
176
184
 
@@ -0,0 +1,129 @@
1
+ import { B as BUILD, c as consoleDevInfo, p as plt, w as win, H, d as doc, N as NAMESPACE, a as promiseResolve, b as bootstrapLazy } from './index-81176684.js';
2
+ import { g as globalScripts } from './app-globals-0f993ce5.js';
3
+
4
+ /*
5
+ Stencil Client Patch Browser v2.15.2 | MIT Licensed | https://stenciljs.com
6
+ */
7
+ const getDynamicImportFunction = (namespace) => `__sc_import_${namespace.replace(/\s|-/g, '_')}`;
8
+ const patchBrowser = () => {
9
+ // NOTE!! This fn cannot use async/await!
10
+ if (BUILD.isDev && !BUILD.isTesting) {
11
+ consoleDevInfo('Running in development mode.');
12
+ }
13
+ if (BUILD.cssVarShim) {
14
+ // shim css vars
15
+ plt.$cssShim$ = win.__cssshim;
16
+ }
17
+ if (BUILD.cloneNodeFix) {
18
+ // opted-in to polyfill cloneNode() for slot polyfilled components
19
+ patchCloneNodeFix(H.prototype);
20
+ }
21
+ if (BUILD.profile && !performance.mark) {
22
+ // not all browsers support performance.mark/measure (Safari 10)
23
+ // because the mark/measure APIs are designed to write entries to a buffer in the browser that does not exist,
24
+ // simply stub the implementations out.
25
+ // TODO(STENCIL-323): Remove this patch when support for older browsers is removed (breaking)
26
+ // @ts-ignore
27
+ performance.mark = performance.measure = () => {
28
+ /*noop*/
29
+ };
30
+ performance.getEntriesByName = () => [];
31
+ }
32
+ // @ts-ignore
33
+ const scriptElm = BUILD.scriptDataOpts || BUILD.safari10 || BUILD.dynamicImportShim
34
+ ? Array.from(doc.querySelectorAll('script')).find((s) => new RegExp(`\/${NAMESPACE}(\\.esm)?\\.js($|\\?|#)`).test(s.src) ||
35
+ s.getAttribute('data-stencil-namespace') === NAMESPACE)
36
+ : null;
37
+ const importMeta = import.meta.url;
38
+ const opts = BUILD.scriptDataOpts ? scriptElm['data-opts'] || {} : {};
39
+ if (BUILD.safari10 && 'onbeforeload' in scriptElm && !history.scrollRestoration /* IS_ESM_BUILD */) {
40
+ // Safari < v11 support: This IF is true if it's Safari below v11.
41
+ // This fn cannot use async/await since Safari didn't support it until v11,
42
+ // however, Safari 10 did support modules. Safari 10 also didn't support "nomodule",
43
+ // so both the ESM file and nomodule file would get downloaded. Only Safari
44
+ // has 'onbeforeload' in the script, and "history.scrollRestoration" was added
45
+ // to Safari in v11. Return a noop then() so the async/await ESM code doesn't continue.
46
+ // IS_ESM_BUILD is replaced at build time so this check doesn't happen in systemjs builds.
47
+ return {
48
+ then() {
49
+ /* promise noop */
50
+ },
51
+ };
52
+ }
53
+ if (!BUILD.safari10 && importMeta !== '') {
54
+ opts.resourcesUrl = new URL('.', importMeta).href;
55
+ }
56
+ else if (BUILD.dynamicImportShim || BUILD.safari10) {
57
+ opts.resourcesUrl = new URL('.', new URL(scriptElm.getAttribute('data-resources-url') || scriptElm.src, win.location.href)).href;
58
+ if (BUILD.dynamicImportShim) {
59
+ patchDynamicImport(opts.resourcesUrl, scriptElm);
60
+ }
61
+ if (BUILD.dynamicImportShim && !win.customElements) {
62
+ // module support, but no custom elements support (Old Edge)
63
+ // @ts-ignore
64
+ return import(/* webpackChunkName: "polyfills-dom" */ './dom-7cd9cf71.js').then(() => opts);
65
+ }
66
+ }
67
+ return promiseResolve(opts);
68
+ };
69
+ const patchDynamicImport = (base, orgScriptElm) => {
70
+ const importFunctionName = getDynamicImportFunction(NAMESPACE);
71
+ try {
72
+ // test if this browser supports dynamic imports
73
+ // There is a caching issue in V8, that breaks using import() in Function
74
+ // By generating a random string, we can workaround it
75
+ // Check https://bugs.chromium.org/p/chromium/issues/detail?id=990810 for more info
76
+ win[importFunctionName] = new Function('w', `return import(w);//${Math.random()}`);
77
+ }
78
+ catch (e) {
79
+ // this shim is specifically for browsers that do support "esm" imports
80
+ // however, they do NOT support "dynamic" imports
81
+ // basically this code is for old Edge, v18 and below
82
+ const moduleMap = new Map();
83
+ win[importFunctionName] = (src) => {
84
+ const url = new URL(src, base).href;
85
+ let mod = moduleMap.get(url);
86
+ if (!mod) {
87
+ const script = doc.createElement('script');
88
+ script.type = 'module';
89
+ script.crossOrigin = orgScriptElm.crossOrigin;
90
+ script.src = URL.createObjectURL(new Blob([`import * as m from '${url}'; window.${importFunctionName}.m = m;`], {
91
+ type: 'application/javascript',
92
+ }));
93
+ mod = new Promise((resolve) => {
94
+ script.onload = () => {
95
+ resolve(win[importFunctionName].m);
96
+ script.remove();
97
+ };
98
+ });
99
+ moduleMap.set(url, mod);
100
+ doc.head.appendChild(script);
101
+ }
102
+ return mod;
103
+ };
104
+ }
105
+ };
106
+ const patchCloneNodeFix = (HTMLElementPrototype) => {
107
+ const nativeCloneNodeFn = HTMLElementPrototype.cloneNode;
108
+ HTMLElementPrototype.cloneNode = function (deep) {
109
+ if (this.nodeName === 'TEMPLATE') {
110
+ return nativeCloneNodeFn.call(this, deep);
111
+ }
112
+ const clonedNode = nativeCloneNodeFn.call(this, false);
113
+ const srcChildNodes = this.childNodes;
114
+ if (deep) {
115
+ for (let i = 0; i < srcChildNodes.length; i++) {
116
+ // Node.ATTRIBUTE_NODE === 2, and checking because IE11
117
+ if (srcChildNodes[i].nodeType !== 2) {
118
+ clonedNode.appendChild(srcChildNodes[i].cloneNode(true));
119
+ }
120
+ }
121
+ }
122
+ return clonedNode;
123
+ };
124
+ };
125
+
126
+ patchBrowser().then(options => {
127
+ globalScripts();
128
+ return bootstrapLazy(JSON.parse("[[\"z-footer\",[[1,\"z-footer\",{\"data\":[1],\"productName\":[1,\"product-name\"],\"productVersion\":[1,\"product-version\"],\"productCreditsLink\":[1,\"product-credits-link\"],\"showReportAProblemButton\":[4,\"show-report-a-problem-button\"],\"contentMaxWidth\":[2,\"content-max-width\"]},[[0,\"zLinkClick\",\"zLinkClickListener\"]]]]],[\"z-file-upload\",[[6,\"z-file-upload\",{\"type\":[1537],\"buttonVariant\":[1,\"button-variant\"],\"acceptedFormat\":[1,\"accepted-format\"],\"fileMaxSize\":[2,\"file-max-size\"],\"mainTitle\":[1,\"main-title\"],\"description\":[1],\"files\":[32],\"invalidFiles\":[32],\"getFiles\":[64]},[[0,\"removeFile\",\"removeFileListener\"],[0,\"fileDropped\",\"fileDroppedListener\"]]]]],[\"z-input-deprecated\",[[2,\"z-input-deprecated\",{\"htmlid\":[1],\"type\":[1],\"name\":[1],\"label\":[1],\"ariaLabel\":[1,\"aria-label\"],\"value\":[1025],\"disabled\":[4],\"readonly\":[4],\"required\":[4],\"checked\":[1028],\"placeholder\":[1],\"htmltitle\":[1],\"status\":[1],\"hasmessage\":[4],\"message\":[1],\"labelafter\":[4],\"typingtimeout\":[2],\"items\":[1],\"autocomplete\":[8],\"multiple\":[4],\"hasclearicon\":[4],\"icon\":[1],\"isTyping\":[32],\"textareaWrapperHover\":[32],\"textareaWrapperFocus\":[32],\"passwordHidden\":[32],\"getValue\":[64],\"setValue\":[64],\"isChecked\":[64]},[[4,\"inputCheck\",\"inputCheckListener\"]]]]],[\"z-modal-login\",[[6,\"z-modal-login\",{\"forgotPasswordUrl\":[1,\"forgot-password-url\"],\"heading\":[1],\"status\":[1025],\"message\":[1025],\"pwdmessage\":[1025],\"externalProviderCheck\":[32]}]]],[\"z-myz-topbar\",[[1,\"z-myz-topbar\",{\"intlinkdata\":[1],\"extlinkdata\":[1],\"userdata\":[1],\"ismyz\":[4],\"logolink\":[1],\"imagealt\":[1],\"activeintlinkid\":[1],\"activesublinkid\":[1],\"hideloginbutton\":[4],\"activeMenuItem\":[32],\"currentMenuItem\":[32],\"isMobile\":[32],\"isMenuMobileOpen\":[32]},[[9,\"resize\",\"handleResize\"],[2,\"zListItemLinkClick\",\"handleZListItemLinkClick\"],[2,\"zListItemClick\",\"handleZListItemClick\"]]]]],[\"z-combobox\",[[1,\"z-combobox\",{\"inputid\":[1],\"items\":[1],\"label\":[1],\"hassearch\":[4],\"searchlabel\":[1],\"searchplaceholder\":[1],\"searchtitle\":[1],\"noresultslabel\":[1],\"isopen\":[1028],\"isfixed\":[4],\"closesearchtext\":[1],\"hascheckall\":[4],\"checkalltext\":[1],\"uncheckalltext\":[1],\"maxcheckableitems\":[2],\"searchValue\":[32],\"selectedCounter\":[32],\"renderItemsList\":[32]},[[0,\"inputCheck\",\"inputCheckListener\"]]]]],[\"z-contextual-menu\",[[1,\"z-contextual-menu\",{\"elements\":[1],\"color\":[1],\"popoverPosition\":[513,\"popover-position\"]}]]],[\"z-myz-card-dictionary\",[[1,\"z-myz-card-dictionary\",{\"name\":[1],\"cover\":[1],\"disabled\":[4],\"flipped\":[1028],\"flipbuttonlabel\":[1],\"hideinfobtn\":[4]},[[0,\"flipCard\",\"handleFlipCard\"]]]]],[\"z-app-topbar\",[[1,\"z-app-topbar\",{\"theme\":[1],\"contentMaxWidth\":[2,\"content-max-width\"],\"topbarContent\":[1,\"topbar-content\"],\"logoLink\":[1,\"logo-link\"],\"showAppSwitcher\":[4,\"show-app-switcher\"],\"isMobile\":[32]},[[9,\"resize\",\"handleResize\"]]]]],[\"z-table\",[[4,\"z-table\",{\"lines\":[514],\"errorMessage\":[1,\"error-message\"],\"bordered\":[4],\"callToActionLabel\":[1,\"call-to-action-label\"],\"callToActionTwoLabel\":[1,\"call-to-action-two-label\"],\"columnSticky\":[4,\"column-sticky\"],\"empty\":[4],\"error\":[4],\"errorLink\":[1,\"error-link\"],\"headerSticky\":[4,\"header-sticky\"],\"message\":[1],\"subtitle\":[1],\"hasTableBody\":[32],\"isMobile\":[32]},[[9,\"resize\",\"handleResize\"],[8,\"orientationchange\",\"handleOrientationChange\"]]]]],[\"z-messages-pocket\",[[1,\"z-messages-pocket\",{\"pocketid\":[1],\"messages\":[2],\"status\":[1025]},[[16,\"pocketToggle\",\"handlePocketToggle\"]]]]],[\"z-pagination\",[[0,\"z-pagination\",{\"label\":[1],\"navArrows\":[4,\"nav-arrows\"],\"totalPages\":[2,\"total-pages\"],\"skip\":[2],\"edges\":[4],\"split\":[2],\"visiblePages\":[2,\"visible-pages\"],\"currentPage\":[1026,\"current-page\"],\"goToPage\":[4,\"go-to-page\"],\"_visiblePages\":[32],\"isMobile\":[32],\"goToPageValue\":[32]},[[9,\"resize\",\"onResize\"]]]]],[\"z-table-header-row\",[[4,\"z-table-header-row\",{\"expandable\":[516]}]]],[\"z-cookiebar\",[[1,\"z-cookiebar\",{\"cookiepolicyurl\":[1],\"hide\":[4],\"callback\":[16]}]]],[\"z-date-picker\",[[4,\"z-date-picker\",{\"datePickerId\":[1,\"date-picker-id\"],\"ariaLabel\":[1,\"aria-label\"],\"label\":[1],\"mode\":[1],\"flatpickrPosition\":[32],\"inputError\":[32]},[[18,\"keydown\",\"handleKeyDown\"]]]]],[\"z-file\",[[2,\"z-file\",{\"fileNumber\":[2,\"file-number\"],\"fileName\":[8,\"file-name\"],\"allowPopover\":[32],\"popoverVisible\":[32]},[[1,\"mouseover\",\"onMouseOver\"],[1,\"mouseleave\",\"onMouseLeave\"],[0,\"interactiveIconClick\",\"onInteractiveIconClick\"]]]]],[\"z-range-picker\",[[0,\"z-range-picker\",{\"rangePickerId\":[1,\"range-picker-id\"],\"firstAriaLabel\":[1,\"first-aria-label\"],\"firstLabel\":[1,\"first-label\"],\"secondAriaLabel\":[1,\"second-aria-label\"],\"secondLabel\":[1,\"second-label\"],\"mode\":[1],\"flatpickrPosition\":[32],\"activeInput\":[32],\"firstInputError\":[32],\"lastInputError\":[32]},[[18,\"click\",\"handleClick\"],[18,\"keyup\",\"handleKeyDown\"]]]]],[\"z-table-row\",[[4,\"z-table-row\",{\"expandedType\":[513,\"expanded-type\"],\"expanded\":[32]}]]],[\"z-myz-card-alert\",[[1,\"z-myz-card-alert\",{\"iconname\":[1],\"contenttext\":[1],\"actiontext\":[1],\"type\":[1]}]]],[\"z-myz-card-info\",[[1,\"z-myz-card-info\",{\"data\":[1],\"htmltabindex\":[2],\"hiddenContent\":[32],\"tooltip\":[32]}]]],[\"z-otp\",[[1,\"z-otp\",{\"inputNum\":[2,\"input-num\"],\"status\":[1],\"message\":[1]}]]],[\"z-pagination-bar\",[[1,\"z-pagination-bar\",{\"pages\":[2],\"visiblepages\":[2],\"currentpage\":[1026],\"startpage\":[1026],\"historyraw\":[1],\"listhistoryrow\":[1040],\"currentPages\":[32]}]]],[\"z-panel-elem\",[[1,\"z-panel-elem\",{\"elemid\":[1],\"imgurl\":[1],\"imgalt\":[1],\"linkicon\":[1],\"linklabel\":[1],\"url\":[1],\"target\":[1],\"isdisabled\":[4],\"descr_slot_name\":[1]}]]],[\"z-skip-to-content\",[[2,\"z-skip-to-content\",{\"variant\":[513],\"links\":[1025],\"visible\":[32],\"visibleLink\":[32]},[[4,\"focusout\",\"handleFocusOutSkipToContent\"],[4,\"focusin\",\"handleFocusSkipToContent\"]]]]],[\"z-user-dropdown\",[[1,\"z-user-dropdown\",{\"logged\":[4],\"userFullName\":[1,\"user-full-name\"],\"userEmail\":[1,\"user-email\"],\"menuContent\":[1,\"menu-content\"],\"useInverseColors\":[4,\"use-inverse-colors\"],\"isMenuOpen\":[32],\"isMobile\":[32]},[[9,\"resize\",\"handleResize\"],[8,\"orientationchange\",\"handleOrientationChange\"],[8,\"click\",\"handleClickOutside\"]]]]],[\"z-app-header\",[[1,\"z-app-header\",{\"stuck\":[516],\"hero\":[1],\"overlay\":[516],\"flow\":[513],\"drawerOpen\":[516,\"drawer-open\"],\"stucked\":[32],\"menuLength\":[32]}]]],[\"z-button-deprecated\",[[1,\"z-button-deprecated\",{\"htmlid\":[1],\"name\":[1],\"disabled\":[516],\"type\":[1],\"variant\":[513],\"icon\":[1],\"size\":[513],\"issmall\":[516],\"square\":[516]}]]],[\"z-button-filter\",[[1,\"z-button-filter\",{\"filtername\":[1],\"isfixed\":[4],\"hasicon\":[4],\"filterid\":[1],\"issmall\":[4]}]]],[\"z-button-sort\",[[1,\"z-button-sort\",{\"buttonid\":[1],\"label\":[1],\"desclabel\":[1],\"counter\":[2],\"sortlabelasc\":[1],\"sortlabeldesc\":[1],\"isselected\":[1028],\"sortasc\":[1028],\"allowTooltip\":[32]}]]],[\"z-card\",[[1,\"z-card\",{\"variant\":[513],\"coverIcon\":[1,\"cover-icon\"],\"clickable\":[516],\"showshadow\":[516],\"hasCoverImage\":[32]},[[0,\"click\",\"onClick\"]]]]],[\"z-carousel\",[[4,\"z-carousel\",{\"isLoading\":[4,\"is-loading\"],\"ghostLoadingHeight\":[2,\"ghost-loading-height\"]}]]],[\"z-icon-package\",[[1,\"z-icon-package\"]]],[\"z-info-box\",[[1,\"z-info-box\",{\"boxid\":[1],\"isclosable\":[4]}]]],[\"z-info-reveal\",[[1,\"z-info-reveal\",{\"icon\":[1],\"position\":[513],\"label\":[1],\"open\":[32],\"currentIndex\":[32]}]]],[\"z-menu\",[[1,\"z-menu\",{\"active\":[516],\"floating\":[516],\"open\":[1540],\"hasHeader\":[32],\"hasContent\":[32]},[[4,\"click\",\"handleClick\"]]]]],[\"z-menu-section\",[[1,\"z-menu-section\",{\"active\":[516],\"open\":[32],\"hasContent\":[32]},[[4,\"click\",\"handleClick\"]]]]],[\"z-myz-card-icon\",[[1,\"z-myz-card-icon\",{\"icon\":[1],\"isdisabled\":[4],\"ariaLabel\":[1,\"aria-label\"]}]]],[\"z-navigation-tab\",[[0,\"z-navigation-tab\",{\"selected\":[1540],\"disabled\":[516],\"orientation\":[513],\"size\":[513],\"icon\":[1],\"label\":[1],\"htmlTitle\":[1,\"html-title\"]},[[0,\"click\",\"onClick\"]]]]],[\"z-navigation-tab-link\",[[0,\"z-navigation-tab-link\",{\"selected\":[1540],\"disabled\":[516],\"orientation\":[513],\"size\":[513],\"htmlTitle\":[1,\"html-title\"],\"target\":[1],\"href\":[1],\"icon\":[1],\"label\":[1]},[[0,\"click\",\"onClick\"]]]]],[\"z-navigation-tabs\",[[1,\"z-navigation-tabs\",{\"orientation\":[513],\"size\":[513],\"canNavigate\":[32],\"canNavigatePrev\":[32],\"canNavigateNext\":[32]},[[9,\"resize\",\"checkScrollVisible\"],[0,\"selected\",\"onTabSelected\"]]]]],[\"z-notification\",[[1,\"z-notification\",{\"contenticonname\":[1],\"actiontext\":[1],\"type\":[513],\"showclose\":[4],\"showshadow\":[516],\"sticky\":[516]}]]],[\"z-pocket-message\",[[1,\"z-pocket-message\"]]],[\"z-section-title\",[[1,\"z-section-title\",{\"dividerPosition\":[1,\"divider-position\"],\"uppercase\":[516]}]]],[\"z-slideshow\",[[1,\"z-slideshow\",{\"slideshowid\":[1],\"data\":[1],\"device\":[32],\"currentSlide\":[32]}]]],[\"z-status-tag\",[[1,\"z-status-tag\",{\"icon\":[1],\"text\":[1],\"expandable\":[4],\"status\":[513],\"variant\":[1]}]]],[\"z-tag\",[[6,\"z-tag\",{\"icon\":[1],\"expandable\":[4]}]]],[\"z-toast-notification\",[[1,\"z-toast-notification\",{\"heading\":[1],\"message\":[1],\"closebutton\":[4],\"autoclose\":[2],\"pauseonfocusloss\":[4],\"type\":[1],\"isdraggable\":[4],\"draggablepercentage\":[2],\"transition\":[1],\"percentage\":[32],\"isTextLong\":[32]}]]],[\"z-toggle-button\",[[1,\"z-toggle-button\",{\"label\":[1],\"isdisabled\":[4],\"avoidclick\":[4],\"opened\":[1028]}]]],[\"z-toggle-switch\",[[6,\"z-toggle-switch\",{\"disabled\":[516],\"labelPosition\":[513,\"label-position\"],\"checked\":[1028],\"htmlid\":[1]}]]],[\"z-tooltip\",[[1,\"z-tooltip\",{\"position\":[1537],\"dark\":[516],\"open\":[1540],\"bindTo\":[1,\"bind-to\"]},[[0,\"openChange\",\"onPopoverOpenChange\"]]]]],[\"z-aria-alert\",[[4,\"z-aria-alert\",{\"mode\":[1]}]]],[\"z-avatar\",[[1,\"z-avatar\",{\"size\":[1],\"text\":[1],\"textColor\":[1,\"text-color\"],\"backgroundColor\":[1,\"background-color\"],\"image\":[1025]}]]],[\"z-chip-deprecated\",[[1,\"z-chip-deprecated\",{\"regulartext\":[1],\"boldtext\":[2]}]]],[\"z-myz-card-footer\",[[1,\"z-myz-card-footer\",{\"titolo\":[1],\"autori\":[1],\"isbn\":[1],\"faded\":[4],\"cardtype\":[1],\"opened\":[4],\"customContent\":[4,\"custom-content\"],\"isOpen\":[32],\"allowTooltipAuthors\":[32]},[[0,\"toggleClick\",\"handleToggle\"]]]]],[\"z-myz-card-footer-sections\",[[1,\"z-myz-card-footer-sections\"]]],[\"z-myz-card-list\",[[1,\"z-myz-card-list\",{\"listdata\":[1]}]]],[\"z-offcanvas\",[[6,\"z-offcanvas\",{\"variant\":[513],\"open\":[1540],\"transitiondirection\":[513]}]]],[\"z-popover-deprecated\",[[6,\"z-popover-deprecated\",{\"position\":[1],\"backgroundColor\":[1,\"background-color\"],\"borderRadius\":[1,\"border-radius\"],\"boxShadow\":[1,\"box-shadow\"],\"showArrow\":[4,\"show-arrow\"],\"padding\":[1],\"isVisible\":[32],\"popoverPosition\":[32]},[[0,\"closePopover\",\"closePopover\"],[8,\"keyup\",\"closePopoverWithKeyboard\"],[18,\"click\",\"handleOutsideClick\"]]]]],[\"z-stepper\",[[1,\"z-stepper\"]]],[\"z-stepper-item\",[[1,\"z-stepper-item\",{\"index\":[2],\"href\":[1],\"pressed\":[4],\"disabled\":[4]}]]],[\"z-table-body\",[[6,\"z-table-body\"]]],[\"z-table-expanded-row\",[[1,\"z-table-expanded-row\",{\"colSpan\":[2,\"col-span\"]}]]],[\"z-table-footer\",[[6,\"z-table-footer\"]]],[\"z-table-head\",[[6,\"z-table-head\"]]],[\"z-table-sticky-footer\",[[6,\"z-table-sticky-footer\"]]],[\"z-toast-notification-list\",[[1,\"z-toast-notification-list\",{\"position\":[1],\"newestontop\":[4]}]]],[\"z-tooltip-deprecated\",[[1,\"z-tooltip-deprecated\",{\"content\":[1],\"type\":[1025],\"open\":[1540],\"bindTo\":[1,\"bind-to\"],\"position\":[32]}]]],[\"z-visually-hidden\",[[1,\"z-visually-hidden\"]]],[\"z-select\",[[2,\"z-select\",{\"htmlid\":[1],\"items\":[1],\"name\":[1],\"label\":[1],\"ariaLabel\":[1,\"aria-label\"],\"disabled\":[4],\"readonly\":[4],\"placeholder\":[1],\"htmltitle\":[1],\"status\":[1],\"message\":[8],\"autocomplete\":[4],\"noresultslabel\":[1],\"isOpen\":[32],\"selectedItem\":[32],\"searchString\":[32],\"getSelectedItem\":[64],\"getValue\":[64],\"setValue\":[64]}]]],[\"z-table-header\",[[1,\"z-table-header\",{\"columnId\":[1,\"column-id\"],\"padding\":[513],\"sortable\":[4],\"showButton\":[4,\"show-button\"],\"defaultSortDirection\":[1,\"default-sort-direction\"],\"sortDirection\":[1025,\"sort-direction\"]},[[18,\"click\",\"handleOutsideClick\"],[18,\"click\",\"handleClickHeaders\"]]]]],[\"z-dragdrop-area\",[[6,\"z-dragdrop-area\"]]],[\"z-menu-dropdown\",[[1,\"z-menu-dropdown\",{\"nomeutente\":[1],\"menucontent\":[1],\"buttonid\":[1],\"ismenuopen\":[32]}]]],[\"z-myz-list\",[[1,\"z-myz-list\",{\"inputrawdata\":[1025],\"list\":[1040]}]]],[\"z-table-cell\",[[1,\"z-table-cell\",{\"showButton\":[4,\"show-button\"],\"padding\":[513],\"isMenuOpened\":[32]}]]],[\"z-table-empty-box\",[[6,\"z-table-empty-box\",{\"message\":[1],\"subtitle\":[1]}]]],[\"z-app-switcher\",[[1,\"z-app-switcher\",{\"theme\":[1],\"isopen\":[32]}]]],[\"z-chip\",[[6,\"z-chip\",{\"icon\":[1],\"type\":[513],\"interactiveIcon\":[513,\"interactive-icon\"],\"disabled\":[516]}]]],[\"z-footer-section\",[[1,\"z-footer-section\",{\"name\":[1],\"isOpen\":[32]}]]],[\"z-heading\",[[1,\"z-heading\",{\"level\":[2],\"variant\":[1],\"component\":[1]}]]],[\"z-list-group\",[[1,\"z-list-group\",{\"size\":[513],\"dividerType\":[513,\"divider-type\"],\"dividerSize\":[513,\"divider-size\"],\"dividerColor\":[513,\"divider-color\"]}]]],[\"z-alert\",[[1,\"z-alert\",{\"type\":[1]}]]],[\"z-candybar\",[[1,\"z-candybar\"]]],[\"z-footer-link\",[[1,\"z-footer-link\",{\"href\":[1]}]]],[\"z-footer-social\",[[1,\"z-footer-social\",{\"icon\":[1],\"href\":[1],\"description\":[1]}]]],[\"z-ghost-loading\",[[1,\"z-ghost-loading\"]]],[\"z-input-label\",[[1,\"z-input-label\",{\"value\":[1],\"disabled\":[4],\"htmlfor\":[1]}]]],[\"z-myz-card\",[[1,\"z-myz-card\",{\"faded\":[4],\"cardtype\":[1],\"ispressed\":[4],\"ishighlighted\":[4]}]]],[\"z-myz-card-body\",[[1,\"z-myz-card-body\"]]],[\"z-myz-card-cover\",[[1,\"z-myz-card-cover\",{\"img\":[1],\"titolo\":[1],\"faded\":[4],\"defaultimg\":[1]}]]],[\"z-myz-card-header\",[[1,\"z-myz-card-header\",{\"titolo\":[1],\"faded\":[4],\"cardtype\":[1],\"allowTooltip\":[32]}]]],[\"z-pagination-page\",[[1,\"z-pagination-page\",{\"pageid\":[1],\"value\":[2],\"isselected\":[4],\"isdisabled\":[4],\"isvisited\":[4],\"ariaLabel\":[1,\"aria-label\"]}]]],[\"z-pocket\",[[1,\"z-pocket\",{\"pocketid\":[1],\"status\":[1025],\"open\":[64],\"close\":[64]},[[0,\"pocketHeaderClick\",\"handlePocketHeaderClick\"],[0,\"pocketHeaderPan\",\"handlePocketHeaderPan\"]]]]],[\"z-pocket-body\",[[1,\"z-pocket-body\",{\"pocketid\":[1],\"status\":[1025]},[[16,\"pocketToggle\",\"handlePocketToggle\"]]]]],[\"z-pocket-header\",[[1,\"z-pocket-header\",{\"pocketid\":[1]}]]],[\"z-icon\",[[1,\"z-icon\",{\"name\":[1],\"height\":[2],\"width\":[2],\"iconid\":[1],\"fill\":[1]}]]],[\"z-modal\",[[1,\"z-modal\",{\"modalid\":[1],\"modaltitle\":[1],\"modalsubtitle\":[1],\"closeButtonLabel\":[1,\"close-button-label\"]}]]],[\"z-list-element\",[[1,\"z-list-element\",{\"alignButton\":[513,\"align-button\"],\"clickable\":[516],\"dividerColor\":[1,\"divider-color\"],\"dividerType\":[1,\"divider-type\"],\"dividerSize\":[1,\"divider-size\"],\"expandable\":[516],\"expandableStyle\":[1,\"expandable-style\"],\"listElementId\":[514,\"list-element-id\"],\"size\":[513],\"color\":[513],\"disabled\":[516],\"isContextualMenu\":[516,\"is-contextual-menu\"],\"showInnerContent\":[32]},[[4,\"accessibleFocus\",\"accessibleFocusHandler\"]]]]],[\"z-myz-list-item\",[[1,\"z-myz-list-item\",{\"text\":[1],\"link\":[1],\"linktarget\":[1],\"icon\":[1],\"listitemid\":[1],\"action\":[1],\"underlined\":[4]}]]],[\"z-list\",[[1,\"z-list\",{\"size\":[513]}]]],[\"z-logo\",[[1,\"z-logo\",{\"width\":[2],\"height\":[2],\"imageAlt\":[1,\"image-alt\"],\"link\":[1],\"targetBlank\":[4,\"target-blank\"],\"mobileLogo\":[4,\"mobile-logo\"]}]]],[\"z-popover\",[[1,\"z-popover\",{\"position\":[513],\"open\":[1540],\"bindTo\":[1,\"bind-to\"],\"showArrow\":[516,\"show-arrow\"],\"center\":[516],\"closable\":[4],\"currentPosition\":[32]},[[8,\"keyup\",\"closePopoverWithKeyboard\"],[18,\"click\",\"handleOutsideClick\"]]]]],[\"z-input\",[[2,\"z-input\",{\"htmlid\":[1],\"type\":[1],\"name\":[1],\"label\":[1],\"ariaLabel\":[1,\"aria-label\"],\"value\":[1025],\"disabled\":[516],\"readonly\":[4],\"required\":[4],\"checked\":[1028],\"placeholder\":[1],\"htmltitle\":[1],\"status\":[1],\"message\":[8],\"labelPosition\":[1,\"label-position\"],\"autocomplete\":[1],\"hasclearicon\":[4],\"icon\":[1],\"min\":[2],\"max\":[2],\"step\":[2],\"pattern\":[1],\"isTyping\":[32],\"passwordHidden\":[32],\"isChecked\":[64]},[[4,\"inputCheck\",\"inputCheckListener\"]]]]],[\"z-body\",[[1,\"z-body\",{\"level\":[2],\"variant\":[1],\"component\":[1]}]]],[\"z-link\",[[1,\"z-link\",{\"htmlid\":[1],\"href\":[1],\"target\":[1],\"htmltabindex\":[2],\"isdisabled\":[4],\"isactive\":[4],\"iswhite\":[4],\"textcolor\":[1],\"icon\":[1],\"big\":[4],\"iconposition\":[1],\"underline\":[4],\"iconSize\":[32]}]]],[\"z-input-message\",[[1,\"z-input-message\",{\"message\":[1],\"status\":[513]}]]],[\"z-divider\",[[2,\"z-divider\",{\"size\":[1],\"color\":[1],\"orientation\":[1]}]]],[\"z-typography\",[[1,\"z-typography\",{\"component\":[1],\"variant\":[1],\"level\":[1]}]]],[\"z-button\",[[6,\"z-button\",{\"ariaLabel\":[513,\"aria-label\"],\"href\":[1],\"target\":[1],\"htmlid\":[1],\"name\":[1],\"disabled\":[516],\"type\":[1],\"variant\":[513],\"icon\":[1],\"size\":[513]}]]]]"), options);
129
+ });
@@ -0,0 +1,816 @@
1
+ @import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Serif:ital,wght@0,700;1,700&display=swap");
2
+ @import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500;1,600&display=swap");
3
+ :root {
4
+ --gray950: #121212;
5
+ --gray900: #292929;
6
+ --gray800: #3D3D3D;
7
+ --gray700: #525252;
8
+ --gray600: #666666;
9
+ --gray500: #9B9B9B;
10
+ --gray400: #ADADAD;
11
+ --gray300: #C2C2C2;
12
+ --gray200: #D6D6D6;
13
+ --gray100: #EBEBEB;
14
+ --gray50: #F6F6F6;
15
+ }
16
+
17
+ :root {
18
+ --blue950: #001229;
19
+ --blue900: #001F46;
20
+ --blue800: #002C63;
21
+ --blue700: #003981;
22
+ --blue600: #0047A0;
23
+ --blue500: #0056C1;
24
+ --blue400: #2E76CE;
25
+ --blue300: #5893DB;
26
+ --blue200: #82B0E7;
27
+ --blue100: #ACCDF3;
28
+ --blue50: #D6EAFF;
29
+ }
30
+
31
+ :root {
32
+ --green950: #19200A;
33
+ --green900: #22330A;
34
+ --green800: #2B4808;
35
+ --green700: #355D06;
36
+ --green600: #407305;
37
+ --green500: #568818;
38
+ --green400: #6F9D2F;
39
+ --green300: #8AB14A;
40
+ --green200: #A6C66B;
41
+ --green100: #C3DA92;
42
+ --green50: #EFFCE0;
43
+ }
44
+
45
+ :root {
46
+ --yellow950: #33280F;
47
+ --yellow900: #5C4615;
48
+ --yellow800: #85641A;
49
+ --yellow700: #AB8125;
50
+ --yellow600: #D09E30;
51
+ --yellow500: #F6BB3B;
52
+ --yellow400: #F9C852;
53
+ --yellow300: #FBD468;
54
+ --yellow200: #FEE17F;
55
+ --yellow150: #ffde72;
56
+ --yellow100: #FFEA91;
57
+ --yellow50: #FBF4E6;
58
+ }
59
+
60
+ :root {
61
+ --red950: #2A0005;
62
+ --red900: #4C0009;
63
+ --red800: #6F000D;
64
+ --red700: #940111;
65
+ --red600: #BA0115;
66
+ --red500: #E2011A;
67
+ --red400: #EB4F60;
68
+ --red300: #EB4F60;
69
+ --red200: #F49DA7;
70
+ --red100: #F49DA7;
71
+ --red50: #FDEFEE;
72
+ }
73
+
74
+ :root {
75
+ --avatar-C01: #99005B;
76
+ --avatar-C02: #B01300;
77
+ --avatar-C03: #E62200;
78
+ --avatar-C04: #7C4000;
79
+ --avatar-C05: #C25600;
80
+ --avatar-C06: #6E6D6D;
81
+ --avatar-C07: #667D00;
82
+ --avatar-C08: #008741;
83
+ --avatar-C09: #00612F;
84
+ --avatar-C10: #007D8A;
85
+ --avatar-C11: #007DB3;
86
+ --avatar-C12: #00548C;
87
+ --avatar-C13: #0028B1;
88
+ --avatar-C14: #00019C;
89
+ --avatar-C15: #6400EE;
90
+ --avatar-C16: #5F3FFF;
91
+ --avatar-C17: #8B00A5;
92
+ --avatar-C18: #B200FF;
93
+ --avatar-C19: #C700D6;
94
+ }
95
+
96
+ :root {
97
+ --color-error-default: #DC3122;
98
+ --color-success-default: #417505;
99
+ --color-warning-default: #F6BB3B;
100
+ --color-black: #000000;
101
+ --color-white: #FFFFFF;
102
+ }
103
+
104
+ :root {
105
+ --font-family-sans: "IBM Plex Sans", sans-serif;
106
+ --font-lt: 300;
107
+ --font-rg: 400;
108
+ --font-sb: 600;
109
+ --font-size-1: 0.75rem;
110
+ --font-size-2: 0.875rem;
111
+ --font-size-3: 1rem;
112
+ --font-size-4: 1.125rem;
113
+ --font-size-5: 1.25rem;
114
+ --font-size-6: 1.5rem;
115
+ --font-size-7: 1.75rem;
116
+ --font-size-8: 2rem;
117
+ --font-size-9: 2.25rem;
118
+ --font-size-10: 2.625rem;
119
+ --font-size-11: 3rem;
120
+ --font-size-12: 3.375rem;
121
+ --font-size-13: 3.75rem;
122
+ --font-size-14: 4.25rem;
123
+ --font-size-15: 4.75rem;
124
+ --font-size-16: 5.25rem;
125
+ --font-size-17: 5.75rem;
126
+ --dashboard-font: var(--font-family-sans);
127
+ }
128
+
129
+ .heading-1,
130
+ .heading-1-sb,
131
+ .heading-1-lt {
132
+ font-size: var(--font-size-8);
133
+ font-weight: var(--font-rg);
134
+ line-height: 1.25;
135
+ letter-spacing: 0;
136
+ }
137
+
138
+ .heading-2,
139
+ .heading-2-sb,
140
+ .heading-2-lt {
141
+ font-size: var(--font-size-7);
142
+ font-weight: var(--font-rg);
143
+ line-height: 1.28;
144
+ letter-spacing: 0;
145
+ }
146
+
147
+ @media (max-width: 1151px) {
148
+ .heading-1,
149
+ .heading-1-sb,
150
+ .heading-1-lt {
151
+ font-size: var(--font-size-7);
152
+ line-height: 1.28;
153
+ }
154
+
155
+ .heading-2,
156
+ .heading-2-sb,
157
+ .heading-2-lt {
158
+ font-size: var(--font-size-6);
159
+ line-height: 1.33;
160
+ }
161
+ }
162
+ .heading-3,
163
+ .heading-3-sb,
164
+ .heading-3-lt {
165
+ font-size: var(--font-size-6);
166
+ font-weight: var(--font-rg);
167
+ line-height: 1.33;
168
+ letter-spacing: 0;
169
+ }
170
+
171
+ .heading-4,
172
+ .heading-4-sb,
173
+ .heading-4-lt {
174
+ font-size: var(--font-size-5);
175
+ font-weight: var(--font-rg);
176
+ line-height: 1.4;
177
+ letter-spacing: 0;
178
+ }
179
+
180
+ .body-1,
181
+ .body-1-sb {
182
+ font-size: var(--font-size-5);
183
+ font-weight: var(--font-rg);
184
+ line-height: 1.4;
185
+ letter-spacing: 0;
186
+ }
187
+
188
+ .body-2,
189
+ .body-2-sb {
190
+ font-size: var(--font-size-4);
191
+ font-weight: var(--font-rg);
192
+ line-height: 1.5;
193
+ letter-spacing: 0;
194
+ }
195
+
196
+ .body-3,
197
+ .body-3-sb {
198
+ font-size: var(--font-size-3);
199
+ font-weight: var(--font-rg);
200
+ line-height: 1.5;
201
+ letter-spacing: 0;
202
+ }
203
+
204
+ .body-4,
205
+ .body-4-sb {
206
+ font-size: var(--font-size-2);
207
+ font-weight: var(--font-rg);
208
+ line-height: 1.4;
209
+ letter-spacing: 0.16px;
210
+ }
211
+
212
+ .body-5,
213
+ .body-5-sb {
214
+ font-size: var(--font-size-1);
215
+ font-weight: var(--font-rg);
216
+ line-height: 1.33;
217
+ letter-spacing: 0.32px;
218
+ }
219
+
220
+ .interactive-1,
221
+ .interactive-1-sb {
222
+ font-size: var(--font-size-3);
223
+ font-weight: var(--font-rg);
224
+ line-height: 1.5;
225
+ letter-spacing: 0;
226
+ }
227
+
228
+ .interactive-2,
229
+ .interactive-2-sb {
230
+ font-size: var(--font-size-2);
231
+ font-weight: var(--font-rg);
232
+ line-height: 1.4;
233
+ letter-spacing: 0.16px;
234
+ }
235
+
236
+ .interactive-3,
237
+ .interactive-3-sb {
238
+ font-size: var(--font-size-1);
239
+ font-weight: var(--font-rg);
240
+ line-height: 1.33;
241
+ letter-spacing: 0.32px;
242
+ }
243
+
244
+ .helper,
245
+ .helper-sb {
246
+ font-size: var(--font-size-1);
247
+ font-weight: var(--font-rg);
248
+ font-style: italic;
249
+ line-height: 1.33;
250
+ letter-spacing: 0.32px;
251
+ }
252
+
253
+ .heading-1-lt,
254
+ .heading-2-lt,
255
+ .heading-3-lt,
256
+ .heading-4-lt {
257
+ font-weight: var(--font-lt);
258
+ }
259
+
260
+ .heading-1-sb,
261
+ .heading-2-sb,
262
+ .heading-3-sb,
263
+ .heading-4-sb,
264
+ .body-1-sb,
265
+ .body-2-sb,
266
+ .body-3-sb,
267
+ .body-4-sb,
268
+ .body-5-sb,
269
+ .interactive-1-sb,
270
+ .interactive-2-sb,
271
+ .interactive-3-sb,
272
+ .helper-sb {
273
+ font-weight: var(--font-sb);
274
+ }
275
+
276
+ :root {
277
+ --space-unit: 8px;
278
+ }
279
+
280
+ :root {
281
+ --shadow-color-base: rgba(66, 69, 72, 0.35);
282
+ --shadow-inset-2: inset 0 2px 4px 0 var(--shadow-color-base);
283
+ --shadow-inset-4: inset 0 4px 8px 0 var(--shadow-color-base);
284
+ --shadow-0: 0 0 0 0 var(--shadow-color-base);
285
+ --shadow-1: 0 1px 2px 0 var(--shadow-color-base);
286
+ --shadow-2: 0 2px 4px 0 var(--shadow-color-base);
287
+ --shadow-3: 0 3px 6px 0 var(--shadow-color-base);
288
+ --shadow-4: 0 4px 8px 0 var(--shadow-color-base);
289
+ --shadow-6: 0 6px 12px 0 var(--shadow-color-base);
290
+ --shadow-8: 0 8px 16px 0 var(--shadow-color-base);
291
+ --shadow-12: 0 12px 24px 0 var(--shadow-color-base);
292
+ --shadow-16: 0 16px 32px 0 var(--shadow-color-base);
293
+ --shadow-24: 0 24px 48px 0 var(--shadow-color-base);
294
+ }
295
+
296
+ :root {
297
+ --border-no-radius: 0;
298
+ --border-size-small: 1px;
299
+ --border-size-medium: 2px;
300
+ --border-size-large: 4px;
301
+ --border-radius-small: 2px;
302
+ --border-radius: 4px;
303
+ }
304
+
305
+ .t-weight-lt {
306
+ font-weight: var(--font-lt);
307
+ }
308
+
309
+ .t-weight-rg {
310
+ font-weight: var(--font-rg);
311
+ }
312
+
313
+ .t-weight-sb {
314
+ font-weight: var(--font-sb);
315
+ }
316
+
317
+ .t-align-center {
318
+ text-align: center;
319
+ }
320
+
321
+ .t-color-light {
322
+ color: var(--text-grey-medium);
323
+ fill: var(--text-grey-medium);
324
+ }
325
+
326
+ .caption-01 {
327
+ color: var(--text-grey-800);
328
+ fill: var(--text-grey-800);
329
+ font-family: var(--font-family-sans);
330
+ font-weight: var(--font-rg);
331
+ font-size: var(--font-size-1);
332
+ line-height: 16px;
333
+ }
334
+
335
+ .helper-text-01 {
336
+ color: var(--text-grey-800);
337
+ fill: var(--text-grey-800);
338
+ font-family: var(--font-family-sans);
339
+ font-weight: var(--font-rg);
340
+ font-style: italic;
341
+ font-size: var(--font-size-1);
342
+ line-height: 16px;
343
+ }
344
+
345
+ .body-short-01 {
346
+ color: var(--text-grey-800);
347
+ fill: var(--text-grey-800);
348
+ font-family: var(--font-family-sans);
349
+ font-weight: var(--font-rg);
350
+ font-size: var(--font-size-2);
351
+ line-height: 20px;
352
+ }
353
+
354
+ .body-short-02 {
355
+ color: var(--text-grey-800);
356
+ fill: var(--text-grey-800);
357
+ font-family: var(--font-family-sans);
358
+ font-weight: var(--font-rg);
359
+ font-size: var(--font-size-3);
360
+ line-height: 24px;
361
+ }
362
+
363
+ .body-long-01 {
364
+ color: var(--text-grey-800);
365
+ fill: var(--text-grey-800);
366
+ font-family: var(--font-family-sans);
367
+ font-weight: var(--font-rg);
368
+ font-size: var(--font-size-2);
369
+ line-height: 20px;
370
+ }
371
+
372
+ .body-long-02 {
373
+ color: var(--text-grey-800);
374
+ fill: var(--text-grey-800);
375
+ font-family: var(--font-family-sans);
376
+ font-weight: var(--font-sb);
377
+ font-size: var(--font-size-3);
378
+ line-height: 24px;
379
+ }
380
+
381
+ .heading-01 {
382
+ color: var(--text-grey-800);
383
+ fill: var(--text-grey-800);
384
+ font-family: var(--font-family-sans);
385
+ font-weight: var(--font-sb);
386
+ font-size: var(--font-size-2);
387
+ line-height: 20px;
388
+ }
389
+
390
+ .heading-02 {
391
+ color: var(--text-grey-800);
392
+ fill: var(--text-grey-800);
393
+ font-family: var(--font-family-sans);
394
+ font-weight: var(--font-sb);
395
+ font-size: var(--font-size-3);
396
+ line-height: 24px;
397
+ }
398
+
399
+ .heading-03 {
400
+ color: var(--text-grey-800);
401
+ fill: var(--text-grey-800);
402
+ font-family: var(--font-family-sans);
403
+ font-weight: var(--font-sb);
404
+ font-size: var(--font-size-5);
405
+ line-height: 24px;
406
+ }
407
+
408
+ .heading-04 {
409
+ color: var(--text-grey-800);
410
+ fill: var(--text-grey-800);
411
+ font-family: var(--font-family-sans);
412
+ font-weight: var(--font-sb);
413
+ font-size: var(--font-size-7);
414
+ line-height: 36px;
415
+ }
416
+
417
+ .heading-05 {
418
+ color: var(--text-grey-800);
419
+ fill: var(--text-grey-800);
420
+ font-family: var(--font-family-sans);
421
+ font-weight: var(--font-sb);
422
+ font-size: var(--font-size-8);
423
+ line-height: 40px;
424
+ }
425
+
426
+ .expressive-heading-04 {
427
+ color: var(--text-grey-800);
428
+ fill: var(--text-grey-800);
429
+ font-family: var(--font-family-sans);
430
+ font-weight: var(--font-rg);
431
+ font-size: var(--font-size-8);
432
+ line-height: 40px;
433
+ }
434
+
435
+ @media only screen and (max-width: 767px) {
436
+ .expressive-heading-04 {
437
+ font-size: var(--font-size-7);
438
+ line-height: 36px;
439
+ }
440
+ }
441
+ .expressive-heading-05 {
442
+ color: var(--text-grey-800);
443
+ fill: var(--text-grey-800);
444
+ font-family: var(--font-family-sans);
445
+ font-weight: var(--font-rg);
446
+ font-size: var(--font-size-11);
447
+ line-height: 56px;
448
+ }
449
+
450
+ @media only screen and (max-width: 1024px) {
451
+ .expressive-heading-05 {
452
+ font-size: 36px;
453
+ line-height: 44px;
454
+ }
455
+ }
456
+ @media only screen and (max-width: 767px) {
457
+ .expressive-heading-05 {
458
+ font-size: var(--font-size-8);
459
+ line-height: 40px;
460
+ }
461
+ }
462
+ .expressive-paragraph-01 {
463
+ color: var(--text-grey-800);
464
+ fill: var(--text-grey-800);
465
+ font-family: var(--font-family-sans);
466
+ font-weight: var(--font-lt);
467
+ font-size: var(--font-size-8);
468
+ line-height: 40px;
469
+ }
470
+
471
+ @media only screen and (max-width: 767px) {
472
+ .expressive-paragraph-01 {
473
+ font-size: var(--font-size-6);
474
+ line-height: 32px;
475
+ }
476
+ }
477
+ .quotation-01 {
478
+ color: var(--text-grey-800);
479
+ fill: var(--text-grey-800);
480
+ font-family: var(--font-family-sans);
481
+ font-weight: var(--font-lt);
482
+ font-size: var(--font-size-8);
483
+ line-height: 40px;
484
+ }
485
+
486
+ @media only screen and (max-width: 767px) {
487
+ .quotation-01 {
488
+ font-size: var(--font-size-5);
489
+ line-height: 28px;
490
+ }
491
+ }
492
+ .quotation-02 {
493
+ color: var(--text-grey-800);
494
+ fill: var(--text-grey-800);
495
+ font-family: var(--font-family-sans);
496
+ font-weight: var(--font-lt);
497
+ font-size: var(--font-size-13);
498
+ line-height: 72px;
499
+ }
500
+
501
+ @media only screen and (max-width: 1024px) {
502
+ .quotation-02 {
503
+ font-size: 36px;
504
+ line-height: 44px;
505
+ }
506
+ }
507
+ @media only screen and (max-width: 767px) {
508
+ .quotation-02 {
509
+ font-size: var(--font-size-8);
510
+ line-height: 40px;
511
+ }
512
+ }
513
+ .display-01 {
514
+ color: var(--text-grey-800);
515
+ fill: var(--text-grey-800);
516
+ font-family: var(--font-family-sans);
517
+ font-weight: var(--font-lt);
518
+ font-size: var(--font-size-15);
519
+ line-height: 88px;
520
+ }
521
+
522
+ @media only screen and (max-width: 767px) {
523
+ .display-01 {
524
+ font-size: var(--font-size-10);
525
+ line-height: 52px;
526
+ }
527
+ }
528
+ .display-02 {
529
+ color: var(--text-grey-800);
530
+ fill: var(--text-grey-800);
531
+ font-family: var(--font-family-sans);
532
+ font-weight: var(--font-sb);
533
+ font-size: var(--font-size-15);
534
+ line-height: 88px;
535
+ }
536
+
537
+ @media only screen and (max-width: 767px) {
538
+ .display-02 {
539
+ font-size: var(--font-size-10);
540
+ line-height: 52px;
541
+ }
542
+ }
543
+ .display-03 {
544
+ color: var(--text-grey-800);
545
+ fill: var(--text-grey-800);
546
+ font-family: var(--font-family-sans);
547
+ font-weight: var(--font-lt);
548
+ font-size: 156px;
549
+ line-height: 164px;
550
+ }
551
+
552
+ @media only screen and (max-width: 1024px) {
553
+ .display-03 {
554
+ font-size: var(--font-size-14);
555
+ line-height: 80px;
556
+ }
557
+ }
558
+ @media only screen and (max-width: 767px) {
559
+ .display-03 {
560
+ font-size: var(--font-size-10);
561
+ line-height: 52px;
562
+ }
563
+ }
564
+ .display-04 {
565
+ color: var(--text-grey-800);
566
+ fill: var(--text-grey-800);
567
+ font-family: var(--font-family-sans);
568
+ font-weight: var(--font-sb);
569
+ font-size: 156px;
570
+ line-height: 164px;
571
+ }
572
+
573
+ @media only screen and (max-width: 1024px) {
574
+ .display-04 {
575
+ font-size: var(--font-size-14);
576
+ line-height: 80px;
577
+ }
578
+ }
579
+ @media only screen and (max-width: 767px) {
580
+ .display-04 {
581
+ font-size: var(--font-size-10);
582
+ line-height: 52px;
583
+ }
584
+ }
585
+ :root {
586
+ --grid-mobile-viewport: 768px;
587
+ --grid-mobile-column: 4;
588
+ --grid-mobile-margin: 16px;
589
+ --grid-mobile-gutter: 16px;
590
+ --grid-tablet-viewport: 768px;
591
+ --grid-tablet-column: 8;
592
+ --grid-tablet-margin: 24px;
593
+ --grid-tablet-gutter: 24px;
594
+ --grid-desktop-viewport: 1152px;
595
+ --grid-desktop-column: 12;
596
+ --grid-desktop-margin: 24px;
597
+ --grid-desktop-gutter: 24px;
598
+ --grid-wide-viewport: 1366px;
599
+ --grid-wide-column: 12;
600
+ --grid-wide-margin: 32px;
601
+ --grid-wide-gutter: 32px;
602
+ --grid-margin: var(--grid-mobile-margin);
603
+ --grid-gutter: var(--grid-mobile-gutter);
604
+ --grid-columns: var(--grid-mobile-column);
605
+ }
606
+
607
+ @media (min-width: 768px) and (max-width: 1151px) {
608
+ :root {
609
+ --grid-margin: var(--grid-tablet-margin);
610
+ --grid-gutter: var(--grid-tablet-gutter);
611
+ --grid-columns: var(--grid-tablet-column);
612
+ }
613
+ }
614
+ @media (min-width: 1152px) and (max-width: 1365px) {
615
+ :root {
616
+ --grid-margin: var(--grid-desktop-margin);
617
+ --grid-gutter: var(--grid-desktop-gutter);
618
+ --grid-columns: var(--grid-desktop-column);
619
+ }
620
+ }
621
+ @media (min-width: 1366px) {
622
+ :root {
623
+ --grid-margin: var(--grid-wide-margin);
624
+ --grid-gutter: var(--grid-wide-gutter);
625
+ --grid-columns: var(--grid-wide-column);
626
+ }
627
+ }
628
+ :root {
629
+ --myz-blue: #0056c1;
630
+ --myz-blue-dark: #003476;
631
+ --myz-blue-light: #1973e1;
632
+ --myz-blue-lighter: #e1f0ff;
633
+ --myz-red: #e2001a;
634
+ --myz-red-dark: #80000f;
635
+ --myz-red-light: #ff808e;
636
+ --accent: #add2ff;
637
+ --accent-dark: #78b5ff;
638
+ --accent-light: #d0e9ff;
639
+ --accent-lighter: #ebf4ff;
640
+ --bg-grey-050: #f6f6f6;
641
+ --bg-grey-200: #e6e6e6;
642
+ --bg-grey-700: #676b6f;
643
+ --bg-grey-800: #424548;
644
+ --bg-grey-900: #333333;
645
+ --bg-white: #ffffff;
646
+ --bg-neutral-100: #e8ebee;
647
+ --bg-neutral-150: #d9dee3;
648
+ --bg-neutral-200: #cad1d8;
649
+ --bg-neutral-300: #aeb8c2;
650
+ --bg-neutral-400: #919eac;
651
+ --bg-neutral-500: #738596;
652
+ --bg-neutral-600: #5c6b7a;
653
+ --bg-neutral-700: #46525d;
654
+ --bg-neutral-800: #303840;
655
+ --status-error-red: #dc3122;
656
+ --status-error-red-dark: #7e0a00;
657
+ --status-error-red-light: #ff9c9c;
658
+ --status-error-red-lighter: #fdefee;
659
+ --status-warning-yellow: #f6bb3b;
660
+ --status-warning-yellow-dark: #85641a;
661
+ --status-warning-yellow-light: #fee17f;
662
+ --status-warning-yellow-lighter: #fbf4e6;
663
+ --status-success-green: #417505;
664
+ --status-success-green-dark: #233a00;
665
+ --status-success-green-light: #95d150;
666
+ --status-success-green-lighter: #effce0;
667
+ --text-grey-800: #424548;
668
+ --text-grey-700: #676b6f;
669
+ --text-grey-200: #e6e6e6;
670
+ --text-grey-050: #f6f6f6;
671
+ --text-white: #ffffff;
672
+ }
673
+
674
+ :root {
675
+ --border-base: 2px;
676
+ --border-size-small: 1px;
677
+ --radius-base: 4px;
678
+ --border-radius-base: 4px;
679
+ --border-radius-min: 0;
680
+ --border-radius-max: 100%;
681
+ }
682
+
683
+ :root {
684
+ --shadow-inset-2: inset 0 2px 4px 0 rgba(66, 69, 72, 0.35);
685
+ --shadow-inset-4: inset 0 4px 8px 0 rgba(66, 69, 72, 0.35);
686
+ --shadow-0: 0 0 0 0 rgba(66, 69, 72, 0.40);
687
+ --shadow-1: 0 1px 2px 0 rgba(66, 69, 72, 0.40);
688
+ --shadow-2: 0 2px 4px 0 rgba(66, 69, 72, 0.40);
689
+ --shadow-3: 0 3px 6px 0 rgba(66, 69, 72, 0.40);
690
+ --shadow-4: 0 4px 8px 0 rgba(66, 69, 72, 0.40);
691
+ --shadow-6: 0 6px 12px 0 rgba(66, 69, 72, 0.40);
692
+ --shadow-8: 0 8px 16px 0 rgba(66, 69, 72, 0.40);
693
+ --shadow-12: 0 12px 24px 0 rgba(66, 69, 72, 0.35);
694
+ --shadow-16: 0 16px 32px 0 rgba(66, 69, 72, 0.35);
695
+ --shadow-24: 0 24px 48px 0 rgba(66, 69, 72, 0.35);
696
+ }
697
+
698
+ :root {
699
+ --basex1: var(--space-unit);
700
+ --basex2: calc(var(--space-unit) * 2);
701
+ --basex3: calc(var(--space-unit) * 3);
702
+ --basex4: calc(var(--space-unit) * 4);
703
+ --basex5: calc(var(--space-unit) * 5);
704
+ --basex6: calc(var(--space-unit) * 6);
705
+ --basex7: calc(var(--space-unit) * 7);
706
+ --basex8: calc(var(--space-unit) * 8);
707
+ --half-x1: calc(var(--space-unit) * .5);
708
+ --half-x3: calc(var(--space-unit) * 1.5);
709
+ --half-x5: calc(var(--space-unit) * 2.5);
710
+ --half-x7: calc(var(--space-unit) * 3.5);
711
+ --half-x9: calc(var(--space-unit) * 4.5);
712
+ --half-x11: calc(var(--space-unit) * 5.5);
713
+ --half-x13: calc(var(--space-unit) * 6.5);
714
+ --half-x14: calc(var(--space-unit) * 7.5);
715
+ }
716
+
717
+ /*# sourceMappingURL=tokens.css.map */
718
+
719
+ :root {
720
+ --color-background: var(--gray50);
721
+ --color-primary01: var(--blue500);
722
+ --color-primary02: var(--blue500);
723
+ --color-primary03: var(--blue50);
724
+ --color-secondary01: var(--blue500);
725
+ --color-secondary02: var(--red500);
726
+ --color-secondary03: var(--red500);
727
+ --color-danger01: var(--color-error-default);
728
+ --color-danger02: var(--color-error-default);
729
+ --color-error01: var(--color-error-default);
730
+ --color-error02: var(--red800);
731
+ --color-error-inverse: var(--red50);
732
+ --color-text-error: var(--color-error-default);
733
+ --color-success01: var(--color-success-default);
734
+ --color-success02: var(--green800);
735
+ --color-text-success: var(--color-success-default);
736
+ --color-success-inverse: var(--green50);
737
+ --color-warning01: var(--color-warning-default);
738
+ --color-warning02: var(--yellow800);
739
+ --color-text-warning: var(--color-warning-default);
740
+ --color-warning-inverse: var(--yellow50);
741
+ --color-surface01: var(--color-white);
742
+ --color-surface02: var(--gray50);
743
+ --color-surface03: var(--gray200);
744
+ --color-surface04: var(--gray700);
745
+ --color-surface05: var(--gray800);
746
+ --color-text01: var(--gray800);
747
+ --color-text02: var(--gray800);
748
+ --color-text03: var(--gray300);
749
+ --color-text04: var(--color-white);
750
+ --color-text05: var(--gray600);
751
+ --color-text-inverse: var(--color-white);
752
+ --color-icon01: var(--blue500);
753
+ --color-icon02: var(--gray800);
754
+ --color-icon03: var(--color-white);
755
+ --color-input-field01: var(--color-white);
756
+ --color-input-field02: var(--color-white);
757
+ --color-hover-primary: var(--blue800);
758
+ --color-hover-primary-text: var(--color-black);
759
+ --color-hover-secondary: var(--blue800);
760
+ --color-hover-tertiary: var(--blue800);
761
+ --color-hover-surface: var(--gray50);
762
+ --color-hover-light: var(--blue400);
763
+ --color-hover-danger: var(--red800);
764
+ --color-active-primary: var(--blue800);
765
+ --color-active-secondary: var(--blue800);
766
+ --color-active-tertiary: var(--blue800);
767
+ --color-active-surface: var(--gray300);
768
+ --color-active-light: var(--blue400);
769
+ --color-pressed-primary: var(--blue400);
770
+ --color-pressed-secondary: var(--red400);
771
+ --color-selected-surface: var(--gray300);
772
+ --color-selected-light: var(--gray300);
773
+ --color-highlight: var(--blue100);
774
+ --color-ghost01: var(--gray300);
775
+ --color-ghost02: var(--gray500);
776
+ --color-disabled01: var(--gray200);
777
+ --color-disabled02: var(--gray700);
778
+ --color-disabled03: var(--gray500);
779
+ --shadow-focus-primary: 0 0 2px 2px var(--color-highlight);
780
+ --color-link-primary: var(--blue500);
781
+ --color-hover-link: var(--blue800);
782
+ --color-active-link: var(--blue800);
783
+ --color-pressed-link: var(--blue400);
784
+ --color-visited-link: var(--blue800);
785
+ --color-inverse-link: var(--color-white);
786
+ --color-inverse-hover-link: var(--color-white);
787
+ --color-inverse-active-link: var(--color-white);
788
+ --color-inverse-pressed-link: var(--color-white);
789
+ --color-inverse-visited-link: var(--gray300);
790
+ }
791
+
792
+ /*# sourceMappingURL=default.css.map */
793
+
794
+ .theme-black-yellow {
795
+ --color-primary01: var(--gray950);
796
+ --color-primary02: var(--color-white);
797
+ --color-primary03: var(--gray100);
798
+ --color-secondary01: var(--yellow500);
799
+ --color-secondary02: var(--yellow500);
800
+ --color-secondary03: var(--yellow500);
801
+ --color-text01: var(--gray950);
802
+ --color-text-inverse: var(--color-white);
803
+ --color-icon01: var(--gray950);
804
+ --color-active-primary: var(--gray800);
805
+ --color-pressed-primary: var(--gray800);
806
+ --color-hover-primary: var(--gray800);
807
+ --color-hover-secondary: var(--gray950);
808
+ --color-hover-tertiary: var(--gray950);
809
+ --color-hover-primary-text: var(--gray950);
810
+ --color-hover-light: var(--yellow500);
811
+ --color-background: var(--color-white);
812
+ --color-hover-surface: var(--gray50);
813
+ }
814
+
815
+ /*# sourceMappingURL=black-yellow.css.map */
816
+
package/www/index.html CHANGED
@@ -1,4 +1,4 @@
1
- <!doctype html><html dir="ltr" lang="en"><head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=5.0"> <title>Stencil Component Starter</title> <link rel="stylesheet" type="text/css" href="/build/p-4c9c83c0.css"> <link rel="modulepreload" href="/build/p-d1b00b57.js"><script type="module" src="/build/p-d1b00b57.js" data-stencil data-resources-url="/build/" data-stencil-namespace="web-components-library"></script> <script nomodule="" src="/build/web-components-library.js" data-stencil></script> </head> <body style="width: 100%; margin: 0; background-color: #f9f9f9;"> <header> <z-app-topbar show-app-switcher="true" topbar-content="[{&quot;label&quot;: &quot;Assistenza&quot;, &quot;link&quot;: &quot;./pages/notification.html&quot;, &quot;icon&quot;: &quot;support&quot;}, {&quot;label&quot;: &quot;Contattaci&quot;, &quot;link&quot;: &quot;./pages/notification.html&quot;, &quot;icon&quot;: &quot;question-mark-circle&quot;}, {&quot;label&quot;: &quot;Carrello&quot;, &quot;link&quot;: &quot;./pages/notification.html&quot;, &quot;icon&quot;: &quot;shopping-cart&quot;}]" content-max-width="800"> <z-app-switcher id="myappswitcher" slot="login"></z-app-switcher></z-app-topbar> </header> <div style="padding: 300px;"> <z-range-picker mode="date-time" range-picker-id="dp1" id="dp123456"></z-range-picker> </div> <script>
1
+ <!doctype html><html dir="ltr" lang="en"><head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=5.0"> <title>Stencil Component Starter</title> <link rel="stylesheet" type="text/css" href="/build/p-9ec1421c.css"> <link rel="modulepreload" href="/build/p-3224e0d3.js"><script type="module" src="/build/p-3224e0d3.js" data-stencil data-resources-url="/build/" data-stencil-namespace="web-components-library"></script> <script nomodule="" src="/build/web-components-library.js" data-stencil></script> </head> <body style="width: 100%; margin: 0; background-color: #f9f9f9;"> <header> <z-app-topbar show-app-switcher="true" topbar-content="[{&quot;label&quot;: &quot;Assistenza&quot;, &quot;link&quot;: &quot;./pages/notification.html&quot;, &quot;icon&quot;: &quot;support&quot;}, {&quot;label&quot;: &quot;Contattaci&quot;, &quot;link&quot;: &quot;./pages/notification.html&quot;, &quot;icon&quot;: &quot;question-mark-circle&quot;}, {&quot;label&quot;: &quot;Carrello&quot;, &quot;link&quot;: &quot;./pages/notification.html&quot;, &quot;icon&quot;: &quot;shopping-cart&quot;}]" content-max-width="800"> <z-app-switcher id="myappswitcher" slot="login"></z-app-switcher></z-app-topbar> </header> <div style="padding: 300px;"> <z-range-picker mode="date-time" range-picker-id="dp1" id="dp123456"></z-range-picker> </div> <script>
2
2
  function dateselect(e) {
3
3
  console.log(e.detail);
4
4
  }
@@ -1 +0,0 @@
1
- @import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Serif:ital,wght@0,700;1,700&display=swap"); @import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500;1,600&display=swap"); :root{--gray950:#121212;--gray900:#292929;--gray800:#3D3D3D;--gray700:#525252;--gray600:#666666;--gray500:#9B9B9B;--gray400:#ADADAD;--gray300:#C2C2C2;--gray200:#D6D6D6;--gray100:#EBEBEB;--gray50:#F6F6F6}:root{--blue950:#001229;--blue900:#001F46;--blue800:#002C63;--blue700:#003981;--blue600:#0047A0;--blue500:#0056C1;--blue400:#2E76CE;--blue300:#5893DB;--blue200:#82B0E7;--blue100:#ACCDF3;--blue50:#D6EAFF}:root{--green950:#19200A;--green900:#22330A;--green800:#2B4808;--green700:#355D06;--green600:#407305;--green500:#568818;--green400:#6F9D2F;--green300:#8AB14A;--green200:#A6C66B;--green100:#C3DA92;--green50:#EFFCE0}:root{--yellow950:#33280F;--yellow900:#5C4615;--yellow800:#85641A;--yellow700:#AB8125;--yellow600:#D09E30;--yellow500:#F6BB3B;--yellow400:#F9C852;--yellow300:#FBD468;--yellow200:#FEE17F;--yellow150:#ffde72;--yellow100:#FFEA91;--yellow50:#FBF4E6}:root{--red950:#2A0005;--red900:#4C0009;--red800:#6F000D;--red700:#940111;--red600:#BA0115;--red500:#E2011A;--red400:#EB4F60;--red300:#EB4F60;--red200:#F49DA7;--red100:#F49DA7;--red50:#FDEFEE}:root{--avatar-C01:#99005B;--avatar-C02:#B01300;--avatar-C03:#E62200;--avatar-C04:#7C4000;--avatar-C05:#C25600;--avatar-C06:#6E6D6D;--avatar-C07:#667D00;--avatar-C08:#008741;--avatar-C09:#00612F;--avatar-C10:#007D8A;--avatar-C11:#007DB3;--avatar-C12:#00548C;--avatar-C13:#0028B1;--avatar-C14:#00019C;--avatar-C15:#6400EE;--avatar-C16:#5F3FFF;--avatar-C17:#8B00A5;--avatar-C18:#B200FF;--avatar-C19:#C700D6}:root{--color-error-default:#DC3122;--color-success-default:#417505;--color-warning-default:#F6BB3B;--color-black:#000000;--color-white:#FFFFFF}:root{--font-family-sans:"IBM Plex Sans", sans-serif;--font-lt:300;--font-rg:400;--font-sb:600;--font-size-1:0.75rem;--font-size-2:0.875rem;--font-size-3:1rem;--font-size-4:1.125rem;--font-size-5:1.25rem;--font-size-6:1.5rem;--font-size-7:1.75rem;--font-size-8:2rem;--font-size-9:2.25rem;--font-size-10:2.625rem;--font-size-11:3rem;--font-size-12:3.375rem;--font-size-13:3.75rem;--font-size-14:4.25rem;--font-size-15:4.75rem;--font-size-16:5.25rem;--font-size-17:5.75rem;--dashboard-font:var(--font-family-sans)}.heading-1,.heading-1-sb,.heading-1-lt{font-size:var(--font-size-8);font-weight:var(--font-rg);line-height:1.25;letter-spacing:0}.heading-2,.heading-2-sb,.heading-2-lt{font-size:var(--font-size-7);font-weight:var(--font-rg);line-height:1.28;letter-spacing:0}@media (max-width: 1151px){.heading-1,.heading-1-sb,.heading-1-lt{font-size:var(--font-size-7);line-height:1.28}.heading-2,.heading-2-sb,.heading-2-lt{font-size:var(--font-size-6);line-height:1.33}}.heading-3,.heading-3-sb,.heading-3-lt{font-size:var(--font-size-6);font-weight:var(--font-rg);line-height:1.33;letter-spacing:0}.heading-4,.heading-4-sb,.heading-4-lt{font-size:var(--font-size-5);font-weight:var(--font-rg);line-height:1.4;letter-spacing:0}.body-1,.body-1-sb{font-size:var(--font-size-5);font-weight:var(--font-rg);line-height:1.4;letter-spacing:0}.body-2,.body-2-sb{font-size:var(--font-size-4);font-weight:var(--font-rg);line-height:1.5;letter-spacing:0}.body-3,.body-3-sb{font-size:var(--font-size-3);font-weight:var(--font-rg);line-height:1.5;letter-spacing:0}.body-4,.body-4-sb{font-size:var(--font-size-2);font-weight:var(--font-rg);line-height:1.4;letter-spacing:0.16px}.body-5,.body-5-sb{font-size:var(--font-size-1);font-weight:var(--font-rg);line-height:1.33;letter-spacing:0.32px}.interactive-1,.interactive-1-sb{font-size:var(--font-size-3);font-weight:var(--font-rg);line-height:1.5;letter-spacing:0}.interactive-2,.interactive-2-sb{font-size:var(--font-size-2);font-weight:var(--font-rg);line-height:1.4;letter-spacing:0.16px}.interactive-3,.interactive-3-sb{font-size:var(--font-size-1);font-weight:var(--font-rg);line-height:1.33;letter-spacing:0.32px}.helper,.helper-sb{font-size:var(--font-size-1);font-weight:var(--font-rg);font-style:italic;line-height:1.33;letter-spacing:0.32px}.heading-1-lt,.heading-2-lt,.heading-3-lt,.heading-4-lt{font-weight:var(--font-lt)}.heading-1-sb,.heading-2-sb,.heading-3-sb,.heading-4-sb,.body-1-sb,.body-2-sb,.body-3-sb,.body-4-sb,.body-5-sb,.interactive-1-sb,.interactive-2-sb,.interactive-3-sb,.helper-sb{font-weight:var(--font-sb)}:root{--space-unit:8px}:root{--shadow-color-base:rgba(66, 69, 72, 0.35);--shadow-inset-2:inset 0 2px 4px 0 var(--shadow-color-base);--shadow-inset-4:inset 0 4px 8px 0 var(--shadow-color-base);--shadow-0:0 0 0 0 var(--shadow-color-base);--shadow-1:0 1px 2px 0 var(--shadow-color-base);--shadow-2:0 2px 4px 0 var(--shadow-color-base);--shadow-3:0 3px 6px 0 var(--shadow-color-base);--shadow-4:0 4px 8px 0 var(--shadow-color-base);--shadow-6:0 6px 12px 0 var(--shadow-color-base);--shadow-8:0 8px 16px 0 var(--shadow-color-base);--shadow-12:0 12px 24px 0 var(--shadow-color-base);--shadow-16:0 16px 32px 0 var(--shadow-color-base);--shadow-24:0 24px 48px 0 var(--shadow-color-base)}:root{--border-no-radius:0;--border-size-small:1px;--border-size-medium:2px;--border-size-large:4px;--border-radius-small:2px;--border-radius:4px}.t-weight-lt{font-weight:var(--font-lt)}.t-weight-rg{font-weight:var(--font-rg)}.t-weight-sb{font-weight:var(--font-sb)}.t-align-center{text-align:center}.t-color-light{color:var(--text-grey-medium);fill:var(--text-grey-medium)}.caption-01{color:var(--text-grey-800);fill:var(--text-grey-800);font-family:var(--font-family-sans);font-weight:var(--font-rg);font-size:var(--font-size-1);line-height:16px}.helper-text-01{color:var(--text-grey-800);fill:var(--text-grey-800);font-family:var(--font-family-sans);font-weight:var(--font-rg);font-style:italic;font-size:var(--font-size-1);line-height:16px}.body-short-01{color:var(--text-grey-800);fill:var(--text-grey-800);font-family:var(--font-family-sans);font-weight:var(--font-rg);font-size:var(--font-size-2);line-height:20px}.body-short-02{color:var(--text-grey-800);fill:var(--text-grey-800);font-family:var(--font-family-sans);font-weight:var(--font-rg);font-size:var(--font-size-3);line-height:24px}.body-long-01{color:var(--text-grey-800);fill:var(--text-grey-800);font-family:var(--font-family-sans);font-weight:var(--font-rg);font-size:var(--font-size-2);line-height:20px}.body-long-02{color:var(--text-grey-800);fill:var(--text-grey-800);font-family:var(--font-family-sans);font-weight:var(--font-sb);font-size:var(--font-size-3);line-height:24px}.heading-01{color:var(--text-grey-800);fill:var(--text-grey-800);font-family:var(--font-family-sans);font-weight:var(--font-sb);font-size:var(--font-size-2);line-height:20px}.heading-02{color:var(--text-grey-800);fill:var(--text-grey-800);font-family:var(--font-family-sans);font-weight:var(--font-sb);font-size:var(--font-size-3);line-height:24px}.heading-03{color:var(--text-grey-800);fill:var(--text-grey-800);font-family:var(--font-family-sans);font-weight:var(--font-sb);font-size:var(--font-size-5);line-height:24px}.heading-04{color:var(--text-grey-800);fill:var(--text-grey-800);font-family:var(--font-family-sans);font-weight:var(--font-sb);font-size:var(--font-size-7);line-height:36px}.heading-05{color:var(--text-grey-800);fill:var(--text-grey-800);font-family:var(--font-family-sans);font-weight:var(--font-sb);font-size:var(--font-size-8);line-height:40px}.expressive-heading-04{color:var(--text-grey-800);fill:var(--text-grey-800);font-family:var(--font-family-sans);font-weight:var(--font-rg);font-size:var(--font-size-8);line-height:40px}@media only screen and (max-width: 767px){.expressive-heading-04{font-size:var(--font-size-7);line-height:36px}}.expressive-heading-05{color:var(--text-grey-800);fill:var(--text-grey-800);font-family:var(--font-family-sans);font-weight:var(--font-rg);font-size:var(--font-size-11);line-height:56px}@media only screen and (max-width: 1024px){.expressive-heading-05{font-size:36px;line-height:44px}}@media only screen and (max-width: 767px){.expressive-heading-05{font-size:var(--font-size-8);line-height:40px}}.expressive-paragraph-01{color:var(--text-grey-800);fill:var(--text-grey-800);font-family:var(--font-family-sans);font-weight:var(--font-lt);font-size:var(--font-size-8);line-height:40px}@media only screen and (max-width: 767px){.expressive-paragraph-01{font-size:var(--font-size-6);line-height:32px}}.quotation-01{color:var(--text-grey-800);fill:var(--text-grey-800);font-family:var(--font-family-sans);font-weight:var(--font-lt);font-size:var(--font-size-8);line-height:40px}@media only screen and (max-width: 767px){.quotation-01{font-size:var(--font-size-5);line-height:28px}}.quotation-02{color:var(--text-grey-800);fill:var(--text-grey-800);font-family:var(--font-family-sans);font-weight:var(--font-lt);font-size:var(--font-size-13);line-height:72px}@media only screen and (max-width: 1024px){.quotation-02{font-size:36px;line-height:44px}}@media only screen and (max-width: 767px){.quotation-02{font-size:var(--font-size-8);line-height:40px}}.display-01{color:var(--text-grey-800);fill:var(--text-grey-800);font-family:var(--font-family-sans);font-weight:var(--font-lt);font-size:var(--font-size-15);line-height:88px}@media only screen and (max-width: 767px){.display-01{font-size:var(--font-size-10);line-height:52px}}.display-02{color:var(--text-grey-800);fill:var(--text-grey-800);font-family:var(--font-family-sans);font-weight:var(--font-sb);font-size:var(--font-size-15);line-height:88px}@media only screen and (max-width: 767px){.display-02{font-size:var(--font-size-10);line-height:52px}}.display-03{color:var(--text-grey-800);fill:var(--text-grey-800);font-family:var(--font-family-sans);font-weight:var(--font-lt);font-size:156px;line-height:164px}@media only screen and (max-width: 1024px){.display-03{font-size:var(--font-size-14);line-height:80px}}@media only screen and (max-width: 767px){.display-03{font-size:var(--font-size-10);line-height:52px}}.display-04{color:var(--text-grey-800);fill:var(--text-grey-800);font-family:var(--font-family-sans);font-weight:var(--font-sb);font-size:156px;line-height:164px}@media only screen and (max-width: 1024px){.display-04{font-size:var(--font-size-14);line-height:80px}}@media only screen and (max-width: 767px){.display-04{font-size:var(--font-size-10);line-height:52px}}:root{--grid-mobile-viewport:768px;--grid-mobile-column:4;--grid-mobile-margin:16px;--grid-mobile-gutter:16px;--grid-tablet-viewport:768px;--grid-tablet-column:8;--grid-tablet-margin:24px;--grid-tablet-gutter:24px;--grid-desktop-viewport:1152px;--grid-desktop-column:12;--grid-desktop-margin:24px;--grid-desktop-gutter:24px;--grid-wide-viewport:1366px;--grid-wide-column:12;--grid-wide-margin:32px;--grid-wide-gutter:32px;--grid-margin:var(--grid-mobile-margin);--grid-gutter:var(--grid-mobile-gutter);--grid-columns:var(--grid-mobile-column)}@media (min-width: 768px) and (max-width: 1151px){:root{--grid-margin:var(--grid-tablet-margin);--grid-gutter:var(--grid-tablet-gutter);--grid-columns:var(--grid-tablet-column)}}@media (min-width: 1152px) and (max-width: 1365px){:root{--grid-margin:var(--grid-desktop-margin);--grid-gutter:var(--grid-desktop-gutter);--grid-columns:var(--grid-desktop-column)}}@media (min-width: 1366px){:root{--grid-margin:var(--grid-wide-margin);--grid-gutter:var(--grid-wide-gutter);--grid-columns:var(--grid-wide-column)}}:root{--myz-blue:#0056c1;--myz-blue-dark:#003476;--myz-blue-light:#1973e1;--myz-blue-lighter:#e1f0ff;--myz-red:#e2001a;--myz-red-dark:#80000f;--myz-red-light:#ff808e;--accent:#add2ff;--accent-dark:#78b5ff;--accent-light:#d0e9ff;--accent-lighter:#ebf4ff;--bg-grey-050:#f6f6f6;--bg-grey-200:#e6e6e6;--bg-grey-700:#676b6f;--bg-grey-800:#424548;--bg-grey-900:#333333;--bg-white:#ffffff;--bg-neutral-100:#e8ebee;--bg-neutral-150:#d9dee3;--bg-neutral-200:#cad1d8;--bg-neutral-300:#aeb8c2;--bg-neutral-400:#919eac;--bg-neutral-500:#738596;--bg-neutral-600:#5c6b7a;--bg-neutral-700:#46525d;--bg-neutral-800:#303840;--status-error-red:#dc3122;--status-error-red-dark:#7e0a00;--status-error-red-light:#ff9c9c;--status-error-red-lighter:#fdefee;--status-warning-yellow:#f6bb3b;--status-warning-yellow-dark:#85641a;--status-warning-yellow-light:#fee17f;--status-warning-yellow-lighter:#fbf4e6;--status-success-green:#417505;--status-success-green-dark:#233a00;--status-success-green-light:#95d150;--status-success-green-lighter:#effce0;--text-grey-800:#424548;--text-grey-700:#676b6f;--text-grey-200:#e6e6e6;--text-grey-050:#f6f6f6;--text-white:#ffffff}:root{--border-base:2px;--border-size-small:1px;--radius-base:4px;--border-radius-base:4px;--border-radius-min:0;--border-radius-max:100%}:root{--shadow-inset-2:inset 0 2px 4px 0 rgba(66, 69, 72, 0.35);--shadow-inset-4:inset 0 4px 8px 0 rgba(66, 69, 72, 0.35);--shadow-0:0 0 0 0 rgba(66, 69, 72, 0.40);--shadow-1:0 1px 2px 0 rgba(66, 69, 72, 0.40);--shadow-2:0 2px 4px 0 rgba(66, 69, 72, 0.40);--shadow-3:0 3px 6px 0 rgba(66, 69, 72, 0.40);--shadow-4:0 4px 8px 0 rgba(66, 69, 72, 0.40);--shadow-6:0 6px 12px 0 rgba(66, 69, 72, 0.40);--shadow-8:0 8px 16px 0 rgba(66, 69, 72, 0.40);--shadow-12:0 12px 24px 0 rgba(66, 69, 72, 0.35);--shadow-16:0 16px 32px 0 rgba(66, 69, 72, 0.35);--shadow-24:0 24px 48px 0 rgba(66, 69, 72, 0.35)}:root{--basex1:var(--space-unit);--basex2:calc(var(--space-unit) * 2);--basex3:calc(var(--space-unit) * 3);--basex4:calc(var(--space-unit) * 4);--basex5:calc(var(--space-unit) * 5);--basex6:calc(var(--space-unit) * 6);--basex7:calc(var(--space-unit) * 7);--basex8:calc(var(--space-unit) * 8);--half-x1:calc(var(--space-unit) * .5);--half-x3:calc(var(--space-unit) * 1.5);--half-x5:calc(var(--space-unit) * 2.5);--half-x7:calc(var(--space-unit) * 3.5);--half-x9:calc(var(--space-unit) * 4.5);--half-x11:calc(var(--space-unit) * 5.5);--half-x13:calc(var(--space-unit) * 6.5);--half-x14:calc(var(--space-unit) * 7.5)}:root{--color-background:var(--gray50);--color-primary01:var(--blue500);--color-primary02:var(--blue500);--color-primary03:var(--blue50);--color-secondary01:var(--blue500);--color-secondary02:var(--red500);--color-secondary03:var(--red500);--color-danger01:var(--color-error-default);--color-danger02:var(--color-error-default);--color-error01:var(--color-error-default);--color-error02:var(--red800);--color-error-inverse:var(--red50);--color-text-error:var(--color-error-default);--color-success01:var(--color-success-default);--color-success02:var(--green800);--color-text-success:var(--color-success-default);--color-success-inverse:var(--green50);--color-warning01:var(--color-warning-default);--color-warning02:var(--yellow800);--color-text-warning:var(--color-warning-default);--color-warning-inverse:var(--yellow50);--color-surface01:var(--color-white);--color-surface02:var(--gray50);--color-surface03:var(--gray200);--color-surface04:var(--gray700);--color-surface05:var(--gray800);--color-text01:var(--gray800);--color-text02:var(--gray800);--color-text03:var(--gray300);--color-text04:var(--color-white);--color-text05:var(--gray600);--color-text-inverse:var(--color-white);--color-icon01:var(--blue500);--color-icon02:var(--gray800);--color-icon03:var(--color-white);--color-input-field01:var(--color-white);--color-input-field02:var(--color-white);--color-hover-primary:var(--blue800);--color-hover-primary-text:var(--color-black);--color-hover-secondary:var(--blue800);--color-hover-tertiary:var(--blue800);--color-hover-surface:var(--gray50);--color-hover-light:var(--blue400);--color-hover-danger:var(--red800);--color-active-primary:var(--blue800);--color-active-secondary:var(--blue800);--color-active-tertiary:var(--blue800);--color-active-surface:var(--gray300);--color-active-light:var(--blue400);--color-pressed-primary:var(--blue400);--color-pressed-secondary:var(--red400);--color-selected-surface:var(--gray300);--color-selected-light:var(--gray300);--color-highlight:var(--blue100);--color-ghost01:var(--gray300);--color-ghost02:var(--gray500);--color-disabled01:var(--gray200);--color-disabled02:var(--gray700);--color-disabled03:var(--gray500);--shadow-focus-primary:0 0 2px 2px var(--color-highlight);--color-link-primary:var(--blue500);--color-hover-link:var(--blue800);--color-active-link:var(--blue800);--color-pressed-link:var(--blue400);--color-visited-link:var(--blue800);--color-inverse-link:var(--color-white);--color-inverse-hover-link:var(--color-white);--color-inverse-active-link:var(--color-white);--color-inverse-pressed-link:var(--color-white);--color-inverse-visited-link:var(--gray300)}.theme-black-yellow{--color-primary01:var(--gray950);--color-primary02:var(--color-white);--color-primary03:var(--gray100);--color-secondary01:var(--yellow500);--color-secondary02:var(--yellow500);--color-secondary03:var(--yellow500);--color-text01:var(--gray950);--color-text-inverse:var(--color-white);--color-icon01:var(--gray950);--color-active-primary:var(--gray800);--color-pressed-primary:var(--gray800);--color-hover-primary:var(--gray800);--color-hover-secondary:var(--gray950);--color-hover-tertiary:var(--gray950);--color-hover-primary-text:var(--gray950);--color-hover-light:var(--yellow500);--color-background:var(--color-white);--color-hover-surface:var(--gray50)}
@@ -1 +0,0 @@
1
- import{p as e,b as i}from"./p-98268a57.js";(()=>{const i=import.meta.url,t={};return""!==i&&(t.resourcesUrl=new URL(".",i).href),e(t)})().then((e=>i(JSON.parse('[["p-47a55354",[[1,"z-app-topbar",{"theme":[1],"contentMaxWidth":[2,"content-max-width"],"topbarContent":[1,"topbar-content"],"logoLink":[1,"logo-link"],"showAppSwitcher":[4,"show-app-switcher"],"isMobile":[32]},[[9,"resize","handleResize"]]],[0,"z-range-picker",{"rangePickerId":[1,"range-picker-id"],"firstAriaLabel":[1,"first-aria-label"],"firstLabel":[1,"first-label"],"secondAriaLabel":[1,"second-aria-label"],"secondLabel":[1,"second-label"],"mode":[1],"flatpickrPosition":[32],"activeInput":[32],"firstInputError":[32],"lastInputError":[32]},[[18,"click","handleClick"],[18,"keyup","handleKeyDown"]]],[1,"z-app-switcher",{"theme":[1],"isopen":[32]}],[1,"z-logo",{"width":[2],"height":[2],"imageAlt":[1,"image-alt"],"link":[1],"targetBlank":[4,"target-blank"],"mobileLogo":[4,"mobile-logo"]}],[2,"z-input",{"htmlid":[1],"type":[1],"name":[1],"label":[1],"ariaLabel":[1,"aria-label"],"value":[1025],"disabled":[516],"readonly":[4],"required":[4],"checked":[1028],"placeholder":[1],"htmltitle":[1],"status":[1],"message":[8],"labelPosition":[1,"label-position"],"autocomplete":[1],"hasclearicon":[4],"icon":[1],"min":[2],"max":[2],"step":[2],"pattern":[1],"isTyping":[32],"passwordHidden":[32],"isChecked":[64]},[[4,"inputCheck","inputCheckListener"]]],[1,"z-link",{"htmlid":[1],"href":[1],"target":[1],"htmltabindex":[2],"isdisabled":[4],"isactive":[4],"iswhite":[4],"textcolor":[1],"icon":[1],"big":[4],"iconposition":[1],"underline":[4],"iconSize":[32]}],[1,"z-input-message",{"message":[1],"status":[513]}],[2,"z-divider",{"size":[1],"color":[1],"orientation":[1]}],[1,"z-icon",{"name":[1],"height":[2],"width":[2],"iconid":[1],"fill":[1]}]]],["p-3700ad63",[[1,"z-footer",{"data":[1],"productName":[1,"product-name"],"productVersion":[1,"product-version"],"productCreditsLink":[1,"product-credits-link"],"showReportAProblemButton":[4,"show-report-a-problem-button"],"contentMaxWidth":[2,"content-max-width"]},[[0,"zLinkClick","zLinkClickListener"]]]]],["p-1d4545e8",[[6,"z-file-upload",{"type":[1537],"buttonVariant":[1,"button-variant"],"acceptedFormat":[1,"accepted-format"],"fileMaxSize":[2,"file-max-size"],"mainTitle":[1,"main-title"],"description":[1],"files":[32],"invalidFiles":[32],"getFiles":[64]},[[0,"removeFile","removeFileListener"],[0,"fileDropped","fileDroppedListener"]]]]],["p-ba76f52b",[[2,"z-input-deprecated",{"htmlid":[1],"type":[1],"name":[1],"label":[1],"ariaLabel":[1,"aria-label"],"value":[1025],"disabled":[4],"readonly":[4],"required":[4],"checked":[1028],"placeholder":[1],"htmltitle":[1],"status":[1],"hasmessage":[4],"message":[1],"labelafter":[4],"typingtimeout":[2],"items":[1],"autocomplete":[8],"multiple":[4],"hasclearicon":[4],"icon":[1],"isTyping":[32],"textareaWrapperHover":[32],"textareaWrapperFocus":[32],"passwordHidden":[32],"getValue":[64],"setValue":[64],"isChecked":[64]},[[4,"inputCheck","inputCheckListener"]]]]],["p-d5e67db8",[[6,"z-modal-login",{"forgotPasswordUrl":[1,"forgot-password-url"],"heading":[1],"status":[1025],"message":[1025],"pwdmessage":[1025],"externalProviderCheck":[32]}]]],["p-9504d075",[[1,"z-myz-topbar",{"intlinkdata":[1],"extlinkdata":[1],"userdata":[1],"ismyz":[4],"logolink":[1],"imagealt":[1],"activeintlinkid":[1],"activesublinkid":[1],"hideloginbutton":[4],"activeMenuItem":[32],"currentMenuItem":[32],"isMobile":[32],"isMenuMobileOpen":[32]},[[9,"resize","handleResize"],[2,"zListItemLinkClick","handleZListItemLinkClick"],[2,"zListItemClick","handleZListItemClick"]]]]],["p-96bf5b15",[[1,"z-combobox",{"inputid":[1],"items":[1],"label":[1],"hassearch":[4],"searchlabel":[1],"searchplaceholder":[1],"searchtitle":[1],"noresultslabel":[1],"isopen":[1028],"isfixed":[4],"closesearchtext":[1],"hascheckall":[4],"checkalltext":[1],"uncheckalltext":[1],"maxcheckableitems":[2],"searchValue":[32],"selectedCounter":[32],"renderItemsList":[32]},[[0,"inputCheck","inputCheckListener"]]]]],["p-f5f15b8e",[[1,"z-contextual-menu",{"elements":[1],"color":[1],"popoverPosition":[513,"popover-position"]}]]],["p-2ed37f62",[[1,"z-myz-card-dictionary",{"name":[1],"cover":[1],"disabled":[4],"flipped":[1028],"flipbuttonlabel":[1],"hideinfobtn":[4]},[[0,"flipCard","handleFlipCard"]]]]],["p-b621a765",[[4,"z-table",{"lines":[514],"errorMessage":[1,"error-message"],"bordered":[4],"callToActionLabel":[1,"call-to-action-label"],"callToActionTwoLabel":[1,"call-to-action-two-label"],"columnSticky":[4,"column-sticky"],"empty":[4],"error":[4],"errorLink":[1,"error-link"],"headerSticky":[4,"header-sticky"],"message":[1],"subtitle":[1],"hasTableBody":[32],"isMobile":[32]},[[9,"resize","handleResize"],[8,"orientationchange","handleOrientationChange"]]]]],["p-215adfd1",[[1,"z-messages-pocket",{"pocketid":[1],"messages":[2],"status":[1025]},[[16,"pocketToggle","handlePocketToggle"]]]]],["p-223566d6",[[0,"z-pagination",{"label":[1],"navArrows":[4,"nav-arrows"],"totalPages":[2,"total-pages"],"skip":[2],"edges":[4],"split":[2],"visiblePages":[2,"visible-pages"],"currentPage":[1026,"current-page"],"goToPage":[4,"go-to-page"],"_visiblePages":[32],"isMobile":[32],"goToPageValue":[32]},[[9,"resize","onResize"]]]]],["p-4d9667dc",[[4,"z-table-header-row",{"expandable":[516]}]]],["p-d4c5085b",[[1,"z-cookiebar",{"cookiepolicyurl":[1],"hide":[4],"callback":[16]}]]],["p-0146081c",[[4,"z-date-picker",{"datePickerId":[1,"date-picker-id"],"ariaLabel":[1,"aria-label"],"label":[1],"mode":[1],"flatpickrPosition":[32],"inputError":[32]},[[18,"keydown","handleKeyDown"]]]]],["p-0f6229b2",[[2,"z-file",{"fileNumber":[2,"file-number"],"fileName":[8,"file-name"],"allowPopover":[32],"popoverVisible":[32]},[[1,"mouseover","onMouseOver"],[1,"mouseleave","onMouseLeave"],[0,"interactiveIconClick","onInteractiveIconClick"]]]]],["p-80f26a20",[[4,"z-table-row",{"expandedType":[513,"expanded-type"],"expanded":[32]}]]],["p-cb3663e6",[[1,"z-myz-card-alert",{"iconname":[1],"contenttext":[1],"actiontext":[1],"type":[1]}]]],["p-040ea013",[[1,"z-myz-card-info",{"data":[1],"htmltabindex":[2],"hiddenContent":[32],"tooltip":[32]}]]],["p-aba00527",[[1,"z-otp",{"inputNum":[2,"input-num"],"status":[1],"message":[1]}]]],["p-766eb9cf",[[1,"z-pagination-bar",{"pages":[2],"visiblepages":[2],"currentpage":[1026],"startpage":[1026],"historyraw":[1],"listhistoryrow":[1040],"currentPages":[32]}]]],["p-71e8c2af",[[1,"z-panel-elem",{"elemid":[1],"imgurl":[1],"imgalt":[1],"linkicon":[1],"linklabel":[1],"url":[1],"target":[1],"isdisabled":[4],"descr_slot_name":[1]}]]],["p-cb4a854e",[[2,"z-skip-to-content",{"variant":[513],"links":[1025],"visible":[32],"visibleLink":[32]},[[4,"focusout","handleFocusOutSkipToContent"],[4,"focusin","handleFocusSkipToContent"]]]]],["p-104b70e5",[[1,"z-user-dropdown",{"logged":[4],"userFullName":[1,"user-full-name"],"userEmail":[1,"user-email"],"menuContent":[1,"menu-content"],"useInverseColors":[4,"use-inverse-colors"],"isMenuOpen":[32],"isMobile":[32]},[[9,"resize","handleResize"],[8,"orientationchange","handleOrientationChange"],[8,"click","handleClickOutside"]]]]],["p-79408b00",[[1,"z-app-header",{"stuck":[516],"hero":[1],"overlay":[516],"flow":[513],"drawerOpen":[516,"drawer-open"],"stucked":[32],"menuLength":[32]}]]],["p-e82cee27",[[1,"z-button-deprecated",{"htmlid":[1],"name":[1],"disabled":[516],"type":[1],"variant":[513],"icon":[1],"size":[513],"issmall":[516],"square":[516]}]]],["p-b574d5f6",[[1,"z-button-filter",{"filtername":[1],"isfixed":[4],"hasicon":[4],"filterid":[1],"issmall":[4]}]]],["p-7ebb03d8",[[1,"z-button-sort",{"buttonid":[1],"label":[1],"desclabel":[1],"counter":[2],"sortlabelasc":[1],"sortlabeldesc":[1],"isselected":[1028],"sortasc":[1028],"allowTooltip":[32]}]]],["p-35573e0e",[[1,"z-card",{"variant":[513],"coverIcon":[1,"cover-icon"],"clickable":[516],"showshadow":[516],"hasCoverImage":[32]},[[0,"click","onClick"]]]]],["p-8cf3798f",[[4,"z-carousel",{"isLoading":[4,"is-loading"],"ghostLoadingHeight":[2,"ghost-loading-height"]}]]],["p-d0fea19f",[[1,"z-icon-package"]]],["p-9260abad",[[1,"z-info-box",{"boxid":[1],"isclosable":[4]}]]],["p-3a991f9c",[[1,"z-info-reveal",{"icon":[1],"position":[513],"label":[1],"open":[32],"currentIndex":[32]}]]],["p-9c7cf598",[[1,"z-menu",{"active":[516],"floating":[516],"open":[1540],"hasHeader":[32],"hasContent":[32]},[[4,"click","handleClick"]]]]],["p-41c5beec",[[1,"z-menu-section",{"active":[516],"open":[32],"hasContent":[32]},[[4,"click","handleClick"]]]]],["p-6375f662",[[1,"z-myz-card-icon",{"icon":[1],"isdisabled":[4],"ariaLabel":[1,"aria-label"]}]]],["p-e5eb1fa4",[[0,"z-navigation-tab",{"selected":[1540],"disabled":[516],"orientation":[513],"size":[513],"icon":[1],"label":[1],"htmlTitle":[1,"html-title"]},[[0,"click","onClick"]]]]],["p-faeb0c6e",[[0,"z-navigation-tab-link",{"selected":[1540],"disabled":[516],"orientation":[513],"size":[513],"htmlTitle":[1,"html-title"],"target":[1],"href":[1],"icon":[1],"label":[1]},[[0,"click","onClick"]]]]],["p-07ae4f7d",[[1,"z-navigation-tabs",{"orientation":[513],"size":[513],"canNavigate":[32],"canNavigatePrev":[32],"canNavigateNext":[32]},[[9,"resize","checkScrollVisible"],[0,"selected","onTabSelected"]]]]],["p-33f74396",[[1,"z-notification",{"contenticonname":[1],"actiontext":[1],"type":[513],"showclose":[4],"showshadow":[516],"sticky":[516]}]]],["p-c284139b",[[1,"z-pocket-message"]]],["p-e6fb8b76",[[1,"z-section-title",{"dividerPosition":[1,"divider-position"],"uppercase":[516]}]]],["p-1c790896",[[1,"z-slideshow",{"slideshowid":[1],"data":[1],"device":[32],"currentSlide":[32]}]]],["p-ac52264c",[[1,"z-status-tag",{"icon":[1],"text":[1],"expandable":[4],"status":[513],"variant":[1]}]]],["p-e17ca1a1",[[6,"z-tag",{"icon":[1],"expandable":[4]}]]],["p-7e691a4e",[[1,"z-toast-notification",{"heading":[1],"message":[1],"closebutton":[4],"autoclose":[2],"pauseonfocusloss":[4],"type":[1],"isdraggable":[4],"draggablepercentage":[2],"transition":[1],"percentage":[32],"isTextLong":[32]}]]],["p-02474663",[[1,"z-toggle-button",{"label":[1],"isdisabled":[4],"avoidclick":[4],"opened":[1028]}]]],["p-afed0692",[[6,"z-toggle-switch",{"disabled":[516],"labelPosition":[513,"label-position"],"checked":[1028],"htmlid":[1]}]]],["p-8712d63f",[[1,"z-tooltip",{"position":[1537],"dark":[516],"open":[1540],"bindTo":[1,"bind-to"]},[[0,"openChange","onPopoverOpenChange"]]]]],["p-e4a2811a",[[4,"z-aria-alert",{"mode":[1]}]]],["p-846f16e8",[[1,"z-avatar",{"size":[1],"text":[1],"textColor":[1,"text-color"],"backgroundColor":[1,"background-color"],"image":[1025]}]]],["p-ab5f212d",[[1,"z-chip-deprecated",{"regulartext":[1],"boldtext":[2]}]]],["p-39dbb042",[[1,"z-myz-card-footer",{"titolo":[1],"autori":[1],"isbn":[1],"faded":[4],"cardtype":[1],"opened":[4],"customContent":[4,"custom-content"],"isOpen":[32],"allowTooltipAuthors":[32]},[[0,"toggleClick","handleToggle"]]]]],["p-578a5ad1",[[1,"z-myz-card-footer-sections"]]],["p-7f2fa336",[[1,"z-myz-card-list",{"listdata":[1]}]]],["p-5e3b8207",[[6,"z-offcanvas",{"variant":[513],"open":[1540],"transitiondirection":[513]}]]],["p-97d62d2a",[[6,"z-popover-deprecated",{"position":[1],"backgroundColor":[1,"background-color"],"borderRadius":[1,"border-radius"],"boxShadow":[1,"box-shadow"],"showArrow":[4,"show-arrow"],"padding":[1],"isVisible":[32],"popoverPosition":[32]},[[0,"closePopover","closePopover"],[8,"keyup","closePopoverWithKeyboard"],[18,"click","handleOutsideClick"]]]]],["p-e2560604",[[1,"z-stepper"]]],["p-9352da73",[[1,"z-stepper-item",{"index":[2],"href":[1],"pressed":[4],"disabled":[4]}]]],["p-105b82a6",[[6,"z-table-body"]]],["p-d4927410",[[1,"z-table-expanded-row",{"colSpan":[2,"col-span"]}]]],["p-4aaf3433",[[6,"z-table-footer"]]],["p-6baa8e33",[[6,"z-table-head"]]],["p-6bb8de3e",[[6,"z-table-sticky-footer"]]],["p-91cbf793",[[1,"z-toast-notification-list",{"position":[1],"newestontop":[4]}]]],["p-3ade68ff",[[1,"z-tooltip-deprecated",{"content":[1],"type":[1025],"open":[1540],"bindTo":[1,"bind-to"],"position":[32]}]]],["p-f6a11970",[[1,"z-visually-hidden"]]],["p-4965b6db",[[1,"z-table-header",{"columnId":[1,"column-id"],"padding":[513],"sortable":[4],"showButton":[4,"show-button"],"defaultSortDirection":[1,"default-sort-direction"],"sortDirection":[1025,"sort-direction"]},[[18,"click","handleOutsideClick"],[18,"click","handleClickHeaders"]]]]],["p-a73195b6",[[1,"z-table-cell",{"showButton":[4,"show-button"],"padding":[513],"isMenuOpened":[32]}]]],["p-2de00f19",[[6,"z-table-empty-box",{"message":[1],"subtitle":[1]}]]],["p-96ed1e2f",[[6,"z-chip",{"icon":[1],"type":[513],"interactiveIcon":[513,"interactive-icon"],"disabled":[516]}]]],["p-7f48b622",[[1,"z-list-group",{"size":[513],"dividerType":[513,"divider-type"],"dividerSize":[513,"divider-size"],"dividerColor":[513,"divider-color"]}]]],["p-a9eea65b",[[1,"z-alert",{"type":[1]}]]],["p-a759ab46",[[1,"z-candybar"]]],["p-5789bbe7",[[1,"z-ghost-loading"]]],["p-78e26102",[[1,"z-pagination-page",{"pageid":[1],"value":[2],"isselected":[4],"isdisabled":[4],"isvisited":[4],"ariaLabel":[1,"aria-label"]}]]],["p-878e62e2",[[2,"z-select",{"htmlid":[1],"items":[1],"name":[1],"label":[1],"ariaLabel":[1,"aria-label"],"disabled":[4],"readonly":[4],"placeholder":[1],"htmltitle":[1],"status":[1],"message":[8],"autocomplete":[4],"noresultslabel":[1],"isOpen":[32],"selectedItem":[32],"searchString":[32],"getSelectedItem":[64],"getValue":[64],"setValue":[64]}],[1,"z-input-label",{"value":[1],"disabled":[4],"htmlfor":[1]}]]],["p-818c073b",[[1,"z-menu-dropdown",{"nomeutente":[1],"menucontent":[1],"buttonid":[1],"ismenuopen":[32]}],[1,"z-myz-list",{"inputrawdata":[1025],"list":[1040]}]]],["p-bd886dd5",[[6,"z-dragdrop-area"],[1,"z-heading",{"level":[2],"variant":[1],"component":[1]}]]],["p-3fc438b7",[[1,"z-modal",{"modalid":[1],"modaltitle":[1],"modalsubtitle":[1],"closeButtonLabel":[1,"close-button-label"]}]]],["p-cb13d050",[[1,"z-footer-section",{"name":[1],"isOpen":[32]}],[1,"z-footer-link",{"href":[1]}],[1,"z-footer-social",{"icon":[1],"href":[1],"description":[1]}]]],["p-3d748f0d",[[1,"z-myz-list-item",{"text":[1],"link":[1],"linktarget":[1],"icon":[1],"listitemid":[1],"action":[1],"underlined":[4]}]]],["p-eddde828",[[1,"z-pocket",{"pocketid":[1],"status":[1025],"open":[64],"close":[64]},[[0,"pocketHeaderClick","handlePocketHeaderClick"],[0,"pocketHeaderPan","handlePocketHeaderPan"]]],[1,"z-pocket-body",{"pocketid":[1],"status":[1025]},[[16,"pocketToggle","handlePocketToggle"]]],[1,"z-pocket-header",{"pocketid":[1]}]]],["p-977c81d3",[[1,"z-myz-card",{"faded":[4],"cardtype":[1],"ispressed":[4],"ishighlighted":[4]}],[1,"z-myz-card-body"],[1,"z-myz-card-cover",{"img":[1],"titolo":[1],"faded":[4],"defaultimg":[1]}],[1,"z-myz-card-header",{"titolo":[1],"faded":[4],"cardtype":[1],"allowTooltip":[32]}]]],["p-27666111",[[1,"z-list-element",{"alignButton":[513,"align-button"],"clickable":[516],"dividerColor":[1,"divider-color"],"dividerType":[1,"divider-type"],"dividerSize":[1,"divider-size"],"expandable":[516],"expandableStyle":[1,"expandable-style"],"listElementId":[514,"list-element-id"],"size":[513],"color":[513],"disabled":[516],"isContextualMenu":[516,"is-contextual-menu"],"showInnerContent":[32]},[[4,"accessibleFocus","accessibleFocusHandler"]]],[1,"z-list",{"size":[513]}]]],["p-1356eb90",[[1,"z-popover",{"position":[513],"open":[1540],"bindTo":[1,"bind-to"],"showArrow":[516,"show-arrow"],"center":[516],"closable":[4],"currentPosition":[32]},[[8,"keyup","closePopoverWithKeyboard"],[18,"click","handleOutsideClick"]]]]],["p-b369bf2f",[[6,"z-button",{"ariaLabel":[513,"aria-label"],"href":[1],"target":[1],"htmlid":[1],"name":[1],"disabled":[516],"type":[1],"variant":[513],"icon":[1],"size":[513]}]]],["p-2c836d42",[[1,"z-body",{"level":[2],"variant":[1],"component":[1]}],[1,"z-typography",{"component":[1],"variant":[1],"level":[1]}]]]]'),e)));