shared-ritm 1.1.70 → 1.1.71

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 (87) hide show
  1. package/README.md +103 -103
  2. package/dist/index.css +1 -1
  3. package/dist/shared-ritm.es.js +250 -243
  4. package/dist/shared-ritm.umd.js +3 -3
  5. package/dist/types/api/services/TasksService.d.ts +6 -1
  6. package/dist/types/api/types/Api_Tasks.d.ts +4 -0
  7. package/package.json +57 -57
  8. package/src/api/services/AuthService.ts +41 -41
  9. package/src/api/services/FileService.ts +15 -15
  10. package/src/api/services/GanttService.ts +17 -17
  11. package/src/api/services/MetricsService.ts +101 -101
  12. package/src/api/services/ProjectsService.ts +61 -61
  13. package/src/api/services/TasksService.ts +10 -0
  14. package/src/api/settings/ApiService.ts +125 -125
  15. package/src/api/types/Api_Files.ts +1 -1
  16. package/src/api/types/Api_Projects.ts +55 -55
  17. package/src/api/types/Api_Tasks.ts +5 -0
  18. package/src/common/app-button/AppButton.vue +173 -173
  19. package/src/common/app-checkbox/AppCheckbox.vue +26 -26
  20. package/src/common/app-date-picker/AppDatePicker.vue +74 -74
  21. package/src/common/app-dialogs/AppConfirmDialog.vue +100 -100
  22. package/src/common/app-dropdown/AppDropdown.vue +31 -31
  23. package/src/common/app-icon/AppIcon.vue +104 -104
  24. package/src/common/app-input/AppInput.vue +147 -147
  25. package/src/common/app-input-search/AppInputSearch.vue +170 -170
  26. package/src/common/app-layout/AppLayout.vue +63 -63
  27. package/src/common/app-layout/components/AppLayoutHeader.vue +123 -123
  28. package/src/common/app-loader/index.vue +43 -43
  29. package/src/common/app-page-layout/AppPageLayout.vue +122 -122
  30. package/src/common/app-select/AppSelect.vue +157 -157
  31. package/src/common/app-sheet/AppSheet.vue +114 -114
  32. package/src/common/app-sidebar/AppSidebar.vue +168 -168
  33. package/src/common/app-sidebar/components/SidebarMenu.vue +37 -37
  34. package/src/common/app-sidebar/components/SidebarMenuItem.vue +139 -139
  35. package/src/common/app-wrapper/AppWrapper.vue +28 -28
  36. package/src/global.d.ts +1 -1
  37. package/src/icons/components/arrow-down-icon.vue +25 -25
  38. package/src/icons/components/arrow-frame-icon.vue +19 -19
  39. package/src/icons/components/arrow-square.vue +22 -22
  40. package/src/icons/dialogs/RemoveIcon.vue +12 -12
  41. package/src/icons/dialogs/SafetyIcon.vue +12 -12
  42. package/src/icons/header/flashIcon.vue +24 -24
  43. package/src/icons/header/notificationIcon.vue +18 -18
  44. package/src/icons/header/searchStatusIcon.vue +24 -24
  45. package/src/icons/header/smallCapsIcon.vue +34 -34
  46. package/src/icons/sidebar/assign-module-icon.vue +36 -36
  47. package/src/icons/sidebar/instrument-history-icon.vue +32 -32
  48. package/src/icons/sidebar/instrument-order-icon.vue +38 -38
  49. package/src/icons/sidebar/instrument-work-zone-icon.vue +18 -18
  50. package/src/icons/sidebar/instruments-icon.vue +45 -45
  51. package/src/icons/sidebar/logo-icon.vue +15 -15
  52. package/src/icons/sidebar/logout-icon.vue +13 -13
  53. package/src/icons/sidebar/modules-icon.vue +16 -16
  54. package/src/icons/sidebar/notifications-icon.vue +24 -24
  55. package/src/icons/sidebar/order-icon.vue +44 -44
  56. package/src/icons/sidebar/pass-icon.vue +38 -38
  57. package/src/icons/sidebar/positions-icon.vue +42 -42
  58. package/src/icons/sidebar/preorder-icon.vue +19 -19
  59. package/src/icons/sidebar/projects-icon.vue +31 -31
  60. package/src/icons/sidebar/repair-object-icon.vue +18 -18
  61. package/src/icons/sidebar/repairs-icon.vue +20 -20
  62. package/src/icons/sidebar/roles-icon.vue +26 -26
  63. package/src/icons/sidebar/status-history-icon.vue +24 -24
  64. package/src/icons/sidebar/tasks-icon.vue +28 -28
  65. package/src/icons/sidebar/tasks_tasks-icon.vue +39 -39
  66. package/src/icons/sidebar/tasks_today-icon.vue +27 -27
  67. package/src/icons/sidebar/teams-icon.vue +32 -32
  68. package/src/icons/sidebar/user-icon.vue +18 -18
  69. package/src/icons/sidebar/users-icon.vue +46 -46
  70. package/src/icons/sidebar/videosources-icon.vue +19 -19
  71. package/src/icons/sidebar/videowall-icon.vue +13 -13
  72. package/src/icons/sidebar/videozones-icon.vue +21 -21
  73. package/src/icons/sidebar/warehouses-icon.vue +43 -43
  74. package/src/icons/sidebar/workshop-icon.vue +100 -100
  75. package/src/icons/sidebar/workzones-icon.vue +22 -22
  76. package/src/icons/task/attention-icon.vue +13 -13
  77. package/src/icons/task/clock-icon.vue +10 -10
  78. package/src/icons/task/delete-icon.vue +10 -10
  79. package/src/icons/task/fire-icon.vue +16 -16
  80. package/src/index.ts +62 -62
  81. package/src/main.ts +18 -18
  82. package/src/quasar-user-options.ts +17 -17
  83. package/src/router/index.ts +10 -10
  84. package/src/shared/styles/general.css +96 -96
  85. package/src/shims-vue.d.ts +5 -5
  86. package/src/utils/confirm.ts +12 -12
  87. package/src/utils/notification.ts +9 -9
@@ -1,7 +1,7 @@
1
1
  var Ya = Object.defineProperty;
2
2
  var Qa = (e, t, n) => t in e ? Ya(e, t, { enumerable: !0, configurable: !0, writable: !0, value: n }) : e[t] = n;
3
3
  var dl = (e, t, n) => Qa(e, typeof t != "symbol" ? t + "" : t, n);
4
- import { markRaw as wi, defineComponent as Ne, reactive as gn, h as g, withDirectives as nn, computed as d, ref as I, getCurrentInstance as ge, nextTick as Le, watch as te, onMounted as vt, onBeforeUnmount as Te, onUnmounted as ki, Teleport as Ka, onDeactivated as So, unref as ao, Transition as ht, useCssVars as kn, openBlock as Y, createBlock as _e, mergeProps as Za, withCtx as ce, renderSlot as ut, createTextVNode as et, toDisplayString as rt, createCommentVNode as Ye, toRaw as cn, normalizeClass as me, createElementBlock as de, createVNode as ye, createElementVNode as W, onBeforeUpdate as _i, inject as Gt, onActivated as Ci, provide as Si, onBeforeMount as Xa, onUpdated as Ja, createSlots as Ga, Fragment as xo, shallowReactive as es, vShow as ts, createStaticVNode as pt, resolveDynamicComponent as ns, resolveComponent as os, renderList as xi } from "vue";
4
+ import { markRaw as wi, defineComponent as Ne, reactive as gn, h as g, withDirectives as nn, computed as d, ref as j, getCurrentInstance as ge, nextTick as Le, watch as te, onMounted as vt, onBeforeUnmount as Te, onUnmounted as ki, Teleport as Ka, onDeactivated as So, unref as ao, Transition as ht, useCssVars as kn, openBlock as Y, createBlock as _e, mergeProps as Za, withCtx as ce, renderSlot as ut, createTextVNode as et, toDisplayString as rt, createCommentVNode as Ye, toRaw as cn, normalizeClass as me, createElementBlock as de, createVNode as ye, createElementVNode as W, onBeforeUpdate as _i, inject as Gt, onActivated as Ci, provide as Si, onBeforeMount as Xa, onUpdated as Ja, createSlots as Ga, Fragment as xo, shallowReactive as es, vShow as ts, createStaticVNode as pt, resolveDynamicComponent as ns, resolveComponent as os, renderList as xi } from "vue";
5
5
  function _n(e, t, n, o) {
6
6
  return Object.defineProperty(e, t, {
7
7
  get: n,
@@ -78,7 +78,7 @@ const is = ["top", "middle", "bottom"], as = pe({
78
78
  "aria-label": e.label
79
79
  }, $t(t.default, e.label !== void 0 ? [e.label] : []));
80
80
  }
81
- }), en = I(
81
+ }), en = j(
82
82
  !1
83
83
  );
84
84
  let br;
@@ -192,7 +192,7 @@ function so() {
192
192
  e.empty !== void 0 ? e.empty() : e.removeAllRanges !== void 0 && (e.removeAllRanges(), wr.is.mobile !== !0 && e.addRange(document.createRange()));
193
193
  } else document.selection !== void 0 && document.selection.empty();
194
194
  }
