xv-webcomponents 0.1.48 → 0.1.50

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 (37) hide show
  1. package/dist/cjs/loader.cjs.js +1 -1
  2. package/dist/cjs/xv-accordion-v2_38.cjs.entry.js +149 -28
  3. package/dist/cjs/xv-accordion-v2_38.cjs.entry.js.map +1 -1
  4. package/dist/cjs/xv-webcomponents.cjs.js +1 -1
  5. package/dist/collection/components/xv-header/xv-header.css +109 -0
  6. package/dist/collection/components/xv-header/xv-header.js +131 -3
  7. package/dist/collection/components/xv-header/xv-header.js.map +1 -1
  8. package/dist/collection/components/xv-link/xv-link.js +1 -1
  9. package/dist/collection/components/xv-modal/xv-modal.js +1 -1
  10. package/dist/collection/components/xv-notification/xv-notification.js +1 -1
  11. package/dist/collection/components/xv-number-input/xv-number-input.js +2 -2
  12. package/dist/collection/components/xv-overflow-menu/xv-overflow-menu-item/xv-overflow-menu-item.js +1 -1
  13. package/dist/collection/components/xv-overflow-menu/xv-overflow-menu.js +1 -1
  14. package/dist/collection/components/xv-progress-indicator/xv-progress-indicator-item/xv-progress-indicator-item.js +1 -1
  15. package/dist/collection/components/xv-progress-indicator/xv-progress-indicator.js +1 -1
  16. package/dist/collection/components/xv-slider/xv-slider.js +1 -1
  17. package/dist/collection/components/xv-table/xv-table-cell/xv-table-cell.js +1 -1
  18. package/dist/collection/components/xv-table/xv-table-expand/xv-table-expand.js +1 -1
  19. package/dist/collection/components/xv-table/xv-table-row/xv-table-row.js +1 -1
  20. package/dist/collection/components/xv-table/xv-table.js +1 -1
  21. package/dist/collection/components/xv-tabs/xv-tab/xv-tab.js +1 -1
  22. package/dist/collection/components/xv-tag/xv-tag.js +1 -1
  23. package/dist/collection/components/xv-text-input/xv-text-input.js +2 -2
  24. package/dist/collection/components/xv-textarea/xv-textarea.js +2 -2
  25. package/dist/collection/components/xv-tile/xv-tile.js +2 -2
  26. package/dist/collection/components/xv-toggle-tip/xv-toggle-tip.js +1 -1
  27. package/dist/collection/components/xv-tooltip/xv-tooltip.js +2 -2
  28. package/dist/esm/loader.js +1 -1
  29. package/dist/esm/xv-accordion-v2_38.entry.js +149 -28
  30. package/dist/esm/xv-accordion-v2_38.entry.js.map +1 -1
  31. package/dist/esm/xv-webcomponents.js +1 -1
  32. package/dist/types/components/xv-header/xv-header.d.ts +30 -0
  33. package/dist/xv-webcomponents/{p-50fb934d.entry.js → p-f00c82ed.entry.js} +2 -2
  34. package/dist/xv-webcomponents/p-f00c82ed.entry.js.map +1 -0
  35. package/dist/xv-webcomponents/xv-webcomponents.esm.js +1 -1
  36. package/package.json +1 -1
  37. package/dist/xv-webcomponents/p-50fb934d.entry.js.map +0 -1
@@ -56,7 +56,7 @@ export class XvProgressIndicator {
56
56
  this.updateChildItems();
57
57
  }
58
58
  render() {
59
- return (h(Host, { key: '3a2b488debb915e0fe1a8480abebad12bd8a8d5f', variant: this.variant, size: this.size, class: { 'xv-progress-indicator': true } }, h("slot", { key: 'ab7b6fd72941e3b6fa39a5bc76c27754a57960ed' })));
59
+ return (h(Host, { key: 'e0d54d09855103a5d58d4ebe57d0996d39434edf', variant: this.variant, size: this.size, class: { 'xv-progress-indicator': true } }, h("slot", { key: 'ddda0e66166e4607e2cc4f76ee507df80adfb55e' })));
60
60
  }
61
61
  static get is() { return "xv-progress-indicator-v2"; }
62
62
  static get encapsulation() { return "shadow"; }
@@ -38,7 +38,7 @@ export class XvSlider {
38
38
  this.setValue(this.min);
39
39
  }
40
40
  render() {
41
- return (h(Host, { key: 'e26067db759d4d7b6b5937e006ae108dc1052aa1', class: { disabled: this.disabled, readonly: this.readonly } }, this.label && h("label", { key: '28c63084c306bc13a9d9c437ab078007d200cf87', class: "label" }, this.label), h("div", { key: 'a936e3da1e4a9746aed359d6a4a1a4cb20ac111c', class: "control" }, h("span", { key: 'a0b17e87acd277553b7ca9e2f0ab196fe4b883b3', class: "control_label" }, this.min), h("input", { key: '19f52dc40462bd506a210e63f8ac51668bd47bfd', type: "range", disabled: this.disabled || this.readonly, readonly: this.readonly, name: this.name, min: this.min, max: this.max, step: this.step, value: this.value, onInput: this.handleInput, style: { backgroundSize: `${((this.value - this.min) * 100) / (this.max - this.min)}% 100%` } }), h("span", { key: 'a97b78b26349d1531a1ca1bc2284fdd3ba3e3b44', class: "control_label" }, this.max), !this.notEditable && (h("input", { key: '183b9d2659d2961b32ccb777a0d22757764532cb', type: "number", disabled: this.disabled, readonly: this.readonly, name: `${this.name}-number-input`, step: this.step, min: this.min, max: this.max, value: this.value, onInput: this.handleNumberInput, onBlur: this.handleNumberBlur })))));
41
+ return (h(Host, { key: 'bc52bc43fcd89ff54a5f4c72028b828dee0f3534', class: { disabled: this.disabled, readonly: this.readonly } }, this.label && h("label", { key: 'ed6b049b472ff67c74742b798843ec478be2edbe', class: "label" }, this.label), h("div", { key: 'd0c489484df1b8f36991ebc1b6ef7a788a2ae803', class: "control" }, h("span", { key: '6457a220620154e11f1c013db22e43804c388d15', class: "control_label" }, this.min), h("input", { key: '26487c6895137b3c0a9132f939502efcada741b1', type: "range", disabled: this.disabled || this.readonly, readonly: this.readonly, name: this.name, min: this.min, max: this.max, step: this.step, value: this.value, onInput: this.handleInput, style: { backgroundSize: `${((this.value - this.min) * 100) / (this.max - this.min)}% 100%` } }), h("span", { key: '3cfd88bf4ffdbb1c664943df63fb5052a617c7eb', class: "control_label" }, this.max), !this.notEditable && (h("input", { key: '51a7fbaad3009b9b048db7cc78f847ad6fc40d51', type: "number", disabled: this.disabled, readonly: this.readonly, name: `${this.name}-number-input`, step: this.step, min: this.min, max: this.max, value: this.value, onInput: this.handleNumberInput, onBlur: this.handleNumberBlur })))));
42
42
  }
