wave-ui 3.15.0 → 3.16.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1012,7 +1012,7 @@ function rt(e, t, i, s, n, l) {
1012
1012
  l.type || i.icon || i.dismiss ? (o(), u(k, { key: 0 }, [
1013
1013
  l.type || i.icon ? (o(), b(a, {
1014
1014
  key: 0,
1015
- class: "w-alert__icon mr2"
1015
+ class: "w-alert__icon"
1016
1016
  }, {
1017
1017
  default: m(() => [
1018
1018
  B(C(l.type ? l.typeIcon : i.icon), 1)
@@ -1050,6 +1050,7 @@ const dt = {
1050
1050
  iconOutside: { type: Boolean },
1051
1051
  plain: { type: Boolean },
1052
1052
  dismiss: { type: Boolean },
1053
+ bold: { type: Boolean },
1053
1054
  // Types (with icon).
1054
1055
  success: { type: Boolean },
1055
1056
  info: { type: Boolean },
@@ -1062,14 +1063,12 @@ const dt = {
1062
1063
  lg: { type: Boolean },
1063
1064
  xl: { type: Boolean },
1064
1065
  // Borders.
1065
- noBorder: { type: Boolean },
1066
+ border: { type: Boolean },
1066
1067
  borderLeft: { type: Boolean },
1067
1068
  borderRight: { type: Boolean },
1068
1069
  borderTop: { type: Boolean },
1069
1070
  borderBottom: { type: Boolean },
1070
- outline: { type: Boolean },
1071
- dark: { type: Boolean },
1072
- light: { type: Boolean }
1071
+ outline: { type: Boolean }
1073
1072
  },
1074
1073
  emits: ["input", "update:modelValue", "close"],
1075
1074
  data() {
@@ -1091,9 +1090,10 @@ const dt = {
1091
1090
  return this.borderLeft || this.borderRight || this.borderTop || this.borderBottom;
1092
1091
  },
1093
1092
  classes() {
1093
+ const e = this.bgColor || this.plain && this.type, t = this.color || !this.plain && this.type || !e && "primary";
1094
1094
  return {
1095
- [`${this.bgColor || this.plain && this.type}--bg w-alert--bg`]: this.bgColor || this.plain && this.type,
1096
- [this.color || !this.plain && this.type]: this.color || !this.plain && this.type,
1095
+ [`${e}--bg w-alert--bg`]: e,
1096
+ [t]: t,
1097
1097
  [`size--${this.presetSize}`]: this.presetSize,
1098
1098
  [`w-alert--${this.type}`]: this.type,
1099
1099
  "w-alert--has-icon": this.type || this.icon || this.dismiss,
@@ -1102,15 +1102,14 @@ const dt = {
1102
1102
  "w-alert--outline": this.outline,
1103
1103
  "w-alert--tile": this.tile,
1104
1104
  "w-alert--round": this.round,
1105
- "w-alert--no-border": this.noBorder || this.plain && this.type,
1106
1105
  "w-alert--one-border": this.hasSingleBorder || this.iconOutside,
1107
- "w-alert--border-left": !this.noBorder && this.borderLeft || this.iconOutside,
1108
- "w-alert--border-right": !this.noBorder && this.borderRight,
1109
- "w-alert--border-top": !this.noBorder && this.borderTop,
1110
- "w-alert--border-bottom": !this.noBorder && this.borderBottom,
1106
+ "w-alert--border-left": this.borderLeft || this.iconOutside,
1107
+ "w-alert--border-right": this.borderRight,
1108
+ "w-alert--border-top": this.borderTop,
1109
+ "w-alert--border-bottom": this.borderBottom,
1110
+ "w-alert--border": this.border && !this.hasSingleBorder,
1111
1111
  "w-alert--shadow": this.shadow,
1112
- "w-alert--dark": this.dark,
1113
- "w-alert--light": this.light
1112
+ "w-alert--bold": this.bold
1114
1113
  };
1115
1114
  }
1116
1115
  },
@@ -1586,18 +1585,8 @@ const Rt = {
1586
1585
  }, xt = /* @__PURE__ */ v(Rt, [["render", Lt]]), Pt = {
1587
1586
  key: 0,
1588
1587
  class: "w-button__loader"
1589
- }, zt = /* @__PURE__ */ w("svg", { viewBox: "0 0 40 40" }, [
1590
- /* @__PURE__ */ w("circle", {
1591
- cx: "20",
1592
- cy: "20",
1593
- r: "18",
1594
- fill: "transparent",
1595
- stroke: "currentColor",
1596
- "stroke-width": "4",
1597
- "stroke-linecap": "round"
1598
- })
1599
- ], -1);
1600
- function Ot(e, t, i, s, n, l) {
1588
+ };
1589
+ function zt(e, t, i, s, n, l) {
1601
1590
  const a = $("w-icon");
1602
1591
  return o(), b(L(!i.disabled && i.route ? "a" : "button"), _({
1603
1592
  class: ["w-button", l.classes],
@@ -1616,7 +1605,17 @@ function Ot(e, t, i, s, n, l) {
1616
1605
  default: m(() => [
1617
1606
  i.loading ? (o(), u("div", Pt, [
1618
1607
  c(e.$slots, "loading", {}, () => [
1619
- zt
1608
+ t[0] || (t[0] = w("svg", { viewBox: "0 0 40 40" }, [
1609
+ w("circle", {
1610
+ cx: "20",
1611
+ cy: "20",
1612
+ r: "18",
1613
+ fill: "transparent",
1614
+ stroke: "currentColor",
1615
+ "stroke-width": "4",
1616
+ "stroke-linecap": "round"
1617
+ })
1618
+ ], -1))
1620
1619
  ])
1621
1620
  ])) : p("", !0)
1622
1621
  ]),
@@ -1626,7 +1625,7 @@ function Ot(e, t, i, s, n, l) {
1626
1625
  _: 3
1627
1626
  }, 16, ["type", "href", "class", "disabled", "style"]);
1628
1627
  }
1629
- const Mt = {
1628
+ const Ot = {
1630
1629
  // Fully handle the attrs and listeners manually for the case of a router link that has both a
1631
1630
  // route and onClick.
1632
1631
  inheritAttrs: !1,
@@ -1727,8 +1726,8 @@ const Mt = {
1727
1726
  };
1728
1727
  }
1729
1728
  }
1730
- }, Et = /* @__PURE__ */ v(Mt, [["render", Ot]]), At = ["innerHTML"];
1731
- function Wt(e, t, i, s, n, l) {
1729
+ }, Mt = /* @__PURE__ */ v(Ot, [["render", zt]]), Et = ["innerHTML"];
1730
+ function At(e, t, i, s, n, l) {
1732
1731
  const a = $("button-partial");
1733
1732
  return i.tooltip ? (o(), b(L("w-tooltip"), le(_({ key: 0 }, i.tooltipProps)), {
1734
1733
  activator: m(({ on: r }) => [
@@ -1740,7 +1739,7 @@ function Wt(e, t, i, s, n, l) {
1740
1739
  }, 1040)
1741
1740
  ]),
1742
1741
  default: m(() => [
1743
- w("div", { innerHTML: i.tooltip }, null, 8, At)
1742
+ w("div", { innerHTML: i.tooltip }, null, 8, Et)
1744
1743
  ]),
1745
1744
  _: 3
1746
1745
  }, 16)) : (o(), b(a, le(_({ key: 1 }, l.buttonProps)), {
@@ -1753,7 +1752,7 @@ function Wt(e, t, i, s, n, l) {
1753
1752
  _: 3
1754
1753
  }, 16));
1755
1754
  }
1756
- const Kt = {
1755
+ const Wt = {
1757
1756
  name: "w-button",
1758
1757
  inheritAttrs: !1,
1759
1758
  // The attrs are only bound to the button-partial, not the root.
@@ -1796,7 +1795,7 @@ const Kt = {
1796
1795
  lg: { type: Boolean },
1797
1796
  xl: { type: Boolean }
1798
1797
  },
1799
- components: { ButtonPartial: Et },
1798
+ components: { ButtonPartial: Mt },
1800
1799
  emits: [],
1801
1800
  computed: {
1802
1801
  buttonProps() {
@@ -1804,8 +1803,8 @@ const Kt = {
1804
1803
  return { ...i, ...this.$attrs };
1805
1804
  }
1806
1805
  }
1807
- }, Nt = /* @__PURE__ */ v(Kt, [["render", Wt]]), A = (e = {}) => (typeof e == "string" ? e = { [e]: !0 } : Array.isArray(e) && (e = { [e.join(" ")]: !0 }), e), Dt = ["innerHTML"];
1808
- function Ht(e, t, i, s, n, l) {
1806
+ }, Kt = /* @__PURE__ */ v(Wt, [["render", At]]), A = (e = {}) => (typeof e == "string" ? e = { [e]: !0 } : Array.isArray(e) && (e = { [e.join(" ")]: !0 }), e), Nt = ["innerHTML"];
1807
+ function Dt(e, t, i, s, n, l) {
1809
1808
  const a = $("w-image");
1810
1809
  return o(), u("div", {
1811
1810
  class: f(["w-card", l.classes])
@@ -1819,7 +1818,7 @@ function Ht(e, t, i, s, n, l) {
1819
1818
  key: 1,
1820
1819
  class: f(["w-card__title", { "w-card__title--has-toolbar": e.$slots.title && l.titleHasToolbar, ...l.titleClasses }]),
1821
1820
  innerHTML: i.title
1822
- }, null, 10, Dt)) : p("", !0),
1821
+ }, null, 10, Nt)) : p("", !0),
1823
1822
  i.image ? (o(), b(a, _({
1824
1823
  key: 2,
1825
1824
  class: "w-card__image",
@@ -1843,7 +1842,7 @@ function Ht(e, t, i, s, n, l) {
1843
1842
  ], 2)) : p("", !0)
1844
1843
  ], 2);
1845
1844
  }
1846
- const Ft = {
1845
+ const Ht = {
1847
1846
  name: "w-card",
1848
1847
  props: {
1849
1848
  color: { type: String },
@@ -1894,7 +1893,7 @@ const Ft = {
1894
1893
  };
1895
1894
  }
1896
1895
  }
1897
- }, jt = /* @__PURE__ */ v(Ft, [["render", Ht]]), M = {
1896
+ }, Ft = /* @__PURE__ */ v(Ht, [["render", Dt]]), M = {
1898
1897
  inject: {
1899
1898
  // Used in each form component to determine whether to use the w-form-element wrap or not.
1900
1899
  // So, if a form component is in a form, use the w-form-element wrap.
@@ -1941,12 +1940,8 @@ const Ft = {
1941
1940
  this.$refs.formEl.validate(this);
1942
1941
  }
1943
1942
  }
1944
- }, Ut = ["id", "name", "checked", "disabled", "required", "tabindex", "aria-checked"], qt = ["for"], Xt = ["for", "innerHTML"], Yt = /* @__PURE__ */ w("svg", { viewBox: "-0.5 0 12 10" }, [
1945
- /* @__PURE__ */ w("polyline", { points: "1 5 4 8 10 2" })
1946
- ], -1), Gt = [
1947
- Yt
1948
- ], Jt = ["for"], Qt = ["for", "innerHTML"];
1949
- function Zt(e, t, i, s, n, l) {
1943
+ }, jt = ["id", "name", "checked", "disabled", "required", "tabindex", "aria-checked"], Ut = ["for"], qt = ["for", "innerHTML"], Xt = ["for"], Yt = ["for", "innerHTML"];
1944
+ function Gt(e, t, i, s, n, l) {
1950
1945
  return o(), b(L(e.formRegister && !l.wCheckboxes ? "w-form-element" : "div"), _({ ref: "formEl" }, e.formRegister && { validators: e.validators, inputValue: n.isChecked, disabled: e.isDisabled, readonly: e.isReadonly }, {
1951
1946
  valid: e.valid,
1952
1947
  "onUpdate:valid": t[5] || (t[5] = (a) => e.valid = a),
@@ -1971,7 +1966,7 @@ function Zt(e, t, i, s, n, l) {
1971
1966
  onKeypress: t[3] || (t[3] = E((...a) => l.onInput && l.onInput(...a), ["enter"])),
1972
1967
  "aria-checked": n.isChecked || "false",
1973
1968
  role: "checkbox"
1974
- }, null, 40, Ut),
1969
+ }, null, 40, jt),
1975
1970
  l.hasLabel && i.labelOnLeft ? (o(), u(k, { key: 0 }, [
1976
1971
  e.$slots.default ? (o(), u("label", {
1977
1972
  key: 0,
@@ -1981,19 +1976,23 @@ function Zt(e, t, i, s, n, l) {
1981
1976
  c(e.$slots, "default", {}, () => [
1982
1977
  B(C(i.label), 1)
1983
1978
  ])
1984
- ], 10, qt)) : i.label ? (o(), u("label", {
1979
+ ], 10, Ut)) : i.label ? (o(), u("label", {
1985
1980
  key: 1,
1986
1981
  class: f(["w-checkbox__label w-form-el-shakable pr2", e.labelClasses]),
1987
1982
  for: `w-checkbox--${e._.uid}`,
1988
1983
  innerHTML: i.label
1989
- }, null, 10, Xt)) : p("", !0)
1984
+ }, null, 10, qt)) : p("", !0)
1990
1985
  ], 64)) : p("", !0),
1991
1986
  w("div", {
1992
1987
  class: f(["w-checkbox__input", this.color]),
1993
1988
  onClick: t[4] || (t[4] = (a) => {
1994
1989
  e.$refs.input.focus(), e.$refs.input.click();
1995
1990
  })
1996
- }, Gt, 2),
1991
+ }, t[7] || (t[7] = [
1992
+ w("svg", { viewBox: "-0.5 0 12 10" }, [
1993
+ w("polyline", { points: "1 5 4 8 10 2" })
1994
+ ], -1)
1995
+ ]), 2),
1997
1996
  l.hasLabel && !i.labelOnLeft ? (o(), u(k, { key: 1 }, [
1998
1997
  e.$slots.default ? (o(), u("label", {
1999
1998
  key: 0,
@@ -2003,18 +2002,18 @@ function Zt(e, t, i, s, n, l) {
2003
2002
  c(e.$slots, "default", {}, () => [
2004
2003
  B(C(i.label), 1)
2005
2004
  ])
2006
- ], 10, Jt)) : i.label ? (o(), u("label", {
2005
+ ], 10, Xt)) : i.label ? (o(), u("label", {
2007
2006
  key: 1,
2008
2007
  class: f(["w-checkbox__label w-form-el-shakable pl2", e.labelClasses]),
2009
2008
  for: `w-checkbox--${e._.uid}`,
2010
2009
  innerHTML: i.label
2011
- }, null, 10, Qt)) : p("", !0)
2010
+ }, null, 10, Yt)) : p("", !0)
2012
2011
  ], 64)) : p("", !0)
2013
2012
  ]),
2014
2013
  _: 3
2015
2014
  }, 16, ["valid", "class"]);
2016
2015
  }
2017
- const ei = {
2016
+ const Jt = {
2018
2017
  name: "w-checkbox",
2019
2018
  mixins: [M],
2020
2019
  inject: {
@@ -2081,8 +2080,8 @@ const ei = {
2081
2080
  this.isChecked = e;
2082
2081
  }
2083
2082
  }
2084
- }, ti = /* @__PURE__ */ v(ei, [["render", Zt]]), ii = ["innerHTML"];
2085
- function li(e, t, i, s, n, l) {
2083
+ }, Qt = /* @__PURE__ */ v(Jt, [["render", Gt]]), Zt = ["innerHTML"];
2084
+ function ei(e, t, i, s, n, l) {
2086
2085
  const a = $("w-checkbox");
2087
2086
  return o(), b(L(e.formRegister ? "w-form-element" : "div"), _({ ref: "formEl" }, e.formRegister && { validators: e.validators, inputValue: l.checkboxItems.some((r) => r._isChecked), disabled: e.isDisabled }, {
2088
2087
  valid: e.valid,
@@ -2115,7 +2114,7 @@ function li(e, t, i, s, n, l) {
2115
2114
  }) : r.label ? (o(), u("div", {
2116
2115
  key: 1,
2117
2116
  innerHTML: r.label
2118
- }, null, 8, ii)) : p("", !0)
2117
+ }, null, 8, Zt)) : p("", !0)
2119
2118
  ]),
2120
2119
  _: 2
2121
2120
  }, 1040, ["model-value", "onUpdate:modelValue", "name", "disabled", "readonly", "class"]))), 128))
