bt-core-app 2.0.10 → 2.0.12
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/bt-core-app.js +254 -251
- package/package.json +1 -1
package/dist/bt-core-app.js
CHANGED
|
@@ -5902,7 +5902,7 @@ function LL(e, t) {
|
|
|
5902
5902
|
function Tt(e, t = 0) {
|
|
5903
5903
|
return e != null && Array.isArray(e) && e.length > t;
|
|
5904
5904
|
}
|
|
5905
|
-
function
|
|
5905
|
+
function Ba(e) {
|
|
5906
5906
|
return e == null || e.length == 0;
|
|
5907
5907
|
}
|
|
5908
5908
|
function PL(e) {
|
|
@@ -6772,15 +6772,15 @@ var m_ = { exports: {} };
|
|
|
6772
6772
|
}
|
|
6773
6773
|
var St = new d(function(kt, jt) {
|
|
6774
6774
|
var zt = s.open(F.name, Ae);
|
|
6775
|
-
zt.onerror = function(
|
|
6775
|
+
zt.onerror = function(za) {
|
|
6776
6776
|
var ao = zt.result;
|
|
6777
|
-
ao.close(), jt(
|
|
6777
|
+
ao.close(), jt(za);
|
|
6778
6778
|
}, zt.onupgradeneeded = function() {
|
|
6779
|
-
var
|
|
6780
|
-
|
|
6779
|
+
var za = zt.result;
|
|
6780
|
+
za.deleteObjectStore(F.storeName);
|
|
6781
6781
|
}, zt.onsuccess = function() {
|
|
6782
|
-
var
|
|
6783
|
-
|
|
6782
|
+
var za = zt.result;
|
|
6783
|
+
za.close(), kt(za);
|
|
6784
6784
|
};
|
|
6785
6785
|
});
|
|
6786
6786
|
return St.then(function(kt) {
|
|
@@ -7143,8 +7143,8 @@ var m_ = { exports: {} };
|
|
|
7143
7143
|
return new d(function(kt, jt) {
|
|
7144
7144
|
Ae.executeSql("DROP TABLE IF EXISTS " + St, [], function() {
|
|
7145
7145
|
kt();
|
|
7146
|
-
}, function(zt,
|
|
7147
|
-
jt(
|
|
7146
|
+
}, function(zt, za) {
|
|
7147
|
+
jt(za);
|
|
7148
7148
|
});
|
|
7149
7149
|
});
|
|
7150
7150
|
}
|
|
@@ -7419,8 +7419,8 @@ var m_ = { exports: {} };
|
|
|
7419
7419
|
Lr[Ae] && console.info("Redefining LocalForage driver: " + Ae), Lr[Ae] = q, od[Ae] = ao, be();
|
|
7420
7420
|
};
|
|
7421
7421
|
"_support" in q ? q._support && typeof q._support == "function" ? q._support().then(zt, Te) : zt(!!q._support) : zt(!0);
|
|
7422
|
-
} catch (
|
|
7423
|
-
Te(
|
|
7422
|
+
} catch (za) {
|
|
7423
|
+
Te(za);
|
|
7424
7424
|
}
|
|
7425
7425
|
});
|
|
7426
7426
|
return f(ie, oe, se), ie;
|
|
@@ -7665,7 +7665,7 @@ function eP(e) {
|
|
|
7665
7665
|
if (e.storeMode ?? (e.storeMode = (t == null ? void 0 : t.storeMode) ?? "session"), e.storageMode ?? (e.storageMode = (t == null ? void 0 : t.storageMode) ?? "local-cache"), e.storeName ?? (e.storeName = ((l = e.navigation) == null ? void 0 : l.findStoreName(t ?? e.nav)) ?? e.nav), e.getStorageKey ?? (e.getStorageKey = t == null ? void 0 : t.getStorageKey), (r = e.demo) != null && r.isDemoing.value && (e.storageMode = "session"), e.storeName == null)
|
|
7666
7666
|
throw new Error("no store name provided");
|
|
7667
7667
|
var a = e.storeName;
|
|
7668
|
-
if (
|
|
7668
|
+
if (Ba(e.proxyID) || (a = `${e.storeName}_${e.proxyID}`), e.storeMode == "whole-last-updated") {
|
|
7669
7669
|
if (e.api == null)
|
|
7670
7670
|
throw new Error("Must supply an api object to use store");
|
|
7671
7671
|
return nP({
|
|
@@ -9404,11 +9404,11 @@ function uP(e) {
|
|
|
9404
9404
|
let P = m(D);
|
|
9405
9405
|
L != null && (P.includes("?") || (P = P + "?"), P.includes("&") && (P = P + "&"), P = P + new URLSearchParams(L).toString()), window.location.href = P;
|
|
9406
9406
|
} else
|
|
9407
|
-
!
|
|
9407
|
+
!Ba(D) && e.router != null && e.router.push({ path: D });
|
|
9408
9408
|
}
|
|
9409
9409
|
async function y() {
|
|
9410
9410
|
return e.tryRefreshToken ?? (e.tryRefreshToken = async () => {
|
|
9411
|
-
if (e.useTokenRefresh !== !0 ||
|
|
9411
|
+
if (e.useTokenRefresh !== !0 || Ba(r.value.refreshToken) || Ba(r.value.refreshExpiresOn))
|
|
9412
9412
|
return;
|
|
9413
9413
|
const D = ut.fromFormat(r.value.refreshExpiresOn, t), L = ut.utc(), $ = D.plus({ minutes: 0 - a });
|
|
9414
9414
|
if (!(L.toString() > D.toString()) && !(L.toString() < $.toString())) {
|
|
@@ -9482,7 +9482,7 @@ function uP(e) {
|
|
|
9482
9482
|
return D.isLoggedIn && T() && C() && (p(), window.location.href = m()), D.isLoggedIn;
|
|
9483
9483
|
}
|
|
9484
9484
|
function C() {
|
|
9485
|
-
if (!e.useTokenRefresh ||
|
|
9485
|
+
if (!e.useTokenRefresh || Ba(r.value.refreshExpiresOn) || Ba(r.value.refreshToken))
|
|
9486
9486
|
return !0;
|
|
9487
9487
|
const D = ut.fromFormat(r.value.refreshExpiresOn, t);
|
|
9488
9488
|
return ut.utc() < D;
|
|
@@ -10633,7 +10633,7 @@ function FP(e) {
|
|
|
10633
10633
|
if (console.log(`unpacking: ${x}`), a.value != x) {
|
|
10634
10634
|
a.value = x;
|
|
10635
10635
|
let k = !1, M = !1, C = !1, T = !1;
|
|
10636
|
-
if (
|
|
10636
|
+
if (Ba(a.value) || !Tt(y(), 4))
|
|
10637
10637
|
k = !0;
|
|
10638
10638
|
else {
|
|
10639
10639
|
const D = y();
|
|
@@ -10757,7 +10757,7 @@ function RP(e) {
|
|
|
10757
10757
|
h.replacingDate = void 0, h.isAdjusting = !1;
|
|
10758
10758
|
}
|
|
10759
10759
|
function f(h) {
|
|
10760
|
-
if (!
|
|
10760
|
+
if (!Ba(h)) {
|
|
10761
10761
|
if (h != null && h.includes("undefined"))
|
|
10762
10762
|
return;
|
|
10763
10763
|
const y = h == null ? void 0 : h.split("|");
|
|
@@ -13913,10 +13913,10 @@ function Uoe(e, t, a, n) {
|
|
|
13913
13913
|
return { name: a };
|
|
13914
13914
|
} else
|
|
13915
13915
|
return r.login(window.location.pathname), { name: a };
|
|
13916
|
-
else if (d(), l.updateNavigationChange(e, t), e.path == "/" && r.tryLogin() &&
|
|
13916
|
+
else if (d(), l.updateNavigationChange(e, t), e.path == "/" && r.tryLogin() && Ba((m = t.name) == null ? void 0 : m.toString()))
|
|
13917
13917
|
return { name: n };
|
|
13918
13918
|
}
|
|
13919
|
-
const CB = (e) =>
|
|
13919
|
+
const CB = (e) => Ba(e) || /^[a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+@[a-zA-Z0-9-]+(?:\.[a-zA-Z0-9-]+)*$/.test(e) || "Email must be valid", kh = (e) => !!e || "Required";
|
|
13920
13920
|
function MB(e) {
|
|
13921
13921
|
const t = [];
|
|
13922
13922
|
return (e == null ? void 0 : e.required) == !0 && t.push((a) => !!a || "Field is required"), (e == null ? void 0 : e.otherRules) != null && (Array.isArray(e == null ? void 0 : e.otherRules) ? t.push(...e.otherRules) : t.push(e.otherRules)), (e == null ? void 0 : e.forPassword) == !0 && (t.push((a) => !!a || "Password is required"), t.push((a) => a != null && a.length > 9 || "Password must be 10 or more characters"), t.push((a) => /^(.*[a-z].*)$/.test(a) || "Password must contain a lowercase letter"), t.push((a) => /^(.*[A-Z].*)$/.test(a) || "Password must contain an uppercase letter"), t.push((a) => /^(.*\d.*)$/.test(a) || "Password must contain a number"), t.push((a) => /^(.*[#?!@\$%\^\&*\)\(+=._-].*)$/.test(a) || "Password must contain a special character like # ? ! @ $ % ^ & * - +")), (e == null ? void 0 : e.forEmail) == !0 && (t.push((a) => !!a || "Email is required"), t.push((a) => YL(a) || "Email must be valid")), t;
|
|
@@ -14047,7 +14047,7 @@ const Ca = Ue({
|
|
|
14047
14047
|
type: [String, Object, Function],
|
|
14048
14048
|
default: "div"
|
|
14049
14049
|
}
|
|
14050
|
-
}, "tag"), af = Symbol.for("vuetify:theme"),
|
|
14050
|
+
}, "tag"), af = Symbol.for("vuetify:theme"), Ra = Ue({
|
|
14051
14051
|
theme: String
|
|
14052
14052
|
}, "theme");
|
|
14053
14053
|
function ok() {
|
|
@@ -14382,7 +14382,7 @@ const FB = Ue({
|
|
|
14382
14382
|
...Ca({
|
|
14383
14383
|
tag: "i"
|
|
14384
14384
|
}),
|
|
14385
|
-
...
|
|
14385
|
+
...Ra()
|
|
14386
14386
|
}, "VIcon"), Mt = ot()({
|
|
14387
14387
|
name: "VIcon",
|
|
14388
14388
|
props: FB(),
|
|
@@ -14877,7 +14877,7 @@ const UB = Ue({
|
|
|
14877
14877
|
...pl(),
|
|
14878
14878
|
...ru(),
|
|
14879
14879
|
...Ca(),
|
|
14880
|
-
...
|
|
14880
|
+
...Ra(),
|
|
14881
14881
|
...fi({
|
|
14882
14882
|
variant: "flat"
|
|
14883
14883
|
})
|
|
@@ -15000,7 +15000,7 @@ const cT = Ue({
|
|
|
15000
15000
|
...cr(),
|
|
15001
15001
|
...pl(),
|
|
15002
15002
|
...Ca(),
|
|
15003
|
-
...
|
|
15003
|
+
...Ra(),
|
|
15004
15004
|
...fi()
|
|
15005
15005
|
}, "VBtnGroup"), ck = ot()({
|
|
15006
15006
|
name: "VBtnGroup",
|
|
@@ -15335,7 +15335,7 @@ const QB = Ue({
|
|
|
15335
15335
|
...Ca({
|
|
15336
15336
|
tag: "div"
|
|
15337
15337
|
}),
|
|
15338
|
-
...
|
|
15338
|
+
...Ra()
|
|
15339
15339
|
}, "VProgressCircular"), ts = ot()({
|
|
15340
15340
|
name: "VProgressCircular",
|
|
15341
15341
|
props: QB(),
|
|
@@ -15785,7 +15785,7 @@ const r8 = Ue({
|
|
|
15785
15785
|
}),
|
|
15786
15786
|
...pl(),
|
|
15787
15787
|
...Ca(),
|
|
15788
|
-
...
|
|
15788
|
+
...Ra()
|
|
15789
15789
|
}, "VProgressLinear"), gT = ot()({
|
|
15790
15790
|
name: "VProgressLinear",
|
|
15791
15791
|
props: r8(),
|
|
@@ -16249,7 +16249,7 @@ const h8 = {
|
|
|
16249
16249
|
...Ca({
|
|
16250
16250
|
tag: "button"
|
|
16251
16251
|
}),
|
|
16252
|
-
...
|
|
16252
|
+
...Ra(),
|
|
16253
16253
|
...fi({
|
|
16254
16254
|
variant: "elevated"
|
|
16255
16255
|
})
|
|
@@ -16651,12 +16651,13 @@ dr("scroll-x-transition");
|
|
|
16651
16651
|
dr("scroll-x-reverse-transition");
|
|
16652
16652
|
dr("scroll-y-transition");
|
|
16653
16653
|
dr("scroll-y-reverse-transition");
|
|
16654
|
-
const
|
|
16654
|
+
const ja = dr("slide-x-transition"), Of = dr("slide-x-reverse-transition"), Hn = dr("slide-y-transition"), kr = dr("slide-y-reverse-transition"), $T = TT("expand-transition", DT()), IT = TT("expand-x-transition", DT("", !0)), y8 = { key: 1 }, b8 = { key: 2 }, w8 = /* @__PURE__ */ et({
|
|
16655
16655
|
__name: "BT-Background-Task",
|
|
16656
16656
|
props: {
|
|
16657
16657
|
actionName: {},
|
|
16658
16658
|
block: { type: Boolean },
|
|
16659
16659
|
btnClass: {},
|
|
16660
|
+
minWidth: { default: "100px" },
|
|
16660
16661
|
onFinish: {},
|
|
16661
16662
|
text: { default: "Run Now" },
|
|
16662
16663
|
additionalUrl: {},
|
|
@@ -16678,65 +16679,60 @@ const Ba = dr("slide-x-transition"), Of = dr("slide-x-reverse-transition"), Hn =
|
|
|
16678
16679
|
},
|
|
16679
16680
|
setup(e) {
|
|
16680
16681
|
const t = e, a = G(!1), n = G(!1);
|
|
16681
|
-
async function l(
|
|
16682
|
+
async function l(d) {
|
|
16682
16683
|
n.value = !0, setTimeout(() => {
|
|
16683
16684
|
a.value = !0, n.value = !1;
|
|
16684
16685
|
}, 2e3), setTimeout(() => {
|
|
16685
16686
|
a.value = !1;
|
|
16686
|
-
}, 4e3), await
|
|
16687
|
+
}, 4e3), await o.startTask({
|
|
16687
16688
|
...t,
|
|
16688
|
-
...
|
|
16689
|
+
...d
|
|
16689
16690
|
});
|
|
16690
16691
|
}
|
|
16691
|
-
const r = A(() => a.value ||
|
|
16692
|
-
var
|
|
16693
|
-
return ((
|
|
16694
|
-
}),
|
|
16695
|
-
var
|
|
16696
|
-
return n.value ||
|
|
16692
|
+
const r = A(() => `min-width: ${t.minWidth}`), i = A(() => a.value || o.task.value != null && o.task.value.isFinished), o = b_(t.actionName), s = A(() => {
|
|
16693
|
+
var d;
|
|
16694
|
+
return ((d = o.task.value) == null ? void 0 : d.progress) ?? 0;
|
|
16695
|
+
}), c = A(() => {
|
|
16696
|
+
var d;
|
|
16697
|
+
return n.value || o.task.value != null && !((d = o.task.value) != null && d.isFinished);
|
|
16697
16698
|
});
|
|
16698
|
-
let
|
|
16699
|
-
return _e(
|
|
16700
|
-
|
|
16701
|
-
}), (
|
|
16702
|
-
isDone:
|
|
16703
|
-
isLoading:
|
|
16704
|
-
progress:
|
|
16699
|
+
let u = !1;
|
|
16700
|
+
return _e(c, (d) => {
|
|
16701
|
+
d ? u = !0 : u && (t.onFinish != null && t.onFinish(), u = !1);
|
|
16702
|
+
}), (d, m) => fe(d.$slots, "default", {
|
|
16703
|
+
isDone: i.value,
|
|
16704
|
+
isLoading: c.value,
|
|
16705
|
+
progress: s.value,
|
|
16705
16706
|
startTask: l
|
|
16706
16707
|
}, () => [
|
|
16707
|
-
w(
|
|
16708
|
+
w(Pe, ye({
|
|
16709
|
+
block: d.block,
|
|
16710
|
+
onClick: Ut(l, ["stop"]),
|
|
16711
|
+
class: d.btnClass,
|
|
16712
|
+
disabled: c.value
|
|
16713
|
+
}, d.$attrs), {
|
|
16708
16714
|
default: W(() => [
|
|
16709
|
-
|
|
16710
|
-
key: 1,
|
|
16711
|
-
color: "primary",
|
|
16712
|
-
height: "25",
|
|
16713
|
-
indeterminate: "",
|
|
16714
|
-
modelValue: o.value
|
|
16715
|
-
}, {
|
|
16716
|
-
default: W(({ value: m }) => [
|
|
16717
|
-
ae("strong", null, "Running: " + Fe(Math.ceil(m)) + "%", 1)
|
|
16718
|
-
]),
|
|
16719
|
-
_: 1
|
|
16720
|
-
}, 8, ["modelValue"])) : (N(), ce(Pe, ye({
|
|
16721
|
-
key: 0,
|
|
16722
|
-
block: u.block,
|
|
16723
|
-
onClick: Ut(l, ["stop"]),
|
|
16724
|
-
class: u.btnClass,
|
|
16725
|
-
loading: s.value
|
|
16726
|
-
}, u.$attrs), {
|
|
16715
|
+
w(Hn, { "hide-on-leave": "" }, {
|
|
16727
16716
|
default: W(() => [
|
|
16728
|
-
|
|
16729
|
-
|
|
16730
|
-
|
|
16717
|
+
c.value ? (N(), ce(gT, {
|
|
16718
|
+
key: 0,
|
|
16719
|
+
color: "primary",
|
|
16720
|
+
height: "25",
|
|
16721
|
+
indeterminate: "",
|
|
16722
|
+
modelValue: s.value,
|
|
16723
|
+
style: Oe(r.value)
|
|
16724
|
+
}, {
|
|
16725
|
+
default: W(({ value: f }) => [
|
|
16726
|
+
ae("strong", null, "Running: " + Fe(Math.ceil(f)) + "%", 1)
|
|
16731
16727
|
]),
|
|
16732
16728
|
_: 1
|
|
16733
|
-
})
|
|
16729
|
+
}, 8, ["modelValue", "style"])) : i.value ? (N(), le("span", y8, "Finished")) : (N(), le("span", b8, Fe(d.text), 1))
|
|
16734
16730
|
]),
|
|
16735
16731
|
_: 1
|
|
16736
|
-
}
|
|
16732
|
+
})
|
|
16737
16733
|
]),
|
|
16738
16734
|
_: 1
|
|
16739
|
-
})
|
|
16735
|
+
}, 16, ["block", "class", "disabled"])
|
|
16740
16736
|
]);
|
|
16741
16737
|
}
|
|
16742
16738
|
}), rf = ot()({
|
|
@@ -16930,7 +16926,7 @@ const Ba = dr("slide-x-transition"), Of = dr("slide-x-reverse-transition"), Hn =
|
|
|
16930
16926
|
...pl(),
|
|
16931
16927
|
...Dh(),
|
|
16932
16928
|
...Ca(),
|
|
16933
|
-
...
|
|
16929
|
+
...Ra(),
|
|
16934
16930
|
...fi({
|
|
16935
16931
|
variant: "elevated"
|
|
16936
16932
|
})
|
|
@@ -17858,7 +17854,7 @@ const z8 = Ue({
|
|
|
17858
17854
|
ui: _(u)
|
|
17859
17855
|
}),
|
|
17860
17856
|
w(ma),
|
|
17861
|
-
w(
|
|
17857
|
+
w(ja, { group: "" }, {
|
|
17862
17858
|
default: W(() => [
|
|
17863
17859
|
!S.alwaysClose && g.value ? (N(), ce(Pe, {
|
|
17864
17860
|
key: 0,
|
|
@@ -18775,7 +18771,7 @@ const BN = Ue({
|
|
|
18775
18771
|
thickness: [Number, String],
|
|
18776
18772
|
vertical: Boolean,
|
|
18777
18773
|
..._t(),
|
|
18778
|
-
...
|
|
18774
|
+
...Ra()
|
|
18779
18775
|
}, "VDivider"), lr = ot()({
|
|
18780
18776
|
name: "VDivider",
|
|
18781
18777
|
props: BN(),
|
|
@@ -19577,7 +19573,7 @@ const qN = ci({
|
|
|
19577
19573
|
...pl(),
|
|
19578
19574
|
...Dh(),
|
|
19579
19575
|
...Ca(),
|
|
19580
|
-
...
|
|
19576
|
+
...Ra(),
|
|
19581
19577
|
...fi({
|
|
19582
19578
|
variant: "text"
|
|
19583
19579
|
})
|
|
@@ -20078,7 +20074,7 @@ const n7 = Ue({
|
|
|
20078
20074
|
...rD(),
|
|
20079
20075
|
...pl(),
|
|
20080
20076
|
...Ca(),
|
|
20081
|
-
...
|
|
20077
|
+
...Ra(),
|
|
20082
20078
|
...fi({
|
|
20083
20079
|
variant: "text"
|
|
20084
20080
|
})
|
|
@@ -20986,7 +20982,7 @@ const q1 = Ue({
|
|
|
20986
20982
|
...fD(),
|
|
20987
20983
|
...r7(),
|
|
20988
20984
|
...d7(),
|
|
20989
|
-
...
|
|
20985
|
+
...Ra(),
|
|
20990
20986
|
...Oc()
|
|
20991
20987
|
}, "VOverlay"), _r = ot()({
|
|
20992
20988
|
name: "VOverlay",
|
|
@@ -21208,7 +21204,7 @@ const q1 = Ue({
|
|
|
21208
21204
|
component: N1
|
|
21209
21205
|
}
|
|
21210
21206
|
}), ["absolute"])
|
|
21211
|
-
}, "VMenu"),
|
|
21207
|
+
}, "VMenu"), Na = ot()({
|
|
21212
21208
|
name: "VMenu",
|
|
21213
21209
|
props: _7(),
|
|
21214
21210
|
emits: {
|
|
@@ -21402,7 +21398,7 @@ const D7 = Ue({
|
|
|
21402
21398
|
...Ca({
|
|
21403
21399
|
tag: "nav"
|
|
21404
21400
|
}),
|
|
21405
|
-
...
|
|
21401
|
+
...Ra(),
|
|
21406
21402
|
...fi({
|
|
21407
21403
|
variant: "text"
|
|
21408
21404
|
})
|
|
@@ -21627,7 +21623,7 @@ const D7 = Ue({
|
|
|
21627
21623
|
..._t(),
|
|
21628
21624
|
...Al(),
|
|
21629
21625
|
...Ca(),
|
|
21630
|
-
...
|
|
21626
|
+
...Ra()
|
|
21631
21627
|
}, "VTable"), gD = ot()({
|
|
21632
21628
|
name: "VTable",
|
|
21633
21629
|
props: A7(),
|
|
@@ -21707,7 +21703,7 @@ const D7 = Ue({
|
|
|
21707
21703
|
text: String,
|
|
21708
21704
|
onClick: Hl(),
|
|
21709
21705
|
..._t(),
|
|
21710
|
-
...
|
|
21706
|
+
...Ra()
|
|
21711
21707
|
}, "VLabel"), G1 = ot()({
|
|
21712
21708
|
name: "VLabel",
|
|
21713
21709
|
props: I7(),
|
|
@@ -21840,7 +21836,7 @@ const V7 = ["underlined", "outlined", "filled", "solo", "solo-inverted", "solo-f
|
|
|
21840
21836
|
..._t(),
|
|
21841
21837
|
...P1(),
|
|
21842
21838
|
...pl(),
|
|
21843
|
-
...
|
|
21839
|
+
...Ra()
|
|
21844
21840
|
}, "VField"), Dm = ot()({
|
|
21845
21841
|
name: "VField",
|
|
21846
21842
|
inheritAttrs: !1,
|
|
@@ -22260,7 +22256,7 @@ const Uc = Ue({
|
|
|
22260
22256
|
..._t(),
|
|
22261
22257
|
...Al(),
|
|
22262
22258
|
...wh(Dr(), ["maxWidth", "minWidth", "width"]),
|
|
22263
|
-
...
|
|
22259
|
+
...Ra(),
|
|
22264
22260
|
...F7()
|
|
22265
22261
|
}, "VInput"), Ni = ot()({
|
|
22266
22262
|
name: "VInput",
|
|
@@ -22700,7 +22696,7 @@ const z7 = ["color", "file", "time", "date", "datetime-local", "week", "month"],
|
|
|
22700
22696
|
return `height: calc(100vh - ${m.getUsedHeight(n.actualUsedHeight)}px)`;
|
|
22701
22697
|
{
|
|
22702
22698
|
let $ = 154;
|
|
22703
|
-
return n.bordered ? $ += 26 : n.variant == "page" && ($ += 16), n.variant == "pure" && ($ -= 96), b.value && ($ -= 48), n.hideToolbar == !0 && ($ -= 48),
|
|
22699
|
+
return n.bordered ? $ += 26 : n.variant == "page" && ($ += 16), n.variant == "pure" && ($ -= 96), b.value && ($ -= 48), n.hideToolbar == !0 && ($ -= 48), Ba(n.paginate) && ($ -= 58), `height: calc(100vh - ${m.getUsedHeight($)}px)`;
|
|
22704
22700
|
}
|
|
22705
22701
|
}), T = G([]), D = A({
|
|
22706
22702
|
get() {
|
|
@@ -22774,7 +22770,7 @@ const z7 = ["color", "file", "time", "date", "datetime-local", "week", "month"],
|
|
|
22774
22770
|
onClick: _(f).toggleSearch,
|
|
22775
22771
|
variant: "text"
|
|
22776
22772
|
}, null, 8, ["icon", "size", "onClick"]),
|
|
22777
|
-
w(
|
|
22773
|
+
w(ja, { "hide-on-leave": "" }, {
|
|
22778
22774
|
default: W(() => [
|
|
22779
22775
|
_(f).showSearch.value ? (N(), ce(Ka, {
|
|
22780
22776
|
key: 0,
|
|
@@ -22819,7 +22815,7 @@ const z7 = ["color", "file", "time", "date", "datetime-local", "week", "month"],
|
|
|
22819
22815
|
]),
|
|
22820
22816
|
subtoolbar: W(() => [
|
|
22821
22817
|
fe($.$slots, "subtoolbar", {}, () => [
|
|
22822
|
-
$.hideSubtoolbarSettings ? ee("", !0) : (N(), ce(
|
|
22818
|
+
$.hideSubtoolbarSettings ? ee("", !0) : (N(), ce(Na, {
|
|
22823
22819
|
key: 0,
|
|
22824
22820
|
"close-on-content-click": !1,
|
|
22825
22821
|
density: $.density
|
|
@@ -22836,7 +22832,7 @@ const z7 = ["color", "file", "time", "date", "datetime-local", "week", "month"],
|
|
|
22836
22832
|
"min-width": "300"
|
|
22837
22833
|
}, {
|
|
22838
22834
|
default: W(() => [
|
|
22839
|
-
y.value ? ee("", !0) : (N(), ce(
|
|
22835
|
+
y.value ? ee("", !0) : (N(), ce(Na, {
|
|
22840
22836
|
key: 0,
|
|
22841
22837
|
"close-on-content-click": !1,
|
|
22842
22838
|
density: $.density,
|
|
@@ -22938,7 +22934,7 @@ const z7 = ["color", "file", "time", "date", "datetime-local", "week", "month"],
|
|
|
22938
22934
|
allItems: _(f).asyncItems.value,
|
|
22939
22935
|
size: $.size
|
|
22940
22936
|
}, void 0, !0),
|
|
22941
|
-
!v.value && _(Tt)(_(f).filters.value) ? (N(), ce(
|
|
22937
|
+
!v.value && _(Tt)(_(f).filters.value) ? (N(), ce(Na, {
|
|
22942
22938
|
key: 1,
|
|
22943
22939
|
"close-on-content-click": !1,
|
|
22944
22940
|
density: $.density,
|
|
@@ -22966,7 +22962,7 @@ const z7 = ["color", "file", "time", "date", "datetime-local", "week", "month"],
|
|
|
22966
22962
|
value: V
|
|
22967
22963
|
}, {
|
|
22968
22964
|
prepend: W(({ isActive: j }) => [
|
|
22969
|
-
w(
|
|
22965
|
+
w(ja, null, {
|
|
22970
22966
|
default: W(() => [
|
|
22971
22967
|
w(Mt, { size: $.size }, {
|
|
22972
22968
|
default: W(() => [
|
|
@@ -23014,7 +23010,7 @@ const z7 = ["color", "file", "time", "date", "datetime-local", "week", "month"],
|
|
|
23014
23010
|
]),
|
|
23015
23011
|
_: 1
|
|
23016
23012
|
}, 8, ["density"])) : ee("", !0),
|
|
23017
|
-
!S.value && _(Tt)(_(f).externalParties.value) ? (N(), ce(
|
|
23013
|
+
!S.value && _(Tt)(_(f).externalParties.value) ? (N(), ce(Na, {
|
|
23018
23014
|
key: 2,
|
|
23019
23015
|
"close-on-content-click": !1,
|
|
23020
23016
|
density: $.density,
|
|
@@ -23045,7 +23041,7 @@ const z7 = ["color", "file", "time", "date", "datetime-local", "week", "month"],
|
|
|
23045
23041
|
value: V
|
|
23046
23042
|
}, {
|
|
23047
23043
|
prepend: W(({ isActive: j }) => [
|
|
23048
|
-
w(
|
|
23044
|
+
w(ja, null, {
|
|
23049
23045
|
default: W(() => [
|
|
23050
23046
|
w(Mt, { size: $.size }, {
|
|
23051
23047
|
default: W(() => [
|
|
@@ -23110,7 +23106,7 @@ const z7 = ["color", "file", "time", "date", "datetime-local", "week", "month"],
|
|
|
23110
23106
|
"onUpdate:selected": P[11] || (P[11] = (j) => D.value = j)
|
|
23111
23107
|
}, {
|
|
23112
23108
|
default: W(() => [
|
|
23113
|
-
w(
|
|
23109
|
+
w(ja, {
|
|
23114
23110
|
group: "",
|
|
23115
23111
|
"hide-on-leave": ""
|
|
23116
23112
|
}, {
|
|
@@ -23198,7 +23194,7 @@ const z7 = ["color", "file", "time", "date", "datetime-local", "week", "month"],
|
|
|
23198
23194
|
items: _(f).asyncItems.value,
|
|
23199
23195
|
size: g.value
|
|
23200
23196
|
}, void 0, !0),
|
|
23201
|
-
w(
|
|
23197
|
+
w(ja, {
|
|
23202
23198
|
group: "",
|
|
23203
23199
|
"hide-on-leave": ""
|
|
23204
23200
|
}, {
|
|
@@ -23291,7 +23287,7 @@ const z7 = ["color", "file", "time", "date", "datetime-local", "week", "month"],
|
|
|
23291
23287
|
])
|
|
23292
23288
|
]),
|
|
23293
23289
|
ae("tbody", null, [
|
|
23294
|
-
w(
|
|
23290
|
+
w(ja, {
|
|
23295
23291
|
group: "",
|
|
23296
23292
|
"hide-on-leave": ""
|
|
23297
23293
|
}, {
|
|
@@ -23415,7 +23411,7 @@ const z7 = ["color", "file", "time", "date", "datetime-local", "week", "month"],
|
|
|
23415
23411
|
items: _(f).filteredItems.value
|
|
23416
23412
|
}, void 0, !0)
|
|
23417
23413
|
], !0),
|
|
23418
|
-
_(
|
|
23414
|
+
_(Ba)($.paginate) ? ee("", !0) : (N(), le("div", Y7, [
|
|
23419
23415
|
w(pD, {
|
|
23420
23416
|
modelValue: _(f).currentPage.value,
|
|
23421
23417
|
"onUpdate:modelValue": P[12] || (P[12] = (j) => _(f).currentPage.value = j),
|
|
@@ -23552,7 +23548,7 @@ const aF = {
|
|
|
23552
23548
|
},
|
|
23553
23549
|
..._t(),
|
|
23554
23550
|
...Ca(),
|
|
23555
|
-
...
|
|
23551
|
+
...Ra()
|
|
23556
23552
|
}, "VWindow"), wc = ot()({
|
|
23557
23553
|
name: "VWindow",
|
|
23558
23554
|
directives: {
|
|
@@ -23951,7 +23947,7 @@ const aF = {
|
|
|
23951
23947
|
return `height: calc(100vh - ${g.getUsedHeight(n.actualUsedHeight)}px)`;
|
|
23952
23948
|
{
|
|
23953
23949
|
let z = 154;
|
|
23954
|
-
return y.value > 0 ? z -= 48 : n.variant == "pure" && (z -= 96), n.bordered ? z += 26 : n.variant == "page" && (z += 16), V.value && y.value == 0 && (z -= 48), n.hideToolbar == !0 && (z -= 48),
|
|
23950
|
+
return y.value > 0 ? z -= 48 : n.variant == "pure" && (z -= 96), n.bordered ? z += 26 : n.variant == "page" && (z += 16), V.value && y.value == 0 && (z -= 48), n.hideToolbar == !0 && (z -= 48), Ba(n.paginate) && (z -= 58), `height: calc(100vh - ${g.getUsedHeight(z)}px)`;
|
|
23955
23951
|
}
|
|
23956
23952
|
});
|
|
23957
23953
|
function U() {
|
|
@@ -24081,7 +24077,7 @@ const aF = {
|
|
|
24081
24077
|
}), yt(() => {
|
|
24082
24078
|
U();
|
|
24083
24079
|
var z = s.query.step;
|
|
24084
|
-
z != null && J(z),
|
|
24080
|
+
z != null && J(z), Ba(n.stepsID) || _B(n.stepsID, {
|
|
24085
24081
|
canFinish: M,
|
|
24086
24082
|
canMoveBack: S,
|
|
24087
24083
|
canMoveNext: x,
|
|
@@ -24104,7 +24100,7 @@ const aF = {
|
|
|
24104
24100
|
stepOptions: n.steps
|
|
24105
24101
|
});
|
|
24106
24102
|
}), Xn(() => {
|
|
24107
|
-
|
|
24103
|
+
Ba(n.stepsID) || TB(n.stepsID);
|
|
24108
24104
|
}), (z, ue) => {
|
|
24109
24105
|
const Se = xn("bt-header-option"), de = xn("bt-blade");
|
|
24110
24106
|
return N(), ce(de, {
|
|
@@ -24160,7 +24156,7 @@ const aF = {
|
|
|
24160
24156
|
]),
|
|
24161
24157
|
subtoolbar: W(() => [
|
|
24162
24158
|
fe(z.$slots, "subtoolbar", {}, () => [
|
|
24163
|
-
z.hideSubtoolbarSettings ? ee("", !0) : (N(), ce(
|
|
24159
|
+
z.hideSubtoolbarSettings ? ee("", !0) : (N(), ce(Na, {
|
|
24164
24160
|
key: 0,
|
|
24165
24161
|
"close-on-content-click": !1,
|
|
24166
24162
|
density: z.density
|
|
@@ -24177,7 +24173,7 @@ const aF = {
|
|
|
24177
24173
|
"min-width": "300"
|
|
24178
24174
|
}, {
|
|
24179
24175
|
default: W(() => [
|
|
24180
|
-
P.value ? ee("", !0) : (N(), ce(
|
|
24176
|
+
P.value ? ee("", !0) : (N(), ce(Na, {
|
|
24181
24177
|
key: 0,
|
|
24182
24178
|
"close-on-content-click": !1,
|
|
24183
24179
|
density: z.density,
|
|
@@ -24276,7 +24272,7 @@ const aF = {
|
|
|
24276
24272
|
allItems: _(p).asyncItems.value,
|
|
24277
24273
|
size: z.size
|
|
24278
24274
|
}, void 0, !0),
|
|
24279
|
-
!I.value && _(Tt)(_(p).filters.value) ? (N(), ce(
|
|
24275
|
+
!I.value && _(Tt)(_(p).filters.value) ? (N(), ce(Na, {
|
|
24280
24276
|
key: 2,
|
|
24281
24277
|
"close-on-content-click": !1,
|
|
24282
24278
|
density: z.density,
|
|
@@ -24304,7 +24300,7 @@ const aF = {
|
|
|
24304
24300
|
value: Re
|
|
24305
24301
|
}, {
|
|
24306
24302
|
prepend: W(({ isActive: Le }) => [
|
|
24307
|
-
w(
|
|
24303
|
+
w(ja, null, {
|
|
24308
24304
|
default: W(() => [
|
|
24309
24305
|
w(Mt, { size: z.size }, {
|
|
24310
24306
|
default: W(() => [
|
|
@@ -24352,7 +24348,7 @@ const aF = {
|
|
|
24352
24348
|
]),
|
|
24353
24349
|
_: 1
|
|
24354
24350
|
}, 8, ["density"])) : ee("", !0),
|
|
24355
|
-
!E.value && _(Tt)(_(p).externalParties.value) ? (N(), ce(
|
|
24351
|
+
!E.value && _(Tt)(_(p).externalParties.value) ? (N(), ce(Na, {
|
|
24356
24352
|
key: 3,
|
|
24357
24353
|
"close-on-content-click": !1,
|
|
24358
24354
|
density: z.density,
|
|
@@ -24383,7 +24379,7 @@ const aF = {
|
|
|
24383
24379
|
value: Re
|
|
24384
24380
|
}, {
|
|
24385
24381
|
prepend: W(({ isActive: Le }) => [
|
|
24386
|
-
w(
|
|
24382
|
+
w(ja, null, {
|
|
24387
24383
|
default: W(() => [
|
|
24388
24384
|
w(Mt, { size: z.size }, {
|
|
24389
24385
|
default: W(() => [
|
|
@@ -24459,7 +24455,7 @@ const aF = {
|
|
|
24459
24455
|
allItems: _(p).asyncItems.value,
|
|
24460
24456
|
items: _(p).filteredItems.value
|
|
24461
24457
|
}, void 0, !0),
|
|
24462
|
-
w(
|
|
24458
|
+
w(ja, { "hide-on-leave": "" }, {
|
|
24463
24459
|
default: W(() => [
|
|
24464
24460
|
z.useStepHeader != !1 || y.value != 0 ? (N(), le("div", lF, [
|
|
24465
24461
|
fe(z.$slots, "step-toolbar", {
|
|
@@ -24554,7 +24550,7 @@ const aF = {
|
|
|
24554
24550
|
style: Oe(O.value)
|
|
24555
24551
|
}, {
|
|
24556
24552
|
default: W(() => [
|
|
24557
|
-
w(
|
|
24553
|
+
w(ja, {
|
|
24558
24554
|
group: "",
|
|
24559
24555
|
"hide-on-leave": ""
|
|
24560
24556
|
}, {
|
|
@@ -24640,7 +24636,7 @@ const aF = {
|
|
|
24640
24636
|
items: _(p).asyncItems.value,
|
|
24641
24637
|
size: D.value
|
|
24642
24638
|
}, void 0, !0),
|
|
24643
|
-
w(
|
|
24639
|
+
w(ja, {
|
|
24644
24640
|
group: "",
|
|
24645
24641
|
"hide-on-leave": ""
|
|
24646
24642
|
}, {
|
|
@@ -24733,7 +24729,7 @@ const aF = {
|
|
|
24733
24729
|
])
|
|
24734
24730
|
]),
|
|
24735
24731
|
ae("tbody", null, [
|
|
24736
|
-
w(
|
|
24732
|
+
w(ja, {
|
|
24737
24733
|
group: "",
|
|
24738
24734
|
"hide-on-leave": ""
|
|
24739
24735
|
}, {
|
|
@@ -24939,7 +24935,7 @@ const aF = {
|
|
|
24939
24935
|
items: _(p).filteredItems.value
|
|
24940
24936
|
}, void 0, !0)
|
|
24941
24937
|
], !0),
|
|
24942
|
-
y.value == 0 && !_(
|
|
24938
|
+
y.value == 0 && !_(Ba)(z.paginate) ? (N(), le("div", cF, [
|
|
24943
24939
|
w(pD, {
|
|
24944
24940
|
modelValue: _(p).currentPage.value,
|
|
24945
24941
|
"onUpdate:modelValue": ue[12] || (ue[12] = (Le) => _(p).currentPage.value = Le),
|
|
@@ -25212,7 +25208,7 @@ const TF = ["success", "info", "warning", "error"], DF = Ue({
|
|
|
25212
25208
|
...Mh(),
|
|
25213
25209
|
...pl(),
|
|
25214
25210
|
...Ca(),
|
|
25215
|
-
...
|
|
25211
|
+
...Ra(),
|
|
25216
25212
|
...fi({
|
|
25217
25213
|
variant: "flat"
|
|
25218
25214
|
})
|
|
@@ -25399,7 +25395,7 @@ const TF = ["success", "info", "warning", "error"], DF = Ue({
|
|
|
25399
25395
|
...Ca({
|
|
25400
25396
|
tag: "header"
|
|
25401
25397
|
}),
|
|
25402
|
-
...
|
|
25398
|
+
...Ra()
|
|
25403
25399
|
}, "VToolbar"), Yr = ot()({
|
|
25404
25400
|
name: "VToolbar",
|
|
25405
25401
|
props: IF(),
|
|
@@ -25676,7 +25672,7 @@ const TF = ["success", "info", "warning", "error"], DF = Ue({
|
|
|
25676
25672
|
title: "Close",
|
|
25677
25673
|
onClick: $[1] || ($[1] = () => _(h).closeBlade({ bladeName: L.bladeName, mode: "remove" }))
|
|
25678
25674
|
}, null, 8, ["size"])) : ee("", !0),
|
|
25679
|
-
!L.hideToolbarSettings && !L.showOnlyTitleLeft ? (N(), ce(
|
|
25675
|
+
!L.hideToolbarSettings && !L.showOnlyTitleLeft ? (N(), ce(Na, {
|
|
25680
25676
|
"close-on-content-click": !1,
|
|
25681
25677
|
density: L.density,
|
|
25682
25678
|
key: "7"
|
|
@@ -25870,7 +25866,7 @@ const TF = ["success", "info", "warning", "error"], DF = Ue({
|
|
|
25870
25866
|
}, {
|
|
25871
25867
|
default: W(() => [
|
|
25872
25868
|
fe(b.$slots, "top"),
|
|
25873
|
-
w(
|
|
25869
|
+
w(ja, null, {
|
|
25874
25870
|
default: W(() => [
|
|
25875
25871
|
d.value == null ? (N(), le("video", {
|
|
25876
25872
|
key: 0,
|
|
@@ -27448,7 +27444,7 @@ const DR = ci({
|
|
|
27448
27444
|
...Mh(),
|
|
27449
27445
|
...pl(),
|
|
27450
27446
|
...Ca(),
|
|
27451
|
-
...
|
|
27447
|
+
...Ra()
|
|
27452
27448
|
}, "VSheet"), Rk = ot()({
|
|
27453
27449
|
name: "VSheet",
|
|
27454
27450
|
props: AD(),
|
|
@@ -27676,37 +27672,44 @@ const DR = ci({
|
|
|
27676
27672
|
__name: "BT-Color-Picker-Menu",
|
|
27677
27673
|
props: {
|
|
27678
27674
|
color: {},
|
|
27679
|
-
modelValue: {}
|
|
27675
|
+
modelValue: {},
|
|
27676
|
+
openToggle: { type: Boolean }
|
|
27680
27677
|
},
|
|
27681
27678
|
emits: ["update:modelValue", "change"],
|
|
27682
27679
|
setup(e, { emit: t }) {
|
|
27683
|
-
const a = e, n = t, l = G(a.color);
|
|
27684
|
-
_e(() => a.modelValue, (
|
|
27685
|
-
l.value =
|
|
27680
|
+
const a = e, n = t, l = G(a.color), r = G(!1);
|
|
27681
|
+
_e(() => a.modelValue, (o) => {
|
|
27682
|
+
l.value = o;
|
|
27683
|
+
}), _e(() => a.openToggle, () => {
|
|
27684
|
+
r.value = !0;
|
|
27686
27685
|
});
|
|
27687
|
-
function
|
|
27686
|
+
function i() {
|
|
27688
27687
|
n("update:modelValue", l.value), n("change", l.value);
|
|
27689
27688
|
}
|
|
27690
|
-
return (
|
|
27691
|
-
|
|
27689
|
+
return (o, s) => (N(), ce(Na, {
|
|
27690
|
+
"close-on-content-click": !1,
|
|
27691
|
+
modelValue: r.value,
|
|
27692
|
+
"onUpdate:modelValue": s[1] || (s[1] = (c) => r.value = c)
|
|
27693
|
+
}, {
|
|
27694
|
+
activator: W(({ props: c }) => [
|
|
27692
27695
|
w(Pe, ye({
|
|
27693
|
-
color:
|
|
27696
|
+
color: o.color,
|
|
27694
27697
|
icon: "",
|
|
27695
27698
|
size: "small"
|
|
27696
|
-
},
|
|
27699
|
+
}, c), null, 16, ["color"])
|
|
27697
27700
|
]),
|
|
27698
27701
|
default: W(() => [
|
|
27699
27702
|
w(Nt, null, {
|
|
27700
27703
|
default: W(() => [
|
|
27701
27704
|
w(Pd, {
|
|
27702
27705
|
modelValue: l.value,
|
|
27703
|
-
"onUpdate:modelValue":
|
|
27706
|
+
"onUpdate:modelValue": s[0] || (s[0] = (c) => l.value = c)
|
|
27704
27707
|
}, null, 8, ["modelValue"])
|
|
27705
27708
|
]),
|
|
27706
27709
|
actions: W(() => [
|
|
27707
27710
|
w(ma),
|
|
27708
|
-
w(Pe, { onClick:
|
|
27709
|
-
default: W(() =>
|
|
27711
|
+
w(Pe, { onClick: i }, {
|
|
27712
|
+
default: W(() => s[2] || (s[2] = [
|
|
27710
27713
|
je("Apply")
|
|
27711
27714
|
])),
|
|
27712
27715
|
_: 1
|
|
@@ -27716,7 +27719,7 @@ const DR = ci({
|
|
|
27716
27719
|
})
|
|
27717
27720
|
]),
|
|
27718
27721
|
_: 1
|
|
27719
|
-
}));
|
|
27722
|
+
}, 8, ["modelValue"]));
|
|
27720
27723
|
}
|
|
27721
27724
|
}), IR = { class: "d-flex pr-2" }, ER = /* @__PURE__ */ et({
|
|
27722
27725
|
__name: "BT-Cosmetics-Menu",
|
|
@@ -27779,7 +27782,7 @@ const DR = ci({
|
|
|
27779
27782
|
function r(i) {
|
|
27780
27783
|
l.value != null && (l.value.primary = i.primary, l.value.secondary = i.secondary, l.value.accent = i.accent, n.resetCosmetics(!1));
|
|
27781
27784
|
}
|
|
27782
|
-
return (i, o) => (N(), ce(
|
|
27785
|
+
return (i, o) => (N(), ce(Na, { "close-on-content-click": !1 }, {
|
|
27783
27786
|
activator: W(({ props: s }) => [
|
|
27784
27787
|
w(Pe, ye({
|
|
27785
27788
|
icon: "$theme-light-dark",
|
|
@@ -28341,7 +28344,7 @@ const DR = ci({
|
|
|
28341
28344
|
filter: "toDayShortDateAndTime",
|
|
28342
28345
|
value: M.dateTrigger
|
|
28343
28346
|
}, null, 8, ["class", "value"]),
|
|
28344
|
-
w(
|
|
28347
|
+
w(ja, { "hide-on-leave": "" }, {
|
|
28345
28348
|
default: W(() => [
|
|
28346
28349
|
M.isAdjusting ? (N(), le("div", OR, [
|
|
28347
28350
|
w(Hn, {
|
|
@@ -31704,7 +31707,7 @@ const Wl = (e, t) => t ? new Date(e.toLocaleString("en-US", { timeZone: t })) :
|
|
|
31704
31707
|
};
|
|
31705
31708
|
var Or = /* @__PURE__ */ ((e) => (e.month = "month", e.year = "year", e))(Or || {}), Hr = /* @__PURE__ */ ((e) => (e.top = "top", e.bottom = "bottom", e))(Hr || {}), zs = /* @__PURE__ */ ((e) => (e.header = "header", e.calendar = "calendar", e.timePicker = "timePicker", e))(zs || {}), il = /* @__PURE__ */ ((e) => (e.month = "month", e.year = "year", e.calendar = "calendar", e.time = "time", e.minutes = "minutes", e.hours = "hours", e.seconds = "seconds", e))(il || {});
|
|
31706
31709
|
const iO = ["timestamp", "date", "iso"];
|
|
31707
|
-
var xl = /* @__PURE__ */ ((e) => (e.up = "up", e.down = "down", e.left = "left", e.right = "right", e))(xl || {}),
|
|
31710
|
+
var xl = /* @__PURE__ */ ((e) => (e.up = "up", e.down = "down", e.left = "left", e.right = "right", e))(xl || {}), Wa = /* @__PURE__ */ ((e) => (e.arrowUp = "ArrowUp", e.arrowDown = "ArrowDown", e.arrowLeft = "ArrowLeft", e.arrowRight = "ArrowRight", e.enter = "Enter", e.space = " ", e.esc = "Escape", e.tab = "Tab", e.home = "Home", e.end = "End", e.pageUp = "PageUp", e.pageDown = "PageDown", e))(Wa || {}), nc = /* @__PURE__ */ ((e) => (e.MONTH_AND_YEAR = "MM-yyyy", e.YEAR = "yyyy", e.DATE = "dd-MM-yyyy", e))(nc || {});
|
|
31708
31711
|
function Xk(e) {
|
|
31709
31712
|
return (t) => {
|
|
31710
31713
|
const a = new Intl.DateTimeFormat(e, {
|
|
@@ -31818,7 +31821,7 @@ function vO(e, t) {
|
|
|
31818
31821
|
return a[n + (t ? -1 : 1)];
|
|
31819
31822
|
}
|
|
31820
31823
|
const a0 = (e, t) => e == null ? void 0 : e.querySelector(`[data-dp-element="${t}"]`), lA = (e, t) => new Intl.NumberFormat(t, { useGrouping: !1, style: "decimal" }).format(e), hb = (e, t) => $i(e, t ?? nc.DATE), rg = (e) => Array.isArray(e), Im = (e, t, a) => t.get(hb(e, a)), mO = (e, t) => e ? t ? t instanceof Map ? !!Im(e, t) : t(Ze(e)) : !1 : !0, Sl = (e, t, a = !1, n) => {
|
|
31821
|
-
if (e.key ===
|
|
31824
|
+
if (e.key === Wa.enter || e.key === Wa.space)
|
|
31822
31825
|
return a && e.preventDefault(), t();
|
|
31823
31826
|
if (n)
|
|
31824
31827
|
return n(e);
|
|
@@ -31976,7 +31979,7 @@ const a0 = (e, t) => e == null ? void 0 : e.querySelector(`[data-dp-element="${t
|
|
|
31976
31979
|
setMenuFocused: e,
|
|
31977
31980
|
setShiftKey: t
|
|
31978
31981
|
};
|
|
31979
|
-
},
|
|
31982
|
+
}, Oa = Ea({
|
|
31980
31983
|
monthYear: [],
|
|
31981
31984
|
calendar: [],
|
|
31982
31985
|
time: [],
|
|
@@ -31988,12 +31991,12 @@ const a0 = (e, t) => e == null ? void 0 : e.querySelector(`[data-dp-element="${t
|
|
|
31988
31991
|
},
|
|
31989
31992
|
monthPicker: []
|
|
31990
31993
|
}), cg = G(null), Mv = G(!1), dg = G(!1), fg = G(!1), vg = G(!1), nl = G(0), Cn = G(0), rs = () => {
|
|
31991
|
-
const e = A(() => Mv.value ? [...
|
|
31992
|
-
...
|
|
31993
|
-
...
|
|
31994
|
+
const e = A(() => Mv.value ? [...Oa.selectionGrid, Oa.actionRow].filter((d) => d.length) : dg.value ? [
|
|
31995
|
+
...Oa.timePicker[0],
|
|
31996
|
+
...Oa.timePicker[1],
|
|
31994
31997
|
vg.value ? [] : [cg.value],
|
|
31995
|
-
|
|
31996
|
-
].filter((d) => d.length) : fg.value ? [...
|
|
31998
|
+
Oa.actionRow
|
|
31999
|
+
].filter((d) => d.length) : fg.value ? [...Oa.monthPicker, Oa.actionRow] : [Oa.monthYear, ...Oa.calendar, Oa.time, Oa.actionRow].filter((d) => d.length)), t = (d) => {
|
|
31997
32000
|
nl.value = d ? nl.value + 1 : nl.value - 1;
|
|
31998
32001
|
let m = null;
|
|
31999
32002
|
e.value[Cn.value] && (m = e.value[Cn.value][nl.value]), !m && e.value[Cn.value + (d ? 1 : -1)] ? (Cn.value = Cn.value + (d ? 1 : -1), nl.value = d ? 0 : e.value[Cn.value].length - 1) : m || (nl.value = d ? nl.value - 1 : nl.value + 1);
|
|
@@ -32011,9 +32014,9 @@ const a0 = (e, t) => e == null ? void 0 : e.querySelector(`[data-dp-element="${t
|
|
|
32011
32014
|
}, o = () => {
|
|
32012
32015
|
a(!0), n(!0);
|
|
32013
32016
|
}, s = (d, m) => {
|
|
32014
|
-
|
|
32017
|
+
Oa[m] = d;
|
|
32015
32018
|
}, c = (d, m) => {
|
|
32016
|
-
|
|
32019
|
+
Oa[m] = d;
|
|
32017
32020
|
}, u = () => {
|
|
32018
32021
|
nl.value = 0, Cn.value = 0;
|
|
32019
32022
|
};
|
|
@@ -32024,25 +32027,25 @@ const a0 = (e, t) => e == null ? void 0 : e.querySelector(`[data-dp-element="${t
|
|
|
32024
32027
|
cg.value = d;
|
|
32025
32028
|
},
|
|
32026
32029
|
setSelectionGrid: (d) => {
|
|
32027
|
-
Mv.value = d, u(), d || (
|
|
32030
|
+
Mv.value = d, u(), d || (Oa.selectionGrid = []);
|
|
32028
32031
|
},
|
|
32029
32032
|
setTimePicker: (d, m = !1) => {
|
|
32030
|
-
dg.value = d, vg.value = m, u(), d || (
|
|
32033
|
+
dg.value = d, vg.value = m, u(), d || (Oa.timePicker[0] = [], Oa.timePicker[1] = []);
|
|
32031
32034
|
},
|
|
32032
32035
|
setTimePickerElements: (d, m = 0) => {
|
|
32033
|
-
|
|
32036
|
+
Oa.timePicker[m] = d;
|
|
32034
32037
|
},
|
|
32035
32038
|
arrowRight: l,
|
|
32036
32039
|
arrowLeft: r,
|
|
32037
32040
|
arrowUp: i,
|
|
32038
32041
|
arrowDown: o,
|
|
32039
32042
|
clearArrowNav: () => {
|
|
32040
|
-
|
|
32043
|
+
Oa.monthYear = [], Oa.calendar = [], Oa.time = [], Oa.actionRow = [], Oa.selectionGrid = [], Oa.timePicker[0] = [], Oa.timePicker[1] = [], Mv.value = !1, dg.value = !1, vg.value = !1, fg.value = !1, u(), cg.value = null;
|
|
32041
32044
|
},
|
|
32042
32045
|
setMonthPicker: (d) => {
|
|
32043
32046
|
fg.value = d, u();
|
|
32044
32047
|
},
|
|
32045
|
-
refSets:
|
|
32048
|
+
refSets: Oa
|
|
32046
32049
|
// exposed for testing
|
|
32047
32050
|
};
|
|
32048
32051
|
}, n2 = (e) => ({
|
|
@@ -32749,23 +32752,23 @@ const a0 = (e, t) => e == null ? void 0 : e.querySelector(`[data-dp-element="${t
|
|
|
32749
32752
|
}
|
|
32750
32753
|
}, O = (Z) => {
|
|
32751
32754
|
switch (Z.key) {
|
|
32752
|
-
case
|
|
32755
|
+
case Wa.esc:
|
|
32753
32756
|
return E(Z);
|
|
32754
|
-
case
|
|
32757
|
+
case Wa.arrowLeft:
|
|
32755
32758
|
return j(Z);
|
|
32756
|
-
case
|
|
32759
|
+
case Wa.arrowRight:
|
|
32757
32760
|
return j(Z);
|
|
32758
|
-
case
|
|
32761
|
+
case Wa.arrowUp:
|
|
32759
32762
|
return j(Z);
|
|
32760
|
-
case
|
|
32763
|
+
case Wa.arrowDown:
|
|
32761
32764
|
return j(Z);
|
|
32762
32765
|
default:
|
|
32763
32766
|
return;
|
|
32764
32767
|
}
|
|
32765
32768
|
}, U = (Z) => {
|
|
32766
|
-
if (Z.key ===
|
|
32769
|
+
if (Z.key === Wa.enter)
|
|
32767
32770
|
return I();
|
|
32768
|
-
if (Z.key ===
|
|
32771
|
+
if (Z.key === Wa.tab)
|
|
32769
32772
|
return Y();
|
|
32770
32773
|
};
|
|
32771
32774
|
return t({ focusGrid: k }), (Z, H) => {
|
|
@@ -35447,7 +35450,7 @@ const a0 = (e, t) => e == null ? void 0 : e.querySelector(`[data-dp-element="${t
|
|
|
35447
35450
|
} else
|
|
35448
35451
|
ge === xl.left || ge === xl.up ? z("handleArrow", xl.left, 0, ge === xl.up) : z("handleArrow", xl.right, 0, ge === xl.down);
|
|
35449
35452
|
}, pe = (ge) => {
|
|
35450
|
-
s(ge.shiftKey), !l.disableMonthYearSelect && ge.code ===
|
|
35453
|
+
s(ge.shiftKey), !l.disableMonthYearSelect && ge.code === Wa.tab && ge.target.classList.contains("dp__menu") && c.value.shiftKeyInMenu && (ge.preventDefault(), Zo(ge, f.value, !0), n("close-picker"));
|
|
35451
35454
|
}, J = () => {
|
|
35452
35455
|
Y(), n("time-picker-close");
|
|
35453
35456
|
}, ne = (ge) => {
|
|
@@ -35471,22 +35474,22 @@ const a0 = (e, t) => e == null ? void 0 : e.querySelector(`[data-dp-element="${t
|
|
|
35471
35474
|
ge.preventDefault(), xe(qe);
|
|
35472
35475
|
}, Le = (ge) => {
|
|
35473
35476
|
var qe, vt, Lt;
|
|
35474
|
-
if (pe(ge), ge.key ===
|
|
35477
|
+
if (pe(ge), ge.key === Wa.home || ge.key === Wa.end)
|
|
35475
35478
|
return z(
|
|
35476
35479
|
"selectWeekDate",
|
|
35477
|
-
ge.key ===
|
|
35480
|
+
ge.key === Wa.home,
|
|
35478
35481
|
ge.target.getAttribute("id")
|
|
35479
35482
|
);
|
|
35480
|
-
switch ((ge.key ===
|
|
35481
|
-
case
|
|
35483
|
+
switch ((ge.key === Wa.pageUp || ge.key === Wa.pageDown) && (ge.shiftKey ? (z("changeYear", ge.key === Wa.pageUp), (qe = a0(r.value, "overlay-year")) == null || qe.focus()) : (z("changeMonth", ge.key === Wa.pageUp), (vt = a0(r.value, ge.key === Wa.pageUp ? "action-prev" : "action-next")) == null || vt.focus()), ge.target.getAttribute("id") && ((Lt = r.value) == null || Lt.focus({ preventScroll: !0 }))), ge.key) {
|
|
35484
|
+
case Wa.esc:
|
|
35482
35485
|
return me(ge);
|
|
35483
|
-
case
|
|
35486
|
+
case Wa.arrowLeft:
|
|
35484
35487
|
return Re(ge, xl.left);
|
|
35485
|
-
case
|
|
35488
|
+
case Wa.arrowRight:
|
|
35486
35489
|
return Re(ge, xl.right);
|
|
35487
|
-
case
|
|
35490
|
+
case Wa.arrowUp:
|
|
35488
35491
|
return Re(ge, xl.up);
|
|
35489
|
-
case
|
|
35492
|
+
case Wa.arrowDown:
|
|
35490
35493
|
return Re(ge, xl.down);
|
|
35491
35494
|
default:
|
|
35492
35495
|
return;
|
|
@@ -36278,7 +36281,7 @@ const YH = ({
|
|
|
36278
36281
|
}, K = (O) => {
|
|
36279
36282
|
p.value = O;
|
|
36280
36283
|
}, Y = (O) => {
|
|
36281
|
-
O.key ===
|
|
36284
|
+
O.key === Wa.tab && L(O, !0);
|
|
36282
36285
|
};
|
|
36283
36286
|
return t({
|
|
36284
36287
|
focusInput: j,
|
|
@@ -36962,7 +36965,7 @@ const uW = /* @__PURE__ */ et({
|
|
|
36962
36965
|
return (c, u) => (N(), le("div", {
|
|
36963
36966
|
class: De(c.inline ? "d-inline" : "")
|
|
36964
36967
|
}, [
|
|
36965
|
-
w(
|
|
36968
|
+
w(ja, { "hide-on-leave": "" }, {
|
|
36966
36969
|
default: W(() => [
|
|
36967
36970
|
c.inline && _(r).isLoading.value ? (N(), le("div", pW, [
|
|
36968
36971
|
w(ts, {
|
|
@@ -37135,7 +37138,7 @@ const uW = /* @__PURE__ */ et({
|
|
|
37135
37138
|
},
|
|
37136
37139
|
..._t(),
|
|
37137
37140
|
...Al(),
|
|
37138
|
-
...
|
|
37141
|
+
...Ra()
|
|
37139
37142
|
}, "SelectionControlGroup"), xW = Ue({
|
|
37140
37143
|
...SA({
|
|
37141
37144
|
defaultsTarget: "VSelectionControl"
|
|
@@ -37568,7 +37571,7 @@ const Em = ot()({
|
|
|
37568
37571
|
})
|
|
37569
37572
|
]),
|
|
37570
37573
|
_: 1
|
|
37571
|
-
})) : (N(), ce(
|
|
37574
|
+
})) : (N(), ce(Na, {
|
|
37572
37575
|
key: 1,
|
|
37573
37576
|
"open-delay": "5"
|
|
37574
37577
|
}, {
|
|
@@ -38304,7 +38307,7 @@ const PW = Symbol.for("vuetify:v-slide-group"), wb = Ue({
|
|
|
38304
38307
|
selectedClass: "v-chip--selected"
|
|
38305
38308
|
}),
|
|
38306
38309
|
...Ca(),
|
|
38307
|
-
...
|
|
38310
|
+
...Ra(),
|
|
38308
38311
|
...fi({
|
|
38309
38312
|
variant: "tonal"
|
|
38310
38313
|
})
|
|
@@ -38409,7 +38412,7 @@ const PW = Symbol.for("vuetify:v-slide-group"), wb = Ue({
|
|
|
38409
38412
|
...Ca({
|
|
38410
38413
|
tag: "span"
|
|
38411
38414
|
}),
|
|
38412
|
-
...
|
|
38415
|
+
...Ra(),
|
|
38413
38416
|
...fi({
|
|
38414
38417
|
variant: "tonal"
|
|
38415
38418
|
})
|
|
@@ -39145,7 +39148,7 @@ const IA = Ue({
|
|
|
39145
39148
|
title: n(k.value)
|
|
39146
39149
|
}), {
|
|
39147
39150
|
...a,
|
|
39148
|
-
default: () => ae(Me, null, [w(
|
|
39151
|
+
default: () => ae(Me, null, [w(Na, ye({
|
|
39149
39152
|
ref: r,
|
|
39150
39153
|
modelValue: b.value,
|
|
39151
39154
|
"onUpdate:modelValue": (Q) => b.value = Q,
|
|
@@ -39633,7 +39636,7 @@ const JW = Ue({
|
|
|
39633
39636
|
onKeydown: H
|
|
39634
39637
|
}), {
|
|
39635
39638
|
...n,
|
|
39636
|
-
default: () => ae(Me, null, [w(
|
|
39639
|
+
default: () => ae(Me, null, [w(Na, ye({
|
|
39637
39640
|
ref: c,
|
|
39638
39641
|
modelValue: I.value,
|
|
39639
39642
|
"onUpdate:modelValue": (z) => I.value = z,
|
|
@@ -40277,7 +40280,7 @@ const JW = Ue({
|
|
|
40277
40280
|
default: W(() => [
|
|
40278
40281
|
T.useAutomation || T.useAutomationDaily || T.useAutomationLarge ? (N(), ce(Et, { key: 0 }, {
|
|
40279
40282
|
default: W(() => [
|
|
40280
|
-
w(
|
|
40283
|
+
w(Na, null, {
|
|
40281
40284
|
activator: W(({ props: L }) => [
|
|
40282
40285
|
w(Pe, ye(L, {
|
|
40283
40286
|
disabled: !x.value,
|
|
@@ -40308,7 +40311,7 @@ const JW = Ue({
|
|
|
40308
40311
|
})) : ee("", !0),
|
|
40309
40312
|
T.useGuideList ? (N(), ce(Et, { key: 1 }, {
|
|
40310
40313
|
default: W(() => [
|
|
40311
|
-
w(
|
|
40314
|
+
w(Na, null, {
|
|
40312
40315
|
activator: W(({ props: L }) => [
|
|
40313
40316
|
w(Pe, ye(L, {
|
|
40314
40317
|
disabled: !x.value,
|
|
@@ -40361,7 +40364,7 @@ const JW = Ue({
|
|
|
40361
40364
|
})) : ee("", !0),
|
|
40362
40365
|
T.useTriggerList ? (N(), ce(Et, { key: 3 }, {
|
|
40363
40366
|
default: W(() => [
|
|
40364
|
-
w(
|
|
40367
|
+
w(Na, null, {
|
|
40365
40368
|
activator: W(({ props: L }) => [
|
|
40366
40369
|
w(Pe, ye(L, {
|
|
40367
40370
|
disabled: !x.value,
|
|
@@ -40414,7 +40417,7 @@ const JW = Ue({
|
|
|
40414
40417
|
})) : ee("", !0),
|
|
40415
40418
|
T.useCustomList ? (N(), ce(Et, { key: 5 }, {
|
|
40416
40419
|
default: W(() => [
|
|
40417
|
-
w(
|
|
40420
|
+
w(Na, null, {
|
|
40418
40421
|
activator: W(({ props: L }) => [
|
|
40419
40422
|
w(Pe, ye(L, {
|
|
40420
40423
|
disabled: !x.value,
|
|
@@ -40508,7 +40511,7 @@ const JW = Ue({
|
|
|
40508
40511
|
}), l = A(() => t.option.truncate == !0 && t.option.width != null ? `display: inline-block; width: ${t.option.width.includes("px") || t.option.width.includes("%") ? t.option.width : `${t.option.width}px`};` : "");
|
|
40509
40512
|
return (r, i) => {
|
|
40510
40513
|
const o = xn("bt-entity");
|
|
40511
|
-
return N(), ce(
|
|
40514
|
+
return N(), ce(ja, { group: "" }, {
|
|
40512
40515
|
default: W(() => [
|
|
40513
40516
|
r.option.prefix != null ? (N(), le("span", uj, Fe(r.option.prefix), 1)) : ee("", !0),
|
|
40514
40517
|
r.option.bool != null ? (N(), le("span", cj, [
|
|
@@ -42286,7 +42289,7 @@ const mU = /* @__PURE__ */ et({
|
|
|
42286
42289
|
default: W(({ isHovering: k, props: M }) => [
|
|
42287
42290
|
w(jr, ye({ class: "pa-0 ma-0" }, M), {
|
|
42288
42291
|
default: W(() => [
|
|
42289
|
-
_(
|
|
42292
|
+
_(Ba)(S.label) ? ee("", !0) : (N(), le("div", gU, Fe(S.label), 1)),
|
|
42290
42293
|
w(es, {
|
|
42291
42294
|
height: S.height,
|
|
42292
42295
|
src: f.value,
|
|
@@ -42726,7 +42729,7 @@ const IU = ["start", "end", "left", "right", "top", "bottom"], EU = Ue({
|
|
|
42726
42729
|
...Ca({
|
|
42727
42730
|
tag: "nav"
|
|
42728
42731
|
}),
|
|
42729
|
-
...
|
|
42732
|
+
...Ra()
|
|
42730
42733
|
}, "VNavigationDrawer"), VU = ot()({
|
|
42731
42734
|
name: "VNavigationDrawer",
|
|
42732
42735
|
props: EU(),
|
|
@@ -43143,7 +43146,7 @@ const IU = ["start", "end", "left", "right", "top", "bottom"], EU = Ue({
|
|
|
43143
43146
|
class: "ma-0 pa-0"
|
|
43144
43147
|
}, {
|
|
43145
43148
|
default: W(() => [
|
|
43146
|
-
w(
|
|
43149
|
+
w(ja, { "hide-on-leave": "" }, {
|
|
43147
43150
|
default: W(() => [
|
|
43148
43151
|
r.value ? (N(), ce(Pe, {
|
|
43149
43152
|
key: 0,
|
|
@@ -43382,7 +43385,7 @@ function WU(e, t, a, n, l, r) {
|
|
|
43382
43385
|
]),
|
|
43383
43386
|
default: W(() => [
|
|
43384
43387
|
je(" " + Fe(e.selection ?? e.selectedStr) + " ", 1),
|
|
43385
|
-
w(
|
|
43388
|
+
w(Na, ye({ activator: "parent" }, a.menuProps, {
|
|
43386
43389
|
"close-on-content-click": !e.multiple
|
|
43387
43390
|
}), {
|
|
43388
43391
|
default: W(() => [
|
|
@@ -43587,7 +43590,7 @@ const jU = /* @__PURE__ */ jf(HU, [["render", WU]]), UU = { class: "d-flex align
|
|
|
43587
43590
|
_: 1
|
|
43588
43591
|
}),
|
|
43589
43592
|
fe(x.$slots, "actionsRight"),
|
|
43590
|
-
x.showSettings ? (N(), ce(
|
|
43593
|
+
x.showSettings ? (N(), ce(Na, {
|
|
43591
43594
|
key: 0,
|
|
43592
43595
|
"offset-y": "",
|
|
43593
43596
|
"close-on-content-click": !1
|
|
@@ -43693,7 +43696,7 @@ const jU = /* @__PURE__ */ jf(HU, [["render", WU]]), UU = { class: "d-flex align
|
|
|
43693
43696
|
onClick: b[4] || (b[4] = (k) => g(null)),
|
|
43694
43697
|
subtitle: "(Select None)"
|
|
43695
43698
|
}, null, 8, ["density"])) : ee("", !0),
|
|
43696
|
-
w(
|
|
43699
|
+
w(ja, {
|
|
43697
43700
|
group: "",
|
|
43698
43701
|
"hide-on-leave": ""
|
|
43699
43702
|
}, {
|
|
@@ -43780,7 +43783,7 @@ const jU = /* @__PURE__ */ jf(HU, [["render", WU]]), UU = { class: "d-flex align
|
|
|
43780
43783
|
_: 1
|
|
43781
43784
|
}),
|
|
43782
43785
|
fe(x.$slots, "actionsRight"),
|
|
43783
|
-
x.showSettings ? (N(), ce(
|
|
43786
|
+
x.showSettings ? (N(), ce(Na, {
|
|
43784
43787
|
key: 0,
|
|
43785
43788
|
"offset-y": "",
|
|
43786
43789
|
"close-on-content-click": !1
|
|
@@ -44759,7 +44762,7 @@ const JU = /* @__PURE__ */ et({
|
|
|
44759
44762
|
}, {
|
|
44760
44763
|
default: W(() => [
|
|
44761
44764
|
fe(f.$slots, `${p.value}-top`, {}, () => [
|
|
44762
|
-
w(
|
|
44765
|
+
w(ja, { "hide-on-leave": "" }, {
|
|
44763
44766
|
default: W(() => [
|
|
44764
44767
|
!f.hideHeader && !p.hideHeader ? (N(), ce(Yr, {
|
|
44765
44768
|
key: 0,
|
|
@@ -44949,7 +44952,7 @@ const iY = Ue({
|
|
|
44949
44952
|
...Al(),
|
|
44950
44953
|
...ru(),
|
|
44951
44954
|
...Ca(),
|
|
44952
|
-
...
|
|
44955
|
+
...Ra()
|
|
44953
44956
|
}, "VRating"), E2 = ot()({
|
|
44954
44957
|
name: "VRating",
|
|
44955
44958
|
props: iY(),
|
|
@@ -45363,7 +45366,7 @@ const dY = Ue({
|
|
|
45363
45366
|
hideDialogTemporarily: i,
|
|
45364
45367
|
menuRouteName: o,
|
|
45365
45368
|
tab: s
|
|
45366
|
-
} = oP(), c = Df(), u = G([]), d = G([]), m = G(!1), f = G(), g = G(), p = G(), { sendAsync: h } = jP(), { xs: y } = Ki(), v = A(() => !
|
|
45369
|
+
} = oP(), c = Df(), u = G([]), d = G([]), m = G(!1), f = G(), g = G(), p = G(), { sendAsync: h } = jP(), { xs: y } = Ki(), v = A(() => !Ba(g.value) || f.value != null);
|
|
45367
45370
|
async function S() {
|
|
45368
45371
|
try {
|
|
45369
45372
|
var k = await h({
|
|
@@ -45390,7 +45393,7 @@ const dY = Ue({
|
|
|
45390
45393
|
var k, M;
|
|
45391
45394
|
c.name != null && (u.value = n((k = c.name) == null ? void 0 : k.toString(), t.tags).sort(dl.firstBy((C) => C.sort ?? 0)) ?? [], d.value = l((M = c.name) == null ? void 0 : M.toString(), t.tags).sort(dl.firstBy((C) => C.sort ?? 0)) ?? [], a(c.name) && (m.value = !0));
|
|
45392
45395
|
}), (k, M) => (N(), le("div", null, [
|
|
45393
|
-
_(Tt)(u.value) || _(Tt)(d.value) ? (N(), ce(
|
|
45396
|
+
_(Tt)(u.value) || _(Tt)(d.value) ? (N(), ce(Na, {
|
|
45394
45397
|
key: 0,
|
|
45395
45398
|
"max-width": "450",
|
|
45396
45399
|
"close-on-content-click": !1
|
|
@@ -45984,7 +45987,7 @@ const dY = Ue({
|
|
|
45984
45987
|
setup(e) {
|
|
45985
45988
|
const t = G(!1), a = G({}), n = G({}), l = G("number"), r = G(""), i = G(""), o = A(() => r.value != null && r.value.length > 0 && !Number.isNaN(r.value)), s = A(() => {
|
|
45986
45989
|
var v;
|
|
45987
|
-
if (
|
|
45990
|
+
if (Ba(i.value))
|
|
45988
45991
|
return !1;
|
|
45989
45992
|
if (Tt(n.value.rules)) {
|
|
45990
45993
|
let S;
|
|
@@ -46008,7 +46011,7 @@ const dY = Ue({
|
|
|
46008
46011
|
{ cols: 4, num: 7 },
|
|
46009
46012
|
{ cols: 4, num: 8 },
|
|
46010
46013
|
{ cols: 4, num: 9 },
|
|
46011
|
-
{ cols: 4, num: void 0, icon: "$backspace", disabled:
|
|
46014
|
+
{ cols: 4, num: void 0, icon: "$backspace", disabled: Ba(r.value) },
|
|
46012
46015
|
{ cols: 4, num: 0 },
|
|
46013
46016
|
{ cols: 2, num: "-", disabled: a.value.showNegative == !1 },
|
|
46014
46017
|
{ cols: 2, num: ".", disabled: a.value.showDecimal == !1 }
|
|
@@ -46286,10 +46289,10 @@ const dY = Ue({
|
|
|
46286
46289
|
}), r = G(), i = A(() => {
|
|
46287
46290
|
var c, u;
|
|
46288
46291
|
var s = [];
|
|
46289
|
-
return ((c = r.value) == null ? void 0 : c.isRequired) == !0 && s.push((d) => !!d || "Required"), ((u = r.value) == null ? void 0 : u.type) == "email" && s.push((d) =>
|
|
46292
|
+
return ((c = r.value) == null ? void 0 : c.isRequired) == !0 && s.push((d) => !!d || "Required"), ((u = r.value) == null ? void 0 : u.type) == "email" && s.push((d) => Ba(d) || /^[a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+@[a-zA-Z0-9-]+(?:\.[a-zA-Z0-9-]+)*$/.test(d) || "Invalid Email"), s;
|
|
46290
46293
|
});
|
|
46291
46294
|
function o() {
|
|
46292
|
-
r.value != null && (r.value.isSubmitButton ? a("onSubmit") :
|
|
46295
|
+
r.value != null && (r.value.isSubmitButton ? a("onSubmit") : Ba(r.value.url) || window.open(r.value.url, "_blank"));
|
|
46293
46296
|
}
|
|
46294
46297
|
return _e(() => n.field, (s) => {
|
|
46295
46298
|
r.value = s;
|
|
@@ -46304,9 +46307,9 @@ const dY = Ue({
|
|
|
46304
46307
|
ripple: !1
|
|
46305
46308
|
}, {
|
|
46306
46309
|
default: W(() => [
|
|
46307
|
-
_(
|
|
46310
|
+
_(Ba)(r.value.description) ? ee("", !0) : (N(), le("div", CY, Fe(r.value.description), 1)),
|
|
46308
46311
|
r.value.type == "info" ? (N(), le("div", MY, [
|
|
46309
|
-
_(
|
|
46312
|
+
_(Ba)(r.value.description) ? (N(), le("div", _Y, "[Select and write text in description]")) : ee("", !0)
|
|
46310
46313
|
])) : r.value.type == "short-text" || r.value.type == "email" || r.value.type == "phone" ? (N(), le("div", TY, [
|
|
46311
46314
|
w(Ka, {
|
|
46312
46315
|
class: "py-2",
|
|
@@ -46361,7 +46364,7 @@ const dY = Ue({
|
|
|
46361
46364
|
}, null, 8, ["isEditing", "label", "modelValue"])
|
|
46362
46365
|
])) : r.value.type == "button" ? (N(), le("div", EY, [
|
|
46363
46366
|
w(Pe, {
|
|
46364
|
-
"append-icon": !r.value.isSubmitButton && !_(
|
|
46367
|
+
"append-icon": !r.value.isSubmitButton && !_(Ba)(r.value.url) ? "$open-in-new" : void 0,
|
|
46365
46368
|
onClick: o,
|
|
46366
46369
|
color: "primary",
|
|
46367
46370
|
disabled: !s.isEditing,
|
|
@@ -46490,7 +46493,7 @@ const dY = Ue({
|
|
|
46490
46493
|
ae("div", VY, Fe(h.label ?? h.schema.title), 1),
|
|
46491
46494
|
w(ma),
|
|
46492
46495
|
fe(h.$slots, "form-toolbar-right"),
|
|
46493
|
-
w(
|
|
46496
|
+
w(ja, null, {
|
|
46494
46497
|
default: W(() => [
|
|
46495
46498
|
r.value && h.canSaveProgress !== !1 ? (N(), ce(Pe, {
|
|
46496
46499
|
key: 0,
|
|
@@ -46666,7 +46669,7 @@ const dY = Ue({
|
|
|
46666
46669
|
ae("div", FY, Fe(h.label ?? h.schema.title), 1),
|
|
46667
46670
|
w(ma),
|
|
46668
46671
|
fe(h.$slots, "form-toolbar-right"),
|
|
46669
|
-
w(
|
|
46672
|
+
w(ja, null, {
|
|
46670
46673
|
default: W(() => [
|
|
46671
46674
|
r.value && h.canSaveProgress !== !1 ? (N(), ce(Pe, {
|
|
46672
46675
|
key: 0,
|
|
@@ -46696,7 +46699,7 @@ const dY = Ue({
|
|
|
46696
46699
|
w(S, { errorMsg: c.value }, null, 8, ["errorMsg"]),
|
|
46697
46700
|
w(x, { loadingMsg: d.value }, null, 8, ["loadingMsg"]),
|
|
46698
46701
|
(N(!0), le(Me, null, Ge(h.schema.slides, (k, M) => (N(), le("div", { key: M }, [
|
|
46699
|
-
_(
|
|
46702
|
+
_(Ba)(k.name) ? ee("", !0) : (N(), le("div", zY, [
|
|
46700
46703
|
w(lr, { style: { "max-width": "50px" } }),
|
|
46701
46704
|
ae("div", OY, Fe(k.name), 1),
|
|
46702
46705
|
w(lr)
|
|
@@ -46794,7 +46797,7 @@ const dY = Ue({
|
|
|
46794
46797
|
ae("div", jY, Fe(h.label ?? h.schema.title), 1),
|
|
46795
46798
|
w(ma),
|
|
46796
46799
|
fe(h.$slots, "form-toolbar-right"),
|
|
46797
|
-
w(
|
|
46800
|
+
w(ja, null, {
|
|
46798
46801
|
default: W(() => [
|
|
46799
46802
|
r.value && h.canSaveProgress !== !1 ? (N(), ce(Pe, {
|
|
46800
46803
|
key: 0,
|
|
@@ -52938,15 +52941,15 @@ var e5 = { exports: {} };
|
|
|
52938
52941
|
}
|
|
52939
52942
|
var St = new d(function(kt, jt) {
|
|
52940
52943
|
var zt = s.open(F.name, Ae);
|
|
52941
|
-
zt.onerror = function(
|
|
52944
|
+
zt.onerror = function(za) {
|
|
52942
52945
|
var ao = zt.result;
|
|
52943
|
-
ao.close(), jt(
|
|
52946
|
+
ao.close(), jt(za);
|
|
52944
52947
|
}, zt.onupgradeneeded = function() {
|
|
52945
|
-
var
|
|
52946
|
-
|
|
52948
|
+
var za = zt.result;
|
|
52949
|
+
za.deleteObjectStore(F.storeName);
|
|
52947
52950
|
}, zt.onsuccess = function() {
|
|
52948
|
-
var
|
|
52949
|
-
|
|
52951
|
+
var za = zt.result;
|
|
52952
|
+
za.close(), kt(za);
|
|
52950
52953
|
};
|
|
52951
52954
|
});
|
|
52952
52955
|
return St.then(function(kt) {
|
|
@@ -53309,8 +53312,8 @@ var e5 = { exports: {} };
|
|
|
53309
53312
|
return new d(function(kt, jt) {
|
|
53310
53313
|
Ae.executeSql("DROP TABLE IF EXISTS " + St, [], function() {
|
|
53311
53314
|
kt();
|
|
53312
|
-
}, function(zt,
|
|
53313
|
-
jt(
|
|
53315
|
+
}, function(zt, za) {
|
|
53316
|
+
jt(za);
|
|
53314
53317
|
});
|
|
53315
53318
|
});
|
|
53316
53319
|
}
|
|
@@ -53575,8 +53578,8 @@ var e5 = { exports: {} };
|
|
|
53575
53578
|
var sd = new Error("Method " + Dp + " is not implemented by the current driver"), Ap = d.reject(sd);
|
|
53576
53579
|
return m(Ap, arguments[arguments.length - 1]), Ap;
|
|
53577
53580
|
};
|
|
53578
|
-
},
|
|
53579
|
-
var vs = to[
|
|
53581
|
+
}, za = 0, ao = to.length; za < ao; za++) {
|
|
53582
|
+
var vs = to[za];
|
|
53580
53583
|
X[vs] || (X[vs] = zt(vs));
|
|
53581
53584
|
}
|
|
53582
53585
|
};
|
|
@@ -55174,7 +55177,7 @@ const bK = Ye({
|
|
|
55174
55177
|
reset: [Number, String],
|
|
55175
55178
|
root: [Boolean, String],
|
|
55176
55179
|
scoped: Boolean
|
|
55177
|
-
}, "VDefaultsProvider"),
|
|
55180
|
+
}, "VDefaultsProvider"), Fa = dt(!1)({
|
|
55178
55181
|
name: "VDefaultsProvider",
|
|
55179
55182
|
props: bK(),
|
|
55180
55183
|
setup(e, t) {
|
|
@@ -55828,7 +55831,7 @@ const DK = Ye({
|
|
|
55828
55831
|
}, n.value, l.value, r.value, s.value, c.value, u.value, o.value, e.class],
|
|
55829
55832
|
style: [i.value, d.value, e.style]
|
|
55830
55833
|
}, {
|
|
55831
|
-
default: () => [a.default ? w(
|
|
55834
|
+
default: () => [a.default ? w(Fa, {
|
|
55832
55835
|
key: "content-defaults",
|
|
55833
55836
|
defaults: {
|
|
55834
55837
|
VImg: {
|
|
@@ -56923,7 +56926,7 @@ const td = {
|
|
|
56923
56926
|
return [Jc(!0, "v-btn"), !e.icon && $ && w("span", {
|
|
56924
56927
|
key: "prepend",
|
|
56925
56928
|
class: "v-btn__prepend"
|
|
56926
|
-
}, [n.prepend ? w(
|
|
56929
|
+
}, [n.prepend ? w(Fa, {
|
|
56927
56930
|
key: "prepend-defaults",
|
|
56928
56931
|
disabled: !e.prependIcon,
|
|
56929
56932
|
defaults: {
|
|
@@ -56940,7 +56943,7 @@ const td = {
|
|
|
56940
56943
|
}, [!n.default && I ? w(dn, {
|
|
56941
56944
|
key: "content-icon",
|
|
56942
56945
|
icon: e.icon
|
|
56943
|
-
}, null) : w(
|
|
56946
|
+
}, null) : w(Fa, {
|
|
56944
56947
|
key: "content-defaults",
|
|
56945
56948
|
disabled: !I,
|
|
56946
56949
|
defaults: {
|
|
@@ -56956,7 +56959,7 @@ const td = {
|
|
|
56956
56959
|
})]), !e.icon && P && w("span", {
|
|
56957
56960
|
key: "append",
|
|
56958
56961
|
class: "v-btn__append"
|
|
56959
|
-
}, [n.append ? w(
|
|
56962
|
+
}, [n.append ? w(Fa, {
|
|
56960
56963
|
key: "append-defaults",
|
|
56961
56964
|
disabled: !e.appendIcon,
|
|
56962
56965
|
defaults: {
|
|
@@ -57046,7 +57049,7 @@ const td = {
|
|
|
57046
57049
|
}, [r && w("div", {
|
|
57047
57050
|
key: "prepend",
|
|
57048
57051
|
class: "v-card-item__prepend"
|
|
57049
|
-
}, [a.prepend ? w(
|
|
57052
|
+
}, [a.prepend ? w(Fa, {
|
|
57050
57053
|
key: "prepend-defaults",
|
|
57051
57054
|
disabled: !l,
|
|
57052
57055
|
defaults: {
|
|
@@ -57086,7 +57089,7 @@ const td = {
|
|
|
57086
57089
|
}), (n = a.default) == null ? void 0 : n.call(a)]), o && w("div", {
|
|
57087
57090
|
key: "append",
|
|
57088
57091
|
class: "v-card-item__append"
|
|
57089
|
-
}, [a.append ? w(
|
|
57092
|
+
}, [a.append ? w(Fa, {
|
|
57090
57093
|
key: "append-defaults",
|
|
57091
57094
|
disabled: !i,
|
|
57092
57095
|
defaults: {
|
|
@@ -57216,7 +57219,7 @@ dt()({
|
|
|
57216
57219
|
return [T && w("div", {
|
|
57217
57220
|
key: "image",
|
|
57218
57221
|
class: "v-card__image"
|
|
57219
|
-
}, [n.image ? w(
|
|
57222
|
+
}, [n.image ? w(Fa, {
|
|
57220
57223
|
key: "image-defaults",
|
|
57221
57224
|
disabled: !e.image,
|
|
57222
57225
|
defaults: {
|
|
@@ -58769,7 +58772,7 @@ const BX = Qi({
|
|
|
58769
58772
|
}, e.class],
|
|
58770
58773
|
style: e.style
|
|
58771
58774
|
}, {
|
|
58772
|
-
default: () => [a.activator && w(
|
|
58775
|
+
default: () => [a.activator && w(Fa, {
|
|
58773
58776
|
defaults: m.value
|
|
58774
58777
|
}, {
|
|
58775
58778
|
default: () => [w(BX, null, {
|
|
@@ -58956,7 +58959,7 @@ const BX = Qi({
|
|
|
58956
58959
|
return [Jc(k.value || S.value, "v-list-item"), xe && w("div", {
|
|
58957
58960
|
key: "prepend",
|
|
58958
58961
|
class: "v-list-item__prepend"
|
|
58959
|
-
}, [n.prepend ? w(
|
|
58962
|
+
}, [n.prepend ? w(Fa, {
|
|
58960
58963
|
key: "prepend-defaults",
|
|
58961
58964
|
disabled: !me,
|
|
58962
58965
|
defaults: {
|
|
@@ -59011,7 +59014,7 @@ const BX = Qi({
|
|
|
59011
59014
|
}), (pe = n.default) == null ? void 0 : pe.call(n, O.value)]), te && w("div", {
|
|
59012
59015
|
key: "append",
|
|
59013
59016
|
class: "v-list-item__append"
|
|
59014
|
-
}, [n.append ? w(
|
|
59017
|
+
}, [n.append ? w(Fa, {
|
|
59015
59018
|
key: "append-defaults",
|
|
59016
59019
|
disabled: !B,
|
|
59017
59020
|
defaults: {
|
|
@@ -60497,7 +60500,7 @@ const mw = Ye({
|
|
|
60497
60500
|
default: function() {
|
|
60498
60501
|
for (var y = arguments.length, v = new Array(y), S = 0; S < y; S++)
|
|
60499
60502
|
v[S] = arguments[S];
|
|
60500
|
-
return w(
|
|
60503
|
+
return w(Fa, {
|
|
60501
60504
|
root: "VMenu"
|
|
60502
60505
|
}, {
|
|
60503
60506
|
default: () => {
|
|
@@ -61179,7 +61182,7 @@ const CQ = ["underlined", "outlined", "filled", "solo", "solo-inverted", "solo-f
|
|
|
61179
61182
|
onMousedown: (U) => {
|
|
61180
61183
|
U.preventDefault(), U.stopPropagation();
|
|
61181
61184
|
}
|
|
61182
|
-
}, [w(
|
|
61185
|
+
}, [w(Fa, {
|
|
61183
61186
|
defaults: {
|
|
61184
61187
|
VIcon: {
|
|
61185
61188
|
icon: e.clearIcon
|
|
@@ -62012,7 +62015,7 @@ dt()({
|
|
|
62012
62015
|
}, null), b && w("div", {
|
|
62013
62016
|
key: "prepend",
|
|
62014
62017
|
class: "v-alert__prepend"
|
|
62015
|
-
}, [n.prepend ? w(
|
|
62018
|
+
}, [n.prepend ? w(Fa, {
|
|
62016
62019
|
key: "prepend-defaults",
|
|
62017
62020
|
disabled: !r.value,
|
|
62018
62021
|
defaults: {
|
|
@@ -62042,7 +62045,7 @@ dt()({
|
|
|
62042
62045
|
}, [n.append()]), M && w("div", {
|
|
62043
62046
|
key: "close",
|
|
62044
62047
|
class: "v-alert__close"
|
|
62045
|
-
}, [n.close ? w(
|
|
62048
|
+
}, [n.close ? w(Fa, {
|
|
62046
62049
|
key: "close-defaults",
|
|
62047
62050
|
defaults: {
|
|
62048
62051
|
VBtn: {
|
|
@@ -62168,7 +62171,7 @@ dt()({
|
|
|
62168
62171
|
default: () => [h && w("div", {
|
|
62169
62172
|
key: "image",
|
|
62170
62173
|
class: "v-toolbar__image"
|
|
62171
|
-
}, [n.image ? w(
|
|
62174
|
+
}, [n.image ? w(Fa, {
|
|
62172
62175
|
key: "image-defaults",
|
|
62173
62176
|
disabled: !e.image,
|
|
62174
62177
|
defaults: {
|
|
@@ -62181,7 +62184,7 @@ dt()({
|
|
|
62181
62184
|
key: "image-img",
|
|
62182
62185
|
cover: !0,
|
|
62183
62186
|
src: e.image
|
|
62184
|
-
}, null)]), w(
|
|
62187
|
+
}, null)]), w(Fa, {
|
|
62185
62188
|
defaults: {
|
|
62186
62189
|
VTabs: {
|
|
62187
62190
|
height: wt(m.value)
|
|
@@ -62206,7 +62209,7 @@ dt()({
|
|
|
62206
62209
|
class: "v-toolbar__append"
|
|
62207
62210
|
}, [(x = n.append) == null ? void 0 : x.call(n)])])];
|
|
62208
62211
|
}
|
|
62209
|
-
}), w(
|
|
62212
|
+
}), w(Fa, {
|
|
62210
62213
|
defaults: {
|
|
62211
62214
|
VTabs: {
|
|
62212
62215
|
height: wt(f.value)
|
|
@@ -63900,7 +63903,7 @@ dt()({
|
|
|
63900
63903
|
default: function() {
|
|
63901
63904
|
for (var f = arguments.length, g = new Array(f), p = 0; p < f; p++)
|
|
63902
63905
|
g[p] = arguments[p];
|
|
63903
|
-
return w(
|
|
63906
|
+
return w(Fa, {
|
|
63904
63907
|
root: "VDialog"
|
|
63905
63908
|
}, {
|
|
63906
63909
|
default: () => {
|
|
@@ -67214,7 +67217,7 @@ const tae = (e, t) => e == null ? void 0 : e.querySelector(`[data-dp-element="${
|
|
|
67214
67217
|
setMenuFocused: e,
|
|
67215
67218
|
setShiftKey: t
|
|
67216
67219
|
};
|
|
67217
|
-
},
|
|
67220
|
+
}, Ha = Ea({
|
|
67218
67221
|
monthYear: [],
|
|
67219
67222
|
calendar: [],
|
|
67220
67223
|
time: [],
|
|
@@ -67226,12 +67229,12 @@ const tae = (e, t) => e == null ? void 0 : e.querySelector(`[data-dp-element="${
|
|
|
67226
67229
|
},
|
|
67227
67230
|
monthPicker: []
|
|
67228
67231
|
}), Ug = G(null), Wv = G(!1), Yg = G(!1), qg = G(!1), Gg = G(!1), ll = G(0), Mn = G(0), us = () => {
|
|
67229
|
-
const e = A(() => Wv.value ? [...
|
|
67230
|
-
...
|
|
67231
|
-
...
|
|
67232
|
+
const e = A(() => Wv.value ? [...Ha.selectionGrid, Ha.actionRow].filter((d) => d.length) : Yg.value ? [
|
|
67233
|
+
...Ha.timePicker[0],
|
|
67234
|
+
...Ha.timePicker[1],
|
|
67232
67235
|
Gg.value ? [] : [Ug.value],
|
|
67233
|
-
|
|
67234
|
-
].filter((d) => d.length) : qg.value ? [...
|
|
67236
|
+
Ha.actionRow
|
|
67237
|
+
].filter((d) => d.length) : qg.value ? [...Ha.monthPicker, Ha.actionRow] : [Ha.monthYear, ...Ha.calendar, Ha.time, Ha.actionRow].filter((d) => d.length)), t = (d) => {
|
|
67235
67238
|
ll.value = d ? ll.value + 1 : ll.value - 1;
|
|
67236
67239
|
let m = null;
|
|
67237
67240
|
e.value[Mn.value] && (m = e.value[Mn.value][ll.value]), !m && e.value[Mn.value + (d ? 1 : -1)] ? (Mn.value = Mn.value + (d ? 1 : -1), ll.value = d ? 0 : e.value[Mn.value].length - 1) : m || (ll.value = d ? ll.value - 1 : ll.value + 1);
|
|
@@ -67249,9 +67252,9 @@ const tae = (e, t) => e == null ? void 0 : e.querySelector(`[data-dp-element="${
|
|
|
67249
67252
|
}, o = () => {
|
|
67250
67253
|
a(!0), n(!0);
|
|
67251
67254
|
}, s = (d, m) => {
|
|
67252
|
-
|
|
67255
|
+
Ha[m] = d;
|
|
67253
67256
|
}, c = (d, m) => {
|
|
67254
|
-
|
|
67257
|
+
Ha[m] = d;
|
|
67255
67258
|
}, u = () => {
|
|
67256
67259
|
ll.value = 0, Mn.value = 0;
|
|
67257
67260
|
};
|
|
@@ -67262,25 +67265,25 @@ const tae = (e, t) => e == null ? void 0 : e.querySelector(`[data-dp-element="${
|
|
|
67262
67265
|
Ug.value = d;
|
|
67263
67266
|
},
|
|
67264
67267
|
setSelectionGrid: (d) => {
|
|
67265
|
-
Wv.value = d, u(), d || (
|
|
67268
|
+
Wv.value = d, u(), d || (Ha.selectionGrid = []);
|
|
67266
67269
|
},
|
|
67267
67270
|
setTimePicker: (d, m = !1) => {
|
|
67268
|
-
Yg.value = d, Gg.value = m, u(), d || (
|
|
67271
|
+
Yg.value = d, Gg.value = m, u(), d || (Ha.timePicker[0] = [], Ha.timePicker[1] = []);
|
|
67269
67272
|
},
|
|
67270
67273
|
setTimePickerElements: (d, m = 0) => {
|
|
67271
|
-
|
|
67274
|
+
Ha.timePicker[m] = d;
|
|
67272
67275
|
},
|
|
67273
67276
|
arrowRight: l,
|
|
67274
67277
|
arrowLeft: r,
|
|
67275
67278
|
arrowUp: i,
|
|
67276
67279
|
arrowDown: o,
|
|
67277
67280
|
clearArrowNav: () => {
|
|
67278
|
-
|
|
67281
|
+
Ha.monthYear = [], Ha.calendar = [], Ha.time = [], Ha.actionRow = [], Ha.selectionGrid = [], Ha.timePicker[0] = [], Ha.timePicker[1] = [], Wv.value = !1, Yg.value = !1, Gg.value = !1, qg.value = !1, u(), Ug.value = null;
|
|
67279
67282
|
},
|
|
67280
67283
|
setMonthPicker: (d) => {
|
|
67281
67284
|
qg.value = d, u();
|
|
67282
67285
|
},
|
|
67283
|
-
refSets:
|
|
67286
|
+
refSets: Ha
|
|
67284
67287
|
// exposed for testing
|
|
67285
67288
|
};
|
|
67286
67289
|
}, gC = (e) => ({
|
|
@@ -72246,7 +72249,7 @@ dt()({
|
|
|
72246
72249
|
"v-switch__thumb--filled": I || e.loading
|
|
72247
72250
|
}, e.inset || d ? void 0 : E.value],
|
|
72248
72251
|
style: e.inset ? void 0 : R.value
|
|
72249
|
-
}, [n.thumb ? w(
|
|
72252
|
+
}, [n.thumb ? w(Fa, {
|
|
72250
72253
|
defaults: {
|
|
72251
72254
|
VIcon: {
|
|
72252
72255
|
icon: I,
|
|
@@ -72779,7 +72782,7 @@ const ile = Ye({
|
|
|
72779
72782
|
}, {
|
|
72780
72783
|
default: () => [Rt(w("div", {
|
|
72781
72784
|
class: "v-chip__filter"
|
|
72782
|
-
}, [l.filter ? w(
|
|
72785
|
+
}, [l.filter ? w(Fa, {
|
|
72783
72786
|
key: "filter-defaults",
|
|
72784
72787
|
disabled: !e.filterIcon,
|
|
72785
72788
|
defaults: {
|
|
@@ -72794,7 +72797,7 @@ const ile = Ye({
|
|
|
72794
72797
|
}), I && w("div", {
|
|
72795
72798
|
key: "prepend",
|
|
72796
72799
|
class: "v-chip__prepend"
|
|
72797
|
-
}, [l.prepend ? w(
|
|
72800
|
+
}, [l.prepend ? w(Fa, {
|
|
72798
72801
|
key: "prepend-defaults",
|
|
72799
72802
|
disabled: !P,
|
|
72800
72803
|
defaults: {
|
|
@@ -72828,7 +72831,7 @@ const ile = Ye({
|
|
|
72828
72831
|
})) ?? e.text]), D && w("div", {
|
|
72829
72832
|
key: "append",
|
|
72830
72833
|
class: "v-chip__append"
|
|
72831
|
-
}, [l.append ? w(
|
|
72834
|
+
}, [l.append ? w(Fa, {
|
|
72832
72835
|
key: "append-defaults",
|
|
72833
72836
|
disabled: !T,
|
|
72834
72837
|
defaults: {
|
|
@@ -72854,7 +72857,7 @@ const ile = Ye({
|
|
|
72854
72857
|
class: "v-chip__close",
|
|
72855
72858
|
type: "button",
|
|
72856
72859
|
"data-testid": "close-chip"
|
|
72857
|
-
}, x.value), [l.close ? w(
|
|
72860
|
+
}, x.value), [l.close ? w(Fa, {
|
|
72858
72861
|
key: "close-defaults",
|
|
72859
72862
|
defaults: {
|
|
72860
72863
|
VIcon: {
|
|
@@ -73492,7 +73495,7 @@ dt()({
|
|
|
73492
73495
|
return w("div", {
|
|
73493
73496
|
key: H.value,
|
|
73494
73497
|
class: "v-select__selection"
|
|
73495
|
-
}, [K ? a.chip ? w(
|
|
73498
|
+
}, [K ? a.chip ? w(Fa, {
|
|
73496
73499
|
key: "chip-defaults",
|
|
73497
73500
|
defaults: {
|
|
73498
73501
|
VChip: {
|
|
@@ -73953,7 +73956,7 @@ dt()({
|
|
|
73953
73956
|
key: ue.value,
|
|
73954
73957
|
class: ["v-combobox__selection", Se === g.value && ["v-combobox__selection--selected", b.value]],
|
|
73955
73958
|
style: Se === g.value ? k.value : {}
|
|
73956
|
-
}, [T.value ? l.chip ? w(
|
|
73959
|
+
}, [T.value ? l.chip ? w(Fa, {
|
|
73957
73960
|
key: "chip-defaults",
|
|
73958
73961
|
defaults: {
|
|
73959
73962
|
VChip: {
|
|
@@ -76067,7 +76070,7 @@ dt()({
|
|
|
76067
76070
|
return [O && w("div", {
|
|
76068
76071
|
key: "image",
|
|
76069
76072
|
class: "v-navigation-drawer__img"
|
|
76070
|
-
}, [l.image ? w(
|
|
76073
|
+
}, [l.image ? w(Fa, {
|
|
76071
76074
|
key: "image-defaults",
|
|
76072
76075
|
disabled: !e.image,
|
|
76073
76076
|
defaults: {
|
|
@@ -78337,7 +78340,7 @@ const mie = Ue({
|
|
|
78337
78340
|
},
|
|
78338
78341
|
...Dr(),
|
|
78339
78342
|
...cr(),
|
|
78340
|
-
...
|
|
78343
|
+
...Ra()
|
|
78341
78344
|
}, "VSkeletonLoader"), hie = ot()({
|
|
78342
78345
|
name: "VSkeletonLoader",
|
|
78343
78346
|
props: mie(),
|
|
@@ -78544,7 +78547,7 @@ const mie = Ue({
|
|
|
78544
78547
|
default: W(() => [
|
|
78545
78548
|
ae("div", Sie, [
|
|
78546
78549
|
ae("div", Cie, [
|
|
78547
|
-
w(
|
|
78550
|
+
w(ja, null, {
|
|
78548
78551
|
default: W(() => [
|
|
78549
78552
|
K ? (N(), le("div", Mie, [
|
|
78550
78553
|
w(Pe, {
|
|
@@ -78623,7 +78626,7 @@ const mie = Ue({
|
|
|
78623
78626
|
}, 1032, ["items", "onReorder"])
|
|
78624
78627
|
])) : ee("", !0),
|
|
78625
78628
|
V.canEdit !== !1 ? (N(), le("div", Die, [
|
|
78626
|
-
w(
|
|
78629
|
+
w(Na, { "z-index": "2500" }, {
|
|
78627
78630
|
activator: W(({ props: O }) => [
|
|
78628
78631
|
w(Pe, ye({
|
|
78629
78632
|
class: "mx-auto",
|
|
@@ -78846,7 +78849,7 @@ const mie = Ue({
|
|
|
78846
78849
|
])),
|
|
78847
78850
|
_: 1
|
|
78848
78851
|
})) : ee("", !0),
|
|
78849
|
-
w(
|
|
78852
|
+
w(ja, { "hide-on-leave": "" }, {
|
|
78850
78853
|
default: W(() => [
|
|
78851
78854
|
_(b).useBgSrc && I.imgProps != null ? (N(), le("div", Oie, [
|
|
78852
78855
|
w(JA, ye(I.imgProps, {
|
|
@@ -78903,7 +78906,7 @@ const mie = Ue({
|
|
|
78903
78906
|
}, Kt({
|
|
78904
78907
|
"form-toolbar-right": W(() => [
|
|
78905
78908
|
ae("div", Hie, [
|
|
78906
|
-
w(
|
|
78909
|
+
w(Na, null, {
|
|
78907
78910
|
activator: W(({ props: V }) => [
|
|
78908
78911
|
w(Pe, ye({
|
|
78909
78912
|
icon: "$view-carousel",
|
|
@@ -78941,7 +78944,7 @@ const mie = Ue({
|
|
|
78941
78944
|
]),
|
|
78942
78945
|
_: 1
|
|
78943
78946
|
}),
|
|
78944
|
-
w(
|
|
78947
|
+
w(Na, { "close-on-content-click": !1 }, {
|
|
78945
78948
|
activator: W(({ props: V }) => [
|
|
78946
78949
|
w(Pe, ye({
|
|
78947
78950
|
class: "ml-1",
|
|
@@ -78973,7 +78976,7 @@ const mie = Ue({
|
|
|
78973
78976
|
]),
|
|
78974
78977
|
_: 1
|
|
78975
78978
|
}),
|
|
78976
|
-
w(
|
|
78979
|
+
w(Na, { "close-on-content-click": !1 }, {
|
|
78977
78980
|
activator: W(({ props: V }) => [
|
|
78978
78981
|
w(Pe, ye({
|
|
78979
78982
|
class: "ml-1",
|
|
@@ -79129,7 +79132,7 @@ export {
|
|
|
79129
79132
|
LL as isArrayOfLength,
|
|
79130
79133
|
Tt as isLengthyArray,
|
|
79131
79134
|
PL as isMinDate,
|
|
79132
|
-
|
|
79135
|
+
Ba as isNullOrEmpty,
|
|
79133
79136
|
BL as isSameDownToHour,
|
|
79134
79137
|
_L as jwtDecrypt,
|
|
79135
79138
|
TL as jwtEncrypt,
|