@qikdev/vue-ui 0.2.191 → 0.2.194
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/lib.es.js +923 -806
- package/dist/lib.es.js.map +1 -1
- package/dist/lib.umd.js +3 -3
- package/dist/lib.umd.js.map +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/lib.es.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import './style.css';
|
|
2
|
-
import { defineComponent as Vr, ref as Jt, toRefs as xa, onMounted as wa, onBeforeUnmount as
|
|
2
|
+
import { defineComponent as Vr, ref as Jt, toRefs as xa, onMounted as wa, onBeforeUnmount as qo, watch as Er, computed as fr, openBlock as o, createElementBlock as d, renderSlot as q, createCommentVNode as _, normalizeClass as L, useSlots as Wo, reactive as Ti, provide as Li, resolveComponent as y, Fragment as S, unref as zn, createBlock as k, withCtx as h, createVNode as m, renderList as F, toDisplayString as v, withDirectives as Y, vShow as di, createElementVNode as x, withModifiers as z, createTextVNode as T, h as mr, mergeProps as Oi, toHandlers as Ar, normalizeStyle as He, resolveDynamicComponent as ft, vModelSelect as Tt, pushScopeId as qe, popScopeId as We, Teleport as Go, vModelText as ae, withKeys as ge, TransitionGroup as Ko, nextTick as Sa, vModelDynamic as Hn } from "vue";
|
|
3
3
|
import { EventDispatcher as Yo } from "@qikdev/sdk";
|
|
4
|
-
const Zo = "0.2.
|
|
4
|
+
const Zo = "0.2.194";
|
|
5
5
|
class Pt extends Error {
|
|
6
6
|
}
|
|
7
7
|
class Jo extends Pt {
|
|
@@ -26,7 +26,7 @@ class Ta extends Pt {
|
|
|
26
26
|
super(`Invalid unit ${t}`);
|
|
27
27
|
}
|
|
28
28
|
}
|
|
29
|
-
class
|
|
29
|
+
class Ye extends Pt {
|
|
30
30
|
}
|
|
31
31
|
class vt extends Pt {
|
|
32
32
|
constructor() {
|
|
@@ -277,7 +277,7 @@ function Vi(e, t) {
|
|
|
277
277
|
function Ga(e) {
|
|
278
278
|
const t = Number(e);
|
|
279
279
|
if (typeof e == "boolean" || e === "" || Number.isNaN(t))
|
|
280
|
-
throw new
|
|
280
|
+
throw new Ye(`Invalid unit value ${e}`);
|
|
281
281
|
return t;
|
|
282
282
|
}
|
|
283
283
|
function mi(e, t) {
|
|
@@ -1577,25 +1577,25 @@ const bd = "Invalid Duration", ll = {
|
|
|
1577
1577
|
milliseconds: 30 * 24 * 60 * 60 * 1e3
|
|
1578
1578
|
},
|
|
1579
1579
|
...ll
|
|
1580
|
-
},
|
|
1580
|
+
}, Ge = 146097 / 400, qt = 146097 / 4800, xd = {
|
|
1581
1581
|
years: {
|
|
1582
1582
|
quarters: 4,
|
|
1583
1583
|
months: 12,
|
|
1584
|
-
weeks:
|
|
1585
|
-
days:
|
|
1586
|
-
hours:
|
|
1587
|
-
minutes:
|
|
1588
|
-
seconds:
|
|
1589
|
-
milliseconds:
|
|
1584
|
+
weeks: Ge / 7,
|
|
1585
|
+
days: Ge,
|
|
1586
|
+
hours: Ge * 24,
|
|
1587
|
+
minutes: Ge * 24 * 60,
|
|
1588
|
+
seconds: Ge * 24 * 60 * 60,
|
|
1589
|
+
milliseconds: Ge * 24 * 60 * 60 * 1e3
|
|
1590
1590
|
},
|
|
1591
1591
|
quarters: {
|
|
1592
1592
|
months: 3,
|
|
1593
|
-
weeks:
|
|
1594
|
-
days:
|
|
1595
|
-
hours:
|
|
1596
|
-
minutes:
|
|
1597
|
-
seconds:
|
|
1598
|
-
milliseconds:
|
|
1593
|
+
weeks: Ge / 28,
|
|
1594
|
+
days: Ge / 4,
|
|
1595
|
+
hours: Ge * 24 / 4,
|
|
1596
|
+
minutes: Ge * 24 * 60 / 4,
|
|
1597
|
+
seconds: Ge * 24 * 60 * 60 / 4,
|
|
1598
|
+
milliseconds: Ge * 24 * 60 * 60 * 1e3 / 4
|
|
1599
1599
|
},
|
|
1600
1600
|
months: {
|
|
1601
1601
|
weeks: qt / 7,
|
|
@@ -1676,7 +1676,7 @@ class Q {
|
|
|
1676
1676
|
*/
|
|
1677
1677
|
static fromObject(t, n = {}) {
|
|
1678
1678
|
if (t == null || typeof t != "object")
|
|
1679
|
-
throw new
|
|
1679
|
+
throw new Ye(
|
|
1680
1680
|
`Duration.fromObject: argument expected to be an object, got ${t === null ? "null" : typeof t}`
|
|
1681
1681
|
);
|
|
1682
1682
|
return new Q({
|
|
@@ -1702,7 +1702,7 @@ class Q {
|
|
|
1702
1702
|
return t;
|
|
1703
1703
|
if (typeof t == "object")
|
|
1704
1704
|
return Q.fromObject(t);
|
|
1705
|
-
throw new
|
|
1705
|
+
throw new Ye(
|
|
1706
1706
|
`Unknown duration argument ${t} of type ${typeof t}`
|
|
1707
1707
|
);
|
|
1708
1708
|
}
|
|
@@ -1750,7 +1750,7 @@ class Q {
|
|
|
1750
1750
|
*/
|
|
1751
1751
|
static invalid(t, n = null) {
|
|
1752
1752
|
if (!t)
|
|
1753
|
-
throw new
|
|
1753
|
+
throw new Ye("need to specify a reason the Duration is invalid");
|
|
1754
1754
|
const r = t instanceof tt ? t : new tt(t, n);
|
|
1755
1755
|
if (ve.throwOnInvalid)
|
|
1756
1756
|
throw new Qo(r);
|
|
@@ -2205,7 +2205,7 @@ class pe {
|
|
|
2205
2205
|
*/
|
|
2206
2206
|
static invalid(t, n = null) {
|
|
2207
2207
|
if (!t)
|
|
2208
|
-
throw new
|
|
2208
|
+
throw new Ye("need to specify a reason the Interval is invalid");
|
|
2209
2209
|
const r = t instanceof tt ? t : new tt(t, n);
|
|
2210
2210
|
if (ve.throwOnInvalid)
|
|
2211
2211
|
throw new Xo(r);
|
|
@@ -2848,7 +2848,7 @@ function Xe({ numberingSystem: e }, t = "") {
|
|
|
2848
2848
|
return new RegExp(`${Pr[e || "latn"]}${t}`);
|
|
2849
2849
|
}
|
|
2850
2850
|
const Md = "missing Intl.DateTimeFormat.formatToParts support";
|
|
2851
|
-
function
|
|
2851
|
+
function te(e, t = (n) => n) {
|
|
2852
2852
|
return { regex: e, deser: ([n]) => t(Ad(n)) };
|
|
2853
2853
|
}
|
|
2854
2854
|
const Dd = String.fromCharCode(160), ul = `( |${Dd})`, dl = new RegExp(ul, "g");
|
|
@@ -2874,7 +2874,7 @@ function Fd(e) {
|
|
|
2874
2874
|
return e.replace(/[\-\[\]{}()*+?.,\\\^$|#\s]/g, "\\$&");
|
|
2875
2875
|
}
|
|
2876
2876
|
function $d(e, t) {
|
|
2877
|
-
const n = Xe(t), r = Xe(t, "{2}"), s = Xe(t, "{3}"), i = Xe(t, "{4}"), a = Xe(t, "{6}"), l = Xe(t, "{1,2}"), u = Xe(t, "{1,3}"), f = Xe(t, "{1,6}"), c = Xe(t, "{1,9}"), p = Xe(t, "{2,4}"), g = Xe(t, "{4,6}"), b = (j) => ({ regex: RegExp(Fd(j.val)), deser: ([
|
|
2877
|
+
const n = Xe(t), r = Xe(t, "{2}"), s = Xe(t, "{3}"), i = Xe(t, "{4}"), a = Xe(t, "{6}"), l = Xe(t, "{1,2}"), u = Xe(t, "{1,3}"), f = Xe(t, "{1,6}"), c = Xe(t, "{1,9}"), p = Xe(t, "{2,4}"), g = Xe(t, "{4,6}"), b = (j) => ({ regex: RegExp(Fd(j.val)), deser: ([H]) => H, literal: !0 }), O = ((j) => {
|
|
2878
2878
|
if (e.literal)
|
|
2879
2879
|
return b(j);
|
|
2880
2880
|
switch (j.val) {
|
|
@@ -2883,82 +2883,82 @@ function $d(e, t) {
|
|
|
2883
2883
|
case "GG":
|
|
2884
2884
|
return Qe(t.eras("long", !1), 0);
|
|
2885
2885
|
case "y":
|
|
2886
|
-
return
|
|
2886
|
+
return te(f);
|
|
2887
2887
|
case "yy":
|
|
2888
|
-
return
|
|
2888
|
+
return te(p, pr);
|
|
2889
2889
|
case "yyyy":
|
|
2890
|
-
return
|
|
2890
|
+
return te(i);
|
|
2891
2891
|
case "yyyyy":
|
|
2892
|
-
return
|
|
2892
|
+
return te(g);
|
|
2893
2893
|
case "yyyyyy":
|
|
2894
|
-
return
|
|
2894
|
+
return te(a);
|
|
2895
2895
|
case "M":
|
|
2896
|
-
return
|
|
2896
|
+
return te(l);
|
|
2897
2897
|
case "MM":
|
|
2898
|
-
return
|
|
2898
|
+
return te(r);
|
|
2899
2899
|
case "MMM":
|
|
2900
2900
|
return Qe(t.months("short", !0, !1), 1);
|
|
2901
2901
|
case "MMMM":
|
|
2902
2902
|
return Qe(t.months("long", !0, !1), 1);
|
|
2903
2903
|
case "L":
|
|
2904
|
-
return
|
|
2904
|
+
return te(l);
|
|
2905
2905
|
case "LL":
|
|
2906
|
-
return
|
|
2906
|
+
return te(r);
|
|
2907
2907
|
case "LLL":
|
|
2908
2908
|
return Qe(t.months("short", !1, !1), 1);
|
|
2909
2909
|
case "LLLL":
|
|
2910
2910
|
return Qe(t.months("long", !1, !1), 1);
|
|
2911
2911
|
case "d":
|
|
2912
|
-
return
|
|
2912
|
+
return te(l);
|
|
2913
2913
|
case "dd":
|
|
2914
|
-
return
|
|
2914
|
+
return te(r);
|
|
2915
2915
|
case "o":
|
|
2916
|
-
return
|
|
2916
|
+
return te(u);
|
|
2917
2917
|
case "ooo":
|
|
2918
|
-
return
|
|
2918
|
+
return te(s);
|
|
2919
2919
|
case "HH":
|
|
2920
|
-
return
|
|
2920
|
+
return te(r);
|
|
2921
2921
|
case "H":
|
|
2922
|
-
return
|
|
2922
|
+
return te(l);
|
|
2923
2923
|
case "hh":
|
|
2924
|
-
return
|
|
2924
|
+
return te(r);
|
|
2925
2925
|
case "h":
|
|
2926
|
-
return
|
|
2926
|
+
return te(l);
|
|
2927
2927
|
case "mm":
|
|
2928
|
-
return
|
|
2928
|
+
return te(r);
|
|
2929
2929
|
case "m":
|
|
2930
|
-
return
|
|
2930
|
+
return te(l);
|
|
2931
2931
|
case "q":
|
|
2932
|
-
return
|
|
2932
|
+
return te(l);
|
|
2933
2933
|
case "qq":
|
|
2934
|
-
return
|
|
2934
|
+
return te(r);
|
|
2935
2935
|
case "s":
|
|
2936
|
-
return
|
|
2936
|
+
return te(l);
|
|
2937
2937
|
case "ss":
|
|
2938
|
-
return
|
|
2938
|
+
return te(r);
|
|
2939
2939
|
case "S":
|
|
2940
|
-
return
|
|
2940
|
+
return te(u);
|
|
2941
2941
|
case "SSS":
|
|
2942
|
-
return
|
|
2942
|
+
return te(s);
|
|
2943
2943
|
case "u":
|
|
2944
2944
|
return ji(c);
|
|
2945
2945
|
case "uu":
|
|
2946
2946
|
return ji(l);
|
|
2947
2947
|
case "uuu":
|
|
2948
|
-
return
|
|
2948
|
+
return te(n);
|
|
2949
2949
|
case "a":
|
|
2950
2950
|
return Qe(t.meridiems(), 0);
|
|
2951
2951
|
case "kkkk":
|
|
2952
|
-
return
|
|
2952
|
+
return te(i);
|
|
2953
2953
|
case "kk":
|
|
2954
|
-
return
|
|
2954
|
+
return te(p, pr);
|
|
2955
2955
|
case "W":
|
|
2956
|
-
return
|
|
2956
|
+
return te(l);
|
|
2957
2957
|
case "WW":
|
|
2958
|
-
return
|
|
2958
|
+
return te(r);
|
|
2959
2959
|
case "E":
|
|
2960
2960
|
case "c":
|
|
2961
|
-
return
|
|
2961
|
+
return te(n);
|
|
2962
2962
|
case "EEE":
|
|
2963
2963
|
return Qe(t.weekdays("short", !1, !1), 1);
|
|
2964
2964
|
case "EEEE":
|
|
@@ -3122,7 +3122,7 @@ function Hd(e, t, n) {
|
|
|
3122
3122
|
return [r, s, i, a];
|
|
3123
3123
|
}
|
|
3124
3124
|
const fl = [0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334], ml = [0, 31, 60, 91, 121, 152, 182, 213, 244, 274, 305, 335];
|
|
3125
|
-
function
|
|
3125
|
+
function Ze(e, t) {
|
|
3126
3126
|
return new tt(
|
|
3127
3127
|
"unit out of range",
|
|
3128
3128
|
`you specified ${t} (of type ${typeof t}) as a ${e}, which is invalid`
|
|
@@ -3163,19 +3163,19 @@ function ys(e) {
|
|
|
3163
3163
|
}
|
|
3164
3164
|
function qd(e) {
|
|
3165
3165
|
const t = Ci(e.weekYear), n = dt(e.weekNumber, 1, fi(e.weekYear)), r = dt(e.weekday, 1, 7);
|
|
3166
|
-
return t ? n ? r ? !1 :
|
|
3166
|
+
return t ? n ? r ? !1 : Ze("weekday", e.weekday) : Ze("week", e.week) : Ze("weekYear", e.weekYear);
|
|
3167
3167
|
}
|
|
3168
3168
|
function Wd(e) {
|
|
3169
3169
|
const t = Ci(e.year), n = dt(e.ordinal, 1, Tn(e.year));
|
|
3170
|
-
return t ? n ? !1 :
|
|
3170
|
+
return t ? n ? !1 : Ze("ordinal", e.ordinal) : Ze("year", e.year);
|
|
3171
3171
|
}
|
|
3172
3172
|
function _l(e) {
|
|
3173
3173
|
const t = Ci(e.year), n = dt(e.month, 1, 12), r = dt(e.day, 1, ci(e.year, e.month));
|
|
3174
|
-
return t ? n ? r ? !1 :
|
|
3174
|
+
return t ? n ? r ? !1 : Ze("day", e.day) : Ze("month", e.month) : Ze("year", e.year);
|
|
3175
3175
|
}
|
|
3176
3176
|
function gl(e) {
|
|
3177
3177
|
const { hour: t, minute: n, second: r, millisecond: s } = e, i = dt(t, 0, 23) || t === 24 && n === 0 && r === 0 && s === 0, a = dt(n, 0, 59), l = dt(r, 0, 59), u = dt(s, 0, 999);
|
|
3178
|
-
return i ? a ? l ? u ? !1 :
|
|
3178
|
+
return i ? a ? l ? u ? !1 : Ze("millisecond", s) : Ze("second", r) : Ze("minute", n) : Ze("hour", t);
|
|
3179
3179
|
}
|
|
3180
3180
|
const zi = "Invalid DateTime", _s = 864e13;
|
|
3181
3181
|
function Kn(e) {
|
|
@@ -3477,7 +3477,7 @@ class U {
|
|
|
3477
3477
|
zone: xt(n.zone, ve.defaultZone),
|
|
3478
3478
|
loc: fe.fromObject(n)
|
|
3479
3479
|
});
|
|
3480
|
-
throw new
|
|
3480
|
+
throw new Ye(
|
|
3481
3481
|
`fromMillis requires a numerical input, but received a ${typeof t} with value ${t}`
|
|
3482
3482
|
);
|
|
3483
3483
|
}
|
|
@@ -3498,7 +3498,7 @@ class U {
|
|
|
3498
3498
|
zone: xt(n.zone, ve.defaultZone),
|
|
3499
3499
|
loc: fe.fromObject(n)
|
|
3500
3500
|
});
|
|
3501
|
-
throw new
|
|
3501
|
+
throw new Ye("fromSeconds requires a numerical input");
|
|
3502
3502
|
}
|
|
3503
3503
|
/**
|
|
3504
3504
|
* Create a DateTime from a JavaScript object with keys like 'year' and 'hour' with reasonable defaults.
|
|
@@ -3543,18 +3543,18 @@ class U {
|
|
|
3543
3543
|
const b = p || a.weekday && !c;
|
|
3544
3544
|
let w, O, j = gs(s, i);
|
|
3545
3545
|
b ? (w = Yd, O = Gd, j = br(j)) : l ? (w = Zd, O = Kd, j = Bi(j)) : (w = kl, O = bl);
|
|
3546
|
-
let
|
|
3547
|
-
for (const
|
|
3548
|
-
const
|
|
3549
|
-
J(
|
|
3550
|
-
}
|
|
3551
|
-
const
|
|
3552
|
-
if (
|
|
3553
|
-
return U.invalid(
|
|
3554
|
-
const
|
|
3546
|
+
let H = !1;
|
|
3547
|
+
for (const le of w) {
|
|
3548
|
+
const G = a[le];
|
|
3549
|
+
J(G) ? H ? a[le] = O[le] : a[le] = j[le] : H = !0;
|
|
3550
|
+
}
|
|
3551
|
+
const D = b ? qd(a) : l ? Wd(a) : _l(a), ee = D || gl(a);
|
|
3552
|
+
if (ee)
|
|
3553
|
+
return U.invalid(ee);
|
|
3554
|
+
const re = b ? ps(a) : l ? ys(a) : a, [ue, W] = ri(re, i, r), $ = new U({
|
|
3555
3555
|
ts: ue,
|
|
3556
3556
|
zone: r,
|
|
3557
|
-
o:
|
|
3557
|
+
o: W,
|
|
3558
3558
|
loc: g
|
|
3559
3559
|
});
|
|
3560
3560
|
return a.weekday && c && t.weekday !== $.weekday ? U.invalid(
|
|
@@ -3634,7 +3634,7 @@ class U {
|
|
|
3634
3634
|
*/
|
|
3635
3635
|
static fromFormat(t, n, r = {}) {
|
|
3636
3636
|
if (J(t) || J(n))
|
|
3637
|
-
throw new
|
|
3637
|
+
throw new Ye("fromFormat requires an input string and a format");
|
|
3638
3638
|
const { locale: s = null, numberingSystem: i = null } = r, a = fe.fromOpts({
|
|
3639
3639
|
locale: s,
|
|
3640
3640
|
numberingSystem: i,
|
|
@@ -3680,7 +3680,7 @@ class U {
|
|
|
3680
3680
|
*/
|
|
3681
3681
|
static invalid(t, n = null) {
|
|
3682
3682
|
if (!t)
|
|
3683
|
-
throw new
|
|
3683
|
+
throw new Ye("need to specify a reason the DateTime is invalid");
|
|
3684
3684
|
const r = t instanceof tt ? t : new tt(t, n);
|
|
3685
3685
|
if (ve.throwOnInvalid)
|
|
3686
3686
|
throw new Jo(r);
|
|
@@ -4538,7 +4538,7 @@ class U {
|
|
|
4538
4538
|
*/
|
|
4539
4539
|
static min(...t) {
|
|
4540
4540
|
if (!t.every(U.isDateTime))
|
|
4541
|
-
throw new
|
|
4541
|
+
throw new Ye("min requires all arguments be DateTimes");
|
|
4542
4542
|
return ts(t, (n) => n.valueOf(), Math.min);
|
|
4543
4543
|
}
|
|
4544
4544
|
/**
|
|
@@ -4548,7 +4548,7 @@ class U {
|
|
|
4548
4548
|
*/
|
|
4549
4549
|
static max(...t) {
|
|
4550
4550
|
if (!t.every(U.isDateTime))
|
|
4551
|
-
throw new
|
|
4551
|
+
throw new Ye("max requires all arguments be DateTimes");
|
|
4552
4552
|
return ts(t, (n) => n.valueOf(), Math.max);
|
|
4553
4553
|
}
|
|
4554
4554
|
// MISC
|
|
@@ -4736,7 +4736,7 @@ function yn(e) {
|
|
|
4736
4736
|
return U.fromJSDate(e);
|
|
4737
4737
|
if (e && typeof e == "object")
|
|
4738
4738
|
return U.fromObject(e);
|
|
4739
|
-
throw new
|
|
4739
|
+
throw new Ye(
|
|
4740
4740
|
`Unknown datetime argument: ${e}, of type ${typeof e}`
|
|
4741
4741
|
);
|
|
4742
4742
|
}
|
|
@@ -4850,7 +4850,7 @@ const ec = Vr({
|
|
|
4850
4850
|
} catch (p) {
|
|
4851
4851
|
console.error(p);
|
|
4852
4852
|
}
|
|
4853
|
-
}),
|
|
4853
|
+
}), qo(() => {
|
|
4854
4854
|
var u, f;
|
|
4855
4855
|
(u = r.value) == null || u.unmount(), (f = r.value) == null || f.destroy();
|
|
4856
4856
|
}), Er(l, () => {
|
|
@@ -4899,7 +4899,7 @@ const rc = Vr({
|
|
|
4899
4899
|
}), sc = { key: 0 };
|
|
4900
4900
|
function ac(e, t, n, r, s, i) {
|
|
4901
4901
|
return e.elementsUsable ? (o(), d("div", sc, [
|
|
4902
|
-
|
|
4902
|
+
q(e.$slots, "default", {
|
|
4903
4903
|
instance: e.instance,
|
|
4904
4904
|
elements: e.elements
|
|
4905
4905
|
})
|
|
@@ -4925,28 +4925,28 @@ function uc(e, t, n, r, s, i) {
|
|
|
4925
4925
|
return o(), d("div", {
|
|
4926
4926
|
class: L(["flex-column", { center: n.center, shrink: n.shrink }])
|
|
4927
4927
|
}, [
|
|
4928
|
-
|
|
4928
|
+
q(e.$slots, "default", {}, void 0, !0)
|
|
4929
4929
|
], 2);
|
|
4930
4930
|
}
|
|
4931
4931
|
const dc = /* @__PURE__ */ C(oc, [["render", uc], ["__scopeId", "data-v-b03628f8"]]);
|
|
4932
4932
|
const cc = {}, fc = { class: "flex-column-body" };
|
|
4933
4933
|
function mc(e, t, n, r, s, i) {
|
|
4934
4934
|
return o(), d("div", fc, [
|
|
4935
|
-
|
|
4935
|
+
q(e.$slots, "default", {}, void 0, !0)
|
|
4936
4936
|
]);
|
|
4937
4937
|
}
|
|
4938
4938
|
const hc = /* @__PURE__ */ C(cc, [["render", mc], ["__scopeId", "data-v-ab49c425"]]);
|
|
4939
4939
|
const pc = {}, yc = { class: "flex-column-header" };
|
|
4940
4940
|
function _c(e, t, n, r, s, i) {
|
|
4941
4941
|
return o(), d("div", yc, [
|
|
4942
|
-
|
|
4942
|
+
q(e.$slots, "default", {}, void 0, !0)
|
|
4943
4943
|
]);
|
|
4944
4944
|
}
|
|
4945
4945
|
const gc = /* @__PURE__ */ C(pc, [["render", _c], ["__scopeId", "data-v-968bcded"]]);
|
|
4946
4946
|
const vc = {}, bc = { class: "flex-column-footer" };
|
|
4947
4947
|
function kc(e, t, n, r, s, i) {
|
|
4948
4948
|
return o(), d("div", bc, [
|
|
4949
|
-
|
|
4949
|
+
q(e.$slots, "default", {}, void 0, !0)
|
|
4950
4950
|
]);
|
|
4951
4951
|
}
|
|
4952
4952
|
const xc = /* @__PURE__ */ C(vc, [["render", kc], ["__scopeId", "data-v-941966e2"]]);
|
|
@@ -4963,7 +4963,7 @@ function Sc(e, t, n, r, s, i) {
|
|
|
4963
4963
|
return o(), d("div", {
|
|
4964
4964
|
class: L(["flex-cell", { flex: n.flex, center: n.center, vcenter: n.vcenter, "align-bottom": n.alignBottom, shrink: n.shrink }])
|
|
4965
4965
|
}, [
|
|
4966
|
-
|
|
4966
|
+
q(e.$slots, "default", {}, void 0, !0)
|
|
4967
4967
|
], 2);
|
|
4968
4968
|
}
|
|
4969
4969
|
const Tc = /* @__PURE__ */ C(wc, [["render", Sc], ["__scopeId", "data-v-efd82fd0"]]);
|
|
@@ -4987,7 +4987,7 @@ function Cc(e, t, n, r, s, i) {
|
|
|
4987
4987
|
return o(), d("div", {
|
|
4988
4988
|
class: L(["flex-row", { gap: n.gap, vcenter: n.vcenter, center: n.center, wrap: n.wrap }])
|
|
4989
4989
|
}, [
|
|
4990
|
-
|
|
4990
|
+
q(e.$slots, "default", {}, void 0, !0)
|
|
4991
4991
|
], 2);
|
|
4992
4992
|
}
|
|
4993
4993
|
const Vc = /* @__PURE__ */ C(Oc, [["render", Cc], ["__scopeId", "data-v-bd96c129"]]);
|
|
@@ -4999,28 +4999,28 @@ const Dc = /* @__PURE__ */ C(Ec, [["render", Mc], ["__scopeId", "data-v-f42ac625
|
|
|
4999
4999
|
const Ic = {}, Fc = { class: "panel" };
|
|
5000
5000
|
function $c(e, t, n, r, s, i) {
|
|
5001
5001
|
return o(), d("div", Fc, [
|
|
5002
|
-
|
|
5002
|
+
q(e.$slots, "default", {}, void 0, !0)
|
|
5003
5003
|
]);
|
|
5004
5004
|
}
|
|
5005
5005
|
const Nc = /* @__PURE__ */ C(Ic, [["render", $c], ["__scopeId", "data-v-b89677dc"]]);
|
|
5006
5006
|
const Lc = {}, Pc = { class: "panel-body" };
|
|
5007
5007
|
function Uc(e, t, n, r, s, i) {
|
|
5008
5008
|
return o(), d("div", Pc, [
|
|
5009
|
-
|
|
5009
|
+
q(e.$slots, "default", {}, void 0, !0)
|
|
5010
5010
|
]);
|
|
5011
5011
|
}
|
|
5012
5012
|
const jc = /* @__PURE__ */ C(Lc, [["render", Uc], ["__scopeId", "data-v-53a6d4be"]]);
|
|
5013
5013
|
const Rc = {}, Bc = { class: "panel-header" };
|
|
5014
5014
|
function zc(e, t, n, r, s, i) {
|
|
5015
5015
|
return o(), d("div", Bc, [
|
|
5016
|
-
|
|
5016
|
+
q(e.$slots, "default", {}, void 0, !0)
|
|
5017
5017
|
]);
|
|
5018
5018
|
}
|
|
5019
5019
|
const Hc = /* @__PURE__ */ C(Rc, [["render", zc], ["__scopeId", "data-v-12bf7f04"]]);
|
|
5020
5020
|
const qc = {}, Wc = { class: "panel-footer" };
|
|
5021
5021
|
function Gc(e, t, n, r, s, i) {
|
|
5022
5022
|
return o(), d("div", Wc, [
|
|
5023
|
-
|
|
5023
|
+
q(e.$slots, "default", {}, void 0, !0)
|
|
5024
5024
|
]);
|
|
5025
5025
|
}
|
|
5026
5026
|
const Kc = /* @__PURE__ */ C(qc, [["render", Gc], ["__scopeId", "data-v-d8937de9"]]);
|
|
@@ -5090,47 +5090,47 @@ function Bf(e, t, n) {
|
|
|
5090
5090
|
if (typeof e != "function")
|
|
5091
5091
|
throw new TypeError(Uf);
|
|
5092
5092
|
t = As(t) || 0, Pf(n) && (c = !!n.leading, p = "maxWait" in n, i = p ? jf(As(n.maxWait) || 0, t) : i, g = "trailing" in n ? !!n.trailing : g);
|
|
5093
|
-
function b(
|
|
5094
|
-
var $ = r,
|
|
5095
|
-
return r = s = void 0, f =
|
|
5093
|
+
function b(W) {
|
|
5094
|
+
var $ = r, le = s;
|
|
5095
|
+
return r = s = void 0, f = W, a = e.apply(le, $), a;
|
|
5096
5096
|
}
|
|
5097
|
-
function w(
|
|
5098
|
-
return f =
|
|
5097
|
+
function w(W) {
|
|
5098
|
+
return f = W, l = setTimeout(H, t), c ? b(W) : a;
|
|
5099
5099
|
}
|
|
5100
|
-
function O(
|
|
5101
|
-
var $ =
|
|
5102
|
-
return p ? Rf(
|
|
5100
|
+
function O(W) {
|
|
5101
|
+
var $ = W - u, le = W - f, G = t - $;
|
|
5102
|
+
return p ? Rf(G, i - le) : G;
|
|
5103
5103
|
}
|
|
5104
|
-
function j(
|
|
5105
|
-
var $ =
|
|
5106
|
-
return u === void 0 || $ >= t || $ < 0 || p &&
|
|
5104
|
+
function j(W) {
|
|
5105
|
+
var $ = W - u, le = W - f;
|
|
5106
|
+
return u === void 0 || $ >= t || $ < 0 || p && le >= i;
|
|
5107
5107
|
}
|
|
5108
|
-
function
|
|
5109
|
-
var
|
|
5110
|
-
if (j(
|
|
5111
|
-
return
|
|
5112
|
-
l = setTimeout(
|
|
5108
|
+
function H() {
|
|
5109
|
+
var W = Wi();
|
|
5110
|
+
if (j(W))
|
|
5111
|
+
return D(W);
|
|
5112
|
+
l = setTimeout(H, O(W));
|
|
5113
5113
|
}
|
|
5114
|
-
function
|
|
5115
|
-
return l = void 0, g && r ? b(
|
|
5114
|
+
function D(W) {
|
|
5115
|
+
return l = void 0, g && r ? b(W) : (r = s = void 0, a);
|
|
5116
5116
|
}
|
|
5117
|
-
function
|
|
5117
|
+
function ee() {
|
|
5118
5118
|
l !== void 0 && clearTimeout(l), f = 0, r = u = s = l = void 0;
|
|
5119
5119
|
}
|
|
5120
|
-
function
|
|
5121
|
-
return l === void 0 ? a :
|
|
5120
|
+
function re() {
|
|
5121
|
+
return l === void 0 ? a : D(Wi());
|
|
5122
5122
|
}
|
|
5123
5123
|
function ue() {
|
|
5124
|
-
var
|
|
5125
|
-
if (r = arguments, s = this, u =
|
|
5124
|
+
var W = Wi(), $ = j(W);
|
|
5125
|
+
if (r = arguments, s = this, u = W, $) {
|
|
5126
5126
|
if (l === void 0)
|
|
5127
5127
|
return w(u);
|
|
5128
5128
|
if (p)
|
|
5129
|
-
return clearTimeout(l), l = setTimeout(
|
|
5129
|
+
return clearTimeout(l), l = setTimeout(H, t), b(u);
|
|
5130
5130
|
}
|
|
5131
|
-
return l === void 0 && (l = setTimeout(
|
|
5131
|
+
return l === void 0 && (l = setTimeout(H, t)), a;
|
|
5132
5132
|
}
|
|
5133
|
-
return ue.cancel =
|
|
5133
|
+
return ue.cancel = ee, ue.flush = re, ue;
|
|
5134
5134
|
}
|
|
5135
5135
|
var Nn = Bf;
|
|
5136
5136
|
const zf = ["onClick"], Hf = ["onClick"], qf = {
|
|
@@ -5140,7 +5140,7 @@ const zf = ["onClick"], Hf = ["onClick"], qf = {
|
|
|
5140
5140
|
inline: Boolean
|
|
5141
5141
|
},
|
|
5142
5142
|
setup(e) {
|
|
5143
|
-
const t =
|
|
5143
|
+
const t = Wo(), n = Ti({
|
|
5144
5144
|
tabs: []
|
|
5145
5145
|
});
|
|
5146
5146
|
Li("tabset", n);
|
|
@@ -5222,7 +5222,7 @@ const zf = ["onClick"], Hf = ["onClick"], qf = {
|
|
|
5222
5222
|
], 64)),
|
|
5223
5223
|
m(p, null, {
|
|
5224
5224
|
default: h(() => [
|
|
5225
|
-
|
|
5225
|
+
q(u.$slots, "default", {}, void 0, !0)
|
|
5226
5226
|
]),
|
|
5227
5227
|
_: 3
|
|
5228
5228
|
})
|
|
@@ -5316,16 +5316,16 @@ const zf = ["onClick"], Hf = ["onClick"], qf = {
|
|
|
5316
5316
|
};
|
|
5317
5317
|
function Kf(e, t, n, r, s, i) {
|
|
5318
5318
|
const a = y("flex-column");
|
|
5319
|
-
return n.keepAlive ?
|
|
5319
|
+
return n.keepAlive ? Y((o(), k(a, { key: 0 }, {
|
|
5320
5320
|
default: h(() => [
|
|
5321
|
-
|
|
5321
|
+
q(e.$slots, "default")
|
|
5322
5322
|
]),
|
|
5323
5323
|
_: 3
|
|
5324
5324
|
}, 512)), [
|
|
5325
5325
|
[di, i.active]
|
|
5326
5326
|
]) : i.active ? (o(), k(a, { key: 1 }, {
|
|
5327
5327
|
default: h(() => [
|
|
5328
|
-
|
|
5328
|
+
q(e.$slots, "default")
|
|
5329
5329
|
]),
|
|
5330
5330
|
_: 3
|
|
5331
5331
|
})) : _("", !0);
|
|
@@ -6019,19 +6019,19 @@ const Dl = { props: { template: String, parent: Object, templateProps: { type: O
|
|
|
6019
6019
|
}), Object.keys(s).forEach(function($) {
|
|
6020
6020
|
g[$] === void 0 && (b.components[$] = s[$]);
|
|
6021
6021
|
});
|
|
6022
|
-
var w = Object.keys(b.methods || {}), O = Object.keys(b.$data || {}), j = Object.keys(b.$props || {}),
|
|
6023
|
-
return js(ue,
|
|
6024
|
-
}),
|
|
6025
|
-
var
|
|
6026
|
-
return $.forEach(function(
|
|
6027
|
-
|
|
6028
|
-
return js(
|
|
6022
|
+
var w = Object.keys(b.methods || {}), O = Object.keys(b.$data || {}), j = Object.keys(b.$props || {}), H = Object.keys(this.templateProps), D = O.concat(j).concat(w).concat(H), ee = (ue = e, W = {}, w.forEach(function($) {
|
|
6023
|
+
return js(ue, W, $);
|
|
6024
|
+
}), W), re = function($) {
|
|
6025
|
+
var le = {};
|
|
6026
|
+
return $.forEach(function(G) {
|
|
6027
|
+
G && Object.getOwnPropertyNames(G).forEach(function(Me) {
|
|
6028
|
+
return js(G, le, Me);
|
|
6029
6029
|
});
|
|
6030
|
-
}),
|
|
6031
|
-
}([b.$data, b.$props,
|
|
6032
|
-
return mr({ template: this.template || "<div></div>", props:
|
|
6030
|
+
}), le;
|
|
6031
|
+
}([b.$data, b.$props, ee, this.templateProps]);
|
|
6032
|
+
return mr({ template: this.template || "<div></div>", props: D, computed: b.computed, components: b.components, provide: this.$parent.$.provides ? this.$parent.$.provides : {} }, Object.assign({}, re));
|
|
6033
6033
|
}
|
|
6034
|
-
var ue,
|
|
6034
|
+
var ue, W;
|
|
6035
6035
|
} };
|
|
6036
6036
|
const wy = {
|
|
6037
6037
|
components: {
|
|
@@ -6607,7 +6607,7 @@ function h_(e, t, n, r, s, i) {
|
|
|
6607
6607
|
return o(), d("tr", {
|
|
6608
6608
|
class: L([i.classes, "table-row"])
|
|
6609
6609
|
}, [
|
|
6610
|
-
|
|
6610
|
+
q(e.$slots, "default", {}, () => [
|
|
6611
6611
|
n.enableSelection ? (o(), d("th", {
|
|
6612
6612
|
key: 0,
|
|
6613
6613
|
class: "table-cell table-select first shrink",
|
|
@@ -6963,7 +6963,7 @@ function w_(e, t, n, r, s, i) {
|
|
|
6963
6963
|
], 10, k_);
|
|
6964
6964
|
}), 256)),
|
|
6965
6965
|
n.enableActions ? (o(), d("th", x_, [
|
|
6966
|
-
|
|
6966
|
+
q(e.$slots, "corner", {}, void 0, !0)
|
|
6967
6967
|
])) : _("", !0)
|
|
6968
6968
|
])
|
|
6969
6969
|
]),
|
|
@@ -6986,7 +6986,7 @@ function w_(e, t, n, r, s, i) {
|
|
|
6986
6986
|
], 512)
|
|
6987
6987
|
]);
|
|
6988
6988
|
}
|
|
6989
|
-
const S_ = /* @__PURE__ */ C(__, [["render", w_], ["__scopeId", "data-v-
|
|
6989
|
+
const S_ = /* @__PURE__ */ C(__, [["render", w_], ["__scopeId", "data-v-d9ac49e2"]]);
|
|
6990
6990
|
var tn = {}, T_ = {
|
|
6991
6991
|
get exports() {
|
|
6992
6992
|
return tn;
|
|
@@ -7042,7 +7042,7 @@ function V_(e, t) {
|
|
|
7042
7042
|
function Rs(e) {
|
|
7043
7043
|
return e != null;
|
|
7044
7044
|
}
|
|
7045
|
-
const
|
|
7045
|
+
const ie = {
|
|
7046
7046
|
props: {
|
|
7047
7047
|
field: {
|
|
7048
7048
|
type: Object,
|
|
@@ -7075,8 +7075,25 @@ const ne = {
|
|
|
7075
7075
|
},
|
|
7076
7076
|
inject: ["form", "fieldPath"],
|
|
7077
7077
|
computed: {
|
|
7078
|
+
asyncOptionsURL() {
|
|
7079
|
+
const e = this;
|
|
7080
|
+
if (e.field.asyncOptions)
|
|
7081
|
+
return e.field.asyncOptions;
|
|
7082
|
+
},
|
|
7078
7083
|
hasAsyncOptions() {
|
|
7079
|
-
|
|
7084
|
+
if (this.field.asyncOptionsURL)
|
|
7085
|
+
return !0;
|
|
7086
|
+
if (this.field.type === "reference") {
|
|
7087
|
+
switch (this.field.widget) {
|
|
7088
|
+
case "select":
|
|
7089
|
+
break;
|
|
7090
|
+
default:
|
|
7091
|
+
return !1;
|
|
7092
|
+
}
|
|
7093
|
+
if (this.field.lockFilter)
|
|
7094
|
+
return !0;
|
|
7095
|
+
}
|
|
7096
|
+
return !1;
|
|
7080
7097
|
},
|
|
7081
7098
|
loadingAsyncOptions() {
|
|
7082
7099
|
return this.hasAsyncOptions && this.asyncOptionsAreLoading;
|
|
@@ -7108,6 +7125,17 @@ const ne = {
|
|
|
7108
7125
|
},
|
|
7109
7126
|
options() {
|
|
7110
7127
|
var e = this;
|
|
7128
|
+
if (e.field.type === "reference") {
|
|
7129
|
+
const t = (e.field.allowedReferences || []).filter(Boolean);
|
|
7130
|
+
if (t.length)
|
|
7131
|
+
return t.map(function({ _id: n, title: r }) {
|
|
7132
|
+
return {
|
|
7133
|
+
title: r,
|
|
7134
|
+
value: n,
|
|
7135
|
+
_id: n
|
|
7136
|
+
};
|
|
7137
|
+
});
|
|
7138
|
+
}
|
|
7111
7139
|
return e.hasAsyncOptions ? e.dynamicOptions : (e.field.options || []).reduce(function(t, n) {
|
|
7112
7140
|
if (!n)
|
|
7113
7141
|
return t;
|
|
@@ -7224,9 +7252,27 @@ const ne = {
|
|
|
7224
7252
|
e.asyncOptionsAreLoading = !1;
|
|
7225
7253
|
return;
|
|
7226
7254
|
}
|
|
7227
|
-
e.asyncOptionsAreLoading = !0
|
|
7228
|
-
|
|
7229
|
-
|
|
7255
|
+
if (e.asyncOptionsAreLoading = !0, e.asyncOptionsURL) {
|
|
7256
|
+
const { data: t } = await e.$sdk.api.get(e.asyncOptionsURL);
|
|
7257
|
+
e.dynamicOptions = t;
|
|
7258
|
+
} else if (e.user) {
|
|
7259
|
+
const t = e.field.referenceType, n = {
|
|
7260
|
+
filter: e.field.lockFilter,
|
|
7261
|
+
sort: {
|
|
7262
|
+
key: "title",
|
|
7263
|
+
direction: "asc",
|
|
7264
|
+
type: "string"
|
|
7265
|
+
}
|
|
7266
|
+
}, { items: r } = await e.$sdk.content.list(t, n);
|
|
7267
|
+
e.dynamicOptions = r.map(function({ _id: s, title: i }) {
|
|
7268
|
+
return {
|
|
7269
|
+
value: s,
|
|
7270
|
+
title: i,
|
|
7271
|
+
_id: s
|
|
7272
|
+
};
|
|
7273
|
+
});
|
|
7274
|
+
}
|
|
7275
|
+
e.asyncOptionsAreLoading = !1;
|
|
7230
7276
|
},
|
|
7231
7277
|
cleanTextInput(e, t, n) {
|
|
7232
7278
|
switch (t) {
|
|
@@ -7339,7 +7385,7 @@ const A_ = {
|
|
|
7339
7385
|
// type: [Object, Array],
|
|
7340
7386
|
}
|
|
7341
7387
|
},
|
|
7342
|
-
mixins: [
|
|
7388
|
+
mixins: [ie],
|
|
7343
7389
|
created() {
|
|
7344
7390
|
this.model = this.model;
|
|
7345
7391
|
},
|
|
@@ -7452,7 +7498,7 @@ const A_ = {
|
|
|
7452
7498
|
}));
|
|
7453
7499
|
}
|
|
7454
7500
|
}
|
|
7455
|
-
}, M_ = (e) => (
|
|
7501
|
+
}, M_ = (e) => (qe("data-v-0525e84f"), e = e(), We(), e), D_ = {
|
|
7456
7502
|
key: 0,
|
|
7457
7503
|
class: "ux-field-title"
|
|
7458
7504
|
}, I_ = {
|
|
@@ -7523,7 +7569,7 @@ function Z_(e, t, n, r, s, i) {
|
|
|
7523
7569
|
e.multiValue ? (o(), d(S, { key: 0 }, [
|
|
7524
7570
|
e.canAddValue ? (o(), d(S, { key: 0 }, [
|
|
7525
7571
|
x("div", U_, [
|
|
7526
|
-
|
|
7572
|
+
q(e.$slots, "default", {}, () => [
|
|
7527
7573
|
m(f, {
|
|
7528
7574
|
size: e.size,
|
|
7529
7575
|
tag: "div"
|
|
@@ -7535,7 +7581,7 @@ function Z_(e, t, n, r, s, i) {
|
|
|
7535
7581
|
}, 8, ["size"])
|
|
7536
7582
|
], !0)
|
|
7537
7583
|
]),
|
|
7538
|
-
|
|
7584
|
+
Y(x("select", {
|
|
7539
7585
|
onFocus: t[0] || (t[0] = (...c) => e.touch && e.touch(...c)),
|
|
7540
7586
|
"onUpdate:modelValue": t[1] || (t[1] = (c) => s.candidate = c)
|
|
7541
7587
|
}, [
|
|
@@ -7556,7 +7602,7 @@ function Z_(e, t, n, r, s, i) {
|
|
|
7556
7602
|
], 64)) : _("", !0)
|
|
7557
7603
|
], 64)) : (o(), d(S, { key: 1 }, [
|
|
7558
7604
|
x("div", H_, [
|
|
7559
|
-
|
|
7605
|
+
q(e.$slots, "default", {}, () => [
|
|
7560
7606
|
m(f, {
|
|
7561
7607
|
size: e.size,
|
|
7562
7608
|
tag: "div"
|
|
@@ -7568,7 +7614,7 @@ function Z_(e, t, n, r, s, i) {
|
|
|
7568
7614
|
}, 8, ["size"])
|
|
7569
7615
|
], !0)
|
|
7570
7616
|
]),
|
|
7571
|
-
|
|
7617
|
+
Y(x("select", {
|
|
7572
7618
|
onFocus: t[2] || (t[2] = (...c) => e.touch && e.touch(...c)),
|
|
7573
7619
|
multiple: e.multiValue,
|
|
7574
7620
|
"onUpdate:modelValue": t[3] || (t[3] = (c) => e.model = c)
|
|
@@ -7836,7 +7882,7 @@ function tg(e, t, n, r, s, i) {
|
|
|
7836
7882
|
})) : _("", !0),
|
|
7837
7883
|
m(l, null, {
|
|
7838
7884
|
default: h(() => [
|
|
7839
|
-
|
|
7885
|
+
q(e.$slots, "default", {}, void 0, !0)
|
|
7840
7886
|
]),
|
|
7841
7887
|
_: 3
|
|
7842
7888
|
})
|
|
@@ -7885,16 +7931,32 @@ const ag = {
|
|
|
7885
7931
|
type: Boolean
|
|
7886
7932
|
}
|
|
7887
7933
|
}
|
|
7888
|
-
}, lg =
|
|
7889
|
-
|
|
7934
|
+
}, lg = (e) => (qe("data-v-4104e95e"), e = e(), We(), e), og = /* @__PURE__ */ lg(() => /* @__PURE__ */ x("svg", {
|
|
7935
|
+
width: "24",
|
|
7936
|
+
height: "24",
|
|
7937
|
+
stroke: "#000",
|
|
7938
|
+
viewBox: "0 0 24 24",
|
|
7939
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
7940
|
+
}, [
|
|
7941
|
+
/* @__PURE__ */ x("g", { class: "spinner_V8m1" }, [
|
|
7942
|
+
/* @__PURE__ */ x("circle", {
|
|
7943
|
+
cx: "12",
|
|
7944
|
+
cy: "12",
|
|
7945
|
+
r: "9.5",
|
|
7946
|
+
fill: "none",
|
|
7947
|
+
"stroke-width": "2"
|
|
7948
|
+
})
|
|
7949
|
+
])
|
|
7950
|
+
], -1)), ug = [
|
|
7951
|
+
og
|
|
7890
7952
|
];
|
|
7891
|
-
function
|
|
7953
|
+
function dg(e, t, n, r, s, i) {
|
|
7892
7954
|
return o(), d("div", {
|
|
7893
7955
|
class: L(["ux-spinner", { large: n.large }])
|
|
7894
|
-
},
|
|
7956
|
+
}, ug, 2);
|
|
7895
7957
|
}
|
|
7896
|
-
const Nl = /* @__PURE__ */ C(ag, [["render",
|
|
7897
|
-
const
|
|
7958
|
+
const Nl = /* @__PURE__ */ C(ag, [["render", dg], ["__scopeId", "data-v-4104e95e"]]);
|
|
7959
|
+
const cg = {
|
|
7898
7960
|
components: {
|
|
7899
7961
|
Spinner: Nl
|
|
7900
7962
|
},
|
|
@@ -7961,8 +8023,8 @@ const dg = {
|
|
|
7961
8023
|
}
|
|
7962
8024
|
}
|
|
7963
8025
|
}
|
|
7964
|
-
},
|
|
7965
|
-
function
|
|
8026
|
+
}, fg = { class: "ux-btn-text" };
|
|
8027
|
+
function mg(e, t, n, r, s, i) {
|
|
7966
8028
|
const a = y("spinner");
|
|
7967
8029
|
return o(), k(ft(i.element), {
|
|
7968
8030
|
type: "button",
|
|
@@ -7977,15 +8039,15 @@ function fg(e, t, n, r, s, i) {
|
|
|
7977
8039
|
}, {
|
|
7978
8040
|
default: h(() => [
|
|
7979
8041
|
n.loading ? (o(), k(a, { key: 0 })) : _("", !0),
|
|
7980
|
-
x("span",
|
|
7981
|
-
|
|
8042
|
+
x("span", fg, [
|
|
8043
|
+
q(e.$slots, "default", {}, void 0, !0)
|
|
7982
8044
|
])
|
|
7983
8045
|
]),
|
|
7984
8046
|
_: 3
|
|
7985
8047
|
}, 8, ["active", "loading", "to", "href", "target", "style", "class", "disabled"]);
|
|
7986
8048
|
}
|
|
7987
|
-
const
|
|
7988
|
-
const
|
|
8049
|
+
const hg = /* @__PURE__ */ C(cg, [["render", mg], ["__scopeId", "data-v-cede7d1c"]]);
|
|
8050
|
+
const pg = {
|
|
7989
8051
|
props: {
|
|
7990
8052
|
value: {
|
|
7991
8053
|
type: Boolean,
|
|
@@ -8001,7 +8063,7 @@ const hg = {
|
|
|
8001
8063
|
}
|
|
8002
8064
|
}
|
|
8003
8065
|
};
|
|
8004
|
-
function
|
|
8066
|
+
function yg(e, t, n, r, s, i) {
|
|
8005
8067
|
const a = y("ux-icon");
|
|
8006
8068
|
return o(), d("button", {
|
|
8007
8069
|
class: L(["ux-checkbox", i.classes])
|
|
@@ -8012,8 +8074,8 @@ function pg(e, t, n, r, s, i) {
|
|
|
8012
8074
|
})
|
|
8013
8075
|
], 2);
|
|
8014
8076
|
}
|
|
8015
|
-
const Ll = /* @__PURE__ */ C(
|
|
8016
|
-
const
|
|
8077
|
+
const Ll = /* @__PURE__ */ C(pg, [["render", yg], ["__scopeId", "data-v-23f90447"]]);
|
|
8078
|
+
const _g = {
|
|
8017
8079
|
// components:{
|
|
8018
8080
|
// UxIcon,
|
|
8019
8081
|
// },
|
|
@@ -8038,7 +8100,7 @@ const yg = {
|
|
|
8038
8100
|
}
|
|
8039
8101
|
}
|
|
8040
8102
|
};
|
|
8041
|
-
function
|
|
8103
|
+
function gg(e, t, n, r, s, i) {
|
|
8042
8104
|
const a = y("ux-icon");
|
|
8043
8105
|
return o(), d("a", {
|
|
8044
8106
|
class: L(["ux-switch", i.classes])
|
|
@@ -8051,8 +8113,8 @@ function _g(e, t, n, r, s, i) {
|
|
|
8051
8113
|
])
|
|
8052
8114
|
], 2);
|
|
8053
8115
|
}
|
|
8054
|
-
const Pl = /* @__PURE__ */ C(
|
|
8055
|
-
const
|
|
8116
|
+
const Pl = /* @__PURE__ */ C(_g, [["render", gg], ["__scopeId", "data-v-51e4f653"]]);
|
|
8117
|
+
const vg = {
|
|
8056
8118
|
props: {
|
|
8057
8119
|
to: {
|
|
8058
8120
|
type: [Object, String]
|
|
@@ -8119,7 +8181,7 @@ const gg = {
|
|
|
8119
8181
|
}
|
|
8120
8182
|
}
|
|
8121
8183
|
};
|
|
8122
|
-
function
|
|
8184
|
+
function bg(e, t, n, r, s, i) {
|
|
8123
8185
|
return o(), k(ft(i.element), {
|
|
8124
8186
|
onClick: i.clicked,
|
|
8125
8187
|
to: n.to,
|
|
@@ -8128,13 +8190,13 @@ function vg(e, t, n, r, s, i) {
|
|
|
8128
8190
|
class: L([i.class, "ux-link"])
|
|
8129
8191
|
}, {
|
|
8130
8192
|
default: h(() => [
|
|
8131
|
-
|
|
8193
|
+
q(e.$slots, "default", {}, void 0, !0)
|
|
8132
8194
|
]),
|
|
8133
8195
|
_: 3
|
|
8134
8196
|
}, 8, ["onClick", "to", "href", "target", "class"]);
|
|
8135
8197
|
}
|
|
8136
|
-
const
|
|
8137
|
-
const
|
|
8198
|
+
const kg = /* @__PURE__ */ C(vg, [["render", bg], ["__scopeId", "data-v-f55db950"]]);
|
|
8199
|
+
const xg = {
|
|
8138
8200
|
props: {
|
|
8139
8201
|
icon: {
|
|
8140
8202
|
type: [Object, String]
|
|
@@ -8162,15 +8224,15 @@ const kg = {
|
|
|
8162
8224
|
}
|
|
8163
8225
|
}
|
|
8164
8226
|
};
|
|
8165
|
-
function
|
|
8227
|
+
function wg(e, t, n, r, s, i) {
|
|
8166
8228
|
return o(), k(ft(i.element), {
|
|
8167
8229
|
class: L(["ux-icon fa", i.classes])
|
|
8168
8230
|
}, null, 8, ["class"]);
|
|
8169
8231
|
}
|
|
8170
|
-
const
|
|
8232
|
+
const Sg = /* @__PURE__ */ C(xg, [["render", wg], ["__scopeId", "data-v-028189aa"]]), Jn = {
|
|
8171
8233
|
cache: {}
|
|
8172
8234
|
};
|
|
8173
|
-
const
|
|
8235
|
+
const Tg = {
|
|
8174
8236
|
props: {
|
|
8175
8237
|
group: {
|
|
8176
8238
|
type: String
|
|
@@ -8293,15 +8355,15 @@ const Sg = {
|
|
|
8293
8355
|
}
|
|
8294
8356
|
}
|
|
8295
8357
|
};
|
|
8296
|
-
function
|
|
8358
|
+
function Og(e, t, n, r, s, i) {
|
|
8297
8359
|
return o(), d("div", {
|
|
8298
8360
|
class: L(["ux-menu", { right: n.right }])
|
|
8299
8361
|
}, [
|
|
8300
8362
|
x("span", null, [
|
|
8301
|
-
|
|
8363
|
+
q(e.$slots, "activator", { on: i.on }, void 0, !0)
|
|
8302
8364
|
]),
|
|
8303
8365
|
(o(), k(Go, { to: "body" }, [
|
|
8304
|
-
s.isExpanded ?
|
|
8366
|
+
s.isExpanded ? Y((o(), d("div", {
|
|
8305
8367
|
key: 0,
|
|
8306
8368
|
class: "ux-menu-outer",
|
|
8307
8369
|
style: He(s.outerStyle)
|
|
@@ -8311,7 +8373,7 @@ function Tg(e, t, n, r, s, i) {
|
|
|
8311
8373
|
ref: "menu",
|
|
8312
8374
|
style: He(s.innerStyle)
|
|
8313
8375
|
}, [
|
|
8314
|
-
|
|
8376
|
+
q(e.$slots, "default", {}, void 0, !0)
|
|
8315
8377
|
], 4)
|
|
8316
8378
|
], 4)), [
|
|
8317
8379
|
[di, s.isVisible]
|
|
@@ -8319,8 +8381,8 @@ function Tg(e, t, n, r, s, i) {
|
|
|
8319
8381
|
]))
|
|
8320
8382
|
], 2);
|
|
8321
8383
|
}
|
|
8322
|
-
const
|
|
8323
|
-
const
|
|
8384
|
+
const Cg = /* @__PURE__ */ C(Tg, [["render", Og], ["__scopeId", "data-v-960ee754"]]);
|
|
8385
|
+
const Vg = {
|
|
8324
8386
|
name: "menulist",
|
|
8325
8387
|
props: {
|
|
8326
8388
|
items: {
|
|
@@ -8474,7 +8536,7 @@ const Cg = {
|
|
|
8474
8536
|
}
|
|
8475
8537
|
}
|
|
8476
8538
|
};
|
|
8477
|
-
function
|
|
8539
|
+
function Eg(e, t, n, r, s, i) {
|
|
8478
8540
|
const a = y("flex-cell"), l = y("ux-icon"), u = y("flex-row"), f = y("ux-link"), c = y("menulist", !0);
|
|
8479
8541
|
return o(), d("ul", null, [
|
|
8480
8542
|
(o(!0), d(S, null, F(i.filteredItems, (p) => {
|
|
@@ -8548,8 +8610,8 @@ function Vg(e, t, n, r, s, i) {
|
|
|
8548
8610
|
}), 128))
|
|
8549
8611
|
]);
|
|
8550
8612
|
}
|
|
8551
|
-
const
|
|
8552
|
-
const
|
|
8613
|
+
const Ag = /* @__PURE__ */ C(Vg, [["render", Eg], ["__scopeId", "data-v-3764c3fa"]]);
|
|
8614
|
+
const Mg = {
|
|
8553
8615
|
props: {
|
|
8554
8616
|
item: {
|
|
8555
8617
|
type: [Object, String]
|
|
@@ -8728,8 +8790,8 @@ const Ag = {
|
|
|
8728
8790
|
return t && t.length && (e.backgroundColor = t[0]), this.isSvg || this.preview && (e.backgroundImage = `url(${this.previewSrc})`), e;
|
|
8729
8791
|
}
|
|
8730
8792
|
}
|
|
8731
|
-
},
|
|
8732
|
-
function
|
|
8793
|
+
}, Dg = ["alt", "data"], Ig = ["loading", "alt", "src"];
|
|
8794
|
+
function Fg(e, t, n, r, s, i) {
|
|
8733
8795
|
return o(), d("div", {
|
|
8734
8796
|
class: L(["ux-image", i.className]),
|
|
8735
8797
|
style: He(i.style)
|
|
@@ -8739,18 +8801,18 @@ function Ig(e, t, n, r, s, i) {
|
|
|
8739
8801
|
alt: i.altText,
|
|
8740
8802
|
type: "image/svg+xml",
|
|
8741
8803
|
data: i.src
|
|
8742
|
-
}, null, 8,
|
|
8804
|
+
}, null, 8, Dg)) : (o(), d("img", {
|
|
8743
8805
|
key: 1,
|
|
8744
8806
|
ref: "img",
|
|
8745
8807
|
loading: i.loading,
|
|
8746
8808
|
alt: i.altText,
|
|
8747
8809
|
style: He(i.imageStyle),
|
|
8748
8810
|
src: i.src
|
|
8749
|
-
}, null, 12,
|
|
8811
|
+
}, null, 12, Ig))
|
|
8750
8812
|
], 6);
|
|
8751
8813
|
}
|
|
8752
|
-
const
|
|
8753
|
-
const
|
|
8814
|
+
const $g = /* @__PURE__ */ C(Mg, [["render", Fg], ["__scopeId", "data-v-8c3931c4"]]);
|
|
8815
|
+
const Ng = {
|
|
8754
8816
|
props: {
|
|
8755
8817
|
item: {
|
|
8756
8818
|
type: [Object, String]
|
|
@@ -8903,8 +8965,8 @@ const $g = {
|
|
|
8903
8965
|
return this.padHeight && (e.height = 0, e.paddingBottom = this.padHeight, e.overflow = "hidden", e.position = "relative"), e;
|
|
8904
8966
|
}
|
|
8905
8967
|
}
|
|
8906
|
-
},
|
|
8907
|
-
function
|
|
8968
|
+
}, Lg = ["playsinline", "muted", "loop", "autoplay", "width", "height", "controls"], Pg = ["src", "type"], Ug = ["width", "height", "src", "title"];
|
|
8969
|
+
function jg(e, t, n, r, s, i) {
|
|
8908
8970
|
return o(), d("div", {
|
|
8909
8971
|
class: L(["ux-video", i.className])
|
|
8910
8972
|
}, [
|
|
@@ -8925,9 +8987,9 @@ function Ug(e, t, n, r, s, i) {
|
|
|
8925
8987
|
x("source", {
|
|
8926
8988
|
src: i.src,
|
|
8927
8989
|
type: i.mimetype
|
|
8928
|
-
}, null, 8,
|
|
8990
|
+
}, null, 8, Pg),
|
|
8929
8991
|
T(" Your browser does not support the video tag. ")
|
|
8930
|
-
], 8,
|
|
8992
|
+
], 8, Lg)
|
|
8931
8993
|
], 4)) : _("", !0),
|
|
8932
8994
|
i.mediaType === "youtube" ? (o(), d("div", {
|
|
8933
8995
|
key: 1,
|
|
@@ -8942,12 +9004,12 @@ function Ug(e, t, n, r, s, i) {
|
|
|
8942
9004
|
frameborder: "0",
|
|
8943
9005
|
allow: "accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share",
|
|
8944
9006
|
allowfullscreen: ""
|
|
8945
|
-
}, null, 8,
|
|
9007
|
+
}, null, 8, Ug)
|
|
8946
9008
|
], 4)) : _("", !0)
|
|
8947
9009
|
], 2);
|
|
8948
9010
|
}
|
|
8949
|
-
const
|
|
8950
|
-
const
|
|
9011
|
+
const Rg = /* @__PURE__ */ C(Ng, [["render", jg], ["__scopeId", "data-v-d46f56d4"]]);
|
|
9012
|
+
const Bg = {
|
|
8951
9013
|
props: {
|
|
8952
9014
|
value: {
|
|
8953
9015
|
type: Number
|
|
@@ -8970,18 +9032,18 @@ const Rg = {
|
|
|
8970
9032
|
return "i";
|
|
8971
9033
|
}
|
|
8972
9034
|
}
|
|
8973
|
-
},
|
|
8974
|
-
function
|
|
8975
|
-
return o(), d("div",
|
|
8976
|
-
|
|
9035
|
+
}, zg = (e) => (qe("data-v-b9019dd2"), e = e(), We(), e), Hg = { class: "ux-progress" }, qg = /* @__PURE__ */ zg(() => /* @__PURE__ */ x("div", { class: "ux-progress-bg" }, null, -1));
|
|
9036
|
+
function Wg(e, t, n, r, s, i) {
|
|
9037
|
+
return o(), d("div", Hg, [
|
|
9038
|
+
qg,
|
|
8977
9039
|
x("div", {
|
|
8978
9040
|
class: "ux-progress-fg",
|
|
8979
9041
|
style: He(i.barStyle)
|
|
8980
9042
|
}, null, 4)
|
|
8981
9043
|
]);
|
|
8982
9044
|
}
|
|
8983
|
-
const
|
|
8984
|
-
const
|
|
9045
|
+
const Gg = /* @__PURE__ */ C(Bg, [["render", Wg], ["__scopeId", "data-v-b9019dd2"]]);
|
|
9046
|
+
const Kg = {
|
|
8985
9047
|
props: {
|
|
8986
9048
|
value: {},
|
|
8987
9049
|
tag: {
|
|
@@ -9020,7 +9082,7 @@ const Gg = {
|
|
|
9020
9082
|
}
|
|
9021
9083
|
}
|
|
9022
9084
|
};
|
|
9023
|
-
function
|
|
9085
|
+
function Yg(e, t, n, r, s, i) {
|
|
9024
9086
|
return o(), k(ft(i.elementType), {
|
|
9025
9087
|
class: L(["ux-pill", { "has-link": i.hasLink }]),
|
|
9026
9088
|
style: He(i.style)
|
|
@@ -9031,15 +9093,15 @@ function Kg(e, t, n, r, s, i) {
|
|
|
9031
9093
|
_: 1
|
|
9032
9094
|
}, 8, ["class", "style"]);
|
|
9033
9095
|
}
|
|
9034
|
-
const
|
|
9035
|
-
const
|
|
9036
|
-
function
|
|
9037
|
-
return o(), d("ul",
|
|
9038
|
-
|
|
9096
|
+
const Zg = /* @__PURE__ */ C(Kg, [["render", Yg], ["__scopeId", "data-v-223a8711"]]);
|
|
9097
|
+
const Jg = {}, Xg = { class: "ux-list" };
|
|
9098
|
+
function Qg(e, t) {
|
|
9099
|
+
return o(), d("ul", Xg, [
|
|
9100
|
+
q(e.$slots, "default", {}, void 0, !0)
|
|
9039
9101
|
]);
|
|
9040
9102
|
}
|
|
9041
|
-
const
|
|
9042
|
-
const
|
|
9103
|
+
const ev = /* @__PURE__ */ C(Jg, [["render", Qg], ["__scopeId", "data-v-98a2be3e"]]);
|
|
9104
|
+
const tv = {
|
|
9043
9105
|
props: {
|
|
9044
9106
|
to: {
|
|
9045
9107
|
type: [Object, String]
|
|
@@ -9060,7 +9122,7 @@ const ev = {
|
|
|
9060
9122
|
}
|
|
9061
9123
|
}
|
|
9062
9124
|
};
|
|
9063
|
-
function
|
|
9125
|
+
function nv(e, t, n, r, s, i) {
|
|
9064
9126
|
return o(), k(ft(i.element), {
|
|
9065
9127
|
class: "ux-list-item",
|
|
9066
9128
|
to: n.to,
|
|
@@ -9069,18 +9131,18 @@ function tv(e, t, n, r, s, i) {
|
|
|
9069
9131
|
disabled: n.disabled
|
|
9070
9132
|
}, {
|
|
9071
9133
|
default: h(() => [
|
|
9072
|
-
|
|
9134
|
+
q(e.$slots, "default", {}, void 0, !0)
|
|
9073
9135
|
]),
|
|
9074
9136
|
_: 3
|
|
9075
9137
|
}, 8, ["to", "href", "target", "disabled"]);
|
|
9076
9138
|
}
|
|
9077
|
-
const
|
|
9139
|
+
const iv = /* @__PURE__ */ C(tv, [["render", nv], ["__scopeId", "data-v-ebb9a7bc"]]);
|
|
9078
9140
|
function gn(e) {
|
|
9079
9141
|
var t = new Date(e);
|
|
9080
9142
|
if (t instanceof Date && !isNaN(t))
|
|
9081
9143
|
return t;
|
|
9082
9144
|
}
|
|
9083
|
-
const
|
|
9145
|
+
const rv = {
|
|
9084
9146
|
props: {
|
|
9085
9147
|
modelValue: {
|
|
9086
9148
|
type: Object
|
|
@@ -9119,8 +9181,8 @@ const iv = {
|
|
|
9119
9181
|
this.model = e;
|
|
9120
9182
|
}
|
|
9121
9183
|
}
|
|
9122
|
-
}, Ul = (e) => (
|
|
9123
|
-
function
|
|
9184
|
+
}, Ul = (e) => (qe("data-v-dc53841d"), e = e(), We(), e), sv = /* @__PURE__ */ Ul(() => /* @__PURE__ */ x("label", null, "From Date", -1)), av = /* @__PURE__ */ Ul(() => /* @__PURE__ */ x("label", null, "To Date", -1));
|
|
9185
|
+
function lv(e, t, n, r, s, i) {
|
|
9124
9186
|
const a = y("flex-cell"), l = y("flex-row");
|
|
9125
9187
|
return o(), d("div", null, [
|
|
9126
9188
|
m(l, {
|
|
@@ -9132,14 +9194,14 @@ function av(e, t, n, r, s, i) {
|
|
|
9132
9194
|
m(a, { class: "cell" }, {
|
|
9133
9195
|
default: h(() => [
|
|
9134
9196
|
x("div", null, [
|
|
9135
|
-
|
|
9136
|
-
|
|
9197
|
+
sv,
|
|
9198
|
+
Y(x("input", {
|
|
9137
9199
|
type: "date",
|
|
9138
9200
|
class: "ux-field-focus ux-text-input-multiple",
|
|
9139
9201
|
ref: "input",
|
|
9140
9202
|
"onUpdate:modelValue": t[0] || (t[0] = (u) => i.startDate = u)
|
|
9141
9203
|
}, null, 512), [
|
|
9142
|
-
[
|
|
9204
|
+
[ae, i.startDate]
|
|
9143
9205
|
])
|
|
9144
9206
|
])
|
|
9145
9207
|
]),
|
|
@@ -9148,14 +9210,14 @@ function av(e, t, n, r, s, i) {
|
|
|
9148
9210
|
m(a, { class: "cell" }, {
|
|
9149
9211
|
default: h(() => [
|
|
9150
9212
|
x("div", null, [
|
|
9151
|
-
|
|
9152
|
-
|
|
9213
|
+
av,
|
|
9214
|
+
Y(x("input", {
|
|
9153
9215
|
type: "date",
|
|
9154
9216
|
class: "ux-field-focus ux-text-input-multiple",
|
|
9155
9217
|
ref: "input",
|
|
9156
9218
|
"onUpdate:modelValue": t[1] || (t[1] = (u) => i.endDate = u)
|
|
9157
9219
|
}, null, 512), [
|
|
9158
|
-
[
|
|
9220
|
+
[ae, i.endDate]
|
|
9159
9221
|
])
|
|
9160
9222
|
])
|
|
9161
9223
|
]),
|
|
@@ -9166,8 +9228,8 @@ function av(e, t, n, r, s, i) {
|
|
|
9166
9228
|
})
|
|
9167
9229
|
]);
|
|
9168
9230
|
}
|
|
9169
|
-
const
|
|
9170
|
-
const
|
|
9231
|
+
const ov = /* @__PURE__ */ C(rv, [["render", lv], ["__scopeId", "data-v-dc53841d"]]);
|
|
9232
|
+
const uv = {
|
|
9171
9233
|
props: {
|
|
9172
9234
|
modelValue: {
|
|
9173
9235
|
type: [Object, Array]
|
|
@@ -9176,7 +9238,7 @@ const ov = {
|
|
|
9176
9238
|
components: {
|
|
9177
9239
|
NativeSelect: Ct
|
|
9178
9240
|
},
|
|
9179
|
-
mixins: [
|
|
9241
|
+
mixins: [ie],
|
|
9180
9242
|
async created() {
|
|
9181
9243
|
var e = await this.$sdk.system.countries(), t = e.reduce(function(n, r) {
|
|
9182
9244
|
if (!r.countryCallingCodes || !r.countryCallingCodes.length)
|
|
@@ -9226,25 +9288,25 @@ const ov = {
|
|
|
9226
9288
|
};
|
|
9227
9289
|
}
|
|
9228
9290
|
}
|
|
9229
|
-
},
|
|
9291
|
+
}, dv = (e) => (qe("data-v-d61960a4"), e = e(), We(), e), cv = {
|
|
9230
9292
|
key: 0,
|
|
9231
9293
|
class: "ux-field-title"
|
|
9232
|
-
},
|
|
9294
|
+
}, fv = {
|
|
9233
9295
|
key: 0,
|
|
9234
9296
|
class: "ux-required-marker"
|
|
9235
|
-
},
|
|
9297
|
+
}, mv = {
|
|
9236
9298
|
key: 1,
|
|
9237
9299
|
class: "ux-field-description"
|
|
9238
|
-
},
|
|
9239
|
-
function
|
|
9300
|
+
}, hv = { key: 2 }, pv = { key: 0 }, yv = { key: 1 }, _v = { class: "ux-text-wrap" }, gv = ["placeholder", "onUpdate:modelValue"], vv = /* @__PURE__ */ dv(() => /* @__PURE__ */ x("option", { value: "" }, "None", -1)), bv = ["value"], kv = { class: "ux-text-wrap" }, xv = ["placeholder"];
|
|
9301
|
+
function wv(e, t, n, r, s, i) {
|
|
9240
9302
|
const a = y("ux-button"), l = y("native-select"), u = y("flex-cell"), f = y("ux-icon"), c = y("flex-row");
|
|
9241
9303
|
return o(), d(S, null, [
|
|
9242
|
-
e.showLabel ? (o(), d("label",
|
|
9304
|
+
e.showLabel ? (o(), d("label", cv, [
|
|
9243
9305
|
T(v(e.label) + " ", 1),
|
|
9244
|
-
e.required ? (o(), d("span",
|
|
9306
|
+
e.required ? (o(), d("span", fv, "*")) : _("", !0)
|
|
9245
9307
|
])) : _("", !0),
|
|
9246
|
-
e.showDescription ? (o(), d("div",
|
|
9247
|
-
e.multiValue ? (o(), d("div",
|
|
9308
|
+
e.showDescription ? (o(), d("div", mv, v(e.description), 1)) : _("", !0),
|
|
9309
|
+
e.multiValue ? (o(), d("div", hv, [
|
|
9248
9310
|
(o(!0), d(S, null, F(e.model, (p, g) => (o(), k(c, {
|
|
9249
9311
|
gap: "",
|
|
9250
9312
|
vcenter: "",
|
|
@@ -9264,7 +9326,7 @@ function xv(e, t, n, r, s, i) {
|
|
|
9264
9326
|
m(a, { tag: "a" }, {
|
|
9265
9327
|
default: h(() => [
|
|
9266
9328
|
p.countryCode ? (o(), d(S, { key: 1 }, [
|
|
9267
|
-
s.lookup[p.countryCode] ? (o(), d("div",
|
|
9329
|
+
s.lookup[p.countryCode] ? (o(), d("div", pv, v(s.lookup[p.countryCode].emoji) + " - " + v(s.lookup[p.countryCode].alpha2), 1)) : (o(), d("div", yv, "Loading"))
|
|
9268
9330
|
], 64)) : (o(), d(S, { key: 0 }, [
|
|
9269
9331
|
T(" Country Code ")
|
|
9270
9332
|
], 64))
|
|
@@ -9279,8 +9341,8 @@ function xv(e, t, n, r, s, i) {
|
|
|
9279
9341
|
}, 1024),
|
|
9280
9342
|
m(u, null, {
|
|
9281
9343
|
default: h(() => [
|
|
9282
|
-
x("div",
|
|
9283
|
-
|
|
9344
|
+
x("div", _v, [
|
|
9345
|
+
Y(x("input", {
|
|
9284
9346
|
class: "ux-field-focus ux-text-input-multiple",
|
|
9285
9347
|
placeholder: i.actualPlaceholder,
|
|
9286
9348
|
onFocus: t[0] || (t[0] = (...b) => e.touch && e.touch(...b)),
|
|
@@ -9288,8 +9350,8 @@ function xv(e, t, n, r, s, i) {
|
|
|
9288
9350
|
ref: "input",
|
|
9289
9351
|
onKeydown: t[1] || (t[1] = ge(z((b) => e.add(), ["stop", "prevent"]), ["enter"])),
|
|
9290
9352
|
"onUpdate:modelValue": (b) => p.number = b
|
|
9291
|
-
}, null, 40,
|
|
9292
|
-
[
|
|
9353
|
+
}, null, 40, gv), [
|
|
9354
|
+
[ae, p.number]
|
|
9293
9355
|
])
|
|
9294
9356
|
])
|
|
9295
9357
|
]),
|
|
@@ -9338,14 +9400,14 @@ function xv(e, t, n, r, s, i) {
|
|
|
9338
9400
|
default: h(() => [
|
|
9339
9401
|
m(u, { shrink: "" }, {
|
|
9340
9402
|
default: h(() => [
|
|
9341
|
-
|
|
9403
|
+
Y(x("select", {
|
|
9342
9404
|
class: "ux-country-code-select",
|
|
9343
9405
|
"onUpdate:modelValue": t[3] || (t[3] = (p) => e.model.countryCode = p)
|
|
9344
9406
|
}, [
|
|
9345
|
-
|
|
9407
|
+
vv,
|
|
9346
9408
|
(o(!0), d(S, null, F(s.countryCodes, (p) => (o(), d("option", {
|
|
9347
9409
|
value: p.value
|
|
9348
|
-
}, v(p.title), 9,
|
|
9410
|
+
}, v(p.title), 9, bv))), 256))
|
|
9349
9411
|
], 512), [
|
|
9350
9412
|
[Tt, e.model.countryCode]
|
|
9351
9413
|
])
|
|
@@ -9354,16 +9416,16 @@ function xv(e, t, n, r, s, i) {
|
|
|
9354
9416
|
}),
|
|
9355
9417
|
m(u, null, {
|
|
9356
9418
|
default: h(() => [
|
|
9357
|
-
x("div",
|
|
9358
|
-
|
|
9419
|
+
x("div", kv, [
|
|
9420
|
+
Y(x("input", {
|
|
9359
9421
|
class: "ux-field-focus ux-text-input-multiple",
|
|
9360
9422
|
placeholder: i.actualPlaceholder,
|
|
9361
9423
|
onFocus: t[4] || (t[4] = (...p) => e.touch && e.touch(...p)),
|
|
9362
9424
|
ref: "input",
|
|
9363
9425
|
onKeydown: t[5] || (t[5] = ge(z((p) => e.add(), ["stop", "prevent"]), ["enter"])),
|
|
9364
9426
|
"onUpdate:modelValue": t[6] || (t[6] = (p) => e.model.number = p)
|
|
9365
|
-
}, null, 40,
|
|
9366
|
-
[
|
|
9427
|
+
}, null, 40, xv), [
|
|
9428
|
+
[ae, e.model.number]
|
|
9367
9429
|
])
|
|
9368
9430
|
])
|
|
9369
9431
|
]),
|
|
@@ -9374,24 +9436,24 @@ function xv(e, t, n, r, s, i) {
|
|
|
9374
9436
|
}))
|
|
9375
9437
|
], 64);
|
|
9376
9438
|
}
|
|
9377
|
-
const
|
|
9378
|
-
function
|
|
9439
|
+
const Sv = /* @__PURE__ */ C(uv, [["render", wv], ["__scopeId", "data-v-d61960a4"]]);
|
|
9440
|
+
function Tv(e) {
|
|
9379
9441
|
return e === void 0 || typeof e > "u" || e === null || String(e) === "null" || String(e) === "undefined";
|
|
9380
9442
|
}
|
|
9381
|
-
const
|
|
9443
|
+
const Ov = {
|
|
9382
9444
|
props: {
|
|
9383
9445
|
modelValue: {
|
|
9384
9446
|
type: String
|
|
9385
9447
|
}
|
|
9386
9448
|
},
|
|
9387
|
-
mixins: [
|
|
9449
|
+
mixins: [ie],
|
|
9388
9450
|
created() {
|
|
9389
9451
|
this.model = this.model;
|
|
9390
9452
|
},
|
|
9391
9453
|
methods: {
|
|
9392
9454
|
cleanOutput(e) {
|
|
9393
9455
|
var t = this;
|
|
9394
|
-
return
|
|
9456
|
+
return Tv(e) ? t.multiValue ? e = [] : e = void 0 : t.multiValue ? e = (e || []).filter(Boolean).map(function(n) {
|
|
9395
9457
|
return t.getValue(n);
|
|
9396
9458
|
}) : e = t.getValue(e), e;
|
|
9397
9459
|
},
|
|
@@ -9894,34 +9956,34 @@ const Tv = {
|
|
|
9894
9956
|
return this.options;
|
|
9895
9957
|
}
|
|
9896
9958
|
}
|
|
9897
|
-
},
|
|
9959
|
+
}, Cv = {
|
|
9898
9960
|
key: 0,
|
|
9899
9961
|
class: "ux-field-title"
|
|
9900
|
-
},
|
|
9962
|
+
}, Vv = {
|
|
9901
9963
|
key: 0,
|
|
9902
9964
|
class: "ux-required-marker"
|
|
9903
|
-
},
|
|
9965
|
+
}, Ev = {
|
|
9904
9966
|
key: 1,
|
|
9905
9967
|
class: "ux-field-description"
|
|
9906
|
-
},
|
|
9968
|
+
}, Av = {
|
|
9907
9969
|
key: 2,
|
|
9908
9970
|
class: "ui-select-button"
|
|
9909
|
-
},
|
|
9971
|
+
}, Mv = ["multiple"], Dv = {
|
|
9910
9972
|
key: 0,
|
|
9911
9973
|
value: ""
|
|
9912
|
-
},
|
|
9913
|
-
function
|
|
9974
|
+
}, Iv = ["value"];
|
|
9975
|
+
function Fv(e, t, n, r, s, i) {
|
|
9914
9976
|
const a = y("ux-button");
|
|
9915
9977
|
return o(), d("div", {
|
|
9916
9978
|
class: L(["native-select", i.classes])
|
|
9917
9979
|
}, [
|
|
9918
|
-
e.showLabel ? (o(), d("label",
|
|
9980
|
+
e.showLabel ? (o(), d("label", Cv, [
|
|
9919
9981
|
T(v(e.label) + " ", 1),
|
|
9920
|
-
e.required ? (o(), d("span",
|
|
9982
|
+
e.required ? (o(), d("span", Vv, "*")) : _("", !0)
|
|
9921
9983
|
])) : _("", !0),
|
|
9922
|
-
e.showDescription ? (o(), d("div",
|
|
9923
|
-
e.singleValue ? (o(), d("div",
|
|
9924
|
-
|
|
9984
|
+
e.showDescription ? (o(), d("div", Ev, v(e.description), 1)) : _("", !0),
|
|
9985
|
+
e.singleValue ? (o(), d("div", Av, [
|
|
9986
|
+
q(e.$slots, "default", {}, () => [
|
|
9925
9987
|
m(a, { tag: "div" }, {
|
|
9926
9988
|
default: h(() => [
|
|
9927
9989
|
T(v(i.summary), 1)
|
|
@@ -9930,22 +9992,22 @@ function Iv(e, t, n, r, s, i) {
|
|
|
9930
9992
|
})
|
|
9931
9993
|
], !0)
|
|
9932
9994
|
])) : _("", !0),
|
|
9933
|
-
|
|
9995
|
+
Y(x("select", {
|
|
9934
9996
|
onFocus: t[0] || (t[0] = (...l) => e.touch && e.touch(...l)),
|
|
9935
9997
|
multiple: e.multiValue,
|
|
9936
9998
|
"onUpdate:modelValue": t[1] || (t[1] = (l) => e.model = l)
|
|
9937
9999
|
}, [
|
|
9938
|
-
e.singleValue && !e.minimum ? (o(), d("option",
|
|
10000
|
+
e.singleValue && !e.minimum ? (o(), d("option", Dv, "None")) : _("", !0),
|
|
9939
10001
|
(o(!0), d(S, null, F(i.selectableOptions, (l) => (o(), d("option", {
|
|
9940
10002
|
value: l.value
|
|
9941
|
-
}, v(l.title), 9,
|
|
9942
|
-
], 40,
|
|
10003
|
+
}, v(l.title), 9, Iv))), 256))
|
|
10004
|
+
], 40, Mv), [
|
|
9943
10005
|
[Tt, e.model]
|
|
9944
10006
|
])
|
|
9945
10007
|
], 2);
|
|
9946
10008
|
}
|
|
9947
|
-
const
|
|
9948
|
-
const
|
|
10009
|
+
const $v = /* @__PURE__ */ C(Ov, [["render", Fv], ["__scopeId", "data-v-9c322e6d"]]);
|
|
10010
|
+
const Nv = {
|
|
9949
10011
|
props: {
|
|
9950
10012
|
manual: {
|
|
9951
10013
|
type: Boolean
|
|
@@ -9988,7 +10050,7 @@ const $v = {
|
|
|
9988
10050
|
}
|
|
9989
10051
|
}
|
|
9990
10052
|
};
|
|
9991
|
-
function
|
|
10053
|
+
function Lv(e, t, n, r, s, i) {
|
|
9992
10054
|
const a = y("ux-image"), l = y("flex-cell"), u = y("flex-row");
|
|
9993
10055
|
return o(), d("div", {
|
|
9994
10056
|
class: "content-item",
|
|
@@ -10023,7 +10085,7 @@ function Nv(e, t, n, r, s, i) {
|
|
|
10023
10085
|
default: h(() => [
|
|
10024
10086
|
m(l, null, {
|
|
10025
10087
|
default: h(() => [
|
|
10026
|
-
|
|
10088
|
+
q(e.$slots, "default", {}, () => [
|
|
10027
10089
|
T(v(i.title), 1)
|
|
10028
10090
|
], !0)
|
|
10029
10091
|
]),
|
|
@@ -10034,7 +10096,7 @@ function Nv(e, t, n, r, s, i) {
|
|
|
10034
10096
|
}),
|
|
10035
10097
|
m(l, { shrink: "" }, {
|
|
10036
10098
|
default: h(() => [
|
|
10037
|
-
|
|
10099
|
+
q(e.$slots, "actions", {}, void 0, !0)
|
|
10038
10100
|
]),
|
|
10039
10101
|
_: 3
|
|
10040
10102
|
})
|
|
@@ -10043,7 +10105,7 @@ function Nv(e, t, n, r, s, i) {
|
|
|
10043
10105
|
})
|
|
10044
10106
|
]);
|
|
10045
10107
|
}
|
|
10046
|
-
const jl = /* @__PURE__ */ C(
|
|
10108
|
+
const jl = /* @__PURE__ */ C(Nv, [["render", Lv], ["__scopeId", "data-v-2ce8bfb1"]]);
|
|
10047
10109
|
/**!
|
|
10048
10110
|
* Sortable 1.14.0
|
|
10049
10111
|
* @author RubaXa <trash@rubaxa.org>
|
|
@@ -10064,7 +10126,7 @@ function ut(e) {
|
|
|
10064
10126
|
for (var t = 1; t < arguments.length; t++) {
|
|
10065
10127
|
var n = arguments[t] != null ? arguments[t] : {};
|
|
10066
10128
|
t % 2 ? Bs(Object(n), !0).forEach(function(r) {
|
|
10067
|
-
|
|
10129
|
+
Pv(e, r, n[r]);
|
|
10068
10130
|
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(n)) : Bs(Object(n)).forEach(function(r) {
|
|
10069
10131
|
Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(n, r));
|
|
10070
10132
|
});
|
|
@@ -10078,7 +10140,7 @@ function si(e) {
|
|
|
10078
10140
|
return t && typeof Symbol == "function" && t.constructor === Symbol && t !== Symbol.prototype ? "symbol" : typeof t;
|
|
10079
10141
|
}, si(e);
|
|
10080
10142
|
}
|
|
10081
|
-
function
|
|
10143
|
+
function Pv(e, t, n) {
|
|
10082
10144
|
return t in e ? Object.defineProperty(e, t, {
|
|
10083
10145
|
value: n,
|
|
10084
10146
|
enumerable: !0,
|
|
@@ -10096,7 +10158,7 @@ function ht() {
|
|
|
10096
10158
|
return e;
|
|
10097
10159
|
}, ht.apply(this, arguments);
|
|
10098
10160
|
}
|
|
10099
|
-
function
|
|
10161
|
+
function Uv(e, t) {
|
|
10100
10162
|
if (e == null)
|
|
10101
10163
|
return {};
|
|
10102
10164
|
var n = {}, r = Object.keys(e), s, i;
|
|
@@ -10104,10 +10166,10 @@ function Pv(e, t) {
|
|
|
10104
10166
|
s = r[i], !(t.indexOf(s) >= 0) && (n[s] = e[s]);
|
|
10105
10167
|
return n;
|
|
10106
10168
|
}
|
|
10107
|
-
function
|
|
10169
|
+
function jv(e, t) {
|
|
10108
10170
|
if (e == null)
|
|
10109
10171
|
return {};
|
|
10110
|
-
var n =
|
|
10172
|
+
var n = Uv(e, t), r, s;
|
|
10111
10173
|
if (Object.getOwnPropertySymbols) {
|
|
10112
10174
|
var i = Object.getOwnPropertySymbols(e);
|
|
10113
10175
|
for (s = 0; s < i.length; s++)
|
|
@@ -10115,16 +10177,16 @@ function Uv(e, t) {
|
|
|
10115
10177
|
}
|
|
10116
10178
|
return n;
|
|
10117
10179
|
}
|
|
10118
|
-
var
|
|
10180
|
+
var Rv = "1.14.0";
|
|
10119
10181
|
function ct(e) {
|
|
10120
10182
|
if (typeof window < "u" && window.navigator)
|
|
10121
10183
|
return !!/* @__PURE__ */ navigator.userAgent.match(e);
|
|
10122
10184
|
}
|
|
10123
|
-
var pt = ct(/(?:Trident.*rv[ :]?11\.|msie|iemobile|Windows Phone)/i), Pn = ct(/Edge/i), zs = ct(/firefox/i), On = ct(/safari/i) && !ct(/chrome/i) && !ct(/android/i), Rl = ct(/iP(ad|od|hone)/i),
|
|
10185
|
+
var pt = ct(/(?:Trident.*rv[ :]?11\.|msie|iemobile|Windows Phone)/i), Pn = ct(/Edge/i), zs = ct(/firefox/i), On = ct(/safari/i) && !ct(/chrome/i) && !ct(/android/i), Rl = ct(/iP(ad|od|hone)/i), Bv = ct(/chrome/i) && ct(/android/i), Bl = {
|
|
10124
10186
|
capture: !1,
|
|
10125
10187
|
passive: !1
|
|
10126
10188
|
};
|
|
10127
|
-
function
|
|
10189
|
+
function ne(e, t, n) {
|
|
10128
10190
|
e.addEventListener(t, n, !pt && Bl);
|
|
10129
10191
|
}
|
|
10130
10192
|
function X(e, t, n) {
|
|
@@ -10146,7 +10208,7 @@ function yi(e, t) {
|
|
|
10146
10208
|
return !1;
|
|
10147
10209
|
}
|
|
10148
10210
|
}
|
|
10149
|
-
function
|
|
10211
|
+
function zv(e) {
|
|
10150
10212
|
return e.host && e !== document && e.host.nodeType ? e.host : e.parentNode;
|
|
10151
10213
|
}
|
|
10152
10214
|
function lt(e, t, n, r) {
|
|
@@ -10157,7 +10219,7 @@ function lt(e, t, n, r) {
|
|
|
10157
10219
|
return e;
|
|
10158
10220
|
if (e === n)
|
|
10159
10221
|
break;
|
|
10160
|
-
} while (e =
|
|
10222
|
+
} while (e = zv(e));
|
|
10161
10223
|
}
|
|
10162
10224
|
return null;
|
|
10163
10225
|
}
|
|
@@ -10257,7 +10319,7 @@ function Hr(e, t) {
|
|
|
10257
10319
|
n = n.previousElementSibling;
|
|
10258
10320
|
return n || null;
|
|
10259
10321
|
}
|
|
10260
|
-
function
|
|
10322
|
+
function Ke(e, t) {
|
|
10261
10323
|
var n = 0;
|
|
10262
10324
|
if (!e || !e.parentNode)
|
|
10263
10325
|
return -1;
|
|
@@ -10274,7 +10336,7 @@ function Ws(e) {
|
|
|
10274
10336
|
} while (e !== r && (e = e.parentNode));
|
|
10275
10337
|
return [t, n];
|
|
10276
10338
|
}
|
|
10277
|
-
function
|
|
10339
|
+
function Hv(e, t) {
|
|
10278
10340
|
for (var n in e)
|
|
10279
10341
|
if (e.hasOwnProperty(n)) {
|
|
10280
10342
|
for (var r in t)
|
|
@@ -10301,7 +10363,7 @@ function St(e, t) {
|
|
|
10301
10363
|
while (n = n.parentNode);
|
|
10302
10364
|
return ot();
|
|
10303
10365
|
}
|
|
10304
|
-
function
|
|
10366
|
+
function qv(e, t) {
|
|
10305
10367
|
if (e && t)
|
|
10306
10368
|
for (var n in t)
|
|
10307
10369
|
t.hasOwnProperty(n) && (e[n] = t[n]);
|
|
@@ -10321,7 +10383,7 @@ function Hl(e, t) {
|
|
|
10321
10383
|
}
|
|
10322
10384
|
};
|
|
10323
10385
|
}
|
|
10324
|
-
function
|
|
10386
|
+
function Wv() {
|
|
10325
10387
|
clearTimeout(Cn), Cn = void 0;
|
|
10326
10388
|
}
|
|
10327
10389
|
function ql(e, t, n) {
|
|
@@ -10332,7 +10394,7 @@ function Wl(e) {
|
|
|
10332
10394
|
return t && t.dom ? t.dom(e).cloneNode(!0) : n ? n(e).clone(!0)[0] : e.cloneNode(!0);
|
|
10333
10395
|
}
|
|
10334
10396
|
var Be = "Sortable" + new Date().getTime();
|
|
10335
|
-
function
|
|
10397
|
+
function Gv() {
|
|
10336
10398
|
var e = [], t;
|
|
10337
10399
|
return {
|
|
10338
10400
|
captureAnimationState: function() {
|
|
@@ -10358,7 +10420,7 @@ function Wv() {
|
|
|
10358
10420
|
e.push(r);
|
|
10359
10421
|
},
|
|
10360
10422
|
removeAnimationState: function(r) {
|
|
10361
|
-
e.splice(
|
|
10423
|
+
e.splice(Hv(e, {
|
|
10362
10424
|
target: r
|
|
10363
10425
|
}), 1);
|
|
10364
10426
|
},
|
|
@@ -10372,7 +10434,7 @@ function Wv() {
|
|
|
10372
10434
|
e.forEach(function(l) {
|
|
10373
10435
|
var u = 0, f = l.target, c = f.fromRect, p = be(f), g = f.prevFromRect, b = f.prevToRect, w = l.rect, O = Qt(f, !0);
|
|
10374
10436
|
O && (p.top -= O.f, p.left -= O.e), f.toRect = p, f.thisAnimationDuration && Ki(g, p) && !Ki(c, p) && // Make sure animatingRect is on line between toRect & fromRect
|
|
10375
|
-
(w.top - p.top) / (w.left - p.left) === (c.top - p.top) / (c.left - p.left) && (u =
|
|
10437
|
+
(w.top - p.top) / (w.left - p.left) === (c.top - p.top) / (c.left - p.left) && (u = Yv(w, g, b, s.options)), Ki(p, c) || (f.prevFromRect = c, f.prevToRect = p, u || (u = s.options.animation), s.animate(f, w, p, u)), u && (i = !0, a = Math.max(a, u), clearTimeout(f.animationResetTimer), f.animationResetTimer = setTimeout(function() {
|
|
10376
10438
|
f.animationTime = 0, f.prevFromRect = null, f.fromRect = null, f.prevToRect = null, f.thisAnimationDuration = null;
|
|
10377
10439
|
}, u), f.thisAnimationDuration = u);
|
|
10378
10440
|
}), clearTimeout(t), i ? t = setTimeout(function() {
|
|
@@ -10383,17 +10445,17 @@ function Wv() {
|
|
|
10383
10445
|
if (a) {
|
|
10384
10446
|
R(r, "transition", ""), R(r, "transform", "");
|
|
10385
10447
|
var l = Qt(this.el), u = l && l.a, f = l && l.d, c = (s.left - i.left) / (u || 1), p = (s.top - i.top) / (f || 1);
|
|
10386
|
-
r.animatingX = !!c, r.animatingY = !!p, R(r, "transform", "translate3d(" + c + "px," + p + "px,0)"), this.forRepaintDummy =
|
|
10448
|
+
r.animatingX = !!c, r.animatingY = !!p, R(r, "transform", "translate3d(" + c + "px," + p + "px,0)"), this.forRepaintDummy = Kv(r), R(r, "transition", "transform " + a + "ms" + (this.options.easing ? " " + this.options.easing : "")), R(r, "transform", "translate3d(0,0,0)"), typeof r.animated == "number" && clearTimeout(r.animated), r.animated = setTimeout(function() {
|
|
10387
10449
|
R(r, "transition", ""), R(r, "transform", ""), r.animated = !1, r.animatingX = !1, r.animatingY = !1;
|
|
10388
10450
|
}, a);
|
|
10389
10451
|
}
|
|
10390
10452
|
}
|
|
10391
10453
|
};
|
|
10392
10454
|
}
|
|
10393
|
-
function
|
|
10455
|
+
function Kv(e) {
|
|
10394
10456
|
return e.offsetWidth;
|
|
10395
10457
|
}
|
|
10396
|
-
function
|
|
10458
|
+
function Yv(e, t, n, r) {
|
|
10397
10459
|
return Math.sqrt(Math.pow(t.top - e.top, 2) + Math.pow(t.left - e.left, 2)) / Math.sqrt(Math.pow(t.top - n.top, 2) + Math.pow(t.left - n.left, 2)) * r.animation;
|
|
10398
10460
|
}
|
|
10399
10461
|
var Wt = [], Yi = {
|
|
@@ -10448,26 +10510,26 @@ var Wt = [], Yi = {
|
|
|
10448
10510
|
}), s;
|
|
10449
10511
|
}
|
|
10450
10512
|
};
|
|
10451
|
-
function
|
|
10513
|
+
function Zv(e) {
|
|
10452
10514
|
var t = e.sortable, n = e.rootEl, r = e.name, s = e.targetEl, i = e.cloneEl, a = e.toEl, l = e.fromEl, u = e.oldIndex, f = e.newIndex, c = e.oldDraggableIndex, p = e.newDraggableIndex, g = e.originalEvent, b = e.putSortable, w = e.extraEventProperties;
|
|
10453
10515
|
if (t = t || n && n[Be], !!t) {
|
|
10454
|
-
var O, j = t.options,
|
|
10516
|
+
var O, j = t.options, H = "on" + r.charAt(0).toUpperCase() + r.substr(1);
|
|
10455
10517
|
window.CustomEvent && !pt && !Pn ? O = new CustomEvent(r, {
|
|
10456
10518
|
bubbles: !0,
|
|
10457
10519
|
cancelable: !0
|
|
10458
10520
|
}) : (O = document.createEvent("Event"), O.initEvent(r, !0, !0)), O.to = a || n, O.from = l || n, O.item = s || n, O.clone = i, O.oldIndex = u, O.newIndex = f, O.oldDraggableIndex = c, O.newDraggableIndex = p, O.originalEvent = g, O.pullMode = b ? b.lastPutMode : void 0;
|
|
10459
|
-
var
|
|
10460
|
-
for (var
|
|
10461
|
-
O[
|
|
10462
|
-
n && n.dispatchEvent(O), j[
|
|
10521
|
+
var D = ut(ut({}, w), Un.getEventProperties(r, t));
|
|
10522
|
+
for (var ee in D)
|
|
10523
|
+
O[ee] = D[ee];
|
|
10524
|
+
n && n.dispatchEvent(O), j[H] && j[H].call(t, O);
|
|
10463
10525
|
}
|
|
10464
10526
|
}
|
|
10465
|
-
var
|
|
10466
|
-
var r = arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : {}, s = r.evt, i =
|
|
10527
|
+
var Jv = ["evt"], Le = function(t, n) {
|
|
10528
|
+
var r = arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : {}, s = r.evt, i = jv(r, Jv);
|
|
10467
10529
|
Un.pluginEvent.bind(B)(t, n, ut({
|
|
10468
|
-
dragEl:
|
|
10530
|
+
dragEl: M,
|
|
10469
10531
|
parentEl: me,
|
|
10470
|
-
ghostEl:
|
|
10532
|
+
ghostEl: K,
|
|
10471
10533
|
rootEl: ce,
|
|
10472
10534
|
nextEl: $t,
|
|
10473
10535
|
lastDownEl: ai,
|
|
@@ -10499,10 +10561,10 @@ var Zv = ["evt"], Le = function(t, n) {
|
|
|
10499
10561
|
}, i));
|
|
10500
10562
|
};
|
|
10501
10563
|
function Fe(e) {
|
|
10502
|
-
|
|
10564
|
+
Zv(ut({
|
|
10503
10565
|
putSortable: Se,
|
|
10504
10566
|
cloneEl: he,
|
|
10505
|
-
targetEl:
|
|
10567
|
+
targetEl: M,
|
|
10506
10568
|
rootEl: ce,
|
|
10507
10569
|
oldIndex: Zt,
|
|
10508
10570
|
oldDraggableIndex: Vn,
|
|
@@ -10510,7 +10572,7 @@ function Fe(e) {
|
|
|
10510
10572
|
newDraggableIndex: kt
|
|
10511
10573
|
}, e));
|
|
10512
10574
|
}
|
|
10513
|
-
var
|
|
10575
|
+
var M, me, K, ce, $t, ai, he, wt, Zt, je, Vn, kt, Xn, Se, Kt = !1, _i = !1, gi = [], Dt, et, Zi, Ji, Gs, Ks, xn, Gt, En, An = !1, Qn = !1, li, Ee, Xi = [], xr = !1, vi = [], Fi = typeof document < "u", ei = Rl, Ys = Pn || pt ? "cssFloat" : "float", Xv = Fi && !Bv && !Rl && "draggable" in document.createElement("div"), Gl = function() {
|
|
10514
10576
|
if (Fi) {
|
|
10515
10577
|
if (pt)
|
|
10516
10578
|
return !1;
|
|
@@ -10528,10 +10590,10 @@ var D, me, G, ce, $t, ai, he, wt, Zt, je, Vn, kt, Xn, Se, Kt = !1, _i = !1, gi =
|
|
|
10528
10590
|
return a && (u.clear === "both" || u.clear === p) ? "vertical" : "horizontal";
|
|
10529
10591
|
}
|
|
10530
10592
|
return i && (l.display === "block" || l.display === "flex" || l.display === "table" || l.display === "grid" || f >= s && r[Ys] === "none" || a && r[Ys] === "none" && f + c > s) ? "vertical" : "horizontal";
|
|
10531
|
-
},
|
|
10593
|
+
}, Qv = function(t, n, r) {
|
|
10532
10594
|
var s = r ? t.left : t.top, i = r ? t.right : t.bottom, a = r ? t.width : t.height, l = r ? n.left : n.top, u = r ? n.right : n.bottom, f = r ? n.width : n.height;
|
|
10533
10595
|
return s === l || i === u || s + a / 2 === l + f / 2;
|
|
10534
|
-
},
|
|
10596
|
+
}, e1 = function(t, n) {
|
|
10535
10597
|
var r;
|
|
10536
10598
|
return gi.some(function(s) {
|
|
10537
10599
|
var i = s[Be].options.emptyInsertThreshold;
|
|
@@ -10562,18 +10624,18 @@ var D, me, G, ce, $t, ai, he, wt, Zt, je, Vn, kt, Xn, Se, Kt = !1, _i = !1, gi =
|
|
|
10562
10624
|
name: s
|
|
10563
10625
|
}), r.name = s.name, r.checkPull = n(s.pull, !0), r.checkPut = n(s.put), r.revertClone = s.revertClone, t.group = r;
|
|
10564
10626
|
}, Zl = function() {
|
|
10565
|
-
!Gl &&
|
|
10627
|
+
!Gl && K && R(K, "display", "none");
|
|
10566
10628
|
}, Jl = function() {
|
|
10567
|
-
!Gl &&
|
|
10629
|
+
!Gl && K && R(K, "display", "");
|
|
10568
10630
|
};
|
|
10569
10631
|
Fi && document.addEventListener("click", function(e) {
|
|
10570
10632
|
if (_i)
|
|
10571
10633
|
return e.preventDefault(), e.stopPropagation && e.stopPropagation(), e.stopImmediatePropagation && e.stopImmediatePropagation(), _i = !1, !1;
|
|
10572
10634
|
}, !0);
|
|
10573
10635
|
var It = function(t) {
|
|
10574
|
-
if (
|
|
10636
|
+
if (M) {
|
|
10575
10637
|
t = t.touches ? t.touches[0] : t;
|
|
10576
|
-
var n =
|
|
10638
|
+
var n = e1(t.clientX, t.clientY);
|
|
10577
10639
|
if (n) {
|
|
10578
10640
|
var r = {};
|
|
10579
10641
|
for (var s in t)
|
|
@@ -10581,8 +10643,8 @@ var It = function(t) {
|
|
|
10581
10643
|
r.target = r.rootEl = n, r.preventDefault = void 0, r.stopPropagation = void 0, n[Be]._onDragOver(r);
|
|
10582
10644
|
}
|
|
10583
10645
|
}
|
|
10584
|
-
},
|
|
10585
|
-
|
|
10646
|
+
}, t1 = function(t) {
|
|
10647
|
+
M && M.parentNode[Be]._isOutsideThisEl(t.target);
|
|
10586
10648
|
};
|
|
10587
10649
|
function B(e, t) {
|
|
10588
10650
|
if (!(e && e.nodeType && e.nodeType === 1))
|
|
@@ -10639,7 +10701,7 @@ function B(e, t) {
|
|
|
10639
10701
|
Yl(t);
|
|
10640
10702
|
for (var s in this)
|
|
10641
10703
|
s.charAt(0) === "_" && typeof this[s] == "function" && (this[s] = this[s].bind(this));
|
|
10642
|
-
this.nativeDraggable = t.forceFallback ? !1 :
|
|
10704
|
+
this.nativeDraggable = t.forceFallback ? !1 : Xv, this.nativeDraggable && (this.options.touchStartThreshold = 1), t.supportPointer ? ne(e, "pointerdown", this._onTapStart) : (ne(e, "mousedown", this._onTapStart), ne(e, "touchstart", this._onTapStart)), this.nativeDraggable && (ne(e, "dragover", this), ne(e, "dragenter", this)), gi.push(this.el), t.store && t.store.get && this.sort(t.store.get(this) || []), ht(this, Gv());
|
|
10643
10705
|
}
|
|
10644
10706
|
B.prototype = /** @lends Sortable.prototype */
|
|
10645
10707
|
{
|
|
@@ -10648,13 +10710,13 @@ B.prototype = /** @lends Sortable.prototype */
|
|
|
10648
10710
|
!this.el.contains(t) && t !== this.el && (Gt = null);
|
|
10649
10711
|
},
|
|
10650
10712
|
_getDirection: function(t, n) {
|
|
10651
|
-
return typeof this.options.direction == "function" ? this.options.direction.call(this, t, n,
|
|
10713
|
+
return typeof this.options.direction == "function" ? this.options.direction.call(this, t, n, M) : this.options.direction;
|
|
10652
10714
|
},
|
|
10653
10715
|
_onTapStart: function(t) {
|
|
10654
10716
|
if (t.cancelable) {
|
|
10655
10717
|
var n = this, r = this.el, s = this.options, i = s.preventOnFilter, a = t.type, l = t.touches && t.touches[0] || t.pointerType && t.pointerType === "touch" && t, u = (l || t).target, f = t.target.shadowRoot && (t.path && t.path[0] || t.composedPath && t.composedPath()[0]) || u, c = s.filter;
|
|
10656
|
-
if (
|
|
10657
|
-
if (Zt =
|
|
10718
|
+
if (u1(r), !M && !(/mousedown|pointerdown/.test(a) && t.button !== 0 || s.disabled) && !f.isContentEditable && !(!this.nativeDraggable && On && u && u.tagName.toUpperCase() === "SELECT") && (u = lt(u, s.draggable, r, !1), !(u && u.animated) && ai !== u)) {
|
|
10719
|
+
if (Zt = Ke(u), Vn = Ke(u, s.draggable), typeof c == "function") {
|
|
10658
10720
|
if (c.call(this, t, u, this)) {
|
|
10659
10721
|
Fe({
|
|
10660
10722
|
sortable: n,
|
|
@@ -10690,34 +10752,34 @@ B.prototype = /** @lends Sortable.prototype */
|
|
|
10690
10752
|
},
|
|
10691
10753
|
_prepareDragStart: function(t, n, r) {
|
|
10692
10754
|
var s = this, i = s.el, a = s.options, l = i.ownerDocument, u;
|
|
10693
|
-
if (r && !
|
|
10755
|
+
if (r && !M && r.parentNode === i) {
|
|
10694
10756
|
var f = be(r);
|
|
10695
|
-
if (ce = i,
|
|
10696
|
-
target:
|
|
10757
|
+
if (ce = i, M = r, me = M.parentNode, $t = M.nextSibling, ai = r, Xn = a.group, B.dragged = M, Dt = {
|
|
10758
|
+
target: M,
|
|
10697
10759
|
clientX: (n || t).clientX,
|
|
10698
10760
|
clientY: (n || t).clientY
|
|
10699
|
-
}, Gs = Dt.clientX - f.left, Ks = Dt.clientY - f.top, this._lastX = (n || t).clientX, this._lastY = (n || t).clientY,
|
|
10761
|
+
}, Gs = Dt.clientX - f.left, Ks = Dt.clientY - f.top, this._lastX = (n || t).clientX, this._lastY = (n || t).clientY, M.style["will-change"] = "all", u = function() {
|
|
10700
10762
|
if (Le("delayEnded", s, {
|
|
10701
10763
|
evt: t
|
|
10702
10764
|
}), B.eventCanceled) {
|
|
10703
10765
|
s._onDrop();
|
|
10704
10766
|
return;
|
|
10705
10767
|
}
|
|
10706
|
-
s._disableDelayedDragEvents(), !zs && s.nativeDraggable && (
|
|
10768
|
+
s._disableDelayedDragEvents(), !zs && s.nativeDraggable && (M.draggable = !0), s._triggerDragStart(t, n), Fe({
|
|
10707
10769
|
sortable: s,
|
|
10708
10770
|
name: "choose",
|
|
10709
10771
|
originalEvent: t
|
|
10710
|
-
}), Ue(
|
|
10772
|
+
}), Ue(M, a.chosenClass, !0);
|
|
10711
10773
|
}, a.ignore.split(",").forEach(function(c) {
|
|
10712
|
-
zl(
|
|
10713
|
-
}),
|
|
10774
|
+
zl(M, c.trim(), Qi);
|
|
10775
|
+
}), ne(l, "dragover", It), ne(l, "mousemove", It), ne(l, "touchmove", It), ne(l, "mouseup", s._onDrop), ne(l, "touchend", s._onDrop), ne(l, "touchcancel", s._onDrop), zs && this.nativeDraggable && (this.options.touchStartThreshold = 4, M.draggable = !0), Le("delayStart", this, {
|
|
10714
10776
|
evt: t
|
|
10715
10777
|
}), a.delay && (!a.delayOnTouchOnly || n) && (!this.nativeDraggable || !(Pn || pt))) {
|
|
10716
10778
|
if (B.eventCanceled) {
|
|
10717
10779
|
this._onDrop();
|
|
10718
10780
|
return;
|
|
10719
10781
|
}
|
|
10720
|
-
|
|
10782
|
+
ne(l, "mouseup", s._disableDelayedDrag), ne(l, "touchend", s._disableDelayedDrag), ne(l, "touchcancel", s._disableDelayedDrag), ne(l, "mousemove", s._delayedDragTouchMoveHandler), ne(l, "touchmove", s._delayedDragTouchMoveHandler), a.supportPointer && ne(l, "pointermove", s._delayedDragTouchMoveHandler), s._dragStartTimer = setTimeout(u, a.delay);
|
|
10721
10783
|
} else
|
|
10722
10784
|
u();
|
|
10723
10785
|
}
|
|
@@ -10727,14 +10789,14 @@ B.prototype = /** @lends Sortable.prototype */
|
|
|
10727
10789
|
Math.max(Math.abs(n.clientX - this._lastX), Math.abs(n.clientY - this._lastY)) >= Math.floor(this.options.touchStartThreshold / (this.nativeDraggable && window.devicePixelRatio || 1)) && this._disableDelayedDrag();
|
|
10728
10790
|
},
|
|
10729
10791
|
_disableDelayedDrag: function() {
|
|
10730
|
-
|
|
10792
|
+
M && Qi(M), clearTimeout(this._dragStartTimer), this._disableDelayedDragEvents();
|
|
10731
10793
|
},
|
|
10732
10794
|
_disableDelayedDragEvents: function() {
|
|
10733
10795
|
var t = this.el.ownerDocument;
|
|
10734
10796
|
X(t, "mouseup", this._disableDelayedDrag), X(t, "touchend", this._disableDelayedDrag), X(t, "touchcancel", this._disableDelayedDrag), X(t, "mousemove", this._delayedDragTouchMoveHandler), X(t, "touchmove", this._delayedDragTouchMoveHandler), X(t, "pointermove", this._delayedDragTouchMoveHandler);
|
|
10735
10797
|
},
|
|
10736
10798
|
_triggerDragStart: function(t, n) {
|
|
10737
|
-
n = n || t.pointerType == "touch" && t, !this.nativeDraggable || n ? this.options.supportPointer ?
|
|
10799
|
+
n = n || t.pointerType == "touch" && t, !this.nativeDraggable || n ? this.options.supportPointer ? ne(document, "pointermove", this._onTouchMove) : n ? ne(document, "touchmove", this._onTouchMove) : ne(document, "mousemove", this._onTouchMove) : (ne(M, "dragend", this), ne(ce, "dragstart", this._onDragStart));
|
|
10738
10800
|
try {
|
|
10739
10801
|
document.selection ? oi(function() {
|
|
10740
10802
|
document.selection.empty();
|
|
@@ -10743,12 +10805,12 @@ B.prototype = /** @lends Sortable.prototype */
|
|
|
10743
10805
|
}
|
|
10744
10806
|
},
|
|
10745
10807
|
_dragStarted: function(t, n) {
|
|
10746
|
-
if (Kt = !1, ce &&
|
|
10808
|
+
if (Kt = !1, ce && M) {
|
|
10747
10809
|
Le("dragStarted", this, {
|
|
10748
10810
|
evt: n
|
|
10749
|
-
}), this.nativeDraggable &&
|
|
10811
|
+
}), this.nativeDraggable && ne(document, "dragover", t1);
|
|
10750
10812
|
var r = this.options;
|
|
10751
|
-
!t && Ue(
|
|
10813
|
+
!t && Ue(M, r.dragClass, !1), Ue(M, r.ghostClass, !0), B.active = this, t && this._appendGhost(), Fe({
|
|
10752
10814
|
sortable: this,
|
|
10753
10815
|
name: "start",
|
|
10754
10816
|
originalEvent: n
|
|
@@ -10761,7 +10823,7 @@ B.prototype = /** @lends Sortable.prototype */
|
|
|
10761
10823
|
this._lastX = et.clientX, this._lastY = et.clientY, Zl();
|
|
10762
10824
|
for (var t = document.elementFromPoint(et.clientX, et.clientY), n = t; t && t.shadowRoot && (t = t.shadowRoot.elementFromPoint(et.clientX, et.clientY), t !== n); )
|
|
10763
10825
|
n = t;
|
|
10764
|
-
if (
|
|
10826
|
+
if (M.parentNode[Be]._isOutsideThisEl(t), n)
|
|
10765
10827
|
do {
|
|
10766
10828
|
if (n[Be]) {
|
|
10767
10829
|
var r = void 0;
|
|
@@ -10780,13 +10842,13 @@ B.prototype = /** @lends Sortable.prototype */
|
|
|
10780
10842
|
},
|
|
10781
10843
|
_onTouchMove: function(t) {
|
|
10782
10844
|
if (Dt) {
|
|
10783
|
-
var n = this.options, r = n.fallbackTolerance, s = n.fallbackOffset, i = t.touches ? t.touches[0] : t, a =
|
|
10845
|
+
var n = this.options, r = n.fallbackTolerance, s = n.fallbackOffset, i = t.touches ? t.touches[0] : t, a = K && Qt(K, !0), l = K && a && a.a, u = K && a && a.d, f = ei && Ee && Ws(Ee), c = (i.clientX - Dt.clientX + s.x) / (l || 1) + (f ? f[0] - Xi[0] : 0) / (l || 1), p = (i.clientY - Dt.clientY + s.y) / (u || 1) + (f ? f[1] - Xi[1] : 0) / (u || 1);
|
|
10784
10846
|
if (!B.active && !Kt) {
|
|
10785
10847
|
if (r && Math.max(Math.abs(i.clientX - this._lastX), Math.abs(i.clientY - this._lastY)) < r)
|
|
10786
10848
|
return;
|
|
10787
10849
|
this._onDragStart(t, !0);
|
|
10788
10850
|
}
|
|
10789
|
-
if (
|
|
10851
|
+
if (K) {
|
|
10790
10852
|
a ? (a.e += c - (Zi || 0), a.f += p - (Ji || 0)) : a = {
|
|
10791
10853
|
a: 1,
|
|
10792
10854
|
b: 0,
|
|
@@ -10796,20 +10858,20 @@ B.prototype = /** @lends Sortable.prototype */
|
|
|
10796
10858
|
f: p
|
|
10797
10859
|
};
|
|
10798
10860
|
var g = "matrix(".concat(a.a, ",").concat(a.b, ",").concat(a.c, ",").concat(a.d, ",").concat(a.e, ",").concat(a.f, ")");
|
|
10799
|
-
R(
|
|
10861
|
+
R(K, "webkitTransform", g), R(K, "mozTransform", g), R(K, "msTransform", g), R(K, "transform", g), Zi = c, Ji = p, et = i;
|
|
10800
10862
|
}
|
|
10801
10863
|
t.cancelable && t.preventDefault();
|
|
10802
10864
|
}
|
|
10803
10865
|
},
|
|
10804
10866
|
_appendGhost: function() {
|
|
10805
|
-
if (!
|
|
10806
|
-
var t = this.options.fallbackOnBody ? document.body : ce, n = be(
|
|
10867
|
+
if (!K) {
|
|
10868
|
+
var t = this.options.fallbackOnBody ? document.body : ce, n = be(M, !0, ei, !0, t), r = this.options;
|
|
10807
10869
|
if (ei) {
|
|
10808
10870
|
for (Ee = t; R(Ee, "position") === "static" && R(Ee, "transform") === "none" && Ee !== document; )
|
|
10809
10871
|
Ee = Ee.parentNode;
|
|
10810
10872
|
Ee !== document.body && Ee !== document.documentElement ? (Ee === document && (Ee = ot()), n.top += Ee.scrollTop, n.left += Ee.scrollLeft) : Ee = ot(), Xi = Ws(Ee);
|
|
10811
10873
|
}
|
|
10812
|
-
|
|
10874
|
+
K = M.cloneNode(!0), Ue(K, r.ghostClass, !1), Ue(K, r.fallbackClass, !0), Ue(K, r.dragClass, !0), R(K, "transition", ""), R(K, "transform", ""), R(K, "box-sizing", "border-box"), R(K, "margin", 0), R(K, "top", n.top), R(K, "left", n.left), R(K, "width", n.width), R(K, "height", n.height), R(K, "opacity", "0.8"), R(K, "position", ei ? "absolute" : "fixed"), R(K, "zIndex", "100000"), R(K, "pointerEvents", "none"), B.ghost = K, t.appendChild(K), R(K, "transform-origin", Gs / parseInt(K.style.width) * 100 + "% " + Ks / parseInt(K.style.height) * 100 + "%");
|
|
10813
10875
|
}
|
|
10814
10876
|
},
|
|
10815
10877
|
_onDragStart: function(t, n) {
|
|
@@ -10820,12 +10882,12 @@ B.prototype = /** @lends Sortable.prototype */
|
|
|
10820
10882
|
this._onDrop();
|
|
10821
10883
|
return;
|
|
10822
10884
|
}
|
|
10823
|
-
Le("setupClone", this), B.eventCanceled || (he = Wl(
|
|
10824
|
-
Le("clone", r), !B.eventCanceled && (r.options.removeCloneOnHide || ce.insertBefore(he,
|
|
10885
|
+
Le("setupClone", this), B.eventCanceled || (he = Wl(M), he.draggable = !1, he.style["will-change"] = "", this._hideClone(), Ue(he, this.options.chosenClass, !1), B.clone = he), r.cloneId = oi(function() {
|
|
10886
|
+
Le("clone", r), !B.eventCanceled && (r.options.removeCloneOnHide || ce.insertBefore(he, M), r._hideClone(), Fe({
|
|
10825
10887
|
sortable: r,
|
|
10826
10888
|
name: "clone"
|
|
10827
10889
|
}));
|
|
10828
|
-
}), !n && Ue(
|
|
10890
|
+
}), !n && Ue(M, i.dragClass, !0), n ? (_i = !0, r._loopId = setInterval(r._emulateDragOver, 50)) : (X(document, "mouseup", r._onDrop), X(document, "touchend", r._onDrop), X(document, "touchcancel", r._onDrop), s && (s.effectAllowed = "move", i.setData && i.setData.call(r, s, M)), ne(document, "drop", r), R(M, "transform", "translateZ(0)")), Kt = !0, r._dragStartId = oi(r._dragStarted.bind(r, n, t)), ne(document, "selectstart", r), xn = !0, On && R(document.body, "user-select", "none");
|
|
10829
10891
|
},
|
|
10830
10892
|
// Returns true - if no further action is needed (either inserted or another condition)
|
|
10831
10893
|
_onDragOver: function(t) {
|
|
@@ -10843,25 +10905,25 @@ B.prototype = /** @lends Sortable.prototype */
|
|
|
10843
10905
|
canSort: p,
|
|
10844
10906
|
fromSortable: g,
|
|
10845
10907
|
target: r,
|
|
10846
|
-
completed:
|
|
10908
|
+
completed: D,
|
|
10847
10909
|
onMove: function(rt, Vt) {
|
|
10848
|
-
return ti(ce, n,
|
|
10910
|
+
return ti(ce, n, M, s, rt, be(rt), t, Vt);
|
|
10849
10911
|
},
|
|
10850
|
-
changed:
|
|
10912
|
+
changed: ee
|
|
10851
10913
|
}, Rt));
|
|
10852
10914
|
}
|
|
10853
|
-
function
|
|
10915
|
+
function H() {
|
|
10854
10916
|
j("dragOverAnimationCapture"), w.captureAnimationState(), w !== g && g.captureAnimationState();
|
|
10855
10917
|
}
|
|
10856
|
-
function
|
|
10918
|
+
function D(it) {
|
|
10857
10919
|
return j("dragOverCompleted", {
|
|
10858
10920
|
insertion: it
|
|
10859
|
-
}), it && (c ? f._hideClone() : f._showClone(w), w !== g && (Ue(
|
|
10921
|
+
}), it && (c ? f._hideClone() : f._showClone(w), w !== g && (Ue(M, Se ? Se.options.ghostClass : f.options.ghostClass, !1), Ue(M, l.ghostClass, !0)), Se !== w && w !== B.active ? Se = w : w === B.active && Se && (Se = null), g === w && (w._ignoreWhileAnimating = r), w.animateAll(function() {
|
|
10860
10922
|
j("dragOverAnimationComplete"), w._ignoreWhileAnimating = null;
|
|
10861
|
-
}), w !== g && (g.animateAll(), g._ignoreWhileAnimating = null)), (r ===
|
|
10923
|
+
}), w !== g && (g.animateAll(), g._ignoreWhileAnimating = null)), (r === M && !M.animated || r === n && !r.animated) && (Gt = null), !l.dragoverBubble && !t.rootEl && r !== document && (M.parentNode[Be]._isOutsideThisEl(t.target), !it && It(t)), !l.dragoverBubble && t.stopPropagation && t.stopPropagation(), O = !0;
|
|
10862
10924
|
}
|
|
10863
|
-
function
|
|
10864
|
-
je =
|
|
10925
|
+
function ee() {
|
|
10926
|
+
je = Ke(M), kt = Ke(M, l.draggable), Fe({
|
|
10865
10927
|
sortable: w,
|
|
10866
10928
|
name: "change",
|
|
10867
10929
|
toEl: n,
|
|
@@ -10872,47 +10934,47 @@ B.prototype = /** @lends Sortable.prototype */
|
|
|
10872
10934
|
}
|
|
10873
10935
|
if (t.preventDefault !== void 0 && t.cancelable && t.preventDefault(), r = lt(r, l.draggable, n, !0), j("dragOver"), B.eventCanceled)
|
|
10874
10936
|
return O;
|
|
10875
|
-
if (
|
|
10876
|
-
return
|
|
10877
|
-
if (_i = !1, f && !l.disabled && (c ? p || (a = me !== ce) : Se === this || (this.lastPutMode = Xn.checkPull(this, f,
|
|
10878
|
-
if (b = this._getDirection(t, r) === "vertical", s = be(
|
|
10937
|
+
if (M.contains(t.target) || r.animated && r.animatingX && r.animatingY || w._ignoreWhileAnimating === r)
|
|
10938
|
+
return D(!1);
|
|
10939
|
+
if (_i = !1, f && !l.disabled && (c ? p || (a = me !== ce) : Se === this || (this.lastPutMode = Xn.checkPull(this, f, M, t)) && u.checkPut(this, f, M, t))) {
|
|
10940
|
+
if (b = this._getDirection(t, r) === "vertical", s = be(M), j("dragOverValid"), B.eventCanceled)
|
|
10879
10941
|
return O;
|
|
10880
10942
|
if (a)
|
|
10881
|
-
return me = ce,
|
|
10882
|
-
var
|
|
10883
|
-
if (!
|
|
10884
|
-
if (
|
|
10885
|
-
return
|
|
10886
|
-
if (
|
|
10887
|
-
return
|
|
10888
|
-
} else if (
|
|
10943
|
+
return me = ce, H(), this._hideClone(), j("revert"), B.eventCanceled || ($t ? ce.insertBefore(M, $t) : ce.appendChild(M)), D(!0);
|
|
10944
|
+
var re = Hr(n, l.draggable);
|
|
10945
|
+
if (!re || s1(t, b, this) && !re.animated) {
|
|
10946
|
+
if (re === M)
|
|
10947
|
+
return D(!1);
|
|
10948
|
+
if (re && n === t.target && (r = re), r && (i = be(r)), ti(ce, n, M, s, r, i, t, !!r) !== !1)
|
|
10949
|
+
return H(), n.appendChild(M), me = n, ee(), D(!0);
|
|
10950
|
+
} else if (re && r1(t, b, this)) {
|
|
10889
10951
|
var ue = nn(n, 0, l, !0);
|
|
10890
|
-
if (ue ===
|
|
10891
|
-
return
|
|
10892
|
-
if (r = ue, i = be(r), ti(ce, n,
|
|
10893
|
-
return
|
|
10952
|
+
if (ue === M)
|
|
10953
|
+
return D(!1);
|
|
10954
|
+
if (r = ue, i = be(r), ti(ce, n, M, s, r, i, t, !1) !== !1)
|
|
10955
|
+
return H(), n.insertBefore(M, ue), me = n, ee(), D(!0);
|
|
10894
10956
|
} else if (r.parentNode === n) {
|
|
10895
10957
|
i = be(r);
|
|
10896
|
-
var
|
|
10897
|
-
Gt !== r && ($ = i[Me], An = !1, Qn = !
|
|
10958
|
+
var W = 0, $, le = M.parentNode !== n, G = !Qv(M.animated && M.toRect || s, r.animated && r.toRect || i, b), Me = b ? "top" : "left", xe = qs(r, "top", "top") || qs(M, "top", "top"), we = xe ? xe.scrollTop : void 0;
|
|
10959
|
+
Gt !== r && ($ = i[Me], An = !1, Qn = !G && l.invertSwap || le), W = a1(t, r, i, b, G ? 1 : l.swapThreshold, l.invertedSwapThreshold == null ? l.swapThreshold : l.invertedSwapThreshold, Qn, Gt === r);
|
|
10898
10960
|
var Oe;
|
|
10899
|
-
if (
|
|
10900
|
-
var Ce =
|
|
10961
|
+
if (W !== 0) {
|
|
10962
|
+
var Ce = Ke(M);
|
|
10901
10963
|
do
|
|
10902
|
-
Ce -=
|
|
10903
|
-
while (Oe && (R(Oe, "display") === "none" || Oe ===
|
|
10964
|
+
Ce -= W, Oe = me.children[Ce];
|
|
10965
|
+
while (Oe && (R(Oe, "display") === "none" || Oe === K));
|
|
10904
10966
|
}
|
|
10905
|
-
if (
|
|
10906
|
-
return
|
|
10907
|
-
Gt = r, En =
|
|
10967
|
+
if (W === 0 || Oe === r)
|
|
10968
|
+
return D(!1);
|
|
10969
|
+
Gt = r, En = W;
|
|
10908
10970
|
var Ne = r.nextElementSibling, Ve = !1;
|
|
10909
|
-
Ve =
|
|
10910
|
-
var yt = ti(ce, n,
|
|
10971
|
+
Ve = W === 1;
|
|
10972
|
+
var yt = ti(ce, n, M, s, r, i, t, Ve);
|
|
10911
10973
|
if (yt !== !1)
|
|
10912
|
-
return (yt === 1 || yt === -1) && (Ve = yt === 1), xr = !0, setTimeout(
|
|
10974
|
+
return (yt === 1 || yt === -1) && (Ve = yt === 1), xr = !0, setTimeout(i1, 30), H(), Ve && !Ne ? n.appendChild(M) : r.parentNode.insertBefore(M, Ve ? Ne : r), xe && ql(xe, 0, we - xe.scrollTop), me = M.parentNode, $ !== void 0 && !Qn && (li = Math.abs($ - be(r)[Me])), ee(), D(!0);
|
|
10913
10975
|
}
|
|
10914
|
-
if (n.contains(
|
|
10915
|
-
return
|
|
10976
|
+
if (n.contains(M))
|
|
10977
|
+
return D(!1);
|
|
10916
10978
|
}
|
|
10917
10979
|
return !1;
|
|
10918
10980
|
},
|
|
@@ -10926,13 +10988,13 @@ B.prototype = /** @lends Sortable.prototype */
|
|
|
10926
10988
|
},
|
|
10927
10989
|
_onDrop: function(t) {
|
|
10928
10990
|
var n = this.el, r = this.options;
|
|
10929
|
-
if (je =
|
|
10991
|
+
if (je = Ke(M), kt = Ke(M, r.draggable), Le("drop", this, {
|
|
10930
10992
|
evt: t
|
|
10931
|
-
}), me =
|
|
10993
|
+
}), me = M && M.parentNode, je = Ke(M), kt = Ke(M, r.draggable), B.eventCanceled) {
|
|
10932
10994
|
this._nulling();
|
|
10933
10995
|
return;
|
|
10934
10996
|
}
|
|
10935
|
-
Kt = !1, Qn = !1, An = !1, clearInterval(this._loopId), clearTimeout(this._dragStartTimer), wr(this.cloneId), wr(this._dragStartId), this.nativeDraggable && (X(document, "drop", this), X(n, "dragstart", this._onDragStart)), this._offMoveEvents(), this._offUpEvents(), On && R(document.body, "user-select", ""), R(
|
|
10997
|
+
Kt = !1, Qn = !1, An = !1, clearInterval(this._loopId), clearTimeout(this._dragStartTimer), wr(this.cloneId), wr(this._dragStartId), this.nativeDraggable && (X(document, "drop", this), X(n, "dragstart", this._onDragStart)), this._offMoveEvents(), this._offUpEvents(), On && R(document.body, "user-select", ""), R(M, "transform", ""), t && (xn && (t.cancelable && t.preventDefault(), !r.dropBubble && t.stopPropagation()), K && K.parentNode && K.parentNode.removeChild(K), (ce === me || Se && Se.lastPutMode !== "clone") && he && he.parentNode && he.parentNode.removeChild(he), M && (this.nativeDraggable && X(M, "dragend", this), Qi(M), M.style["will-change"] = "", xn && !Kt && Ue(M, Se ? Se.options.ghostClass : this.options.ghostClass, !1), Ue(M, this.options.chosenClass, !1), Fe({
|
|
10936
10998
|
sortable: this,
|
|
10937
10999
|
name: "unchoose",
|
|
10938
11000
|
toEl: me,
|
|
@@ -10979,7 +11041,7 @@ B.prototype = /** @lends Sortable.prototype */
|
|
|
10979
11041
|
}), this.save()))), this._nulling();
|
|
10980
11042
|
},
|
|
10981
11043
|
_nulling: function() {
|
|
10982
|
-
Le("nulling", this), ce =
|
|
11044
|
+
Le("nulling", this), ce = M = me = K = $t = he = ai = wt = Dt = et = xn = je = kt = Zt = Vn = Gt = En = Se = Xn = B.dragged = B.ghost = B.clone = B.active = null, vi.forEach(function(t) {
|
|
10983
11045
|
t.checked = !0;
|
|
10984
11046
|
}), vi.length = Zi = Ji = 0;
|
|
10985
11047
|
},
|
|
@@ -10991,7 +11053,7 @@ B.prototype = /** @lends Sortable.prototype */
|
|
|
10991
11053
|
break;
|
|
10992
11054
|
case "dragenter":
|
|
10993
11055
|
case "dragover":
|
|
10994
|
-
|
|
11056
|
+
M && (this._onDragOver(t), n1(t));
|
|
10995
11057
|
break;
|
|
10996
11058
|
case "selectstart":
|
|
10997
11059
|
t.preventDefault();
|
|
@@ -11004,7 +11066,7 @@ B.prototype = /** @lends Sortable.prototype */
|
|
|
11004
11066
|
*/
|
|
11005
11067
|
toArray: function() {
|
|
11006
11068
|
for (var t = [], n, r = this.el.children, s = 0, i = r.length, a = this.options; s < i; s++)
|
|
11007
|
-
n = r[s], lt(n, a.draggable, this.el, !1) && t.push(n.getAttribute(a.dataIdAttr) ||
|
|
11069
|
+
n = r[s], lt(n, a.draggable, this.el, !1) && t.push(n.getAttribute(a.dataIdAttr) || o1(n));
|
|
11008
11070
|
return t;
|
|
11009
11071
|
},
|
|
11010
11072
|
/**
|
|
@@ -11074,11 +11136,11 @@ B.prototype = /** @lends Sortable.prototype */
|
|
|
11074
11136
|
if (wt) {
|
|
11075
11137
|
if (Le("showClone", this), B.eventCanceled)
|
|
11076
11138
|
return;
|
|
11077
|
-
|
|
11139
|
+
M.parentNode == ce && !this.options.group.revertClone ? ce.insertBefore(he, M) : $t ? ce.insertBefore(he, $t) : ce.appendChild(he), this.options.group.revertClone && this.animate(M, he), R(he, "display", ""), wt = !1;
|
|
11078
11140
|
}
|
|
11079
11141
|
}
|
|
11080
11142
|
};
|
|
11081
|
-
function
|
|
11143
|
+
function n1(e) {
|
|
11082
11144
|
e.dataTransfer && (e.dataTransfer.dropEffect = "move"), e.cancelable && e.preventDefault();
|
|
11083
11145
|
}
|
|
11084
11146
|
function ti(e, t, n, r, s, i, a, l) {
|
|
@@ -11091,18 +11153,18 @@ function ti(e, t, n, r, s, i, a, l) {
|
|
|
11091
11153
|
function Qi(e) {
|
|
11092
11154
|
e.draggable = !1;
|
|
11093
11155
|
}
|
|
11094
|
-
function
|
|
11156
|
+
function i1() {
|
|
11095
11157
|
xr = !1;
|
|
11096
11158
|
}
|
|
11097
|
-
function
|
|
11159
|
+
function r1(e, t, n) {
|
|
11098
11160
|
var r = be(nn(n.el, 0, n.options, !0)), s = 10;
|
|
11099
11161
|
return t ? e.clientX < r.left - s || e.clientY < r.top && e.clientX < r.right : e.clientY < r.top - s || e.clientY < r.bottom && e.clientX < r.left;
|
|
11100
11162
|
}
|
|
11101
|
-
function
|
|
11163
|
+
function s1(e, t, n) {
|
|
11102
11164
|
var r = be(Hr(n.el, n.options.draggable)), s = 10;
|
|
11103
11165
|
return t ? e.clientX > r.right + s || e.clientX <= r.right && e.clientY > r.bottom && e.clientX >= r.left : e.clientX > r.right && e.clientY > r.top || e.clientX <= r.right && e.clientY > r.bottom + s;
|
|
11104
11166
|
}
|
|
11105
|
-
function
|
|
11167
|
+
function a1(e, t, n, r, s, i, a, l) {
|
|
11106
11168
|
var u = r ? e.clientY : e.clientX, f = r ? n.height : n.width, c = r ? n.top : n.left, p = r ? n.bottom : n.right, g = !1;
|
|
11107
11169
|
if (!a) {
|
|
11108
11170
|
if (l && li < f * s) {
|
|
@@ -11111,19 +11173,19 @@ function s1(e, t, n, r, s, i, a, l) {
|
|
|
11111
11173
|
else if (En === 1 ? u < c + li : u > p - li)
|
|
11112
11174
|
return -En;
|
|
11113
11175
|
} else if (u > c + f * (1 - s) / 2 && u < p - f * (1 - s) / 2)
|
|
11114
|
-
return
|
|
11176
|
+
return l1(t);
|
|
11115
11177
|
}
|
|
11116
11178
|
return g = g || a, g && (u < c + f * i / 2 || u > p - f * i / 2) ? u > c + f / 2 ? 1 : -1 : 0;
|
|
11117
11179
|
}
|
|
11118
|
-
function a1(e) {
|
|
11119
|
-
return We(D) < We(e) ? 1 : -1;
|
|
11120
|
-
}
|
|
11121
11180
|
function l1(e) {
|
|
11181
|
+
return Ke(M) < Ke(e) ? 1 : -1;
|
|
11182
|
+
}
|
|
11183
|
+
function o1(e) {
|
|
11122
11184
|
for (var t = e.tagName + e.className + e.src + e.href + e.textContent, n = t.length, r = 0; n--; )
|
|
11123
11185
|
r += t.charCodeAt(n);
|
|
11124
11186
|
return r.toString(36);
|
|
11125
11187
|
}
|
|
11126
|
-
function
|
|
11188
|
+
function u1(e) {
|
|
11127
11189
|
vi.length = 0;
|
|
11128
11190
|
for (var t = e.getElementsByTagName("input"), n = t.length; n--; ) {
|
|
11129
11191
|
var r = t[n];
|
|
@@ -11136,23 +11198,23 @@ function oi(e) {
|
|
|
11136
11198
|
function wr(e) {
|
|
11137
11199
|
return clearTimeout(e);
|
|
11138
11200
|
}
|
|
11139
|
-
Fi &&
|
|
11201
|
+
Fi && ne(document, "touchmove", function(e) {
|
|
11140
11202
|
(B.active || Kt) && e.cancelable && e.preventDefault();
|
|
11141
11203
|
});
|
|
11142
11204
|
B.utils = {
|
|
11143
|
-
on:
|
|
11205
|
+
on: ne,
|
|
11144
11206
|
off: X,
|
|
11145
11207
|
css: R,
|
|
11146
11208
|
find: zl,
|
|
11147
11209
|
is: function(t, n) {
|
|
11148
11210
|
return !!lt(t, n, t, !1);
|
|
11149
11211
|
},
|
|
11150
|
-
extend:
|
|
11212
|
+
extend: qv,
|
|
11151
11213
|
throttle: Hl,
|
|
11152
11214
|
closest: lt,
|
|
11153
11215
|
toggleClass: Ue,
|
|
11154
11216
|
clone: Wl,
|
|
11155
|
-
index:
|
|
11217
|
+
index: Ke,
|
|
11156
11218
|
nextTick: oi,
|
|
11157
11219
|
cancelNextTick: wr,
|
|
11158
11220
|
detectDirection: Kl,
|
|
@@ -11173,9 +11235,9 @@ B.mount = function() {
|
|
|
11173
11235
|
B.create = function(e, t) {
|
|
11174
11236
|
return new B(e, t);
|
|
11175
11237
|
};
|
|
11176
|
-
B.version =
|
|
11238
|
+
B.version = Rv;
|
|
11177
11239
|
var ye = [], wn, Sr, Tr = !1, er, tr, bi, Sn;
|
|
11178
|
-
function
|
|
11240
|
+
function d1() {
|
|
11179
11241
|
function e() {
|
|
11180
11242
|
this.defaults = {
|
|
11181
11243
|
scroll: !0,
|
|
@@ -11190,14 +11252,14 @@ function u1() {
|
|
|
11190
11252
|
return e.prototype = {
|
|
11191
11253
|
dragStarted: function(n) {
|
|
11192
11254
|
var r = n.originalEvent;
|
|
11193
|
-
this.sortable.nativeDraggable ?
|
|
11255
|
+
this.sortable.nativeDraggable ? ne(document, "dragover", this._handleAutoScroll) : this.options.supportPointer ? ne(document, "pointermove", this._handleFallbackAutoScroll) : r.touches ? ne(document, "touchmove", this._handleFallbackAutoScroll) : ne(document, "mousemove", this._handleFallbackAutoScroll);
|
|
11194
11256
|
},
|
|
11195
11257
|
dragOverCompleted: function(n) {
|
|
11196
11258
|
var r = n.originalEvent;
|
|
11197
11259
|
!this.options.dragOverBubble && !r.rootEl && this._handleAutoScroll(r);
|
|
11198
11260
|
},
|
|
11199
11261
|
drop: function() {
|
|
11200
|
-
this.sortable.nativeDraggable ? X(document, "dragover", this._handleAutoScroll) : (X(document, "pointermove", this._handleFallbackAutoScroll), X(document, "touchmove", this._handleFallbackAutoScroll), X(document, "mousemove", this._handleFallbackAutoScroll)), Zs(), ui(),
|
|
11262
|
+
this.sortable.nativeDraggable ? X(document, "dragover", this._handleAutoScroll) : (X(document, "pointermove", this._handleFallbackAutoScroll), X(document, "touchmove", this._handleFallbackAutoScroll), X(document, "mousemove", this._handleFallbackAutoScroll)), Zs(), ui(), Wv();
|
|
11201
11263
|
},
|
|
11202
11264
|
nulling: function() {
|
|
11203
11265
|
bi = Sr = wn = Tr = Sn = er = tr = null, ye.length = 0;
|
|
@@ -11241,9 +11303,9 @@ var nr = Hl(function(e, t, n, r) {
|
|
|
11241
11303
|
Sr !== n && (Sr = n, ui(), wn = t.scroll, c = t.scrollFn, wn === !0 && (wn = St(n, !0)));
|
|
11242
11304
|
var p = 0, g = wn;
|
|
11243
11305
|
do {
|
|
11244
|
-
var b = g, w = be(b), O = w.top, j = w.bottom,
|
|
11245
|
-
b === u ? (ue =
|
|
11246
|
-
var we = ue && (Math.abs(
|
|
11306
|
+
var b = g, w = be(b), O = w.top, j = w.bottom, H = w.left, D = w.right, ee = w.width, re = w.height, ue = void 0, W = void 0, $ = b.scrollWidth, le = b.scrollHeight, G = R(b), Me = b.scrollLeft, xe = b.scrollTop;
|
|
11307
|
+
b === u ? (ue = ee < $ && (G.overflowX === "auto" || G.overflowX === "scroll" || G.overflowX === "visible"), W = re < le && (G.overflowY === "auto" || G.overflowY === "scroll" || G.overflowY === "visible")) : (ue = ee < $ && (G.overflowX === "auto" || G.overflowX === "scroll"), W = re < le && (G.overflowY === "auto" || G.overflowY === "scroll"));
|
|
11308
|
+
var we = ue && (Math.abs(D - s) <= a && Me + ee < $) - (Math.abs(H - s) <= a && !!Me), Oe = W && (Math.abs(j - i) <= a && xe + re < le) - (Math.abs(O - i) <= a && !!xe);
|
|
11247
11309
|
if (!ye[p])
|
|
11248
11310
|
for (var Ce = 0; Ce <= p; Ce++)
|
|
11249
11311
|
ye[Ce] || (ye[Ce] = {});
|
|
@@ -11300,7 +11362,7 @@ Wr.prototype = {
|
|
|
11300
11362
|
ht(Wr, {
|
|
11301
11363
|
pluginName: "removeOnSpill"
|
|
11302
11364
|
});
|
|
11303
|
-
B.mount(new
|
|
11365
|
+
B.mount(new d1());
|
|
11304
11366
|
B.mount(Wr, qr);
|
|
11305
11367
|
function ir(e) {
|
|
11306
11368
|
e.parentElement !== null && e.parentElement.removeChild(e);
|
|
@@ -11309,25 +11371,25 @@ function Js(e, t, n) {
|
|
|
11309
11371
|
const r = n === 0 ? e.children[0] : e.children[n - 1].nextSibling;
|
|
11310
11372
|
e.insertBefore(t, r);
|
|
11311
11373
|
}
|
|
11312
|
-
function
|
|
11374
|
+
function c1() {
|
|
11313
11375
|
return typeof window < "u" ? window.console : global.console;
|
|
11314
11376
|
}
|
|
11315
|
-
const
|
|
11316
|
-
function
|
|
11377
|
+
const f1 = c1();
|
|
11378
|
+
function m1(e) {
|
|
11317
11379
|
const t = /* @__PURE__ */ Object.create(null);
|
|
11318
11380
|
return function(r) {
|
|
11319
11381
|
return t[r] || (t[r] = e(r));
|
|
11320
11382
|
};
|
|
11321
11383
|
}
|
|
11322
|
-
const
|
|
11384
|
+
const h1 = /-(\w)/g, p1 = m1((e) => e.replace(h1, (t, n) => n.toUpperCase())), Ql = ["Start", "Add", "Remove", "Update", "End"], eo = ["Choose", "Unchoose", "Sort", "Filter", "Clone"], to = ["Move"], y1 = [to, Ql, eo].flatMap((e) => e).map((e) => `on${e}`), Or = {
|
|
11323
11385
|
manage: to,
|
|
11324
11386
|
manageAndEmit: Ql,
|
|
11325
11387
|
emit: eo
|
|
11326
11388
|
};
|
|
11327
|
-
function
|
|
11328
|
-
return
|
|
11389
|
+
function _1(e) {
|
|
11390
|
+
return y1.indexOf(e) !== -1;
|
|
11329
11391
|
}
|
|
11330
|
-
const
|
|
11392
|
+
const g1 = [
|
|
11331
11393
|
"a",
|
|
11332
11394
|
"abbr",
|
|
11333
11395
|
"address",
|
|
@@ -11446,10 +11508,10 @@ const _1 = [
|
|
|
11446
11508
|
"video",
|
|
11447
11509
|
"wbr"
|
|
11448
11510
|
];
|
|
11449
|
-
function g1(e) {
|
|
11450
|
-
return _1.includes(e);
|
|
11451
|
-
}
|
|
11452
11511
|
function v1(e) {
|
|
11512
|
+
return g1.includes(e);
|
|
11513
|
+
}
|
|
11514
|
+
function b1(e) {
|
|
11453
11515
|
return ["transition-group", "TransitionGroup"].includes(e);
|
|
11454
11516
|
}
|
|
11455
11517
|
function no(e) {
|
|
@@ -11458,7 +11520,7 @@ function no(e) {
|
|
|
11458
11520
|
function io(e) {
|
|
11459
11521
|
return e.reduce((t, [n, r]) => (t[n] = r, t), {});
|
|
11460
11522
|
}
|
|
11461
|
-
function
|
|
11523
|
+
function k1({ $attrs: e, componentData: t = {} }) {
|
|
11462
11524
|
return {
|
|
11463
11525
|
...io(
|
|
11464
11526
|
Object.entries(e).filter(([r, s]) => no(r))
|
|
@@ -11466,7 +11528,7 @@ function b1({ $attrs: e, componentData: t = {} }) {
|
|
|
11466
11528
|
...t
|
|
11467
11529
|
};
|
|
11468
11530
|
}
|
|
11469
|
-
function
|
|
11531
|
+
function x1({ $attrs: e, callBackBuilder: t }) {
|
|
11470
11532
|
const n = io(ro(e));
|
|
11471
11533
|
Object.entries(t).forEach(([s, i]) => {
|
|
11472
11534
|
Or[s].forEach((a) => {
|
|
@@ -11480,10 +11542,10 @@ function k1({ $attrs: e, callBackBuilder: t }) {
|
|
|
11480
11542
|
};
|
|
11481
11543
|
}
|
|
11482
11544
|
function ro(e) {
|
|
11483
|
-
return Object.entries(e).filter(([t, n]) => !no(t)).map(([t, n]) => [
|
|
11545
|
+
return Object.entries(e).filter(([t, n]) => !no(t)).map(([t, n]) => [p1(t), n]).filter(([t, n]) => !_1(t));
|
|
11484
11546
|
}
|
|
11485
|
-
const Xs = ({ el: e }) => e,
|
|
11486
|
-
class
|
|
11547
|
+
const Xs = ({ el: e }) => e, w1 = (e, t) => e.__draggable_context = t, Qs = (e) => e.__draggable_context;
|
|
11548
|
+
class S1 {
|
|
11487
11549
|
constructor({
|
|
11488
11550
|
nodes: { header: t, default: n, footer: r },
|
|
11489
11551
|
root: s,
|
|
@@ -11501,7 +11563,7 @@ class w1 {
|
|
|
11501
11563
|
updated() {
|
|
11502
11564
|
const { defaultNodes: t, realList: n } = this;
|
|
11503
11565
|
t.forEach((r, s) => {
|
|
11504
|
-
|
|
11566
|
+
w1(Xs(r), {
|
|
11505
11567
|
element: n[s],
|
|
11506
11568
|
index: s
|
|
11507
11569
|
});
|
|
@@ -11525,13 +11587,13 @@ class w1 {
|
|
|
11525
11587
|
return t < f ? 0 : s;
|
|
11526
11588
|
}
|
|
11527
11589
|
}
|
|
11528
|
-
function
|
|
11590
|
+
function T1(e, t) {
|
|
11529
11591
|
const n = e[t];
|
|
11530
11592
|
return n ? n() : [];
|
|
11531
11593
|
}
|
|
11532
|
-
function
|
|
11594
|
+
function O1({ $slots: e, realList: t, getKey: n }) {
|
|
11533
11595
|
const r = t || [], [s, i] = ["header", "footer"].map(
|
|
11534
|
-
(u) =>
|
|
11596
|
+
(u) => T1(e, u)
|
|
11535
11597
|
), { item: a } = e;
|
|
11536
11598
|
if (!a)
|
|
11537
11599
|
throw new Error("draggable element must have an item slot");
|
|
@@ -11546,17 +11608,17 @@ function T1({ $slots: e, realList: t, getKey: n }) {
|
|
|
11546
11608
|
default: l
|
|
11547
11609
|
};
|
|
11548
11610
|
}
|
|
11549
|
-
function
|
|
11550
|
-
const t =
|
|
11611
|
+
function C1(e) {
|
|
11612
|
+
const t = b1(e), n = !v1(e) && !t;
|
|
11551
11613
|
return {
|
|
11552
11614
|
transition: t,
|
|
11553
11615
|
externalComponent: n,
|
|
11554
11616
|
tag: n ? y(e) : t ? Ko : e
|
|
11555
11617
|
};
|
|
11556
11618
|
}
|
|
11557
|
-
function
|
|
11558
|
-
const s =
|
|
11559
|
-
return new
|
|
11619
|
+
function V1({ $slots: e, tag: t, realList: n, getKey: r }) {
|
|
11620
|
+
const s = O1({ $slots: e, realList: n, getKey: r }), i = C1(t);
|
|
11621
|
+
return new S1({ nodes: s, root: i, realList: n });
|
|
11560
11622
|
}
|
|
11561
11623
|
function so(e, t) {
|
|
11562
11624
|
Sa(() => this.$emit(e.toLowerCase(), t));
|
|
@@ -11567,14 +11629,14 @@ function ao(e) {
|
|
|
11567
11629
|
return this[`onDrag${e}`](t, n);
|
|
11568
11630
|
};
|
|
11569
11631
|
}
|
|
11570
|
-
function
|
|
11632
|
+
function E1(e) {
|
|
11571
11633
|
const t = ao.call(this, e);
|
|
11572
11634
|
return (n, r) => {
|
|
11573
11635
|
t.call(this, n, r), so.call(this, e, n);
|
|
11574
11636
|
};
|
|
11575
11637
|
}
|
|
11576
11638
|
let rr = null;
|
|
11577
|
-
const
|
|
11639
|
+
const A1 = {
|
|
11578
11640
|
list: {
|
|
11579
11641
|
type: Array,
|
|
11580
11642
|
required: !1,
|
|
@@ -11606,15 +11668,15 @@ const E1 = {
|
|
|
11606
11668
|
required: !1,
|
|
11607
11669
|
default: null
|
|
11608
11670
|
}
|
|
11609
|
-
},
|
|
11671
|
+
}, M1 = [
|
|
11610
11672
|
"update:modelValue",
|
|
11611
11673
|
"change",
|
|
11612
11674
|
...[...Or.manageAndEmit, ...Or.emit].map((e) => e.toLowerCase())
|
|
11613
11675
|
], lo = Vr({
|
|
11614
11676
|
name: "draggable",
|
|
11615
11677
|
inheritAttrs: !1,
|
|
11616
|
-
props:
|
|
11617
|
-
emits:
|
|
11678
|
+
props: A1,
|
|
11679
|
+
emits: M1,
|
|
11618
11680
|
data() {
|
|
11619
11681
|
return {
|
|
11620
11682
|
error: !1
|
|
@@ -11623,21 +11685,21 @@ const E1 = {
|
|
|
11623
11685
|
render() {
|
|
11624
11686
|
try {
|
|
11625
11687
|
this.error = !1;
|
|
11626
|
-
const { $slots: e, $attrs: t, tag: n, componentData: r, realList: s, getKey: i } = this, a =
|
|
11688
|
+
const { $slots: e, $attrs: t, tag: n, componentData: r, realList: s, getKey: i } = this, a = V1({
|
|
11627
11689
|
$slots: e,
|
|
11628
11690
|
tag: n,
|
|
11629
11691
|
realList: s,
|
|
11630
11692
|
getKey: i
|
|
11631
11693
|
});
|
|
11632
11694
|
this.componentStructure = a;
|
|
11633
|
-
const l =
|
|
11695
|
+
const l = k1({ $attrs: t, componentData: r });
|
|
11634
11696
|
return a.render(mr, l);
|
|
11635
11697
|
} catch (e) {
|
|
11636
11698
|
return this.error = !0, mr("pre", { style: { color: "red" } }, e.stack);
|
|
11637
11699
|
}
|
|
11638
11700
|
},
|
|
11639
11701
|
created() {
|
|
11640
|
-
this.list !== null && this.modelValue !== null &&
|
|
11702
|
+
this.list !== null && this.modelValue !== null && f1.error(
|
|
11641
11703
|
"modelValue and list props are mutually exclusive! Please set one or another."
|
|
11642
11704
|
);
|
|
11643
11705
|
},
|
|
@@ -11646,10 +11708,10 @@ const E1 = {
|
|
|
11646
11708
|
return;
|
|
11647
11709
|
const { $attrs: e, $el: t, componentStructure: n } = this;
|
|
11648
11710
|
n.updated();
|
|
11649
|
-
const r =
|
|
11711
|
+
const r = x1({
|
|
11650
11712
|
$attrs: e,
|
|
11651
11713
|
callBackBuilder: {
|
|
11652
|
-
manageAndEmit: (i) =>
|
|
11714
|
+
manageAndEmit: (i) => E1.call(this, i),
|
|
11653
11715
|
emit: (i) => so.bind(this, i),
|
|
11654
11716
|
manage: (i) => ao.call(this, i)
|
|
11655
11717
|
}
|
|
@@ -11785,7 +11847,7 @@ function ea(e, t) {
|
|
|
11785
11847
|
let n = e.title.toUpperCase(), r = t.title.toUpperCase();
|
|
11786
11848
|
return n < r ? -1 : n > r ? 1 : 0;
|
|
11787
11849
|
}
|
|
11788
|
-
const
|
|
11850
|
+
const D1 = {
|
|
11789
11851
|
components: {
|
|
11790
11852
|
Item: jl,
|
|
11791
11853
|
draggable: lo
|
|
@@ -11795,7 +11857,7 @@ const M1 = {
|
|
|
11795
11857
|
type: [Object, Array]
|
|
11796
11858
|
}
|
|
11797
11859
|
},
|
|
11798
|
-
mixins: [
|
|
11860
|
+
mixins: [ie],
|
|
11799
11861
|
async created() {
|
|
11800
11862
|
this.glossary = await this.$sdk.content.glossary({ hash: !0 }), this.value = this.cleanInput(this.value, !0), this.dispatch();
|
|
11801
11863
|
},
|
|
@@ -11914,27 +11976,27 @@ const M1 = {
|
|
|
11914
11976
|
return this.model ? this.showList ? "Click to select" : this.model.title || this.model.name || this.model.firstName : "Click to select";
|
|
11915
11977
|
}
|
|
11916
11978
|
}
|
|
11917
|
-
},
|
|
11979
|
+
}, I1 = {
|
|
11918
11980
|
key: 0,
|
|
11919
11981
|
class: "ux-field-title"
|
|
11920
|
-
},
|
|
11982
|
+
}, F1 = {
|
|
11921
11983
|
key: 0,
|
|
11922
11984
|
class: "ux-required-marker"
|
|
11923
|
-
},
|
|
11985
|
+
}, $1 = {
|
|
11924
11986
|
key: 1,
|
|
11925
11987
|
class: "ux-field-description"
|
|
11926
|
-
},
|
|
11988
|
+
}, N1 = {
|
|
11927
11989
|
key: 1,
|
|
11928
11990
|
class: "items"
|
|
11929
11991
|
};
|
|
11930
|
-
function
|
|
11992
|
+
function L1(e, t, n, r, s, i) {
|
|
11931
11993
|
const a = y("ux-icon"), l = y("ux-button"), u = y("item"), f = y("draggable"), c = y("flex-cell"), p = y("flex-spacer"), g = y("flex-row");
|
|
11932
11994
|
return o(), d(S, null, [
|
|
11933
|
-
e.showLabel ? (o(), d("label",
|
|
11995
|
+
e.showLabel ? (o(), d("label", I1, [
|
|
11934
11996
|
T(v(e.label) + " ", 1),
|
|
11935
|
-
e.required ? (o(), d("span",
|
|
11997
|
+
e.required ? (o(), d("span", F1, "*")) : _("", !0)
|
|
11936
11998
|
])) : _("", !0),
|
|
11937
|
-
e.showDescription ? (o(), d("div",
|
|
11999
|
+
e.showDescription ? (o(), d("div", $1, v(e.description), 1)) : _("", !0),
|
|
11938
12000
|
i.showList ? (o(), d(S, { key: 2 }, [
|
|
11939
12001
|
e.multiValue ? (o(), d(S, { key: 0 }, [
|
|
11940
12002
|
e.model && e.model.length ? (o(), k(f, {
|
|
@@ -11987,7 +12049,7 @@ function N1(e, t, n, r, s, i) {
|
|
|
11987
12049
|
]),
|
|
11988
12050
|
_: 1
|
|
11989
12051
|
}, 8, ["modelValue"])) : _("", !0)
|
|
11990
|
-
], 64)) : e.model ? (o(), d("div",
|
|
12052
|
+
], 64)) : e.model ? (o(), d("div", N1, [
|
|
11991
12053
|
m(u, { item: e.model }, {
|
|
11992
12054
|
actions: h(() => [
|
|
11993
12055
|
m(l, {
|
|
@@ -12080,11 +12142,11 @@ function N1(e, t, n, r, s, i) {
|
|
|
12080
12142
|
})) : _("", !0)
|
|
12081
12143
|
], 64);
|
|
12082
12144
|
}
|
|
12083
|
-
const oo = /* @__PURE__ */ C(
|
|
12084
|
-
function
|
|
12145
|
+
const oo = /* @__PURE__ */ C(D1, [["render", L1], ["__scopeId", "data-v-406dd647"]]);
|
|
12146
|
+
function P1(e) {
|
|
12085
12147
|
return e === void 0 || typeof e > "u" || e === null || String(e) === "null" || String(e) === "undefined";
|
|
12086
12148
|
}
|
|
12087
|
-
const
|
|
12149
|
+
const U1 = {
|
|
12088
12150
|
props: {
|
|
12089
12151
|
title: {
|
|
12090
12152
|
type: String
|
|
@@ -12093,7 +12155,7 @@ const P1 = {
|
|
|
12093
12155
|
// type: [Object, Array],
|
|
12094
12156
|
}
|
|
12095
12157
|
},
|
|
12096
|
-
mixins: [
|
|
12158
|
+
mixins: [ie],
|
|
12097
12159
|
async created() {
|
|
12098
12160
|
this.model = this.model;
|
|
12099
12161
|
var e = await this.$sdk.content.glossary(), t = e;
|
|
@@ -12118,7 +12180,7 @@ const P1 = {
|
|
|
12118
12180
|
methods: {
|
|
12119
12181
|
cleanOutput(e) {
|
|
12120
12182
|
var t = this;
|
|
12121
|
-
return
|
|
12183
|
+
return P1(e) ? t.multiValue ? e = [] : e = void 0 : t.multiValue ? e = (e || []).filter(Boolean).map(function(n) {
|
|
12122
12184
|
return t.getValue(n);
|
|
12123
12185
|
}) : e = t.getValue(e), e;
|
|
12124
12186
|
},
|
|
@@ -12158,34 +12220,34 @@ const P1 = {
|
|
|
12158
12220
|
return this.types;
|
|
12159
12221
|
}
|
|
12160
12222
|
}
|
|
12161
|
-
},
|
|
12223
|
+
}, j1 = {
|
|
12162
12224
|
key: 0,
|
|
12163
12225
|
class: "ux-field-title"
|
|
12164
|
-
},
|
|
12226
|
+
}, R1 = {
|
|
12165
12227
|
key: 0,
|
|
12166
12228
|
class: "ux-required-marker"
|
|
12167
|
-
},
|
|
12229
|
+
}, B1 = {
|
|
12168
12230
|
key: 1,
|
|
12169
12231
|
class: "ux-field-description"
|
|
12170
|
-
},
|
|
12232
|
+
}, z1 = {
|
|
12171
12233
|
key: 2,
|
|
12172
12234
|
class: "ui-select-button"
|
|
12173
|
-
},
|
|
12235
|
+
}, H1 = ["multiple"], q1 = {
|
|
12174
12236
|
key: 0,
|
|
12175
12237
|
value: ""
|
|
12176
|
-
},
|
|
12177
|
-
function
|
|
12238
|
+
}, W1 = ["value"];
|
|
12239
|
+
function G1(e, t, n, r, s, i) {
|
|
12178
12240
|
const a = y("ux-button");
|
|
12179
12241
|
return o(), d("div", {
|
|
12180
12242
|
class: L(["native-select", i.classes])
|
|
12181
12243
|
}, [
|
|
12182
|
-
e.showLabel ? (o(), d("label",
|
|
12244
|
+
e.showLabel ? (o(), d("label", j1, [
|
|
12183
12245
|
T(v(e.label) + " ", 1),
|
|
12184
|
-
e.required ? (o(), d("span",
|
|
12246
|
+
e.required ? (o(), d("span", R1, "*")) : _("", !0)
|
|
12185
12247
|
])) : _("", !0),
|
|
12186
|
-
e.showDescription ? (o(), d("div",
|
|
12187
|
-
e.singleValue ? (o(), d("div",
|
|
12188
|
-
|
|
12248
|
+
e.showDescription ? (o(), d("div", B1, v(e.description), 1)) : _("", !0),
|
|
12249
|
+
e.singleValue ? (o(), d("div", z1, [
|
|
12250
|
+
q(e.$slots, "default", {}, () => [
|
|
12189
12251
|
m(a, { tag: "div" }, {
|
|
12190
12252
|
default: h(() => [
|
|
12191
12253
|
T(v(i.summary), 1)
|
|
@@ -12194,22 +12256,22 @@ function W1(e, t, n, r, s, i) {
|
|
|
12194
12256
|
})
|
|
12195
12257
|
], !0)
|
|
12196
12258
|
])) : _("", !0),
|
|
12197
|
-
|
|
12259
|
+
Y(x("select", {
|
|
12198
12260
|
onFocus: t[0] || (t[0] = (...l) => e.touch && e.touch(...l)),
|
|
12199
12261
|
multiple: e.multiValue,
|
|
12200
12262
|
"onUpdate:modelValue": t[1] || (t[1] = (l) => e.model = l)
|
|
12201
12263
|
}, [
|
|
12202
|
-
e.singleValue && !e.minimum ? (o(), d("option",
|
|
12264
|
+
e.singleValue && !e.minimum ? (o(), d("option", q1, "None")) : _("", !0),
|
|
12203
12265
|
(o(!0), d(S, null, F(i.selectableOptions, (l) => (o(), d("option", {
|
|
12204
12266
|
value: l.value
|
|
12205
|
-
}, v(l.title), 9,
|
|
12206
|
-
], 40,
|
|
12267
|
+
}, v(l.title), 9, W1))), 256))
|
|
12268
|
+
], 40, H1), [
|
|
12207
12269
|
[Tt, e.model]
|
|
12208
12270
|
])
|
|
12209
12271
|
], 2);
|
|
12210
12272
|
}
|
|
12211
|
-
const
|
|
12212
|
-
const
|
|
12273
|
+
const K1 = /* @__PURE__ */ C(U1, [["render", G1], ["__scopeId", "data-v-f99f589d"]]);
|
|
12274
|
+
const Y1 = {
|
|
12213
12275
|
components: {
|
|
12214
12276
|
UxCircle: zr
|
|
12215
12277
|
},
|
|
@@ -12259,13 +12321,13 @@ const K1 = {
|
|
|
12259
12321
|
return !this.hasChildren || this.item.collapsed;
|
|
12260
12322
|
}
|
|
12261
12323
|
}
|
|
12262
|
-
},
|
|
12324
|
+
}, Z1 = { class: "outer" }, J1 = {
|
|
12263
12325
|
key: 0,
|
|
12264
12326
|
class: "children"
|
|
12265
12327
|
};
|
|
12266
|
-
function
|
|
12328
|
+
function X1(e, t, n, r, s, i) {
|
|
12267
12329
|
const a = y("ux-icon"), l = y("flex-cell"), u = y("ux-circle"), f = y("ux-button"), c = y("flex-row"), p = y("scope-item", !0);
|
|
12268
|
-
return o(), d("div",
|
|
12330
|
+
return o(), d("div", Z1, [
|
|
12269
12331
|
x("div", {
|
|
12270
12332
|
class: L(["scope-item", { selected: i.selected }]),
|
|
12271
12333
|
onClick: t[1] || (t[1] = (...g) => i.clicked && i.clicked(...g))
|
|
@@ -12332,7 +12394,7 @@ function J1(e, t, n, r, s, i) {
|
|
|
12332
12394
|
_: 1
|
|
12333
12395
|
})
|
|
12334
12396
|
], 2),
|
|
12335
|
-
i.expanded ? (o(), d("div",
|
|
12397
|
+
i.expanded ? (o(), d("div", J1, [
|
|
12336
12398
|
(o(!0), d(S, null, F(n.item.children, (g) => (o(), k(p, {
|
|
12337
12399
|
click: n.click,
|
|
12338
12400
|
item: g
|
|
@@ -12340,11 +12402,11 @@ function J1(e, t, n, r, s, i) {
|
|
|
12340
12402
|
])) : _("", !0)
|
|
12341
12403
|
]);
|
|
12342
12404
|
}
|
|
12343
|
-
const
|
|
12405
|
+
const Q1 = /* @__PURE__ */ C(Y1, [["render", X1], ["__scopeId", "data-v-33a8fd08"]]);
|
|
12344
12406
|
let sr;
|
|
12345
|
-
const
|
|
12407
|
+
const eb = {
|
|
12346
12408
|
components: {
|
|
12347
|
-
ScopeItem:
|
|
12409
|
+
ScopeItem: Q1
|
|
12348
12410
|
},
|
|
12349
12411
|
async created() {
|
|
12350
12412
|
this.glossary = await this.$sdk.content.glossary({ hash: !0 });
|
|
@@ -12362,6 +12424,10 @@ const Q1 = {
|
|
|
12362
12424
|
default() {
|
|
12363
12425
|
return [];
|
|
12364
12426
|
}
|
|
12427
|
+
},
|
|
12428
|
+
single: {
|
|
12429
|
+
type: Boolean,
|
|
12430
|
+
default: !1
|
|
12365
12431
|
}
|
|
12366
12432
|
},
|
|
12367
12433
|
data() {
|
|
@@ -12374,11 +12440,15 @@ const Q1 = {
|
|
|
12374
12440
|
},
|
|
12375
12441
|
methods: {
|
|
12376
12442
|
select(e) {
|
|
12443
|
+
if (this.single) {
|
|
12444
|
+
this.model = [e];
|
|
12445
|
+
return;
|
|
12446
|
+
}
|
|
12377
12447
|
this.isSelected(e) || this.model.push(e);
|
|
12378
12448
|
},
|
|
12379
12449
|
deselect(e) {
|
|
12380
12450
|
const t = this, n = t.$sdk.utils.id(e);
|
|
12381
|
-
t.isSelected(e) && (t.model = t.model.filter(function(r) {
|
|
12451
|
+
t.isSelected(e) && (t.single && (t.model.length = 0), t.model = t.model.filter(function(r) {
|
|
12382
12452
|
return t.$sdk.utils.id(r) != n;
|
|
12383
12453
|
}));
|
|
12384
12454
|
},
|
|
@@ -12461,7 +12531,7 @@ const Q1 = {
|
|
|
12461
12531
|
}
|
|
12462
12532
|
}
|
|
12463
12533
|
};
|
|
12464
|
-
function
|
|
12534
|
+
function tb(e, t, n, r, s, i) {
|
|
12465
12535
|
const a = y("spinner"), l = y("scope-item");
|
|
12466
12536
|
return o(), d("div", {
|
|
12467
12537
|
class: L({ has: i.hasSelection })
|
|
@@ -12472,8 +12542,8 @@ function eb(e, t, n, r, s, i) {
|
|
|
12472
12542
|
}, null, 8, ["click", "item"]))), 256))
|
|
12473
12543
|
], 2);
|
|
12474
12544
|
}
|
|
12475
|
-
const
|
|
12476
|
-
const
|
|
12545
|
+
const nb = /* @__PURE__ */ C(eb, [["render", tb], ["__scopeId", "data-v-7fc51116"]]);
|
|
12546
|
+
const ib = {
|
|
12477
12547
|
components: {
|
|
12478
12548
|
UxCircle: zr
|
|
12479
12549
|
},
|
|
@@ -12496,6 +12566,14 @@ const nb = {
|
|
|
12496
12566
|
default() {
|
|
12497
12567
|
return [];
|
|
12498
12568
|
}
|
|
12569
|
+
},
|
|
12570
|
+
minimum: {
|
|
12571
|
+
type: Number,
|
|
12572
|
+
default: 0
|
|
12573
|
+
},
|
|
12574
|
+
maximum: {
|
|
12575
|
+
type: Number,
|
|
12576
|
+
default: 0
|
|
12499
12577
|
}
|
|
12500
12578
|
},
|
|
12501
12579
|
data() {
|
|
@@ -12512,7 +12590,8 @@ const nb = {
|
|
|
12512
12590
|
const e = this, t = await e.$sdk.selectScopes({
|
|
12513
12591
|
action: e.action,
|
|
12514
12592
|
type: e.type,
|
|
12515
|
-
model: e.model
|
|
12593
|
+
model: e.model,
|
|
12594
|
+
maximum: e.maximum
|
|
12516
12595
|
});
|
|
12517
12596
|
e.model = t;
|
|
12518
12597
|
}
|
|
@@ -12588,8 +12667,8 @@ const nb = {
|
|
|
12588
12667
|
immediate: !0
|
|
12589
12668
|
}
|
|
12590
12669
|
}
|
|
12591
|
-
},
|
|
12592
|
-
function
|
|
12670
|
+
}, rb = { class: "circles" };
|
|
12671
|
+
function sb(e, t, n, r, s, i) {
|
|
12593
12672
|
const a = y("ux-circle"), l = y("ux-button");
|
|
12594
12673
|
return o(), d("div", null, [
|
|
12595
12674
|
m(l, {
|
|
@@ -12598,7 +12677,7 @@ function rb(e, t, n, r, s, i) {
|
|
|
12598
12677
|
onClick: i.openSelection
|
|
12599
12678
|
}, {
|
|
12600
12679
|
default: h(() => [
|
|
12601
|
-
x("div",
|
|
12680
|
+
x("div", rb, [
|
|
12602
12681
|
(o(!0), d(S, null, F(s.model, (u) => (o(), k(a, { value: u }, null, 8, ["value"]))), 256))
|
|
12603
12682
|
]),
|
|
12604
12683
|
x("span", {
|
|
@@ -12609,13 +12688,13 @@ function rb(e, t, n, r, s, i) {
|
|
|
12609
12688
|
}, 8, ["size", "loading", "onClick"])
|
|
12610
12689
|
]);
|
|
12611
12690
|
}
|
|
12612
|
-
const
|
|
12613
|
-
function
|
|
12691
|
+
const ab = /* @__PURE__ */ C(ib, [["render", sb], ["__scopeId", "data-v-9af83f09"]]);
|
|
12692
|
+
function lb(e) {
|
|
12614
12693
|
return e === void 0 || typeof e > "u" || e === null || String(e) === "null" || String(e) === "undefined";
|
|
12615
12694
|
}
|
|
12616
|
-
const
|
|
12695
|
+
const ob = {
|
|
12617
12696
|
components: {
|
|
12618
|
-
ScopeSelectButton:
|
|
12697
|
+
ScopeSelectButton: ab
|
|
12619
12698
|
},
|
|
12620
12699
|
props: {
|
|
12621
12700
|
title: {
|
|
@@ -12623,9 +12702,17 @@ const lb = {
|
|
|
12623
12702
|
},
|
|
12624
12703
|
modelValue: {
|
|
12625
12704
|
// type: [Object, Array],
|
|
12705
|
+
},
|
|
12706
|
+
minimum: {
|
|
12707
|
+
type: Number,
|
|
12708
|
+
default: 0
|
|
12709
|
+
},
|
|
12710
|
+
maximum: {
|
|
12711
|
+
type: Number,
|
|
12712
|
+
default: 0
|
|
12626
12713
|
}
|
|
12627
12714
|
},
|
|
12628
|
-
mixins: [
|
|
12715
|
+
mixins: [ie],
|
|
12629
12716
|
async created() {
|
|
12630
12717
|
this.model = this.model;
|
|
12631
12718
|
var e = await this.$sdk.content.glossary(), t = e;
|
|
@@ -12648,7 +12735,7 @@ const lb = {
|
|
|
12648
12735
|
methods: {
|
|
12649
12736
|
cleanOutput(e) {
|
|
12650
12737
|
var t = this;
|
|
12651
|
-
return
|
|
12738
|
+
return lb(e) ? t.multiValue ? e = [] : e = void 0 : t.multiValue ? e = (e || []).filter(Boolean).map(function(n) {
|
|
12652
12739
|
return t.getValue(n);
|
|
12653
12740
|
}) : e = t.getValue(e), e;
|
|
12654
12741
|
},
|
|
@@ -12694,42 +12781,43 @@ const lb = {
|
|
|
12694
12781
|
return this.types;
|
|
12695
12782
|
}
|
|
12696
12783
|
}
|
|
12697
|
-
},
|
|
12784
|
+
}, ub = {
|
|
12698
12785
|
key: 0,
|
|
12699
12786
|
class: "ux-field-title"
|
|
12700
|
-
},
|
|
12787
|
+
}, db = {
|
|
12701
12788
|
key: 0,
|
|
12702
12789
|
class: "ux-required-marker"
|
|
12703
|
-
},
|
|
12790
|
+
}, cb = {
|
|
12704
12791
|
key: 1,
|
|
12705
12792
|
class: "ux-field-description"
|
|
12706
12793
|
};
|
|
12707
|
-
function
|
|
12794
|
+
function fb(e, t, n, r, s, i) {
|
|
12708
12795
|
const a = y("scope-select-button");
|
|
12709
12796
|
return o(), d("div", {
|
|
12710
12797
|
class: L(["scope-select", i.classes])
|
|
12711
12798
|
}, [
|
|
12712
|
-
e.showLabel ? (o(), d("label",
|
|
12799
|
+
e.showLabel ? (o(), d("label", ub, [
|
|
12713
12800
|
T(v(e.label) + " ", 1),
|
|
12714
|
-
e.required ? (o(), d("span",
|
|
12801
|
+
e.required ? (o(), d("span", db, "*")) : _("", !0)
|
|
12715
12802
|
])) : _("", !0),
|
|
12716
|
-
e.showDescription ? (o(), d("div",
|
|
12803
|
+
e.showDescription ? (o(), d("div", cb, v(e.description), 1)) : _("", !0),
|
|
12717
12804
|
m(a, {
|
|
12805
|
+
maximum: n.maximum,
|
|
12718
12806
|
type: i.contextReferenceType,
|
|
12719
12807
|
action: i.contextReferenceAction,
|
|
12720
12808
|
modelValue: e.model,
|
|
12721
12809
|
"onUpdate:modelValue": t[0] || (t[0] = (l) => e.model = l)
|
|
12722
|
-
}, null, 8, ["type", "action", "modelValue"])
|
|
12810
|
+
}, null, 8, ["maximum", "type", "action", "modelValue"])
|
|
12723
12811
|
], 2);
|
|
12724
12812
|
}
|
|
12725
|
-
const
|
|
12813
|
+
const uo = /* @__PURE__ */ C(ob, [["render", fb], ["__scopeId", "data-v-2d13e8a0"]]);
|
|
12726
12814
|
const mb = {
|
|
12727
12815
|
props: {
|
|
12728
12816
|
modelValue: {
|
|
12729
12817
|
type: [String, Array]
|
|
12730
12818
|
}
|
|
12731
12819
|
},
|
|
12732
|
-
mixins: [
|
|
12820
|
+
mixins: [ie],
|
|
12733
12821
|
methods: {
|
|
12734
12822
|
update(e, t) {
|
|
12735
12823
|
var n = this.format(e.target.value);
|
|
@@ -12823,7 +12911,7 @@ function wb(e, t, n, r, s, i) {
|
|
|
12823
12911
|
class: L(["ux-text-wrap", { prefixed: i.prefix, suffixed: i.suffix }])
|
|
12824
12912
|
}, [
|
|
12825
12913
|
i.prefix ? (o(), d("span", gb, v(i.prefix), 1)) : _("", !0),
|
|
12826
|
-
|
|
12914
|
+
Y((o(), d("input", {
|
|
12827
12915
|
class: "ux-field-focus ux-text-input-multiple",
|
|
12828
12916
|
ref_for: !0,
|
|
12829
12917
|
ref: "input",
|
|
@@ -12835,7 +12923,7 @@ function wb(e, t, n, r, s, i) {
|
|
|
12835
12923
|
onFocus: t[1] || (t[1] = (...g) => e.touch && e.touch(...g))
|
|
12836
12924
|
}, null, 40, vb)), [
|
|
12837
12925
|
[
|
|
12838
|
-
|
|
12926
|
+
ae,
|
|
12839
12927
|
i.proxy[p],
|
|
12840
12928
|
void 0,
|
|
12841
12929
|
{ lazy: !0 }
|
|
@@ -12886,7 +12974,7 @@ function wb(e, t, n, r, s, i) {
|
|
|
12886
12974
|
class: L(["ux-text-wrap", { prefixed: i.prefix, suffixed: i.suffix }])
|
|
12887
12975
|
}, [
|
|
12888
12976
|
i.prefix ? (o(), d("span", kb, v(i.prefix), 1)) : _("", !0),
|
|
12889
|
-
|
|
12977
|
+
Y((o(), d("input", {
|
|
12890
12978
|
class: "ux-field-focus ux-text-input-single",
|
|
12891
12979
|
ref: "input",
|
|
12892
12980
|
key: i.proxy,
|
|
@@ -12896,7 +12984,7 @@ function wb(e, t, n, r, s, i) {
|
|
|
12896
12984
|
"onUpdate:modelValue": t[5] || (t[5] = (c) => i.proxy = c)
|
|
12897
12985
|
}, null, 32)), [
|
|
12898
12986
|
[
|
|
12899
|
-
|
|
12987
|
+
ae,
|
|
12900
12988
|
i.proxy,
|
|
12901
12989
|
void 0,
|
|
12902
12990
|
{ lazy: !0 }
|
|
@@ -12906,7 +12994,7 @@ function wb(e, t, n, r, s, i) {
|
|
|
12906
12994
|
], 2))
|
|
12907
12995
|
], 64);
|
|
12908
12996
|
}
|
|
12909
|
-
const
|
|
12997
|
+
const co = /* @__PURE__ */ C(mb, [["render", wb], ["__scopeId", "data-v-8204c7cd"]]);
|
|
12910
12998
|
const Sb = {
|
|
12911
12999
|
props: {
|
|
12912
13000
|
modelValue: {
|
|
@@ -12919,7 +13007,7 @@ const Sb = {
|
|
|
12919
13007
|
unmaskedLookup: {}
|
|
12920
13008
|
};
|
|
12921
13009
|
},
|
|
12922
|
-
mixins: [
|
|
13010
|
+
mixins: [ie],
|
|
12923
13011
|
computed: {
|
|
12924
13012
|
copyable() {
|
|
12925
13013
|
return this.$sdk.global.copyText && this.field.copyable;
|
|
@@ -13037,7 +13125,7 @@ function Ub(e, t, n, r, s, i) {
|
|
|
13037
13125
|
default: h(() => [
|
|
13038
13126
|
x("div", Eb, [
|
|
13039
13127
|
e.prefix ? (o(), d("span", Ab, v(e.prefix), 1)) : _("", !0),
|
|
13040
|
-
i.lazy ?
|
|
13128
|
+
i.lazy ? Y((o(), d("input", {
|
|
13041
13129
|
key: 1,
|
|
13042
13130
|
type: i.getInput(p),
|
|
13043
13131
|
class: L([i.inputClasses, "ux-field-focus ux-text-input-multiple"]),
|
|
@@ -13055,7 +13143,7 @@ function Ub(e, t, n, r, s, i) {
|
|
|
13055
13143
|
{ lazy: !0 }
|
|
13056
13144
|
]
|
|
13057
13145
|
]) : _("", !0),
|
|
13058
|
-
i.lazy ? _("", !0) :
|
|
13146
|
+
i.lazy ? _("", !0) : Y((o(), d("input", {
|
|
13059
13147
|
key: 2,
|
|
13060
13148
|
type: i.getInput(p),
|
|
13061
13149
|
class: L([i.inputClasses, "ux-field-focus ux-text-input-multiple"]),
|
|
@@ -13158,7 +13246,7 @@ function Ub(e, t, n, r, s, i) {
|
|
|
13158
13246
|
default: h(() => [
|
|
13159
13247
|
x("div", Fb, [
|
|
13160
13248
|
e.prefix ? (o(), d("span", $b, v(e.prefix), 1)) : _("", !0),
|
|
13161
|
-
i.lazy ?
|
|
13249
|
+
i.lazy ? Y((o(), d("input", {
|
|
13162
13250
|
key: 1,
|
|
13163
13251
|
type: i.actualInputType,
|
|
13164
13252
|
ref: "input",
|
|
@@ -13174,7 +13262,7 @@ function Ub(e, t, n, r, s, i) {
|
|
|
13174
13262
|
{ lazy: !0 }
|
|
13175
13263
|
]
|
|
13176
13264
|
]) : _("", !0),
|
|
13177
|
-
i.lazy ? _("", !0) :
|
|
13265
|
+
i.lazy ? _("", !0) : Y((o(), d("input", {
|
|
13178
13266
|
key: 2,
|
|
13179
13267
|
type: i.actualInputType,
|
|
13180
13268
|
ref: "input",
|
|
@@ -13237,14 +13325,14 @@ function Ub(e, t, n, r, s, i) {
|
|
|
13237
13325
|
}))
|
|
13238
13326
|
], 64);
|
|
13239
13327
|
}
|
|
13240
|
-
const
|
|
13328
|
+
const fo = /* @__PURE__ */ C(Sb, [["render", Ub], ["__scopeId", "data-v-ab981ae3"]]);
|
|
13241
13329
|
const jb = {
|
|
13242
13330
|
props: {
|
|
13243
13331
|
modelValue: {
|
|
13244
13332
|
type: [String, Array]
|
|
13245
13333
|
}
|
|
13246
13334
|
},
|
|
13247
|
-
mixins: [
|
|
13335
|
+
mixins: [ie],
|
|
13248
13336
|
methods: {
|
|
13249
13337
|
getNewDefaultEntry() {
|
|
13250
13338
|
return "";
|
|
@@ -13276,7 +13364,7 @@ function Wb(e, t, n, r, s, i) {
|
|
|
13276
13364
|
default: h(() => [
|
|
13277
13365
|
m(a, null, {
|
|
13278
13366
|
default: h(() => [
|
|
13279
|
-
|
|
13367
|
+
Y(x("textarea", {
|
|
13280
13368
|
contenteditable: "",
|
|
13281
13369
|
onFocus: t[0] || (t[0] = (...g) => e.touch && e.touch(...g)),
|
|
13282
13370
|
ref_for: !0,
|
|
@@ -13284,7 +13372,7 @@ function Wb(e, t, n, r, s, i) {
|
|
|
13284
13372
|
"onUpdate:modelValue": (g) => e.model[p] = g,
|
|
13285
13373
|
class: "ux-textarea ux-field-focus ux-text-area-multiple"
|
|
13286
13374
|
}, null, 40, qb), [
|
|
13287
|
-
[
|
|
13375
|
+
[ae, e.model[p]]
|
|
13288
13376
|
])
|
|
13289
13377
|
]),
|
|
13290
13378
|
_: 2
|
|
@@ -13320,7 +13408,7 @@ function Wb(e, t, n, r, s, i) {
|
|
|
13320
13408
|
]),
|
|
13321
13409
|
_: 1
|
|
13322
13410
|
})) : _("", !0)
|
|
13323
|
-
])) :
|
|
13411
|
+
])) : Y((o(), d("textarea", {
|
|
13324
13412
|
key: 3,
|
|
13325
13413
|
class: "ux-textarea ux-field-focus ux-text-area-single",
|
|
13326
13414
|
onFocus: t[2] || (t[2] = (...c) => e.touch && e.touch(...c)),
|
|
@@ -13328,7 +13416,7 @@ function Wb(e, t, n, r, s, i) {
|
|
|
13328
13416
|
role: "textbox",
|
|
13329
13417
|
contenteditable: ""
|
|
13330
13418
|
}, null, 544)), [
|
|
13331
|
-
[
|
|
13419
|
+
[ae, e.model]
|
|
13332
13420
|
])
|
|
13333
13421
|
], 64);
|
|
13334
13422
|
}
|
|
@@ -13342,7 +13430,7 @@ const Kb = {
|
|
|
13342
13430
|
type: [Date, String, Array]
|
|
13343
13431
|
}
|
|
13344
13432
|
},
|
|
13345
|
-
mixins: [
|
|
13433
|
+
mixins: [ie],
|
|
13346
13434
|
computed: {
|
|
13347
13435
|
model: {
|
|
13348
13436
|
get() {
|
|
@@ -13398,7 +13486,7 @@ function e0(e, t, n, r, s, i) {
|
|
|
13398
13486
|
default: h(() => [
|
|
13399
13487
|
m(a, null, {
|
|
13400
13488
|
default: h(() => [
|
|
13401
|
-
|
|
13489
|
+
Y(x("input", {
|
|
13402
13490
|
type: "datetime-local",
|
|
13403
13491
|
class: "ux-field-focus ux-text-input-multiple",
|
|
13404
13492
|
onFocus: t[0] || (t[0] = (...g) => e.touch && e.touch(...g)),
|
|
@@ -13407,7 +13495,7 @@ function e0(e, t, n, r, s, i) {
|
|
|
13407
13495
|
onKeydown: t[1] || (t[1] = ge(z((g) => e.add(), ["stop", "prevent"]), ["enter"])),
|
|
13408
13496
|
"onUpdate:modelValue": (g) => i.model[p] = g
|
|
13409
13497
|
}, null, 40, Qb), [
|
|
13410
|
-
[
|
|
13498
|
+
[ae, i.model[p]]
|
|
13411
13499
|
])
|
|
13412
13500
|
]),
|
|
13413
13501
|
_: 2
|
|
@@ -13443,18 +13531,18 @@ function e0(e, t, n, r, s, i) {
|
|
|
13443
13531
|
]),
|
|
13444
13532
|
_: 1
|
|
13445
13533
|
})) : _("", !0)
|
|
13446
|
-
])) :
|
|
13534
|
+
])) : Y((o(), d("input", {
|
|
13447
13535
|
key: 3,
|
|
13448
13536
|
type: "datetime-local",
|
|
13449
13537
|
class: "ux-field-focus ux-text-input-single",
|
|
13450
13538
|
onFocus: t[3] || (t[3] = (...c) => e.touch && e.touch(...c)),
|
|
13451
13539
|
"onUpdate:modelValue": t[4] || (t[4] = (c) => i.model = c)
|
|
13452
13540
|
}, null, 544)), [
|
|
13453
|
-
[
|
|
13541
|
+
[ae, i.model]
|
|
13454
13542
|
])
|
|
13455
13543
|
], 64);
|
|
13456
13544
|
}
|
|
13457
|
-
const
|
|
13545
|
+
const mo = /* @__PURE__ */ C(Kb, [["render", e0], ["__scopeId", "data-v-32a839f1"]]);
|
|
13458
13546
|
function ta(e) {
|
|
13459
13547
|
return String(e).length < 2 && (e = `0${e}`), e;
|
|
13460
13548
|
}
|
|
@@ -13464,7 +13552,7 @@ const t0 = {
|
|
|
13464
13552
|
type: String
|
|
13465
13553
|
}
|
|
13466
13554
|
},
|
|
13467
|
-
mixins: [
|
|
13555
|
+
mixins: [ie],
|
|
13468
13556
|
methods: {
|
|
13469
13557
|
cleanInputValue(e) {
|
|
13470
13558
|
return e.split(":").join("");
|
|
@@ -13503,7 +13591,7 @@ function l0(e, t, n, r, s, i) {
|
|
|
13503
13591
|
default: h(() => [
|
|
13504
13592
|
m(a, null, {
|
|
13505
13593
|
default: h(() => [
|
|
13506
|
-
|
|
13594
|
+
Y(x("input", {
|
|
13507
13595
|
type: "time",
|
|
13508
13596
|
class: "ux-field-focus ux-text-input-multiple",
|
|
13509
13597
|
onFocus: t[0] || (t[0] = (...g) => e.touch && e.touch(...g)),
|
|
@@ -13512,7 +13600,7 @@ function l0(e, t, n, r, s, i) {
|
|
|
13512
13600
|
onKeydown: t[1] || (t[1] = ge(z((g) => e.add(), ["stop", "prevent"]), ["enter"])),
|
|
13513
13601
|
"onUpdate:modelValue": (g) => e.model[p] = g
|
|
13514
13602
|
}, null, 40, a0), [
|
|
13515
|
-
[
|
|
13603
|
+
[ae, e.model[p]]
|
|
13516
13604
|
])
|
|
13517
13605
|
]),
|
|
13518
13606
|
_: 2
|
|
@@ -13548,28 +13636,28 @@ function l0(e, t, n, r, s, i) {
|
|
|
13548
13636
|
]),
|
|
13549
13637
|
_: 1
|
|
13550
13638
|
})) : _("", !0)
|
|
13551
|
-
])) :
|
|
13639
|
+
])) : Y((o(), d("input", {
|
|
13552
13640
|
key: 3,
|
|
13553
13641
|
type: "time",
|
|
13554
13642
|
class: "ux-field-focus ux-text-input-single",
|
|
13555
13643
|
onFocus: t[3] || (t[3] = (...c) => e.touch && e.touch(...c)),
|
|
13556
13644
|
"onUpdate:modelValue": t[4] || (t[4] = (c) => e.model = c)
|
|
13557
13645
|
}, null, 544)), [
|
|
13558
|
-
[
|
|
13646
|
+
[ae, e.model]
|
|
13559
13647
|
])
|
|
13560
13648
|
], 64);
|
|
13561
13649
|
}
|
|
13562
13650
|
const o0 = /* @__PURE__ */ C(t0, [["render", l0], ["__scopeId", "data-v-9ae5aa1e"]]);
|
|
13563
13651
|
const u0 = {
|
|
13564
13652
|
components: {
|
|
13565
|
-
Daterange:
|
|
13653
|
+
Daterange: ov
|
|
13566
13654
|
},
|
|
13567
13655
|
props: {
|
|
13568
13656
|
modelValue: {
|
|
13569
13657
|
type: [Object, Array]
|
|
13570
13658
|
}
|
|
13571
13659
|
},
|
|
13572
|
-
mixins: [
|
|
13660
|
+
mixins: [ie],
|
|
13573
13661
|
computed: {
|
|
13574
13662
|
model: {
|
|
13575
13663
|
get() {
|
|
@@ -13674,7 +13762,7 @@ function na(e) {
|
|
|
13674
13762
|
return Array.isArray(e) ? !!e[0] : !!e;
|
|
13675
13763
|
}
|
|
13676
13764
|
const y0 = {
|
|
13677
|
-
mixins: [
|
|
13765
|
+
mixins: [ie],
|
|
13678
13766
|
components: {
|
|
13679
13767
|
UxCheckbox: Ll
|
|
13680
13768
|
},
|
|
@@ -13759,7 +13847,7 @@ const k0 = /* @__PURE__ */ C(y0, [["render", b0]]), x0 = {
|
|
|
13759
13847
|
type: [String, Array]
|
|
13760
13848
|
}
|
|
13761
13849
|
},
|
|
13762
|
-
mixins: [
|
|
13850
|
+
mixins: [ie],
|
|
13763
13851
|
methods: {
|
|
13764
13852
|
getNewDefaultEntry() {
|
|
13765
13853
|
return "";
|
|
@@ -13827,7 +13915,7 @@ var M0 = A0, D0 = 9007199254740991;
|
|
|
13827
13915
|
function I0(e) {
|
|
13828
13916
|
return typeof e == "number" && e > -1 && e % 1 == 0 && e <= D0;
|
|
13829
13917
|
}
|
|
13830
|
-
var
|
|
13918
|
+
var ho = I0, F0 = Ol, $0 = ho;
|
|
13831
13919
|
function N0(e) {
|
|
13832
13920
|
return e != null && $0(e.length) && !F0(e);
|
|
13833
13921
|
}
|
|
@@ -13836,7 +13924,7 @@ function U0(e, t) {
|
|
|
13836
13924
|
var n = typeof e;
|
|
13837
13925
|
return t = t ?? L0, !!t && (n == "number" || n != "symbol" && P0.test(e)) && e > -1 && e % 1 == 0 && e < t;
|
|
13838
13926
|
}
|
|
13839
|
-
var
|
|
13927
|
+
var po = U0, j0 = Cl, R0 = Gr, B0 = po, z0 = In;
|
|
13840
13928
|
function H0(e, t, n) {
|
|
13841
13929
|
if (!z0(n))
|
|
13842
13930
|
return !1;
|
|
@@ -13853,20 +13941,20 @@ function K0(e) {
|
|
|
13853
13941
|
}
|
|
13854
13942
|
return e === e ? e : 0;
|
|
13855
13943
|
}
|
|
13856
|
-
var
|
|
13944
|
+
var yo = K0, Y0 = M0, Z0 = q0, ar = yo;
|
|
13857
13945
|
function J0(e) {
|
|
13858
13946
|
return function(t, n, r) {
|
|
13859
13947
|
return r && typeof r != "number" && Z0(t, n, r) && (n = r = void 0), t = ar(t), n === void 0 ? (n = t, t = 0) : n = ar(n), r = r === void 0 ? t < n ? 1 : -1 : ar(r), Y0(t, n, r, e);
|
|
13860
13948
|
};
|
|
13861
13949
|
}
|
|
13862
|
-
var X0 = J0, Q0 = X0, ek = Q0(),
|
|
13950
|
+
var X0 = J0, Q0 = X0, ek = Q0(), _o = ek;
|
|
13863
13951
|
function tk(e) {
|
|
13864
13952
|
return String(e).length < 2 && (e = `0${e}`), e;
|
|
13865
13953
|
}
|
|
13866
13954
|
const {
|
|
13867
13955
|
lookup: nk,
|
|
13868
13956
|
options: ik
|
|
13869
|
-
} = [...
|
|
13957
|
+
} = [..._o(1, 13)].reduce(function(e, t) {
|
|
13870
13958
|
let n;
|
|
13871
13959
|
switch (t) {
|
|
13872
13960
|
case 1:
|
|
@@ -14133,7 +14221,7 @@ const rk = {
|
|
|
14133
14221
|
];
|
|
14134
14222
|
},
|
|
14135
14223
|
dayOptions() {
|
|
14136
|
-
return [...
|
|
14224
|
+
return [..._o(1, 32)].map(function(e) {
|
|
14137
14225
|
return {
|
|
14138
14226
|
title: e,
|
|
14139
14227
|
value: e
|
|
@@ -14198,7 +14286,7 @@ const rk = {
|
|
|
14198
14286
|
// }
|
|
14199
14287
|
// },
|
|
14200
14288
|
}
|
|
14201
|
-
}, sk = (e) => (
|
|
14289
|
+
}, sk = (e) => (qe("data-v-569dda27"), e = e(), We(), e), ak = { class: "date-section" }, lk = /* @__PURE__ */ sk(() => /* @__PURE__ */ x("div", { class: "date-section shrink" }, ":", -1)), ok = { class: "date-section" }, uk = { class: "date-section" }, dk = { class: "date-section" }, ck = { class: "date-section" }, fk = { class: "custom-select" }, mk = { class: "date-section" };
|
|
14202
14290
|
function hk(e, t, n, r, s, i) {
|
|
14203
14291
|
const a = y("ux-icon"), l = y("native-select"), u = y("flex-cell"), f = y("flex-row");
|
|
14204
14292
|
return o(), k(f, null, {
|
|
@@ -14364,7 +14452,7 @@ function hk(e, t, n, r, s, i) {
|
|
|
14364
14452
|
}
|
|
14365
14453
|
const pk = /* @__PURE__ */ C(rk, [["render", hk], ["__scopeId", "data-v-569dda27"]]);
|
|
14366
14454
|
const yk = {
|
|
14367
|
-
mixins: [
|
|
14455
|
+
mixins: [ie],
|
|
14368
14456
|
components: {
|
|
14369
14457
|
DateObject: pk
|
|
14370
14458
|
},
|
|
@@ -14557,6 +14645,14 @@ const wk = {
|
|
|
14557
14645
|
}
|
|
14558
14646
|
},
|
|
14559
14647
|
computed: {
|
|
14648
|
+
singleValueTransformer: {
|
|
14649
|
+
get() {
|
|
14650
|
+
return [this.model.value].filter(Boolean);
|
|
14651
|
+
},
|
|
14652
|
+
set(e) {
|
|
14653
|
+
this.model.value = e[0];
|
|
14654
|
+
}
|
|
14655
|
+
},
|
|
14560
14656
|
extraCriteria() {
|
|
14561
14657
|
return this.field && this.field.path && this.field.path.startsWith("join_") && this.field.path.endsWith(".total");
|
|
14562
14658
|
},
|
|
@@ -14659,15 +14755,18 @@ const wk = {
|
|
|
14659
14755
|
return this.comparators.hash;
|
|
14660
14756
|
},
|
|
14661
14757
|
comparatorOptions() {
|
|
14662
|
-
|
|
14758
|
+
const e = this;
|
|
14759
|
+
if (!e.fieldType)
|
|
14663
14760
|
return [];
|
|
14664
|
-
var
|
|
14761
|
+
var t = e.comparators.available[e.fieldType] || [], n = t.filter(function(r) {
|
|
14762
|
+
return r.restrictKey ? r.restrictKey.includes(e.model.key) : !0;
|
|
14763
|
+
}).map(function(r) {
|
|
14665
14764
|
return {
|
|
14666
|
-
title:
|
|
14667
|
-
value:
|
|
14765
|
+
title: r.title,
|
|
14766
|
+
value: r.operator
|
|
14668
14767
|
};
|
|
14669
14768
|
});
|
|
14670
|
-
return
|
|
14769
|
+
return n;
|
|
14671
14770
|
},
|
|
14672
14771
|
comparatorField() {
|
|
14673
14772
|
return {
|
|
@@ -14818,18 +14917,19 @@ const wk = {
|
|
|
14818
14917
|
}
|
|
14819
14918
|
},
|
|
14820
14919
|
components: {
|
|
14821
|
-
TextField:
|
|
14822
|
-
CurrencyField:
|
|
14823
|
-
DateField:
|
|
14920
|
+
TextField: fo,
|
|
14921
|
+
CurrencyField: co,
|
|
14922
|
+
DateField: mo,
|
|
14824
14923
|
NativeSelect: Ct,
|
|
14825
|
-
ContentSelect: oo
|
|
14924
|
+
ContentSelect: oo,
|
|
14925
|
+
ScopeSelect: uo
|
|
14826
14926
|
}
|
|
14827
|
-
}, Sk = (e) => (
|
|
14927
|
+
}, Sk = (e) => (qe("data-v-13dce876"), e = e(), We(), e), Tk = {
|
|
14828
14928
|
key: 0,
|
|
14829
14929
|
class: "filter-condition"
|
|
14830
14930
|
}, Ok = { key: 0 }, Ck = { key: 1 }, Vk = { key: 2 }, Ek = { key: 3 }, Ak = { key: 4 }, Mk = { key: 5 }, Dk = { key: 6 }, Ik = { key: 7 }, Fk = { key: 8 }, $k = { key: 9 }, Nk = { key: 10 }, Lk = /* @__PURE__ */ Sk(() => /* @__PURE__ */ x("label", null, "Where:", -1));
|
|
14831
14931
|
function Pk(e, t, n, r, s, i) {
|
|
14832
|
-
const a = y("native-select"), l = y("flex-cell"), u = y("text-field"), f = y("currency-field"), c = y("flex-row"), p = y("date-field"), g = y("
|
|
14932
|
+
const a = y("native-select"), l = y("flex-cell"), u = y("text-field"), f = y("currency-field"), c = y("flex-row"), p = y("date-field"), g = y("scope-select"), b = y("content-select"), w = y("ux-switch"), O = y("ux-icon"), j = y("ux-button"), H = y("filter-condition", !0);
|
|
14833
14933
|
return s.comparators ? (o(), d("div", Tk, [
|
|
14834
14934
|
m(c, {
|
|
14835
14935
|
gap: "",
|
|
@@ -14841,7 +14941,7 @@ function Pk(e, t, n, r, s, i) {
|
|
|
14841
14941
|
m(a, {
|
|
14842
14942
|
title: "Select field",
|
|
14843
14943
|
modelValue: s.model.key,
|
|
14844
|
-
"onUpdate:modelValue": t[0] || (t[0] = (
|
|
14944
|
+
"onUpdate:modelValue": t[0] || (t[0] = (D) => s.model.key = D),
|
|
14845
14945
|
field: i.keyField
|
|
14846
14946
|
}, null, 8, ["modelValue", "field"])
|
|
14847
14947
|
]),
|
|
@@ -14852,7 +14952,7 @@ function Pk(e, t, n, r, s, i) {
|
|
|
14852
14952
|
m(a, {
|
|
14853
14953
|
title: "Select comparator",
|
|
14854
14954
|
modelValue: s.model.comparator,
|
|
14855
|
-
"onUpdate:modelValue": t[1] || (t[1] = (
|
|
14955
|
+
"onUpdate:modelValue": t[1] || (t[1] = (D) => s.model.comparator = D),
|
|
14856
14956
|
field: i.comparatorField
|
|
14857
14957
|
}, null, 8, ["modelValue", "field"])
|
|
14858
14958
|
]),
|
|
@@ -14864,13 +14964,13 @@ function Pk(e, t, n, r, s, i) {
|
|
|
14864
14964
|
i.showSelectOptions ? (o(), k(a, {
|
|
14865
14965
|
key: 0,
|
|
14866
14966
|
modelValue: s.model.values,
|
|
14867
|
-
"onUpdate:modelValue": t[2] || (t[2] = (
|
|
14967
|
+
"onUpdate:modelValue": t[2] || (t[2] = (D) => s.model.values = D),
|
|
14868
14968
|
field: i.multiOptionsField
|
|
14869
14969
|
}, null, 8, ["modelValue", "field"])) : (o(), k(u, {
|
|
14870
14970
|
key: 1,
|
|
14871
14971
|
field: i.arrayField,
|
|
14872
14972
|
modelValue: s.model.values,
|
|
14873
|
-
"onUpdate:modelValue": t[3] || (t[3] = (
|
|
14973
|
+
"onUpdate:modelValue": t[3] || (t[3] = (D) => s.model.values = D)
|
|
14874
14974
|
}, null, 8, ["field", "modelValue"]))
|
|
14875
14975
|
])) : _("", !0),
|
|
14876
14976
|
i.inputType == "range" ? (o(), d("div", Ck, [
|
|
@@ -14878,25 +14978,25 @@ function Pk(e, t, n, r, s, i) {
|
|
|
14878
14978
|
m(f, {
|
|
14879
14979
|
field: i.normalField,
|
|
14880
14980
|
modelValue: s.model.value,
|
|
14881
|
-
"onUpdate:modelValue": t[4] || (t[4] = (
|
|
14981
|
+
"onUpdate:modelValue": t[4] || (t[4] = (D) => s.model.value = D)
|
|
14882
14982
|
}, null, 8, ["field", "modelValue"]),
|
|
14883
14983
|
T(" And "),
|
|
14884
14984
|
m(f, {
|
|
14885
14985
|
field: i.normalField,
|
|
14886
14986
|
modelValue: s.model.value2,
|
|
14887
|
-
"onUpdate:modelValue": t[5] || (t[5] = (
|
|
14987
|
+
"onUpdate:modelValue": t[5] || (t[5] = (D) => s.model.value2 = D)
|
|
14888
14988
|
}, null, 8, ["field", "modelValue"])
|
|
14889
14989
|
], 64)) : (o(), d(S, { key: 1 }, [
|
|
14890
14990
|
m(u, {
|
|
14891
14991
|
field: i.normalField,
|
|
14892
14992
|
modelValue: s.model.value,
|
|
14893
|
-
"onUpdate:modelValue": t[6] || (t[6] = (
|
|
14993
|
+
"onUpdate:modelValue": t[6] || (t[6] = (D) => s.model.value = D)
|
|
14894
14994
|
}, null, 8, ["field", "modelValue"]),
|
|
14895
14995
|
T(" And "),
|
|
14896
14996
|
m(u, {
|
|
14897
14997
|
field: i.normalField,
|
|
14898
14998
|
modelValue: s.model.value2,
|
|
14899
|
-
"onUpdate:modelValue": t[7] || (t[7] = (
|
|
14999
|
+
"onUpdate:modelValue": t[7] || (t[7] = (D) => s.model.value2 = D)
|
|
14900
15000
|
}, null, 8, ["field", "modelValue"])
|
|
14901
15001
|
], 64))
|
|
14902
15002
|
])) : _("", !0),
|
|
@@ -14908,7 +15008,7 @@ function Pk(e, t, n, r, s, i) {
|
|
|
14908
15008
|
m(u, {
|
|
14909
15009
|
field: i.relativeNumberField,
|
|
14910
15010
|
modelValue: s.model.value,
|
|
14911
|
-
"onUpdate:modelValue": t[8] || (t[8] = (
|
|
15011
|
+
"onUpdate:modelValue": t[8] || (t[8] = (D) => s.model.value = D)
|
|
14912
15012
|
}, null, 8, ["field", "modelValue"])
|
|
14913
15013
|
]),
|
|
14914
15014
|
_: 1
|
|
@@ -14917,7 +15017,7 @@ function Pk(e, t, n, r, s, i) {
|
|
|
14917
15017
|
default: h(() => [
|
|
14918
15018
|
m(a, {
|
|
14919
15019
|
modelValue: s.model.value2,
|
|
14920
|
-
"onUpdate:modelValue": t[9] || (t[9] = (
|
|
15020
|
+
"onUpdate:modelValue": t[9] || (t[9] = (D) => s.model.value2 = D),
|
|
14921
15021
|
field: i.relativePeriodField
|
|
14922
15022
|
}, null, 8, ["modelValue", "field"])
|
|
14923
15023
|
]),
|
|
@@ -14931,35 +15031,46 @@ function Pk(e, t, n, r, s, i) {
|
|
|
14931
15031
|
m(p, {
|
|
14932
15032
|
field: i.dateField,
|
|
14933
15033
|
modelValue: s.model.value,
|
|
14934
|
-
"onUpdate:modelValue": t[10] || (t[10] = (
|
|
15034
|
+
"onUpdate:modelValue": t[10] || (t[10] = (D) => s.model.value = D)
|
|
14935
15035
|
}, null, 8, ["field", "modelValue"]),
|
|
14936
15036
|
T(" And "),
|
|
14937
15037
|
m(p, {
|
|
14938
15038
|
field: i.dateField,
|
|
14939
15039
|
modelValue: s.model.value2,
|
|
14940
|
-
"onUpdate:modelValue": t[11] || (t[11] = (
|
|
15040
|
+
"onUpdate:modelValue": t[11] || (t[11] = (D) => s.model.value2 = D)
|
|
14941
15041
|
}, null, 8, ["field", "modelValue"])
|
|
14942
15042
|
])) : _("", !0),
|
|
14943
15043
|
i.inputType == "date" ? (o(), d("div", Ak, [
|
|
14944
15044
|
m(p, {
|
|
14945
15045
|
field: i.dateField,
|
|
14946
15046
|
modelValue: s.model.value,
|
|
14947
|
-
"onUpdate:modelValue": t[12] || (t[12] = (
|
|
15047
|
+
"onUpdate:modelValue": t[12] || (t[12] = (D) => s.model.value = D)
|
|
14948
15048
|
}, null, 8, ["field", "modelValue"])
|
|
14949
15049
|
])) : _("", !0),
|
|
14950
15050
|
i.inputType == "reference" ? (o(), d("div", Mk, [
|
|
14951
|
-
|
|
15051
|
+
s.model.key === "meta.scopes" ? (o(), k(g, {
|
|
15052
|
+
key: 0,
|
|
15053
|
+
maximum: 1,
|
|
15054
|
+
modelValue: i.singleValueTransformer,
|
|
15055
|
+
"onUpdate:modelValue": t[13] || (t[13] = (D) => i.singleValueTransformer = D)
|
|
15056
|
+
}, null, 8, ["modelValue"])) : (o(), k(b, {
|
|
15057
|
+
key: 1,
|
|
14952
15058
|
field: i.singleReferenceField,
|
|
14953
15059
|
modelValue: s.model.value,
|
|
14954
|
-
"onUpdate:modelValue": t[
|
|
14955
|
-
}, null, 8, ["field", "modelValue"])
|
|
15060
|
+
"onUpdate:modelValue": t[14] || (t[14] = (D) => s.model.value = D)
|
|
15061
|
+
}, null, 8, ["field", "modelValue"]))
|
|
14956
15062
|
])) : _("", !0),
|
|
14957
15063
|
i.inputType == "multireference" ? (o(), d("div", Dk, [
|
|
14958
|
-
|
|
15064
|
+
s.model.key === "meta.scopes" ? (o(), k(g, {
|
|
15065
|
+
key: 0,
|
|
15066
|
+
modelValue: s.model.values,
|
|
15067
|
+
"onUpdate:modelValue": t[15] || (t[15] = (D) => s.model.values = D)
|
|
15068
|
+
}, null, 8, ["modelValue"])) : (o(), k(b, {
|
|
15069
|
+
key: 1,
|
|
14959
15070
|
field: i.multiReferenceField,
|
|
14960
15071
|
modelValue: s.model.values,
|
|
14961
|
-
"onUpdate:modelValue": t[
|
|
14962
|
-
}, null, 8, ["field", "modelValue"])
|
|
15072
|
+
"onUpdate:modelValue": t[16] || (t[16] = (D) => s.model.values = D)
|
|
15073
|
+
}, null, 8, ["field", "modelValue"]))
|
|
14963
15074
|
])) : _("", !0),
|
|
14964
15075
|
i.inputType == "boolean" ? (o(), d("div", Ik, [
|
|
14965
15076
|
m(c, {
|
|
@@ -14969,8 +15080,8 @@ function Pk(e, t, n, r, s, i) {
|
|
|
14969
15080
|
default: h(() => [
|
|
14970
15081
|
m(l, { shrink: "" }, {
|
|
14971
15082
|
default: h(() => [
|
|
14972
|
-
m(
|
|
14973
|
-
onClick: t[
|
|
15083
|
+
m(w, {
|
|
15084
|
+
onClick: t[17] || (t[17] = (D) => s.model.value = !s.model.value),
|
|
14974
15085
|
value: s.model.value
|
|
14975
15086
|
}, null, 8, ["value"])
|
|
14976
15087
|
]),
|
|
@@ -14992,25 +15103,25 @@ function Pk(e, t, n, r, s, i) {
|
|
|
14992
15103
|
key: 0,
|
|
14993
15104
|
field: i.normalField,
|
|
14994
15105
|
modelValue: s.model.value,
|
|
14995
|
-
"onUpdate:modelValue": t[
|
|
15106
|
+
"onUpdate:modelValue": t[18] || (t[18] = (D) => s.model.value = D)
|
|
14996
15107
|
}, null, 8, ["field", "modelValue"])) : (o(), k(u, {
|
|
14997
15108
|
key: 1,
|
|
14998
15109
|
field: i.normalField,
|
|
14999
15110
|
modelValue: s.model.value,
|
|
15000
|
-
"onUpdate:modelValue": t[
|
|
15111
|
+
"onUpdate:modelValue": t[19] || (t[19] = (D) => s.model.value = D)
|
|
15001
15112
|
}, null, 8, ["field", "modelValue"]))
|
|
15002
15113
|
])) : _("", !0),
|
|
15003
15114
|
i.inputType == "normal" ? (o(), d("div", Nk, [
|
|
15004
15115
|
i.showSelectOptions ? (o(), k(a, {
|
|
15005
15116
|
key: 0,
|
|
15006
15117
|
modelValue: s.model.value,
|
|
15007
|
-
"onUpdate:modelValue": t[
|
|
15118
|
+
"onUpdate:modelValue": t[20] || (t[20] = (D) => s.model.value = D),
|
|
15008
15119
|
field: i.singleOptionsField
|
|
15009
15120
|
}, null, 8, ["modelValue", "field"])) : (o(), k(u, {
|
|
15010
15121
|
key: 1,
|
|
15011
15122
|
field: i.normalField,
|
|
15012
15123
|
modelValue: s.model.value,
|
|
15013
|
-
"onUpdate:modelValue": t[
|
|
15124
|
+
"onUpdate:modelValue": t[21] || (t[21] = (D) => s.model.value = D)
|
|
15014
15125
|
}, null, 8, ["field", "modelValue"]))
|
|
15015
15126
|
])) : _("", !0)
|
|
15016
15127
|
]),
|
|
@@ -15021,13 +15132,13 @@ function Pk(e, t, n, r, s, i) {
|
|
|
15021
15132
|
shrink: ""
|
|
15022
15133
|
}, {
|
|
15023
15134
|
default: h(() => [
|
|
15024
|
-
m(
|
|
15135
|
+
m(j, {
|
|
15025
15136
|
size: "sm",
|
|
15026
15137
|
icon: "",
|
|
15027
|
-
onClick: t[
|
|
15138
|
+
onClick: t[22] || (t[22] = (D) => e.$emit("remove"))
|
|
15028
15139
|
}, {
|
|
15029
15140
|
default: h(() => [
|
|
15030
|
-
m(
|
|
15141
|
+
m(O, { icon: "fa-times" })
|
|
15031
15142
|
]),
|
|
15032
15143
|
_: 1
|
|
15033
15144
|
})
|
|
@@ -15039,24 +15150,24 @@ function Pk(e, t, n, r, s, i) {
|
|
|
15039
15150
|
}),
|
|
15040
15151
|
i.extraCriteria ? (o(), d(S, { key: 0 }, [
|
|
15041
15152
|
Lk,
|
|
15042
|
-
(o(!0), d(S, null, F(s.model.conditions, (
|
|
15043
|
-
key:
|
|
15153
|
+
(o(!0), d(S, null, F(s.model.conditions, (D, ee) => (o(), d("div", {
|
|
15154
|
+
key: D._guid
|
|
15044
15155
|
}, [
|
|
15045
|
-
m(
|
|
15156
|
+
m(H, {
|
|
15046
15157
|
enableRemove: !0,
|
|
15047
15158
|
fields: s.criteriaFields,
|
|
15048
|
-
onRemove: (
|
|
15049
|
-
modelValue: s.model.conditions[
|
|
15050
|
-
"onUpdate:modelValue": (
|
|
15159
|
+
onRemove: (re) => i.removeCondition(ee),
|
|
15160
|
+
modelValue: s.model.conditions[ee],
|
|
15161
|
+
"onUpdate:modelValue": (re) => s.model.conditions[ee] = re
|
|
15051
15162
|
}, null, 8, ["fields", "onRemove", "modelValue", "onUpdate:modelValue"])
|
|
15052
15163
|
]))), 128)),
|
|
15053
|
-
m(
|
|
15164
|
+
m(j, {
|
|
15054
15165
|
size: "sm",
|
|
15055
15166
|
onClick: z(i.addCondition, ["stop", "prevent"])
|
|
15056
15167
|
}, {
|
|
15057
15168
|
default: h(() => [
|
|
15058
15169
|
T(" Add Criteria "),
|
|
15059
|
-
m(
|
|
15170
|
+
m(O, {
|
|
15060
15171
|
icon: "fa-plus",
|
|
15061
15172
|
right: ""
|
|
15062
15173
|
})
|
|
@@ -15066,7 +15177,7 @@ function Pk(e, t, n, r, s, i) {
|
|
|
15066
15177
|
], 64)) : _("", !0)
|
|
15067
15178
|
])) : _("", !0);
|
|
15068
15179
|
}
|
|
15069
|
-
const Uk = /* @__PURE__ */ C(wk, [["render", Pk], ["__scopeId", "data-v-
|
|
15180
|
+
const Uk = /* @__PURE__ */ C(wk, [["render", Pk], ["__scopeId", "data-v-13dce876"]]);
|
|
15070
15181
|
function jk(e) {
|
|
15071
15182
|
let t = [];
|
|
15072
15183
|
if (t.push({
|
|
@@ -15383,7 +15494,7 @@ const qk = {
|
|
|
15383
15494
|
FilterCondition: Uk,
|
|
15384
15495
|
NativeSelect: Ct
|
|
15385
15496
|
}
|
|
15386
|
-
}, Wk = (e) => (
|
|
15497
|
+
}, Wk = (e) => (qe("data-v-f372c803"), e = e(), We(), e), Gk = {
|
|
15387
15498
|
key: 0,
|
|
15388
15499
|
class: "filter-rule"
|
|
15389
15500
|
}, Kk = { class: "top" }, Yk = { class: "summary" }, Zk = /* @__PURE__ */ Wk(() => /* @__PURE__ */ x("span", { class: "line" }, null, -1)), Jk = { class: "operator" };
|
|
@@ -15627,11 +15738,11 @@ function rx(e, t, n, r, s, i) {
|
|
|
15627
15738
|
_: 1
|
|
15628
15739
|
});
|
|
15629
15740
|
}
|
|
15630
|
-
const
|
|
15741
|
+
const go = /* @__PURE__ */ C(ex, [["render", rx], ["__scopeId", "data-v-fcb41aed"]]);
|
|
15631
15742
|
const sx = {
|
|
15632
|
-
mixins: [
|
|
15743
|
+
mixins: [ie],
|
|
15633
15744
|
components: {
|
|
15634
|
-
FilterBuilder:
|
|
15745
|
+
FilterBuilder: go
|
|
15635
15746
|
},
|
|
15636
15747
|
props: {
|
|
15637
15748
|
modelValue: {
|
|
@@ -15755,7 +15866,7 @@ const mx = {
|
|
|
15755
15866
|
// type: [Object, Array],
|
|
15756
15867
|
}
|
|
15757
15868
|
},
|
|
15758
|
-
mixins: [
|
|
15869
|
+
mixins: [ie],
|
|
15759
15870
|
async created() {
|
|
15760
15871
|
this.model = this.model;
|
|
15761
15872
|
},
|
|
@@ -15914,7 +16025,7 @@ function kx(e, t, n, r, s, i) {
|
|
|
15914
16025
|
])) : _("", !0),
|
|
15915
16026
|
e.showDescription ? (o(), d("div", yx, v(e.description), 1)) : _("", !0),
|
|
15916
16027
|
e.singleValue ? (o(), d("div", _x, [
|
|
15917
|
-
|
|
16028
|
+
q(e.$slots, "default", {}, () => [
|
|
15918
16029
|
m(a, { tag: "div" }, {
|
|
15919
16030
|
default: h(() => [
|
|
15920
16031
|
T(v(i.summary), 1)
|
|
@@ -15923,7 +16034,7 @@ function kx(e, t, n, r, s, i) {
|
|
|
15923
16034
|
})
|
|
15924
16035
|
], !0)
|
|
15925
16036
|
])) : _("", !0),
|
|
15926
|
-
|
|
16037
|
+
Y(x("select", {
|
|
15927
16038
|
onFocus: t[0] || (t[0] = (...l) => e.touch && e.touch(...l)),
|
|
15928
16039
|
multiple: e.multiValue,
|
|
15929
16040
|
"onUpdate:modelValue": t[1] || (t[1] = (l) => e.model = l)
|
|
@@ -16004,7 +16115,7 @@ const wx = {
|
|
|
16004
16115
|
};
|
|
16005
16116
|
function Cx(e, t, n, r, s, i) {
|
|
16006
16117
|
return o(), d("div", Sx, [
|
|
16007
|
-
|
|
16118
|
+
Y(x("input", {
|
|
16008
16119
|
ref: "range",
|
|
16009
16120
|
min: n.min,
|
|
16010
16121
|
step: n.step,
|
|
@@ -16013,7 +16124,7 @@ function Cx(e, t, n, r, s, i) {
|
|
|
16013
16124
|
type: "range",
|
|
16014
16125
|
class: "ux-range-slider"
|
|
16015
16126
|
}, null, 8, Tx), [
|
|
16016
|
-
[
|
|
16127
|
+
[ae, s.model]
|
|
16017
16128
|
]),
|
|
16018
16129
|
x("output", Ox, null, 512)
|
|
16019
16130
|
]);
|
|
@@ -16045,7 +16156,7 @@ const Ex = {
|
|
|
16045
16156
|
return parseFloat(this.field.maxValue) || 100;
|
|
16046
16157
|
}
|
|
16047
16158
|
},
|
|
16048
|
-
mixins: [
|
|
16159
|
+
mixins: [ie],
|
|
16049
16160
|
methods: {
|
|
16050
16161
|
getNewDefaultEntry() {
|
|
16051
16162
|
return "";
|
|
@@ -16181,7 +16292,7 @@ const Px = {
|
|
|
16181
16292
|
type: String
|
|
16182
16293
|
}
|
|
16183
16294
|
},
|
|
16184
|
-
mixins: [
|
|
16295
|
+
mixins: [ie],
|
|
16185
16296
|
methods: {
|
|
16186
16297
|
cleanInputValue(e) {
|
|
16187
16298
|
return e;
|
|
@@ -16220,7 +16331,7 @@ function qx(e, t, n, r, s, i) {
|
|
|
16220
16331
|
default: h(() => [
|
|
16221
16332
|
m(a, { shrink: "" }, {
|
|
16222
16333
|
default: h(() => [
|
|
16223
|
-
|
|
16334
|
+
Y(x("input", {
|
|
16224
16335
|
type: "color",
|
|
16225
16336
|
class: "ux-field-focus ux-color-input ux-color-input-multiple",
|
|
16226
16337
|
onFocus: t[0] || (t[0] = (...g) => e.touch && e.touch(...g)),
|
|
@@ -16228,14 +16339,14 @@ function qx(e, t, n, r, s, i) {
|
|
|
16228
16339
|
ref: "input",
|
|
16229
16340
|
"onUpdate:modelValue": (g) => e.model[p] = g
|
|
16230
16341
|
}, null, 40, zx), [
|
|
16231
|
-
[
|
|
16342
|
+
[ae, e.model[p]]
|
|
16232
16343
|
])
|
|
16233
16344
|
]),
|
|
16234
16345
|
_: 2
|
|
16235
16346
|
}, 1024),
|
|
16236
16347
|
m(a, null, {
|
|
16237
16348
|
default: h(() => [
|
|
16238
|
-
|
|
16349
|
+
Y(x("input", {
|
|
16239
16350
|
type: "text",
|
|
16240
16351
|
class: "ux-field-focus ux-text-input-multiple",
|
|
16241
16352
|
onFocus: t[1] || (t[1] = (...g) => e.touch && e.touch(...g)),
|
|
@@ -16243,7 +16354,7 @@ function qx(e, t, n, r, s, i) {
|
|
|
16243
16354
|
ref: "input",
|
|
16244
16355
|
"onUpdate:modelValue": (g) => e.model[p] = g
|
|
16245
16356
|
}, null, 40, Hx), [
|
|
16246
|
-
[
|
|
16357
|
+
[ae, e.model[p]]
|
|
16247
16358
|
])
|
|
16248
16359
|
]),
|
|
16249
16360
|
_: 2
|
|
@@ -16287,26 +16398,26 @@ function qx(e, t, n, r, s, i) {
|
|
|
16287
16398
|
default: h(() => [
|
|
16288
16399
|
m(a, { shrink: "" }, {
|
|
16289
16400
|
default: h(() => [
|
|
16290
|
-
|
|
16401
|
+
Y(x("input", {
|
|
16291
16402
|
type: "color",
|
|
16292
16403
|
class: "ux-field-focus ux-color-input ux-color-input-single",
|
|
16293
16404
|
onFocus: t[3] || (t[3] = (...c) => e.touch && e.touch(...c)),
|
|
16294
16405
|
"onUpdate:modelValue": t[4] || (t[4] = (c) => e.model = c)
|
|
16295
16406
|
}, null, 544), [
|
|
16296
|
-
[
|
|
16407
|
+
[ae, e.model]
|
|
16297
16408
|
])
|
|
16298
16409
|
]),
|
|
16299
16410
|
_: 1
|
|
16300
16411
|
}),
|
|
16301
16412
|
m(a, null, {
|
|
16302
16413
|
default: h(() => [
|
|
16303
|
-
|
|
16414
|
+
Y(x("input", {
|
|
16304
16415
|
type: "text",
|
|
16305
16416
|
class: "ux-field-focus ux-text-input-single",
|
|
16306
16417
|
onFocus: t[5] || (t[5] = (...c) => e.touch && e.touch(...c)),
|
|
16307
16418
|
"onUpdate:modelValue": t[6] || (t[6] = (c) => e.model = c)
|
|
16308
16419
|
}, null, 544), [
|
|
16309
|
-
[
|
|
16420
|
+
[ae, e.model]
|
|
16310
16421
|
])
|
|
16311
16422
|
]),
|
|
16312
16423
|
_: 1
|
|
@@ -16321,7 +16432,7 @@ function aa(e) {
|
|
|
16321
16432
|
return Array.isArray(e) ? !!e[0] : !!e;
|
|
16322
16433
|
}
|
|
16323
16434
|
const Gx = {
|
|
16324
|
-
mixins: [
|
|
16435
|
+
mixins: [ie],
|
|
16325
16436
|
components: {
|
|
16326
16437
|
UxSwitch: Pl
|
|
16327
16438
|
},
|
|
@@ -16464,7 +16575,7 @@ function tw(e, t, n, r, s, i) {
|
|
|
16464
16575
|
class: "file-drop-ux",
|
|
16465
16576
|
onClick: t[1] || (t[1] = z((...l) => i.clicked && i.clicked(...l), ["stop", "prevent"]))
|
|
16466
16577
|
}, [
|
|
16467
|
-
|
|
16578
|
+
q(e.$slots, "default", {}, () => [
|
|
16468
16579
|
m(a, null, {
|
|
16469
16580
|
default: h(() => [
|
|
16470
16581
|
T("Select Files")
|
|
@@ -16477,7 +16588,7 @@ function tw(e, t, n, r, s, i) {
|
|
|
16477
16588
|
}
|
|
16478
16589
|
const nw = /* @__PURE__ */ C(Qx, [["render", tw], ["__scopeId", "data-v-0c381e95"]]);
|
|
16479
16590
|
const iw = {
|
|
16480
|
-
mixins: [
|
|
16591
|
+
mixins: [ie],
|
|
16481
16592
|
components: {
|
|
16482
16593
|
FileDrop: nw
|
|
16483
16594
|
},
|
|
@@ -16664,7 +16775,7 @@ function uw(e, t, n, r, s, i) {
|
|
|
16664
16775
|
}
|
|
16665
16776
|
const dw = /* @__PURE__ */ C(iw, [["render", uw], ["__scopeId", "data-v-d29a9855"]]);
|
|
16666
16777
|
const cw = {
|
|
16667
|
-
mixins: [
|
|
16778
|
+
mixins: [ie],
|
|
16668
16779
|
//TODO check whether we should move draggable into the input mixin
|
|
16669
16780
|
components: { draggable: lo },
|
|
16670
16781
|
props: {
|
|
@@ -16823,7 +16934,7 @@ function kw(e, t, n, r, s, i) {
|
|
|
16823
16934
|
m(u, {
|
|
16824
16935
|
size: "xs",
|
|
16825
16936
|
tag: "a",
|
|
16826
|
-
onClick: (
|
|
16937
|
+
onClick: (H) => O.collapsed = !O.collapsed
|
|
16827
16938
|
}, {
|
|
16828
16939
|
default: h(() => [
|
|
16829
16940
|
T(v(O.collapsed ? "More" : "Less") + " ", 1),
|
|
@@ -16846,7 +16957,7 @@ function kw(e, t, n, r, s, i) {
|
|
|
16846
16957
|
key: 0,
|
|
16847
16958
|
icon: "",
|
|
16848
16959
|
tag: "a",
|
|
16849
|
-
onClick: (
|
|
16960
|
+
onClick: (H) => e.remove(O)
|
|
16850
16961
|
}, {
|
|
16851
16962
|
default: h(() => [
|
|
16852
16963
|
m(a, { icon: "fa-times" })
|
|
@@ -16862,8 +16973,8 @@ function kw(e, t, n, r, s, i) {
|
|
|
16862
16973
|
]),
|
|
16863
16974
|
_: 2
|
|
16864
16975
|
}, 1024),
|
|
16865
|
-
|
|
16866
|
-
onKeydown: t[0] || (t[0] = ge((
|
|
16976
|
+
Y(m(g, {
|
|
16977
|
+
onKeydown: t[0] || (t[0] = ge((H) => i.enterPress(H), ["enter"]))
|
|
16867
16978
|
}, {
|
|
16868
16979
|
default: h(() => [
|
|
16869
16980
|
m(p, {
|
|
@@ -16875,7 +16986,7 @@ function kw(e, t, n, r, s, i) {
|
|
|
16875
16986
|
"onForm:state": i.stateChange,
|
|
16876
16987
|
parentModel: e.parentModel,
|
|
16877
16988
|
modelValue: e.model[j],
|
|
16878
|
-
"onUpdate:modelValue": (
|
|
16989
|
+
"onUpdate:modelValue": (H) => e.model[j] = H,
|
|
16879
16990
|
flex: i.sameLine,
|
|
16880
16991
|
fields: e.field.fields
|
|
16881
16992
|
}, null, 8, ["trail", "includeOfficeOnly", "submission", "ignoreDefaults", "onForm:state", "parentModel", "modelValue", "onUpdate:modelValue", "flex", "fields"])
|
|
@@ -16926,7 +17037,7 @@ function kw(e, t, n, r, s, i) {
|
|
|
16926
17037
|
m(u, {
|
|
16927
17038
|
size: "xs",
|
|
16928
17039
|
tag: "a",
|
|
16929
|
-
onClick: (
|
|
17040
|
+
onClick: (H) => O.collapsed = !O.collapsed
|
|
16930
17041
|
}, {
|
|
16931
17042
|
default: h(() => [
|
|
16932
17043
|
T(v(O.collapsed ? "More" : "Less") + " ", 1),
|
|
@@ -16949,7 +17060,7 @@ function kw(e, t, n, r, s, i) {
|
|
|
16949
17060
|
key: 0,
|
|
16950
17061
|
icon: "",
|
|
16951
17062
|
tag: "a",
|
|
16952
|
-
onClick: (
|
|
17063
|
+
onClick: (H) => e.remove(O)
|
|
16953
17064
|
}, {
|
|
16954
17065
|
default: h(() => [
|
|
16955
17066
|
m(a, { icon: "fa-times" })
|
|
@@ -16965,8 +17076,8 @@ function kw(e, t, n, r, s, i) {
|
|
|
16965
17076
|
]),
|
|
16966
17077
|
_: 2
|
|
16967
17078
|
}, 1024),
|
|
16968
|
-
|
|
16969
|
-
onKeydown: t[4] || (t[4] = ge((
|
|
17079
|
+
Y(m(g, {
|
|
17080
|
+
onKeydown: t[4] || (t[4] = ge((H) => i.enterPress(H), ["enter"]))
|
|
16970
17081
|
}, {
|
|
16971
17082
|
default: h(() => [
|
|
16972
17083
|
m(p, {
|
|
@@ -16979,7 +17090,7 @@ function kw(e, t, n, r, s, i) {
|
|
|
16979
17090
|
"onForm:state": i.stateChange,
|
|
16980
17091
|
parentModel: e.parentModel,
|
|
16981
17092
|
modelValue: e.model[j],
|
|
16982
|
-
"onUpdate:modelValue": (
|
|
17093
|
+
"onUpdate:modelValue": (H) => e.model[j] = H,
|
|
16983
17094
|
flex: i.sameLine,
|
|
16984
17095
|
fields: e.field.fields
|
|
16985
17096
|
}, null, 8, ["trail", "includeOfficeOnly", "submission", "ignoreDefaults", "onForm:state", "parentModel", "modelValue", "onUpdate:modelValue", "flex", "fields"])
|
|
@@ -17161,7 +17272,7 @@ const ww = {
|
|
|
17161
17272
|
}
|
|
17162
17273
|
};
|
|
17163
17274
|
function Sw(e, t, n, r, s, i) {
|
|
17164
|
-
return
|
|
17275
|
+
return q(e.$slots, "default", { plainValue: i.plainValue }, () => [
|
|
17165
17276
|
x("pre", null, v(n.option), 1)
|
|
17166
17277
|
]);
|
|
17167
17278
|
}
|
|
@@ -17175,7 +17286,7 @@ const Ow = {
|
|
|
17175
17286
|
// type: [Object, Array],
|
|
17176
17287
|
}
|
|
17177
17288
|
},
|
|
17178
|
-
mixins: [
|
|
17289
|
+
mixins: [ie],
|
|
17179
17290
|
created() {
|
|
17180
17291
|
this.model = this.model;
|
|
17181
17292
|
},
|
|
@@ -17289,7 +17400,7 @@ const Iw = {
|
|
|
17289
17400
|
type: Object
|
|
17290
17401
|
}
|
|
17291
17402
|
},
|
|
17292
|
-
mixins: [
|
|
17403
|
+
mixins: [ie],
|
|
17293
17404
|
computed: {},
|
|
17294
17405
|
methods: {
|
|
17295
17406
|
getNewDefaultEntry() {
|
|
@@ -17371,7 +17482,7 @@ const Rw = {
|
|
|
17371
17482
|
type: [String, Array]
|
|
17372
17483
|
}
|
|
17373
17484
|
},
|
|
17374
|
-
mixins: [
|
|
17485
|
+
mixins: [ie],
|
|
17375
17486
|
computed: {
|
|
17376
17487
|
lazy() {
|
|
17377
17488
|
switch (this.type) {
|
|
@@ -17430,7 +17541,7 @@ const Rw = {
|
|
|
17430
17541
|
};
|
|
17431
17542
|
}
|
|
17432
17543
|
}
|
|
17433
|
-
}, $i = (e) => (
|
|
17544
|
+
}, $i = (e) => (qe("data-v-c8feb6c2"), e = e(), We(), e), Bw = {
|
|
17434
17545
|
key: 0,
|
|
17435
17546
|
class: "ux-field-title"
|
|
17436
17547
|
}, zw = {
|
|
@@ -17458,7 +17569,7 @@ function rS(e, t, n, r, s, i) {
|
|
|
17458
17569
|
default: h(() => [
|
|
17459
17570
|
x("div", Ww, [
|
|
17460
17571
|
Gw,
|
|
17461
|
-
i.lazy ?
|
|
17572
|
+
i.lazy ? Y((o(), d("input", {
|
|
17462
17573
|
key: 0,
|
|
17463
17574
|
class: "ux-field-focus ux-text-input-multiple",
|
|
17464
17575
|
placeholder: "Label",
|
|
@@ -17471,13 +17582,13 @@ function rS(e, t, n, r, s, i) {
|
|
|
17471
17582
|
"onUpdate:modelValue": (g) => e.model[p].title = g
|
|
17472
17583
|
}, null, 40, Kw)), [
|
|
17473
17584
|
[
|
|
17474
|
-
|
|
17585
|
+
ae,
|
|
17475
17586
|
e.model[p].title,
|
|
17476
17587
|
void 0,
|
|
17477
17588
|
{ lazy: !0 }
|
|
17478
17589
|
]
|
|
17479
17590
|
]) : _("", !0),
|
|
17480
|
-
i.lazy ? _("", !0) :
|
|
17591
|
+
i.lazy ? _("", !0) : Y((o(), d("input", {
|
|
17481
17592
|
key: 1,
|
|
17482
17593
|
class: "ux-field-focus ux-text-input-multiple",
|
|
17483
17594
|
placeholder: "Label",
|
|
@@ -17489,7 +17600,7 @@ function rS(e, t, n, r, s, i) {
|
|
|
17489
17600
|
"on:update:modelValue": (g) => i.entryTitleChanged(p),
|
|
17490
17601
|
"onUpdate:modelValue": (g) => e.model[p].title = g
|
|
17491
17602
|
}, null, 40, Yw)), [
|
|
17492
|
-
[
|
|
17603
|
+
[ae, e.model[p].title]
|
|
17493
17604
|
])
|
|
17494
17605
|
])
|
|
17495
17606
|
]),
|
|
@@ -17499,7 +17610,7 @@ function rS(e, t, n, r, s, i) {
|
|
|
17499
17610
|
default: h(() => [
|
|
17500
17611
|
x("div", Zw, [
|
|
17501
17612
|
Jw,
|
|
17502
|
-
i.lazy ?
|
|
17613
|
+
i.lazy ? Y((o(), d("input", {
|
|
17503
17614
|
key: 0,
|
|
17504
17615
|
class: "ux-field-focus ux-text-input-multiple",
|
|
17505
17616
|
placeholder: "Value",
|
|
@@ -17510,13 +17621,13 @@ function rS(e, t, n, r, s, i) {
|
|
|
17510
17621
|
"onUpdate:modelValue": (g) => e.model[p].value = g
|
|
17511
17622
|
}, null, 40, Xw)), [
|
|
17512
17623
|
[
|
|
17513
|
-
|
|
17624
|
+
ae,
|
|
17514
17625
|
e.model[p].value,
|
|
17515
17626
|
void 0,
|
|
17516
17627
|
{ lazy: !0 }
|
|
17517
17628
|
]
|
|
17518
17629
|
]) : _("", !0),
|
|
17519
|
-
i.lazy ? _("", !0) :
|
|
17630
|
+
i.lazy ? _("", !0) : Y((o(), d("input", {
|
|
17520
17631
|
key: 1,
|
|
17521
17632
|
class: "ux-field-focus ux-text-input-multiple",
|
|
17522
17633
|
placeholder: "Value",
|
|
@@ -17526,7 +17637,7 @@ function rS(e, t, n, r, s, i) {
|
|
|
17526
17637
|
onKeydown: t[5] || (t[5] = ge(z((g) => e.add(), ["stop", "prevent"]), ["enter"])),
|
|
17527
17638
|
"onUpdate:modelValue": (g) => e.model[p].value = g
|
|
17528
17639
|
}, null, 40, Qw)), [
|
|
17529
|
-
[
|
|
17640
|
+
[ae, e.model[p].value]
|
|
17530
17641
|
])
|
|
17531
17642
|
])
|
|
17532
17643
|
]),
|
|
@@ -17576,7 +17687,7 @@ function rS(e, t, n, r, s, i) {
|
|
|
17576
17687
|
default: h(() => [
|
|
17577
17688
|
x("div", eS, [
|
|
17578
17689
|
tS,
|
|
17579
|
-
i.lazy ?
|
|
17690
|
+
i.lazy ? Y((o(), d("input", {
|
|
17580
17691
|
key: 0,
|
|
17581
17692
|
class: "ux-field-focus ux-text-input-multiple",
|
|
17582
17693
|
placeholder: "Label",
|
|
@@ -17588,13 +17699,13 @@ function rS(e, t, n, r, s, i) {
|
|
|
17588
17699
|
"onUpdate:modelValue": t[11] || (t[11] = (c) => e.model.title = c)
|
|
17589
17700
|
}, null, 544)), [
|
|
17590
17701
|
[
|
|
17591
|
-
|
|
17702
|
+
ae,
|
|
17592
17703
|
e.model.title,
|
|
17593
17704
|
void 0,
|
|
17594
17705
|
{ lazy: !0 }
|
|
17595
17706
|
]
|
|
17596
17707
|
]) : _("", !0),
|
|
17597
|
-
i.lazy ? _("", !0) :
|
|
17708
|
+
i.lazy ? _("", !0) : Y((o(), d("input", {
|
|
17598
17709
|
key: 1,
|
|
17599
17710
|
class: "ux-field-focus ux-text-input-multiple",
|
|
17600
17711
|
placeholder: "Label",
|
|
@@ -17605,7 +17716,7 @@ function rS(e, t, n, r, s, i) {
|
|
|
17605
17716
|
"on:update:modelValue": t[15] || (t[15] = (...c) => i.entryTitleChanged && i.entryTitleChanged(...c)),
|
|
17606
17717
|
"onUpdate:modelValue": t[16] || (t[16] = (c) => e.model.title = c)
|
|
17607
17718
|
}, null, 544)), [
|
|
17608
|
-
[
|
|
17719
|
+
[ae, e.model.title]
|
|
17609
17720
|
])
|
|
17610
17721
|
])
|
|
17611
17722
|
]),
|
|
@@ -17615,7 +17726,7 @@ function rS(e, t, n, r, s, i) {
|
|
|
17615
17726
|
default: h(() => [
|
|
17616
17727
|
x("div", nS, [
|
|
17617
17728
|
iS,
|
|
17618
|
-
i.lazy ?
|
|
17729
|
+
i.lazy ? Y((o(), d("input", {
|
|
17619
17730
|
key: 0,
|
|
17620
17731
|
class: "ux-field-focus ux-text-input-multiple",
|
|
17621
17732
|
placeholder: "Value",
|
|
@@ -17625,13 +17736,13 @@ function rS(e, t, n, r, s, i) {
|
|
|
17625
17736
|
"onUpdate:modelValue": t[19] || (t[19] = (c) => e.model.value = c)
|
|
17626
17737
|
}, null, 544)), [
|
|
17627
17738
|
[
|
|
17628
|
-
|
|
17739
|
+
ae,
|
|
17629
17740
|
e.model.value,
|
|
17630
17741
|
void 0,
|
|
17631
17742
|
{ lazy: !0 }
|
|
17632
17743
|
]
|
|
17633
17744
|
]) : _("", !0),
|
|
17634
|
-
i.lazy ? _("", !0) :
|
|
17745
|
+
i.lazy ? _("", !0) : Y((o(), d("input", {
|
|
17635
17746
|
key: 1,
|
|
17636
17747
|
class: "ux-field-focus ux-text-input-multiple",
|
|
17637
17748
|
placeholder: "Value",
|
|
@@ -17640,7 +17751,7 @@ function rS(e, t, n, r, s, i) {
|
|
|
17640
17751
|
onKeydown: t[21] || (t[21] = ge(z((c) => e.add(), ["stop", "prevent"]), ["enter"])),
|
|
17641
17752
|
"onUpdate:modelValue": t[22] || (t[22] = (c) => e.model.value = c)
|
|
17642
17753
|
}, null, 544)), [
|
|
17643
|
-
[
|
|
17754
|
+
[ae, e.model.value]
|
|
17644
17755
|
])
|
|
17645
17756
|
])
|
|
17646
17757
|
]),
|
|
@@ -17835,7 +17946,7 @@ const cS = {
|
|
|
17835
17946
|
return this.field ? this.field.syntax : "json";
|
|
17836
17947
|
}
|
|
17837
17948
|
},
|
|
17838
|
-
mixins: [
|
|
17949
|
+
mixins: [ie],
|
|
17839
17950
|
methods: {
|
|
17840
17951
|
enterPress() {
|
|
17841
17952
|
},
|
|
@@ -17937,7 +18048,7 @@ const bS = {
|
|
|
17937
18048
|
type: [String, Array]
|
|
17938
18049
|
}
|
|
17939
18050
|
},
|
|
17940
|
-
mixins: [
|
|
18051
|
+
mixins: [ie],
|
|
17941
18052
|
methods: {
|
|
17942
18053
|
enterPress() {
|
|
17943
18054
|
},
|
|
@@ -18096,7 +18207,7 @@ const DS = {
|
|
|
18096
18207
|
// return this.field ? this.field.syntax : 'json';
|
|
18097
18208
|
// }
|
|
18098
18209
|
},
|
|
18099
|
-
mixins: [
|
|
18210
|
+
mixins: [ie],
|
|
18100
18211
|
methods: {
|
|
18101
18212
|
getNewDefaultEntry() {
|
|
18102
18213
|
return "";
|
|
@@ -18196,7 +18307,7 @@ var ki = {}, RS = {
|
|
|
18196
18307
|
};
|
|
18197
18308
|
(function(e, t) {
|
|
18198
18309
|
(function(n) {
|
|
18199
|
-
var r = "Compound", s = "Identifier", i = "MemberExpression", a = "Literal", l = "ThisExpression", u = "CallExpression", f = "UnaryExpression", c = "BinaryExpression", p = "LogicalExpression", g = "ConditionalExpression", b = "ArrayExpression", w = 46, O = 44, j = 39,
|
|
18310
|
+
var r = "Compound", s = "Identifier", i = "MemberExpression", a = "Literal", l = "ThisExpression", u = "CallExpression", f = "UnaryExpression", c = "BinaryExpression", p = "LogicalExpression", g = "ConditionalExpression", b = "ArrayExpression", w = 46, O = 44, j = 39, H = 34, D = 40, ee = 41, re = 91, ue = 93, W = 63, $ = 59, le = 58, G = function(N, V) {
|
|
18200
18311
|
var st = new Error(N + " at character " + V);
|
|
18201
18312
|
throw st.index = V, st.description = N, st;
|
|
18202
18313
|
}, Me = !0, xe = { "-": Me, "!": Me, "~": Me, "+": Me }, we = {
|
|
@@ -18262,16 +18373,16 @@ var ki = {}, RS = {
|
|
|
18262
18373
|
for (var E = de(V); E === 32 || E === 9 || E === 10 || E === 13; )
|
|
18263
18374
|
E = de(++V);
|
|
18264
18375
|
}, zt = function() {
|
|
18265
|
-
var E =
|
|
18266
|
-
if (at(), de(V) ===
|
|
18267
|
-
if (V++, P = zt(), P ||
|
|
18268
|
-
return V++, Z = zt(), Z ||
|
|
18376
|
+
var E = Uo(), P, Z;
|
|
18377
|
+
if (at(), de(V) === W) {
|
|
18378
|
+
if (V++, P = zt(), P || G("Expected expression", V), at(), de(V) === le)
|
|
18379
|
+
return V++, Z = zt(), Z || G("Expected expression", V), {
|
|
18269
18380
|
type: g,
|
|
18270
18381
|
test: E,
|
|
18271
18382
|
consequent: P,
|
|
18272
18383
|
alternate: Z
|
|
18273
18384
|
};
|
|
18274
|
-
|
|
18385
|
+
G("Expected :", V);
|
|
18275
18386
|
} else
|
|
18276
18387
|
return E;
|
|
18277
18388
|
}, Zr = function() {
|
|
@@ -18282,26 +18393,26 @@ var ki = {}, RS = {
|
|
|
18282
18393
|
E = E.substr(0, --P);
|
|
18283
18394
|
}
|
|
18284
18395
|
return !1;
|
|
18285
|
-
},
|
|
18286
|
-
var E, P, Z,
|
|
18396
|
+
}, Uo = function() {
|
|
18397
|
+
var E, P, Z, se, Et, Je, gt, Ht, es;
|
|
18287
18398
|
if (Je = Rn(), P = Zr(), !P)
|
|
18288
18399
|
return Je;
|
|
18289
|
-
for (Et = { value: P, prec: it(P) }, gt = Rn(), gt ||
|
|
18290
|
-
for (Et = { value: P, prec: Z }, es = P;
|
|
18291
|
-
gt =
|
|
18292
|
-
E = Rn(), E ||
|
|
18400
|
+
for (Et = { value: P, prec: it(P) }, gt = Rn(), gt || G("Expected expression after " + P, V), se = [Je, Et, gt]; (P = Zr()) && (Z = it(P), Z !== 0); ) {
|
|
18401
|
+
for (Et = { value: P, prec: Z }, es = P; se.length > 2 && Z <= se[se.length - 2].prec; )
|
|
18402
|
+
gt = se.pop(), P = se.pop().value, Je = se.pop(), E = Rt(P, Je, gt), se.push(E);
|
|
18403
|
+
E = Rn(), E || G("Expected expression after " + es, V), se.push(Et, E);
|
|
18293
18404
|
}
|
|
18294
|
-
for (Ht =
|
|
18295
|
-
E = Rt(
|
|
18405
|
+
for (Ht = se.length - 1, E = se[Ht]; Ht > 1; )
|
|
18406
|
+
E = Rt(se[Ht - 1].value, se[Ht - 2], E), Ht -= 2;
|
|
18296
18407
|
return E;
|
|
18297
18408
|
}, Rn = function() {
|
|
18298
18409
|
var E, P, Z;
|
|
18299
18410
|
if (at(), E = de(V), _t(E) || E === w)
|
|
18300
|
-
return Uo();
|
|
18301
|
-
if (E === j || E === M)
|
|
18302
18411
|
return jo();
|
|
18303
|
-
if (E ===
|
|
18304
|
-
return
|
|
18412
|
+
if (E === j || E === H)
|
|
18413
|
+
return Ro();
|
|
18414
|
+
if (E === re)
|
|
18415
|
+
return Ho();
|
|
18305
18416
|
for (P = N.substr(V, Ce), Z = P.length; Z > 0; ) {
|
|
18306
18417
|
if (xe.hasOwnProperty(P) && (!rt(de(V)) || V + P.length < N.length && !Vt(de(V + P.length))))
|
|
18307
18418
|
return V += Z, {
|
|
@@ -18312,8 +18423,8 @@ var ki = {}, RS = {
|
|
|
18312
18423
|
};
|
|
18313
18424
|
P = P.substr(0, --Z);
|
|
18314
18425
|
}
|
|
18315
|
-
return rt(E) || E ===
|
|
18316
|
-
},
|
|
18426
|
+
return rt(E) || E === D ? Bo() : !1;
|
|
18427
|
+
}, jo = function() {
|
|
18317
18428
|
for (var E = "", P, Z; _t(de(V)); )
|
|
18318
18429
|
E += De(V++);
|
|
18319
18430
|
if (de(V) === w)
|
|
@@ -18322,20 +18433,20 @@ var ki = {}, RS = {
|
|
|
18322
18433
|
if (P = De(V), P === "e" || P === "E") {
|
|
18323
18434
|
for (E += De(V++), P = De(V), (P === "+" || P === "-") && (E += De(V++)); _t(de(V)); )
|
|
18324
18435
|
E += De(V++);
|
|
18325
|
-
_t(de(V - 1)) ||
|
|
18436
|
+
_t(de(V - 1)) || G("Expected exponent (" + E + De(V) + ")", V);
|
|
18326
18437
|
}
|
|
18327
|
-
return Z = de(V), rt(Z) ?
|
|
18438
|
+
return Z = de(V), rt(Z) ? G("Variable names cannot start with a number (" + E + De(V) + ")", V) : Z === w && G("Unexpected period", V), {
|
|
18328
18439
|
type: a,
|
|
18329
18440
|
value: parseFloat(E),
|
|
18330
18441
|
raw: E
|
|
18331
18442
|
};
|
|
18332
|
-
},
|
|
18333
|
-
for (var E = "", P = De(V++), Z = !1,
|
|
18334
|
-
if (
|
|
18443
|
+
}, Ro = function() {
|
|
18444
|
+
for (var E = "", P = De(V++), Z = !1, se; V < fn; )
|
|
18445
|
+
if (se = De(V++), se === P) {
|
|
18335
18446
|
Z = !0;
|
|
18336
18447
|
break;
|
|
18337
|
-
} else if (
|
|
18338
|
-
switch (
|
|
18448
|
+
} else if (se === "\\")
|
|
18449
|
+
switch (se = De(V++), se) {
|
|
18339
18450
|
case "n":
|
|
18340
18451
|
E += `
|
|
18341
18452
|
`;
|
|
@@ -18356,18 +18467,18 @@ var ki = {}, RS = {
|
|
|
18356
18467
|
E += "\v";
|
|
18357
18468
|
break;
|
|
18358
18469
|
default:
|
|
18359
|
-
E +=
|
|
18470
|
+
E += se;
|
|
18360
18471
|
}
|
|
18361
18472
|
else
|
|
18362
|
-
E +=
|
|
18363
|
-
return Z ||
|
|
18473
|
+
E += se;
|
|
18474
|
+
return Z || G('Unclosed quote after "' + E + '"', V), {
|
|
18364
18475
|
type: a,
|
|
18365
18476
|
value: E,
|
|
18366
18477
|
raw: P + E + P
|
|
18367
18478
|
};
|
|
18368
18479
|
}, Jr = function() {
|
|
18369
18480
|
var E = de(V), P = V, Z;
|
|
18370
|
-
for (rt(E) ? V++ :
|
|
18481
|
+
for (rt(E) ? V++ : G("Unexpected " + De(V), V); V < fn && (E = de(V), Vt(E)); )
|
|
18371
18482
|
V++;
|
|
18372
18483
|
return Z = N.slice(P, V), Ve.hasOwnProperty(Z) ? {
|
|
18373
18484
|
type: a,
|
|
@@ -18378,53 +18489,53 @@ var ki = {}, RS = {
|
|
|
18378
18489
|
name: Z
|
|
18379
18490
|
};
|
|
18380
18491
|
}, Xr = function(E) {
|
|
18381
|
-
for (var P, Z = [],
|
|
18492
|
+
for (var P, Z = [], se, Et = !1, Je = 0; V < fn; )
|
|
18382
18493
|
if (at(), P = de(V), P === E) {
|
|
18383
|
-
Et = !0, V++, E ===
|
|
18494
|
+
Et = !0, V++, E === ee && Je && Je >= Z.length && G("Unexpected token " + String.fromCharCode(E), V);
|
|
18384
18495
|
break;
|
|
18385
18496
|
} else if (P === O) {
|
|
18386
18497
|
if (V++, Je++, Je !== Z.length) {
|
|
18387
|
-
if (E ===
|
|
18388
|
-
|
|
18498
|
+
if (E === ee)
|
|
18499
|
+
G("Unexpected token ,", V);
|
|
18389
18500
|
else if (E === ue)
|
|
18390
18501
|
for (var gt = Z.length; gt < Je; gt++)
|
|
18391
18502
|
Z.push(null);
|
|
18392
18503
|
}
|
|
18393
18504
|
} else
|
|
18394
|
-
|
|
18395
|
-
return Et ||
|
|
18396
|
-
},
|
|
18505
|
+
se = zt(), (!se || se.type === r) && G("Expected comma", V), Z.push(se);
|
|
18506
|
+
return Et || G("Expected " + String.fromCharCode(E), V), Z;
|
|
18507
|
+
}, Bo = function() {
|
|
18397
18508
|
var E, P;
|
|
18398
|
-
for (E = de(V), E ===
|
|
18509
|
+
for (E = de(V), E === D ? P = zo() : P = Jr(), at(), E = de(V); E === w || E === re || E === D; )
|
|
18399
18510
|
V++, E === w ? (at(), P = {
|
|
18400
18511
|
type: i,
|
|
18401
18512
|
computed: !1,
|
|
18402
18513
|
object: P,
|
|
18403
18514
|
property: Jr()
|
|
18404
|
-
}) : E ===
|
|
18515
|
+
}) : E === re ? (P = {
|
|
18405
18516
|
type: i,
|
|
18406
18517
|
computed: !0,
|
|
18407
18518
|
object: P,
|
|
18408
18519
|
property: zt()
|
|
18409
|
-
}, at(), E = de(V), E !== ue &&
|
|
18520
|
+
}, at(), E = de(V), E !== ue && G("Unclosed [", V), V++) : E === D && (P = {
|
|
18410
18521
|
type: u,
|
|
18411
|
-
arguments: Xr(
|
|
18522
|
+
arguments: Xr(ee),
|
|
18412
18523
|
callee: P
|
|
18413
18524
|
}), at(), E = de(V);
|
|
18414
18525
|
return P;
|
|
18415
|
-
},
|
|
18526
|
+
}, zo = function() {
|
|
18416
18527
|
V++;
|
|
18417
18528
|
var E = zt();
|
|
18418
|
-
if (at(), de(V) ===
|
|
18529
|
+
if (at(), de(V) === ee)
|
|
18419
18530
|
return V++, E;
|
|
18420
|
-
|
|
18421
|
-
},
|
|
18531
|
+
G("Unclosed (", V);
|
|
18532
|
+
}, Ho = function() {
|
|
18422
18533
|
return V++, {
|
|
18423
18534
|
type: b,
|
|
18424
18535
|
elements: Xr(ue)
|
|
18425
18536
|
};
|
|
18426
18537
|
}, Bn = [], Ni, Qr; V < fn; )
|
|
18427
|
-
Ni = de(V), Ni === $ || Ni === O ? V++ : (Qr = zt()) ? Bn.push(Qr) : V < fn &&
|
|
18538
|
+
Ni = de(V), Ni === $ || Ni === O ? V++ : (Qr = zt()) ? Bn.push(Qr) : V < fn && G('Unexpected "' + De(V) + '"', V);
|
|
18428
18539
|
return Bn.length === 1 ? Bn[0] : {
|
|
18429
18540
|
type: r,
|
|
18430
18541
|
body: Bn
|
|
@@ -18565,11 +18676,11 @@ var YS = KS, ZS = qS, JS = GS, XS = YS;
|
|
|
18565
18676
|
function QS(e, t, n) {
|
|
18566
18677
|
return t === t ? XS(e, t, n) : ZS(e, JS, n);
|
|
18567
18678
|
}
|
|
18568
|
-
var
|
|
18679
|
+
var vo = QS, e2 = Fn, t2 = Ln, n2 = $n, i2 = "[object String]";
|
|
18569
18680
|
function r2(e) {
|
|
18570
18681
|
return typeof e == "string" || !t2(e) && n2(e) && e2(e) == i2;
|
|
18571
18682
|
}
|
|
18572
|
-
var s2 = r2, a2 =
|
|
18683
|
+
var s2 = r2, a2 = yo;
|
|
18573
18684
|
function l2(e) {
|
|
18574
18685
|
var t = a2(e), n = t % 1;
|
|
18575
18686
|
return t === t ? n ? t - n : t : 0;
|
|
@@ -18590,7 +18701,7 @@ var m2 = f2, h2 = Fn, p2 = $n, y2 = "[object Arguments]";
|
|
|
18590
18701
|
function _2(e) {
|
|
18591
18702
|
return p2(e) && h2(e) == y2;
|
|
18592
18703
|
}
|
|
18593
|
-
var g2 = _2, da = g2, v2 = $n,
|
|
18704
|
+
var g2 = _2, da = g2, v2 = $n, bo = Object.prototype, b2 = bo.hasOwnProperty, k2 = bo.propertyIsEnumerable, x2 = da(function() {
|
|
18594
18705
|
return arguments;
|
|
18595
18706
|
}()) ? da : function(e) {
|
|
18596
18707
|
return v2(e) && b2.call(e, "callee") && !k2.call(e, "callee");
|
|
@@ -18610,11 +18721,11 @@ var O2 = T2;
|
|
|
18610
18721
|
var n = ln, r = O2, s = t && !t.nodeType && t, i = s && !0 && e && !e.nodeType && e, a = i && i.exports === s, l = a ? n.Buffer : void 0, u = l ? l.isBuffer : void 0, f = u || r;
|
|
18611
18722
|
e.exports = f;
|
|
18612
18723
|
})(S2, xi);
|
|
18613
|
-
var C2 = Fn, V2 =
|
|
18614
|
-
|
|
18615
|
-
|
|
18724
|
+
var C2 = Fn, V2 = ho, E2 = $n, A2 = "[object Arguments]", M2 = "[object Array]", D2 = "[object Boolean]", I2 = "[object Date]", F2 = "[object Error]", $2 = "[object Function]", N2 = "[object Map]", L2 = "[object Number]", P2 = "[object Object]", U2 = "[object RegExp]", j2 = "[object Set]", R2 = "[object String]", B2 = "[object WeakMap]", z2 = "[object ArrayBuffer]", H2 = "[object DataView]", q2 = "[object Float32Array]", W2 = "[object Float64Array]", G2 = "[object Int8Array]", K2 = "[object Int16Array]", Y2 = "[object Int32Array]", Z2 = "[object Uint8Array]", J2 = "[object Uint8ClampedArray]", X2 = "[object Uint16Array]", Q2 = "[object Uint32Array]", oe = {};
|
|
18725
|
+
oe[q2] = oe[W2] = oe[G2] = oe[K2] = oe[Y2] = oe[Z2] = oe[J2] = oe[X2] = oe[Q2] = !0;
|
|
18726
|
+
oe[A2] = oe[M2] = oe[z2] = oe[D2] = oe[H2] = oe[I2] = oe[F2] = oe[$2] = oe[N2] = oe[L2] = oe[P2] = oe[U2] = oe[j2] = oe[R2] = oe[B2] = !1;
|
|
18616
18727
|
function eT(e) {
|
|
18617
|
-
return E2(e) && V2(e.length) && !!
|
|
18728
|
+
return E2(e) && V2(e.length) && !!oe[C2(e)];
|
|
18618
18729
|
}
|
|
18619
18730
|
var tT = eT;
|
|
18620
18731
|
function nT(e) {
|
|
@@ -18640,7 +18751,7 @@ var iT = nT, wi = {}, rT = {
|
|
|
18640
18751
|
}();
|
|
18641
18752
|
e.exports = l;
|
|
18642
18753
|
})(rT, wi);
|
|
18643
|
-
var sT = tT, aT = iT, ca = wi, fa = ca && ca.isTypedArray, lT = fa ? aT(fa) : sT, oT = lT, uT = m2, dT = w2, cT = Ln, fT = xi, mT =
|
|
18754
|
+
var sT = tT, aT = iT, ca = wi, fa = ca && ca.isTypedArray, lT = fa ? aT(fa) : sT, oT = lT, uT = m2, dT = w2, cT = Ln, fT = xi, mT = po, hT = oT, pT = Object.prototype, yT = pT.hasOwnProperty;
|
|
18644
18755
|
function _T(e, t) {
|
|
18645
18756
|
var n = cT(e), r = !n && dT(e), s = !n && !r && fT(e), i = !n && !r && !s && hT(e), a = n || r || s || i, l = a ? uT(e.length, String) : [], u = l.length;
|
|
18646
18757
|
for (var f in e)
|
|
@@ -18679,7 +18790,7 @@ var LT = NT, PT = c2, UT = LT;
|
|
|
18679
18790
|
function jT(e) {
|
|
18680
18791
|
return e == null ? [] : PT(e, UT(e));
|
|
18681
18792
|
}
|
|
18682
|
-
var RT = jT, BT =
|
|
18793
|
+
var RT = jT, BT = vo, zT = Gr, HT = s2, qT = o2, WT = RT, GT = Math.max;
|
|
18683
18794
|
function KT(e, t, n, r) {
|
|
18684
18795
|
e = zT(e) ? e : WT(e), n = n && !r ? qT(n) : 0;
|
|
18685
18796
|
var s = e.length;
|
|
@@ -18768,7 +18879,7 @@ const QT = Array.from({ length: 6 }, (e, t) => new Date().getFullYear() + t).map
|
|
|
18768
18879
|
value: t
|
|
18769
18880
|
};
|
|
18770
18881
|
}), eO = {
|
|
18771
|
-
mixins: [
|
|
18882
|
+
mixins: [ie],
|
|
18772
18883
|
components: {
|
|
18773
18884
|
// StripeElements,
|
|
18774
18885
|
// StripeElement,
|
|
@@ -19057,7 +19168,7 @@ const QT = Array.from({ length: 6 }, (e, t) => new Date().getFullYear() + t).map
|
|
|
19057
19168
|
};
|
|
19058
19169
|
}
|
|
19059
19170
|
}
|
|
19060
|
-
}, jn = (e) => (
|
|
19171
|
+
}, jn = (e) => (qe("data-v-77ad86cb"), e = e(), We(), e), tO = /* @__PURE__ */ jn(() => /* @__PURE__ */ x("h2", null, "Payment Summary", -1)), nO = { class: "calculations" }, iO = /* @__PURE__ */ jn(() => /* @__PURE__ */ x("td", null, "Amount", -1)), rO = { class: "running-total" }, sO = { class: "running-total" }, aO = {
|
|
19061
19172
|
key: 0,
|
|
19062
19173
|
class: "grand-total"
|
|
19063
19174
|
}, lO = /* @__PURE__ */ jn(() => /* @__PURE__ */ x("td", null, [
|
|
@@ -19164,7 +19275,7 @@ const mO = {
|
|
|
19164
19275
|
// type: [Object, Array],
|
|
19165
19276
|
}
|
|
19166
19277
|
},
|
|
19167
|
-
mixins: [
|
|
19278
|
+
mixins: [ie],
|
|
19168
19279
|
created() {
|
|
19169
19280
|
this.model = this.model;
|
|
19170
19281
|
},
|
|
@@ -19272,7 +19383,7 @@ function xO(e, t, n, r, s, i) {
|
|
|
19272
19383
|
e.showDescription ? (o(), d("div", yO, v(e.description), 1)) : _("", !0),
|
|
19273
19384
|
i.selectableOptions.length ? (o(), d(S, { key: 2 }, [
|
|
19274
19385
|
e.singleValue ? (o(), d("div", _O, [
|
|
19275
|
-
|
|
19386
|
+
q(e.$slots, "default", {}, () => [
|
|
19276
19387
|
m(a, { tag: "div" }, {
|
|
19277
19388
|
default: h(() => [
|
|
19278
19389
|
T(v(i.summary), 1)
|
|
@@ -19281,7 +19392,7 @@ function xO(e, t, n, r, s, i) {
|
|
|
19281
19392
|
})
|
|
19282
19393
|
], !0)
|
|
19283
19394
|
])) : _("", !0),
|
|
19284
|
-
|
|
19395
|
+
Y(x("select", {
|
|
19285
19396
|
onFocus: t[0] || (t[0] = (...l) => e.touch && e.touch(...l)),
|
|
19286
19397
|
multiple: e.multiValue,
|
|
19287
19398
|
"onUpdate:modelValue": t[1] || (t[1] = (l) => e.model = l)
|
|
@@ -19316,7 +19427,7 @@ const TO = {
|
|
|
19316
19427
|
// type: [Object, Array],
|
|
19317
19428
|
}
|
|
19318
19429
|
},
|
|
19319
|
-
mixins: [
|
|
19430
|
+
mixins: [ie],
|
|
19320
19431
|
created() {
|
|
19321
19432
|
this.model = this.model;
|
|
19322
19433
|
},
|
|
@@ -19403,7 +19514,7 @@ function IO(e, t, n, r, s, i) {
|
|
|
19403
19514
|
])) : _("", !0),
|
|
19404
19515
|
e.showDescription ? (o(), d("div", VO, v(e.description), 1)) : _("", !0),
|
|
19405
19516
|
e.singleValue ? (o(), d("div", EO, [
|
|
19406
|
-
|
|
19517
|
+
q(e.$slots, "default", {}, () => [
|
|
19407
19518
|
m(a, { tag: "div" }, {
|
|
19408
19519
|
default: h(() => [
|
|
19409
19520
|
T(v(i.summary), 1)
|
|
@@ -19412,7 +19523,7 @@ function IO(e, t, n, r, s, i) {
|
|
|
19412
19523
|
})
|
|
19413
19524
|
], !0)
|
|
19414
19525
|
])) : _("", !0),
|
|
19415
|
-
|
|
19526
|
+
Y(x("select", {
|
|
19416
19527
|
onFocus: t[0] || (t[0] = (...l) => e.touch && e.touch(...l)),
|
|
19417
19528
|
multiple: e.multiValue,
|
|
19418
19529
|
"onUpdate:modelValue": t[1] || (t[1] = (l) => e.model = l)
|
|
@@ -19802,11 +19913,11 @@ const GO = {
|
|
|
19802
19913
|
InternalFieldCreator: qO,
|
|
19803
19914
|
ButtonSelect: Dw,
|
|
19804
19915
|
NativeSelect: Ct,
|
|
19805
|
-
DateField:
|
|
19916
|
+
DateField: mo,
|
|
19806
19917
|
TimeField: o0,
|
|
19807
19918
|
DateRange: p0,
|
|
19808
|
-
TextField:
|
|
19809
|
-
CurrencyField:
|
|
19919
|
+
TextField: fo,
|
|
19920
|
+
CurrencyField: co,
|
|
19810
19921
|
TextArea: Gb,
|
|
19811
19922
|
Checkbox: k0,
|
|
19812
19923
|
FilterInput: cx,
|
|
@@ -19818,11 +19929,11 @@ const GO = {
|
|
|
19818
19929
|
BooleanSwitch: Xx,
|
|
19819
19930
|
FieldGroup: xw,
|
|
19820
19931
|
ContentSelect: oo,
|
|
19821
|
-
TypeSelect:
|
|
19822
|
-
ScopeSelect:
|
|
19932
|
+
TypeSelect: K1,
|
|
19933
|
+
ScopeSelect: uo,
|
|
19823
19934
|
FieldSelect: sa,
|
|
19824
|
-
TimezoneSelect:
|
|
19825
|
-
PhoneNumberInput:
|
|
19935
|
+
TimezoneSelect: $v,
|
|
19936
|
+
PhoneNumberInput: Sv,
|
|
19826
19937
|
Upload: dw,
|
|
19827
19938
|
ObjectField: jw,
|
|
19828
19939
|
OptionsManager: sS,
|
|
@@ -20224,7 +20335,7 @@ const GO = {
|
|
|
20224
20335
|
class: "ux-field-message"
|
|
20225
20336
|
};
|
|
20226
20337
|
function YO(e, t, n, r, s, i) {
|
|
20227
|
-
const a = y("internal-route-select"), l = y("internal-menu-select"), u = y("internal-field-creator"), f = y("custom-html"), c = y("slider-input"), p = y("color-input"), g = y("filter-input"), b = y("date-object-input"), w = y("checkbox"), O = y("boolean-switch"), j = y("upload"),
|
|
20338
|
+
const a = y("internal-route-select"), l = y("internal-menu-select"), u = y("internal-field-creator"), f = y("custom-html"), c = y("slider-input"), p = y("color-input"), g = y("filter-input"), b = y("date-object-input"), w = y("checkbox"), O = y("boolean-switch"), j = y("upload"), H = y("field-group"), D = y("field-select"), ee = y("native-select"), re = y("button-select"), ue = y("text-field"), W = y("currency-field"), $ = y("time-field"), le = y("date-field"), G = y("date-range"), Me = y("content-select"), xe = y("type-select"), we = y("scope-select"), Oe = y("rich-text-field"), Ce = y("text-area"), Ne = y("timezone-select"), Ve = y("phone-number-input"), yt = y("object-field"), it = y("payment-field"), Rt = y("options-manager"), _t = y("code-editor-field"), rt = y("flex-column"), Vt = y("expression-field");
|
|
20228
20339
|
return i.visible ? (o(), d("div", {
|
|
20229
20340
|
key: 0,
|
|
20230
20341
|
class: L(["ux-field", i.classes]),
|
|
@@ -20309,7 +20420,7 @@ function YO(e, t, n, r, s, i) {
|
|
|
20309
20420
|
"onUpdate:modelValue": t[10] || (t[10] = (A) => i.fieldModel = A)
|
|
20310
20421
|
}, null, 8, ["onTouched", "field", "modelValue"])) : _("", !0),
|
|
20311
20422
|
i.widget == "group" ? (o(), d(S, { key: 12 }, [
|
|
20312
|
-
i.asObject ? (o(), k(
|
|
20423
|
+
i.asObject ? (o(), k(H, {
|
|
20313
20424
|
key: 0,
|
|
20314
20425
|
trail: i.currentTrail,
|
|
20315
20426
|
paymentConfiguration: n.paymentConfiguration,
|
|
@@ -20324,7 +20435,7 @@ function YO(e, t, n, r, s, i) {
|
|
|
20324
20435
|
parentModel: n.parentModel,
|
|
20325
20436
|
modelValue: i.fieldModel,
|
|
20326
20437
|
"onUpdate:modelValue": t[11] || (t[11] = (A) => i.fieldModel = A)
|
|
20327
|
-
}, null, 8, ["trail", "paymentConfiguration", "includeOfficeOnly", "submission", "ignoreDefaults", "sandbox", "onForm:state", "onTouched", "field", "parentModel", "modelValue"])) : (o(), k(
|
|
20438
|
+
}, null, 8, ["trail", "paymentConfiguration", "includeOfficeOnly", "submission", "ignoreDefaults", "sandbox", "onForm:state", "onTouched", "field", "parentModel", "modelValue"])) : (o(), k(H, {
|
|
20328
20439
|
key: 1,
|
|
20329
20440
|
trail: n.trail,
|
|
20330
20441
|
paymentConfiguration: n.paymentConfiguration,
|
|
@@ -20341,7 +20452,7 @@ function YO(e, t, n, r, s, i) {
|
|
|
20341
20452
|
"onUpdate:modelValue": t[12] || (t[12] = (A) => i.sourceModel = A)
|
|
20342
20453
|
}, null, 8, ["trail", "paymentConfiguration", "includeOfficeOnly", "submission", "ignoreDefaults", "sandbox", "onForm:state", "onTouched", "field", "parentModel", "modelValue"]))
|
|
20343
20454
|
], 64)) : _("", !0),
|
|
20344
|
-
i.widget == "form" ? (o(), k(
|
|
20455
|
+
i.widget == "form" ? (o(), k(H, {
|
|
20345
20456
|
key: 13,
|
|
20346
20457
|
trail: i.currentTrail,
|
|
20347
20458
|
paymentConfiguration: n.paymentConfiguration,
|
|
@@ -20357,21 +20468,21 @@ function YO(e, t, n, r, s, i) {
|
|
|
20357
20468
|
modelValue: i.fieldModel,
|
|
20358
20469
|
"onUpdate:modelValue": t[13] || (t[13] = (A) => i.fieldModel = A)
|
|
20359
20470
|
}, null, 8, ["trail", "paymentConfiguration", "includeOfficeOnly", "submission", "ignoreDefaults", "sandbox", "onForm:state", "onTouched", "field", "parentModel", "modelValue"])) : _("", !0),
|
|
20360
|
-
i.widget == "field-select" ? (o(), k(
|
|
20471
|
+
i.widget == "field-select" ? (o(), k(D, {
|
|
20361
20472
|
key: 14,
|
|
20362
20473
|
onTouched: i.touch,
|
|
20363
20474
|
field: i.actualField,
|
|
20364
20475
|
modelValue: i.fieldModel,
|
|
20365
20476
|
"onUpdate:modelValue": t[14] || (t[14] = (A) => i.fieldModel = A)
|
|
20366
20477
|
}, null, 8, ["onTouched", "field", "modelValue"])) : _("", !0),
|
|
20367
|
-
i.widget == "select" ? (o(), k(
|
|
20478
|
+
i.widget == "select" ? (o(), k(ee, {
|
|
20368
20479
|
key: 15,
|
|
20369
20480
|
onTouched: i.touch,
|
|
20370
20481
|
field: i.actualField,
|
|
20371
20482
|
modelValue: i.fieldModel,
|
|
20372
20483
|
"onUpdate:modelValue": t[15] || (t[15] = (A) => i.fieldModel = A)
|
|
20373
20484
|
}, null, 8, ["onTouched", "field", "modelValue"])) : _("", !0),
|
|
20374
|
-
i.widget == "button" ? (o(), k(
|
|
20485
|
+
i.widget == "button" ? (o(), k(re, {
|
|
20375
20486
|
key: 16,
|
|
20376
20487
|
onTouched: i.touch,
|
|
20377
20488
|
field: i.actualField,
|
|
@@ -20385,7 +20496,7 @@ function YO(e, t, n, r, s, i) {
|
|
|
20385
20496
|
modelValue: i.fieldModel,
|
|
20386
20497
|
"onUpdate:modelValue": t[17] || (t[17] = (A) => i.fieldModel = A)
|
|
20387
20498
|
}, null, 8, ["onTouched", "field", "modelValue"])) : _("", !0),
|
|
20388
|
-
i.widget == "currency" ? (o(), k(
|
|
20499
|
+
i.widget == "currency" ? (o(), k(W, {
|
|
20389
20500
|
key: 18,
|
|
20390
20501
|
onTouched: i.touch,
|
|
20391
20502
|
field: i.actualField,
|
|
@@ -20399,14 +20510,14 @@ function YO(e, t, n, r, s, i) {
|
|
|
20399
20510
|
modelValue: i.fieldModel,
|
|
20400
20511
|
"onUpdate:modelValue": t[19] || (t[19] = (A) => i.fieldModel = A)
|
|
20401
20512
|
}, null, 8, ["onTouched", "field", "modelValue"])) : _("", !0),
|
|
20402
|
-
i.widget == "datefield" ? (o(), k(
|
|
20513
|
+
i.widget == "datefield" ? (o(), k(le, {
|
|
20403
20514
|
key: 20,
|
|
20404
20515
|
onTouched: i.touch,
|
|
20405
20516
|
field: i.actualField,
|
|
20406
20517
|
modelValue: i.fieldModel,
|
|
20407
20518
|
"onUpdate:modelValue": t[20] || (t[20] = (A) => i.fieldModel = A)
|
|
20408
20519
|
}, null, 8, ["onTouched", "field", "modelValue"])) : _("", !0),
|
|
20409
|
-
i.widget == "daterange" ? (o(), k(
|
|
20520
|
+
i.widget == "daterange" ? (o(), k(G, {
|
|
20410
20521
|
key: 21,
|
|
20411
20522
|
onTouched: i.touch,
|
|
20412
20523
|
field: i.actualField,
|
|
@@ -20730,14 +20841,14 @@ var _C = yC, gC = /[a-z][A-Z]|[A-Z]{2}[a-z]|[0-9][a-zA-Z]|[a-zA-Z][0-9]|[^a-zA-Z
|
|
|
20730
20841
|
function vC(e) {
|
|
20731
20842
|
return gC.test(e);
|
|
20732
20843
|
}
|
|
20733
|
-
var bC = vC,
|
|
20734
|
-
Yt + "?" +
|
|
20844
|
+
var bC = vC, ko = "\\ud800-\\udfff", kC = "\\u0300-\\u036f", xC = "\\ufe20-\\ufe2f", wC = "\\u20d0-\\u20ff", SC = kC + xC + wC, xo = "\\u2700-\\u27bf", wo = "a-z\\xdf-\\xf6\\xf8-\\xff", TC = "\\xac\\xb1\\xd7\\xf7", OC = "\\x00-\\x2f\\x3a-\\x40\\x5b-\\x60\\x7b-\\xbf", CC = "\\u2000-\\u206f", VC = " \\t\\x0b\\f\\xa0\\ufeff\\n\\r\\u2028\\u2029\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000", So = "A-Z\\xc0-\\xd6\\xd8-\\xde", EC = "\\ufe0e\\ufe0f", To = TC + OC + CC + VC, Oo = "['’]", ma = "[" + To + "]", AC = "[" + SC + "]", Co = "\\d+", MC = "[" + xo + "]", Vo = "[" + wo + "]", Eo = "[^" + ko + To + Co + xo + wo + So + "]", DC = "\\ud83c[\\udffb-\\udfff]", IC = "(?:" + AC + "|" + DC + ")", FC = "[^" + ko + "]", Ao = "(?:\\ud83c[\\udde6-\\uddff]){2}", Mo = "[\\ud800-\\udbff][\\udc00-\\udfff]", Yt = "[" + So + "]", $C = "\\u200d", ha = "(?:" + Vo + "|" + Eo + ")", NC = "(?:" + Yt + "|" + Eo + ")", pa = "(?:" + Oo + "(?:d|ll|m|re|s|t|ve))?", ya = "(?:" + Oo + "(?:D|LL|M|RE|S|T|VE))?", Do = IC + "?", Io = "[" + EC + "]?", LC = "(?:" + $C + "(?:" + [FC, Ao, Mo].join("|") + ")" + Io + Do + ")*", PC = "\\d*(?:1st|2nd|3rd|(?![123])\\dth)(?=\\b|[A-Z_])", UC = "\\d*(?:1ST|2ND|3RD|(?![123])\\dTH)(?=\\b|[a-z_])", jC = Io + Do + LC, RC = "(?:" + [MC, Ao, Mo].join("|") + ")" + jC, BC = RegExp([
|
|
20845
|
+
Yt + "?" + Vo + "+" + pa + "(?=" + [ma, Yt, "$"].join("|") + ")",
|
|
20735
20846
|
NC + "+" + ya + "(?=" + [ma, Yt + ha, "$"].join("|") + ")",
|
|
20736
20847
|
Yt + "?" + ha + "+" + pa,
|
|
20737
20848
|
Yt + "+" + ya,
|
|
20738
20849
|
UC,
|
|
20739
20850
|
PC,
|
|
20740
|
-
|
|
20851
|
+
Co,
|
|
20741
20852
|
RC
|
|
20742
20853
|
].join("|"), "g");
|
|
20743
20854
|
function zC(e) {
|
|
@@ -20953,7 +21064,7 @@ function oV(e, t, n, r, s, i) {
|
|
|
20953
21064
|
return o(), d("div", {
|
|
20954
21065
|
class: L(["ux-form", i.formClass])
|
|
20955
21066
|
}, [
|
|
20956
|
-
|
|
21067
|
+
q(e.$slots, "fields", {
|
|
20957
21068
|
fields: i.renderFields,
|
|
20958
21069
|
hash: i.fieldHash
|
|
20959
21070
|
}, () => [
|
|
@@ -20985,7 +21096,7 @@ function oV(e, t, n, r, s, i) {
|
|
|
20985
21096
|
], !0)
|
|
20986
21097
|
], 2);
|
|
20987
21098
|
}
|
|
20988
|
-
const
|
|
21099
|
+
const Fo = /* @__PURE__ */ C(lV, [["render", oV], ["__scopeId", "data-v-5a0fe930"]]);
|
|
20989
21100
|
const or = "form.ready", uV = "form.processing", _a = "form.complete", ga = "form.error", dV = "form.intent", cV = {
|
|
20990
21101
|
methods: {
|
|
20991
21102
|
formStateUpdated(e) {
|
|
@@ -21096,7 +21207,7 @@ const or = "form.ready", uV = "form.processing", _a = "form.complete", ga = "for
|
|
|
21096
21207
|
}
|
|
21097
21208
|
},
|
|
21098
21209
|
components: {
|
|
21099
|
-
UxForm:
|
|
21210
|
+
UxForm: Fo,
|
|
21100
21211
|
StripeElements: lc,
|
|
21101
21212
|
StripeElement: ic
|
|
21102
21213
|
},
|
|
@@ -21233,7 +21344,7 @@ const or = "form.ready", uV = "form.processing", _a = "form.complete", ga = "for
|
|
|
21233
21344
|
return this.form.fields || [];
|
|
21234
21345
|
}
|
|
21235
21346
|
}
|
|
21236
|
-
}, fV = (e) => (
|
|
21347
|
+
}, fV = (e) => (qe("data-v-9cdffe7f"), e = e(), We(), e), mV = /* @__PURE__ */ fV(() => /* @__PURE__ */ x("h3", null, "An error occurred", -1)), hV = { key: 0 }, pV = { key: 1 }, yV = { key: 2 }, _V = { class: "intent-submit" }, gV = ["tooltip"];
|
|
21237
21348
|
function vV(e, t, n, r, s, i) {
|
|
21238
21349
|
var b;
|
|
21239
21350
|
const a = y("ux-icon"), l = y("ux-button"), u = y("ux-panel-body"), f = y("ux-panel"), c = y("StripeElement"), p = y("StripeElements"), g = y("ux-form");
|
|
@@ -21261,7 +21372,7 @@ function vV(e, t, n, r, s, i) {
|
|
|
21261
21372
|
]),
|
|
21262
21373
|
_: 1
|
|
21263
21374
|
}, 8, ["onClick"])
|
|
21264
|
-
], 64)) : s.state === "form.complete" ?
|
|
21375
|
+
], 64)) : s.state === "form.complete" ? q(e.$slots, "default", {
|
|
21265
21376
|
key: 1,
|
|
21266
21377
|
reset: i.reset
|
|
21267
21378
|
}, () => [
|
|
@@ -21413,12 +21524,12 @@ const bV = {
|
|
|
21413
21524
|
function wV(e, t, n, r, s, i) {
|
|
21414
21525
|
const a = y("ux-icon");
|
|
21415
21526
|
return o(), d("div", kV, [
|
|
21416
|
-
|
|
21527
|
+
Y(x("input", {
|
|
21417
21528
|
ref: "input",
|
|
21418
21529
|
"onUpdate:modelValue": t[0] || (t[0] = (l) => i.model = l),
|
|
21419
21530
|
placeholder: n.placeholder
|
|
21420
21531
|
}, null, 8, xV), [
|
|
21421
|
-
[
|
|
21532
|
+
[ae, i.model]
|
|
21422
21533
|
]),
|
|
21423
21534
|
x("div", {
|
|
21424
21535
|
onClick: t[1] || (t[1] = (l) => i.clear()),
|
|
@@ -21443,7 +21554,7 @@ function SV(e) {
|
|
|
21443
21554
|
}
|
|
21444
21555
|
return n.length > 0 ? { invalid: `Unclosed tag(s): ${n.join(", ")}` } : { valid: !0 };
|
|
21445
21556
|
}
|
|
21446
|
-
const
|
|
21557
|
+
const $o = {
|
|
21447
21558
|
props: {
|
|
21448
21559
|
template: {
|
|
21449
21560
|
type: String
|
|
@@ -21505,7 +21616,7 @@ function CV(e, t, n, r, s, i) {
|
|
|
21505
21616
|
]),
|
|
21506
21617
|
_: 1
|
|
21507
21618
|
}, 8, ["onClick"])
|
|
21508
|
-
])) :
|
|
21619
|
+
])) : q(e.$slots, "default", { key: 1 }, void 0, !0);
|
|
21509
21620
|
}
|
|
21510
21621
|
const VV = /* @__PURE__ */ C(TV, [["render", CV], ["__scopeId", "data-v-72d1a309"]]), EV = {
|
|
21511
21622
|
props: {
|
|
@@ -21672,7 +21783,7 @@ const FV = {
|
|
|
21672
21783
|
Item: jl,
|
|
21673
21784
|
FieldGroup: IV,
|
|
21674
21785
|
// Compiler,
|
|
21675
|
-
Compile:
|
|
21786
|
+
Compile: $o,
|
|
21676
21787
|
ErrorBoundary: VV
|
|
21677
21788
|
// ButtonSelect,
|
|
21678
21789
|
// NativeSelect,
|
|
@@ -22098,7 +22209,7 @@ function eE(e, t, n, r, s, i) {
|
|
|
22098
22209
|
], 64))
|
|
22099
22210
|
], 2)) : _("", !0);
|
|
22100
22211
|
}
|
|
22101
|
-
const
|
|
22212
|
+
const No = /* @__PURE__ */ C(FV, [["render", eE], ["__scopeId", "data-v-d9878666"]]);
|
|
22102
22213
|
const tE = {
|
|
22103
22214
|
props: {
|
|
22104
22215
|
parentModel: {
|
|
@@ -22136,7 +22247,7 @@ const tE = {
|
|
|
22136
22247
|
};
|
|
22137
22248
|
},
|
|
22138
22249
|
components: {
|
|
22139
|
-
UxFieldRender:
|
|
22250
|
+
UxFieldRender: No
|
|
22140
22251
|
},
|
|
22141
22252
|
computed: {
|
|
22142
22253
|
renderClass() {
|
|
@@ -22157,7 +22268,7 @@ function nE(e, t, n, r, s, i) {
|
|
|
22157
22268
|
return o(), d("div", {
|
|
22158
22269
|
class: L(["ux-render", i.renderClass])
|
|
22159
22270
|
}, [
|
|
22160
|
-
|
|
22271
|
+
q(e.$slots, "render", { fields: n.fields }, () => [
|
|
22161
22272
|
(o(!0), d(S, null, F(i.renderFields, (l, u) => (o(), k(a, {
|
|
22162
22273
|
submission: n.submission,
|
|
22163
22274
|
field: l,
|
|
@@ -22441,7 +22552,7 @@ function Si(e) {
|
|
|
22441
22552
|
}
|
|
22442
22553
|
Si.prototype.add = Si.prototype.push = hE;
|
|
22443
22554
|
Si.prototype.has = pE;
|
|
22444
|
-
var yE = Si, _E =
|
|
22555
|
+
var yE = Si, _E = vo;
|
|
22445
22556
|
function gE(e, t) {
|
|
22446
22557
|
var n = e == null ? 0 : e.length;
|
|
22447
22558
|
return !!n && _E(e, t, 0) > -1;
|
|
@@ -22467,9 +22578,9 @@ function AE(e) {
|
|
|
22467
22578
|
n[++t] = r;
|
|
22468
22579
|
}), n;
|
|
22469
22580
|
}
|
|
22470
|
-
var
|
|
22581
|
+
var Lo = AE, ur = CE, ME = EE, DE = Lo, IE = 1 / 0, FE = ur && 1 / DE(new ur([, -0]))[1] == IE ? function(e) {
|
|
22471
22582
|
return new ur(e);
|
|
22472
|
-
} : ME, $E = FE, NE = yE, LE = vE, PE = kE, UE = wE, jE = $E, RE =
|
|
22583
|
+
} : ME, $E = FE, NE = yE, LE = vE, PE = kE, UE = wE, jE = $E, RE = Lo, BE = 200;
|
|
22473
22584
|
function zE(e, t, n) {
|
|
22474
22585
|
var r = -1, s = LE, i = e.length, a = !0, l = [], u = l;
|
|
22475
22586
|
if (n)
|
|
@@ -22516,6 +22627,11 @@ function KE(e, t) {
|
|
|
22516
22627
|
switch (t) {
|
|
22517
22628
|
case "profile":
|
|
22518
22629
|
r = !0, n.push({
|
|
22630
|
+
title: "",
|
|
22631
|
+
path: "_id",
|
|
22632
|
+
shrink: !0,
|
|
22633
|
+
widget: "avatar"
|
|
22634
|
+
}), n.push({
|
|
22519
22635
|
title: "First Name",
|
|
22520
22636
|
key: "firstName",
|
|
22521
22637
|
shrink: !0
|
|
@@ -22526,9 +22642,6 @@ function KE(e, t) {
|
|
|
22526
22642
|
}), n.push({
|
|
22527
22643
|
title: "Email",
|
|
22528
22644
|
key: "emails"
|
|
22529
|
-
}), n.push({
|
|
22530
|
-
title: "Phone Number",
|
|
22531
|
-
key: "phoneNumbersInternational"
|
|
22532
22645
|
});
|
|
22533
22646
|
break;
|
|
22534
22647
|
case "definition":
|
|
@@ -22720,7 +22833,7 @@ const YE = {
|
|
|
22720
22833
|
components: {
|
|
22721
22834
|
Pager: lE,
|
|
22722
22835
|
NativeTable: S_,
|
|
22723
|
-
FilterBuilder:
|
|
22836
|
+
FilterBuilder: go,
|
|
22724
22837
|
Search: Yr,
|
|
22725
22838
|
UxField: Kr
|
|
22726
22839
|
},
|
|
@@ -23215,9 +23328,9 @@ const YE = {
|
|
|
23215
23328
|
actualOptions: this.options
|
|
23216
23329
|
};
|
|
23217
23330
|
}
|
|
23218
|
-
},
|
|
23331
|
+
}, Po = (e) => (qe("data-v-5de84b21"), e = e(), We(), e), ZE = { class: "footer" }, JE = /* @__PURE__ */ Po(() => /* @__PURE__ */ x("p", null, null, -1)), XE = { key: 0 }, QE = /* @__PURE__ */ Po(() => /* @__PURE__ */ x("p", null, null, -1));
|
|
23219
23332
|
function eA(e, t, n, r, s, i) {
|
|
23220
|
-
const a = y("ux-icon"), l = y("ux-panel-body"), u = y("ux-panel"), f = y("flex-column"), c = y("ux-button"), p = y("ux-list-item"), g = y("ux-list"), b = y("ux-menu"), w = y("native-table"), O = y("pager"), j = y("flex-footer"),
|
|
23333
|
+
const a = y("ux-icon"), l = y("ux-panel-body"), u = y("ux-panel"), f = y("flex-column"), c = y("ux-button"), p = y("ux-list-item"), g = y("ux-list"), b = y("ux-menu"), w = y("native-table"), O = y("pager"), j = y("flex-footer"), H = y("flex-row"), D = y("search"), ee = y("ux-field"), re = y("filter-builder"), ue = y("flex-body"), W = y("spinner");
|
|
23221
23334
|
return i.actualDefinition ? (o(), k(f, {
|
|
23222
23335
|
key: 0,
|
|
23223
23336
|
class: "content-browser"
|
|
@@ -23225,9 +23338,9 @@ function eA(e, t, n, r, s, i) {
|
|
|
23225
23338
|
default: h(() => [
|
|
23226
23339
|
m(f, { class: "browser-body" }, {
|
|
23227
23340
|
default: h(() => [
|
|
23228
|
-
m(
|
|
23341
|
+
m(H, null, {
|
|
23229
23342
|
default: h(() => [
|
|
23230
|
-
m(
|
|
23343
|
+
m(H, {
|
|
23231
23344
|
class: L({ loading: s.loading })
|
|
23232
23345
|
}, {
|
|
23233
23346
|
default: h(() => [
|
|
@@ -23236,7 +23349,7 @@ function eA(e, t, n, r, s, i) {
|
|
|
23236
23349
|
m(f, null, {
|
|
23237
23350
|
default: h(() => [
|
|
23238
23351
|
s.dataSource ? (o(), d(S, { key: 0 }, [
|
|
23239
|
-
|
|
23352
|
+
q(e.$slots, "abovecontent", {}, void 0, !0),
|
|
23240
23353
|
i.boundaryMessage ? (o(), k(f, {
|
|
23241
23354
|
key: 0,
|
|
23242
23355
|
class: "empty"
|
|
@@ -23303,7 +23416,7 @@ function eA(e, t, n, r, s, i) {
|
|
|
23303
23416
|
m(g, null, {
|
|
23304
23417
|
default: h(() => [
|
|
23305
23418
|
(o(!0), d(S, null, F(i.selectableFields, ($) => (o(), k(p, {
|
|
23306
|
-
onClick: (
|
|
23419
|
+
onClick: (le) => i.toggleField($),
|
|
23307
23420
|
key: $.path
|
|
23308
23421
|
}, {
|
|
23309
23422
|
default: h(() => [
|
|
@@ -23368,7 +23481,7 @@ function eA(e, t, n, r, s, i) {
|
|
|
23368
23481
|
}),
|
|
23369
23482
|
s.dataSource && !i.boundaryMessage ? (o(), k(j, { key: 0 }, {
|
|
23370
23483
|
default: h(() => [
|
|
23371
|
-
|
|
23484
|
+
q(e.$slots, "footera", {}, void 0, !0),
|
|
23372
23485
|
x("div", ZE, [
|
|
23373
23486
|
m(O, {
|
|
23374
23487
|
page: s.page,
|
|
@@ -23376,7 +23489,7 @@ function eA(e, t, n, r, s, i) {
|
|
|
23376
23489
|
total: i.totalItems
|
|
23377
23490
|
}, null, 8, ["page", "total"])
|
|
23378
23491
|
]),
|
|
23379
|
-
|
|
23492
|
+
q(e.$slots, "footerb", {}, void 0, !0)
|
|
23380
23493
|
]),
|
|
23381
23494
|
_: 3
|
|
23382
23495
|
})) : _("", !0)
|
|
@@ -23391,10 +23504,10 @@ function eA(e, t, n, r, s, i) {
|
|
|
23391
23504
|
class: "filter-column"
|
|
23392
23505
|
}, {
|
|
23393
23506
|
default: h(() => [
|
|
23394
|
-
|
|
23507
|
+
q(e.$slots, "abovefilter", {}, void 0, !0),
|
|
23395
23508
|
m(ue, null, {
|
|
23396
23509
|
default: h(() => [
|
|
23397
|
-
m(
|
|
23510
|
+
m(D, {
|
|
23398
23511
|
modelValue: s.keywords,
|
|
23399
23512
|
"onUpdate:modelValue": t[2] || (t[2] = ($) => s.keywords = $),
|
|
23400
23513
|
loading: i.searching,
|
|
@@ -23403,14 +23516,14 @@ function eA(e, t, n, r, s, i) {
|
|
|
23403
23516
|
}, null, 8, ["modelValue", "loading"]),
|
|
23404
23517
|
JE,
|
|
23405
23518
|
n.dateFilterEnabled ? (o(), d("div", XE, [
|
|
23406
|
-
m(
|
|
23519
|
+
m(ee, {
|
|
23407
23520
|
field: i.dateRangeField,
|
|
23408
23521
|
modelValue: s.dateRangeFilter,
|
|
23409
23522
|
"onUpdate:modelValue": t[3] || (t[3] = ($) => s.dateRangeFilter = $)
|
|
23410
23523
|
}, null, 8, ["field", "modelValue"])
|
|
23411
23524
|
])) : _("", !0),
|
|
23412
23525
|
QE,
|
|
23413
|
-
m(
|
|
23526
|
+
m(re, {
|
|
23414
23527
|
definition: i.actualDefinition,
|
|
23415
23528
|
modelValue: s.actualFilter,
|
|
23416
23529
|
"onUpdate:modelValue": t[4] || (t[4] = ($) => s.actualFilter = $)
|
|
@@ -23418,7 +23531,7 @@ function eA(e, t, n, r, s, i) {
|
|
|
23418
23531
|
]),
|
|
23419
23532
|
_: 1
|
|
23420
23533
|
}),
|
|
23421
|
-
|
|
23534
|
+
q(e.$slots, "belowfilter", {}, void 0, !0)
|
|
23422
23535
|
]),
|
|
23423
23536
|
_: 3
|
|
23424
23537
|
})) : _("", !0)
|
|
@@ -23428,7 +23541,7 @@ function eA(e, t, n, r, s, i) {
|
|
|
23428
23541
|
]),
|
|
23429
23542
|
_: 3
|
|
23430
23543
|
}),
|
|
23431
|
-
s.loading ? (o(), k(
|
|
23544
|
+
s.loading ? (o(), k(W, {
|
|
23432
23545
|
key: 0,
|
|
23433
23546
|
large: ""
|
|
23434
23547
|
})) : _("", !0)
|
|
@@ -23436,7 +23549,7 @@ function eA(e, t, n, r, s, i) {
|
|
|
23436
23549
|
_: 3
|
|
23437
23550
|
})) : _("", !0);
|
|
23438
23551
|
}
|
|
23439
|
-
const tA = /* @__PURE__ */ C(YE, [["render", eA], ["__scopeId", "data-v-
|
|
23552
|
+
const tA = /* @__PURE__ */ C(YE, [["render", eA], ["__scopeId", "data-v-5de84b21"]]);
|
|
23440
23553
|
const nA = {
|
|
23441
23554
|
props: {
|
|
23442
23555
|
modal: {
|
|
@@ -24017,7 +24130,7 @@ function FA(e, t, n, r, s, i) {
|
|
|
24017
24130
|
const $A = /* @__PURE__ */ C(AA, [["render", FA], ["__scopeId", "data-v-c9f9fa0a"]]);
|
|
24018
24131
|
const NA = {
|
|
24019
24132
|
components: {
|
|
24020
|
-
ScopeSelect:
|
|
24133
|
+
ScopeSelect: nb
|
|
24021
24134
|
// Search,
|
|
24022
24135
|
},
|
|
24023
24136
|
mixins: [cn],
|
|
@@ -24035,21 +24148,24 @@ const NA = {
|
|
|
24035
24148
|
// self.definition = definition;
|
|
24036
24149
|
// },
|
|
24037
24150
|
computed: {
|
|
24151
|
+
single() {
|
|
24152
|
+
return this.maximum === 1;
|
|
24153
|
+
},
|
|
24038
24154
|
type() {
|
|
24039
24155
|
return this.options.type;
|
|
24040
24156
|
},
|
|
24041
24157
|
action() {
|
|
24042
24158
|
return this.options.action;
|
|
24043
|
-
}
|
|
24159
|
+
},
|
|
24044
24160
|
// title() {
|
|
24045
24161
|
// return this.definition.title;
|
|
24046
24162
|
// },
|
|
24047
24163
|
// plural() {
|
|
24048
24164
|
// return this.definition.plural;
|
|
24049
24165
|
// },
|
|
24050
|
-
|
|
24051
|
-
|
|
24052
|
-
|
|
24166
|
+
maximum() {
|
|
24167
|
+
return this.options.maximum || 0;
|
|
24168
|
+
}
|
|
24053
24169
|
// browserOptions() {
|
|
24054
24170
|
// return this.options.browserOptions || {};
|
|
24055
24171
|
// },
|
|
@@ -24071,7 +24187,7 @@ const NA = {
|
|
|
24071
24187
|
this.close(this.model);
|
|
24072
24188
|
}
|
|
24073
24189
|
}
|
|
24074
|
-
}, LA = (e) => (
|
|
24190
|
+
}, LA = (e) => (qe("data-v-e1cac3f3"), e = e(), We(), e), PA = { class: "header" }, UA = /* @__PURE__ */ LA(() => /* @__PURE__ */ x("h3", null, "Select Scopes", -1)), jA = { class: "padder" };
|
|
24075
24191
|
function RA(e, t, n, r, s, i) {
|
|
24076
24192
|
const a = y("flex-cell"), l = y("ux-button"), u = y("flex-row"), f = y("flex-header"), c = y("scope-select"), p = y("flex-body"), g = y("flex-column");
|
|
24077
24193
|
return o(), k(g, { class: "wrapper" }, {
|
|
@@ -24116,10 +24232,11 @@ function RA(e, t, n, r, s, i) {
|
|
|
24116
24232
|
x("div", jA, [
|
|
24117
24233
|
m(c, {
|
|
24118
24234
|
action: i.action,
|
|
24235
|
+
single: i.single,
|
|
24119
24236
|
type: i.type,
|
|
24120
24237
|
modelValue: s.model,
|
|
24121
24238
|
"onUpdate:modelValue": t[0] || (t[0] = (b) => s.model = b)
|
|
24122
|
-
}, null, 8, ["action", "type", "modelValue"])
|
|
24239
|
+
}, null, 8, ["action", "single", "type", "modelValue"])
|
|
24123
24240
|
])
|
|
24124
24241
|
]),
|
|
24125
24242
|
_: 1
|
|
@@ -24128,7 +24245,7 @@ function RA(e, t, n, r, s, i) {
|
|
|
24128
24245
|
_: 1
|
|
24129
24246
|
});
|
|
24130
24247
|
}
|
|
24131
|
-
const BA = /* @__PURE__ */ C(NA, [["render", RA], ["__scopeId", "data-v-
|
|
24248
|
+
const BA = /* @__PURE__ */ C(NA, [["render", RA], ["__scopeId", "data-v-e1cac3f3"]]);
|
|
24132
24249
|
function zA(e, t) {
|
|
24133
24250
|
return t.reduce((n, r) => Math.abs(r - e) < Math.abs(n - e) ? r : n);
|
|
24134
24251
|
}
|
|
@@ -24232,32 +24349,32 @@ const HA = `qik vue ui ${Zo}`, ka = {
|
|
|
24232
24349
|
UxPanelBody: jc,
|
|
24233
24350
|
UxPanelHeader: Hc,
|
|
24234
24351
|
UxPanelFooter: Kc,
|
|
24235
|
-
UxList:
|
|
24236
|
-
UxListItem:
|
|
24237
|
-
UxPill:
|
|
24352
|
+
UxList: ev,
|
|
24353
|
+
UxListItem: iv,
|
|
24354
|
+
UxPill: Zg,
|
|
24238
24355
|
// UxCircle: UXCircle,
|
|
24239
|
-
UxForm:
|
|
24356
|
+
UxForm: Fo,
|
|
24240
24357
|
UxSubmissionForm: va,
|
|
24241
24358
|
UxFormField: Kr,
|
|
24242
24359
|
UxSubmissionForm: va,
|
|
24243
24360
|
UxRender: iE,
|
|
24244
|
-
UxRenderField:
|
|
24245
|
-
UxIcon:
|
|
24246
|
-
UxMenu:
|
|
24247
|
-
UxMenuList:
|
|
24248
|
-
UxImage:
|
|
24249
|
-
UxVideo:
|
|
24250
|
-
UxButton:
|
|
24361
|
+
UxRenderField: No,
|
|
24362
|
+
UxIcon: Sg,
|
|
24363
|
+
UxMenu: Cg,
|
|
24364
|
+
UxMenuList: Ag,
|
|
24365
|
+
UxImage: $g,
|
|
24366
|
+
UxVideo: Rg,
|
|
24367
|
+
UxButton: hg,
|
|
24251
24368
|
UxCheckbox: Ll,
|
|
24252
24369
|
UxSwitch: Pl,
|
|
24253
|
-
UxLink:
|
|
24370
|
+
UxLink: kg,
|
|
24254
24371
|
UxTabset: Wf,
|
|
24255
24372
|
UxTab: Yf,
|
|
24256
24373
|
Avatar: sg,
|
|
24257
24374
|
Spinner: Nl,
|
|
24258
|
-
ProgressBar:
|
|
24375
|
+
ProgressBar: Gg,
|
|
24259
24376
|
UxModal: sA,
|
|
24260
|
-
Compile:
|
|
24377
|
+
Compile: $o
|
|
24261
24378
|
}, ZA = {
|
|
24262
24379
|
install(e, t) {
|
|
24263
24380
|
console.log(HA), t.date = Re, t.modals = Ti([]), t.modal = function(n) {
|
|
@@ -24313,7 +24430,7 @@ export {
|
|
|
24313
24430
|
sg as Avatar,
|
|
24314
24431
|
dS as CodeEditor,
|
|
24315
24432
|
tA as ContentBrowser,
|
|
24316
|
-
|
|
24433
|
+
ov as DateRange,
|
|
24317
24434
|
YA as Device,
|
|
24318
24435
|
nw as FileDrop,
|
|
24319
24436
|
hc as FlexBody,
|
|
@@ -24332,37 +24449,37 @@ export {
|
|
|
24332
24449
|
jc as PanelBody,
|
|
24333
24450
|
Kc as PanelFooter,
|
|
24334
24451
|
Hc as PanelHeader,
|
|
24335
|
-
|
|
24452
|
+
Gg as ProgressBar,
|
|
24336
24453
|
ZA as QikUI,
|
|
24337
24454
|
y_ as RememberScrollMixin,
|
|
24338
|
-
|
|
24339
|
-
|
|
24455
|
+
nb as ScopeSelect,
|
|
24456
|
+
ab as ScopeSelectButton,
|
|
24340
24457
|
Yr as Search,
|
|
24341
24458
|
rE as Selection,
|
|
24342
24459
|
Nl as Spinner,
|
|
24343
24460
|
ic as StripeElement,
|
|
24344
24461
|
lc as StripeElements,
|
|
24345
|
-
|
|
24462
|
+
hg as UXButton,
|
|
24346
24463
|
Ll as UXCheckbox,
|
|
24347
24464
|
zr as UXCircle,
|
|
24348
|
-
|
|
24465
|
+
Fo as UXForm,
|
|
24349
24466
|
Kr as UXFormField,
|
|
24350
|
-
|
|
24351
|
-
|
|
24352
|
-
|
|
24353
|
-
|
|
24354
|
-
|
|
24355
|
-
|
|
24356
|
-
|
|
24357
|
-
|
|
24467
|
+
Sg as UXIcon,
|
|
24468
|
+
$g as UXImage,
|
|
24469
|
+
kg as UXLink,
|
|
24470
|
+
ev as UXList,
|
|
24471
|
+
iv as UXListItem,
|
|
24472
|
+
Cg as UXMenu,
|
|
24473
|
+
Ag as UXMenuList,
|
|
24474
|
+
Zg as UXPill,
|
|
24358
24475
|
iE as UXRender,
|
|
24359
|
-
|
|
24476
|
+
No as UXRenderField,
|
|
24360
24477
|
va as UXSubmissionForm,
|
|
24361
24478
|
Pl as UXSwitch,
|
|
24362
24479
|
Yf as UXTab,
|
|
24363
24480
|
S_ as UXTable,
|
|
24364
24481
|
Wf as UXTabset,
|
|
24365
|
-
|
|
24482
|
+
Rg as UXVideo,
|
|
24366
24483
|
cA as UxConfirmModal,
|
|
24367
24484
|
$A as UxContentModal,
|
|
24368
24485
|
sA as UxModal,
|