@maggioli-design-system/magma 1.11.2 → 1.11.4

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.
Files changed (31) hide show
  1. package/dist/cjs/loader.cjs.js +1 -1
  2. package/dist/cjs/magma-components.cjs.js +1 -1
  3. package/dist/cjs/mds-input-date.cjs.entry.js +32 -21
  4. package/dist/cjs/mds-input.cjs.entry.js +10 -10
  5. package/dist/collection/components/mds-input/mds-input.js +10 -10
  6. package/dist/collection/components/mds-input-date/mds-input-date.js +68 -21
  7. package/dist/components/mds-input-date.js +34 -22
  8. package/dist/components/mds-input2.js +10 -10
  9. package/dist/documentation.json +47 -1
  10. package/dist/esm/loader.js +1 -1
  11. package/dist/esm/magma-components.js +1 -1
  12. package/dist/esm/mds-input-date.entry.js +32 -21
  13. package/dist/esm/mds-input.entry.js +10 -10
  14. package/dist/esm-es5/loader.js +1 -1
  15. package/dist/esm-es5/magma-components.js +1 -1
  16. package/dist/esm-es5/mds-input-date.entry.js +1 -1
  17. package/dist/esm-es5/mds-input.entry.js +1 -1
  18. package/dist/hydrate/index.js +44 -32
  19. package/dist/hydrate/index.mjs +44 -32
  20. package/dist/magma-components/magma-components.esm.js +1 -1
  21. package/dist/magma-components/p-26cd6ec8.system.js +1 -1
  22. package/dist/magma-components/{p-f84a0816.system.entry.js → p-409c9518.system.entry.js} +1 -1
  23. package/dist/magma-components/p-80b11d2e.entry.js +1 -0
  24. package/dist/magma-components/p-977d3bf0.entry.js +1 -0
  25. package/dist/magma-components/{p-8115a5c3.system.entry.js → p-9e08e8f1.system.entry.js} +1 -1
  26. package/dist/stats.json +109 -27
  27. package/dist/types/components/mds-input-date/mds-input-date.d.ts +8 -1
  28. package/dist/types/components.d.ts +8 -2
  29. package/package.json +1 -1
  30. package/dist/magma-components/p-83563864.entry.js +0 -1
  31. package/dist/magma-components/p-987e1cd6.entry.js +0 -1
