bt-core-app 2.0.10 → 2.0.11
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 +235 -239
- 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(),
|
|
@@ -27687,7 +27683,7 @@ const DR = ci({
|
|
|
27687
27683
|
function r() {
|
|
27688
27684
|
n("update:modelValue", l.value), n("change", l.value);
|
|
27689
27685
|
}
|
|
27690
|
-
return (i, o) => (N(), ce(
|
|
27686
|
+
return (i, o) => (N(), ce(Na, { "close-on-content-click": !1 }, {
|
|
27691
27687
|
activator: W(({ props: s }) => [
|
|
27692
27688
|
w(Pe, ye({
|
|
27693
27689
|
color: i.color,
|
|
@@ -27779,7 +27775,7 @@ const DR = ci({
|
|
|
27779
27775
|
function r(i) {
|
|
27780
27776
|
l.value != null && (l.value.primary = i.primary, l.value.secondary = i.secondary, l.value.accent = i.accent, n.resetCosmetics(!1));
|
|
27781
27777
|
}
|
|
27782
|
-
return (i, o) => (N(), ce(
|
|
27778
|
+
return (i, o) => (N(), ce(Na, { "close-on-content-click": !1 }, {
|
|
27783
27779
|
activator: W(({ props: s }) => [
|
|
27784
27780
|
w(Pe, ye({
|
|
27785
27781
|
icon: "$theme-light-dark",
|
|
@@ -28341,7 +28337,7 @@ const DR = ci({
|
|
|
28341
28337
|
filter: "toDayShortDateAndTime",
|
|
28342
28338
|
value: M.dateTrigger
|
|
28343
28339
|
}, null, 8, ["class", "value"]),
|
|
28344
|
-
w(
|
|
28340
|
+
w(ja, { "hide-on-leave": "" }, {
|
|
28345
28341
|
default: W(() => [
|
|
28346
28342
|
M.isAdjusting ? (N(), le("div", OR, [
|
|
28347
28343
|
w(Hn, {
|
|
@@ -31704,7 +31700,7 @@ const Wl = (e, t) => t ? new Date(e.toLocaleString("en-US", { timeZone: t })) :
|
|
|
31704
31700
|
};
|
|
31705
31701
|
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
31702
|
const iO = ["timestamp", "date", "iso"];
|
|
31707
|
-
var xl = /* @__PURE__ */ ((e) => (e.up = "up", e.down = "down", e.left = "left", e.right = "right", e))(xl || {}),
|
|
31703
|
+
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
31704
|
function Xk(e) {
|
|
31709
31705
|
return (t) => {
|
|
31710
31706
|
const a = new Intl.DateTimeFormat(e, {
|
|
@@ -31818,7 +31814,7 @@ function vO(e, t) {
|
|
|
31818
31814
|
return a[n + (t ? -1 : 1)];
|
|
31819
31815
|
}
|
|
31820
31816
|
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 ===
|
|
31817
|
+
if (e.key === Wa.enter || e.key === Wa.space)
|
|
31822
31818
|
return a && e.preventDefault(), t();
|
|
31823
31819
|
if (n)
|
|
31824
31820
|
return n(e);
|
|
@@ -31976,7 +31972,7 @@ const a0 = (e, t) => e == null ? void 0 : e.querySelector(`[data-dp-element="${t
|
|
|
31976
31972
|
setMenuFocused: e,
|
|
31977
31973
|
setShiftKey: t
|
|
31978
31974
|
};
|
|
31979
|
-
},
|
|
31975
|
+
}, Oa = Ea({
|
|
31980
31976
|
monthYear: [],
|
|
31981
31977
|
calendar: [],
|
|
31982
31978
|
time: [],
|
|
@@ -31988,12 +31984,12 @@ const a0 = (e, t) => e == null ? void 0 : e.querySelector(`[data-dp-element="${t
|
|
|
31988
31984
|
},
|
|
31989
31985
|
monthPicker: []
|
|
31990
31986
|
}), 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
|
-
...
|
|
31987
|
+
const e = A(() => Mv.value ? [...Oa.selectionGrid, Oa.actionRow].filter((d) => d.length) : dg.value ? [
|
|
31988
|
+
...Oa.timePicker[0],
|
|
31989
|
+
...Oa.timePicker[1],
|
|
31994
31990
|
vg.value ? [] : [cg.value],
|
|
31995
|
-
|
|
31996
|
-
].filter((d) => d.length) : fg.value ? [...
|
|
31991
|
+
Oa.actionRow
|
|
31992
|
+
].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
31993
|
nl.value = d ? nl.value + 1 : nl.value - 1;
|
|
31998
31994
|
let m = null;
|
|
31999
31995
|
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 +32007,9 @@ const a0 = (e, t) => e == null ? void 0 : e.querySelector(`[data-dp-element="${t
|
|
|
32011
32007
|
}, o = () => {
|
|
32012
32008
|
a(!0), n(!0);
|
|
32013
32009
|
}, s = (d, m) => {
|
|
32014
|
-
|
|
32010
|
+
Oa[m] = d;
|
|
32015
32011
|
}, c = (d, m) => {
|
|
32016
|
-
|
|
32012
|
+
Oa[m] = d;
|
|
32017
32013
|
}, u = () => {
|
|
32018
32014
|
nl.value = 0, Cn.value = 0;
|
|
32019
32015
|
};
|
|
@@ -32024,25 +32020,25 @@ const a0 = (e, t) => e == null ? void 0 : e.querySelector(`[data-dp-element="${t
|
|
|
32024
32020
|
cg.value = d;
|
|
32025
32021
|
},
|
|
32026
32022
|
setSelectionGrid: (d) => {
|
|
32027
|
-
Mv.value = d, u(), d || (
|
|
32023
|
+
Mv.value = d, u(), d || (Oa.selectionGrid = []);
|
|
32028
32024
|
},
|
|
32029
32025
|
setTimePicker: (d, m = !1) => {
|
|
32030
|
-
dg.value = d, vg.value = m, u(), d || (
|
|
32026
|
+
dg.value = d, vg.value = m, u(), d || (Oa.timePicker[0] = [], Oa.timePicker[1] = []);
|
|
32031
32027
|
},
|
|
32032
32028
|
setTimePickerElements: (d, m = 0) => {
|
|
32033
|
-
|
|
32029
|
+
Oa.timePicker[m] = d;
|
|
32034
32030
|
},
|
|
32035
32031
|
arrowRight: l,
|
|
32036
32032
|
arrowLeft: r,
|
|
32037
32033
|
arrowUp: i,
|
|
32038
32034
|
arrowDown: o,
|
|
32039
32035
|
clearArrowNav: () => {
|
|
32040
|
-
|
|
32036
|
+
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
32037
|
},
|
|
32042
32038
|
setMonthPicker: (d) => {
|
|
32043
32039
|
fg.value = d, u();
|
|
32044
32040
|
},
|
|
32045
|
-
refSets:
|
|
32041
|
+
refSets: Oa
|
|
32046
32042
|
// exposed for testing
|
|
32047
32043
|
};
|
|
32048
32044
|
}, n2 = (e) => ({
|
|
@@ -32749,23 +32745,23 @@ const a0 = (e, t) => e == null ? void 0 : e.querySelector(`[data-dp-element="${t
|
|
|
32749
32745
|
}
|
|
32750
32746
|
}, O = (Z) => {
|
|
32751
32747
|
switch (Z.key) {
|
|
32752
|
-
case
|
|
32748
|
+
case Wa.esc:
|
|
32753
32749
|
return E(Z);
|
|
32754
|
-
case
|
|
32750
|
+
case Wa.arrowLeft:
|
|
32755
32751
|
return j(Z);
|
|
32756
|
-
case
|
|
32752
|
+
case Wa.arrowRight:
|
|
32757
32753
|
return j(Z);
|
|
32758
|
-
case
|
|
32754
|
+
case Wa.arrowUp:
|
|
32759
32755
|
return j(Z);
|
|
32760
|
-
case
|
|
32756
|
+
case Wa.arrowDown:
|
|
32761
32757
|
return j(Z);
|
|
32762
32758
|
default:
|
|
32763
32759
|
return;
|
|
32764
32760
|
}
|
|
32765
32761
|
}, U = (Z) => {
|
|
32766
|
-
if (Z.key ===
|
|
32762
|
+
if (Z.key === Wa.enter)
|
|
32767
32763
|
return I();
|
|
32768
|
-
if (Z.key ===
|
|
32764
|
+
if (Z.key === Wa.tab)
|
|
32769
32765
|
return Y();
|
|
32770
32766
|
};
|
|
32771
32767
|
return t({ focusGrid: k }), (Z, H) => {
|
|
@@ -35447,7 +35443,7 @@ const a0 = (e, t) => e == null ? void 0 : e.querySelector(`[data-dp-element="${t
|
|
|
35447
35443
|
} else
|
|
35448
35444
|
ge === xl.left || ge === xl.up ? z("handleArrow", xl.left, 0, ge === xl.up) : z("handleArrow", xl.right, 0, ge === xl.down);
|
|
35449
35445
|
}, pe = (ge) => {
|
|
35450
|
-
s(ge.shiftKey), !l.disableMonthYearSelect && ge.code ===
|
|
35446
|
+
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
35447
|
}, J = () => {
|
|
35452
35448
|
Y(), n("time-picker-close");
|
|
35453
35449
|
}, ne = (ge) => {
|
|
@@ -35471,22 +35467,22 @@ const a0 = (e, t) => e == null ? void 0 : e.querySelector(`[data-dp-element="${t
|
|
|
35471
35467
|
ge.preventDefault(), xe(qe);
|
|
35472
35468
|
}, Le = (ge) => {
|
|
35473
35469
|
var qe, vt, Lt;
|
|
35474
|
-
if (pe(ge), ge.key ===
|
|
35470
|
+
if (pe(ge), ge.key === Wa.home || ge.key === Wa.end)
|
|
35475
35471
|
return z(
|
|
35476
35472
|
"selectWeekDate",
|
|
35477
|
-
ge.key ===
|
|
35473
|
+
ge.key === Wa.home,
|
|
35478
35474
|
ge.target.getAttribute("id")
|
|
35479
35475
|
);
|
|
35480
|
-
switch ((ge.key ===
|
|
35481
|
-
case
|
|
35476
|
+
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) {
|
|
35477
|
+
case Wa.esc:
|
|
35482
35478
|
return me(ge);
|
|
35483
|
-
case
|
|
35479
|
+
case Wa.arrowLeft:
|
|
35484
35480
|
return Re(ge, xl.left);
|
|
35485
|
-
case
|
|
35481
|
+
case Wa.arrowRight:
|
|
35486
35482
|
return Re(ge, xl.right);
|
|
35487
|
-
case
|
|
35483
|
+
case Wa.arrowUp:
|
|
35488
35484
|
return Re(ge, xl.up);
|
|
35489
|
-
case
|
|
35485
|
+
case Wa.arrowDown:
|
|
35490
35486
|
return Re(ge, xl.down);
|
|
35491
35487
|
default:
|
|
35492
35488
|
return;
|
|
@@ -36278,7 +36274,7 @@ const YH = ({
|
|
|
36278
36274
|
}, K = (O) => {
|
|
36279
36275
|
p.value = O;
|
|
36280
36276
|
}, Y = (O) => {
|
|
36281
|
-
O.key ===
|
|
36277
|
+
O.key === Wa.tab && L(O, !0);
|
|
36282
36278
|
};
|
|
36283
36279
|
return t({
|
|
36284
36280
|
focusInput: j,
|
|
@@ -36962,7 +36958,7 @@ const uW = /* @__PURE__ */ et({
|
|
|
36962
36958
|
return (c, u) => (N(), le("div", {
|
|
36963
36959
|
class: De(c.inline ? "d-inline" : "")
|
|
36964
36960
|
}, [
|
|
36965
|
-
w(
|
|
36961
|
+
w(ja, { "hide-on-leave": "" }, {
|
|
36966
36962
|
default: W(() => [
|
|
36967
36963
|
c.inline && _(r).isLoading.value ? (N(), le("div", pW, [
|
|
36968
36964
|
w(ts, {
|
|
@@ -37135,7 +37131,7 @@ const uW = /* @__PURE__ */ et({
|
|
|
37135
37131
|
},
|
|
37136
37132
|
..._t(),
|
|
37137
37133
|
...Al(),
|
|
37138
|
-
...
|
|
37134
|
+
...Ra()
|
|
37139
37135
|
}, "SelectionControlGroup"), xW = Ue({
|
|
37140
37136
|
...SA({
|
|
37141
37137
|
defaultsTarget: "VSelectionControl"
|
|
@@ -37568,7 +37564,7 @@ const Em = ot()({
|
|
|
37568
37564
|
})
|
|
37569
37565
|
]),
|
|
37570
37566
|
_: 1
|
|
37571
|
-
})) : (N(), ce(
|
|
37567
|
+
})) : (N(), ce(Na, {
|
|
37572
37568
|
key: 1,
|
|
37573
37569
|
"open-delay": "5"
|
|
37574
37570
|
}, {
|
|
@@ -38304,7 +38300,7 @@ const PW = Symbol.for("vuetify:v-slide-group"), wb = Ue({
|
|
|
38304
38300
|
selectedClass: "v-chip--selected"
|
|
38305
38301
|
}),
|
|
38306
38302
|
...Ca(),
|
|
38307
|
-
...
|
|
38303
|
+
...Ra(),
|
|
38308
38304
|
...fi({
|
|
38309
38305
|
variant: "tonal"
|
|
38310
38306
|
})
|
|
@@ -38409,7 +38405,7 @@ const PW = Symbol.for("vuetify:v-slide-group"), wb = Ue({
|
|
|
38409
38405
|
...Ca({
|
|
38410
38406
|
tag: "span"
|
|
38411
38407
|
}),
|
|
38412
|
-
...
|
|
38408
|
+
...Ra(),
|
|
38413
38409
|
...fi({
|
|
38414
38410
|
variant: "tonal"
|
|
38415
38411
|
})
|
|
@@ -39145,7 +39141,7 @@ const IA = Ue({
|
|
|
39145
39141
|
title: n(k.value)
|
|
39146
39142
|
}), {
|
|
39147
39143
|
...a,
|
|
39148
|
-
default: () => ae(Me, null, [w(
|
|
39144
|
+
default: () => ae(Me, null, [w(Na, ye({
|
|
39149
39145
|
ref: r,
|
|
39150
39146
|
modelValue: b.value,
|
|
39151
39147
|
"onUpdate:modelValue": (Q) => b.value = Q,
|
|
@@ -39633,7 +39629,7 @@ const JW = Ue({
|
|
|
39633
39629
|
onKeydown: H
|
|
39634
39630
|
}), {
|
|
39635
39631
|
...n,
|
|
39636
|
-
default: () => ae(Me, null, [w(
|
|
39632
|
+
default: () => ae(Me, null, [w(Na, ye({
|
|
39637
39633
|
ref: c,
|
|
39638
39634
|
modelValue: I.value,
|
|
39639
39635
|
"onUpdate:modelValue": (z) => I.value = z,
|
|
@@ -40277,7 +40273,7 @@ const JW = Ue({
|
|
|
40277
40273
|
default: W(() => [
|
|
40278
40274
|
T.useAutomation || T.useAutomationDaily || T.useAutomationLarge ? (N(), ce(Et, { key: 0 }, {
|
|
40279
40275
|
default: W(() => [
|
|
40280
|
-
w(
|
|
40276
|
+
w(Na, null, {
|
|
40281
40277
|
activator: W(({ props: L }) => [
|
|
40282
40278
|
w(Pe, ye(L, {
|
|
40283
40279
|
disabled: !x.value,
|
|
@@ -40308,7 +40304,7 @@ const JW = Ue({
|
|
|
40308
40304
|
})) : ee("", !0),
|
|
40309
40305
|
T.useGuideList ? (N(), ce(Et, { key: 1 }, {
|
|
40310
40306
|
default: W(() => [
|
|
40311
|
-
w(
|
|
40307
|
+
w(Na, null, {
|
|
40312
40308
|
activator: W(({ props: L }) => [
|
|
40313
40309
|
w(Pe, ye(L, {
|
|
40314
40310
|
disabled: !x.value,
|
|
@@ -40361,7 +40357,7 @@ const JW = Ue({
|
|
|
40361
40357
|
})) : ee("", !0),
|
|
40362
40358
|
T.useTriggerList ? (N(), ce(Et, { key: 3 }, {
|
|
40363
40359
|
default: W(() => [
|
|
40364
|
-
w(
|
|
40360
|
+
w(Na, null, {
|
|
40365
40361
|
activator: W(({ props: L }) => [
|
|
40366
40362
|
w(Pe, ye(L, {
|
|
40367
40363
|
disabled: !x.value,
|
|
@@ -40414,7 +40410,7 @@ const JW = Ue({
|
|
|
40414
40410
|
})) : ee("", !0),
|
|
40415
40411
|
T.useCustomList ? (N(), ce(Et, { key: 5 }, {
|
|
40416
40412
|
default: W(() => [
|
|
40417
|
-
w(
|
|
40413
|
+
w(Na, null, {
|
|
40418
40414
|
activator: W(({ props: L }) => [
|
|
40419
40415
|
w(Pe, ye(L, {
|
|
40420
40416
|
disabled: !x.value,
|
|
@@ -40508,7 +40504,7 @@ const JW = Ue({
|
|
|
40508
40504
|
}), 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
40505
|
return (r, i) => {
|
|
40510
40506
|
const o = xn("bt-entity");
|
|
40511
|
-
return N(), ce(
|
|
40507
|
+
return N(), ce(ja, { group: "" }, {
|
|
40512
40508
|
default: W(() => [
|
|
40513
40509
|
r.option.prefix != null ? (N(), le("span", uj, Fe(r.option.prefix), 1)) : ee("", !0),
|
|
40514
40510
|
r.option.bool != null ? (N(), le("span", cj, [
|
|
@@ -42286,7 +42282,7 @@ const mU = /* @__PURE__ */ et({
|
|
|
42286
42282
|
default: W(({ isHovering: k, props: M }) => [
|
|
42287
42283
|
w(jr, ye({ class: "pa-0 ma-0" }, M), {
|
|
42288
42284
|
default: W(() => [
|
|
42289
|
-
_(
|
|
42285
|
+
_(Ba)(S.label) ? ee("", !0) : (N(), le("div", gU, Fe(S.label), 1)),
|
|
42290
42286
|
w(es, {
|
|
42291
42287
|
height: S.height,
|
|
42292
42288
|
src: f.value,
|
|
@@ -42726,7 +42722,7 @@ const IU = ["start", "end", "left", "right", "top", "bottom"], EU = Ue({
|
|
|
42726
42722
|
...Ca({
|
|
42727
42723
|
tag: "nav"
|
|
42728
42724
|
}),
|
|
42729
|
-
...
|
|
42725
|
+
...Ra()
|
|
42730
42726
|
}, "VNavigationDrawer"), VU = ot()({
|
|
42731
42727
|
name: "VNavigationDrawer",
|
|
42732
42728
|
props: EU(),
|
|
@@ -43143,7 +43139,7 @@ const IU = ["start", "end", "left", "right", "top", "bottom"], EU = Ue({
|
|
|
43143
43139
|
class: "ma-0 pa-0"
|
|
43144
43140
|
}, {
|
|
43145
43141
|
default: W(() => [
|
|
43146
|
-
w(
|
|
43142
|
+
w(ja, { "hide-on-leave": "" }, {
|
|
43147
43143
|
default: W(() => [
|
|
43148
43144
|
r.value ? (N(), ce(Pe, {
|
|
43149
43145
|
key: 0,
|
|
@@ -43382,7 +43378,7 @@ function WU(e, t, a, n, l, r) {
|
|
|
43382
43378
|
]),
|
|
43383
43379
|
default: W(() => [
|
|
43384
43380
|
je(" " + Fe(e.selection ?? e.selectedStr) + " ", 1),
|
|
43385
|
-
w(
|
|
43381
|
+
w(Na, ye({ activator: "parent" }, a.menuProps, {
|
|
43386
43382
|
"close-on-content-click": !e.multiple
|
|
43387
43383
|
}), {
|
|
43388
43384
|
default: W(() => [
|
|
@@ -43587,7 +43583,7 @@ const jU = /* @__PURE__ */ jf(HU, [["render", WU]]), UU = { class: "d-flex align
|
|
|
43587
43583
|
_: 1
|
|
43588
43584
|
}),
|
|
43589
43585
|
fe(x.$slots, "actionsRight"),
|
|
43590
|
-
x.showSettings ? (N(), ce(
|
|
43586
|
+
x.showSettings ? (N(), ce(Na, {
|
|
43591
43587
|
key: 0,
|
|
43592
43588
|
"offset-y": "",
|
|
43593
43589
|
"close-on-content-click": !1
|
|
@@ -43693,7 +43689,7 @@ const jU = /* @__PURE__ */ jf(HU, [["render", WU]]), UU = { class: "d-flex align
|
|
|
43693
43689
|
onClick: b[4] || (b[4] = (k) => g(null)),
|
|
43694
43690
|
subtitle: "(Select None)"
|
|
43695
43691
|
}, null, 8, ["density"])) : ee("", !0),
|
|
43696
|
-
w(
|
|
43692
|
+
w(ja, {
|
|
43697
43693
|
group: "",
|
|
43698
43694
|
"hide-on-leave": ""
|
|
43699
43695
|
}, {
|
|
@@ -43780,7 +43776,7 @@ const jU = /* @__PURE__ */ jf(HU, [["render", WU]]), UU = { class: "d-flex align
|
|
|
43780
43776
|
_: 1
|
|
43781
43777
|
}),
|
|
43782
43778
|
fe(x.$slots, "actionsRight"),
|
|
43783
|
-
x.showSettings ? (N(), ce(
|
|
43779
|
+
x.showSettings ? (N(), ce(Na, {
|
|
43784
43780
|
key: 0,
|
|
43785
43781
|
"offset-y": "",
|
|
43786
43782
|
"close-on-content-click": !1
|
|
@@ -44759,7 +44755,7 @@ const JU = /* @__PURE__ */ et({
|
|
|
44759
44755
|
}, {
|
|
44760
44756
|
default: W(() => [
|
|
44761
44757
|
fe(f.$slots, `${p.value}-top`, {}, () => [
|
|
44762
|
-
w(
|
|
44758
|
+
w(ja, { "hide-on-leave": "" }, {
|
|
44763
44759
|
default: W(() => [
|
|
44764
44760
|
!f.hideHeader && !p.hideHeader ? (N(), ce(Yr, {
|
|
44765
44761
|
key: 0,
|
|
@@ -44949,7 +44945,7 @@ const iY = Ue({
|
|
|
44949
44945
|
...Al(),
|
|
44950
44946
|
...ru(),
|
|
44951
44947
|
...Ca(),
|
|
44952
|
-
...
|
|
44948
|
+
...Ra()
|
|
44953
44949
|
}, "VRating"), E2 = ot()({
|
|
44954
44950
|
name: "VRating",
|
|
44955
44951
|
props: iY(),
|
|
@@ -45363,7 +45359,7 @@ const dY = Ue({
|
|
|
45363
45359
|
hideDialogTemporarily: i,
|
|
45364
45360
|
menuRouteName: o,
|
|
45365
45361
|
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(() => !
|
|
45362
|
+
} = 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
45363
|
async function S() {
|
|
45368
45364
|
try {
|
|
45369
45365
|
var k = await h({
|
|
@@ -45390,7 +45386,7 @@ const dY = Ue({
|
|
|
45390
45386
|
var k, M;
|
|
45391
45387
|
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
45388
|
}), (k, M) => (N(), le("div", null, [
|
|
45393
|
-
_(Tt)(u.value) || _(Tt)(d.value) ? (N(), ce(
|
|
45389
|
+
_(Tt)(u.value) || _(Tt)(d.value) ? (N(), ce(Na, {
|
|
45394
45390
|
key: 0,
|
|
45395
45391
|
"max-width": "450",
|
|
45396
45392
|
"close-on-content-click": !1
|
|
@@ -45984,7 +45980,7 @@ const dY = Ue({
|
|
|
45984
45980
|
setup(e) {
|
|
45985
45981
|
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
45982
|
var v;
|
|
45987
|
-
if (
|
|
45983
|
+
if (Ba(i.value))
|
|
45988
45984
|
return !1;
|
|
45989
45985
|
if (Tt(n.value.rules)) {
|
|
45990
45986
|
let S;
|
|
@@ -46008,7 +46004,7 @@ const dY = Ue({
|
|
|
46008
46004
|
{ cols: 4, num: 7 },
|
|
46009
46005
|
{ cols: 4, num: 8 },
|
|
46010
46006
|
{ cols: 4, num: 9 },
|
|
46011
|
-
{ cols: 4, num: void 0, icon: "$backspace", disabled:
|
|
46007
|
+
{ cols: 4, num: void 0, icon: "$backspace", disabled: Ba(r.value) },
|
|
46012
46008
|
{ cols: 4, num: 0 },
|
|
46013
46009
|
{ cols: 2, num: "-", disabled: a.value.showNegative == !1 },
|
|
46014
46010
|
{ cols: 2, num: ".", disabled: a.value.showDecimal == !1 }
|
|
@@ -46286,10 +46282,10 @@ const dY = Ue({
|
|
|
46286
46282
|
}), r = G(), i = A(() => {
|
|
46287
46283
|
var c, u;
|
|
46288
46284
|
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) =>
|
|
46285
|
+
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
46286
|
});
|
|
46291
46287
|
function o() {
|
|
46292
|
-
r.value != null && (r.value.isSubmitButton ? a("onSubmit") :
|
|
46288
|
+
r.value != null && (r.value.isSubmitButton ? a("onSubmit") : Ba(r.value.url) || window.open(r.value.url, "_blank"));
|
|
46293
46289
|
}
|
|
46294
46290
|
return _e(() => n.field, (s) => {
|
|
46295
46291
|
r.value = s;
|
|
@@ -46304,9 +46300,9 @@ const dY = Ue({
|
|
|
46304
46300
|
ripple: !1
|
|
46305
46301
|
}, {
|
|
46306
46302
|
default: W(() => [
|
|
46307
|
-
_(
|
|
46303
|
+
_(Ba)(r.value.description) ? ee("", !0) : (N(), le("div", CY, Fe(r.value.description), 1)),
|
|
46308
46304
|
r.value.type == "info" ? (N(), le("div", MY, [
|
|
46309
|
-
_(
|
|
46305
|
+
_(Ba)(r.value.description) ? (N(), le("div", _Y, "[Select and write text in description]")) : ee("", !0)
|
|
46310
46306
|
])) : r.value.type == "short-text" || r.value.type == "email" || r.value.type == "phone" ? (N(), le("div", TY, [
|
|
46311
46307
|
w(Ka, {
|
|
46312
46308
|
class: "py-2",
|
|
@@ -46361,7 +46357,7 @@ const dY = Ue({
|
|
|
46361
46357
|
}, null, 8, ["isEditing", "label", "modelValue"])
|
|
46362
46358
|
])) : r.value.type == "button" ? (N(), le("div", EY, [
|
|
46363
46359
|
w(Pe, {
|
|
46364
|
-
"append-icon": !r.value.isSubmitButton && !_(
|
|
46360
|
+
"append-icon": !r.value.isSubmitButton && !_(Ba)(r.value.url) ? "$open-in-new" : void 0,
|
|
46365
46361
|
onClick: o,
|
|
46366
46362
|
color: "primary",
|
|
46367
46363
|
disabled: !s.isEditing,
|
|
@@ -46490,7 +46486,7 @@ const dY = Ue({
|
|
|
46490
46486
|
ae("div", VY, Fe(h.label ?? h.schema.title), 1),
|
|
46491
46487
|
w(ma),
|
|
46492
46488
|
fe(h.$slots, "form-toolbar-right"),
|
|
46493
|
-
w(
|
|
46489
|
+
w(ja, null, {
|
|
46494
46490
|
default: W(() => [
|
|
46495
46491
|
r.value && h.canSaveProgress !== !1 ? (N(), ce(Pe, {
|
|
46496
46492
|
key: 0,
|
|
@@ -46666,7 +46662,7 @@ const dY = Ue({
|
|
|
46666
46662
|
ae("div", FY, Fe(h.label ?? h.schema.title), 1),
|
|
46667
46663
|
w(ma),
|
|
46668
46664
|
fe(h.$slots, "form-toolbar-right"),
|
|
46669
|
-
w(
|
|
46665
|
+
w(ja, null, {
|
|
46670
46666
|
default: W(() => [
|
|
46671
46667
|
r.value && h.canSaveProgress !== !1 ? (N(), ce(Pe, {
|
|
46672
46668
|
key: 0,
|
|
@@ -46696,7 +46692,7 @@ const dY = Ue({
|
|
|
46696
46692
|
w(S, { errorMsg: c.value }, null, 8, ["errorMsg"]),
|
|
46697
46693
|
w(x, { loadingMsg: d.value }, null, 8, ["loadingMsg"]),
|
|
46698
46694
|
(N(!0), le(Me, null, Ge(h.schema.slides, (k, M) => (N(), le("div", { key: M }, [
|
|
46699
|
-
_(
|
|
46695
|
+
_(Ba)(k.name) ? ee("", !0) : (N(), le("div", zY, [
|
|
46700
46696
|
w(lr, { style: { "max-width": "50px" } }),
|
|
46701
46697
|
ae("div", OY, Fe(k.name), 1),
|
|
46702
46698
|
w(lr)
|
|
@@ -46794,7 +46790,7 @@ const dY = Ue({
|
|
|
46794
46790
|
ae("div", jY, Fe(h.label ?? h.schema.title), 1),
|
|
46795
46791
|
w(ma),
|
|
46796
46792
|
fe(h.$slots, "form-toolbar-right"),
|
|
46797
|
-
w(
|
|
46793
|
+
w(ja, null, {
|
|
46798
46794
|
default: W(() => [
|
|
46799
46795
|
r.value && h.canSaveProgress !== !1 ? (N(), ce(Pe, {
|
|
46800
46796
|
key: 0,
|
|
@@ -52938,15 +52934,15 @@ var e5 = { exports: {} };
|
|
|
52938
52934
|
}
|
|
52939
52935
|
var St = new d(function(kt, jt) {
|
|
52940
52936
|
var zt = s.open(F.name, Ae);
|
|
52941
|
-
zt.onerror = function(
|
|
52937
|
+
zt.onerror = function(za) {
|
|
52942
52938
|
var ao = zt.result;
|
|
52943
|
-
ao.close(), jt(
|
|
52939
|
+
ao.close(), jt(za);
|
|
52944
52940
|
}, zt.onupgradeneeded = function() {
|
|
52945
|
-
var
|
|
52946
|
-
|
|
52941
|
+
var za = zt.result;
|
|
52942
|
+
za.deleteObjectStore(F.storeName);
|
|
52947
52943
|
}, zt.onsuccess = function() {
|
|
52948
|
-
var
|
|
52949
|
-
|
|
52944
|
+
var za = zt.result;
|
|
52945
|
+
za.close(), kt(za);
|
|
52950
52946
|
};
|
|
52951
52947
|
});
|
|
52952
52948
|
return St.then(function(kt) {
|
|
@@ -53309,8 +53305,8 @@ var e5 = { exports: {} };
|
|
|
53309
53305
|
return new d(function(kt, jt) {
|
|
53310
53306
|
Ae.executeSql("DROP TABLE IF EXISTS " + St, [], function() {
|
|
53311
53307
|
kt();
|
|
53312
|
-
}, function(zt,
|
|
53313
|
-
jt(
|
|
53308
|
+
}, function(zt, za) {
|
|
53309
|
+
jt(za);
|
|
53314
53310
|
});
|
|
53315
53311
|
});
|
|
53316
53312
|
}
|
|
@@ -53575,8 +53571,8 @@ var e5 = { exports: {} };
|
|
|
53575
53571
|
var sd = new Error("Method " + Dp + " is not implemented by the current driver"), Ap = d.reject(sd);
|
|
53576
53572
|
return m(Ap, arguments[arguments.length - 1]), Ap;
|
|
53577
53573
|
};
|
|
53578
|
-
},
|
|
53579
|
-
var vs = to[
|
|
53574
|
+
}, za = 0, ao = to.length; za < ao; za++) {
|
|
53575
|
+
var vs = to[za];
|
|
53580
53576
|
X[vs] || (X[vs] = zt(vs));
|
|
53581
53577
|
}
|
|
53582
53578
|
};
|
|
@@ -55174,7 +55170,7 @@ const bK = Ye({
|
|
|
55174
55170
|
reset: [Number, String],
|
|
55175
55171
|
root: [Boolean, String],
|
|
55176
55172
|
scoped: Boolean
|
|
55177
|
-
}, "VDefaultsProvider"),
|
|
55173
|
+
}, "VDefaultsProvider"), Fa = dt(!1)({
|
|
55178
55174
|
name: "VDefaultsProvider",
|
|
55179
55175
|
props: bK(),
|
|
55180
55176
|
setup(e, t) {
|
|
@@ -55828,7 +55824,7 @@ const DK = Ye({
|
|
|
55828
55824
|
}, n.value, l.value, r.value, s.value, c.value, u.value, o.value, e.class],
|
|
55829
55825
|
style: [i.value, d.value, e.style]
|
|
55830
55826
|
}, {
|
|
55831
|
-
default: () => [a.default ? w(
|
|
55827
|
+
default: () => [a.default ? w(Fa, {
|
|
55832
55828
|
key: "content-defaults",
|
|
55833
55829
|
defaults: {
|
|
55834
55830
|
VImg: {
|
|
@@ -56923,7 +56919,7 @@ const td = {
|
|
|
56923
56919
|
return [Jc(!0, "v-btn"), !e.icon && $ && w("span", {
|
|
56924
56920
|
key: "prepend",
|
|
56925
56921
|
class: "v-btn__prepend"
|
|
56926
|
-
}, [n.prepend ? w(
|
|
56922
|
+
}, [n.prepend ? w(Fa, {
|
|
56927
56923
|
key: "prepend-defaults",
|
|
56928
56924
|
disabled: !e.prependIcon,
|
|
56929
56925
|
defaults: {
|
|
@@ -56940,7 +56936,7 @@ const td = {
|
|
|
56940
56936
|
}, [!n.default && I ? w(dn, {
|
|
56941
56937
|
key: "content-icon",
|
|
56942
56938
|
icon: e.icon
|
|
56943
|
-
}, null) : w(
|
|
56939
|
+
}, null) : w(Fa, {
|
|
56944
56940
|
key: "content-defaults",
|
|
56945
56941
|
disabled: !I,
|
|
56946
56942
|
defaults: {
|
|
@@ -56956,7 +56952,7 @@ const td = {
|
|
|
56956
56952
|
})]), !e.icon && P && w("span", {
|
|
56957
56953
|
key: "append",
|
|
56958
56954
|
class: "v-btn__append"
|
|
56959
|
-
}, [n.append ? w(
|
|
56955
|
+
}, [n.append ? w(Fa, {
|
|
56960
56956
|
key: "append-defaults",
|
|
56961
56957
|
disabled: !e.appendIcon,
|
|
56962
56958
|
defaults: {
|
|
@@ -57046,7 +57042,7 @@ const td = {
|
|
|
57046
57042
|
}, [r && w("div", {
|
|
57047
57043
|
key: "prepend",
|
|
57048
57044
|
class: "v-card-item__prepend"
|
|
57049
|
-
}, [a.prepend ? w(
|
|
57045
|
+
}, [a.prepend ? w(Fa, {
|
|
57050
57046
|
key: "prepend-defaults",
|
|
57051
57047
|
disabled: !l,
|
|
57052
57048
|
defaults: {
|
|
@@ -57086,7 +57082,7 @@ const td = {
|
|
|
57086
57082
|
}), (n = a.default) == null ? void 0 : n.call(a)]), o && w("div", {
|
|
57087
57083
|
key: "append",
|
|
57088
57084
|
class: "v-card-item__append"
|
|
57089
|
-
}, [a.append ? w(
|
|
57085
|
+
}, [a.append ? w(Fa, {
|
|
57090
57086
|
key: "append-defaults",
|
|
57091
57087
|
disabled: !i,
|
|
57092
57088
|
defaults: {
|
|
@@ -57216,7 +57212,7 @@ dt()({
|
|
|
57216
57212
|
return [T && w("div", {
|
|
57217
57213
|
key: "image",
|
|
57218
57214
|
class: "v-card__image"
|
|
57219
|
-
}, [n.image ? w(
|
|
57215
|
+
}, [n.image ? w(Fa, {
|
|
57220
57216
|
key: "image-defaults",
|
|
57221
57217
|
disabled: !e.image,
|
|
57222
57218
|
defaults: {
|
|
@@ -58769,7 +58765,7 @@ const BX = Qi({
|
|
|
58769
58765
|
}, e.class],
|
|
58770
58766
|
style: e.style
|
|
58771
58767
|
}, {
|
|
58772
|
-
default: () => [a.activator && w(
|
|
58768
|
+
default: () => [a.activator && w(Fa, {
|
|
58773
58769
|
defaults: m.value
|
|
58774
58770
|
}, {
|
|
58775
58771
|
default: () => [w(BX, null, {
|
|
@@ -58956,7 +58952,7 @@ const BX = Qi({
|
|
|
58956
58952
|
return [Jc(k.value || S.value, "v-list-item"), xe && w("div", {
|
|
58957
58953
|
key: "prepend",
|
|
58958
58954
|
class: "v-list-item__prepend"
|
|
58959
|
-
}, [n.prepend ? w(
|
|
58955
|
+
}, [n.prepend ? w(Fa, {
|
|
58960
58956
|
key: "prepend-defaults",
|
|
58961
58957
|
disabled: !me,
|
|
58962
58958
|
defaults: {
|
|
@@ -59011,7 +59007,7 @@ const BX = Qi({
|
|
|
59011
59007
|
}), (pe = n.default) == null ? void 0 : pe.call(n, O.value)]), te && w("div", {
|
|
59012
59008
|
key: "append",
|
|
59013
59009
|
class: "v-list-item__append"
|
|
59014
|
-
}, [n.append ? w(
|
|
59010
|
+
}, [n.append ? w(Fa, {
|
|
59015
59011
|
key: "append-defaults",
|
|
59016
59012
|
disabled: !B,
|
|
59017
59013
|
defaults: {
|
|
@@ -60497,7 +60493,7 @@ const mw = Ye({
|
|
|
60497
60493
|
default: function() {
|
|
60498
60494
|
for (var y = arguments.length, v = new Array(y), S = 0; S < y; S++)
|
|
60499
60495
|
v[S] = arguments[S];
|
|
60500
|
-
return w(
|
|
60496
|
+
return w(Fa, {
|
|
60501
60497
|
root: "VMenu"
|
|
60502
60498
|
}, {
|
|
60503
60499
|
default: () => {
|
|
@@ -61179,7 +61175,7 @@ const CQ = ["underlined", "outlined", "filled", "solo", "solo-inverted", "solo-f
|
|
|
61179
61175
|
onMousedown: (U) => {
|
|
61180
61176
|
U.preventDefault(), U.stopPropagation();
|
|
61181
61177
|
}
|
|
61182
|
-
}, [w(
|
|
61178
|
+
}, [w(Fa, {
|
|
61183
61179
|
defaults: {
|
|
61184
61180
|
VIcon: {
|
|
61185
61181
|
icon: e.clearIcon
|
|
@@ -62012,7 +62008,7 @@ dt()({
|
|
|
62012
62008
|
}, null), b && w("div", {
|
|
62013
62009
|
key: "prepend",
|
|
62014
62010
|
class: "v-alert__prepend"
|
|
62015
|
-
}, [n.prepend ? w(
|
|
62011
|
+
}, [n.prepend ? w(Fa, {
|
|
62016
62012
|
key: "prepend-defaults",
|
|
62017
62013
|
disabled: !r.value,
|
|
62018
62014
|
defaults: {
|
|
@@ -62042,7 +62038,7 @@ dt()({
|
|
|
62042
62038
|
}, [n.append()]), M && w("div", {
|
|
62043
62039
|
key: "close",
|
|
62044
62040
|
class: "v-alert__close"
|
|
62045
|
-
}, [n.close ? w(
|
|
62041
|
+
}, [n.close ? w(Fa, {
|
|
62046
62042
|
key: "close-defaults",
|
|
62047
62043
|
defaults: {
|
|
62048
62044
|
VBtn: {
|
|
@@ -62168,7 +62164,7 @@ dt()({
|
|
|
62168
62164
|
default: () => [h && w("div", {
|
|
62169
62165
|
key: "image",
|
|
62170
62166
|
class: "v-toolbar__image"
|
|
62171
|
-
}, [n.image ? w(
|
|
62167
|
+
}, [n.image ? w(Fa, {
|
|
62172
62168
|
key: "image-defaults",
|
|
62173
62169
|
disabled: !e.image,
|
|
62174
62170
|
defaults: {
|
|
@@ -62181,7 +62177,7 @@ dt()({
|
|
|
62181
62177
|
key: "image-img",
|
|
62182
62178
|
cover: !0,
|
|
62183
62179
|
src: e.image
|
|
62184
|
-
}, null)]), w(
|
|
62180
|
+
}, null)]), w(Fa, {
|
|
62185
62181
|
defaults: {
|
|
62186
62182
|
VTabs: {
|
|
62187
62183
|
height: wt(m.value)
|
|
@@ -62206,7 +62202,7 @@ dt()({
|
|
|
62206
62202
|
class: "v-toolbar__append"
|
|
62207
62203
|
}, [(x = n.append) == null ? void 0 : x.call(n)])])];
|
|
62208
62204
|
}
|
|
62209
|
-
}), w(
|
|
62205
|
+
}), w(Fa, {
|
|
62210
62206
|
defaults: {
|
|
62211
62207
|
VTabs: {
|
|
62212
62208
|
height: wt(f.value)
|
|
@@ -63900,7 +63896,7 @@ dt()({
|
|
|
63900
63896
|
default: function() {
|
|
63901
63897
|
for (var f = arguments.length, g = new Array(f), p = 0; p < f; p++)
|
|
63902
63898
|
g[p] = arguments[p];
|
|
63903
|
-
return w(
|
|
63899
|
+
return w(Fa, {
|
|
63904
63900
|
root: "VDialog"
|
|
63905
63901
|
}, {
|
|
63906
63902
|
default: () => {
|
|
@@ -67214,7 +67210,7 @@ const tae = (e, t) => e == null ? void 0 : e.querySelector(`[data-dp-element="${
|
|
|
67214
67210
|
setMenuFocused: e,
|
|
67215
67211
|
setShiftKey: t
|
|
67216
67212
|
};
|
|
67217
|
-
},
|
|
67213
|
+
}, Ha = Ea({
|
|
67218
67214
|
monthYear: [],
|
|
67219
67215
|
calendar: [],
|
|
67220
67216
|
time: [],
|
|
@@ -67226,12 +67222,12 @@ const tae = (e, t) => e == null ? void 0 : e.querySelector(`[data-dp-element="${
|
|
|
67226
67222
|
},
|
|
67227
67223
|
monthPicker: []
|
|
67228
67224
|
}), 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
|
-
...
|
|
67225
|
+
const e = A(() => Wv.value ? [...Ha.selectionGrid, Ha.actionRow].filter((d) => d.length) : Yg.value ? [
|
|
67226
|
+
...Ha.timePicker[0],
|
|
67227
|
+
...Ha.timePicker[1],
|
|
67232
67228
|
Gg.value ? [] : [Ug.value],
|
|
67233
|
-
|
|
67234
|
-
].filter((d) => d.length) : qg.value ? [...
|
|
67229
|
+
Ha.actionRow
|
|
67230
|
+
].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
67231
|
ll.value = d ? ll.value + 1 : ll.value - 1;
|
|
67236
67232
|
let m = null;
|
|
67237
67233
|
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 +67245,9 @@ const tae = (e, t) => e == null ? void 0 : e.querySelector(`[data-dp-element="${
|
|
|
67249
67245
|
}, o = () => {
|
|
67250
67246
|
a(!0), n(!0);
|
|
67251
67247
|
}, s = (d, m) => {
|
|
67252
|
-
|
|
67248
|
+
Ha[m] = d;
|
|
67253
67249
|
}, c = (d, m) => {
|
|
67254
|
-
|
|
67250
|
+
Ha[m] = d;
|
|
67255
67251
|
}, u = () => {
|
|
67256
67252
|
ll.value = 0, Mn.value = 0;
|
|
67257
67253
|
};
|
|
@@ -67262,25 +67258,25 @@ const tae = (e, t) => e == null ? void 0 : e.querySelector(`[data-dp-element="${
|
|
|
67262
67258
|
Ug.value = d;
|
|
67263
67259
|
},
|
|
67264
67260
|
setSelectionGrid: (d) => {
|
|
67265
|
-
Wv.value = d, u(), d || (
|
|
67261
|
+
Wv.value = d, u(), d || (Ha.selectionGrid = []);
|
|
67266
67262
|
},
|
|
67267
67263
|
setTimePicker: (d, m = !1) => {
|
|
67268
|
-
Yg.value = d, Gg.value = m, u(), d || (
|
|
67264
|
+
Yg.value = d, Gg.value = m, u(), d || (Ha.timePicker[0] = [], Ha.timePicker[1] = []);
|
|
67269
67265
|
},
|
|
67270
67266
|
setTimePickerElements: (d, m = 0) => {
|
|
67271
|
-
|
|
67267
|
+
Ha.timePicker[m] = d;
|
|
67272
67268
|
},
|
|
67273
67269
|
arrowRight: l,
|
|
67274
67270
|
arrowLeft: r,
|
|
67275
67271
|
arrowUp: i,
|
|
67276
67272
|
arrowDown: o,
|
|
67277
67273
|
clearArrowNav: () => {
|
|
67278
|
-
|
|
67274
|
+
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
67275
|
},
|
|
67280
67276
|
setMonthPicker: (d) => {
|
|
67281
67277
|
qg.value = d, u();
|
|
67282
67278
|
},
|
|
67283
|
-
refSets:
|
|
67279
|
+
refSets: Ha
|
|
67284
67280
|
// exposed for testing
|
|
67285
67281
|
};
|
|
67286
67282
|
}, gC = (e) => ({
|
|
@@ -72246,7 +72242,7 @@ dt()({
|
|
|
72246
72242
|
"v-switch__thumb--filled": I || e.loading
|
|
72247
72243
|
}, e.inset || d ? void 0 : E.value],
|
|
72248
72244
|
style: e.inset ? void 0 : R.value
|
|
72249
|
-
}, [n.thumb ? w(
|
|
72245
|
+
}, [n.thumb ? w(Fa, {
|
|
72250
72246
|
defaults: {
|
|
72251
72247
|
VIcon: {
|
|
72252
72248
|
icon: I,
|
|
@@ -72779,7 +72775,7 @@ const ile = Ye({
|
|
|
72779
72775
|
}, {
|
|
72780
72776
|
default: () => [Rt(w("div", {
|
|
72781
72777
|
class: "v-chip__filter"
|
|
72782
|
-
}, [l.filter ? w(
|
|
72778
|
+
}, [l.filter ? w(Fa, {
|
|
72783
72779
|
key: "filter-defaults",
|
|
72784
72780
|
disabled: !e.filterIcon,
|
|
72785
72781
|
defaults: {
|
|
@@ -72794,7 +72790,7 @@ const ile = Ye({
|
|
|
72794
72790
|
}), I && w("div", {
|
|
72795
72791
|
key: "prepend",
|
|
72796
72792
|
class: "v-chip__prepend"
|
|
72797
|
-
}, [l.prepend ? w(
|
|
72793
|
+
}, [l.prepend ? w(Fa, {
|
|
72798
72794
|
key: "prepend-defaults",
|
|
72799
72795
|
disabled: !P,
|
|
72800
72796
|
defaults: {
|
|
@@ -72828,7 +72824,7 @@ const ile = Ye({
|
|
|
72828
72824
|
})) ?? e.text]), D && w("div", {
|
|
72829
72825
|
key: "append",
|
|
72830
72826
|
class: "v-chip__append"
|
|
72831
|
-
}, [l.append ? w(
|
|
72827
|
+
}, [l.append ? w(Fa, {
|
|
72832
72828
|
key: "append-defaults",
|
|
72833
72829
|
disabled: !T,
|
|
72834
72830
|
defaults: {
|
|
@@ -72854,7 +72850,7 @@ const ile = Ye({
|
|
|
72854
72850
|
class: "v-chip__close",
|
|
72855
72851
|
type: "button",
|
|
72856
72852
|
"data-testid": "close-chip"
|
|
72857
|
-
}, x.value), [l.close ? w(
|
|
72853
|
+
}, x.value), [l.close ? w(Fa, {
|
|
72858
72854
|
key: "close-defaults",
|
|
72859
72855
|
defaults: {
|
|
72860
72856
|
VIcon: {
|
|
@@ -73492,7 +73488,7 @@ dt()({
|
|
|
73492
73488
|
return w("div", {
|
|
73493
73489
|
key: H.value,
|
|
73494
73490
|
class: "v-select__selection"
|
|
73495
|
-
}, [K ? a.chip ? w(
|
|
73491
|
+
}, [K ? a.chip ? w(Fa, {
|
|
73496
73492
|
key: "chip-defaults",
|
|
73497
73493
|
defaults: {
|
|
73498
73494
|
VChip: {
|
|
@@ -73953,7 +73949,7 @@ dt()({
|
|
|
73953
73949
|
key: ue.value,
|
|
73954
73950
|
class: ["v-combobox__selection", Se === g.value && ["v-combobox__selection--selected", b.value]],
|
|
73955
73951
|
style: Se === g.value ? k.value : {}
|
|
73956
|
-
}, [T.value ? l.chip ? w(
|
|
73952
|
+
}, [T.value ? l.chip ? w(Fa, {
|
|
73957
73953
|
key: "chip-defaults",
|
|
73958
73954
|
defaults: {
|
|
73959
73955
|
VChip: {
|
|
@@ -76067,7 +76063,7 @@ dt()({
|
|
|
76067
76063
|
return [O && w("div", {
|
|
76068
76064
|
key: "image",
|
|
76069
76065
|
class: "v-navigation-drawer__img"
|
|
76070
|
-
}, [l.image ? w(
|
|
76066
|
+
}, [l.image ? w(Fa, {
|
|
76071
76067
|
key: "image-defaults",
|
|
76072
76068
|
disabled: !e.image,
|
|
76073
76069
|
defaults: {
|
|
@@ -78337,7 +78333,7 @@ const mie = Ue({
|
|
|
78337
78333
|
},
|
|
78338
78334
|
...Dr(),
|
|
78339
78335
|
...cr(),
|
|
78340
|
-
...
|
|
78336
|
+
...Ra()
|
|
78341
78337
|
}, "VSkeletonLoader"), hie = ot()({
|
|
78342
78338
|
name: "VSkeletonLoader",
|
|
78343
78339
|
props: mie(),
|
|
@@ -78544,7 +78540,7 @@ const mie = Ue({
|
|
|
78544
78540
|
default: W(() => [
|
|
78545
78541
|
ae("div", Sie, [
|
|
78546
78542
|
ae("div", Cie, [
|
|
78547
|
-
w(
|
|
78543
|
+
w(ja, null, {
|
|
78548
78544
|
default: W(() => [
|
|
78549
78545
|
K ? (N(), le("div", Mie, [
|
|
78550
78546
|
w(Pe, {
|
|
@@ -78623,7 +78619,7 @@ const mie = Ue({
|
|
|
78623
78619
|
}, 1032, ["items", "onReorder"])
|
|
78624
78620
|
])) : ee("", !0),
|
|
78625
78621
|
V.canEdit !== !1 ? (N(), le("div", Die, [
|
|
78626
|
-
w(
|
|
78622
|
+
w(Na, { "z-index": "2500" }, {
|
|
78627
78623
|
activator: W(({ props: O }) => [
|
|
78628
78624
|
w(Pe, ye({
|
|
78629
78625
|
class: "mx-auto",
|
|
@@ -78846,7 +78842,7 @@ const mie = Ue({
|
|
|
78846
78842
|
])),
|
|
78847
78843
|
_: 1
|
|
78848
78844
|
})) : ee("", !0),
|
|
78849
|
-
w(
|
|
78845
|
+
w(ja, { "hide-on-leave": "" }, {
|
|
78850
78846
|
default: W(() => [
|
|
78851
78847
|
_(b).useBgSrc && I.imgProps != null ? (N(), le("div", Oie, [
|
|
78852
78848
|
w(JA, ye(I.imgProps, {
|
|
@@ -78903,7 +78899,7 @@ const mie = Ue({
|
|
|
78903
78899
|
}, Kt({
|
|
78904
78900
|
"form-toolbar-right": W(() => [
|
|
78905
78901
|
ae("div", Hie, [
|
|
78906
|
-
w(
|
|
78902
|
+
w(Na, null, {
|
|
78907
78903
|
activator: W(({ props: V }) => [
|
|
78908
78904
|
w(Pe, ye({
|
|
78909
78905
|
icon: "$view-carousel",
|
|
@@ -78941,7 +78937,7 @@ const mie = Ue({
|
|
|
78941
78937
|
]),
|
|
78942
78938
|
_: 1
|
|
78943
78939
|
}),
|
|
78944
|
-
w(
|
|
78940
|
+
w(Na, { "close-on-content-click": !1 }, {
|
|
78945
78941
|
activator: W(({ props: V }) => [
|
|
78946
78942
|
w(Pe, ye({
|
|
78947
78943
|
class: "ml-1",
|
|
@@ -78973,7 +78969,7 @@ const mie = Ue({
|
|
|
78973
78969
|
]),
|
|
78974
78970
|
_: 1
|
|
78975
78971
|
}),
|
|
78976
|
-
w(
|
|
78972
|
+
w(Na, { "close-on-content-click": !1 }, {
|
|
78977
78973
|
activator: W(({ props: V }) => [
|
|
78978
78974
|
w(Pe, ye({
|
|
78979
78975
|
class: "ml-1",
|
|
@@ -79129,7 +79125,7 @@ export {
|
|
|
79129
79125
|
LL as isArrayOfLength,
|
|
79130
79126
|
Tt as isLengthyArray,
|
|
79131
79127
|
PL as isMinDate,
|
|
79132
|
-
|
|
79128
|
+
Ba as isNullOrEmpty,
|
|
79133
79129
|
BL as isSameDownToHour,
|
|
79134
79130
|
_L as jwtDecrypt,
|
|
79135
79131
|
TL as jwtEncrypt,
|