@@ -2123,7 +2122,7 @@ function li(e, t, i, s, n, l) {
2123
2122
  _: 3
2124
2123
  }, 16, ["valid", "onReset", "column", "wrap", "class"]);
2125
2124
  }
2126
- const si = {
2125
+ const ti = {
2127
2126
  name: "w-checkboxes",
2128
2127
  mixins: [M],
2129
2128
  props: {
@@ -2186,8 +2185,8 @@ const si = {
2186
2185
  return this.items[e._index];
2187
2186
  }
2188
2187
  }
2189
- }, oi = /* @__PURE__ */ v(si, [["render", li]]);
2190
- function ai(e, t, i, s, n, l) {
2188
+ }, ii = /* @__PURE__ */ v(ti, [["render", ei]]);
2189
+ function li(e, t, i, s, n, l) {
2191
2190
  const a = $("w-button"), r = $("w-flex"), d = $("w-menu"), h = ke("focus");
2192
2191
  return o(), b(d, _({
2193
2192
  modelValue: e.showPopup,
@@ -2252,7 +2251,7 @@ function ai(e, t, i, s, n, l) {
2252
2251
  _: 3
2253
2252
  }, 16, ["modelValue"]);
2254
2253
  }
2255
- const ni = {
2254
+ const si = {
2256
2255
  name: "w-confirm",
2257
2256
  inheritAttrs: !1,
2258
2257
  // The attrs are only bound to the button, not the w-menu.
@@ -2365,8 +2364,8 @@ const ni = {
2365
2364
  this.$emit("confirm"), this.showPopup = !1;
2366
2365
  }
2367
2366
  }
2368
- }, ri = /* @__PURE__ */ v(ni, [["render", ai]]);
2369
- function di(e, t, i, s, n, l) {
2367
+ }, oi = /* @__PURE__ */ v(si, [["render", li]]);
2368
+ function ai(e, t, i, s, n, l) {
2370
2369
  return o(), u("div", {
2371
2370
  class: f(["w-date-picker", l.classes]),
2372
2371
  style: R(l.styles)
@@ -2374,7 +2373,7 @@ function di(e, t, i, s, n, l) {
2374
2373
  c(e.$slots, "default")
2375
2374
  ], 6);
2376
2375
  }
2377
- const ui = {
2376
+ const ni = {
2378
2377
  name: "w-date-picker",
2379
2378
  props: {
2380
2379
  dark: { type: Boolean },
@@ -2392,8 +2391,8 @@ const ui = {
2392
2391
  return !1;
2393
2392
  }
2394
2393
  }
2395
- }, hi = /* @__PURE__ */ v(ui, [["render", di]]);
2396
- function ci(e, t, i, s, n, l) {
2394
+ }, ri = /* @__PURE__ */ v(ni, [["render", ai]]);
2395
+ function di(e, t, i, s, n, l) {
2397
2396
  const a = $("w-card"), r = $("w-overlay");
2398
2397
  return o(), b(r, {
2399
2398
  class: f(["w-dialog", l.classes]),
@@ -2452,7 +2451,7 @@ function ci(e, t, i, s, n, l) {
2452
2451
  _: 3
2453
2452
  }, 8, ["model-value", "persistent", "persistent-no-animation", "onClick", "onClose", "bg-color", "opacity", "class"]);
2454
2453
  }
2455
- const pi = {
2454
+ const ui = {
2456
2455
  name: "w-dialog",
2457
2456
  props: {
2458
2457
  modelValue: { default: !0 },
@@ -2522,17 +2521,17 @@ const pi = {
2522
2521
  this.showWrapper = e, this.showContent = e;
2523
2522
  }
2524
2523
  }
2525
- }, fi = /* @__PURE__ */ v(pi, [["render", ci]]), mi = ["role", "aria-orientation"];
2526
- function gi(e, t, i, s, n, l) {
2524
+ }, hi = /* @__PURE__ */ v(ui, [["render", di]]), ci = ["role", "aria-orientation"];
2525
+ function pi(e, t, i, s, n, l) {
2527
2526
  return o(), u("div", {
2528
2527
  class: f(["w-divider", l.classes]),
2529
2528
  role: e.$slots.default ? null : "presentation",
2530
2529
  "aria-orientation": i.vertical ? "vertical" : "horizontal"
2531
2530
  }, [
2532
2531
  c(e.$slots, "default")
2533
- ], 10, mi);
2532
+ ], 10, ci);
2534
2533
  }
2535
- const bi = {
2534
+ const fi = {
2536
2535
  name: "w-divider",
2537
2536
  props: {
2538
2537
  vertical: { type: Boolean },
@@ -2552,8 +2551,8 @@ const bi = {
2552
2551
  };
2553
2552
  }
2554
2553
  }
2555
- }, yi = /* @__PURE__ */ v(bi, [["render", gi]]), wi = { class: "w-drawer-wrap__pushable" };
2556
- function ki(e, t, i, s, n, l) {
2554
+ }, mi = /* @__PURE__ */ v(fi, [["render", pi]]), gi = { class: "w-drawer-wrap__pushable" };
2555
+ function bi(e, t, i, s, n, l) {
2557
2556
  const a = $("w-overlay");
2558
2557
  return n.showWrapper || i.pushContent ? (o(), u("div", {
2559
2558
  key: 0,
@@ -2564,7 +2563,7 @@ function ki(e, t, i, s, n, l) {
2564
2563
  class: "w-drawer-wrap__track",
2565
2564
  style: R(l.trackStyles)
2566
2565
  }, [
2567
- w("div", wi, [
2566
+ w("div", gi, [
2568
2567
  i.noOverlay ? p("", !0) : (o(), b(a, {
2569
2568
  key: 0,
2570
2569
  modelValue: n.showDrawer,
@@ -2632,7 +2631,7 @@ function ki(e, t, i, s, n, l) {
2632
2631
  ], 64))
2633
2632
  ], 2)) : p("", !0);
2634
2633
  }
2635
- const vi = { left: "right", right: "left", top: "down", bottom: "up" }, Ci = {
2634
+ const yi = { left: "right", right: "left", top: "down", bottom: "up" }, wi = {
2636
2635
  name: "w-drawer",
2637
2636
  props: {
2638
2637
  modelValue: { default: !0 },
@@ -2726,7 +2725,7 @@ const vi = { left: "right", right: "left", top: "down", bottom: "up" }, Ci = {
2726
2725
  return !this.showWrapper;
2727
2726
  },
2728
2727
  transitionName() {
2729
- return `slide-${vi[this.position]}`;
2728
+ return `slide-${yi[this.position]}`;
2730
2729
  }
2731
2730
  },
2732
2731
  methods: {
@@ -2745,8 +2744,8 @@ const vi = { left: "right", right: "left", top: "down", bottom: "up" }, Ci = {
2745
2744
  e && (this.showWrapper = !0), this.showDrawer = e;
2746
2745
  }
2747
2746
  }
2748
- }, Si = /* @__PURE__ */ v(Ci, [["render", ki]]);
2749
- function Bi(e, t, i, s, n, l) {
2747
+ }, ki = /* @__PURE__ */ v(wi, [["render", bi]]);
2748
+ function vi(e, t, i, s, n, l) {
2750
2749
  return o(), b(L(i.tag), {
2751
2750
  class: f(["w-flex", l.classes])
2752
2751
  }, {
@@ -2756,7 +2755,7 @@ function Bi(e, t, i, s, n, l) {
2756
2755
  _: 3
2757
2756
  }, 8, ["class"]);
2758
2757
  }
2759
- const _i = {
2758
+ const Ci = {
2760
2759
  name: "w-flex",
2761
2760
  props: {
2762
2761
  tag: { type: String, default: "div" },
@@ -2803,8 +2802,8 @@ const _i = {
2803
2802
  };
2804
2803
  }
2805
2804
  }
2806
- }, $i = /* @__PURE__ */ v(_i, [["render", Bi]]);
2807
- function Ii(e, t, i, s, n, l) {
2805
+ }, Si = /* @__PURE__ */ v(Ci, [["render", vi]]);
2806
+ function Bi(e, t, i, s, n, l) {
2808
2807
  return o(), u("form", {
2809
2808
  class: f(["w-form", l.classes]),
2810
2809
  onSubmit: t[0] || (t[0] = (...a) => l.onSubmit && l.onSubmit(...a)),
@@ -2814,11 +2813,11 @@ function Ii(e, t, i, s, n, l) {
2814
2813
  c(e.$slots, "default")
2815
2814
  ], 34);
2816
2815
  }
2817
- const Vi = async (e, t) => {
2816
+ const _i = async (e, t) => {
2818
2817
  for (const i of e)
2819
2818
  if (await t(i)) return !0;
2820
2819
  return !1;
2821
- }, Ti = {
2820
+ }, $i = {
2822
2821
  name: "w-form",
2823
2822
  props: {
2824
2823
  modelValue: {},
@@ -2898,7 +2897,7 @@ const Vi = async (e, t) => {
2898
2897
  // message in the form element.
2899
2898
  async checkElementValidators(e) {
2900
2899
  let t = !1, i = "";
2901
- await Vi(e.validators, async (s) => {
2900
+ await _i(e.validators, async (s) => {
2902
2901
  const n = await (typeof s == "function" && s(e.inputValue));
2903
2902
  return t = typeof n != "string", i = t ? "" : n, !t;
2904
2903
  }), e.hasJustReset = !1, e.Validation.isValid = t, e.Validation.message = i;
@@ -2924,8 +2923,8 @@ const Vi = async (e, t) => {
2924
2923
  (this.status === !1 && e || e === null && this.status !== null) && this.reset(), this.status = e;
2925
2924
  }
2926
2925
  }
2927
- }, Li = /* @__PURE__ */ v(Ti, [["render", Ii]]);
2928
- function Ri(e, t, i, s, n, l) {
2926
+ }, Ii = /* @__PURE__ */ v($i, [["render", Bi]]);
2927
+ function Vi(e, t, i, s, n, l) {
2929
2928
  const a = $("w-transition-expand");
2930
2929
  return o(), u("div", {
2931
2930
  class: f(l.classes)
@@ -2952,7 +2951,7 @@ function Ri(e, t, i, s, n, l) {
2952
2951
  })
2953
2952
  ], 2);
2954
2953
  }
2955
- const xi = {
2954
+ const Ti = {
2956
2955
  name: "w-form-element",
2957
2956
  props: {
2958
2957
  valid: { required: !0 },
@@ -3025,8 +3024,8 @@ const xi = {
3025
3024
  beforeUnmount() {
3026
3025
  this.formUnregister && this.formUnregister(this);
3027
3026
  }
3028
- }, Pi = /* @__PURE__ */ v(xi, [["render", Ri]]);
3029
- function zi(e, t, i, s, n, l) {
3027
+ }, Li = /* @__PURE__ */ v(Ti, [["render", Vi]]);
3028
+ function Ri(e, t, i, s, n, l) {
3030
3029
  return o(), b(L(i.tag), {
3031
3030
  class: f(["w-grid", l.classes])
3032
3031
  }, {
@@ -3036,7 +3035,7 @@ function zi(e, t, i, s, n, l) {
3036
3035
  _: 3
3037
3036
  }, 8, ["class"]);
3038
3037
  }
3039
- const Oi = {
3038
+ const xi = {
3040
3039
  name: "w-grid",
3041
3040
  props: {
3042
3041
  tag: { type: String, default: "div" },
@@ -3080,8 +3079,8 @@ const Oi = {
3080
3079
  };
3081
3080
  }
3082
3081
  }
3083
- }, Mi = /* @__PURE__ */ v(Oi, [["render", zi]]);
3084
- function Ei(e, t, i, s, n, l) {
3082
+ }, Pi = /* @__PURE__ */ v(xi, [["render", Ri]]);
3083
+ function zi(e, t, i, s, n, l) {
3085
3084
  return o(), b(L(i.tag || "i"), {
3086
3085
  class: f(["w-icon", l.classes]),
3087
3086
  role: "icon",
@@ -3096,7 +3095,7 @@ function Ei(e, t, i, s, n, l) {
3096
3095
  _: 1
3097
3096
  }, 8, ["class", "style"]);
3098
3097
  }
3099
- const Ai = {
3098
+ const Oi = {
3100
3099
  name: "w-icon",
3101
3100
  props: {
3102
3101
  tag: { type: String, default: "i" },
@@ -3165,11 +3164,11 @@ const Ai = {
3165
3164
  return this.fontName = t, this.icon = i, !0;
3166
3165
  }
3167
3166
  }
3168
- }, Wi = /* @__PURE__ */ v(Ai, [["render", Ei]]), Ki = {
3167
+ }, Mi = /* @__PURE__ */ v(Oi, [["render", zi]]), Ei = {
3169
3168
  key: 0,
3170
3169
  class: "w-image__loader"
3171
- }, Ni = ["innerHTML"];
3172
- function Di(e, t, i, s, n, l) {
3170
+ }, Ai = ["innerHTML"];
3171
+ function Wi(e, t, i, s, n, l) {
3173
3172
  const a = $("w-progress");
3174
3173
  return o(), b(L(l.wrapperTag), {
3175
3174
  class: f(["w-image", l.wrapperClasses]),
@@ -3190,7 +3189,7 @@ function Di(e, t, i, s, n, l) {
3190
3189
  ]),
3191
3190
  _: 1
3192
3191
  }, 8, ["name"]),
3193
- !i.noSpinner && n.loading ? (o(), u("span", Ki, [
3192
+ !i.noSpinner && n.loading ? (o(), u("span", Ei, [
3194
3193
  e.$slots.loading ? c(e.$slots, "loading", { key: 0 }) : (o(), b(a, _({
3195
3194
  key: 1,
3196
3195
  circle: "",
@@ -3215,12 +3214,12 @@ function Di(e, t, i, s, n, l) {
3215
3214
  key: 3,
3216
3215
  class: f(["w-image__caption caption", i.captionClass]),
3217
3216
  innerHTML: i.caption
3218
- }, null, 10, Ni)) : p("", !0)
3217
+ }, null, 10, Ai)) : p("", !0)
3219
3218
  ]),
3220
3219
  _: 3
3221
3220
  }, 8, ["class", "style"]);
3222
3221
  }
3223
- const Hi = {
3222
+ const Ki = {
3224
3223
  name: "w-image",
3225
3224
  props: {
3226
3225
  tag: { type: String, default: "span" },
@@ -3329,11 +3328,11 @@ const Hi = {
3329
3328
  this.loadImage();
3330
3329
  }
3331
3330
  }
3332
- }, Fi = /* @__PURE__ */ v(Hi, [["render", Di]]), ji = ["name"], Ui = ["for"], qi = ["id", "type", "name", "placeholder", "step", "min", "max", "minlength", "maxlength", "readonly", "aria-readonly", "disabled", "required", "tabindex"], Xi = ["id", "name", "multiple", "disabled", "data-progress"], Yi = {
3331
+ }, Ni = /* @__PURE__ */ v(Ki, [["render", Wi]]), Di = ["name"], Hi = ["for"], Fi = ["id", "type", "name", "placeholder", "step", "min", "max", "minlength", "maxlength", "readonly", "aria-readonly", "disabled", "required", "tabindex"], ji = ["id", "name", "multiple", "disabled", "data-progress"], Ui = {
3333
3332
  class: "w-input__no-file",
3334
3333
  key: "no-file"
3335
- }, Gi = ["for"], Ji = ["src"], Qi = ["for"];
3336
- function Zi(e, t, i, s, n, l) {
3334
+ }, qi = ["for"], Xi = ["src"], Yi = ["for"];
3335
+ function Gi(e, t, i, s, n, l) {
3337
3336
  const a = $("w-icon"), r = $("w-progress");
3338
3337
  return o(), b(L(e.formRegister ? "w-form-element" : "div"), _({ ref: "formEl" }, e.formRegister && { validators: e.validators, inputValue: n.inputValue, disabled: e.isDisabled, readonly: e.isReadonly, isFocused: n.isFocused }, {
3339
3338
  valid: e.valid,
@@ -3351,7 +3350,7 @@ function Zi(e, t, i, s, n, l) {
3351
3350
  type: "hidden",
3352
3351
  name: e.name || null,
3353
3352
  "onUpdate:modelValue": t[0] || (t[0] = (d) => n.inputValue = d)
3354
- }, null, 8, ji)), [
3353
+ }, null, 8, Di)), [
3355
3354
  [ve, n.inputValue]
3356
3355
  ]) : (o(), u(k, { key: 1 }, [
3357
3356
  i.labelPosition === "left" ? (o(), u(k, { key: 0 }, [
@@ -3363,7 +3362,7 @@ function Zi(e, t, i, s, n, l) {
3363
3362
  c(e.$slots, "default", {}, () => [
3364
3363
  B(C(i.label), 1)
3365
3364
  ])
3366
- ], 10, Ui)) : p("", !0)
3365
+ ], 10, Hi)) : p("", !0)
3367
3366
  ], 64)) : p("", !0),
3368
3367
  w("div", {
3369
3368
  class: f(["w-input__input-wrap", l.inputWrapClasses])
@@ -3406,7 +3405,7 @@ function Zi(e, t, i, s, n, l) {
3406
3405
  disabled: e.isDisabled || null,
3407
3406
  required: e.required || null,
3408
3407
  tabindex: e.tabindex || null
3409
- }, l.attrs), null, 16, qi)), [
3408
+ }, l.attrs), null, 16, Fi)), [
3410
3409
  [Re, n.inputValue]
3411
3410
  ]) : (o(), u(k, { key: 1 }, [
3412
3411
  w("input", _({
@@ -3422,7 +3421,7 @@ function Zi(e, t, i, s, n, l) {
3422
3421
  disabled: e.isDisabled || null,
3423
3422
  "data-progress": l.overallFilesProgress
3424
3423
  /* Needed to emit the overallProgress. */
3425
- }), null, 16, Xi),
3424
+ }), null, 16, ji),
3426
3425
  T(ae, {
3427
3426
  class: "w-input__input w-input__input--file",
3428
3427
  tag: "label",
@@ -3430,7 +3429,7 @@ function Zi(e, t, i, s, n, l) {
3430
3429
  for: `w-input--${e._.uid}`
3431
3430
  }, {
3432
3431
  default: m(() => [
3433
- !n.inputFiles.length && n.isFocused ? (o(), u("span", Yi, [
3432
+ !n.inputFiles.length && n.isFocused ? (o(), u("span", Ui, [
3434
3433
  c(e.$slots, "no-file", {}, () => [
3435
3434
  e.$slots["no-file"] === void 0 ? (o(), u(k, { key: 0 }, [
3436
3435
  B("No file")
@@ -3499,12 +3498,12 @@ function Zi(e, t, i, s, n, l) {
3499
3498
  key: `${h}b`,
3500
3499
  src: d.preview,
3501
3500
  alt: ""
3502
- }, null, 8, Ji)) : (o(), u("i", {
3501
+ }, null, 8, Xi)) : (o(), u("i", {
3503
3502
  class: f(["w-icon w-input__file-preview primary size--md", i.preview && typeof i.preview == "string" ? i.preview : "wi-file"]),
3504
3503
  key: `${h}c`
3505
3504
  }, null, 2))
3506
3505
  ], 64))), 256))
3507
- ], 8, Gi)) : p("", !0),
3506
+ ], 8, qi)) : p("", !0),
3508
3507
  i.labelPosition === "right" ? (o(), u(k, { key: 2 }, [
3509
3508
  e.$slots.default || i.label ? (o(), u("label", {
3510
3509
  key: 0,
@@ -3514,14 +3513,14 @@ function Zi(e, t, i, s, n, l) {
3514
3513
  c(e.$slots, "default", {}, () => [
3515
3514
  B(C(i.label), 1)
3516
3515
  ])
3517
- ], 10, Qi)) : p("", !0)
3516
+ ], 10, Yi)) : p("", !0)
3518
3517
  ], 64)) : p("", !0)
3519
3518
  ], 64))
3520
3519
  ]),
3521
3520
  _: 3
3522
3521
  }, 16, ["valid", "wrap", "class", "style"]);
3523
3522
  }
3524
- const el = {
3523
+ const Ji = {
3525
3524
  name: "w-input",
3526
3525
  mixins: [M],
3527
3526
  inheritAttrs: !1,
@@ -3706,8 +3705,8 @@ const el = {
3706
3705
  this.inputValue = e, !e && e !== 0 && (this.isAutofilled = !1, this.inputFiles = []);
3707
3706
  }
3708
3707
  }
3709
- }, tl = /* @__PURE__ */ v(el, [["render", Zi]]);
3710
- function il(e, t, i, s, n, l) {
3708
+ }, Qi = /* @__PURE__ */ v(Ji, [["render", Gi]]);
3709
+ function Zi(e, t, i, s, n, l) {
3711
3710
  const a = $("w-icon"), r = $("w-list", !0);
3712
3711
  return o(), u("ul", {
3713
3712
  class: f(["w-list", l.classes])
@@ -3794,7 +3793,7 @@ function il(e, t, i, s, n, l) {
3794
3793
  ], 2))), 128))
3795
3794
  ], 2);
3796
3795
  }
3797
- const ll = {
3796
+ const el = {
3798
3797
  name: "w-list",
3799
3798
  props: {
3800
3799
  items: { type: [Array, Number], required: !0 },
@@ -3988,7 +3987,7 @@ const ll = {
3988
3987
  }
3989
3988
  }
3990
3989
  }
3991
- }, sl = /* @__PURE__ */ v(ll, [["render", il]]), Be = {
3990
+ }, tl = /* @__PURE__ */ v(el, [["render", Zi]]), Be = {
3992
3991
  props: {
3993
3992
  // Position.
3994
3993
  appendTo: { type: [String, Boolean, Object] },
@@ -4165,7 +4164,7 @@ const ll = {
4165
4164
  }
4166
4165
  }
4167
4166
  };
4168
- function ol(e, t, i, s, n, l) {
4167
+ function il(e, t, i, s, n, l) {
4169
4168
  const a = $("w-card"), r = $("w-overlay");
4170
4169
  return o(), u(k, null, [
4171
4170
  c(e.$slots, "activator", { on: l.activatorEventHandlers }),
@@ -4237,7 +4236,7 @@ function ol(e, t, i, s, n, l) {
4237
4236
  }), null, 16, ["model-value", "persistent", "class", "z-index"])) : p("", !0)
4238
4237
  ], 64);
4239
4238
  }
4240
- const al = {
4239
+ const ll = {
4241
4240
  name: "w-menu",
4242
4241
  mixins: [Be],
4243
4242
  inheritAttrs: !1,
@@ -4410,8 +4409,8 @@ const al = {
4410
4409
  }
4411
4410
  }
4412
4411
  // watch, mounted & beforeDestroy hooks are set in the detachable.js mixin.
4413
- }, nl = /* @__PURE__ */ v(al, [["render", ol]]);
4414
- function rl(e, t, i, s, n, l) {
4412
+ }, sl = /* @__PURE__ */ v(ll, [["render", il]]);
4413
+ function ol(e, t, i, s, n, l) {
4415
4414
  const a = $("w-alert");
4416
4415
  return o(), b(P, {
4417
4416
  name: l.transitionName,
@@ -4439,7 +4438,7 @@ function rl(e, t, i, s, n, l) {
4439
4438
  _: 3
4440
4439
  }, 8, ["name"]);
4441
4440
  }
4442
- const dl = {
4441
+ const al = {
4443
4442
  name: "w-notification",
4444
4443
  props: {
4445
4444
  // Notification props.
@@ -4562,8 +4561,8 @@ const dl = {
4562
4561
  clearTimeout(this.timeoutId), this.show = e, e && this.timeoutVal && this.countdown();
4563
4562
  }
4564
4563
  }
4565
- }, ul = /* @__PURE__ */ v(dl, [["render", rl]]);
4566
- function hl(e, t, i, s, n, l) {
4564
+ }, nl = /* @__PURE__ */ v(al, [["render", ol]]);
4565
+ function rl(e, t, i, s, n, l) {
4567
4566
  const a = ke("focus");
4568
4567
  return o(), b(P, {
4569
4568
  name: "fade",
@@ -4589,7 +4588,7 @@ function hl(e, t, i, s, n, l) {
4589
4588
  _: 3
4590
4589
  }, 8, ["onAfterLeave"]);
4591
4590
  }
4592
- const cl = {
4591
+ const dl = {
4593
4592
  name: "w-overlay",
4594
4593
  props: {
4595
4594
  modelValue: {},
@@ -4647,17 +4646,17 @@ const cl = {
4647
4646
  e && (this.showOverlay = !0);
4648
4647
  }
4649
4648
  }
4650
- }, pl = /* @__PURE__ */ v(cl, [["render", hl]]), fl = { class: "w-parallax" };
4651
- function ml(e, t, i, s, n, l) {
4652
- return o(), u("div", fl);
4649
+ }, ul = /* @__PURE__ */ v(dl, [["render", rl]]), hl = { class: "w-parallax" };
4650
+ function cl(e, t, i, s, n, l) {
4651
+ return o(), u("div", hl);
4653
4652
  }
4654
- const gl = {
4653
+ const pl = {
4655
4654
  name: "w-parallax",
4656
4655
  props: {},
4657
4656
  emits: [],
4658
4657
  data: () => ({})
4659
- }, bl = /* @__PURE__ */ v(gl, [["render", ml]]), yl = ["viewBox"], wl = ["cx", "cy", "r", "stroke-dasharray", "stroke-width"], kl = ["cx", "cy", "r", "stroke-width", "stroke-linecap", "stroke-dasharray"];
4660
- function vl(e, t, i, s, n, l) {
4658
+ }, fl = /* @__PURE__ */ v(pl, [["render", cl]]), ml = ["viewBox"], gl = ["cx", "cy", "r", "stroke-dasharray", "stroke-width"], bl = ["cx", "cy", "r", "stroke-width", "stroke-linecap", "stroke-dasharray"];
4659
+ function yl(e, t, i, s, n, l) {
4661
4660
  return o(), u("div", {
4662
4661
  class: f(["w-progress", l.classes]),
4663
4662
  style: R(l.styles)
@@ -4675,7 +4674,7 @@ function vl(e, t, i, s, n, l) {
4675
4674
  fill: "transparent",
4676
4675
  "stroke-dasharray": e.circleCircumference,
4677
4676
  "stroke-width": i.stroke
4678
- }, null, 10, wl)) : p("", !0),
4677
+ }, null, 10, gl)) : p("", !0),
4679
4678
  w("circle", {
4680
4679
  class: "w-progress__progress",
4681
4680
  cx: l.circleCenter,
@@ -4686,8 +4685,8 @@ function vl(e, t, i, s, n, l) {
4686
4685
  "stroke-linecap": i.roundCap && "round",
4687
4686
  "stroke-dasharray": e.circleCircumference,
4688
4687
  style: R(`stroke-dashoffset: ${(1 - l.progressValue / 100) * e.circleCircumference}`)
4689
- }, null, 12, kl)
4690
- ], 8, yl)) : (o(), u("div", {
4688
+ }, null, 12, bl)
4689
+ ], 8, ml)) : (o(), u("div", {
4691
4690
  key: 0,
4692
4691
  class: f(["w-progress__progress", { full: l.progressValue === 100 }]),
4693
4692
  style: R(`width: ${l.progressValue}%`)
@@ -4702,7 +4701,7 @@ function vl(e, t, i, s, n, l) {
4702
4701
  ], 2)) : p("", !0)
4703
4702
  ], 6);
4704
4703
  }