@@ -51,6 +51,14 @@ export class MdsInputDate {
51
51
  this.required = false;
52
52
  this.calendarKey = 0;
53
53
  this.hasFocus = false;
54
+ this.handleChange = (event) => {
55
+ const input = event.target;
56
+ this.touched = true;
57
+ // manage case when i insert 0 on date and default input behavior change in 01 instead of resetting all date
58
+ if (input.value)
59
+ this.value = input.value;
60
+ this.validateValue();
61
+ };
54
62
  this.onBlur = (ev) => {
55
63
  const input = ev.target;
56
64
  this.hasFocus = false;
@@ -74,19 +82,23 @@ export class MdsInputDate {
74
82
  handleValue() {
75
83
  this.valueChange.emit(this.value);
76
84
  this.validateValue();
77
- this.internals.setFormValue(this.value);
78
85
  }
79
86
  validateValue() {
80
87
  const date = DateTime.fromISO(this.value);
81
- this.isValid = false;
82
- this.variant = 'error';
83
- if (date.invalid && this.required)
84
- return;
85
- if ((this.max && DateTime.fromISO(this.max) < date) ||
86
- (this.min && DateTime.fromISO(this.min) > date))
87
- return;
88
- this.isValid = true;
89
- this.variant = 'primary';
88
+ const isInvalidDate = date.invalid;
89
+ const outOfRange = (this.max && DateTime.fromISO(this.max) < date) ||
90
+ (this.min && DateTime.fromISO(this.min) > date);
91
+ if ((isInvalidDate && this.required) || outOfRange) {
92
+ this.isValid = false;
93
+ this.variant = 'error';
94
+ this.internals.setFormValue(null);
95
+ }
96
+ else {
97
+ this.isValid = true;
98
+ this.variant = 'primary';
99
+ this.internals.setFormValue(this.value);
100
+ }
101
+ this.validationEvent.emit(this.isValid);
90
102
  }
91
103
  async focusInput() {
92
104
  var _a;
@@ -98,6 +110,12 @@ export class MdsInputDate {
98
110
  this.validateValue();
99
111
  return Promise.resolve();
100
112
  }
113
+ async getErrors() {
114
+ return Promise.resolve(this.isValid ? null : { error: '' });
115
+ }
116
+ formResetCallback() {
117
+ this.internals.setFormValue('');
118
+ }
101
119
  componentWillLoad() {
102
120
  this.isSlotted = !!this.host.getAttribute('slot');
103
121
  this.value = this.value || '';
@@ -112,19 +130,11 @@ export class MdsInputDate {
112
130
  }
113
131
  this.validateValue();
114
132
  }
115
- handleChange(event) {
116
- const input = event.target;
117
- this.touched = true;
118
- // manage case when i insert 0 on date and default input behavior change in 01 instead of resetting all date
119
- if (input.value)
120
- this.value = input.value;
121
- this.validateValue();
122
- }
123
133
  render() {
124
- return (h(Host, { key: '5c8a9e0aa8f76679abfbdaa2c709ae11312ee46d' }, h("input", { key: '1f6dddc1ed8477f8b6160d90f7bf15c6d711ef95', value: this.value, id: "dateInput", class: "input", part: "input-date", type: "date", disabled: this.disabled, name: this.name, onBlur: this.onBlur, onFocus: this.onFocus, onInput: this.handleChange, onChange: this.handleChange }), !this.isSlotted && h("mds-button", { key: 'caefb1f5d8da17ea06dfc547902e19900cd02abf', id: "calendar-dropdown", class: "action-open-calendar", disabled: this.disabled, variant: "dark", tone: "quiet", icon: miBaselineCalendarToday, onClick: () => {
134
+ return (h(Host, { key: '6f98a43d84a87d7e0540331a3f7d37bbf4eca633' }, h("input", { key: 'ec75ae2fd091ee48a4f965057e2b2ae1b3ecddd4', value: this.value, id: "dateInput", class: "input", part: "input-date", type: "date", disabled: this.disabled, name: this.name, onBlur: this.onBlur, onFocus: this.onFocus, onInput: this.handleChange, onChange: this.handleChange }), !this.isSlotted && h("mds-button", { key: '6c7ea4d660fa79b2ba681d255ab48a6d8a0015a9', id: "calendar-dropdown", class: "action-open-calendar", disabled: this.disabled, variant: "dark", tone: "quiet", icon: miBaselineCalendarToday, onClick: () => {
125
135
  this.calendarKey += 1;
126
- } }), h("mds-input-tip", { key: '3f60d0e56e101776b19c1564d92f361b3f0178d7', lang: this.language, position: "top", active: this.hasFocus }, this.disabled && h("mds-input-tip-item", { key: '25a86b26eb2bd743d0291ff1514828274d13ae17', expanded: true, variant: "disabled" }), this.readonly && h("mds-input-tip-item", { key: 'c63d2f830dec87f180bc828b16cebd8e8d8a7060', expanded: true, variant: "readonly" }), this.required &&
127
- h("mds-input-tip-item", { key: '2d2e3f021e3e4ef8c99be55132edf4f99be3b900', expanded: this.hasFocus, variant: this.isValid ? 'required-success' : 'required' })), !this.isSlotted && h("mds-dropdown", { key: '370a33a1f273a3eafc045c1e62c84db41ff52c23', placement: "bottom-end", "auto-placement": false, ref: el => this.dropdownRef = el, target: "#calendar-dropdown" }, h("mds-calendar", Object.assign({ key: this.calendarKey, rangePicker: false, lang: this.language, onMdsCalendarChange: ev => {
136
+ } }), h("mds-input-tip", { key: 'ebbc8300462052aa8bac94a9ac7f66fc96852a0b', lang: this.language, position: "top", active: this.hasFocus }, this.disabled && h("mds-input-tip-item", { key: '54a9dd6905b25759f13fd625a9e64b0e41152e04', expanded: true, variant: "disabled" }), this.readonly && h("mds-input-tip-item", { key: 'ecd6bfc83bda3ee8faeb9a990fc6886ab45f0f8d', expanded: true, variant: "readonly" }), this.required &&
137
+ h("mds-input-tip-item", { key: 'e5b890f827a7a17b58d075bd4f500d208a512512', expanded: this.hasFocus, variant: this.isValid ? 'required-success' : 'required' })), !this.isSlotted && h("mds-dropdown", { key: '34a37a18aea7c9e9476fc660229d3bec208ec8c9', placement: "bottom-end", "auto-placement": false, ref: el => this.dropdownRef = el, target: "#calendar-dropdown" }, h("mds-calendar", Object.assign({ key: this.calendarKey, rangePicker: false, lang: this.language, onMdsCalendarChange: ev => {
128
138
  this.value = ev.detail.startDate;
129
139
  if (this.delay === 0)
130
140
  return;
@@ -362,6 +372,21 @@ export class MdsInputDate {
362
372
  }
363
373
  static get events() {
364
374
  return [{
375
+ "method": "validationEvent",
376
+ "name": "mdsInputValidation",
377
+ "bubbles": true,
378
+ "cancelable": true,
379
+ "composed": true,
380
+ "docs": {
381
+ "tags": [],
382
+ "text": "Emits a boolean event when a input execute validation"
383
+ },
384
+ "complexType": {
385
+ "original": "boolean",
386
+ "resolved": "boolean",
387
+ "references": {}
388
+ }
389
+ }, {
365
390
  "method": "valueChange",
366
391
  "name": "mdsInputDateSelect",
367
392
  "bubbles": true,
@@ -438,6 +463,28 @@ export class MdsInputDate {
438
463
  "text": "",
439
464
  "tags": []
440
465
  }
466
+ },
467
+ "getErrors": {
468
+ "complexType": {
469
+ "signature": "() => Promise<MdsValidationErrors | null>",
470
+ "parameters": [],
471
+ "references": {
472
+ "Promise": {
473
+ "location": "global",
474
+ "id": "global::Promise"
475
+ },
476
+ "MdsValidationErrors": {
477
+ "location": "import",
478
+ "path": "src/components",
479
+ "id": "src/components.d.ts::MdsValidationErrors"
480
+ }
481
+ },
482
+ "return": "Promise<MdsValidationErrors | null>"
483
+ },
484
+ "docs": {
485
+ "text": "",
486
+ "tags": []
487
+ }
441
488
  }
442
489
  };
443
490
  }
@@ -19,6 +19,7 @@ const MdsInputDate$1 = /*@__PURE__*/ proxyCustomElement(class MdsInputDate exten
19
19
  super();
20
20
  this.__registerHost();
21
21
  this.__attachShadow();
22
+ this.validationEvent = createEvent(this, "mdsInputValidation", 7);
22
23
  this.valueChange = createEvent(this, "mdsInputDateSelect", 7);
23
24
  this.internals = this.attachInternals();
24
25
  this.isSlotted = false;
@@ -67,6 +68,14 @@ const MdsInputDate$1 = /*@__PURE__*/ proxyCustomElement(class MdsInputDate exten
67
68
  this.required = false;
68
69
  this.calendarKey = 0;
69
70
  this.hasFocus = false;
71
+ this.handleChange = (event) => {
72
+ const input = event.target;
73
+ this.touched = true;
74
+ // manage case when i insert 0 on date and default input behavior change in 01 instead of resetting all date
75
+ if (input.value)
76
+ this.value = input.value;
77
+ this.validateValue();
78
+ };
70
79
  this.onBlur = (ev) => {
71
80
  const input = ev.target;
72
81
  this.hasFocus = false;
@@ -90,19 +99,23 @@ const MdsInputDate$1 = /*@__PURE__*/ proxyCustomElement(class MdsInputDate exten
90
99
  handleValue() {
91
100
  this.valueChange.emit(this.value);
92
101
  this.validateValue();
93
- this.internals.setFormValue(this.value);
94
102
  }
95
103
  validateValue() {
96
104
  const date = DateTime_1.fromISO(this.value);
97
- this.isValid = false;
98
- this.variant = 'error';
99
- if (date.invalid && this.required)
100
- return;
101
- if ((this.max && DateTime_1.fromISO(this.max) < date) ||
102
- (this.min && DateTime_1.fromISO(this.min) > date))
103
- return;
104
- this.isValid = true;
105
- this.variant = 'primary';
105
+ const isInvalidDate = date.invalid;
106
+ const outOfRange = (this.max && DateTime_1.fromISO(this.max) < date) ||
107
+ (this.min && DateTime_1.fromISO(this.min) > date);
108
+ if ((isInvalidDate && this.required) || outOfRange) {
109
+ this.isValid = false;
110
+ this.variant = 'error';
111
+ this.internals.setFormValue(null);
112
+ }
113
+ else {
114
+ this.isValid = true;
115
+ this.variant = 'primary';
116
+ this.internals.setFormValue(this.value);
117
+ }
118
+ this.validationEvent.emit(this.isValid);
106
119
  }
107
120
  async focusInput() {
108
121
  var _a;
@@ -114,6 +127,12 @@ const MdsInputDate$1 = /*@__PURE__*/ proxyCustomElement(class MdsInputDate exten
114
127
  this.validateValue();
115
128
  return Promise.resolve();
116
129
  }
130
+ async getErrors() {
131
+ return Promise.resolve(this.isValid ? null : { error: '' });
132
+ }
133
+ formResetCallback() {
134
+ this.internals.setFormValue('');
135
+ }
117
136
  componentWillLoad() {
118
137
  this.isSlotted = !!this.host.getAttribute('slot');
119
138
  this.value = this.value || '';
@@ -128,19 +147,11 @@ const MdsInputDate$1 = /*@__PURE__*/ proxyCustomElement(class MdsInputDate exten
128
147
  }
129
148
  this.validateValue();
130
149
  }
131
- handleChange(event) {
132
- const input = event.target;
133
- this.touched = true;
134
- // manage case when i insert 0 on date and default input behavior change in 01 instead of resetting all date
135
- if (input.value)
136
- this.value = input.value;
137
- this.validateValue();
138
- }
139
150
  render() {
140
- return (h(Host, { key: '5c8a9e0aa8f76679abfbdaa2c709ae11312ee46d' }, h("input", { key: '1f6dddc1ed8477f8b6160d90f7bf15c6d711ef95', value: this.value, id: "dateInput", class: "input", part: "input-date", type: "date", disabled: this.disabled, name: this.name, onBlur: this.onBlur, onFocus: this.onFocus, onInput: this.handleChange, onChange: this.handleChange }), !this.isSlotted && h("mds-button", { key: 'caefb1f5d8da17ea06dfc547902e19900cd02abf', id: "calendar-dropdown", class: "action-open-calendar", disabled: this.disabled, variant: "dark", tone: "quiet", icon: miBaselineCalendarToday, onClick: () => {
151
+ return (h(Host, { key: '6f98a43d84a87d7e0540331a3f7d37bbf4eca633' }, h("input", { key: 'ec75ae2fd091ee48a4f965057e2b2ae1b3ecddd4', value: this.value, id: "dateInput", class: "input", part: "input-date", type: "date", disabled: this.disabled, name: this.name, onBlur: this.onBlur, onFocus: this.onFocus, onInput: this.handleChange, onChange: this.handleChange }), !this.isSlotted && h("mds-button", { key: '6c7ea4d660fa79b2ba681d255ab48a6d8a0015a9', id: "calendar-dropdown", class: "action-open-calendar", disabled: this.disabled, variant: "dark", tone: "quiet", icon: miBaselineCalendarToday, onClick: () => {
141
152
  this.calendarKey += 1;
142
- } }), h("mds-input-tip", { key: '3f60d0e56e101776b19c1564d92f361b3f0178d7', lang: this.language, position: "top", active: this.hasFocus }, this.disabled && h("mds-input-tip-item", { key: '25a86b26eb2bd743d0291ff1514828274d13ae17', expanded: true, variant: "disabled" }), this.readonly && h("mds-input-tip-item", { key: 'c63d2f830dec87f180bc828b16cebd8e8d8a7060', expanded: true, variant: "readonly" }), this.required &&
143
- h("mds-input-tip-item", { key: '2d2e3f021e3e4ef8c99be55132edf4f99be3b900', expanded: this.hasFocus, variant: this.isValid ? 'required-success' : 'required' })), !this.isSlotted && h("mds-dropdown", { key: '370a33a1f273a3eafc045c1e62c84db41ff52c23', placement: "bottom-end", "auto-placement": false, ref: el => this.dropdownRef = el, target: "#calendar-dropdown" }, h("mds-calendar", Object.assign({ key: this.calendarKey, rangePicker: false, lang: this.language, onMdsCalendarChange: ev => {
153
+ } }), h("mds-input-tip", { key: 'ebbc8300462052aa8bac94a9ac7f66fc96852a0b', lang: this.language, position: "top", active: this.hasFocus }, this.disabled && h("mds-input-tip-item", { key: '54a9dd6905b25759f13fd625a9e64b0e41152e04', expanded: true, variant: "disabled" }), this.readonly && h("mds-input-tip-item", { key: 'ecd6bfc83bda3ee8faeb9a990fc6886ab45f0f8d', expanded: true, variant: "readonly" }), this.required &&
154
+ h("mds-input-tip-item", { key: 'e5b890f827a7a17b58d075bd4f500d208a512512', expanded: this.hasFocus, variant: this.isValid ? 'required-success' : 'required' })), !this.isSlotted && h("mds-dropdown", { key: '34a37a18aea7c9e9476fc660229d3bec208ec8c9', placement: "bottom-end", "auto-placement": false, ref: el => this.dropdownRef = el, target: "#calendar-dropdown" }, h("mds-calendar", Object.assign({ key: this.calendarKey, rangePicker: false, lang: this.language, onMdsCalendarChange: ev => {
144
155
  this.value = ev.detail.startDate;
145
156
  if (this.delay === 0)
146
157
  return;
@@ -176,7 +187,8 @@ const MdsInputDate$1 = /*@__PURE__*/ proxyCustomElement(class MdsInputDate exten
176
187
  "hasFocus": [32],
177
188
  "updateLang": [64],
178
189
  "focusInput": [64],
179
- "setValue": [64]
190
+ "setValue": [64],
191
+ "getErrors": [64]
180
192
  }, undefined, {
181
193
  "value": ["handleValue"]
182
194
  }]);
@@ -510,7 +510,7 @@ const MdsInput = /*@__PURE__*/ proxyCustomElement(class MdsInput extends HTMLEle
510
510
  }
511
511
  this.internals.setFormValue((_a = this.value) !== null && _a !== void 0 ? _a : null);
512
512
  this.maxLengthChanged(this.maxlength);
513
- this.isValid = !(this.required && this.value === '');
513
+ this.isValid = !(this.required && !this.value);
514
514
  }
515
515
  componentDidLoad() {
516
516
  var _a, _b, _c;
@@ -626,21 +626,21 @@ const MdsInput = /*@__PURE__*/ proxyCustomElement(class MdsInput extends HTMLEle
626
626
  }
627
627
  render() {
628
628
  var _a, _b;
629
- return (h(Host, { key: '95dc6186e93f6ebe7a82d089d1b8dc75a75d3cd1' }, this.type === 'number'
629
+ return (h(Host, { key: '35c2ab35ec7761a4704f04eb660be93492de7672' }, this.type === 'number'
630
630
  && this.controlsLayout === 'horizontal'
631
- && h("mds-button", { key: '44b1fe040ba0b8720d27dcf9848b74b8bfd3a6c6', class: "counter-button counter-button--horizontal counter-button--decrease", icon: this.controlsIcon === 'arrow' ? miBaselineKeyboardArrowDown : miBaselineRemove, onClick: this.stepDown, tabindex: "0", title: this.t.get('decrease'), part: "counter-button-decrease" }), this.type === 'textarea'
631
+ && h("mds-button", { key: 'cf2fe92bdb18e8eb62499aff789888bd29baf248', class: "counter-button counter-button--horizontal counter-button--decrease", icon: this.controlsIcon === 'arrow' ? miBaselineKeyboardArrowDown : miBaselineRemove, onClick: this.stepDown, tabindex: "0", title: this.t.get('decrease'), part: "counter-button-decrease" }), this.type === 'textarea'
632
632
  ? h("textarea", { class: clsx('input', ((_a = this.icon) !== null && _a !== void 0 ? _a : this.await) && 'has-icon', this.mic && 'has-right-icon'), autoFocus: this.autofocus, disabled: this.disabled, maxLength: this.maxlength, minLength: this.minlength, name: this.name, onBlur: this.onBlur, onFocus: this.onFocus, onInput: this.onInput, part: "field", placeholder: this.placeholder, readOnly: this.readonly, ref: input => (this.nativeInput = input), required: this.required, tabIndex: this.tabindex, value: this.value })
633
633
  : h("input", { class: clsx('input', ((_b = this.icon) !== null && _b !== void 0 ? _b : this.await) && 'has-icon', this.mic && 'has-right-icon'), autoComplete: this.autocomplete, autoFocus: this.autofocus, disabled: this.disabled, max: this.max, maxLength: this.maxlength, min: this.min, minLength: this.minlength, name: this.name, onBlur: this.onBlur, onFocus: this.onFocus, onInput: this.onInput, pattern: this.pattern, list: this.datalistId, part: "field", placeholder: this.placeholder, readOnly: this.readonly, ref: input => (this.nativeInput = input), required: this.required, step: this.step, tabIndex: this.tabindex, type: this.type === 'password' && this.isPasswordVisible ? 'text' : this.type, value: this.value }), this.type === 'number'
634
634
  && this.controlsLayout === 'vertical'
635
- && h("div", { key: '89b357eef86d2ceac87ea24fd781ce0660b1dd75', class: "counter counter--vertical" }, h("mds-button", { key: 'a3c0f787f14664d107f6337c8c96ecdbf66e640d', class: "counter-button", icon: this.controlsIcon === 'arrow' ? miBaselineKeyboardArrowUp : miBaselineAdd, onClick: this.stepUp, tabindex: "0", title: this.t.get('increase'), part: "counter-button-increase" }), h("mds-button", { key: '6fe96cbcd332c278f0f79872344e926ef0a28e34', class: "counter-button", icon: this.controlsIcon === 'arrow' ? miBaselineKeyboardArrowDown : miBaselineRemove, onClick: this.stepDown, tabindex: "0", title: this.t.get('decrease'), part: "counter-button-decrease" })), this.type === 'number'
635
+ && h("div", { key: 'b1143910c3612421b69ebe9a70db755d03c0c633', class: "counter counter--vertical" }, h("mds-button", { key: '9b37d4cb10284697cffbc4158b6d9896e24c28c3', class: "counter-button", icon: this.controlsIcon === 'arrow' ? miBaselineKeyboardArrowUp : miBaselineAdd, onClick: this.stepUp, tabindex: "0", title: this.t.get('increase'), part: "counter-button-increase" }), h("mds-button", { key: '2da5ac1d379d52bb86baf345b632ac1d07adfbcc', class: "counter-button", icon: this.controlsIcon === 'arrow' ? miBaselineKeyboardArrowDown : miBaselineRemove, onClick: this.stepDown, tabindex: "0", title: this.t.get('decrease'), part: "counter-button-decrease" })), this.type === 'number'
636
636
  && this.controlsLayout === 'horizontal'
637
- && h("mds-button", { key: '9587896486289975925bce067370f0a78f01b854', class: "counter-button counter-button--horizontal counter-button--increase", icon: this.controlsIcon === 'arrow' ? miBaselineKeyboardArrowUp : miBaselineAdd, onClick: this.stepUp, tabindex: "0", title: this.t.get('increase'), part: "counter-button-increase" }), this.type === 'password'
638
- && h("mds-button", { key: '2134c310ead1357c7a9dd3bf8d7ae87c787ee831', class: "password-toggle-button", icon: this.isPasswordVisible ? miBaselineVisibleOff : miBaselineVisible, onClick: () => this.isPasswordVisible = !this.isPasswordVisible, tabindex: "0", tone: "quiet", title: this.isPasswordVisible ? this.t.get('hidePassword') : this.t.get('showPassword'), part: "password-toggle-button" }), this.mic
639
- && h("mds-button", { key: '3d7ce3e77fdb1e35d7fef82d7aaadfa61557e15c', class: clsx('mic-toggle-button', this.isRecording && 'mic-toggle-button--recording'), icon: this.speechToTextIcon, onClick: () => this.toggleTextRecognition(), tabindex: "0", variant: "dark", tone: "quiet", title: this.speechToTextLabel, part: "mic-toggle-button" }), h("mds-input-tip", { key: 'bf11412de1e94a7e1f1053b0642a45e660e2924b', lang: this.language, position: "top", active: this.hasFocus, part: 'tip-top' }, this.disabled && h("mds-input-tip-item", { key: '78db87c56183f146ca95708e4639cb5f02fc7fb4', expanded: true, variant: "disabled" }), this.readonly && h("mds-input-tip-item", { key: '6d871ed1af6215328d1e3a54a50c375380029a5e', expanded: true, variant: "readonly" }), this.required &&
640
- h("mds-input-tip-item", { key: '71ff8ca81fd34054a7b57ad527a62f08f1a5fbf5', expanded: this.hasFocus, variant: this.isValid ? 'required-success' : 'required' })), h("mds-input-tip", { key: '19fd83a13cf0d3d566773dbf11d360ace3653f32', lang: this.language, position: "bottom", active: this.hasFocus, part: 'tip-bottom' }, this.tip && h("mds-input-tip-item", { key: 'df2a278cd5ad1fa953686e32c9e9b43411100363', expanded: true, variant: "text" }, this.tip), this.maxlength && h("mds-input-tip-item", { key: 'd0164eafb89b3d5de13476f335e07500f6cab036', part: "tip-count", expanded: true, variant: this.countVariant }, this.currentLengthLabel)), this.datalist &&
641
- h("datalist", { key: '2948279e931a63f51f8eb8b59c9bff99a6315502', id: this.datalistId, class: "datalist" }, this.datalist.map((element, i) => {
637
+ && h("mds-button", { key: '5cc396eaee3ad5ffcd88f6b29f611a7964f610b8', class: "counter-button counter-button--horizontal counter-button--increase", icon: this.controlsIcon === 'arrow' ? miBaselineKeyboardArrowUp : miBaselineAdd, onClick: this.stepUp, tabindex: "0", title: this.t.get('increase'), part: "counter-button-increase" }), this.type === 'password'
638
+ && h("mds-button", { key: 'cc00dcade25b03f409259915e3b5f6e5a2455f86', class: "password-toggle-button", icon: this.isPasswordVisible ? miBaselineVisibleOff : miBaselineVisible, onClick: () => this.isPasswordVisible = !this.isPasswordVisible, tabindex: "0", tone: "quiet", title: this.isPasswordVisible ? this.t.get('hidePassword') : this.t.get('showPassword'), part: "password-toggle-button" }), this.mic
639
+ && h("mds-button", { key: '54a50f335ccddfd1a9eaed43d022cfabdbfe9cec', class: clsx('mic-toggle-button', this.isRecording && 'mic-toggle-button--recording'), icon: this.speechToTextIcon, onClick: () => this.toggleTextRecognition(), tabindex: "0", variant: "dark", tone: "quiet", title: this.speechToTextLabel, part: "mic-toggle-button" }), h("mds-input-tip", { key: '80f7c4c48c5af44ca38a53fa5ad979787effd64b', lang: this.language, position: "top", active: this.hasFocus, part: 'tip-top' }, this.disabled && h("mds-input-tip-item", { key: '96b7685242f4553ee779632714e76370bdfc2fb8', expanded: true, variant: "disabled" }), this.readonly && h("mds-input-tip-item", { key: '622ba54b143433de4043b24bd66071b2c2ea9252', expanded: true, variant: "readonly" }), this.required &&
640
+ h("mds-input-tip-item", { key: '2f8a18a7c813af38db53f5454985c82b05e4a488', expanded: this.hasFocus, variant: this.isValid ? 'required-success' : 'required' })), h("mds-input-tip", { key: '39c14635fa94b923e7915f406414d990a6d5915c', lang: this.language, position: "bottom", active: this.hasFocus, part: 'tip-bottom' }, this.tip && h("mds-input-tip-item", { key: 'b267fd5c6de684068938b8e012ca03b5feab129a', expanded: true, variant: "text" }, this.tip), this.maxlength && h("mds-input-tip-item", { key: 'f9e0203c4686831dd3a713c0bc5de3b27f8ed23a', part: "tip-count", expanded: true, variant: this.countVariant }, this.currentLengthLabel)), this.datalist &&
641
+ h("datalist", { key: '257a7e6dad1352eafd5149280b2ccf425bd6cf38', id: this.datalistId, class: "datalist" }, this.datalist.map((element, i) => {
642
642
  return h("option", { key: i, value: element });
643
- })), this.icon && !this.await && h("mds-icon", { key: '25376a2ba786d27167a57e672bbcc079843a9f09', class: clsx('icon', this.variant), name: this.icon }), h("mds-spinner", { key: 'c22d6f831f668828ccfcce15c83803a7323845db', running: this.await, class: clsx('await', this.variant) })));
643
+ })), this.icon && !this.await && h("mds-icon", { key: '85e7ff12195f5ad48eacb59e95532572ea6e14bc', class: clsx('icon', this.variant), name: this.icon }), h("mds-spinner", { key: '0f35bc59f5f4a5aae941adbd3d0b8d0ddd8a1e42', running: this.await, class: clsx('await', this.variant) })));
644
644
  }
645
645
  static get formAssociated() { return true; }
646
646
  get el() { return this; }
@@ -1,5 +1,5 @@
1
1
  {
2
- "timestamp": "2026-03-24T16:26:27",
2
+ "timestamp": "2026-03-31T13:54:23",
3
3
  "compiler": {
4
4
  "name": "@stencil/core",
5
5
  "version": "4.27.2",
@@ -11615,6 +11615,33 @@
11615
11615
  "docs": "",
11616
11616
  "docsTags": []
11617
11617
  },
11618
+ {
11619
+ "name": "getErrors",
11620
+ "returns": {
11621
+ "type": "Promise<MdsValidationErrors | null>",
11622
+ "docs": ""
11623
+ },
11624
+ "complexType": {
11625
+ "signature": "() => Promise<MdsValidationErrors | null>",
11626
+ "parameters": [],
11627
+ "references": {
11628
+ "Promise": {
11629
+ "location": "global",
11630
+ "id": "global::Promise"
11631
+ },
11632
+ "MdsValidationErrors": {
11633
+ "location": "import",
11634
+ "path": "src/components",
11635
+ "id": "src/components.d.ts::MdsValidationErrors"
11636
+ }
11637
+ },
11638
+ "return": "Promise<MdsValidationErrors | null>"
11639
+ },
11640
+ "signature": "getErrors() => Promise<MdsValidationErrors | null>",
11641
+ "parameters": [],
11642
+ "docs": "",
11643
+ "docsTags": []
11644
+ },
11618
11645
  {
11619
11646
  "name": "setValue",
11620
11647
  "returns": {
@@ -11686,6 +11713,20 @@
11686
11713
  "composed": true,
11687
11714
  "docs": "",
11688
11715
  "docsTags": []
11716
+ },
11717
+ {
11718
+ "event": "mdsInputValidation",
11719
+ "detail": "boolean",
11720
+ "bubbles": true,
11721
+ "complexType": {
11722
+ "original": "boolean",
11723
+ "resolved": "boolean",
11724
+ "references": {}
11725
+ },
11726
+ "cancelable": true,
11727
+ "composed": true,
11728
+ "docs": "Emits a boolean event when a input execute validation",
11729
+ "docsTags": []
11689
11730
  }
11690
11731
  ],
11691
11732
  "listeners": [],
@@ -27433,6 +27474,11 @@
27433
27474
  "docstring": "",
27434
27475
  "path": "src/components/mds-input/meta/validators.ts"
27435
27476
  },
27477
+ "src/components.d.ts::MdsValidationErrors": {
27478
+ "declaration": "any",
27479
+ "docstring": "",
27480
+ "path": "src/components.d.ts"
27481
+ },
27436
27482
  "src/type/variant.ts::ThemeStatusVariantType": {
27437
27483
  "declaration": "export type ThemeStatusVariantType =\n | 'error'\n | 'info'\n | 'success'\n | 'warning'",
27438
27484
  "docstring": "",
@@ -5,7 +5,7 @@ import { g as globalScripts } from './app-globals-0f993ce5.js';
5
5
  const defineCustomElements = async (win, options) => {
6
6
  if (typeof window === 'undefined') return undefined;
7
7
  await globalScripts();
8
- return bootstrapLazy(JSON.parse("[[\"mds-input-upload\",[[65,\"mds-input-upload\",{\"accept\":[513],\"maxFileSize\":[514,\"max-file-size\"],\"maxFiles\":[514,\"max-files\"],\"sort\":[513],\"initialValue\":[16],\"language\":[32],\"actionTitle\":[32],\"files\":[32],\"progress\":[32],\"animateText\":[32],\"updateLang\":[64],\"getFiles\":[64],\"getFilesError\":[64],\"reset\":[64]},null,{\"initialValue\":[\"updateInitialValue\"],\"maxFiles\":[\"updateActionTitle\"]}]]],[\"mds-input-date\",[[65,\"mds-input-date\",{\"value\":[513],\"name\":[513],\"variant\":[1537],\"min\":[1537],\"max\":[1537],\"delay\":[514],\"disabled\":[516],\"readonly\":[516],\"required\":[516],\"isValid\":[32],\"language\":[32],\"touched\":[32],\"calendarKey\":[32],\"dropdownRef\":[32],\"hasFocus\":[32],\"updateLang\":[64],\"focusInput\":[64],\"setValue\":[64]},null,{\"value\":[\"handleValue\"]}]]],[\"mds-policy-ai\",[[1,\"mds-policy-ai\",{\"headline\":[513],\"description\":[513],\"variant\":[513],\"href\":[513],\"language\":[32],\"updateLang\":[64]}]]],[\"mds-avatar-stack\",[[1,\"mds-avatar-stack\",{\"size\":[513],\"total\":[514]}]]],[\"mds-input-date-range\",[[65,\"mds-input-date-range\",{\"startDate\":[513,\"start-date\"],\"endDate\":[513,\"end-date\"],\"min\":[513],\"max\":[513],\"delay\":[514],\"name\":[513],\"calendarKey\":[32],\"internalStartDate\":[32],\"internalEndDate\":[32],\"dropdownRef\":[32],\"hasPreselection\":[32],\"language\":[32],\"updateLang\":[64],\"preselect\":[64]},null,{\"startDate\":[\"handleStartDateChange\"],\"endDate\":[\"handleEndDateChange\"]}]]],[\"mds-input-otp\",[[65,\"mds-input-otp\",{\"length\":[2],\"autosubmit\":[516],\"value\":[1537]}]]],[\"mds-pref-language\",[[1,\"mds-pref-language\",{\"size\":[513],\"set\":[1537],\"showDropdown\":[32],\"language\":[32],\"updateLang\":[64]}]]],[\"mds-table-header\",[[1,\"mds-table-header\",{\"selectable\":[4],\"selectAll\":[32],\"hasActions\":[32],\"indeterminate\":[32],\"hasSelection\":[32],\"language\":[32],\"updateLang\":[64],\"setSelection\":[64]}]]],[\"mds-entity\",[[1,\"mds-entity\",{\"await\":[516],\"icon\":[513],\"src\":[513],\"initials\":[513],\"tone\":[513],\"variant\":[513]}]]],[\"mds-pref-animation\",[[1,\"mds-pref-animation\",{\"size\":[513],\"mode\":[1537],\"language\":[32],\"updateLang\":[64]},null,{\"mode\":[\"modeChanged\"]}]]],[\"mds-pref-consumption\",[[1,\"mds-pref-consumption\",{\"size\":[513],\"mode\":[1537],\"language\":[32],\"updateLang\":[64]},null,{\"mode\":[\"modeChanged\"]}]]],[\"mds-pref-contrast\",[[1,\"mds-pref-contrast\",{\"size\":[513],\"mode\":[1537],\"language\":[32],\"updateLang\":[64]},null,{\"mode\":[\"modeChanged\"]}]]],[\"mds-pref-theme\",[[1,\"mds-pref-theme\",{\"size\":[513],\"mode\":[1537],\"transition\":[1537],\"language\":[32],\"disabled\":[32],\"updateLang\":[64]},null,{\"mode\":[\"modeChanged\"]}]]],[\"mds-push-notification-item\",[[1,\"mds-push-notification-item\",{\"datetime\":[1537],\"dateFormat\":[513,\"date-format\"],\"deletable\":[1540],\"icon\":[513],\"initials\":[1537],\"message\":[513],\"preview\":[513],\"src\":[513],\"subject\":[513],\"tone\":[513],\"variant\":[513],\"language\":[32],\"updateLang\":[64]},null,{\"deletable\":[\"handleDeletableChange\"]}]]],[\"mds-button-dropdown\",[[1,\"mds-button-dropdown\",{\"label\":[1],\"autoFocus\":[4,\"auto-focus\"],\"icon\":[1537],\"type\":[513],\"variant\":[513],\"tone\":[513],\"size\":[513],\"active\":[1540],\"disabled\":[1540],\"await\":[1540],\"href\":[513],\"target\":[1],\"truncate\":[513]}]]],[\"mds-header\",[[1,\"mds-header\",{\"appearance\":[1537],\"appearanceSet\":[513,\"appearance-set\"],\"autoHide\":[514,\"auto-hide\"],\"backdrop\":[516],\"menu\":[513],\"nav\":[513],\"threshold\":[514],\"visibility\":[1537],\"hasMenu\":[32],\"isOpened\":[32],\"setOpened\":[64]},null,{\"menu\":[\"onMenuChangedHandler\"],\"nav\":[\"onNavChangedHandler\"],\"appearanceSet\":[\"onAppearanceSetChangedHandler\"],\"visibility\":[\"handleVisibilityChange\"]}]]],[\"mds-keyboard\",[[1,\"mds-keyboard\",{\"test\":[1537],\"try\":[516],\"language\":[32],\"testPassed\":[32],\"updateLang\":[64]},null,{\"try\":[\"handleTryProperty\"]}]]],[\"mds-radial-menu-item\",[[1,\"mds-radial-menu-item\",{\"tooltip\":[513],\"icon\":[1537],\"tone\":[513],\"variant\":[513],\"size\":[513]}]]],[\"mds-status-bar\",[[1,\"mds-status-bar\",{\"description\":[513],\"overflow\":[513],\"position\":[513],\"visible\":[1540],\"hide\":[64]},null,{\"visible\":[\"handleVisbilityProp\"]}]]],[\"mds-stepper-bar-item\",[[1,\"mds-stepper-bar-item\",{\"label\":[1],\"step\":[4],\"badge\":[1540],\"icon\":[1],\"iconChecked\":[1,\"icon-checked\"],\"done\":[516],\"current\":[1540],\"value\":[513],\"typography\":[1],\"isDone\":[32],\"isCurrent\":[32],\"index\":[32],\"language\":[32],\"updateLang\":[64]},null,{\"done\":[\"selectedHandler\"],\"current\":[\"currentHandler\"]}]]],[\"mds-breadcrumb\",[[1,\"mds-breadcrumb\",{\"back\":[4],\"language\":[32],\"updateLang\":[64]},[[0,\"mdsBreadcrumbItemSelect\",\"activedEventHandler\"]]]]],[\"mds-header-bar\",[[1,\"mds-header-bar\",{\"menu\":[513],\"nav\":[513],\"isOpened\":[32],\"setOpened\":[64]}]]],[\"mds-horizontal-scroll\",[[1,\"mds-horizontal-scroll\",{\"controls\":[1537],\"navigation\":[513],\"snap\":[513],\"hasCompatibility\":[32],\"showForward\":[32],\"showBack\":[32]},null,{\"navigation\":[\"watchNavigation\"]}]]],[\"mds-input-date-range-preselection\",[[1,\"mds-input-date-range-preselection\",{\"selected\":[1540],\"start\":[513],\"end\":[513]}]]],[\"mds-label\",[[1,\"mds-label\",{\"labelAction\":[1,\"label-action\"],\"variant\":[513],\"tone\":[513],\"truncate\":[513],\"typography\":[1],\"deletable\":[4],\"language\":[32],\"updateLang\":[64]}]]],[\"mds-note\",[[1,\"mds-note\",{\"deletable\":[4],\"variant\":[513],\"language\":[32],\"updateLang\":[64]}]]],[\"mds-pref-language-item\",[[1,\"mds-pref-language-item\",{\"code\":[513],\"selected\":[516],\"language\":[32],\"updateLang\":[64]}]]],[\"mds-push-notification\",[[1,\"mds-push-notification\",{\"visible\":[1540],\"behavior\":[1],\"show\":[64],\"hide\":[64],\"removeNotification\":[64]},null,{\"visible\":[\"visibleChanged\"]}]]],[\"mds-radial-menu\",[[1,\"mds-radial-menu\",{\"angleStart\":[514,\"angle-start\"],\"angleEnd\":[514,\"angle-end\"],\"radius\":[514],\"direction\":[513],\"opened\":[1540],\"disc\":[1540],\"backdrop\":[516],\"interaction\":[513],\"icon\":[1537],\"variant\":[513],\"tone\":[513],\"size\":[513]},null,{\"disc\":[\"onDiscChanged\"],\"backdrop\":[\"backdropChanged\"],\"interaction\":[\"onInteractionChange\"],\"angleStart\":[\"onAngleStartChange\"],\"angleEnd\":[\"onAngleEndChange\"],\"radius\":[\"onRadiusChange\"],\"size\":[\"onSizeChange\"],\"opened\":[\"onOpenedChange\"]}]]],[\"mds-table-row\",[[1,\"mds-table-row\",{\"interactive\":[516],\"overlayActions\":[516,\"overlay-actions\"],\"selectable\":[516],\"selected\":[1540],\"value\":[520],\"sizerWidth\":[32],\"language\":[32],\"updateLang\":[64]}]]],[\"mds-tree-item\",[[1,\"mds-tree-item\",{\"actions\":[513],\"async\":[516],\"depth\":[514],\"label\":[1],\"toggle\":[513],\"expanded\":[1540],\"truncate\":[513],\"icon\":[1],\"hasActions\":[32],\"hasChildren\":[32],\"currentToggleIcon\":[32],\"await\":[32],\"language\":[32],\"updateLang\":[64],\"expand\":[64]},null,{\"toggle\":[\"handleIconChange\"],\"expanded\":[\"handleExpandedChange\"]}]]],[\"mds-url-view\",[[1,\"mds-url-view\",{\"icon\":[513],\"label\":[513],\"src\":[513],\"loading\":[513],\"language\":[32],\"updateLang\":[64]}]]],[\"mds-accordion-timer-item\",[[1,\"mds-accordion-timer-item\",{\"typography\":[1],\"selected\":[516],\"description\":[1],\"duration\":[514],\"progress\":[2],\"uuid\":[2]},null,{\"selected\":[\"handleSelected\"]}]]],[\"mds-benchmark-bar\",[[1,\"mds-benchmark-bar\",{\"alias\":[1],\"typography\":[1],\"value\":[2],\"variant\":[513]}]]],[\"mds-file\",[[1,\"mds-file\",{\"suffix\":[513],\"description\":[1],\"filename\":[1],\"preview\":[1],\"showDownloadedIcon\":[4,\"show-downloaded-icon\"],\"format\":[1537],\"language\":[32],\"wasDownloaded\":[32],\"updateLang\":[64]},null,{\"filename\":[\"handleFilename\"]}]]],[\"mds-filter\",[[1,\"mds-filter\",{\"autoReset\":[516,\"auto-reset\"],\"label\":[1],\"multiple\":[516],\"reset\":[516],\"active\":[32],\"itemsSelected\":[32]},[[0,\"mdsFilterItemSelect\",\"activeEventHandler\"]]]]],[\"mds-input-select\",[[65,\"mds-input-select\",{\"autocomplete\":[513],\"autoFocus\":[516,\"auto-focus\"],\"placeholder\":[513],\"name\":[513],\"disabled\":[516],\"required\":[516],\"multiple\":[516],\"size\":[514],\"value\":[520],\"defaultValue\":[520,\"default-value\"],\"variant\":[513],\"hasFocus\":[32],\"language\":[32],\"updateLang\":[64],\"setValue\":[64]},null,{\"value\":[\"valueChanged\"],\"disabled\":[\"disabledChanged\"],\"placeholder\":[\"placeholderChanged\"]}]]],[\"mds-paginator\",[[1,\"mds-paginator\",{\"pages\":[2],\"currentPage\":[1538,\"current-page\"]}]]],[\"mds-keyboard-key\",[[1,\"mds-keyboard-key\",{\"name\":[513],\"pressed\":[516],\"language\":[32],\"updateLang\":[64]}]]],[\"mds-kpi-item\",[[1,\"mds-kpi-item\",{\"label\":[1],\"description\":[1],\"threshold\":[2],\"icon\":[1],\"isIntersecting\":[32]}]]],[\"mds-list-item\",[[1,\"mds-list-item\",{\"typography\":[513],\"variant\":[1],\"icon\":[1]}]]],[\"mds-mention\",[[1,\"mds-mention\",{\"icon\":[513],\"label\":[513],\"size\":[513]}]]],[\"mds-tab-bar-item\",[[1,\"mds-tab-bar-item\",{\"icon\":[1],\"selected\":[1540],\"typography\":[1],\"isSelected\":[32]},null,{\"selected\":[\"validateSelected\"]}]]],[\"mds-usage\",[[1,\"mds-usage\",{\"variant\":[1],\"alias\":[1],\"language\":[32],\"updateLang\":[64]}]]],[\"mds-accordion-item\",[[1,\"mds-accordion-item\",{\"typography\":[1],\"selected\":[1540],\"label\":[1]}]]],[\"mds-bibliography\",[[1,\"mds-bibliography\",{\"format\":[1],\"author\":[1],\"name\":[1],\"publisher\":[1],\"date\":[1],\"location\":[1],\"rel\":[1],\"typography\":[1],\"variant\":[1],\"url\":[1]}]]],[\"mds-breadcrumb-item\",[[1,\"mds-breadcrumb-item\",{\"selected\":[1540]}]]],[\"mds-input-field\",[[65,\"mds-input-field\",{\"label\":[1025],\"message\":[1025],\"variant\":[1537]}]]],[\"mds-input-range\",[[65,\"mds-input-range\",{\"formatValue\":[16],\"name\":[513],\"max\":[2],\"min\":[2],\"step\":[2],\"disabled\":[1540],\"value\":[1538],\"progress\":[32]},null,{\"disabled\":[\"disabledChanged\"],\"value\":[\"valueChanged\"],\"min\":[\"minChanged\"],\"max\":[\"maxChanged\"],\"step\":[\"stepChanged\"]}]]],[\"mds-notification\",[[1,\"mds-notification\",{\"target\":[1],\"value\":[1538],\"visible\":[1540],\"strategy\":[1537],\"max\":[514]},null,{\"strategy\":[\"strategyHandler\"]}]]],[\"mds-pref\",[[1,\"mds-pref\",{\"size\":[513],\"controller\":[1540],\"showReload\":[32],\"language\":[32],\"updateLang\":[64]},null,{\"controller\":[\"handleControllerChange\"],\"size\":[\"handleSizeChange\"]}]]],[\"mds-price-table-features\",[[1,\"mds-price-table-features\",{\"label\":[1]}]]],[\"mds-price-table-features-cell\",[[1,\"mds-price-table-features-cell\",{\"type\":[513]}]]],[\"mds-price-table-list\",[[1,\"mds-price-table-list\",{\"hasItems\":[32]}]]],[\"mds-price-table-list-item\",[[1,\"mds-price-table-list-item\",{\"supported\":[516],\"typography\":[513]}]]],[\"mds-quote\",[[1,\"mds-quote\",{\"typography\":[1],\"tag\":[1]}]]],[\"mds-toast\",[[1,\"mds-toast\",{\"duration\":[1538],\"visible\":[1540],\"variant\":[513],\"tone\":[513],\"position\":[1537]},null,{\"visible\":[\"visibleChanged\"],\"duration\":[\"durationChanged\"]}]]],[\"mds-accordion\",[[1,\"mds-accordion\",{\"multiple\":[4],\"closable\":[4]},[[0,\"mdsAccordionItemSelect\",\"selectedEventHandler\"],[0,\"mdsAccordionItemUnselect\",\"unselectedEventHandler\"]]]]],[\"mds-accordion-timer\",[[1,\"mds-accordion-timer\",{\"duration\":[514],\"paused\":[516],\"time\":[32]},[[0,\"mdsAccordionTimerItemClickSelect\",\"onClickSelect\"],[0,\"mdsAccordionTimerItemSelect\",\"onSelect\"],[0,\"mdsAccordionTimerItemMouseEnterSelect\",\"onMouseEnterSelect\"],[0,\"mdsAccordionTimerItemMouseLeaveSelect\",\"onMouseLeaveSelect\"]],{\"paused\":[\"handlePaused\"]}]]],[\"mds-author\",[[1,\"mds-author\"]]],[\"mds-button-group\",[[1,\"mds-button-group\"]]],[\"mds-card\",[[1,\"mds-card\",{\"autoGrid\":[516,\"auto-grid\"],\"layout\":[32]}]]],[\"mds-card-content\",[[1,\"mds-card-content\"]]],[\"mds-card-footer\",[[1,\"mds-card-footer\"]]],[\"mds-card-header\",[[1,\"mds-card-header\"]]],[\"mds-card-media\",[[1,\"mds-card-media\"]]],[\"mds-details\",[[1,\"mds-details\",{\"opened\":[1540],\"isOpened\":[32],\"hasIcon\":[32]},null,{\"opened\":[\"validateOpened\"]}]]],[\"mds-emoji\",[[1,\"mds-emoji\",{\"name\":[513],\"agree\":[64],\"disagree\":[64],\"startThinking\":[64],\"stopThinking\":[64],\"startBlinking\":[64],\"stopBlinking\":[64],\"stopFollowMouse\":[64],\"startFollowMouse\":[64]}]]],[\"mds-hr\",[[1,\"mds-hr\"]]],[\"mds-kpi\",[[1,\"mds-kpi\"]]],[\"mds-list\",[[1,\"mds-list\"]]],[\"mds-price-table\",[[1,\"mds-price-table\"]]],[\"mds-price-table-features-row\",[[1,\"mds-price-table-features-row\",{\"cellPercWidth\":[32]}]]],[\"mds-price-table-header\",[[1,\"mds-price-table-header\"]]],[\"mds-stepper-bar\",[[1,\"mds-stepper-bar\",{\"itemsDone\":[2,\"items-done\"],\"navigation\":[513],\"currentItem\":[32]},[[0,\"mdsStepperBarItemDone\",\"changeEventHandler\"]],{\"itemsDone\":[\"itemDone\"]}]]],[\"mds-tab-bar\",[[1,\"mds-tab-bar\",null,[[0,\"mdsTabBarItemSelect\",\"changeEventHandler\"]]]]],[\"mds-table\",[[1,\"mds-table\",{\"interactive\":[4],\"selectable\":[4],\"selection\":[1540],\"selectedRows\":[32],\"updateSelection\":[64],\"selectAll\":[64]},null,{\"interactive\":[\"onTableInteractive\"],\"selectable\":[\"onTableSelectable\"]}]]],[\"mds-table-body\",[[1,\"mds-table-body\",{\"interactive\":[516],\"selection\":[516]}]]],[\"mds-table-footer\",[[1,\"mds-table-footer\"]]],[\"mds-tree\",[[1,\"mds-tree\",{\"appearance\":[513],\"async\":[516],\"label\":[1],\"toggle\":[513],\"togglePosition\":[513,\"toggle-position\"],\"expanded\":[1540],\"truncate\":[513],\"actions\":[513]},null,{\"expanded\":[\"handleExpandedChange\"],\"toggle\":[\"handleToggleChange\"],\"truncate\":[\"handleTruncateChange\"]}]]],[\"mds-video-wall\",[[1,\"mds-video-wall\",{\"autoplay\":[4],\"loop\":[4],\"muted\":[4],\"noise\":[1],\"poster\":[1],\"preload\":[1],\"src\":[1]}]]],[\"mds-zero\",[[1,\"mds-zero\"]]],[\"mds-text\",[[1,\"mds-text\",{\"animation\":[1],\"tag\":[1537],\"text\":[513],\"truncate\":[513],\"typography\":[513],\"variant\":[513]},null,{\"text\":[\"textHandler\"]}]]],[\"mds-avatar-stack-item\",[[1,\"mds-avatar-stack-item\",{\"count\":[514],\"initials\":[1537],\"src\":[513],\"tone\":[513],\"variant\":[513]}]]],[\"mds-file-preview\",[[1,\"mds-file-preview\",{\"deletable\":[516],\"downloadable\":[516],\"description\":[513],\"filename\":[513],\"filesize\":[513],\"message\":[513],\"truncate\":[513],\"src\":[513],\"suffix\":[513],\"icon\":[513],\"variant\":[513],\"format\":[1537],\"language\":[32],\"updateLang\":[64]},null,{\"filename\":[\"handleFilename\"],\"downloadable\":[\"handleDownloadable\"]}]]],[\"mds-input-tip_2\",[[1,\"mds-input-tip-item\",{\"variant\":[513],\"expanded\":[1540],\"language\":[32],\"updateLang\":[64]},null,{\"expanded\":[\"handleEcpandedChanged\"]}],[1,\"mds-input-tip\",{\"active\":[516],\"position\":[513]}]]],[\"mds-input\",[[65,\"mds-input\",{\"autocomplete\":[513],\"autofocus\":[516],\"await\":[516],\"controlsLayout\":[513,\"controls-layout\"],\"controlsIcon\":[513,\"controls-icon\"],\"controlIncreaseLabel\":[513,\"control-increase-label\"],\"controlDecreaseLabel\":[513,\"control-decrease-label\"],\"datalist\":[16],\"disabled\":[516],\"icon\":[1537],\"max\":[520],\"maxlength\":[1538],\"mic\":[516],\"min\":[520],\"minlength\":[514],\"name\":[513],\"pattern\":[513],\"placeholder\":[513],\"readonly\":[516],\"required\":[516],\"variant\":[1537],\"tip\":[513],\"step\":[513],\"type\":[513],\"typography\":[513],\"value\":[1537],\"hasFocus\":[32],\"language\":[32],\"isRecording\":[32],\"currentLengthLabel\":[32],\"countVariant\":[32],\"isPasswordVisible\":[32],\"updateLang\":[64],\"addValidator\":[64],\"removeValidator\":[64],\"hasValidator\":[64],\"getErrors\":[64],\"setFocus\":[64],\"getInputElement\":[64]},null,{\"value\":[\"valueChanged\"],\"variant\":[\"variantChanged\"],\"maxlength\":[\"maxLengthChanged\"],\"disabled\":[\"disabledChanged\"]}]]],[\"mds-table-header-cell\",[[1,\"mds-table-header-cell\",{\"sortable\":[516],\"label\":[513],\"direction\":[1537],\"isAscending\":[32]},null,{\"sortable\":[\"sortableHandler\"],\"direction\":[\"directionHandler\"]}]]],[\"mds-filter-item\",[[1,\"mds-filter-item\",{\"selected\":[1540],\"label\":[513],\"icon\":[513],\"value\":[513],\"count\":[513],\"disabled\":[516]}]]],[\"mds-paginator-item\",[[1,\"mds-paginator-item\",{\"icon\":[513],\"selected\":[516],\"disabled\":[516]}]]],[\"mds-separator\",[[1,\"mds-separator\"]]],[\"mds-modal\",[[1,\"mds-modal\",{\"opened\":[1540],\"backdrop\":[1540],\"position\":[1537],\"animating\":[1537],\"animation\":[513],\"overflow\":[513],\"interaction\":[513],\"close\":[64]},null,{\"opened\":[\"handleOpenProp\"],\"backdrop\":[\"handleBackdropProp\"]}]]],[\"mds-tooltip\",[[1,\"mds-tooltip\",{\"arrow\":[4],\"arrowPadding\":[2,\"arrow-padding\"],\"autoPlacement\":[516,\"auto-placement\"],\"flip\":[4],\"target\":[513],\"offset\":[2],\"placement\":[513],\"typography\":[1],\"shift\":[4],\"shiftPadding\":[2,\"shift-padding\"],\"strategy\":[513],\"visible\":[1540]},null,{\"arrow\":[\"arrowChanged\"],\"autoPlacement\":[\"autoPlacementChanged\"],\"flip\":[\"flipChanged\"],\"offset\":[\"offsetChanged\"],\"placement\":[\"placementChanged\"],\"shift\":[\"shiftChanged\"],\"shiftPadding\":[\"shiftPaddingChanged\"],\"strategy\":[\"strategyChanged\"],\"visible\":[\"visibleChanged\"],\"target\":[\"targetChanged\"]}]]],[\"mds-button_3\",[[65,\"mds-button\",{\"autoFocus\":[4,\"auto-focus\"],\"hasText\":[1540,\"has-text\"],\"icon\":[1537],\"iconPosition\":[1,\"icon-position\"],\"type\":[513],\"variant\":[513],\"tone\":[513],\"size\":[513],\"active\":[1540],\"disabled\":[1540],\"await\":[1540],\"href\":[513],\"target\":[1],\"truncate\":[513]},null,{\"disabled\":[\"disabledChanged\"],\"await\":[\"awaitChanged\",\"handleAwaitChange\"],\"type\":[\"handleTypeChange\"],\"variant\":[\"handleVariantChange\"]}],[1,\"mds-spinner\",{\"running\":[1540]},null,{\"running\":[\"handleRunning\"]}],[1,\"mds-icon\",{\"name\":[513],\"svgHTML\":[32],\"_iconHref\":[32],\"setSvgPath\":[64]},null,{\"name\":[\"updateIcon\"]}]]],[\"mds-banner_3\",[[1,\"mds-banner\",{\"variant\":[513],\"tone\":[513],\"cockade\":[516],\"deletable\":[4],\"headline\":[1],\"icon\":[1],\"language\":[32],\"updateLang\":[64]}],[1,\"mds-chip\",{\"clickable\":[1540],\"deletable\":[4],\"disabled\":[4],\"icon\":[1],\"label\":[513],\"selected\":[1540],\"selectable\":[516],\"variant\":[513],\"tone\":[513],\"language\":[32],\"updateLang\":[64]},null,{\"selectable\":[\"handleSelectableProp\"],\"clickable\":[\"handleClickableProp\"],\"selected\":[\"handleSelectedProp\"]}],[1,\"mds-help\",{\"icon\":[1],\"autoPlacement\":[516,\"auto-placement\"],\"placement\":[513]}]]],[\"mds-avatar\",[[1,\"mds-avatar\",{\"icon\":[513],\"initials\":[1537],\"count\":[1538],\"src\":[513],\"tone\":[513],\"variant\":[1537],\"fallback\":[32],\"loaded\":[32]},null,{\"initials\":[\"initialsHandler\"],\"count\":[\"countHandler\"],\"src\":[\"srcHandler\"],\"icon\":[\"iconHandler\"]}]]],[\"mds-input-switch_2\",[[65,\"mds-input-switch\",{\"autofocus\":[516],\"checked\":[1540],\"disabled\":[1540],\"explicit\":[516],\"icon\":[513],\"indeterminate\":[1540],\"name\":[513],\"size\":[513],\"type\":[513],\"typography\":[513],\"variant\":[513],\"value\":[1537],\"dirty\":[32],\"hasText\":[32],\"language\":[32],\"updateLang\":[64]},null,{\"disabled\":[\"disabledChanged\"],\"checked\":[\"checkedChanged\"],\"explicit\":[\"explicitChanged\"]}],[1,\"mds-table-cell\",{\"value\":[520]}]]],[\"mds-calendar_2\",[[1,\"mds-calendar\",{\"rangePicker\":[4,\"range-picker\"],\"startDate\":[513,\"start-date\"],\"endDate\":[513,\"end-date\"],\"min\":[513],\"max\":[513],\"hasPreselection\":[32],\"currentDate\":[32],\"weekDaysinMonth\":[32],\"weekdays\":[32],\"startDateIdentifier\":[32],\"endDateIdentifier\":[32],\"isFirstClick\":[32],\"currentView\":[32],\"selectedYear\":[32],\"language\":[32],\"internalStartDate\":[32],\"internalEndDate\":[32],\"updateLang\":[64],\"updateCurrentDate\":[64]},null,{\"startDate\":[\"handleStartDate\"],\"endDate\":[\"handleEndDate\"]}],[1,\"mds-calendar-cell\",{\"month\":[513],\"date\":[513],\"orientation\":[513],\"preview\":[516],\"selection\":[513],\"disabled\":[516],\"today\":[516]}]]],[\"mds-badge\",[[1,\"mds-badge\",{\"variant\":[513],\"tone\":[513],\"typography\":[1],\"typographyVariant\":[1,\"typography-variant\"]}]]],[\"mds-dropdown\",[[1,\"mds-dropdown\",{\"arrow\":[516],\"arrowPadding\":[2,\"arrow-padding\"],\"autoPlacement\":[4,\"auto-placement\"],\"backdrop\":[516],\"flip\":[4],\"interaction\":[513],\"target\":[1],\"offset\":[2],\"placement\":[1],\"shift\":[4],\"shiftPadding\":[2,\"shift-padding\"],\"smooth\":[4],\"strategy\":[1],\"visible\":[1540],\"zIndex\":[2,\"z-index\"]},null,{\"arrow\":[\"arrowChanged\"],\"arrowPadding\":[\"arrowPaddingChanged\"],\"autoPlacement\":[\"autoPlacementChanged\"],\"backdrop\":[\"backdropChanged\"],\"flip\":[\"flipChanged\"],\"offset\":[\"offsetChanged\"],\"placement\":[\"placementChanged\"],\"shift\":[\"shiftChanged\"],\"shiftPadding\":[\"shiftPaddingChanged\"],\"strategy\":[\"strategyChanged\"],\"target\":[\"targetChanged\"],\"visible\":[\"visibleChanged\"]}]]],[\"mds-img\",[[1,\"mds-img\",{\"alt\":[1537],\"crossorigin\":[1],\"height\":[1],\"loading\":[1],\"referrerpolicy\":[1],\"sizes\":[1],\"src\":[1],\"srcset\":[1],\"srcsetConsumption\":[1,\"srcset-consumption\"],\"width\":[1],\"imageConsumptionLoaded\":[32],\"imageError\":[32],\"language\":[32],\"updateLang\":[64]},null,{\"srcsetConsumption\":[\"srcsetConsumptionHandler\"],\"src\":[\"srcHandler\"]}]]],[\"mds-progress_2\",[[1,\"mds-progress\",{\"progress\":[2],\"direction\":[513],\"variant\":[513],\"typography\":[1],\"steps\":[1],\"currentStep\":[32]},null,{\"progress\":[\"progressChanged\"],\"steps\":[\"stepsChanged\"]}],[1,\"mds-radial-progress\",{\"progress\":[2],\"typography\":[513],\"variant\":[513],\"animatedProgress\":[32]},null,{\"progress\":[\"onProgressChange\"]}]]],[\"mds-tab_2\",[[1,\"mds-tab-item\",{\"await\":[516],\"selected\":[1540],\"disabled\":[1540],\"icon\":[1],\"iconPosition\":[1,\"icon-position\"],\"type\":[1],\"size\":[513],\"value\":[513],\"href\":[513],\"isSelected\":[32],\"hasText\":[32]},null,{\"selected\":[\"validateActive\"]}],[1,\"mds-tab\",{\"direction\":[1537],\"scrollbar\":[1540],\"animation\":[513],\"fill\":[1540],\"overflow\":[1540],\"size\":[1537],\"sliderWidth\":[32],\"sliderHeight\":[32],\"sliderOffsetX\":[32],\"sliderOffsetY\":[32],\"overflowLeft\":[32],\"overflowRight\":[32]},[[0,\"mdsTabItemSelect\",\"changeEventHandler\"],[0,\"mdsTabItemFocus\",\"focusEventHandler\"]],{\"animation\":[\"handleAnimationChange\"],\"scrollbar\":[\"handleScrollbarChange\"],\"fill\":[\"handleFillChange\"],\"overflow\":[\"handleOverflowChange\"],\"size\":[\"handleSizeChange\"]}]]]]"), options);
8
+ return bootstrapLazy(JSON.parse("[[\"mds-input-upload\",[[65,\"mds-input-upload\",{\"accept\":[513],\"maxFileSize\":[514,\"max-file-size\"],\"maxFiles\":[514,\"max-files\"],\"sort\":[513],\"initialValue\":[16],\"language\":[32],\"actionTitle\":[32],\"files\":[32],\"progress\":[32],\"animateText\":[32],\"updateLang\":[64],\"getFiles\":[64],\"getFilesError\":[64],\"reset\":[64]},null,{\"initialValue\":[\"updateInitialValue\"],\"maxFiles\":[\"updateActionTitle\"]}]]],[\"mds-input-date\",[[65,\"mds-input-date\",{\"value\":[513],\"name\":[513],\"variant\":[1537],\"min\":[1537],\"max\":[1537],\"delay\":[514],\"disabled\":[516],\"readonly\":[516],\"required\":[516],\"isValid\":[32],\"language\":[32],\"touched\":[32],\"calendarKey\":[32],\"dropdownRef\":[32],\"hasFocus\":[32],\"updateLang\":[64],\"focusInput\":[64],\"setValue\":[64],\"getErrors\":[64]},null,{\"value\":[\"handleValue\"]}]]],[\"mds-policy-ai\",[[1,\"mds-policy-ai\",{\"headline\":[513],\"description\":[513],\"variant\":[513],\"href\":[513],\"language\":[32],\"updateLang\":[64]}]]],[\"mds-avatar-stack\",[[1,\"mds-avatar-stack\",{\"size\":[513],\"total\":[514]}]]],[\"mds-input-date-range\",[[65,\"mds-input-date-range\",{\"startDate\":[513,\"start-date\"],\"endDate\":[513,\"end-date\"],\"min\":[513],\"max\":[513],\"delay\":[514],\"name\":[513],\"calendarKey\":[32],\"internalStartDate\":[32],\"internalEndDate\":[32],\"dropdownRef\":[32],\"hasPreselection\":[32],\"language\":[32],\"updateLang\":[64],\"preselect\":[64]},null,{\"startDate\":[\"handleStartDateChange\"],\"endDate\":[\"handleEndDateChange\"]}]]],[\"mds-input-otp\",[[65,\"mds-input-otp\",{\"length\":[2],\"autosubmit\":[516],\"value\":[1537]}]]],[\"mds-pref-language\",[[1,\"mds-pref-language\",{\"size\":[513],\"set\":[1537],\"showDropdown\":[32],\"language\":[32],\"updateLang\":[64]}]]],[\"mds-table-header\",[[1,\"mds-table-header\",{\"selectable\":[4],\"selectAll\":[32],\"hasActions\":[32],\"indeterminate\":[32],\"hasSelection\":[32],\"language\":[32],\"updateLang\":[64],\"setSelection\":[64]}]]],[\"mds-entity\",[[1,\"mds-entity\",{\"await\":[516],\"icon\":[513],\"src\":[513],\"initials\":[513],\"tone\":[513],\"variant\":[513]}]]],[\"mds-pref-animation\",[[1,\"mds-pref-animation\",{\"size\":[513],\"mode\":[1537],\"language\":[32],\"updateLang\":[64]},null,{\"mode\":[\"modeChanged\"]}]]],[\"mds-pref-consumption\",[[1,\"mds-pref-consumption\",{\"size\":[513],\"mode\":[1537],\"language\":[32],\"updateLang\":[64]},null,{\"mode\":[\"modeChanged\"]}]]],[\"mds-pref-contrast\",[[1,\"mds-pref-contrast\",{\"size\":[513],\"mode\":[1537],\"language\":[32],\"updateLang\":[64]},null,{\"mode\":[\"modeChanged\"]}]]],[\"mds-pref-theme\",[[1,\"mds-pref-theme\",{\"size\":[513],\"mode\":[1537],\"transition\":[1537],\"language\":[32],\"disabled\":[32],\"updateLang\":[64]},null,{\"mode\":[\"modeChanged\"]}]]],[\"mds-push-notification-item\",[[1,\"mds-push-notification-item\",{\"datetime\":[1537],\"dateFormat\":[513,\"date-format\"],\"deletable\":[1540],\"icon\":[513],\"initials\":[1537],\"message\":[513],\"preview\":[513],\"src\":[513],\"subject\":[513],\"tone\":[513],\"variant\":[513],\"language\":[32],\"updateLang\":[64]},null,{\"deletable\":[\"handleDeletableChange\"]}]]],[\"mds-button-dropdown\",[[1,\"mds-button-dropdown\",{\"label\":[1],\"autoFocus\":[4,\"auto-focus\"],\"icon\":[1537],\"type\":[513],\"variant\":[513],\"tone\":[513],\"size\":[513],\"active\":[1540],\"disabled\":[1540],\"await\":[1540],\"href\":[513],\"target\":[1],\"truncate\":[513]}]]],[\"mds-header\",[[1,\"mds-header\",{\"appearance\":[1537],\"appearanceSet\":[513,\"appearance-set\"],\"autoHide\":[514,\"auto-hide\"],\"backdrop\":[516],\"menu\":[513],\"nav\":[513],\"threshold\":[514],\"visibility\":[1537],\"hasMenu\":[32],\"isOpened\":[32],\"setOpened\":[64]},null,{\"menu\":[\"onMenuChangedHandler\"],\"nav\":[\"onNavChangedHandler\"],\"appearanceSet\":[\"onAppearanceSetChangedHandler\"],\"visibility\":[\"handleVisibilityChange\"]}]]],[\"mds-keyboard\",[[1,\"mds-keyboard\",{\"test\":[1537],\"try\":[516],\"language\":[32],\"testPassed\":[32],\"updateLang\":[64]},null,{\"try\":[\"handleTryProperty\"]}]]],[\"mds-radial-menu-item\",[[1,\"mds-radial-menu-item\",{\"tooltip\":[513],\"icon\":[1537],\"tone\":[513],\"variant\":[513],\"size\":[513]}]]],[\"mds-status-bar\",[[1,\"mds-status-bar\",{\"description\":[513],\"overflow\":[513],\"position\":[513],\"visible\":[1540],\"hide\":[64]},null,{\"visible\":[\"handleVisbilityProp\"]}]]],[\"mds-stepper-bar-item\",[[1,\"mds-stepper-bar-item\",{\"label\":[1],\"step\":[4],\"badge\":[1540],\"icon\":[1],\"iconChecked\":[1,\"icon-checked\"],\"done\":[516],\"current\":[1540],\"value\":[513],\"typography\":[1],\"isDone\":[32],\"isCurrent\":[32],\"index\":[32],\"language\":[32],\"updateLang\":[64]},null,{\"done\":[\"selectedHandler\"],\"current\":[\"currentHandler\"]}]]],[\"mds-breadcrumb\",[[1,\"mds-breadcrumb\",{\"back\":[4],\"language\":[32],\"updateLang\":[64]},[[0,\"mdsBreadcrumbItemSelect\",\"activedEventHandler\"]]]]],[\"mds-header-bar\",[[1,\"mds-header-bar\",{\"menu\":[513],\"nav\":[513],\"isOpened\":[32],\"setOpened\":[64]}]]],[\"mds-horizontal-scroll\",[[1,\"mds-horizontal-scroll\",{\"controls\":[1537],\"navigation\":[513],\"snap\":[513],\"hasCompatibility\":[32],\"showForward\":[32],\"showBack\":[32]},null,{\"navigation\":[\"watchNavigation\"]}]]],[\"mds-input-date-range-preselection\",[[1,\"mds-input-date-range-preselection\",{\"selected\":[1540],\"start\":[513],\"end\":[513]}]]],[\"mds-label\",[[1,\"mds-label\",{\"labelAction\":[1,\"label-action\"],\"variant\":[513],\"tone\":[513],\"truncate\":[513],\"typography\":[1],\"deletable\":[4],\"language\":[32],\"updateLang\":[64]}]]],[\"mds-note\",[[1,\"mds-note\",{\"deletable\":[4],\"variant\":[513],\"language\":[32],\"updateLang\":[64]}]]],[\"mds-pref-language-item\",[[1,\"mds-pref-language-item\",{\"code\":[513],\"selected\":[516],\"language\":[32],\"updateLang\":[64]}]]],[\"mds-push-notification\",[[1,\"mds-push-notification\",{\"visible\":[1540],\"behavior\":[1],\"show\":[64],\"hide\":[64],\"removeNotification\":[64]},null,{\"visible\":[\"visibleChanged\"]}]]],[\"mds-radial-menu\",[[1,\"mds-radial-menu\",{\"angleStart\":[514,\"angle-start\"],\"angleEnd\":[514,\"angle-end\"],\"radius\":[514],\"direction\":[513],\"opened\":[1540],\"disc\":[1540],\"backdrop\":[516],\"interaction\":[513],\"icon\":[1537],\"variant\":[513],\"tone\":[513],\"size\":[513]},null,{\"disc\":[\"onDiscChanged\"],\"backdrop\":[\"backdropChanged\"],\"interaction\":[\"onInteractionChange\"],\"angleStart\":[\"onAngleStartChange\"],\"angleEnd\":[\"onAngleEndChange\"],\"radius\":[\"onRadiusChange\"],\"size\":[\"onSizeChange\"],\"opened\":[\"onOpenedChange\"]}]]],[\"mds-table-row\",[[1,\"mds-table-row\",{\"interactive\":[516],\"overlayActions\":[516,\"overlay-actions\"],\"selectable\":[516],\"selected\":[1540],\"value\":[520],\"sizerWidth\":[32],\"language\":[32],\"updateLang\":[64]}]]],[\"mds-tree-item\",[[1,\"mds-tree-item\",{\"actions\":[513],\"async\":[516],\"depth\":[514],\"label\":[1],\"toggle\":[513],\"expanded\":[1540],\"truncate\":[513],\"icon\":[1],\"hasActions\":[32],\"hasChildren\":[32],\"currentToggleIcon\":[32],\"await\":[32],\"language\":[32],\"updateLang\":[64],\"expand\":[64]},null,{\"toggle\":[\"handleIconChange\"],\"expanded\":[\"handleExpandedChange\"]}]]],[\"mds-url-view\",[[1,\"mds-url-view\",{\"icon\":[513],\"label\":[513],\"src\":[513],\"loading\":[513],\"language\":[32],\"updateLang\":[64]}]]],[\"mds-accordion-timer-item\",[[1,\"mds-accordion-timer-item\",{\"typography\":[1],\"selected\":[516],\"description\":[1],\"duration\":[514],\"progress\":[2],\"uuid\":[2]},null,{\"selected\":[\"handleSelected\"]}]]],[\"mds-benchmark-bar\",[[1,\"mds-benchmark-bar\",{\"alias\":[1],\"typography\":[1],\"value\":[2],\"variant\":[513]}]]],[\"mds-file\",[[1,\"mds-file\",{\"suffix\":[513],\"description\":[1],\"filename\":[1],\"preview\":[1],\"showDownloadedIcon\":[4,\"show-downloaded-icon\"],\"format\":[1537],\"language\":[32],\"wasDownloaded\":[32],\"updateLang\":[64]},null,{\"filename\":[\"handleFilename\"]}]]],[\"mds-filter\",[[1,\"mds-filter\",{\"autoReset\":[516,\"auto-reset\"],\"label\":[1],\"multiple\":[516],\"reset\":[516],\"active\":[32],\"itemsSelected\":[32]},[[0,\"mdsFilterItemSelect\",\"activeEventHandler\"]]]]],[\"mds-input-select\",[[65,\"mds-input-select\",{\"autocomplete\":[513],\"autoFocus\":[516,\"auto-focus\"],\"placeholder\":[513],\"name\":[513],\"disabled\":[516],\"required\":[516],\"multiple\":[516],\"size\":[514],\"value\":[520],\"defaultValue\":[520,\"default-value\"],\"variant\":[513],\"hasFocus\":[32],\"language\":[32],\"updateLang\":[64],\"setValue\":[64]},null,{\"value\":[\"valueChanged\"],\"disabled\":[\"disabledChanged\"],\"placeholder\":[\"placeholderChanged\"]}]]],[\"mds-paginator\",[[1,\"mds-paginator\",{\"pages\":[2],\"currentPage\":[1538,\"current-page\"]}]]],[\"mds-keyboard-key\",[[1,\"mds-keyboard-key\",{\"name\":[513],\"pressed\":[516],\"language\":[32],\"updateLang\":[64]}]]],[\"mds-kpi-item\",[[1,\"mds-kpi-item\",{\"label\":[1],\"description\":[1],\"threshold\":[2],\"icon\":[1],\"isIntersecting\":[32]}]]],[\"mds-list-item\",[[1,\"mds-list-item\",{\"typography\":[513],\"variant\":[1],\"icon\":[1]}]]],[\"mds-mention\",[[1,\"mds-mention\",{\"icon\":[513],\"label\":[513],\"size\":[513]}]]],[\"mds-tab-bar-item\",[[1,\"mds-tab-bar-item\",{\"icon\":[1],\"selected\":[1540],\"typography\":[1],\"isSelected\":[32]},null,{\"selected\":[\"validateSelected\"]}]]],[\"mds-usage\",[[1,\"mds-usage\",{\"variant\":[1],\"alias\":[1],\"language\":[32],\"updateLang\":[64]}]]],[\"mds-accordion-item\",[[1,\"mds-accordion-item\",{\"typography\":[1],\"selected\":[1540],\"label\":[1]}]]],[\"mds-bibliography\",[[1,\"mds-bibliography\",{\"format\":[1],\"author\":[1],\"name\":[1],\"publisher\":[1],\"date\":[1],\"location\":[1],\"rel\":[1],\"typography\":[1],\"variant\":[1],\"url\":[1]}]]],[\"mds-breadcrumb-item\",[[1,\"mds-breadcrumb-item\",{\"selected\":[1540]}]]],[\"mds-input-field\",[[65,\"mds-input-field\",{\"label\":[1025],\"message\":[1025],\"variant\":[1537]}]]],[\"mds-input-range\",[[65,\"mds-input-range\",{\"formatValue\":[16],\"name\":[513],\"max\":[2],\"min\":[2],\"step\":[2],\"disabled\":[1540],\"value\":[1538],\"progress\":[32]},null,{\"disabled\":[\"disabledChanged\"],\"value\":[\"valueChanged\"],\"min\":[\"minChanged\"],\"max\":[\"maxChanged\"],\"step\":[\"stepChanged\"]}]]],[\"mds-notification\",[[1,\"mds-notification\",{\"target\":[1],\"value\":[1538],\"visible\":[1540],\"strategy\":[1537],\"max\":[514]},null,{\"strategy\":[\"strategyHandler\"]}]]],[\"mds-pref\",[[1,\"mds-pref\",{\"size\":[513],\"controller\":[1540],\"showReload\":[32],\"language\":[32],\"updateLang\":[64]},null,{\"controller\":[\"handleControllerChange\"],\"size\":[\"handleSizeChange\"]}]]],[\"mds-price-table-features\",[[1,\"mds-price-table-features\",{\"label\":[1]}]]],[\"mds-price-table-features-cell\",[[1,\"mds-price-table-features-cell\",{\"type\":[513]}]]],[\"mds-price-table-list\",[[1,\"mds-price-table-list\",{\"hasItems\":[32]}]]],[\"mds-price-table-list-item\",[[1,\"mds-price-table-list-item\",{\"supported\":[516],\"typography\":[513]}]]],[\"mds-quote\",[[1,\"mds-quote\",{\"typography\":[1],\"tag\":[1]}]]],[\"mds-toast\",[[1,\"mds-toast\",{\"duration\":[1538],\"visible\":[1540],\"variant\":[513],\"tone\":[513],\"position\":[1537]},null,{\"visible\":[\"visibleChanged\"],\"duration\":[\"durationChanged\"]}]]],[\"mds-accordion\",[[1,\"mds-accordion\",{\"multiple\":[4],\"closable\":[4]},[[0,\"mdsAccordionItemSelect\",\"selectedEventHandler\"],[0,\"mdsAccordionItemUnselect\",\"unselectedEventHandler\"]]]]],[\"mds-accordion-timer\",[[1,\"mds-accordion-timer\",{\"duration\":[514],\"paused\":[516],\"time\":[32]},[[0,\"mdsAccordionTimerItemClickSelect\",\"onClickSelect\"],[0,\"mdsAccordionTimerItemSelect\",\"onSelect\"],[0,\"mdsAccordionTimerItemMouseEnterSelect\",\"onMouseEnterSelect\"],[0,\"mdsAccordionTimerItemMouseLeaveSelect\",\"onMouseLeaveSelect\"]],{\"paused\":[\"handlePaused\"]}]]],[\"mds-author\",[[1,\"mds-author\"]]],[\"mds-button-group\",[[1,\"mds-button-group\"]]],[\"mds-card\",[[1,\"mds-card\",{\"autoGrid\":[516,\"auto-grid\"],\"layout\":[32]}]]],[\"mds-card-content\",[[1,\"mds-card-content\"]]],[\"mds-card-footer\",[[1,\"mds-card-footer\"]]],[\"mds-card-header\",[[1,\"mds-card-header\"]]],[\"mds-card-media\",[[1,\"mds-card-media\"]]],[\"mds-details\",[[1,\"mds-details\",{\"opened\":[1540],\"isOpened\":[32],\"hasIcon\":[32]},null,{\"opened\":[\"validateOpened\"]}]]],[\"mds-emoji\",[[1,\"mds-emoji\",{\"name\":[513],\"agree\":[64],\"disagree\":[64],\"startThinking\":[64],\"stopThinking\":[64],\"startBlinking\":[64],\"stopBlinking\":[64],\"stopFollowMouse\":[64],\"startFollowMouse\":[64]}]]],[\"mds-hr\",[[1,\"mds-hr\"]]],[\"mds-kpi\",[[1,\"mds-kpi\"]]],[\"mds-list\",[[1,\"mds-list\"]]],[\"mds-price-table\",[[1,\"mds-price-table\"]]],[\"mds-price-table-features-row\",[[1,\"mds-price-table-features-row\",{\"cellPercWidth\":[32]}]]],[\"mds-price-table-header\",[[1,\"mds-price-table-header\"]]],[\"mds-stepper-bar\",[[1,\"mds-stepper-bar\",{\"itemsDone\":[2,\"items-done\"],\"navigation\":[513],\"currentItem\":[32]},[[0,\"mdsStepperBarItemDone\",\"changeEventHandler\"]],{\"itemsDone\":[\"itemDone\"]}]]],[\"mds-tab-bar\",[[1,\"mds-tab-bar\",null,[[0,\"mdsTabBarItemSelect\",\"changeEventHandler\"]]]]],[\"mds-table\",[[1,\"mds-table\",{\"interactive\":[4],\"selectable\":[4],\"selection\":[1540],\"selectedRows\":[32],\"updateSelection\":[64],\"selectAll\":[64]},null,{\"interactive\":[\"onTableInteractive\"],\"selectable\":[\"onTableSelectable\"]}]]],[\"mds-table-body\",[[1,\"mds-table-body\",{\"interactive\":[516],\"selection\":[516]}]]],[\"mds-table-footer\",[[1,\"mds-table-footer\"]]],[\"mds-tree\",[[1,\"mds-tree\",{\"appearance\":[513],\"async\":[516],\"label\":[1],\"toggle\":[513],\"togglePosition\":[513,\"toggle-position\"],\"expanded\":[1540],\"truncate\":[513],\"actions\":[513]},null,{\"expanded\":[\"handleExpandedChange\"],\"toggle\":[\"handleToggleChange\"],\"truncate\":[\"handleTruncateChange\"]}]]],[\"mds-video-wall\",[[1,\"mds-video-wall\",{\"autoplay\":[4],\"loop\":[4],\"muted\":[4],\"noise\":[1],\"poster\":[1],\"preload\":[1],\"src\":[1]}]]],[\"mds-zero\",[[1,\"mds-zero\"]]],[\"mds-text\",[[1,\"mds-text\",{\"animation\":[1],\"tag\":[1537],\"text\":[513],\"truncate\":[513],\"typography\":[513],\"variant\":[513]},null,{\"text\":[\"textHandler\"]}]]],[\"mds-avatar-stack-item\",[[1,\"mds-avatar-stack-item\",{\"count\":[514],\"initials\":[1537],\"src\":[513],\"tone\":[513],\"variant\":[513]}]]],[\"mds-file-preview\",[[1,\"mds-file-preview\",{\"deletable\":[516],\"downloadable\":[516],\"description\":[513],\"filename\":[513],\"filesize\":[513],\"message\":[513],\"truncate\":[513],\"src\":[513],\"suffix\":[513],\"icon\":[513],\"variant\":[513],\"format\":[1537],\"language\":[32],\"updateLang\":[64]},null,{\"filename\":[\"handleFilename\"],\"downloadable\":[\"handleDownloadable\"]}]]],[\"mds-input-tip_2\",[[1,\"mds-input-tip-item\",{\"variant\":[513],\"expanded\":[1540],\"language\":[32],\"updateLang\":[64]},null,{\"expanded\":[\"handleEcpandedChanged\"]}],[1,\"mds-input-tip\",{\"active\":[516],\"position\":[513]}]]],[\"mds-input\",[[65,\"mds-input\",{\"autocomplete\":[513],\"autofocus\":[516],\"await\":[516],\"controlsLayout\":[513,\"controls-layout\"],\"controlsIcon\":[513,\"controls-icon\"],\"controlIncreaseLabel\":[513,\"control-increase-label\"],\"controlDecreaseLabel\":[513,\"control-decrease-label\"],\"datalist\":[16],\"disabled\":[516],\"icon\":[1537],\"max\":[520],\"maxlength\":[1538],\"mic\":[516],\"min\":[520],\"minlength\":[514],\"name\":[513],\"pattern\":[513],\"placeholder\":[513],\"readonly\":[516],\"required\":[516],\"variant\":[1537],\"tip\":[513],\"step\":[513],\"type\":[513],\"typography\":[513],\"value\":[1537],\"hasFocus\":[32],\"language\":[32],\"isRecording\":[32],\"currentLengthLabel\":[32],\"countVariant\":[32],\"isPasswordVisible\":[32],\"updateLang\":[64],\"addValidator\":[64],\"removeValidator\":[64],\"hasValidator\":[64],\"getErrors\":[64],\"setFocus\":[64],\"getInputElement\":[64]},null,{\"value\":[\"valueChanged\"],\"variant\":[\"variantChanged\"],\"maxlength\":[\"maxLengthChanged\"],\"disabled\":[\"disabledChanged\"]}]]],[\"mds-table-header-cell\",[[1,\"mds-table-header-cell\",{\"sortable\":[516],\"label\":[513],\"direction\":[1537],\"isAscending\":[32]},null,{\"sortable\":[\"sortableHandler\"],\"direction\":[\"directionHandler\"]}]]],[\"mds-filter-item\",[[1,\"mds-filter-item\",{\"selected\":[1540],\"label\":[513],\"icon\":[513],\"value\":[513],\"count\":[513],\"disabled\":[516]}]]],[\"mds-paginator-item\",[[1,\"mds-paginator-item\",{\"icon\":[513],\"selected\":[516],\"disabled\":[516]}]]],[\"mds-separator\",[[1,\"mds-separator\"]]],[\"mds-modal\",[[1,\"mds-modal\",{\"opened\":[1540],\"backdrop\":[1540],\"position\":[1537],\"animating\":[1537],\"animation\":[513],\"overflow\":[513],\"interaction\":[513],\"close\":[64]},null,{\"opened\":[\"handleOpenProp\"],\"backdrop\":[\"handleBackdropProp\"]}]]],[\"mds-tooltip\",[[1,\"mds-tooltip\",{\"arrow\":[4],\"arrowPadding\":[2,\"arrow-padding\"],\"autoPlacement\":[516,\"auto-placement\"],\"flip\":[4],\"target\":[513],\"offset\":[2],\"placement\":[513],\"typography\":[1],\"shift\":[4],\"shiftPadding\":[2,\"shift-padding\"],\"strategy\":[513],\"visible\":[1540]},null,{\"arrow\":[\"arrowChanged\"],\"autoPlacement\":[\"autoPlacementChanged\"],\"flip\":[\"flipChanged\"],\"offset\":[\"offsetChanged\"],\"placement\":[\"placementChanged\"],\"shift\":[\"shiftChanged\"],\"shiftPadding\":[\"shiftPaddingChanged\"],\"strategy\":[\"strategyChanged\"],\"visible\":[\"visibleChanged\"],\"target\":[\"targetChanged\"]}]]],[\"mds-button_3\",[[65,\"mds-button\",{\"autoFocus\":[4,\"auto-focus\"],\"hasText\":[1540,\"has-text\"],\"icon\":[1537],\"iconPosition\":[1,\"icon-position\"],\"type\":[513],\"variant\":[513],\"tone\":[513],\"size\":[513],\"active\":[1540],\"disabled\":[1540],\"await\":[1540],\"href\":[513],\"target\":[1],\"truncate\":[513]},null,{\"disabled\":[\"disabledChanged\"],\"await\":[\"awaitChanged\",\"handleAwaitChange\"],\"type\":[\"handleTypeChange\"],\"variant\":[\"handleVariantChange\"]}],[1,\"mds-spinner\",{\"running\":[1540]},null,{\"running\":[\"handleRunning\"]}],[1,\"mds-icon\",{\"name\":[513],\"svgHTML\":[32],\"_iconHref\":[32],\"setSvgPath\":[64]},null,{\"name\":[\"updateIcon\"]}]]],[\"mds-banner_3\",[[1,\"mds-banner\",{\"variant\":[513],\"tone\":[513],\"cockade\":[516],\"deletable\":[4],\"headline\":[1],\"icon\":[1],\"language\":[32],\"updateLang\":[64]}],[1,\"mds-chip\",{\"clickable\":[1540],\"deletable\":[4],\"disabled\":[4],\"icon\":[1],\"label\":[513],\"selected\":[1540],\"selectable\":[516],\"variant\":[513],\"tone\":[513],\"language\":[32],\"updateLang\":[64]},null,{\"selectable\":[\"handleSelectableProp\"],\"clickable\":[\"handleClickableProp\"],\"selected\":[\"handleSelectedProp\"]}],[1,\"mds-help\",{\"icon\":[1],\"autoPlacement\":[516,\"auto-placement\"],\"placement\":[513]}]]],[\"mds-avatar\",[[1,\"mds-avatar\",{\"icon\":[513],\"initials\":[1537],\"count\":[1538],\"src\":[513],\"tone\":[513],\"variant\":[1537],\"fallback\":[32],\"loaded\":[32]},null,{\"initials\":[\"initialsHandler\"],\"count\":[\"countHandler\"],\"src\":[\"srcHandler\"],\"icon\":[\"iconHandler\"]}]]],[\"mds-input-switch_2\",[[65,\"mds-input-switch\",{\"autofocus\":[516],\"checked\":[1540],\"disabled\":[1540],\"explicit\":[516],\"icon\":[513],\"indeterminate\":[1540],\"name\":[513],\"size\":[513],\"type\":[513],\"typography\":[513],\"variant\":[513],\"value\":[1537],\"dirty\":[32],\"hasText\":[32],\"language\":[32],\"updateLang\":[64]},null,{\"disabled\":[\"disabledChanged\"],\"checked\":[\"checkedChanged\"],\"explicit\":[\"explicitChanged\"]}],[1,\"mds-table-cell\",{\"value\":[520]}]]],[\"mds-calendar_2\",[[1,\"mds-calendar\",{\"rangePicker\":[4,\"range-picker\"],\"startDate\":[513,\"start-date\"],\"endDate\":[513,\"end-date\"],\"min\":[513],\"max\":[513],\"hasPreselection\":[32],\"currentDate\":[32],\"weekDaysinMonth\":[32],\"weekdays\":[32],\"startDateIdentifier\":[32],\"endDateIdentifier\":[32],\"isFirstClick\":[32],\"currentView\":[32],\"selectedYear\":[32],\"language\":[32],\"internalStartDate\":[32],\"internalEndDate\":[32],\"updateLang\":[64],\"updateCurrentDate\":[64]},null,{\"startDate\":[\"handleStartDate\"],\"endDate\":[\"handleEndDate\"]}],[1,\"mds-calendar-cell\",{\"month\":[513],\"date\":[513],\"orientation\":[513],\"preview\":[516],\"selection\":[513],\"disabled\":[516],\"today\":[516]}]]],[\"mds-badge\",[[1,\"mds-badge\",{\"variant\":[513],\"tone\":[513],\"typography\":[1],\"typographyVariant\":[1,\"typography-variant\"]}]]],[\"mds-dropdown\",[[1,\"mds-dropdown\",{\"arrow\":[516],\"arrowPadding\":[2,\"arrow-padding\"],\"autoPlacement\":[4,\"auto-placement\"],\"backdrop\":[516],\"flip\":[4],\"interaction\":[513],\"target\":[1],\"offset\":[2],\"placement\":[1],\"shift\":[4],\"shiftPadding\":[2,\"shift-padding\"],\"smooth\":[4],\"strategy\":[1],\"visible\":[1540],\"zIndex\":[2,\"z-index\"]},null,{\"arrow\":[\"arrowChanged\"],\"arrowPadding\":[\"arrowPaddingChanged\"],\"autoPlacement\":[\"autoPlacementChanged\"],\"backdrop\":[\"backdropChanged\"],\"flip\":[\"flipChanged\"],\"offset\":[\"offsetChanged\"],\"placement\":[\"placementChanged\"],\"shift\":[\"shiftChanged\"],\"shiftPadding\":[\"shiftPaddingChanged\"],\"strategy\":[\"strategyChanged\"],\"target\":[\"targetChanged\"],\"visible\":[\"visibleChanged\"]}]]],[\"mds-img\",[[1,\"mds-img\",{\"alt\":[1537],\"crossorigin\":[1],\"height\":[1],\"loading\":[1],\"referrerpolicy\":[1],\"sizes\":[1],\"src\":[1],\"srcset\":[1],\"srcsetConsumption\":[1,\"srcset-consumption\"],\"width\":[1],\"imageConsumptionLoaded\":[32],\"imageError\":[32],\"language\":[32],\"updateLang\":[64]},null,{\"srcsetConsumption\":[\"srcsetConsumptionHandler\"],\"src\":[\"srcHandler\"]}]]],[\"mds-progress_2\",[[1,\"mds-progress\",{\"progress\":[2],\"direction\":[513],\"variant\":[513],\"typography\":[1],\"steps\":[1],\"currentStep\":[32]},null,{\"progress\":[\"progressChanged\"],\"steps\":[\"stepsChanged\"]}],[1,\"mds-radial-progress\",{\"progress\":[2],\"typography\":[513],\"variant\":[513],\"animatedProgress\":[32]},null,{\"progress\":[\"onProgressChange\"]}]]],[\"mds-tab_2\",[[1,\"mds-tab-item\",{\"await\":[516],\"selected\":[1540],\"disabled\":[1540],\"icon\":[1],\"iconPosition\":[1,\"icon-position\"],\"type\":[1],\"size\":[513],\"value\":[513],\"href\":[513],\"isSelected\":[32],\"hasText\":[32]},null,{\"selected\":[\"validateActive\"]}],[1,\"mds-tab\",{\"direction\":[1537],\"scrollbar\":[1540],\"animation\":[513],\"fill\":[1540],\"overflow\":[1540],\"size\":[1537],\"sliderWidth\":[32],\"sliderHeight\":[32],\"sliderOffsetX\":[32],\"sliderOffsetY\":[32],\"overflowLeft\":[32],\"overflowRight\":[32]},[[0,\"mdsTabItemSelect\",\"changeEventHandler\"],[0,\"mdsTabItemFocus\",\"focusEventHandler\"]],{\"animation\":[\"handleAnimationChange\"],\"scrollbar\":[\"handleScrollbarChange\"],\"fill\":[\"handleFillChange\"],\"overflow\":[\"handleOverflowChange\"],\"size\":[\"handleSizeChange\"]}]]]]"), options);
9
9
  };
10
10
 
11
11
  export { defineCustomElements };