43
43
  static get is() { return "xv-slider-v2"; }
44
44
  static get encapsulation() { return "shadow"; }
@@ -22,7 +22,7 @@ export class XvTableCell {
22
22
  }
23
23
  ;
24
24
  render() {
25
- return (h(Host, { key: 'da0cf9e00eca6e9ee3306a8dc825f2b4a87eb598' }, h("slot", { key: '7f36800f9661fc43ae2391552aa283304baf2538' })));
25
+ return (h(Host, { key: '0ff4e7743d26ae139edab5c0cf05f318d9c7739a' }, h("slot", { key: '306dbcda28332ecbff1c12f2d13a78f824d5764e' })));
26
26
  }
27
27
  static get is() { return "xv-table-v2-cell"; }
28
28
  static get encapsulation() { return "shadow"; }
@@ -10,7 +10,7 @@ export class XvTableExpand {
10
10
  };
11
11
  }
12
12
  render() {
13
- return (h(Host, { key: 'a9e5cd47d39abb01decdc96639875a1898a387bc' }, h("button", { key: 'e2898b708cea17663c3c2dabe0559e92292a57ad', class: { 'expand-btn': true, open: this.open }, disabled: this.disabled, onClick: this.handleExpand }), h("slot", { key: 'e24c605e5ec21d6361bc95100d2c6df21ac51211', name: XV_EXPANDABLE_KEY }), h("div", { key: '521cdc49e930d8c97acaa96154da1995c337a531', class: { expandableContent: true, open: this.open } }, h("slot", { key: 'ac9ba7114a00733d18211f9c78fb9280cbaa098e' }))));
13
+ return (h(Host, { key: 'bb3f71c56acc05c72c972189b3cfb6bce71174d2' }, h("button", { key: '88ac42e78de16bd2065dbbb5fd8af630f5bb87f5', class: { 'expand-btn': true, open: this.open }, disabled: this.disabled, onClick: this.handleExpand }), h("slot", { key: '5c42fc002339bf4d4f9ec2ca966d6b3831a06ed7', name: XV_EXPANDABLE_KEY }), h("div", { key: '5ce78bde032772de86d679a427b794c3b3678fd2', class: { expandableContent: true, open: this.open } }, h("slot", { key: '00e7c36f570da6fe1a87e2f93dc7e35f32d939ba' }))));
14
14
  }
15
15
  componentDidLoad() {
16
16
  setAttr(this.el.parentElement, XV_EXPANDABLE_KEY, true);
@@ -42,7 +42,7 @@ export class XvTableRow {
42
42
  }
43
43
  }
44
44
  render() {
45
- return (h(Host, { key: '48449909525e477d9f4801b44e4a38ab0c5596b8' }, this.variant !== undefined && (h("xv-table-v2-cell", { key: '86a4c79fdc02b6c63420a5309fb33ba05652a581', class: "cell-control" }, this.variant === 'checkbox' && (h("xv-checkbox-v2", { key: '617e19158a6eca1d876d819acf395b003189262f', name: this.name, partial: this.partial, checked: this.checked || this.partial, disabled: this.disabled, required: this.required, readonly: this.readonly, onEventChange: this.checkHandle })), this.variant === 'radio' && (h("input", { key: '0f945ee0248531f177c0aba52a9c563bd891c157', type: "radio", name: this.name, checked: this.checked || this.partial, disabled: this.disabled, required: this.required, readonly: this.readonly })))), h("slot", { key: 'd84ff84dead01a356db64b4c32a886f98dccdddc' })));
45
+ return (h(Host, { key: '9064d413593ea0efcb3c1e23a39493a1af431216' }, this.variant !== undefined && (h("xv-table-v2-cell", { key: 'b9c942e3f762eea413238968521f1fa2c1232155', class: "cell-control" }, this.variant === 'checkbox' && (h("xv-checkbox-v2", { key: '2cb2dc9c7f417d936cf4f031e9647977a9768ca5', name: this.name, partial: this.partial, checked: this.checked || this.partial, disabled: this.disabled, required: this.required, readonly: this.readonly, onEventChange: this.checkHandle })), this.variant === 'radio' && (h("input", { key: '0f0e7eed6074b9e39d4056b5b6347abf864adf5d', type: "radio", name: this.name, checked: this.checked || this.partial, disabled: this.disabled, required: this.required, readonly: this.readonly })))), h("slot", { key: '4c0b0ea47a4a7019aa3ea0cf63c61c8a78d266f3' })));
46
46
  }
47
47
  componentWillLoad() {
48
48
  this.setInitialAttrs();
@@ -31,7 +31,7 @@ export class XvTable {
31
31
  .join(' ') + ' repeat(auto-fit, minmax(0, 1fr))');
32
32
  }