4705
- const Q = 40, Cl = Q / 2, Sl = Math.round(Q * 3.14 * 100) / 100, Bl = {
4704
+ const Q = 40, wl = Q / 2, kl = Math.round(Q * 3.14 * 100) / 100, vl = {
4706
4705
  name: "w-progress",
4707
4706
  props: {
4708
4707
  modelValue: { type: [Number, String, Boolean], default: -1 },
@@ -4730,8 +4729,8 @@ const Q = 40, Cl = Q / 2, Sl = Math.round(Q * 3.14 * 100) / 100, Bl = {
4730
4729
  emits: [],
4731
4730
  data: () => ({
4732
4731
  circleSize: Q,
4733
- circleRadius: Cl,
4734
- circleCircumference: Sl
4732
+ circleRadius: wl,
4733
+ circleCircumference: kl
4735
4734
  }),
4736
4735
  computed: {
4737
4736
  progressValue() {
@@ -4771,8 +4770,8 @@ const Q = 40, Cl = Q / 2, Sl = Math.round(Q * 3.14 * 100) / 100, Bl = {
4771
4770
  };
4772
4771
  }
4773
4772
  }
4774
- }, _l = /* @__PURE__ */ v(Bl, [["render", vl]]), $l = ["id", "name", "checked", "disabled", "required", "tabindex", "aria-checked"], Il = ["for"], Vl = ["for", "innerHTML"], Tl = ["for"], Ll = ["for", "innerHTML"];
4775
- function Rl(e, t, i, s, n, l) {
4773
+ }, Cl = /* @__PURE__ */ v(vl, [["render", yl]]), Sl = ["id", "name", "checked", "disabled", "required", "tabindex", "aria-checked"], Bl = ["for"], _l = ["for", "innerHTML"], $l = ["for"], Il = ["for", "innerHTML"];
4774
+ function Vl(e, t, i, s, n, l) {
4776
4775
  return o(), b(L(e.formRegister && !l.wRadios ? "w-form-element" : "div"), _({ ref: "formEl" }, e.formRegister && { validators: e.validators, inputValue: e.inputValue, disabled: e.isDisabled, readonly: e.isReadonly }, {
4777
4776
  valid: e.valid,
4778
4777
  "onUpdate:valid": t[3] || (t[3] = (a) => e.valid = a),
@@ -4795,7 +4794,7 @@ function Rl(e, t, i, s, n, l) {
4795
4794
  onChange: t[1] || (t[1] = (a) => l.onInput(a)),
4796
4795
  "aria-checked": e.inputValue || "false",
4797
4796
  role: "radio"
4798
- }, null, 40, $l),
4797
+ }, null, 40, Sl),
4799
4798
  l.hasLabel && i.labelOnLeft ? (o(), u(k, { key: 0 }, [
4800
4799
  e.$slots.default ? (o(), u("label", {
4801
4800
  key: 0,
@@ -4805,12 +4804,12 @@ function Rl(e, t, i, s, n, l) {
4805
4804
  c(e.$slots, "default", {}, () => [
4806
4805
  B(C(i.label), 1)
4807
4806
  ])
4808
- ], 10, Il)) : i.label ? (o(), u("label", {
4807
+ ], 10, Bl)) : i.label ? (o(), u("label", {
4809
4808
  key: 1,
4810
4809
  class: f(["w-radio__label w-form-el-shakable pr2", e.labelClasses]),
4811
4810
  for: `w-radio--${e._.uid}`,
4812
4811
  innerHTML: i.label
4813
- }, null, 10, Vl)) : p("", !0)
4812
+ }, null, 10, _l)) : p("", !0)
4814
4813
  ], 64)) : p("", !0),
4815
4814
  w("div", {
4816
4815
  class: f(["w-radio__input", this.color]),
@@ -4827,18 +4826,18 @@ function Rl(e, t, i, s, n, l) {
4827
4826
  c(e.$slots, "default", {}, () => [
4828
4827
  B(C(i.label), 1)
4829
4828
  ])
4830
- ], 10, Tl)) : i.label ? (o(), u("label", {
4829
+ ], 10, $l)) : i.label ? (o(), u("label", {
4831
4830
  key: 1,
4832
4831
  class: f(["w-radio__label w-form-el-shakable pl2", e.labelClasses]),
4833
4832
  for: `w-radio--${e._.uid}`,
4834
4833
  innerHTML: i.label
4835
- }, null, 10, Ll)) : p("", !0)
4834
+ }, null, 10, Il)) : p("", !0)
4836
4835
  ], 64)) : p("", !0)
