@maggioli-design-system/magma 1.10.7 → 1.10.9
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/loader.cjs.js +1 -1
- package/dist/cjs/magma-components.cjs.js +1 -1
- package/dist/cjs/mds-input-upload.cjs.entry.js +19 -6
- package/dist/cjs/mds-input.cjs.entry.js +9 -9
- package/dist/cjs/mds-table-row.cjs.entry.js +8 -7
- package/dist/cjs/mds-text.cjs.entry.js +3 -2
- package/dist/collection/components/mds-input/mds-input.js +9 -9
- package/dist/collection/components/mds-input-upload/mds-input-upload.js +47 -6
- package/dist/collection/components/mds-table-row/mds-table-row.js +8 -7
- package/dist/collection/components/mds-text/mds-text.js +3 -2
- package/dist/components/mds-input-upload.js +21 -6
- package/dist/components/mds-input2.js +9 -9
- package/dist/components/mds-table-row.js +8 -7
- package/dist/components/mds-text2.js +3 -2
- package/dist/documentation.json +46 -1
- package/dist/esm/loader.js +1 -1
- package/dist/esm/magma-components.js +1 -1
- package/dist/esm/mds-input-upload.entry.js +19 -6
- package/dist/esm/mds-input.entry.js +9 -9
- package/dist/esm/mds-table-row.entry.js +8 -7
- package/dist/esm/mds-text.entry.js +3 -2
- package/dist/esm-es5/loader.js +1 -1
- package/dist/esm-es5/magma-components.js +1 -1
- package/dist/esm-es5/mds-input-upload.entry.js +1 -1
- package/dist/esm-es5/mds-input.entry.js +1 -1
- package/dist/esm-es5/mds-table-row.entry.js +1 -1
- package/dist/esm-es5/mds-text.entry.js +1 -1
- package/dist/hydrate/index.js +40 -24
- package/dist/hydrate/index.mjs +40 -24
- package/dist/magma-components/magma-components.esm.js +1 -1
- package/dist/magma-components/{p-a33c13d4.entry.js → p-0598a2c0.entry.js} +1 -1
- package/dist/magma-components/{p-19b97678.system.entry.js → p-13183284.system.entry.js} +1 -1
- package/dist/magma-components/p-26cd6ec8.system.js +1 -1
- package/dist/magma-components/{p-028dc4fb.system.entry.js → p-3458887d.system.entry.js} +1 -1
- package/dist/magma-components/p-347adbeb.entry.js +1 -0
- package/dist/magma-components/p-548830f0.entry.js +1 -0
- package/dist/magma-components/{p-51a66fbc.system.entry.js → p-7e0ec4be.system.entry.js} +1 -1
- package/dist/magma-components/p-9a5bea2b.entry.js +1 -0
- package/dist/magma-components/{p-9bf7546f.system.entry.js → p-fee4342a.system.entry.js} +1 -1
- package/dist/stats.json +117 -53
- package/dist/types/components/mds-input-upload/mds-input-upload.d.ts +5 -0
- package/dist/types/components/mds-table-row/mds-table-row.d.ts +1 -1
- package/dist/types/components.d.ts +8 -0
- package/package.json +1 -1
- package/dist/magma-components/p-662d3f69.entry.js +0 -1
- package/dist/magma-components/p-75487b6d.entry.js +0 -1
- package/dist/magma-components/p-cc65db79.entry.js +0 -1
|
@@ -67,8 +67,15 @@ export class MdsInputUpload {
|
|
|
67
67
|
event.preventDefault();
|
|
68
68
|
};
|
|
69
69
|
this.onAdd = (event) => {
|
|
70
|
-
|
|
71
|
-
|
|
70
|
+
if (!event)
|
|
71
|
+
return;
|
|
72
|
+
if (event instanceof FileList || Array.isArray(event)) {
|
|
73
|
+
this.update(this.nativeInput, this.prepareFiles(event));
|
|
74
|
+
}
|
|
75
|
+
else {
|
|
76
|
+
const input = (event.target);
|
|
77
|
+
this.update(input, this.prepareFiles(input.files));
|
|
78
|
+
}
|
|
72
79
|
};
|
|
73
80
|
/**
|
|
74
81
|
* Delete single file from upload
|
|
@@ -120,6 +127,11 @@ export class MdsInputUpload {
|
|
|
120
127
|
componentDidLoad() {
|
|
121
128
|
this.updateCSSCustomProps();
|
|
122
129
|
}
|
|
130
|
+
updateInitialValue(newValue, oldValue) {
|
|
131
|
+
if (!oldValue) {
|
|
132
|
+
this.onAdd(newValue);
|
|
133
|
+
}
|
|
134
|
+
}
|
|
123
135
|
/**
|
|
124
136
|
* Returns a promise of files uploaded as Filelist or null if there's none
|
|
125
137
|
*/
|
|
@@ -158,7 +170,7 @@ export class MdsInputUpload {
|
|
|
158
170
|
var _a;
|
|
159
171
|
if (!fileList)
|
|
160
172
|
return null;
|
|
161
|
-
const files = Array.from(fileList);
|
|
173
|
+
const files = fileList instanceof FileList ? Array.from(fileList) : fileList;
|
|
162
174
|
const data = new DataTransfer();
|
|
163
175
|
// prepare new file added
|
|
164
176
|
for (const file of files) {
|
|
@@ -291,12 +303,12 @@ export class MdsInputUpload {
|
|
|
291
303
|
return !!this.sort && this.files.length > 1;
|
|
292
304
|
}
|
|
293
305
|
render() {
|
|
294
|
-
return (h(Host, { key: '
|
|
306
|
+
return (h(Host, { key: '5830e02f67805085aee61166081f9b12d9e6ea97' }, h("div", { key: '492536fb9d00351f117e1983133efe73dedcd8ea', class: "drag-area", onDrop: this.onDropHandler, onDragOver: this.onDragOverHandler, onDragEnter: this.onDragEnterHandler, onDragLeave: this.onDragLeaveHandler, ref: dragArea => this.elDragArea = dragArea }, h("div", { key: 'bbb4a910dc53d7832b7569facc9a058390a73403', class: "main-action" }, h("div", { key: 'f7876514b715bb0c530ee1f949d2bda8d1bde4fc', class: "main-action-icon" }, h("i", { key: '047d44913087109ba95db57398bec18f120842c8', class: "icon", innerHTML: miBaselineAddCircle })), h("mds-text", { key: 'fe62cfa6b2d3a35e41ebeda6c7e4e1582270ef84', animation: this.animateText ? 'yugop' : 'none', variant: "title", typography: "action", text: this.actionTitle })), h("div", { key: 'bf14e1c8a1ff89d12fa7032541d04a810a406352', class: "main-actions" }, h("mds-button", { key: '657247d6c2f8f1d25e2982ce420593967cd3a0e2', variant: 'primary', onClick: () => { var _a; return (_a = this.nativeInput) === null || _a === void 0 ? void 0 : _a.click(); } }, " ", this.files ? this.t.get('addFile', { maxFiles: this.maxFiles }) : this.t.get('selectFile')), this.files.length > 0 && h("mds-button", { key: '4e861024336d3425d638feb4599f576385621cc3', variant: 'error', onClick: this.onReset }, this.t.get('cancel'))), h("div", { key: 'c3b35e02be6dd117168831414f325030284812bf', class: "main-infos" }, h("mds-progress", { key: 'c73783112c3f35cf010827dcc5b4c492bfccf997', "aria-hidden": "true", class: "progress-bar", progress: this.progress }), this.files.length < 1
|
|
295
307
|
? h("mds-text", { variant: "info", typography: "caption" }, this.t.get('maxFilesUpload', { maxFiles: this.maxFiles }))
|
|
296
308
|
: h("mds-text", { variant: "info", typography: "caption" }, this.maxFiles
|
|
297
309
|
? this.t.get('currentFilesWithMax', { currentFiles: this.files.length, maxFiles: this.maxFiles })
|
|
298
|
-
: this.t.get('currentFilesNoMax', { currentFiles: this.files.length })))), h("input", { key: '
|
|
299
|
-
h("mds-tab", { key: '
|
|
310
|
+
: this.t.get('currentFilesNoMax', { currentFiles: this.files.length })))), h("input", { key: 'a909c2b5307c429b7d68a11c9255811cbc3d686c', type: 'file', accept: this.accept, hidden: true, ref: i => this.nativeInput = i, onChange: this.onAdd, multiple: this.maxFiles > 1 }), h("div", { key: 'e4e6d4f611b625082b3fd9ff0efe44af89704e74', class: "additional-infos" }, h("div", { key: '09982468b61a585bd0dedbd81b0e3f7953fad258', class: clsx('file-specs', this.isSortTabShown() && 'file-specs-sort') }, h("mds-text", { key: '2c49035a77a90f6537bcc74a07cecc048824a7b5', variant: "info", typography: "caption" }, this.extensions ? `${this.t.get('canUpload')} ${this.extensions}` : this.t.get('canUploadAll')), h("mds-text", { key: '22a334a6004ed3a749e7d3dae037ff8901fce539', variant: "info", typography: "caption" }, this.t.get('maxFileSizePerFile', { maxFileSize: this.maxFileSize }))), this.isSortTabShown() &&
|
|
311
|
+
h("mds-tab", { key: 'addbb438bcaeaea6f9eb2a40363de53dc424d5e7', class: "action-sort", onMdsTabChange: event => this.onChangeTab(event.detail) }, h("mds-tab-item", { key: '69fba52d02a2f275efa5418ad1b0039d92402baa', icon: iconSortById, selected: this.userSort === 'date', title: this.t.get('sortByDate'), value: 'date' }), h("mds-tab-item", { key: '3012c8683fea3233439ec1031a3853bca5b87854', icon: iconSortByStatus, selected: this.userSort === 'status', title: this.t.get('sortByStatus'), value: 'status' }))), h("div", { key: '8ca350843850b6301b9c0a4b82fdfe38d920fdcd', class: clsx('file-list', this.files.length > this.cssMinCols && 'file-list--more-items') }, this.files.map(file => {
|
|
300
312
|
switch (file.status) {
|
|
301
313
|
case Status.ERROR:
|
|
302
314
|
return (h("mds-file-preview", { deletable: true, variant: "error", filename: file.file.name, filesize: file.file.size.toString(), onMdsFileDelete: () => this.onCancel(file.key), message: file.errorMessage }));
|
|
@@ -404,6 +416,32 @@ export class MdsInputUpload {
|
|
|
404
416
|
"setter": false,
|
|
405
417
|
"attribute": "sort",
|
|
406
418
|
"reflect": true
|
|
419
|
+
},
|
|
420
|
+
"initialValue": {
|
|
421
|
+
"type": "unknown",
|
|
422
|
+
"mutable": false,
|
|
423
|
+
"complexType": {
|
|
424
|
+
"original": "FileList | File[]",
|
|
425
|
+
"resolved": "FileList | File[] | undefined",
|
|
426
|
+
"references": {
|
|
427
|
+
"FileList": {
|
|
428
|
+
"location": "global",
|
|
429
|
+
"id": "global::FileList"
|
|
430
|
+
},
|
|
431
|
+
"File": {
|
|
432
|
+
"location": "global",
|
|
433
|
+
"id": "global::File"
|
|
434
|
+
}
|
|
435
|
+
}
|
|
436
|
+
},
|
|
437
|
+
"required": false,
|
|
438
|
+
"optional": true,
|
|
439
|
+
"docs": {
|
|
440
|
+
"tags": [],
|
|
441
|
+
"text": "Specifies initial files uploaded"
|
|
442
|
+
},
|
|
443
|
+
"getter": false,
|
|
444
|
+
"setter": false
|
|
407
445
|
}
|
|
408
446
|
};
|
|
409
447
|
}
|
|
@@ -523,6 +561,9 @@ export class MdsInputUpload {
|
|
|
523
561
|
static get elementRef() { return "host"; }
|
|
524
562
|
static get watchers() {
|
|
525
563
|
return [{
|
|
564
|
+
"propName": "initialValue",
|
|
565
|
+
"methodName": "updateInitialValue"
|
|
566
|
+
}, {
|
|
526
567
|
"propName": "maxFiles",
|
|
527
568
|
"methodName": "updateActionTitle"
|
|
528
569
|
}];
|
|
@@ -46,19 +46,20 @@ export class MdsTableRow {
|
|
|
46
46
|
this.observer.observe(this.actions);
|
|
47
47
|
}
|
|
48
48
|
disconnectedCallback() {
|
|
49
|
-
this.observer
|
|
49
|
+
if (this.observer)
|
|
50
|
+
this.observer.disconnect();
|
|
50
51
|
}
|
|
51
52
|
render() {
|
|
52
|
-
return (h(Host, { key: '
|
|
53
|
-
h("mds-table-cell", { key: '
|
|
54
|
-
h("mds-table-cell", { key: '
|
|
55
|
-
h("mds-table-cell", { key: '
|
|
53
|
+
return (h(Host, { key: 'c0e67a5763f47d180b02a5a3ca85f7164708a60f', role: "row" }, this.selectable &&
|
|
54
|
+
h("mds-table-cell", { key: '0f55b635bf14f1a5051a4f5438e06424dbf33573', class: "selection-cell" }, h("div", { key: 'bf032a097ae262c64c60cca5d0459726229592c5', class: "checkbox-wrapper" }, h("mds-input-switch", { key: '76b8caf51030115bbda38f71ce237d8f9bfbcf02', title: this.t.get(this.selected ? 'unselectRow' : 'selectRow'), lang: this.language, type: "checkbox", checked: this.selected, onMdsInputSwitchChange: this.handleSelectionChange }))), h("slot", { key: '5e1bdd763f5eec6cb7df2a84775284403c54bdee' }), this.hasActions && isSafari() &&
|
|
55
|
+
h("mds-table-cell", { key: '5496b73c5e1c84f52209f06f8615b35ec72c02fd', class: "actions-cell actions-cell--disable" }, h("div", { key: '49a200874c6f7183b0aea31b6f781132f5e71f9f', class: "actions" }, h("slot", { key: 'd1819cf376deba84c2e92d4c942b40744bcf9cc9', name: "action" }))), this.hasActions && !isSafari() &&
|
|
56
|
+
h("mds-table-cell", { key: '0e8a947018302174747d53d0343592698ec84b04', class: "actions-cell" }, h("div", { key: 'fe19579e1d1f937f784415221414def39a77bcec', class: "actions-sizer", style: {
|
|
56
57
|
minHeight: '1px',
|
|
57
58
|
maxWidth: this.sizerWidth,
|
|
58
59
|
minWidth: this.sizerWidth,
|
|
59
|
-
} }), h("div", { key: '
|
|
60
|
+
} }), h("div", { key: 'cd0c5cf2da7ea6252a68d0a093f6abdb3b2dd90d', class: "actions-view" }, h("div", { key: 'c6b731c14457f0f36b114d1d258e75efc6842f06', class: "actions", ref: el => this.actions = el, style: {
|
|
60
61
|
marginRight: `calc(${this.sizerWidth} + var(--mds-table-cell-padding))`,
|
|
61
|
-
} }, h("slot", { key: '
|
|
62
|
+
} }, h("slot", { key: '8c6c55a4d759fb04d1f0ae13a6263bb01dc4878e', name: "action" }))))));
|
|
62
63
|
}
|
|
63
64
|
static get is() { return "mds-table-row"; }
|
|
64
65
|
static get encapsulation() { return "shadow"; }
|
|
@@ -51,7 +51,8 @@ export class MdsText {
|
|
|
51
51
|
this.tag = (_a = this.tag) !== null && _a !== void 0 ? _a : tag;
|
|
52
52
|
}
|
|
53
53
|
componentDidLoad() {
|
|
54
|
-
this.
|
|
54
|
+
if (this.animation === 'yugop')
|
|
55
|
+
this.updateCSSCustomProps();
|
|
55
56
|
}
|
|
56
57
|
textHandler(newValue) {
|
|
57
58
|
if (this.animation === 'none') {
|
|
@@ -65,7 +66,7 @@ export class MdsText {
|
|
|
65
66
|
}
|
|
66
67
|
}
|
|
67
68
|
render() {
|
|
68
|
-
return (h(Host, { key: '
|
|
69
|
+
return (h(Host, { key: 'b4e7633d031bd3a64fc985a508cb0ac8b40d18b8' }, h(this.tag, { key: '92825cc9501fb91f8e8b13397c707dc47d1177e4', class: "text" }, !this.text
|
|
69
70
|
? h("slot", null)
|
|
70
71
|
: this.text)));
|
|
71
72
|
}
|
|
@@ -378,8 +378,15 @@ const MdsInputUpload$1 = /*@__PURE__*/ proxyCustomElement(class MdsInputUpload e
|
|
|
378
378
|
event.preventDefault();
|
|
379
379
|
};
|
|
380
380
|
this.onAdd = (event) => {
|
|
381
|
-
|
|
382
|
-
|
|
381
|
+
if (!event)
|
|
382
|
+
return;
|
|
383
|
+
if (event instanceof FileList || Array.isArray(event)) {
|
|
384
|
+
this.update(this.nativeInput, this.prepareFiles(event));
|
|
385
|
+
}
|
|
386
|
+
else {
|
|
387
|
+
const input = (event.target);
|
|
388
|
+
this.update(input, this.prepareFiles(input.files));
|
|
389
|
+
}
|
|
383
390
|
};
|
|
384
391
|
/**
|
|
385
392
|
* Delete single file from upload
|
|
@@ -431,6 +438,11 @@ const MdsInputUpload$1 = /*@__PURE__*/ proxyCustomElement(class MdsInputUpload e
|
|
|
431
438
|
componentDidLoad() {
|
|
432
439
|
this.updateCSSCustomProps();
|
|
433
440
|
}
|
|
441
|
+
updateInitialValue(newValue, oldValue) {
|
|
442
|
+
if (!oldValue) {
|
|
443
|
+
this.onAdd(newValue);
|
|
444
|
+
}
|
|
445
|
+
}
|
|
434
446
|
/**
|
|
435
447
|
* Returns a promise of files uploaded as Filelist or null if there's none
|
|
436
448
|
*/
|
|
@@ -469,7 +481,7 @@ const MdsInputUpload$1 = /*@__PURE__*/ proxyCustomElement(class MdsInputUpload e
|
|
|
469
481
|
var _a;
|
|
470
482
|
if (!fileList)
|
|
471
483
|
return null;
|
|
472
|
-
const files = Array.from(fileList);
|
|
484
|
+
const files = fileList instanceof FileList ? Array.from(fileList) : fileList;
|
|
473
485
|
const data = new DataTransfer();
|
|
474
486
|
// prepare new file added
|
|
475
487
|
for (const file of files) {
|
|
@@ -602,12 +614,12 @@ const MdsInputUpload$1 = /*@__PURE__*/ proxyCustomElement(class MdsInputUpload e
|
|
|
602
614
|
return !!this.sort && this.files.length > 1;
|
|
603
615
|
}
|
|
604
616
|
render() {
|
|
605
|
-
return (h(Host, { key: '
|
|
617
|
+
return (h(Host, { key: '5830e02f67805085aee61166081f9b12d9e6ea97' }, h("div", { key: '492536fb9d00351f117e1983133efe73dedcd8ea', class: "drag-area", onDrop: this.onDropHandler, onDragOver: this.onDragOverHandler, onDragEnter: this.onDragEnterHandler, onDragLeave: this.onDragLeaveHandler, ref: dragArea => this.elDragArea = dragArea }, h("div", { key: 'bbb4a910dc53d7832b7569facc9a058390a73403', class: "main-action" }, h("div", { key: 'f7876514b715bb0c530ee1f949d2bda8d1bde4fc', class: "main-action-icon" }, h("i", { key: '047d44913087109ba95db57398bec18f120842c8', class: "icon", innerHTML: miBaselineAddCircle })), h("mds-text", { key: 'fe62cfa6b2d3a35e41ebeda6c7e4e1582270ef84', animation: this.animateText ? 'yugop' : 'none', variant: "title", typography: "action", text: this.actionTitle })), h("div", { key: 'bf14e1c8a1ff89d12fa7032541d04a810a406352', class: "main-actions" }, h("mds-button", { key: '657247d6c2f8f1d25e2982ce420593967cd3a0e2', variant: 'primary', onClick: () => { var _a; return (_a = this.nativeInput) === null || _a === void 0 ? void 0 : _a.click(); } }, " ", this.files ? this.t.get('addFile', { maxFiles: this.maxFiles }) : this.t.get('selectFile')), this.files.length > 0 && h("mds-button", { key: '4e861024336d3425d638feb4599f576385621cc3', variant: 'error', onClick: this.onReset }, this.t.get('cancel'))), h("div", { key: 'c3b35e02be6dd117168831414f325030284812bf', class: "main-infos" }, h("mds-progress", { key: 'c73783112c3f35cf010827dcc5b4c492bfccf997', "aria-hidden": "true", class: "progress-bar", progress: this.progress }), this.files.length < 1
|
|
606
618
|
? h("mds-text", { variant: "info", typography: "caption" }, this.t.get('maxFilesUpload', { maxFiles: this.maxFiles }))
|
|
607
619
|
: h("mds-text", { variant: "info", typography: "caption" }, this.maxFiles
|
|
608
620
|
? this.t.get('currentFilesWithMax', { currentFiles: this.files.length, maxFiles: this.maxFiles })
|
|
609
|
-
: this.t.get('currentFilesNoMax', { currentFiles: this.files.length })))), h("input", { key: '
|
|
610
|
-
h("mds-tab", { key: '
|
|
621
|
+
: this.t.get('currentFilesNoMax', { currentFiles: this.files.length })))), h("input", { key: 'a909c2b5307c429b7d68a11c9255811cbc3d686c', type: 'file', accept: this.accept, hidden: true, ref: i => this.nativeInput = i, onChange: this.onAdd, multiple: this.maxFiles > 1 }), h("div", { key: 'e4e6d4f611b625082b3fd9ff0efe44af89704e74', class: "additional-infos" }, h("div", { key: '09982468b61a585bd0dedbd81b0e3f7953fad258', class: clsx('file-specs', this.isSortTabShown() && 'file-specs-sort') }, h("mds-text", { key: '2c49035a77a90f6537bcc74a07cecc048824a7b5', variant: "info", typography: "caption" }, this.extensions ? `${this.t.get('canUpload')} ${this.extensions}` : this.t.get('canUploadAll')), h("mds-text", { key: '22a334a6004ed3a749e7d3dae037ff8901fce539', variant: "info", typography: "caption" }, this.t.get('maxFileSizePerFile', { maxFileSize: this.maxFileSize }))), this.isSortTabShown() &&
|
|
622
|
+
h("mds-tab", { key: 'addbb438bcaeaea6f9eb2a40363de53dc424d5e7', class: "action-sort", onMdsTabChange: event => this.onChangeTab(event.detail) }, h("mds-tab-item", { key: '69fba52d02a2f275efa5418ad1b0039d92402baa', icon: iconSortById, selected: this.userSort === 'date', title: this.t.get('sortByDate'), value: 'date' }), h("mds-tab-item", { key: '3012c8683fea3233439ec1031a3853bca5b87854', icon: iconSortByStatus, selected: this.userSort === 'status', title: this.t.get('sortByStatus'), value: 'status' }))), h("div", { key: '8ca350843850b6301b9c0a4b82fdfe38d920fdcd', class: clsx('file-list', this.files.length > this.cssMinCols && 'file-list--more-items') }, this.files.map(file => {
|
|
611
623
|
switch (file.status) {
|
|
612
624
|
case Status.ERROR:
|
|
613
625
|
return (h("mds-file-preview", { deletable: true, variant: "error", filename: file.file.name, filesize: file.file.size.toString(), onMdsFileDelete: () => this.onCancel(file.key), message: file.errorMessage }));
|
|
@@ -619,6 +631,7 @@ const MdsInputUpload$1 = /*@__PURE__*/ proxyCustomElement(class MdsInputUpload e
|
|
|
619
631
|
static get formAssociated() { return true; }
|
|
620
632
|
get host() { return this; }
|
|
621
633
|
static get watchers() { return {
|
|
634
|
+
"initialValue": ["updateInitialValue"],
|
|
622
635
|
"maxFiles": ["updateActionTitle"]
|
|
623
636
|
}; }
|
|
624
637
|
static get style() { return MdsInputUploadStyle0; }
|
|
@@ -627,6 +640,7 @@ const MdsInputUpload$1 = /*@__PURE__*/ proxyCustomElement(class MdsInputUpload e
|
|
|
627
640
|
"maxFileSize": [514, "max-file-size"],
|
|
628
641
|
"maxFiles": [514, "max-files"],
|
|
629
642
|
"sort": [513],
|
|
643
|
+
"initialValue": [16],
|
|
630
644
|
"language": [32],
|
|
631
645
|
"actionTitle": [32],
|
|
632
646
|
"files": [32],
|
|
@@ -637,6 +651,7 @@ const MdsInputUpload$1 = /*@__PURE__*/ proxyCustomElement(class MdsInputUpload e
|
|
|
637
651
|
"getFilesError": [64],
|
|
638
652
|
"reset": [64]
|
|
639
653
|
}, undefined, {
|
|
654
|
+
"initialValue": ["updateInitialValue"],
|
|
640
655
|
"maxFiles": ["updateActionTitle"]
|
|
641
656
|
}]);
|
|
642
657
|
function defineCustomElement$1() {
|
|
@@ -630,21 +630,21 @@ const MdsInput = /*@__PURE__*/ proxyCustomElement(class MdsInput extends HTMLEle
|
|
|
630
630
|
}
|
|
631
631
|
render() {
|
|
632
632
|
var _a, _b;
|
|
633
|
-
return (h(Host, { key: '
|
|
633
|
+
return (h(Host, { key: '6d45a6e848a28e4f548dd7fa35b5ce937b7f25aa' }, this.type === 'number'
|
|
634
634
|
&& this.controlsLayout === 'horizontal'
|
|
635
|
-
&& h("mds-button", { key: '
|
|
635
|
+
&& h("mds-button", { key: '0384e9d5f042131c7c28fdb1d50a9222e8cf5e0d', 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'
|
|
636
636
|
? 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 })
|
|
637
637
|
: 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'
|
|
638
638
|
&& this.controlsLayout === 'vertical'
|
|
639
|
-
&& h("div", { key: '
|
|
639
|
+
&& h("div", { key: '751cfdc465e5ad26294774105a20e40054d0ca8e', class: "counter counter--vertical" }, h("mds-button", { key: '13350c09d537edf216e553756094b711a48b0e08', 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: '6f6a4423ceed21a6675634a39e6ee95599056c40', 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'
|
|
640
640
|
&& this.controlsLayout === 'horizontal'
|
|
641
|
-
&& h("mds-button", { key: '
|
|
642
|
-
&& h("mds-button", { key: '
|
|
643
|
-
&& h("mds-button", { key: '
|
|
644
|
-
h("mds-input-tip-item", { key: '
|
|
645
|
-
h("datalist", { key: '
|
|
641
|
+
&& h("mds-button", { key: '0f473cb643237ed76fb4f0139772a00ee0f8abcd', 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'
|
|
642
|
+
&& h("mds-button", { key: '15be745254d2d8864c0c37c83d8e5628ed23b6c5', 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
|
|
643
|
+
&& h("mds-button", { key: 'f3c8a952f354a68c461943fce3d85586292b06f2', 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: '46825f67b6af02d703ccc6035cefecb1f23bc1b1', lang: this.language, position: "top", active: this.hasFocus, part: 'tip-top' }, this.disabled && h("mds-input-tip-item", { key: '268436f08a8e3c91407694c5b4d3492dcbb700d5', expanded: true, variant: "disabled" }), this.readonly && h("mds-input-tip-item", { key: 'd01e7052fb7f9be3f7a8d8752782db5aeeb2cf75', expanded: true, variant: "readonly" }), this.required &&
|
|
644
|
+
h("mds-input-tip-item", { key: '1717e91489cb374911d7181a10eb72c244f18093', expanded: this.hasFocus, variant: this.isValid ? 'required-success' : 'required' })), h("mds-input-tip", { key: '616a3c9170a42b59e682cbb2f75bd237d845df13', lang: this.language, position: "bottom", active: this.hasFocus, part: 'tip-bottom' }, this.tip && h("mds-input-tip-item", { key: 'a535ac2ef3415693d58c03ba0786f4a3b51bb964', expanded: true, variant: "text" }, this.tip), this.maxlength && h("mds-input-tip-item", { key: '522b5f3e1a3380ba65e9b7e49e56274844988009', part: "tip-count", expanded: true, variant: this.countVariant }, this.currentLengthLabel)), this.datalist &&
|
|
645
|
+
h("datalist", { key: 'cb742a0c5edf17d9357ca9f24e1477baa410e408', id: this.datalistId, class: "datalist" }, this.datalist.map((element, i) => {
|
|
646
646
|
return h("option", { key: i, value: element });
|
|
647
|
-
})), this.icon && !this.await && h("mds-icon", { key: '
|
|
647
|
+
})), this.icon && !this.await && h("mds-icon", { key: 'ebebe67bfe59337025066e1694d310d4814f3847', class: clsx('icon', this.variant), name: this.icon }), h("mds-spinner", { key: '2b1f07e743294862129f60fb293177c28eff5522', running: this.await, class: clsx('await', this.variant) })));
|
|
648
648
|
}
|
|
649
649
|
static get formAssociated() { return true; }
|
|
650
650
|
get el() { return this; }
|
|
@@ -76,19 +76,20 @@ const MdsTableRow$1 = /*@__PURE__*/ proxyCustomElement(class MdsTableRow extends
|
|
|
76
76
|
this.observer.observe(this.actions);
|
|
77
77
|
}
|
|
78
78
|
disconnectedCallback() {
|
|
79
|
-
this.observer
|
|
79
|
+
if (this.observer)
|
|
80
|
+
this.observer.disconnect();
|
|
80
81
|
}
|
|
81
82
|
render() {
|
|
82
|
-
return (h(Host, { key: '
|
|
83
|
-
h("mds-table-cell", { key: '
|
|
84
|
-
h("mds-table-cell", { key: '
|
|
85
|
-
h("mds-table-cell", { key: '
|
|
83
|
+
return (h(Host, { key: 'c0e67a5763f47d180b02a5a3ca85f7164708a60f', role: "row" }, this.selectable &&
|
|
84
|
+
h("mds-table-cell", { key: '0f55b635bf14f1a5051a4f5438e06424dbf33573', class: "selection-cell" }, h("div", { key: 'bf032a097ae262c64c60cca5d0459726229592c5', class: "checkbox-wrapper" }, h("mds-input-switch", { key: '76b8caf51030115bbda38f71ce237d8f9bfbcf02', title: this.t.get(this.selected ? 'unselectRow' : 'selectRow'), lang: this.language, type: "checkbox", checked: this.selected, onMdsInputSwitchChange: this.handleSelectionChange }))), h("slot", { key: '5e1bdd763f5eec6cb7df2a84775284403c54bdee' }), this.hasActions && isSafari() &&
|
|
85
|
+
h("mds-table-cell", { key: '5496b73c5e1c84f52209f06f8615b35ec72c02fd', class: "actions-cell actions-cell--disable" }, h("div", { key: '49a200874c6f7183b0aea31b6f781132f5e71f9f', class: "actions" }, h("slot", { key: 'd1819cf376deba84c2e92d4c942b40744bcf9cc9', name: "action" }))), this.hasActions && !isSafari() &&
|
|
86
|
+
h("mds-table-cell", { key: '0e8a947018302174747d53d0343592698ec84b04', class: "actions-cell" }, h("div", { key: 'fe19579e1d1f937f784415221414def39a77bcec', class: "actions-sizer", style: {
|
|
86
87
|
minHeight: '1px',
|
|
87
88
|
maxWidth: this.sizerWidth,
|
|
88
89
|
minWidth: this.sizerWidth,
|
|
89
|
-
} }), h("div", { key: '
|
|
90
|
+
} }), h("div", { key: 'cd0c5cf2da7ea6252a68d0a093f6abdb3b2dd90d', class: "actions-view" }, h("div", { key: 'c6b731c14457f0f36b114d1d258e75efc6842f06', class: "actions", ref: el => this.actions = el, style: {
|
|
90
91
|
marginRight: `calc(${this.sizerWidth} + var(--mds-table-cell-padding))`,
|
|
91
|
-
} }, h("slot", { key: '
|
|
92
|
+
} }, h("slot", { key: '8c6c55a4d759fb04d1f0ae13a6263bb01dc4878e', name: "action" }))))));
|
|
92
93
|
}
|
|
93
94
|
get host() { return this; }
|
|
94
95
|
static get style() { return MdsTableRowStyle0; }
|
|
@@ -272,7 +272,8 @@ const MdsText = /*@__PURE__*/ proxyCustomElement(class MdsText extends HTMLEleme
|
|
|
272
272
|
this.tag = (_a = this.tag) !== null && _a !== void 0 ? _a : tag;
|
|
273
273
|
}
|
|
274
274
|
componentDidLoad() {
|
|
275
|
-
this.
|
|
275
|
+
if (this.animation === 'yugop')
|
|
276
|
+
this.updateCSSCustomProps();
|
|
276
277
|
}
|
|
277
278
|
textHandler(newValue) {
|
|
278
279
|
if (this.animation === 'none') {
|
|
@@ -286,7 +287,7 @@ const MdsText = /*@__PURE__*/ proxyCustomElement(class MdsText extends HTMLEleme
|
|
|
286
287
|
}
|
|
287
288
|
}
|
|
288
289
|
render() {
|
|
289
|
-
return (h(Host, { key: '
|
|
290
|
+
return (h(Host, { key: 'b4e7633d031bd3a64fc985a508cb0ac8b40d18b8' }, h(this.tag, { key: '92825cc9501fb91f8e8b13397c707dc47d1177e4', class: "text" }, !this.text
|
|
290
291
|
? h("slot", null)
|
|
291
292
|
: this.text)));
|
|
292
293
|
}
|
package/dist/documentation.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"timestamp": "
|
|
2
|
+
"timestamp": "2026-01-16T13:17:05",
|
|
3
3
|
"compiler": {
|
|
4
4
|
"name": "@stencil/core",
|
|
5
5
|
"version": "4.27.2",
|
|
@@ -11213,9 +11213,17 @@
|
|
|
11213
11213
|
"name": "password-toggle-button",
|
|
11214
11214
|
"docs": ""
|
|
11215
11215
|
},
|
|
11216
|
+
{
|
|
11217
|
+
"name": "tip-bottom",
|
|
11218
|
+
"docs": ""
|
|
11219
|
+
},
|
|
11216
11220
|
{
|
|
11217
11221
|
"name": "tip-count",
|
|
11218
11222
|
"docs": ""
|
|
11223
|
+
},
|
|
11224
|
+
{
|
|
11225
|
+
"name": "tip-top",
|
|
11226
|
+
"docs": ""
|
|
11219
11227
|
}
|
|
11220
11228
|
],
|
|
11221
11229
|
"dependents": [
|
|
@@ -13901,6 +13909,43 @@
|
|
|
13901
13909
|
"getter": false,
|
|
13902
13910
|
"setter": false
|
|
13903
13911
|
},
|
|
13912
|
+
{
|
|
13913
|
+
"name": "initialValue",
|
|
13914
|
+
"type": "FileList | File[] | undefined",
|
|
13915
|
+
"complexType": {
|
|
13916
|
+
"original": "FileList | File[]",
|
|
13917
|
+
"resolved": "FileList | File[] | undefined",
|
|
13918
|
+
"references": {
|
|
13919
|
+
"FileList": {
|
|
13920
|
+
"location": "global",
|
|
13921
|
+
"id": "global::FileList"
|
|
13922
|
+
},
|
|
13923
|
+
"File": {
|
|
13924
|
+
"location": "global",
|
|
13925
|
+
"id": "global::File"
|
|
13926
|
+
}
|
|
13927
|
+
}
|
|
13928
|
+
},
|
|
13929
|
+
"mutable": false,
|
|
13930
|
+
"reflectToAttr": false,
|
|
13931
|
+
"docs": "Specifies initial files uploaded",
|
|
13932
|
+
"docsTags": [],
|
|
13933
|
+
"values": [
|
|
13934
|
+
{
|
|
13935
|
+
"type": "FileList"
|
|
13936
|
+
},
|
|
13937
|
+
{
|
|
13938
|
+
"type": "File[]"
|
|
13939
|
+
},
|
|
13940
|
+
{
|
|
13941
|
+
"type": "undefined"
|
|
13942
|
+
}
|
|
13943
|
+
],
|
|
13944
|
+
"optional": true,
|
|
13945
|
+
"required": false,
|
|
13946
|
+
"getter": false,
|
|
13947
|
+
"setter": false
|
|
13948
|
+
},
|
|
13904
13949
|
{
|
|
13905
13950
|
"name": "maxFileSize",
|
|
13906
13951
|
"type": "number",
|
package/dist/esm/loader.js
CHANGED
|
@@ -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],\"language\":[32],\"actionTitle\":[32],\"files\":[32],\"progress\":[32],\"animateText\":[32],\"updateLang\":[64],\"getFiles\":[64],\"getFilesError\":[64],\"reset\":[64]},null,{\"maxFiles\":[\"updateActionTitle\"]}]]],[\"mds-input-date\",[[1,\"mds-input-date\",{\"value\":[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\",[[1,\"mds-input-date-range\",{\"startDate\":[513,\"start-date\"],\"endDate\":[513,\"end-date\"],\"min\":[513],\"max\":[513],\"delay\":[514],\"calendarKey\":[32],\"internalStartDate\":[32],\"internalEndDate\":[32],\"dropdownRef\":[32],\"hasPreselection\":[32],\"language\":[32],\"updateLang\":[64],\"preselect\":[64]}]]],[\"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],\"visible\":[1540],\"hide\":[64]},null,{\"visible\":[\"handleVisbilityProp\"]}]]],[\"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-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]},null,{\"done\":[\"selectedHandler\"],\"current\":[\"currentHandler\"]}]]],[\"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-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]},null,{\"value\":[\"valueChanged\"],\"disabled\":[\"disabledChanged\"],\"placeholder\":[\"placeholderChanged\"]}]]],[\"mds-paginator\",[[1,\"mds-paginator\",{\"pages\":[2],\"currentPage\":[1538,\"current-page\"]}]]],[\"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-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],\"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]},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\"],\"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-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-avatar-stack-item\",[[1,\"mds-avatar-stack-item\",{\"count\":[514],\"initials\":[1537],\"src\":[513],\"tone\":[513],\"variant\":[513]}]]],[\"mds-badge\",[[1,\"mds-badge\",{\"variant\":[513],\"tone\":[513],\"typography\":[1],\"typographyVariant\":[1,\"typography-variant\"]}]]],[\"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-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-progress\",[[1,\"mds-progress\",{\"progress\":[2],\"direction\":[513],\"variant\":[513],\"steps\":[1],\"currentStep\":[32]},null,{\"progress\":[\"progressChanged\"],\"steps\":[\"stepsChanged\"]}]]],[\"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-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-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-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],\"close\":[64]},null,{\"opened\":[\"handleOpenProp\"],\"backdrop\":[\"handleBackdropProp\"]}]]],[\"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\"],\"deletable\":[\"handleDeletableProp\"],\"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-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\",[[1,\"mds-input-date\",{\"value\":[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\",[[1,\"mds-input-date-range\",{\"startDate\":[513,\"start-date\"],\"endDate\":[513,\"end-date\"],\"min\":[513],\"max\":[513],\"delay\":[514],\"calendarKey\":[32],\"internalStartDate\":[32],\"internalEndDate\":[32],\"dropdownRef\":[32],\"hasPreselection\":[32],\"language\":[32],\"updateLang\":[64],\"preselect\":[64]}]]],[\"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],\"visible\":[1540],\"hide\":[64]},null,{\"visible\":[\"handleVisbilityProp\"]}]]],[\"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-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]},null,{\"done\":[\"selectedHandler\"],\"current\":[\"currentHandler\"]}]]],[\"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-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]},null,{\"value\":[\"valueChanged\"],\"disabled\":[\"disabledChanged\"],\"placeholder\":[\"placeholderChanged\"]}]]],[\"mds-paginator\",[[1,\"mds-paginator\",{\"pages\":[2],\"currentPage\":[1538,\"current-page\"]}]]],[\"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-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],\"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]},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\"],\"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-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-avatar-stack-item\",[[1,\"mds-avatar-stack-item\",{\"count\":[514],\"initials\":[1537],\"src\":[513],\"tone\":[513],\"variant\":[513]}]]],[\"mds-badge\",[[1,\"mds-badge\",{\"variant\":[513],\"tone\":[513],\"typography\":[1],\"typographyVariant\":[1,\"typography-variant\"]}]]],[\"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-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-progress\",[[1,\"mds-progress\",{\"progress\":[2],\"direction\":[513],\"variant\":[513],\"steps\":[1],\"currentStep\":[32]},null,{\"progress\":[\"progressChanged\"],\"steps\":[\"stepsChanged\"]}]]],[\"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-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-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-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],\"close\":[64]},null,{\"opened\":[\"handleOpenProp\"],\"backdrop\":[\"handleBackdropProp\"]}]]],[\"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\"],\"deletable\":[\"handleDeletableProp\"],\"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-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 };
|