33
33
  render() {
34
- return (h(Host, { key: '29601da5e5dc0fec7df33bc0e1b7367a6ef4047e', class: { batchVisible: !!this.selectedCount } }, h("slot", { key: '012d3ace649ac0df4b3fd0fd1cb5a449805f21d6', name: "title" }, !!this.el.title && h("h2", { key: '3457829aae2426f3b5c6eb39c822065f9398c81a', class: "xv-table-title" }, this.el.title)), h("slot", { key: 'e761d8765f165a0d0364c39947a614fde40195bc', name: "toolbar" }), h("div", { key: '93ec10505ff0a85f6c8cd5ff3bff5d6662b29191', class: "xv-table" }, h("div", { key: 'f55a1902e987d123825cc909959189793cbc9368', class: "batch-actions" }, h(Fragment, { key: 'dff038c64ef1b439f19e8adfe27d18d623a039a2' }, h("div", { key: '569ac0520aaeb2741293a4177c26359a5488d4cf', class: "batch-actions_content" }, h("slot", { key: 'eba51bd2a22c64d9e6ab016080004bacdb82b4e9', name: "batch" })), h("p", { key: 'f4f34d07ffff002bc7058e7e013d8b8e74b19936', class: "batch-actions_count" }, !!this.selectedCount && `${this.selectedCount} ${this.selectedCount === 1 ? 'Position ausgewählt' : 'Positionen ausgewählt'}`))), h("div", { key: '4f8bb6393cc19868c9bdb366e0e81ef221653127', class: "xv-table_wrapper" }, h("slot", { key: '136e84a6102287b1bfd81d6820d16639a294c1d3' }), h("slot", { key: 'e3340ec606b97d90c3f9717c3da24fbe2ba9c4c0', name: "footer" })), !!this.loading && (h("div", { key: '5463c9a544bfbd36a1e42e396a013a7c8272b262', class: "xv-table_loading" }, h("xv-loader-v2", { key: '2365ba0f589ca81ae113bb02b3b5f842dd866a3a', size: SIZE_VAR.LG }))))));
34
+ return (h(Host, { key: '42f9f09a80a6acfa4e23d01aabe863bac78d1660', class: { batchVisible: !!this.selectedCount } }, h("slot", { key: 'c7ba5c949b8791471455165fb15100da6415914e', name: "title" }, !!this.el.title && h("h2", { key: 'ac0c07aa81781b826cb2b8f079faa62a5a0a30dc', class: "xv-table-title" }, this.el.title)), h("slot", { key: 'e32853c93bd0a30a2ed51829b2beffc9c9678d4a', name: "toolbar" }), h("div", { key: 'fe834bc3f26f49a7904f019f968635047250566a', class: "xv-table" }, h("div", { key: 'f73e6e59ef8a90349374bce2a280cdac6f35e5ec', class: "batch-actions" }, h(Fragment, { key: 'eb05cd81ecea111cde8990df18537bead9ee424d' }, h("div", { key: 'fd9bf66b77916300cf3ad7acc96ef27ea221bc04', class: "batch-actions_content" }, h("slot", { key: 'ca7fb6a465b676cdb20350b4b0c18b12feeba59f', name: "batch" })), h("p", { key: '7f462fdb0595bf66035b2e0e621eb036707626e2', class: "batch-actions_count" }, !!this.selectedCount && `${this.selectedCount} ${this.selectedCount === 1 ? 'Position ausgewählt' : 'Positionen ausgewählt'}`))), h("div", { key: '19e6a08cf465700d7df09cf5840bfa97d4c03e5c', class: "xv-table_wrapper" }, h("slot", { key: '1f8d166befb4a242b524e4858be5c26ceb0444e3' }), h("slot", { key: '6c3efa81cbae42d06cc481240087edb6dc5ae2ed', name: "footer" })), !!this.loading && (h("div", { key: 'a3faa26e82c7b1f04cb36c23aaac60e2f856d825', class: "xv-table_loading" }, h("xv-loader-v2", { key: '15bb92a650da85837d6386ce5b8079be45076a97', size: SIZE_VAR.LG }))))));
35
35
  }
36
36
  componentWillLoad() {
37
37
  this.setColsSizeTemplate();
@@ -6,7 +6,7 @@ export class XvTab {
6
6
  this.loading = false;
7
7
  }
8
8
  render() {
9
- return (h(Host, { key: 'fae61291cf2492770a38d24f3c9648676de3122a', disabled: this.disabled, name: this.name }, this.loading ? h("xv-loader-v2", { size: SIZE_VAR.LG }) : h("slot", null)));
9
+ return (h(Host, { key: '8255e99fd6bfbfafb007c614c00155f9dcbec5a2', disabled: this.disabled, name: this.name }, this.loading ? h("xv-loader-v2", { size: SIZE_VAR.LG }) : h("slot", null)));
10
10
  }
11
11
  static get is() { return "xv-tab-v2"; }
12
12
  static get encapsulation() { return "shadow"; }
@@ -13,7 +13,7 @@ export class XvTag {
13
13
  this.closeClick.emit(e);
14
14
  }
15
15
  render() {
16
- return (h(Host, { key: '9cb94f4c7aa2266e5ee0ccdbfdfa46864950d20c', style: { color: this.color, background: this.bg }, class: `xv-tag ${this.disabled ? 'disabled' : ''} ${this.size}` }, h("div", { key: '425d8151ab21d436b11905018b60cf9fbb73bd4a', class: "xv-tag_content" }, h("slot", { key: '378c749949096c909478d7aae2cc07787134c62f' })), this.closeable && (h("button", { key: 'c00f9c254ef2e31965c3ae85874c71b354189e18', onClick: this.closeHandler.bind(this), class: "xv-tag_close" }))));
16
+ return (h(Host, { key: '4157ec86e85d4012ae97a4e14ff8607f0a90c7b3', style: { color: this.color, background: this.bg }, class: `xv-tag ${this.disabled ? 'disabled' : ''} ${this.size}` }, h("div", { key: '0db42f839ab10c44073e342abdfc2722887d1ac3', class: "xv-tag_content" }, h("slot", { key: '739f63c8532525b2a3710f52991b9dc3816c2645' })), this.closeable && (h("button", { key: 'e579695b23db9562a6ba48cce8762cc42c576282', onClick: this.closeHandler.bind(this), class: "xv-tag_close" }))));
17
17
  }
18
18
  static get is() { return "xv-tag-v2"; }
19
19
  static get encapsulation() { return "shadow"; }
@@ -19,13 +19,13 @@ export class XvTextInput {
19
19
  };
20
20
  }
