xv-webcomponents 1.16.2-qa.0 → 1.16.3-qa.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2294,9 +2294,9 @@ var createEvent = (ref, name, flags) => {
2294
2294
  return {
2295
2295
  emit: (detail) => {
2296
2296
  return emitEvent(elm, name, {
2297
- bubbles: true,
2298
- composed: true,
2299
- cancelable: true,
2297
+ bubbles: !!(flags & 4 /* Bubbles */),
2298
+ composed: !!(flags & 2 /* Composed */),
2299
+ cancelable: !!(flags & 1 /* Cancellable */),
2300
2300
  detail
2301
2301
  });
2302
2302
  }
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var index = require('./index-DN7GFWbs.js');
3
+ var index = require('./index-C4fJ70r4.js');
4
4
 
5
5
  const defineCustomElements = async (win, options) => {
6
6
  if (typeof window === 'undefined') return undefined;
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var index = require('./index-DN7GFWbs.js');
3
+ var index = require('./index-C4fJ70r4.js');
4
4
  var index$1 = require('./index-DwneAp1a.js');
5
5
  var _vars = require('./_vars-A07oKwJ_.js');
6
6
 
@@ -9,7 +9,7 @@ const xvAccordionCss = () => `.xv-container{width:100%;max-width:1170px;margin-i
9
9
  const XvAccordion = class {
10
10
  constructor(hostRef) {
11
11
  index.registerInstance(this, hostRef);
12
- this.accordionChange = index.createEvent(this, "accordionChange");
12
+ this.accordionChange = index.createEvent(this, "accordionChange", 7);
13
13
  this.multiple = false;
14
14
  this.xvId = index$1.uidGenerator();
15
15
  this.opened = new Set();
@@ -43,7 +43,7 @@ const xvAccordionItemCss = () => `.xv-container{width:100%;max-width:1170px;marg
43
43
  const XvAccordionItem = class {
44
44
  constructor(hostRef) {
45
45
  index.registerInstance(this, hostRef);
46
- this.itemToggle = index.createEvent(this, "itemToggle");
46
+ this.itemToggle = index.createEvent(this, "itemToggle", 7);
47
47
  this.disabled = false;
48
48
  this.isOpen = false;
49
49
  this.toggle = () => {
@@ -167,10 +167,10 @@ const xvCheckboxCss = () => `.xv-container{width:100%;max-width:1170px;margin-in
167
167
  const XvCheckbox = class {
168
168
  constructor(hostRef) {
169
169
  index.registerInstance(this, hostRef);
170
- this.changeEvent = index.createEvent(this, "eventChange");
171
- this.inputEvent = index.createEvent(this, "eventInput");
172
- this.focusEvent = index.createEvent(this, "eventFocus");
173
- this.blurEvent = index.createEvent(this, "eventBlur");
170
+ this.changeEvent = index.createEvent(this, "eventChange", 7);
171
+ this.inputEvent = index.createEvent(this, "eventInput", 7);
172
+ this.focusEvent = index.createEvent(this, "eventFocus", 7);
173
+ this.blurEvent = index.createEvent(this, "eventBlur", 7);
174
174
  var _a, _b;
175
175
  /**
176
176
  * Default checked status
@@ -293,7 +293,7 @@ const xvDataTableCellCss = () => `@charset "UTF-8";.xv-container{width:100%;max-
293
293
  const XvDataTableCell = class {
294
294
  constructor(hostRef) {
295
295
  index.registerInstance(this, hostRef);
296
- this.sortChange = index.createEvent(this, "sortChange");
296
+ this.sortChange = index.createEvent(this, "sortChange", 7);
297
297
  }
298
298
  handleSort() {
299
299
  if (this.sort === undefined)
@@ -337,7 +337,7 @@ const xvDataTableCollapseCss = () => `.xv-container{width:100%;max-width:1170px;
337
337
  const XvDataTableCollapse = class {
338
338
  constructor(hostRef) {
339
339
  index.registerInstance(this, hostRef);
340
- this.collapsedChange = index.createEvent(this, "collapsedChange");
340
+ this.collapsedChange = index.createEvent(this, "collapsedChange", 7);
341
341
  this.collapsed = false;
342
342
  }
343
343
  async setCollapsed(collapsed) {
@@ -362,7 +362,7 @@ const xvDataTableRowCss = () => `.xv-container{width:100%;max-width:1170px;margi
362
362
  const XvDataTableRow = class {
363
363
  constructor(hostRef) {
364
364
  index.registerInstance(this, hostRef);
365
- this.check = index.createEvent(this, "check");
365
+ this.check = index.createEvent(this, "check", 7);
366
366
  this.checked = false;
367
367
  this.partial = false;
368
368
  this.hover = false;
@@ -77353,8 +77353,8 @@ const DEF_FORMAT = 'yyyy-MM-dd'; // the same browser input are using
77353
77353
  const XvDatepicker = class {
77354
77354
  constructor(hostRef) {
77355
77355
  index.registerInstance(this, hostRef);
77356
- this.valueChange = index.createEvent(this, "valueChange");
77357
- this.xvBlur = index.createEvent(this, "xvBlur");
77356
+ this.valueChange = index.createEvent(this, "valueChange", 7);
77357
+ this.xvBlur = index.createEvent(this, "xvBlur", 7);
77358
77358
  if (hostRef.$hostElement$["s-ei"]) {
77359
77359
  this.internals = hostRef.$hostElement$["s-ei"];
77360
77360
  }
@@ -77615,8 +77615,8 @@ const xvDropdownCss = () => `.xv-container{width:100%;max-width:1170px;margin-in
77615
77615
  const XvDropdown = class {
77616
77616
  constructor(hostRef) {
77617
77617
  index.registerInstance(this, hostRef);
77618
- this.changeSelection = index.createEvent(this, "changeSelection");
77619
- this.openChange = index.createEvent(this, "openChange");
77618
+ this.changeSelection = index.createEvent(this, "changeSelection", 7);
77619
+ this.openChange = index.createEvent(this, "openChange", 3);
77620
77620
  this.searchPlaceholder = 'Suchen';
77621
77621
  this.size = _vars.SIZE_VAR.MD;
77622
77622
  this.variant = 'default';
@@ -77762,7 +77762,7 @@ const XvDropdown = class {
77762
77762
  }
77763
77763
  /* endregion Search methods */
77764
77764
  render() {
77765
- return (index.h(index.Host, { key: 'd838aa3fa296ee50dbf212553f2e2b7914f3a0c4', class: { 'xv-dropdown': true, [this.variant]: !!this.variant }, role: "combobox", size: this.size, open: this.open, error: !!this.error, disabled: this.disabled, tabindex: (this.disabled || this.readonly) ? -1 : false }, (this.label || this.info) && (index.h("label", { key: '54d41b54fd71182ffce9456bc9274f0d652e43bb', class: "label" }, index.h("slot", { key: '69845d8b9aa37eec53a2491cf94645590686d845', name: "label" }, this.label), this.info && index.h("xv-tooltip-v2", { key: '9e65840f74eb096e5d6aa134c30a063a25120ffb', class: "label_info", message: this.info }))), index.h("div", { key: 'ece0a39f64e10d0828fd8ee71fa26934d1c86964', class: { "xv-dropdown-control control": true, readonly: !!this.readonly }, onClick: this.handleOpen }, (this.multiple && this.selectedMap.size > 0) && (index.h("xv-tag-v2", { key: 'f21a3d3defb174bb512622c9c6d6660d272ef6f1', class: "control_count", onCloseClick: this.clearHandle, closeable: !this.required, bg: "var(--background-inverse)", color: "var(--icon-inverse)" }, this.selectedMap.size)), this.selected.length ? (index.h("p", { class: "control_value" }, this.selected.join(', '))) : (index.h("p", { class: "control_placeholder" }, this.placeholder || '')), this._renderIcon(), index.h("svg", { key: 'e8447e3d587d54d7b09fea6eda94cdf09082dd90', class: "control_arrow", focusable: "false", preserveAspectRatio: "xMidYMid meet", xmlns: "http://www.w3.org/2000/svg", fill: "currentColor", "aria-hidden": "true", width: "16", height: "16", viewBox: "0 0 16 16" }, index.h("path", { key: 'e0e71246c042b42922d098d54aeb60eeb6ccabed', d: "M8 11L3 6 3.7 5.3 8 9.6 12.3 5.3 13 6z" }))), this.open && index.h("div", { key: '0db7121172d180d34a364338397e4f50144f699e', class: "options" }, this.search && (index.h("div", { key: 'f527e540dbac3499bf1709d4b560adefe81bdf33', class: "options_search" }, index.h("xv-text-input-v2", { key: 'e62414d2230b8617506e0be058374278614dda60', type: "search", block: true, autocomplete: "off", size: this.size, value: this.searchQuery, placeholder: this.searchPlaceholder, onValueChange: this.handleSearchInput }))), index.h("slot", { key: "xv-dropdown-options" })), (this.helper || typeof this.error === 'string' || this.warning) && (index.h("p", { key: '3c03220f26c1b661926a9a9ab1004618f96c7d91', class: "helper" }, this.error || this.warning || this.helper))));
77765
+ return (index.h(index.Host, { key: 'eecc73132cb30e15e7ed8b92f518e6759fd68115', class: { 'xv-dropdown': true, [this.variant]: !!this.variant }, role: "combobox", size: this.size, open: this.open, error: !!this.error, disabled: this.disabled, tabindex: (this.disabled || this.readonly) ? -1 : false }, (this.label || this.info) && (index.h("label", { key: '06de4ebd44e17c961529ad676b18064c716bf5cc', class: "label" }, index.h("slot", { key: 'b765429ef1c5ae627646137c5ba9407f486843cd', name: "label" }, this.label), this.info && index.h("xv-tooltip-v2", { key: '35e293ff0e3130fac6d4493bcd32f62afa78e584', class: "label_info", message: this.info }))), index.h("div", { key: '128a43df761f3cef5c5740825a68315332ff41d9', class: { "xv-dropdown-control control": true, readonly: !!this.readonly }, onClick: this.handleOpen }, (this.multiple && this.selectedMap.size > 0) && (index.h("xv-tag-v2", { key: 'f90e898ee70cf12a6eb2fd11e83809dc0f39a129', class: "control_count", onCloseClick: this.clearHandle, closeable: !this.required, bg: "var(--background-inverse)", color: "var(--icon-inverse)" }, this.selectedMap.size)), this.selected.length ? (index.h("p", { class: "control_value" }, this.selected.join(', '))) : (index.h("p", { class: "control_placeholder" }, this.placeholder || '')), this._renderIcon(), index.h("svg", { key: '80ce81bc67b06a7aecf88c4be207f3e63a1e9cad', class: "control_arrow", focusable: "false", preserveAspectRatio: "xMidYMid meet", xmlns: "http://www.w3.org/2000/svg", fill: "currentColor", "aria-hidden": "true", width: "16", height: "16", viewBox: "0 0 16 16" }, index.h("path", { key: '2eb2e82a44c9131ff99b4dc96087cdc05d4beac9', d: "M8 11L3 6 3.7 5.3 8 9.6 12.3 5.3 13 6z" }))), this.open && index.h("div", { key: 'c8d968006c6f01fda8f24ffb8d8f8bb2ceb19359', class: "options" }, this.search && (index.h("div", { key: '501bccb5b1f3c9900b2d1d36ee8bdc606ef73c38', class: "options_search" }, index.h("xv-text-input-v2", { key: 'e5eb069e999c00e53e4e2a5087b0bbb3d926dd7c', type: "search", block: true, autocomplete: "off", size: this.size, value: this.searchQuery, placeholder: this.searchPlaceholder, onValueChange: this.handleSearchInput }))), index.h("slot", { key: "xv-dropdown-options" })), (this.helper || typeof this.error === 'string' || this.warning) && (index.h("p", { key: '379472520222b0e338e377c3fd4432e16e9cc460', class: "helper" }, this.error || this.warning || this.helper))));
77766
77766
  }
77767
77767
  componentDidLoad() {
77768
77768
  this.syncOpenState();
@@ -77805,7 +77805,7 @@ const xvDropdownItemCss = () => `.xv-container{width:100%;max-width:1170px;margi
77805
77805
  const XvDropdownItem = class {
77806
77806
  constructor(hostRef) {
77807
77807
  index.registerInstance(this, hostRef);
77808
- this.itemSelected = index.createEvent(this, "itemSelected");
77808
+ this.itemSelected = index.createEvent(this, "itemSelected", 7);
77809
77809
  this.disabled = false;
77810
77810
  this.value = '';
77811
77811
  this.selected = false;
@@ -77843,8 +77843,8 @@ const xvFileUploaderCss = () => `.xv-container{width:100%;max-width:1170px;margi
77843
77843
  const XvFileUploader = class {
77844
77844
  constructor(hostRef) {
77845
77845
  index.registerInstance(this, hostRef);
77846
- this.filesChange = index.createEvent(this, "filesChange");
77847
- this.fileRemoved = index.createEvent(this, "fileRemoved");
77846
+ this.filesChange = index.createEvent(this, "filesChange", 7);
77847
+ this.fileRemoved = index.createEvent(this, "fileRemoved", 7);
77848
77848
  this.variant = XvFileUploaderVariants.BUTTON;
77849
77849
  this.size = _vars.SIZE_VAR.MD;
77850
77850
  this.accept = [];
@@ -78021,7 +78021,7 @@ const xvHeaderCss = () => `.xv-container{width:100%;max-width:1170px;margin-inli
78021
78021
  const XvHeader = class {
78022
78022
  constructor(hostRef) {
78023
78023
  index.registerInstance(this, hostRef);
78024
- this.xvMetaNavUpdate = index.createEvent(this, "xvMetaNavUpdate");
78024
+ this.xvMetaNavUpdate = index.createEvent(this, "xvMetaNavUpdate", 7);
78025
78025
  this.orgUnit = '';
78026
78026
  this.baseUrl = '';
78027
78027
  this.loading = false;
@@ -78298,7 +78298,7 @@ const xvLoginModalCss = () => `.xv-container.sc-xv-login-modal{width:100%;max-wi
78298
78298
  const XvLoginModal = class {
78299
78299
  constructor(hostRef) {
78300
78300
  index.registerInstance(this, hostRef);
78301
- this.close = index.createEvent(this, "close");
78301
+ this.close = index.createEvent(this, "close", 7);
78302
78302
  this.visible = false;
78303
78303
  this.urls = {
78304
78304
  return: '/',
@@ -78364,7 +78364,7 @@ const xvMegaMenuCss = () => `.xv-container{width:100%;max-width:1170px;margin-in
78364
78364
  const XvMegaMenu = class {
78365
78365
  constructor(hostRef) {
78366
78366
  index.registerInstance(this, hostRef);
78367
- this.openChange = index.createEvent(this, "openChange");
78367
+ this.openChange = index.createEvent(this, "openChange", 7);
78368
78368
  this.mobileSize = 991;
78369
78369
  this.open = false;
78370
78370
  this.menuItems = [];
@@ -78443,7 +78443,7 @@ const xvModalCss = () => `.xv-container{width:100%;max-width:1170px;margin-inlin
78443
78443
  const XvModal = class {
78444
78444
  constructor(hostRef) {
78445
78445
  index.registerInstance(this, hostRef);
78446
- this.openChange = index.createEvent(this, "openChange");
78446
+ this.openChange = index.createEvent(this, "openChange", 3);
78447
78447
  /**
78448
78448
  * Is modal opened
78449
78449
  */
@@ -78500,7 +78500,7 @@ const XvModal = class {
78500
78500
  }
78501
78501
  render() {
78502
78502
  var _a;
78503
- return (index.h(index.Host, { key: 'ce5c07afb247e878e245ae15f249a3b4f915789c', role: "dialog", size: this.size, id: this.el.id }, index.h("slot", { key: '89d1b0bc59a4fb3fe0b5388ffd5ba301e36a5c79', name: "trigger", onSlotchange: this.setupTrigger }), index.h("div", { key: 'a0776ed33dd07d3793443c726d8355e6742968d1', class: { backdrop: true }, onClick: this.onBackdropClick }, index.h("div", { key: 'edb06f1301d516cd664733002b3cfaa853b4f6ec', class: "modal" }, index.h("button", { key: '85cf543ea2dd378fd5898825728303adf19a67c7', class: "modal_close", onClick: this.closeModal.bind(this) }, "\u00D7"), index.h("div", { key: 'c3e500a1dff7db1b6608eff1bf64204e8b6bab88', class: "modal_header" }, index.h("slot", { key: 'b4306ab8febe0b1f6af467b512e5edb2bca3506f', name: "header" }, ((_a = this.el) === null || _a === void 0 ? void 0 : _a.title) && index.h("h5", { key: 'a3359899b60e44e45c15ce7f0885755bfd507f36', class: "modal_header__title" }, this.el.title))), index.h("div", { key: '20bc1d54bd59b20ee92656b5961a587e2944a9f9', class: { 'modal_content': true, overflow: this.overflow } }, index.h("slot", { key: '0be669654c912fc60c7f56baca1d45ada78dc7a0' })), index.h("div", { key: 'dbf7f7d83d18611fa9e718e42d674c6b4de2901a', class: "modal_footer" }, index.h("slot", { key: '3d1a55976e77a848f3e7180c56a6e414b4c8f5ec', name: "footer" })), !!this.loading && (index.h("div", { key: '2943edd600f06218d8fce87d60ca337c9e73a7f8', class: "loading" }, index.h("xv-loader-v2", { key: 'f42450f1c85e85d97bb8b594e060de9f8828e9f9', size: _vars.SIZE_VAR.LG })))))));
78503
+ return (index.h(index.Host, { key: '3e0924a9a3f67a49d592edbdb8c83c61d093523d', role: "dialog", size: this.size, id: this.el.id }, index.h("slot", { key: '44bfc07024422351f51f248b18a084c1b73daca2', name: "trigger", onSlotchange: this.setupTrigger }), index.h("div", { key: '4827f22f43de8f1ff60af6dc7cb47676fb52c113', class: { backdrop: true }, onClick: this.onBackdropClick }, index.h("div", { key: '007d6f3db4221607cf7f1cf0f2ef2c5d77f878d0', class: "modal" }, index.h("button", { key: '30bfd368e69ad4c95474409228ca2eb925b45523', class: "modal_close", onClick: this.closeModal.bind(this) }, "\u00D7"), index.h("div", { key: '2765e6a696c767b13c9f28d01f0b558a5b4aae72', class: "modal_header" }, index.h("slot", { key: 'd1e4615e82709fc9b919573e3bdcffa48fe5ddea', name: "header" }, ((_a = this.el) === null || _a === void 0 ? void 0 : _a.title) && index.h("h5", { key: '884dae5ca7c5bb13abfe8d7c697d289a13b177ef', class: "modal_header__title" }, this.el.title))), index.h("div", { key: 'c416e7a66710eddfc0704e0c9bfb2ac25dc2a06f', class: { 'modal_content': true, overflow: this.overflow } }, index.h("slot", { key: '589a402f00d7c5c0e3b7e6f14f348ebbf0d44fa8' })), index.h("div", { key: '4606584cd9d03f18add4ecaff22474d8a88ca6db', class: "modal_footer" }, index.h("slot", { key: '80f3eea845811e87dcbce260a68d8bcaeb85b1db', name: "footer" })), !!this.loading && (index.h("div", { key: '314ab1737c5e504b74f1689897db496c604a807b', class: "loading" }, index.h("xv-loader-v2", { key: '148b4da2eaedfbcceb7cefc67b9bfb31c534f91d', size: _vars.SIZE_VAR.LG })))))));
78504
78504
  }
78505
78505
  disconnectedCallback() {
78506
78506
  this.removeTriggerListener();
@@ -78514,7 +78514,7 @@ const xvNotificationCss = () => `.xv-container{width:100%;max-width:1170px;margi
78514
78514
  const XvNotification = class {
78515
78515
  constructor(hostRef) {
78516
78516
  index.registerInstance(this, hostRef);
78517
- this.close = index.createEvent(this, "close");
78517
+ this.close = index.createEvent(this, "close", 7);
78518
78518
  this.variant = NOTIFICATION_VARIANTS.INFO;
78519
78519
  this.dismissible = false;
78520
78520
  this.closeHandle = (e) => this.close.emit(e);
@@ -78550,7 +78550,7 @@ const xvNumberInputCss = () => `.xv-container{width:100%;max-width:1170px;margin
78550
78550
  const XvNumberInput = class {
78551
78551
  constructor(hostRef) {
78552
78552
  index.registerInstance(this, hostRef);
78553
- this.valueChange = index.createEvent(this, "valueChange");
78553
+ this.valueChange = index.createEvent(this, "valueChange", 7);
78554
78554
  if (hostRef.$hostElement$["s-ei"]) {
78555
78555
  this.internals = hostRef.$hostElement$["s-ei"];
78556
78556
  }
@@ -78604,7 +78604,7 @@ const xvOverflowMenuCss = () => `.xv-container{width:100%;max-width:1170px;margi
78604
78604
  const XvOverflowMenu = class {
78605
78605
  constructor(hostRef) {
78606
78606
  index.registerInstance(this, hostRef);
78607
- this.selectItem = index.createEvent(this, "selectItem");
78607
+ this.selectItem = index.createEvent(this, "selectItem", 7);
78608
78608
  this.open = false;
78609
78609
  this.disabled = false;
78610
78610
  this.position = 'left';
@@ -78674,7 +78674,7 @@ const xvOverflowMenuItemCss = () => `.xv-container{width:100%;max-width:1170px;m
78674
78674
  const XvOverflowMenuItem = class {
78675
78675
  constructor(hostRef) {
78676
78676
  index.registerInstance(this, hostRef);
78677
- this.itemClick = index.createEvent(this, "itemClick");
78677
+ this.itemClick = index.createEvent(this, "itemClick", 7);
78678
78678
  this.disabled = false;
78679
78679
  this.variant = _vars.OverflowMenuVariant.DEFAULT;
78680
78680
  this.clickable = true;
@@ -78695,7 +78695,7 @@ const xvPaginationCss = () => `.xv-container{width:100%;max-width:1170px;margin-
78695
78695
  const XvPagination = class {
78696
78696
  constructor(hostRef) {
78697
78697
  index.registerInstance(this, hostRef);
78698
- this.pageChange = index.createEvent(this, "pageChange");
78698
+ this.pageChange = index.createEvent(this, "pageChange", 7);
78699
78699
  this.itemsPerPageOptions = [10, 20, 30, 40, 50, 100];
78700
78700
  this.itemsPerPage = this.itemsPerPageOptions[0];
78701
78701
  /*
@@ -78947,7 +78947,7 @@ const xvSliderCss = () => `.xv-container{width:100%;max-width:1170px;margin-inli
78947
78947
  const XvSlider = class {
78948
78948
  constructor(hostRef) {
78949
78949
  index.registerInstance(this, hostRef);
78950
- this.valueChange = index.createEvent(this, "valueChange");
78950
+ this.valueChange = index.createEvent(this, "valueChange", 7);
78951
78951
  if (hostRef.$hostElement$["s-ei"]) {
78952
78952
  this.internals = hostRef.$hostElement$["s-ei"];
78953
78953
  }
@@ -79066,7 +79066,7 @@ const xvTableCellCss = () => `@charset "UTF-8";.xv-container{width:100%;max-widt
79066
79066
  const XvTableCell = class {
79067
79067
  constructor(hostRef) {
79068
79068
  index.registerInstance(this, hostRef);
79069
- this.sortChange = index.createEvent(this, "sortChange");
79069
+ this.sortChange = index.createEvent(this, "sortChange", 7);
79070
79070
  }
79071
79071
  handleSort() {
79072
79072
  if (this.sort === undefined)
@@ -79123,8 +79123,8 @@ const xvTableRowCss = () => `.xv-container{width:100%;max-width:1170px;margin-in
79123
79123
  const XvTableRow = class {
79124
79124
  constructor(hostRef) {
79125
79125
  index.registerInstance(this, hostRef);
79126
- this.checkedChange = index.createEvent(this, "checkedChange");
79127
- this.selectRow = index.createEvent(this, "selectRow");
79126
+ this.checkedChange = index.createEvent(this, "checkedChange", 7);
79127
+ this.selectRow = index.createEvent(this, "selectRow", 7);
79128
79128
  this.checkHandle = ({ detail: checked }) => {
79129
79129
  if (!checked && this.partial)
79130
79130
  this.partial = checked;
@@ -79195,7 +79195,7 @@ const xvTabsCss = () => `.xv-container{width:100%;max-width:1170px;margin-inline
79195
79195
  const XvTabs = class {
79196
79196
  constructor(hostRef) {
79197
79197
  index.registerInstance(this, hostRef);
79198
- this.activeChange = index.createEvent(this, "activeChange");
79198
+ this.activeChange = index.createEvent(this, "activeChange", 7);
79199
79199
  /**
79200
79200
  * Index of active tab
79201
79201
  */
@@ -79290,8 +79290,8 @@ const xvTagComboboxCss = () => `.xv-container{width:100%;max-width:1170px;margin
79290
79290
  const XvTagCombobox = class {
79291
79291
  constructor(hostRef) {
79292
79292
  index.registerInstance(this, hostRef);
79293
- this.valueChange = index.createEvent(this, "valueChange");
79294
- this.inputChange = index.createEvent(this, "inputChange");
79293
+ this.valueChange = index.createEvent(this, "valueChange", 7);
79294
+ this.inputChange = index.createEvent(this, "inputChange", 7);
79295
79295
  // props
79296
79296
  this.options = [];
79297
79297
  this.label = '';
@@ -79546,7 +79546,7 @@ const xvTagCss = () => `@charset "UTF-8";.xv-container{width:100%;max-width:1170
79546
79546
  const XvTag = class {
79547
79547
  constructor(hostRef) {
79548
79548
  index.registerInstance(this, hostRef);
79549
- this.closeClick = index.createEvent(this, "closeClick");
79549
+ this.closeClick = index.createEvent(this, "closeClick", 7);
79550
79550
  this.size = 'md';
79551
79551
  this.color = '';
79552
79552
  this.bg = '';
@@ -79569,7 +79569,7 @@ const xvTextInputCss = () => `.xv-container{width:100%;max-width:1170px;margin-i
79569
79569
  const XvTextInput = class {
79570
79570
  constructor(hostRef) {
79571
79571
  index.registerInstance(this, hostRef);
79572
- this.valueChange = index.createEvent(this, "valueChange");
79572
+ this.valueChange = index.createEvent(this, "valueChange", 7);
79573
79573
  if (hostRef.$hostElement$["s-ei"]) {
79574
79574
  this.internals = hostRef.$hostElement$["s-ei"];
79575
79575
  }
@@ -79610,7 +79610,7 @@ const xvTextareaCss = () => `.xv-container{width:100%;max-width:1170px;margin-in
79610
79610
  const XvTextarea = class {
79611
79611
  constructor(hostRef) {
79612
79612
  index.registerInstance(this, hostRef);
79613
- this.valueChange = index.createEvent(this, "valueChange");
79613
+ this.valueChange = index.createEvent(this, "valueChange", 7);
79614
79614
  if (hostRef.$hostElement$["s-ei"]) {
79615
79615
  this.internals = hostRef.$hostElement$["s-ei"];
79616
79616
  }
@@ -79663,7 +79663,7 @@ const xvTileCss = () => `@charset "UTF-8";.xv-container{width:100%;max-width:117
79663
79663
  const XvTile = class {
79664
79664
  constructor(hostRef) {
79665
79665
  index.registerInstance(this, hostRef);
79666
- this.tileChange = index.createEvent(this, "tileChange");
79666
+ this.tileChange = index.createEvent(this, "tileChange", 7);
79667
79667
  this.variant = 'base';
79668
79668
  this.checked = false;
79669
79669
  this.readonly = false;
@@ -79711,7 +79711,7 @@ const xvToggleCss = () => `.xv-container{width:100%;max-width:1170px;margin-inli
79711
79711
  const XvToggle = class {
79712
79712
  constructor(hostRef) {
79713
79713
  index.registerInstance(this, hostRef);
79714
- this.toggleChange = index.createEvent(this, "toggleChange");
79714
+ this.toggleChange = index.createEvent(this, "toggleChange", 7);
79715
79715
  if (hostRef.$hostElement$["s-ei"]) {
79716
79716
  this.internals = hostRef.$hostElement$["s-ei"];
79717
79717
  }
@@ -79743,7 +79743,7 @@ const xvToggleTipCss = () => `.xv-container{width:100%;max-width:1170px;margin-i
79743
79743
  const XvToggleTip = class {
79744
79744
  constructor(hostRef) {
79745
79745
  index.registerInstance(this, hostRef);
79746
- this.openChange = index.createEvent(this, "openChange");
79746
+ this.openChange = index.createEvent(this, "openChange", 3);
79747
79747
  this.open = false;
79748
79748
  this.autoSize = false;
79749
79749
  this.block = false;
@@ -79809,7 +79809,7 @@ const XvToggleTip = class {
79809
79809
  }
79810
79810
  ;
79811
79811
  render() {
79812
- return (index.h(index.Host, { key: '3b8ff6ade08a6b76d5bea606e62cce5df25825a8', class: "xv-toggle-tip" }, index.h("div", { key: '70b732b960c52a3cb11024441ce593d341c9ead4', class: { 'trigger': true, 'trigger--block': this.block }, role: "button", tabindex: "0", "aria-expanded": this.open ? 'true' : 'false', "aria-controls": "popover", onClick: () => this.setPopover(!this.open), ref: (el) => (this.triggerEl = el) }, index.h("slot", { key: '0929a22c29c0220d38e2a831e2497b0796109799', name: "trigger" }, index.h("svg", { key: 'f57054dc83787931cee087c2c63eeb499ee4bc86', class: "trigger_icon", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 512 512", width: 16, height: 16 }, index.h("path", { key: '2147fd07f4967cda8a440aeb84ffbfa4564c3351', 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" })))), index.h("div", { key: 'f1f438a93f423301e479f241cd2ef37249078592', class: { popover: true, autoSize: !!this.autoSize }, role: "tooltip", tabindex: "-1", ref: (el) => (this.popoverEl = el) }, index.h("div", { key: '1e9e12c362e97f44433bc07ed7c577199849d06f', class: "popover-tip", part: "tip", "data-popper-arrow": "" }), index.h("div", { key: '07081aa70c72ee9f3462a7cdc017656c93abbecb', class: "popover-content" }, index.h("slot", { key: '8aabcff28e4ae4c8bc8670c4b976999417a4f4cb', name: "header" }), index.h("slot", { key: '0f27af1303a66fa566de1d4bc3257c2aae577b7b', name: "body" }), index.h("slot", { key: 'c1a88147d81977c2850979b13f920c61cebe98d4', name: "footer" })))));
79812
+ return (index.h(index.Host, { key: 'e7d71dc984d98489db55d92397b25bd9d719bce4', class: "xv-toggle-tip" }, index.h("div", { key: 'ff13395cea21e6345f1a36b6b543fc9e434ef965', class: { 'trigger': true, 'trigger--block': this.block }, role: "button", tabindex: "0", "aria-expanded": this.open ? 'true' : 'false', "aria-controls": "popover", onClick: () => this.setPopover(!this.open), ref: (el) => (this.triggerEl = el) }, index.h("slot", { key: '0bb796b2062a8f0531e6bcd456e02de40486bda3', name: "trigger" }, index.h("svg", { key: 'fe69949a7ad3006a0e4dd131427e209e29005f69', class: "trigger_icon", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 512 512", width: 16, height: 16 }, index.h("path", { key: 'c938e1f301e9ebdc26ebfafb4178f5ebc919d5c0', 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" })))), index.h("div", { key: '5e3d1b7d56cac46c356ba489045512b28c5397a5', class: { popover: true, autoSize: !!this.autoSize }, role: "tooltip", tabindex: "-1", ref: (el) => (this.popoverEl = el) }, index.h("div", { key: 'd57c58e95adcdce5ed0611fc925ff4f202f199b8', class: "popover-tip", part: "tip", "data-popper-arrow": "" }), index.h("div", { key: '3e5744f01027652dec48650320d4307c948d0d98', class: "popover-content" }, index.h("slot", { key: '4b1876e83382f5f0922334993b72a5e94975d5bb', name: "header" }), index.h("slot", { key: 'a48f6889f93eb9f34b6310325a1d54d517277fad', name: "body" }), index.h("slot", { key: 'e59929a8bc5dc03db7d72be942e866bec4ad7b1d', name: "footer" })))));
79813
79813
  }
79814
79814
  disconnectedCallback() {
79815
79815
  this.destroyPopper();
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var index = require('./index-DN7GFWbs.js');
3
+ var index = require('./index-C4fJ70r4.js');
4
4
  var _vars = require('./_vars-A07oKwJ_.js');
5
5
  var index$1 = require('./index-DwneAp1a.js');
6
6
 
@@ -11,7 +11,7 @@ const xvHeaderNextCss = () => `.xv-container{width:100%;max-width:1170px;margin-
11
11
  const XvHeaderNext = class {
12
12
  constructor(hostRef) {
13
13
  index.registerInstance(this, hostRef);
14
- this.xvMetaNavUpdate = index.createEvent(this, "xvMetaNavUpdate");
14
+ this.xvMetaNavUpdate = index.createEvent(this, "xvMetaNavUpdate", 7);
15
15
  this.orgUnit = '';
16
16
  this.baseUrl = '';
17
17
  this.loading = false;
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var index = require('./index-DN7GFWbs.js');
3
+ var index = require('./index-C4fJ70r4.js');
4
4
  var index$1 = require('./index-DwneAp1a.js');
5
5
 
6
6
  const xvMegaMenuNextCss = () => `.xv-container{width:100%;max-width:1170px;margin-inline:auto}@media (min-width: 576px){.xv-container{max-width:540px}}@media (min-width: 768px){.xv-container{max-width:720px}}@media (min-width: 992px){.xv-container{max-width:960px;padding-inline:var(--bs-gutter-x, 0.75rem)}}@media (min-width: 1200px){.xv-container{max-width:1140px}}@media (min-width: 1400px){.xv-container{max-width:1320px}}.xv-tooltip[role=tooltip]{position:absolute;background-color:var(--background-inverse, #333333);color:var(--text-on-color);padding:var(--spacing-03) var(--spacing-04);border-radius:3px;font-size:var(--fz-sm);z-index:999;min-width:min(150px, 90vw);max-width:min(400px, 90vw)}.xv-tooltip[role=tooltip]::after{content:"";position:absolute;width:0;height:0;border-style:solid}.xv-tooltip[role=tooltip][data-popper-placement=top]::after{bottom:-5px;left:50%;transform:translateX(-50%);border-width:5px 5px 0 5px;border-color:var(--background-inverse, black) transparent transparent transparent}.xv-tooltip[role=tooltip][data-popper-placement=top-start]::after{bottom:-5px;left:12px;border-width:5px 5px 0 5px;border-color:var(--background-inverse, black) transparent transparent transparent}.xv-tooltip[role=tooltip][data-popper-placement=top-end]::after{bottom:-5px;right:12px;border-width:5px 5px 0 5px;border-color:var(--background-inverse, black) transparent transparent transparent}.xv-tooltip[role=tooltip][data-popper-placement=bottom]::after{top:-5px;left:50%;transform:translateX(-50%);border-width:0 5px 5px 5px;border-color:transparent transparent var(--background-inverse, black) transparent}.xv-tooltip[role=tooltip][data-popper-placement=bottom-start]::after{top:-5px;left:12px;border-width:0 5px 5px 5px;border-color:transparent transparent var(--background-inverse, black) transparent}.xv-tooltip[role=tooltip][data-popper-placement=bottom-end]::after{top:-5px;right:12px;border-width:0 5px 5px 5px;border-color:transparent transparent var(--background-inverse, black) transparent}.xv-tooltip[role=tooltip][data-popper-placement=left]::after{top:50%;right:-5px;transform:translateY(-50%);border-width:5px 0 5px 5px;border-color:transparent transparent transparent var(--background-inverse, black)}.xv-tooltip[role=tooltip][data-popper-placement=left-start]::after{top:12px;right:-5px;border-width:5px 0 5px 5px;border-color:transparent transparent transparent var(--background-inverse, black)}.xv-tooltip[role=tooltip][data-popper-placement=left-end]::after{bottom:12px;right:-5px;border-width:5px 0 5px 5px;border-color:transparent transparent transparent var(--background-inverse, black)}.xv-tooltip[role=tooltip][data-popper-placement=right]::after{top:50%;left:-5px;transform:translateY(-50%);border-width:5px 5px 5px 0;border-color:transparent var(--background-inverse, black) transparent transparent}.xv-tooltip[role=tooltip][data-popper-placement=right-start]::after{top:12px;left:-5px;border-width:5px 5px 5px 0;border-color:transparent var(--background-inverse, black) transparent transparent}.xv-tooltip[role=tooltip][data-popper-placement=right-end]::after{bottom:12px;left:-5px;border-width:5px 5px 5px 0;border-color:transparent var(--background-inverse, black) transparent transparent}.xv-container{width:100%;max-width:1170px;margin-inline:auto}@media (min-width: 576px){.xv-container{max-width:540px}}@media (min-width: 768px){.xv-container{max-width:720px}}@media (min-width: 992px){.xv-container{max-width:960px;padding-inline:var(--bs-gutter-x, 0.75rem)}}@media (min-width: 1200px){.xv-container{max-width:1140px}}@media (min-width: 1400px){.xv-container{max-width:1320px}}.xv-tooltip[role=tooltip]{position:absolute;background-color:var(--background-inverse, #333333);color:var(--text-on-color);padding:var(--spacing-03) var(--spacing-04);border-radius:3px;font-size:var(--fz-sm);z-index:999;min-width:min(150px, 90vw);max-width:min(400px, 90vw)}.xv-tooltip[role=tooltip]::after{content:"";position:absolute;width:0;height:0;border-style:solid}.xv-tooltip[role=tooltip][data-popper-placement=top]::after{bottom:-5px;left:50%;transform:translateX(-50%);border-width:5px 5px 0 5px;border-color:var(--background-inverse, black) transparent transparent transparent}.xv-tooltip[role=tooltip][data-popper-placement=top-start]::after{bottom:-5px;left:12px;border-width:5px 5px 0 5px;border-color:var(--background-inverse, black) transparent transparent transparent}.xv-tooltip[role=tooltip][data-popper-placement=top-end]::after{bottom:-5px;right:12px;border-width:5px 5px 0 5px;border-color:var(--background-inverse, black) transparent transparent transparent}.xv-tooltip[role=tooltip][data-popper-placement=bottom]::after{top:-5px;left:50%;transform:translateX(-50%);border-width:0 5px 5px 5px;border-color:transparent transparent var(--background-inverse, black) transparent}.xv-tooltip[role=tooltip][data-popper-placement=bottom-start]::after{top:-5px;left:12px;border-width:0 5px 5px 5px;border-color:transparent transparent var(--background-inverse, black) transparent}.xv-tooltip[role=tooltip][data-popper-placement=bottom-end]::after{top:-5px;right:12px;border-width:0 5px 5px 5px;border-color:transparent transparent var(--background-inverse, black) transparent}.xv-tooltip[role=tooltip][data-popper-placement=left]::after{top:50%;right:-5px;transform:translateY(-50%);border-width:5px 0 5px 5px;border-color:transparent transparent transparent var(--background-inverse, black)}.xv-tooltip[role=tooltip][data-popper-placement=left-start]::after{top:12px;right:-5px;border-width:5px 0 5px 5px;border-color:transparent transparent transparent var(--background-inverse, black)}.xv-tooltip[role=tooltip][data-popper-placement=left-end]::after{bottom:12px;right:-5px;border-width:5px 0 5px 5px;border-color:transparent transparent transparent var(--background-inverse, black)}.xv-tooltip[role=tooltip][data-popper-placement=right]::after{top:50%;left:-5px;transform:translateY(-50%);border-width:5px 5px 5px 0;border-color:transparent var(--background-inverse, black) transparent transparent}.xv-tooltip[role=tooltip][data-popper-placement=right-start]::after{top:12px;left:-5px;border-width:5px 5px 5px 0;border-color:transparent var(--background-inverse, black) transparent transparent}.xv-tooltip[role=tooltip][data-popper-placement=right-end]::after{bottom:12px;left:-5px;border-width:5px 5px 5px 0;border-color:transparent var(--background-inverse, black) transparent transparent}:host{--menu-group-width:244px;--menu-group-height:454px;--link-visited:var(--link-primary)}.xv-menu{background:inherit;position:relative;font-family:var(--ff-work-sans), sans-serif}@media (min-width: 992px){.xv-menu{min-height:55px}}.xv-menu-loader{position:absolute;top:0;left:0;width:100%;height:100%;z-index:4;background-color:rgba(255, 255, 255, 0.7);display:flex;align-items:center;justify-content:center}@media (max-width: 991px){.xv-menu-loader:not(.open){display:none}}@media (max-width: 991px){.xv-menu.open{padding-bottom:env(safe-area-inset-bottom);max-height:calc(100vh - 120px);overflow:auto;overscroll-behavior:contain}}.xv-menu_mobile{position:relative;display:none}@media (max-width: 991px){.xv-menu_mobile{display:inline-flex}}.xv-menu ul{margin:0;padding:0;list-style:none}.xv-menu .link-chevron{display:inline-block;margin-inline-start:var(--spacing-01)}.xv-menu .menu{overflow-x:auto;display:flex;justify-content:flex-start;column-gap:var(--spacing-08)}@media (max-width: 991px){.xv-menu .menu{flex-direction:column;display:none}}.xv-menu .menu--right{margin-left:auto;display:flex;align-items:center;align-self:center}@media (max-width: 991px){.xv-menu .menu--right{margin-left:unset;padding-block:var(--spacing-05)}}.xv-menu .menu--backdrop{z-index:-1;background-color:rgba(0, 0, 0, 0.3);position:fixed;top:0;left:0;width:100%;height:100%}@media (max-width: 991px){.xv-menu .menu.open{display:flex}}.xv-menu .menu-item:hover .menu-item-label{border-bottom-color:var(--interactive-02)}.xv-menu .menu-item.active .menu-item-groups{z-index:990;display:flex}.xv-menu .menu-item.active .menu-item-label{border-bottom-color:var(--interactive-02)}@media (max-width: 991px){.xv-menu .menu-item.active{border-bottom:1px solid #E1E4ED}}.xv-menu .menu-item-label{margin:0;padding-block:var(--spacing-05, 16px);color:inherit;font-size:16px;line-height:24px;font-family:var(--ff-body), sans-serif;font-weight:600;cursor:pointer;border-bottom:2px solid transparent;transition:250ms ease-in-out border-bottom-color;user-select:none;white-space:nowrap}@media (max-width: 991px){.xv-menu .menu-item-label{border-bottom:1px solid #E1E4ED}}.xv-menu .menu-item-groups{z-index:-1;position:absolute;left:0;top:100%;width:100%;background-color:var(--background, #fff);display:none;flex-direction:column;border:1px solid var(--border-subtle-01);row-gap:var(--spacing-05);padding-block:var(--spacing-08) var(--spacing-06);min-height:var(--menu-group-height);border-radius:0 0 8px 8px;overflow:hidden;color:var(--interactive-01, #273435)}@media (max-width: 991px){.xv-menu .menu-item-groups{min-height:unset;padding-block:unset;position:relative;row-gap:unset;border:none}}.xv-menu .menu .group{display:flex;align-items:flex-start}@media (max-width: 991px){.xv-menu .menu .group{flex-direction:column;align-items:stretch}}.xv-menu .menu .group-label{user-select:none;min-width:var(--menu-group-width);max-width:var(--menu-group-width);color:var(--text-primary, #333);font-size:16px;font-style:normal;font-weight:400;line-height:137.5%;display:flex;column-gap:var(--spacing-04);text-align:right;justify-content:flex-end;cursor:pointer}.xv-menu .menu .group-label-text{text-overflow:ellipsis;overflow:hidden}.xv-menu .menu .group-label-icon{width:8px;height:8px;border-bottom:2px solid currentColor;border-right:2px solid currentColor;transform:rotate(-45deg);transform-origin:bottom;align-self:center}@media (max-width: 991px){.xv-menu .menu .group-label{max-width:unset;min-width:unset;align-items:stretch;justify-content:flex-start;padding-block:var(--spacing-05)}}.xv-menu .menu .group-container{flex:1;display:none}.xv-menu .menu .group-container-absolute{position:absolute;top:0;right:0;width:calc(100% - (var(--menu-group-width) + var(--spacing-06) + var(--spacing-09) + var(--spacing-05)));min-height:calc(100% - (var(--spacing-08) + var(--spacing-06)));padding:var(--spacing-08) var(--spacing-06) var(--spacing-06) var(--spacing-09);display:flex;background-color:var(--layer-01, #F7F7F7)}@media (max-width: 991px){.xv-menu .menu .group-container-absolute{position:unset;flex-direction:column;width:100%;flex:1;padding:var(--spacing-06) 0;background-color:var(--background)}}.xv-menu .menu .group-container-absolute.noLabel{left:0;width:calc(100% - (var(--spacing-06) + var(--spacing-09)))}.xv-menu .menu .group.active .group-label{font-weight:600}@media (max-width: 991px){.xv-menu .menu .group.active .group-label-icon{transform-origin:center;transform:rotate(45deg)}}.xv-menu .menu .group.active .group-container{display:flex}.xv-menu .menu .group-menus{flex:1;display:flex;flex-direction:column;row-gap:var(--spacing-06)}.xv-menu .menu .group-menus-categories{display:flex;row-gap:var(--spacing-07);column-gap:var(--spacing-05);flex:1}@media (max-width: 991px){.xv-menu .menu .group-menus-categories{flex-direction:column;gap:var(--spacing-07)}}.xv-menu .menu .group-menus-categories.inline{flex-direction:column;flex-wrap:wrap;max-height:365px}@media (max-width: 991px){.xv-menu .menu .group-menus-categories.inline{max-height:unset}}.xv-menu .menu .group-menus-categories.inline .category{flex:none}.xv-menu .menu .group-menus-actions{display:flex;align-items:center;justify-content:flex-start;gap:var(--spacing-05)}@media (max-width: 991px){.xv-menu .menu .group-menus-actions{flex-direction:column;justify-content:stretch;align-items:stretch;text-align:center}}.xv-menu .menu .group-card{box-sizing:content-box;max-width:228px;min-width:200px;padding-left:var(--spacing-06);border-left:1px solid var(--border-subtle-01)}@media (min-width: 992px) and (max-width: 1199px){.xv-menu .menu .group-card{display:none}}@media (max-width: 991px){.xv-menu .menu .group-card{margin-block-start:var(--spacing-06);border-left:none;padding-left:0;max-width:unset;min-width:unset}}.xv-menu .menu .group-card .xv-card{box-shadow:none;background-color:var(--background, #fff)}@media (max-width: 991px){.xv-menu .menu .group-card .xv-card{width:unset}}.xv-menu .menu .group-card-title,.xv-menu .menu .group-card-desc{font-size:var(--fz-md, 14px);font-style:normal;line-height:18px;letter-spacing:0.16px}.xv-menu .menu .group-card .xv-link_standalone,.xv-menu .menu .group-card-title,.xv-menu .menu .group-card-desc{font-family:var(--ff-work-sans), sans-serif}.xv-menu .menu .group-card-title{color:var(--text-primary, #333);font-weight:600}.xv-menu .menu .group-card-desc{color:var(--text-secondary, #515151);font-weight:400;padding-top:var(--spacing-03);display:-webkit-box;-webkit-line-clamp:11;-webkit-box-orient:vertical;overflow:hidden}.xv-menu .menu .category{flex:1;display:flex;flex-direction:column;row-gap:var(--spacing-05)}@media (max-width: 991px){.xv-menu .menu .category{flex:0}.xv-menu .menu .category:not(:last-child){border-bottom:1px solid var(--border-subtle-01);padding-bottom:var(--spacing-04)}}.xv-menu .menu .category-label{margin:0;font-size:var(--fz-md, 14px);color:var(--text-secondary)}.xv-menu .menu .category-routes{display:flex;flex-direction:column;row-gap:var(--spacing-05)}.xv-menu .menu .route{display:inline-flex;align-items:center;column-gap:var(--spacing-03);position:relative;font-size:var(--fz-lg, 16px)}.xv-menu .menu .route .xv-link_ghost{font-family:var(--ff-work-sans), sans-serif}.xv-menu .menu .route .xv-link_ghost:hover{color:var(--link-primary)}@media (max-width: 991px){.xv-menu .menu .route{white-space:nowrap}}.xv-menu .menu .route .route-tag{font-size:9px}`;
@@ -8,7 +8,7 @@ const xvMegaMenuNextCss = () => `.xv-container{width:100%;max-width:1170px;margi
8
8
  const XvMegaMenuNext = class {
9
9
  constructor(hostRef) {
10
10
  index.registerInstance(this, hostRef);
11
- this.openChange = index.createEvent(this, "openChange");
11
+ this.openChange = index.createEvent(this, "openChange", 7);
12
12
  this.mobileSize = 991;
13
13
  this.open = false;
14
14
  this.menuItems = [];
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var index = require('./index-DN7GFWbs.js');
3
+ var index = require('./index-C4fJ70r4.js');
4
4
 
5
5
  var _documentCurrentScript = typeof document !== 'undefined' ? document.currentScript : null;
6
6
  /*
@@ -149,7 +149,7 @@ export class XvDropdown {
149
149
  }
150
150
  /* endregion Search methods */
151
151
  render() {
152
- return (h(Host, { key: 'd838aa3fa296ee50dbf212553f2e2b7914f3a0c4', class: { 'xv-dropdown': true, [this.variant]: !!this.variant }, role: "combobox", size: this.size, open: this.open, error: !!this.error, disabled: this.disabled, tabindex: (this.disabled || this.readonly) ? -1 : false }, (this.label || this.info) && (h("label", { key: '54d41b54fd71182ffce9456bc9274f0d652e43bb', class: "label" }, h("slot", { key: '69845d8b9aa37eec53a2491cf94645590686d845', name: "label" }, this.label), this.info && h("xv-tooltip-v2", { key: '9e65840f74eb096e5d6aa134c30a063a25120ffb', class: "label_info", message: this.info }))), h("div", { key: 'ece0a39f64e10d0828fd8ee71fa26934d1c86964', class: { "xv-dropdown-control control": true, readonly: !!this.readonly }, onClick: this.handleOpen }, (this.multiple && this.selectedMap.size > 0) && (h("xv-tag-v2", { key: 'f21a3d3defb174bb512622c9c6d6660d272ef6f1', class: "control_count", onCloseClick: this.clearHandle, closeable: !this.required, bg: "var(--background-inverse)", color: "var(--icon-inverse)" }, this.selectedMap.size)), this.selected.length ? (h("p", { class: "control_value" }, this.selected.join(', '))) : (h("p", { class: "control_placeholder" }, this.placeholder || '')), this._renderIcon(), h("svg", { key: 'e8447e3d587d54d7b09fea6eda94cdf09082dd90', class: "control_arrow", focusable: "false", preserveAspectRatio: "xMidYMid meet", xmlns: "http://www.w3.org/2000/svg", fill: "currentColor", "aria-hidden": "true", width: "16", height: "16", viewBox: "0 0 16 16" }, h("path", { key: 'e0e71246c042b42922d098d54aeb60eeb6ccabed', d: "M8 11L3 6 3.7 5.3 8 9.6 12.3 5.3 13 6z" }))), this.open && h("div", { key: '0db7121172d180d34a364338397e4f50144f699e', class: "options" }, this.search && (h("div", { key: 'f527e540dbac3499bf1709d4b560adefe81bdf33', class: "options_search" }, h("xv-text-input-v2", { key: 'e62414d2230b8617506e0be058374278614dda60', type: "search", block: true, autocomplete: "off", size: this.size, value: this.searchQuery, placeholder: this.searchPlaceholder, onValueChange: this.handleSearchInput }))), h("slot", { key: "xv-dropdown-options" })), (this.helper || typeof this.error === 'string' || this.warning) && (h("p", { key: '3c03220f26c1b661926a9a9ab1004618f96c7d91', class: "helper" }, this.error || this.warning || this.helper))));
152
+ return (h(Host, { key: 'eecc73132cb30e15e7ed8b92f518e6759fd68115', class: { 'xv-dropdown': true, [this.variant]: !!this.variant }, role: "combobox", size: this.size, open: this.open, error: !!this.error, disabled: this.disabled, tabindex: (this.disabled || this.readonly) ? -1 : false }, (this.label || this.info) && (h("label", { key: '06de4ebd44e17c961529ad676b18064c716bf5cc', class: "label" }, h("slot", { key: 'b765429ef1c5ae627646137c5ba9407f486843cd', name: "label" }, this.label), this.info && h("xv-tooltip-v2", { key: '35e293ff0e3130fac6d4493bcd32f62afa78e584', class: "label_info", message: this.info }))), h("div", { key: '128a43df761f3cef5c5740825a68315332ff41d9', class: { "xv-dropdown-control control": true, readonly: !!this.readonly }, onClick: this.handleOpen }, (this.multiple && this.selectedMap.size > 0) && (h("xv-tag-v2", { key: 'f90e898ee70cf12a6eb2fd11e83809dc0f39a129', class: "control_count", onCloseClick: this.clearHandle, closeable: !this.required, bg: "var(--background-inverse)", color: "var(--icon-inverse)" }, this.selectedMap.size)), this.selected.length ? (h("p", { class: "control_value" }, this.selected.join(', '))) : (h("p", { class: "control_placeholder" }, this.placeholder || '')), this._renderIcon(), h("svg", { key: '80ce81bc67b06a7aecf88c4be207f3e63a1e9cad', class: "control_arrow", focusable: "false", preserveAspectRatio: "xMidYMid meet", xmlns: "http://www.w3.org/2000/svg", fill: "currentColor", "aria-hidden": "true", width: "16", height: "16", viewBox: "0 0 16 16" }, h("path", { key: '2eb2e82a44c9131ff99b4dc96087cdc05d4beac9', d: "M8 11L3 6 3.7 5.3 8 9.6 12.3 5.3 13 6z" }))), this.open && h("div", { key: 'c8d968006c6f01fda8f24ffb8d8f8bb2ceb19359', class: "options" }, this.search && (h("div", { key: '501bccb5b1f3c9900b2d1d36ee8bdc606ef73c38', class: "options_search" }, h("xv-text-input-v2", { key: 'e5eb069e999c00e53e4e2a5087b0bbb3d926dd7c', type: "search", block: true, autocomplete: "off", size: this.size, value: this.searchQuery, placeholder: this.searchPlaceholder, onValueChange: this.handleSearchInput }))), h("slot", { key: "xv-dropdown-options" })), (this.helper || typeof this.error === 'string' || this.warning) && (h("p", { key: '379472520222b0e338e377c3fd4432e16e9cc460', class: "helper" }, this.error || this.warning || this.helper))));
153
153
  }
154
154
  componentDidLoad() {
155
155
  this.syncOpenState();
@@ -583,7 +583,7 @@ export class XvDropdown {
583
583
  }, {
584
584
  "method": "openChange",
585
585
  "name": "openChange",
586
- "bubbles": true,
586
+ "bubbles": false,
587
587
  "cancelable": true,
588
588
  "composed": true,
589
589
  "docs": {
@@ -58,7 +58,7 @@ export class XvModal {
58
58
  }
59
59
  render() {
60
60
  var _a;
61
- return (h(Host, { key: 'ce5c07afb247e878e245ae15f249a3b4f915789c', role: "dialog", size: this.size, id: this.el.id }, h("slot", { key: '89d1b0bc59a4fb3fe0b5388ffd5ba301e36a5c79', name: "trigger", onSlotchange: this.setupTrigger }), h("div", { key: 'a0776ed33dd07d3793443c726d8355e6742968d1', class: { backdrop: true }, onClick: this.onBackdropClick }, h("div", { key: 'edb06f1301d516cd664733002b3cfaa853b4f6ec', class: "modal" }, h("button", { key: '85cf543ea2dd378fd5898825728303adf19a67c7', class: "modal_close", onClick: this.closeModal.bind(this) }, "\u00D7"), h("div", { key: 'c3e500a1dff7db1b6608eff1bf64204e8b6bab88', class: "modal_header" }, h("slot", { key: 'b4306ab8febe0b1f6af467b512e5edb2bca3506f', name: "header" }, ((_a = this.el) === null || _a === void 0 ? void 0 : _a.title) && h("h5", { key: 'a3359899b60e44e45c15ce7f0885755bfd507f36', class: "modal_header__title" }, this.el.title))), h("div", { key: '20bc1d54bd59b20ee92656b5961a587e2944a9f9', class: { 'modal_content': true, overflow: this.overflow } }, h("slot", { key: '0be669654c912fc60c7f56baca1d45ada78dc7a0' })), h("div", { key: 'dbf7f7d83d18611fa9e718e42d674c6b4de2901a', class: "modal_footer" }, h("slot", { key: '3d1a55976e77a848f3e7180c56a6e414b4c8f5ec', name: "footer" })), !!this.loading && (h("div", { key: '2943edd600f06218d8fce87d60ca337c9e73a7f8', class: "loading" }, h("xv-loader-v2", { key: 'f42450f1c85e85d97bb8b594e060de9f8828e9f9', size: SIZE_VAR.LG })))))));
61
+ return (h(Host, { key: '3e0924a9a3f67a49d592edbdb8c83c61d093523d', role: "dialog", size: this.size, id: this.el.id }, h("slot", { key: '44bfc07024422351f51f248b18a084c1b73daca2', name: "trigger", onSlotchange: this.setupTrigger }), h("div", { key: '4827f22f43de8f1ff60af6dc7cb47676fb52c113', class: { backdrop: true }, onClick: this.onBackdropClick }, h("div", { key: '007d6f3db4221607cf7f1cf0f2ef2c5d77f878d0', class: "modal" }, h("button", { key: '30bfd368e69ad4c95474409228ca2eb925b45523', class: "modal_close", onClick: this.closeModal.bind(this) }, "\u00D7"), h("div", { key: '2765e6a696c767b13c9f28d01f0b558a5b4aae72', class: "modal_header" }, h("slot", { key: 'd1e4615e82709fc9b919573e3bdcffa48fe5ddea', name: "header" }, ((_a = this.el) === null || _a === void 0 ? void 0 : _a.title) && h("h5", { key: '884dae5ca7c5bb13abfe8d7c697d289a13b177ef', class: "modal_header__title" }, this.el.title))), h("div", { key: 'c416e7a66710eddfc0704e0c9bfb2ac25dc2a06f', class: { 'modal_content': true, overflow: this.overflow } }, h("slot", { key: '589a402f00d7c5c0e3b7e6f14f348ebbf0d44fa8' })), h("div", { key: '4606584cd9d03f18add4ecaff22474d8a88ca6db', class: "modal_footer" }, h("slot", { key: '80f3eea845811e87dcbce260a68d8bcaeb85b1db', name: "footer" })), !!this.loading && (h("div", { key: '314ab1737c5e504b74f1689897db496c604a807b', class: "loading" }, h("xv-loader-v2", { key: '148b4da2eaedfbcceb7cefc67b9bfb31c534f91d', size: SIZE_VAR.LG })))))));
62
62
  }
63
63
  disconnectedCallback() {
64
64
  this.removeTriggerListener();
@@ -188,7 +188,7 @@ export class XvModal {
188
188
  return [{
189
189
  "method": "openChange",
190
190
  "name": "openChange",
191
- "bubbles": true,
191
+ "bubbles": false,
192
192
  "cancelable": true,
193
193
  "composed": true,
194
194
  "docs": {
@@ -67,7 +67,7 @@ export class XvToggleTip {
67
67
  }
68
68
  ;
69
69
  render() {
70
- return (h(Host, { key: '3b8ff6ade08a6b76d5bea606e62cce5df25825a8', class: "xv-toggle-tip" }, h("div", { key: '70b732b960c52a3cb11024441ce593d341c9ead4', class: { 'trigger': true, 'trigger--block': this.block }, 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: '0929a22c29c0220d38e2a831e2497b0796109799', name: "trigger" }, h("svg", { key: 'f57054dc83787931cee087c2c63eeb499ee4bc86', class: "trigger_icon", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 512 512", width: 16, height: 16 }, h("path", { key: '2147fd07f4967cda8a440aeb84ffbfa4564c3351', 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: 'f1f438a93f423301e479f241cd2ef37249078592', class: { popover: true, autoSize: !!this.autoSize }, role: "tooltip", tabindex: "-1", ref: (el) => (this.popoverEl = el) }, h("div", { key: '1e9e12c362e97f44433bc07ed7c577199849d06f', class: "popover-tip", part: "tip", "data-popper-arrow": "" }), h("div", { key: '07081aa70c72ee9f3462a7cdc017656c93abbecb', class: "popover-content" }, h("slot", { key: '8aabcff28e4ae4c8bc8670c4b976999417a4f4cb', name: "header" }), h("slot", { key: '0f27af1303a66fa566de1d4bc3257c2aae577b7b', name: "body" }), h("slot", { key: 'c1a88147d81977c2850979b13f920c61cebe98d4', name: "footer" })))));
70
+ return (h(Host, { key: 'e7d71dc984d98489db55d92397b25bd9d719bce4', class: "xv-toggle-tip" }, h("div", { key: 'ff13395cea21e6345f1a36b6b543fc9e434ef965', class: { 'trigger': true, 'trigger--block': this.block }, 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: '0bb796b2062a8f0531e6bcd456e02de40486bda3', name: "trigger" }, h("svg", { key: 'fe69949a7ad3006a0e4dd131427e209e29005f69', class: "trigger_icon", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 512 512", width: 16, height: 16 }, h("path", { key: 'c938e1f301e9ebdc26ebfafb4178f5ebc919d5c0', 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: '5e3d1b7d56cac46c356ba489045512b28c5397a5', class: { popover: true, autoSize: !!this.autoSize }, role: "tooltip", tabindex: "-1", ref: (el) => (this.popoverEl = el) }, h("div", { key: 'd57c58e95adcdce5ed0611fc925ff4f202f199b8', class: "popover-tip", part: "tip", "data-popper-arrow": "" }), h("div", { key: '3e5744f01027652dec48650320d4307c948d0d98', class: "popover-content" }, h("slot", { key: '4b1876e83382f5f0922334993b72a5e94975d5bb', name: "header" }), h("slot", { key: 'a48f6889f93eb9f34b6310325a1d54d517277fad', name: "body" }), h("slot", { key: 'e59929a8bc5dc03db7d72be942e866bec4ad7b1d', name: "footer" })))));
71
71
  }
72
72
  disconnectedCallback() {
73
73
  this.destroyPopper();
@@ -178,7 +178,7 @@ export class XvToggleTip {
178
178
  return [{
179
179
  "method": "openChange",
180
180
  "name": "openChange",
181
- "bubbles": true,
181
+ "bubbles": false,
182
182
  "cancelable": true,
183
183
  "composed": true,
184
184
  "docs": {
@@ -2292,9 +2292,9 @@ var createEvent = (ref, name, flags) => {
2292
2292
  return {
2293
2293
  emit: (detail) => {
2294
2294
  return emitEvent(elm, name, {
2295
- bubbles: true,
2296
- composed: true,
2297
- cancelable: true,
2295
+ bubbles: !!(flags & 4 /* Bubbles */),
2296
+ composed: !!(flags & 2 /* Composed */),
2297
+ cancelable: !!(flags & 1 /* Cancellable */),
2298
2298
  detail
2299
2299
  });
2300
2300
  }
@@ -1,5 +1,5 @@
1
- import { g as globalScripts, b as bootstrapLazy } from './index-kDKl_Ds0.js';
2
- export { s as setNonce } from './index-kDKl_Ds0.js';
1
+ import { g as globalScripts, b as bootstrapLazy } from './index-Cv2gugMt.js';
2
+ export { s as setNonce } from './index-Cv2gugMt.js';
3
3
 
4
4
  const defineCustomElements = async (win, options) => {
5
5
  if (typeof window === 'undefined') return undefined;