4837
4836
  ]),
4838
4837
  _: 3
4839
4838
  }, 16, ["valid", "class"]);
4840
4839
  }
4841
- const xl = {
4840
+ const Tl = {
4842
4841
  name: "w-radio",
4843
4842
  mixins: [M],
4844
4843
  inject: { wRadios: { default: null } },
@@ -4903,8 +4902,8 @@ const xl = {
4903
4902
  this.toggleFromOutside();
4904
4903
  }
4905
4904
  }
4906
- }, Pl = /* @__PURE__ */ v(xl, [["render", Rl]]), zl = ["innerHTML"];
4907
- function Ol(e, t, i, s, n, l) {
4905
+ }, Ll = /* @__PURE__ */ v(Tl, [["render", Vl]]), Rl = ["innerHTML"];
4906
+ function xl(e, t, i, s, n, l) {
4908
4907
  const a = $("w-radio");
4909
4908
  return o(), b(L(e.formRegister ? "w-form-element" : "div"), _({ ref: "formEl" }, e.formRegister && { validators: e.validators, inputValue: e.inputValue, disabled: e.isDisabled }, {
4910
4909
  valid: e.valid,
@@ -4939,7 +4938,7 @@ function Ol(e, t, i, s, n, l) {
4939
4938
  }) : r.label ? (o(), u("div", {
4940
4939
  key: 1,
4941
4940
  innerHTML: r.label
4942
- }, null, 8, zl)) : p("", !0)
4941
+ }, null, 8, Rl)) : p("", !0)
4943
4942
  ]),
4944
4943
  _: 2
4945
4944
  }, 1040, ["model-value", "onUpdate:modelValue", "name", "disabled", "readonly", "class"]))), 128))
@@ -4947,7 +4946,7 @@ function Ol(e, t, i, s, n, l) {
4947
4946
  _: 3
4948
4947
  }, 16, ["valid", "column", "wrap", "class"]);
4949
4948
  }
4950
- const Ml = {
4949
+ const Pl = {
4951
4950
  name: "w-radios",
4952
4951
  mixins: [M],
4953
4952
  props: {
@@ -5000,8 +4999,8 @@ const Ml = {
5000
4999
  return this.items[e._index];
5001
5000
  }
5002
5001
  }
5003
- }, El = /* @__PURE__ */ v(Ml, [["render", Ol]]), Al = ["id", "name", "value"], Wl = ["disabled", "onMouseenter", "onClick", "tabindex"];
5004
- function Kl(e, t, i, s, n, l) {
5002
+ }, zl = /* @__PURE__ */ v(Pl, [["render", xl]]), Ol = ["id", "name", "value"], Ml = ["disabled", "onMouseenter", "onClick", "tabindex"];
5003
+ function El(e, t, i, s, n, l) {
5005
5004
  return o(), b(L(e.formRegister ? "w-form-element" : "div"), _({ ref: "formEl" }, e.formRegister && { validators: e.validators, inputValue: n.rating, disabled: e.isDisabled, readonly: e.isReadonly }, {
5006
5005
  valid: e.valid,
5007
5006
  "onUpdate:valid": t[4] || (t[4] = (a) => e.valid = a),
@@ -5016,7 +5015,7 @@ function Kl(e, t, i, s, n, l) {
5016
5015
  name: e.inputName,
5017
5016
  type: "hidden",
5018
5017
  value: n.rating
5019
- }, null, 8, Al),
5018
+ }, null, 8, Ol),
5020
5019
  (o(!0), u(k, null, x(i.max, (a) => (o(), u(k, { key: a }, [
5021
5020
  e.$slots.item ? c(e.$slots, "item", {
5022
5021
  key: 0,
@@ -5041,13 +5040,13 @@ function Kl(e, t, i, s, n, l) {
5041
5040
  "aria-hidden": "true",
5042
5041
  style: R(l.halfStarStyle)
5043
5042
  }, null, 6)) : p("", !0)
5044
- ], 42, Wl)
5043
+ ], 42, Ml)
5045
5044
  ], 64))), 128))
5046
5045
  ]),
5047
5046
  _: 3
5048
5047
  }, 16, ["valid", "class"]);
5049
5048
  }
5050
- const Nl = {
5049
+ const Al = {
5051
5050
  name: "w-rating",
5052
5051
  mixins: [M],
5053
5052
  props: {
@@ -5141,8 +5140,8 @@ const Nl = {
5141
5140
  this.rating = parseFloat(e);
5142
5141
  }
5143
5142
  }
5144
- }, Dl = /* @__PURE__ */ v(Nl, [["render", Kl]]);
5145
- function Hl(e, t, i, s, n, l) {
5143
+ }, Wl = /* @__PURE__ */ v(Al, [["render", El]]);
5144
+ function Kl(e, t, i, s, n, l) {
5146
5145
  return o(), u(k, null, [
5147
5146
  w("div", _({
5148
5147
  class: ["w-scrollable", l.scrollableClasses],
@@ -5166,7 +5165,7 @@ function Hl(e, t, i, s, n, l) {
5166
5165
  ], 34)
5167
5166
  ], 64);
5168
5167
  }
5169
- const Fl = {
5168
+ const Nl = {
5170
5169
  h: {
5171
5170
  direction: "horizontal",
5172
5171
  topOrLeft: "left",
@@ -5189,7 +5188,7 @@ const Fl = {
5189
5188
  deltaXorY: "deltaY",
5190
5189
  scrollTopOrLeft: "scrollTop"
5191
5190
  }
5192
- }, jl = {
5191
+ }, Dl = {
5193
5192
  name: "w-scrollable",
5194
5193
  props: {
5195
5194
  color: { type: String, default: "primary" },
@@ -5213,7 +5212,7 @@ const Fl = {
5213
5212
  return this.mounted ? (console.log("💂‍♂️", (e = this.$refs.scrollable) == null ? void 0 : e.scrollWidth, (t = this.$refs.scrollable) == null ? void 0 : t.offsetWidth), this.width && !this.height || ((i = this.$refs.scrollable) == null ? void 0 : i.scrollWidth) > ((s = this.$refs.scrollable) == null ? void 0 : s.offsetWidth)) : !1;
5214
5213
  },
5215
5214
  m() {
5216
- return Fl[this.isHorizontal ? "h" : "v"];
5215
+ return Nl[this.isHorizontal ? "h" : "v"];
5217
5216
  },
5218
5217
  scrollableClasses() {
5219
5218
  return {
@@ -5282,11 +5281,11 @@ const Fl = {
5282
5281
  const { top: e, left: t } = this.$refs.scrollable.getBoundingClientRect();
5283
5282
  this.scrollable.top = e, this.scrollable.left = t, this.$el.parentNode.style.position = "relative", this.$el.parentNode.style.padding = 0, window.addEventListener("resize", this.onResize);
5284
5283
  }
5285
- }, Ul = /* @__PURE__ */ v(jl, [["render", Hl]]), ql = ["aria-expanded", "aria-owns", "aria-activedescendant"], Xl = {
5284
+ }, Hl = /* @__PURE__ */ v(Dl, [["render", Kl]]), Fl = ["aria-expanded", "aria-owns", "aria-activedescendant"], jl = {
5286
5285
  key: 0,
5287
5286
  class: "w-select__selection-slot"
5288
- }, Yl = ["innerHTML"], Gl = ["value", "name"];
5289
- function Jl(e, t, i, s, n, l) {
5287
+ }, Ul = ["innerHTML"], ql = ["value", "name"];
5288
+ function Xl(e, t, i, s, n, l) {
5290
5289
  const a = $("w-icon"), r = $("w-list"), d = $("w-menu");
5291
5290
  return o(), b(L(e.formRegister ? "w-form-element" : "div"), _({ ref: "formEl" }, e.formRegister && { validators: e.validators, inputValue: l.selectionString, disabled: e.isDisabled, readonly: e.isReadonly, isFocused: e.isFocused }, {
5292
5291
  valid: e.valid,
@@ -5341,7 +5340,7 @@ function Jl(e, t, i, s, n, l) {
5341
5340
  _: 1
5342
5341
  })) : p("", !0)
5343
5342
  ]),
5344
- e.$slots.selection ? (o(), u("div", Xl, [
5343
+ e.$slots.selection ? (o(), u("div", jl, [
5345
5344
  c(e.$slots, "selection", {
5346
5345
  item: i.multiple ? e.inputValue : e.inputValue[0]
5347
5346
  })
@@ -5352,13 +5351,13 @@ function Jl(e, t, i, s, n, l) {
5352
5351
  onFocus: t[2] || (t[2] = (h) => !e.isDisabled && !e.isReadonly && l.onFocus(h)),
5353
5352
  onBlur: t[3] || (t[3] = (...h) => l.onBlur && l.onBlur(...h)),
5354
5353
  onKeydown: t[4] || (t[4] = (h) => !e.isDisabled && !e.isReadonly && l.onKeydown(h))
5355
- }, l.selectionAttributes, { innerHTML: l.selectionHtml }), null, 16, Yl),
5354
+ }, l.selectionAttributes, { innerHTML: l.selectionHtml }), null, 16, Ul),
5356
5355
  (o(!0), u(k, null, x(e.inputValue.length ? e.inputValue : [{}], (h, y) => (o(), u("input", {
5357
5356
  key: y,
5358
5357
  type: "hidden",
5359
5358
  value: h.value === void 0 ? "" : h.value.toString(),
5360
5359
  name: e.inputName + (i.multiple ? "[]" : "")
5361
- }, null, 8, Gl))), 128)),
5360
+ }, null, 8, ql))), 128)),
5362
5361
  i.labelPosition === "inside" && l.showLabelInside ? (o(), u(k, { key: 1 }, [
5363
5362
  e.$slots.default || i.label ? (o(), u("label", {
5364
5363
  key: 0,
@@ -5382,7 +5381,7 @@ function Jl(e, t, i, s, n, l) {
5382
5381
  _: 1
5383
5382
  })) : p("", !0)
5384
5383
  ])
5385
- ], 10, ql)
5384
+ ], 10, Fl)
5386
5385
  ]),