195
- const je = {
195
+ const Ie = {
196
196
  hasPassive: !1,
197
197
  passiveCapture: !0,
198
198
  notPassiveCapture: !0
@@ -200,7 +200,7 @@ const je = {
200
200
  try {
201
201
  const e = Object.defineProperty({}, "passive", {
202
202
  get() {
203
- Object.assign(je, {
203
+ Object.assign(Ie, {
204
204
  hasPassive: !0,
205
205
  passive: { passive: !0 },
206
206
  notPassive: { passive: !1 },
@@ -249,28 +249,28 @@ function No(e, t) {
249
249
  if (e === void 0 || t === !0 && e.__dragPrevented === !0)
250
250
  return;
251
251
  const n = t === !0 ? (o) => {
252
- o.__dragPrevented = !0, o.addEventListener("dragstart", Ge, je.notPassiveCapture);
252
+ o.__dragPrevented = !0, o.addEventListener("dragstart", Ge, Ie.notPassiveCapture);
253
253
  } : (o) => {
254
- delete o.__dragPrevented, o.removeEventListener("dragstart", Ge, je.notPassiveCapture);
254
+ delete o.__dragPrevented, o.removeEventListener("dragstart", Ge, Ie.notPassiveCapture);
255
255
  };
256
256
  e.querySelectorAll("a, img").forEach(n);
257
257
  }
258
258
  function Et(e, t, n) {
259
259
  const o = `__q_${t}_evt`;
260
260
  e[o] = e[o] !== void 0 ? e[o].concat(n) : n, n.forEach((r) => {
261
- r[0].addEventListener(r[1], e[r[2]], je[r[3]]);
261
+ r[0].addEventListener(r[1], e[r[2]], Ie[r[3]]);
262
262
  });
263
263
  }
264
264
  function Qt(e, t) {
265
265
  const n = `__q_${t}_evt`;
266
266
  e[n] !== void 0 && (e[n].forEach((o) => {
267
- o[0].removeEventListener(o[1], e[o[2]], je[o[3]]);
267
+ o[0].removeEventListener(o[1], e[o[2]], Ie[o[3]]);
268
268
  }), e[n] = void 0);
269
269
  }
270
270
  function Dr(e) {
271
271
  return e !== Object(e) || e.isComposing === !0 || e.qKeyEvent === !0;
272
272
  }
273
- function jt(e, t) {
273
+ function It(e, t) {
274
274
  return Dr(e) === !0 ? !1 : [].concat(t).includes(e.keyCode);
275
275
  }
276
276
  const Bi = {
@@ -291,7 +291,7 @@ function Pr({
291
291
  configureAnchorEl: n
292
292
  // optional
293
293
  }) {
294
- const { props: o, proxy: r, emit: l } = ge(), i = I(null);
294
+ const { props: o, proxy: r, emit: l } = ge(), i = j(null);
295
295
  let a = null;
296
296
  function u(p) {
297
297
  return i.value === null ? !1 : p === void 0 || p.touches === void 0 || p.touches.length <= 1;
@@ -305,7 +305,7 @@ function Pr({
305
305
  r.toggle(p), p.qAnchorHandled = !0;
306
306
  },
307
307
  toggleKey(p) {
308
- jt(p, 13) === !0 && c.toggle(p);
308
+ It(p, 13) === !0 && c.toggle(p);
309
309
  },
310
310
  contextClick(p) {
311
311
  r.hide(p), Ge(p), Le(() => {
@@ -384,11 +384,11 @@ function Pr({
384
384
  };
385
385
  }
386
386
  function Ei(e, t) {
387
- const n = I(null);
387
+ const n = j(null);
388
388
  let o;
389
389
  function r(a, u) {
390
390
  const c = `${u !== void 0 ? "add" : "remove"}EventListener`, s = u !== void 0 ? u : o;
391
- a !== window && a[c]("scroll", s, je.passive), window[c]("scroll", s, je.passive), o = u;
391
+ a !== window && a[c]("scroll", s, Ie.passive), window[c]("scroll", s, Ie.passive), o = u;
392
392
  }
393
393
  function l() {
394
394
  n.value !== null && (r(n.value), n.value = null);
@@ -430,7 +430,7 @@ const Pn = {
430
430
  "beforeHide",
431
431
  "hide"
432
432
  ];
433
- function jn({
433
+ function In({
434
434
  showing: e,
435
435
  canShow: t,
436
436
  // optional
@@ -557,7 +557,7 @@ function Cs(e) {
557
557
  return !1;
558
558
  }
559
559
  function Hr(e, t, n, o) {
560
- const r = I(!1), l = I(!1);
560
+ const r = j(!1), l = j(!1);
561
561
  let i = null;
562
562
  const a = {}, u = o === "dialog" && Cs(e);
563
563
  function c(f) {
@@ -597,7 +597,7 @@ const yn = {
597
597
  default: 300
598
598
  }
599
599
  };
600
- function jr(e, t = () => {
600
+ function Ir(e, t = () => {
601
601
  }, n = () => {
602
602
  }) {
603
603
  return {
@@ -616,7 +616,7 @@ function jr(e, t = () => {
616
616
  transitionStyle: d(() => `--q-transition-duration: ${e.transitionDuration}ms`)
617
617
  };
618
618
  }
619
- function Ir() {
619
+ function jr() {
620
620
  let e;
621
621
  const t = ge();
622
622
  function n() {
@@ -713,7 +713,7 @@ function oo() {
713
713
  function Ms(e, t = !0) {
714
714
  return !e || e.nodeType !== Node.ELEMENT_NODE ? !1 : t ? e.scrollHeight > e.clientHeight && (e.classList.contains("scroll") || e.classList.contains("overflow-auto") || ["auto", "scroll"].includes(window.getComputedStyle(e)["overflow-y"])) : e.scrollWidth > e.clientWidth && (e.classList.contains("scroll") || e.classList.contains("overflow-auto") || ["auto", "scroll"].includes(window.getComputedStyle(e)["overflow-x"]));
715
715
  }
716
- const { notPassiveCapture: uo } = je, Kt = [];
716
+ const { notPassiveCapture: uo } = Ie, Kt = [];
717
717
  function co(e) {
718
718
  const t = e.target;
719
719
  if (t === void 0 || t.nodeType === 8 || t.classList.contains("no-pointer-events") === !0)
@@ -960,7 +960,7 @@ const mo = pe({
960
960
  ],
961
961
  setup(e, { slots: t, emit: n, attrs: o }) {
962
962
  let r, l;
963
- const i = ge(), { proxy: { $q: a } } = i, u = I(null), c = I(!1), s = d(() => vo(e.anchor, a.lang.rtl)), f = d(() => vo(e.self, a.lang.rtl)), b = d(() => e.persistent !== !0), { registerTick: p, removeTick: v } = Ir(), { registerTimeout: w } = Bo(), { transitionProps: m, transitionStyle: T } = jr(e), { localScrollTarget: S, changeScrollEvent: B, unconfigureScrollTarget: _ } = Ei(e, le), { anchorEl: E, canShow: O, anchorEvents: D } = Pr({ showing: c, configureAnchorEl: G }), { show: Z, hide: L } = jn({
963
+ const i = ge(), { proxy: { $q: a } } = i, u = j(null), c = j(!1), s = d(() => vo(e.anchor, a.lang.rtl)), f = d(() => vo(e.self, a.lang.rtl)), b = d(() => e.persistent !== !0), { registerTick: p, removeTick: v } = jr(), { registerTimeout: w } = Bo(), { transitionProps: m, transitionStyle: T } = Ir(e), { localScrollTarget: S, changeScrollEvent: B, unconfigureScrollTarget: _ } = Ei(e, le), { anchorEl: E, canShow: O, anchorEvents: D } = Pr({ showing: c, configureAnchorEl: G }), { show: Z, hide: L } = In({
964
964
  showing: c,
965
965
  canShow: O,
966
966
  handleShow: U,
@@ -1022,7 +1022,7 @@ const mo = pe({
1022
1022
  function H(N) {
1023
1023
  if (a.platform.is.mobile === !0) {
1024
1024
  so(), document.body.classList.add("non-selectable");
1025
- const ae = E.value, se = ["touchmove", "touchcancel", "touchend", "click"].map((j) => [ae, j, "delayHide", "passiveCapture"]);
1025
+ const ae = E.value, se = ["touchmove", "touchcancel", "touchend", "click"].map((I) => [ae, I, "delayHide", "passiveCapture"]);
1026
1026
  Et(D, "tooltipTemp", se);
1027
1027
  }
1028
1028
  w(() => {
@@ -1085,7 +1085,7 @@ const mo = pe({
1085
1085
  function Eo(e, t = Cr) {
1086
1086
  return d(() => e.size !== void 0 ? { fontSize: e.size in t ? `${t[e.size]}px` : e.size } : null);
1087
1087
  }
1088
- const yl = "0 0 24 24", bl = (e) => e, Wo = (e) => `ionicons ${e}`, ji = {
1088
+ const yl = "0 0 24 24", bl = (e) => e, Wo = (e) => `ionicons ${e}`, Ii = {
1089
1089
  "mdi-": (e) => `mdi ${e}`,
1090
1090
  "icon-": bl,
1091
1091
  // fontawesome equiv
@@ -1097,7 +1097,7 @@ const yl = "0 0 24 24", bl = (e) => e, Wo = (e) => `ionicons ${e}`, ji = {
1097
1097
  "iconfont ": bl,
1098
1098
  "ti-": (e) => `themify-icon ${e}`,
1099
1099
  "bi-": (e) => `bootstrap-icons ${e}`
1100
- }, Ii = {
1100
+ }, ji = {
1101
1101
  o_: "-outlined",
1102
1102
  r_: "-round",
1103
1103
  s_: "-sharp"
@@ -1105,7 +1105,7 @@ const yl = "0 0 24 24", bl = (e) => e, Wo = (e) => `ionicons ${e}`, ji = {
1105
1105
  sym_o_: "-outlined",
1106
1106
  sym_r_: "-rounded",
1107
1107
  sym_s_: "-sharp"
1108
- }, Es = new RegExp("^(" + Object.keys(ji).join("|") + ")"), Ls = new RegExp("^(" + Object.keys(Ii).join("|") + ")"), wl = new RegExp("^(" + Object.keys(Fi).join("|") + ")"), Ts = /^[Mm]\s?[-+]?\.?\d/, Rs = /^img:/, As = /^svguse:/, Vs = /^ion-/, Os = /^(fa-(classic|sharp|solid|regular|light|brands|duotone|thin)|[lf]a[srlbdk]?) /, lt = pe({
1108
+ }, Es = new RegExp("^(" + Object.keys(Ii).join("|") + ")"), Ls = new RegExp("^(" + Object.keys(ji).join("|") + ")"), wl = new RegExp("^(" + Object.keys(Fi).join("|") + ")"), Ts = /^[Mm]\s?[-+]?\.?\d/, Rs = /^img:/, As = /^svguse:/, Vs = /^ion-/, Os = /^(fa-(classic|sharp|solid|regular|light|brands|duotone|thin)|[lf]a[srlbdk]?) /, lt = pe({
1109
1109
  name: "QIcon",
1110
1110
  props: {
1111
1111
  ...$o,
@@ -1164,7 +1164,7 @@ const yl = "0 0 24 24", bl = (e) => e, Wo = (e) => `ionicons ${e}`, ji = {
1164
1164
  let u = " ";
1165
1165
  const c = a.match(Es);
1166
1166
  if (c !== null)
1167
- i = ji[c[1]](a);
1167
+ i = Ii[c[1]](a);
1168
1168
  else if (Os.test(a) === !0)
1169
1169
  i = a;
1170
1170
  else if (Vs.test(a) === !0)
@@ -1176,7 +1176,7 @@ const yl = "0 0 24 24", bl = (e) => e, Wo = (e) => `ionicons ${e}`, ji = {
1176
1176
  } else {
1177
1177
  i = "notranslate material-icons";
1178
1178
  const s = a.match(Ls);
1179
- s !== null && (a = a.substring(2), i += Ii[s[1]]), u = a;
1179
+ s !== null && (a = a.substring(2), i += ji[s[1]]), u = a;
1180
1180
  }
1181
1181
  return {
1182
1182
  cls: i,
@@ -1310,7 +1310,7 @@ const Lo = Or(
1310
1310
  o.enabled === !0 && r.qSkipRipple !== !0 && r.type === (o.modifiers.early === !0 ? "pointerdown" : "click") && kl(r, e, o, r.qKeyEvent === !0);
1311
1311
  },
1312
1312
  keystart: Ds((r) => {
1313
- o.enabled === !0 && r.qSkipRipple !== !0 && jt(r, o.modifiers.keyCodes) === !0 && r.type === `key${o.modifiers.early === !0 ? "down" : "up"}` && kl(r, e, o, !0);
1313
+ o.enabled === !0 && r.qSkipRipple !== !0 && It(r, o.modifiers.keyCodes) === !0 && r.type === `key${o.modifiers.early === !0 ? "down" : "up"}` && kl(r, e, o, !0);
1314
1314
  }, 300)
1315
1315
  };
1316
1316
  _l(o, t), e.__qripple = o, Et(o, "main", [
@@ -1347,7 +1347,7 @@ const Lo = Or(
1347
1347
  validator: (e) => Ps.includes(e)
1348
1348
  }
1349
1349
  };
1350
- function js(e) {
1350
+ function Is(e) {
1351
1351
  return d(() => {
1352
1352
  const t = e.align === void 0 ? e.vertical === !0 ? "stretch" : "left" : e.align;
1353
1353
  return `${e.vertical === !0 ? "items" : "justify"}-${Ui[t]}`;
@@ -1359,7 +1359,7 @@ function Cl(e) {
1359
1359
  function Sl(e, t) {
1360
1360
  return (e.aliasOf || e) === (t.aliasOf || t);
1361
1361
  }
1362
- function Is(e, t) {
1362
+ function js(e, t) {
1363
1363
  for (const n in t) {
1364
1364
  const o = t[n], r = e[n];
1365
1365
  if (typeof o == "string") {
@@ -1439,7 +1439,7 @@ function Yi({ fallbackTag: e, useDisableForRouterLinkProps: t = !0 } = {}) {
1439
1439
  ) : L
1440
1440
  );
1441
1441
  }), w = d(
1442
- () => s.value === !0 && v.value !== -1 && Is(r.$route.params, c.value.params)
1442
+ () => s.value === !0 && v.value !== -1 && js(r.$route.params, c.value.params)
1443
1443
  ), m = d(
1444
1444
  () => w.value === !0 && v.value === r.$route.matched.length - 1 && zs(r.$route.params, c.value.params)
1445
1445
  ), T = d(() => s.value === !0 ? m.value === !0 ? ` ${o.exactActiveClass} ${o.activeClass}` : o.exact === !0 ? "" : w.value === !0 ? ` ${o.activeClass}` : "" : "");
@@ -1555,7 +1555,7 @@ const Yr = {
1555
1555
  round: Boolean
1556
1556
  };
1557
1557
  function Zs(e) {
1558
- const t = Eo(e, Ns), n = js(e), { hasRouterLink: o, hasLink: r, linkTag: l, linkAttrs: i, navigateOnClick: a } = Yi({
1558
+ const t = Eo(e, Ns), n = Is(e), { hasRouterLink: o, hasLink: r, linkTag: l, linkAttrs: i, navigateOnClick: a } = Yi({
1559
1559
  fallbackTag: "button"
1560
1560
  }), u = d(() => {
1561
1561
  const m = e.fab === !1 && e.fabMini === !1 ? t.value : {};
@@ -1595,7 +1595,7 @@ function Zs(e) {
1595
1595
  isActionable: s
1596
1596
  };
1597
1597
  }
1598
- const { passiveCapture: ft } = je;
1598
+ const { passiveCapture: ft } = Ie;
1599
1599
  let dn = null, fn = null, hn = null;
1600
1600
  const Ke = pe({
1601
1601
  name: "QBtn",
@@ -1616,7 +1616,7 @@ const Ke = pe({
1616
1616
  linkTag: c,
1617
1617
  navigateOnClick: s,
1618
1618
  isActionable: f
1619
- } = Zs(e), b = I(null), p = I(null);
1619
+ } = Zs(e), b = j(null), p = j(null);
1620
1620
  let v = null, w, m = null;
1621
1621
  const T = d(
1622
1622
  () => e.label !== void 0 && e.label !== null && e.label !== ""
@@ -1676,7 +1676,7 @@ const Ke = pe({
1676
1676
  }
1677
1677
  }
1678
1678
  function Z(A) {
1679
- b.value !== null && (n("keydown", A), jt(A, [13, 32]) === !0 && fn !== b.value && (fn !== null && M(), A.defaultPrevented !== !0 && (b.value.focus(), fn = b.value, b.value.classList.add("q-btn--active"), document.addEventListener("keyup", V, !0), b.value.addEventListener("blur", V, ft)), Re(A)));
1679
+ b.value !== null && (n("keydown", A), It(A, [13, 32]) === !0 && fn !== b.value && (fn !== null && M(), A.defaultPrevented !== !0 && (b.value.focus(), fn = b.value, b.value.classList.add("q-btn--active"), document.addEventListener("keyup", V, !0), b.value.addEventListener("blur", V, ft)), Re(A)));
1680
1680
  }
1681
1681
  function L(A) {
1682
1682
  b.value !== null && (n("touchstart", A), A.defaultPrevented !== !0 && (dn !== b.value && (dn !== null && M(), dn = b.value, v = A.target, v.addEventListener("touchcancel", V, ft), v.addEventListener("touchend", V, ft)), w = !0, m !== null && clearTimeout(m), m = setTimeout(() => {
@@ -1689,7 +1689,7 @@ const Ke = pe({
1689
1689
  function V(A) {
1690
1690
  if (b.value !== null && !(A !== void 0 && A.type === "blur" && document.activeElement === b.value)) {
1691
1691
  if (A !== void 0 && A.type === "keyup") {
1692
- if (fn === b.value && jt(A, [13, 32]) === !0) {
1692
+ if (fn === b.value && It(A, [13, 32]) === !0) {
1693
1693
  const ee = new MouseEvent("click", A);
1694
1694
  ee.qKeyEvent = !0, A.defaultPrevented === !0 && Ge(ee), A.cancelBubble === !0 && nt(ee), b.value.dispatchEvent(ee), Re(A), A.qKeyEvent = !0;
1695
1695
  }
@@ -1830,10 +1830,10 @@ const Ke = pe({
1830
1830
  emits: ["update:modelValue", "click"],
1831
1831
  setup(e, { emit: t }) {
1832
1832
  kn((a) => ({
1833
- "6ebd44ce": a.width,
1834
- "31bb5bb4": a.height,
1835
- "2efce8ab": a.borderRadius,
1836
- d3196ae6: a.borderWidth
1833
+ "653f50d4": a.width,
1834
+ "28dbcfd9": a.height,
1835
+ "463ced10": a.borderRadius,
1836
+ "449ea588": a.borderWidth
1837
1837
  }));
1838
1838
  const n = e, o = t;
1839
1839
  function r(a) {
@@ -1894,7 +1894,7 @@ function Ct(e, t) {
1894
1894
  return d(() => e.dark === null ? t.dark.isActive : e.dark);
1895
1895
  }
1896
1896
  function tu(e, t) {
1897
- const n = I(null), o = d(() => e.disable === !0 ? null : g("span", {
1897
+ const n = j(null), o = d(() => e.disable === !0 ? null : g("span", {
1898
1898
  ref: n,
1899
1899
  class: "no-outline",
1900
1900
  tabindex: -1
@@ -1966,7 +1966,7 @@ const ou = {
1966
1966
  tabindex: [String, Number]
1967
1967
  }, Ji = ["update:modelValue"];
1968
1968
  function Gi(e, t) {
1969
- const { props: n, slots: o, emit: r, proxy: l } = ge(), { $q: i } = l, a = Ct(n, i), u = I(null), { refocusTargetEl: c, refocusTarget: s } = tu(n, u), f = Eo(n, ou), b = d(
1969
+ const { props: n, slots: o, emit: r, proxy: l } = ge(), { $q: i } = l, a = Ct(n, i), u = j(null), { refocusTargetEl: c, refocusTarget: s } = tu(n, u), f = Eo(n, ou), b = d(
1970
1970
  () => n.val !== void 0 && Array.isArray(n.modelValue)
1971
1971
  ), p = d(() => {
1972
1972
  const M = cn(n.val);
@@ -2980,7 +2980,7 @@ const Mu = pe({
2980
2980
  setup(e, { slots: t, emit: n }) {
2981
2981
  const { proxy: o } = ge(), { $q: r } = o, l = Ct(e, r), { getCache: i } = uu(), { tabindex: a, headerClass: u, getLocale: c, getCurrentDate: s } = pu(e, r);
2982
2982
  let f;
2983
- const b = nu(e), p = Ki(b), v = I(null), w = I(Nn()), m = I(c()), T = d(() => Nn()), S = d(() => c()), B = d(() => s()), _ = I(wt(w.value, m.value)), E = I(e.defaultView), O = d(() => r.lang.rtl === !0 ? "right" : "left"), D = I(O.value), Z = I(O.value), L = _.value.year, R = I(L - L % zt - (L < 0 ? zt : 0)), V = I(null), M = d(() => {
2983
+ const b = nu(e), p = Ki(b), v = j(null), w = j(Nn()), m = j(c()), T = d(() => Nn()), S = d(() => c()), B = d(() => s()), _ = j(wt(w.value, m.value)), E = j(e.defaultView), O = d(() => r.lang.rtl === !0 ? "right" : "left"), D = j(O.value), Z = j(O.value), L = _.value.year, R = j(L - L % zt - (L < 0 ? zt : 0)), V = j(null), M = d(() => {
2984
2984
  const h = e.landscape === !0 ? "landscape" : "portrait";
2985
2985
  return `q-date q-date--${h} q-date--${h}-${e.minimal === !0 ? "minimal" : "standard"}` + (l.value === !0 ? " q-date--dark q-dark" : "") + (e.bordered === !0 ? " q-date--bordered" : "") + (e.square === !0 ? " q-date--square no-border-radius" : "") + (e.flat === !0 ? " q-date--flat no-shadow" : "") + (e.disable === !0 ? " disabled" : e.readonly === !0 ? " q-date--readonly" : "");
2986
2986
  }), U = d(() => e.color || "primary"), A = d(() => e.textColor || "white"), ee = d(
@@ -3040,7 +3040,7 @@ const Mu = pe({
3040
3040
  return $[h.month - 1] + (h.year !== k.year ? " " + h.year + mn + $[k.month - 1] + " " : h.month !== k.month ? mn + $[k.month - 1] : "") + " " + k.year;
3041
3041
  }
3042
3042
  return H.value[0].year;
3043
- }), j = d(() => {
3043
+ }), I = d(() => {
3044
3044
  const h = [r.iconSet.datetime.arrowLeft, r.iconSet.datetime.arrowRight];
3045
3045
  return r.lang.rtl === !0 ? h.reverse() : h;
3046
3046
  }), J = d(() => e.firstDayOfWeek !== void 0 ? Number(e.firstDayOfWeek) : m.value.firstDayOfWeek), we = d(() => {
@@ -3065,7 +3065,7 @@ const Mu = pe({
3065
3065
  year: { prev: !0, next: !0 }
3066
3066
  };
3067
3067
  return Ce.value !== null && Ce.value.year >= _.value.year && (h.year.prev = !1, Ce.value.year === _.value.year && Ce.value.month >= _.value.month && (h.month.prev = !1)), qe.value !== null && qe.value.year <= _.value.year && (h.year.next = !1, qe.value.year === _.value.year && qe.value.month <= _.value.month && (h.month.next = !1)), h;
3068
- }), Ie = d(() => {
3068
+ }), je = d(() => {
3069
3069
  const h = {};
3070
3070
  return H.value.forEach((k) => {
3071
3071
  const $ = At(k);
@@ -3149,7 +3149,7 @@ const Mu = pe({
3149
3149
  const ue = { i: re, event: St.value[re], classes: [] };
3150
3150
  bt.value[re] === !0 && (ue.in = !0, ue.flat = !0), h.push(ue);
3151
3151
  }
3152
- if (Ie.value[Pe.value] !== void 0 && Ie.value[Pe.value].forEach((re) => {
3152
+ if (je.value[Pe.value] !== void 0 && je.value[Pe.value].forEach((re) => {
3153
3153
  const ue = K + re - 1;
3154
3154
  Object.assign(h[ue], {
3155
3155
  selected: !0,
@@ -3241,14 +3241,14 @@ const Mu = pe({
3241
3241
  year: h,
3242
3242
  month: k,
3243
3243
  day: $
3244
- }, K = Ie.value[At(Q)];
3244
+ }, K = je.value[At(Q)];
3245
3245
  (K === void 0 || K.includes(Q.day) === !1) && an(Q), mt(Q.year, Q.month);
3246
3246
  }
3247
3247
  function he(h) {
3248
3248
  Rl(h) === !0 && (E.value = h);
3249
3249
  }
3250
3250
  function Fe(h, k) {
3251
- ["month", "year"].includes(h) && (h === "month" ? It : xn)(k === !0 ? -1 : 1);
3251
+ ["month", "year"].includes(h) && (h === "month" ? jt : xn)(k === !0 ? -1 : 1);
3252
3252
  }
3253
3253
  function mt(h, k) {
3254
3254
  E.value = "Calendar", Mt(h, k);
@@ -3314,7 +3314,7 @@ const Mu = pe({
3314
3314
  dateHash: h + "/" + Me(k) + "/01"
3315
3315
  };
3316
3316
  }
3317
- function It(h) {
3317
+ function jt(h) {
3318
3318
  let k = _.value.year, $ = Number(_.value.month) + h;
3319
3319
  $ === 13 ? ($ = 1, k++) : $ === 0 && ($ = 12, k--), Mt(k, $), ee.value === !0 && Ft("month");
3320
3320
  }
@@ -3329,7 +3329,7 @@ const Mu = pe({
3329
3329
  Mt(_.value.year, h), E.value = "Calendar", ee.value === !0 && Ft("month");
3330
3330
  }
3331
3331
  function Wn(h, k) {
3332
- const $ = Ie.value[k];
3332
+ const $ = je.value[k];
3333
3333
  ($ !== void 0 && $.includes(h.day) === !0 ? Bn : an)(h);
3334
3334
  }
3335
3335
  function kt(h) {
@@ -3482,7 +3482,7 @@ const Mu = pe({
3482
3482
  dense: !0,
3483
3483
  size: "sm",
3484
3484
  flat: !0,
3485
- icon: j.value[0],
3485
+ icon: I.value[0],
3486
3486
  tabindex: a.value,
3487
3487
  disable: be.prev === !1,
3488
3488
  ...i("go-#" + k, { onClick() {
@@ -3516,7 +3516,7 @@ const Mu = pe({
3516
3516
  dense: !0,
3517
3517
  size: "sm",
3518
3518
  flat: !0,
3519
- icon: j.value[1],
3519
+ icon: I.value[1],
3520
3520
  tabindex: a.value,
3521
3521
  disable: be.next === !1,
3522
3522
  ...i("go+#" + k, { onClick() {
@@ -3539,7 +3539,7 @@ const Mu = pe({
3539
3539
  type: "Months",
3540
3540
  key: _.value.month,
3541
3541
  dir: D.value,
3542
- goTo: It,
3542
+ goTo: jt,
3543
3543
  boundaries: Se.value.month,
3544
3544
  cls: " col"
3545
3545
  }).concat(qt({
@@ -3576,10 +3576,10 @@ const Mu = pe({
3576
3576
  tabindex: a.value,
3577
3577
  ...i("day#" + h.i, {
3578
3578
  onClick: () => {
3579
- jo(h.i);
3579
+ Io(h.i);
3580
3580
  },
3581
3581
  onMouseover: () => {
3582
- Io(h.i);
3582
+ jo(h.i);
3583
3583
  }
3584
3584
  })
3585
3585
  },
@@ -3663,7 +3663,7 @@ const Mu = pe({
3663
3663
  round: !0,
3664
3664
  dense: !0,
3665
3665
  flat: !0,
3666
- icon: j.value[0],
3666
+ icon: I.value[0],
3667
3667
  tabindex: a.value,
3668
3668
  disable: Q(h),
3669
3669
  ...i("y-", { onClick: () => {
@@ -3681,7 +3681,7 @@ const Mu = pe({
3681
3681
  round: !0,
3682
3682
  dense: !0,
3683
3683
  flat: !0,
3684
- icon: j.value[1],
3684
+ icon: I.value[1],
3685
3685
  tabindex: a.value,
3686
3686
  disable: Q(k),
3687
3687
  ...i("y+", { onClick: () => {
@@ -3692,7 +3692,7 @@ const Mu = pe({
3692
3692
  ]);
3693
3693
  }
3694
3694
  };
3695
- function jo(h) {
3695
+ function Io(h) {
3696
3696
  const k = { ..._.value, day: h };
3697
3697
  if (e.range === !1) {
3698
3698
  Wn(k, Pe.value);
@@ -3723,7 +3723,7 @@ const Mu = pe({
3723
3723
  });
3724
3724
  }
3725
3725
  }
3726
- function Io(h) {
3726
+ function jo(h) {
3727
3727
  if (V.value !== null) {
3728
3728
  const k = { ..._.value, day: h };
3729
3729
  Object.assign(V.value, {
@@ -3804,9 +3804,9 @@ function Pl(e) {
3804
3804
  const t = document.body, n = window.visualViewport !== void 0;
3805
3805
  if (e === "add") {
3806
3806
  const { overflowY: o, overflowX: r } = window.getComputedStyle(t);
3807
- Xo = Di(window), Jo = Oi(window), Al = t.style.left, Vl = t.style.top, Ol = window.location.href, t.style.left = `-${Xo}px`, t.style.top = `-${Jo}px`, r !== "hidden" && (r === "scroll" || t.scrollWidth > window.innerWidth) && t.classList.add("q-body--force-scrollbar-x"), o !== "hidden" && (o === "scroll" || t.scrollHeight > window.innerHeight) && t.classList.add("q-body--force-scrollbar-y"), t.classList.add("q-body--prevent-scroll"), document.qScrollPrevented = !0, ze.is.ios === !0 && (n === !0 ? (window.scrollTo(0, 0), window.visualViewport.addEventListener("resize", Xn, je.passiveCapture), window.visualViewport.addEventListener("scroll", Xn, je.passiveCapture), window.scrollTo(0, 0)) : window.addEventListener("scroll", Dl, je.passiveCapture));
3807
+ Xo = Di(window), Jo = Oi(window), Al = t.style.left, Vl = t.style.top, Ol = window.location.href, t.style.left = `-${Xo}px`, t.style.top = `-${Jo}px`, r !== "hidden" && (r === "scroll" || t.scrollWidth > window.innerWidth) && t.classList.add("q-body--force-scrollbar-x"), o !== "hidden" && (o === "scroll" || t.scrollHeight > window.innerHeight) && t.classList.add("q-body--force-scrollbar-y"), t.classList.add("q-body--prevent-scroll"), document.qScrollPrevented = !0, ze.is.ios === !0 && (n === !0 ? (window.scrollTo(0, 0), window.visualViewport.addEventListener("resize", Xn, Ie.passiveCapture), window.visualViewport.addEventListener("scroll", Xn, Ie.passiveCapture), window.scrollTo(0, 0)) : window.addEventListener("scroll", Dl, Ie.passiveCapture));
3808
3808
  }
3809
- ze.is.desktop === !0 && ze.is.mac === !0 && window[`${e}EventListener`]("wheel", qu, je.notPassive), e === "remove" && (ze.is.ios === !0 && (n === !0 ? (window.visualViewport.removeEventListener("resize", Xn, je.passiveCapture), window.visualViewport.removeEventListener("scroll", Xn, je.passiveCapture)) : window.removeEventListener("scroll", Dl, je.passiveCapture)), t.classList.remove("q-body--prevent-scroll"), t.classList.remove("q-body--force-scrollbar-x"), t.classList.remove("q-body--force-scrollbar-y"), document.qScrollPrevented = !1, t.style.left = Al, t.style.top = Vl, window.location.href === Ol && window.scrollTo(Xo, Jo), Rn = void 0);
3809
+ ze.is.desktop === !0 && ze.is.mac === !0 && window[`${e}EventListener`]("wheel", qu, Ie.notPassive), e === "remove" && (ze.is.ios === !0 && (n === !0 ? (window.visualViewport.removeEventListener("resize", Xn, Ie.passiveCapture), window.visualViewport.removeEventListener("scroll", Xn, Ie.passiveCapture)) : window.removeEventListener("scroll", Dl, Ie.passiveCapture)), t.classList.remove("q-body--prevent-scroll"), t.classList.remove("q-body--force-scrollbar-x"), t.classList.remove("q-body--force-scrollbar-y"), document.qScrollPrevented = !1, t.style.left = Al, t.style.top = Vl, window.location.href === Ol && window.scrollTo(Xo, Jo), Rn = void 0);
3810
3810
  }
3811
3811
  function $u(e) {
3812
3812
  let t = "add";
@@ -3846,7 +3846,7 @@ function Lu() {
3846
3846
  wn === !0 && (wn = !1);
3847
3847
  }
3848
3848
  function Tu(e) {
3849
- wn === !0 && (wn = !1, jt(e, 27) === !0 && Zt[Zt.length - 1](e));
3849
+ wn === !0 && (wn = !1, It(e, 27) === !0 && Zt[Zt.length - 1](e));
3850
3850
  }
3851
3851
  function sa(e) {
3852
3852
  window[e]("keydown", Eu), window[e]("blur", Lu), window[e]("keyup", Tu), wn = !1;
@@ -3920,11 +3920,11 @@ const Ru = {
3920
3920
  "escapeKey"
3921
3921
  ],
3922
3922
  setup(e, { slots: t, emit: n, attrs: o }) {
3923
- const r = ge(), l = I(null), i = I(!1), a = I(!1);
3923
+ const r = ge(), l = j(null), i = j(!1), a = j(!1);
3924
3924
  let u = null, c = null, s, f;
3925
3925
  const b = d(
3926
3926
  () => e.persistent !== !0 && e.noRouteDismiss !== !0 && e.seamless !== !0
3927
- ), { preventBodyScroll: p } = aa(), { registerTimeout: v } = Bo(), { registerTick: w, removeTick: m } = Ir(), { transitionProps: T, transitionStyle: S } = jr(
3927
+ ), { preventBodyScroll: p } = aa(), { registerTimeout: v } = Bo(), { registerTick: w, removeTick: m } = jr(), { transitionProps: T, transitionStyle: S } = Ir(
3928
3928
  e,
3929
3929
  () => Hl[e.position][0],
3930
3930
  () => Hl[e.position][1]
@@ -3933,7 +3933,7 @@ const Ru = {
3933
3933
  l,
3934
3934
  se,
3935
3935
  "dialog"
3936
- ), { hide: Z } = jn({
3936
+ ), { hide: Z } = In({
3937
3937
  showing: i,
3938
3938
  hideOnRouteChange: b,
3939
3939
  handleShow: ee,
@@ -3945,12 +3945,12 @@ const Ru = {
3945
3945
  `q-dialog fullscreen no-pointer-events q-dialog--${M.value === !0 ? "modal" : "seamless"}`,
3946
3946
  o.class
3947
3947
  ]);
3948
- te(() => e.maximized, (j) => {
3949
- i.value === !0 && x(j);
3950
- }), te(M, (j) => {
3951
- p(j), j === !0 ? (da(ae), ua(G)) : (Mr(ae), po(G));
3948
+ te(() => e.maximized, (I) => {
3949
+ i.value === !0 && x(I);
3950
+ }), te(M, (I) => {
3951
+ p(I), I === !0 ? (da(ae), ua(G)) : (Mr(ae), po(G));
3952
3952
  });
3953
- function ee(j) {
3953
+ function ee(I) {
3954
3954
  L(), c = e.noRefocus === !1 && document.activeElement !== null ? document.activeElement : null, x(e.maximized), _(), a.value = !0, e.noFocus !== !0 ? (document.activeElement !== null && document.activeElement.blur(), w(H)) : m(), v(() => {
3955
3955
  if (r.proxy.$q.platform.is.ios === !0) {
3956
3956
  if (e.seamless !== !0 && document.activeElement) {
@@ -3962,20 +3962,20 @@ const Ru = {
3962
3962
  }
3963
3963
  f = !0, l.value.click(), f = !1;
3964
3964
  }
3965
- _(!0), a.value = !1, n("show", j);
3965
+ _(!0), a.value = !1, n("show", I);
3966
3966
  }, e.transitionDuration);
3967
3967
  }
3968
- function X(j) {
3969
- m(), R(), le(!0), a.value = !0, E(), c !== null && (((j && j.type.indexOf("key") === 0 ? c.closest('[tabindex]:not([tabindex^="-"])') : void 0) || c).focus(), c = null), v(() => {
3970
- E(!0), a.value = !1, n("hide", j);
3968
+ function X(I) {
3969
+ m(), R(), le(!0), a.value = !0, E(), c !== null && (((I && I.type.indexOf("key") === 0 ? c.closest('[tabindex]:not([tabindex^="-"])') : void 0) || c).focus(), c = null), v(() => {
3970
+ E(!0), a.value = !1, n("hide", I);
3971
3971
  }, e.transitionDuration);
3972
3972
  }
3973
- function H(j) {
3973
+ function H(I) {
3974
3974
  qo(() => {
3975
3975
  let J = l.value;
3976
3976
  if (J !== null) {
3977
- if (j !== void 0) {
3978
- const we = J.querySelector(j);
3977
+ if (I !== void 0) {
3978
+ const we = J.querySelector(I);
3979
3979
  if (we !== null) {
3980
3980
  we.focus({ preventScroll: !0 });
3981
3981
  return;
@@ -3985,8 +3985,8 @@ const Ru = {
3985
3985
  }
3986
3986
  });
3987
3987
  }
3988
- function P(j) {
3989
- j && typeof j.focus == "function" ? j.focus({ preventScroll: !0 }) : H(), n("shake");
3988
+ function P(I) {
3989
+ I && typeof I.focus == "function" ? I.focus({ preventScroll: !0 }) : H(), n("shake");
3990
3990
  const J = l.value;
3991
3991
  J !== null && (J.classList.remove("q-animate--scale"), J.classList.add("q-animate--scale"), u !== null && clearTimeout(u), u = setTimeout(() => {
3992
3992
  u = null, l.value !== null && (J.classList.remove("q-animate--scale"), H());
@@ -3995,28 +3995,28 @@ const Ru = {
3995
3995
  function G() {
3996
3996
  e.seamless !== !0 && (e.persistent === !0 || e.noEscDismiss === !0 ? e.maximized !== !0 && e.noShake !== !0 && P() : (n("escapeKey"), Z()));
3997
3997
  }
3998
- function le(j) {
3999
- u !== null && (clearTimeout(u), u = null), (j === !0 || i.value === !0) && (x(!1), e.seamless !== !0 && (p(!1), Mr(ae), po(G))), j !== !0 && (c = null);
3998
+ function le(I) {
3999
+ u !== null && (clearTimeout(u), u = null), (I === !0 || i.value === !0) && (x(!1), e.seamless !== !0 && (p(!1), Mr(ae), po(G))), I !== !0 && (c = null);
4000
4000
  }
4001
- function x(j) {
4002
- j === !0 ? s !== !0 && (Jn < 1 && document.body.classList.add("q-body--dialog"), Jn++, s = !0) : s === !0 && (Jn < 2 && document.body.classList.remove("q-body--dialog"), Jn--, s = !1);
4001
+ function x(I) {
4002
+ I === !0 ? s !== !0 && (Jn < 1 && document.body.classList.add("q-body--dialog"), Jn++, s = !0) : s === !0 && (Jn < 2 && document.body.classList.remove("q-body--dialog"), Jn--, s = !1);
4003
4003
  }
4004
- function C(j) {
4005
- f !== !0 && (Z(j), n("click", j));
4004
+ function C(I) {
4005
+ f !== !0 && (Z(I), n("click", I));
4006
4006
  }
4007
- function N(j) {
4008
- e.persistent !== !0 && e.noBackdropDismiss !== !0 ? Z(j) : e.noShake !== !0 && P();
4007
+ function N(I) {
4008
+ e.persistent !== !0 && e.noBackdropDismiss !== !0 ? Z(I) : e.noShake !== !0 && P();
4009
4009
  }
4010
- function ae(j) {
4011
- e.allowFocusOutside !== !0 && O.value === !0 && Vi(l.value, j.target) !== !0 && H('[tabindex]:not([tabindex="-1"])');
4010
+ function ae(I) {
4011
+ e.allowFocusOutside !== !0 && O.value === !0 && Vi(l.value, I.target) !== !0 && H('[tabindex]:not([tabindex="-1"])');
4012
4012
  }
4013
4013
  Object.assign(r.proxy, {
4014
4014
  // expose public methods
4015
4015
  focus: H,
4016
4016
  shake: P,
4017
4017
  // private but needed by QSelect
4018
- __updateRefocusTarget(j) {
4019
- c = j || null;
4018
+ __updateRefocusTarget(I) {
4019
+ c = I || null;
4020
4020
  }
4021
4021
  }), Te(le);
4022
4022
  function se() {
@@ -4098,9 +4098,9 @@ const Ru = {
4098
4098
  ],
4099
4099
  setup(e, { slots: t, emit: n, attrs: o }) {
4100
4100
  let r = null, l, i, a;
4101
- const u = ge(), { proxy: c } = u, { $q: s } = c, f = I(null), b = I(!1), p = d(
4101
+ const u = ge(), { proxy: c } = u, { $q: s } = c, f = j(null), b = j(!1), p = d(
4102
4102
  () => e.persistent !== !0 && e.noRouteDismiss !== !0
4103
- ), v = Ct(e, s), { registerTick: w, removeTick: m } = Ir(), { registerTimeout: T } = Bo(), { transitionProps: S, transitionStyle: B } = jr(e), { localScrollTarget: _, changeScrollEvent: E, unconfigureScrollTarget: O } = Ei(e, N), { anchorEl: D, canShow: Z } = Pr({ showing: b }), { hide: L } = jn({
4103
+ ), v = Ct(e, s), { registerTick: w, removeTick: m } = jr(), { registerTimeout: T } = Bo(), { transitionProps: S, transitionStyle: B } = Ir(e), { localScrollTarget: _, changeScrollEvent: E, unconfigureScrollTarget: O } = Ei(e, N), { anchorEl: D, canShow: Z } = Pr({ showing: b }), { hide: L } = In({
4104
4104
  showing: b,
4105
4105
  canShow: Z,
4106
4106
  handleShow: le,
@@ -4126,7 +4126,7 @@ const Ru = {
4126
4126
  () => b.value === !0 && e.persistent !== !0
4127
4127
  );
4128
4128
  te(P, (z) => {
4129
- z === !0 ? (ua(j), Pi(U)) : (po(j), fo(U));
4129
+ z === !0 ? (ua(I), Pi(U)) : (po(I), fo(U));
4130
4130
  });
4131
4131
  function G() {
4132
4132
  qo(() => {
@@ -4158,7 +4158,7 @@ const Ru = {
4158
4158
  }, e.transitionDuration);
4159
4159
  }
4160
4160
  function C(z) {
4161
- l = void 0, i !== void 0 && (i(), i = void 0), (z === !0 || b.value === !0) && (Mr(se), O(), fo(U), po(j)), z !== !0 && (r = null);
4161
+ l = void 0, i !== void 0 && (i(), i = void 0), (z === !0 || b.value === !0) && (Mr(se), O(), fo(U), po(I)), z !== !0 && (r = null);
4162
4162
  }
4163
4163
  function N() {
4164
4164
  (D.value !== null || e.scrollTarget !== void 0) && (_.value = zr(D.value, e.scrollTarget), E(_.value, J));
@@ -4169,7 +4169,7 @@ const Ru = {
4169
4169
  function se(z) {
4170
4170
  P.value === !0 && e.noFocus !== !0 && Vi(f.value, z.target) !== !0 && G();
4171
4171
  }
4172
- function j(z) {
4172
+ function I(z) {
4173
4173
  n("escapeKey"), L(z);
4174
4174
  }
4175
4175
  function J() {
@@ -4220,11 +4220,11 @@ const Ru = {
4220
4220
  },
4221
4221
  emits: ["show", "hide"],
4222
4222
  setup(e, { slots: t, emit: n, attrs: o }) {
4223
- const { proxy: r } = ge(), { $q: l } = r, i = I(!1), a = I(null), u = d(() => parseInt(e.breakpoint, 10)), { canShow: c } = Pr({ showing: i });
4223
+ const { proxy: r } = ge(), { $q: l } = r, i = j(!1), a = j(null), u = d(() => parseInt(e.breakpoint, 10)), { canShow: c } = Pr({ showing: i });
4224
4224
  function s() {
4225
4225
  return l.screen.width < u.value || l.screen.height < u.value ? "dialog" : "menu";
4226
4226
  }
4227
- const f = I(s()), b = d(
4227
+ const f = j(s()), b = d(
4228
4228
  () => f.value === "menu" ? { maxHeight: "99vh" } : {}
4229
4229
  );
4230
4230
  te(() => s(), (w) => {
@@ -4328,7 +4328,7 @@ const Ru = {
4328
4328
  ])
4329
4329
  ]));
4330
4330
  }
4331
- }), Gh = /* @__PURE__ */ ie(Du, [["__scopeId", "data-v-6594848b"]]);
4331
+ }), Gh = /* @__PURE__ */ ie(Du, [["__scopeId", "data-v-c921b9d1"]]);
4332
4332
  let er, Gn = 0;
4333
4333
  const We = new Array(256);
4334
4334
  for (let e = 0; e < 256; e++)
@@ -4350,34 +4350,34 @@ const Pu = (() => {
4350
4350
  n.push(Math.floor(Math.random() * 256));
4351
4351
  return n;
4352
4352
  };
4353
- })(), jl = 4096;
4353
+ })(), Il = 4096;
4354
4354
  function yo() {
4355
- (er === void 0 || Gn + 16 > jl) && (Gn = 0, er = Pu(jl));
4355
+ (er === void 0 || Gn + 16 > Il) && (Gn = 0, er = Pu(Il));
4356
4356
  const e = Array.prototype.slice.call(er, Gn, Gn += 16);
4357
4357
  return e[6] = e[6] & 15 | 64, e[8] = e[8] & 63 | 128, We[e[0]] + We[e[1]] + We[e[2]] + We[e[3]] + "-" + We[e[4]] + We[e[5]] + "-" + We[e[6]] + We[e[7]] + "-" + We[e[8]] + We[e[9]] + "-" + We[e[10]] + We[e[11]] + We[e[12]] + We[e[13]] + We[e[14]] + We[e[15]];
4358
4358
  }
4359
4359
  function Hu(e) {
4360
4360
  return e ?? null;
4361
4361
  }
4362
- function Il(e, t) {
4362
+ function jl(e, t) {
4363
4363
  return e ?? (t === !0 ? `f_${yo()}` : null);
4364
4364
  }
4365
4365
  function Zr({ getValue: e, required: t = !0 } = {}) {
4366
4366
  if (en.value === !0) {
4367
- const n = e !== void 0 ? I(Hu(e())) : I(null);
4367
+ const n = e !== void 0 ? j(Hu(e())) : j(null);
4368
4368
  return t === !0 && n.value === null && vt(() => {
4369
4369
  n.value = `f_${yo()}`;
4370
4370
  }), e !== void 0 && te(e, (o) => {
4371
- n.value = Il(o, t);
4371
+ n.value = jl(o, t);
4372
4372
  }), n;
4373
4373
  }
4374
- return e !== void 0 ? d(() => Il(e(), t)) : I(`f_${yo()}`);
4374
+ return e !== void 0 ? d(() => jl(e(), t)) : j(`f_${yo()}`);
4375
4375
  }
4376
4376
  const Fl = /^on[A-Z]/;
4377
- function ju() {
4377
+ function Iu() {
4378
4378
  const { attrs: e, vnode: t } = ge(), n = {
4379
- listeners: I({}),
4380
- attributes: I({})
4379
+ listeners: j({}),
4380
+ attributes: j({})
4381
4381
  };
4382
4382
  function o() {
4383
4383
  const r = {}, l = {};
@@ -4389,7 +4389,7 @@ function ju() {
4389
4389
  }
4390
4390
  return _i(o), o(), n;
4391
4391
  }
4392
- const Iu = "_q_", In = "_q_l_", fa = "_q_pc_", Fu = "_q_fo_";
4392
+ const ju = "_q_", jn = "_q_l_", fa = "_q_pc_", Fu = "_q_fo_";
4393
4393
  function Je() {
4394
4394
  }
4395
4395
  function zu({ validate: e, resetValidation: t, requiresQForm: n }) {
@@ -4457,7 +4457,7 @@ const Nu = [!0, !1, "ondemand"], Uu = {
4457
4457
  }
4458
4458
  };
4459
4459
  function Wu(e, t) {
4460
- const { props: n, proxy: o } = ge(), r = I(!1), l = I(null), i = I(!1);
4460
+ const { props: n, proxy: o } = ge(), r = j(!1), l = j(null), i = j(!1);
4461
4461
  zu({ validate: w, resetValidation: v });
4462
4462
  let a = 0, u;
4463
4463
  const c = d(
@@ -4568,14 +4568,14 @@ function Jr({ requiredForAttr: e = !0, tagProp: t, changeEvent: n = !1 } = {}) {
4568
4568
  editable: d(
4569
4569
  () => o.disable !== !0 && o.readonly !== !0
4570
4570
  ),
4571
- innerLoading: I(!1),
4572
- focused: I(!1),
4571
+ innerLoading: j(!1),
4572
+ focused: j(!1),
4573
4573
  hasPopupOpen: !1,
4574
- splitAttrs: ju(),
4574
+ splitAttrs: Iu(),
4575
4575
  targetUid: i,
4576
- rootRef: I(null),
4577
- targetRef: I(null),
4578
- controlRef: I(null)
4576
+ rootRef: j(null),
4577
+ targetRef: j(null),
4578
+ controlRef: j(null)
4579
4579
  /**
4580
4580
  * user supplied additionals:
4581
4581
 
@@ -4843,7 +4843,7 @@ const Qu = new RegExp("\\\\([^.*+?^${}()|([\\]])|([.*+?^${}()|[\\]])|([" + va.jo
4843
4843
  };
4844
4844
  function Zu(e, t, n, o) {
4845
4845
  let r, l, i, a, u, c;
4846
- const s = I(null), f = I(p());
4846
+ const s = j(null), f = j(p());
4847
4847
  function b() {
4848
4848
  return e.autogrow === !0 || ["textarea", "text", "search", "url", "tel", "password"].includes(e.type);
4849
4849
  }
@@ -4887,13 +4887,13 @@ function Zu(e, t, n, o) {
4887
4887
  let ee = e.reverseFillMask === !0, X = "", H = "";
4888
4888
  L.replace(Qu, (x, C, N, ae, se) => {
4889
4889
  if (ae !== void 0) {
4890
- const j = bo[ae];
4891
- A.push(j), H = j.negate, ee === !0 && (U.push("(?:" + H + "+)?(" + j.pattern + "+)?(?:" + H + "+)?(" + j.pattern + "+)?"), ee = !1), U.push("(?:" + H + "+)?(" + j.pattern + ")?");
4890
+ const I = bo[ae];
4891
+ A.push(I), H = I.negate, ee === !0 && (U.push("(?:" + H + "+)?(" + I.pattern + "+)?(?:" + H + "+)?(" + I.pattern + "+)?"), ee = !1), U.push("(?:" + H + "+)?(" + I.pattern + ")?");
4892
4892
  } else if (N !== void 0)
4893
4893
  X = "\\" + (N === "\\" ? "" : N), A.push(N), M.push("([^" + X + "]+)?" + X + "?");
4894
4894
  else {
4895
- const j = C !== void 0 ? C : se;
4896
- X = j === "\\" ? "\\\\\\\\" : j.replace(Yl, "\\\\$&"), A.push(j), M.push("([^" + X + "]+)?" + X + "?");
4895
+ const I = C !== void 0 ? C : se;
4896
+ X = I === "\\" ? "\\\\\\\\" : I.replace(Yl, "\\\\$&"), A.push(I), M.push("([^" + X + "]+)?" + X + "?");
4897
4897
  }
4898
4898
  });
4899
4899
  const P = new RegExp(
@@ -4905,11 +4905,11 @@ function Zu(e, t, n, o) {
4905
4905
  const C = P.exec(e.reverseFillMask === !0 ? x : x.slice(0, A.length + 1));
4906
4906
  C !== null && (x = C.slice(1).join(""));
4907
4907
  const N = [], ae = le.length;
4908
- for (let se = 0, j = x; se < ae; se++) {
4909
- const J = le[se].exec(j);
4908
+ for (let se = 0, I = x; se < ae; se++) {
4909
+ const J = le[se].exec(I);
4910
4910
  if (J === null)
4911
4911
  break;
4912
- j = j.slice(J.shift().length), N.push(...J);
4912
+ I = I.slice(J.shift().length), N.push(...J);
4913
4913
  }
4914
4914
  return N.length !== 0 ? N.join("") : x;
4915
4915
  }, r = A.map((x) => typeof x == "string" ? x : Oe).join(""), l = r.split(Oe).join(R);
@@ -5138,7 +5138,7 @@ const ga = pe({
5138
5138
  setup(e, { emit: t, attrs: n }) {
5139
5139
  const { proxy: o } = ge(), { $q: r } = o, l = {};
5140
5140
  let i = NaN, a, u, c = null, s;
5141
- const f = I(null), b = Zi(e), {
5141
+ const f = j(null), b = Zi(e), {
5142
5142
  innerValue: p,
5143
5143
  hasMask: v,
5144
5144
  moveCursorForPaste: w,
@@ -5246,8 +5246,8 @@ const ga = pe({
5246
5246
  requestAnimationFrame(() => {
5247
5247
  const C = f.value;
5248
5248
  if (C !== null) {
5249
- const N = C.parentNode.style, { scrollTop: ae } = C, { overflowY: se, maxHeight: j } = r.platform.is.firefox === !0 ? {} : window.getComputedStyle(C), J = se !== void 0 && se !== "scroll";
5250
- J === !0 && (C.style.overflowY = "hidden"), N.marginBottom = C.scrollHeight - 1 + "px", C.style.height = "1px", C.style.height = C.scrollHeight + "px", J === !0 && (C.style.overflowY = parseInt(j, 10) < C.scrollHeight ? "auto" : "hidden"), N.marginBottom = "", C.scrollTop = ae;
5249
+ const N = C.parentNode.style, { scrollTop: ae } = C, { overflowY: se, maxHeight: I } = r.platform.is.firefox === !0 ? {} : window.getComputedStyle(C), J = se !== void 0 && se !== "scroll";
5250
+ J === !0 && (C.style.overflowY = "hidden"), N.marginBottom = C.scrollHeight - 1 + "px", C.style.height = "1px", C.style.height = C.scrollHeight + "px", J === !0 && (C.style.overflowY = parseInt(I, 10) < C.scrollHeight ? "auto" : "hidden"), N.marginBottom = "", C.scrollTop = ae;
5251
5251
  }
5252
5252
  });
5253
5253
  }
@@ -5380,9 +5380,9 @@ const ga = pe({
5380
5380
  emits: ["update:modelValue", "button-click", "clear", "focus", "blur", "click"],
5381
5381
  setup(e, { emit: t }) {
5382
5382
  kn((u) => ({
5383
- "366a7212": u.height
5383
+ "308cc05f": u.height
5384
5384
  }));
5385
- const n = e, o = t, r = I(!1), l = d(() => n.type === "password" ? r.value ? "text" : "password" : n.type || "text"), i = d({
5385
+ const n = e, o = t, r = j(!1), l = d(() => n.type === "password" ? r.value ? "text" : "password" : n.type || "text"), i = d({
5386
5386
  get: () => n.modelValue !== null && n.modelValue !== void 0 && n.type === "number" ? +n.modelValue : n.modelValue,
5387
5387
  set: (u) => o("update:modelValue", n.type === "number" ? +u : u)
5388
5388
  }), a = d(() => ({
@@ -5484,7 +5484,7 @@ const ga = pe({
5484
5484
  emits: ["update:modelValue", "button-click", "clear", "focus", "blur", "click"],
5485
5485
  setup(e, { emit: t }) {
5486
5486
  kn((i) => ({
5487
- "63e2431c": i.height
5487
+ b7f4f120: i.height
5488
5488
  }));
5489
5489
  const n = e, o = t, r = d({
5490
5490
  get: () => n.modelValue !== null && n.modelValue !== void 0 && n.type === "number" ? +n.modelValue : n.modelValue,
@@ -5549,7 +5549,7 @@ const ga = pe({
5549
5549
  styleFn: Function
5550
5550
  },
5551
5551
  setup(e, { slots: t }) {
5552
- const { proxy: { $q: n } } = ge(), o = Gt(In, Je);
5552
+ const { proxy: { $q: n } } = ge(), o = Gt(jn, Je);
5553
5553
  if (o === Je)
5554
5554
  return console.error("QPage needs to be a deep child of QLayout"), Je;
5555
5555
  if (Gt(fa, Je) === Je)
@@ -5574,7 +5574,7 @@ const ga = pe({
5574
5574
  }), uc = pe({
5575
5575
  name: "QPageContainer",
5576
5576
  setup(e, { slots: t }) {
5577
- const { proxy: { $q: n } } = ge(), o = Gt(In, Je);
5577
+ const { proxy: { $q: n } } = ge(), o = Gt(jn, Je);
5578
5578
  if (o === Je)
5579
5579
  return console.error("QPageContainer needs to be child of QLayout"), Je;
5580
5580
  Si(fa, !0);
@@ -5587,7 +5587,7 @@ const ga = pe({
5587
5587
  style: r.value
5588
5588
  }, Ve(t.default));
5589
5589
  }
5590
- }), { passive: Ql } = je, cc = ["both", "horizontal", "vertical"], dc = pe({
5590
+ }), { passive: Ql } = Ie, cc = ["both", "horizontal", "vertical"], dc = pe({
5591
5591
  name: "QScrollObserver",
5592
5592
  props: {
5593
5593
  axis: {
@@ -5659,7 +5659,7 @@ const ga = pe({
5659
5659
  }
5660
5660
  });
5661
5661
  function fc() {
5662
- const e = I(!en.value);
5662
+ const e = j(!en.value);
5663
5663
  return e.value === !1 && vt(() => {
5664
5664
  e.value = !0;
5665
5665
  }), { isHydrated: e };
@@ -5702,9 +5702,9 @@ const pa = typeof ResizeObserver < "u", Kl = pa === !0 ? {} : {
5702
5702
  }), Mo;
5703
5703
  } else {
5704
5704
  let u = function() {
5705
- n !== null && (clearTimeout(n), n = null), f !== void 0 && (f.removeEventListener !== void 0 && f.removeEventListener("resize", l, je.passive), f = void 0);
5705
+ n !== null && (clearTimeout(n), n = null), f !== void 0 && (f.removeEventListener !== void 0 && f.removeEventListener("resize", l, Ie.passive), f = void 0);
5706
5706
  }, c = function() {
5707
- u(), o && o.contentDocument && (f = o.contentDocument.defaultView, f.addEventListener("resize", l, je.passive), i());
5707
+ u(), o && o.contentDocument && (f = o.contentDocument.defaultView, f.addEventListener("resize", l, Ie.passive), i());
5708
5708
  };
5709
5709
  const { isHydrated: s } = fc();
5710
5710
  let f;
@@ -5741,7 +5741,7 @@ const pa = typeof ResizeObserver < "u", Kl = pa === !0 ? {} : {
5741
5741
  onResize: Function
5742
5742
  },
5743
5743
  setup(e, { slots: t, emit: n }) {
5744
- const { proxy: { $q: o } } = ge(), r = I(null), l = I(o.screen.height), i = I(e.container === !0 ? 0 : o.screen.width), a = I({ position: 0, direction: "down", inflectionPoint: 0 }), u = I(0), c = I(en.value === !0 ? 0 : oo()), s = d(
5744
+ const { proxy: { $q: o } } = ge(), r = j(null), l = j(o.screen.height), i = j(e.container === !0 ? 0 : o.screen.width), a = j({ position: 0, direction: "down", inflectionPoint: 0 }), u = j(0), c = j(en.value === !0 ? 0 : oo()), s = d(
5745
5745
  () => "q-layout q-layout--" + (e.container === !0 ? "containerized" : "standard")
5746
5746
  ), f = d(() => e.container === !1 ? { minHeight: o.screen.height + "px" } : null), b = d(() => c.value !== 0 ? { [o.lang.rtl === !0 ? "left" : "right"]: `${c.value}px` } : null), p = d(() => c.value !== 0 ? {
5747
5747
  [o.lang.rtl === !0 ? "right" : "left"]: 0,
@@ -5806,7 +5806,7 @@ const pa = typeof ResizeObserver < "u", Kl = pa === !0 ? {} : {
5806
5806
  B[_][E] = O;
5807
5807
  }
5808
5808
  };
5809
- if (Si(In, B), oo() > 0) {
5809
+ if (Si(jn, B), oo() > 0) {
5810
5810
  let _ = function() {
5811
5811
  D = null, Z.classList.remove("hide-scrollbar");
5812
5812
  }, E = function() {
@@ -5875,7 +5875,7 @@ const pa = typeof ResizeObserver < "u", Kl = pa === !0 ? {} : {
5875
5875
  }, null, 8, ["size", "thickness"])) : Ye("", !0)
5876
5876
  ], 2));
5877
5877
  }
5878
- }), mc = /* @__PURE__ */ ie(vc, [["__scopeId", "data-v-9f8ceae1"]]), gc = /* @__PURE__ */ Ne({
5878
+ }), mc = /* @__PURE__ */ ie(vc, [["__scopeId", "data-v-ef7a12f8"]]), gc = /* @__PURE__ */ Ne({
5879
5879
  __name: "AppLayout",
5880
5880
  props: {
5881
5881
  logged: { type: Boolean },
@@ -5964,10 +5964,10 @@ const pa = typeof ResizeObserver < "u", Kl = pa === !0 ? {} : {
5964
5964
  },
5965
5965
  emits: ["reveal", "focusin"],
5966
5966
  setup(e, { slots: t, emit: n }) {
5967
- const { proxy: { $q: o } } = ge(), r = Gt(In, Je);
5967
+ const { proxy: { $q: o } } = ge(), r = Gt(jn, Je);
5968
5968
  if (r === Je)
5969
5969
  return console.error("QHeader needs to be child of QLayout"), Je;
5970
- const l = I(parseInt(e.heightHint, 10)), i = I(!0), a = d(
5970
+ const l = j(parseInt(e.heightHint, 10)), i = j(!0), a = d(
5971
5971
  () => e.reveal === !0 || r.view.value.indexOf("H") !== -1 || o.platform.is.ios && r.isContainer.value === !0
5972
5972
  ), u = d(() => {
5973
5973
  if (e.modelValue !== !0)
@@ -6224,7 +6224,7 @@ const pa = typeof ResizeObserver < "u", Kl = pa === !0 ? {} : {
6224
6224
  },
6225
6225
  emits: ["click", "keyup"],
6226
6226
  setup(e, { slots: t, emit: n }) {
6227
- const { proxy: { $q: o } } = ge(), r = Ct(e, o), { hasLink: l, linkAttrs: i, linkClass: a, linkTag: u, navigateOnClick: c } = Yi(), s = I(null), f = I(null), b = d(
6227
+ const { proxy: { $q: o } } = ge(), r = Ct(e, o), { hasLink: l, linkAttrs: i, linkClass: a, linkTag: u, navigateOnClick: c } = Yi(), s = j(null), f = j(null), b = d(
6228
6228
  () => e.clickable === !0 || l.value === !0 || e.tag === "label"
6229
6229
  ), p = d(
6230
6230
  () => e.disable !== !0 && b.value === !0
@@ -6237,7 +6237,7 @@ const pa = typeof ResizeObserver < "u", Kl = pa === !0 ? {} : {
6237
6237
  p.value === !0 && (f.value !== null && (B.qKeyEvent !== !0 && document.activeElement === s.value ? f.value.focus() : document.activeElement === f.value && s.value.focus()), c(B));
6238
6238
  }
6239
6239
  function T(B) {
6240
- if (p.value === !0 && jt(B, [13, 32]) === !0) {
6240
+ if (p.value === !0 && It(B, [13, 32]) === !0) {
6241
6241
  Re(B), B.qKeyEvent = !0;
6242
6242
  const _ = new MouseEvent("click", B);
6243
6243
  _.qKeyEvent = !0, s.value.dispatchEvent(_);
@@ -6427,7 +6427,7 @@ function Rc({
6427
6427
  }) {
6428
6428
  const r = ge(), { props: l, emit: i, proxy: a } = r, { $q: u } = a;
6429
6429
  let c, s, f, b = [], p;
6430
- const v = I(0), w = I(0), m = I({}), T = I(null), S = I(null), B = I(null), _ = I({ from: 0, to: 0 }), E = d(() => l.tableColspan !== void 0 ? l.tableColspan : 100);
6430
+ const v = j(0), w = j(0), m = j({}), T = j(null), S = j(null), B = j(null), _ = j({ from: 0, to: 0 }), E = d(() => l.tableColspan !== void 0 ? l.tableColspan : 100);
6431
6431
  o === void 0 && (o = d(() => l.virtualScrollItemSize));
6432
6432
  const O = d(() => o.value + ";" + l.virtualScrollHorizontal), D = d(
6433
6433
  () => O.value + ";" + l.virtualScrollSliceRatioBefore + ";" + l.virtualScrollSliceRatioAfter
@@ -6494,23 +6494,23 @@ function Rc({
6494
6494
  );
6495
6495
  return;
6496
6496
  }
6497
- let j = 0, J = C.scrollStart - C.offsetStart, we = J;
6497
+ let I = 0, J = C.scrollStart - C.offsetStart, we = J;
6498
6498
  if (J <= ae && J + C.scrollViewSize >= v.value)
6499
- J -= v.value, j = _.value.from, we = J;
6499
+ J -= v.value, I = _.value.from, we = J;
6500
6500
  else
6501
- for (let z = 0; J >= b[z] && j < N; z++)
6502
- J -= b[z], j += gt;
6503
- for (; J > 0 && j < N; )
6504
- J -= p[j], J > -C.scrollViewSize ? (j++, we = J) : we = p[j] + J;
6501
+ for (let z = 0; J >= b[z] && I < N; z++)
6502
+ J -= b[z], I += gt;
6503
+ for (; J > 0 && I < N; )
6504
+ J -= p[I], J > -C.scrollViewSize ? (I++, we = J) : we = p[I] + J;
6505
6505
  M(
6506
6506
  x,
6507
6507
  C,
6508
- j,
6508
+ I,
6509
6509
  we
6510
6510
  );
6511
6511
  }
6512
6512
  function M(x, C, N, ae, se) {
6513
- const j = typeof se == "string" && se.indexOf("-force") !== -1, J = j === !0 ? se.replace("-force", "") : se, we = J !== void 0 ? J : "start";
6513
+ const I = typeof se == "string" && se.indexOf("-force") !== -1, J = I === !0 ? se.replace("-force", "") : se, we = J !== void 0 ? J : "start";
6514
6514
  let z = Math.max(0, N - m.value[we]), $e = z + m.value.total;
6515
6515
  $e > e.value && ($e = e.value, z = Math.max(0, $e - m.value.total)), c = C.scrollStart;
6516
6516
  const Ce = z !== _.value.from || $e !== _.value.to;
@@ -6522,7 +6522,7 @@ function Rc({
6522
6522
  Ce === !0 && Se !== null && Se !== qe && Se.contains(qe) === !0 && (Se.addEventListener("focusout", A), setTimeout(() => {
6523
6523
  Se !== null && Se.removeEventListener("focusout", A);
6524
6524
  })), Lc(Se, N - z);
6525
- const Ie = J !== void 0 ? p.slice(z, N).reduce(bn, 0) : 0;
6525
+ const je = J !== void 0 ? p.slice(z, N).reduce(bn, 0) : 0;
6526
6526
  if (Ce === !0) {
6527
6527
  const tt = $e >= _.value.from && z <= _.value.to ? _.value.to : $e;
6528
6528
  _.value = { from: z, to: tt }, v.value = Ln(b, p, 0, z), w.value = Ln(b, p, $e, e.value), requestAnimationFrame(() => {
@@ -6536,8 +6536,8 @@ function Rc({
6536
6536
  const tt = p.slice(z, N).reduce(bn, 0), Ze = tt + C.offsetStart + v.value, Pe = Ze + p[N];
6537
6537
  let bt = Ze + ae;
6538
6538
  if (J !== void 0) {
6539
- const St = tt - Ie, Qe = C.scrollStart + St;
6540
- bt = j !== !0 && Qe < Ze && Pe < Qe + C.scrollViewSize ? Qe : J === "end" ? Pe - C.scrollViewSize : Ze - (J === "start" ? 0 : Math.round((C.scrollViewSize - p[N]) / 2));
6539
+ const St = tt - je, Qe = C.scrollStart + St;
6540
+ bt = I !== !0 && Qe < Ze && Pe < Qe + C.scrollViewSize ? Qe : J === "end" ? Pe - C.scrollViewSize : Ze - (J === "start" ? 0 : Math.round((C.scrollViewSize - p[N]) / 2));
6541
6541
  }
6542
6542
  c = bt, Zl(
6543
6543
  x,
@@ -6554,11 +6554,11 @@ function Rc({
6554
6554
  C.children,
6555
6555
  (z) => z.classList && z.classList.contains("q-virtual-scroll--skip") === !1
6556
6556
  ), ae = N.length, se = l.virtualScrollHorizontal === !0 ? (z) => z.getBoundingClientRect().width : (z) => z.offsetHeight;
6557
- let j = x, J, we;
6557
+ let I = x, J, we;
6558
6558
  for (let z = 0; z < ae; ) {
6559
6559
  for (J = se(N[z]), z++; z < ae && N[z].classList.contains("q-virtual-scroll--with-prev") === !0; )
6560
6560
  J += se(N[z]), z++;
6561
- we = J - p[j], we !== 0 && (p[j] += we, b[Math.floor(j / gt)] += we), j++;
6561
+ we = J - p[I], we !== 0 && (p[I] += we, b[Math.floor(I / gt)] += we), I++;
6562
6562
  }
6563
6563
  }
6564
6564
  }
@@ -6570,14 +6570,14 @@ function Rc({
6570
6570
  (C === !0 || Array.isArray(p) === !1) && (p = []);
6571
6571
  const ae = p.length;
6572
6572
  p.length = e.value;
6573
- for (let j = e.value - 1; j >= ae; j--)
6574
- p[j] = N;
6573
+ for (let I = e.value - 1; I >= ae; I--)
6574
+ p[I] = N;
6575
6575
  const se = Math.floor((e.value - 1) / gt);
6576
6576
  b = [];
6577
- for (let j = 0; j <= se; j++) {
6577
+ for (let I = 0; I <= se; I++) {
6578
6578
  let J = 0;
6579
- const we = Math.min((j + 1) * gt, e.value);
6580
- for (let z = j * gt; z < we; z++)
6579
+ const we = Math.min((I + 1) * gt, e.value);
6580
+ for (let z = I * gt; z < we; z++)
6581
6581
  J += p[z];
6582
6582
  b.push(J);
6583
6583
  }
@@ -6600,16 +6600,16 @@ function Rc({
6600
6600
  ).scrollViewSize);
6601
6601
  }
6602
6602
  f = x;
6603
- const C = parseFloat(l.virtualScrollSliceRatioBefore) || 0, N = parseFloat(l.virtualScrollSliceRatioAfter) || 0, ae = 1 + C + N, se = x === void 0 || x <= 0 ? 1 : Math.ceil(x / o.value), j = Math.max(
6603
+ const C = parseFloat(l.virtualScrollSliceRatioBefore) || 0, N = parseFloat(l.virtualScrollSliceRatioAfter) || 0, ae = 1 + C + N, se = x === void 0 || x <= 0 ? 1 : Math.ceil(x / o.value), I = Math.max(
6604
6604
  1,
6605
6605
  se,
6606
6606
  Math.ceil((l.virtualScrollSliceSize > 0 ? l.virtualScrollSliceSize : 10) / ae)
6607
6607
  );
6608
6608
  m.value = {
6609
- total: Math.ceil(j * ae),
6610
- start: Math.ceil(j * C),
6611
- center: Math.ceil(j * (0.5 + C)),
6612
- end: Math.ceil(j * (1 + C)),
6609
+ total: Math.ceil(I * ae),
6610
+ start: Math.ceil(I * C),
6611
+ center: Math.ceil(I * (0.5 + C)),
6612
+ end: Math.ceil(I * (1 + C)),
6613
6613
  view: se
6614
6614
  };
6615
6615
  }
@@ -6796,9 +6796,9 @@ const Oc = pe({
6796
6796
  "filterAbort"
6797
6797
  ],
6798
6798
  setup(e, { slots: t, emit: n }) {
6799
- const { proxy: o } = ge(), { $q: r } = o, l = I(!1), i = I(!1), a = I(-1), u = I(""), c = I(!1), s = I(!1);
6799
+ const { proxy: o } = ge(), { $q: r } = o, l = j(!1), i = j(!1), a = j(-1), u = j(""), c = j(!1), s = j(!1);
6800
6800
  let f = null, b = null, p, v, w, m = null, T, S, B, _;
6801
- const E = I(null), O = I(null), D = I(null), Z = I(null), L = I(null), R = Zi(e), V = ma($n), M = d(() => e.options.length), U = d(() => e.virtualScrollItemSize === void 0 ? e.optionsDense === !0 ? 24 : 48 : e.virtualScrollItemSize), {
6801
+ const E = j(null), O = j(null), D = j(null), Z = j(null), L = j(null), R = Zi(e), V = ma($n), M = d(() => e.options.length), U = d(() => e.virtualScrollItemSize === void 0 ? e.optionsDense === !0 ? 24 : 48 : e.virtualScrollItemSize), {
6802
6802
  virtualScrollSliceRange: A,
6803
6803
  virtualScrollSliceSizeComputed: ee,
6804
6804
  localResetVirtualScroll: X,
@@ -6824,14 +6824,14 @@ const Oc = pe({
6824
6824
  const oe = e[ne];
6825
6825
  oe !== void 0 && (y[ne] = oe);
6826
6826
  }), y;
6827
- }), ae = d(() => e.optionsDark === null ? x.isDark.value : e.optionsDark), se = d(() => On(C.value)), j = d(() => {
6827
+ }), ae = d(() => e.optionsDark === null ? x.isDark.value : e.optionsDark), se = d(() => On(C.value)), I = d(() => {
6828
6828
  let y = "q-field__input q-placeholder col";
6829
6829
  return e.hideSelected === !0 || C.value.length === 0 ? [y, e.inputClass] : (y += " q-field__input--padding", e.inputClass === void 0 ? y : [y, e.inputClass]);
6830
6830
  }), J = d(
6831
6831
  () => (e.virtualScrollHorizontal === !0 ? "q-virtual-scroll--horizontal" : "") + (e.popupContentClass ? " " + e.popupContentClass : "")
6832
6832
  ), we = d(() => M.value === 0), z = d(
6833
6833
  () => C.value.map((y) => He.value(y)).join(", ")
6834
- ), $e = d(() => e.displayValue !== void 0 ? e.displayValue : z.value), Ce = d(() => e.optionsHtml === !0 ? () => !0 : (y) => y != null && y.html === !0), qe = d(() => e.displayValueHtml === !0 || e.displayValue === void 0 && (e.optionsHtml === !0 || C.value.some(Ce.value))), Se = d(() => x.focused.value === !0 ? e.tabindex : -1), Ie = d(() => {
6834
+ ), $e = d(() => e.displayValue !== void 0 ? e.displayValue : z.value), Ce = d(() => e.optionsHtml === !0 ? () => !0 : (y) => y != null && y.html === !0), qe = d(() => e.displayValueHtml === !0 || e.displayValue === void 0 && (e.optionsHtml === !0 || C.value.some(Ce.value))), Se = d(() => x.focused.value === !0 ? e.tabindex : -1), je = d(() => {
6835
6835
  const y = {
6836
6836
  tabindex: e.tabindex,
6837
6837
  role: "combobox",
@@ -6979,7 +6979,7 @@ const Oc = pe({
6979
6979
  const ne = y !== -1 && y < M.value ? y : -1;
6980
6980
  a.value !== ne && (a.value = ne);
6981
6981
  }
6982
- function It(y = 1, ne) {
6982
+ function jt(y = 1, ne) {
6983
6983
  if (l.value === !0) {
6984
6984
  let oe = a.value;
6985
6985
  do
@@ -7007,7 +7007,7 @@ const Oc = pe({
7007
7007
  e.useInput === !0 && O.value !== null && (y === void 0 || O.value === y.target && y.target.value === z.value) && O.value.select();
7008
7008
  }
7009
7009
  function Wn(y) {
7010
- jt(y, 27) === !0 && l.value === !0 && (nt(y), st(), un()), n("keyup", y);
7010
+ It(y, 27) === !0 && l.value === !0 && (nt(y), st(), un()), n("keyup", y);
7011
7011
  }
7012
7012
  function kt(y) {
7013
7013
  const { value: ne } = y.target;
@@ -7050,13 +7050,13 @@ const Oc = pe({
7050
7050
  e.multiple === !0 && Array.isArray(e.modelValue) === !0 ? rn(e.modelValue.length - 1) : e.multiple !== !0 && e.modelValue !== null && n("update:modelValue", null);
7051
7051
  return;
7052
7052
  }
7053
- (y.keyCode === 35 || y.keyCode === 36) && (typeof u.value != "string" || u.value.length === 0) && (Re(y), a.value = -1, It(y.keyCode === 36 ? 1 : -1, e.multiple)), (y.keyCode === 33 || y.keyCode === 34) && ee.value !== void 0 && (Re(y), a.value = Math.max(
7053
+ (y.keyCode === 35 || y.keyCode === 36) && (typeof u.value != "string" || u.value.length === 0) && (Re(y), a.value = -1, jt(y.keyCode === 36 ? 1 : -1, e.multiple)), (y.keyCode === 33 || y.keyCode === 34) && ee.value !== void 0 && (Re(y), a.value = Math.max(
7054
7054
  -1,
7055
7055
  Math.min(
7056
7056
  M.value,
7057
7057
  a.value + (y.keyCode === 33 ? -1 : 1) * ee.value.view
7058
7058
  )
7059
- ), It(y.keyCode === 33 ? 1 : -1, e.multiple)), (y.keyCode === 38 || y.keyCode === 40) && (Re(y), It(y.keyCode === 38 ? -1 : 1, e.multiple));
7059
+ ), jt(y.keyCode === 33 ? 1 : -1, e.multiple)), (y.keyCode === 38 || y.keyCode === 40) && (Re(y), jt(y.keyCode === 38 ? -1 : 1, e.multiple));
7060
7060
  const ve = M.value;
7061
7061
  if ((B === void 0 || _ < Date.now()) && (B = ""), ve > 0 && e.useInput !== !0 && y.key !== void 0 && y.key.length === 1 && y.altKey === !1 && y.ctrlKey === !1 && y.metaKey === !1 && (y.keyCode !== 32 || B.length !== 0)) {
7062
7062
  l.value !== !0 && ke(y);
@@ -7139,10 +7139,10 @@ const Oc = pe({
7139
7139
  return t["before-options"] !== void 0 && (ne = t["before-options"]().concat(ne)), $t(t["after-options"], ne);
7140
7140
  }
7141
7141
  function Bn(y, ne) {
7142
- const oe = ne === !0 ? { ...Ie.value, ...x.splitAttrs.attributes.value } : void 0, ve = {
7142
+ const oe = ne === !0 ? { ...je.value, ...x.splitAttrs.attributes.value } : void 0, ve = {
7143
7143
  ref: ne === !0 ? O : void 0,
7144
7144
  key: "i_t",
7145
- class: j.value,
7145
+ class: I.value,
7146
7146
  style: e.inputStyle,
7147
7147
  value: u.value !== void 0 ? u.value : "",
7148
7148
  // required for Android in order to show ENTER key when in form
@@ -7195,7 +7195,7 @@ const Oc = pe({
7195
7195
  }
7196
7196
  );
7197
7197
  }
7198
- function jo() {
7198
+ function Io() {
7199
7199
  return g(Kr, {
7200
7200
  ref: D,
7201
7201
  class: J.value,
@@ -7219,11 +7219,11 @@ const Oc = pe({
7219
7219
  ...tt.value,
7220
7220
  onScrollPassive: P,
7221
7221
  onBeforeShow: sl,
7222
- onBeforeHide: Io,
7222
+ onBeforeHide: jo,
7223
7223
  onShow: h
7224
7224
  }, an);
7225
7225
  }
7226
- function Io(y) {
7226
+ function jo(y) {
7227
7227
  ul(y), ue();
7228
7228
  }
7229
7229
  function h() {
@@ -7352,7 +7352,7 @@ const Oc = pe({
7352
7352
  toggleOption: wt,
7353
7353
  getOptionIndex: () => a.value,
7354
7354
  setOptionIndex: xt,
7355
- moveOptionSelection: It,
7355
+ moveOptionSelection: jt,
7356
7356
  filter: Tt,
7357
7357
  updateMenuPosition: al,
7358
7358
  updateInputValue: qt,
@@ -7375,7 +7375,7 @@ const Oc = pe({
7375
7375
  ),
7376
7376
  getControlChild: () => {
7377
7377
  if (x.editable.value !== !1 && (i.value === !0 || we.value !== !0 || t["no-option"] !== void 0))
7378
- return v === !0 ? Q() : jo();
7378
+ return v === !0 ? Q() : Io();
7379
7379
  x.hasPopupOpen === !0 && (x.hasPopupOpen = !1);
7380
7380
  },
7381
7381
  controlEvents: {
@@ -7400,7 +7400,7 @@ const Oc = pe({
7400
7400
  if (e.useInput === !0)
7401
7401
  ne.push(Bn(y, oe));
7402
7402
  else if (x.editable.value === !0) {
7403
- const Be = oe === !0 ? Ie.value : void 0;
7403
+ const Be = oe === !0 ? je.value : void 0;
7404
7404
  ne.push(
7405
7405
  g("input", {
7406
7406
  ref: oe === !0 ? O : void 0,
@@ -7468,16 +7468,16 @@ const Oc = pe({
7468
7468
  emits: ["update:modelValue"],
7469
7469
  setup(e, { emit: t }) {
7470
7470
  kn((s) => ({
7471
- "5e128078": s.borderColor
7471
+ e2d84852: s.borderColor
7472
7472
  }));
7473
- const n = e, o = I({}), r = t, l = d({
7473
+ const n = e, o = j({}), r = t, l = d({
7474
7474
  get() {
7475
7475
  return n.modelValue;
7476
7476
  },
7477
7477
  set(s) {
7478
7478
  r("update:modelValue", s);
7479
7479
  }
7480
- }), i = () => Array.isArray(l.value) && !l.value.length ? !0 : typeof l.value == "string" && !l.value, a = I(""), u = d(() => n.options.filter((s) => s[(n == null ? void 0 : n.optionLabel) || "label"].toLowerCase().includes(a.value)));
7480
+ }), i = () => Array.isArray(l.value) && !l.value.length ? !0 : typeof l.value == "string" && !l.value, a = j(""), u = d(() => n.options.filter((s) => s[(n == null ? void 0 : n.optionLabel) || "label"].toLowerCase().includes(a.value)));
7481
7481
  function c(s, f) {
7482
7482
  f(() => {
7483
7483
  a.value = s.toLowerCase();
@@ -7548,7 +7548,7 @@ const Oc = pe({
7548
7548
  } : void 0
7549
7549
  ]), 1032, ["modelValue", "options", "option-value", "option-label", "disable", "multiple", "use-input", "class", "label", "popup-content-class", "clearable"]));
7550
7550
  }
7551
- }), Pc = "_wrap_n46gp_1", Hc = "_select_n46gp_8", jc = {
7551
+ }), Pc = "_wrap_n46gp_1", Hc = "_select_n46gp_8", Ic = {
7552
7552
  wrap: Pc,
7553
7553
  select: Hc,
7554
7554
  "append-wrapper": "_append-wrapper_n46gp_25",
@@ -7556,9 +7556,9 @@ const Oc = pe({
7556
7556
  "search-wrapper": "_search-wrapper_n46gp_35",
7557
7557
  "app-select__menu": "_app-select__menu_n46gp_43",
7558
7558
  "q-item__label": "_q-item__label_n46gp_46"
7559
- }, Ic = {
7560
- $style: jc
7561
- }, rv = /* @__PURE__ */ ie(Dc, [["__cssModules", Ic]]), Fc = '<g transform="matrix(1 0 0 -1 0 80)"><rect width="10" height="20" rx="3"><animate attributeName="height" begin="0s" dur="4.3s" values="20;45;57;80;64;32;66;45;64;23;66;13;64;56;34;34;2;23;76;79;20" calcMode="linear" repeatCount="indefinite"></animate></rect><rect x="15" width="10" height="80" rx="3"><animate attributeName="height" begin="0s" dur="2s" values="80;55;33;5;75;23;73;33;12;14;60;80" calcMode="linear" repeatCount="indefinite"></animate></rect><rect x="30" width="10" height="50" rx="3"><animate attributeName="height" begin="0s" dur="1.4s" values="50;34;78;23;56;23;34;76;80;54;21;50" calcMode="linear" repeatCount="indefinite"></animate></rect><rect x="45" width="10" height="30" rx="3"><animate attributeName="height" begin="0s" dur="2s" values="30;45;13;80;56;72;45;76;34;23;67;30" calcMode="linear" repeatCount="indefinite"></animate></rect></g>', Gl = pe({
7559
+ }, jc = {
7560
+ $style: Ic
7561
+ }, rv = /* @__PURE__ */ ie(Dc, [["__cssModules", jc]]), Fc = '<g transform="matrix(1 0 0 -1 0 80)"><rect width="10" height="20" rx="3"><animate attributeName="height" begin="0s" dur="4.3s" values="20;45;57;80;64;32;66;45;64;23;66;13;64;56;34;34;2;23;76;79;20" calcMode="linear" repeatCount="indefinite"></animate></rect><rect x="15" width="10" height="80" rx="3"><animate attributeName="height" begin="0s" dur="2s" values="80;55;33;5;75;23;73;33;12;14;60;80" calcMode="linear" repeatCount="indefinite"></animate></rect><rect x="30" width="10" height="50" rx="3"><animate attributeName="height" begin="0s" dur="1.4s" values="50;34;78;23;56;23;34;76;80;54;21;50" calcMode="linear" repeatCount="indefinite"></animate></rect><rect x="45" width="10" height="30" rx="3"><animate attributeName="height" begin="0s" dur="2s" values="30;45;13;80;56;72;45;76;34;23;67;30" calcMode="linear" repeatCount="indefinite"></animate></rect></g>', Gl = pe({
7562
7562
  name: "QSpinnerAudio",
7563
7563
  props: zi,
7564
7564
  setup(e) {
@@ -7613,7 +7613,7 @@ const zc = Or(
7613
7613
  });
7614
7614
  },
7615
7615
  handlerKey(o) {
7616
- jt(o, 13) === !0 && n.handler(o);
7616
+ It(o, 13) === !0 && n.handler(o);
7617
7617
  }
7618
7618
  };
7619
7619
  e.__qclosepopup = n, e.addEventListener("click", n.handler), e.addEventListener("keyup", n.handlerKey);
@@ -7646,7 +7646,7 @@ const zc = Or(
7646
7646
  emits: ["update:dialogRef", "update:currentTabName"],
7647
7647
  setup(e, { emit: t }) {
7648
7648
  kn((l) => ({
7649
- "740e724f": l.width
7649
+ c46ffd20: l.width
7650
7650
  }));
7651
7651
  const n = e, o = t, r = d({
7652
7652
  get() {
@@ -7715,7 +7715,7 @@ const zc = Or(
7715
7715
  "sheet-dialog": "_sheet-dialog_1rkva_1"
7716
7716
  }, Jc = {
7717
7717
  $style: Xc
7718
- }, lv = /* @__PURE__ */ ie(Zc, [["__cssModules", Jc], ["__scopeId", "data-v-813dad0d"]]), el = {
7718
+ }, lv = /* @__PURE__ */ ie(Zc, [["__cssModules", Jc], ["__scopeId", "data-v-fb6e60fa"]]), el = {
7719
7719
  left: !0,
7720
7720
  right: !0,
7721
7721
  up: !0,
@@ -7948,15 +7948,15 @@ const lr = Or(
7948
7948
  "miniState"
7949
7949
  ],
7950
7950
  setup(e, { slots: t, emit: n, attrs: o }) {
7951
- const r = ge(), { proxy: { $q: l } } = r, i = Ct(e, l), { preventBodyScroll: a } = aa(), { registerTimeout: u, removeTimeout: c } = Bo(), s = Gt(In, Je);
7951
+ const r = ge(), { proxy: { $q: l } } = r, i = Ct(e, l), { preventBodyScroll: a } = aa(), { registerTimeout: u, removeTimeout: c } = Bo(), s = Gt(jn, Je);
7952
7952
  if (s === Je)
7953
7953
  return console.error("QDrawer needs to be child of QLayout"), Je;
7954
7954
  let f, b = null, p;
7955
- const v = I(
7955
+ const v = j(
7956
7956
  e.behavior === "mobile" || e.behavior !== "desktop" && s.totalWidth.value <= e.breakpoint
7957
7957
  ), w = d(
7958
7958
  () => e.mini === !0 && v.value !== !0
7959
- ), m = d(() => w.value === !0 ? e.miniWidth : e.width), T = I(
7959
+ ), m = d(() => w.value === !0 ? e.miniWidth : e.width), T = j(
7960
7960
  e.showIfAbove === !0 && v.value === !1 ? !0 : e.modelValue === !0
7961
7961
  ), S = d(
7962
7962
  () => e.persistent !== !0 && (v.value === !0 || le.value === !0)
@@ -7964,19 +7964,19 @@ const lr = Or(
7964
7964
  function B(F, he) {
7965
7965
  if (D(), F !== !1 && s.animate(), Se(0), v.value === !0) {
7966
7966
  const Fe = s.instances[X.value];
7967
- Fe !== void 0 && Fe.belowBreakpoint === !0 && Fe.hide(!1), Ie(1), s.isContainer.value !== !0 && a(!0);
7967
+ Fe !== void 0 && Fe.belowBreakpoint === !0 && Fe.hide(!1), je(1), s.isContainer.value !== !0 && a(!0);
7968
7968
  } else
7969
- Ie(0), F !== !1 && tt(!1);
7969
+ je(0), F !== !1 && tt(!1);
7970
7970
  u(() => {
7971
7971
  F !== !1 && tt(!0), he !== !0 && n("show", F);
7972
7972
  }, oi);
7973
7973
  }
7974
7974
  function _(F, he) {
7975
- Z(), F !== !1 && s.animate(), Ie(0), Se(V.value * m.value), St(), he !== !0 ? u(() => {
7975
+ Z(), F !== !1 && s.animate(), je(0), Se(V.value * m.value), St(), he !== !0 ? u(() => {
7976
7976
  n("hide", F);
7977
7977
  }, oi) : c();
7978
7978
  }
7979
- const { show: E, hide: O } = jn({
7979
+ const { show: E, hide: O } = In({
7980
7980
  showing: T,
7981
7981
  hideOnRouteChange: S,
7982
7982
  handleShow: B,
@@ -7986,7 +7986,7 @@ const lr = Or(
7986
7986
  hide: O
7987
7987
  }, R = d(() => e.side === "right"), V = d(
7988
7988
  () => (l.lang.rtl === !0 ? -1 : 1) * (R.value === !0 ? 1 : -1)
7989
- ), M = I(0), U = I(!1), A = I(!1), ee = I(
7989
+ ), M = j(0), U = j(!1), A = j(!1), ee = j(
7990
7990
  // starting with "hidden" for SSR
7991
7991
  m.value * V.value
7992
7992
  ), X = d(() => R.value === !0 ? "left" : "right"), H = d(() => T.value === !0 && v.value === !1 && e.overlay === !1 ? e.miniToOverlay === !0 ? e.miniWidth : m.value : 0), P = d(
@@ -8002,7 +8002,7 @@ const lr = Or(
8002
8002
  })), N = d(() => R.value === !0 ? s.rows.value.top[2] === "r" : s.rows.value.top[0] === "l"), ae = d(() => R.value === !0 ? s.rows.value.bottom[2] === "r" : s.rows.value.bottom[0] === "l"), se = d(() => {
8003
8003
  const F = {};
8004
8004
  return s.header.space === !0 && N.value === !1 && (P.value === !0 ? F.top = `${s.header.offset}px` : s.header.space === !0 && (F.top = `${s.header.size}px`)), s.footer.space === !0 && ae.value === !1 && (P.value === !0 ? F.bottom = `${s.footer.offset}px` : s.footer.space === !0 && (F.bottom = `${s.footer.size}px`)), F;
8005
- }), j = d(() => {
8005
+ }), I = d(() => {
8006
8006
  const F = {
8007
8007
  width: `${m.value}px`,
8008
8008
  transform: `translateX(${ee.value}px)`
@@ -8051,7 +8051,7 @@ const lr = Or(
8051
8051
  Xe(v, e.behavior === "mobile" || e.behavior !== "desktop" && s.totalWidth.value <= e.breakpoint);
8052
8052
  }
8053
8053
  te(v, (F) => {
8054
- F === !0 ? (f = T.value, T.value === !0 && O(!1)) : e.overlay === !1 && e.behavior !== "mobile" && f !== !1 && (T.value === !0 ? (Se(0), Ie(0), St()) : E(!1));
8054
+ F === !0 ? (f = T.value, T.value === !0 && O(!1)) : e.overlay === !1 && e.behavior !== "mobile" && f !== !1 && (T.value === !0 ? (Se(0), je(0), St()) : E(!1));
8055
8055
  }), te(() => e.side, (F, he) => {
8056
8056
  s.instances[he] === L && (s.instances[he] = void 0, s[he].space = !1, s[he].offset = 0), s.instances[F] = L, s[F].size = m.value, s[F].space = G.value, s[F].offset = H.value;
8057
8057
  }), te(s.totalWidth, () => {
@@ -8085,7 +8085,7 @@ const lr = Or(
8085
8085
  F = T.value === !0 ? 0 : m.value, Se(V.value * F);
8086
8086
  }) : (s.isContainer.value === !0 && R.value === !0 && (v.value === !0 || Math.abs(F) === m.value) && (F += V.value * s.scrollbarWidth.value), ee.value = F);
8087
8087
  }
8088
- function Ie(F) {
8088
+ function je(F) {
8089
8089
  M.value = F;
8090
8090
  }
8091
8091
  function tt(F) {
@@ -8102,12 +8102,12 @@ const lr = Or(
8102
8102
  return;
8103
8103
  const he = m.value, Fe = Kn(F.distance.x, 0, he);
8104
8104
  if (F.isFinal === !0) {
8105
- Fe >= Math.min(75, he) === !0 ? E() : (s.animate(), Ie(0), Se(V.value * he)), U.value = !1;
8105
+ Fe >= Math.min(75, he) === !0 ? E() : (s.animate(), je(0), Se(V.value * he)), U.value = !1;
8106
8106
  return;
8107
8107
  }
8108
8108
  Se(
8109
8109
  (l.lang.rtl === !0 ? R.value !== !0 : R.value) ? Math.max(he - Fe, 0) : Math.min(0, Fe - he)
8110
- ), Ie(
8110
+ ), je(
8111
8111
  Kn(Fe / he, 0, 1)
8112
8112
  ), F.isFirst === !0 && (U.value = !0);
8113
8113
  }
@@ -8116,10 +8116,10 @@ const lr = Or(
8116
8116
  return;
8117
8117
  const he = m.value, Fe = F.direction === e.side, mt = (l.lang.rtl === !0 ? Fe !== !0 : Fe) ? Kn(F.distance.x, 0, he) : 0;
8118
8118
  if (F.isFinal === !0) {
8119
- Math.abs(mt) < Math.min(75, he) === !0 ? (s.animate(), Ie(1), Se(0)) : O(), U.value = !1;
8119
+ Math.abs(mt) < Math.min(75, he) === !0 ? (s.animate(), je(1), Se(0)) : O(), U.value = !1;
8120
8120
  return;
8121
8121
  }
8122
- Se(V.value * mt), Ie(Kn(1 - mt / he, 0, 1)), F.isFirst === !0 && (U.value = !0);
8122
+ Se(V.value * mt), je(Kn(1 - mt / he, 0, 1)), F.isFirst === !0 && (U.value = !0);
8123
8123
  }
8124
8124
  function St() {
8125
8125
  a(!1), tt(!0);
@@ -8196,7 +8196,7 @@ const lr = Or(
8196
8196
  ), F.push(
8197
8197
  yr(
8198
8198
  "aside",
8199
- { ref: "content", class: we.value, style: j.value },
8199
+ { ref: "content", class: we.value, style: I.value },
8200
8200
  Fe,
8201
8201
  "contentclose",
8202
8202
  e.noSwipeClose !== !0 && v.value === !0,
@@ -8325,9 +8325,9 @@ const lr = Or(
8325
8325
  "afterHide"
8326
8326
  ],
8327
8327
  setup(e, { slots: t, emit: n }) {
8328
- const { proxy: { $q: o } } = ge(), r = Ct(e, o), l = I(
8328
+ const { proxy: { $q: o } } = ge(), r = Ct(e, o), l = j(
8329
8329
  e.modelValue !== null ? e.modelValue : e.defaultOpened
8330
- ), i = I(null), a = Zr(), { show: u, hide: c, toggle: s } = jn({ showing: l });
8330
+ ), i = j(null), a = Zr(), { show: u, hide: c, toggle: s } = In({ showing: l });
8331
8331
  let f, b;
8332
8332
  const p = d(
8333
8333
  () => `q-expansion-item q-item-type q-expansion-item--${l.value === !0 ? "expanded" : "collapsed"} q-expansion-item--${e.popup === !0 ? "popup" : "standard"}`
@@ -8714,15 +8714,15 @@ function Dd(e, t) {
8714
8714
  pt('<path d="M18 7.16019C17.94 7.15019 17.87 7.15019 17.81 7.16019C16.43 7.11019 15.33 5.98018 15.33 4.58018C15.33 3.15018 16.48 2.00018 17.91 2.00018C19.34 2.00018 20.49 3.16018 20.49 4.58018C20.48 5.98018 19.38 7.11019 18 7.16019Z" stroke="currentStroke" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path><path d="M16.9698 14.4401C18.3398 14.6701 19.8498 14.4301 20.9098 13.7201C22.3198 12.7801 22.3198 11.2401 20.9098 10.3001C19.8398 9.5901 18.3098 9.35009 16.9398 9.59009" stroke="currentStroke" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path><path d="M5.9701 7.16037C6.0301 7.15037 6.1001 7.15037 6.1601 7.16037C7.5401 7.11037 8.6401 5.98037 8.6401 4.58037C8.6401 3.15037 7.4901 2.00037 6.0601 2.00037C4.6301 2.00037 3.4801 3.16037 3.4801 4.58037C3.4901 5.98037 4.5901 7.11037 5.9701 7.16037Z" stroke="currentStroke" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path><path d="M7.00006 14.4401C5.63006 14.6701 4.12006 14.4301 3.06006 13.7201C1.65006 12.7801 1.65006 11.2401 3.06006 10.3001C4.13006 9.5901 5.66006 9.35009 7.03006 9.59009" stroke="currentStroke" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path><path d="M12.0001 14.6302C11.9401 14.6202 11.8701 14.6202 11.8101 14.6302C10.4301 14.5802 9.33008 13.4502 9.33008 12.0502C9.33008 10.6202 10.4801 9.47021 11.9101 9.47021C13.3401 9.47021 14.4901 10.6302 14.4901 12.0502C14.4801 13.4502 13.3801 14.5902 12.0001 14.6302Z" stroke="currentStroke" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path><path d="M9.09021 17.7804C7.68021 18.7204 7.68021 20.2603 9.09021 21.2003C10.6902 22.2703 13.3102 22.2703 14.9102 21.2003C16.3202 20.2603 16.3202 18.7204 14.9102 17.7804C13.3202 16.7204 10.6902 16.7204 9.09021 17.7804Z" stroke="currentStroke" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path>', 6)
8715
8715
  ]));
8716
8716
  }
8717
- const Pd = /* @__PURE__ */ ie(Vd, [["render", Dd]]), Hd = {}, jd = {
8717
+ const Pd = /* @__PURE__ */ ie(Vd, [["render", Dd]]), Hd = {}, Id = {
8718
8718
  width: "24",
8719
8719
  height: "24",
8720
8720
  viewBox: "0 0 24 24",
8721
8721
  fill: "none",
8722
8722
  xmlns: "http://www.w3.org/2000/svg"
8723
8723
  };
8724
- function Id(e, t) {
8725
- return Y(), de("svg", jd, t[0] || (t[0] = [
8724
+ function jd(e, t) {
8725
+ return Y(), de("svg", Id, t[0] || (t[0] = [
8726
8726
  W("path", {
8727
8727
  d: "M12 12C14.7614 12 17 9.76142 17 7C17 4.23858 14.7614 2 12 2C9.23858 2 7 4.23858 7 7C7 9.76142 9.23858 12 12 12Z",
8728
8728
  stroke: "currentStroke",
@@ -8739,7 +8739,7 @@ function Id(e, t) {
8739
8739
  }, null, -1)
8740
8740
  ]));
8741
8741
  }
8742
- const Fd = /* @__PURE__ */ ie(Hd, [["render", Id]]), zd = {}, Nd = {
8742
+ const Fd = /* @__PURE__ */ ie(Hd, [["render", jd]]), zd = {}, Nd = {
8743
8743
  width: "24",
8744
8744
  height: "24",
8745
8745
  viewBox: "0 0 24 24",
@@ -9017,7 +9017,7 @@ function Hf(e, t) {
9017
9017
  }, null, -1)
9018
9018
  ]));
9019
9019
  }
9020
- const jf = /* @__PURE__ */ ie(Df, [["render", Hf]]), If = {}, Ff = {
9020
+ const If = /* @__PURE__ */ ie(Df, [["render", Hf]]), jf = {}, Ff = {
9021
9021
  width: "24",
9022
9022
  height: "24",
9023
9023
  viewBox: "0 0 24 24",
@@ -9050,7 +9050,7 @@ function zf(e, t) {
9050
9050
  }, null, -1)
9051
9051
  ]));
9052
9052
  }
9053
- const Nf = /* @__PURE__ */ ie(If, [["render", zf]]), Uf = {}, Wf = {
9053
+ const Nf = /* @__PURE__ */ ie(jf, [["render", zf]]), Uf = {}, Wf = {
9054
9054
  width: "24",
9055
9055
  height: "24",
9056
9056
  viewBox: "0 0 24 24",
@@ -9246,8 +9246,8 @@ const _1 = /* @__PURE__ */ ie(b1, [["render", k1]]), C1 = /* @__PURE__ */ Ne({
9246
9246
  },
9247
9247
  setup(e) {
9248
9248
  kn((r) => ({
9249
- c630246a: r.color,
9250
- "682fb499": r.size
9249
+ "5d838be6": r.color,
9250
+ "619dd817": r.size
9251
9251
  }));
9252
9252
  const t = e;
9253
9253
  function n(r) {
@@ -9276,7 +9276,7 @@ const _1 = /* @__PURE__ */ ie(b1, [["render", k1]]), C1 = /* @__PURE__ */ Ne({
9276
9276
  InstrumentWorkZoneIcon: Bf,
9277
9277
  WorkshopIcon: Tf,
9278
9278
  WarehousesIcon: Of,
9279
- TeamsIcon: jf,
9279
+ TeamsIcon: If,
9280
9280
  RolesIcon: Nf,
9281
9281
  PositionsIcon: Qf,
9282
9282
  InstrumentOrderIcon: Jf,
@@ -9307,7 +9307,7 @@ const _1 = /* @__PURE__ */ ie(b1, [["render", k1]]), C1 = /* @__PURE__ */ Ne({
9307
9307
  },
9308
9308
  emits: ["goToRoute"],
9309
9309
  setup(e, { emit: t }) {
9310
- const n = e, o = I(!0), r = (l) => {
9310
+ const n = e, o = j(!0), r = (l) => {
9311
9311
  n.main || (window.location.href = l);
9312
9312
  };
9313
9313
  return (l, i) => {
@@ -9420,7 +9420,7 @@ const _1 = /* @__PURE__ */ ie(b1, [["render", k1]]), C1 = /* @__PURE__ */ Ne({
9420
9420
  "menu-item__label": "_menu-item__label_pfw9c_18"
9421
9421
  }, B1 = {
9422
9422
  $style: q1
9423
- }, $1 = /* @__PURE__ */ ie(M1, [["__cssModules", B1], ["__scopeId", "data-v-c42b6cfb"]]), E1 = /* @__PURE__ */ Ne({
9423
+ }, $1 = /* @__PURE__ */ ie(M1, [["__cssModules", B1], ["__scopeId", "data-v-efd5ec77"]]), E1 = /* @__PURE__ */ Ne({
9424
9424
  __name: "SidebarMenu",
9425
9425
  props: {
9426
9426
  menuItems: {},
@@ -9447,7 +9447,7 @@ const _1 = /* @__PURE__ */ ie(b1, [["render", k1]]), C1 = /* @__PURE__ */ Ne({
9447
9447
  $style: T1
9448
9448
  }, A1 = /* @__PURE__ */ ie(E1, [["__cssModules", R1]]);
9449
9449
  function V1() {
9450
- return Gt(Iu);
9450
+ return Gt(ju);
9451
9451
  }
9452
9452
  const O1 = /* @__PURE__ */ Ne({
9453
9453
  __name: "AppSidebar",
@@ -9460,7 +9460,7 @@ const O1 = /* @__PURE__ */ Ne({
9460
9460
  },
9461
9461
  emits: ["logout"],
9462
9462
  setup(e, { emit: t }) {
9463
- const n = t, o = V1(), r = I(!0), l = I(!0), i = I(!1), a = d(() => o.screen.lt.lg), u = d(() => l.value ? "menu" : "close"), c = d(() => a.value ? 250 : 275), s = d(() => a.value ? 47 : 72);
9463
+ const n = t, o = V1(), r = j(!0), l = j(!0), i = j(!1), a = d(() => o.screen.lt.lg), u = d(() => l.value ? "menu" : "close"), c = d(() => a.value ? 250 : 275), s = d(() => a.value ? 47 : 72);
9464
9464
  function f(v) {
9465
9465
  !i.value && !a.value && (l.value = v);
9466
9466
  }
@@ -9597,7 +9597,7 @@ const O1 = /* @__PURE__ */ Ne({
9597
9597
  _: 1
9598
9598
  }, 8, ["modelValue", "class", "mini", "overlay", "width", "mini-width"]));
9599
9599
  }
9600
- }), D1 = "_drawer_1q4rd_1", P1 = "_logo_1q4rd_17", H1 = "_logo__text_1q4rd_22", j1 = {
9600
+ }), D1 = "_drawer_1q4rd_1", P1 = "_logo_1q4rd_17", H1 = "_logo__text_1q4rd_22", I1 = {
9601
9601
  drawer: D1,
9602
9602
  logo: P1,
9603
9603
  logo__text: H1,
@@ -9606,9 +9606,9 @@ const O1 = /* @__PURE__ */ Ne({
9606
9606
  "minify-btn": "_minify-btn_1q4rd_35",
9607
9607
  "menu-exit": "_menu-exit_1q4rd_46",
9608
9608
  "menu-exit__label": "_menu-exit__label_1q4rd_52"
9609
- }, I1 = {
9610
- $style: j1
9611
- }, iv = /* @__PURE__ */ ie(O1, [["__cssModules", I1]]), F1 = pe({
9609
+ }, j1 = {
9610
+ $style: I1
9611
+ }, iv = /* @__PURE__ */ ie(O1, [["__cssModules", j1]]), F1 = pe({
9612
9612
  name: "QToggle",
9613
9613
  props: {
9614
9614
  ...Xi,
@@ -9663,7 +9663,7 @@ function U1(e, t) {
9663
9663
  ut(e.$slots, "default", {}, void 0, !0)
9664
9664
  ]);
9665
9665
  }
9666
- const sv = /* @__PURE__ */ ie(z1, [["render", U1], ["__scopeId", "data-v-f769f373"]]), li = pe({
9666
+ const sv = /* @__PURE__ */ ie(z1, [["render", U1], ["__scopeId", "data-v-7e325751"]]), li = pe({
9667
9667
  name: "QCardSection",
9668
9668
  props: {
9669
9669
  tag: {
@@ -9686,7 +9686,7 @@ function Y1(e) {
9686
9686
  }), t;
9687
9687
  }
9688
9688
  function tl() {
9689
- const { emit: e, proxy: t } = ge(), n = I(null);
9689
+ const { emit: e, proxy: t } = ge(), n = j(null);
9690
9690
  function o() {
9691
9691
  n.value.show();
9692
9692
  }
@@ -9869,7 +9869,7 @@ const f0 = pe({
9869
9869
  },
9870
9870
  emits: ["update:modelValue", "click", "beforeShow", "show", "beforeHide", "hide"],
9871
9871
  setup(e, { slots: t, emit: n }) {
9872
- const { proxy: o } = ge(), r = I(e.modelValue), l = I(null), i = Zr(), a = d(() => {
9872
+ const { proxy: o } = ge(), r = j(e.modelValue), l = j(null), i = Zr(), a = d(() => {
9873
9873
  const _ = {
9874
9874
  "aria-expanded": r.value === !0 ? "true" : "false",
9875
9875
  "aria-haspopup": "true",
@@ -10016,7 +10016,7 @@ const f0 = pe({
10016
10016
  _: 3
10017
10017
  }, 8, ["color", "content-style"]));
10018
10018
  }
10019
- }), cv = /* @__PURE__ */ ie(h0, [["__scopeId", "data-v-2bcc638c"]]);
10019
+ }), cv = /* @__PURE__ */ ie(h0, [["__scopeId", "data-v-729e08a0"]]);
10020
10020
  function _a(e, t) {
10021
10021
  return function() {
10022
10022
  return e.apply(t, arguments);
@@ -10119,7 +10119,7 @@ const L0 = (e, t, n, { allOwnKeys: o } = {}) => (Fn(t, (r, l) => {
10119
10119
  for (; (n = e.exec(t)) !== null; )
10120
10120
  o.push(n);
10121
10121
  return o;
10122
- }, j0 = yt("HTMLFormElement"), I0 = (e) => e.toLowerCase().replace(
10122
+ }, I0 = yt("HTMLFormElement"), j0 = (e) => e.toLowerCase().replace(
10123
10123
  /[-_\s]([a-z\d])(\w*)/g,
10124
10124
  function(n, o, r) {
10125
10125
  return o.toUpperCase() + r;
@@ -10229,14 +10229,14 @@ const K0 = (e) => {
10229
10229
  toArray: O0,
10230
10230
  forEachEntry: P0,
10231
10231
  matchAll: H0,
10232
- isHTMLForm: j0,
10232
+ isHTMLForm: I0,
10233
10233
  hasOwnProperty: ii,
10234
10234
  hasOwnProp: ii,
10235
10235
  // an alias to avoid ESLint no-prototype-builtins detection
10236
10236
  reduceDescriptors: qa,
10237
10237
  freezeMethods: z0,
10238
10238
  toObjectSet: N0,
10239
- toCamelCase: I0,
10239
+ toCamelCase: j0,
10240
10240
  noop: U0,
10241
10241
  toFiniteNumber: W0,
10242
10242
  findKey: xa,
@@ -11023,7 +11023,7 @@ function tn(e, t) {
11023
11023
  q.isUndefined(b) && f !== a || (n[s] = b);
11024
11024
  }), n;
11025
11025
  }
11026
- const ja = (e) => {
11026
+ const Ia = (e) => {
11027
11027
  const t = tn({}, e);
11028
11028
  let { data: n, withXSRFToken: o, xsrfHeaderName: r, xsrfCookieName: l, headers: i, auth: a } = t;
11029
11029
  t.headers = i = at.from(i), t.url = Aa(Ha(t.baseURL, t.url), e.params, e.paramsSerializer), a && i.set(
@@ -11046,7 +11046,7 @@ const ja = (e) => {
11046
11046
  return t;
11047
11047
  }, Bh = typeof XMLHttpRequest < "u", $h = Bh && function(e) {
11048
11048
  return new Promise(function(n, o) {
11049
- const r = ja(e);
11049
+ const r = Ia(e);
11050
11050
  let l = r.data;
11051
11051
  const i = at.from(r.headers).normalize();
11052
11052
  let { responseType: a, onUploadProgress: u, onDownloadProgress: c } = r, s, f, b, p, v;
@@ -11181,13 +11181,13 @@ const ja = (e) => {
11181
11181
  }, {
11182
11182
  highWaterMark: 2
11183
11183
  });
11184
- }, Ho = typeof fetch == "function" && typeof Request == "function" && typeof Response == "function", Ia = Ho && typeof ReadableStream == "function", Ah = Ho && (typeof TextEncoder == "function" ? /* @__PURE__ */ ((e) => (t) => e.encode(t))(new TextEncoder()) : async (e) => new Uint8Array(await new Response(e).arrayBuffer())), Fa = (e, ...t) => {
11184
+ }, Ho = typeof fetch == "function" && typeof Request == "function" && typeof Response == "function", ja = Ho && typeof ReadableStream == "function", Ah = Ho && (typeof TextEncoder == "function" ? /* @__PURE__ */ ((e) => (t) => e.encode(t))(new TextEncoder()) : async (e) => new Uint8Array(await new Response(e).arrayBuffer())), Fa = (e, ...t) => {
11185
11185
  try {
11186
11186
  return !!e(...t);
11187
11187
  } catch {
11188
11188
  return !1;
11189
11189
  }
11190
- }, Vh = Ia && Fa(() => {
11190
+ }, Vh = ja && Fa(() => {
11191
11191
  let e = !1;
11192
11192
  const t = new Request(it.origin, {
11193
11193
  body: new ReadableStream(),
@@ -11197,7 +11197,7 @@ const ja = (e) => {
11197
11197
  }
11198
11198
  }).headers.has("Content-Type");
11199
11199
  return e && !t;
11200
- }), gi = 64 * 1024, Tr = Ia && Fa(() => q.isReadableStream(new Response("").body)), Co = {
11200
+ }), gi = 64 * 1024, Tr = ja && Fa(() => q.isReadableStream(new Response("").body)), Co = {
11201
11201
  stream: Tr && ((e) => e.body)
11202
11202
  };
11203
11203
  Ho && ((e) => {
@@ -11238,7 +11238,7 @@ const Oh = async (e) => {
11238
11238
  headers: s,
11239
11239
  withCredentials: f = "same-origin",
11240
11240
  fetchOptions: b
11241
- } = ja(e);
11241
+ } = Ia(e);
11242
11242
  c = c ? (c + "").toLowerCase() : "text";
11243
11243
  let p = Eh([r, l && l.toAbortSignal()], i), v;
11244
11244
  const w = p && p.unsubscribe && (() => {
@@ -11401,7 +11401,7 @@ ll.transitional = function(t, n, o) {
11401
11401
  )), t ? t(l, i, a) : !0;
11402
11402
  };
11403
11403
  };
11404
- function jh(e, t, n) {
11404
+ function Ih(e, t, n) {
11405
11405
  if (typeof e != "object")
11406
11406
  throw new fe("options must be an object", fe.ERR_BAD_OPTION_VALUE);
11407
11407
  const o = Object.keys(e);
@@ -11419,7 +11419,7 @@ function jh(e, t, n) {
11419
11419
  }
11420
11420
  }
11421
11421
  const Ar = {
11422
- assertOptions: jh,
11422
+ assertOptions: Ih,
11423
11423
  validators: ll
11424
11424
  }, Vt = Ar.validators;
11425
11425
  class Jt {
@@ -11616,7 +11616,7 @@ class il {
11616
11616
  };
11617
11617
  }
11618
11618
  }
11619
- function Ih(e) {
11619
+ function jh(e) {
11620
11620
  return function(n) {
11621
11621
  return e.apply(null, n);
11622
11622
  };
@@ -11710,7 +11710,7 @@ De.Cancel = De.CanceledError;
11710
11710
  De.all = function(t) {
11711
11711
  return Promise.all(t);
11712
11712
  };
11713
- De.spread = Ih;
11713
+ De.spread = jh;
11714
11714
  De.isAxiosError = Fh;
11715
11715
  De.mergeConfig = tn;
11716
11716
  De.AxiosHeaders = at;
@@ -12059,6 +12059,13 @@ class Yh extends on {
12059
12059
  async saveMetrics(t) {
12060
12060
  return await this.put("/update_quality_metrics", t);
12061
12061
  }
12062
+ async checkReasonForStatus(t) {
12063
+ return await this.post("/tasks/check_reason_for_task", t);
12064
+ }
12065
+ async verifyTaskStatus(t) {
12066
+ const { taskId: n, data: o } = t;
12067
+ return await this.post(`/task/${n}/change-status/verification`, o);
12068
+ }
12062
12069
  }
12063
12070
  let mr;
12064
12071
  function mv() {