@mgdis/mg-components 6.20.0 → 6.22.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/{index-TUElr4Wv.js → index-BxB20_Vw.js} +54 -0
- package/dist/cjs/{index-Bp6wZzau.js → index-C2viYwrR.js} +1761 -80
- package/dist/cjs/loader.cjs.js +2 -2
- package/dist/cjs/mg-action-more_37.cjs.entry.js +761 -371
- package/dist/cjs/mg-alert.cjs.entry.js +17 -9
- package/dist/cjs/mg-breadcrumb.cjs.entry.js +63 -0
- package/dist/cjs/mg-components.cjs.js +3 -3
- package/dist/cjs/mg-fieldset.cjs.entry.js +24 -7
- package/dist/cjs/mg-input-combobox.cjs.entry.js +49 -19
- package/dist/cjs/mg-input-file.cjs.entry.js +384 -0
- package/dist/cjs/mg-input-rich-text-editor.cjs.entry.js +40096 -15821
- package/dist/cjs/{mg-input.conf-D7jmj_lh.js → mg-input.conf-BNpeATnq.js} +7 -0
- package/dist/cjs/mg-loader.cjs.entry.js +8 -6
- package/dist/cjs/mg-progress.cjs.entry.js +19 -9
- package/dist/collection/assets/icons/index.js +1 -1
- package/dist/collection/collection-manifest.json +5 -3
- package/dist/collection/components/atoms/internals/mg-character-left/mg-character-left.js +1 -1
- package/dist/collection/components/atoms/internals/mg-input-title/mg-input-title.js +1 -1
- package/dist/collection/components/atoms/mg-card/mg-card.js +1 -1
- package/dist/collection/components/atoms/mg-divider/mg-divider.js +1 -1
- package/dist/collection/components/atoms/mg-icon/mg-icon.js +2 -2
- package/dist/collection/components/atoms/mg-tag/mg-tag.js +1 -1
- package/dist/collection/components/atoms/mg-tooltip/mg-tooltip-content/mg-tooltip-content.js +1 -1
- package/dist/collection/components/atoms/mg-tooltip/mg-tooltip.js +1 -1
- package/dist/collection/components/molecules/inputs/mg-input/mg-input.conf.js +6 -0
- package/dist/collection/components/molecules/inputs/mg-input/mg-input.js +1 -1
- package/dist/collection/components/molecules/inputs/mg-input-checkbox/MgInputCheckboxList.js +2 -2
- package/dist/collection/components/molecules/inputs/mg-input-checkbox/mg-input-checkbox-paginated/mg-input-checkbox-paginated.js +2 -2
- package/dist/collection/components/molecules/inputs/mg-input-checkbox/mg-input-checkbox.js +1 -1
- package/dist/collection/components/molecules/inputs/mg-input-combobox/mg-input-combobox.js +1 -1
- package/dist/collection/components/molecules/inputs/mg-input-date/mg-input-date.js +1 -1
- package/dist/collection/components/molecules/inputs/mg-input-file/mg-input-file.js +877 -0
- package/dist/collection/components/molecules/inputs/mg-input-numeric/mg-input-numeric.js +1 -1
- package/dist/collection/components/molecules/inputs/mg-input-password/mg-input-password.js +2 -2
- package/dist/collection/components/molecules/inputs/mg-input-radio/mg-input-radio.js +1 -1
- package/dist/collection/components/molecules/inputs/mg-input-rich-text-editor/editor/custom-properties.scss +212 -0
- package/dist/collection/components/molecules/inputs/mg-input-rich-text-editor/editor/editor.conf.js +1 -0
- package/dist/collection/components/molecules/inputs/mg-input-rich-text-editor/editor/index.js +300 -94
- package/dist/collection/components/molecules/inputs/mg-input-rich-text-editor/mg-input-rich-text-editor.conf.js +29 -0
- package/dist/collection/components/molecules/inputs/mg-input-rich-text-editor/mg-input-rich-text-editor.js +163 -53
- package/dist/collection/components/molecules/inputs/mg-input-select/mg-input-select.js +1 -1
- package/dist/collection/components/molecules/inputs/mg-input-text/mg-input-text.js +2 -2
- package/dist/collection/components/molecules/inputs/mg-input-textarea/mg-input-textarea.js +1 -1
- package/dist/collection/components/molecules/inputs/mg-input-toggle/mg-input-toggle.js +1 -1
- package/dist/collection/components/molecules/internals/mg-item-more/mg-item-more.js +3 -36
- package/dist/collection/components/molecules/menus/mg-menu/mg-menu.conf.js +0 -4
- package/dist/collection/components/molecules/menus/mg-menu/mg-menu.js +21 -43
- package/dist/collection/components/molecules/menus/mg-menu-item/mg-menu-item.js +65 -38
- package/dist/collection/components/molecules/mg-action-more/mg-action-more.js +2 -2
- package/dist/collection/components/molecules/mg-alert/mg-alert.js +1 -1
- package/dist/collection/components/molecules/mg-breadcrumb/mg-breadcrumb.conf.js +1 -0
- package/dist/collection/components/molecules/mg-breadcrumb/mg-breadcrumb.js +92 -0
- package/dist/collection/components/molecules/mg-details/mg-details.js +1 -1
- package/dist/collection/components/molecules/mg-fieldset/mg-fieldset.js +12 -3
- package/dist/collection/components/molecules/mg-form/mg-form.js +12 -2
- package/dist/collection/components/molecules/mg-illustrated-message/mg-illustrated-message.js +1 -1
- package/dist/collection/components/molecules/mg-loader/mg-loader.js +1 -1
- package/dist/collection/components/molecules/mg-message/mg-message.js +2 -2
- package/dist/collection/components/molecules/mg-modal/mg-modal.js +2 -2
- package/dist/collection/components/molecules/mg-panel/mg-panel.js +1 -1
- package/dist/collection/components/molecules/mg-popover/mg-popover-content/mg-popover-content.js +1 -1
- package/dist/collection/components/molecules/mg-popover/mg-popover.js +1 -1
- package/dist/collection/components/molecules/mg-progress/mg-progress.js +1 -1
- package/dist/collection/components/molecules/mg-skip-links/mg-skip-links.js +1 -1
- package/dist/collection/components/molecules/mg-table/mg-table.js +37 -0
- package/dist/collection/components/molecules/mg-tabs/mg-tabs.conf.js +0 -4
- package/dist/collection/components/molecules/mg-tabs/mg-tabs.js +13 -33
- package/dist/collection/locales/en/messages.json +14 -0
- package/dist/collection/locales/fr/messages.json +14 -0
- package/dist/components/events.utils.js +1 -23
- package/dist/components/index.d.ts +2 -0
- package/dist/components/index.js +1 -1
- package/dist/components/index2.js +1 -408
- package/dist/components/index3.js +1 -476
- package/dist/components/mg-action-more.js +1 -254
- package/dist/components/mg-alert.js +1 -224
- package/dist/components/mg-badge.js +1 -6
- package/dist/components/mg-badge2.js +1 -113
- package/dist/components/mg-breadcrumb.d.ts +11 -0
- package/dist/components/mg-breadcrumb.js +1 -0
- package/dist/components/mg-button.js +1 -6
- package/dist/components/mg-button2.js +1 -275
- package/dist/components/mg-card.js +1 -6
- package/dist/components/mg-card2.js +1 -92
- package/dist/components/mg-character-left.js +1 -6
- package/dist/components/mg-character-left2.js +1 -75
- package/dist/components/mg-details.js +1 -104
- package/dist/components/mg-divider.js +1 -6
- package/dist/components/mg-divider2.js +1 -49
- package/dist/components/mg-fieldset.js +1 -209
- package/dist/components/mg-form.js +1 -302
- package/dist/components/mg-icon.js +1 -6
- package/dist/components/mg-icon2.js +1 -188
- package/dist/components/mg-illustrated-message.js +1 -129
- package/dist/components/mg-input-checkbox-paginated.js +1 -6
- package/dist/components/mg-input-checkbox-paginated2.js +1 -135
- package/dist/components/mg-input-checkbox.js +1 -762
- package/dist/components/mg-input-combobox.js +1 -940
- package/dist/components/mg-input-date.js +1 -463
- package/dist/components/mg-input-file.d.ts +11 -0
- package/dist/components/mg-input-file.js +1 -0
- package/dist/components/mg-input-numeric.js +1 -592
- package/dist/components/mg-input-password.js +1 -360
- package/dist/components/mg-input-radio.js +1 -392
- package/dist/components/mg-input-rich-text-editor.js +1663 -16797
- package/dist/components/mg-input-select.js +1 -6
- package/dist/components/mg-input-select2.js +1 -481
- package/dist/components/mg-input-text.js +1 -6
- package/dist/components/mg-input-text2.js +1 -514
- package/dist/components/mg-input-textarea.js +1 -412
- package/dist/components/mg-input-title.js +1 -6
- package/dist/components/mg-input-title2.js +1 -81
- package/dist/components/mg-input-toggle.js +1 -371
- package/dist/components/mg-input.conf.js +1 -0
- package/dist/components/mg-input.js +1 -6
- package/dist/components/mg-input2.js +1 -459
- package/dist/components/mg-item-more.js +1 -6
- package/dist/components/mg-item-more2.js +1 -505
- package/dist/components/mg-loader.js +1 -6
- package/dist/components/mg-loader2.js +1 -74
- package/dist/components/mg-menu-item.js +1 -6
- package/dist/components/mg-menu-item2.js +1 -485
- package/dist/components/mg-menu.js +1 -6
- package/dist/components/mg-message.js +1 -6
- package/dist/components/mg-message2.js +1 -146
- package/dist/components/mg-modal.js +1 -184
- package/dist/components/mg-pagination.js +1 -234
- package/dist/components/mg-panel.js +1 -350
- package/dist/components/mg-popover-content.js +1 -6
- package/dist/components/mg-popover-content2.js +1 -96
- package/dist/components/mg-popover.js +1 -6
- package/dist/components/mg-popover2.js +1 -312
- package/dist/components/mg-progress.js +1 -123
- package/dist/components/mg-skip-links.js +1 -78
- package/dist/components/mg-table.js +1 -319
- package/dist/components/mg-tabs.js +1 -6
- package/dist/components/mg-tabs2.js +1 -315
- package/dist/components/mg-tag.js +1 -133
- package/dist/components/mg-tooltip-content.js +1 -6
- package/dist/components/mg-tooltip-content2.js +1 -42
- package/dist/components/mg-tooltip.js +1 -6
- package/dist/components/mg-tooltip2.js +1 -421
- package/dist/components/popper.js +1 -1790
- package/dist/esm/{index-BluNKQ3L.js → index-DFwaH2hS.js} +1761 -80
- package/dist/esm/{index-CNX6lq0x.js → index-DSEloqPn.js} +54 -1
- package/dist/esm/loader.js +3 -3
- package/dist/esm/mg-action-more_37.entry.js +761 -371
- package/dist/esm/mg-alert.entry.js +17 -9
- package/dist/esm/mg-breadcrumb.entry.js +61 -0
- package/dist/esm/mg-components.js +4 -4
- package/dist/esm/mg-fieldset.entry.js +24 -7
- package/dist/esm/mg-input-combobox.entry.js +49 -19
- package/dist/esm/mg-input-file.entry.js +382 -0
- package/dist/esm/mg-input-rich-text-editor.entry.js +40083 -15808
- package/dist/esm/{mg-input.conf-DDnrE1hD.js → mg-input.conf-C9rmNQIL.js} +7 -1
- package/dist/esm/mg-loader.entry.js +8 -6
- package/dist/esm/mg-progress.entry.js +19 -9
- package/dist/mg-components/locales/en/messages.json +14 -0
- package/dist/mg-components/locales/fr/messages.json +14 -0
- package/dist/mg-components/mg-components.esm.js +1 -1
- package/dist/mg-components/p-0482eb9f.entry.js +1 -0
- package/dist/mg-components/{p-7132bca1.entry.js → p-2ee92f38.entry.js} +1 -1
- package/dist/mg-components/{p-916dfb6d.entry.js → p-3b653226.entry.js} +1 -1
- package/dist/mg-components/p-5745fbea.entry.js +1 -0
- package/dist/mg-components/p-C9rmNQIL.js +1 -0
- package/dist/mg-components/p-DFwaH2hS.js +2 -0
- package/dist/mg-components/p-DSEloqPn.js +1 -0
- package/dist/mg-components/p-adec7fcc.entry.js +1 -0
- package/dist/mg-components/p-c63f97f0.entry.js +1658 -0
- package/dist/mg-components/p-c8c8cfc1.entry.js +1 -0
- package/dist/mg-components/p-cc793586.entry.js +1 -0
- package/dist/mg-components/p-d5e69c95.entry.js +1 -0
- package/dist/types/assets/icons/index.d.ts +2 -0
- package/dist/types/components/molecules/inputs/mg-input/mg-input.conf.d.ts +7 -1
- package/dist/types/components/molecules/inputs/mg-input-file/mg-input-file.d.ts +210 -0
- package/dist/types/components/molecules/inputs/mg-input-rich-text-editor/editor/editor.conf.d.ts +17 -0
- package/dist/types/components/molecules/inputs/mg-input-rich-text-editor/editor/index.d.ts +27 -19
- package/dist/types/components/molecules/inputs/mg-input-rich-text-editor/mg-input-rich-text-editor.conf.d.ts +3 -0
- package/dist/types/components/molecules/inputs/mg-input-rich-text-editor/mg-input-rich-text-editor.d.ts +50 -16
- package/dist/types/components/molecules/internals/mg-item-more/mg-item-more.conf.d.ts +0 -5
- package/dist/types/components/molecules/internals/mg-item-more/mg-item-more.d.ts +1 -6
- package/dist/types/components/molecules/menus/mg-menu/mg-menu.conf.d.ts +2 -10
- package/dist/types/components/molecules/menus/mg-menu/mg-menu.d.ts +7 -7
- package/dist/types/components/molecules/menus/mg-menu-item/mg-menu-item.d.ts +12 -8
- package/dist/types/components/molecules/mg-breadcrumb/mg-breadcrumb.conf.d.ts +18 -0
- package/dist/types/components/molecules/mg-breadcrumb/mg-breadcrumb.d.ts +34 -0
- package/dist/types/components/molecules/mg-table/mg-table.d.ts +6 -0
- package/dist/types/components/molecules/mg-tabs/mg-tabs.conf.d.ts +1 -9
- package/dist/types/components/molecules/mg-tabs/mg-tabs.d.ts +4 -4
- package/dist/types/components.d.ts +302 -46
- package/dist/types/stencil-public-runtime.d.ts +76 -12
- package/ide/intellij/web-types.json +483 -51
- package/ide/vscode/css-custom-data.json +10 -2
- package/ide/vscode/html-custom-data.json +445 -104
- package/package.json +24 -23
- package/dist/collection/components/molecules/inputs/mg-input-rich-text-editor/editor/editor.scss +0 -1
- package/dist/mg-components/p-016bd291.entry.js +0 -1
- package/dist/mg-components/p-186a6139.entry.js +0 -1
- package/dist/mg-components/p-BluNKQ3L.js +0 -2
- package/dist/mg-components/p-CNX6lq0x.js +0 -1
- package/dist/mg-components/p-DDnrE1hD.js +0 -1
- package/dist/mg-components/p-cd061b38.entry.js +0 -1
- package/dist/mg-components/p-d2c72f09.entry.js +0 -1
- package/dist/mg-components/p-d5a276eb.entry.js +0 -1
- package/ide/vscode/custom.css-data.json +0 -425
|
@@ -10,10 +10,16 @@ const tooltipPositions = ['input', 'label'];
|
|
|
10
10
|
* Possible label headings
|
|
11
11
|
*/
|
|
12
12
|
const labelHeadings = ['h1', 'h2', 'h3', 'h4', 'h5', 'h6'];
|
|
13
|
+
/**
|
|
14
|
+
* Is HTMLMgInputElement an HTMLMgInputFileElement
|
|
15
|
+
* @param input - input element
|
|
16
|
+
* @returns true if input is an mg-input-file element
|
|
17
|
+
*/
|
|
18
|
+
const isMgInputFile = (input) => input.nodeName === 'MG-INPUT-FILE';
|
|
13
19
|
const classFieldset = 'mg-c-input--fieldset';
|
|
14
20
|
const classDisabled = 'mg-c-input--disabled';
|
|
15
21
|
const classReadonly = 'mg-c-input--readonly';
|
|
16
22
|
const classVerticalList = 'mg-c-input--vertical-list';
|
|
17
23
|
const classDisplayCharacterLeft = 'mg-c-input--display-character-left';
|
|
18
24
|
|
|
19
|
-
export { classDisabled as a, classFieldset as b, classReadonly as c, classVerticalList as d, classDisplayCharacterLeft as e, labelHeadings as l, tooltipPositions as t, widths as w };
|
|
25
|
+
export { classDisabled as a, classFieldset as b, classReadonly as c, classVerticalList as d, classDisplayCharacterLeft as e, isMgInputFile as i, labelHeadings as l, tooltipPositions as t, widths as w };
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { r as registerInstance, h, a as getElement } from './index-
|
|
2
|
-
import { i as initLocales } from './index-
|
|
1
|
+
import { r as registerInstance, h, a as getElement } from './index-DFwaH2hS.js';
|
|
2
|
+
import { i as initLocales } from './index-DSEloqPn.js';
|
|
3
3
|
import { i as isValidString, t as toString } from './index-C7xjtdiw.js';
|
|
4
4
|
|
|
5
|
-
const mgLoaderCss =
|
|
5
|
+
const mgLoaderCss = () => `.mg-u-visually-hidden{position:absolute !important;overflow:hidden !important;width:.1rem !important;height:.1rem !important;padding:0 !important;border:0 !important;margin:-0.1rem !important;clip:rect(0.1rem, 0.1rem, 0.1rem, 0.1rem) !important;clip-path:inset(50%) !important;white-space:nowrap !important}*:focus:not(:focus-visible){outline:none}@media (prefers-reduced-motion){*{animation:none !important;transition:none !important}}:host{display:block}.mg-c-loader{display:flex;flex-wrap:wrap;align-items:center;justify-content:center;gap:var(--mg-b-size-4);text-align:center}`;
|
|
6
6
|
|
|
7
7
|
const MgLoader = class {
|
|
8
8
|
constructor(hostRef) {
|
|
@@ -33,13 +33,15 @@ const MgLoader = class {
|
|
|
33
33
|
* @returns HTML Element
|
|
34
34
|
*/
|
|
35
35
|
render() {
|
|
36
|
-
return (h("div", { key: '
|
|
36
|
+
return (h("div", { key: 'da82988810c1e2916a2464299844cad674cd1f12', class: "mg-c-loader", "aria-live": "polite" }, h("mg-icon", { key: '45588ae8dd55ca582a4872d4c1e731bb00681c28', icon: "loader", spin: true }), h("span", { key: '3bc07f4bbf8995de61c019942c33c8076793096a', class: { 'mg-u-visually-hidden': this.messageHide } }, this.message || this.messages.loader.inProgress)));
|
|
37
37
|
}
|
|
38
38
|
get element() { return getElement(this); }
|
|
39
39
|
static get watchers() { return {
|
|
40
|
-
"message": [
|
|
40
|
+
"message": [{
|
|
41
|
+
"watchMessage": 0
|
|
42
|
+
}]
|
|
41
43
|
}; }
|
|
42
44
|
};
|
|
43
|
-
MgLoader.style = mgLoaderCss;
|
|
45
|
+
MgLoader.style = mgLoaderCss();
|
|
44
46
|
|
|
45
47
|
export { MgLoader as mg_loader };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { r as registerInstance, h, H as Host } from './index-
|
|
1
|
+
import { r as registerInstance, h, H as Host } from './index-DFwaH2hS.js';
|
|
2
2
|
import { i as isValidString, t as toString, e as isValidNumber } from './index-C7xjtdiw.js';
|
|
3
3
|
|
|
4
4
|
/**
|
|
@@ -6,7 +6,7 @@ import { i as isValidString, t as toString, e as isValidNumber } from './index-C
|
|
|
6
6
|
*/
|
|
7
7
|
const roles = ['progressbar', 'meter'];
|
|
8
8
|
|
|
9
|
-
const mgProgressCss =
|
|
9
|
+
const mgProgressCss = () => `.mg-c-progress{min-width:calc(var(--mg-b-size-16)*4)}.mg-c-progress__bar{position:relative;overflow:hidden;height:var(--mg-c-progress-size);border-width:var(--mg-b-size-border);border-style:solid;border-color:var(--mg-c-progress-border-color);border-radius:calc((var(--mg-c-progress-size) + var(--mg-b-size-border)*2)/2);background-color:var(--mg-c-progress-bar-color-background)}.mg-c-progress__fill{height:100%;border-radius:calc((var(--mg-c-progress-size) + var(--mg-b-size-border)*2)/2);transition:width 300ms ease-in-out}.mg-c-progress__bar.mg-c-progress__bar--active .mg-c-progress__fill{background-color:var(--mg-c-progress-fill-color-background)}`;
|
|
10
10
|
|
|
11
11
|
const MgProgress = class {
|
|
12
12
|
constructor(hostRef) {
|
|
@@ -73,18 +73,28 @@ const MgProgress = class {
|
|
|
73
73
|
* @returns HTML Element
|
|
74
74
|
*/
|
|
75
75
|
render() {
|
|
76
|
-
return (h(Host, { key: '
|
|
76
|
+
return (h(Host, { key: '02466f9df3e5204eef158b9f733ba0af811ad9ed', role: this.ariaRole, "aria-label": this.label, "aria-valuenow": this.value, "aria-valuemin": this.min, "aria-valuemax": this.max }, h("div", { key: '88c2eafe55d169502ef5afccfbde3371fee5165f', class: "mg-c-progress" }, h("div", { key: 'b46159dbed388c58b198bdc330096669c454bcd3', class: { 'mg-c-progress__bar': true, 'mg-c-progress__bar--active': this.value > this.min } }, h("div", { key: '0faebcc86cc7a55ccab3d9fb8dce4403bff16ebf', class: "mg-c-progress__fill", style: {
|
|
77
77
|
width: `${Math.round(((this.value - this.min) / (this.max - this.min)) * 100)}%`,
|
|
78
78
|
} })))));
|
|
79
79
|
}
|
|
80
80
|
static get watchers() { return {
|
|
81
|
-
"label": [
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
"
|
|
85
|
-
|
|
81
|
+
"label": [{
|
|
82
|
+
"watchLabel": 0
|
|
83
|
+
}],
|
|
84
|
+
"ariaRole": [{
|
|
85
|
+
"watchAriaRole": 0
|
|
86
|
+
}],
|
|
87
|
+
"value": [{
|
|
88
|
+
"watchValue": 0
|
|
89
|
+
}],
|
|
90
|
+
"min": [{
|
|
91
|
+
"watchMin": 0
|
|
92
|
+
}],
|
|
93
|
+
"max": [{
|
|
94
|
+
"watchMax": 0
|
|
95
|
+
}]
|
|
86
96
|
}; }
|
|
87
97
|
};
|
|
88
|
-
MgProgress.style = mgProgressCss;
|
|
98
|
+
MgProgress.style = mgProgressCss();
|
|
89
99
|
|
|
90
100
|
export { MgProgress as mg_progress };
|
|
@@ -83,6 +83,17 @@
|
|
|
83
83
|
"url": "The value is incorrect, the expected format is https://example.com"
|
|
84
84
|
}
|
|
85
85
|
}
|
|
86
|
+
},
|
|
87
|
+
"file": {
|
|
88
|
+
"helpText": {
|
|
89
|
+
"accept": "Accepted extensions: {{accept}}",
|
|
90
|
+
"maxSize": "Maximum size: {{maxSize}}"
|
|
91
|
+
},
|
|
92
|
+
"errors": {
|
|
93
|
+
"maxSize": "The file size exceeds the maximum allowed size of {{maxSize}}"
|
|
94
|
+
},
|
|
95
|
+
"browse": "Browse…",
|
|
96
|
+
"deleteButton": "Delete file"
|
|
86
97
|
}
|
|
87
98
|
},
|
|
88
99
|
"form": {
|
|
@@ -111,6 +122,9 @@
|
|
|
111
122
|
"skipLinks": {
|
|
112
123
|
"navLabel": "Quick access"
|
|
113
124
|
},
|
|
125
|
+
"breadcrumb": {
|
|
126
|
+
"label": "Breadcrumb"
|
|
127
|
+
},
|
|
114
128
|
"general": {
|
|
115
129
|
"confirm": "Confirm",
|
|
116
130
|
"cancel": "Cancel",
|
|
@@ -83,6 +83,17 @@
|
|
|
83
83
|
"url": "La valeur est incorrecte, le format attendu est https://exemple.fr"
|
|
84
84
|
}
|
|
85
85
|
}
|
|
86
|
+
},
|
|
87
|
+
"file": {
|
|
88
|
+
"helpText": {
|
|
89
|
+
"accept": "Extensions autorisée : {{acceptedFormat}}",
|
|
90
|
+
"maxSize": "Taille maximale : {{maxSize}}"
|
|
91
|
+
},
|
|
92
|
+
"errors": {
|
|
93
|
+
"maxSize": "La taille du fichier dépasse la taille maximale autorisée de {{maxSize}}"
|
|
94
|
+
},
|
|
95
|
+
"browse": "Parcourir…",
|
|
96
|
+
"deleteButton": "Supprimer le fichier"
|
|
86
97
|
}
|
|
87
98
|
},
|
|
88
99
|
"form": {
|
|
@@ -111,6 +122,9 @@
|
|
|
111
122
|
"skipLinks": {
|
|
112
123
|
"navLabel": "Accès rapide"
|
|
113
124
|
},
|
|
125
|
+
"breadcrumb": {
|
|
126
|
+
"label": "Fil d'Ariane"
|
|
127
|
+
},
|
|
114
128
|
"general": {
|
|
115
129
|
"confirm": "Valider",
|
|
116
130
|
"cancel": "Annuler",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{p as e,g as a,b as t}from"./p-BluNKQ3L.js";export{s as setNonce}from"./p-BluNKQ3L.js";(()=>{const a=import.meta.url,t={};return""!==a&&(t.resourcesUrl=new URL(".",a).href),e(t)})().then((async e=>(await a(),t(JSON.parse('[["p-cd061b38",[[257,"mg-input-checkbox",{"value":[1040],"type":[1025],"identifier":[1],"name":[1],"label":[1],"labelOnTop":[4,"label-on-top"],"labelHide":[4,"label-hide"],"inputVerticalList":[4,"input-vertical-list"],"required":[4],"readonly":[4],"displaySelectedValues":[4,"display-selected-values"],"disabled":[4],"tooltip":[1],"tooltipPosition":[1,"tooltip-position"],"helpText":[1,"help-text"],"valid":[1028],"invalid":[1028],"editButtonMessage":[1,"edit-button-message"],"showButtonMessage":[1,"show-button-message"],"selectButtonMessage":[1,"select-button-message"],"classCollection":[32],"errorMessage":[32],"checkboxItems":[32],"displaySearchInput":[32],"searchValue":[32],"searchResults":[32],"selectValuesButtonKey":[32],"activeTab":[32],"setFocus":[64],"displayError":[64],"setError":[64],"reset":[64]},null,{"value":["validateValue"],"type":["validateType"],"inputVerticalList":["watchInputVerticalList"],"readonly":["watchReadonly","handleValidityChange"],"displaySelectedValues":["watchDisplaySelectedValues"],"required":["handleValidityChange"],"disabled":["handleValidityChange","validateDisabled"],"checkboxItems":["validateCheckboxItems"],"displaySearchInput":["watchDisplaySearchInput"],"searchValue":["validateSearchValue"]}],[257,"mg-action-more",{"items":[16],"icon":[1040],"button":[16],"displayChevron":[4,"display-chevron"],"expanded":[32]},null,{"items":["validateItems"],"icon":["validateIcon"],"button":["validateButton"],"displayChevron":["validateDisplayChevron"]}],[257,"mg-panel",{"identifier":[1],"panelTitle":[1025,"panel-title"],"titlePattern":[1,"title-pattern"],"titlePatternErrorMessage":[1,"title-pattern-error-message"],"titleEditable":[1028,"title-editable"],"titlePosition":[1,"title-position"],"expanded":[1028],"expandToggleDisplay":[1,"expand-toggle-display"],"expandToggleDisabled":[4,"expand-toggle-disabled"],"shadow":[4],"classCollection":[32],"isEditing":[32],"updatedPanelTitle":[32]},null,{"identifier":["watchIdentifier"],"panelTitle":["validatePanelTitle"],"titlePattern":["validateTitlePattern"],"titlePatternErrorMessage":["validateTitlePattern"],"titleEditable":["validateTitleEditable"],"titlePosition":["validateTitlePosition"],"expanded":["handleExpanded"],"expandToggleDisplay":["validateExpandToggleDisplay"]}],[257,"mg-pagination",{"identifier":[1],"label":[1025],"hideNavigationLabels":[4,"hide-navigation-labels"],"hidePageCount":[4,"hide-page-count"],"totalPages":[2,"total-pages"],"currentPage":[1538,"current-page"],"messages":[16]},null,{"identifier":["watchIdentifier"],"totalPages":["validateTotalPages"],"currentPage":["validateCurrentPage"],"messages":["watchPaginationMessages"]}],[257,"mg-input-password",{"value":[1537],"identifier":[1],"name":[1],"label":[1],"labelOnTop":[4,"label-on-top"],"labelHide":[4,"label-hide"],"placeholder":[1],"maxlength":[2],"required":[4],"readonly":[4],"disabled":[4],"mgWidth":[8,"mg-width"],"tooltip":[1],"tooltipPosition":[1,"tooltip-position"],"helpText":[1,"help-text"],"valid":[1028],"invalid":[1028],"classCollection":[32],"errorMessage":[32],"displayPassword":[32],"setFocus":[64],"displayError":[64],"setError":[64],"reset":[64]},null,{"value":["handleValue"],"readonly":["watchReadonly","handleValidityChange"],"required":["handleValidityChange"],"disabled":["handleValidityChange","watchDisabled"],"mgWidth":["watchMgWidth"]}],[257,"mg-input-textarea",{"value":[1537],"identifier":[1],"name":[1],"label":[1],"labelOnTop":[4,"label-on-top"],"labelHide":[4,"label-hide"],"placeholder":[1],"maxlength":[2],"required":[4],"readonly":[4],"disabled":[4],"mgWidth":[8,"mg-width"],"pattern":[1],"patternErrorMessage":[1,"pattern-error-message"],"rows":[2],"tooltip":[1],"tooltipPosition":[1,"tooltip-position"],"characterLeftHide":[4,"character-left-hide"],"helpText":[1,"help-text"],"resizable":[1],"valid":[1028],"invalid":[1028],"classCollection":[32],"errorMessage":[32],"setFocus":[64],"displayError":[64],"setError":[64],"reset":[64]},null,{"value":["handleValue"],"readonly":["watchReadonly","handleValidityChange"],"required":["handleValidityChange"],"disabled":["handleValidityChange","validateDisabled"],"mgWidth":["watchMgWidth"],"pattern":["validatePattern"],"patternErrorMessage":["validatePattern"],"characterLeftHide":["validatecharacterLeftHide"]}],[257,"mg-input-date",{"value":[1537],"identifier":[1],"name":[1],"label":[1],"labelOnTop":[4,"label-on-top"],"labelHide":[4,"label-hide"],"required":[4],"readonly":[4],"min":[1],"max":[1],"disabled":[4],"tooltip":[1],"tooltipPosition":[1,"tooltip-position"],"helpText":[1,"help-text"],"valid":[1028],"invalid":[1028],"classCollection":[32],"errorMessage":[32],"setFocus":[64],"displayError":[64],"setError":[64],"reset":[64]},null,{"value":["validateValue"],"readonly":["watchReadonly","handleValidityChange"],"min":["validateMinMax","handleValidityChange"],"max":["validateMinMax","handleValidityChange"],"required":["handleValidityChange"],"disabled":["handleValidityChange","watchDisabled"]}],[257,"mg-input-numeric",{"value":[1537],"identifier":[1],"name":[1],"label":[1],"labelOnTop":[4,"label-on-top"],"labelHide":[4,"label-hide"],"placeholder":[1],"required":[4],"readonly":[4],"max":[2],"min":[2],"disabled":[4],"mgWidth":[8,"mg-width"],"tooltip":[1],"tooltipPosition":[1,"tooltip-position"],"helpText":[1,"help-text"],"type":[1],"format":[1],"currency":[1],"unit":[1],"unitDisplay":[1,"unit-display"],"integerLength":[2,"integer-length"],"decimalLength":[2,"decimal-length"],"valid":[1028],"invalid":[1028],"classCollection":[32],"errorMessage":[32],"hasFocus":[32],"setFocus":[64],"displayError":[64],"setError":[64],"reset":[64]},null,{"value":["validateValue"],"readonly":["watchReadonly","handleValidityChange"],"required":["handleValidityChange"],"disabled":["handleValidityChange","watchDisabled"],"min":["handleValidityChange"],"max":["handleValidityChange"],"mgWidth":["watchMgWidth"],"type":["validateType"],"format":["watchFormat"],"integerLength":["validateIntegerLength"],"decimalLength":["validateDecimalLength"]}],[257,"mg-input-radio",{"value":[1032],"items":[16],"identifier":[1],"name":[1],"label":[1],"labelOnTop":[4,"label-on-top"],"labelHide":[4,"label-hide"],"inputVerticalList":[4,"input-vertical-list"],"required":[4],"readonly":[4],"disabled":[4],"tooltip":[1],"tooltipPosition":[1,"tooltip-position"],"helpText":[1,"help-text"],"valid":[1028],"invalid":[1028],"classCollection":[32],"errorMessage":[32],"options":[32],"readonlyValue":[32],"setFocus":[64],"displayError":[64],"setError":[64],"reset":[64]},null,{"value":["watchValue"],"items":["validateItems"],"inputVerticalList":["watchInputVerticalList"],"readonly":["watchReadonly","handleValidityChange"],"required":["handleValidityChange"],"disabled":["handleValidityChange","watchDisabled"]}],[257,"mg-input-toggle",{"value":[1040],"items":[16],"identifier":[1],"name":[1],"label":[1],"labelOnTop":[4,"label-on-top"],"labelHide":[4,"label-hide"],"isOnOff":[1028,"is-on-off"],"isIcon":[4,"is-icon"],"readonly":[4],"disabled":[4],"tooltip":[1],"tooltipPosition":[1,"tooltip-position"],"helpText":[1,"help-text"],"classCollection":[32],"options":[32],"errorMessage":[32],"valid":[32],"setFocus":[64],"setError":[64],"reset":[64]},null,{"value":["watchValue"],"items":["watchItems"],"isOnOff":["watchIsOnOff"],"isIcon":["watchIsIcon"],"readonly":["watchReadonly"],"disabled":["watchDisabled"]}],[257,"mg-modal",{"identifier":[1],"dialogRole":[1,"dialog-role"],"modalTitle":[1,"modal-title"],"closeButton":[4,"close-button"],"open":[1028],"hasActions":[32],"classCollection":[32]},null,{"identifier":["watchIdentifier"],"dialogRole":["validateDialogRole"],"modalTitle":["validateModalTitle"],"open":["watchOpen"]}],[257,"mg-details",{"toggleClosed":[1,"toggle-closed"],"toggleOpened":[1,"toggle-opened"],"hideSummary":[4,"hide-summary"],"expanded":[1028]},null,{"toggleClosed":["validateTitles"],"toggleOpened":["validateTitles"],"expanded":["handleExpanded"]}],[1,"mg-table",{"size":[1],"fullWidth":[4,"full-width"],"columns":[16],"classCollection":[32]},null,{"size":["watchSize"],"fullWidth":["watchFullWidth"],"columns":["watchColumns"]}],[257,"mg-form",{"identifier":[1],"name":[1],"readonly":[4],"requiredMessage":[1,"required-message"],"ariaRole":[1,"aria-role"],"labelOnTop":[4,"label-on-top"],"disabled":[4],"valid":[1028],"invalid":[1028],"classCollection":[32],"requiredMessageText":[32],"displayError":[64],"reset":[64]},null,{"identifier":["watchIdentifier"],"requiredMessage":["validateRequiredMessage","handleAttributeChange"],"ariaRole":["validateAriaRole"],"labelOnTop":["handlelabelOnTop"],"readonly":["handleAttributeChange"],"disabled":["handleAttributeChange"]}],[257,"mg-illustrated-message",{"size":[1],"direction":[1],"classCollection":[32]},null,{"size":["watchSize"],"direction":["watchDirection"]}],[257,"mg-skip-links",{"links":[16]},null,{"links":["validateLinks"]}],[257,"mg-tag",{"variant":[1],"outline":[4],"soft":[4],"classCollection":[32]},null,{"variant":["validateVariant"],"outline":["validateOutline"],"soft":["validateSoft"]}],[257,"mg-input-select",{"value":[1032],"items":[16],"identifier":[1],"name":[1],"label":[1],"labelOnTop":[4,"label-on-top"],"labelHide":[4,"label-hide"],"placeholder":[1025],"placeholderHide":[4,"placeholder-hide"],"placeholderDisabled":[4,"placeholder-disabled"],"required":[4],"readonly":[4],"disabled":[4],"mgWidth":[520,"mg-width"],"tooltip":[1],"tooltipPosition":[1,"tooltip-position"],"helpText":[1,"help-text"],"valid":[1028],"invalid":[1028],"classCollection":[32],"errorMessage":[32],"options":[32],"valueExist":[32],"setFocus":[64],"displayError":[64],"setError":[64],"reset":[64]},null,{"value":["validateValue"],"items":["validateItems"],"readonly":["watchReadonly","handleValidityChange"],"required":["handleValidityChange"],"disabled":["handleValidityChange","watchDisabled"],"mgWidth":["watchMgWidth"]}],[262,"mg-input-checkbox-paginated",{"readonly":[4],"disabled":[4],"name":[1],"invalid":[4],"checkboxes":[16],"messages":[16],"limit":[32],"resetLimit":[64]},null,{"checkboxes":["watchCheckboxes"],"limit":["watchLimit"]}],[257,"mg-message",{"variant":[1],"variantStyle":[1,"variant-style"],"classCollection":[32],"hasActions":[32]},null,{"variant":["watchVariant"],"variantStyle":["watchVariantStyle"]}],[257,"mg-tabs",{"identifier":[1],"label":[1],"size":[1],"items":[16],"activeTab":[1538,"active-tab"],"tabs":[32],"classCollection":[32]},null,{"identifier":["watchIdentifier"],"label":["validateLabel"],"size":["validateSize"],"items":["validateItems"],"activeTab":["validateActiveTab"]}],[257,"mg-divider",{"fullWidth":[4,"full-width"]}],[257,"mg-input-text",{"value":[1544],"identifier":[1],"name":[1],"label":[1],"labelOnTop":[4,"label-on-top"],"labelHide":[4,"label-hide"],"type":[1],"icon":[1],"placeholder":[1],"datalistoptions":[16],"maxlength":[2],"required":[4],"readonly":[4],"disabled":[4],"mgWidth":[8,"mg-width"],"pattern":[1],"patternErrorMessage":[1,"pattern-error-message"],"tooltip":[1],"tooltipPosition":[1,"tooltip-position"],"characterLeftHide":[4,"character-left-hide"],"helpText":[1025,"help-text"],"valid":[1028],"invalid":[1028],"classCollection":[32],"errorMessage":[32],"setFocus":[64],"displayError":[64],"setError":[64],"reset":[64]},null,{"value":["handleValue"],"type":["validateType"],"icon":["validateIcon"],"datalistoptions":["validateDatalistoptions"],"readonly":["watchReadonly","handleValidityChange"],"required":["handleValidityChange"],"disabled":["handleValidityChange","watchDisabled"],"mgWidth":["watchMgWidth"],"pattern":["watchPattern"],"patternErrorMessage":["watchPattern"],"characterLeftHide":["validateCharacterLeftHide"],"helpText":["watchHelpText"]}],[257,"mg-item-more",{"icon":[16],"slotlabel":[16],"size":[1],"parentMenu":[32]},null,{"icon":["validateIcon"],"slotlabel":["validateSlotLabel"],"size":["validateSize"]}],[257,"mg-menu",{"label":[1],"direction":[513],"itemmore":[16],"size":[1]},[[0,"item-loaded","updateItemListener"]],{"label":["validateLabel"],"direction":["validateDirection"],"itemmore":["validateItemMore"],"size":["validateSize"]}],[257,"mg-menu-item",{"identifier":[513],"href":[1],"target":[1],"status":[1537],"expanded":[1028],"size":[32],"navigationButtonClassList":[32],"direction":[32],"isItemMore":[32],"hasChildren":[32],"displayNotificationBadge":[32]},null,{"identifier":["watchIdentifier"],"target":["watchTarget"],"status":["watchStatus"],"expanded":["watchExpanded"],"size":["watchSize"],"direction":["validateDirection"],"hasChildren":["validateHasChildren"],"data-style-direction":["watchDataStyleDirection"],"data-has-focus":["watchDataHasFocus"]}],[258,"mg-character-left",{"identifier":[1],"characters":[1],"maxlength":[2]},null,{"identifier":["watchIdentifier"],"maxlength":["validateMaxlength"]}],[257,"mg-popover",{"identifier":[1],"placement":[1],"arrowHide":[4,"arrow-hide"],"closeButton":[4,"close-button"],"display":[1028],"disabled":[4]},null,{"identifier":["validateIdentifier"],"arrowHide":["validateArrowHide"],"closeButton":["validateCloseButton"],"display":["handleDisplay"]}],[257,"mg-badge",{"value":[8],"label":[1],"variant":[1],"outline":[4],"classCollection":[32]},null,{"value":["validateValue"],"label":["validateLabel"],"variant":["validateVariant"],"outline":["validateOutline"]}],[257,"mg-popover-content",{"closeButton":[4,"close-button"],"classCollection":[32]}],[257,"mg-card",{"shadow":[4],"radiusSize":[1,"radius-size"],"classCollection":[32]},null,{"shadow":["watchShadow"],"radiusSize":["watchRadiusSize"]}],[257,"mg-input",{"identifier":[1],"label":[1],"labelOnTop":[4,"label-on-top"],"labelHide":[4,"label-hide"],"labelHeading":[1025,"label-heading"],"labelBorderDisplay":[4,"label-border-display"],"tooltip":[1],"tooltipPosition":[1,"tooltip-position"],"required":[4],"errorMessage":[1,"error-message"],"helpText":[1,"help-text"],"inputsOnBottom":[4,"inputs-on-bottom"],"ariaDescribedbyIDs":[1025,"aria-describedby-i-ds"],"isFieldset":[32],"isReadonly":[32],"isDisabled":[32],"isVerticalList":[32]},null,{"identifier":["watchIdentifier","watchAriaDescribedbyIDs"],"labelOnTop":["watchLabelOnTop","watchLabelConfig"],"labelHide":["watchLabelConfig"],"labelHeading":["watchlabelHeading"],"labelBorderDisplay":["watchLabelBorderDisplay"],"tooltipPosition":["watchTooltipPosition"],"errorMessage":["watchErrorMessage","watchAriaDescribedbyIDs"],"helpText":["watchHelpText","watchAriaDescribedbyIDs"],"inputsOnBottom":["watchInputsOnBottom"],"ariaDescribedbyIDs":["watchAriaDescribedbyIDs"],"class":["watchClass","watchLabel"],"label":["watchLabel"],"required":["watchLabel"],"isReadonly":["watchLabel"],"isFieldset":["watchLabel"]}],[257,"mg-button",{"variant":[1025],"label":[1],"type":[1],"size":[1],"fullWidth":[4,"full-width"],"form":[1],"disabled":[1028],"isIcon":[4,"is-icon"],"disableOnClick":[4,"disable-on-click"],"loading":[32],"classCollection":[32]},null,{"variant":["validateVariant"],"size":["validateSize"],"fullWidth":["validateFullWidth"],"disabled":["disabledHandler"],"isIcon":["watchIsIcon"],"loading":["loadingHandler"]}],[257,"mg-tooltip",{"identifier":[1],"message":[1],"placement":[1],"display":[1028],"disabled":[4]},null,{"identifier":["watchIdentifier"],"message":["watchMessage"],"display":["watchDisplay"],"disabled":["watchDisabled"]}],[262,"mg-input-title",{"identifier":[1],"required":[4],"readonly":[4],"isLegend":[4,"is-legend"],"tagName":[32]},null,{"identifier":["validateIdentifier"],"isLegend":["validateIsLegend"]}],[257,"mg-tooltip-content",{"message":[1]}],[1,"mg-icon",{"icon":[1],"size":[1],"variant":[1],"variantStyle":[1025,"variant-style"],"spin":[4],"classCollection":[32]},null,{"icon":["validateIcon"],"size":["validateSize"],"variant":["validateVariant"],"variantStyle":["validateVariantStyle"],"spin":["handleSpin"]}]]],["p-916dfb6d",[[257,"mg-alert",{"delay":[2],"variant":[1],"variantStyle":[1,"variant-style"],"classCollection":[32],"hasActions":[32]},null,{"delay":["watchDelay"],"variant":["watchVariant"],"variantStyle":["watchVariantStyle"],"hidden":["watchHidden"]}]]],["p-186a6139",[[257,"mg-loader",{"message":[1],"messageHide":[4,"message-hide"]},null,{"message":["watchMessage"]}]]],["p-7132bca1",[[257,"mg-input-combobox",{"value":[1537],"items":[16],"itemsLabel":[1,"items-label"],"identifier":[1],"name":[1],"label":[1],"labelOnTop":[4,"label-on-top"],"labelHide":[4,"label-hide"],"placeholder":[1],"required":[4],"readonly":[4],"disabled":[4],"mgWidth":[8,"mg-width"],"tooltip":[1],"tooltipPosition":[1,"tooltip-position"],"helpText":[1,"help-text"],"fetchurl":[1],"fetchoptions":[16],"fetchmappings":[16],"valid":[1028],"invalid":[1028],"isLoading":[32],"options":[32],"option":[32],"filter":[32],"classCollection":[32],"errorMessage":[32],"popoverDisplay":[32],"setFocus":[64],"displayError":[64],"setError":[64],"reset":[64]},null,{"value":["watchValue"],"items":["watchItems"],"identifier":["watchIdentifier"],"readonly":["watchReadonly","watchValidityChange"],"required":["watchValidityChange"],"disabled":["watchValidityChange","watchDisabled"],"mgWidth":["watchMgWidth"],"fetchurl":["watchFetchUrl"],"fetchoptions":["watchFetchOptions"],"fetchmappings":["watchFetchMappings"],"options":["watchOptions"],"filter":["watchFilter"],"popoverDisplay":["watchPopoverDisplay"]}]]],["p-016bd291",[[257,"mg-fieldset",{"identifier":[1],"name":[1],"legend":[1],"legendHide":[4,"legend-hide"],"legendHeading":[1,"legend-heading"],"legendBorderDisplay":[4,"legend-border-display"],"readonly":[4],"disabled":[4],"tooltip":[1],"helpText":[1,"help-text"],"errorMessage":[32],"valid":[32],"classCollection":[32],"setCustomValidity":[64],"displayError":[64]},null,{"legendBorderDisplay":["watchLegendBorderDisplay"],"readonly":["watchReadonly","handleAttributeChange"],"disabled":["handleAttributeChange"]}]]],["p-d5a276eb",[[257,"mg-input-rich-text-editor",{"value":[1025],"identifier":[1],"label":[1],"labelOnTop":[4,"label-on-top"],"labelHide":[4,"label-hide"],"placeholder":[1],"rows":[2],"required":[4],"readonly":[4],"disabled":[4],"pattern":[1],"patternErrorMessage":[1,"pattern-error-message"],"tooltip":[1],"tooltipPosition":[1,"tooltip-position"],"helpText":[1,"help-text"],"modules":[16],"valid":[1028],"invalid":[1028],"classCollection":[32],"errorMessage":[32],"setFocus":[64],"getHTML":[64],"getText":[64],"displayError":[64],"setError":[64],"reset":[64]},null,{"readonly":["watchReadonly","handleValidityChange"],"disabled":["watchDisabled","handleValidityChange"],"required":["handleValidityChange"],"pattern":["validatePattern"],"patternErrorMessage":["validatePattern"]}]]],["p-d2c72f09",[[257,"mg-progress",{"label":[1],"ariaRole":[1,"aria-role"],"value":[2],"min":[2],"max":[2]},null,{"label":["watchLabel"],"ariaRole":["watchAriaRole"],"value":["watchValue"],"min":["watchMin"],"max":["watchMax"]}]]]]'),e))));
|
|
1
|
+
import{p as e,g as a,b as t}from"./p-DFwaH2hS.js";export{s as setNonce}from"./p-DFwaH2hS.js";(()=>{const a=import.meta.url,t={};return""!==a&&(t.resourcesUrl=new URL(".",a).href),e(t)})().then((async e=>(await a(),t(JSON.parse('[["p-0482eb9f",[[1,"mg-input-checkbox",{"value":[1040],"type":[1025],"identifier":[1],"name":[1],"label":[1],"labelOnTop":[4,"label-on-top"],"labelHide":[4,"label-hide"],"inputVerticalList":[4,"input-vertical-list"],"required":[4],"readonly":[4],"displaySelectedValues":[4,"display-selected-values"],"disabled":[4],"tooltip":[1],"tooltipPosition":[1,"tooltip-position"],"helpText":[1,"help-text"],"valid":[1028],"invalid":[1028],"editButtonMessage":[1,"edit-button-message"],"showButtonMessage":[1,"show-button-message"],"selectButtonMessage":[1,"select-button-message"],"classCollection":[32],"errorMessage":[32],"checkboxItems":[32],"displaySearchInput":[32],"searchValue":[32],"searchResults":[32],"selectValuesButtonKey":[32],"activeTab":[32],"setFocus":[64],"displayError":[64],"setError":[64],"reset":[64]},null,{"value":[{"validateValue":0}],"type":[{"validateType":0}],"inputVerticalList":[{"watchInputVerticalList":0}],"readonly":[{"watchReadonly":0},{"handleValidityChange":0}],"displaySelectedValues":[{"watchDisplaySelectedValues":0}],"required":[{"handleValidityChange":0}],"disabled":[{"handleValidityChange":0},{"validateDisabled":0}],"checkboxItems":[{"validateCheckboxItems":0}],"displaySearchInput":[{"watchDisplaySearchInput":0}],"searchValue":[{"validateSearchValue":0}]}],[1,"mg-action-more",{"items":[16],"icon":[1040],"button":[16],"displayChevron":[4,"display-chevron"],"expanded":[32]},null,{"items":[{"validateItems":0}],"icon":[{"validateIcon":0}],"button":[{"validateButton":0}],"displayChevron":[{"validateDisplayChevron":0}]}],[257,"mg-panel",{"identifier":[1],"panelTitle":[1025,"panel-title"],"titlePattern":[1,"title-pattern"],"titlePatternErrorMessage":[1,"title-pattern-error-message"],"titleEditable":[1028,"title-editable"],"titlePosition":[1,"title-position"],"expanded":[1028],"expandToggleDisplay":[1,"expand-toggle-display"],"expandToggleDisabled":[4,"expand-toggle-disabled"],"shadow":[4],"classCollection":[32],"isEditing":[32],"updatedPanelTitle":[32]},null,{"identifier":[{"watchIdentifier":0}],"panelTitle":[{"validatePanelTitle":0}],"titlePattern":[{"validateTitlePattern":0}],"titlePatternErrorMessage":[{"validateTitlePattern":0}],"titleEditable":[{"validateTitleEditable":0}],"titlePosition":[{"validateTitlePosition":0}],"expanded":[{"handleExpanded":0}],"expandToggleDisplay":[{"validateExpandToggleDisplay":0}]}],[1,"mg-pagination",{"identifier":[1],"label":[1025],"hideNavigationLabels":[4,"hide-navigation-labels"],"hidePageCount":[4,"hide-page-count"],"totalPages":[2,"total-pages"],"currentPage":[1538,"current-page"],"messages":[16]},null,{"identifier":[{"watchIdentifier":0}],"totalPages":[{"validateTotalPages":0}],"currentPage":[{"validateCurrentPage":0}],"messages":[{"watchPaginationMessages":0}]}],[1,"mg-input-password",{"value":[1537],"identifier":[1],"name":[1],"label":[1],"labelOnTop":[4,"label-on-top"],"labelHide":[4,"label-hide"],"placeholder":[1],"maxlength":[2],"required":[4],"readonly":[4],"disabled":[4],"mgWidth":[8,"mg-width"],"tooltip":[1],"tooltipPosition":[1,"tooltip-position"],"helpText":[1,"help-text"],"valid":[1028],"invalid":[1028],"classCollection":[32],"errorMessage":[32],"displayPassword":[32],"setFocus":[64],"displayError":[64],"setError":[64],"reset":[64]},null,{"value":[{"handleValue":0}],"readonly":[{"watchReadonly":0},{"handleValidityChange":0}],"required":[{"handleValidityChange":0}],"disabled":[{"handleValidityChange":0},{"watchDisabled":0}],"mgWidth":[{"watchMgWidth":0}]}],[1,"mg-input-textarea",{"value":[1537],"identifier":[1],"name":[1],"label":[1],"labelOnTop":[4,"label-on-top"],"labelHide":[4,"label-hide"],"placeholder":[1],"maxlength":[2],"required":[4],"readonly":[4],"disabled":[4],"mgWidth":[8,"mg-width"],"pattern":[1],"patternErrorMessage":[1,"pattern-error-message"],"rows":[2],"tooltip":[1],"tooltipPosition":[1,"tooltip-position"],"characterLeftHide":[4,"character-left-hide"],"helpText":[1,"help-text"],"resizable":[1],"valid":[1028],"invalid":[1028],"classCollection":[32],"errorMessage":[32],"setFocus":[64],"displayError":[64],"setError":[64],"reset":[64]},null,{"value":[{"handleValue":0}],"readonly":[{"watchReadonly":0},{"handleValidityChange":0}],"required":[{"handleValidityChange":0}],"disabled":[{"handleValidityChange":0},{"validateDisabled":0}],"mgWidth":[{"watchMgWidth":0}],"pattern":[{"validatePattern":0}],"patternErrorMessage":[{"validatePattern":0}],"characterLeftHide":[{"validatecharacterLeftHide":0}]}],[1,"mg-input-date",{"value":[1537],"identifier":[1],"name":[1],"label":[1],"labelOnTop":[4,"label-on-top"],"labelHide":[4,"label-hide"],"required":[4],"readonly":[4],"min":[1],"max":[1],"disabled":[4],"tooltip":[1],"tooltipPosition":[1,"tooltip-position"],"helpText":[1,"help-text"],"valid":[1028],"invalid":[1028],"classCollection":[32],"errorMessage":[32],"setFocus":[64],"displayError":[64],"setError":[64],"reset":[64]},null,{"value":[{"validateValue":0}],"readonly":[{"watchReadonly":0},{"handleValidityChange":0}],"min":[{"validateMinMax":0},{"handleValidityChange":0}],"max":[{"validateMinMax":0},{"handleValidityChange":0}],"required":[{"handleValidityChange":0}],"disabled":[{"handleValidityChange":0},{"watchDisabled":0}]}],[257,"mg-input-numeric",{"value":[1537],"identifier":[1],"name":[1],"label":[1],"labelOnTop":[4,"label-on-top"],"labelHide":[4,"label-hide"],"placeholder":[1],"required":[4],"readonly":[4],"max":[2],"min":[2],"disabled":[4],"mgWidth":[8,"mg-width"],"tooltip":[1],"tooltipPosition":[1,"tooltip-position"],"helpText":[1,"help-text"],"type":[1],"format":[1],"currency":[1],"unit":[1],"unitDisplay":[1,"unit-display"],"integerLength":[2,"integer-length"],"decimalLength":[2,"decimal-length"],"valid":[1028],"invalid":[1028],"classCollection":[32],"errorMessage":[32],"hasFocus":[32],"setFocus":[64],"displayError":[64],"setError":[64],"reset":[64]},null,{"value":[{"validateValue":0}],"readonly":[{"watchReadonly":0},{"handleValidityChange":0}],"required":[{"handleValidityChange":0}],"disabled":[{"handleValidityChange":0},{"watchDisabled":0}],"min":[{"handleValidityChange":0}],"max":[{"handleValidityChange":0}],"mgWidth":[{"watchMgWidth":0}],"type":[{"validateType":0}],"format":[{"watchFormat":0}],"integerLength":[{"validateIntegerLength":0}],"decimalLength":[{"validateDecimalLength":0}]}],[1,"mg-input-radio",{"value":[1032],"items":[16],"identifier":[1],"name":[1],"label":[1],"labelOnTop":[4,"label-on-top"],"labelHide":[4,"label-hide"],"inputVerticalList":[4,"input-vertical-list"],"required":[4],"readonly":[4],"disabled":[4],"tooltip":[1],"tooltipPosition":[1,"tooltip-position"],"helpText":[1,"help-text"],"valid":[1028],"invalid":[1028],"classCollection":[32],"errorMessage":[32],"options":[32],"readonlyValue":[32],"setFocus":[64],"displayError":[64],"setError":[64],"reset":[64]},null,{"value":[{"watchValue":0}],"items":[{"validateItems":0}],"inputVerticalList":[{"watchInputVerticalList":0}],"readonly":[{"watchReadonly":0},{"handleValidityChange":0}],"required":[{"handleValidityChange":0}],"disabled":[{"handleValidityChange":0},{"watchDisabled":0}]}],[257,"mg-input-toggle",{"value":[1040],"items":[16],"identifier":[1],"name":[1],"label":[1],"labelOnTop":[4,"label-on-top"],"labelHide":[4,"label-hide"],"isOnOff":[1028,"is-on-off"],"isIcon":[4,"is-icon"],"readonly":[4],"disabled":[4],"tooltip":[1],"tooltipPosition":[1,"tooltip-position"],"helpText":[1,"help-text"],"classCollection":[32],"options":[32],"errorMessage":[32],"valid":[32],"setFocus":[64],"setError":[64],"reset":[64]},null,{"value":[{"watchValue":0}],"items":[{"watchItems":0}],"isOnOff":[{"watchIsOnOff":0}],"isIcon":[{"watchIsIcon":0}],"readonly":[{"watchReadonly":0}],"disabled":[{"watchDisabled":0}]}],[257,"mg-modal",{"identifier":[1],"dialogRole":[1,"dialog-role"],"modalTitle":[1,"modal-title"],"closeButton":[4,"close-button"],"open":[1028],"hasActions":[32],"classCollection":[32]},null,{"identifier":[{"watchIdentifier":0}],"dialogRole":[{"validateDialogRole":0}],"modalTitle":[{"validateModalTitle":0}],"open":[{"watchOpen":0}]}],[257,"mg-details",{"toggleClosed":[1,"toggle-closed"],"toggleOpened":[1,"toggle-opened"],"hideSummary":[4,"hide-summary"],"expanded":[1028]},null,{"toggleClosed":[{"validateTitles":0}],"toggleOpened":[{"validateTitles":0}],"expanded":[{"handleExpanded":0}]}],[1,"mg-table",{"size":[1],"fullWidth":[4,"full-width"],"borderHide":[4,"border-hide"],"columns":[16],"classCollection":[32]},null,{"size":[{"watchSize":0}],"fullWidth":[{"watchFullWidth":0}],"borderHide":[{"watchBorderHide":0}],"columns":[{"watchColumns":0}]}],[257,"mg-form",{"identifier":[1],"name":[1],"readonly":[4],"requiredMessage":[1,"required-message"],"ariaRole":[1,"aria-role"],"labelOnTop":[4,"label-on-top"],"disabled":[4],"valid":[1028],"invalid":[1028],"classCollection":[32],"requiredMessageText":[32],"displayError":[64],"reset":[64]},null,{"identifier":[{"watchIdentifier":0}],"requiredMessage":[{"validateRequiredMessage":0},{"handleAttributeChange":0}],"ariaRole":[{"validateAriaRole":0}],"labelOnTop":[{"handlelabelOnTop":0}],"readonly":[{"handleAttributeChange":0}],"disabled":[{"handleAttributeChange":0}]}],[257,"mg-illustrated-message",{"size":[1],"direction":[1],"classCollection":[32]},null,{"size":[{"watchSize":0}],"direction":[{"watchDirection":0}]}],[1,"mg-skip-links",{"links":[16]},null,{"links":[{"validateLinks":0}]}],[257,"mg-tag",{"variant":[1],"outline":[4],"soft":[4],"classCollection":[32]},null,{"variant":[{"validateVariant":0}],"outline":[{"validateOutline":0}],"soft":[{"validateSoft":0}]}],[1,"mg-input-select",{"value":[1032],"items":[16],"identifier":[1],"name":[1],"label":[1],"labelOnTop":[4,"label-on-top"],"labelHide":[4,"label-hide"],"placeholder":[1025],"placeholderHide":[4,"placeholder-hide"],"placeholderDisabled":[4,"placeholder-disabled"],"required":[4],"readonly":[4],"disabled":[4],"mgWidth":[520,"mg-width"],"tooltip":[1],"tooltipPosition":[1,"tooltip-position"],"helpText":[1,"help-text"],"valid":[1028],"invalid":[1028],"classCollection":[32],"errorMessage":[32],"options":[32],"valueExist":[32],"setFocus":[64],"displayError":[64],"setError":[64],"reset":[64]},null,{"value":[{"validateValue":0}],"items":[{"validateItems":0}],"readonly":[{"watchReadonly":0},{"handleValidityChange":0}],"required":[{"handleValidityChange":0}],"disabled":[{"handleValidityChange":0},{"watchDisabled":0}],"mgWidth":[{"watchMgWidth":0}]}],[262,"mg-input-checkbox-paginated",{"readonly":[4],"disabled":[4],"name":[1],"invalid":[4],"checkboxes":[16],"messages":[16],"limit":[32],"resetLimit":[64]},null,{"checkboxes":[{"watchCheckboxes":0}],"limit":[{"watchLimit":0}]}],[257,"mg-message",{"variant":[1],"variantStyle":[1,"variant-style"],"classCollection":[32],"hasActions":[32]},null,{"variant":[{"watchVariant":0}],"variantStyle":[{"watchVariantStyle":0}]}],[257,"mg-tabs",{"identifier":[1],"label":[1],"size":[16],"items":[16],"activeTab":[1538,"active-tab"],"tabs":[32],"classCollection":[32]},null,{"identifier":[{"watchIdentifier":0}],"label":[{"validateLabel":0}],"items":[{"validateItems":0}],"activeTab":[{"validateActiveTab":0}]}],[1,"mg-divider",{"fullWidth":[4,"full-width"]}],[257,"mg-input-text",{"value":[1544],"identifier":[1],"name":[1],"label":[1],"labelOnTop":[4,"label-on-top"],"labelHide":[4,"label-hide"],"type":[1],"icon":[1],"placeholder":[1],"datalistoptions":[16],"maxlength":[2],"required":[4],"readonly":[4],"disabled":[4],"mgWidth":[8,"mg-width"],"pattern":[1],"patternErrorMessage":[1,"pattern-error-message"],"tooltip":[1],"tooltipPosition":[1,"tooltip-position"],"characterLeftHide":[4,"character-left-hide"],"helpText":[1025,"help-text"],"valid":[1028],"invalid":[1028],"classCollection":[32],"errorMessage":[32],"setFocus":[64],"displayError":[64],"setError":[64],"reset":[64]},null,{"value":[{"handleValue":0}],"type":[{"validateType":0}],"icon":[{"validateIcon":0}],"datalistoptions":[{"validateDatalistoptions":0}],"readonly":[{"watchReadonly":0},{"handleValidityChange":0}],"required":[{"handleValidityChange":0}],"disabled":[{"handleValidityChange":0},{"watchDisabled":0}],"mgWidth":[{"watchMgWidth":0}],"pattern":[{"watchPattern":0}],"patternErrorMessage":[{"watchPattern":0}],"characterLeftHide":[{"validateCharacterLeftHide":0}],"helpText":[{"watchHelpText":0}]}],[1,"mg-item-more",{"icon":[16],"slotlabel":[16],"parentMenu":[32]},null,{"icon":[{"validateIcon":0}],"slotlabel":[{"validateSlotLabel":0}]}],[257,"mg-menu",{"label":[1],"direction":[513],"size":[16],"itemmore":[16]},[[0,"item-loaded","updateItemListener"]],{"label":[{"validateLabel":0}],"direction":[{"validateDirection":0}],"itemmore":[{"validateItemMore":0}]}],[257,"mg-menu-item",{"identifier":[513],"href":[1],"target":[1],"status":[1537],"isIcon":[1028,"is-icon"],"expanded":[1028],"classNavigationButtonClassList":[32],"direction":[32],"isItemMore":[32],"hasChildren":[32],"displayNotificationBadge":[32]},null,{"identifier":[{"watchIdentifier":0}],"target":[{"watchTarget":0}],"status":[{"watchStatus":0}],"isIcon":[{"watchIsIcon":0}],"expanded":[{"watchExpanded":0}],"direction":[{"validateDirection":0}],"hasChildren":[{"validateHasChildren":0}],"data-style-direction":[{"watchDataStyleDirection":0}],"data-has-focus":[{"watchDataHasFocus":0}]}],[2,"mg-character-left",{"identifier":[1],"characters":[1],"maxlength":[2]},null,{"identifier":[{"watchIdentifier":0}],"maxlength":[{"validateMaxlength":0}]}],[257,"mg-popover",{"identifier":[1],"placement":[1],"arrowHide":[4,"arrow-hide"],"closeButton":[4,"close-button"],"display":[1028],"disabled":[4]},null,{"identifier":[{"validateIdentifier":0}],"arrowHide":[{"validateArrowHide":0}],"closeButton":[{"validateCloseButton":0}],"display":[{"handleDisplay":0}]}],[1,"mg-badge",{"value":[8],"label":[1],"variant":[1],"outline":[4],"classCollection":[32]},null,{"value":[{"validateValue":0}],"label":[{"validateLabel":0}],"variant":[{"validateVariant":0}],"outline":[{"validateOutline":0}]}],[257,"mg-popover-content",{"closeButton":[4,"close-button"],"classCollection":[32]}],[257,"mg-card",{"shadow":[4],"radiusSize":[1,"radius-size"],"classCollection":[32]},null,{"shadow":[{"watchShadow":0}],"radiusSize":[{"watchRadiusSize":0}]}],[257,"mg-input",{"identifier":[1],"label":[1],"labelOnTop":[4,"label-on-top"],"labelHide":[4,"label-hide"],"labelHeading":[1025,"label-heading"],"labelBorderDisplay":[4,"label-border-display"],"tooltip":[1],"tooltipPosition":[1,"tooltip-position"],"required":[4],"errorMessage":[1,"error-message"],"helpText":[1,"help-text"],"inputsOnBottom":[4,"inputs-on-bottom"],"ariaDescribedbyIDs":[1025,"aria-describedby-i-ds"],"isFieldset":[32],"isReadonly":[32],"isDisabled":[32],"isVerticalList":[32]},null,{"identifier":[{"watchIdentifier":0},{"watchAriaDescribedbyIDs":0}],"labelOnTop":[{"watchLabelOnTop":0},{"watchLabelConfig":0}],"labelHide":[{"watchLabelConfig":0}],"labelHeading":[{"watchlabelHeading":0}],"labelBorderDisplay":[{"watchLabelBorderDisplay":0}],"tooltipPosition":[{"watchTooltipPosition":0}],"errorMessage":[{"watchErrorMessage":0},{"watchAriaDescribedbyIDs":0}],"helpText":[{"watchHelpText":0},{"watchAriaDescribedbyIDs":0}],"inputsOnBottom":[{"watchInputsOnBottom":0}],"ariaDescribedbyIDs":[{"watchAriaDescribedbyIDs":0}],"class":[{"watchClass":0},{"watchLabel":0}],"label":[{"watchLabel":0}],"required":[{"watchLabel":0}],"isReadonly":[{"watchLabel":0}],"isFieldset":[{"watchLabel":0}]}],[257,"mg-button",{"variant":[1025],"label":[1],"type":[1],"size":[1],"fullWidth":[4,"full-width"],"form":[1],"disabled":[1028],"isIcon":[4,"is-icon"],"disableOnClick":[4,"disable-on-click"],"loading":[32],"classCollection":[32]},null,{"variant":[{"validateVariant":0}],"size":[{"validateSize":0}],"fullWidth":[{"validateFullWidth":0}],"disabled":[{"disabledHandler":0}],"isIcon":[{"watchIsIcon":0}],"loading":[{"loadingHandler":0}]}],[257,"mg-tooltip",{"identifier":[1],"message":[1],"placement":[1],"display":[1028],"disabled":[4]},null,{"identifier":[{"watchIdentifier":0}],"message":[{"watchMessage":0}],"display":[{"watchDisplay":0}],"disabled":[{"watchDisabled":0}]}],[262,"mg-input-title",{"identifier":[1],"required":[4],"readonly":[4],"isLegend":[4,"is-legend"],"tagName":[32]},null,{"identifier":[{"validateIdentifier":0}],"isLegend":[{"validateIsLegend":0}]}],[257,"mg-tooltip-content",{"message":[1]}],[1,"mg-icon",{"icon":[1],"size":[1],"variant":[1],"variantStyle":[1025,"variant-style"],"spin":[4],"classCollection":[32]},null,{"icon":[{"validateIcon":0}],"size":[{"validateSize":0}],"variant":[{"validateVariant":0}],"variantStyle":[{"validateVariantStyle":0}],"spin":[{"handleSpin":0}]}]]],["p-2ee92f38",[[1,"mg-input-combobox",{"value":[1537],"items":[16],"itemsLabel":[1,"items-label"],"identifier":[1],"name":[1],"label":[1],"labelOnTop":[4,"label-on-top"],"labelHide":[4,"label-hide"],"placeholder":[1],"required":[4],"readonly":[4],"disabled":[4],"mgWidth":[8,"mg-width"],"tooltip":[1],"tooltipPosition":[1,"tooltip-position"],"helpText":[1,"help-text"],"fetchurl":[1],"fetchoptions":[16],"fetchmappings":[16],"valid":[1028],"invalid":[1028],"isLoading":[32],"options":[32],"option":[32],"filter":[32],"classCollection":[32],"errorMessage":[32],"popoverDisplay":[32],"setFocus":[64],"displayError":[64],"setError":[64],"reset":[64]},null,{"value":[{"watchValue":0}],"items":[{"watchItems":0}],"identifier":[{"watchIdentifier":0}],"readonly":[{"watchReadonly":0},{"watchValidityChange":0}],"required":[{"watchValidityChange":0}],"disabled":[{"watchValidityChange":0},{"watchDisabled":0}],"mgWidth":[{"watchMgWidth":0}],"fetchurl":[{"watchFetchUrl":0}],"fetchoptions":[{"watchFetchOptions":0}],"fetchmappings":[{"watchFetchMappings":0}],"options":[{"watchOptions":0}],"filter":[{"watchFilter":0}],"popoverDisplay":[{"watchPopoverDisplay":0}]}]]],["p-cc793586",[[1,"mg-input-file",{"value":[1032],"identifier":[1],"name":[1],"label":[1],"labelOnTop":[4,"label-on-top"],"labelHide":[4,"label-hide"],"multiple":[4],"accept":[1],"maxSize":[2,"max-size"],"capture":[1],"required":[4],"disabled":[4],"tooltip":[1],"tooltipPosition":[1,"tooltip-position"],"helpText":[1025,"help-text"],"valid":[1028],"invalid":[1028],"classCollection":[32],"errorMessage":[32],"files":[32],"setFocus":[64],"displayError":[64],"setError":[64],"reset":[64]},null,{"value":[{"watchValue":0},{"watchMultiple":0}],"multiple":[{"watchMultiple":0}],"accept":[{"watchAccept":0},{"watchHelpText":0}],"required":[{"handleValidityChange":0}],"disabled":[{"handleValidityChange":0},{"watchDisabled":0}],"helpText":[{"watchHelpText":0}],"maxSize":[{"watchHelpText":0}],"files":[{"watchFiles":0}]}]]],["p-5745fbea",[[257,"mg-fieldset",{"identifier":[1],"name":[1],"legend":[1],"legendHide":[4,"legend-hide"],"legendHeading":[1,"legend-heading"],"legendBorderDisplay":[4,"legend-border-display"],"readonly":[4],"disabled":[4],"tooltip":[1],"helpText":[1,"help-text"],"errorMessage":[32],"valid":[32],"classCollection":[32],"setCustomValidity":[64],"displayError":[64]},null,{"legendBorderDisplay":[{"watchLegendBorderDisplay":0}],"readonly":[{"watchReadonly":0},{"handleAttributeChange":0}],"disabled":[{"handleAttributeChange":0}]}]]],["p-c63f97f0",[[1,"mg-input-rich-text-editor",{"value":[1025],"identifier":[1],"name":[1],"label":[1],"labelOnTop":[4,"label-on-top"],"labelHide":[4,"label-hide"],"placeholder":[1],"rows":[2],"required":[4],"readonly":[4],"disabled":[4],"pattern":[1],"patternErrorMessage":[1,"pattern-error-message"],"tooltip":[1],"tooltipPosition":[1,"tooltip-position"],"helpText":[1,"help-text"],"modules":[1],"sanitizerOptions":[16],"valid":[1028],"invalid":[1028],"classCollection":[32],"errorMessage":[32],"setFocus":[64],"getEditorHTML":[64],"getEditorText":[64],"displayError":[64],"setError":[64],"reset":[64]},null,{"readonly":[{"watchReadonly":0},{"handleValidityChange":0}],"disabled":[{"watchDisabled":0},{"handleValidityChange":0}],"required":[{"handleValidityChange":0}],"pattern":[{"validatePattern":0}],"patternErrorMessage":[{"validatePattern":0}],"modules":[{"watchModules":0}],"sanitizerOptions":[{"watchSanitizerOptions":0}]}]]],["p-3b653226",[[257,"mg-alert",{"delay":[2],"variant":[1],"variantStyle":[1,"variant-style"],"classCollection":[32],"hasActions":[32]},null,{"delay":[{"watchDelay":0}],"variant":[{"watchVariant":0}],"variantStyle":[{"watchVariantStyle":0}],"hidden":[{"watchHidden":0}]}]]],["p-d5e69c95",[[1,"mg-breadcrumb",{"items":[16]},null,{"items":[{"validateItems":0}]}]]],["p-c8c8cfc1",[[1,"mg-progress",{"label":[1],"ariaRole":[1,"aria-role"],"value":[2],"min":[2],"max":[2]},null,{"label":[{"watchLabel":0}],"ariaRole":[{"watchAriaRole":0}],"value":[{"watchValue":0}],"min":[{"watchMin":0}],"max":[{"watchMax":0}]}]]],["p-adec7fcc",[[1,"mg-loader",{"message":[1],"messageHide":[4,"message-hide"]},null,{"message":[{"watchMessage":0}]}]]]]'),e))));
|