5387
5386
  default: m(() => [
5388
5387
  T(r, {
@@ -5444,7 +5443,7 @@ function Jl(e, t, i, s, n, l) {
5444
5443
  _: 3
5445
5444
  }, 16, ["valid", "onReset", "wrap", "class"]);
5446
5445
  }
5447
- const Ql = {
5446
+ const Yl = {
5448
5447
  name: "w-select",
5449
5448
  mixins: [M],
5450
5449
  props: {
@@ -5674,11 +5673,11 @@ const Ql = {
5674
5673
  this.inputValue = this.checkSelection(this.modelValue);
5675
5674
  }
5676
5675
  }
5677
- }, Zl = /* @__PURE__ */ v(Ql, [["render", Jl]]), es = ["for"], ts = ["for", "innerHTML"], is = { class: "w-slider__track-wrap" }, ls = ["aria-valuemin", "aria-valuemax", "aria-valuenow", "aria-readonly"], ss = ["id", "name", "model-value", "disabled", "readonly", "aria-readonly", "tabindex"], os = ["for"], as = { key: 0 }, ns = {
5676
+ }, Gl = /* @__PURE__ */ v(Yl, [["render", Xl]]), Jl = ["for"], Ql = ["for", "innerHTML"], Zl = { class: "w-slider__track-wrap" }, es = ["aria-valuemin", "aria-valuemax", "aria-valuenow", "aria-readonly"], ts = ["id", "name", "model-value", "disabled", "readonly", "aria-readonly", "tabindex"], is = ["for"], ls = { key: 0 }, ss = {
5678
5677
  key: 0,
5679
5678
  class: "w-slider__step-labels"
5680
- }, rs = ["onClick"], ds = ["for"], us = ["for", "innerHTML"];
5681
- function hs(e, t, i, s, n, l) {
5679
+ }, os = ["onClick"], as = ["for"], ns = ["for", "innerHTML"];
5680
+ function rs(e, t, i, s, n, l) {
5682
5681
  return o(), b(L(e.formRegister ? "w-form-element" : "div"), _({ ref: "formEl" }, e.formRegister && { validators: e.validators, inputValue: e.rangeValueScaled, disabled: e.isDisabled, readonly: e.isReadonly }, {
5683
5682
  valid: e.valid,
5684
5683
  "onUpdate:valid": t[8] || (t[8] = (a) => e.valid = a),
@@ -5695,13 +5694,13 @@ function hs(e, t, i, s, n, l) {
5695
5694
  for: `button--${e._.uid}`
5696
5695
  }, [
5697
5696
  c(e.$slots, "label-left")
5698
- ], 10, es)) : i.labelLeft ? (o(), u("label", {
5697
+ ], 10, Jl)) : i.labelLeft ? (o(), u("label", {
5699
5698
  key: 1,
5700
5699
  class: f(["w-slider__label w-slider__label--left w-form-el-shakable", e.labelClasses]),
5701
5700
  for: `button--${e._.uid}`,
5702
5701
  innerHTML: i.labelLeft
5703
- }, null, 10, ts)) : p("", !0),
5704
- w("div", is, [
5702
+ }, null, 10, Ql)) : p("", !0),
5703
+ w("div", Zl, [
5705
5704
  w("div", {
5706
5705
  class: f(["w-slider__track", l.trackClasses]),
5707
5706
  ref: "track",
@@ -5740,13 +5739,13 @@ function hs(e, t, i, s, n, l) {
5740
5739
  onFocus: t[2] || (t[2] = (a) => e.$emit("focus", a)),
5741
5740
  onClick: t[3] || (t[3] = O(() => {
5742
5741
  }, ["prevent"]))
5743
- }, null, 42, ss),
5742
+ }, null, 42, ts),
5744
5743
  i.thumbLabel ? (o(), u("label", {
5745
5744
  key: 0,
5746
5745
  class: f(["w-slider__thumb-label", l.thumbClasses]),
5747
5746
  for: `button--${e._.uid}`
5748
5747
  }, [
5749
- i.thumbLabel === "droplet" ? (o(), u("div", as, [
5748
+ i.thumbLabel === "droplet" ? (o(), u("div", ls, [
5750
5749
  c(e.$slots, "label", { value: e.rangeValueScaled }, () => [
5751
5750
  B(C(~~e.rangeValueScaled), 1)
5752
5751
  ])
@@ -5756,10 +5755,10 @@ function hs(e, t, i, s, n, l) {
5756
5755
  }, () => [
5757
5756
  B(C(~~e.rangeValueScaled), 1)
5758
5757
  ])
5759
- ], 10, os)) : p("", !0)
5758
+ ], 10, is)) : p("", !0)
5760
5759
  ], 4)
5761
- ], 42, ls),
5762
- i.stepLabels && i.step ? (o(), u("div", ns, [
5760
+ ], 42, es),
5761
+ i.stepLabels && i.step ? (o(), u("div", ss, [
5763
5762
  w("div", {
5764
5763
  class: "w-slider__step-label",
5765
5764
  onClick: t[6] || (t[6] = (a) => l.onStepLabelClick(0))
@@ -5769,7 +5768,7 @@ function hs(e, t, i, s, n, l) {
5769
5768
  key: a,
5770
5769
  onClick: (r) => l.onStepLabelClick(a * (100 / l.numberOfSteps)),
5771
5770
  style: R(`left: ${a * (100 / l.numberOfSteps)}%`)
5772
- }, C(l.percentToScaled(a * (100 / l.numberOfSteps))), 13, rs))), 128)),
5771
+ }, C(l.percentToScaled(a * (100 / l.numberOfSteps))), 13, os))), 128)),
5773
5772
  ~~l.numberOfSteps !== l.numberOfSteps ? (o(), u("div", {
5774
5773
  key: 0,
5775
5774
  class: "w-slider__step-label",
@@ -5784,17 +5783,17 @@ function hs(e, t, i, s, n, l) {
5784
5783
  for: `button--${e._.uid}`
5785
5784
  }, [
5786
5785
  c(e.$slots, "label-right")
5787
- ], 10, ds)) : i.labelRight ? (o(), u("label", {
5786
+ ], 10, as)) : i.labelRight ? (o(), u("label", {
5788
5787
  key: 3,
5789
5788
  class: f(["w-slider__label w-slider__label--right w-form-el-shakable", e.labelClasses]),
5790
5789
  for: `button--${e._.uid}`,
5791
5790
  innerHTML: i.labelRight
5792
- }, null, 10, us)) : p("", !0)
5791
+ }, null, 10, ns)) : p("", !0)
5793
5792
  ]),
5794
5793
  _: 3
5795
5794
  }, 16, ["valid", "wrap", "class"]);
5796
5795
  }
5797
- const cs = {
5796
+ const ds = {
5798
5797
  name: "w-slider",
5799
5798
  mixins: [M],
5800
5799
  props: {
@@ -5931,17 +5930,17 @@ const cs = {
5931
5930
  this.rangeValueScaled !== e && (this.rangeValueScaled = e, this.rangeValuePercent = this.scaledToPercent(e));
5932
5931
  }
5933
5932
  }
5934
- }, ps = /* @__PURE__ */ v(cs, [["render", hs]]), fs = { key: 0 };
5935
- function ms(e, t, i, s, n, l) {
5933
+ }, us = /* @__PURE__ */ v(ds, [["render", rs]]), hs = { key: 0 };
5934
+ function cs(e, t, i, s, n, l) {
5936
5935
  return i.modelValue || i.modelValue === void 0 ? (o(), u("div", {
5937
5936
  key: 0,
5938
5937
  class: f(["w-spinner", l.classes]),
5939
5938
  style: R(l.styles)
5940
5939
  }, [
5941
- l.isThreeDots ? (o(), u("span", fs)) : p("", !0)
5940
+ l.isThreeDots ? (o(), u("span", hs)) : p("", !0)
5942
5941
  ], 6)) : p("", !0);
5943
5942
  }
5944
- const gs = {
5943
+ const ps = {
5945
5944
  name: "w-spinner",
5946
5945
  props: {
5947
5946
  modelValue: {},
@@ -5979,13 +5978,13 @@ const gs = {
5979
5978
  };
5980
5979
  }
5981
5980
  }
5982
- }, bs = /* @__PURE__ */ v(gs, [["render", ms]]);
5983
- function ys(e, t, i, s, n, l) {
5981
+ }, fs = /* @__PURE__ */ v(ps, [["render", cs]]);
5982
+ function ms(e, t, i, s, n, l) {
5984
5983
  return o(), u("div", {
5985
5984
  class: f(["w-steps", l.classes])
5986
5985
  }, null, 2);
5987
5986
  }
5988
- const ws = {
5987
+ const gs = {
5989
5988
  name: "w-steps",
5990
5989
  props: {
5991
5990
  dark: { type: Boolean },
@@ -6001,14 +6000,14 @@ const ws = {
6001
6000
  };
6002
6001
  }
6003
6002
  }
6004
- }, ks = /* @__PURE__ */ v(ws, [["render", ys]]), vs = ["id", "name", "checked", "disabled", "readonly", "aria-readonly", "required", "tabindex", "aria-checked"], Cs = ["for"], Ss = {
6003
+ }, bs = /* @__PURE__ */ v(gs, [["render", ms]]), ys = ["id", "name", "checked", "disabled", "readonly", "aria-readonly", "required", "tabindex", "aria-checked"], ws = ["for"], ks = {
6005
6004
  key: 0,
6006
6005
  class: "w-switch__track"
6007
- }, Bs = {
6006
+ }, vs = {
6008
6007
  key: 1,
6009
6008
  class: "w-switch__thumb"
6010
- }, _s = ["for"];
6011
- function $s(e, t, i, s, n, l) {
6009
+ }, Cs = ["for"];
6010
+ function Ss(e, t, i, s, n, l) {
6012
6011
  const a = $("w-progress");
6013
6012
  return o(), b(L(e.formRegister ? "w-form-element" : "div"), _({ ref: "formEl" }, e.formRegister && { validators: e.validators, inputValue: n.isOn, disabled: e.isDisabled, readonly: e.isReadonly }, {
6014
6013
  valid: e.valid,
@@ -6036,7 +6035,7 @@ function $s(e, t, i, s, n, l) {
6036
6035
  onFocus: t[1] || (t[1] = (r) => e.$emit("focus", r)),
6037
6036
  "aria-checked": n.isOn || "false",
6038
6037
  role: "switch"
6039
- }), null, 16, vs),
6038
+ }), null, 16, ys),
6040
6039
  l.hasLabel && i.labelOnLeft ? (o(), u(k, { key: 0 }, [
6041
6040
  e.$slots.default || i.label ? (o(), u("label", {
6042
6041
  key: 0,
@@ -6046,7 +6045,7 @@ function $s(e, t, i, s, n, l) {
6046
6045
  c(e.$slots, "default", {}, () => [
6047
6046
  B(C(i.label), 1)
6048
6047
  ])
6049
- ], 10, Cs)) : p("", !0)
6048
+ ], 10, ws)) : p("", !0)
6050
6049
  ], 64)) : p("", !0),
