@maltjoy/core-vue 3.6.2 → 3.7.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.
Files changed (33) hide show
  1. package/dist/App.vue.d.ts +1 -1
  2. package/dist/components/JoyBadge/VJoyBadge.vue.d.ts +1 -1
  3. package/dist/components/JoyButton/VJoyButton.vue.d.ts +1 -1
  4. package/dist/components/JoyCheckbox/VJoyCheckbox.vue.d.ts +1 -1
  5. package/dist/components/JoyCounter/VJoyCounter.vue.d.ts +19 -64
  6. package/dist/components/JoyDropdown/VJoyDropdown.vue.d.ts +1 -1
  7. package/dist/components/JoyDropdownList/VJoyDropdownList.vue.d.ts +1 -1
  8. package/dist/components/JoyFormError/VJoyFormError.vue.d.ts +1 -1
  9. package/dist/components/JoyHighlight/VJoyHighlight.vue.d.ts +1 -1
  10. package/dist/components/JoyIcon/VJoyIcon.vue.d.ts +1 -1
  11. package/dist/components/JoyInput/VJoyInput.vue.d.ts +1 -1
  12. package/dist/components/JoyLabel/VJoyLabel.vue.d.ts +1 -1
  13. package/dist/components/JoyLink/VJoyLink.vue.d.ts +1 -1
  14. package/dist/components/JoyMultiCheckbox/VJoyMultiCheckbox.vue.d.ts +1 -1
  15. package/dist/components/JoyPanel/VJoyPanel.vue.d.ts +1 -1
  16. package/dist/components/JoyPanelSection/VJoyPanelSection.vue.d.ts +1 -1
  17. package/dist/components/JoyRadio/VJoyRadio.vue.d.ts +1 -1
  18. package/dist/components/JoyRadioGroup/VJoyRadioGroup.vue.d.ts +1 -1
  19. package/dist/components/JoyScreenLoader/VJoyScreenLoader.vue.d.ts +1 -1
  20. package/dist/components/JoySelect/VJoySelect.vue.d.ts +1 -1
  21. package/dist/components/JoySelectableItem/VJoySelectableItem.vue.d.ts +1 -1
  22. package/dist/components/JoySelectableItemGroup/VJoySelectableItemGroup.vue.d.ts +1 -1
  23. package/dist/components/JoySpinner/VJoySpinner.vue.d.ts +1 -1
  24. package/dist/components/JoyTemplate/VJoyTemplate.vue.d.ts +1 -1
  25. package/dist/components/JoyTextarea/VJoyTextarea.vue.d.ts +1 -1
  26. package/dist/components/JoyToggle/VJoyToggle.vue.d.ts +1 -1
  27. package/dist/components/JoyWrapper/VJoyWrapper.vue.d.ts +1 -1
  28. package/dist/joy-vue.js +111 -111
  29. package/dist/joy-vue.umd.cjs +1 -1
  30. package/dist/tests/composables/test-components/CheckboxFormProps.vue.d.ts +1 -1
  31. package/dist/tests/composables/test-components/GenericFormProps.vue.d.ts +1 -1
  32. package/dist/tests/composables/test-components/GenericFormPropsWithLabel.vue.d.ts +1 -1
  33. package/package.json +6 -6
