@quoreadmin/ui 1.3.14 → 1.3.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.css +1 -1
- package/dist/index.js +187 -180
- package/dist/index.umd.cjs +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -13,7 +13,7 @@ var Sr = (t, e, n, r) => ({
|
|
|
13
13
|
return p(t, e, r);
|
|
14
14
|
}
|
|
15
15
|
});
|
|
16
|
-
import { defineComponent as Oe, computed as
|
|
16
|
+
import { defineComponent as Oe, computed as Y, resolveComponent as Q, createElementBlock as k, openBlock as w, normalizeClass as B, renderSlot as z, createVNode as R, normalizeProps as An, guardReactiveProps as xr, createElementVNode as D, createCommentVNode as L, toDisplayString as W, Transition as bn, withCtx as X, ref as _, getCurrentInstance as Ba, onMounted as St, onUnmounted as jr, unref as ji, nextTick as cn, inject as fi, cloneVNode as yL, h as jn, Fragment as ge, provide as Na, watchEffect as On, watch as lt, getCurrentScope as vL, onScopeDispose as bL, isRef as wL, reactive as Fi, shallowRef as g5, useSlots as qy, onUpdated as CL, mergeProps as P, readonly as WM, resolveDirective as wr, renderList as Ie, withDirectives as Ct, createBlock as q, Text as SL, Teleport as y5, resolveDynamicComponent as Ne, withKeys as tr, toHandlerKey as Pr, withModifiers as st, createTextVNode as Le, normalizeStyle as Tn, onBeforeUnmount as mu, markRaw as kL, customRef as ML, toRaw as GM, vShow as n0, vModelText as AL, TransitionGroup as TL, createSlots as Q0, toRef as EL, isVNode as IL, toHandlers as tm, render as mb } from "vue";
|
|
17
17
|
const OL = Oe({
|
|
18
18
|
name: "QAccordion",
|
|
19
19
|
props: {
|
|
@@ -55,13 +55,13 @@ const OL = Oe({
|
|
|
55
55
|
},
|
|
56
56
|
emits: ["update:modelValue"],
|
|
57
57
|
setup(t, { emit: e, slots: n }) {
|
|
58
|
-
const r =
|
|
58
|
+
const r = Y({
|
|
59
59
|
get: () => !!t.modelValue,
|
|
60
60
|
set: (c) => e("update:modelValue", c)
|
|
61
|
-
}), i =
|
|
61
|
+
}), i = Y(() => !!n.text), s = Y(() => {
|
|
62
62
|
const c = r.value ? "Hide" : "Show";
|
|
63
63
|
return o.value ? c : t.triggerText;
|
|
64
|
-
}), o =
|
|
64
|
+
}), o = Y(() => t.variant === "bubble"), a = Y(() => [
|
|
65
65
|
"leading-normal font-bold",
|
|
66
66
|
{
|
|
67
67
|
"text-md": t.variant === "white"
|
|
@@ -71,7 +71,7 @@ const OL = Oe({
|
|
|
71
71
|
{
|
|
72
72
|
"flex-shrink mr-2 text-gray-40 text-sm": t.variant === "bubble"
|
|
73
73
|
}
|
|
74
|
-
]), l =
|
|
74
|
+
]), l = Y(() => t.chevronSize || (o.value ? "sm" : "md"));
|
|
75
75
|
return {
|
|
76
76
|
// computed
|
|
77
77
|
show: r,
|
|
@@ -101,7 +101,7 @@ const OL = Oe({
|
|
|
101
101
|
class: "flex-grow border-t border-gray-20"
|
|
102
102
|
};
|
|
103
103
|
function PL(t, e, n, r, i, s) {
|
|
104
|
-
const o =
|
|
104
|
+
const o = Q("q-icon");
|
|
105
105
|
return w(), k("div", {
|
|
106
106
|
value: t.modelValue,
|
|
107
107
|
class: B([
|
|
@@ -197,7 +197,7 @@ const Wge = /* @__PURE__ */ ze(OL, [["render", PL], ["__scopeId", "data-v-c7b434
|
|
|
197
197
|
},
|
|
198
198
|
emits: ["click"],
|
|
199
199
|
setup(t, { emit: e }) {
|
|
200
|
-
const n =
|
|
200
|
+
const n = Y(() => {
|
|
201
201
|
switch (t.type) {
|
|
202
202
|
case "complaint":
|
|
203
203
|
return "face-sad";
|
|
@@ -214,16 +214,17 @@ const Wge = /* @__PURE__ */ ze(OL, [["render", PL], ["__scopeId", "data-v-c7b434
|
|
|
214
214
|
case "satisfaction-call":
|
|
215
215
|
return "phone-plus";
|
|
216
216
|
case "task":
|
|
217
|
-
return "
|
|
217
|
+
return "tasks";
|
|
218
218
|
case "work-order":
|
|
219
219
|
return "hammer";
|
|
220
220
|
default:
|
|
221
221
|
return "history";
|
|
222
222
|
}
|
|
223
|
-
}), r =
|
|
223
|
+
}), r = Y(() => t.type === "history"), i = Y(() => t.type === "task");
|
|
224
224
|
return {
|
|
225
225
|
props: t,
|
|
226
226
|
isHistory: r,
|
|
227
|
+
isLineIcon: i,
|
|
227
228
|
typeIcon: n,
|
|
228
229
|
handleClick: () => {
|
|
229
230
|
e("click");
|
|
@@ -235,7 +236,7 @@ const Wge = /* @__PURE__ */ ze(OL, [["render", PL], ["__scopeId", "data-v-c7b434
|
|
|
235
236
|
class: "activity-item__time"
|
|
236
237
|
}, jL = { key: 0 };
|
|
237
238
|
function HL(t, e, n, r, i, s) {
|
|
238
|
-
const o =
|
|
239
|
+
const o = Q("q-icon");
|
|
239
240
|
return w(), k("div", {
|
|
240
241
|
role: t.isClickable ? "button" : void 0,
|
|
241
242
|
class: B(["activity-item", {
|
|
@@ -264,10 +265,10 @@ function HL(t, e, n, r, i, s) {
|
|
|
264
265
|
}, [
|
|
265
266
|
R(o, {
|
|
266
267
|
icon: t.typeIcon,
|
|
267
|
-
type: "fill",
|
|
268
|
+
type: t.isLineIcon ? "line" : "fill",
|
|
268
269
|
size: "sm",
|
|
269
270
|
color: "white"
|
|
270
|
-
}, null, 8, ["icon"])
|
|
271
|
+
}, null, 8, ["icon", "type"])
|
|
271
272
|
], 2),
|
|
272
273
|
D("div", _L, [
|
|
273
274
|
t.props.wrapTime ? (w(), k("div", {
|
|
@@ -291,7 +292,7 @@ function HL(t, e, n, r, i, s) {
|
|
|
291
292
|
]))
|
|
292
293
|
], 10, RL);
|
|
293
294
|
}
|
|
294
|
-
const zL = /* @__PURE__ */ ze(LL, [["render", HL], ["__scopeId", "data-v-
|
|
295
|
+
const zL = /* @__PURE__ */ ze(LL, [["render", HL], ["__scopeId", "data-v-5b11e7f3"]]), UL = Oe({
|
|
295
296
|
name: "QAvatar",
|
|
296
297
|
props: {
|
|
297
298
|
/** Determines the size of the avatar (currently, only 'sm' is supported) */
|
|
@@ -382,9 +383,9 @@ const Gge = /* @__PURE__ */ ze(KL, [["render", QL], ["__scopeId", "data-v-8edf76
|
|
|
382
383
|
}
|
|
383
384
|
},
|
|
384
385
|
setup(t, e) {
|
|
385
|
-
const n =
|
|
386
|
+
const n = Y(function() {
|
|
386
387
|
return t.color ? `bg-${t.color}` : "";
|
|
387
|
-
}), r =
|
|
388
|
+
}), r = Y(function() {
|
|
388
389
|
return !!e.slots.icon;
|
|
389
390
|
});
|
|
390
391
|
return {
|
|
@@ -1416,7 +1417,7 @@ let fA = iA.RenderStrategy, s_ = Oe({ props: { as: { type: [Object, String], def
|
|
|
1416
1417
|
s.value &= ~Qo.Closing, e("afterLeave");
|
|
1417
1418
|
}
|
|
1418
1419
|
if (!n_() && YR()) return () => jn(hA, { ...t, onBeforeEnter: o, onAfterEnter: a, onBeforeLeave: l, onAfterLeave: u }, r);
|
|
1419
|
-
let c = _(null), d =
|
|
1420
|
+
let c = _(null), d = Y(() => t.unmount ? F0.Unmount : F0.Hidden);
|
|
1420
1421
|
i({ el: c, $el: c });
|
|
1421
1422
|
let { show: f, appear: h } = r_(), { register: m, unregister: y } = i_(), g = _(f.value ? "visible" : "hidden"), v = { value: !0 }, b = UR(), S = { value: !1 }, C = dA(() => {
|
|
1422
1423
|
!S.value && g.value !== "hidden" && (g.value = "hidden", y(b), u());
|
|
@@ -1454,18 +1455,18 @@ let fA = iA.RenderStrategy, s_ = Oe({ props: { as: { type: [Object, String], def
|
|
|
1454
1455
|
lt([f], (re, ee, ne) => {
|
|
1455
1456
|
U(ne), v.value = !1;
|
|
1456
1457
|
}, { immediate: !0 });
|
|
1457
|
-
}), Na(Qy, C), QR(
|
|
1458
|
+
}), Na(Qy, C), QR(Y(() => zd(g.value, { visible: Qo.Open, hidden: Qo.Closed }) | s.value)), () => {
|
|
1458
1459
|
let { appear: re, show: ee, enter: ne, enterFrom: ie, enterTo: K, entered: de, leave: V, leaveFrom: le, leaveTo: Se, ...me } = t, H = { ref: c }, G = { ...me, ...h.value && f.value && GR.isServer ? { class: B([n.class, me.class, ...E, ...M]) } : {} };
|
|
1459
1460
|
return sA({ theirProps: G, ourProps: H, slot: {}, slots: r, attrs: n, features: fA, visible: g.value === "visible", name: "TransitionChild" });
|
|
1460
1461
|
};
|
|
1461
1462
|
} }), o_ = s_, hA = Oe({ inheritAttrs: !1, props: { as: { type: [Object, String], default: "div" }, show: { type: [Boolean], default: null }, unmount: { type: [Boolean], default: !0 }, appear: { type: [Boolean], default: !1 }, enter: { type: [String], default: "" }, enterFrom: { type: [String], default: "" }, enterTo: { type: [String], default: "" }, entered: { type: [String], default: "" }, leave: { type: [String], default: "" }, leaveFrom: { type: [String], default: "" }, leaveTo: { type: [String], default: "" } }, emits: { beforeEnter: () => !0, afterEnter: () => !0, beforeLeave: () => !0, afterLeave: () => !0 }, setup(t, { emit: e, attrs: n, slots: r }) {
|
|
1462
|
-
let i = cA(), s =
|
|
1463
|
+
let i = cA(), s = Y(() => t.show === null && i !== null ? (i.value & Qo.Open) === Qo.Open : t.show);
|
|
1463
1464
|
On(() => {
|
|
1464
1465
|
if (![!0, !1].includes(s.value)) throw new Error('A <Transition /> is used but it is missing a `:show="true | false"` prop.');
|
|
1465
1466
|
});
|
|
1466
1467
|
let o = _(s.value ? "visible" : "hidden"), a = dA(() => {
|
|
1467
1468
|
o.value = "hidden";
|
|
1468
|
-
}), l = _(!0), u = { show: s, appear:
|
|
1469
|
+
}), l = _(!0), u = { show: s, appear: Y(() => t.appear || !l.value) };
|
|
1469
1470
|
return St(() => {
|
|
1470
1471
|
On(() => {
|
|
1471
1472
|
l.value = !1, s.value ? o.value = "visible" : v5(a) || (o.value = "hidden");
|
|
@@ -1632,7 +1633,7 @@ function m_() {
|
|
|
1632
1633
|
}
|
|
1633
1634
|
function b5(t) {
|
|
1634
1635
|
const e = m_();
|
|
1635
|
-
return
|
|
1636
|
+
return Y(() => (e.value, !!t()));
|
|
1636
1637
|
}
|
|
1637
1638
|
function _1(t, e = {}) {
|
|
1638
1639
|
const { window: n = $o } = e, r = b5(() => n && "matchMedia" in n && typeof n.matchMedia == "function");
|
|
@@ -1671,7 +1672,7 @@ function vA(t, e = {}) {
|
|
|
1671
1672
|
}), c), {});
|
|
1672
1673
|
function u() {
|
|
1673
1674
|
const c = Object.keys(t).map((d) => [d, o(d)]);
|
|
1674
|
-
return
|
|
1675
|
+
return Y(() => c.filter(([, d]) => d.value).map(([d]) => d));
|
|
1675
1676
|
}
|
|
1676
1677
|
return Object.assign(l, {
|
|
1677
1678
|
greaterOrEqual: o,
|
|
@@ -1703,7 +1704,7 @@ function vA(t, e = {}) {
|
|
|
1703
1704
|
current: u,
|
|
1704
1705
|
active() {
|
|
1705
1706
|
const c = u();
|
|
1706
|
-
return
|
|
1707
|
+
return Y(() => c.value.length === 0 ? "" : c.value.at(-1));
|
|
1707
1708
|
}
|
|
1708
1709
|
});
|
|
1709
1710
|
}
|
|
@@ -1712,7 +1713,7 @@ function y_(t, e, n = {}) {
|
|
|
1712
1713
|
let s;
|
|
1713
1714
|
const o = b5(() => r && "MutationObserver" in r), a = () => {
|
|
1714
1715
|
s && (s.disconnect(), s = void 0);
|
|
1715
|
-
}, l =
|
|
1716
|
+
}, l = Y(() => {
|
|
1716
1717
|
const f = pr(t), h = (Array.isArray(f) ? f : [f]).map(Dr).filter(Jy);
|
|
1717
1718
|
return new Set(h);
|
|
1718
1719
|
}), u = lt(
|
|
@@ -1769,7 +1770,7 @@ function b_(t, e, n = {}) {
|
|
|
1769
1770
|
let s;
|
|
1770
1771
|
const o = b5(() => r && "ResizeObserver" in r), a = () => {
|
|
1771
1772
|
s && (s.disconnect(), s = void 0);
|
|
1772
|
-
}, l =
|
|
1773
|
+
}, l = Y(() => Array.isArray(t) ? t.map((d) => Dr(d)) : [Dr(t)]), u = lt(
|
|
1773
1774
|
l,
|
|
1774
1775
|
(d) => {
|
|
1775
1776
|
if (a(), o.value && r) {
|
|
@@ -1826,7 +1827,7 @@ function C_(t, e, n = {}) {
|
|
|
1826
1827
|
threshold: s = 0.1,
|
|
1827
1828
|
window: o = $o,
|
|
1828
1829
|
immediate: a = !0
|
|
1829
|
-
} = n, l = b5(() => o && "IntersectionObserver" in o), u =
|
|
1830
|
+
} = n, l = b5(() => o && "IntersectionObserver" in o), u = Y(() => {
|
|
1830
1831
|
const m = pr(t);
|
|
1831
1832
|
return (Array.isArray(m) ? m : [m]).map(Dr).filter(Jy);
|
|
1832
1833
|
});
|
|
@@ -1886,14 +1887,14 @@ function N3(t, e = {}) {
|
|
|
1886
1887
|
onError: c = (A) => {
|
|
1887
1888
|
console.error(A);
|
|
1888
1889
|
}
|
|
1889
|
-
} = e, d = _(0), f = _(0), h =
|
|
1890
|
+
} = e, d = _(0), f = _(0), h = Y({
|
|
1890
1891
|
get() {
|
|
1891
1892
|
return d.value;
|
|
1892
1893
|
},
|
|
1893
1894
|
set(A) {
|
|
1894
1895
|
y(A, void 0);
|
|
1895
1896
|
}
|
|
1896
|
-
}), m =
|
|
1897
|
+
}), m = Y({
|
|
1897
1898
|
get() {
|
|
1898
1899
|
return f.value;
|
|
1899
1900
|
},
|
|
@@ -1982,7 +1983,7 @@ function S_(t, e = {}) {
|
|
|
1982
1983
|
onSwipeStart: s,
|
|
1983
1984
|
passive: o = !0,
|
|
1984
1985
|
window: a = $o
|
|
1985
|
-
} = e, l = Fi({ x: 0, y: 0 }), u = Fi({ x: 0, y: 0 }), c =
|
|
1986
|
+
} = e, l = Fi({ x: 0, y: 0 }), u = Fi({ x: 0, y: 0 }), c = Y(() => l.x - u.x), d = Y(() => l.y - u.y), { max: f, abs: h } = Math, m = Y(() => f(h(c.value), h(d.value)) >= n), y = _(!1), g = Y(() => m.value ? h(c.value) > h(d.value) ? c.value > 0 ? "left" : "right" : d.value > 0 ? "up" : "down" : "none"), v = (I) => [I.touches[0].clientX, I.touches[0].clientY], b = (I, F) => {
|
|
1986
1987
|
l.x = I, l.y = F;
|
|
1987
1988
|
}, S = (I, F) => {
|
|
1988
1989
|
u.x = I, u.y = F;
|
|
@@ -2037,14 +2038,14 @@ function t9(t = {}) {
|
|
|
2037
2038
|
x: _(0),
|
|
2038
2039
|
y: _(0)
|
|
2039
2040
|
};
|
|
2040
|
-
const r = _(e.scrollX), i = _(e.scrollY), s =
|
|
2041
|
+
const r = _(e.scrollX), i = _(e.scrollY), s = Y({
|
|
2041
2042
|
get() {
|
|
2042
2043
|
return r.value;
|
|
2043
2044
|
},
|
|
2044
2045
|
set(a) {
|
|
2045
2046
|
scrollTo({ left: a, behavior: n });
|
|
2046
2047
|
}
|
|
2047
|
-
}), o =
|
|
2048
|
+
}), o = Y({
|
|
2048
2049
|
get() {
|
|
2049
2050
|
return i.value;
|
|
2050
2051
|
},
|
|
@@ -3074,10 +3075,10 @@ function oF(t, e = {}, { motionValues: n, push: r, stop: i } = S5()) {
|
|
|
3074
3075
|
}
|
|
3075
3076
|
const d9 = typeof window < "u", aF = () => d9 && window.onpointerdown === null, lF = () => d9 && window.ontouchstart === null, uF = () => d9 && window.onmousedown === null;
|
|
3076
3077
|
function cF({ target: t, state: e, variants: n, apply: r }) {
|
|
3077
|
-
const i = ji(n), s = _(!1), o = _(!1), a = _(!1), l =
|
|
3078
|
+
const i = ji(n), s = _(!1), o = _(!1), a = _(!1), l = Y(() => {
|
|
3078
3079
|
let c = [];
|
|
3079
3080
|
return i && (i.hovered && (c = [...c, ...Object.keys(i.hovered)]), i.tapped && (c = [...c, ...Object.keys(i.tapped)]), i.focused && (c = [...c, ...Object.keys(i.focused)])), c;
|
|
3080
|
-
}), u =
|
|
3081
|
+
}), u = Y(() => {
|
|
3081
3082
|
const c = {};
|
|
3082
3083
|
Object.assign(c, e.value), s.value && i.hovered && Object.assign(c, i.hovered), o.value && i.tapped && Object.assign(c, i.tapped), a.value && i.focused && Object.assign(c, i.focused);
|
|
3083
3084
|
for (const d in c)
|
|
@@ -3329,7 +3330,7 @@ function k5(t, e) {
|
|
|
3329
3330
|
function TF(t = {}) {
|
|
3330
3331
|
const e = ji(t), n = _();
|
|
3331
3332
|
return {
|
|
3332
|
-
state:
|
|
3333
|
+
state: Y(() => {
|
|
3333
3334
|
if (n.value)
|
|
3334
3335
|
return e[n.value];
|
|
3335
3336
|
}),
|
|
@@ -3736,10 +3737,10 @@ Oe({
|
|
|
3736
3737
|
const e = qy(), n = Fi({});
|
|
3737
3738
|
if (!t.is && !e.default)
|
|
3738
3739
|
return () => jn("div", {});
|
|
3739
|
-
const r =
|
|
3740
|
+
const r = Y(() => {
|
|
3740
3741
|
let l;
|
|
3741
3742
|
return t.preset && (l = iB[t.preset]), l;
|
|
3742
|
-
}), i =
|
|
3743
|
+
}), i = Y(() => ({
|
|
3743
3744
|
initial: t.initial,
|
|
3744
3745
|
enter: t.enter,
|
|
3745
3746
|
leave: t.leave,
|
|
@@ -3748,18 +3749,18 @@ Oe({
|
|
|
3748
3749
|
hovered: t.hovered,
|
|
3749
3750
|
tapped: t.tapped,
|
|
3750
3751
|
focused: t.focused
|
|
3751
|
-
})), s =
|
|
3752
|
+
})), s = Y(() => {
|
|
3752
3753
|
const l = {
|
|
3753
3754
|
...i.value,
|
|
3754
3755
|
...r.value || {},
|
|
3755
3756
|
...t.variants || {}
|
|
3756
3757
|
};
|
|
3757
3758
|
return t.delay && (l.enter.transition = { ...l.enter.transition }, l.enter.transition.delay = parseInt(t.delay)), l;
|
|
3758
|
-
}), o =
|
|
3759
|
+
}), o = Y(() => {
|
|
3759
3760
|
if (!t.is)
|
|
3760
3761
|
return;
|
|
3761
3762
|
let l = t.is;
|
|
3762
|
-
return typeof o.value == "string" && !$$(l) && (l =
|
|
3763
|
+
return typeof o.value == "string" && !$$(l) && (l = Q(l)), l;
|
|
3763
3764
|
});
|
|
3764
3765
|
if (((a = process == null ? void 0 : process.env) == null ? void 0 : a.NODE_ENV) === "development" || process != null && process.dev) {
|
|
3765
3766
|
const l = (u) => {
|
|
@@ -3846,12 +3847,12 @@ const sB = Oe({
|
|
|
3846
3847
|
ease: "linear",
|
|
3847
3848
|
duration: 0,
|
|
3848
3849
|
delay: 0
|
|
3849
|
-
}, d =
|
|
3850
|
+
}, d = Y(function() {
|
|
3850
3851
|
return t.backgroundColor ? `bg-${t.backgroundColor}` : "";
|
|
3851
|
-
}), f =
|
|
3852
|
+
}), f = Y({
|
|
3852
3853
|
get: () => t.modelValue,
|
|
3853
3854
|
set: (M) => e("update:model-value", M)
|
|
3854
|
-
}), h =
|
|
3855
|
+
}), h = Y(() => t.modelValue ? "z-[201]" : "-z-40"), m = Y(() => !!(n != null && n.headerAction)), y = () => {
|
|
3855
3856
|
s.value = window.innerHeight;
|
|
3856
3857
|
}, g = () => {
|
|
3857
3858
|
t.allowOnClickOutside && b({ clickOutside: !0 });
|
|
@@ -3934,7 +3935,7 @@ const sB = Oe({
|
|
|
3934
3935
|
class: "w-auto"
|
|
3935
3936
|
}, cB = { class: "w-10 text-right" };
|
|
3936
3937
|
function dB(t, e, n, r, i, s) {
|
|
3937
|
-
const o =
|
|
3938
|
+
const o = Q("q-icon");
|
|
3938
3939
|
return w(), k("div", {
|
|
3939
3940
|
class: "sheet-container",
|
|
3940
3941
|
value: t.modelValue
|
|
@@ -4045,7 +4046,7 @@ const iT = /* @__PURE__ */ ze(sB, [["render", dB], ["__scopeId", "data-v-91ada41
|
|
|
4045
4046
|
}
|
|
4046
4047
|
},
|
|
4047
4048
|
setup(t) {
|
|
4048
|
-
const e =
|
|
4049
|
+
const e = Y(() => [
|
|
4049
4050
|
Su + t.size,
|
|
4050
4051
|
{
|
|
4051
4052
|
[Su + t.status]: t.status
|
|
@@ -4057,7 +4058,7 @@ const iT = /* @__PURE__ */ ze(sB, [["render", dB], ["__scopeId", "data-v-91ada41
|
|
|
4057
4058
|
{
|
|
4058
4059
|
[Su + "outline"]: !!t.hasOutline || t.status === "secondary"
|
|
4059
4060
|
}
|
|
4060
|
-
]), n =
|
|
4061
|
+
]), n = Y(() => ({
|
|
4061
4062
|
disabled: !!t.disabled,
|
|
4062
4063
|
"aria-disabled": !!t.disabled
|
|
4063
4064
|
}));
|
|
@@ -6570,7 +6571,7 @@ const WV = Oe({
|
|
|
6570
6571
|
emits: ["update:modelValue"],
|
|
6571
6572
|
setup(t, { emit: e }) {
|
|
6572
6573
|
return {
|
|
6573
|
-
selected:
|
|
6574
|
+
selected: Y({
|
|
6574
6575
|
get: () => t.modelValue,
|
|
6575
6576
|
set: (r) => {
|
|
6576
6577
|
const i = !r || Array.isArray(r) && r.length === 0 ? t.modelValue : r;
|
|
@@ -6581,7 +6582,7 @@ const WV = Oe({
|
|
|
6581
6582
|
}
|
|
6582
6583
|
}), GV = { class: "button-group flex justify-content-center" }, KV = { class: "flex align-items-center" }, YV = { class: "option-label" };
|
|
6583
6584
|
function QV(t, e, n, r, i, s) {
|
|
6584
|
-
const o =
|
|
6585
|
+
const o = Q("q-icon"), a = Q("SelectButton");
|
|
6585
6586
|
return w(), k("div", GV, [
|
|
6586
6587
|
R(a, {
|
|
6587
6588
|
modelValue: t.selected,
|
|
@@ -6653,10 +6654,10 @@ const Yge = /* @__PURE__ */ ze(WV, [["render", QV]]), XV = "data:image/svg+xml,%
|
|
|
6653
6654
|
}
|
|
6654
6655
|
},
|
|
6655
6656
|
setup(t) {
|
|
6656
|
-
const e =
|
|
6657
|
+
const e = Y(() => {
|
|
6657
6658
|
const r = t.type === "outline" || t.type === "fill" ? "-" + t.type : "";
|
|
6658
6659
|
return `${XV}#icon-${t.icon}${r}`;
|
|
6659
|
-
}), n =
|
|
6660
|
+
}), n = Y(() => t.customSize && (!!t.width || !!t.height));
|
|
6660
6661
|
return {
|
|
6661
6662
|
iconPath: e,
|
|
6662
6663
|
customizedSize: n
|
|
@@ -6787,7 +6788,7 @@ const a1 = /* @__PURE__ */ ze(JV, [["render", tj], ["__scopeId", "data-v-6713346
|
|
|
6787
6788
|
class: "checkbox-label"
|
|
6788
6789
|
};
|
|
6789
6790
|
function oj(t, e, n, r, i, s) {
|
|
6790
|
-
const o =
|
|
6791
|
+
const o = Q("q-icon");
|
|
6791
6792
|
return w(), k("div", rj, [
|
|
6792
6793
|
D("label", {
|
|
6793
6794
|
class: B([
|
|
@@ -13549,17 +13550,17 @@ function xU(t = {}, e) {
|
|
|
13549
13550
|
h.value
|
|
13550
13551
|
];
|
|
13551
13552
|
}
|
|
13552
|
-
const U =
|
|
13553
|
+
const U = Y({
|
|
13553
13554
|
get: () => u.value,
|
|
13554
13555
|
set: (ce) => {
|
|
13555
13556
|
u.value = ce, I.locale = u.value;
|
|
13556
13557
|
}
|
|
13557
|
-
}), re =
|
|
13558
|
+
}), re = Y({
|
|
13558
13559
|
get: () => c.value,
|
|
13559
13560
|
set: (ce) => {
|
|
13560
13561
|
c.value = ce, I.fallbackLocale = c.value, B1(I, u.value, ce);
|
|
13561
13562
|
}
|
|
13562
|
-
}), ee =
|
|
13563
|
+
}), ee = Y(() => d.value), ne = /* @__PURE__ */ Y(() => f.value), ie = /* @__PURE__ */ Y(() => h.value);
|
|
13563
13564
|
function K() {
|
|
13564
13565
|
return Kt(C) ? C : null;
|
|
13565
13566
|
}
|
|
@@ -15442,7 +15443,7 @@ function HZ(t, e) {
|
|
|
15442
15443
|
}
|
|
15443
15444
|
var zZ = ["id", "aria-label", "aria-roledescription"], UZ = ["aria-label"], ZZ = ["aria-live"];
|
|
15444
15445
|
function qZ(t, e, n, r, i, s) {
|
|
15445
|
-
var o =
|
|
15446
|
+
var o = Q("GalleriaItem"), a = Q("GalleriaThumbnails"), l = wr("ripple");
|
|
15446
15447
|
return t.$attrs.value && t.$attrs.value.length > 0 ? (w(), k("div", P({
|
|
15447
15448
|
key: 0,
|
|
15448
15449
|
id: i.id,
|
|
@@ -15576,7 +15577,7 @@ var ZE = {
|
|
|
15576
15577
|
}
|
|
15577
15578
|
}, WZ = ["aria-modal"];
|
|
15578
15579
|
function GZ(t, e, n, r, i, s) {
|
|
15579
|
-
var o =
|
|
15580
|
+
var o = Q("GalleriaContent"), a = Q("Portal"), l = wr("focustrap");
|
|
15580
15581
|
return t.fullScreen ? (w(), q(a, {
|
|
15581
15582
|
key: 0
|
|
15582
15583
|
}, {
|
|
@@ -27218,7 +27219,7 @@ const aG = Oe({
|
|
|
27218
27219
|
}
|
|
27219
27220
|
}), lG = ["id"];
|
|
27220
27221
|
function uG(t, e, n, r, i, s) {
|
|
27221
|
-
const o =
|
|
27222
|
+
const o = Q("q-icon");
|
|
27222
27223
|
return w(), k("div", {
|
|
27223
27224
|
id: t.id,
|
|
27224
27225
|
ref: "currentModal",
|
|
@@ -27274,7 +27275,7 @@ const B9 = /* @__PURE__ */ ze(aG, [["render", uG], ["__scopeId", "data-v-ebc1534
|
|
|
27274
27275
|
setup(t, { emit: e }) {
|
|
27275
27276
|
return {
|
|
27276
27277
|
// Computed
|
|
27277
|
-
toggleModal:
|
|
27278
|
+
toggleModal: Y({
|
|
27278
27279
|
get: () => t.toggle,
|
|
27279
27280
|
set: (r) => {
|
|
27280
27281
|
e("update:toggle", r);
|
|
@@ -27286,7 +27287,7 @@ const B9 = /* @__PURE__ */ ze(aG, [["render", uG], ["__scopeId", "data-v-ebc1534
|
|
|
27286
27287
|
}
|
|
27287
27288
|
}), dG = { class: "flex flex-col gap-2 text-center" }, fG = { class: "text-lg font-bold text-inkwell-30 leading-6" }, hG = { class: "text-inkwell-0 mb-2 md:mb-6" };
|
|
27288
27289
|
function pG(t, e, n, r, i, s) {
|
|
27289
|
-
const o =
|
|
27290
|
+
const o = Q("q-icon"), a = Q("q-button"), l = Q("q-modal-content"), u = Q("q-modal");
|
|
27290
27291
|
return w(), q(bn, {
|
|
27291
27292
|
name: t.mq.md ? "fade" : "slide-up"
|
|
27292
27293
|
}, {
|
|
@@ -27425,7 +27426,7 @@ const gG = Oe({
|
|
|
27425
27426
|
class: "pdf-pages"
|
|
27426
27427
|
};
|
|
27427
27428
|
function wG(t, e, n, r, i, s) {
|
|
27428
|
-
const o =
|
|
27429
|
+
const o = Q("q-error-modal");
|
|
27429
27430
|
return w(), k(ge, null, [
|
|
27430
27431
|
D("div", yG, [
|
|
27431
27432
|
t.loadingMeta ? (w(), k("div", vG, [
|
|
@@ -27509,7 +27510,7 @@ const CG = /* @__PURE__ */ ze(gG, [["render", wG], ["__scopeId", "data-v-da5da0f
|
|
|
27509
27510
|
},
|
|
27510
27511
|
setup(t) {
|
|
27511
27512
|
return {
|
|
27512
|
-
isVisible:
|
|
27513
|
+
isVisible: Y(() => t.controlled ? t.visible : !1)
|
|
27513
27514
|
};
|
|
27514
27515
|
}
|
|
27515
27516
|
}), kG = ["aria-describedby"], MG = ["id"];
|
|
@@ -27618,12 +27619,12 @@ const Fp = /* @__PURE__ */ ze(SG, [["render", AG], ["__scopeId", "data-v-fac0204
|
|
|
27618
27619
|
tif: "tiff",
|
|
27619
27620
|
xls: "xsl",
|
|
27620
27621
|
xlsx: "xsl"
|
|
27621
|
-
}, a = _(null), l =
|
|
27622
|
+
}, a = _(null), l = Y(() => {
|
|
27622
27623
|
var H;
|
|
27623
27624
|
return (H = a.value) == null ? void 0 : H.offsetWidth;
|
|
27624
|
-
}), u = _(null), c = _([]), d = _(!1), f = _(null), h = _("0"), m = _(1), y = _(xn.md ? 1 : 0.9), g = _(0), v = _(null), b = _(), S = _(!1), C = _(!1), E =
|
|
27625
|
+
}), u = _(null), c = _([]), d = _(!1), f = _(null), h = _("0"), m = _(1), y = _(xn.md ? 1 : 0.9), g = _(0), v = _(null), b = _(), S = _(!1), C = _(!1), E = Y(() => [
|
|
27625
27626
|
`z-[${t.baseZIndex + 1}]`
|
|
27626
|
-
]), M =
|
|
27627
|
+
]), M = Y(() => t.files.map((H) => {
|
|
27627
27628
|
const G = H instanceof File, te = G ? H.name : H.original.url, J = le(
|
|
27628
27629
|
te.toLowerCase()
|
|
27629
27630
|
).replace(/^\./, ""), pe = J ? s.has(J) ? J : o[J] || "txt" : "txt";
|
|
@@ -27646,14 +27647,14 @@ const Fp = /* @__PURE__ */ ze(SG, [["render", AG], ["__scopeId", "data-v-fac0204
|
|
|
27646
27647
|
icon: pe,
|
|
27647
27648
|
isImage: H.mimetype.startsWith("image") && !H.mimetype.includes("tif")
|
|
27648
27649
|
};
|
|
27649
|
-
})), A =
|
|
27650
|
+
})), A = Y(() => M.value.filter((H) => H.type.startsWith("image") && !H.type.includes("tif"))), N = Y(() => [
|
|
27650
27651
|
"rounded-lg relative mx-auto object-cover grow-1 max-h-[74vh]",
|
|
27651
27652
|
{ animated: !de }
|
|
27652
|
-
]), I =
|
|
27653
|
+
]), I = Y(() => [
|
|
27653
27654
|
"flex items-center gap-2",
|
|
27654
27655
|
t.wrap ? "flex-wrap" : "flex-nowrap overflow-x-auto shrink-0",
|
|
27655
27656
|
{ "flex-nowrap overflow-x-auto pt-2 -mt-2 pr-2": r.value !== "desktop" }
|
|
27656
|
-
]), F =
|
|
27657
|
+
]), F = Y(() => [{
|
|
27657
27658
|
text: n("HC_DELETE_ATTACHMENT"),
|
|
27658
27659
|
classes: "!text-red-20",
|
|
27659
27660
|
event: ie
|
|
@@ -27768,7 +27769,7 @@ const Fp = /* @__PURE__ */ ze(SG, [["render", AG], ["__scopeId", "data-v-fac0204
|
|
|
27768
27769
|
class: "bg-black"
|
|
27769
27770
|
}, VG = ["src"], jG = { class: "flex items-center flex-col p-12" }, HG = ["src"], zG = ["data", "type"], UG = { class: "flex items-center flex-col p-12" };
|
|
27770
27771
|
function ZG(t, e, n, r, i, s) {
|
|
27771
|
-
const o =
|
|
27772
|
+
const o = Q("q-icon"), a = Q("Galleria"), l = Q("q-badge"), u = Q("q-tooltip"), c = Q("q-menu"), d = Q("q-pdf-viewer"), f = Q("q-bottom-sheet");
|
|
27772
27773
|
return w(), k("div", {
|
|
27773
27774
|
id: t.id,
|
|
27774
27775
|
class: "q-image-gallery flex",
|
|
@@ -28056,7 +28057,7 @@ const UO = /* @__PURE__ */ ze(TG, [["render", ZG], ["__scopeId", "data-v-424dfd5
|
|
|
28056
28057
|
setup(t, { emit: e }) {
|
|
28057
28058
|
return {
|
|
28058
28059
|
// Computed
|
|
28059
|
-
toggleModal:
|
|
28060
|
+
toggleModal: Y({
|
|
28060
28061
|
get: () => t.toggle,
|
|
28061
28062
|
set: (r) => {
|
|
28062
28063
|
e("update:toggle", r);
|
|
@@ -28074,7 +28075,7 @@ const UO = /* @__PURE__ */ ze(TG, [["render", ZG], ["__scopeId", "data-v-424dfd5
|
|
|
28074
28075
|
class: "flex flex-col gap-2 text-center"
|
|
28075
28076
|
}, QG = { class: "text-[1.25rem] font-bold text-center text-inkwell-30" }, XG = { class: "text-sm text-center text-inkwell-0 mb-2" }, JG = { class: "flex flex-col items-center justify-center gap-3 md:gap-2" };
|
|
28076
28077
|
function eK(t, e, n, r, i, s) {
|
|
28077
|
-
const o =
|
|
28078
|
+
const o = Q("q-button"), a = Q("q-modal-content"), l = Q("q-modal");
|
|
28078
28079
|
return w(), q(bn, {
|
|
28079
28080
|
name: t.mq.md ? "fade" : "slide-up"
|
|
28080
28081
|
}, {
|
|
@@ -28196,7 +28197,7 @@ const tK = /* @__PURE__ */ ze(qG, [["render", eK], ["__scopeId", "data-v-db0b606
|
|
|
28196
28197
|
},
|
|
28197
28198
|
emits: ["update:modelValue"],
|
|
28198
28199
|
setup(t, { emit: e }) {
|
|
28199
|
-
const n = _(!1), r = _(""), i = _(null), s =
|
|
28200
|
+
const n = _(!1), r = _(""), i = _(null), s = Y(() => n.value === !0 && t.reposition === !0 ? a(t.align) : t.align), o = Y(() => n.value === !0 && t.reposition === !0 ? l(t.position) : t.position), a = (g) => {
|
|
28200
28201
|
if (!i.value || u(i.value.children[1])) return g;
|
|
28201
28202
|
const v = i.value.children[0].getBoundingClientRect(), b = i.value.children[1].getBoundingClientRect();
|
|
28202
28203
|
if (g === "left" || g === "right" || g === "center") {
|
|
@@ -55181,12 +55182,12 @@ const gre = Oe({
|
|
|
55181
55182
|
select: (t) => !0
|
|
55182
55183
|
},
|
|
55183
55184
|
setup() {
|
|
55184
|
-
const { state: t, updateEmoji: e, updateSelect: n } = fi("store"), r = _(null), i =
|
|
55185
|
+
const { state: t, updateEmoji: e, updateSelect: n } = fi("store"), r = _(null), i = Y(() => mre(
|
|
55185
55186
|
t.emojis,
|
|
55186
55187
|
t.search,
|
|
55187
55188
|
t.skinTone,
|
|
55188
55189
|
t.options.disabledGroups
|
|
55189
|
-
)), s = Ba(), o =
|
|
55190
|
+
)), s = Ba(), o = Y(() => !t.options.hideGroupNames), a = Y(() => !t.options.disableStickyGroupNames), l = GM(t.options.groupNames), u = t.orderedGroupKeys;
|
|
55190
55191
|
t.options.additionalGroups && Object.keys(t.options.additionalGroups).map((m) => {
|
|
55191
55192
|
t.options.groupNames[m] ? l[m] = t.options.groupNames[m] : l[m] = aN(m);
|
|
55192
55193
|
});
|
|
@@ -55278,9 +55279,9 @@ var Are = /* @__PURE__ */ qp(gre, [["render", Mre]]), Tre = "data:image/svg+xml;
|
|
|
55278
55279
|
const Lre = Oe({
|
|
55279
55280
|
name: "Header",
|
|
55280
55281
|
setup(t) {
|
|
55281
|
-
const { state: e, updateSearch: n, updateActiveGroup: r } = fi("store"), i =
|
|
55282
|
+
const { state: e, updateSearch: n, updateActiveGroup: r } = fi("store"), i = Y(() => !e.options.hideSearch), s = Y(() => !e.options.hideGroupIcons), o = JSON.parse(JSON.stringify(e.orderedGroupKeys)), a = Y(
|
|
55282
55283
|
() => e.options.staticTexts.placeholder || ""
|
|
55283
|
-
), l =
|
|
55284
|
+
), l = Y({
|
|
55284
55285
|
get: () => e.search,
|
|
55285
55286
|
set: (d) => n(d)
|
|
55286
55287
|
}), u = [
|
|
@@ -55366,9 +55367,9 @@ var Ure = /* @__PURE__ */ qp(Lre, [["render", zre]]);
|
|
|
55366
55367
|
const Zre = Oe({
|
|
55367
55368
|
name: "Header",
|
|
55368
55369
|
setup() {
|
|
55369
|
-
const { state: t, updateSkinTone: e } = fi("store"), n = _(!1), r = _(!1), i =
|
|
55370
|
+
const { state: t, updateSkinTone: e } = fi("store"), n = _(!1), r = _(!1), i = Y(() => t.skinTone), s = Y(
|
|
55370
55371
|
() => t.options.staticTexts.skinTone || "Skin tone"
|
|
55371
|
-
), o =
|
|
55372
|
+
), o = Y(() => !t.options.disableSkinTones), a = oN() ? "is-mac" : "", l = Y(() => ({
|
|
55372
55373
|
...t.emoji,
|
|
55373
55374
|
src: ZD + "/" + t.emoji[Af] + ".png"
|
|
55374
55375
|
}));
|
|
@@ -55488,7 +55489,7 @@ const eie = Oe({
|
|
|
55488
55489
|
setup(t, { emit: e }) {
|
|
55489
55490
|
const n = _(), r = _(), i = _(), s = _(!1), o = _(t.text), a = t.type === "input" || t.type === "textarea";
|
|
55490
55491
|
let l = -1;
|
|
55491
|
-
const { state: u } = fi("store"), c =
|
|
55492
|
+
const { state: u } = fi("store"), c = Y(() => u.options.colorTheme);
|
|
55492
55493
|
function d(g) {
|
|
55493
55494
|
if (a) {
|
|
55494
55495
|
const v = u.options.mode;
|
|
@@ -55548,7 +55549,7 @@ const eie = Oe({
|
|
|
55548
55549
|
class: "v3-input-emoji-picker"
|
|
55549
55550
|
}, nie = { class: "v3-input-picker-root" }, rie = ["value"], iie = ["value"], sie = ["src"];
|
|
55550
55551
|
function oie(t, e, n, r, i, s) {
|
|
55551
|
-
const o =
|
|
55552
|
+
const o = Q("Header"), a = Q("Body"), l = Q("Footer");
|
|
55552
55553
|
return t.isInputType ? (w(), k("div", tie, [
|
|
55553
55554
|
D("div", nie, [
|
|
55554
55555
|
t.type === "input" ? (w(), k("input", {
|
|
@@ -55715,7 +55716,7 @@ const lie = Oe({
|
|
|
55715
55716
|
}
|
|
55716
55717
|
});
|
|
55717
55718
|
function uie(t, e, n, r, i, s) {
|
|
55718
|
-
const o =
|
|
55719
|
+
const o = Q("picker-root");
|
|
55719
55720
|
return w(), q(o, {
|
|
55720
55721
|
type: t.type,
|
|
55721
55722
|
text: t.input,
|
|
@@ -58452,7 +58453,7 @@ var Use = {
|
|
|
58452
58453
|
}
|
|
58453
58454
|
}, Wse = ["aria-label", "disabled", "data-p-severity"];
|
|
58454
58455
|
function Gse(t, e, n, r, i, s) {
|
|
58455
|
-
var o =
|
|
58456
|
+
var o = Q("SpinnerIcon"), a = Q("Badge"), l = wr("ripple");
|
|
58456
58457
|
return Ct((w(), k("button", P({
|
|
58457
58458
|
class: t.cx("root"),
|
|
58458
58459
|
type: "button",
|
|
@@ -58761,7 +58762,7 @@ function woe(t, e) {
|
|
|
58761
58762
|
}
|
|
58762
58763
|
var Coe = ["aria-label"];
|
|
58763
58764
|
function Soe(t, e, n, r, i, s) {
|
|
58764
|
-
var o =
|
|
58765
|
+
var o = Q("TimesIcon"), a = wr("ripple");
|
|
58765
58766
|
return w(), q(bn, P({
|
|
58766
58767
|
name: "p-message",
|
|
58767
58768
|
appear: ""
|
|
@@ -59070,7 +59071,7 @@ var Ioe = {
|
|
|
59070
59071
|
}
|
|
59071
59072
|
}, Doe = ["alt", "src", "width"];
|
|
59072
59073
|
function Noe(t, e, n, r, i, s) {
|
|
59073
|
-
var o =
|
|
59074
|
+
var o = Q("FileUploadBadge"), a = Q("TimesIcon"), l = Q("FileUploadButton");
|
|
59074
59075
|
return w(!0), k(ge, null, Ie(n.files, function(u, c) {
|
|
59075
59076
|
return w(), k("div", P({
|
|
59076
59077
|
key: u.name + u.type + u.size,
|
|
@@ -59445,7 +59446,7 @@ var TN = {
|
|
|
59445
59446
|
}
|
|
59446
59447
|
}, _oe = ["multiple", "accept", "disabled"], $oe = ["accept", "disabled", "multiple"];
|
|
59447
59448
|
function Foe(t, e, n, r, i, s) {
|
|
59448
|
-
var o =
|
|
59449
|
+
var o = Q("FileUploadButton"), a = Q("FileUploadProgressBar"), l = Q("FileUploadMessage"), u = Q("FileContent"), c = wr("ripple");
|
|
59449
59450
|
return s.isAdvanced ? (w(), k("div", P({
|
|
59450
59451
|
key: 0,
|
|
59451
59452
|
class: t.cx("root")
|
|
@@ -59683,7 +59684,7 @@ const Boe = Oe({
|
|
|
59683
59684
|
}
|
|
59684
59685
|
},
|
|
59685
59686
|
setup(t, { slots: e }) {
|
|
59686
|
-
const n = fi("size"), r =
|
|
59687
|
+
const n = fi("size"), r = Y(() => !!e.header), i = Y(() => !!e.footer);
|
|
59687
59688
|
return { modalSize: n, hasHeader: r, hasFooter: i };
|
|
59688
59689
|
}
|
|
59689
59690
|
}), Voe = {
|
|
@@ -59784,7 +59785,7 @@ const zoe = /* @__PURE__ */ ze(Boe, [["render", Hoe], ["__scopeId", "data-v-01ed
|
|
|
59784
59785
|
},
|
|
59785
59786
|
emits: ["file-list", "upload-error", "uploading"],
|
|
59786
59787
|
setup(t, { emit: e }) {
|
|
59787
|
-
const n = _(null), r = _(), i = _([]), s = _([]), o =
|
|
59788
|
+
const n = _(null), r = _(), i = _([]), s = _([]), o = Y(() => t.files), a = Y(() => t.filesAllowed.replace(/,/g, ", ")), l = () => {
|
|
59788
59789
|
n.value && n.value.clear();
|
|
59789
59790
|
}, u = () => {
|
|
59790
59791
|
i.value = [], s.value = [];
|
|
@@ -59871,7 +59872,7 @@ const zoe = /* @__PURE__ */ ze(Boe, [["render", Hoe], ["__scopeId", "data-v-01ed
|
|
|
59871
59872
|
class: "mb-2 md:mb-6 sm-down:text-sm text-center text-inkwell-0 text-left"
|
|
59872
59873
|
};
|
|
59873
59874
|
function nae(t, e, n, r, i, s) {
|
|
59874
|
-
const o =
|
|
59875
|
+
const o = Q("q-icon"), a = Q("q-image-gallery"), l = Q("FileUpload", !0), u = Q("q-button"), c = Q("q-modal-content"), d = Q("q-modal");
|
|
59875
59876
|
return w(), k("div", Zoe, [
|
|
59876
59877
|
R(l, {
|
|
59877
59878
|
ref: "fileUpload",
|
|
@@ -60088,7 +60089,7 @@ const rae = /* @__PURE__ */ ze(Uoe, [["render", nae]]), iae = Oe({
|
|
|
60088
60089
|
},
|
|
60089
60090
|
emits: ["update:model-value", "update:attachments", "keyboard-open"],
|
|
60090
60091
|
setup(t, { emit: e }) {
|
|
60091
|
-
const n = _(), r = _(!1), i = _(""), s = _(), o = _(), a = _(!1), l = _(!1), u = _(!1), c = _([]), d = _(), f = _(), h = _(), m = _(!1), y = _(window.innerHeight), g =
|
|
60092
|
+
const n = _(), r = _(!1), i = _(""), s = _(), o = _(), a = _(!1), l = _(!1), u = _(!1), c = _([]), d = _(), f = _(), h = _(), m = _(!1), y = _(window.innerHeight), g = Y(() => ie.value.getAttributes("textStyle").color || "#121517"), v = Y(() => t.attachments), b = Y(() => t.isStacked || t.expands && (v.value.length > 0 || u.value || !ie.value.isEmpty) || l.value), C = vA(g_).greaterOrEqual("md"), E = () => {
|
|
60092
60093
|
const K = window.prompt("URL");
|
|
60093
60094
|
ie.value.chain().focus().extendMarkRange("link").setLink({ href: K || "" }).run();
|
|
60094
60095
|
}, M = (K) => {
|
|
@@ -60220,7 +60221,7 @@ const rae = /* @__PURE__ */ ze(Uoe, [["render", nae]]), iae = Oe({
|
|
|
60220
60221
|
class: "flex items-center items-center"
|
|
60221
60222
|
};
|
|
60222
60223
|
function cae(t, e, n, r, i, s) {
|
|
60223
|
-
const o =
|
|
60224
|
+
const o = Q("q-icon"), a = Q("editor-content"), l = Q("q-file-upload"), u = Q("emoji-picker");
|
|
60224
60225
|
return t.editor ? (w(), k("div", {
|
|
60225
60226
|
key: 0,
|
|
60226
60227
|
ref: "wysiwygRef",
|
|
@@ -60513,7 +60514,7 @@ const EN = /* @__PURE__ */ ze(iae, [["render", cae], ["__scopeId", "data-v-6c7a3
|
|
|
60513
60514
|
props: dae,
|
|
60514
60515
|
emits: ["update:model-value"],
|
|
60515
60516
|
setup(t) {
|
|
60516
|
-
const { t: e } = Zs(), n = [{ text: e("HC_CANCEL") }], r = _(null), i = _(!1), s = _(""), o = _(!1), a = _(!1), l = _(!1), u = _(""), c = _(), d =
|
|
60517
|
+
const { t: e } = Zs(), n = [{ text: e("HC_CANCEL") }], r = _(null), i = _(!1), s = _(""), o = _(!1), a = _(!1), l = _(!1), u = _(""), c = _(), d = Y(() => {
|
|
60517
60518
|
const $ = [];
|
|
60518
60519
|
return t.canCopyLink && $.push({
|
|
60519
60520
|
text: e("HC_COPY_LINK"),
|
|
@@ -60534,9 +60535,9 @@ const EN = /* @__PURE__ */ ze(iae, [["render", cae], ["__scopeId", "data-v-6c7a3
|
|
|
60534
60535
|
classes: "!text-red-20",
|
|
60535
60536
|
event: S
|
|
60536
60537
|
}), $;
|
|
60537
|
-
}), f =
|
|
60538
|
+
}), f = Y(() => t.user.firstName + " " + t.user.lastName.substring(0, 1)), h = Y(() => ct.fromISO(t.dateUtc).toLocaleString(
|
|
60538
60539
|
ct.DATETIME_MED
|
|
60539
|
-
)), m =
|
|
60540
|
+
)), m = Y(() => t.user.name.split(" ").map(($) => $.trim().charAt(0)).join("").toUpperCase()), y = () => {
|
|
60540
60541
|
i.value = !1, s.value = "";
|
|
60541
60542
|
}, g = () => {
|
|
60542
60543
|
navigator.clipboard.writeText(
|
|
@@ -60620,7 +60621,7 @@ const EN = /* @__PURE__ */ ze(iae, [["render", cae], ["__scopeId", "data-v-6c7a3
|
|
|
60620
60621
|
}, kae = { class: "h-8 flex items-center" }, Mae = { key: 2 };
|
|
60621
60622
|
function Aae(t, e, n, r, i, s) {
|
|
60622
60623
|
var m, y, g;
|
|
60623
|
-
const o =
|
|
60624
|
+
const o = Q("q-avatar"), a = Q("q-icon"), l = Q("q-popover"), u = Q("q-menu"), c = Q("q-button"), d = Q("q-wysiwyg"), f = Q("q-image-gallery"), h = Q("q-warning-modal");
|
|
60624
60625
|
return t.comment || t.attachments.length ? (w(), k("div", {
|
|
60625
60626
|
key: 0,
|
|
60626
60627
|
id: `comment-${t.id}`,
|
|
@@ -60899,7 +60900,7 @@ const Tae = /* @__PURE__ */ ze(fae, [["render", Aae], ["__scopeId", "data-v-d410
|
|
|
60899
60900
|
class: "no-comments text-center mb-6 mt-4"
|
|
60900
60901
|
}, Dae = { class: "text-md mb-2 leading-6 font-bold text-inkwell-30" }, Nae = { class: "text-sm text-inkwell-0" };
|
|
60901
60902
|
function Pae(t, e, n, r, i, s) {
|
|
60902
|
-
const o =
|
|
60903
|
+
const o = Q("q-comment"), a = Q("q-icon"), l = Q("q-button"), u = Q("q-wysiwyg");
|
|
60903
60904
|
return w(), k("div", Iae, [
|
|
60904
60905
|
t.comments && t.comments.length ? (w(), k("div", Oae, [
|
|
60905
60906
|
(w(!0), k(ge, null, Ie(t.comments, (c, d) => (w(), q(o, P({ ref_for: !0 }, c, {
|
|
@@ -60990,7 +60991,7 @@ const Lae = /* @__PURE__ */ ze(Eae, [["render", Pae], ["__scopeId", "data-v-70f9
|
|
|
60990
60991
|
}
|
|
60991
60992
|
}), _ae = { class: "counter flex items-center" }, $ae = { class: "grow text-center" };
|
|
60992
60993
|
function Fae(t, e, n, r, i, s) {
|
|
60993
|
-
const o =
|
|
60994
|
+
const o = Q("q-icon");
|
|
60994
60995
|
return w(), k("div", _ae, [
|
|
60995
60996
|
R(o, P({
|
|
60996
60997
|
icon: "minus-circle",
|
|
@@ -61085,10 +61086,10 @@ const o5e = /* @__PURE__ */ ze(Rae, [["render", Fae]]), Rk = "eye", _k = "eye-sl
|
|
|
61085
61086
|
},
|
|
61086
61087
|
emits: ["update:model-value", "update-type"],
|
|
61087
61088
|
setup(t, { emit: e }) {
|
|
61088
|
-
const n = qy(), r = _(null), i = _(!1), s = _(t.type === "password" ? Rk : ""), o = _(!t.expands), a =
|
|
61089
|
+
const n = qy(), r = _(null), i = _(!1), s = _(t.type === "password" ? Rk : ""), o = _(!t.expands), a = Y(() => !!t.disabled), l = Y(() => {
|
|
61089
61090
|
const g = s.value;
|
|
61090
61091
|
return !!t.modelValue && !a.value && (d.value && t.iconPosition === "left" || !g);
|
|
61091
|
-
}), u =
|
|
61092
|
+
}), u = Y(() => [
|
|
61092
61093
|
"control flex items-center",
|
|
61093
61094
|
{ focused: !!i.value },
|
|
61094
61095
|
{ disabled: a.value },
|
|
@@ -61099,12 +61100,12 @@ const o5e = /* @__PURE__ */ ze(Rae, [["render", Fae]]), Rk = "eye", _k = "eye-sl
|
|
|
61099
61100
|
t.controlClass,
|
|
61100
61101
|
{ ["size-" + t.size]: t.size },
|
|
61101
61102
|
{ collapsed: !o.value }
|
|
61102
|
-
]), c =
|
|
61103
|
+
]), c = Y(() => [
|
|
61103
61104
|
"input",
|
|
61104
61105
|
{ [t.status]: t.status && !a.value },
|
|
61105
61106
|
{ [t.inputClass]: !!t.inputClass },
|
|
61106
61107
|
{ populated: !!t.modelValue }
|
|
61107
|
-
]), d =
|
|
61108
|
+
]), d = Y(() => !!(n != null && n.default)), f = () => {
|
|
61108
61109
|
var b;
|
|
61109
61110
|
const g = t.type === "password", v = t.type === "text" && s.value === _k;
|
|
61110
61111
|
(g || v) && m(), t.expands && r.value && !o.value && (o.value = !o.value, i.value = o.value, (b = r.value.querySelector("input")) == null || b.focus());
|
|
@@ -61142,7 +61143,7 @@ const o5e = /* @__PURE__ */ ze(Rae, [["render", Fae]]), Rk = "eye", _k = "eye-sl
|
|
|
61142
61143
|
}
|
|
61143
61144
|
}), Vae = ["id", "type", "disabled", "autocomplete", "maxlength", "value", "placeholder"];
|
|
61144
61145
|
function jae(t, e, n, r, i, s) {
|
|
61145
|
-
const o =
|
|
61146
|
+
const o = Q("q-icon");
|
|
61146
61147
|
return w(), k("div", {
|
|
61147
61148
|
ref: "currentInput",
|
|
61148
61149
|
class: B(t.rootClasses)
|
|
@@ -61333,7 +61334,7 @@ const Hae = /* @__PURE__ */ ze(Bae, [["render", jae], ["__scopeId", "data-v-f19b
|
|
|
61333
61334
|
setup(t, { emit: e }) {
|
|
61334
61335
|
const n = e9((d) => {
|
|
61335
61336
|
e("update:search", d);
|
|
61336
|
-
}, t.searchDelay), r = O1(), i = _(0), s = _(!1), o = _(!1), a =
|
|
61337
|
+
}, t.searchDelay), r = O1(), i = _(0), s = _(!1), o = _(!1), a = Y(() => {
|
|
61337
61338
|
let d = 0;
|
|
61338
61339
|
return t.filters.forEach((f) => {
|
|
61339
61340
|
(typeof f.selected == "string" && f.selected || typeof f.selected != "string" && f.selected.length) && d++;
|
|
@@ -61387,7 +61388,7 @@ const Hae = /* @__PURE__ */ ze(Bae, [["render", jae], ["__scopeId", "data-v-f19b
|
|
|
61387
61388
|
};
|
|
61388
61389
|
function r0e(t, e, n, r, i, s) {
|
|
61389
61390
|
var f;
|
|
61390
|
-
const o =
|
|
61391
|
+
const o = Q("q-icon"), a = Q("q-input"), l = Q("q-badge"), u = Q("q-tooltip"), c = Q("q-popover"), d = Q("q-bottom-sheet");
|
|
61391
61392
|
return w(), k("div", {
|
|
61392
61393
|
id: t.id,
|
|
61393
61394
|
class: "data-filter flex items-center p-4 bg-white"
|
|
@@ -61623,7 +61624,7 @@ const i0e = /* @__PURE__ */ ze(zae, [["render", r0e], ["__scopeId", "data-v-2b49
|
|
|
61623
61624
|
ease: "linear",
|
|
61624
61625
|
duration: 0,
|
|
61625
61626
|
delay: 0
|
|
61626
|
-
}, m = _(null), y = _(1), g = _(null), v = _(window.innerHeight), { motionProperties: b } = k5(m), { push: S } = S5(), C =
|
|
61627
|
+
}, m = _(null), y = _(1), g = _(null), v = _(window.innerHeight), { motionProperties: b } = k5(m), { push: S } = S5(), C = Y(() => n.value === "desktop"), E = Y(() => y.value * t.itemsPerPage - 1), M = Y(() => r.value <= 0 ? 70 : r.value > 70 ? 0 : 70 - r.value), A = Y(() => {
|
|
61627
61628
|
var ee;
|
|
61628
61629
|
return Math.ceil(((ee = t.modelValue) == null ? void 0 : ee.length) / t.itemsPerPage) || 1;
|
|
61629
61630
|
}), N = (ee) => {
|
|
@@ -61901,7 +61902,7 @@ const IN = /* @__PURE__ */ ze(C0e, [["render", M0e], ["__scopeId", "data-v-b1f22
|
|
|
61901
61902
|
}
|
|
61902
61903
|
}), T0e = ["id"], E0e = ["id"];
|
|
61903
61904
|
function I0e(t, e, n, r, i, s) {
|
|
61904
|
-
const o =
|
|
61905
|
+
const o = Q("q-table-cell");
|
|
61905
61906
|
return w(), k("thead", {
|
|
61906
61907
|
id: `${t.id ? t.id + "-" : ""}thead`
|
|
61907
61908
|
}, [
|
|
@@ -62076,7 +62077,7 @@ const O0e = /* @__PURE__ */ ze(A0e, [["render", I0e], ["__scopeId", "data-v-f327
|
|
|
62076
62077
|
top: h,
|
|
62077
62078
|
width: m,
|
|
62078
62079
|
height: y
|
|
62079
|
-
} = w_(s), g = _(0), v = _(0), b = _(0), S = _(window.innerHeight), C = _(0), E = _(!1), M = _(1), A = _([]), N = _(!1), I = _(0), F =
|
|
62080
|
+
} = w_(s), g = _(0), v = _(0), b = _(0), S = _(window.innerHeight), C = _(0), E = _(!1), M = _(1), A = _([]), N = _(!1), I = _(0), F = Y(() => n.value === "desktop"), $ = Y(() => M.value * t.itemsPerPage - 1), U = Y(() => t.isFixed && d.value >= b.value), re = Y(() => ee.value > 0), ee = Y(() => s.value ? l.value - m.value : 0), ne = Y(() => (!F.value || E.value) && u.value > 0 && t.modelValue.length && !t.loading), ie = Y(() => (!F.value || E.value) && u.value < ee.value && t.modelValue.length && !t.loading), K = Y(() => {
|
|
62080
62081
|
const Ce = [], be = {};
|
|
62081
62082
|
let Re = 0;
|
|
62082
62083
|
return t.columns.forEach((Ze) => {
|
|
@@ -62087,7 +62088,7 @@ const O0e = /* @__PURE__ */ ze(A0e, [["render", I0e], ["__scopeId", "data-v-f327
|
|
|
62087
62088
|
shimmer: Re % 2 ? "bg-gray-10" : "bg-gray-30"
|
|
62088
62089
|
}), Re++;
|
|
62089
62090
|
}), Ce;
|
|
62090
|
-
}), de =
|
|
62091
|
+
}), de = Y(() => {
|
|
62091
62092
|
var Ce;
|
|
62092
62093
|
return Math.ceil(((Ce = t.modelValue) == null ? void 0 : Ce.length) / t.itemsPerPage) || 1;
|
|
62093
62094
|
}), V = () => {
|
|
@@ -62218,7 +62219,7 @@ const O0e = /* @__PURE__ */ ze(A0e, [["render", I0e], ["__scopeId", "data-v-f327
|
|
|
62218
62219
|
}, Z0e = ["src"], q0e = { class: "font-bold text-inkwell-0 text-base" };
|
|
62219
62220
|
function W0e(t, e, n, r, i, s) {
|
|
62220
62221
|
var c, d, f;
|
|
62221
|
-
const o =
|
|
62222
|
+
const o = Q("q-checkbox"), a = Q("q-data-table-head"), l = Q("q-data-table-cell"), u = Q("q-icon");
|
|
62222
62223
|
return w(), k("div", P({
|
|
62223
62224
|
id: t.id,
|
|
62224
62225
|
class: [
|
|
@@ -63011,7 +63012,7 @@ function qv() {
|
|
|
63011
63012
|
return fi(UN, g5(Oy()));
|
|
63012
63013
|
}
|
|
63013
63014
|
function Ale(t) {
|
|
63014
|
-
const e =
|
|
63015
|
+
const e = Y(() => z0(t.value) ? zN(Oy(), t.value) : Oy(t.value));
|
|
63015
63016
|
return Na(UN, e), e;
|
|
63016
63017
|
}
|
|
63017
63018
|
function Tle(t) {
|
|
@@ -63263,7 +63264,7 @@ function e2e(t, {
|
|
|
63263
63264
|
clearable: !0,
|
|
63264
63265
|
range: !1,
|
|
63265
63266
|
multiple: !1
|
|
63266
|
-
}), r = Hr(), i = _(null), s =
|
|
63267
|
+
}), r = Hr(), i = _(null), s = Y(() => n.separator || (n.range ? " ~ " : ",")), o = (h) => n.range ? jl(h) : n.multiple ? Yle(h) : _a(h), a = (h) => Array.isArray(h) ? h.some((m) => n.disabledDate(m)) : n.disabledDate(h), l = Y(() => i.value !== null ? i.value : typeof n.renderInputText == "function" ? n.renderInputText(n.value) : o(n.value) ? Array.isArray(n.value) ? n.value.map((h) => n.formatDate(h)).join(s.value) : n.formatDate(n.value) : ""), u = (h) => {
|
|
63267
63268
|
var m;
|
|
63268
63269
|
h && h.stopPropagation(), n.onChange(n.range ? [null, null] : null), (m = n.onClear) == null || m.call(n);
|
|
63269
63270
|
}, c = () => {
|
|
@@ -63333,7 +63334,7 @@ function r2e(t, {
|
|
|
63333
63334
|
confirmText: "OK"
|
|
63334
63335
|
});
|
|
63335
63336
|
Tle(r.prefixClass), Ele(((n = r.formatter) == null ? void 0 : n.getWeek) || Vv);
|
|
63336
|
-
const i = Ale(EL(t, "lang")), s = _(), o = () => s.value, a = _(!1), l =
|
|
63337
|
+
const i = Ale(EL(t, "lang")), s = _(), o = () => s.value, a = _(!1), l = Y(() => !r.disabled && (typeof r.open == "boolean" ? r.open : a.value)), u = () => {
|
|
63337
63338
|
var M, A;
|
|
63338
63339
|
r.disabled || l.value || (a.value = !0, (M = r["onUpdate:open"]) == null || M.call(r, !0), (A = r.onOpen) == null || A.call(r));
|
|
63339
63340
|
}, c = () => {
|
|
@@ -63373,7 +63374,7 @@ function r2e(t, {
|
|
|
63373
63374
|
default:
|
|
63374
63375
|
return d(M, r.valueType);
|
|
63375
63376
|
}
|
|
63376
|
-
}, y =
|
|
63377
|
+
}, y = Y(() => {
|
|
63377
63378
|
const M = r.value;
|
|
63378
63379
|
return r.range ? (Array.isArray(M) ? M.slice(0, 2) : [null, null]).map(h) : r.multiple ? (Array.isArray(M) ? M : []).map(h) : h(M);
|
|
63379
63380
|
}), g = (M, A, N = !0) => {
|
|
@@ -63687,7 +63688,7 @@ function c2e(t) {
|
|
|
63687
63688
|
disabledDate: () => !1,
|
|
63688
63689
|
getClasses: () => [],
|
|
63689
63690
|
titleFormat: "YYYY-MM-DD"
|
|
63690
|
-
}), n =
|
|
63691
|
+
}), n = Y(() => (Array.isArray(e.value) ? e.value : [e.value]).filter(_a).map((b) => e.type === "year" ? Qle(b) : e.type === "month" ? Zk(b) : nl(b))), r = _(/* @__PURE__ */ new Date());
|
|
63691
63692
|
On(() => {
|
|
63692
63693
|
let v = e.calendar;
|
|
63693
63694
|
if (!_a(v)) {
|
|
@@ -63783,7 +63784,7 @@ function d2e(t) {
|
|
|
63783
63784
|
const e = Ha(t, {
|
|
63784
63785
|
defaultValue: /* @__PURE__ */ new Date(),
|
|
63785
63786
|
type: "date"
|
|
63786
|
-
}), n = Hr(), r =
|
|
63787
|
+
}), n = Hr(), r = Y(() => {
|
|
63787
63788
|
let g = Array.isArray(e.defaultValue) ? e.defaultValue : [e.defaultValue, e.defaultValue];
|
|
63788
63789
|
return g = g.map((v) => nl(v)), jl(g) ? g : [/* @__PURE__ */ new Date(), /* @__PURE__ */ new Date()].map((v) => nl(v));
|
|
63789
63790
|
}), i = _([/* @__PURE__ */ new Date(NaN), /* @__PURE__ */ new Date(NaN)]);
|
|
@@ -63794,7 +63795,7 @@ function d2e(t) {
|
|
|
63794
63795
|
var b;
|
|
63795
63796
|
const [S, C] = i.value;
|
|
63796
63797
|
_a(S) && !_a(C) ? (S.getTime() > g.getTime() ? i.value = [g, S] : i.value = [S, g], (b = e["onUpdate:value"]) == null || b.call(e, i.value, v)) : i.value = [g, /* @__PURE__ */ new Date(NaN)];
|
|
63797
|
-
}, o = _([/* @__PURE__ */ new Date(), /* @__PURE__ */ new Date()]), a =
|
|
63798
|
+
}, o = _([/* @__PURE__ */ new Date(), /* @__PURE__ */ new Date()]), a = Y(() => jl(e.calendar) ? e.calendar : o.value), l = Y(() => e.type === "year" ? 10 * 12 : e.type === "month" ? 1 * 12 : 1), u = (g, v) => {
|
|
63798
63799
|
var b;
|
|
63799
63800
|
const S = Jle(g[0], g[1]), C = l.value - S;
|
|
63800
63801
|
if (C > 0) {
|
|
@@ -64174,7 +64175,7 @@ function YN(t) {
|
|
|
64174
64175
|
var s;
|
|
64175
64176
|
e.value = !0, (s = t.onShowTimePanelChange) == null || s.call(t, !0);
|
|
64176
64177
|
};
|
|
64177
|
-
return { timeVisible:
|
|
64178
|
+
return { timeVisible: Y(() => typeof t.showTimePanel == "boolean" ? t.showTimePanel : e.value), openTimePanel: r, closeTimePanel: n };
|
|
64178
64179
|
}
|
|
64179
64180
|
function b2e(t) {
|
|
64180
64181
|
const e = Ha(t, {
|
|
@@ -64469,7 +64470,7 @@ const R2e = Oe({
|
|
|
64469
64470
|
},
|
|
64470
64471
|
emits: ["update:modelValue"],
|
|
64471
64472
|
setup(t) {
|
|
64472
|
-
const e = _("bottom"), n = _(), r = _(!1), i = _(t.modelValue || ""), s =
|
|
64473
|
+
const e = _("bottom"), n = _(), r = _(!1), i = _(t.modelValue || ""), s = Y(() => t.disabledAfterToday ? o : t.disabledBeforeToday ? a : t.disabledDate), o = (u) => u > /* @__PURE__ */ new Date(), a = (u) => {
|
|
64473
64474
|
const c = /* @__PURE__ */ new Date();
|
|
64474
64475
|
return c.setHours(0, 0, 0, 0), u < c;
|
|
64475
64476
|
}, l = () => {
|
|
@@ -64494,7 +64495,7 @@ const R2e = Oe({
|
|
|
64494
64495
|
}
|
|
64495
64496
|
}), _2e = { class: "q-date-picker" };
|
|
64496
64497
|
function $2e(t, e, n, r, i, s) {
|
|
64497
|
-
const o =
|
|
64498
|
+
const o = Q("q-icon"), a = Q("date-picker", !0);
|
|
64498
64499
|
return w(), k("div", _2e, [
|
|
64499
64500
|
R(a, {
|
|
64500
64501
|
id: t.id,
|
|
@@ -64558,7 +64559,7 @@ const u5e = /* @__PURE__ */ ze(R2e, [["render", $2e], ["__scopeId", "data-v-70cc
|
|
|
64558
64559
|
emits: ["update:modelValue"],
|
|
64559
64560
|
setup(t, { slots: e }) {
|
|
64560
64561
|
return {
|
|
64561
|
-
hasSlotContent:
|
|
64562
|
+
hasSlotContent: Y(() => !!e.default)
|
|
64562
64563
|
};
|
|
64563
64564
|
}
|
|
64564
64565
|
}), B2e = { class: "divider relative flex items-center w-full" };
|
|
@@ -64624,7 +64625,7 @@ const d5e = /* @__PURE__ */ ze(j2e, [["render", z2e], ["__scopeId", "data-v-ca1e
|
|
|
64624
64625
|
class: "required"
|
|
64625
64626
|
};
|
|
64626
64627
|
function K2e(t, e, n, r, i, s) {
|
|
64627
|
-
const o =
|
|
64628
|
+
const o = Q("q-icon");
|
|
64628
64629
|
return w(), k("div", Z2e, [
|
|
64629
64630
|
D("label", { for: t.labelFor }, [
|
|
64630
64631
|
D("div", W2e, [
|
|
@@ -64676,6 +64677,10 @@ const f5e = /* @__PURE__ */ ze(U2e, [["render", K2e], ["__scopeId", "data-v-f2d3
|
|
|
64676
64677
|
type: Number,
|
|
64677
64678
|
default: 4
|
|
64678
64679
|
},
|
|
64680
|
+
disableInternalFiltering: {
|
|
64681
|
+
type: Boolean,
|
|
64682
|
+
default: !1
|
|
64683
|
+
},
|
|
64679
64684
|
/** Exclude certain values from the grid */
|
|
64680
64685
|
exclude: {
|
|
64681
64686
|
type: Array,
|
|
@@ -64748,10 +64753,12 @@ const f5e = /* @__PURE__ */ ze(U2e, [["render", K2e], ["__scopeId", "data-v-f2d3
|
|
|
64748
64753
|
"update:searchValue"
|
|
64749
64754
|
],
|
|
64750
64755
|
setup(t, { emit: e }) {
|
|
64751
|
-
const { t: n } = Zs(), r = _(""), i =
|
|
64756
|
+
const { t: n } = Zs(), r = _(""), i = Y({
|
|
64752
64757
|
get: () => t.searchValue,
|
|
64753
64758
|
set: (g) => e("update:searchValue", g)
|
|
64754
|
-
}), s =
|
|
64759
|
+
}), s = Y(() => {
|
|
64760
|
+
if (t.disableInternalFiltering)
|
|
64761
|
+
return t.gridData;
|
|
64755
64762
|
const g = t.filters, v = Nf(
|
|
64756
64763
|
t.gridData,
|
|
64757
64764
|
r.value || i.value,
|
|
@@ -64761,7 +64768,7 @@ const f5e = /* @__PURE__ */ ze(U2e, [["render", K2e], ["__scopeId", "data-v-f2d3
|
|
|
64761
64768
|
t.exclude
|
|
64762
64769
|
);
|
|
64763
64770
|
return e("filters-updated", v), v;
|
|
64764
|
-
}), o =
|
|
64771
|
+
}), o = Y(() => (g, v, b) => {
|
|
64765
64772
|
const S = [
|
|
64766
64773
|
"cursor-pointer",
|
|
64767
64774
|
"truncate",
|
|
@@ -64792,7 +64799,7 @@ const f5e = /* @__PURE__ */ ze(U2e, [["render", K2e], ["__scopeId", "data-v-f2d3
|
|
|
64792
64799
|
);
|
|
64793
64800
|
}
|
|
64794
64801
|
return t.loading && S.push("bg-gray-10", "animate-shimmer"), b && S.push("no-scale"), S;
|
|
64795
|
-
}), a =
|
|
64802
|
+
}), a = Y(() => t.columns ? `grid-cols-${t.columns}` : ""), l = Y(() => s.value.length % t.columns === 0), u = Y(() => t.noResultMessage || n("HC_NO_RESULTS_FOUND")), c = Y(() => {
|
|
64796
64803
|
const g = [], v = {};
|
|
64797
64804
|
return [...Array(t.skeletonRows * t.columns)].forEach(() => {
|
|
64798
64805
|
g.push(v);
|
|
@@ -64860,7 +64867,7 @@ const f5e = /* @__PURE__ */ ze(U2e, [["render", K2e], ["__scopeId", "data-v-f2d3
|
|
|
64860
64867
|
class: "grid-filter-actions"
|
|
64861
64868
|
}, nue = { class: "relative flex" }, rue = ["id"], iue = ["id", "onClick"], sue = ["id"];
|
|
64862
64869
|
function oue(t, e, n, r, i, s) {
|
|
64863
|
-
const o =
|
|
64870
|
+
const o = Q("q-icon"), a = Q("q-input"), l = Q("q-badge");
|
|
64864
64871
|
return w(), k("div", {
|
|
64865
64872
|
id: `${t.id ? t.id + "-" : ""}grid-container`,
|
|
64866
64873
|
class: B([
|
|
@@ -65065,9 +65072,9 @@ const h5e = /* @__PURE__ */ ze(Y2e, [["render", oue], ["__scopeId", "data-v-cc83
|
|
|
65065
65072
|
},
|
|
65066
65073
|
emits: ["update:state"],
|
|
65067
65074
|
setup(t, { emit: e }) {
|
|
65068
|
-
const { deviceType: n } = O1(), r = _(t.currentState), i = _(t.options.length === 1), s =
|
|
65075
|
+
const { deviceType: n } = O1(), r = _(t.currentState), i = _(t.options.length === 1), s = Y(() => t.disabled || !!t.loading), o = Y(() => t.options.find(
|
|
65069
65076
|
(u) => u.state === r.value
|
|
65070
|
-
)), a =
|
|
65077
|
+
)), a = Y(() => (n.value !== "desktop" || !xn.md) && !t.showCompletedState), l = (u, c) => {
|
|
65071
65078
|
r.value = r.value === c ? "default" : c, e("update:state", { state: r.value, event: u });
|
|
65072
65079
|
};
|
|
65073
65080
|
return lt(
|
|
@@ -65097,7 +65104,7 @@ const h5e = /* @__PURE__ */ ze(Y2e, [["render", oue], ["__scopeId", "data-v-cc83
|
|
|
65097
65104
|
class: "status-text text-white"
|
|
65098
65105
|
};
|
|
65099
65106
|
function fue(t, e, n, r, i, s) {
|
|
65100
|
-
const o =
|
|
65107
|
+
const o = Q("q-icon"), a = Q("q-button"), l = Q("q-tooltip");
|
|
65101
65108
|
return w(), k(ge, null, [
|
|
65102
65109
|
t.isColorKey ? (w(), k("div", lue, [
|
|
65103
65110
|
(w(!0), k(ge, null, Ie(t.options, (u) => (w(), k("div", {
|
|
@@ -65327,7 +65334,7 @@ const p5e = /* @__PURE__ */ ze(aue, [["render", fue], ["__scopeId", "data-v-8aa5
|
|
|
65327
65334
|
ease: "linear",
|
|
65328
65335
|
duration: 0,
|
|
65329
65336
|
delay: 0
|
|
65330
|
-
}, f = _(null), h = _(null), m = _(""), { motionProperties: y } = k5(f), { push: g } = S5(), v =
|
|
65337
|
+
}, f = _(null), h = _(null), m = _(""), { motionProperties: y } = k5(f), { push: g } = S5(), v = Y(() => {
|
|
65331
65338
|
const I = Nf(
|
|
65332
65339
|
t.data,
|
|
65333
65340
|
b.value,
|
|
@@ -65337,7 +65344,7 @@ const p5e = /* @__PURE__ */ ze(aue, [["render", fue], ["__scopeId", "data-v-8aa5
|
|
|
65337
65344
|
t.exclude
|
|
65338
65345
|
);
|
|
65339
65346
|
return e("filters-updated", I), I;
|
|
65340
|
-
}), b =
|
|
65347
|
+
}), b = Y(() => t.searchText || m.value), S = Y(() => n.value <= 0 ? 70 : n.value > 70 ? 0 : 70 - n.value), C = (I) => {
|
|
65341
65348
|
!I.dragging && n.value <= 24 && n.value >= 0 && (r.value = 0), !I.dragging && n.value > 24 && n.value < 70 && (r.value = 70), !(n.value > 0) && (a.value ? M(I) : E(I));
|
|
65342
65349
|
};
|
|
65343
65350
|
u.value && Gy(C, {
|
|
@@ -65413,7 +65420,7 @@ const p5e = /* @__PURE__ */ ze(aue, [["render", fue], ["__scopeId", "data-v-8aa5
|
|
|
65413
65420
|
class: "list-wrapper"
|
|
65414
65421
|
}, Eue = { class: "list loading-list" };
|
|
65415
65422
|
function Iue(t, e, n, r, i, s) {
|
|
65416
|
-
const o =
|
|
65423
|
+
const o = Q("q-icon"), a = Q("q-input"), l = Q("q-badge");
|
|
65417
65424
|
return w(), k("div", {
|
|
65418
65425
|
id: t.id,
|
|
65419
65426
|
class: "q-list"
|
|
@@ -65690,7 +65697,7 @@ const y5e = /* @__PURE__ */ ze(Nue, [["render", Lue], ["__scopeId", "data-v-bddb
|
|
|
65690
65697
|
}
|
|
65691
65698
|
},
|
|
65692
65699
|
setup(t) {
|
|
65693
|
-
const e =
|
|
65700
|
+
const e = Y(() => t.bgClass || "bg-green-20"), n = Y(() => {
|
|
65694
65701
|
const r = ["q-progress-bar relative flex items-center", t.customClass, t.heightClass];
|
|
65695
65702
|
return t.hasContainerBackground ? [...r, "bg-gray-00"] : r;
|
|
65696
65703
|
});
|
|
@@ -65757,7 +65764,7 @@ const Fue = /* @__PURE__ */ ze(Rue, [["render", $ue], ["__scopeId", "data-v-9c9a
|
|
|
65757
65764
|
}
|
|
65758
65765
|
}), Vue = ["id"], jue = ["id"], Hue = { class: "text-xs text-inkwell-30 mr-4" };
|
|
65759
65766
|
function zue(t, e, n, r, i, s) {
|
|
65760
|
-
const o =
|
|
65767
|
+
const o = Q("q-progress-bar");
|
|
65761
65768
|
return w(), k("div", {
|
|
65762
65769
|
id: t.id,
|
|
65763
65770
|
class: "flex flex-col gap-2 w-full"
|
|
@@ -65820,7 +65827,7 @@ const v5e = /* @__PURE__ */ ze(Bue, [["render", zue], ["__scopeId", "data-v-d73f
|
|
|
65820
65827
|
},
|
|
65821
65828
|
emits: ["update:model-value", "change"],
|
|
65822
65829
|
setup(t, { emit: e }) {
|
|
65823
|
-
const n =
|
|
65830
|
+
const n = Y(() => t.modelValue), r = (a) => {
|
|
65824
65831
|
const l = a.target;
|
|
65825
65832
|
if (l) {
|
|
65826
65833
|
const u = l.value, c = t.options.find(
|
|
@@ -67661,7 +67668,7 @@ const {
|
|
|
67661
67668
|
},
|
|
67662
67669
|
emits: ["update:modelValue"],
|
|
67663
67670
|
setup(t) {
|
|
67664
|
-
const e = _("bottom"), n = _(), r = _(!1), i = _(t.modelValue || ""), s =
|
|
67671
|
+
const e = _("bottom"), n = _(), r = _(!1), i = _(t.modelValue || ""), s = Y(() => t.disabledAfterToday ? o : t.disabledBeforeToday ? a : t.disabledDate), o = (u) => u > /* @__PURE__ */ new Date(), a = (u) => {
|
|
67665
67672
|
const c = /* @__PURE__ */ new Date();
|
|
67666
67673
|
return c.setHours(0, 0, 0, 0), u < c;
|
|
67667
67674
|
}, l = () => {
|
|
@@ -67864,12 +67871,12 @@ const {
|
|
|
67864
67871
|
notes: "",
|
|
67865
67872
|
person: null,
|
|
67866
67873
|
requestedBy: null
|
|
67867
|
-
}), le = _([]), Se =
|
|
67874
|
+
}), le = _([]), Se = Y(() => {
|
|
67868
67875
|
const j = o.value.toLowerCase();
|
|
67869
67876
|
return E.value.filter((fe) => fe.toLowerCase().match(j));
|
|
67870
|
-
}), me =
|
|
67877
|
+
}), me = Y(() => t.tickets.length ? !!t.tickets.find(
|
|
67871
67878
|
(fe) => fe.type === "callback"
|
|
67872
|
-
) : !1), H =
|
|
67879
|
+
) : !1), H = Y(() => {
|
|
67873
67880
|
let j = [];
|
|
67874
67881
|
return v.value[0] && v.value[0].options === void 0 ? v.value.forEach((fe) => {
|
|
67875
67882
|
j.push({
|
|
@@ -67877,7 +67884,7 @@ const {
|
|
|
67877
67884
|
label: fe.display_name
|
|
67878
67885
|
});
|
|
67879
67886
|
}) : j = v.value, j;
|
|
67880
|
-
}), G =
|
|
67887
|
+
}), G = Y(() => {
|
|
67881
67888
|
var j;
|
|
67882
67889
|
switch ((j = F.value) == null ? void 0 : j.id) {
|
|
67883
67890
|
case "request":
|
|
@@ -67886,7 +67893,7 @@ const {
|
|
|
67886
67893
|
default:
|
|
67887
67894
|
return null;
|
|
67888
67895
|
}
|
|
67889
|
-
}), te =
|
|
67896
|
+
}), te = Y(() => {
|
|
67890
67897
|
var j;
|
|
67891
67898
|
if (c.value)
|
|
67892
67899
|
switch ((j = F.value) == null ? void 0 : j.id) {
|
|
@@ -67898,7 +67905,7 @@ const {
|
|
|
67898
67905
|
return null;
|
|
67899
67906
|
}
|
|
67900
67907
|
return null;
|
|
67901
|
-
}), J =
|
|
67908
|
+
}), J = Y(() => {
|
|
67902
67909
|
var j;
|
|
67903
67910
|
switch ((j = F.value) == null ? void 0 : j.id) {
|
|
67904
67911
|
case "request":
|
|
@@ -67908,7 +67915,7 @@ const {
|
|
|
67908
67915
|
default:
|
|
67909
67916
|
return null;
|
|
67910
67917
|
}
|
|
67911
|
-
}), pe =
|
|
67918
|
+
}), pe = Y(() => {
|
|
67912
67919
|
let j = "";
|
|
67913
67920
|
if ($.value && $.value.reservations[0]) {
|
|
67914
67921
|
const fe = ct.fromISO(
|
|
@@ -67919,7 +67926,7 @@ const {
|
|
|
67919
67926
|
j += oe + " " + he, He !== Ys && (j += ", " + He), oe === Zr ? j += "-" + za : j += " - " + Zr + " " + za, j += ", " + Ys;
|
|
67920
67927
|
}
|
|
67921
67928
|
return j;
|
|
67922
|
-
}), Me =
|
|
67929
|
+
}), Me = Y(() => {
|
|
67923
67930
|
let j = re.value;
|
|
67924
67931
|
return $.value && ($.value.occupancy && (j = [
|
|
67925
67932
|
...j,
|
|
@@ -67928,7 +67935,7 @@ const {
|
|
|
67928
67935
|
...j,
|
|
67929
67936
|
$.value.cleaning.name.toLowerCase()
|
|
67930
67937
|
]), j = [...new Set(j)]), j;
|
|
67931
|
-
}), Ce =
|
|
67938
|
+
}), Ce = Y(() => {
|
|
67932
67939
|
var fe;
|
|
67933
67940
|
const j = (fe = F.value) == null ? void 0 : fe.id;
|
|
67934
67941
|
if (!j)
|
|
@@ -68476,7 +68483,7 @@ const {
|
|
|
68476
68483
|
class: "flex items-center mt-0.5"
|
|
68477
68484
|
}, Bde = { class: "text-xs text-inkwell-0" };
|
|
68478
68485
|
function Vde(t, e, n, r, i, s) {
|
|
68479
|
-
const o =
|
|
68486
|
+
const o = Q("q-icon"), a = Q("q-popover"), l = Q("q-tooltip"), u = Q("q-tag"), c = Q("q-divider"), d = Q("q-accordion"), f = Q("q-activity-item"), h = Q("q-input"), m = Q("q-button"), y = Q("q-comment-section"), g = Q("q-select"), v = Q("q-date-picker");
|
|
68480
68487
|
return t.showActionMenu || t.showComments || t.showGuestDetails && t.roomDetailsData.reservations && t.roomDetailsData.reservations[0] || t.showTickets && t.ticketsList.length || t.tagsList.length ? (w(), k("div", {
|
|
68481
68488
|
key: 0,
|
|
68482
68489
|
id: t.id ? `rdp-${t.id}` : "",
|
|
@@ -70669,7 +70676,7 @@ const ufe = Oe({
|
|
|
70669
70676
|
},
|
|
70670
70677
|
emits: ["update:model-value"],
|
|
70671
70678
|
setup(t, { slots: e, emit: n }) {
|
|
70672
|
-
const { t: r } = Zs(), i = _(null), s = _(null), o = _(t.modelValue), a = _(""), l = _(!1), u = _([]), c =
|
|
70679
|
+
const { t: r } = Zs(), i = _(null), s = _(null), o = _(t.modelValue), a = _(""), l = _(!1), u = _([]), c = Y(() => Array.isArray(t.options) ? t.options.length : 0), d = Y(() => !!e.action), f = Y(() => t.noResultMessage || r("HC_PRESS_ENTER_TO_CREATE_A_TAG")), h = Y(() => t.tagPlaceholder || r("HC_PRESS_ENTER_TO_CREATE_A_TAG")), m = Y(() => c.value === o.value.length ? r("HC_ALL") : o.value.length > 1 ? r("HC_MULTIPLE_SELECTED") : o.value[0].label || o.value[0].name || ""), y = Y(() => t.taggable || t.showTags), g = (N) => {
|
|
70673
70680
|
n("update:model-value", N);
|
|
70674
70681
|
}, v = (N) => {
|
|
70675
70682
|
a.value = N;
|
|
@@ -70770,7 +70777,7 @@ const ufe = Oe({
|
|
|
70770
70777
|
class: "option-description text-xs pt-0.5 truncate"
|
|
70771
70778
|
};
|
|
70772
70779
|
function Ofe(t, e, n, r, i, s) {
|
|
70773
|
-
const o =
|
|
70780
|
+
const o = Q("q-icon"), a = Q("q-button"), l = Q("q-badge"), u = Q("vue-multiselect");
|
|
70774
70781
|
return w(), k("div", {
|
|
70775
70782
|
id: t.id + "-containers",
|
|
70776
70783
|
class: "control custom-select",
|
|
@@ -72116,7 +72123,7 @@ var rb = {
|
|
|
72116
72123
|
}
|
|
72117
72124
|
}, the = ["tabindex"];
|
|
72118
72125
|
function nhe(t, e, n, r, i, s) {
|
|
72119
|
-
var o =
|
|
72126
|
+
var o = Q("SpinnerIcon");
|
|
72120
72127
|
return t.disabled ? (w(), k(ge, {
|
|
72121
72128
|
key: 1
|
|
72122
72129
|
}, [z(t.$slots, "default"), z(t.$slots, "content", {
|
|
@@ -73108,7 +73115,7 @@ function mhe(t, e) {
|
|
|
73108
73115
|
}
|
|
73109
73116
|
var ghe = ["id"], yhe = ["id", "value", "placeholder", "tabindex", "disabled", "aria-label", "aria-labelledby", "aria-expanded", "aria-controls", "aria-activedescendant", "aria-invalid"], vhe = ["id", "tabindex", "aria-label", "aria-labelledby", "aria-expanded", "aria-controls", "aria-activedescendant", "aria-disabled"], bhe = ["value", "placeholder", "aria-owns", "aria-activedescendant"], whe = ["id"], Che = ["id"], She = ["id", "aria-label", "aria-selected", "aria-disabled", "aria-setsize", "aria-posinset", "onClick", "onMousemove", "data-p-highlight", "data-p-focused", "data-p-disabled"];
|
|
73110
73117
|
function khe(t, e, n, r, i, s) {
|
|
73111
|
-
var o =
|
|
73118
|
+
var o = Q("SpinnerIcon"), a = Q("CheckIcon"), l = Q("BlankIcon"), u = Q("VirtualScroller"), c = Q("Portal"), d = wr("ripple");
|
|
73112
73119
|
return w(), k("div", P({
|
|
73113
73120
|
ref: "container",
|
|
73114
73121
|
id: i.id,
|
|
@@ -74394,7 +74401,7 @@ var $P = {
|
|
|
74394
74401
|
}
|
|
74395
74402
|
};
|
|
74396
74403
|
function qhe(t, e, n, r, i, s) {
|
|
74397
|
-
var o =
|
|
74404
|
+
var o = Q("INInputText"), a = Q("INButton");
|
|
74398
74405
|
return w(), k("span", P({
|
|
74399
74406
|
class: t.cx("root")
|
|
74400
74407
|
}, t.ptmi("root")), [R(o, P({
|
|
@@ -74723,7 +74730,7 @@ var zP = {
|
|
|
74723
74730
|
}
|
|
74724
74731
|
};
|
|
74725
74732
|
function spe(t, e, n, r, i, s) {
|
|
74726
|
-
var o =
|
|
74733
|
+
var o = Q("JTPDropdown");
|
|
74727
74734
|
return w(), q(o, {
|
|
74728
74735
|
modelValue: n.page,
|
|
74729
74736
|
options: s.pageOptions,
|
|
@@ -74786,7 +74793,7 @@ var UP = {
|
|
|
74786
74793
|
}
|
|
74787
74794
|
};
|
|
74788
74795
|
function ope(t, e, n, r, i, s) {
|
|
74789
|
-
var o =
|
|
74796
|
+
var o = Q("JTPInput");
|
|
74790
74797
|
return w(), q(o, {
|
|
74791
74798
|
ref: "jtpInput",
|
|
74792
74799
|
modelValue: i.d_page,
|
|
@@ -75000,7 +75007,7 @@ var KP = {
|
|
|
75000
75007
|
}
|
|
75001
75008
|
};
|
|
75002
75009
|
function fpe(t, e, n, r, i, s) {
|
|
75003
|
-
var o =
|
|
75010
|
+
var o = Q("RPPDropdown");
|
|
75004
75011
|
return w(), q(o, {
|
|
75005
75012
|
modelValue: n.rows,
|
|
75006
75013
|
options: s.rowsOptions,
|
|
@@ -75266,7 +75273,7 @@ var QP = {
|
|
|
75266
75273
|
}
|
|
75267
75274
|
};
|
|
75268
75275
|
function wpe(t, e, n, r, i, s) {
|
|
75269
|
-
var o =
|
|
75276
|
+
var o = Q("FirstPageLink"), a = Q("PrevPageLink"), l = Q("NextPageLink"), u = Q("LastPageLink"), c = Q("PageLinks"), d = Q("CurrentPageReport"), f = Q("RowsPerPageDropdown"), h = Q("JumpToPageDropdown"), m = Q("JumpToPageInput");
|
|
75270
75277
|
return t.alwaysShow || s.pageLinks && s.pageLinks.length > 1 ? (w(), k("nav", An(P({
|
|
75271
75278
|
key: 0
|
|
75272
75279
|
}, t.ptmi("paginatorWrapper"))), [(w(!0), k(ge, null, Ie(s.templateItems, function(y, g) {
|
|
@@ -75752,7 +75759,7 @@ var ib = {
|
|
|
75752
75759
|
}
|
|
75753
75760
|
}, Fpe = ["data-p-highlight", "data-p-disabled"], Bpe = ["id", "value", "name", "checked", "tabindex", "disabled", "readonly", "required", "aria-labelledby", "aria-label", "aria-invalid"];
|
|
75754
75761
|
function Vpe(t, e, n, r, i, s) {
|
|
75755
|
-
var o =
|
|
75762
|
+
var o = Q("CheckIcon");
|
|
75756
75763
|
return w(), k("div", P({
|
|
75757
75764
|
class: t.cx("root")
|
|
75758
75765
|
}, s.getPTOptions("root"), {
|
|
@@ -76391,7 +76398,7 @@ var pme = {
|
|
|
76391
76398
|
}
|
|
76392
76399
|
};
|
|
76393
76400
|
function mme(t, e, n, r, i, s) {
|
|
76394
|
-
var o =
|
|
76401
|
+
var o = Q("CheckIcon"), a = Q("Checkbox");
|
|
76395
76402
|
return w(), q(a, {
|
|
76396
76403
|
modelValue: n.checked,
|
|
76397
76404
|
binary: !0,
|
|
@@ -76464,7 +76471,7 @@ var sL = {
|
|
|
76464
76471
|
}
|
|
76465
76472
|
};
|
|
76466
76473
|
function gme(t, e, n, r, i, s) {
|
|
76467
|
-
var o =
|
|
76474
|
+
var o = Q("RadioButton");
|
|
76468
76475
|
return w(), q(o, {
|
|
76469
76476
|
modelValue: n.checked,
|
|
76470
76477
|
binary: !0,
|
|
@@ -76904,7 +76911,7 @@ function bme(t, e) {
|
|
|
76904
76911
|
}
|
|
76905
76912
|
var wme = ["colspan", "rowspan", "data-p-selection-column", "data-p-editable-column", "data-p-cell-editing", "data-p-frozen-column"], Cme = ["aria-expanded", "aria-controls", "aria-label"], Sme = ["aria-label"], kme = ["aria-label"], Mme = ["aria-label"];
|
|
76906
76913
|
function Ame(t, e, n, r, i, s) {
|
|
76907
|
-
var o =
|
|
76914
|
+
var o = Q("DTRadioButton"), a = Q("DTCheckbox"), l = Q("BarsIcon"), u = Q("ChevronDownIcon"), c = Q("ChevronRightIcon"), d = wr("ripple");
|
|
76908
76915
|
return s.loading ? (w(), k("td", P({
|
|
76909
76916
|
key: 0,
|
|
76910
76917
|
style: s.containerStyle,
|
|
@@ -77647,7 +77654,7 @@ function Pme(t, e) {
|
|
|
77647
77654
|
}
|
|
77648
77655
|
var Lme = ["colspan"], Rme = ["tabindex", "aria-selected", "data-p-index", "data-p-selectable-row", "data-p-highlight", "data-p-highlight-contextmenu"], _me = ["id"], $me = ["colspan"], Fme = ["colspan"], Bme = ["colspan"];
|
|
77649
77656
|
function Vme(t, e, n, r, i, s) {
|
|
77650
|
-
var o =
|
|
77657
|
+
var o = Q("ChevronDownIcon"), a = Q("ChevronRightIcon"), l = Q("DTBodyCell");
|
|
77651
77658
|
return n.empty ? (w(), k("tr", P({
|
|
77652
77659
|
key: 1,
|
|
77653
77660
|
class: t.cx("emptyMessage"),
|
|
@@ -77978,7 +77985,7 @@ var lL = {
|
|
|
77978
77985
|
}
|
|
77979
77986
|
};
|
|
77980
77987
|
function jme(t, e, n, r, i, s) {
|
|
77981
|
-
var o =
|
|
77988
|
+
var o = Q("DTBodyRow");
|
|
77982
77989
|
return w(), k("tbody", P({
|
|
77983
77990
|
ref: s.bodyRef,
|
|
77984
77991
|
class: t.cx("tbody"),
|
|
@@ -78449,7 +78456,7 @@ function Qme(t, e) {
|
|
|
78449
78456
|
return (e === "string" ? String : Number)(t);
|
|
78450
78457
|
}
|
|
78451
78458
|
function Xme(t, e, n, r, i, s) {
|
|
78452
|
-
var o =
|
|
78459
|
+
var o = Q("DTFooterCell");
|
|
78453
78460
|
return s.hasFooter ? (w(), k("tfoot", P({
|
|
78454
78461
|
key: 0,
|
|
78455
78462
|
class: t.cx("tfoot"),
|
|
@@ -79018,7 +79025,7 @@ function i3e(t, e) {
|
|
|
79018
79025
|
}
|
|
79019
79026
|
var s3e = ["aria-label", "aria-expanded", "aria-controls"], o3e = ["id", "aria-modal"], a3e = ["onClick", "onKeydown", "tabindex"];
|
|
79020
79027
|
function l3e(t, e, n, r, i, s) {
|
|
79021
|
-
var o =
|
|
79028
|
+
var o = Q("CFDropdown"), a = Q("CFButton"), l = Q("Portal"), u = wr("focustrap");
|
|
79022
79029
|
return w(), k("div", P({
|
|
79023
79030
|
class: t.cx("columnFilter")
|
|
79024
79031
|
}, s.getColumnPT("columnFilter")), [n.display === "row" ? (w(), k("div", P({
|
|
@@ -79298,7 +79305,7 @@ var ob = {
|
|
|
79298
79305
|
}
|
|
79299
79306
|
};
|
|
79300
79307
|
function u3e(t, e, n, r, i, s) {
|
|
79301
|
-
var o =
|
|
79308
|
+
var o = Q("CheckIcon"), a = Q("Checkbox");
|
|
79302
79309
|
return w(), q(a, {
|
|
79303
79310
|
modelValue: n.checked,
|
|
79304
79311
|
binary: !0,
|
|
@@ -79610,7 +79617,7 @@ function f3e(t, e) {
|
|
|
79610
79617
|
}
|
|
79611
79618
|
var h3e = ["tabindex", "colspan", "rowspan", "aria-sort", "data-p-sortable-column", "data-p-resizable-column", "data-p-highlight", "data-p-filter-column", "data-p-frozen-column", "data-p-reorderable-column"];
|
|
79612
79619
|
function p3e(t, e, n, r, i, s) {
|
|
79613
|
-
var o =
|
|
79620
|
+
var o = Q("DTHeaderCheckbox"), a = Q("DTColumnFilter");
|
|
79614
79621
|
return w(), k("th", P({
|
|
79615
79622
|
style: s.containerStyle,
|
|
79616
79623
|
class: s.containerClass,
|
|
@@ -79969,7 +79976,7 @@ function y3e(t, e) {
|
|
|
79969
79976
|
return (e === "string" ? String : Number)(t);
|
|
79970
79977
|
}
|
|
79971
79978
|
function v3e(t, e, n, r, i, s) {
|
|
79972
|
-
var o =
|
|
79979
|
+
var o = Q("DTHeaderCell"), a = Q("DTHeaderCheckbox"), l = Q("DTColumnFilter");
|
|
79973
79980
|
return w(), k("thead", P({
|
|
79974
79981
|
class: t.cx("thead"),
|
|
79975
79982
|
style: t.sx("thead"),
|
|
@@ -81475,7 +81482,7 @@ function P3e(t, e) {
|
|
|
81475
81482
|
return (e === "string" ? String : Number)(t);
|
|
81476
81483
|
}
|
|
81477
81484
|
function L3e(t, e, n, r, i, s) {
|
|
81478
|
-
var o =
|
|
81485
|
+
var o = Q("SpinnerIcon"), a = Q("DTPaginator"), l = Q("DTTableHeader"), u = Q("DTTableBody"), c = Q("DTTableFooter"), d = Q("DTVirtualScroller");
|
|
81479
81486
|
return w(), k("div", P({
|
|
81480
81487
|
class: t.cx("root"),
|
|
81481
81488
|
"data-scrollselectors": ".p-datatable-wrapper"
|
|
@@ -82336,7 +82343,7 @@ const H3e = Oe({
|
|
|
82336
82343
|
},
|
|
82337
82344
|
emits: ["is-empty"],
|
|
82338
82345
|
setup(t, { emit: e }) {
|
|
82339
|
-
const { deviceType: n } = O1(), r = _(), i = _(!1), s = _(!1), o = _(!1), a = _(!1), l = _(!1), u = _(!0), c = _(ON), d = _(), f = _(""), h = _([]), m = _(), y = _(0), g =
|
|
82346
|
+
const { deviceType: n } = O1(), r = _(), i = _(!1), s = _(!1), o = _(!1), a = _(!1), l = _(!1), u = _(!0), c = _(ON), d = _(), f = _(""), h = _([]), m = _(), y = _(0), g = Y(() => Nf(
|
|
82340
82347
|
t.modelValue,
|
|
82341
82348
|
f.value,
|
|
82342
82349
|
t.filters,
|
|
@@ -82345,11 +82352,11 @@ const H3e = Oe({
|
|
|
82345
82352
|
void 0,
|
|
82346
82353
|
// orderBy handled by PrimeVue
|
|
82347
82354
|
[]
|
|
82348
|
-
)), v =
|
|
82355
|
+
)), v = Y(() => n.value === "desktop"), b = Y(() => {
|
|
82349
82356
|
var le;
|
|
82350
82357
|
const V = !t.loading && ((le = r.value) == null ? void 0 : le.empty);
|
|
82351
82358
|
return e("is-empty", V), V;
|
|
82352
|
-
}), S =
|
|
82359
|
+
}), S = Y(() => {
|
|
82353
82360
|
const V = [], le = {};
|
|
82354
82361
|
let Se = 0;
|
|
82355
82362
|
return t.columns.forEach((me) => {
|
|
@@ -82554,7 +82561,7 @@ const H3e = Oe({
|
|
|
82554
82561
|
class: "table-empty flex flex-col items-center justify-center"
|
|
82555
82562
|
}, X3e = ["src"];
|
|
82556
82563
|
function J3e(t, e, n, r, i, s) {
|
|
82557
|
-
const o =
|
|
82564
|
+
const o = Q("q-icon"), a = Q("q-input"), l = Q("q-badge"), u = Q("q-tooltip"), c = Q("column"), d = Q("data-table");
|
|
82558
82565
|
return w(), k("div", P({
|
|
82559
82566
|
id: t.id,
|
|
82560
82567
|
class: [
|
|
@@ -82783,13 +82790,13 @@ const j5e = /* @__PURE__ */ ze(ege, [["render", tge], ["__scopeId", "data-v-1a01
|
|
|
82783
82790
|
},
|
|
82784
82791
|
emits: [FM],
|
|
82785
82792
|
setup(t, { attrs: e, emit: n, slots: r }) {
|
|
82786
|
-
const i = _(!1), s = _(), o =
|
|
82793
|
+
const i = _(!1), s = _(), o = Y(() => !!r.actions), a = Y(() => !!e.disabled || !!t.isDisabled), l = Y(() => [
|
|
82787
82794
|
{
|
|
82788
82795
|
[`has-${t.status}`]: t.status && !a.value
|
|
82789
82796
|
},
|
|
82790
82797
|
{ "is-focused": i.value },
|
|
82791
82798
|
{ "is-disabled": a.value }
|
|
82792
|
-
]), u =
|
|
82799
|
+
]), u = Y(() => [
|
|
82793
82800
|
"textarea",
|
|
82794
82801
|
t.textareaClass,
|
|
82795
82802
|
{ [t.status]: t.status && !a.value },
|
|
@@ -82904,16 +82911,16 @@ const H5e = /* @__PURE__ */ ze(nge, [["render", oge], ["__scopeId", "data-v-fda7
|
|
|
82904
82911
|
},
|
|
82905
82912
|
emits: [BM, VM, jM],
|
|
82906
82913
|
setup(t, { emit: e }) {
|
|
82907
|
-
const n = _(null), r =
|
|
82914
|
+
const n = _(null), r = Y({
|
|
82908
82915
|
get: () => t.modelValue,
|
|
82909
82916
|
set: (u) => {
|
|
82910
82917
|
e(BM, u);
|
|
82911
82918
|
}
|
|
82912
|
-
}), i =
|
|
82919
|
+
}), i = Y(
|
|
82913
82920
|
() => t.variant ? "is-" + t.variant : ""
|
|
82914
|
-
), s =
|
|
82921
|
+
), s = Y(
|
|
82915
82922
|
() => t.position ? "toast-fixed " + t.position : ""
|
|
82916
|
-
), o =
|
|
82923
|
+
), o = Y(
|
|
82917
82924
|
() => t.withTransition && t.transitionClass
|
|
82918
82925
|
), a = () => {
|
|
82919
82926
|
e(VM);
|
|
@@ -82940,7 +82947,7 @@ const H5e = /* @__PURE__ */ ze(nge, [["render", oge], ["__scopeId", "data-v-fda7
|
|
|
82940
82947
|
}
|
|
82941
82948
|
}), lge = ["aria-live"], uge = { class: "message flex-grow" }, cge = ["aria-label"];
|
|
82942
82949
|
function dge(t, e, n, r, i, s) {
|
|
82943
|
-
const o =
|
|
82950
|
+
const o = Q("q-icon");
|
|
82944
82951
|
return w(), q(bn, {
|
|
82945
82952
|
name: String(t.computedTransition),
|
|
82946
82953
|
appear: ""
|
|
@@ -83169,16 +83176,16 @@ const z5e = /* @__PURE__ */ ze(age, [["render", dge], ["__scopeId", "data-v-3862
|
|
|
83169
83176
|
},
|
|
83170
83177
|
emits: ["onTourStart", "onTourStop", "onTourEnd", "onTourStep", "onTourSnooze"],
|
|
83171
83178
|
setup(t, { emit: e, expose: n }) {
|
|
83172
|
-
const r = `tour-${t.name}`, i = `${r}-tooltip`, s = `${r}-backdrop`, o = `${r}-arrow`, a = _(null), l = _(null), u = _(!1), c = _(/* @__PURE__ */ new Set()), d =
|
|
83179
|
+
const r = `tour-${t.name}`, i = `${r}-tooltip`, s = `${r}-backdrop`, o = `${r}-arrow`, a = _(null), l = _(null), u = _(!1), c = _(/* @__PURE__ */ new Set()), d = Y(() => t.steps.filter((V) => {
|
|
83173
83180
|
var le;
|
|
83174
83181
|
return !((le = V.skip) != null && le.call(V));
|
|
83175
83182
|
})), f = Fi({
|
|
83176
83183
|
currentStep: 0,
|
|
83177
83184
|
lastStep: 0,
|
|
83178
83185
|
nextStep: 1,
|
|
83179
|
-
getCurrentStep:
|
|
83180
|
-
getLastStep:
|
|
83181
|
-
getNextStep:
|
|
83186
|
+
getCurrentStep: Y(() => d.value[f.currentStep]),
|
|
83187
|
+
getLastStep: Y(() => d.value[f.lastStep]),
|
|
83188
|
+
getNextStep: Y(() => d.value[f.nextStep])
|
|
83182
83189
|
}), h = () => {
|
|
83183
83190
|
try {
|
|
83184
83191
|
const V = localStorage.getItem(`tour-steps-${t.name}`);
|
|
@@ -83193,7 +83200,7 @@ const z5e = /* @__PURE__ */ ze(age, [["render", dge], ["__scopeId", "data-v-3862
|
|
|
83193
83200
|
);
|
|
83194
83201
|
}, y = (V) => {
|
|
83195
83202
|
c.value.add(V), m();
|
|
83196
|
-
}, g =
|
|
83203
|
+
}, g = Y(() => f.currentStep === d.value.length - 1 ? t.buttonLabels.end : t.buttonLabels.next), v = () => {
|
|
83197
83204
|
window.addEventListener("resize", de), window.addEventListener("scroll", de, !0);
|
|
83198
83205
|
}, b = () => {
|
|
83199
83206
|
window.removeEventListener("resize", de), window.removeEventListener("scroll", de, !0);
|
|
@@ -83390,7 +83397,7 @@ const z5e = /* @__PURE__ */ ze(age, [["render", dge], ["__scopeId", "data-v-3862
|
|
|
83390
83397
|
class: "skip-cta"
|
|
83391
83398
|
}, Mge = ["id"], Age = ["id"], Tge = { class: "tour-title" }, Ege = ["innerHTML"], Ige = { class: "tour-actions" }, Oge = { class: "flex items-center gap-6" }, xge = { class: "flex gap-1" }, Dge = ["onClick"], Nge = { class: "flex items-center gap-1" }, Pge = ["id"];
|
|
83392
83399
|
function Lge(t, e, n, r, i, s) {
|
|
83393
|
-
const o =
|
|
83400
|
+
const o = Q("q-icon"), a = Q("i18n-t");
|
|
83394
83401
|
return w(), k(ge, null, [
|
|
83395
83402
|
D("div", {
|
|
83396
83403
|
class: "tour-popover",
|