6051
6050
  w("div", {
6052
6051
  class: f(["w-switch__input", l.inputClasses]),
@@ -6054,10 +6053,10 @@ function $s(e, t, i, s, n, l) {
6054
6053
  e.$refs.input.focus(), e.$refs.input.click();
6055
6054
  })
6056
6055
  }, [
6057
- e.$slots.track ? (o(), u("div", Ss, [
6056
+ e.$slots.track ? (o(), u("div", ks, [
6058
6057
  c(e.$slots, "track")
6059
6058
  ])) : p("", !0),
6060
- e.$slots.thumb || i.loading ? (o(), u("div", Bs, [
6059
+ e.$slots.thumb || i.loading ? (o(), u("div", vs, [
6061
6060
  i.loading ? (o(), b(a, _({
6062
6061
  key: 0,
6063
6062
  circle: "",
@@ -6074,13 +6073,13 @@ function $s(e, t, i, s, n, l) {
6074
6073
  c(e.$slots, "default", {}, () => [
6075
6074
  B(C(i.label), 1)
6076
6075
  ])
6077
- ], 10, _s)) : p("", !0)
6076
+ ], 10, Cs)) : p("", !0)
6078
6077
  ], 64)) : p("", !0)
6079
6078
  ]),
6080
6079
  _: 3
6081
6080
  }, 16, ["valid", "class", "style"]);
6082
6081
  }
6083
- const Is = {
6082
+ const Bs = {
6084
6083
  name: "w-switch",
6085
6084
  mixins: [M],
6086
6085
  inheritAttrs: !1,
@@ -6156,24 +6155,24 @@ const Is = {
6156
6155
  this.isOn = e;
6157
6156
  }
6158
6157
  }
6159
- }, Vs = /* @__PURE__ */ v(Is, [["render", $s]]), Ts = { class: "w-tabs__content" };
6160
- function Ls(e, t, i, s, n, l) {
6161
- return o(), u("div", Ts, [
6158
+ }, _s = /* @__PURE__ */ v(Bs, [["render", Ss]]), $s = { class: "w-tabs__content" };
6159
+ function Is(e, t, i, s, n, l) {
6160
+ return o(), u("div", $s, [
6162
6161
  c(e.$slots, "default", { item: i.item })
6163
6162
  ]);
6164
6163
  }
6165
- const Rs = {
6164
+ const Vs = {
6166
6165
  name: "tab-content",
6167
6166
  // Keep-alive include/exclude mechanism is component-name-based.
6168
6167
  props: { item: Object }
6169
- }, xs = /* @__PURE__ */ v(Rs, [["render", Ls]]), Ps = ["onClick", "onFocus", "tabindex", "onKeypress", "aria-selected"], zs = ["innerHTML"], Os = {
6168
+ }, Ts = /* @__PURE__ */ v(Vs, [["render", Is]]), Ls = ["onClick", "onFocus", "tabindex", "onKeypress", "aria-selected"], Rs = ["innerHTML"], xs = {
6170
6169
  key: 0,
6171
6170
  class: "w-tabs__bar-extra"
6172
- }, Ms = {
6171
+ }, Ps = {
6173
6172
  key: 0,
6174
6173
  class: "w-tabs__content-wrap"
6175
- }, Es = ["innerHTML"], As = ["innerHTML"];
6176
- function Ws(e, t, i, s, n, l) {
6174
+ }, zs = ["innerHTML"], Os = ["innerHTML"];
6175
+ function Ms(e, t, i, s, n, l) {
6177
6176
  const a = $("tab-content");
6178
6177
  return o(), u("div", {
6179
6178
  class: f(["w-tabs", l.tabsClasses])
@@ -6205,10 +6204,10 @@ function Ws(e, t, i, s, n, l) {
6205
6204
  }, () => [
6206
6205
  w("div", {
6207
6206
  innerHTML: r[i.itemTitleKey]
6208
- }, null, 8, zs)
6207
+ }, null, 8, Rs)
6209
6208
  ])
6210
- ], 42, Ps))), 128)),
6211
- e.$slots["tabs-bar-extra"] ? (o(), u("div", Os, [
6209
+ ], 42, Ls))), 128)),
6210
+ e.$slots["tabs-bar-extra"] ? (o(), u("div", xs, [
6212
6211
  c(e.$slots, "tabs-bar-extra")
6213
6212
  ])) : p("", !0),
6214
6213
  !i.noSlider && !i.card ? (o(), u("div", {
@@ -6217,7 +6216,7 @@ function Ws(e, t, i, s, n, l) {
6217
6216
  style: R(l.sliderStyles)
6218
6217
  }, null, 6)) : p("", !0)
6219
6218
  ], 2),
6220
- e.tabs.length ? (o(), u("div", Ms, [
6219
+ e.tabs.length ? (o(), u("div", Ps, [
6221
6220
  i.keepInDom ? (o(), b(ae, {
6222
6221
  key: 0,
6223
6222
  name: l.transitionName
@@ -6243,7 +6242,7 @@ function Ws(e, t, i, s, n, l) {
6243
6242
  r[i.itemContentKey] ? (o(), u("div", {
6244
6243
  key: 0,
6245
6244
  innerHTML: r[i.itemContentKey]
6246
- }, null, 8, Es)) : p("", !0)
6245
+ }, null, 8, zs)) : p("", !0)
6247
6246
  ])
6248
6247
  ]),
6249
6248
  _: 2
@@ -6282,7 +6281,7 @@ function Ws(e, t, i, s, n, l) {
6282
6281
  r[i.itemContentKey] ? (o(), u("div", {
6283
6282
  key: 0,
6284
6283
  innerHTML: r[i.itemContentKey]
6285
- }, null, 8, As)) : p("", !0)
6284
+ }, null, 8, Os)) : p("", !0)
6286
6285
  ])
6287
6286
  ], 64)) : p("", !0)
6288
6287
  ]),
@@ -6296,7 +6295,7 @@ function Ws(e, t, i, s, n, l) {
6296
6295
  ], 2);
6297
6296
  }
6298
6297
  let ye = 0;
6299
- const Ks = {
6298
+ const Es = {
6300
6299
  name: "w-tabs",
6301
6300
  props: {
6302
6301
  modelValue: { type: [Number, String] },
@@ -6322,7 +6321,7 @@ const Ks = {
6322
6321
  keepAlive: { type: Boolean, default: !0 },
6323
6322
  keepInDom: { type: Boolean, default: !1 }
6324
6323
  },
6325
- components: { TabContent: xs },
6324
+ components: { TabContent: Ts },
6326
6325
  emits: ["input", "update:modelValue", "focus"],
6327
6326
  data: () => ({
6328
6327
  tabs: [],
@@ -6471,51 +6470,51 @@ const Ks = {
6471
6470
  e ? window.removeEventListener("resize", this.onResize) : (this.updateSlider(), window.addEventListener("resize", this.onResize));
6472
6471
  }
6473
6472
  }
6474
- }, Ns = /* @__PURE__ */ v(Ks, [["render", Ws]]), Ds = { class: "w-table__scroll-wrap" }, Hs = { ref: "colgroup" }, Fs = ["width"], js = { key: 0 }, Us = ["onClick"], qs = ["innerHTML"], Xs = {
6473
+ }, As = /* @__PURE__ */ v(Es, [["render", Ms]]), Ws = { class: "w-table__scroll-wrap" }, Ks = { ref: "colgroup" }, Ns = ["width"], Ds = { key: 0 }, Hs = ["onClick"], Fs = ["innerHTML"], js = {
6475
6474
  key: 0,
6476
6475
  class: "w-table__progress-bar"
6477
- }, Ys = ["colspan"], Gs = {
6476
+ }, Us = ["colspan"], qs = {
6478
6477
  key: 0,
6479
6478
  class: "w-table__progress-bar"
6480
- }, Js = ["colspan"], Qs = { class: "w-table__loading-text" }, Zs = {
6479
+ }, Xs = ["colspan"], Ys = { class: "w-table__loading-text" }, Gs = {
6481
6480
  key: 1,
6482
6481
  class: "no-data"
6483
- }, eo = ["colspan"], to = ["onClick"], io = ["data-label"], lo = ["data-label"], so = ["innerHTML"], oo = {
6482
+ }, Js = ["colspan"], Qs = ["onClick"], Zs = ["data-label"], eo = ["data-label"], to = ["innerHTML"], io = {
6484
6483
  key: 2,
6485
6484
  class: "w-table__row w-table__row--expansion"
6486
- }, ao = ["colspan"], no = { key: 0 }, ro = {
6485
+ }, lo = ["colspan"], so = { key: 0 }, oo = {
6487
6486
  key: 3,
6488
6487
  class: "w-table__extra-row"
6489
- }, uo = {
6488
+ }, ao = {
6490
6489
  key: 1,
6491
6490
  class: "w-table__footer"
6492
- }, ho = {
6491
+ }, no = {
6493
6492
  key: 1,
6494
6493
  class: "w-table__row"
6495
- }, co = ["colspan"], po = {
6494
+ }, ro = ["colspan"], uo = {
6496
6495
  key: 0,
6497
6496
  class: "w-table__pagination w-pagination"
6498
- }, fo = { class: "pages-wrap" }, mo = { class: "w-pagination__results" };
6499
- function go(e, t, i, s, n, l) {
6497
+ }, ho = { class: "pages-wrap" }, co = { class: "w-pagination__results" };
6498
+ function po(e, t, i, s, n, l) {
6500
6499
  const a = $("w-icon"), r = $("w-progress"), d = $("w-transition-fade"), h = $("w-transition-expand"), y = $("w-select"), S = $("w-button");
6501
6500
  return o(), u("div", {
6502
6501
  class: f(["w-table w-table--wrap", l.classes])
6503
6502
  }, [
6504
- w("div", Ds, [
6503
+ w("div", Ws, [
6505
6504
  w("table", {
6506
6505
  class: "w-table__table",
6507
6506
  onMousedown: t[1] || (t[1] = (...g) => l.onMouseDown && l.onMouseDown(...g)),
6508
6507
  onMouseover: t[2] || (t[2] = (...g) => l.onMouseOver && l.onMouseOver(...g)),
6509
6508
  onMouseout: t[3] || (t[3] = (...g) => l.onMouseOut && l.onMouseOut(...g))
6510
6509
  }, [
6511
- w("colgroup", Hs, [
6510
+ w("colgroup", Ks, [
6512
6511
  (o(!0), u(k, null, x(i.headers, (g, V) => (o(), u("col", {
6513
6512
  class: f(["w-table__col", l.colClasses[V]]),
6514
6513
  key: V,
6515
6514
  width: g.width || null
6516
- }, null, 10, Fs))), 128))
6515
+ }, null, 10, Ns))), 128))
6517
6516
  ], 512),
6518
- i.noHeaders ? p("", !0) : (o(), u("thead", js, [
6517
+ i.noHeaders ? p("", !0) : (o(), u("thead", Ds, [
6519
6518
  w("tr", null, [
6520
6519
  (o(!0), u(k, null, x(i.headers, (g, V) => (o(), u("th", {
6521
6520
  class: f(["w-table__header", l.headerClasses(g)]),
@@ -6526,9 +6525,9 @@ function go(e, t, i, s, n, l) {
6526
6525
  key: 0,
6527
6526
  class: f(["w-table__header-sort", l.headerSortClasses(g)])
6528
6527
  }, {
6529
- default: m(() => [
6528
+ default: m(() => t[8] || (t[8] = [
6530
6529
  B("wi-arrow-down")
6531
- ]),
6530
+ ])),
6532
6531
  _: 2
6533
6532
  }, 1032, ["class"])) : p("", !0),
6534
6533
  g.label ? (o(), u(k, { key: 1 }, [
@@ -6542,15 +6541,15 @@ function go(e, t, i, s, n, l) {
6542
6541
  ]) : (o(), u("span", {
6543
6542
  key: 1,
6544
6543
  innerHTML: g.label || ""
6545
- }, null, 8, qs))
6544
+ }, null, 8, Fs))
6546
6545
  ], 64)) : p("", !0),
6547
6546
  g.sortable !== !1 && g.align !== "right" ? (o(), b(a, {
6548
6547
  key: 2,
6549
6548
  class: f(["w-table__header-sort", l.headerSortClasses(g)])
6550
6549
  }, {
6551
- default: m(() => [
6550
+ default: m(() => t[9] || (t[9] = [
6552
6551
  B("wi-arrow-down")
6553
- ]),
6552
+ ])),
6554
6553
  _: 2
6555
6554
  }, 1032, ["class"])) : p("", !0),
6556
6555
  V < i.headers.length - 1 && i.resizableColumns ? (o(), u("span", {
@@ -6559,42 +6558,42 @@ function go(e, t, i, s, n, l) {
6559
6558
  onClick: t[0] || (t[0] = O(() => {
6560
6559
  }, ["stop"]))
6561
6560
  }, null, 2)) : p("", !0)
6562
- ], 10, Us))), 128))
6561
+ ], 10, Hs))), 128))
6563
6562
  ]),
6564
6563
  T(d, null, {
6565
6564
  default: m(() => [
6566
- i.loading === "header" ? (o(), u("tr", Xs, [
6565
+ i.loading === "header" ? (o(), u("tr", js, [
6567
6566
  w("td", {
6568
6567
  colspan: i.headers.length
6569
6568
  }, [
6570
6569
  T(r, { tile: "" })
6571
- ], 8, Ys)
6570
+ ], 8, Us)
6572
6571
  ])) : p("", !0)
6573
6572
  ]),
6574
6573
  _: 1
6575
6574
  })
6576
6575
  ])),
6577
6576
  w("tbody", null, [
6578
- i.loading === !0 ? (o(), u("tr", Gs, [
6577
+ i.loading === !0 ? (o(), u("tr", qs, [
6579
6578
  w("td", {
6580
6579
  colspan: i.headers.length
6581
6580
  }, [
6582
6581
  T(r, { tile: "" }),
6583
- w("div", Qs, [
6582
+ w("div", Ys, [
6584
6583
  c(e.$slots, "loading", {}, () => [
6585
- B("Loading...")
6584
+ t[10] || (t[10] = B("Loading..."))
6586
6585
  ])
6587
6586
  ])
6588
- ], 8, Js)
6589
- ])) : l.tableItems.length ? p("", !0) : (o(), u("tr", Zs, [
6587
+ ], 8, Xs)
6588
+ ])) : l.tableItems.length ? p("", !0) : (o(), u("tr", Gs, [
6590
6589
  w("td", {
6591
6590
  class: "w-table__cell text-center",
6592
6591
  colspan: i.headers.length
6593
6592
  }, [
6594
6593
  c(e.$slots, "no-data", {}, () => [
6595
- B("No data to show.")
6594
+ t[11] || (t[11] = B("No data to show."))
6596
6595
  ])
6597
- ], 8, eo)
6596
+ ], 8, Js)
6598
6597
  ])),
6599
6598
  l.tableItems.length && i.loading !== !0 ? (o(!0), u(k, { key: 2 }, x(l.paginatedItems, (g, V) => (o(), u(k, { key: V }, [
6600
6599
  e.$slots.item ? c(e.$slots, "item", {
@@ -6637,29 +6636,29 @@ function go(e, t, i, s, n, l) {
6637
6636
  key: 3,
6638
6637
  class: f(["w-table__col-resizer", { "w-table__col-resizer--hover": e.colResizing.hover === z, "w-table__col-resizer--active": e.colResizing.columnIndex === z }])
6639
6638
  }, null, 2)) : p("", !0)
6640
- ], 10, io)) : (o(), u("td", {
6639
+ ], 10, Zs)) : (o(), u("td", {
6641
6640
  class: f(["w-table__cell", { [`text-${I.align || "left"}`]: !0, "w-table__cell--sticky": I.sticky }]),
6642
6641
  key: `${z}-b`,
6643
6642
  "data-label": I.label
6644
6643
  }, [
6645
6644
  w("div", {
6646
6645
  innerHTML: g[I.key] || ""
6647
- }, null, 8, so),
6646
+ }, null, 8, to),
6648
6647
  z < i.headers.length - 1 && i.resizableColumns ? (o(), u("span", {
6649
6648
  key: 0,
6650
6649
  class: f(["w-table__col-resizer", { "w-table__col-resizer--hover": e.colResizing.hover === z, "w-table__col-resizer--active": e.colResizing.columnIndex === z }])
6651
6650
  }, null, 2)) : p("", !0)
6652
- ], 10, lo))
6651
+ ], 10, eo))
6653
6652
  ], 64))), 256))