package/dist/joy-vue.js CHANGED
@@ -1,4 +1,4 @@
1
- import { defineComponent as $, openBlock as v, createElementBlock as p, normalizeClass as S, renderSlot as h, createTextVNode as C, toDisplayString as I, createElementVNode as g, useAttrs as Me, computed as L, createBlock as x, resolveDynamicComponent as ce, unref as w, withCtx as B, createCommentVNode as _, ref as b, createVNode as N, mergeProps as Y, getCurrentScope as nt, onScopeDispose as at, getCurrentInstance as it, onMounted as X, nextTick as Ne, watch as J, h as rt, reactive as te, onBeforeUnmount as He, normalizeStyle as Z, Fragment as fe, renderList as ye, normalizeProps as ve, guardReactiveProps as me, Teleport as st, createSlots as We, useSlots as G, onBeforeMount as ut, inject as dt, provide as ct, pushScopeId as ft, popScopeId as yt } from "vue";
1
+ import { defineComponent as $, openBlock as v, createElementBlock as p, normalizeClass as w, renderSlot as h, createTextVNode as C, toDisplayString as I, createElementVNode as g, useAttrs as Me, computed as L, createBlock as x, resolveDynamicComponent as ce, unref as k, withCtx as B, createCommentVNode as _, ref as b, createVNode as N, mergeProps as Y, getCurrentScope as nt, onScopeDispose as at, getCurrentInstance as it, onMounted as X, nextTick as Ne, watch as J, h as rt, reactive as te, onBeforeUnmount as He, normalizeStyle as Z, Fragment as fe, renderList as ye, normalizeProps as ve, guardReactiveProps as me, Teleport as st, createSlots as We, useSlots as G, onBeforeMount as ut, inject as dt, provide as ct, pushScopeId as ft, popScopeId as yt } from "vue";
2
2
  const vt = ["info", "gray", "green", "orange", "red", "teal", "turquoise", "pink", "dark-blue", "yellow"], mt = /* @__PURE__ */ $({
3
3
  __name: "VJoyBadge",
4
4
  props: {
@@ -28,7 +28,7 @@ const vt = ["info", "gray", "green", "orange", "red", "teal", "turquoise", "pink
28
28
  },
29
29
  setup(e) {
30
30
  return (t, l) => (v(), p("span", {
31
- class: S(["joy-badge", `joy-badge__${e.variant}`, { "joy-badge--with-bulletpoint": e.bulletpoint }]),
31
+ class: w(["joy-badge", `joy-badge__${e.variant}`, { "joy-badge--with-bulletpoint": e.bulletpoint }]),
32
32
  role: "status"
33
33
  }, [
34
34
  h(t.$slots, "default", {}, () => [
@@ -54,7 +54,7 @@ const V = (e, t) => {
54
54
  },
55
55
  setup(e) {
56
56
  return (t, l) => (v(), p("div", {
57
- class: S(["joy-spinner", `joy-spinner_${e.color}`])
57
+ class: w(["joy-spinner", `joy-spinner_${e.color}`])
58
58
  }, null, 2));
59
59
  }
60
60
  });
@@ -76,10 +76,10 @@ const pe = /* @__PURE__ */ V(gt, [["__scopeId", "data-v-616a29d0"]]), R = /* @__
76
76
  },
77
77
  setup(e) {
78
78
  return (t, l) => (v(), p("span", {
79
- class: S(["joy-icon", `joy-icon--${e.color}`, `joy-icon--${e.size}`])
79
+ class: w(["joy-icon", `joy-icon--${e.color}`, `joy-icon--${e.size}`])
80
80
  }, [
81
81
  g("i", {
82
- class: S(["icon", `icon-${e.name}`])
82
+ class: w(["icon", `icon-${e.name}`])
83
83
  }, null, 2)
84
84
  ], 2));
85
85
  }
@@ -145,10 +145,10 @@ const bt = ["primary", "secondary"], _t = ["neutral", "success", "info", "warnin
145
145
  return "small";
146
146
  }
147
147
  }), a = L(() => ["white", "ghost", "secondary"].includes(t.variant) ? "teal" : "white");
148
- return (r, s) => (v(), x(ce(w(l).href ? "a" : "button"), {
149
- disabled: e.loading || w(l).disabled,
150
- type: w(l).type || "button",
151
- class: S([
148
+ return (r, s) => (v(), x(ce(k(l).href ? "a" : "button"), {
149
+ disabled: e.loading || k(l).disabled,
150
+ type: k(l).type || "button",
151
+ class: w([
152
152
  "joy-button",
153
153
  `joy-button_${e.variant}`,
154
154
  `joy-button_${e.size}`,
@@ -163,11 +163,11 @@ const bt = ["primary", "secondary"], _t = ["neutral", "success", "info", "warnin
163
163
  key: 0,
164
164
  class: "joy-button_icon joy-button_icon--left",
165
165
  name: e.icon,
166
- size: w(o)
166
+ size: o.value
167
167
  }, null, 8, ["name", "size"])) : _("", !0),
168
168
  e.loading ? (v(), x(pe, {
169
169
  key: 1,
170
- color: w(a)
170
+ color: a.value
171
171
  }, null, 8, ["color"])) : _("", !0),
172
172
  g("span", kt, [
173
173
  h(r.$slots, "default", {}, () => [
@@ -178,7 +178,7 @@ const bt = ["primary", "secondary"], _t = ["neutral", "success", "info", "warnin
178
178
  key: 2,
179
179
  class: "joy-button_icon joy-button_icon--right",
180
180
  name: e.icon,
181
- size: w(o)
181
+ size: o.value
182
182
  }, null, 8, ["name", "size"])) : _("", !0)
183
183
  ]),
184
184
  _: 3
@@ -253,7 +253,7 @@ const Ue = /* @__PURE__ */ V($t, [["__scopeId", "data-v-ae0676bb"]]), Vt = ["ari
253
253
  "aria-hidden": e.disabled
254
254
  }, [
255
255
  g("label", {
256
- class: S([
256
+ class: w([
257
257
  "joy-checkbox",
258
258
  {
259
259
  "joy-checkbox__checked": e.checked,
@@ -384,8 +384,8 @@ const he = /* @__PURE__ */ V(Lt, [["__scopeId", "data-v-e8b172ed"]]), Et = { cla
384
384
  a.value = !u();
385
385
  }
386
386
  function c(d = !0) {
387
- const k = o.step.toString().split("."), j = k.length === 2 ? k[1].length : 0;
388
- return parseFloat(d ? (o.modelValue + o.step).toFixed(j) : (o.modelValue - o.step).toFixed(j));
387
+ const j = o.step.toString().split("."), S = j.length === 2 ? j[1].length : 0;
388
+ return parseFloat(d ? (o.modelValue + o.step).toFixed(S) : (o.modelValue - o.step).toFixed(S));
389
389
  }
390
390
  function u() {
391
391
  return m() && i();
@@ -409,8 +409,8 @@ const he = /* @__PURE__ */ V(Lt, [["__scopeId", "data-v-e8b172ed"]]), Et = { cla
409
409
  };
410
410
  return t({
411
411
  props: o
412
- }), (d, k) => (v(), p("div", Et, [
413
- e.label ? (v(), x(w(W), {
412
+ }), (d, j) => (v(), p("div", Et, [
413
+ e.label ? (v(), x(k(W), {
414
414
  key: 0,
415
415
  for: e.id,
416
416
  required: e.required && e.requiredMark,
@@ -425,7 +425,7 @@ const he = /* @__PURE__ */ V(Lt, [["__scopeId", "data-v-e8b172ed"]]), Et = { cla
425
425
  _: 3
426
426
  }, 8, ["for", "required", "optional-label", "size"])) : _("", !0),
427
427
  g("div", {
428
- class: S(["joy-counter__wrapper", { "joy-counter--focusing": r.value }])
428
+ class: w(["joy-counter__wrapper", { "joy-counter--focusing": r.value }])
429
429
  }, [
430
430
  g("button", {
431
431
  class: "joy-counter__decrement",
@@ -434,7 +434,7 @@ const he = /* @__PURE__ */ V(Lt, [["__scopeId", "data-v-e8b172ed"]]), Et = { cla
434
434
  disabled: e.modelValue <= e.min,
435
435
  onClick: s
436
436
  }, [
437
- N(w(R), { name: "minus" })
437
+ N(k(R), { name: "minus" })
438
438
  ], 8, Ct),
439
439
  g("div", Jt, [
440
440
  g("input", Y({
@@ -450,12 +450,12 @@ const he = /* @__PURE__ */ V(Lt, [["__scopeId", "data-v-e8b172ed"]]), Et = { cla
450
450
  step: "any",
451
451
  value: e.modelValue
452
452
  }, d.$attrs, {
453
- onInput: k[0] || (k[0] = //@ts-ignore
454
- (...j) => y.onInput && y.onInput(...j)),
455
- onBlur: k[1] || (k[1] = //@ts-ignore
456
- (...j) => y.onBlur && y.onBlur(...j)),
457
- onFocus: k[2] || (k[2] = //@ts-ignore
458
- (...j) => y.onFocus && y.onFocus(...j))
453
+ onInput: j[0] || (j[0] = //@ts-ignore
454
+ (...S) => y.onInput && y.onInput(...S)),
455
+ onBlur: j[1] || (j[1] = //@ts-ignore
456
+ (...S) => y.onBlur && y.onBlur(...S)),
457
+ onFocus: j[2] || (j[2] = //@ts-ignore
458
+ (...S) => y.onFocus && y.onFocus(...S))
459
459
  }), null, 16, Pt)
460
460
  ]),
461
461
  g("button", {
@@ -465,10 +465,10 @@ const he = /* @__PURE__ */ V(Lt, [["__scopeId", "data-v-e8b172ed"]]), Et = { cla
465
465
  disabled: e.max ? e.modelValue >= e.max : !1,
466
466
  onClick: n
467
467
  }, [
468
- N(w(R), { name: "add" })
468
+ N(k(R), { name: "add" })
469
469
  ], 8, Tt),
470
470
  e.invalid && e.errorMessage ? (v(), p("div", qt, [
471
- N(w(tt), { "no-html-error-text": e.errorMessage }, null, 8, ["no-html-error-text"])
471
+ N(k(tt), { "no-html-error-text": e.errorMessage }, null, 8, ["no-html-error-text"])
472
472
  ])) : _("", !0)
473
473
  ], 2)
474
474
  ]));
@@ -479,7 +479,7 @@ var we;
479
479
  const K = typeof window < "u", Ge = (e) => typeof e == "string", z = () => {
480
480
  }, le = K && ((we = window == null ? void 0 : window.navigator) == null ? void 0 : we.userAgent) && /iP(ad|hone|od)/.test(window.navigator.userAgent);
481
481
  function P(e) {
482
- return typeof e == "function" ? e() : w(e);
482
+ return typeof e == "function" ? e() : k(e);
483
483
  }
484
484
  function Ke(e, t) {
485
485
  function l(...o) {
@@ -512,9 +512,9 @@ function Rt(e, t = !0, l = !0, o = !1) {
512
512
  };
513
513
  return (m) => {
514
514
  const i = P(e), y = Date.now() - a, d = () => f = m();
515
- return c(), i <= 0 ? (a = Date.now(), d()) : (y > i && (l || !s) ? (a = Date.now(), d()) : t && (f = new Promise((k, j) => {
516
- n = o ? j : k, r = setTimeout(() => {
517
- a = Date.now(), s = !0, k(d()), c();
515
+ return c(), i <= 0 ? (a = Date.now(), d()) : (y > i && (l || !s) ? (a = Date.now(), d()) : t && (f = new Promise((j, S) => {
516
+ n = o ? S : j, r = setTimeout(() => {
517
+ a = Date.now(), s = !0, j(d()), c();
518
518
  }, Math.max(0, i - y));
519
519
  })), !l && !r && (r = setTimeout(() => s = !0, i)), s = !1, f);
520
520
  };
@@ -922,30 +922,30 @@ function de(e, t = {}) {
922
922
  behavior: P(f)
923
923
  }));
924
924
  }
925
- const d = b(!1), k = te({
925
+ const d = b(!1), j = te({
926
926
  left: !0,
927
927
  right: !1,
928
928
  top: !0,
929
929
  bottom: !1
930
- }), j = te({
930
+ }), S = te({
931
931
  left: !1,
932
932
  right: !1,
933
933
  top: !1,
934
934
  bottom: !1
935
935
  }), ee = (E) => {
936
- d.value && (d.value = !1, j.left = !1, j.right = !1, j.top = !1, j.bottom = !1, a(E));
936
+ d.value && (d.value = !1, S.left = !1, S.right = !1, S.top = !1, S.bottom = !1, a(E));
937
937
  }, oe = Nt(ee, l + o), O = (E) => {
938
938
  const q = E.target === document ? E.target.documentElement : E.target, D = q.scrollLeft;
939
- j.left = D < c.value, j.right = D > u.value, k.left = D <= 0 + (s.left || 0), k.right = D + q.clientWidth >= q.scrollWidth - (s.right || 0) - Pe, c.value = D;
939
+ S.left = D < c.value, S.right = D > u.value, j.left = D <= 0 + (s.left || 0), j.right = D + q.clientWidth >= q.scrollWidth - (s.right || 0) - Pe, c.value = D;
940
940
  let F = q.scrollTop;
941
- E.target === document && !F && (F = document.body.scrollTop), j.top = F < u.value, j.bottom = F > u.value, k.top = F <= 0 + (s.top || 0), k.bottom = F + q.clientHeight >= q.scrollHeight - (s.bottom || 0) - Pe, u.value = F, d.value = !0, oe(E), r(E);
941
+ E.target === document && !F && (F = document.body.scrollTop), S.top = F < u.value, S.bottom = F > u.value, j.top = F <= 0 + (s.top || 0), j.bottom = F + q.clientHeight >= q.scrollHeight - (s.bottom || 0) - Pe, u.value = F, d.value = !0, oe(E), r(E);
942
942
  };
943
943
  return A(e, "scroll", l ? Ht(O, l, !0, !1) : O, n), A(e, "scrollend", ee, n), {
944
944
  x: m,
945
945
  y: i,
946
946
  isScrolling: d,
947
- arrivedState: k,
948
- directions: j
947
+ arrivedState: j,
948
+ directions: S
949
949
  };
950
950
  }
951
951
  var gl = Object.defineProperty, bl = Object.defineProperties, _l = Object.getOwnPropertyDescriptors, Te = Object.getOwnPropertySymbols, wl = Object.prototype.hasOwnProperty, Sl = Object.prototype.propertyIsEnumerable, qe = (e, t, l) => t in e ? gl(e, t, { enumerable: !0, configurable: !0, writable: !0, value: l }) : e[t] = l, ze = (e, t) => {
@@ -1144,10 +1144,10 @@ const Xe = ["medium", "small"], Jl = {
1144
1144
  l("update:modelValue", d.dataModel);
1145
1145
  }
1146
1146
  if (c() && i.key === " " && i.preventDefault(), ["ArrowDown", "ArrowUp", "Home", "End"].includes(i.key)) {
1147
- const d = n(), k = c();
1148
- let j = d.indexOf(k);
1147
+ const d = n(), j = c();
1148
+ let S = d.indexOf(j);
1149
1149
  if (d.length) {
1150
- i.preventDefault(), i.key === "ArrowDown" ? j++ : i.key === "ArrowUp" ? j-- : i.key === "Home" ? j = 0 : i.key === "End" && (j = d.length - 1), j < 0 && (j = d.length - 1), j > d.length - 1 && (j = 0), m(d[j]);
1150
+ i.preventDefault(), i.key === "ArrowDown" ? S++ : i.key === "ArrowUp" ? S-- : i.key === "Home" ? S = 0 : i.key === "End" && (S = d.length - 1), S < 0 && (S = d.length - 1), S > d.length - 1 && (S = 0), m(d[S]);
1151
1151
  return;
1152
1152
  }
1153
1153
  }
@@ -1169,7 +1169,7 @@ const Xe = ["medium", "small"], Jl = {
1169
1169
  h(i.$slots, "dropdown-list-header", {}, void 0, !0)
1170
1170
  ])) : _("", !0),
1171
1171
  g("div", {
1172
- class: S(["joy-dropdown-list__items", { "joy-dropdown-list__items-slotted": i.$slots["dropdown-list-items"] }]),
1172
+ class: w(["joy-dropdown-list__items", { "joy-dropdown-list__items-slotted": i.$slots["dropdown-list-items"] }]),
1173
1173
  style: Z({ "max-height": `${e.height}px` })
1174
1174
  }, [
1175
1175
  h(i.$slots, "dropdown-list-items", {}, void 0, !0),
@@ -1183,22 +1183,22 @@ const Xe = ["medium", "small"], Jl = {
1183
1183
  id: d.id,
1184
1184
  key: d.label,
1185
1185
  style: Z({ "max-width": `${e.width}px` }),
1186
- class: S([
1186
+ class: w([
1187
1187
  "joy-dropdown-list__item",
1188
1188
  `joy-dropdown-list__item--${e.size}`,
1189
1189
  {
1190
- "joy-dropdown-list__item--selected": w(r)(d),
1190
+ "joy-dropdown-list__item--selected": r.value(d),
1191
1191
  "joy-dropdown-list__item--disabled": d.disabled
1192
1192
  }
1193
1193
  ]),
1194
1194
  tabindex: d.disabled ? void 0 : 0,
1195
1195
  "aria-disabled": d.disabled,
1196
- "aria-selected": w(r)(d),
1196
+ "aria-selected": r.value(d),
1197
1197
  title: d.label,
1198
1198
  "aria-label": d.label,
1199
1199
  ".dataModel": d.value || d.id,
1200
1200
  role: "option",
1201
- onClick: (k) => s(d)
1201
+ onClick: (j) => s(d)
1202
1202
  }, [
1203
1203
  h(i.$slots, "label", ve(me(d)), () => [
1204
1204
  g("span", null, I(d.label), 1)
@@ -1317,10 +1317,10 @@ const Al = /* @__PURE__ */ $({
1317
1317
  function d(O) {
1318
1318
  c.value = !1, m && clearTimeout(m), ee(), f.value = O.target, a.value = !0, l("dropdown:open");
1319
1319
  }
1320
- function k() {
1321
- y(), j();
1322
- }
1323
1320
  function j() {
1321
+ y(), S();
1322
+ }
1323
+ function S() {
1324
1324
  f.value && f.value.focus();
1325
1325
  }
1326
1326
  function ee() {
@@ -1328,11 +1328,11 @@ const Al = /* @__PURE__ */ $({
1328
1328
  o.justify === "left" ? i.left = D + "px" : i.left = D + F - parseInt(o.width) + "px", o.direction === "down" ? i.top = E + q + parseInt(o.dropdownGap) + "px" : i.top = E - (parseInt(o.height) + parseInt(o.dropdownGap)) + "px";
1329
1329
  }
1330
1330
  function oe(O) {
1331
- l("update:modelValue", O), o.closeOnSelect && (y(), j());
1331
+ l("update:modelValue", O), o.closeOnSelect && (y(), S());
1332
1332
  }
1333
1333
  return zl(y), t({
1334
1334
  showDropdownList: a
1335
- }), (O, E) => (v(), x(w(al), {
1335
+ }), (O, E) => (v(), x(k(al), {
1336
1336
  ref_key: "dropdown",
1337
1337
  ref: r,
1338
1338
  options: u,
@@ -1356,7 +1356,7 @@ const Al = /* @__PURE__ */ $({
1356
1356
  key: 0,
1357
1357
  ref_key: "list",
1358
1358
  ref: n,
1359
- class: S([
1359
+ class: w([
1360
1360
  "joy-dropdown__list",
1361
1361
  `joy-dropdown__list--${e.direction}`,
1362
1362
  {
@@ -1376,7 +1376,7 @@ const Al = /* @__PURE__ */ $({
1376
1376
  width: e.width,
1377
1377
  height: e.height,
1378
1378
  "onUpdate:modelValue": oe,
1379
- "onClose:dropdownList": k
1379
+ "onClose:dropdownList": j
1380
1380
  }, We({
1381
1381
  label: B((q) => [
1382
1382
  h(O.$slots, "dropdown-item", ve(me(q)), () => [
@@ -1428,7 +1428,7 @@ const Fl = /* @__PURE__ */ V(Al, [["__scopeId", "data-v-2657fbc4"]]), Dl = ["ari
1428
1428
  setup(e) {
1429
1429
  return (t, l) => (v(), p("div", {
1430
1430
  "aria-hidden": e.visible,
1431
- class: S(["joy-form-error", { "joy-has-error": e.visible }]),
1431
+ class: w(["joy-form-error", { "joy-has-error": e.visible }]),
1432
1432
  role: "alert"
1433
1433
  }, [
1434
1434
  N(R, {
@@ -1485,7 +1485,7 @@ const Nl = [..._t], Hl = { class: "joy-highlight--text" }, Wl = { key: 0 }, Ul =
1485
1485
  return t({
1486
1486
  getRelevantIcon: o
1487
1487
  }), (a, r) => (v(), p("div", {
1488
- class: S([
1488
+ class: w([
1489
1489
  "joy-highlight",
1490
1490
  `joy-highlight_${e.level}`,
1491
1491
  {
@@ -1496,7 +1496,7 @@ const Nl = [..._t], Hl = { class: "joy-highlight--text" }, Wl = { key: 0 }, Ul =
1496
1496
  }, [
1497
1497
  e.displayIcon ? (v(), x(R, {
1498
1498
  key: 0,
1499
- name: w(o)
1499
+ name: o.value
1500
1500
  }, null, 8, ["name"])) : _("", !0),
1501
1501
  g("div", Hl, [
1502
1502
  a.$slots["highlight-title"] ? (v(), p("strong", Wl, [
@@ -1640,20 +1640,20 @@ const W = /* @__PURE__ */ V(Yl, [["__scopeId", "data-v-1265214a"]]), Xl = ["larg
1640
1640
  return (y, d) => (v(), p("div", {
1641
1641
  ref_key: "root",
1642
1642
  ref: a,
1643
- class: S([`joy-input--${l.size}`])
1643
+ class: w([`joy-input--${l.size}`])
1644
1644
  }, [
1645
1645
  g("div", {
1646
- class: S([
1646
+ class: w([
1647
1647
  "joy-input",
1648
1648
  {
1649
1649
  "joy-input--focusing": n.value,
1650
1650
  "joy-input--disabled": e.disabled,
1651
1651
  "joy-input--invalid": e.invalid,
1652
- "joy-input--valid": !e.invalid && !w(r).disabled
1652
+ "joy-input--valid": !e.invalid && !k(r).disabled
1653
1653
  }
1654
1654
  ])
1655
1655
  }, [
1656
- w(c) || e.label ? (v(), x(W, {
1656
+ c.value || e.label ? (v(), x(W, {
1657
1657
  key: 0,
1658
1658
  for: e.name,
1659
1659
  required: e.required && e.requiredMark,
@@ -1668,13 +1668,13 @@ const W = /* @__PURE__ */ V(Yl, [["__scopeId", "data-v-1265214a"]]), Xl = ["larg
1668
1668
  _: 3
1669
1669
  }, 8, ["for", "required", "optional-label", "size"])) : _("", !0),
1670
1670
  g("div", {
1671
- class: S([
1671
+ class: w([
1672
1672
  "joy-input--wrapper",
1673
1673
  {
1674
1674
  "joy-input--wrapper-has-icon": !!e.icon,
1675
1675
  "joy-input--wrapper---clearable": e.clearable,
1676
1676
  "joy-input--wrapper-unit": !!e.unit,
1677
- "joy-input--wrapper-margin": !w(u)
1677
+ "joy-input--wrapper-margin": !u.value
1678
1678
  }
1679
1679
  ])
1680
1680
  }, [
@@ -1692,13 +1692,13 @@ const W = /* @__PURE__ */ V(Yl, [["__scopeId", "data-v-1265214a"]]), Xl = ["larg
1692
1692
  type: m.value,
1693
1693
  value: e.modelValue,
1694
1694
  onFocus: d[0] || (d[0] = //@ts-ignore
1695
- (...k) => i.onFocus && i.onFocus(...k)),
1695
+ (...j) => i.onFocus && i.onFocus(...j)),
1696
1696
  onBlur: d[1] || (d[1] = //@ts-ignore
1697
- (...k) => i.onBlur && i.onBlur(...k)),
1697
+ (...j) => i.onBlur && i.onBlur(...j)),
1698
1698
  onInput: d[2] || (d[2] = //@ts-ignore
1699
- (...k) => i.onInput && i.onInput(...k))
1699
+ (...j) => i.onInput && i.onInput(...j))
1700
1700
  }), null, 16, eo),
1701
- w(f) ? (v(), x(Ue, {
1701
+ f.value ? (v(), x(Ue, {
1702
1702
  key: 0,
1703
1703
  class: "joy-input--clear",
1704
1704
  circle: "",
@@ -1757,7 +1757,7 @@ const no = /* @__PURE__ */ V(oo, [["__scopeId", "data-v-c37d9a7a"]]), ao = ["tea
1757
1757
  }
1758
1758
  });
1759
1759
  const so = /* @__PURE__ */ V(ro, [["__scopeId", "data-v-a8db21c2"]]), uo = ["id"], co = {
1760
- class: /* @__PURE__ */ S(["joy-multi-checkbox"])
1760
+ class: /* @__PURE__ */ w(["joy-multi-checkbox"])
1761
1761
  }, fo = /* @__PURE__ */ $({
1762
1762
  __name: "VJoyMultiCheckbox",
1763
1763
  props: {
@@ -1805,7 +1805,7 @@ const so = /* @__PURE__ */ V(ro, [["__scopeId", "data-v-a8db21c2"]]), uo = ["id"
1805
1805
  id: e.id,
1806
1806
  class: "joy-multi-checkbox__wrapper"
1807
1807
  }, [
1808
- e.label ? (v(), x(w(W), {
1808
+ e.label ? (v(), x(k(W), {
1809
1809
  key: 0,
1810
1810
  "tag-name": "legend",
1811
1811
  required: e.required && e.requiredMark,
@@ -1818,7 +1818,7 @@ const so = /* @__PURE__ */ V(ro, [["__scopeId", "data-v-a8db21c2"]]), uo = ["id"
1818
1818
  _: 1
1819
1819
  }, 8, ["required", "optional-label", "size"])) : _("", !0),
1820
1820
  g("div", co, [
1821
- (v(!0), p(fe, null, ye(e.options, (n) => (v(), x(w(he), {
1821
+ (v(!0), p(fe, null, ye(e.options, (n) => (v(), x(k(he), {
1822
1822
  id: n.id,
1823
1823
  key: n.id,
1824
1824
  name: n.name,
@@ -1839,7 +1839,7 @@ const so = /* @__PURE__ */ V(ro, [["__scopeId", "data-v-a8db21c2"]]), uo = ["id"
1839
1839
  });
1840
1840
  const yo = /* @__PURE__ */ V(fo, [["__scopeId", "data-v-47574ced"]]), vo = ["small", "medium", "large"], mo = ["small", "large"], po = {
1841
1841
  key: 0,
1842
- class: /* @__PURE__ */ S(["joy-panel__header"])
1842
+ class: /* @__PURE__ */ w(["joy-panel__header"])
1843
1843
  }, ho = {
1844
1844
  key: 1,
1845
1845
  class: "joy-panel__header-action"
@@ -1888,36 +1888,36 @@ const yo = /* @__PURE__ */ V(fo, [["__scopeId", "data-v-47574ced"]]), vo = ["sma
1888
1888
  ref_key: "panel",
1889
1889
  ref: a,
1890
1890
  style: Z({ flex: e.flex }),
1891
- class: S([
1891
+ class: w([
1892
1892
  "joy-panel",
1893
1893
  `joy-panel--${e.padding}`,
1894
1894
  {
1895
- "joy-panel--no-margin": e.noMargin || w(l),
1895
+ "joy-panel--no-margin": e.noMargin || l.value,
1896
1896
  "joy-panel--loading": e.loading
1897
1897
  }
1898
1898
  ])
1899
1899
  }, [
1900
- w(r) ? (v(), p("header", po, [
1901
- w(o)["panel-title"] ? (v(), p("div", {
1900
+ r.value ? (v(), p("header", po, [
1901
+ k(o)["panel-title"] ? (v(), p("div", {
1902
1902
  key: 0,
1903
- class: S(["joy-panel__header-title", `joy-panel__header-title--${e.titleSize}`])
1903
+ class: w(["joy-panel__header-title", `joy-panel__header-title--${e.titleSize}`])
1904
1904
  }, [
1905
1905
  h(s.$slots, "panel-title", {}, void 0, !0)
1906
1906
  ], 2)) : _("", !0),
1907
- w(o)["panel-title-action"] ? (v(), p("div", ho, [
1907
+ k(o)["panel-title-action"] ? (v(), p("div", ho, [
1908
1908
  h(s.$slots, "panel-title-action", {}, void 0, !0)
1909
1909
  ])) : _("", !0),
1910
- w(o)["panel-subtitle"] ? (v(), p("div", go, [
1910
+ k(o)["panel-subtitle"] ? (v(), p("div", go, [
1911
1911
  h(s.$slots, "panel-subtitle", {}, void 0, !0)
1912
1912
  ])) : _("", !0)
1913
1913
  ])) : _("", !0),
1914
1914
  g("div", bo, [
1915
1915
  h(s.$slots, "panel-body", {}, void 0, !0)
1916
1916
  ]),
1917
- w(o)["panel-action"] ? (v(), p("footer", _o, [
1917
+ k(o)["panel-action"] ? (v(), p("footer", _o, [
1918
1918
  h(s.$slots, "panel-action", {}, void 0, !0)
1919
1919
  ])) : _("", !0),
1920
- e.loading ? (v(), x(w(be), {
1920
+ e.loading ? (v(), x(k(be), {
1921
1921
  key: 2,
1922
1922
  overlay: "",
1923
1923
  color: e.loadingColor
@@ -1941,10 +1941,10 @@ const So = /* @__PURE__ */ V(wo, [["__scopeId", "data-v-2e3a2baa"]]), jo = { cla
1941
1941
  setup(e) {
1942
1942
  const t = G();
1943
1943
  return (l, o) => (v(), p("div", jo, [
1944
- w(t)["panel-section-title"] ? (v(), p("div", ko, [
1944
+ k(t)["panel-section-title"] ? (v(), p("div", ko, [
1945
1945
  h(l.$slots, "panel-section-title", {}, void 0, !0)
1946
1946
  ])) : _("", !0),
1947
- w(t)["panel-section-content"] ? (v(), p("div", $o, [
1947
+ k(t)["panel-section-content"] ? (v(), p("div", $o, [
1948
1948
  h(l.$slots, "panel-section-content", {}, void 0, !0)
1949
1949
  ])) : _("", !0)
1950
1950
  ]));
@@ -2010,14 +2010,14 @@ const xo = /* @__PURE__ */ V(Vo, [["__scopeId", "data-v-d88510ab"]]), Io = ["id"
2010
2010
  ), t({
2011
2011
  checked: c,
2012
2012
  isExpanded: a
2013
- }), (d, k) => (v(), p("label", {
2013
+ }), (d, j) => (v(), p("label", {
2014
2014
  ref_key: "root",
2015
2015
  ref: s,
2016
- class: S([
2016
+ class: w([
2017
2017
  "joy-radio",
2018
2018
  `joy-radio--${e.theme}`,
2019
2019
  {
2020
- "joy-radio--checked": w(c),
2020
+ "joy-radio--checked": c.value,
2021
2021
  "joy-radio--disabled": e.disabled,
2022
2022
  "joy-radio--invalid": e.invalid,
2023
2023
  "joy-radio--outline-focus": r.value && e.theme === "outline",
@@ -2029,7 +2029,7 @@ const xo = /* @__PURE__ */ V(Vo, [["__scopeId", "data-v-d88510ab"]]), Io = ["id"
2029
2029
  id: e.id,
2030
2030
  type: "radio",
2031
2031
  value: e.value,
2032
- checked: w(c),
2032
+ checked: c.value,
2033
2033
  disabled: e.disabled,
2034
2034
  required: e.required,
2035
2035
  name: e.name,
@@ -2047,7 +2047,7 @@ const xo = /* @__PURE__ */ V(Vo, [["__scopeId", "data-v-d88510ab"]]), Io = ["id"
2047
2047
  g("div", {
2048
2048
  ref_key: "expandableElement",
2049
2049
  ref: n,
2050
- class: S(["joy-radio-expandable", { "joy-radio-expandable--expanded": a.value }])
2050
+ class: w(["joy-radio-expandable", { "joy-radio-expandable--expanded": a.value }])
2051
2051
  }, [
2052
2052
  h(d.$slots, "expandable-content", {}, void 0, !0)
2053
2053
  ], 2)
@@ -2085,7 +2085,7 @@ const Co = /* @__PURE__ */ V(Eo, [["__scopeId", "data-v-24cea99b"]]), Jo = ["for
2085
2085
  }, [
2086
2086
  h(t.$slots, "radio-group-legend", {}, void 0, !0),
2087
2087
  g("div", {
2088
- class: S(["joy-radio-group-container", `joy-radio-group-${e.direction}`])
2088
+ class: w(["joy-radio-group-container", `joy-radio-group-${e.direction}`])
2089
2089
  }, [
2090
2090
  h(t.$slots, "default", {}, void 0, !0)
2091
2091
  ], 2)
@@ -2111,7 +2111,7 @@ const To = /* @__PURE__ */ V(Po, [["__scopeId", "data-v-a77e7f95"]]), qo = { cla
2111
2111
  },
2112
2112
  setup(e) {
2113
2113
  return (t, l) => (v(), p("div", {
2114
- class: S(["joy-screen-loader", `joy-screen-loader--${e.color}`, { "joy-screen-loader--overlay": e.overlay }])
2114
+ class: w(["joy-screen-loader", `joy-screen-loader--${e.color}`, { "joy-screen-loader--overlay": e.overlay }])
2115
2115
  }, [
2116
2116
  g("div", qo, [
2117
2117
  h(t.$slots, "spinner", {}, () => [
@@ -2212,7 +2212,7 @@ const be = /* @__PURE__ */ V(Ao, [["__scopeId", "data-v-5c4f6d7f"]]), Fo = ["id"
2212
2212
  }, 8, ["required", "optional-label", "for", "size"])) : _("", !0)
2213
2213
  ], !0),
2214
2214
  g("div", {
2215
- class: S({
2215
+ class: w({
2216
2216
  "joy-select__wrapper": !0,
2217
2217
  "joy-select--invalid": e.invalid,
2218
2218
  "joy-select--disabled": e.disabled,
@@ -2301,7 +2301,7 @@ const Ro = /* @__PURE__ */ V(Do, [["__scopeId", "data-v-b1af08d1"]]), Mo = ["ari
2301
2301
  t("update:checked", c);
2302
2302
  }
2303
2303
  return (c, u) => (v(), p("div", {
2304
- class: S([
2304
+ class: w([
2305
2305
  "joy-selectable-item__wrapper",
2306
2306
  {
2307
2307
  "joy-selectable-item--focusing": r.value
@@ -2329,9 +2329,9 @@ const Ro = /* @__PURE__ */ V(Do, [["__scopeId", "data-v-b1af08d1"]]), Mo = ["ari
2329
2329
  onBlur: u[2] || (u[2] = //@ts-ignore
2330
2330
  (...m) => n.onBlur && n.onBlur(...m))
2331
2331
  }, null, 40, No)),
2332
- (v(), x(ce(w(s)), {
2332
+ (v(), x(ce(k(s)), {
2333
2333
  for: e.id,
2334
- class: S([
2334
+ class: w([
2335
2335
  "joy-selectable-item",
2336
2336
  {
2337
2337
  "joy-selectable-item--disabled": e.disabled,
@@ -2343,7 +2343,7 @@ const Ro = /* @__PURE__ */ V(Do, [["__scopeId", "data-v-b1af08d1"]]), Mo = ["ari
2343
2343
  onClick: n.onLabelClick
2344
2344
  }, {
2345
2345
  default: B(() => [
2346
- e.multiple ? (v(), x(w(he), {
2346
+ e.multiple ? (v(), x(k(he), {
2347
2347
  key: 0,
2348
2348
  id: e.id,
2349
2349
  checked: o.value,
@@ -2366,7 +2366,7 @@ const Ro = /* @__PURE__ */ V(Do, [["__scopeId", "data-v-b1af08d1"]]), Mo = ["ari
2366
2366
  }, 8, ["id", "checked", "disabled", "value", "name", "required", "onFocus", "onBlur"])) : _("", !0),
2367
2367
  e.multiple ? _("", !0) : h(c.$slots, "default", { key: 1 }, void 0, !0),
2368
2368
  g("div", {
2369
- class: S([{ "joy-selectable-item__sublabel": c.$slots["selectable-item-sublabel"] }])
2369
+ class: w([{ "joy-selectable-item__sublabel": c.$slots["selectable-item-sublabel"] }])
2370
2370
  }, [
2371
2371
  h(c.$slots, "selectable-item-sublabel", {}, void 0, !0)
2372
2372
  ], 2)
@@ -2431,7 +2431,7 @@ const lt = /* @__PURE__ */ V(Ho, [["__scopeId", "data-v-cb2531c0"]]), Wo = ["id"
2431
2431
  id: e.id,
2432
2432
  class: "joy-selectable-item-group__wrapper"
2433
2433
  }, [
2434
- e.label ? (v(), x(w(W), {
2434
+ e.label ? (v(), x(k(W), {
2435
2435
  key: 0,
2436
2436
  "tag-name": "legend",
2437
2437
  required: e.required && e.requiredMark,
@@ -2444,7 +2444,7 @@ const lt = /* @__PURE__ */ V(Ho, [["__scopeId", "data-v-cb2531c0"]]), Wo = ["id"
2444
2444
  _: 1
2445
2445
  }, 8, ["required", "optional-label", "size"])) : _("", !0),
2446
2446
  g("div", {
2447
- class: S([
2447
+ class: w([
2448
2448
  "joy-selectable-item-group",
2449
2449
  {
2450
2450
  "joy-selectable-item-group--multiple": e.multiple,
@@ -2453,7 +2453,7 @@ const lt = /* @__PURE__ */ V(Ho, [["__scopeId", "data-v-cb2531c0"]]), Wo = ["id"
2453
2453
  }
2454
2454
  ])
2455
2455
  }, [
2456
- (v(!0), p(fe, null, ye(e.options, (n) => (v(), x(w(lt), {
2456
+ (v(!0), p(fe, null, ye(e.options, (n) => (v(), x(k(lt), {
2457
2457
  id: n.id,
2458
2458
  key: n.id,
2459
2459
  name: n.name,
@@ -2515,7 +2515,7 @@ const Go = /* @__PURE__ */ V(Uo, [["__scopeId", "data-v-0730aed0"]]), Ko = /* @_
2515
2515
  },
2516
2516
  setup(e) {
2517
2517
  return ct("VJoyWrapperContext", e), (l, o) => (v(), p("div", {
2518
- class: S([
2518
+ class: w([
2519
2519
  "joy-wrapper",
2520
2520
  `joy-wrapper--justify-${e.justify}`,
2521
2521
  `joy-wrapper--align-${e.align}`,
@@ -2567,27 +2567,27 @@ const Qo = /* @__PURE__ */ V(Ko, [["__scopeId", "data-v-e2f29698"]]), Zo = { cla
2567
2567
  setup(e) {
2568
2568
  const t = e, l = G(), o = L(() => !!l["template-back"] || !!l["template-title"] || !!l["template-subtitle"] || !!l["template-actions"]);
2569
2569
  return (a, r) => (v(), p("main", {
2570
- class: S(["joy-template", { "joy-template--full": e.full, "joy-template--loading": e.loading }])
2570
+ class: w(["joy-template", { "joy-template--full": e.full, "joy-template--loading": e.loading }])
2571
2571
  }, [
2572
2572
  g("div", Zo, [
2573
- w(o) ? (v(), p("div", Yo, [
2574
- w(l)["template-back"] ? (v(), p("div", Xo, [
2573
+ o.value ? (v(), p("div", Yo, [
2574
+ k(l)["template-back"] ? (v(), p("div", Xo, [
2575
2575
  h(a.$slots, "template-back", {}, void 0, !0)
2576
2576
  ])) : _("", !0),
2577
2577
  g("div", en, [
2578
- w(l)["template-title"] ? (v(), p("div", tn, [
2578
+ k(l)["template-title"] ? (v(), p("div", tn, [
2579
2579
  h(a.$slots, "template-title", {}, void 0, !0)
2580
2580
  ])) : _("", !0),
2581
- w(l)["template-subtitle"] ? (v(), p("div", ln, [
2581
+ k(l)["template-subtitle"] ? (v(), p("div", ln, [
2582
2582
  h(a.$slots, "template-subtitle", {}, void 0, !0)
2583
2583
  ])) : _("", !0)
2584
2584
  ]),
2585
- w(l)["template-actions"] ? (v(), p("div", on, [
2585
+ k(l)["template-actions"] ? (v(), p("div", on, [
2586
2586
  h(a.$slots, "template-actions", {}, void 0, !0)
2587
2587
  ])) : _("", !0)
2588
2588
  ])) : _("", !0),
2589
2589
  g("div", {
2590
- class: S([
2590
+ class: w([
2591
2591
  "joy-template__content",
2592
2592
  {
2593
2593
  "joy-template__content--reverse": t.sidebar === "left"
@@ -2689,7 +2689,7 @@ const sn = /* @__PURE__ */ V(rn, [["__scopeId", "data-v-a2355e4b"]]), un = ["ari
2689
2689
  valueUnderMinlength: c
2690
2690
  }), (m, i) => (v(), p("div", {
2691
2691
  "aria-disabled": e.disabled,
2692
- class: S([
2692
+ class: w([
2693
2693
  "joy-textarea",
2694
2694
  {
2695
2695
  "joy-textarea_invalid": s.value || e.invalid,
@@ -2699,7 +2699,7 @@ const sn = /* @__PURE__ */ V(rn, [["__scopeId", "data-v-a2355e4b"]]), un = ["ari
2699
2699
  }
2700
2700
  ])
2701
2701
  }, [
2702
- N(w(W), {
2702
+ N(k(W), {
2703
2703
  for: e.id,
2704
2704
  required: e.required && e.requiredMark,
2705
2705
  "optional-label": e.optionalLabel,
@@ -2734,9 +2734,9 @@ const sn = /* @__PURE__ */ V(rn, [["__scopeId", "data-v-a2355e4b"]]), un = ["ari
2734
2734
  e.minlength || e.maxlength ? (v(), p("div", fn, [
2735
2735
  e.minlength ? (v(), p("p", {
2736
2736
  key: 0,
2737
- class: S(["joy-textarea-min", { "joy-textarea-min-invalid": e.invalid }])
2737
+ class: w(["joy-textarea-min", { "joy-textarea-min-invalid": e.invalid }])
2738
2738
  }, [
2739
- w(c) ? _("", !0) : (v(), x(R, {
2739
+ c.value ? _("", !0) : (v(), x(R, {
2740
2740
  key: 0,
2741
2741
  name: "check",
2742
2742
  color: "neutral",
@@ -2746,7 +2746,7 @@ const sn = /* @__PURE__ */ V(rn, [["__scopeId", "data-v-a2355e4b"]]), un = ["ari
2746
2746
  ], 2)) : _("", !0),
2747
2747
  e.maxlength ? (v(), p("p", {
2748
2748
  key: 1,
2749
- class: S(["joy-textarea-count", { "joy-textarea-count-invalid": w(f) }])
2749
+ class: w(["joy-textarea-count", { "joy-textarea-count-invalid": f.value }])
2750
2750
  }, I(e.modelValue.length + "/" + e.maxlength), 3)) : _("", !0)
2751
2751
  ])) : _("", !0)
2752
2752
  ], 10, un));
@@ -2813,7 +2813,7 @@ const mn = /* @__PURE__ */ V(vn, [["__scopeId", "data-v-d0d2c93e"]]), ot = (e) =
2813
2813
  };
2814
2814
  return (a, r) => (v(), p("div", pn, [
2815
2815
  g("label", {
2816
- class: S([
2816
+ class: w([
2817
2817
  "joy-toggle",
2818
2818
  {
2819
2819
  "joy-toggle__checked": e.modelValue,