21
21
  render() {
22
- return (h(Host, { key: '7a0e9e589aff2f41a3a0d887f7d6b7b89ff34ede', class: { disabled: !!this.disabled } }, h("label", { key: '6c59370778abcbe123497af3b113a51e640834d7', class: "control" }, this.label && h("span", { key: 'cf429799147f423f825bd0c4cc2977a6711717f6', class: "control_label" }, this.label), h("div", { key: 'ea0b6dad2c22ee59461176df65931bf19d004a7e', class: {
22
+ return (h(Host, { key: '3c060564de6fd899b5e0b09e48e66577274f4b5b', class: { disabled: !!this.disabled } }, h("label", { key: 'ddfcbcfcf85c69ede6eb0afe69fd72efcd1fa3de', class: "control" }, this.label && h("span", { key: 'd6c6d158ccce7267d3520c9a13fd8a37211a7543', class: "control_label" }, this.label), h("div", { key: '8514459bed1048f792dcafc157e5d9e6817be5d9', class: {
23
23
  'control_input': true,
24
24
  readonly: !!this.readonly,
25
25
  [this.size]: true,
26
26
  error: !!this.error,
27
27
  warning: !!this.warning,
28
- } }, h("input", { key: '1a3d07c3fb9abfc00b7652c342d0724f3cad4892', autocomplete: this.autocomplete, type: this.type, placeholder: this.placeholder, disabled: this.disabled, readonly: this.readonly, onInput: this.handleInput, name: this.name, value: this.value }), h("div", { key: 'dceafc8d5a1d1fa8a7a0cd8130246579432f3bc7', class: "control_input__icons" }, this.loading && h("xv-loader-v2", { key: '9791217db5882d2463454b5dca25e3bf4f0215c4', size: SIZE_VAR.XS }), !!this.error ? (h("span", { class: "status-icon error", "aria-hidden": "true" }, "!")) : !!this.warning ? (h("span", { class: "status-icon warning", "aria-hidden": "true" }, "\u26A0")) : null))), this.helper && h("p", { key: '22b59a179548e6690a1d97b2cc4bfce4bef1fc74', class: "message" }, this.helper), typeof this.error === 'string' ? (h("p", { class: "message error" }, this.error)) : typeof this.warning === 'string' ? (h("p", { class: "message warning" }, this.warning)) : null));
28
+ } }, h("input", { key: '94f3f1f855b3e7cd30370dad028b56f8d1a9f206', autocomplete: this.autocomplete, type: this.type, placeholder: this.placeholder, disabled: this.disabled, readonly: this.readonly, onInput: this.handleInput, name: this.name, value: this.value }), h("div", { key: '2a30c0b835f680247c7022f0c7e85c260253bd97', class: "control_input__icons" }, this.loading && h("xv-loader-v2", { key: 'dd1bc2517e789b937abcbb93ea5b7610442e7f12', size: SIZE_VAR.XS }), !!this.error ? (h("span", { class: "status-icon error", "aria-hidden": "true" }, "!")) : !!this.warning ? (h("span", { class: "status-icon warning", "aria-hidden": "true" }, "\u26A0")) : null))), this.helper && h("p", { key: '408e8ddebe99e3eafc27bd8809d4d9212d35b08c', class: "message" }, this.helper), typeof this.error === 'string' ? (h("p", { class: "message error" }, this.error)) : typeof this.warning === 'string' ? (h("p", { class: "message warning" }, this.warning)) : null));
29
29
  }
30
30
  static get is() { return "xv-text-input-v2"; }
31
31
  static get encapsulation() { return "shadow"; }
@@ -20,12 +20,12 @@ export class XvTextarea {
20
20
  this.value && this.internals.setFormValue(this.value);
21
21
  }
22
22
  render() {
23
- return (h(Host, { key: '3bc07e9f443313fd4dbc0545237ab7bc970ebc12', class: { disabled: !!this.disabled } }, h("label", { key: '1076f7c69d7ed672cd9efcb0b11e5be97bac9724', class: "control" }, (this.label || this.max) && (h("p", { key: '8bfe509434fbfc8653c7705fa160de1fc160157c', class: "control_label" }, h("span", { key: '2e9ceb720b141847ac58091b2bd0112ea1f44559' }, this.label, this.info && h("xv-tooltip-v2", { key: 'e0aa0a93a4e6f6452bb2ccf3cef52856d8441c20', message: this.info })), this.max !== undefined && !this.counterHide && (h("span", { key: '8e2e1406ccdb108fc02e1df13fd12ac6a1e21c35', class: "control_label__count" }, this.value.length || 0, "/", this.max)))), h("div", { key: '923b1285a9ae16f7bdef75c708b7970482f67cf8', class: {
23
+ return (h(Host, { key: '66ee739c5464a1493088ad58a7da49d21a61a23f', class: { disabled: !!this.disabled } }, h("label", { key: 'f4cba05eba103c29f6b51de880ebfc828db7a923', class: "control" }, (this.label || this.max) && (h("p", { key: '4e69830461cde1cbc829fc2e17bc303500caf2b8', class: "control_label" }, h("span", { key: '1c29b130c1afb95fec41a1bbb20988423982ee0c' }, this.label, this.info && h("xv-tooltip-v2", { key: '9c76a92576e409ac09253e3cb968232ba3f44119', message: this.info })), this.max !== undefined && !this.counterHide && (h("span", { key: 'e6acf33410925c87e259769cea174f92915fe83f', class: "control_label__count" }, this.value.length || 0, "/", this.max)))), h("div", { key: 'b986d86299a720deb8b740b1c9aa5a3106a97a86', class: {
24
24
  'control_input': true,
25
25
  readonly: !!this.readonly,
26
26
  error: this.error !== undefined,
27
27
  warning: this.warning !== undefined,
28
- } }, h("textarea", { key: '14cec83f411224a5823a1fbabdd2b408eb1b7284', class: { 'no-resize': !!this.noResize }, name: this.name, rows: this.rows, value: this.value, maxLength: this.max, disabled: this.disabled, readOnly: this.readonly, placeholder: this.placeholder, onInput: this.onInput }), h("div", { key: '3de6d4a96e4582d39e0dcc3959134477a4df701c', class: "control_input__icons" }, this._renderIcon()))), this.helper && h("p", { key: 'cd5bc0a6aba0820fda297033c177e222f6d1e764', class: "message" }, this.helper), typeof this.error === 'string' ? (h("p", { class: "message error" }, this.error)) : typeof this.warning === 'string' ? (h("p", { class: "message warning" }, this.warning)) : null));
28
+ } }, h("textarea", { key: '4b149e70ac094efee896d5a1a2b6a678aa778685', class: { 'no-resize': !!this.noResize }, name: this.name, rows: this.rows, value: this.value, maxLength: this.max, disabled: this.disabled, readOnly: this.readonly, placeholder: this.placeholder, onInput: this.onInput }), h("div", { key: '58714d7348eb9952f393d7e7b2044caf0929878d', class: "control_input__icons" }, this._renderIcon()))), this.helper && h("p", { key: '2ad9e9892167ed2f459f159bfc6159686c4eb803', class: "message" }, this.helper), typeof this.error === 'string' ? (h("p", { class: "message error" }, this.error)) : typeof this.warning === 'string' ? (h("p", { class: "message warning" }, this.warning)) : null));
29
29
  }