6654
- ], 10, to)),
6655
- l.expandedRowsByUid[g._uid] ? (o(), u("tr", oo, [
6653
+ ], 10, Qs)),
6654
+ l.expandedRowsByUid[g._uid] ? (o(), u("tr", io, [
6656
6655
  w("td", {
6657
6656
  class: "w-table__cell",
6658
6657
  colspan: i.headers.length
6659
6658
  }, [
6660
6659
  T(h, { y: "" }, {
6661
6660
  default: m(() => [
6662
- l.expandedRowsByUid[g._uid] ? (o(), u("div", no, [
6661
+ l.expandedRowsByUid[g._uid] ? (o(), u("div", so, [
6663
6662
  c(e.$slots, "row-expansion", {
6664
6663
  item: g,
6665
6664
  index: V + 1
@@ -6672,26 +6671,26 @@ function go(e, t, i, s, n, l) {
6672
6671
  ]),
6673
6672
  _: 2
6674
6673
  }, 1024)
6675
- ], 8, ao)
6674
+ ], 8, lo)
6676
6675
  ])) : p("", !0)
6677
6676
  ], 64))), 128)) : p("", !0),
6678
- e.$slots["extra-row"] ? (o(), u("div", ro, [
6677
+ e.$slots["extra-row"] ? (o(), u("div", oo, [
6679
6678
  c(e.$slots, "extra-row")
6680
6679
  ])) : p("", !0)
6681
6680
  ]),
6682
- e.$slots.footer || e.$slots["footer-row"] ? (o(), u("tfoot", uo, [
6683
- e.$slots["footer-row"] ? c(e.$slots, "footer-row", { key: 0 }) : e.$slots.footer ? (o(), u("tr", ho, [
6681
+ e.$slots.footer || e.$slots["footer-row"] ? (o(), u("tfoot", ao, [
6682
+ e.$slots["footer-row"] ? c(e.$slots, "footer-row", { key: 0 }) : e.$slots.footer ? (o(), u("tr", no, [
6684
6683
  w("td", {
6685
6684
  class: "w-table__cell",
6686
6685
  colspan: i.headers.length
6687
6686
  }, [
6688
6687
  c(e.$slots, "footer")
6689
- ], 8, co)
6688
+ ], 8, ro)
6690
6689
  ])) : p("", !0)
6691
6690
  ])) : p("", !0)
6692
6691
  ], 32)
6693
6692
  ]),
6694
- i.pagination && e.paginationConfig ? (o(), u("div", po, [
6693
+ i.pagination && e.paginationConfig ? (o(), u("div", uo, [
6695
6694
  c(e.$slots, "pagination", {
6696
6695
  range: `${e.paginationConfig.start}-${e.paginationConfig.end}`,
6697
6696
  total: e.paginationConfig.total,
@@ -6710,7 +6709,7 @@ function go(e, t, i, s, n, l) {
6710
6709
  label: "Items per page",
6711
6710
  "label-color": "inherit"
6712
6711
  }, null, 8, ["modelValue", "items"])) : p("", !0),
6713
- w("div", fo, [
6712
+ w("div", ho, [
6714
6713
  T(S, {
6715
6714
  class: "w-pagination__arrow w-pagination__arrow--prev",
6716
6715
  onClick: t[6] || (t[6] = (g) => l.goToPage("-1")),
@@ -6738,9 +6737,9 @@ function go(e, t, i, s, n, l) {
6738
6737
  round: "",
6739
6738
  lg: ""
6740
6739
  }, {
6741
- default: m(() => [
6740
+ default: m(() => t[12] || (t[12] = [
6742
6741
  B("...")
6743
- ]),
6742
+ ])),
6744
6743
  _: 2
6745
6744
  }, 1032, ["onClick", "class"])) : p("", !0)
6746
6745
  ], 64))), 128)) : (o(!0), u(k, { key: 1 }, x(e.paginationConfig.pagesCount, (g) => (o(), b(S, {
@@ -6764,12 +6763,12 @@ function go(e, t, i, s, n, l) {
6764
6763
  lg: ""
6765
6764
  }, null, 8, ["disabled"])
6766
6765
  ]),
6767
- w("span", mo, C(e.paginationConfig.start) + "-" + C(e.paginationConfig.end || e.paginationConfig.total) + " of " + C(e.paginationConfig.total), 1)
6766
+ w("span", co, C(e.paginationConfig.start) + "-" + C(e.paginationConfig.end || e.paginationConfig.total) + " of " + C(e.paginationConfig.total), 1)
6768
6767
  ])
6769
6768
  ])) : p("", !0)
6770
6769
  ], 2);
6771
6770
  }
6772
- const we = 15, bo = {
6771
+ const we = 15, fo = {
6773
6772
  name: "w-table",
6774
6773
  props: {
6775
6774
  items: { type: Array, required: !0 },
@@ -7098,8 +7097,8 @@ const we = 15, bo = {
7098
7097
  this.updatePaginationConfig({ total: e });
7099
7098
  }
7100
7099
  }
7101
- }, yo = /* @__PURE__ */ v(bo, [["render", go]]), wo = ["role", "aria-pressed", "tabindex"];
7102
- function ko(e, t, i, s, n, l) {
7100
+ }, mo = /* @__PURE__ */ v(fo, [["render", po]]), go = ["role", "aria-pressed", "tabindex"];
7101
+ function bo(e, t, i, s, n, l) {
7103
7102
  return o(), u("span", {
7104
7103
  class: f(["w-tag", l.classes]),
7105
7104
  onClick: t[1] || (t[1] = (a) => {
@@ -7123,9 +7122,9 @@ function ko(e, t, i, s, n, l) {
7123
7122
  role: "icon",
7124
7123
  "aria-hidden": "true"
7125
7124
  })) : p("", !0)
7126
- ], 46, wo);
7125
+ ], 46, go);
7127
7126
  }
7128
- const vo = {
7127
+ const yo = {
7129
7128
  name: "w-tag",
7130
7129
  props: {
7131
7130
  modelValue: { type: [Boolean, Number], default: -1 },
@@ -7174,8 +7173,8 @@ const vo = {
7174
7173
  };
7175
7174
  }
7176
7175
  }
7177
- }, Co = /* @__PURE__ */ v(vo, [["render", ko]]), So = ["for"], Bo = ["id", "name", "placeholder", "rows", "cols", "readonly", "aria-readonly", "disabled", "required", "tabindex"], _o = ["for"];
7178
- function $o(e, t, i, s, n, l) {
7176
+ }, wo = /* @__PURE__ */ v(yo, [["render", bo]]), ko = ["for"], vo = ["id", "name", "placeholder", "rows", "cols", "readonly", "aria-readonly", "disabled", "required", "tabindex"], Co = ["for"];
7177
+ function So(e, t, i, s, n, l) {
7179
7178
  const a = $("w-icon");
7180
7179
  return o(), b(L(e.formRegister ? "w-form-element" : "div"), _({ ref: "formEl" }, e.formRegister && { validators: e.validators, inputValue: n.inputValue, disabled: e.isDisabled, readonly: e.isReadonly, isFocused: n.isFocused }, {
7181
7180
  valid: e.valid,
@@ -7197,7 +7196,7 @@ function $o(e, t, i, s, n, l) {
7197
7196
  c(e.$slots, "default", {}, () => [
7198
7197
  B(C(i.label), 1)
7199
7198
  ])
7200
- ], 10, So)) : p("", !0)
7199
+ ], 10, ko)) : p("", !0)
7201
7200
  ], 64)) : p("", !0),
7202
7201
  w("div", {
7203
7202
  class: f(["w-textarea__textarea-wrap", l.inputWrapClasses])
@@ -7236,7 +7235,7 @@ function $o(e, t, i, s, n, l) {
7236
7235
  disabled: e.isDisabled || null,
7237
7236
  required: e.required || null,
7238
7237
  tabindex: e.tabindex || null
7239
- }), null, 16, Bo), [
7238
+ }), null, 16, vo), [
7240
7239
  [ve, n.inputValue]
7241
7240
  ]),
7242
7241
  i.labelPosition === "inside" && l.showLabelInside ? (o(), u(k, { key: 0 }, [
@@ -7275,13 +7274,13 @@ function $o(e, t, i, s, n, l) {
7275
7274
  c(e.$slots, "default", {}, () => [
7276
7275
  B(C(i.label), 1)
7277
7276
  ])
7278
- ], 10, _o)) : p("", !0)
7277
+ ], 10, Co)) : p("", !0)
7279
7278
  ], 64)) : p("", !0)
7280
7279
  ]),
7281
7280
  _: 3
7282
7281
  }, 16, ["valid", "wrap", "class", "style"]);
7283
7282
  }
7284
- const Io = {
7283
+ const Bo = {
7285
7284
  name: "w-textarea",
7286
7285
  mixins: [M],
7287
7286
  inheritAttrs: !1,
@@ -7407,8 +7406,8 @@ const Io = {
7407
7406
  e ? this.getLineHeight() : this.height = null;
7408
7407
  }
7409
7408
  }
7410
- }, Vo = /* @__PURE__ */ v(Io, [["render", $o]]), To = ["innerHTML"], Lo = ["innerHTML"];
7411
- function Ro(e, t, i, s, n, l) {
7409
+ }, _o = /* @__PURE__ */ v(Bo, [["render", So]]), $o = ["innerHTML"], Io = ["innerHTML"];
7410
+ function Vo(e, t, i, s, n, l) {
7412
7411
  return o(), u("ul", {
7413
7412
  class: f(["w-timeline", l.classes])
7414
7413
  }, [
@@ -7436,16 +7435,16 @@ function Ro(e, t, i, s, n, l) {
7436
7435
  w("div", {
7437
7436
  class: f(["w-timeline-item__title", { [a[i.itemColorKey] || i.color]: a[i.itemColorKey] || i.color }]),
7438
7437
  innerHTML: a[i.itemTitleKey]
7439
- }, null, 10, To),
7438
+ }, null, 10, $o),
7440
7439
  w("div", {
7441
7440
  class: "w-timeline-item__content",
7442
7441
  innerHTML: a[i.itemContentKey]
7443
- }, null, 8, Lo)
7442
+ }, null, 8, Io)
7444
7443
  ])
7445
7444
  ]))), 128))
7446
7445
  ], 2);
7447
7446
  }
