@mgdis/mg-components 5.11.0 → 5.11.1
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/mg-action-more_31.cjs.entry.js +7 -7
- package/dist/collection/components/molecules/inputs/mg-input-checkbox/mg-input-checkbox.js +3 -3
- package/dist/collection/components/molecules/mg-popover/mg-popover.js +4 -4
- package/dist/components/mg-input-checkbox.js +3 -3
- package/dist/components/mg-popover2.js +4 -4
- package/dist/esm/mg-action-more_31.entry.js +7 -7
- package/dist/mg-components/mg-components.esm.js +1 -1
- package/dist/mg-components/p-4539cdfd.entry.js +1 -0
- package/dist/types/components/molecules/inputs/mg-input-checkbox/mg-input-checkbox.d.ts +1 -1
- package/dist/types/components/molecules/mg-popover/mg-popover.d.ts +1 -1
- package/package.json +1 -1
- package/dist/mg-components/p-51c2def3.entry.js +0 -1
|
@@ -1398,12 +1398,12 @@ const MgInputCheckbox = class {
|
|
|
1398
1398
|
this.handleKeydown = (event) => {
|
|
1399
1399
|
var _a;
|
|
1400
1400
|
// track "Tab" key event when popover display (is "multi" type selected)
|
|
1401
|
-
if (event.key === 'Tab' && ((_a = this.
|
|
1401
|
+
if (event.key === 'Tab' && ((_a = this.mgPopover) === null || _a === void 0 ? void 0 : _a.display)) {
|
|
1402
1402
|
const enableInputs = this.checkboxItems.filter(input => !input.disabled).map(({ id }) => id);
|
|
1403
1403
|
const originInputIndex = enableInputs.findIndex(id => id === event.target.id);
|
|
1404
1404
|
// close popover when tab trigger focus outside its DOM
|
|
1405
1405
|
if ((originInputIndex + 1 >= enableInputs.length && !event.shiftKey) || (originInputIndex === 0 && event.shiftKey))
|
|
1406
|
-
this.
|
|
1406
|
+
this.mgPopover.display = false;
|
|
1407
1407
|
}
|
|
1408
1408
|
};
|
|
1409
1409
|
/**
|
|
@@ -1558,7 +1558,7 @@ const MgInputCheckbox = class {
|
|
|
1558
1558
|
const selectedValuesNb = this.checkboxItems.filter(({ value }) => value).length;
|
|
1559
1559
|
return (index.h("div", { class: "mg-input__input-container mg-input__input-checkbox-multi" }, index.h("strong", null, this.messages.input.checkbox[selectedValuesNb > 1 ? 'selectedValues' : 'selectedValue'].replace('{nb}', selectedValuesNb)), index.h("mg-popover", { arrowHide: true, identifier: this.getMgPopoverIdentifier(), ref: el => {
|
|
1560
1560
|
if (Boolean(el))
|
|
1561
|
-
this.
|
|
1561
|
+
this.mgPopover = el;
|
|
1562
1562
|
} }, index.h("mg-button", { variant: "secondary" }, index.h("mg-icon", { icon: "list" }), this.renderButtonText(selectedValuesNb)), index.h("div", { slot: "content" }, this.renderCheckboxes()))));
|
|
1563
1563
|
}
|
|
1564
1564
|
/**
|
|
@@ -6033,7 +6033,7 @@ const MgPopover = class {
|
|
|
6033
6033
|
*/
|
|
6034
6034
|
this.show = () => {
|
|
6035
6035
|
// Make the popover visible
|
|
6036
|
-
this.
|
|
6036
|
+
this.mgPopover.dataset.show = '';
|
|
6037
6037
|
// Enable the event listeners
|
|
6038
6038
|
this.popper.setOptions(options => (Object.assign(Object.assign({}, options), { modifiers: [...options.modifiers, { name: 'eventListeners', enabled: true }] })));
|
|
6039
6039
|
// hide when click outside
|
|
@@ -6049,7 +6049,7 @@ const MgPopover = class {
|
|
|
6049
6049
|
*/
|
|
6050
6050
|
this.hide = () => {
|
|
6051
6051
|
// Hide the popover
|
|
6052
|
-
this.
|
|
6052
|
+
this.mgPopover.removeAttribute('data-show');
|
|
6053
6053
|
// Disable the event listeners
|
|
6054
6054
|
this.popper.setOptions(options => (Object.assign(Object.assign({}, options), { modifiers: [...options.modifiers, { name: 'eventListeners', enabled: false }] })));
|
|
6055
6055
|
// Remove event listener
|
|
@@ -6119,14 +6119,14 @@ const MgPopover = class {
|
|
|
6119
6119
|
this.closeButtonId = `${this.identifier}-close-button`;
|
|
6120
6120
|
}
|
|
6121
6121
|
// Get popover content
|
|
6122
|
-
this.
|
|
6122
|
+
this.mgPopover = this.element.shadowRoot.getElementById(this.identifier);
|
|
6123
6123
|
//Get interactive element (first element without slot attribute)
|
|
6124
6124
|
const interactiveElement = this.element.querySelector(':not([slot])');
|
|
6125
6125
|
// Add aria attributes
|
|
6126
6126
|
interactiveElement.setAttribute('aria-controls', this.identifier);
|
|
6127
6127
|
interactiveElement.setAttribute('aria-expanded', `${this.display}`);
|
|
6128
6128
|
// Create popperjs popover
|
|
6129
|
-
this.popper = createPopper(interactiveElement, this.
|
|
6129
|
+
this.popper = createPopper(interactiveElement, this.mgPopover, {
|
|
6130
6130
|
placement: this.placement,
|
|
6131
6131
|
strategy: 'fixed',
|
|
6132
6132
|
modifiers: [
|
|
@@ -43,12 +43,12 @@ export class MgInputCheckbox {
|
|
|
43
43
|
this.handleKeydown = (event) => {
|
|
44
44
|
var _a;
|
|
45
45
|
// track "Tab" key event when popover display (is "multi" type selected)
|
|
46
|
-
if (event.key === 'Tab' && ((_a = this.
|
|
46
|
+
if (event.key === 'Tab' && ((_a = this.mgPopover) === null || _a === void 0 ? void 0 : _a.display)) {
|
|
47
47
|
const enableInputs = this.checkboxItems.filter(input => !input.disabled).map(({ id }) => id);
|
|
48
48
|
const originInputIndex = enableInputs.findIndex(id => id === event.target.id);
|
|
49
49
|
// close popover when tab trigger focus outside its DOM
|
|
50
50
|
if ((originInputIndex + 1 >= enableInputs.length && !event.shiftKey) || (originInputIndex === 0 && event.shiftKey))
|
|
51
|
-
this.
|
|
51
|
+
this.mgPopover.display = false;
|
|
52
52
|
}
|
|
53
53
|
};
|
|
54
54
|
/**
|
|
@@ -203,7 +203,7 @@ export class MgInputCheckbox {
|
|
|
203
203
|
const selectedValuesNb = this.checkboxItems.filter(({ value }) => value).length;
|
|
204
204
|
return (h("div", { class: "mg-input__input-container mg-input__input-checkbox-multi" }, h("strong", null, this.messages.input.checkbox[selectedValuesNb > 1 ? 'selectedValues' : 'selectedValue'].replace('{nb}', selectedValuesNb)), h("mg-popover", { arrowHide: true, identifier: this.getMgPopoverIdentifier(), ref: el => {
|
|
205
205
|
if (Boolean(el))
|
|
206
|
-
this.
|
|
206
|
+
this.mgPopover = el;
|
|
207
207
|
} }, h("mg-button", { variant: "secondary" }, h("mg-icon", { icon: "list" }), this.renderButtonText(selectedValuesNb)), h("div", { slot: "content" }, this.renderCheckboxes()))));
|
|
208
208
|
}
|
|
209
209
|
/**
|
|
@@ -24,7 +24,7 @@ export class MgPopover {
|
|
|
24
24
|
*/
|
|
25
25
|
this.show = () => {
|
|
26
26
|
// Make the popover visible
|
|
27
|
-
this.
|
|
27
|
+
this.mgPopover.dataset.show = '';
|
|
28
28
|
// Enable the event listeners
|
|
29
29
|
this.popper.setOptions(options => (Object.assign(Object.assign({}, options), { modifiers: [...options.modifiers, { name: 'eventListeners', enabled: true }] })));
|
|
30
30
|
// hide when click outside
|
|
@@ -40,7 +40,7 @@ export class MgPopover {
|
|
|
40
40
|
*/
|
|
41
41
|
this.hide = () => {
|
|
42
42
|
// Hide the popover
|
|
43
|
-
this.
|
|
43
|
+
this.mgPopover.removeAttribute('data-show');
|
|
44
44
|
// Disable the event listeners
|
|
45
45
|
this.popper.setOptions(options => (Object.assign(Object.assign({}, options), { modifiers: [...options.modifiers, { name: 'eventListeners', enabled: false }] })));
|
|
46
46
|
// Remove event listener
|
|
@@ -110,14 +110,14 @@ export class MgPopover {
|
|
|
110
110
|
this.closeButtonId = `${this.identifier}-close-button`;
|
|
111
111
|
}
|
|
112
112
|
// Get popover content
|
|
113
|
-
this.
|
|
113
|
+
this.mgPopover = this.element.shadowRoot.getElementById(this.identifier);
|
|
114
114
|
//Get interactive element (first element without slot attribute)
|
|
115
115
|
const interactiveElement = this.element.querySelector(':not([slot])');
|
|
116
116
|
// Add aria attributes
|
|
117
117
|
interactiveElement.setAttribute('aria-controls', this.identifier);
|
|
118
118
|
interactiveElement.setAttribute('aria-expanded', `${this.display}`);
|
|
119
119
|
// Create popperjs popover
|
|
120
|
-
this.popper = createPopper(interactiveElement, this.
|
|
120
|
+
this.popper = createPopper(interactiveElement, this.mgPopover, {
|
|
121
121
|
placement: this.placement,
|
|
122
122
|
strategy: 'fixed',
|
|
123
123
|
modifiers: [
|
|
@@ -60,12 +60,12 @@ const MgInputCheckbox$1 = /*@__PURE__*/ proxyCustomElement(class extends HTMLEle
|
|
|
60
60
|
this.handleKeydown = (event) => {
|
|
61
61
|
var _a;
|
|
62
62
|
// track "Tab" key event when popover display (is "multi" type selected)
|
|
63
|
-
if (event.key === 'Tab' && ((_a = this.
|
|
63
|
+
if (event.key === 'Tab' && ((_a = this.mgPopover) === null || _a === void 0 ? void 0 : _a.display)) {
|
|
64
64
|
const enableInputs = this.checkboxItems.filter(input => !input.disabled).map(({ id }) => id);
|
|
65
65
|
const originInputIndex = enableInputs.findIndex(id => id === event.target.id);
|
|
66
66
|
// close popover when tab trigger focus outside its DOM
|
|
67
67
|
if ((originInputIndex + 1 >= enableInputs.length && !event.shiftKey) || (originInputIndex === 0 && event.shiftKey))
|
|
68
|
-
this.
|
|
68
|
+
this.mgPopover.display = false;
|
|
69
69
|
}
|
|
70
70
|
};
|
|
71
71
|
/**
|
|
@@ -220,7 +220,7 @@ const MgInputCheckbox$1 = /*@__PURE__*/ proxyCustomElement(class extends HTMLEle
|
|
|
220
220
|
const selectedValuesNb = this.checkboxItems.filter(({ value }) => value).length;
|
|
221
221
|
return (h("div", { class: "mg-input__input-container mg-input__input-checkbox-multi" }, h("strong", null, this.messages.input.checkbox[selectedValuesNb > 1 ? 'selectedValues' : 'selectedValue'].replace('{nb}', selectedValuesNb)), h("mg-popover", { arrowHide: true, identifier: this.getMgPopoverIdentifier(), ref: el => {
|
|
222
222
|
if (Boolean(el))
|
|
223
|
-
this.
|
|
223
|
+
this.mgPopover = el;
|
|
224
224
|
} }, h("mg-button", { variant: "secondary" }, h("mg-icon", { icon: "list" }), this.renderButtonText(selectedValuesNb)), h("div", { slot: "content" }, this.renderCheckboxes()))));
|
|
225
225
|
}
|
|
226
226
|
/**
|
|
@@ -34,7 +34,7 @@ const MgPopover = /*@__PURE__*/ proxyCustomElement(class extends HTMLElement {
|
|
|
34
34
|
*/
|
|
35
35
|
this.show = () => {
|
|
36
36
|
// Make the popover visible
|
|
37
|
-
this.
|
|
37
|
+
this.mgPopover.dataset.show = '';
|
|
38
38
|
// Enable the event listeners
|
|
39
39
|
this.popper.setOptions(options => (Object.assign(Object.assign({}, options), { modifiers: [...options.modifiers, { name: 'eventListeners', enabled: true }] })));
|
|
40
40
|
// hide when click outside
|
|
@@ -50,7 +50,7 @@ const MgPopover = /*@__PURE__*/ proxyCustomElement(class extends HTMLElement {
|
|
|
50
50
|
*/
|
|
51
51
|
this.hide = () => {
|
|
52
52
|
// Hide the popover
|
|
53
|
-
this.
|
|
53
|
+
this.mgPopover.removeAttribute('data-show');
|
|
54
54
|
// Disable the event listeners
|
|
55
55
|
this.popper.setOptions(options => (Object.assign(Object.assign({}, options), { modifiers: [...options.modifiers, { name: 'eventListeners', enabled: false }] })));
|
|
56
56
|
// Remove event listener
|
|
@@ -120,14 +120,14 @@ const MgPopover = /*@__PURE__*/ proxyCustomElement(class extends HTMLElement {
|
|
|
120
120
|
this.closeButtonId = `${this.identifier}-close-button`;
|
|
121
121
|
}
|
|
122
122
|
// Get popover content
|
|
123
|
-
this.
|
|
123
|
+
this.mgPopover = this.element.shadowRoot.getElementById(this.identifier);
|
|
124
124
|
//Get interactive element (first element without slot attribute)
|
|
125
125
|
const interactiveElement = this.element.querySelector(':not([slot])');
|
|
126
126
|
// Add aria attributes
|
|
127
127
|
interactiveElement.setAttribute('aria-controls', this.identifier);
|
|
128
128
|
interactiveElement.setAttribute('aria-expanded', `${this.display}`);
|
|
129
129
|
// Create popperjs popover
|
|
130
|
-
this.popper = createPopper(interactiveElement, this.
|
|
130
|
+
this.popper = createPopper(interactiveElement, this.mgPopover, {
|
|
131
131
|
placement: this.placement,
|
|
132
132
|
strategy: 'fixed',
|
|
133
133
|
modifiers: [
|
|
@@ -1394,12 +1394,12 @@ const MgInputCheckbox = class {
|
|
|
1394
1394
|
this.handleKeydown = (event) => {
|
|
1395
1395
|
var _a;
|
|
1396
1396
|
// track "Tab" key event when popover display (is "multi" type selected)
|
|
1397
|
-
if (event.key === 'Tab' && ((_a = this.
|
|
1397
|
+
if (event.key === 'Tab' && ((_a = this.mgPopover) === null || _a === void 0 ? void 0 : _a.display)) {
|
|
1398
1398
|
const enableInputs = this.checkboxItems.filter(input => !input.disabled).map(({ id }) => id);
|
|
1399
1399
|
const originInputIndex = enableInputs.findIndex(id => id === event.target.id);
|
|
1400
1400
|
// close popover when tab trigger focus outside its DOM
|
|
1401
1401
|
if ((originInputIndex + 1 >= enableInputs.length && !event.shiftKey) || (originInputIndex === 0 && event.shiftKey))
|
|
1402
|
-
this.
|
|
1402
|
+
this.mgPopover.display = false;
|
|
1403
1403
|
}
|
|
1404
1404
|
};
|
|
1405
1405
|
/**
|
|
@@ -1554,7 +1554,7 @@ const MgInputCheckbox = class {
|
|
|
1554
1554
|
const selectedValuesNb = this.checkboxItems.filter(({ value }) => value).length;
|
|
1555
1555
|
return (h("div", { class: "mg-input__input-container mg-input__input-checkbox-multi" }, h("strong", null, this.messages.input.checkbox[selectedValuesNb > 1 ? 'selectedValues' : 'selectedValue'].replace('{nb}', selectedValuesNb)), h("mg-popover", { arrowHide: true, identifier: this.getMgPopoverIdentifier(), ref: el => {
|
|
1556
1556
|
if (Boolean(el))
|
|
1557
|
-
this.
|
|
1557
|
+
this.mgPopover = el;
|
|
1558
1558
|
} }, h("mg-button", { variant: "secondary" }, h("mg-icon", { icon: "list" }), this.renderButtonText(selectedValuesNb)), h("div", { slot: "content" }, this.renderCheckboxes()))));
|
|
1559
1559
|
}
|
|
1560
1560
|
/**
|
|
@@ -6029,7 +6029,7 @@ const MgPopover = class {
|
|
|
6029
6029
|
*/
|
|
6030
6030
|
this.show = () => {
|
|
6031
6031
|
// Make the popover visible
|
|
6032
|
-
this.
|
|
6032
|
+
this.mgPopover.dataset.show = '';
|
|
6033
6033
|
// Enable the event listeners
|
|
6034
6034
|
this.popper.setOptions(options => (Object.assign(Object.assign({}, options), { modifiers: [...options.modifiers, { name: 'eventListeners', enabled: true }] })));
|
|
6035
6035
|
// hide when click outside
|
|
@@ -6045,7 +6045,7 @@ const MgPopover = class {
|
|
|
6045
6045
|
*/
|
|
6046
6046
|
this.hide = () => {
|
|
6047
6047
|
// Hide the popover
|
|
6048
|
-
this.
|
|
6048
|
+
this.mgPopover.removeAttribute('data-show');
|
|
6049
6049
|
// Disable the event listeners
|
|
6050
6050
|
this.popper.setOptions(options => (Object.assign(Object.assign({}, options), { modifiers: [...options.modifiers, { name: 'eventListeners', enabled: false }] })));
|
|
6051
6051
|
// Remove event listener
|
|
@@ -6115,14 +6115,14 @@ const MgPopover = class {
|
|
|
6115
6115
|
this.closeButtonId = `${this.identifier}-close-button`;
|
|
6116
6116
|
}
|
|
6117
6117
|
// Get popover content
|
|
6118
|
-
this.
|
|
6118
|
+
this.mgPopover = this.element.shadowRoot.getElementById(this.identifier);
|
|
6119
6119
|
//Get interactive element (first element without slot attribute)
|
|
6120
6120
|
const interactiveElement = this.element.querySelector(':not([slot])');
|
|
6121
6121
|
// Add aria attributes
|
|
6122
6122
|
interactiveElement.setAttribute('aria-controls', this.identifier);
|
|
6123
6123
|
interactiveElement.setAttribute('aria-expanded', `${this.display}`);
|
|
6124
6124
|
// Create popperjs popover
|
|
6125
|
-
this.popper = createPopper(interactiveElement, this.
|
|
6125
|
+
this.popper = createPopper(interactiveElement, this.mgPopover, {
|
|
6126
6126
|
placement: this.placement,
|
|
6127
6127
|
strategy: 'fixed',
|
|
6128
6128
|
modifiers: [
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{p as e,b as l}from"./p-3bf533f7.js";export{s as setNonce}from"./p-3bf533f7.js";(()=>{const l=import.meta.url,i={};return""!==l&&(i.resourcesUrl=new URL(".",l).href),e(i)})().then((e=>l([["p-
|
|
1
|
+
import{p as e,b as l}from"./p-3bf533f7.js";export{s as setNonce}from"./p-3bf533f7.js";(()=>{const l=import.meta.url,i={};return""!==l&&(i.resourcesUrl=new URL(".",l).href),e(i)})().then((e=>l([["p-4539cdfd",[[1,"mg-action-more",{icon:[16],button:[16],items:[16],displayChevron:[4,"display-chevron"],expanded:[32]}],[1,"mg-panel",{identifier:[1],panelTitle:[1025,"panel-title"],titlePattern:[1,"title-pattern"],titlePatternErrorMessage:[1,"title-pattern-error-message"],expanded:[1028],expandToggleDisabled:[4,"expand-toggle-disabled"],titleEditable:[4,"title-editable"],classCollection:[32],isEditing:[32],updatedPanelTitle:[32]}],[1,"mg-input-checkbox",{value:[1040],type:[1],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],helpText:[1,"help-text"],valid:[1028],invalid:[1028],classCollection:[32],errorMessage:[32],checkboxItems:[32],displayError:[64]}],[1,"mg-pagination",{identifier:[1],label:[1025],hideNavigationLabels:[4,"hide-navigation-labels"],totalPages:[2,"total-pages"],currentPage:[1538,"current-page"]}],[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],displayCharacterLeft:[4,"display-character-left"],helpText:[1,"help-text"],valid:[1028],invalid:[1028],resizable:[1],classCollection:[32],errorMessage:[32],displayError:[64]}],[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],disabled:[4],tooltip:[1],helpText:[1,"help-text"],valid:[1028],invalid:[1028],min:[1],max:[1],classCollection:[32],errorMessage:[32],displayError:[64]}],[1,"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],disabled:[4],mgWidth:[8,"mg-width"],tooltip:[1],helpText:[1,"help-text"],type:[1],currency:[1],max:[2],min:[2],integerLength:[2,"integer-length"],decimalLength:[2,"decimal-length"],valid:[1028],invalid:[1028],classCollection:[32],errorMessage:[32],hasFocus:[32],displayError:[64]}],[1,"mg-input-password",{value:[1537],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],helpText:[1,"help-text"],valid:[1028],invalid:[1028],classCollection:[32],errorMessage:[32],displayError:[64]}],[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],helpText:[1,"help-text"],valid:[1028],invalid:[1028],classCollection:[32],errorMessage:[32],options:[32],displayError:[64]}],[1,"mg-input-toggle",{value:[1032],items:[16],identifier:[1],name:[1],label:[1],labelOnTop:[4,"label-on-top"],labelHide:[4,"label-hide"],isOnOff:[4,"is-on-off"],isIcon:[4,"is-icon"],readonly:[4],disabled:[4],tooltip:[1],helpText:[1,"help-text"],classCollection:[32],options:[32],checked:[32]}],[1,"mg-message",{identifier:[1],delay:[2],variant:[1],closeButton:[1028,"close-button"],hide:[1028],classCollection:[32],hasActions:[32]}],[1,"mg-modal",{identifier:[1],modalTitle:[1,"modal-title"],closeButton:[4,"close-button"],hide:[1028],hasActions:[32],hasContent:[32],classCollection:[32]},[[8,"keydown","handleKeyDown"]]],[1,"mg-tabs",{identifier:[1],label:[1],size:[1],items:[16],activeTab:[1538,"active-tab"],tabs:[32],classCollection:[32]}],[1,"mg-details",{toggleClosed:[1,"toggle-closed"],toggleOpened:[1,"toggle-opened"],hideSummary:[4,"hide-summary"],expanded:[1028]}],[1,"mg-divider",{size:[1]}],[1,"mg-form",{identifier:[1],name:[1],readonly:[4],disabled:[4],valid:[1028],invalid:[1028],classCollection:[32],requiredMessage:[32],displayError:[64]}],[1,"mg-illustrated-message",{size:[1],direction:[1]}],[1,"mg-skip-links",{links:[16]}],[1,"mg-tag",{variant:[1],outline:[4],soft:[4],classCollection:[32]}],[1,"mg-input-text",{value:[1537],identifier:[1],name:[1],label:[1],type:[1],icon:[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"],tooltip:[1],displayCharacterLeft:[4,"display-character-left"],helpText:[1,"help-text"],valid:[1028],invalid:[1028],classCollection:[32],errorMessage:[32],setFocus:[64],displayError:[64]}],[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:[8,"mg-width"],tooltip:[1],helpText:[1,"help-text"],valid:[1028],invalid:[1028],classCollection:[32],errorMessage:[32],options:[32],valueExist:[32],readonlyValue:[32],displayError:[64]}],[1,"mg-menu-item",{identifier:[1],href:[1],status:[1537],expanded:[1028],size:[32],navigationButtonClassList:[32],direction:[32],isInMainMenu:[32],isItemMore:[32],hasChildren:[32],displayNotificationBadge:[32]}],[1,"mg-menu",{label:[1],direction:[513],itemmore:[16],size:[1],isChildMenu:[32]}],[2,"mg-character-left",{identifier:[1],characters:[1],maxlength:[2]}],[1,"mg-popover",{identifier:[1],placement:[1],arrowHide:[4,"arrow-hide"],closeButton:[4,"close-button"],display:[1028],disabled:[4],classCollection:[32]}],[1,"mg-badge",{value:[8],label:[1],variant:[1],outline:[4],classCollection:[32]}],[1,"mg-card",{variant:[1],variantStyle:[1025,"variant-style"],classCollection:[32]}],[1,"mg-button",{variant:[1],identifier:[1],label:[1],type:[1],fullWidth:[4,"full-width"],form:[1],disabled:[1028],isIcon:[4,"is-icon"],disableOnClick:[4,"disable-on-click"],loading:[32],classCollection:[32]}],[6,"mg-input-title",{identifier:[1],required:[4],isLegend:[4,"is-legend"],tagName:[32]}],[1,"mg-tooltip",{identifier:[1],message:[1],placement:[1],display:[1028],disabled:[4]}],[1,"mg-icon",{icon:[1],size:[1],variant:[1],variantStyle:[1025,"variant-style"],spin:[4],classCollection:[32]}]]],["p-d3ed97d3",[[1,"mg-item-more",{icon:[16],slotlabel:[16],size:[1],parentMenu:[32]}]]]],e)));
|