@quoreadmin/ui 0.27.11 → 0.27.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -17,7 +17,7 @@ var rr = (n, e, t, r) => ({
17
17
  return m(n, e, r);
18
18
  }
19
19
  }), I = (n, e, t) => (d5(n, e, "access private method"), t);
20
- import { defineComponent as ke, computed as ee, resolveComponent as K, openBlock as S, createElementBlock as T, normalizeClass as H, renderSlot as Z, normalizeProps as Yn, guardReactiveProps as Ts, createElementVNode as _, createCommentVNode as $, toDisplayString as ie, createVNode as L, Transition as tn, withCtx as re, ref as V, getCurrentInstance as xo, onMounted as yt, onUnmounted as zi, nextTick as Pr, unref as zr, inject as vr, cloneVNode as e_, h as hn, Fragment as fe, provide as ko, watchEffect as nn, watch as vt, getCurrentScope as t_, onScopeDispose as n_, isRef as r_, shallowRef as yv, reactive as $r, useSlots as x7, onUpdated as cA, pushScopeId as yp, popScopeId as vp, mergeProps as N, readonly as dA, resolveDirective as Bn, renderList as Ee, withDirectives as it, createBlock as j, Text as i_, Teleport as O7, resolveDynamicComponent as ye, withKeys as Nn, toHandlerKey as su, withModifiers as rt, createTextVNode as Ne, normalizeStyle as Y0, onBeforeUnmount as gu, markRaw as s_, customRef as o_, toRaw as fA, vShow as Jo, vModelText as a_, TransitionGroup as l_, toRef as u_, isVNode as c_, createSlots as kd, toHandlers as qp, render as H8 } from "vue";
20
+ import { defineComponent as ke, computed as J, resolveComponent as K, openBlock as S, createElementBlock as T, normalizeClass as H, renderSlot as Z, normalizeProps as Yn, guardReactiveProps as Ts, createElementVNode as _, createCommentVNode as $, toDisplayString as ie, createVNode as L, Transition as tn, withCtx as re, ref as V, getCurrentInstance as xo, onMounted as yt, onUnmounted as zi, nextTick as Pr, unref as zr, inject as vr, cloneVNode as e_, h as hn, Fragment as fe, provide as ko, watchEffect as nn, watch as vt, getCurrentScope as t_, onScopeDispose as n_, isRef as r_, shallowRef as yv, reactive as $r, useSlots as x7, onUpdated as cA, pushScopeId as yp, popScopeId as vp, mergeProps as N, readonly as dA, resolveDirective as Bn, renderList as Ee, withDirectives as it, createBlock as j, Text as i_, Teleport as O7, resolveDynamicComponent as ye, withKeys as Nn, toHandlerKey as su, withModifiers as rt, createTextVNode as Ne, normalizeStyle as Y0, onBeforeUnmount as gu, markRaw as s_, customRef as o_, toRaw as fA, vShow as Jo, vModelText as a_, TransitionGroup as l_, toRef as u_, isVNode as c_, createSlots as kd, toHandlers as qp, render as H8 } from "vue";
21
21
  const d_ = ke({
22
22
  name: "QAccordion",
23
23
  props: {
@@ -50,17 +50,22 @@ const d_ = ke({
50
50
  chevronClass: {
51
51
  type: [String, Array, Object],
52
52
  default: ""
53
+ },
54
+ /** Ability to set a custom size for chevron */
55
+ chevronSize: {
56
+ type: String,
57
+ default: ""
53
58
  }
54
59
  },
55
60
  emits: ["update:modelValue"],
56
61
  setup(n, { emit: e, slots: t }) {
57
- const r = ee({
62
+ const r = J({
58
63
  get: () => !!n.modelValue,
59
- set: (u) => e("update:modelValue", u)
60
- }), i = ee(() => !!t.text), s = ee(() => {
61
- const u = r.value ? "Hide" : "Show";
62
- return o.value ? u : n.triggerText;
63
- }), o = ee(() => n.variant === "bubble"), a = ee(() => [
64
+ set: (c) => e("update:modelValue", c)
65
+ }), i = J(() => !!t.text), s = J(() => {
66
+ const c = r.value ? "Hide" : "Show";
67
+ return o.value ? c : n.triggerText;
68
+ }), o = J(() => n.variant === "bubble"), a = J(() => [
64
69
  "leading-normal font-bold",
65
70
  {
66
71
  "text-md": n.variant === "white"
@@ -70,7 +75,7 @@ const d_ = ke({
70
75
  {
71
76
  "flex-shrink mr-2 text-gray-40 text-sm": n.variant === "bubble"
72
77
  }
73
- ]);
78
+ ]), l = J(() => n.chevronSize || (o.value ? "sm" : "md"));
74
79
  return {
75
80
  // computed
76
81
  show: r,
@@ -80,6 +85,7 @@ const d_ = ke({
80
85
  isBubbleAccordion: o,
81
86
  // Is this the bubble variation
82
87
  triggerTextValue: s,
88
+ triggerIconSize: l,
83
89
  // Methods
84
90
  onToggle: () => {
85
91
  r.value = !r.value;
@@ -140,7 +146,7 @@ function m_(n, e, t, r, i, s) {
140
146
  L(o, {
141
147
  icon: "chevron-down",
142
148
  color: "gray-40",
143
- size: n.isBubbleAccordion ? "sm" : "md",
149
+ size: n.triggerIconSize,
144
150
  type: "",
145
151
  class: H([
146
152
  "shrink-0 mr-4",
@@ -169,7 +175,7 @@ function m_(n, e, t, r, i, s) {
169
175
  })
170
176
  ], 10, f_);
171
177
  }
172
- const v1e = /* @__PURE__ */ He(d_, [["render", m_], ["__scopeId", "data-v-7b1ba6ce"]]), g_ = ke({
178
+ const v1e = /* @__PURE__ */ He(d_, [["render", m_], ["__scopeId", "data-v-c7b4341d"]]), g_ = ke({
173
179
  name: "QAvatar",
174
180
  props: {
175
181
  /** Determines the size of the avatar (currently, only 'sm' is supported) */
@@ -260,9 +266,9 @@ const b1e = /* @__PURE__ */ He(S_, [["render", M_], ["__scopeId", "data-v-8edf76
260
266
  }
261
267
  },
262
268
  setup(n, e) {
263
- const t = ee(function() {
269
+ const t = J(function() {
264
270
  return n.color ? `bg-${n.color}` : "";
265
- }), r = ee(function() {
271
+ }), r = J(function() {
266
272
  return !!e.slots.icon;
267
273
  });
268
274
  return {
@@ -1315,7 +1321,7 @@ let DA = MA.RenderStrategy, DL = ke({ props: { as: { type: [Object, String], def
1315
1321
  }
1316
1322
  if (!IL() && CL())
1317
1323
  return () => hn(NA, { ...n, onBeforeEnter: o, onAfterEnter: a, onBeforeLeave: l, onAfterLeave: u }, r);
1318
- let c = V(null), d = ee(() => n.unmount ? Fa.Unmount : Fa.Hidden);
1324
+ let c = V(null), d = J(() => n.unmount ? Fa.Unmount : Fa.Hidden);
1319
1325
  i({ el: c, $el: c });
1320
1326
  let { show: f, appear: h } = xL(), { register: p, unregister: g } = OL(), y = V(f.value ? "visible" : "hidden"), v = { value: !0 }, b = gL(), C = { value: !1 }, w = OA(() => {
1321
1327
  !C.value && y.value !== "hidden" && (y.value = "hidden", g(b), u());
@@ -1344,29 +1350,29 @@ let DA = MA.RenderStrategy, DL = ke({ props: { as: { type: [Object, String], def
1344
1350
  });
1345
1351
  function B(W) {
1346
1352
  let z = v.value && !h.value, U = X8(c);
1347
- !U || !(U instanceof HTMLElement) || z || (C.value = !0, f.value && o(), f.value || l(), W(f.value ? e9(U, x, M, E, D, (J) => {
1348
- C.value = !1, J === Pb.Finished && a();
1349
- }) : e9(U, O, R, P, D, (J) => {
1350
- C.value = !1, J === Pb.Finished && (vv(w) || (y.value = "hidden", g(b), u()));
1353
+ !U || !(U instanceof HTMLElement) || z || (C.value = !0, f.value && o(), f.value || l(), W(f.value ? e9(U, x, M, E, D, (ee) => {
1354
+ C.value = !1, ee === Pb.Finished && a();
1355
+ }) : e9(U, O, R, P, D, (ee) => {
1356
+ C.value = !1, ee === Pb.Finished && (vv(w) || (y.value = "hidden", g(b), u()));
1351
1357
  })));
1352
1358
  }
1353
1359
  return yt(() => {
1354
1360
  vt([f], (W, z, U) => {
1355
1361
  B(U), v.value = !1;
1356
1362
  }, { immediate: !0 });
1357
- }), ko(_7, w), ML(ee(() => rf(y.value, { visible: Zs.Open, hidden: Zs.Closed }) | s.value)), () => {
1358
- let { appear: W, show: z, enter: U, enterFrom: J, enterTo: ae, entered: X, leave: ue, leaveFrom: pe, leaveTo: Se, ...se } = n, ne = { ref: c }, G = { ...se, ...h.value && f.value && wL.isServer ? { class: H([t.class, se.class, ...x, ...M]) } : {} };
1363
+ }), ko(_7, w), ML(J(() => rf(y.value, { visible: Zs.Open, hidden: Zs.Closed }) | s.value)), () => {
1364
+ let { appear: W, show: z, enter: U, enterFrom: ee, enterTo: ae, entered: X, leave: ue, leaveFrom: pe, leaveTo: Se, ...se } = n, ne = { ref: c }, G = { ...se, ...h.value && f.value && wL.isServer ? { class: H([t.class, se.class, ...x, ...M]) } : {} };
1359
1365
  return kA({ theirProps: G, ourProps: ne, slot: {}, slots: r, attrs: t, features: DA, visible: y.value === "visible", name: "TransitionChild" });
1360
1366
  };
1361
1367
  } }), NL = DL, NA = ke({ inheritAttrs: !1, props: { as: { type: [Object, String], default: "div" }, show: { type: [Boolean], default: null }, unmount: { type: [Boolean], default: !0 }, appear: { type: [Boolean], default: !1 }, enter: { type: [String], default: "" }, enterFrom: { type: [String], default: "" }, enterTo: { type: [String], default: "" }, entered: { type: [String], default: "" }, leave: { type: [String], default: "" }, leaveFrom: { type: [String], default: "" }, leaveTo: { type: [String], default: "" } }, emits: { beforeEnter: () => !0, afterEnter: () => !0, beforeLeave: () => !0, afterLeave: () => !0 }, setup(n, { emit: e, attrs: t, slots: r }) {
1362
- let i = xA(), s = ee(() => n.show === null && i !== null ? (i.value & Zs.Open) === Zs.Open : n.show);
1368
+ let i = xA(), s = J(() => n.show === null && i !== null ? (i.value & Zs.Open) === Zs.Open : n.show);
1363
1369
  nn(() => {
1364
1370
  if (![!0, !1].includes(s.value))
1365
1371
  throw new Error('A <Transition /> is used but it is missing a `:show="true | false"` prop.');
1366
1372
  });
1367
1373
  let o = V(s.value ? "visible" : "hidden"), a = OA(() => {
1368
1374
  o.value = "hidden";
1369
- }), l = V(!0), u = { show: s, appear: ee(() => n.appear || !l.value) };
1375
+ }), l = V(!0), u = { show: s, appear: J(() => n.appear || !l.value) };
1370
1376
  return yt(() => {
1371
1377
  nn(() => {
1372
1378
  l.value = !1, s.value ? o.value = "visible" : vv(a) || (o.value = "hidden");
@@ -1528,7 +1534,7 @@ function _b(n, e, t = {}) {
1528
1534
  const VL = 500, HL = 10;
1529
1535
  function UL(n, e, t) {
1530
1536
  var r, i;
1531
- const s = ee(() => Li(n));
1537
+ const s = J(() => Li(n));
1532
1538
  let o, a;
1533
1539
  function l() {
1534
1540
  o && (clearTimeout(o), o = void 0), a = void 0;
@@ -1569,7 +1575,7 @@ function ZL() {
1569
1575
  }
1570
1576
  function FA(n) {
1571
1577
  const e = ZL();
1572
- return ee(() => (e.value, !!n()));
1578
+ return J(() => (e.value, !!n()));
1573
1579
  }
1574
1580
  function n2(n, e = {}) {
1575
1581
  const { window: t = tl } = e, r = FA(() => t && "matchMedia" in t && typeof t.matchMedia == "function");
@@ -1608,7 +1614,7 @@ function BA(n, e = {}) {
1608
1614
  }), c), {});
1609
1615
  function u() {
1610
1616
  const c = Object.keys(n).map((d) => [d, o(d)]);
1611
- return ee(() => c.filter(([, d]) => d.value).map(([d]) => d));
1617
+ return J(() => c.filter(([, d]) => d.value).map(([d]) => d));
1612
1618
  }
1613
1619
  return Object.assign(l, {
1614
1620
  greaterOrEqual: o,
@@ -1640,7 +1646,7 @@ function BA(n, e = {}) {
1640
1646
  current: u,
1641
1647
  active() {
1642
1648
  const c = u();
1643
- return ee(() => c.value.length === 0 ? "" : c.value.at(-1));
1649
+ return J(() => c.value.length === 0 ? "" : c.value.at(-1));
1644
1650
  }
1645
1651
  });
1646
1652
  }
@@ -1685,7 +1691,7 @@ function KL(n, e, t = {}) {
1685
1691
  threshold: s = 0.1,
1686
1692
  window: o = tl,
1687
1693
  immediate: a = !0
1688
- } = t, l = FA(() => o && "IntersectionObserver" in o), u = ee(() => {
1694
+ } = t, l = FA(() => o && "IntersectionObserver" in o), u = J(() => {
1689
1695
  const p = qn(n);
1690
1696
  return (Array.isArray(p) ? p : [p]).map(Li).filter(PA);
1691
1697
  });
@@ -1745,14 +1751,14 @@ function GL(n, e = {}) {
1745
1751
  onError: c = (E) => {
1746
1752
  console.error(E);
1747
1753
  }
1748
- } = e, d = V(0), f = V(0), h = ee({
1754
+ } = e, d = V(0), f = V(0), h = J({
1749
1755
  get() {
1750
1756
  return d.value;
1751
1757
  },
1752
1758
  set(E) {
1753
1759
  g(E, void 0);
1754
1760
  }
1755
- }), p = ee({
1761
+ }), p = J({
1756
1762
  get() {
1757
1763
  return f.value;
1758
1764
  },
@@ -1793,8 +1799,8 @@ function GL(n, e = {}) {
1793
1799
  R === "flex" && P === "row-reverse" ? (v.left = z, v.right = W) : (v.left = W, v.right = z), d.value = B;
1794
1800
  let U = O.scrollTop;
1795
1801
  E === u.document && !U && (U = u.document.body.scrollTop), b.top = U < f.value, b.bottom = U > f.value;
1796
- const J = Math.abs(U) <= (o.top || 0), ae = Math.abs(U) + O.clientHeight >= O.scrollHeight - (o.bottom || 0) - n9;
1797
- R === "flex" && P === "column-reverse" ? (v.top = ae, v.bottom = J) : (v.top = J, v.bottom = ae), f.value = U;
1802
+ const ee = Math.abs(U) <= (o.top || 0), ae = Math.abs(U) + O.clientHeight >= O.scrollHeight - (o.bottom || 0) - n9;
1803
+ R === "flex" && P === "column-reverse" ? (v.top = ae, v.bottom = ee) : (v.top = ee, v.bottom = ae), f.value = U;
1798
1804
  }, M = (E) => {
1799
1805
  var D;
1800
1806
  if (!u)
@@ -1841,7 +1847,7 @@ function YL(n, e = {}) {
1841
1847
  onSwipeStart: s,
1842
1848
  passive: o = !0,
1843
1849
  window: a = tl
1844
- } = e, l = $r({ x: 0, y: 0 }), u = $r({ x: 0, y: 0 }), c = ee(() => l.x - u.x), d = ee(() => l.y - u.y), { max: f, abs: h } = Math, p = ee(() => f(h(c.value), h(d.value)) >= t), g = V(!1), y = ee(() => p.value ? h(c.value) > h(d.value) ? c.value > 0 ? "left" : "right" : d.value > 0 ? "up" : "down" : "none"), v = (O) => [O.touches[0].clientX, O.touches[0].clientY], b = (O, R) => {
1850
+ } = e, l = $r({ x: 0, y: 0 }), u = $r({ x: 0, y: 0 }), c = J(() => l.x - u.x), d = J(() => l.y - u.y), { max: f, abs: h } = Math, p = J(() => f(h(c.value), h(d.value)) >= t), g = V(!1), y = J(() => p.value ? h(c.value) > h(d.value) ? c.value > 0 ? "left" : "right" : d.value > 0 ? "up" : "down" : "none"), v = (O) => [O.touches[0].clientX, O.touches[0].clientY], b = (O, R) => {
1845
1851
  l.x = O, l.y = R;
1846
1852
  }, C = (O, R) => {
1847
1853
  u.x = O, u.y = R;
@@ -1896,14 +1902,14 @@ function XL(n = {}) {
1896
1902
  x: V(0),
1897
1903
  y: V(0)
1898
1904
  };
1899
- const r = V(e.scrollX), i = V(e.scrollY), s = ee({
1905
+ const r = V(e.scrollX), i = V(e.scrollY), s = J({
1900
1906
  get() {
1901
1907
  return r.value;
1902
1908
  },
1903
1909
  set(a) {
1904
1910
  scrollTo({ left: a, behavior: t });
1905
1911
  }
1906
- }), o = ee({
1912
+ }), o = J({
1907
1913
  get() {
1908
1914
  return i.value;
1909
1915
  },
@@ -2931,10 +2937,10 @@ function L$(n, e = {}, { motionValues: t, push: r, stop: i } = W7()) {
2931
2937
  }
2932
2938
  const q7 = typeof window < "u", R$ = () => q7 && window.onpointerdown === null, $$ = () => q7 && window.ontouchstart === null, F$ = () => q7 && window.onmousedown === null;
2933
2939
  function B$({ target: n, state: e, variants: t, apply: r }) {
2934
- const i = zr(t), s = V(!1), o = V(!1), a = V(!1), l = ee(() => {
2940
+ const i = zr(t), s = V(!1), o = V(!1), a = V(!1), l = J(() => {
2935
2941
  let c = [];
2936
2942
  return i && (i.hovered && (c = [...c, ...Object.keys(i.hovered)]), i.tapped && (c = [...c, ...Object.keys(i.tapped)]), i.focused && (c = [...c, ...Object.keys(i.focused)])), c;
2937
- }), u = ee(() => {
2943
+ }), u = J(() => {
2938
2944
  const c = {};
2939
2945
  Object.assign(c, e.value), s.value && i.hovered && Object.assign(c, i.hovered), o.value && i.tapped && Object.assign(c, i.tapped), a.value && i.focused && Object.assign(c, i.focused);
2940
2946
  for (const d in c)
@@ -3186,7 +3192,7 @@ function Y7(n, e) {
3186
3192
  function tF(n = {}) {
3187
3193
  const e = zr(n), t = V();
3188
3194
  return {
3189
- state: ee(() => {
3195
+ state: J(() => {
3190
3196
  if (t.value)
3191
3197
  return e[t.value];
3192
3198
  }),
@@ -3593,10 +3599,10 @@ ke({
3593
3599
  const e = x7(), t = $r({});
3594
3600
  if (!n.is && !e.default)
3595
3601
  return () => hn("div", {});
3596
- const r = ee(() => {
3602
+ const r = J(() => {
3597
3603
  let l;
3598
3604
  return n.preset && (l = PF[n.preset]), l;
3599
- }), i = ee(() => ({
3605
+ }), i = J(() => ({
3600
3606
  initial: n.initial,
3601
3607
  enter: n.enter,
3602
3608
  leave: n.leave,
@@ -3605,14 +3611,14 @@ ke({
3605
3611
  hovered: n.hovered,
3606
3612
  tapped: n.tapped,
3607
3613
  focused: n.focused
3608
- })), s = ee(() => {
3614
+ })), s = J(() => {
3609
3615
  const l = {
3610
3616
  ...i.value,
3611
3617
  ...r.value || {},
3612
3618
  ...n.variants || {}
3613
3619
  };
3614
3620
  return n.delay && (l.enter.transition = { ...l.enter.transition }, l.enter.transition.delay = parseInt(n.delay)), l;
3615
- }), o = ee(() => {
3621
+ }), o = J(() => {
3616
3622
  if (!n.is)
3617
3623
  return;
3618
3624
  let l = n.is;
@@ -3703,12 +3709,12 @@ const _F = ke({
3703
3709
  ease: "linear",
3704
3710
  duration: 0,
3705
3711
  delay: 0
3706
- }, d = ee(function() {
3712
+ }, d = J(function() {
3707
3713
  return n.backgroundColor ? `bg-${n.backgroundColor}` : "";
3708
- }), f = ee({
3714
+ }), f = J({
3709
3715
  get: () => n.modelValue,
3710
3716
  set: (M) => e("update:model-value", M)
3711
- }), h = ee(() => n.modelValue ? "z-[201]" : "-z-40"), p = ee(() => !!(t != null && t.headerAction)), g = () => {
3717
+ }), h = J(() => n.modelValue ? "z-[201]" : "-z-40"), p = J(() => !!(t != null && t.headerAction)), g = () => {
3712
3718
  s.value = window.innerHeight;
3713
3719
  }, y = () => {
3714
3720
  n.allowOnClickOutside && b({ clickOutside: !0 });
@@ -3905,7 +3911,7 @@ const UF = /* @__PURE__ */ He(_F, [["render", HF], ["__scopeId", "data-v-91ada41
3905
3911
  }
3906
3912
  },
3907
3913
  setup(n) {
3908
- const e = ee(() => [
3914
+ const e = J(() => [
3909
3915
  Au + n.size,
3910
3916
  {
3911
3917
  [Au + n.status]: n.status
@@ -3917,7 +3923,7 @@ const UF = /* @__PURE__ */ He(_F, [["render", HF], ["__scopeId", "data-v-91ada41
3917
3923
  {
3918
3924
  [Au + "outline"]: !!n.hasOutline || n.status === "secondary"
3919
3925
  }
3920
- ]), t = ee(() => ({
3926
+ ]), t = J(() => ({
3921
3927
  disabled: !!n.disabled,
3922
3928
  "aria-disabled": !!n.disabled
3923
3929
  }));
@@ -5272,8 +5278,8 @@ function ET(n) {
5272
5278
  id: z,
5273
5279
  media: v,
5274
5280
  nonce: U
5275
- }), a.head.appendChild(i.value), F.setAttribute(i.value, "data-primevue-style-id", h), F.setAttributes(i.value, B)), !t.value && (M = vt(r, function(J) {
5276
- i.value.textContent = J;
5281
+ }), a.head.appendChild(i.value), F.setAttribute(i.value, "data-primevue-style-id", h), F.setAttributes(i.value, B)), !t.value && (M = vt(r, function(ee) {
5282
+ i.value.textContent = ee;
5277
5283
  }, {
5278
5284
  immediate: !0
5279
5285
  }), t.value = !0);
@@ -6558,7 +6564,7 @@ const Ej = ke({
6558
6564
  emits: ["update:modelValue"],
6559
6565
  setup(n, { emit: e }) {
6560
6566
  return {
6561
- selected: ee({
6567
+ selected: J({
6562
6568
  get: () => n.modelValue,
6563
6569
  set: (r) => {
6564
6570
  const i = !r || Array.isArray(r) && r.length === 0 ? n.modelValue : r;
@@ -6641,10 +6647,10 @@ const S1e = /* @__PURE__ */ He(Ej, [["render", Dj]]), Nj = "data:image/svg+xml,%
6641
6647
  }
6642
6648
  },
6643
6649
  setup(n) {
6644
- const e = ee(() => {
6650
+ const e = J(() => {
6645
6651
  const r = n.type === "outline" || n.type === "fill" ? "-" + n.type : "";
6646
6652
  return `${Nj}#icon-${n.icon}${r}`;
6647
- }), t = ee(() => n.customSize && (!!n.width || !!n.height));
6653
+ }), t = J(() => n.customSize && (!!n.width || !!n.height));
6648
6654
  return {
6649
6655
  iconPath: e,
6650
6656
  customizedSize: t
@@ -13532,18 +13538,18 @@ function QH(n = {}, e) {
13532
13538
  f.value
13533
13539
  ];
13534
13540
  }
13535
- const P = ee({
13541
+ const P = J({
13536
13542
  get: () => l.value,
13537
13543
  set: (Q) => {
13538
13544
  l.value = Q, D.locale = l.value;
13539
13545
  }
13540
- }), B = ee({
13546
+ }), B = J({
13541
13547
  get: () => u.value,
13542
13548
  set: (Q) => {
13543
13549
  u.value = Q, D.fallbackLocale = u.value, s2(D, l.value, Q);
13544
13550
  }
13545
- }), W = ee(() => c.value), z = /* @__PURE__ */ ee(() => d.value), U = /* @__PURE__ */ ee(() => f.value);
13546
- function J() {
13551
+ }), W = J(() => c.value), z = /* @__PURE__ */ J(() => d.value), U = /* @__PURE__ */ J(() => f.value);
13552
+ function ee() {
13547
13553
  return xt(C) ? C : null;
13548
13554
  }
13549
13555
  function ae(Q) {
@@ -13786,7 +13792,7 @@ function QH(n = {}, e) {
13786
13792
  getLocaleMessage: xn,
13787
13793
  setLocaleMessage: Ui,
13788
13794
  mergeLocaleMessage: _o,
13789
- getPostTranslationHandler: J,
13795
+ getPostTranslationHandler: ee,
13790
13796
  setPostTranslationHandler: ae,
13791
13797
  getMissingHandler: X,
13792
13798
  setMissingHandler: ue,
@@ -15771,13 +15777,13 @@ var AZ = { 9306: (n, e, t) => {
15771
15777
  else {
15772
15778
  var W = D && !B && C ? { maxByteLength: C(M) } : void 0;
15773
15779
  O = new f(P, W);
15774
- for (var z = new h(M), U = new h(O), J = p(P, R), ae = 0; ae < J; ae++)
15780
+ for (var z = new h(M), U = new h(O), ee = p(P, R), ae = 0; ae < ee; ae++)
15775
15781
  x(U, ae, w(z, ae));
15776
15782
  }
15777
15783
  return c || u(M), O;
15778
15784
  };
15779
15785
  }, 4644: (n, e, t) => {
15780
- var r, i, s, o = t(7811), a = t(3724), l = t(4576), u = t(4901), c = t(34), d = t(9297), f = t(6955), h = t(6823), p = t(6699), g = t(6840), y = t(2106), v = t(1625), b = t(2787), C = t(2967), w = t(8227), x = t(3392), M = t(1181), E = M.enforce, D = M.get, O = l.Int8Array, R = O && O.prototype, P = l.Uint8ClampedArray, B = P && P.prototype, W = O && b(O), z = R && b(R), U = Object.prototype, J = l.TypeError, ae = w("toStringTag"), X = x("TYPED_ARRAY_TAG"), ue = "TypedArrayConstructor", pe = o && !!C && f(l.opera) !== "Opera", Se = !1, se = { Int8Array: 1, Uint8Array: 1, Uint8ClampedArray: 1, Int16Array: 2, Uint16Array: 2, Int32Array: 4, Uint32Array: 4, Float32Array: 4, Float64Array: 8 }, ne = { BigInt64Array: 8, BigUint64Array: 8 }, G = function(oe) {
15786
+ var r, i, s, o = t(7811), a = t(3724), l = t(4576), u = t(4901), c = t(34), d = t(9297), f = t(6955), h = t(6823), p = t(6699), g = t(6840), y = t(2106), v = t(1625), b = t(2787), C = t(2967), w = t(8227), x = t(3392), M = t(1181), E = M.enforce, D = M.get, O = l.Int8Array, R = O && O.prototype, P = l.Uint8ClampedArray, B = P && P.prototype, W = O && b(O), z = R && b(R), U = Object.prototype, ee = l.TypeError, ae = w("toStringTag"), X = x("TYPED_ARRAY_TAG"), ue = "TypedArrayConstructor", pe = o && !!C && f(l.opera) !== "Opera", Se = !1, se = { Int8Array: 1, Uint8Array: 1, Uint8ClampedArray: 1, Int16Array: 2, Uint16Array: 2, Int32Array: 4, Uint32Array: 4, Float32Array: 4, Float64Array: 8 }, ne = { BigInt64Array: 8, BigUint64Array: 8 }, G = function(oe) {
15781
15787
  var me = b(oe);
15782
15788
  if (c(me)) {
15783
15789
  var Ce = D(me);
@@ -15794,7 +15800,7 @@ var AZ = { 9306: (n, e, t) => {
15794
15800
  for (r in ne)
15795
15801
  (s = (i = l[r]) && i.prototype) && (E(s)[ue] = i);
15796
15802
  if ((!pe || !u(W) || W === Function.prototype) && (W = function() {
15797
- throw new J("Incorrect invocation");
15803
+ throw new ee("Incorrect invocation");
15798
15804
  }, pe))
15799
15805
  for (r in se)
15800
15806
  l[r] && C(l[r], W);
@@ -15811,11 +15817,11 @@ var AZ = { 9306: (n, e, t) => {
15811
15817
  n.exports = { NATIVE_ARRAY_BUFFER_VIEWS: pe, TYPED_ARRAY_TAG: Se && X, aTypedArray: function(oe) {
15812
15818
  if (Y(oe))
15813
15819
  return oe;
15814
- throw new J("Target is not a typed array");
15820
+ throw new ee("Target is not a typed array");
15815
15821
  }, aTypedArrayConstructor: function(oe) {
15816
15822
  if (u(oe) && (!C || v(W, oe)))
15817
15823
  return oe;
15818
- throw new J(h(oe) + " is not a typed array constructor");
15824
+ throw new ee(h(oe) + " is not a typed array constructor");
15819
15825
  }, exportTypedArrayMethod: function(oe, me, Ce, qe) {
15820
15826
  if (a) {
15821
15827
  if (Ce)
@@ -16359,10 +16365,10 @@ var AZ = { 9306: (n, e, t) => {
16359
16365
  this.stopped = y, this.result = v;
16360
16366
  }, g = p.prototype;
16361
16367
  n.exports = function(y, v, b) {
16362
- var C, w, x, M, E, D, O, R = b && b.that, P = !(!b || !b.AS_ENTRIES), B = !(!b || !b.IS_RECORD), W = !(!b || !b.IS_ITERATOR), z = !(!b || !b.INTERRUPTED), U = r(v, R), J = function(X) {
16368
+ var C, w, x, M, E, D, O, R = b && b.that, P = !(!b || !b.AS_ENTRIES), B = !(!b || !b.IS_RECORD), W = !(!b || !b.IS_ITERATOR), z = !(!b || !b.INTERRUPTED), U = r(v, R), ee = function(X) {
16363
16369
  return C && f(C, "normal", X), new p(!0, X);
16364
16370
  }, ae = function(X) {
16365
- return P ? (s(X), z ? U(X[0], X[1], J) : U(X[0], X[1])) : z ? U(X, J) : U(X);
16371
+ return P ? (s(X), z ? U(X[0], X[1], ee) : U(X[0], X[1])) : z ? U(X, ee) : U(X);
16366
16372
  };
16367
16373
  if (B)
16368
16374
  C = y.iterator;
@@ -17121,7 +17127,7 @@ var AZ = { 9306: (n, e, t) => {
17121
17127
  }, { IS_RECORD: !0, INTERRUPTED: !0 }).stopped;
17122
17128
  } });
17123
17129
  }, 8335: (n, e, t) => {
17124
- var r = t(6518), i = t(3724), s = t(4576), o = t(7751), a = t(9504), l = t(9565), u = t(4901), c = t(34), d = t(4376), f = t(9297), h = t(655), p = t(6198), g = t(4659), y = t(9039), v = t(8235), b = t(4495), C = s.JSON, w = s.Number, x = s.SyntaxError, M = C && C.parse, E = o("Object", "keys"), D = Object.getOwnPropertyDescriptor, O = a("".charAt), R = a("".slice), P = a(/./.exec), B = a([].push), W = /^\d$/, z = /^[1-9]$/, U = /^[\d-]$/, J = /^[\t\n\r ]$/, ae = function(ne, G, Y, oe) {
17130
+ var r = t(6518), i = t(3724), s = t(4576), o = t(7751), a = t(9504), l = t(9565), u = t(4901), c = t(34), d = t(4376), f = t(9297), h = t(655), p = t(6198), g = t(4659), y = t(9039), v = t(8235), b = t(4495), C = s.JSON, w = s.Number, x = s.SyntaxError, M = C && C.parse, E = o("Object", "keys"), D = Object.getOwnPropertyDescriptor, O = a("".charAt), R = a("".slice), P = a(/./.exec), B = a([].push), W = /^\d$/, z = /^[1-9]$/, U = /^[\d-]$/, ee = /^[\t\n\r ]$/, ae = function(ne, G, Y, oe) {
17125
17131
  var me, Ce, qe, Re, et, Mt = ne[G], nr = oe && Mt === oe.value, Hi = nr && typeof oe.source == "string" ? { source: oe.source } : {};
17126
17132
  if (c(Mt)) {
17127
17133
  var mi = d(Mt), xn = nr ? oe.nodes : mi ? [] : {};
@@ -17148,7 +17154,7 @@ var AZ = { 9306: (n, e, t) => {
17148
17154
  pe.prototype = { fork: function(ne) {
17149
17155
  return new pe(this.source, ne);
17150
17156
  }, parse: function() {
17151
- var ne = this.source, G = this.skip(J, this.index), Y = this.fork(G), oe = O(ne, G);
17157
+ var ne = this.source, G = this.skip(ee, this.index), Y = this.fork(G), oe = O(ne, G);
17152
17158
  if (P(U, oe))
17153
17159
  return Y.number();
17154
17160
  switch (oe) {
@@ -17175,7 +17181,7 @@ var AZ = { 9306: (n, e, t) => {
17175
17181
  break;
17176
17182
  }
17177
17183
  var Ce = this.fork(G).string(), qe = Ce.value;
17178
- G = Ce.end, G = this.until([":"], G) + 1, G = this.skip(J, G), Ce = this.fork(G).parse(), g(me, qe, Ce), g(oe, qe, Ce.value), G = this.until([",", "}"], Ce.end);
17184
+ G = Ce.end, G = this.until([":"], G) + 1, G = this.skip(ee, G), Ce = this.fork(G).parse(), g(me, qe, Ce), g(oe, qe, Ce.value), G = this.until([",", "}"], Ce.end);
17179
17185
  var Re = O(ne, G);
17180
17186
  if (Re === ",")
17181
17187
  Y = !0, G++;
@@ -17187,7 +17193,7 @@ var AZ = { 9306: (n, e, t) => {
17187
17193
  return this.node(1, oe, this.index, G, me);
17188
17194
  }, array: function() {
17189
17195
  for (var ne = this.source, G = this.index + 1, Y = !1, oe = [], me = []; G < ne.length; ) {
17190
- if (G = this.skip(J, G), O(ne, G) === "]" && !Y) {
17196
+ if (G = this.skip(ee, G), O(ne, G) === "]" && !Y) {
17191
17197
  G++;
17192
17198
  break;
17193
17199
  }
@@ -17225,7 +17231,7 @@ var AZ = { 9306: (n, e, t) => {
17225
17231
  ;
17226
17232
  return G;
17227
17233
  }, until: function(ne, G) {
17228
- G = this.skip(J, G);
17234
+ G = this.skip(ee, G);
17229
17235
  for (var Y = O(this.source, G), oe = 0; oe < ne.length; oe++)
17230
17236
  if (ne[oe] === Y)
17231
17237
  return G;
@@ -17242,7 +17248,7 @@ var AZ = { 9306: (n, e, t) => {
17242
17248
  r({ target: "JSON", stat: !0, forced: Se }, { parse: function(G, Y) {
17243
17249
  return se && !u(Y) ? M(G) : function(oe, me) {
17244
17250
  oe = h(oe);
17245
- var Ce = new pe(oe, 0), qe = Ce.parse(), Re = qe.value, et = Ce.skip(J, qe.end);
17251
+ var Ce = new pe(oe, 0), qe = Ce.parse(), Re = qe.value, et = Ce.skip(ee, qe.end);
17246
17252
  if (et < oe.length)
17247
17253
  throw new x('Unexpected extra character: "' + O(oe, et) + '" after the parsed data at: ' + et);
17248
17254
  return u(me) ? ae({ "": Re }, "", me, qe) : Re;
@@ -17251,7 +17257,7 @@ var AZ = { 9306: (n, e, t) => {
17251
17257
  }, 4979: (n, e, t) => {
17252
17258
  var r = t(6518), i = t(4576), s = t(7751), o = t(6980), a = t(4913).f, l = t(9297), u = t(679), c = t(3167), d = t(2603), f = t(5002), h = t(8574), p = t(3724), g = t(6395), y = "DOMException", v = s("Error"), b = s(y), C = function() {
17253
17259
  u(this, w);
17254
- var J = arguments.length, ae = d(J < 1 ? void 0 : arguments[0]), X = d(J < 2 ? void 0 : arguments[1], "Error"), ue = new b(ae, X), pe = new v(ae);
17260
+ var ee = arguments.length, ae = d(ee < 1 ? void 0 : arguments[0]), X = d(ee < 2 ? void 0 : arguments[1], "Error"), ue = new b(ae, X), pe = new v(ae);
17255
17261
  return pe.name = y, a(ue, "stack", o(1, h(pe.stack, 1))), c(ue, this, C), ue;
17256
17262
  }, w = C.prototype = b.prototype, x = "stack" in new v(y), M = "stack" in new b(1, 2), E = b && p && Object.getOwnPropertyDescriptor(i, y), D = !(!E || E.writable && E.configurable), O = x && !D && !M;
17257
17263
  r({ global: !0, constructor: !0, forced: g || O }, { DOMException: O ? C : b });
@@ -19620,8 +19626,8 @@ Yl = new WeakMap(), Ai = new WeakMap(), Tt = new WeakMap(), vc = new WeakMap(),
19620
19626
  b ? D = Math.max(u, Math.min(1, Math.abs(w[0] - C[0] - R))) / a : O = Math.max(c, Math.min(1, Math.abs(w[1] - C[1] - P))) / l;
19621
19627
  const z = d(a * D), U = d(l * O);
19622
19628
  x = h(...y(z, U));
19623
- const J = M - x[0], ae = E - x[1];
19624
- this.width = z, this.height = U, this.x = J, this.y = ae, this.setDims(r * z, i * U), this.fixAndSetPosition();
19629
+ const ee = M - x[0], ae = E - x[1];
19630
+ this.width = z, this.height = U, this.x = ee, this.y = ae, this.setDims(r * z, i * U), this.fixAndSetPosition();
19625
19631
  }, Vh = new WeakSet(), L4 = function(e) {
19626
19632
  const { isMac: t } = fr.platform;
19627
19633
  e.ctrlKey && !t || e.shiftKey || e.metaKey && t ? this.parent.toggleSelected(this) : this.parent.setSelected(this);
@@ -20143,21 +20149,21 @@ function B5(n, e, t, r, i, s, o, a) {
20143
20149
  if (p >= b)
20144
20150
  return;
20145
20151
  const C = u[s], w = u[s + 1], x = u[s + 2], M = u[o], E = u[o + 1], D = u[o + 2], O = u[a], R = u[a + 1], P = u[a + 2], B = Math.round(p), W = Math.round(b);
20146
- let z, U, J, ae, X, ue, pe, Se;
20152
+ let z, U, ee, ae, X, ue, pe, Se;
20147
20153
  for (let se = B; se <= W; se++) {
20148
20154
  if (se < y) {
20149
20155
  const me = se < p ? 0 : (p - se) / (p - y);
20150
- z = h - (h - g) * me, U = C - (C - M) * me, J = w - (w - E) * me, ae = x - (x - D) * me;
20156
+ z = h - (h - g) * me, U = C - (C - M) * me, ee = w - (w - E) * me, ae = x - (x - D) * me;
20151
20157
  } else {
20152
20158
  let me;
20153
- me = se > b ? 1 : y === b ? 0 : (y - se) / (y - b), z = g - (g - v) * me, U = M - (M - O) * me, J = E - (E - R) * me, ae = D - (D - P) * me;
20159
+ me = se > b ? 1 : y === b ? 0 : (y - se) / (y - b), z = g - (g - v) * me, U = M - (M - O) * me, ee = E - (E - R) * me, ae = D - (D - P) * me;
20154
20160
  }
20155
20161
  let ne;
20156
20162
  ne = se < p ? 0 : se > b ? 1 : (p - se) / (p - b), X = h - (h - v) * ne, ue = C - (C - O) * ne, pe = w - (w - R) * ne, Se = x - (x - P) * ne;
20157
20163
  const G = Math.round(Math.min(z, X)), Y = Math.round(Math.max(z, X));
20158
20164
  let oe = d * se + 4 * G;
20159
20165
  for (let me = G; me <= Y; me++)
20160
- ne = (z - me) / (z - X), ne < 0 ? ne = 0 : ne > 1 && (ne = 1), c[oe++] = U - (U - ue) * ne | 0, c[oe++] = J - (J - pe) * ne | 0, c[oe++] = ae - (ae - Se) * ne | 0, c[oe++] = 255;
20166
+ ne = (z - me) / (z - X), ne < 0 ? ne = 0 : ne > 1 && (ne = 1), c[oe++] = U - (U - ue) * ne | 0, c[oe++] = ee - (ee - pe) * ne | 0, c[oe++] = ae - (ae - Se) * ne | 0, c[oe++] = 255;
20161
20167
  }
20162
20168
  }
20163
20169
  function xW(n, e, t) {
@@ -20861,8 +20867,8 @@ const j8 = class j8 {
20861
20867
  const D = (M.isSpace ? l : 0) + a, O = M.fontChar, R = M.accent;
20862
20868
  let P, B, W = M.width;
20863
20869
  if (f) {
20864
- const z = M.vmetric || p, U = -(M.vmetric ? z[1] : 0.5 * W) * g, J = z[2] * g;
20865
- W = z ? -z[0] : W, P = U / o, B = (x + J) / o;
20870
+ const z = M.vmetric || p, U = -(M.vmetric ? z[1] : 0.5 * W) * g, ee = z[2] * g;
20871
+ W = z ? -z[0] : W, P = U / o, B = (x + ee) / o;
20866
20872
  } else
20867
20873
  P = x / o, B = 0;
20868
20874
  if (r.remeasure && W > 0) {
@@ -22807,14 +22813,14 @@ function lq(n = {}) {
22807
22813
  throw new Error("Invalid PDF binary data: either TypedArray, string, or array-like object is expected in the data property.");
22808
22814
  }(n.data) : null, s = n.httpHeaders || null, o = n.withCredentials === !0, a = n.password ?? null, l = n.range instanceof ox ? n.range : null, u = Number.isInteger(n.rangeChunkSize) && n.rangeChunkSize > 0 ? n.rangeChunkSize : rq;
22809
22815
  let c = n.worker instanceof ec ? n.worker : null;
22810
- const d = n.verbosity, f = typeof n.docBaseUrl != "string" || Rv(n.docBaseUrl) ? null : n.docBaseUrl, h = typeof n.cMapUrl == "string" ? n.cMapUrl : null, p = n.cMapPacked !== !1, g = n.CMapReaderFactory || sq, y = typeof n.standardFontDataUrl == "string" ? n.standardFontDataUrl : null, v = n.StandardFontDataFactory || aq, b = n.stopAtErrors !== !0, C = Number.isInteger(n.maxImageSize) && n.maxImageSize > -1 ? n.maxImageSize : -1, w = n.isEvalSupported !== !1, x = typeof n.isOffscreenCanvasSupported == "boolean" ? n.isOffscreenCanvasSupported : !_n, M = Number.isInteger(n.canvasMaxAreaInBytes) ? n.canvasMaxAreaInBytes : -1, E = typeof n.disableFontFace == "boolean" ? n.disableFontFace : _n, D = n.fontExtraProperties === !0, O = n.enableXfa === !0, R = n.ownerDocument || globalThis.document, P = n.disableRange === !0, B = n.disableStream === !0, W = n.disableAutoFetch === !0, z = n.pdfBug === !0, U = n.enableHWA === !0, J = l ? l.length : n.length ?? NaN, ae = typeof n.useSystemFonts == "boolean" ? n.useSystemFonts : !_n && !E, X = typeof n.useWorkerFetch == "boolean" ? n.useWorkerFetch : g === mI && v === gI && h && y && g2(h, document.baseURI) && g2(y, document.baseURI), ue = n.canvasFactory || new iq({ ownerDocument: R, enableHWA: U }), pe = n.filterFactory || new oq({ docId: t, ownerDocument: R });
22816
+ const d = n.verbosity, f = typeof n.docBaseUrl != "string" || Rv(n.docBaseUrl) ? null : n.docBaseUrl, h = typeof n.cMapUrl == "string" ? n.cMapUrl : null, p = n.cMapPacked !== !1, g = n.CMapReaderFactory || sq, y = typeof n.standardFontDataUrl == "string" ? n.standardFontDataUrl : null, v = n.StandardFontDataFactory || aq, b = n.stopAtErrors !== !0, C = Number.isInteger(n.maxImageSize) && n.maxImageSize > -1 ? n.maxImageSize : -1, w = n.isEvalSupported !== !1, x = typeof n.isOffscreenCanvasSupported == "boolean" ? n.isOffscreenCanvasSupported : !_n, M = Number.isInteger(n.canvasMaxAreaInBytes) ? n.canvasMaxAreaInBytes : -1, E = typeof n.disableFontFace == "boolean" ? n.disableFontFace : _n, D = n.fontExtraProperties === !0, O = n.enableXfa === !0, R = n.ownerDocument || globalThis.document, P = n.disableRange === !0, B = n.disableStream === !0, W = n.disableAutoFetch === !0, z = n.pdfBug === !0, U = n.enableHWA === !0, ee = l ? l.length : n.length ?? NaN, ae = typeof n.useSystemFonts == "boolean" ? n.useSystemFonts : !_n && !E, X = typeof n.useWorkerFetch == "boolean" ? n.useWorkerFetch : g === mI && v === gI && h && y && g2(h, document.baseURI) && g2(y, document.baseURI), ue = n.canvasFactory || new iq({ ownerDocument: R, enableHWA: U }), pe = n.filterFactory || new oq({ docId: t, ownerDocument: R });
22811
22817
  iW(d);
22812
22818
  const Se = { canvasFactory: ue, filterFactory: pe };
22813
22819
  if (X || (Se.cMapReaderFactory = new g({ baseUrl: h, isCompressed: p }), Se.standardFontDataFactory = new v({ baseUrl: y })), !c) {
22814
22820
  const G = { verbosity: d, port: yo.workerPort };
22815
22821
  c = G.port ? ec.fromPort(G) : new ec(G), e._worker = c;
22816
22822
  }
22817
- const se = { docId: t, apiVersion: "4.6.82", data: i, password: a, disableAutoFetch: W, rangeChunkSize: u, length: J, docBaseUrl: f, enableXfa: O, evaluatorOptions: { maxImageSize: C, disableFontFace: E, ignoreErrors: b, isEvalSupported: w, isOffscreenCanvasSupported: x, canvasMaxAreaInBytes: M, fontExtraProperties: D, useSystemFonts: ae, cMapUrl: X ? h : null, standardFontDataUrl: X ? y : null } }, ne = { disableFontFace: E, fontExtraProperties: D, ownerDocument: R, pdfBug: z, styleElement: null, loadingParams: { disableAutoFetch: W, enableXfa: O } };
22823
+ const se = { docId: t, apiVersion: "4.6.82", data: i, password: a, disableAutoFetch: W, rangeChunkSize: u, length: ee, docBaseUrl: f, enableXfa: O, evaluatorOptions: { maxImageSize: C, disableFontFace: E, ignoreErrors: b, isEvalSupported: w, isOffscreenCanvasSupported: x, canvasMaxAreaInBytes: M, fontExtraProperties: D, useSystemFonts: ae, cMapUrl: X ? h : null, standardFontDataUrl: X ? y : null } }, ne = { disableFontFace: E, fontExtraProperties: D, ownerDocument: R, pdfBug: z, styleElement: null, loadingParams: { disableAutoFetch: W, enableXfa: O } };
22818
22824
  return c.promise.then(function() {
22819
22825
  if (e.destroyed)
22820
22826
  throw new Error("Loading aborted");
@@ -22829,7 +22835,7 @@ function lq(n = {}) {
22829
22835
  throw new Error("getDocument - no `url` parameter provided.");
22830
22836
  Y = ((oe) => _n ? function() {
22831
22837
  return typeof fetch < "u" && typeof Response < "u" && "body" in Response.prototype;
22832
- }() && g2(oe.url) ? new lC(oe) : new XW(oe) : g2(oe.url) ? new lC(oe) : new KW(oe))({ url: r, length: J, httpHeaders: s, withCredentials: o, rangeChunkSize: u, disableRange: P, disableStream: B });
22838
+ }() && g2(oe.url) ? new lC(oe) : new XW(oe) : g2(oe.url) ? new lC(oe) : new KW(oe))({ url: r, length: ee, httpHeaders: s, withCredentials: o, rangeChunkSize: u, disableRange: P, disableStream: B });
22833
22839
  }
22834
22840
  return G.then((oe) => {
22835
22841
  if (e.destroyed)
@@ -27440,7 +27446,7 @@ const sO = /* @__PURE__ */ He(Bq, [["render", jq], ["__scopeId", "data-v-8867a05
27440
27446
  setup(n, { emit: e }) {
27441
27447
  return {
27442
27448
  // Computed
27443
- toggleModal: ee({
27449
+ toggleModal: J({
27444
27450
  get: () => n.toggle,
27445
27451
  set: (r) => {
27446
27452
  e("update:toggle", r);
@@ -27743,10 +27749,10 @@ const oO = /* @__PURE__ */ He(Jq, [["render", nK], ["__scopeId", "data-v-ca6ae8f
27743
27749
  },
27744
27750
  emits: ["update:model-value", "update:activeIndex", "click:file"],
27745
27751
  setup(n, { emit: e }) {
27746
- const { t } = Do(), { deviceType: r } = aO(), i = [{ text: t("HC_CANCEL") }], s = V(null), o = ee(() => {
27752
+ const { t } = Do(), { deviceType: r } = aO(), i = [{ text: t("HC_CANCEL") }], s = V(null), o = J(() => {
27747
27753
  var se;
27748
27754
  return (se = s.value) == null ? void 0 : se.offsetWidth;
27749
- }), a = V(null), l = V([]), u = V(!1), c = V(null), d = V("0"), f = V(1), h = V(Fr.md ? 1 : 0.9), p = V(0), g = V(null), y = V(), v = V(!1), b = V(!1), C = ee(() => {
27755
+ }), a = V(null), l = V([]), u = V(!1), c = V(null), d = V("0"), f = V(1), h = V(Fr.md ? 1 : 0.9), p = V(0), g = V(null), y = V(), v = V(!1), b = V(!1), C = J(() => {
27750
27756
  if (g.value)
27751
27757
  return g.value && "original" in g.value ? {
27752
27758
  name: g.value.original.name,
@@ -27759,16 +27765,16 @@ const oO = /* @__PURE__ */ He(Jq, [["render", nK], ["__scopeId", "data-v-ca6ae8f
27759
27765
  type: g.value.type,
27760
27766
  extension: X(g.value.name)
27761
27767
  };
27762
- }), w = ee(() => [
27768
+ }), w = J(() => [
27763
27769
  `z-[${n.baseZIndex + 1}]`
27764
- ]), x = ee(() => n.files.filter((se) => se.type.startsWith("image") && !se.type.includes("tif"))), M = ee(() => [
27770
+ ]), x = J(() => n.files.filter((se) => se.type.startsWith("image") && !se.type.includes("tif"))), M = J(() => [
27765
27771
  "rounded-lg relative mx-auto object-cover grow-1 max-h-[74vh]",
27766
- { animated: !J }
27767
- ]), E = ee(() => [
27772
+ { animated: !ee }
27773
+ ]), E = J(() => [
27768
27774
  "flex items-center gap-3",
27769
27775
  n.wrap ? "flex-wrap" : "flex-nowrap overflow-x-auto shrink-0",
27770
27776
  { "flex-nowrap overflow-x-auto": r.value !== "desktop" }
27771
- ]), D = ee(() => [{
27777
+ ]), D = J(() => [{
27772
27778
  text: t("HC_DELETE_ATTACHMENT"),
27773
27779
  classes: "!text-red-20",
27774
27780
  event: z
@@ -27802,7 +27808,7 @@ const oO = /* @__PURE__ */ He(Jq, [["render", nK], ["__scopeId", "data-v-ca6ae8f
27802
27808
  v.value = !1;
27803
27809
  break;
27804
27810
  }
27805
- }, { isSwiping: J, lengthX: ae } = YL(a, {
27811
+ }, { isSwiping: ee, lengthX: ae } = YL(a, {
27806
27812
  passive: !1,
27807
27813
  onSwipe() {
27808
27814
  const se = Math.abs(ae.value);
@@ -27843,7 +27849,7 @@ const oO = /* @__PURE__ */ He(Jq, [["render", nK], ["__scopeId", "data-v-ca6ae8f
27843
27849
  longPressRef: l,
27844
27850
  longPressedHook: u,
27845
27851
  // Animation Refs
27846
- isSwiping: J,
27852
+ isSwiping: ee,
27847
27853
  lengthX: ae,
27848
27854
  left: d,
27849
27855
  opacity: f,
@@ -28175,7 +28181,7 @@ const lO = /* @__PURE__ */ He(rK, [["render", AK], ["__scopeId", "data-v-ba42687
28175
28181
  setup(n, { emit: e }) {
28176
28182
  return {
28177
28183
  // Computed
28178
- toggleModal: ee({
28184
+ toggleModal: J({
28179
28185
  get: () => n.toggle,
28180
28186
  set: (r) => {
28181
28187
  e("update:toggle", r);
@@ -28316,7 +28322,7 @@ const LK = /* @__PURE__ */ He(TK, [["render", _K], ["__scopeId", "data-v-a8bfc62
28316
28322
  },
28317
28323
  emits: ["update:modelValue"],
28318
28324
  setup(n, { emit: e }) {
28319
- const t = V(!1), r = V(""), i = V(null), s = ee(() => t.value === !0 && n.reposition === !0 ? a(n.align) : n.align), o = ee(() => t.value === !0 && n.reposition === !0 ? l(n.position) : n.position), a = (y) => {
28325
+ const t = V(!1), r = V(""), i = V(null), s = J(() => t.value === !0 && n.reposition === !0 ? a(n.align) : n.align), o = J(() => t.value === !0 && n.reposition === !0 ? l(n.position) : n.position), a = (y) => {
28320
28326
  if (!i.value || u(i.value.children[1]))
28321
28327
  return y;
28322
28328
  const v = i.value.children[0].getBoundingClientRect(), b = i.value.children[1].getBoundingClientRect();
@@ -40556,7 +40562,7 @@ function gee(n) {
40556
40562
  allowedAutoPlacements: g
40557
40563
  }) : Y);
40558
40564
  }, []), x = e.rects.reference, M = e.rects.popper, E = /* @__PURE__ */ new Map(), D = !0, O = w[0], R = 0; R < w.length; R++) {
40559
- var P = w[R], B = Es(P), W = $d(P) === _d, z = [pr, ci].indexOf(B) >= 0, U = z ? "width" : "height", J = Rf(e, {
40565
+ var P = w[R], B = Es(P), W = $d(P) === _d, z = [pr, ci].indexOf(B) >= 0, U = z ? "width" : "height", ee = Rf(e, {
40560
40566
  placement: P,
40561
40567
  boundary: c,
40562
40568
  rootBoundary: d,
@@ -40565,7 +40571,7 @@ function gee(n) {
40565
40571
  }), ae = z ? W ? di : mr : W ? ci : pr;
40566
40572
  x[U] > M[U] && (ae = mg(ae));
40567
40573
  var X = mg(ae), ue = [];
40568
- if (s && ue.push(J[B] <= 0), a && ue.push(J[ae] <= 0, J[X] <= 0), ue.every(function(G) {
40574
+ if (s && ue.push(ee[B] <= 0), a && ue.push(ee[ae] <= 0, ee[X] <= 0), ue.every(function(G) {
40569
40575
  return G;
40570
40576
  })) {
40571
40577
  O = P, D = !1;
@@ -40705,10 +40711,10 @@ function Tee(n) {
40705
40711
  };
40706
40712
  if (M) {
40707
40713
  if (s) {
40708
- var W, z = w === "y" ? pr : mr, U = w === "y" ? ci : di, J = w === "y" ? "height" : "width", ae = M[w], X = ae + y[z], ue = ae - y[U], pe = h ? -D[J] / 2 : 0, Se = b === _d ? E[J] : D[J], se = b === _d ? -D[J] : -E[J], ne = e.elements.arrow, G = h && ne ? qw(ne) : {
40714
+ var W, z = w === "y" ? pr : mr, U = w === "y" ? ci : di, ee = w === "y" ? "height" : "width", ae = M[w], X = ae + y[z], ue = ae - y[U], pe = h ? -D[ee] / 2 : 0, Se = b === _d ? E[ee] : D[ee], se = b === _d ? -D[ee] : -E[ee], ne = e.elements.arrow, G = h && ne ? qw(ne) : {
40709
40715
  width: 0,
40710
40716
  height: 0
40711
- }, Y = e.modifiersData["arrow#persistent"] ? e.modifiersData["arrow#persistent"].padding : BD(), oe = Y[z], me = Y[U], Ce = q2(0, E[J], G[J]), qe = C ? E[J] / 2 - pe - Ce - oe - R.mainAxis : Se - Ce - oe - R.mainAxis, Re = C ? -E[J] / 2 + pe + Ce + me + R.mainAxis : se + Ce + me + R.mainAxis, et = e.elements.arrow && $p(e.elements.arrow), Mt = et ? w === "y" ? et.clientTop || 0 : et.clientLeft || 0 : 0, nr = (W = P == null ? void 0 : P[w]) != null ? W : 0, Hi = ae + qe - nr - Mt, mi = ae + Re - nr, xn = q2(h ? Qg(X, Hi) : X, ae, h ? ru(ue, mi) : ue);
40717
+ }, Y = e.modifiersData["arrow#persistent"] ? e.modifiersData["arrow#persistent"].padding : BD(), oe = Y[z], me = Y[U], Ce = q2(0, E[ee], G[ee]), qe = C ? E[ee] / 2 - pe - Ce - oe - R.mainAxis : Se - Ce - oe - R.mainAxis, Re = C ? -E[ee] / 2 + pe + Ce + me + R.mainAxis : se + Ce + me + R.mainAxis, et = e.elements.arrow && $p(e.elements.arrow), Mt = et ? w === "y" ? et.clientTop || 0 : et.clientLeft || 0 : 0, nr = (W = P == null ? void 0 : P[w]) != null ? W : 0, Hi = ae + qe - nr - Mt, mi = ae + Re - nr, xn = q2(h ? Qg(X, Hi) : X, ae, h ? ru(ue, mi) : ue);
40712
40718
  M[w] = xn, B[w] = xn - ae;
40713
40719
  }
40714
40720
  if (a) {
@@ -41345,7 +41351,7 @@ function fte(n, e) {
41345
41351
  function U() {
41346
41352
  return r7(M);
41347
41353
  }
41348
- function J(te) {
41354
+ function ee(te) {
41349
41355
  return w.state.isMounted && !w.state.isVisible || Cs.isTouch || c && c.type === "focus" ? 0 : ub(w.props.delay, te ? 0 : 1, Nr.delay);
41350
41356
  }
41351
41357
  function ae(te) {
@@ -41587,7 +41593,7 @@ function fte(n, e) {
41587
41593
  }
41588
41594
  function Zi(te) {
41589
41595
  w.clearDelayTimeouts(), te && X("onTrigger", [w, te]), Y();
41590
- var ve = J(!0), Ie = R(), lt = Ie[0], Ke = Ie[1];
41596
+ var ve = ee(!0), Ie = R(), lt = Ie[0], Ke = Ie[1];
41591
41597
  Cs.isTouch && lt === "hold" && Ke && (ve = Ke), ve ? r = setTimeout(function() {
41592
41598
  w.show();
41593
41599
  }, ve) : w.show();
@@ -41598,7 +41604,7 @@ function fte(n, e) {
41598
41604
  return;
41599
41605
  }
41600
41606
  if (!(w.props.trigger.indexOf("mouseenter") >= 0 && w.props.trigger.indexOf("click") >= 0 && ["mouseleave", "mousemove"].indexOf(te.type) >= 0 && o)) {
41601
- var ve = J(!1);
41607
+ var ve = ee(!1);
41602
41608
  ve ? i = setTimeout(function() {
41603
41609
  w.state.isVisible && w.hide();
41604
41610
  }, ve) : s = requestAnimationFrame(function() {
@@ -54896,7 +54902,7 @@ function Pne(n) {
54896
54902
  allowedAutoPlacements: g
54897
54903
  }) : Y);
54898
54904
  }, []), x = e.rects.reference, M = e.rects.popper, E = /* @__PURE__ */ new Map(), D = !0, O = w[0], R = 0; R < w.length; R++) {
54899
- var P = w[R], B = Is(P), W = Hd(P) === Bd, z = [gr, fi].indexOf(B) >= 0, U = z ? "width" : "height", J = zf(e, {
54905
+ var P = w[R], B = Is(P), W = Hd(P) === Bd, z = [gr, fi].indexOf(B) >= 0, U = z ? "width" : "height", ee = zf(e, {
54900
54906
  placement: P,
54901
54907
  boundary: c,
54902
54908
  rootBoundary: d,
@@ -54905,7 +54911,7 @@ function Pne(n) {
54905
54911
  }), ae = z ? W ? hi : yr : W ? fi : gr;
54906
54912
  x[U] > M[U] && (ae = gg(ae));
54907
54913
  var X = gg(ae), ue = [];
54908
- if (s && ue.push(J[B] <= 0), a && ue.push(J[ae] <= 0, J[X] <= 0), ue.every(function(G) {
54914
+ if (s && ue.push(ee[B] <= 0), a && ue.push(ee[ae] <= 0, ee[X] <= 0), ue.every(function(G) {
54909
54915
  return G;
54910
54916
  })) {
54911
54917
  O = P, D = !1;
@@ -55045,10 +55051,10 @@ function Hne(n) {
55045
55051
  };
55046
55052
  if (M) {
55047
55053
  if (s) {
55048
- var W, z = w === "y" ? gr : yr, U = w === "y" ? fi : hi, J = w === "y" ? "height" : "width", ae = M[w], X = ae + y[z], ue = ae - y[U], pe = h ? -D[J] / 2 : 0, Se = b === Bd ? E[J] : D[J], se = b === Bd ? -D[J] : -E[J], ne = e.elements.arrow, G = h && ne ? i8(ne) : {
55054
+ var W, z = w === "y" ? gr : yr, U = w === "y" ? fi : hi, ee = w === "y" ? "height" : "width", ae = M[w], X = ae + y[z], ue = ae - y[U], pe = h ? -D[ee] / 2 : 0, Se = b === Bd ? E[ee] : D[ee], se = b === Bd ? -D[ee] : -E[ee], ne = e.elements.arrow, G = h && ne ? i8(ne) : {
55049
55055
  width: 0,
55050
55056
  height: 0
55051
- }, Y = e.modifiersData["arrow#persistent"] ? e.modifiersData["arrow#persistent"].padding : fN(), oe = Y[z], me = Y[U], Ce = Y2(0, E[J], G[J]), qe = C ? E[J] / 2 - pe - Ce - oe - R.mainAxis : Se - Ce - oe - R.mainAxis, Re = C ? -E[J] / 2 + pe + Ce + me + R.mainAxis : se + Ce + me + R.mainAxis, et = e.elements.arrow && Bp(e.elements.arrow), Mt = et ? w === "y" ? et.clientTop || 0 : et.clientLeft || 0 : 0, nr = (W = P == null ? void 0 : P[w]) != null ? W : 0, Hi = ae + qe - nr - Mt, mi = ae + Re - nr, xn = Y2(h ? e3(X, Hi) : X, ae, h ? iu(ue, mi) : ue);
55057
+ }, Y = e.modifiersData["arrow#persistent"] ? e.modifiersData["arrow#persistent"].padding : fN(), oe = Y[z], me = Y[U], Ce = Y2(0, E[ee], G[ee]), qe = C ? E[ee] / 2 - pe - Ce - oe - R.mainAxis : Se - Ce - oe - R.mainAxis, Re = C ? -E[ee] / 2 + pe + Ce + me + R.mainAxis : se + Ce + me + R.mainAxis, et = e.elements.arrow && Bp(e.elements.arrow), Mt = et ? w === "y" ? et.clientTop || 0 : et.clientLeft || 0 : 0, nr = (W = P == null ? void 0 : P[w]) != null ? W : 0, Hi = ae + qe - nr - Mt, mi = ae + Re - nr, xn = Y2(h ? e3(X, Hi) : X, ae, h ? iu(ue, mi) : ue);
55052
55058
  M[w] = xn, B[w] = xn - ae;
55053
55059
  }
55054
55060
  if (a) {
@@ -55299,12 +55305,12 @@ const rre = ke({
55299
55305
  select: (n) => !0
55300
55306
  },
55301
55307
  setup() {
55302
- const { state: n, updateEmoji: e, updateSelect: t } = vr("store"), r = V(null), i = ee(() => nre(
55308
+ const { state: n, updateEmoji: e, updateSelect: t } = vr("store"), r = V(null), i = J(() => nre(
55303
55309
  n.emojis,
55304
55310
  n.search,
55305
55311
  n.skinTone,
55306
55312
  n.options.disabledGroups
55307
- )), s = xo(), o = ee(() => !n.options.hideGroupNames), a = ee(() => !n.options.disableStickyGroupNames), l = fA(n.options.groupNames), u = n.orderedGroupKeys;
55313
+ )), s = xo(), o = J(() => !n.options.hideGroupNames), a = J(() => !n.options.disableStickyGroupNames), l = fA(n.options.groupNames), u = n.orderedGroupKeys;
55308
55314
  n.options.additionalGroups && Object.keys(n.options.additionalGroups).map((p) => {
55309
55315
  n.options.groupNames[p] ? l[p] = n.options.groupNames[p] : l[p] = bN(p);
55310
55316
  });
@@ -55396,9 +55402,9 @@ var fre = /* @__PURE__ */ jp(rre, [["render", dre]]), hre = "data:image/svg+xml;
55396
55402
  const Sre = ke({
55397
55403
  name: "Header",
55398
55404
  setup(n) {
55399
- const { state: e, updateSearch: t, updateActiveGroup: r } = vr("store"), i = ee(() => !e.options.hideSearch), s = ee(() => !e.options.hideGroupIcons), o = JSON.parse(JSON.stringify(e.orderedGroupKeys)), a = ee(
55405
+ const { state: e, updateSearch: t, updateActiveGroup: r } = vr("store"), i = J(() => !e.options.hideSearch), s = J(() => !e.options.hideGroupIcons), o = JSON.parse(JSON.stringify(e.orderedGroupKeys)), a = J(
55400
55406
  () => e.options.staticTexts.placeholder || ""
55401
- ), l = ee({
55407
+ ), l = J({
55402
55408
  get: () => e.search,
55403
55409
  set: (d) => t(d)
55404
55410
  }), u = [
@@ -55484,9 +55490,9 @@ var Dre = /* @__PURE__ */ jp(Sre, [["render", Ore]]);
55484
55490
  const Nre = ke({
55485
55491
  name: "Header",
55486
55492
  setup() {
55487
- const { state: n, updateSkinTone: e } = vr("store"), t = V(!1), r = V(!1), i = ee(() => n.skinTone), s = ee(
55493
+ const { state: n, updateSkinTone: e } = vr("store"), t = V(!1), r = V(!1), i = J(() => n.skinTone), s = J(
55488
55494
  () => n.options.staticTexts.skinTone || "Skin tone"
55489
- ), o = ee(() => !n.options.disableSkinTones), a = vN() ? "is-mac" : "", l = ee(() => ({
55495
+ ), o = J(() => !n.options.disableSkinTones), a = vN() ? "is-mac" : "", l = J(() => ({
55490
55496
  ...n.emoji,
55491
55497
  src: rN + "/" + n.emoji[Bf] + ".png"
55492
55498
  }));
@@ -55606,7 +55612,7 @@ const zre = ke({
55606
55612
  setup(n, { emit: e }) {
55607
55613
  const t = V(), r = V(), i = V(), s = V(!1), o = V(n.text), a = n.type === "input" || n.type === "textarea";
55608
55614
  let l = -1;
55609
- const { state: u } = vr("store"), c = ee(() => u.options.colorTheme);
55615
+ const { state: u } = vr("store"), c = J(() => u.options.colorTheme);
55610
55616
  function d(y) {
55611
55617
  if (a) {
55612
55618
  const v = u.options.mode;
@@ -58028,12 +58034,12 @@ function fse(n) {
58028
58034
  // <>
58029
58035
  ];
58030
58036
  for (let W = 0; W < B.length; W++) {
58031
- const [z, U] = B[W], J = de(M, z);
58032
- de(E, z, J), de(J, U, M);
58037
+ const [z, U] = B[W], ee = de(M, z);
58038
+ de(E, z, ee), de(ee, U, M);
58033
58039
  const ae = Kr(Am);
58034
- Fe(J, t, ae);
58040
+ Fe(ee, t, ae);
58035
58041
  const X = Kr();
58036
- Fe(J, r), Fe(ae, t, ae), Fe(ae, r, X), Fe(X, t, ae), Fe(X, r, X), de(ae, U, M), de(X, U, M);
58042
+ Fe(ee, r), Fe(ae, t, ae), Fe(ae, r, X), Fe(X, t, ae), Fe(X, r, X), de(ae, U, M), de(X, U, M);
58037
58043
  }
58038
58044
  return de(s, Vf, C), de(s, d8, dse), {
58039
58045
  start: s,
@@ -59874,7 +59880,7 @@ const Ioe = ke({
59874
59880
  p !== -1 && (h.splice(p, 1), e("file-list", h));
59875
59881
  }, u = (f) => {
59876
59882
  e("file-list", f.files);
59877
- }, { isOverDropZone: c } = qL(r), d = ee(() => n.files);
59883
+ }, { isOverDropZone: c } = qL(r), d = J(() => n.files);
59878
59884
  return {
59879
59885
  // ref elements - Needed this for triggering events in component
59880
59886
  fileUpload: t,
@@ -60045,7 +60051,7 @@ const _oe = /* @__PURE__ */ He(Ioe, [["render", Poe]]), Loe = ke({
60045
60051
  },
60046
60052
  emits: ["update:model-value", "update:attachments"],
60047
60053
  setup(n, { emit: e }) {
60048
- const t = V(), r = V(!1), i = V(""), s = V(), o = V(), a = V(!1), l = V(!1), u = V(!1), c = V([]), d = V(), f = V(), h = ee(() => R.value.getAttributes("textStyle").color || "#121517"), p = ee(() => n.attachments), y = BA(WL).greaterOrEqual("md"), v = () => {
60054
+ const t = V(), r = V(!1), i = V(""), s = V(), o = V(), a = V(!1), l = V(!1), u = V(!1), c = V([]), d = V(), f = V(), h = J(() => R.value.getAttributes("textStyle").color || "#121517"), p = J(() => n.attachments), y = BA(WL).greaterOrEqual("md"), v = () => {
60049
60055
  const P = window.prompt("URL");
60050
60056
  R.value.chain().focus().extendMarkRange("link").setLink({ href: P || "" }).run();
60051
60057
  }, b = (P) => {
@@ -60423,7 +60429,7 @@ const LN = /* @__PURE__ */ He(Loe, [["render", Uoe], ["__scopeId", "data-v-455a8
60423
60429
  props: Zoe,
60424
60430
  emits: ["update:model-value"],
60425
60431
  setup(n) {
60426
- const { t: e } = Do(), t = [{ text: e("HC_CANCEL") }], r = V(null), i = V(!1), s = V(""), o = V(!1), a = V(!1), l = V(!1), u = V(""), c = V(), d = ee(() => {
60432
+ const { t: e } = Do(), t = [{ text: e("HC_CANCEL") }], r = V(null), i = V(!1), s = V(""), o = V(!1), a = V(!1), l = V(!1), u = V(""), c = V(), d = J(() => {
60427
60433
  const P = [];
60428
60434
  return n.canCopyLink && P.push({
60429
60435
  text: e("HC_COPY_LINK"),
@@ -60444,9 +60450,9 @@ const LN = /* @__PURE__ */ He(Loe, [["render", Uoe], ["__scopeId", "data-v-455a8
60444
60450
  classes: "!text-red-20",
60445
60451
  event: C
60446
60452
  }), P;
60447
- }), f = ee(() => n.user.firstName + " " + n.user.lastName.substring(0, 1)), h = ee(() => Ot.fromISO(n.dateUtc).toLocaleString(
60453
+ }), f = J(() => n.user.firstName + " " + n.user.lastName.substring(0, 1)), h = J(() => Ot.fromISO(n.dateUtc).toLocaleString(
60448
60454
  Ot.DATETIME_MED
60449
- )), p = ee(() => n.user.name.split(" ").map((P) => P.trim().charAt(0)).join("").toUpperCase()), g = () => {
60455
+ )), p = J(() => n.user.name.split(" ").map((P) => P.trim().charAt(0)).join("").toUpperCase()), g = () => {
60450
60456
  i.value = !1, s.value = "";
60451
60457
  }, y = () => {
60452
60458
  navigator.clipboard.writeText(
@@ -61415,7 +61421,7 @@ function T8() {
61415
61421
  return vr(YN, yv(v7()));
61416
61422
  }
61417
61423
  function Kae(n) {
61418
- const e = ee(() => Ha(n.value) ? GN(v7(), n.value) : v7(n.value));
61424
+ const e = J(() => Ha(n.value) ? GN(v7(), n.value) : v7(n.value));
61419
61425
  return ko(YN, e), e;
61420
61426
  }
61421
61427
  function Gae(n) {
@@ -61667,7 +61673,7 @@ function Mle(n, {
61667
61673
  clearable: !0,
61668
61674
  range: !1,
61669
61675
  multiple: !1
61670
- }), r = tr(), i = V(null), s = ee(() => t.separator || (t.range ? " ~ " : ",")), o = (h) => t.range ? Fl(h) : t.multiple ? ble(h) : Io(h), a = (h) => Array.isArray(h) ? h.some((p) => t.disabledDate(p)) : t.disabledDate(h), l = ee(() => i.value !== null ? i.value : typeof t.renderInputText == "function" ? t.renderInputText(t.value) : o(t.value) ? Array.isArray(t.value) ? t.value.map((h) => t.formatDate(h)).join(s.value) : t.formatDate(t.value) : ""), u = (h) => {
61676
+ }), r = tr(), i = V(null), s = J(() => t.separator || (t.range ? " ~ " : ",")), o = (h) => t.range ? Fl(h) : t.multiple ? ble(h) : Io(h), a = (h) => Array.isArray(h) ? h.some((p) => t.disabledDate(p)) : t.disabledDate(h), l = J(() => i.value !== null ? i.value : typeof t.renderInputText == "function" ? t.renderInputText(t.value) : o(t.value) ? Array.isArray(t.value) ? t.value.map((h) => t.formatDate(h)).join(s.value) : t.formatDate(t.value) : ""), u = (h) => {
61671
61677
  var p;
61672
61678
  h && h.stopPropagation(), t.onChange(t.range ? [null, null] : null), (p = t.onClear) == null || p.call(t);
61673
61679
  }, c = () => {
@@ -61738,7 +61744,7 @@ function Tle(n, {
61738
61744
  confirmText: "OK"
61739
61745
  });
61740
61746
  Gae(r.prefixClass), Yae(((t = r.formatter) == null ? void 0 : t.getWeek) || w8);
61741
- const i = Kae(u_(n, "lang")), s = V(), o = () => s.value, a = V(!1), l = ee(() => !r.disabled && (typeof r.open == "boolean" ? r.open : a.value)), u = () => {
61747
+ const i = Kae(u_(n, "lang")), s = V(), o = () => s.value, a = V(!1), l = J(() => !r.disabled && (typeof r.open == "boolean" ? r.open : a.value)), u = () => {
61742
61748
  var M, E;
61743
61749
  r.disabled || l.value || (a.value = !0, (M = r["onUpdate:open"]) == null || M.call(r, !0), (E = r.onOpen) == null || E.call(r));
61744
61750
  }, c = () => {
@@ -61778,7 +61784,7 @@ function Tle(n, {
61778
61784
  default:
61779
61785
  return d(M, r.valueType);
61780
61786
  }
61781
- }, g = ee(() => {
61787
+ }, g = J(() => {
61782
61788
  const M = r.value;
61783
61789
  return r.range ? (Array.isArray(M) ? M.slice(0, 2) : [null, null]).map(h) : r.multiple ? (Array.isArray(M) ? M : []).map(h) : h(M);
61784
61790
  }), y = (M, E, D = !0) => {
@@ -61828,7 +61834,7 @@ function Tle(n, {
61828
61834
  value: v.value,
61829
61835
  "onUpdate:value": b,
61830
61836
  emit: y
61831
- }, J = e.header && L("div", {
61837
+ }, ee = e.header && L("div", {
61832
61838
  class: `${D}-datepicker-header`
61833
61839
  }, [e.header(U)]), ae = (e.footer || R) && L("div", {
61834
61840
  class: `${D}-datepicker-footer`
@@ -61863,7 +61869,7 @@ function Tle(n, {
61863
61869
  }, {
61864
61870
  default: () => [ue, L("div", {
61865
61871
  class: `${D}-datepicker-content`
61866
- }, [J, X, ae])]
61872
+ }, [ee, X, ae])]
61867
61873
  })]);
61868
61874
  };
61869
61875
  }
@@ -61947,12 +61953,12 @@ function xle({
61947
61953
  firstDayOfWeek: b,
61948
61954
  year: w,
61949
61955
  month: x
61950
- }), 7), E = (U, J) => C8(U, J, {
61956
+ }), 7), E = (U, ee) => C8(U, ee, {
61951
61957
  locale: h.formatLocale
61952
61958
  }), D = (U) => {
61953
61959
  a(U);
61954
61960
  }, O = (U) => {
61955
- const J = U.getAttribute("data-index"), [ae, X] = J.split(",").map((pe) => parseInt(pe, 10)), ue = M[ae][X];
61961
+ const ee = U.getAttribute("data-index"), [ae, X] = ee.split(",").map((pe) => parseInt(pe, 10)), ue = M[ae][X];
61956
61962
  return new Date(ue);
61957
61963
  }, R = (U) => {
61958
61964
  o(O(U.currentTarget));
@@ -61987,20 +61993,20 @@ function xle({
61987
61993
  class: `${d}-week-number-header`
61988
61994
  }, null), C.map((U) => L("th", {
61989
61995
  key: U
61990
- }, [U]))])]), L("tbody", null, [M.map((U, J) => L("tr", {
61991
- key: J,
61996
+ }, [U]))])]), L("tbody", null, [M.map((U, ee) => L("tr", {
61997
+ key: ee,
61992
61998
  class: [`${d}-date-row`, {
61993
61999
  [`${d}-active-week`]: i(U)
61994
62000
  }]
61995
62001
  }, [t && L("td", {
61996
62002
  class: `${d}-week-number`,
61997
- "data-index": `${J},0`,
62003
+ "data-index": `${ee},0`,
61998
62004
  onClick: R
61999
62005
  }, [L("div", null, [f(U[0])])]), U.map((ae, X) => L("td", {
62000
62006
  key: X,
62001
62007
  class: ["cell", s(ae)],
62002
62008
  title: E(ae, r),
62003
- "data-index": `${J},${X}`,
62009
+ "data-index": `${ee},${X}`,
62004
62010
  onClick: R,
62005
62011
  onMouseenter: P,
62006
62012
  onMouseleave: B
@@ -62092,7 +62098,7 @@ function Ple(n) {
62092
62098
  disabledDate: () => !1,
62093
62099
  getClasses: () => [],
62094
62100
  titleFormat: "YYYY-MM-DD"
62095
- }), t = ee(() => (Array.isArray(e.value) ? e.value : [e.value]).filter(Io).map((b) => e.type === "year" ? wle(b) : e.type === "month" ? bk(b) : el(b))), r = V(/* @__PURE__ */ new Date());
62101
+ }), t = J(() => (Array.isArray(e.value) ? e.value : [e.value]).filter(Io).map((b) => e.type === "year" ? wle(b) : e.type === "month" ? bk(b) : el(b))), r = V(/* @__PURE__ */ new Date());
62096
62102
  nn(() => {
62097
62103
  let v = e.calendar;
62098
62104
  if (!Io(v)) {
@@ -62188,7 +62194,7 @@ function _le(n) {
62188
62194
  const e = Po(n, {
62189
62195
  defaultValue: /* @__PURE__ */ new Date(),
62190
62196
  type: "date"
62191
- }), t = tr(), r = ee(() => {
62197
+ }), t = tr(), r = J(() => {
62192
62198
  let y = Array.isArray(e.defaultValue) ? e.defaultValue : [e.defaultValue, e.defaultValue];
62193
62199
  return y = y.map((v) => el(v)), Fl(y) ? y : [/* @__PURE__ */ new Date(), /* @__PURE__ */ new Date()].map((v) => el(v));
62194
62200
  }), i = V([/* @__PURE__ */ new Date(NaN), /* @__PURE__ */ new Date(NaN)]);
@@ -62199,7 +62205,7 @@ function _le(n) {
62199
62205
  var b;
62200
62206
  const [C, w] = i.value;
62201
62207
  Io(C) && !Io(w) ? (C.getTime() > y.getTime() ? i.value = [y, C] : i.value = [C, y], (b = e["onUpdate:value"]) == null || b.call(e, i.value, v)) : i.value = [y, /* @__PURE__ */ new Date(NaN)];
62202
- }, o = V([/* @__PURE__ */ new Date(), /* @__PURE__ */ new Date()]), a = ee(() => Fl(e.calendar) ? e.calendar : o.value), l = ee(() => e.type === "year" ? 10 * 12 : e.type === "month" ? 1 * 12 : 1), u = (y, v) => {
62208
+ }, o = V([/* @__PURE__ */ new Date(), /* @__PURE__ */ new Date()]), a = J(() => Fl(e.calendar) ? e.calendar : o.value), l = J(() => e.type === "year" ? 10 * 12 : e.type === "month" ? 1 * 12 : 1), u = (y, v) => {
62203
62209
  var b;
62204
62210
  const C = Cle(y[0], y[1]), w = l.value - C;
62205
62211
  if (w > 0) {
@@ -62579,7 +62585,7 @@ function nP(n) {
62579
62585
  var s;
62580
62586
  e.value = !0, (s = n.onShowTimePanelChange) == null || s.call(n, !0);
62581
62587
  };
62582
- return { timeVisible: ee(() => typeof n.showTimePanel == "boolean" ? n.showTimePanel : e.value), openTimePanel: r, closeTimePanel: t };
62588
+ return { timeVisible: J(() => typeof n.showTimePanel == "boolean" ? n.showTimePanel : e.value), openTimePanel: r, closeTimePanel: t };
62583
62589
  }
62584
62590
  function Vle(n) {
62585
62591
  const e = Po(n, {
@@ -62874,7 +62880,7 @@ const i0e = ke({
62874
62880
  },
62875
62881
  emits: ["update:modelValue"],
62876
62882
  setup(n) {
62877
- const e = V("bottom"), t = V(), r = V(!1), i = V(n.modelValue || ""), s = ee(() => n.disabledAfterToday ? o : n.disabledBeforeToday ? a : n.disabledDate), o = (u) => u > /* @__PURE__ */ new Date(), a = (u) => {
62883
+ const e = V("bottom"), t = V(), r = V(!1), i = V(n.modelValue || ""), s = J(() => n.disabledAfterToday ? o : n.disabledBeforeToday ? a : n.disabledDate), o = (u) => u > /* @__PURE__ */ new Date(), a = (u) => {
62878
62884
  const c = /* @__PURE__ */ new Date();
62879
62885
  return c.setHours(0, 0, 0, 0), u < c;
62880
62886
  }, l = () => {
@@ -62963,7 +62969,7 @@ const P1e = /* @__PURE__ */ He(i0e, [["render", o0e], ["__scopeId", "data-v-70cc
62963
62969
  emits: ["update:modelValue"],
62964
62970
  setup(n, { slots: e }) {
62965
62971
  return {
62966
- hasSlotContent: ee(() => !!e.default)
62972
+ hasSlotContent: J(() => !!e.default)
62967
62973
  };
62968
62974
  }
62969
62975
  }), l0e = { class: "divider relative flex items-center w-full" };
@@ -63181,7 +63187,7 @@ const R1e = /* @__PURE__ */ He(h0e, [["render", v0e], ["__scopeId", "data-v-f2d3
63181
63187
  },
63182
63188
  emits: ["select-grid-item", "filters-updated"],
63183
63189
  setup(n, { emit: e }) {
63184
- const { t } = Do(), r = V(""), i = ee(() => {
63190
+ const { t } = Do(), r = V(""), i = J(() => {
63185
63191
  const d = n.filters, f = aP(
63186
63192
  n.gridData,
63187
63193
  r.value,
@@ -63191,7 +63197,7 @@ const R1e = /* @__PURE__ */ He(h0e, [["render", v0e], ["__scopeId", "data-v-f2d3
63191
63197
  n.exclude
63192
63198
  );
63193
63199
  return e("filters-updated", f), f;
63194
- }), s = ee(() => n.columns ? `q-grid-cols-${n.columns}` : ""), o = ee(() => i.value.length % n.columns === 0), a = ee(() => n.noResultMessage || t("HC_NO_RESULTS_FOUND")), l = ee(() => {
63200
+ }), s = J(() => n.columns ? `q-grid-cols-${n.columns}` : ""), o = J(() => i.value.length % n.columns === 0), a = J(() => n.noResultMessage || t("HC_NO_RESULTS_FOUND")), l = J(() => {
63195
63201
  const d = [], f = {};
63196
63202
  return [...Array(n.skeletonRows * n.columns)].forEach(() => {
63197
63203
  d.push(f);
@@ -63371,7 +63377,7 @@ const $1e = /* @__PURE__ */ He(b0e, [["render", x0e], ["__scopeId", "data-v-cfe1
63371
63377
  },
63372
63378
  emits: ["update:modelValue"],
63373
63379
  setup(n, { emit: e }) {
63374
- const t = V(null), r = ee(() => n.isChecklist ? n.options.filter(
63380
+ const t = V(null), r = J(() => n.isChecklist ? n.options.filter(
63375
63381
  (s) => s.state === "pass"
63376
63382
  ) : n.options);
63377
63383
  return {
@@ -63548,10 +63554,10 @@ const F1e = /* @__PURE__ */ He(O0e, [["render", L0e], ["__scopeId", "data-v-80f2
63548
63554
  },
63549
63555
  emits: ["update:model-value", "update-type"],
63550
63556
  setup(n, { emit: e }) {
63551
- const t = x7(), r = V(null), i = V(!1), s = V(n.type === "password" ? Mk : ""), o = ee(() => !!n.disabled), a = ee(() => {
63557
+ const t = x7(), r = V(null), i = V(!1), s = V(n.type === "password" ? Mk : ""), o = J(() => !!n.disabled), a = J(() => {
63552
63558
  const p = s.value;
63553
63559
  return !!n.modelValue && !o.value && (c.value && n.iconPosition === "left" || !p);
63554
- }), l = ee(() => [
63560
+ }), l = J(() => [
63555
63561
  "control flex items-center",
63556
63562
  { focused: !!i.value },
63557
63563
  { disabled: o.value },
@@ -63560,12 +63566,12 @@ const F1e = /* @__PURE__ */ He(O0e, [["render", L0e], ["__scopeId", "data-v-80f2
63560
63566
  },
63561
63567
  n.controlClass,
63562
63568
  { ["size-" + n.size]: n.size }
63563
- ]), u = ee(() => [
63569
+ ]), u = J(() => [
63564
63570
  "input",
63565
63571
  { [n.status]: n.status && !o.value },
63566
63572
  { [n.inputClass]: !!n.inputClass },
63567
63573
  { populated: !!n.modelValue }
63568
- ]), c = ee(() => !!(t != null && t.default)), d = () => {
63574
+ ]), c = J(() => !!(t != null && t.default)), d = () => {
63569
63575
  const p = n.type === "password", g = n.type === "text" && s.value === kk;
63570
63576
  (p || g) && f();
63571
63577
  }, f = () => {
@@ -63734,7 +63740,7 @@ const B1e = /* @__PURE__ */ He(R0e, [["render", F0e], ["__scopeId", "data-v-320d
63734
63740
  ease: "linear",
63735
63741
  duration: 0,
63736
63742
  delay: 0
63737
- }, f = V(null), h = V(null), p = V(""), { motionProperties: g } = Y7(f), { push: y } = W7(), v = ee(() => {
63743
+ }, f = V(null), h = V(null), p = V(""), { motionProperties: g } = Y7(f), { push: y } = W7(), v = J(() => {
63738
63744
  const O = aP(
63739
63745
  n.data,
63740
63746
  b.value,
@@ -63744,7 +63750,7 @@ const B1e = /* @__PURE__ */ He(R0e, [["render", F0e], ["__scopeId", "data-v-320d
63744
63750
  n.exclude
63745
63751
  );
63746
63752
  return e("filters-updated", O), O;
63747
- }), b = ee(() => n.searchText || p.value), C = ee(() => t.value <= 0 ? 70 : t.value > 70 ? 0 : 70 - t.value), w = (O) => {
63753
+ }), b = J(() => n.searchText || p.value), C = J(() => t.value <= 0 ? 70 : t.value > 70 ? 0 : 70 - t.value), w = (O) => {
63748
63754
  !O.dragging && t.value <= 24 && t.value >= 0 && (r.value = 0), !O.dragging && t.value > 24 && t.value < 70 && (r.value = 70), !(t.value > 0) && (a.value ? M(O) : x(O));
63749
63755
  };
63750
63756
  u.value && CA(w, {
@@ -63989,7 +63995,7 @@ const j1e = /* @__PURE__ */ He(B0e, [["render", oue], ["__scopeId", "data-v-4391
63989
63995
  }
63990
63996
  },
63991
63997
  setup(n, { slots: e }) {
63992
- const t = vr("size"), r = ee(() => !!e.header), i = ee(() => !!e.footer);
63998
+ const t = vr("size"), r = J(() => !!e.header), i = J(() => !!e.footer);
63993
63999
  return { modalSize: t, hasHeader: r, hasFooter: i };
63994
64000
  }
63995
64001
  }), lue = {
@@ -65403,7 +65409,7 @@ const Pue = ke({
65403
65409
  },
65404
65410
  emits: ["update:model-value"],
65405
65411
  setup(n, { slots: e, emit: t }) {
65406
- const { t: r } = Do(), i = V(null), s = V(null), o = V(n.modelValue), a = V(""), l = ee(() => n.options.length + n.options.reduce((M, E) => E.libs ? M + E.libs.length : 0, 0)), u = ee(() => !!e.action), c = ee(() => n.noResultMessage || r("HC_PRESS_ENTER_TO_CREATE_A_TAG")), d = ee(() => n.tagPlaceholder || r("HC_PRESS_ENTER_TO_CREATE_A_TAG")), f = ee(() => l.value === o.value.length ? r("HC_ALL") : o.value.length > 1 ? r("HC_MULTIPLE_SELECTED") : o.value[0].label || o.value[0].name || ""), h = ee(() => n.taggable || n.showTags), p = (M) => {
65412
+ const { t: r } = Do(), i = V(null), s = V(null), o = V(n.modelValue), a = V(""), l = J(() => n.options.length + n.options.reduce((M, E) => E.libs ? M + E.libs.length : 0, 0)), u = J(() => !!e.action), c = J(() => n.noResultMessage || r("HC_PRESS_ENTER_TO_CREATE_A_TAG")), d = J(() => n.tagPlaceholder || r("HC_PRESS_ENTER_TO_CREATE_A_TAG")), f = J(() => l.value === o.value.length ? r("HC_ALL") : o.value.length > 1 ? r("HC_MULTIPLE_SELECTED") : o.value[0].label || o.value[0].name || ""), h = J(() => n.taggable || n.showTags), p = (M) => {
65407
65413
  t("update:model-value", M);
65408
65414
  }, g = (M) => {
65409
65415
  a.value = M;
@@ -66682,13 +66688,13 @@ var _8 = {
66682
66688
  return P ? P > B ? P - B : P : 0;
66683
66689
  }, l = function(P, B) {
66684
66690
  return Math.floor(P / (B || P));
66685
- }, u = function(P, B, W, z, U, J) {
66686
- return P <= U ? U : J ? W - z - U : B + U - 1;
66687
- }, c = function(P, B, W, z, U, J, ae) {
66688
- return P <= J ? 0 : Math.max(0, ae ? P < B ? W : P - J : P > B ? W : P - 2 * J);
66689
- }, d = function(P, B, W, z, U, J) {
66691
+ }, u = function(P, B, W, z, U, ee) {
66692
+ return P <= U ? U : ee ? W - z - U : B + U - 1;
66693
+ }, c = function(P, B, W, z, U, ee, ae) {
66694
+ return P <= ee ? 0 : Math.max(0, ae ? P < B ? W : P - ee : P > B ? W : P - 2 * ee);
66695
+ }, d = function(P, B, W, z, U, ee) {
66690
66696
  var ae = B + z + 2 * U;
66691
- return P >= U && (ae += U + 1), t.getLast(ae, J);
66697
+ return P >= U && (ae += U + 1), t.getLast(ae, ee);
66692
66698
  }, f = a(r.scrollTop, o.top), h = a(r.scrollLeft, o.left), p = i ? {
66693
66699
  rows: 0,
66694
66700
  cols: 0
@@ -77170,20 +77176,20 @@ const fhe = "data:image/svg+xml,%3csvg%20width='118'%20height='99'%20viewBox='0%
77170
77176
  },
77171
77177
  // Merge any other filters passed in via prop.
77172
77178
  ...n.filters
77173
- }), g = ee(() => t.value === "desktop"), y = ee(() => {
77179
+ }), g = J(() => t.value === "desktop"), y = J(() => {
77174
77180
  var U;
77175
77181
  const z = !n.loading && ((U = r.value) == null ? void 0 : U.empty);
77176
77182
  return e("is-empty", z), z;
77177
- }), v = ee(() => {
77183
+ }), v = J(() => {
77178
77184
  const z = [], U = {};
77179
- let J = 0;
77185
+ let ee = 0;
77180
77186
  return n.columns.forEach((ae) => {
77181
77187
  U[ae.key] = "";
77182
77188
  }), [...Array(n.skeletonRows)].forEach(() => {
77183
77189
  z.push({
77184
77190
  ...U,
77185
- shimmer: J % 2 ? "bg-gray-10" : "bg-gray-30"
77186
- }), J++;
77191
+ shimmer: ee % 2 ? "bg-gray-10" : "bg-gray-30"
77192
+ }), ee++;
77187
77193
  }), z;
77188
77194
  }), b = () => {
77189
77195
  var z, U;
@@ -77194,14 +77200,14 @@ const fhe = "data:image/svg+xml,%3csvg%20width='118'%20height='99'%20viewBox='0%
77194
77200
  n.rowUnselect(z);
77195
77201
  }, x = () => {
77196
77202
  var ae, X;
77197
- const z = f.value.offsetTop - n.fixedTopOffset, U = document.querySelector('div[data-pc-section="header"]'), J = (ae = u.value) == null ? void 0 : ae.querySelector("thead");
77203
+ const z = f.value.offsetTop - n.fixedTopOffset, U = document.querySelector('div[data-pc-section="header"]'), ee = (ae = u.value) == null ? void 0 : ae.querySelector("thead");
77198
77204
  if (s.value = !!n.fixedTopOffset && f.value && window.scrollY >= z, s.value) {
77199
77205
  if (U.style.top = n.fixedTopOffset + "px", !i.value) {
77200
77206
  const ue = n.fixedTopOffset + U.clientHeight + 1;
77201
- J.style.top = ue + "px";
77207
+ ee.style.top = ue + "px";
77202
77208
  }
77203
77209
  } else
77204
- U.style.top = "", i.value || (J.style.top = "");
77210
+ U.style.top = "", i.value || (ee.style.top = "");
77205
77211
  if (s.value && i.value) {
77206
77212
  const ue = document.querySelector(
77207
77213
  'div[data-pc-section="header"] > div[data-pc-section="wrapper"]'
@@ -77216,13 +77222,13 @@ const fhe = "data:image/svg+xml,%3csvg%20width='118'%20height='99'%20viewBox='0%
77216
77222
  }
77217
77223
  E(), B();
77218
77224
  }, M = () => {
77219
- var U, J, ae, X;
77225
+ var U, ee, ae, X;
77220
77226
  const z = (U = u.value) == null ? void 0 : U.cloneNode(!0);
77221
77227
  if (z) {
77222
77228
  const ue = document.querySelector('div[data-pc-section="header"]');
77223
77229
  ue == null || ue.append(z);
77224
77230
  const pe = ue == null ? void 0 : ue.querySelector('div[data-pc-section="wrapper"]');
77225
- (J = pe == null ? void 0 : pe.querySelector("tbody")) == null || J.remove(), pe == null || pe.addEventListener("scroll", () => {
77231
+ (ee = pe == null ? void 0 : pe.querySelector("tbody")) == null || ee.remove(), pe == null || pe.addEventListener("scroll", () => {
77226
77232
  u.value.scrollLeft = pe.scrollLeft;
77227
77233
  const Se = u.value.scrollWidth - u.value.clientWidth;
77228
77234
  a.value = u.value.scrollLeft === 0, o.value = u.value.scrollLeft === Se, B();
@@ -77244,8 +77250,8 @@ const fhe = "data:image/svg+xml,%3csvg%20width='118'%20height='99'%20viewBox='0%
77244
77250
  });
77245
77251
  }
77246
77252
  }, E = () => {
77247
- const z = u.value.clientWidth + "px", U = document.querySelector('div[data-pc-section="header"]'), J = U.querySelector('div[data-pc-section="wrapper"] thead');
77248
- U.style.width = z, u.value.querySelector("thead").style.width = z, J && (J.style.width = z);
77253
+ const z = u.value.clientWidth + "px", U = document.querySelector('div[data-pc-section="header"]'), ee = U.querySelector('div[data-pc-section="wrapper"] thead');
77254
+ U.style.width = z, u.value.querySelector("thead").style.width = z, ee && (ee.style.width = z);
77249
77255
  }, D = () => {
77250
77256
  if (u.value) {
77251
77257
  const z = s.value ? "instant" : "smooth";
@@ -77263,7 +77269,7 @@ const fhe = "data:image/svg+xml,%3csvg%20width='118'%20height='99'%20viewBox='0%
77263
77269
  });
77264
77270
  }
77265
77271
  }, R = () => {
77266
- var z, U, J;
77272
+ var z, U, ee;
77267
77273
  if (i.value) {
77268
77274
  const ae = a.value ? "hidden" : "", X = o.value ? "hidden" : "";
77269
77275
  (z = f.value) == null || z.insertAdjacentHTML(
@@ -77279,20 +77285,20 @@ const fhe = "data:image/svg+xml,%3csvg%20width='118'%20height='99'%20viewBox='0%
77279
77285
  icon: "chevron-right",
77280
77286
  type: "",
77281
77287
  size: "sm"
77282
- }), Se = (U = f.value) == null ? void 0 : U.querySelector(".scroll-button.scroll-left"), se = (J = f.value) == null ? void 0 : J.querySelector(".scroll-button.scroll-right");
77288
+ }), Se = (U = f.value) == null ? void 0 : U.querySelector(".scroll-button.scroll-left"), se = (ee = f.value) == null ? void 0 : ee.querySelector(".scroll-button.scroll-right");
77283
77289
  H8(ue, Se), H8(pe, se), Se == null || Se.addEventListener("click", D), se == null || se.addEventListener("click", O);
77284
77290
  }
77285
77291
  B();
77286
77292
  }, P = () => {
77287
77293
  var z, U;
77288
- (U = (z = f.value) == null ? void 0 : z.querySelectorAll(".scroll-button")) == null || U.forEach((J) => {
77289
- J.remove();
77294
+ (U = (z = f.value) == null ? void 0 : z.querySelectorAll(".scroll-button")) == null || U.forEach((ee) => {
77295
+ ee.remove();
77290
77296
  });
77291
77297
  }, B = () => {
77292
77298
  var Se, se, ne, G;
77293
- const z = (Se = f.value) == null ? void 0 : Se.querySelector(".scroll-button.scroll-left"), U = (se = f.value) == null ? void 0 : se.querySelector(".scroll-button.scroll-right"), J = (ne = u.value) == null ? void 0 : ne.querySelector("td.sticky:first-child"), ae = (G = f.value) == null ? void 0 : G.getBoundingClientRect(), X = document.querySelector('div[data-pc-section="header"]'), ue = (X == null ? void 0 : X.getBoundingClientRect().height) || 0, pe = u.value;
77299
+ const z = (Se = f.value) == null ? void 0 : Se.querySelector(".scroll-button.scroll-left"), U = (se = f.value) == null ? void 0 : se.querySelector(".scroll-button.scroll-right"), ee = (ne = u.value) == null ? void 0 : ne.querySelector("td.sticky:first-child"), ae = (G = f.value) == null ? void 0 : G.getBoundingClientRect(), X = document.querySelector('div[data-pc-section="header"]'), ue = (X == null ? void 0 : X.getBoundingClientRect().height) || 0, pe = u.value;
77294
77300
  if (f.value && ae && pe) {
77295
- const Y = (J == null ? void 0 : J.getBoundingClientRect().width) || 0;
77301
+ const Y = (ee == null ? void 0 : ee.getBoundingClientRect().width) || 0;
77296
77302
  f.value.style.setProperty("--first-sticky-width", `${Y}px`);
77297
77303
  const oe = pe.getBoundingClientRect(), me = Math.max(oe.top, ue), Ce = Math.min(oe.bottom, window.innerHeight), qe = me < window.innerHeight && Ce > ue, Re = Ce - me, et = me + Re / 2;
77298
77304
  if (z && U)
@@ -77582,13 +77588,13 @@ const W1e = /* @__PURE__ */ He(Ahe, [["render", The], ["__scopeId", "data-v-1a01
77582
77588
  },
77583
77589
  emits: [tA],
77584
77590
  setup(n, { attrs: e, emit: t, slots: r }) {
77585
- const i = V(!1), s = V(), o = ee(() => !!r.actions), a = ee(() => !!e.disabled || !!n.isDisabled), l = ee(() => [
77591
+ const i = V(!1), s = V(), o = J(() => !!r.actions), a = J(() => !!e.disabled || !!n.isDisabled), l = J(() => [
77586
77592
  {
77587
77593
  [`has-${n.status}`]: n.status && !a.value
77588
77594
  },
77589
77595
  { "is-focused": i.value },
77590
77596
  { "is-disabled": a.value }
77591
- ]), u = ee(() => [
77597
+ ]), u = J(() => [
77592
77598
  "textarea",
77593
77599
  n.textareaClass,
77594
77600
  { [n.status]: n.status && !a.value },
@@ -77704,16 +77710,16 @@ const q1e = /* @__PURE__ */ He(Ehe, [["render", Dhe], ["__scopeId", "data-v-fda7
77704
77710
  },
77705
77711
  emits: [nA, rA, iA],
77706
77712
  setup(n, { emit: e }) {
77707
- const t = V(null), r = ee({
77713
+ const t = V(null), r = J({
77708
77714
  get: () => n.modelValue,
77709
77715
  set: (u) => {
77710
77716
  e(nA, u);
77711
77717
  }
77712
- }), i = ee(
77718
+ }), i = J(
77713
77719
  () => n.variant ? "is-" + n.variant : ""
77714
- ), s = ee(
77720
+ ), s = J(
77715
77721
  () => n.position ? "toast-fixed " + n.position : ""
77716
- ), o = ee(
77722
+ ), o = J(
77717
77723
  () => n.withTransition && n.transitionClass
77718
77724
  ), a = () => {
77719
77725
  e(rA);
@@ -77835,11 +77841,11 @@ const K1e = /* @__PURE__ */ He(Nhe, [["render", Rhe], ["__scopeId", "data-v-3862
77835
77841
  for (const D of b) {
77836
77842
  const O = D === "t" || D === "b";
77837
77843
  let R = p[D];
77838
- const [P, B] = O ? ["top", "left"] : ["left", "top"], [W, z] = O ? [h.height, h.width] : [h.width, h.height], [U, J] = O ? [M, E] : [E, M], [ae, X] = O ? [w, x] : [x, w];
77844
+ const [P, B] = O ? ["top", "left"] : ["left", "top"], [W, z] = O ? [h.height, h.width] : [h.width, h.height], [U, ee] = O ? [M, E] : [E, M], [ae, X] = O ? [w, x] : [x, w];
77839
77845
  if (!(R < ae || R + W + o > U))
77840
77846
  for (const ue of C) {
77841
77847
  let pe = g[(O ? "v" : "h") + ue];
77842
- if (!(pe < X || pe + z + o > J)) {
77848
+ if (!(pe < X || pe + z + o > ee)) {
77843
77849
  if (pe -= h[B], R -= h[P], e.style[B] = `${pe}px`, e.style[P] = `${R}px`, i) {
77844
77850
  const Se = O ? f.width / 2 : f.height / 2, se = z / 2, ne = Se > se, G = {
77845
77851
  s: ne ? se : Se,
@@ -77939,12 +77945,12 @@ const K1e = /* @__PURE__ */ He(Nhe, [["render", Rhe], ["__scopeId", "data-v-3862
77939
77945
  currentStep: 0,
77940
77946
  lastStep: 0,
77941
77947
  nextStep: 1,
77942
- getCurrentStep: ee(
77948
+ getCurrentStep: J(
77943
77949
  () => n.steps[c.currentStep]
77944
77950
  ),
77945
- getLastStep: ee(() => n.steps[c.lastStep]),
77946
- getNextStep: ee(() => n.steps[c.nextStep])
77947
- }), d = ee(() => c.currentStep === n.steps.length - 1 ? n.buttonLabels.end : n.buttonLabels.next), f = () => {
77951
+ getLastStep: J(() => n.steps[c.lastStep]),
77952
+ getNextStep: J(() => n.steps[c.nextStep])
77953
+ }), d = J(() => c.currentStep === n.steps.length - 1 ? n.buttonLabels.end : n.buttonLabels.next), f = () => {
77948
77954
  if (localStorage.getItem("tour-" + n.name) === "true")
77949
77955
  return;
77950
77956
  n.saveProgress ? c.currentStep = parseInt(
@@ -77997,7 +78003,7 @@ const K1e = /* @__PURE__ */ He(Nhe, [["render", Rhe], ["__scopeId", "data-v-3862
77997
78003
  var B, W;
77998
78004
  await ((W = (B = n.steps[P]) == null ? void 0 : B.onBefore) == null ? void 0 : W.call(B));
77999
78005
  }, x = async () => {
78000
- var P, B, W, z, U, J;
78006
+ var P, B, W, z, U, ee;
78001
78007
  if (M(), E(), (P = l.value) == null || P.setAttribute("data-hidden", ""), c.getCurrentStep.tooltipWidth ? (B = l.value) == null || B.style.setProperty("width", c.getCurrentStep.tooltipWidth) : (W = l.value) == null || W.style.removeProperty("width"), !n.noScroll && !c.getCurrentStep.noScroll) {
78002
78008
  const ae = document.querySelector(
78003
78009
  c.getCurrentStep.target
@@ -78010,7 +78016,7 @@ const K1e = /* @__PURE__ */ He(Nhe, [["render", Rhe], ["__scopeId", "data-v-3862
78010
78016
  });
78011
78017
  }
78012
78018
  }
78013
- (z = l.value) == null || z.removeAttribute("data-hidden"), (J = l.value) == null || J.setAttribute(
78019
+ (z = l.value) == null || z.removeAttribute("data-hidden"), (ee = l.value) == null || ee.setAttribute(
78014
78020
  "data-arrow",
78015
78021
  ((U = a.value) == null ? void 0 : U.update({
78016
78022
  reference: document.querySelector(