7448
- const xo = {
7447
+ const To = {
7449
7448
  name: "w-timeline",
7450
7449
  props: {
7451
7450
  items: { type: [Array, Number], required: !0 },
@@ -7467,8 +7466,8 @@ const xo = {
7467
7466
  };
7468
7467
  }
7469
7468
  }
7470
- }, Po = /* @__PURE__ */ v(xo, [["render", Ro]]);
7471
- function zo(e, t, i, s, n, l) {
7469
+ }, Lo = /* @__PURE__ */ v(To, [["render", Vo]]);
7470
+ function Ro(e, t, i, s, n, l) {
7472
7471
  return o(), u("div", {
7473
7472
  class: f(["w-toolbar", l.classes]),
7474
7473
  style: R(l.styles)
@@ -7476,7 +7475,7 @@ function zo(e, t, i, s, n, l) {
7476
7475
  c(e.$slots, "default")
7477
7476
  ], 6);
7478
7477
  }
7479
- const Oo = {
7478
+ const xo = {
7480
7479
  name: "w-toolbar",
7481
7480
  props: {
7482
7481
  color: { type: String },
@@ -7527,8 +7526,8 @@ const Oo = {
7527
7526
  };
7528
7527
  }
7529
7528
  }
7530
- }, Mo = /* @__PURE__ */ v(Oo, [["render", zo]]);
7531
- function Eo(e, t, i, s, n, l) {
7529
+ }, Po = /* @__PURE__ */ v(xo, [["render", Ro]]);
7530
+ function zo(e, t, i, s, n, l) {
7532
7531
  return o(), u(k, null, [
7533
7532
  c(e.$slots, "activator", { on: l.activatorEventHandlers }),
7534
7533
  T(P, {
@@ -7549,7 +7548,7 @@ function Eo(e, t, i, s, n, l) {
7549
7548
  }, 8, ["name"])
7550
7549
  ], 64);
7551
7550
  }
7552
- const Ao = {
7551
+ const Oo = {
7553
7552
  name: "w-tooltip",
7554
7553
  mixins: [Be],
7555
7554
  props: {
@@ -7685,8 +7684,8 @@ const Ao = {
7685
7684
  }
7686
7685
  }
7687
7686
  // watch, mounted & beforeDestroy hooks are set in the detachable.js mixin.
7688
- }, Wo = /* @__PURE__ */ v(Ao, [["render", Eo]]);
7689
- function Ko(e, t, i, s, n, l) {
7687
+ }, Mo = /* @__PURE__ */ v(Oo, [["render", zo]]);
7688
+ function Eo(e, t, i, s, n, l) {
7690
7689
  return o(), b(P, _({ name: "bounce" }, e.$props), {
7691
7690
  default: m(() => [
7692
7691
  c(e.$slots, "default")
@@ -7694,14 +7693,14 @@ function Ko(e, t, i, s, n, l) {
7694
7693
  _: 3
7695
7694
  }, 16);
7696
7695
  }
7697
- const No = {
7696
+ const Ao = {
7698
7697
  name: "w-transition-bounce",
7699
7698
  props: {
7700
7699
  appear: { type: Boolean },
7701
7700
  duration: { type: [Number, String] }
7702
7701
  }
7703
- }, Do = /* @__PURE__ */ v(No, [["render", Ko]]);
7704
- function Ho(e, t, i, s, n, l) {
7702
+ }, Wo = /* @__PURE__ */ v(Ao, [["render", Eo]]);
7703
+ function Ko(e, t, i, s, n, l) {
7705
7704
  return o(), b(P, {
7706
7705
  name: "expand",
7707
7706
  mode: "out-in",
@@ -7722,7 +7721,7 @@ function Ho(e, t, i, s, n, l) {
7722
7721
  _: 3
7723
7722
  }, 8, ["onBeforeAppear", "onAppear", "onAfterAppear", "onBeforeEnter", "onEnter", "onAfterEnter", "onBeforeLeave", "onLeave", "onAfterLeave"]);
7724
7723
  }
7725
- const Fo = {
7724
+ const No = {
7726
7725
  name: "w-transition-expand",
7727
7726
  props: {
7728
7727
  x: { type: Boolean },
@@ -7812,8 +7811,8 @@ const Fo = {
7812
7811
  this.animX && (this.el.width = e.offsetWidth, this.el.marginLeft = t.getPropertyValue("marginLeft"), this.el.marginRight = t.getPropertyValue("marginRight"), this.el.paddingLeft = t.getPropertyValue("paddingLeft"), this.el.paddingRight = t.getPropertyValue("paddingRight"), this.el.borderLeftWidth = t.getPropertyValue("borderLeftWidth"), this.el.borderRightWidth = t.getPropertyValue("borderRightWidth")), this.animY && (this.el.height = e.offsetHeight, this.el.marginTop = t.getPropertyValue("marginTop"), this.el.marginBottom = t.getPropertyValue("marginBottom"), this.el.paddingTop = t.getPropertyValue("paddingTop"), this.el.paddingBottom = t.getPropertyValue("paddingBottom"), this.el.borderTopWidth = t.getPropertyValue("borderTopWidth"), this.el.borderBottomWidth = t.getPropertyValue("borderBottomWidth")), this.el.savedState = !0;
7813
7812
  }
7814
7813
  }
7815
- }, jo = /* @__PURE__ */ v(Fo, [["render", Ho]]);
7816
- function Uo(e, t, i, s, n, l) {
7814
+ }, Do = /* @__PURE__ */ v(No, [["render", Ko]]);
7815
+ function Ho(e, t, i, s, n, l) {
7817
7816
  return o(), b(P, _({ name: "fade" }, e.$props), {
7818
7817
  default: m(() => [
7819
7818
  c(e.$slots, "default")
@@ -7821,14 +7820,14 @@ function Uo(e, t, i, s, n, l) {
7821
7820
  _: 3
7822
7821
  }, 16);
7823
7822
  }
7824
- const qo = {
7823
+ const Fo = {
7825
7824
  name: "w-transition-fade",
7826
7825
  props: {
7827
7826
  appear: { type: Boolean },
7828
7827
  duration: { type: [Number, String] }
7829
7828
  }
7830
- }, Xo = /* @__PURE__ */ v(qo, [["render", Uo]]);
7831
- function Yo(e, t, i, s, n, l) {
7829
+ }, jo = /* @__PURE__ */ v(Fo, [["render", Ho]]);
7830
+ function Uo(e, t, i, s, n, l) {
7832
7831
  return o(), b(P, _({ name: "scale" }, e.$props), {
7833
7832
  default: m(() => [
7834
7833
  c(e.$slots, "default")
@@ -7836,14 +7835,14 @@ function Yo(e, t, i, s, n, l) {
7836
7835
  _: 3
7837
7836
  }, 16);
7838
7837
  }
7839
- const Go = {
7838
+ const qo = {
7840
7839
  name: "w-transition-scale",
7841
7840
  props: {
7842
7841
  appear: { type: Boolean },
7843
7842
  duration: { type: [Number, String] }
7844
7843
  }
7845
- }, Jo = /* @__PURE__ */ v(Go, [["render", Yo]]);
7846
- function Qo(e, t, i, s, n, l) {
7844
+ }, Xo = /* @__PURE__ */ v(qo, [["render", Uo]]);
7845
+ function Yo(e, t, i, s, n, l) {
7847
7846
  return o(), b(P, _({ name: "scale-fade" }, e.$props), {
7848
7847
  default: m(() => [
7849
7848
  c(e.$slots, "default")
@@ -7851,14 +7850,14 @@ function Qo(e, t, i, s, n, l) {
7851
7850
  _: 3
7852
7851
  }, 16);
7853
7852
  }
7854
- const Zo = {
7853
+ const Go = {
7855
7854
  name: "w-transition-scale-fade",
7856
7855
  props: {
7857
7856
  appear: { type: Boolean },
7858
7857
  duration: { type: [Number, String] }
7859
7858
  }
7860
- }, ea = /* @__PURE__ */ v(Zo, [["render", Qo]]);
7861
- function ta(e, t, i, s, n, l) {
7859
+ }, Jo = /* @__PURE__ */ v(Go, [["render", Yo]]);
7860
+ function Qo(e, t, i, s, n, l) {
7862
7861
  return o(), b(P, _({ name: l.transitionName }, e.$props), {
7863
7862
  default: m(() => [
7864
7863
  c(e.$slots, "default")
@@ -7866,7 +7865,7 @@ function ta(e, t, i, s, n, l) {
7866
7865
  _: 3
7867
7866
  }, 16, ["name"]);
7868
7867
  }
7869
- const ia = {
7868
+ const Zo = {
7870
7869
  name: "w-transition-slide",
7871
7870
  props: {
7872
7871
  appear: { type: Boolean },
@@ -7884,8 +7883,8 @@ const ia = {
7884
7883
  return `slide-${this.direction}`;
7885
7884
  }
7886
7885
  }
7887
- }, la = /* @__PURE__ */ v(ia, [["render", ta]]);
7888
- function sa(e, t, i, s, n, l) {
7886
+ }, ea = /* @__PURE__ */ v(Zo, [["render", Qo]]);
7887
+ function ta(e, t, i, s, n, l) {
7889
7888
  return o(), b(P, _({ name: l.transitionName }, e.$props), {
7890
7889
  default: m(() => [
7891
7890
  c(e.$slots, "default")
@@ -7893,7 +7892,7 @@ function sa(e, t, i, s, n, l) {
7893
7892
  _: 3
7894
7893
  }, 16, ["name"]);
7895
7894
  }
7896
- const oa = {
7895
+ const ia = {
7897
7896
  name: "w-transition-slide-fade",
7898
7897
  props: {
7899
7898
  appear: { type: Boolean },
@@ -7911,8 +7910,8 @@ const oa = {
7911
7910
  return `slide-fade-${this.direction}`;
7912
7911
  }
7913
7912
  }
7914
- }, aa = /* @__PURE__ */ v(oa, [["render", sa]]);
7915
- function na(e, t, i, s, n, l) {
7913
+ }, la = /* @__PURE__ */ v(ia, [["render", ta]]);
7914
+ function sa(e, t, i, s, n, l) {
7916
7915
  return o(), b(P, _({ name: "twist" }, e.$props), {
7917
7916
  default: m(() => [
7918
7917
  c(e.$slots, "default")
@@ -7920,17 +7919,17 @@ function na(e, t, i, s, n, l) {
7920
7919
  _: 3
7921
7920
  }, 16);
7922
7921
  }
7923
- const ra = {
7922
+ const oa = {
7924
7923
  name: "w-transition-twist",
7925
7924
  props: {
7926
7925
  appear: { type: Boolean },
7927
7926
  duration: { type: [Number, String] }
7928
7927
  }
7929
- }, da = /* @__PURE__ */ v(ra, [["render", na]]), ua = ["innerHTML"], ha = {
7928
+ }, aa = /* @__PURE__ */ v(oa, [["render", sa]]), na = ["innerHTML"], ra = {
7930
7929
  key: 1,
7931
7930
  class: "ml1"
7932
7931
  };
7933
- function ca(e, t, i, s, n, l) {
7932
+ function da(e, t, i, s, n, l) {
7934
7933
  const a = $("w-button"), r = $("w-icon"), d = $("w-tree", !0);
7935
7934
  return o(), u("ul", {
7936
7935
  class: f(["w-tree", l.classes])
@@ -7980,8 +7979,8 @@ function ca(e, t, i, s, n, l) {
7980
7979
  }, 1032, ["color"])) : p("", !0),
7981
7980
  w("span", {
7982
7981
  innerHTML: h.label
7983
- }, null, 8, ua),
7984
- i.counts && (h.children || h.branch) ? (o(), u("span", ha, "(" + C(((S = h.originalItem.children) == null ? void 0 : S.length) || 0) + ")", 1)) : p("", !0)
7982
+ }, null, 8, na),
7983
+ i.counts && (h.children || h.branch) ? (o(), u("span", ra, "(" + C(((S = h.originalItem.children) == null ? void 0 : S.length) || 0) + ")", 1)) : p("", !0)
7985
7984
  ];
7986
7985
  })
7987
7986
  ]),
@@ -8024,7 +8023,7 @@ function ca(e, t, i, s, n, l) {
8024
8023
  ], 2))), 128))
8025
8024
  ], 2);
8026
8025
  }
8027
- const pa = {
8026
+ const ua = {
8028
8027
  name: "w-tree",
8029
8028
  props: {
8030
8029
  modelValue: { type: [Object, Array] },
@@ -8222,7 +8221,7 @@ const pa = {
8222
8221
  unmounted() {
8223
8222
  this.dataPropUnwatch();
8224
8223
  }
8225
- }, fa = /* @__PURE__ */ v(pa, [["render", ca]]), ma = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
8224
+ }, ha = /* @__PURE__ */ v(ua, [["render", da]]), ca = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
8226
8225
  __proto__: null,
8227
8226
  WAccordion: at,
8228
8227
  WAlert: ut,
@@ -8230,55 +8229,55 @@ const pa = {
8230
8229
  WAutocomplete: kt,
8231
8230
  WBadge: Vt,
8232
8231
  WBreadcrumbs: xt,
8233
- WButton: Nt,
8234
- WCard: jt,
8235
- WCheckbox: ti,
8236
- WCheckboxes: oi,
8237
- WConfirm: ri,
8238
- WDatePicker: hi,
8239
- WDialog: fi,
8240
- WDivider: yi,
8241
- WDrawer: Si,
8242
- WFlex: $i,
8243
- WForm: Li,
8244
- WFormElement: Pi,
8245
- WGrid: Mi,
8246
- WIcon: Wi,
8247
- WImage: Fi,
8248
- WInput: tl,
8249
- WList: sl,
8250
- WMenu: nl,
8251
- WNotification: ul,
8252
- WOverlay: pl,
8253
- WParallax: bl,
8254
- WProgress: _l,
8255
- WRadio: Pl,
8256
- WRadios: El,
8257
- WRating: Dl,
8258
- WScrollable: Ul,
8259
- WSelect: Zl,
8260
- WSlider: ps,
8261
- WSpinner: bs,
8262
- WSteps: ks,
8263
- WSwitch: Vs,
8264
- WTable: yo,
8265
- WTabs: Ns,
8266
- WTag: Co,
8267
- WTextarea: Vo,
8268
- WTimeline: Po,
8269
- WToolbar: Mo,
8270
- WTooltip: Wo,
8271
- WTransitionBounce: Do,
8272
- WTransitionExpand: jo,
8273
- WTransitionFade: Xo,
8274
- WTransitionScale: Jo,
8275
- WTransitionScaleFade: ea,
8276
- WTransitionSlide: la,
8277
- WTransitionSlideFade: aa,
8278
- WTransitionTwist: da,
8279
- WTree: fa
8280
- }, Symbol.toStringTag, { value: "Module" })), ga = q.install;
8281
- q.install = (e, t = {}) => ga.call(q, e, { components: ma, ...t });
8232
+ WButton: Kt,
8233
+ WCard: Ft,
8234
+ WCheckbox: Qt,
8235
+ WCheckboxes: ii,
8236
+ WConfirm: oi,
8237
+ WDatePicker: ri,
8238
+ WDialog: hi,
8239
+ WDivider: mi,
8240
+ WDrawer: ki,
8241
+ WFlex: Si,
8242
+ WForm: Ii,
8243
+ WFormElement: Li,
8244
+ WGrid: Pi,
8245
+ WIcon: Mi,
8246
+ WImage: Ni,
8247
+ WInput: Qi,
8248
+ WList: tl,
8249
+ WMenu: sl,
8250
+ WNotification: nl,
8251
+ WOverlay: ul,
8252
+ WParallax: fl,
8253
+ WProgress: Cl,
8254
+ WRadio: Ll,
8255
+ WRadios: zl,
8256
+ WRating: Wl,
8257
+ WScrollable: Hl,
8258
+ WSelect: Gl,
8259
+ WSlider: us,
8260
+ WSpinner: fs,
8261
+ WSteps: bs,
8262
+ WSwitch: _s,
8263
+ WTable: mo,
8264
+ WTabs: As,
8265
+ WTag: wo,
8266
+ WTextarea: _o,
8267
+ WTimeline: Lo,
8268
+ WToolbar: Po,
8269
+ WTooltip: Mo,
8270
+ WTransitionBounce: Wo,
8271
+ WTransitionExpand: Do,
8272
+ WTransitionFade: jo,
8273
+ WTransitionScale: Xo,
8274
+ WTransitionScaleFade: Jo,
8275
+ WTransitionSlide: ea,
8276
+ WTransitionSlideFade: la,
8277
+ WTransitionTwist: aa,
8278
+ WTree: ha
8279
+ }, Symbol.toStringTag, { value: "Module" })), pa = q.install;
8280
+ q.install = (e, t = {}) => pa.call(q, e, { components: ca, ...t });
8282
8281
  export {
8283
8282
  q as default
8284
8283
  };