30
30
  _renderIcon() {
31
31
  if (this.loading)
@@ -28,7 +28,7 @@ export class XvTile {
28
28
  this.checked = !this.checked;
29
29
  }
30
30
  render() {
31
- return (h(Host, { key: 'aa513fd890c464d298e9e5f6049f9cc7dd731fce', class: "xv-tile--host" }, h("label", { key: 'c405c33caa418a67210e0fb4bcdd7702d0df7e8e', class: {
31
+ return (h(Host, { key: 'b56eb653b4304687a52dbd4170d9e1c785a8b306', class: "xv-tile--host" }, h("label", { key: 'af9e8fdaa26842171b89572abc3d14f97a382e0a', class: {
32
32
  [this.el.className]: !!this.el.className,
33
33
  'xv-tile': true,
34
34
  [`xv-tile--variant-${this.variant}`]: !!this.variant,
@@ -36,7 +36,7 @@ export class XvTile {
36
36
  'xv-tile--disabled': !!this.disabled,
37
37
  'selected': !!this.checked,
38
38
  'xv-tile--error': this.error !== undefined,
39
- } }, h("div", { key: '8da6196b92bde4aab06589397e081b70e4ef17f6', class: "xv-tile_content" }, this.label && h("h4", { key: 'bb7ffb610d91990552cb7f2db0102ea6db6ee6b7', class: "xv-tile_content__title" }, this.label), h("slot", { key: 'df7193e4be694026561a6585436828c61e241dcc' })), this.variant === 'selectable' && (h("div", { key: '8ba4a9b7d3c40cd746680494a2558561d54127d0', class: "xv-tile_control" }, this.multiple ? (h("input", { type: "checkbox", disabled: this.disabled, onChange: this.handleChange, name: this.name, value: this.value, checked: this.checked })) : (h("input", { type: "radio", disabled: this.disabled, onChange: this.handleChange, name: this.name, value: this.value, checked: this.checked })))), (this.variant === 'clickable' || this.variant === 'expandable') && (h("div", { key: 'afd84b6c809e8289b479de70b64df81a6612b9fb', class: "xv-tile_footer" }, h("button", { key: '191562618daeefa95d83d7da76999e307586bcf9', class: { 'xv-tile_footer__icon': true, [`icon--${this.variant}`]: true, open: this.checked } }))), h("div", { key: 'a0d3c277aefcabe53d2cd19f9601f2e30e45541f', class: { 'xv-tile_expandable': true, open: this.checked } }, h("slot", { key: '546aa0a1e1a33e2fdc5076f1192adab85eb013c1', name: "expandable" })))));
39
+ } }, h("div", { key: '785c9290968abaac787883b92549d377528e489a', class: "xv-tile_content" }, this.label && h("h4", { key: '19db9c53db9e0ba81f2681d6dbc9d203a98f33f4', class: "xv-tile_content__title" }, this.label), h("slot", { key: '12057212809b88894ed9cf019553e8983c6be664' })), this.variant === 'selectable' && (h("div", { key: '3737948f18557c0c8a3542b434b818cc60e08c6a', class: "xv-tile_control" }, this.multiple ? (h("input", { type: "checkbox", disabled: this.disabled, onChange: this.handleChange, name: this.name, value: this.value, checked: this.checked })) : (h("input", { type: "radio", disabled: this.disabled, onChange: this.handleChange, name: this.name, value: this.value, checked: this.checked })))), (this.variant === 'clickable' || this.variant === 'expandable') && (h("div", { key: 'e328d2f4ad5a235ef9fcc3c69a517c254194c338', class: "xv-tile_footer" }, h("button", { key: '8e161569383baf39a27e2349c04a284463db897e', class: { 'xv-tile_footer__icon': true, [`icon--${this.variant}`]: true, open: this.checked } }))), h("div", { key: '5eebc585a7e97a1dda8ff83d3a4e767f8beb9723', class: { 'xv-tile_expandable': true, open: this.checked } }, h("slot", { key: '3a9a500a80675d7bf31235591a2bd33ba67eb34e', name: "expandable" })))));
40
40
  }
41
41
  static get is() { return "xv-tile"; }
42
42
  static get originalStyleUrls() {
@@ -65,7 +65,7 @@ export class XvToggleTip {
65
65
  }
66
66
  ;
67
67
  render() {
68
- return (h(Host, { key: '419cbb0aa3acb94490062948486189b777e43907', class: "xv-toggle-tip" }, h("div", { key: 'd58933c2e93c904413f49695f116051fb38e37e7', class: "trigger", role: "button", tabindex: "0", "aria-expanded": this.open ? 'true' : 'false', "aria-controls": "popover", onClick: () => this.setPopover(!this.open), ref: (el) => (this.triggerEl = el) }, h("slot", { key: 'f1595d360eeced838d0b9866f575d2e86fb1bafb', name: "trigger" }, h("svg", { key: 'af481ee44d7e5faefee7ea57b4e16179b86eeb19', class: "trigger_icon", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 512 512", width: 16, height: 16 }, h("path", { key: 'd754e9968c5339f8acde1c9f460257bd732dd94d', fill: "currentColor", d: "M256 48a208 208 0 1 1 0 416 208 208 0 1 1 0-416zm0 464A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM216 336c-13.3 0-24 10.7-24 24s10.7 24 24 24l80 0c13.3 0 24-10.7 24-24s-10.7-24-24-24l-8 0 0-88c0-13.3-10.7-24-24-24l-48 0c-13.3 0-24 10.7-24 24s10.7 24 24 24l24 0 0 64-24 0zm40-144a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" })))), h("div", { key: 'e5585115f68f0d4a5a627edd51add36ee37e9089', class: { popover: true }, role: "tooltip", tabindex: "-1", ref: (el) => (this.popoverEl = el) }, h("div", { key: '2c94314275b52b9c5804ebfbf5a90249661af871', class: "popover-tip", part: "tip", "data-popper-arrow": "" }), h("div", { key: '2f20f47cf643fa45a2cd35d7d92b36490d612e4d', class: "popover-content" }, h("slot", { key: '981900fca753ea61fd9a59ba01d7187c0efa3812', name: "header" }), h("slot", { key: 'd39b69c2d67d538eaba8c87a5a48be8407923672', name: "body" }), h("slot", { key: 'd5b51e4d474cc4bb6607dfb32ed997a77ea7274a', name: "footer" })))));
68
+ return (h(Host, { key: 'b774fc0ba1062b8da6d53aed3a47d70ae957fb50', class: "xv-toggle-tip" }, h("div", { key: '0ed385b35de518b4d463ad46f3f28eb4fba2396a', class: "trigger", role: "button", tabindex: "0", "aria-expanded": this.open ? 'true' : 'false', "aria-controls": "popover", onClick: () => this.setPopover(!this.open), ref: (el) => (this.triggerEl = el) }, h("slot", { key: 'f8069c9c48bdfa0be4d832a454e1c2a46c07bdcd', name: "trigger" }, h("svg", { key: 'ba99258f8bec90079a6c438eedc7a894b1e7b31c', class: "trigger_icon", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 512 512", width: 16, height: 16 }, h("path", { key: 'b4b38d16ae860008654845035bac652101151ee8', fill: "currentColor", d: "M256 48a208 208 0 1 1 0 416 208 208 0 1 1 0-416zm0 464A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM216 336c-13.3 0-24 10.7-24 24s10.7 24 24 24l80 0c13.3 0 24-10.7 24-24s-10.7-24-24-24l-8 0 0-88c0-13.3-10.7-24-24-24l-48 0c-13.3 0-24 10.7-24 24s10.7 24 24 24l24 0 0 64-24 0zm40-144a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" })))), h("div", { key: 'd031b15596a4c5ea78b3fe17a5b7005bd9bd9fbc', class: { popover: true }, role: "tooltip", tabindex: "-1", ref: (el) => (this.popoverEl = el) }, h("div", { key: 'c8ba70ee15dfd264e2034d6418a71102744f32be', class: "popover-tip", part: "tip", "data-popper-arrow": "" }), h("div", { key: '263f4c552b917e444624ac990bb06abd720e3057', class: "popover-content" }, h("slot", { key: 'b514248df9831c5248a2a9385267f38f1b6385b9', name: "header" }), h("slot", { key: '5182da0a61cce3a1ab989ac9b42b1083e72d2f80', name: "body" }), h("slot", { key: '56de0e8516895830d58e1e9b93fd86d94821b172', name: "footer" })))));
69
69
  }
70
70
  disconnectedCallback() {
71
71
  this.destroyPopper();
@@ -38,11 +38,11 @@ export class XvTooltip {
38
38
  this.destroyTooltip();
39
39
  }
40
40
  render() {
41
- return (h(Host, { key: '5a1b868a396360402a98d555473ec091711e38cf', role: "tooltip", class: {
41
+ return (h(Host, { key: '72b3331937cd2f49e4fadce31fa44adfd8facf4f', role: "tooltip", class: {
42
42
  'xv-tooltip-wrapper': true,
43
43
  [`xv-tooltip-wrapper__block`]: !!this.block,
44
44
  [`xv-tooltip-wrapper__dashed`]: !!this.dashed,
45
- } }, h("slot", { key: '44cb04f8dccced948bcb6eda988c6a038be3395f' }, h("svg", { key: 'a433cde4f6c683b4e9724c054329eb266c72c2ba', xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 512 512", width: 16, height: 16 }, h("path", { key: '3fd829c41ac94750e7d475b54acb431d1f4d6bde', fill: "currentColor", d: "M256 48a208 208 0 1 1 0 416 208 208 0 1 1 0-416zm0 464A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM216 336c-13.3 0-24 10.7-24 24s10.7 24 24 24l80 0c13.3 0 24-10.7 24-24s-10.7-24-24-24l-8 0 0-88c0-13.3-10.7-24-24-24l-48 0c-13.3 0-24 10.7-24 24s10.7 24 24 24l24 0 0 64-24 0zm40-144a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" })))));
45
+ } }, h("slot", { key: 'd6277459bf37571156356a091f5e315228060763' }, h("svg", { key: '54bcd09a848a75a122c29ab2fdf78323482ace91', xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 512 512", width: 16, height: 16 }, h("path", { key: '41badb1b28e75684daf5c114b07fdf744a24f6a9', fill: "currentColor", d: "M256 48a208 208 0 1 1 0 416 208 208 0 1 1 0-416zm0 464A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM216 336c-13.3 0-24 10.7-24 24s10.7 24 24 24l80 0c13.3 0 24-10.7 24-24s-10.7-24-24-24l-8 0 0-88c0-13.3-10.7-24-24-24l-48 0c-13.3 0-24 10.7-24 24s10.7 24 24 24l24 0 0 64-24 0zm40-144a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" })))));
46
46
  }
47
47
  static get is() { return "xv-tooltip-v2"; }
48
48
  static get originalStyleUrls() {
@@ -4,7 +4,7 @@ export { s as setNonce } from './index-BQoQLd_U.js';
4
4
  const defineCustomElements = async (win, options) => {
5
5
  if (typeof window === 'undefined') return undefined;
6
6
  await globalScripts();
7
- return bootstrapLazy([["xv-breadcrumbs-v2",[[1,"xv-breadcrumbs-v2"]]],["xv-accordion-v2_38",[[1,"xv-data-table-row",{"variant":[1],"name":[1025],"collapse":[1],"collapsable":[516],"checked":[1028],"partial":[1028],"hover":[1028],"header":[4],"footer":[4],"disabled":[4],"readonly":[4],"required":[4],"value":[8],"collapsed":[32]}],[65,"xv-datepicker",{"value":[1040],"variant":[1],"label":[1],"helper":[1],"error":[8],"warning":[8],"readonly":[4],"disabled":[4],"loading":[4],"block":[4],"size":[513],"min":[1],"max":[1],"month":[32],"days":[32],"open":[32],"localError":[32]},[[4,"click","handleClickOutside"]],{"open":["openChange"],"month":["getCalendarGrid"],"value":["handleValueChange"]}],[1,"xv-dropdown-v2",{"disabled":[516],"multiple":[516],"required":[516],"loading":[516],"open":[1540],"error":[513],"label":[513],"helper":[513],"warning":[513],"placeholder":[513],"info":[1],"size":[1],"defaultValue":[8,"default-value"],"selected":[32],"selectedMap":[32]},[[0,"itemSelected","handleItemSelected"]],{"open":["openChangeHandle"]}],[1,"xv-file-uploader",{"label":[1],"description":[1],"addText":[1,"add-text"],"variant":[1],"size":[1],"accept":[16],"buttonVariant":[1,"button-variant"],"maxFileSizeMB":[2,"max-file-size-mb"],"maxFiles":[2,"max-files"],"multiple":[4],"disabled":[516],"files":[1040],"loadingStates":[1040,"loading-states"],"error":[1537],"errors":[1040],"dragActive":[32],"errorMessages":[32],"clearFiles":[64]}],[65,"xv-number-input-v2",{"label":[1],"placeholder":[513],"name":[513],"value":[1538],"helper":[1],"error":[8],"warning":[8],"step":[2],"max":[2],"min":[2],"readonly":[4],"disabled":[4],"loading":[4],"block":[4],"size":[513]}],[1,"xv-table-v2-row",{"checked":[1540],"partial":[1540],"name":[1537],"value":[520],"hover":[1540],"readonly":[516],"required":[516],"disabled":[516],"header":[516],"variant":[1537]},null,{"checked":["checkedChangeHandle"]}],[65,"xv-textarea",{"value":[1025],"name":[1],"label":[1],"placeholder":[1],"helper":[1],"info":[1],"error":[8],"warning":[8],"disabled":[4],"readonly":[4],"block":[4],"counterHide":[4,"counter-hide"],"noResize":[4,"no-resize"],"loading":[4],"max":[2],"rows":[2],"size":[513]}],[1,"xv-data-table",{"size":[1],"block":[4],"loading":[4],"columnWidths":[16,"column-widths"],"hover":[4]}],[0,"xv-header",{"htmlContent":[32],"showLoginModal":[32]}],[1,"xv-modal-v2",{"open":[1540],"permanent":[516],"size":[513],"overflow":[516],"loading":[4],"openModal":[64],"closeModal":[64]}],[1,"xv-tab-v2",{"label":[513],"disabled":[516],"loading":[516],"name":[8]}],[1,"xv-table-v2",{"size":[513],"hover":[516],"loading":[516],"colsSize":[16,"colssize"],"selected":[32],"selectedCount":[32]},[[0,"checkedChange","handleCheckedChange"]],{"colsSize":["setColsSizeTemplate"]}],[1,"xv-tabs-v2",{"active":[1544],"loading":[516],"variant":[1],"emptyMessage":[1,"empty-message"],"tabElements":[32],"showArrows":[32]},[[9,"resize","updateArrowVisibility"]]],[65,"xv-text-input-v2",{"type":[1],"label":[1],"placeholder":[513],"name":[513],"value":[1025],"autocomplete":[1],"helper":[1],"error":[8],"warning":[8],"readonly":[4],"disabled":[4],"loading":[4],"block":[4],"size":[513]}],[1,"xv-accordion-v2",{"multiple":[4],"xvId":[1,"xv-id"],"value":[1025],"opened":[32],"toggleItem":[64]}],[1,"xv-accordion-v2-item",{"disabled":[4],"label":[1],"value":[1],"isOpen":[32]},[[16,"accordionChange","handleAccordionChange"]]],[1,"xv-card-v2",{"variant":[1],"media":[1],"header":[1],"body":[1],"footer":[1]}],[1,"xv-data-table-collapse",{"collapsed":[1540],"setCollapsed":[64]}],[1,"xv-dropdown-v2-item",{"disabled":[4],"value":[1544],"selected":[1540]},[[0,"click","handleClick"]]],[0,"xv-footer",{"htmlContent":[32]}],[1,"xv-link-v2",{"href":[1],"target":[1],"disabled":[4],"size":[1],"variant":[1]}],[1,"xv-notification-v2",{"variant":[513],"dismissible":[516]}],[1,"xv-overflow-menu-v2",{"open":[1540],"disabled":[516],"position":[1],"size":[1]},[[0,"keydown","handleKeyDown"]],{"open":["openChangeHandle"]}],[1,"xv-overflow-menu-v2-item",{"disabled":[516],"value":[520],"variant":[1]},[[0,"click","handleClick"]]],[1,"xv-progress-indicator-v2",{"progress":[514],"variant":[1],"size":[1]},null,{"progress":["updateChildItems"]}],[1,"xv-progress-indicator-v2-item",{"status":[1]}],[65,"xv-slider-v2",{"label":[1],"name":[1],"min":[2],"max":[2],"value":[1026],"step":[2],"disabled":[4],"readonly":[4],"notEditable":[4,"not-editable"]}],[1,"xv-table-v2-expand",{"open":[1540],"disabled":[516]}],[1,"xv-tag-v2",{"size":[1],"color":[1],"bg":[1],"disabled":[4],"closeable":[4]}],[4,"xv-tile",{"variant":[513],"label":[1],"error":[4],"multiple":[4],"disabled":[4],"block":[4],"name":[1],"value":[1025],"checked":[1028]},[[4,"tileChange","tileChangeHandle"],[0,"click","handleClick"]]],[1,"xv-toggle-tip",{"open":[1540],"position":[1],"setPopover":[64]},[[4,"click","handleClickOutside"],[0,"keydown","handleKeyDown"]],{"open":["openChangeHandle"]}],[1,"xv-data-table-cell",{"name":[1025],"sort":[1537],"multiline":[2],"width":[1],"align":[1],"tooltip":[1]},[[0,"click","handleSort"]]],[1,"xv-login-modal",{"visible":[4],"oauthProviders":[32],"bookNow":[32],"returnUrl":[32],"passwordLoginEnabled":[32],"oauthLoginEnabled":[32],"passwordRegistrationEnabled":[32],"configurationName":[32],"xvMvcConfigName":[32],"contactUrl":[32]}],[1,"xv-table-v2-cell",{"multiline":[516],"name":[1537],"align":[513],"sort":[1537]},[[0,"click","handleSort"]]],[65,"xv-checkbox-v2",{"checked":[1540],"indeterminate":[516],"disabled":[516],"name":[513],"value":[513],"readonly":[516],"required":[516],"partial":[516],"label":[1],"size":[513],"error":[520],"hasFocus":[32]},null,{"checked":["onCheckedChange"]}],[65,"xv-button-v2",{"label":[513],"variant":[513],"size":[513],"disabled":[516],"loading":[516],"block":[516],"type":[513],"hasLeftIcon":[32],"hasRightIcon":[32],"hasContent":[32]}],[4,"xv-tooltip-v2",{"message":[1],"position":[1],"block":[4],"dashed":[4]},[[1,"mouseenter","onMouseEnter"],[1,"mouseleave","onMouseLeave"]]],[1,"xv-loader-v2",{"show":[4],"variant":[1],"size":[1]}]]]], options);
7
+ return bootstrapLazy([["xv-breadcrumbs-v2",[[1,"xv-breadcrumbs-v2"]]],["xv-accordion-v2_38",[[1,"xv-data-table-row",{"variant":[1],"name":[1025],"collapse":[1],"collapsable":[516],"checked":[1028],"partial":[1028],"hover":[1028],"header":[4],"footer":[4],"disabled":[4],"readonly":[4],"required":[4],"value":[8],"collapsed":[32]}],[65,"xv-datepicker",{"value":[1040],"variant":[1],"label":[1],"helper":[1],"error":[8],"warning":[8],"readonly":[4],"disabled":[4],"loading":[4],"block":[4],"size":[513],"min":[1],"max":[1],"month":[32],"days":[32],"open":[32],"localError":[32]},[[4,"click","handleClickOutside"]],{"open":["openChange"],"month":["getCalendarGrid"],"value":["handleValueChange"]}],[1,"xv-dropdown-v2",{"disabled":[516],"multiple":[516],"required":[516],"loading":[516],"open":[1540],"error":[513],"label":[513],"helper":[513],"warning":[513],"placeholder":[513],"info":[1],"size":[1],"defaultValue":[8,"default-value"],"selected":[32],"selectedMap":[32]},[[0,"itemSelected","handleItemSelected"]],{"open":["openChangeHandle"]}],[1,"xv-file-uploader",{"label":[1],"description":[1],"addText":[1,"add-text"],"variant":[1],"size":[1],"accept":[16],"buttonVariant":[1,"button-variant"],"maxFileSizeMB":[2,"max-file-size-mb"],"maxFiles":[2,"max-files"],"multiple":[4],"disabled":[516],"files":[1040],"loadingStates":[1040,"loading-states"],"error":[1537],"errors":[1040],"dragActive":[32],"errorMessages":[32],"clearFiles":[64]}],[65,"xv-number-input-v2",{"label":[1],"placeholder":[513],"name":[513],"value":[1538],"helper":[1],"error":[8],"warning":[8],"step":[2],"max":[2],"min":[2],"readonly":[4],"disabled":[4],"loading":[4],"block":[4],"size":[513]}],[1,"xv-table-v2-row",{"checked":[1540],"partial":[1540],"name":[1537],"value":[520],"hover":[1540],"readonly":[516],"required":[516],"disabled":[516],"header":[516],"variant":[1537]},null,{"checked":["checkedChangeHandle"]}],[65,"xv-textarea",{"value":[1025],"name":[1],"label":[1],"placeholder":[1],"helper":[1],"info":[1],"error":[8],"warning":[8],"disabled":[4],"readonly":[4],"block":[4],"counterHide":[4,"counter-hide"],"noResize":[4,"no-resize"],"loading":[4],"max":[2],"rows":[2],"size":[513]}],[1,"xv-data-table",{"size":[1],"block":[4],"loading":[4],"columnWidths":[16,"column-widths"],"hover":[4]}],[0,"xv-header",{"htmlContent":[32],"showLoginModal":[32],"isCockpitMenuExpanded":[32],"isEntitiesMenuExpanded":[32],"isUserMenuExpanded":[32],"suggestions":[32],"searchQuery":[32],"listPosition":[32],"showPopover":[32]}],[1,"xv-modal-v2",{"open":[1540],"permanent":[516],"size":[513],"overflow":[516],"loading":[4],"openModal":[64],"closeModal":[64]}],[1,"xv-tab-v2",{"label":[513],"disabled":[516],"loading":[516],"name":[8]}],[1,"xv-table-v2",{"size":[513],"hover":[516],"loading":[516],"colsSize":[16,"colssize"],"selected":[32],"selectedCount":[32]},[[0,"checkedChange","handleCheckedChange"]],{"colsSize":["setColsSizeTemplate"]}],[1,"xv-tabs-v2",{"active":[1544],"loading":[516],"variant":[1],"emptyMessage":[1,"empty-message"],"tabElements":[32],"showArrows":[32]},[[9,"resize","updateArrowVisibility"]]],[65,"xv-text-input-v2",{"type":[1],"label":[1],"placeholder":[513],"name":[513],"value":[1025],"autocomplete":[1],"helper":[1],"error":[8],"warning":[8],"readonly":[4],"disabled":[4],"loading":[4],"block":[4],"size":[513]}],[1,"xv-accordion-v2",{"multiple":[4],"xvId":[1,"xv-id"],"value":[1025],"opened":[32],"toggleItem":[64]}],[1,"xv-accordion-v2-item",{"disabled":[4],"label":[1],"value":[1],"isOpen":[32]},[[16,"accordionChange","handleAccordionChange"]]],[1,"xv-card-v2",{"variant":[1],"media":[1],"header":[1],"body":[1],"footer":[1]}],[1,"xv-data-table-collapse",{"collapsed":[1540],"setCollapsed":[64]}],[1,"xv-dropdown-v2-item",{"disabled":[4],"value":[1544],"selected":[1540]},[[0,"click","handleClick"]]],[0,"xv-footer",{"htmlContent":[32]}],[1,"xv-link-v2",{"href":[1],"target":[1],"disabled":[4],"size":[1],"variant":[1]}],[1,"xv-notification-v2",{"variant":[513],"dismissible":[516]}],[1,"xv-overflow-menu-v2",{"open":[1540],"disabled":[516],"position":[1],"size":[1]},[[0,"keydown","handleKeyDown"]],{"open":["openChangeHandle"]}],[1,"xv-overflow-menu-v2-item",{"disabled":[516],"value":[520],"variant":[1]},[[0,"click","handleClick"]]],[1,"xv-progress-indicator-v2",{"progress":[514],"variant":[1],"size":[1]},null,{"progress":["updateChildItems"]}],[1,"xv-progress-indicator-v2-item",{"status":[1]}],[65,"xv-slider-v2",{"label":[1],"name":[1],"min":[2],"max":[2],"value":[1026],"step":[2],"disabled":[4],"readonly":[4],"notEditable":[4,"not-editable"]}],[1,"xv-table-v2-expand",{"open":[1540],"disabled":[516]}],[1,"xv-tag-v2",{"size":[1],"color":[1],"bg":[1],"disabled":[4],"closeable":[4]}],[4,"xv-tile",{"variant":[513],"label":[1],"error":[4],"multiple":[4],"disabled":[4],"block":[4],"name":[1],"value":[1025],"checked":[1028]},[[4,"tileChange","tileChangeHandle"],[0,"click","handleClick"]]],[1,"xv-toggle-tip",{"open":[1540],"position":[1],"setPopover":[64]},[[4,"click","handleClickOutside"],[0,"keydown","handleKeyDown"]],{"open":["openChangeHandle"]}],[1,"xv-data-table-cell",{"name":[1025],"sort":[1537],"multiline":[2],"width":[1],"align":[1],"tooltip":[1]},[[0,"click","handleSort"]]],[1,"xv-login-modal",{"visible":[4],"oauthProviders":[32],"bookNow":[32],"returnUrl":[32],"passwordLoginEnabled":[32],"oauthLoginEnabled":[32],"passwordRegistrationEnabled":[32],"configurationName":[32],"xvMvcConfigName":[32],"contactUrl":[32]}],[1,"xv-table-v2-cell",{"multiline":[516],"name":[1537],"align":[513],"sort":[1537]},[[0,"click","handleSort"]]],[65,"xv-checkbox-v2",{"checked":[1540],"indeterminate":[516],"disabled":[516],"name":[513],"value":[513],"readonly":[516],"required":[516],"partial":[516],"label":[1],"size":[513],"error":[520],"hasFocus":[32]},null,{"checked":["onCheckedChange"]}],[65,"xv-button-v2",{"label":[513],"variant":[513],"size":[513],"disabled":[516],"loading":[516],"block":[516],"type":[513],"hasLeftIcon":[32],"hasRightIcon":[32],"hasContent":[32]}],[4,"xv-tooltip-v2",{"message":[1],"position":[1],"block":[4],"dashed":[4]},[[1,"mouseenter","onMouseEnter"],[1,"mouseleave","onMouseLeave"]]],[1,"xv-loader-v2",{"show":[4],"variant":[1],"size":[1]}]]]], options);
8
8
  };
9
9
 
10
10
  export { defineCustomElements };