@qikdev/vue-ui 0.2.191 → 0.2.192
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 +925 -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,5 +1,5 @@
|
|
|
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
4
|
const Zo = "0.2.191";
|
|
5
5
|
class Pt extends Error {
|
|
@@ -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,7 +7125,20 @@ const ne = {
|
|
|
7108
7125
|
},
|
|
7109
7126
|
options() {
|
|
7110
7127
|
var e = this;
|
|
7111
|
-
|
|
7128
|
+
if (e.hasAsyncOptions)
|
|
7129
|
+
return e.dynamicOptions;
|
|
7130
|
+
if (e.field.type === "reference") {
|
|
7131
|
+
const t = (e.field.allowedReferences || []).filter(Boolean);
|
|
7132
|
+
if (t.length)
|
|
7133
|
+
return t.map(function({ _id: n, title: r }) {
|
|
7134
|
+
return {
|
|
7135
|
+
title: r,
|
|
7136
|
+
value: n,
|
|
7137
|
+
_id: n
|
|
7138
|
+
};
|
|
7139
|
+
});
|
|
7140
|
+
}
|
|
7141
|
+
return (e.field.options || []).reduce(function(t, n) {
|
|
7112
7142
|
if (!n)
|
|
7113
7143
|
return t;
|
|
7114
7144
|
const r = e.getValue(n);
|
|
@@ -7224,9 +7254,27 @@ const ne = {
|
|
|
7224
7254
|
e.asyncOptionsAreLoading = !1;
|
|
7225
7255
|
return;
|
|
7226
7256
|
}
|
|
7227
|
-
e.asyncOptionsAreLoading = !0
|
|
7228
|
-
|
|
7229
|
-
|
|
7257
|
+
if (e.asyncOptionsAreLoading = !0, e.asyncOptionsURL) {
|
|
7258
|
+
const { data: t } = await e.$sdk.api.get(e.asyncOptionsURL);
|
|
7259
|
+
e.dynamicOptions = t;
|
|
7260
|
+
} else if (e.user) {
|
|
7261
|
+
const t = e.field.referenceType, n = {
|
|
7262
|
+
filter: e.field.lockFilter,
|
|
7263
|
+
sort: {
|
|
7264
|
+
key: "title",
|
|
7265
|
+
direction: "asc",
|
|
7266
|
+
type: "string"
|
|
7267
|
+
}
|
|
7268
|
+
}, { items: r } = await e.$sdk.content.list(t, n);
|
|
7269
|
+
e.dynamicOptions = r.map(function({ _id: s, title: i }) {
|
|
7270
|
+
return {
|
|
7271
|
+
value: s,
|
|
7272
|
+
title: i,
|
|
7273
|
+
_id: s
|
|
7274
|
+
};
|
|
7275
|
+
});
|
|
7276
|
+
}
|
|
7277
|
+
e.asyncOptionsAreLoading = !1;
|
|
7230
7278
|
},
|
|
7231
7279
|
cleanTextInput(e, t, n) {
|
|
7232
7280
|
switch (t) {
|
|
@@ -7339,7 +7387,7 @@ const A_ = {
|
|
|
7339
7387
|
// type: [Object, Array],
|
|
7340
7388
|
}
|
|
7341
7389
|
},
|
|
7342
|
-
mixins: [
|
|
7390
|
+
mixins: [ie],
|
|
7343
7391
|
created() {
|
|
7344
7392
|
this.model = this.model;
|
|
7345
7393
|
},
|
|
@@ -7452,7 +7500,7 @@ const A_ = {
|
|
|
7452
7500
|
}));
|
|
7453
7501
|
}
|
|
7454
7502
|
}
|
|
7455
|
-
}, M_ = (e) => (
|
|
7503
|
+
}, M_ = (e) => (qe("data-v-0525e84f"), e = e(), We(), e), D_ = {
|
|
7456
7504
|
key: 0,
|
|
7457
7505
|
class: "ux-field-title"
|
|
7458
7506
|
}, I_ = {
|
|
@@ -7523,7 +7571,7 @@ function Z_(e, t, n, r, s, i) {
|
|
|
7523
7571
|
e.multiValue ? (o(), d(S, { key: 0 }, [
|
|
7524
7572
|
e.canAddValue ? (o(), d(S, { key: 0 }, [
|
|
7525
7573
|
x("div", U_, [
|
|
7526
|
-
|
|
7574
|
+
q(e.$slots, "default", {}, () => [
|
|
7527
7575
|
m(f, {
|
|
7528
7576
|
size: e.size,
|
|
7529
7577
|
tag: "div"
|
|
@@ -7535,7 +7583,7 @@ function Z_(e, t, n, r, s, i) {
|
|
|
7535
7583
|
}, 8, ["size"])
|
|
7536
7584
|
], !0)
|
|
7537
7585
|
]),
|
|
7538
|
-
|
|
7586
|
+
Y(x("select", {
|
|
7539
7587
|
onFocus: t[0] || (t[0] = (...c) => e.touch && e.touch(...c)),
|
|
7540
7588
|
"onUpdate:modelValue": t[1] || (t[1] = (c) => s.candidate = c)
|
|
7541
7589
|
}, [
|
|
@@ -7556,7 +7604,7 @@ function Z_(e, t, n, r, s, i) {
|
|
|
7556
7604
|
], 64)) : _("", !0)
|
|
7557
7605
|
], 64)) : (o(), d(S, { key: 1 }, [
|
|
7558
7606
|
x("div", H_, [
|
|
7559
|
-
|
|
7607
|
+
q(e.$slots, "default", {}, () => [
|
|
7560
7608
|
m(f, {
|
|
7561
7609
|
size: e.size,
|
|
7562
7610
|
tag: "div"
|
|
@@ -7568,7 +7616,7 @@ function Z_(e, t, n, r, s, i) {
|
|
|
7568
7616
|
}, 8, ["size"])
|
|
7569
7617
|
], !0)
|
|
7570
7618
|
]),
|
|
7571
|
-
|
|
7619
|
+
Y(x("select", {
|
|
7572
7620
|
onFocus: t[2] || (t[2] = (...c) => e.touch && e.touch(...c)),
|
|
7573
7621
|
multiple: e.multiValue,
|
|
7574
7622
|
"onUpdate:modelValue": t[3] || (t[3] = (c) => e.model = c)
|
|
@@ -7836,7 +7884,7 @@ function tg(e, t, n, r, s, i) {
|
|
|
7836
7884
|
})) : _("", !0),
|
|
7837
7885
|
m(l, null, {
|
|
7838
7886
|
default: h(() => [
|
|
7839
|
-
|
|
7887
|
+
q(e.$slots, "default", {}, void 0, !0)
|
|
7840
7888
|
]),
|
|
7841
7889
|
_: 3
|
|
7842
7890
|
})
|
|
@@ -7885,16 +7933,32 @@ const ag = {
|
|
|
7885
7933
|
type: Boolean
|
|
7886
7934
|
}
|
|
7887
7935
|
}
|
|
7888
|
-
}, lg =
|
|
7889
|
-
|
|
7936
|
+
}, lg = (e) => (qe("data-v-4104e95e"), e = e(), We(), e), og = /* @__PURE__ */ lg(() => /* @__PURE__ */ x("svg", {
|
|
7937
|
+
width: "24",
|
|
7938
|
+
height: "24",
|
|
7939
|
+
stroke: "#000",
|
|
7940
|
+
viewBox: "0 0 24 24",
|
|
7941
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
7942
|
+
}, [
|
|
7943
|
+
/* @__PURE__ */ x("g", { class: "spinner_V8m1" }, [
|
|
7944
|
+
/* @__PURE__ */ x("circle", {
|
|
7945
|
+
cx: "12",
|
|
7946
|
+
cy: "12",
|
|
7947
|
+
r: "9.5",
|
|
7948
|
+
fill: "none",
|
|
7949
|
+
"stroke-width": "2"
|
|
7950
|
+
})
|
|
7951
|
+
])
|
|
7952
|
+
], -1)), ug = [
|
|
7953
|
+
og
|
|
7890
7954
|
];
|
|
7891
|
-
function
|
|
7955
|
+
function dg(e, t, n, r, s, i) {
|
|
7892
7956
|
return o(), d("div", {
|
|
7893
7957
|
class: L(["ux-spinner", { large: n.large }])
|
|
7894
|
-
},
|
|
7958
|
+
}, ug, 2);
|
|
7895
7959
|
}
|
|
7896
|
-
const Nl = /* @__PURE__ */ C(ag, [["render",
|
|
7897
|
-
const
|
|
7960
|
+
const Nl = /* @__PURE__ */ C(ag, [["render", dg], ["__scopeId", "data-v-4104e95e"]]);
|
|
7961
|
+
const cg = {
|
|
7898
7962
|
components: {
|
|
7899
7963
|
Spinner: Nl
|
|
7900
7964
|
},
|
|
@@ -7961,8 +8025,8 @@ const dg = {
|
|
|
7961
8025
|
}
|
|
7962
8026
|
}
|
|
7963
8027
|
}
|
|
7964
|
-
},
|
|
7965
|
-
function
|
|
8028
|
+
}, fg = { class: "ux-btn-text" };
|
|
8029
|
+
function mg(e, t, n, r, s, i) {
|
|
7966
8030
|
const a = y("spinner");
|
|
7967
8031
|
return o(), k(ft(i.element), {
|
|
7968
8032
|
type: "button",
|
|
@@ -7977,15 +8041,15 @@ function fg(e, t, n, r, s, i) {
|
|
|
7977
8041
|
}, {
|
|
7978
8042
|
default: h(() => [
|
|
7979
8043
|
n.loading ? (o(), k(a, { key: 0 })) : _("", !0),
|
|
7980
|
-
x("span",
|
|
7981
|
-
|
|
8044
|
+
x("span", fg, [
|
|
8045
|
+
q(e.$slots, "default", {}, void 0, !0)
|
|
7982
8046
|
])
|
|
7983
8047
|
]),
|
|
7984
8048
|
_: 3
|
|
7985
8049
|
}, 8, ["active", "loading", "to", "href", "target", "style", "class", "disabled"]);
|
|
7986
8050
|
}
|
|
7987
|
-
const
|
|
7988
|
-
const
|
|
8051
|
+
const hg = /* @__PURE__ */ C(cg, [["render", mg], ["__scopeId", "data-v-cede7d1c"]]);
|
|
8052
|
+
const pg = {
|
|
7989
8053
|
props: {
|
|
7990
8054
|
value: {
|
|
7991
8055
|
type: Boolean,
|
|
@@ -8001,7 +8065,7 @@ const hg = {
|
|
|
8001
8065
|
}
|
|
8002
8066
|
}
|
|
8003
8067
|
};
|
|
8004
|
-
function
|
|
8068
|
+
function yg(e, t, n, r, s, i) {
|
|
8005
8069
|
const a = y("ux-icon");
|
|
8006
8070
|
return o(), d("button", {
|
|
8007
8071
|
class: L(["ux-checkbox", i.classes])
|
|
@@ -8012,8 +8076,8 @@ function pg(e, t, n, r, s, i) {
|
|
|
8012
8076
|
})
|
|
8013
8077
|
], 2);
|
|
8014
8078
|
}
|
|
8015
|
-
const Ll = /* @__PURE__ */ C(
|
|
8016
|
-
const
|
|
8079
|
+
const Ll = /* @__PURE__ */ C(pg, [["render", yg], ["__scopeId", "data-v-23f90447"]]);
|
|
8080
|
+
const _g = {
|
|
8017
8081
|
// components:{
|
|
8018
8082
|
// UxIcon,
|
|
8019
8083
|
// },
|
|
@@ -8038,7 +8102,7 @@ const yg = {
|
|
|
8038
8102
|
}
|
|
8039
8103
|
}
|
|
8040
8104
|
};
|
|
8041
|
-
function
|
|
8105
|
+
function gg(e, t, n, r, s, i) {
|
|
8042
8106
|
const a = y("ux-icon");
|
|
8043
8107
|
return o(), d("a", {
|
|
8044
8108
|
class: L(["ux-switch", i.classes])
|
|
@@ -8051,8 +8115,8 @@ function _g(e, t, n, r, s, i) {
|
|
|
8051
8115
|
])
|
|
8052
8116
|
], 2);
|
|
8053
8117
|
}
|
|
8054
|
-
const Pl = /* @__PURE__ */ C(
|
|
8055
|
-
const
|
|
8118
|
+
const Pl = /* @__PURE__ */ C(_g, [["render", gg], ["__scopeId", "data-v-51e4f653"]]);
|
|
8119
|
+
const vg = {
|
|
8056
8120
|
props: {
|
|
8057
8121
|
to: {
|
|
8058
8122
|
type: [Object, String]
|
|
@@ -8119,7 +8183,7 @@ const gg = {
|
|
|
8119
8183
|
}
|
|
8120
8184
|
}
|
|
8121
8185
|
};
|
|
8122
|
-
function
|
|
8186
|
+
function bg(e, t, n, r, s, i) {
|
|
8123
8187
|
return o(), k(ft(i.element), {
|
|
8124
8188
|
onClick: i.clicked,
|
|
8125
8189
|
to: n.to,
|
|
@@ -8128,13 +8192,13 @@ function vg(e, t, n, r, s, i) {
|
|
|
8128
8192
|
class: L([i.class, "ux-link"])
|
|
8129
8193
|
}, {
|
|
8130
8194
|
default: h(() => [
|
|
8131
|
-
|
|
8195
|
+
q(e.$slots, "default", {}, void 0, !0)
|
|
8132
8196
|
]),
|
|
8133
8197
|
_: 3
|
|
8134
8198
|
}, 8, ["onClick", "to", "href", "target", "class"]);
|
|
8135
8199
|
}
|
|
8136
|
-
const
|
|
8137
|
-
const
|
|
8200
|
+
const kg = /* @__PURE__ */ C(vg, [["render", bg], ["__scopeId", "data-v-f55db950"]]);
|
|
8201
|
+
const xg = {
|
|
8138
8202
|
props: {
|
|
8139
8203
|
icon: {
|
|
8140
8204
|
type: [Object, String]
|
|
@@ -8162,15 +8226,15 @@ const kg = {
|
|
|
8162
8226
|
}
|
|
8163
8227
|
}
|
|
8164
8228
|
};
|
|
8165
|
-
function
|
|
8229
|
+
function wg(e, t, n, r, s, i) {
|
|
8166
8230
|
return o(), k(ft(i.element), {
|
|
8167
8231
|
class: L(["ux-icon fa", i.classes])
|
|
8168
8232
|
}, null, 8, ["class"]);
|
|
8169
8233
|
}
|
|
8170
|
-
const
|
|
8234
|
+
const Sg = /* @__PURE__ */ C(xg, [["render", wg], ["__scopeId", "data-v-028189aa"]]), Jn = {
|
|
8171
8235
|
cache: {}
|
|
8172
8236
|
};
|
|
8173
|
-
const
|
|
8237
|
+
const Tg = {
|
|
8174
8238
|
props: {
|
|
8175
8239
|
group: {
|
|
8176
8240
|
type: String
|
|
@@ -8293,15 +8357,15 @@ const Sg = {
|
|
|
8293
8357
|
}
|
|
8294
8358
|
}
|
|
8295
8359
|
};
|
|
8296
|
-
function
|
|
8360
|
+
function Og(e, t, n, r, s, i) {
|
|
8297
8361
|
return o(), d("div", {
|
|
8298
8362
|
class: L(["ux-menu", { right: n.right }])
|
|
8299
8363
|
}, [
|
|
8300
8364
|
x("span", null, [
|
|
8301
|
-
|
|
8365
|
+
q(e.$slots, "activator", { on: i.on }, void 0, !0)
|
|
8302
8366
|
]),
|
|
8303
8367
|
(o(), k(Go, { to: "body" }, [
|
|
8304
|
-
s.isExpanded ?
|
|
8368
|
+
s.isExpanded ? Y((o(), d("div", {
|
|
8305
8369
|
key: 0,
|
|
8306
8370
|
class: "ux-menu-outer",
|
|
8307
8371
|
style: He(s.outerStyle)
|
|
@@ -8311,7 +8375,7 @@ function Tg(e, t, n, r, s, i) {
|
|
|
8311
8375
|
ref: "menu",
|
|
8312
8376
|
style: He(s.innerStyle)
|
|
8313
8377
|
}, [
|
|
8314
|
-
|
|
8378
|
+
q(e.$slots, "default", {}, void 0, !0)
|
|
8315
8379
|
], 4)
|
|
8316
8380
|
], 4)), [
|
|
8317
8381
|
[di, s.isVisible]
|
|
@@ -8319,8 +8383,8 @@ function Tg(e, t, n, r, s, i) {
|
|
|
8319
8383
|
]))
|
|
8320
8384
|
], 2);
|
|
8321
8385
|
}
|
|
8322
|
-
const
|
|
8323
|
-
const
|
|
8386
|
+
const Cg = /* @__PURE__ */ C(Tg, [["render", Og], ["__scopeId", "data-v-960ee754"]]);
|
|
8387
|
+
const Vg = {
|
|
8324
8388
|
name: "menulist",
|
|
8325
8389
|
props: {
|
|
8326
8390
|
items: {
|
|
@@ -8474,7 +8538,7 @@ const Cg = {
|
|
|
8474
8538
|
}
|
|
8475
8539
|
}
|
|
8476
8540
|
};
|
|
8477
|
-
function
|
|
8541
|
+
function Eg(e, t, n, r, s, i) {
|
|
8478
8542
|
const a = y("flex-cell"), l = y("ux-icon"), u = y("flex-row"), f = y("ux-link"), c = y("menulist", !0);
|
|
8479
8543
|
return o(), d("ul", null, [
|
|
8480
8544
|
(o(!0), d(S, null, F(i.filteredItems, (p) => {
|
|
@@ -8548,8 +8612,8 @@ function Vg(e, t, n, r, s, i) {
|
|
|
8548
8612
|
}), 128))
|
|
8549
8613
|
]);
|
|
8550
8614
|
}
|
|
8551
|
-
const
|
|
8552
|
-
const
|
|
8615
|
+
const Ag = /* @__PURE__ */ C(Vg, [["render", Eg], ["__scopeId", "data-v-3764c3fa"]]);
|
|
8616
|
+
const Mg = {
|
|
8553
8617
|
props: {
|
|
8554
8618
|
item: {
|
|
8555
8619
|
type: [Object, String]
|
|
@@ -8728,8 +8792,8 @@ const Ag = {
|
|
|
8728
8792
|
return t && t.length && (e.backgroundColor = t[0]), this.isSvg || this.preview && (e.backgroundImage = `url(${this.previewSrc})`), e;
|
|
8729
8793
|
}
|
|
8730
8794
|
}
|
|
8731
|
-
},
|
|
8732
|
-
function
|
|
8795
|
+
}, Dg = ["alt", "data"], Ig = ["loading", "alt", "src"];
|
|
8796
|
+
function Fg(e, t, n, r, s, i) {
|
|
8733
8797
|
return o(), d("div", {
|
|
8734
8798
|
class: L(["ux-image", i.className]),
|
|
8735
8799
|
style: He(i.style)
|
|
@@ -8739,18 +8803,18 @@ function Ig(e, t, n, r, s, i) {
|
|
|
8739
8803
|
alt: i.altText,
|
|
8740
8804
|
type: "image/svg+xml",
|
|
8741
8805
|
data: i.src
|
|
8742
|
-
}, null, 8,
|
|
8806
|
+
}, null, 8, Dg)) : (o(), d("img", {
|
|
8743
8807
|
key: 1,
|
|
8744
8808
|
ref: "img",
|
|
8745
8809
|
loading: i.loading,
|
|
8746
8810
|
alt: i.altText,
|
|
8747
8811
|
style: He(i.imageStyle),
|
|
8748
8812
|
src: i.src
|
|
8749
|
-
}, null, 12,
|
|
8813
|
+
}, null, 12, Ig))
|
|
8750
8814
|
], 6);
|
|
8751
8815
|
}
|
|
8752
|
-
const
|
|
8753
|
-
const
|
|
8816
|
+
const $g = /* @__PURE__ */ C(Mg, [["render", Fg], ["__scopeId", "data-v-8c3931c4"]]);
|
|
8817
|
+
const Ng = {
|
|
8754
8818
|
props: {
|
|
8755
8819
|
item: {
|
|
8756
8820
|
type: [Object, String]
|
|
@@ -8903,8 +8967,8 @@ const $g = {
|
|
|
8903
8967
|
return this.padHeight && (e.height = 0, e.paddingBottom = this.padHeight, e.overflow = "hidden", e.position = "relative"), e;
|
|
8904
8968
|
}
|
|
8905
8969
|
}
|
|
8906
|
-
},
|
|
8907
|
-
function
|
|
8970
|
+
}, Lg = ["playsinline", "muted", "loop", "autoplay", "width", "height", "controls"], Pg = ["src", "type"], Ug = ["width", "height", "src", "title"];
|
|
8971
|
+
function jg(e, t, n, r, s, i) {
|
|
8908
8972
|
return o(), d("div", {
|
|
8909
8973
|
class: L(["ux-video", i.className])
|
|
8910
8974
|
}, [
|
|
@@ -8925,9 +8989,9 @@ function Ug(e, t, n, r, s, i) {
|
|
|
8925
8989
|
x("source", {
|
|
8926
8990
|
src: i.src,
|
|
8927
8991
|
type: i.mimetype
|
|
8928
|
-
}, null, 8,
|
|
8992
|
+
}, null, 8, Pg),
|
|
8929
8993
|
T(" Your browser does not support the video tag. ")
|
|
8930
|
-
], 8,
|
|
8994
|
+
], 8, Lg)
|
|
8931
8995
|
], 4)) : _("", !0),
|
|
8932
8996
|
i.mediaType === "youtube" ? (o(), d("div", {
|
|
8933
8997
|
key: 1,
|
|
@@ -8942,12 +9006,12 @@ function Ug(e, t, n, r, s, i) {
|
|
|
8942
9006
|
frameborder: "0",
|
|
8943
9007
|
allow: "accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share",
|
|
8944
9008
|
allowfullscreen: ""
|
|
8945
|
-
}, null, 8,
|
|
9009
|
+
}, null, 8, Ug)
|
|
8946
9010
|
], 4)) : _("", !0)
|
|
8947
9011
|
], 2);
|
|
8948
9012
|
}
|
|
8949
|
-
const
|
|
8950
|
-
const
|
|
9013
|
+
const Rg = /* @__PURE__ */ C(Ng, [["render", jg], ["__scopeId", "data-v-d46f56d4"]]);
|
|
9014
|
+
const Bg = {
|
|
8951
9015
|
props: {
|
|
8952
9016
|
value: {
|
|
8953
9017
|
type: Number
|
|
@@ -8970,18 +9034,18 @@ const Rg = {
|
|
|
8970
9034
|
return "i";
|
|
8971
9035
|
}
|
|
8972
9036
|
}
|
|
8973
|
-
},
|
|
8974
|
-
function
|
|
8975
|
-
return o(), d("div",
|
|
8976
|
-
|
|
9037
|
+
}, 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));
|
|
9038
|
+
function Wg(e, t, n, r, s, i) {
|
|
9039
|
+
return o(), d("div", Hg, [
|
|
9040
|
+
qg,
|
|
8977
9041
|
x("div", {
|
|
8978
9042
|
class: "ux-progress-fg",
|
|
8979
9043
|
style: He(i.barStyle)
|
|
8980
9044
|
}, null, 4)
|
|
8981
9045
|
]);
|
|
8982
9046
|
}
|
|
8983
|
-
const
|
|
8984
|
-
const
|
|
9047
|
+
const Gg = /* @__PURE__ */ C(Bg, [["render", Wg], ["__scopeId", "data-v-b9019dd2"]]);
|
|
9048
|
+
const Kg = {
|
|
8985
9049
|
props: {
|
|
8986
9050
|
value: {},
|
|
8987
9051
|
tag: {
|
|
@@ -9020,7 +9084,7 @@ const Gg = {
|
|
|
9020
9084
|
}
|
|
9021
9085
|
}
|
|
9022
9086
|
};
|
|
9023
|
-
function
|
|
9087
|
+
function Yg(e, t, n, r, s, i) {
|
|
9024
9088
|
return o(), k(ft(i.elementType), {
|
|
9025
9089
|
class: L(["ux-pill", { "has-link": i.hasLink }]),
|
|
9026
9090
|
style: He(i.style)
|
|
@@ -9031,15 +9095,15 @@ function Kg(e, t, n, r, s, i) {
|
|
|
9031
9095
|
_: 1
|
|
9032
9096
|
}, 8, ["class", "style"]);
|
|
9033
9097
|
}
|
|
9034
|
-
const
|
|
9035
|
-
const
|
|
9036
|
-
function
|
|
9037
|
-
return o(), d("ul",
|
|
9038
|
-
|
|
9098
|
+
const Zg = /* @__PURE__ */ C(Kg, [["render", Yg], ["__scopeId", "data-v-223a8711"]]);
|
|
9099
|
+
const Jg = {}, Xg = { class: "ux-list" };
|
|
9100
|
+
function Qg(e, t) {
|
|
9101
|
+
return o(), d("ul", Xg, [
|
|
9102
|
+
q(e.$slots, "default", {}, void 0, !0)
|
|
9039
9103
|
]);
|
|
9040
9104
|
}
|
|
9041
|
-
const
|
|
9042
|
-
const
|
|
9105
|
+
const ev = /* @__PURE__ */ C(Jg, [["render", Qg], ["__scopeId", "data-v-98a2be3e"]]);
|
|
9106
|
+
const tv = {
|
|
9043
9107
|
props: {
|
|
9044
9108
|
to: {
|
|
9045
9109
|
type: [Object, String]
|
|
@@ -9060,7 +9124,7 @@ const ev = {
|
|
|
9060
9124
|
}
|
|
9061
9125
|
}
|
|
9062
9126
|
};
|
|
9063
|
-
function
|
|
9127
|
+
function nv(e, t, n, r, s, i) {
|
|
9064
9128
|
return o(), k(ft(i.element), {
|
|
9065
9129
|
class: "ux-list-item",
|
|
9066
9130
|
to: n.to,
|
|
@@ -9069,18 +9133,18 @@ function tv(e, t, n, r, s, i) {
|
|
|
9069
9133
|
disabled: n.disabled
|
|
9070
9134
|
}, {
|
|
9071
9135
|
default: h(() => [
|
|
9072
|
-
|
|
9136
|
+
q(e.$slots, "default", {}, void 0, !0)
|
|
9073
9137
|
]),
|
|
9074
9138
|
_: 3
|
|
9075
9139
|
}, 8, ["to", "href", "target", "disabled"]);
|
|
9076
9140
|
}
|
|
9077
|
-
const
|
|
9141
|
+
const iv = /* @__PURE__ */ C(tv, [["render", nv], ["__scopeId", "data-v-ebb9a7bc"]]);
|
|
9078
9142
|
function gn(e) {
|
|
9079
9143
|
var t = new Date(e);
|
|
9080
9144
|
if (t instanceof Date && !isNaN(t))
|
|
9081
9145
|
return t;
|
|
9082
9146
|
}
|
|
9083
|
-
const
|
|
9147
|
+
const rv = {
|
|
9084
9148
|
props: {
|
|
9085
9149
|
modelValue: {
|
|
9086
9150
|
type: Object
|
|
@@ -9119,8 +9183,8 @@ const iv = {
|
|
|
9119
9183
|
this.model = e;
|
|
9120
9184
|
}
|
|
9121
9185
|
}
|
|
9122
|
-
}, Ul = (e) => (
|
|
9123
|
-
function
|
|
9186
|
+
}, 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));
|
|
9187
|
+
function lv(e, t, n, r, s, i) {
|
|
9124
9188
|
const a = y("flex-cell"), l = y("flex-row");
|
|
9125
9189
|
return o(), d("div", null, [
|
|
9126
9190
|
m(l, {
|
|
@@ -9132,14 +9196,14 @@ function av(e, t, n, r, s, i) {
|
|
|
9132
9196
|
m(a, { class: "cell" }, {
|
|
9133
9197
|
default: h(() => [
|
|
9134
9198
|
x("div", null, [
|
|
9135
|
-
|
|
9136
|
-
|
|
9199
|
+
sv,
|
|
9200
|
+
Y(x("input", {
|
|
9137
9201
|
type: "date",
|
|
9138
9202
|
class: "ux-field-focus ux-text-input-multiple",
|
|
9139
9203
|
ref: "input",
|
|
9140
9204
|
"onUpdate:modelValue": t[0] || (t[0] = (u) => i.startDate = u)
|
|
9141
9205
|
}, null, 512), [
|
|
9142
|
-
[
|
|
9206
|
+
[ae, i.startDate]
|
|
9143
9207
|
])
|
|
9144
9208
|
])
|
|
9145
9209
|
]),
|
|
@@ -9148,14 +9212,14 @@ function av(e, t, n, r, s, i) {
|
|
|
9148
9212
|
m(a, { class: "cell" }, {
|
|
9149
9213
|
default: h(() => [
|
|
9150
9214
|
x("div", null, [
|
|
9151
|
-
|
|
9152
|
-
|
|
9215
|
+
av,
|
|
9216
|
+
Y(x("input", {
|
|
9153
9217
|
type: "date",
|
|
9154
9218
|
class: "ux-field-focus ux-text-input-multiple",
|
|
9155
9219
|
ref: "input",
|
|
9156
9220
|
"onUpdate:modelValue": t[1] || (t[1] = (u) => i.endDate = u)
|
|
9157
9221
|
}, null, 512), [
|
|
9158
|
-
[
|
|
9222
|
+
[ae, i.endDate]
|
|
9159
9223
|
])
|
|
9160
9224
|
])
|
|
9161
9225
|
]),
|
|
@@ -9166,8 +9230,8 @@ function av(e, t, n, r, s, i) {
|
|
|
9166
9230
|
})
|
|
9167
9231
|
]);
|
|
9168
9232
|
}
|
|
9169
|
-
const
|
|
9170
|
-
const
|
|
9233
|
+
const ov = /* @__PURE__ */ C(rv, [["render", lv], ["__scopeId", "data-v-dc53841d"]]);
|
|
9234
|
+
const uv = {
|
|
9171
9235
|
props: {
|
|
9172
9236
|
modelValue: {
|
|
9173
9237
|
type: [Object, Array]
|
|
@@ -9176,7 +9240,7 @@ const ov = {
|
|
|
9176
9240
|
components: {
|
|
9177
9241
|
NativeSelect: Ct
|
|
9178
9242
|
},
|
|
9179
|
-
mixins: [
|
|
9243
|
+
mixins: [ie],
|
|
9180
9244
|
async created() {
|
|
9181
9245
|
var e = await this.$sdk.system.countries(), t = e.reduce(function(n, r) {
|
|
9182
9246
|
if (!r.countryCallingCodes || !r.countryCallingCodes.length)
|
|
@@ -9226,25 +9290,25 @@ const ov = {
|
|
|
9226
9290
|
};
|
|
9227
9291
|
}
|
|
9228
9292
|
}
|
|
9229
|
-
},
|
|
9293
|
+
}, dv = (e) => (qe("data-v-d61960a4"), e = e(), We(), e), cv = {
|
|
9230
9294
|
key: 0,
|
|
9231
9295
|
class: "ux-field-title"
|
|
9232
|
-
},
|
|
9296
|
+
}, fv = {
|
|
9233
9297
|
key: 0,
|
|
9234
9298
|
class: "ux-required-marker"
|
|
9235
|
-
},
|
|
9299
|
+
}, mv = {
|
|
9236
9300
|
key: 1,
|
|
9237
9301
|
class: "ux-field-description"
|
|
9238
|
-
},
|
|
9239
|
-
function
|
|
9302
|
+
}, 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"];
|
|
9303
|
+
function wv(e, t, n, r, s, i) {
|
|
9240
9304
|
const a = y("ux-button"), l = y("native-select"), u = y("flex-cell"), f = y("ux-icon"), c = y("flex-row");
|
|
9241
9305
|
return o(), d(S, null, [
|
|
9242
|
-
e.showLabel ? (o(), d("label",
|
|
9306
|
+
e.showLabel ? (o(), d("label", cv, [
|
|
9243
9307
|
T(v(e.label) + " ", 1),
|
|
9244
|
-
e.required ? (o(), d("span",
|
|
9308
|
+
e.required ? (o(), d("span", fv, "*")) : _("", !0)
|
|
9245
9309
|
])) : _("", !0),
|
|
9246
|
-
e.showDescription ? (o(), d("div",
|
|
9247
|
-
e.multiValue ? (o(), d("div",
|
|
9310
|
+
e.showDescription ? (o(), d("div", mv, v(e.description), 1)) : _("", !0),
|
|
9311
|
+
e.multiValue ? (o(), d("div", hv, [
|
|
9248
9312
|
(o(!0), d(S, null, F(e.model, (p, g) => (o(), k(c, {
|
|
9249
9313
|
gap: "",
|
|
9250
9314
|
vcenter: "",
|
|
@@ -9264,7 +9328,7 @@ function xv(e, t, n, r, s, i) {
|
|
|
9264
9328
|
m(a, { tag: "a" }, {
|
|
9265
9329
|
default: h(() => [
|
|
9266
9330
|
p.countryCode ? (o(), d(S, { key: 1 }, [
|
|
9267
|
-
s.lookup[p.countryCode] ? (o(), d("div",
|
|
9331
|
+
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
9332
|
], 64)) : (o(), d(S, { key: 0 }, [
|
|
9269
9333
|
T(" Country Code ")
|
|
9270
9334
|
], 64))
|
|
@@ -9279,8 +9343,8 @@ function xv(e, t, n, r, s, i) {
|
|
|
9279
9343
|
}, 1024),
|
|
9280
9344
|
m(u, null, {
|
|
9281
9345
|
default: h(() => [
|
|
9282
|
-
x("div",
|
|
9283
|
-
|
|
9346
|
+
x("div", _v, [
|
|
9347
|
+
Y(x("input", {
|
|
9284
9348
|
class: "ux-field-focus ux-text-input-multiple",
|
|
9285
9349
|
placeholder: i.actualPlaceholder,
|
|
9286
9350
|
onFocus: t[0] || (t[0] = (...b) => e.touch && e.touch(...b)),
|
|
@@ -9288,8 +9352,8 @@ function xv(e, t, n, r, s, i) {
|
|
|
9288
9352
|
ref: "input",
|
|
9289
9353
|
onKeydown: t[1] || (t[1] = ge(z((b) => e.add(), ["stop", "prevent"]), ["enter"])),
|
|
9290
9354
|
"onUpdate:modelValue": (b) => p.number = b
|
|
9291
|
-
}, null, 40,
|
|
9292
|
-
[
|
|
9355
|
+
}, null, 40, gv), [
|
|
9356
|
+
[ae, p.number]
|
|
9293
9357
|
])
|
|
9294
9358
|
])
|
|
9295
9359
|
]),
|
|
@@ -9338,14 +9402,14 @@ function xv(e, t, n, r, s, i) {
|
|
|
9338
9402
|
default: h(() => [
|
|
9339
9403
|
m(u, { shrink: "" }, {
|
|
9340
9404
|
default: h(() => [
|
|
9341
|
-
|
|
9405
|
+
Y(x("select", {
|
|
9342
9406
|
class: "ux-country-code-select",
|
|
9343
9407
|
"onUpdate:modelValue": t[3] || (t[3] = (p) => e.model.countryCode = p)
|
|
9344
9408
|
}, [
|
|
9345
|
-
|
|
9409
|
+
vv,
|
|
9346
9410
|
(o(!0), d(S, null, F(s.countryCodes, (p) => (o(), d("option", {
|
|
9347
9411
|
value: p.value
|
|
9348
|
-
}, v(p.title), 9,
|
|
9412
|
+
}, v(p.title), 9, bv))), 256))
|
|
9349
9413
|
], 512), [
|
|
9350
9414
|
[Tt, e.model.countryCode]
|
|
9351
9415
|
])
|
|
@@ -9354,16 +9418,16 @@ function xv(e, t, n, r, s, i) {
|
|
|
9354
9418
|
}),
|
|
9355
9419
|
m(u, null, {
|
|
9356
9420
|
default: h(() => [
|
|
9357
|
-
x("div",
|
|
9358
|
-
|
|
9421
|
+
x("div", kv, [
|
|
9422
|
+
Y(x("input", {
|
|
9359
9423
|
class: "ux-field-focus ux-text-input-multiple",
|
|
9360
9424
|
placeholder: i.actualPlaceholder,
|
|
9361
9425
|
onFocus: t[4] || (t[4] = (...p) => e.touch && e.touch(...p)),
|
|
9362
9426
|
ref: "input",
|
|
9363
9427
|
onKeydown: t[5] || (t[5] = ge(z((p) => e.add(), ["stop", "prevent"]), ["enter"])),
|
|
9364
9428
|
"onUpdate:modelValue": t[6] || (t[6] = (p) => e.model.number = p)
|
|
9365
|
-
}, null, 40,
|
|
9366
|
-
[
|
|
9429
|
+
}, null, 40, xv), [
|
|
9430
|
+
[ae, e.model.number]
|
|
9367
9431
|
])
|
|
9368
9432
|
])
|
|
9369
9433
|
]),
|
|
@@ -9374,24 +9438,24 @@ function xv(e, t, n, r, s, i) {
|
|
|
9374
9438
|
}))
|
|
9375
9439
|
], 64);
|
|
9376
9440
|
}
|
|
9377
|
-
const
|
|
9378
|
-
function
|
|
9441
|
+
const Sv = /* @__PURE__ */ C(uv, [["render", wv], ["__scopeId", "data-v-d61960a4"]]);
|
|
9442
|
+
function Tv(e) {
|
|
9379
9443
|
return e === void 0 || typeof e > "u" || e === null || String(e) === "null" || String(e) === "undefined";
|
|
9380
9444
|
}
|
|
9381
|
-
const
|
|
9445
|
+
const Ov = {
|
|
9382
9446
|
props: {
|
|
9383
9447
|
modelValue: {
|
|
9384
9448
|
type: String
|
|
9385
9449
|
}
|
|
9386
9450
|
},
|
|
9387
|
-
mixins: [
|
|
9451
|
+
mixins: [ie],
|
|
9388
9452
|
created() {
|
|
9389
9453
|
this.model = this.model;
|
|
9390
9454
|
},
|
|
9391
9455
|
methods: {
|
|
9392
9456
|
cleanOutput(e) {
|
|
9393
9457
|
var t = this;
|
|
9394
|
-
return
|
|
9458
|
+
return Tv(e) ? t.multiValue ? e = [] : e = void 0 : t.multiValue ? e = (e || []).filter(Boolean).map(function(n) {
|
|
9395
9459
|
return t.getValue(n);
|
|
9396
9460
|
}) : e = t.getValue(e), e;
|
|
9397
9461
|
},
|
|
@@ -9894,34 +9958,34 @@ const Tv = {
|
|
|
9894
9958
|
return this.options;
|
|
9895
9959
|
}
|
|
9896
9960
|
}
|
|
9897
|
-
},
|
|
9961
|
+
}, Cv = {
|
|
9898
9962
|
key: 0,
|
|
9899
9963
|
class: "ux-field-title"
|
|
9900
|
-
},
|
|
9964
|
+
}, Vv = {
|
|
9901
9965
|
key: 0,
|
|
9902
9966
|
class: "ux-required-marker"
|
|
9903
|
-
},
|
|
9967
|
+
}, Ev = {
|
|
9904
9968
|
key: 1,
|
|
9905
9969
|
class: "ux-field-description"
|
|
9906
|
-
},
|
|
9970
|
+
}, Av = {
|
|
9907
9971
|
key: 2,
|
|
9908
9972
|
class: "ui-select-button"
|
|
9909
|
-
},
|
|
9973
|
+
}, Mv = ["multiple"], Dv = {
|
|
9910
9974
|
key: 0,
|
|
9911
9975
|
value: ""
|
|
9912
|
-
},
|
|
9913
|
-
function
|
|
9976
|
+
}, Iv = ["value"];
|
|
9977
|
+
function Fv(e, t, n, r, s, i) {
|
|
9914
9978
|
const a = y("ux-button");
|
|
9915
9979
|
return o(), d("div", {
|
|
9916
9980
|
class: L(["native-select", i.classes])
|
|
9917
9981
|
}, [
|
|
9918
|
-
e.showLabel ? (o(), d("label",
|
|
9982
|
+
e.showLabel ? (o(), d("label", Cv, [
|
|
9919
9983
|
T(v(e.label) + " ", 1),
|
|
9920
|
-
e.required ? (o(), d("span",
|
|
9984
|
+
e.required ? (o(), d("span", Vv, "*")) : _("", !0)
|
|
9921
9985
|
])) : _("", !0),
|
|
9922
|
-
e.showDescription ? (o(), d("div",
|
|
9923
|
-
e.singleValue ? (o(), d("div",
|
|
9924
|
-
|
|
9986
|
+
e.showDescription ? (o(), d("div", Ev, v(e.description), 1)) : _("", !0),
|
|
9987
|
+
e.singleValue ? (o(), d("div", Av, [
|
|
9988
|
+
q(e.$slots, "default", {}, () => [
|
|
9925
9989
|
m(a, { tag: "div" }, {
|
|
9926
9990
|
default: h(() => [
|
|
9927
9991
|
T(v(i.summary), 1)
|
|
@@ -9930,22 +9994,22 @@ function Iv(e, t, n, r, s, i) {
|
|
|
9930
9994
|
})
|
|
9931
9995
|
], !0)
|
|
9932
9996
|
])) : _("", !0),
|
|
9933
|
-
|
|
9997
|
+
Y(x("select", {
|
|
9934
9998
|
onFocus: t[0] || (t[0] = (...l) => e.touch && e.touch(...l)),
|
|
9935
9999
|
multiple: e.multiValue,
|
|
9936
10000
|
"onUpdate:modelValue": t[1] || (t[1] = (l) => e.model = l)
|
|
9937
10001
|
}, [
|
|
9938
|
-
e.singleValue && !e.minimum ? (o(), d("option",
|
|
10002
|
+
e.singleValue && !e.minimum ? (o(), d("option", Dv, "None")) : _("", !0),
|
|
9939
10003
|
(o(!0), d(S, null, F(i.selectableOptions, (l) => (o(), d("option", {
|
|
9940
10004
|
value: l.value
|
|
9941
|
-
}, v(l.title), 9,
|
|
9942
|
-
], 40,
|
|
10005
|
+
}, v(l.title), 9, Iv))), 256))
|
|
10006
|
+
], 40, Mv), [
|
|
9943
10007
|
[Tt, e.model]
|
|
9944
10008
|
])
|
|
9945
10009
|
], 2);
|
|
9946
10010
|
}
|
|
9947
|
-
const
|
|
9948
|
-
const
|
|
10011
|
+
const $v = /* @__PURE__ */ C(Ov, [["render", Fv], ["__scopeId", "data-v-9c322e6d"]]);
|
|
10012
|
+
const Nv = {
|
|
9949
10013
|
props: {
|
|
9950
10014
|
manual: {
|
|
9951
10015
|
type: Boolean
|
|
@@ -9988,7 +10052,7 @@ const $v = {
|
|
|
9988
10052
|
}
|
|
9989
10053
|
}
|
|
9990
10054
|
};
|
|
9991
|
-
function
|
|
10055
|
+
function Lv(e, t, n, r, s, i) {
|
|
9992
10056
|
const a = y("ux-image"), l = y("flex-cell"), u = y("flex-row");
|
|
9993
10057
|
return o(), d("div", {
|
|
9994
10058
|
class: "content-item",
|
|
@@ -10023,7 +10087,7 @@ function Nv(e, t, n, r, s, i) {
|
|
|
10023
10087
|
default: h(() => [
|
|
10024
10088
|
m(l, null, {
|
|
10025
10089
|
default: h(() => [
|
|
10026
|
-
|
|
10090
|
+
q(e.$slots, "default", {}, () => [
|
|
10027
10091
|
T(v(i.title), 1)
|
|
10028
10092
|
], !0)
|
|
10029
10093
|
]),
|
|
@@ -10034,7 +10098,7 @@ function Nv(e, t, n, r, s, i) {
|
|
|
10034
10098
|
}),
|
|
10035
10099
|
m(l, { shrink: "" }, {
|
|
10036
10100
|
default: h(() => [
|
|
10037
|
-
|
|
10101
|
+
q(e.$slots, "actions", {}, void 0, !0)
|
|
10038
10102
|
]),
|
|
10039
10103
|
_: 3
|
|
10040
10104
|
})
|
|
@@ -10043,7 +10107,7 @@ function Nv(e, t, n, r, s, i) {
|
|
|
10043
10107
|
})
|
|
10044
10108
|
]);
|
|
10045
10109
|
}
|
|
10046
|
-
const jl = /* @__PURE__ */ C(
|
|
10110
|
+
const jl = /* @__PURE__ */ C(Nv, [["render", Lv], ["__scopeId", "data-v-2ce8bfb1"]]);
|
|
10047
10111
|
/**!
|
|
10048
10112
|
* Sortable 1.14.0
|
|
10049
10113
|
* @author RubaXa <trash@rubaxa.org>
|
|
@@ -10064,7 +10128,7 @@ function ut(e) {
|
|
|
10064
10128
|
for (var t = 1; t < arguments.length; t++) {
|
|
10065
10129
|
var n = arguments[t] != null ? arguments[t] : {};
|
|
10066
10130
|
t % 2 ? Bs(Object(n), !0).forEach(function(r) {
|
|
10067
|
-
|
|
10131
|
+
Pv(e, r, n[r]);
|
|
10068
10132
|
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(n)) : Bs(Object(n)).forEach(function(r) {
|
|
10069
10133
|
Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(n, r));
|
|
10070
10134
|
});
|
|
@@ -10078,7 +10142,7 @@ function si(e) {
|
|
|
10078
10142
|
return t && typeof Symbol == "function" && t.constructor === Symbol && t !== Symbol.prototype ? "symbol" : typeof t;
|
|
10079
10143
|
}, si(e);
|
|
10080
10144
|
}
|
|
10081
|
-
function
|
|
10145
|
+
function Pv(e, t, n) {
|
|
10082
10146
|
return t in e ? Object.defineProperty(e, t, {
|
|
10083
10147
|
value: n,
|
|
10084
10148
|
enumerable: !0,
|
|
@@ -10096,7 +10160,7 @@ function ht() {
|
|
|
10096
10160
|
return e;
|
|
10097
10161
|
}, ht.apply(this, arguments);
|
|
10098
10162
|
}
|
|
10099
|
-
function
|
|
10163
|
+
function Uv(e, t) {
|
|
10100
10164
|
if (e == null)
|
|
10101
10165
|
return {};
|
|
10102
10166
|
var n = {}, r = Object.keys(e), s, i;
|
|
@@ -10104,10 +10168,10 @@ function Pv(e, t) {
|
|
|
10104
10168
|
s = r[i], !(t.indexOf(s) >= 0) && (n[s] = e[s]);
|
|
10105
10169
|
return n;
|
|
10106
10170
|
}
|
|
10107
|
-
function
|
|
10171
|
+
function jv(e, t) {
|
|
10108
10172
|
if (e == null)
|
|
10109
10173
|
return {};
|
|
10110
|
-
var n =
|
|
10174
|
+
var n = Uv(e, t), r, s;
|
|
10111
10175
|
if (Object.getOwnPropertySymbols) {
|
|
10112
10176
|
var i = Object.getOwnPropertySymbols(e);
|
|
10113
10177
|
for (s = 0; s < i.length; s++)
|
|
@@ -10115,16 +10179,16 @@ function Uv(e, t) {
|
|
|
10115
10179
|
}
|
|
10116
10180
|
return n;
|
|
10117
10181
|
}
|
|
10118
|
-
var
|
|
10182
|
+
var Rv = "1.14.0";
|
|
10119
10183
|
function ct(e) {
|
|
10120
10184
|
if (typeof window < "u" && window.navigator)
|
|
10121
10185
|
return !!/* @__PURE__ */ navigator.userAgent.match(e);
|
|
10122
10186
|
}
|
|
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),
|
|
10187
|
+
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
10188
|
capture: !1,
|
|
10125
10189
|
passive: !1
|
|
10126
10190
|
};
|
|
10127
|
-
function
|
|
10191
|
+
function ne(e, t, n) {
|
|
10128
10192
|
e.addEventListener(t, n, !pt && Bl);
|
|
10129
10193
|
}
|
|
10130
10194
|
function X(e, t, n) {
|
|
@@ -10146,7 +10210,7 @@ function yi(e, t) {
|
|
|
10146
10210
|
return !1;
|
|
10147
10211
|
}
|
|
10148
10212
|
}
|
|
10149
|
-
function
|
|
10213
|
+
function zv(e) {
|
|
10150
10214
|
return e.host && e !== document && e.host.nodeType ? e.host : e.parentNode;
|
|
10151
10215
|
}
|
|
10152
10216
|
function lt(e, t, n, r) {
|
|
@@ -10157,7 +10221,7 @@ function lt(e, t, n, r) {
|
|
|
10157
10221
|
return e;
|
|
10158
10222
|
if (e === n)
|
|
10159
10223
|
break;
|
|
10160
|
-
} while (e =
|
|
10224
|
+
} while (e = zv(e));
|
|
10161
10225
|
}
|
|
10162
10226
|
return null;
|
|
10163
10227
|
}
|
|
@@ -10257,7 +10321,7 @@ function Hr(e, t) {
|
|
|
10257
10321
|
n = n.previousElementSibling;
|
|
10258
10322
|
return n || null;
|
|
10259
10323
|
}
|
|
10260
|
-
function
|
|
10324
|
+
function Ke(e, t) {
|
|
10261
10325
|
var n = 0;
|
|
10262
10326
|
if (!e || !e.parentNode)
|
|
10263
10327
|
return -1;
|
|
@@ -10274,7 +10338,7 @@ function Ws(e) {
|
|
|
10274
10338
|
} while (e !== r && (e = e.parentNode));
|
|
10275
10339
|
return [t, n];
|
|
10276
10340
|
}
|
|
10277
|
-
function
|
|
10341
|
+
function Hv(e, t) {
|
|
10278
10342
|
for (var n in e)
|
|
10279
10343
|
if (e.hasOwnProperty(n)) {
|
|
10280
10344
|
for (var r in t)
|
|
@@ -10301,7 +10365,7 @@ function St(e, t) {
|
|
|
10301
10365
|
while (n = n.parentNode);
|
|
10302
10366
|
return ot();
|
|
10303
10367
|
}
|
|
10304
|
-
function
|
|
10368
|
+
function qv(e, t) {
|
|
10305
10369
|
if (e && t)
|
|
10306
10370
|
for (var n in t)
|
|
10307
10371
|
t.hasOwnProperty(n) && (e[n] = t[n]);
|
|
@@ -10321,7 +10385,7 @@ function Hl(e, t) {
|
|
|
10321
10385
|
}
|
|
10322
10386
|
};
|
|
10323
10387
|
}
|
|
10324
|
-
function
|
|
10388
|
+
function Wv() {
|
|
10325
10389
|
clearTimeout(Cn), Cn = void 0;
|
|
10326
10390
|
}
|
|
10327
10391
|
function ql(e, t, n) {
|
|
@@ -10332,7 +10396,7 @@ function Wl(e) {
|
|
|
10332
10396
|
return t && t.dom ? t.dom(e).cloneNode(!0) : n ? n(e).clone(!0)[0] : e.cloneNode(!0);
|
|
10333
10397
|
}
|
|
10334
10398
|
var Be = "Sortable" + new Date().getTime();
|
|
10335
|
-
function
|
|
10399
|
+
function Gv() {
|
|
10336
10400
|
var e = [], t;
|
|
10337
10401
|
return {
|
|
10338
10402
|
captureAnimationState: function() {
|
|
@@ -10358,7 +10422,7 @@ function Wv() {
|
|
|
10358
10422
|
e.push(r);
|
|
10359
10423
|
},
|
|
10360
10424
|
removeAnimationState: function(r) {
|
|
10361
|
-
e.splice(
|
|
10425
|
+
e.splice(Hv(e, {
|
|
10362
10426
|
target: r
|
|
10363
10427
|
}), 1);
|
|
10364
10428
|
},
|
|
@@ -10372,7 +10436,7 @@ function Wv() {
|
|
|
10372
10436
|
e.forEach(function(l) {
|
|
10373
10437
|
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
10438
|
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 =
|
|
10439
|
+
(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
10440
|
f.animationTime = 0, f.prevFromRect = null, f.fromRect = null, f.prevToRect = null, f.thisAnimationDuration = null;
|
|
10377
10441
|
}, u), f.thisAnimationDuration = u);
|
|
10378
10442
|
}), clearTimeout(t), i ? t = setTimeout(function() {
|
|
@@ -10383,17 +10447,17 @@ function Wv() {
|
|
|
10383
10447
|
if (a) {
|
|
10384
10448
|
R(r, "transition", ""), R(r, "transform", "");
|
|
10385
10449
|
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 =
|
|
10450
|
+
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
10451
|
R(r, "transition", ""), R(r, "transform", ""), r.animated = !1, r.animatingX = !1, r.animatingY = !1;
|
|
10388
10452
|
}, a);
|
|
10389
10453
|
}
|
|
10390
10454
|
}
|
|
10391
10455
|
};
|
|
10392
10456
|
}
|
|
10393
|
-
function
|
|
10457
|
+
function Kv(e) {
|
|
10394
10458
|
return e.offsetWidth;
|
|
10395
10459
|
}
|
|
10396
|
-
function
|
|
10460
|
+
function Yv(e, t, n, r) {
|
|
10397
10461
|
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
10462
|
}
|
|
10399
10463
|
var Wt = [], Yi = {
|
|
@@ -10448,26 +10512,26 @@ var Wt = [], Yi = {
|
|
|
10448
10512
|
}), s;
|
|
10449
10513
|
}
|
|
10450
10514
|
};
|
|
10451
|
-
function
|
|
10515
|
+
function Zv(e) {
|
|
10452
10516
|
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
10517
|
if (t = t || n && n[Be], !!t) {
|
|
10454
|
-
var O, j = t.options,
|
|
10518
|
+
var O, j = t.options, H = "on" + r.charAt(0).toUpperCase() + r.substr(1);
|
|
10455
10519
|
window.CustomEvent && !pt && !Pn ? O = new CustomEvent(r, {
|
|
10456
10520
|
bubbles: !0,
|
|
10457
10521
|
cancelable: !0
|
|
10458
10522
|
}) : (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[
|
|
10523
|
+
var D = ut(ut({}, w), Un.getEventProperties(r, t));
|
|
10524
|
+
for (var ee in D)
|
|
10525
|
+
O[ee] = D[ee];
|
|
10526
|
+
n && n.dispatchEvent(O), j[H] && j[H].call(t, O);
|
|
10463
10527
|
}
|
|
10464
10528
|
}
|
|
10465
|
-
var
|
|
10466
|
-
var r = arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : {}, s = r.evt, i =
|
|
10529
|
+
var Jv = ["evt"], Le = function(t, n) {
|
|
10530
|
+
var r = arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : {}, s = r.evt, i = jv(r, Jv);
|
|
10467
10531
|
Un.pluginEvent.bind(B)(t, n, ut({
|
|
10468
|
-
dragEl:
|
|
10532
|
+
dragEl: M,
|
|
10469
10533
|
parentEl: me,
|
|
10470
|
-
ghostEl:
|
|
10534
|
+
ghostEl: K,
|
|
10471
10535
|
rootEl: ce,
|
|
10472
10536
|
nextEl: $t,
|
|
10473
10537
|
lastDownEl: ai,
|
|
@@ -10499,10 +10563,10 @@ var Zv = ["evt"], Le = function(t, n) {
|
|
|
10499
10563
|
}, i));
|
|
10500
10564
|
};
|
|
10501
10565
|
function Fe(e) {
|
|
10502
|
-
|
|
10566
|
+
Zv(ut({
|
|
10503
10567
|
putSortable: Se,
|
|
10504
10568
|
cloneEl: he,
|
|
10505
|
-
targetEl:
|
|
10569
|
+
targetEl: M,
|
|
10506
10570
|
rootEl: ce,
|
|
10507
10571
|
oldIndex: Zt,
|
|
10508
10572
|
oldDraggableIndex: Vn,
|
|
@@ -10510,7 +10574,7 @@ function Fe(e) {
|
|
|
10510
10574
|
newDraggableIndex: kt
|
|
10511
10575
|
}, e));
|
|
10512
10576
|
}
|
|
10513
|
-
var
|
|
10577
|
+
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
10578
|
if (Fi) {
|
|
10515
10579
|
if (pt)
|
|
10516
10580
|
return !1;
|
|
@@ -10528,10 +10592,10 @@ var D, me, G, ce, $t, ai, he, wt, Zt, je, Vn, kt, Xn, Se, Kt = !1, _i = !1, gi =
|
|
|
10528
10592
|
return a && (u.clear === "both" || u.clear === p) ? "vertical" : "horizontal";
|
|
10529
10593
|
}
|
|
10530
10594
|
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
|
-
},
|
|
10595
|
+
}, Qv = function(t, n, r) {
|
|
10532
10596
|
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
10597
|
return s === l || i === u || s + a / 2 === l + f / 2;
|
|
10534
|
-
},
|
|
10598
|
+
}, e1 = function(t, n) {
|
|
10535
10599
|
var r;
|
|
10536
10600
|
return gi.some(function(s) {
|
|
10537
10601
|
var i = s[Be].options.emptyInsertThreshold;
|
|
@@ -10562,18 +10626,18 @@ var D, me, G, ce, $t, ai, he, wt, Zt, je, Vn, kt, Xn, Se, Kt = !1, _i = !1, gi =
|
|
|
10562
10626
|
name: s
|
|
10563
10627
|
}), r.name = s.name, r.checkPull = n(s.pull, !0), r.checkPut = n(s.put), r.revertClone = s.revertClone, t.group = r;
|
|
10564
10628
|
}, Zl = function() {
|
|
10565
|
-
!Gl &&
|
|
10629
|
+
!Gl && K && R(K, "display", "none");
|
|
10566
10630
|
}, Jl = function() {
|
|
10567
|
-
!Gl &&
|
|
10631
|
+
!Gl && K && R(K, "display", "");
|
|
10568
10632
|
};
|
|
10569
10633
|
Fi && document.addEventListener("click", function(e) {
|
|
10570
10634
|
if (_i)
|
|
10571
10635
|
return e.preventDefault(), e.stopPropagation && e.stopPropagation(), e.stopImmediatePropagation && e.stopImmediatePropagation(), _i = !1, !1;
|
|
10572
10636
|
}, !0);
|
|
10573
10637
|
var It = function(t) {
|
|
10574
|
-
if (
|
|
10638
|
+
if (M) {
|
|
10575
10639
|
t = t.touches ? t.touches[0] : t;
|
|
10576
|
-
var n =
|
|
10640
|
+
var n = e1(t.clientX, t.clientY);
|
|
10577
10641
|
if (n) {
|
|
10578
10642
|
var r = {};
|
|
10579
10643
|
for (var s in t)
|
|
@@ -10581,8 +10645,8 @@ var It = function(t) {
|
|
|
10581
10645
|
r.target = r.rootEl = n, r.preventDefault = void 0, r.stopPropagation = void 0, n[Be]._onDragOver(r);
|
|
10582
10646
|
}
|
|
10583
10647
|
}
|
|
10584
|
-
},
|
|
10585
|
-
|
|
10648
|
+
}, t1 = function(t) {
|
|
10649
|
+
M && M.parentNode[Be]._isOutsideThisEl(t.target);
|
|
10586
10650
|
};
|
|
10587
10651
|
function B(e, t) {
|
|
10588
10652
|
if (!(e && e.nodeType && e.nodeType === 1))
|
|
@@ -10639,7 +10703,7 @@ function B(e, t) {
|
|
|
10639
10703
|
Yl(t);
|
|
10640
10704
|
for (var s in this)
|
|
10641
10705
|
s.charAt(0) === "_" && typeof this[s] == "function" && (this[s] = this[s].bind(this));
|
|
10642
|
-
this.nativeDraggable = t.forceFallback ? !1 :
|
|
10706
|
+
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
10707
|
}
|
|
10644
10708
|
B.prototype = /** @lends Sortable.prototype */
|
|
10645
10709
|
{
|
|
@@ -10648,13 +10712,13 @@ B.prototype = /** @lends Sortable.prototype */
|
|
|
10648
10712
|
!this.el.contains(t) && t !== this.el && (Gt = null);
|
|
10649
10713
|
},
|
|
10650
10714
|
_getDirection: function(t, n) {
|
|
10651
|
-
return typeof this.options.direction == "function" ? this.options.direction.call(this, t, n,
|
|
10715
|
+
return typeof this.options.direction == "function" ? this.options.direction.call(this, t, n, M) : this.options.direction;
|
|
10652
10716
|
},
|
|
10653
10717
|
_onTapStart: function(t) {
|
|
10654
10718
|
if (t.cancelable) {
|
|
10655
10719
|
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 =
|
|
10720
|
+
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)) {
|
|
10721
|
+
if (Zt = Ke(u), Vn = Ke(u, s.draggable), typeof c == "function") {
|
|
10658
10722
|
if (c.call(this, t, u, this)) {
|
|
10659
10723
|
Fe({
|
|
10660
10724
|
sortable: n,
|
|
@@ -10690,34 +10754,34 @@ B.prototype = /** @lends Sortable.prototype */
|
|
|
10690
10754
|
},
|
|
10691
10755
|
_prepareDragStart: function(t, n, r) {
|
|
10692
10756
|
var s = this, i = s.el, a = s.options, l = i.ownerDocument, u;
|
|
10693
|
-
if (r && !
|
|
10757
|
+
if (r && !M && r.parentNode === i) {
|
|
10694
10758
|
var f = be(r);
|
|
10695
|
-
if (ce = i,
|
|
10696
|
-
target:
|
|
10759
|
+
if (ce = i, M = r, me = M.parentNode, $t = M.nextSibling, ai = r, Xn = a.group, B.dragged = M, Dt = {
|
|
10760
|
+
target: M,
|
|
10697
10761
|
clientX: (n || t).clientX,
|
|
10698
10762
|
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,
|
|
10763
|
+
}, 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
10764
|
if (Le("delayEnded", s, {
|
|
10701
10765
|
evt: t
|
|
10702
10766
|
}), B.eventCanceled) {
|
|
10703
10767
|
s._onDrop();
|
|
10704
10768
|
return;
|
|
10705
10769
|
}
|
|
10706
|
-
s._disableDelayedDragEvents(), !zs && s.nativeDraggable && (
|
|
10770
|
+
s._disableDelayedDragEvents(), !zs && s.nativeDraggable && (M.draggable = !0), s._triggerDragStart(t, n), Fe({
|
|
10707
10771
|
sortable: s,
|
|
10708
10772
|
name: "choose",
|
|
10709
10773
|
originalEvent: t
|
|
10710
|
-
}), Ue(
|
|
10774
|
+
}), Ue(M, a.chosenClass, !0);
|
|
10711
10775
|
}, a.ignore.split(",").forEach(function(c) {
|
|
10712
|
-
zl(
|
|
10713
|
-
}),
|
|
10776
|
+
zl(M, c.trim(), Qi);
|
|
10777
|
+
}), 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
10778
|
evt: t
|
|
10715
10779
|
}), a.delay && (!a.delayOnTouchOnly || n) && (!this.nativeDraggable || !(Pn || pt))) {
|
|
10716
10780
|
if (B.eventCanceled) {
|
|
10717
10781
|
this._onDrop();
|
|
10718
10782
|
return;
|
|
10719
10783
|
}
|
|
10720
|
-
|
|
10784
|
+
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
10785
|
} else
|
|
10722
10786
|
u();
|
|
10723
10787
|
}
|
|
@@ -10727,14 +10791,14 @@ B.prototype = /** @lends Sortable.prototype */
|
|
|
10727
10791
|
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
10792
|
},
|
|
10729
10793
|
_disableDelayedDrag: function() {
|
|
10730
|
-
|
|
10794
|
+
M && Qi(M), clearTimeout(this._dragStartTimer), this._disableDelayedDragEvents();
|
|
10731
10795
|
},
|
|
10732
10796
|
_disableDelayedDragEvents: function() {
|
|
10733
10797
|
var t = this.el.ownerDocument;
|
|
10734
10798
|
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
10799
|
},
|
|
10736
10800
|
_triggerDragStart: function(t, n) {
|
|
10737
|
-
n = n || t.pointerType == "touch" && t, !this.nativeDraggable || n ? this.options.supportPointer ?
|
|
10801
|
+
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
10802
|
try {
|
|
10739
10803
|
document.selection ? oi(function() {
|
|
10740
10804
|
document.selection.empty();
|
|
@@ -10743,12 +10807,12 @@ B.prototype = /** @lends Sortable.prototype */
|
|
|
10743
10807
|
}
|
|
10744
10808
|
},
|
|
10745
10809
|
_dragStarted: function(t, n) {
|
|
10746
|
-
if (Kt = !1, ce &&
|
|
10810
|
+
if (Kt = !1, ce && M) {
|
|
10747
10811
|
Le("dragStarted", this, {
|
|
10748
10812
|
evt: n
|
|
10749
|
-
}), this.nativeDraggable &&
|
|
10813
|
+
}), this.nativeDraggable && ne(document, "dragover", t1);
|
|
10750
10814
|
var r = this.options;
|
|
10751
|
-
!t && Ue(
|
|
10815
|
+
!t && Ue(M, r.dragClass, !1), Ue(M, r.ghostClass, !0), B.active = this, t && this._appendGhost(), Fe({
|
|
10752
10816
|
sortable: this,
|
|
10753
10817
|
name: "start",
|
|
10754
10818
|
originalEvent: n
|
|
@@ -10761,7 +10825,7 @@ B.prototype = /** @lends Sortable.prototype */
|
|
|
10761
10825
|
this._lastX = et.clientX, this._lastY = et.clientY, Zl();
|
|
10762
10826
|
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
10827
|
n = t;
|
|
10764
|
-
if (
|
|
10828
|
+
if (M.parentNode[Be]._isOutsideThisEl(t), n)
|
|
10765
10829
|
do {
|
|
10766
10830
|
if (n[Be]) {
|
|
10767
10831
|
var r = void 0;
|
|
@@ -10780,13 +10844,13 @@ B.prototype = /** @lends Sortable.prototype */
|
|
|
10780
10844
|
},
|
|
10781
10845
|
_onTouchMove: function(t) {
|
|
10782
10846
|
if (Dt) {
|
|
10783
|
-
var n = this.options, r = n.fallbackTolerance, s = n.fallbackOffset, i = t.touches ? t.touches[0] : t, a =
|
|
10847
|
+
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
10848
|
if (!B.active && !Kt) {
|
|
10785
10849
|
if (r && Math.max(Math.abs(i.clientX - this._lastX), Math.abs(i.clientY - this._lastY)) < r)
|
|
10786
10850
|
return;
|
|
10787
10851
|
this._onDragStart(t, !0);
|
|
10788
10852
|
}
|
|
10789
|
-
if (
|
|
10853
|
+
if (K) {
|
|
10790
10854
|
a ? (a.e += c - (Zi || 0), a.f += p - (Ji || 0)) : a = {
|
|
10791
10855
|
a: 1,
|
|
10792
10856
|
b: 0,
|
|
@@ -10796,20 +10860,20 @@ B.prototype = /** @lends Sortable.prototype */
|
|
|
10796
10860
|
f: p
|
|
10797
10861
|
};
|
|
10798
10862
|
var g = "matrix(".concat(a.a, ",").concat(a.b, ",").concat(a.c, ",").concat(a.d, ",").concat(a.e, ",").concat(a.f, ")");
|
|
10799
|
-
R(
|
|
10863
|
+
R(K, "webkitTransform", g), R(K, "mozTransform", g), R(K, "msTransform", g), R(K, "transform", g), Zi = c, Ji = p, et = i;
|
|
10800
10864
|
}
|
|
10801
10865
|
t.cancelable && t.preventDefault();
|
|
10802
10866
|
}
|
|
10803
10867
|
},
|
|
10804
10868
|
_appendGhost: function() {
|
|
10805
|
-
if (!
|
|
10806
|
-
var t = this.options.fallbackOnBody ? document.body : ce, n = be(
|
|
10869
|
+
if (!K) {
|
|
10870
|
+
var t = this.options.fallbackOnBody ? document.body : ce, n = be(M, !0, ei, !0, t), r = this.options;
|
|
10807
10871
|
if (ei) {
|
|
10808
10872
|
for (Ee = t; R(Ee, "position") === "static" && R(Ee, "transform") === "none" && Ee !== document; )
|
|
10809
10873
|
Ee = Ee.parentNode;
|
|
10810
10874
|
Ee !== document.body && Ee !== document.documentElement ? (Ee === document && (Ee = ot()), n.top += Ee.scrollTop, n.left += Ee.scrollLeft) : Ee = ot(), Xi = Ws(Ee);
|
|
10811
10875
|
}
|
|
10812
|
-
|
|
10876
|
+
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
10877
|
}
|
|
10814
10878
|
},
|
|
10815
10879
|
_onDragStart: function(t, n) {
|
|
@@ -10820,12 +10884,12 @@ B.prototype = /** @lends Sortable.prototype */
|
|
|
10820
10884
|
this._onDrop();
|
|
10821
10885
|
return;
|
|
10822
10886
|
}
|
|
10823
|
-
Le("setupClone", this), B.eventCanceled || (he = Wl(
|
|
10824
|
-
Le("clone", r), !B.eventCanceled && (r.options.removeCloneOnHide || ce.insertBefore(he,
|
|
10887
|
+
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() {
|
|
10888
|
+
Le("clone", r), !B.eventCanceled && (r.options.removeCloneOnHide || ce.insertBefore(he, M), r._hideClone(), Fe({
|
|
10825
10889
|
sortable: r,
|
|
10826
10890
|
name: "clone"
|
|
10827
10891
|
}));
|
|
10828
|
-
}), !n && Ue(
|
|
10892
|
+
}), !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
10893
|
},
|
|
10830
10894
|
// Returns true - if no further action is needed (either inserted or another condition)
|
|
10831
10895
|
_onDragOver: function(t) {
|
|
@@ -10843,25 +10907,25 @@ B.prototype = /** @lends Sortable.prototype */
|
|
|
10843
10907
|
canSort: p,
|
|
10844
10908
|
fromSortable: g,
|
|
10845
10909
|
target: r,
|
|
10846
|
-
completed:
|
|
10910
|
+
completed: D,
|
|
10847
10911
|
onMove: function(rt, Vt) {
|
|
10848
|
-
return ti(ce, n,
|
|
10912
|
+
return ti(ce, n, M, s, rt, be(rt), t, Vt);
|
|
10849
10913
|
},
|
|
10850
|
-
changed:
|
|
10914
|
+
changed: ee
|
|
10851
10915
|
}, Rt));
|
|
10852
10916
|
}
|
|
10853
|
-
function
|
|
10917
|
+
function H() {
|
|
10854
10918
|
j("dragOverAnimationCapture"), w.captureAnimationState(), w !== g && g.captureAnimationState();
|
|
10855
10919
|
}
|
|
10856
|
-
function
|
|
10920
|
+
function D(it) {
|
|
10857
10921
|
return j("dragOverCompleted", {
|
|
10858
10922
|
insertion: it
|
|
10859
|
-
}), it && (c ? f._hideClone() : f._showClone(w), w !== g && (Ue(
|
|
10923
|
+
}), 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
10924
|
j("dragOverAnimationComplete"), w._ignoreWhileAnimating = null;
|
|
10861
|
-
}), w !== g && (g.animateAll(), g._ignoreWhileAnimating = null)), (r ===
|
|
10925
|
+
}), 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
10926
|
}
|
|
10863
|
-
function
|
|
10864
|
-
je =
|
|
10927
|
+
function ee() {
|
|
10928
|
+
je = Ke(M), kt = Ke(M, l.draggable), Fe({
|
|
10865
10929
|
sortable: w,
|
|
10866
10930
|
name: "change",
|
|
10867
10931
|
toEl: n,
|
|
@@ -10872,47 +10936,47 @@ B.prototype = /** @lends Sortable.prototype */
|
|
|
10872
10936
|
}
|
|
10873
10937
|
if (t.preventDefault !== void 0 && t.cancelable && t.preventDefault(), r = lt(r, l.draggable, n, !0), j("dragOver"), B.eventCanceled)
|
|
10874
10938
|
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(
|
|
10939
|
+
if (M.contains(t.target) || r.animated && r.animatingX && r.animatingY || w._ignoreWhileAnimating === r)
|
|
10940
|
+
return D(!1);
|
|
10941
|
+
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))) {
|
|
10942
|
+
if (b = this._getDirection(t, r) === "vertical", s = be(M), j("dragOverValid"), B.eventCanceled)
|
|
10879
10943
|
return O;
|
|
10880
10944
|
if (a)
|
|
10881
|
-
return me = ce,
|
|
10882
|
-
var
|
|
10883
|
-
if (!
|
|
10884
|
-
if (
|
|
10885
|
-
return
|
|
10886
|
-
if (
|
|
10887
|
-
return
|
|
10888
|
-
} else if (
|
|
10945
|
+
return me = ce, H(), this._hideClone(), j("revert"), B.eventCanceled || ($t ? ce.insertBefore(M, $t) : ce.appendChild(M)), D(!0);
|
|
10946
|
+
var re = Hr(n, l.draggable);
|
|
10947
|
+
if (!re || s1(t, b, this) && !re.animated) {
|
|
10948
|
+
if (re === M)
|
|
10949
|
+
return D(!1);
|
|
10950
|
+
if (re && n === t.target && (r = re), r && (i = be(r)), ti(ce, n, M, s, r, i, t, !!r) !== !1)
|
|
10951
|
+
return H(), n.appendChild(M), me = n, ee(), D(!0);
|
|
10952
|
+
} else if (re && r1(t, b, this)) {
|
|
10889
10953
|
var ue = nn(n, 0, l, !0);
|
|
10890
|
-
if (ue ===
|
|
10891
|
-
return
|
|
10892
|
-
if (r = ue, i = be(r), ti(ce, n,
|
|
10893
|
-
return
|
|
10954
|
+
if (ue === M)
|
|
10955
|
+
return D(!1);
|
|
10956
|
+
if (r = ue, i = be(r), ti(ce, n, M, s, r, i, t, !1) !== !1)
|
|
10957
|
+
return H(), n.insertBefore(M, ue), me = n, ee(), D(!0);
|
|
10894
10958
|
} else if (r.parentNode === n) {
|
|
10895
10959
|
i = be(r);
|
|
10896
|
-
var
|
|
10897
|
-
Gt !== r && ($ = i[Me], An = !1, Qn = !
|
|
10960
|
+
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;
|
|
10961
|
+
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
10962
|
var Oe;
|
|
10899
|
-
if (
|
|
10900
|
-
var Ce =
|
|
10963
|
+
if (W !== 0) {
|
|
10964
|
+
var Ce = Ke(M);
|
|
10901
10965
|
do
|
|
10902
|
-
Ce -=
|
|
10903
|
-
while (Oe && (R(Oe, "display") === "none" || Oe ===
|
|
10966
|
+
Ce -= W, Oe = me.children[Ce];
|
|
10967
|
+
while (Oe && (R(Oe, "display") === "none" || Oe === K));
|
|
10904
10968
|
}
|
|
10905
|
-
if (
|
|
10906
|
-
return
|
|
10907
|
-
Gt = r, En =
|
|
10969
|
+
if (W === 0 || Oe === r)
|
|
10970
|
+
return D(!1);
|
|
10971
|
+
Gt = r, En = W;
|
|
10908
10972
|
var Ne = r.nextElementSibling, Ve = !1;
|
|
10909
|
-
Ve =
|
|
10910
|
-
var yt = ti(ce, n,
|
|
10973
|
+
Ve = W === 1;
|
|
10974
|
+
var yt = ti(ce, n, M, s, r, i, t, Ve);
|
|
10911
10975
|
if (yt !== !1)
|
|
10912
|
-
return (yt === 1 || yt === -1) && (Ve = yt === 1), xr = !0, setTimeout(
|
|
10976
|
+
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
10977
|
}
|
|
10914
|
-
if (n.contains(
|
|
10915
|
-
return
|
|
10978
|
+
if (n.contains(M))
|
|
10979
|
+
return D(!1);
|
|
10916
10980
|
}
|
|
10917
10981
|
return !1;
|
|
10918
10982
|
},
|
|
@@ -10926,13 +10990,13 @@ B.prototype = /** @lends Sortable.prototype */
|
|
|
10926
10990
|
},
|
|
10927
10991
|
_onDrop: function(t) {
|
|
10928
10992
|
var n = this.el, r = this.options;
|
|
10929
|
-
if (je =
|
|
10993
|
+
if (je = Ke(M), kt = Ke(M, r.draggable), Le("drop", this, {
|
|
10930
10994
|
evt: t
|
|
10931
|
-
}), me =
|
|
10995
|
+
}), me = M && M.parentNode, je = Ke(M), kt = Ke(M, r.draggable), B.eventCanceled) {
|
|
10932
10996
|
this._nulling();
|
|
10933
10997
|
return;
|
|
10934
10998
|
}
|
|
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(
|
|
10999
|
+
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
11000
|
sortable: this,
|
|
10937
11001
|
name: "unchoose",
|
|
10938
11002
|
toEl: me,
|
|
@@ -10979,7 +11043,7 @@ B.prototype = /** @lends Sortable.prototype */
|
|
|
10979
11043
|
}), this.save()))), this._nulling();
|
|
10980
11044
|
},
|
|
10981
11045
|
_nulling: function() {
|
|
10982
|
-
Le("nulling", this), ce =
|
|
11046
|
+
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
11047
|
t.checked = !0;
|
|
10984
11048
|
}), vi.length = Zi = Ji = 0;
|
|
10985
11049
|
},
|
|
@@ -10991,7 +11055,7 @@ B.prototype = /** @lends Sortable.prototype */
|
|
|
10991
11055
|
break;
|
|
10992
11056
|
case "dragenter":
|
|
10993
11057
|
case "dragover":
|
|
10994
|
-
|
|
11058
|
+
M && (this._onDragOver(t), n1(t));
|
|
10995
11059
|
break;
|
|
10996
11060
|
case "selectstart":
|
|
10997
11061
|
t.preventDefault();
|
|
@@ -11004,7 +11068,7 @@ B.prototype = /** @lends Sortable.prototype */
|
|
|
11004
11068
|
*/
|
|
11005
11069
|
toArray: function() {
|
|
11006
11070
|
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) ||
|
|
11071
|
+
n = r[s], lt(n, a.draggable, this.el, !1) && t.push(n.getAttribute(a.dataIdAttr) || o1(n));
|
|
11008
11072
|
return t;
|
|
11009
11073
|
},
|
|
11010
11074
|
/**
|
|
@@ -11074,11 +11138,11 @@ B.prototype = /** @lends Sortable.prototype */
|
|
|
11074
11138
|
if (wt) {
|
|
11075
11139
|
if (Le("showClone", this), B.eventCanceled)
|
|
11076
11140
|
return;
|
|
11077
|
-
|
|
11141
|
+
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
11142
|
}
|
|
11079
11143
|
}
|
|
11080
11144
|
};
|
|
11081
|
-
function
|
|
11145
|
+
function n1(e) {
|
|
11082
11146
|
e.dataTransfer && (e.dataTransfer.dropEffect = "move"), e.cancelable && e.preventDefault();
|
|
11083
11147
|
}
|
|
11084
11148
|
function ti(e, t, n, r, s, i, a, l) {
|
|
@@ -11091,18 +11155,18 @@ function ti(e, t, n, r, s, i, a, l) {
|
|
|
11091
11155
|
function Qi(e) {
|
|
11092
11156
|
e.draggable = !1;
|
|
11093
11157
|
}
|
|
11094
|
-
function
|
|
11158
|
+
function i1() {
|
|
11095
11159
|
xr = !1;
|
|
11096
11160
|
}
|
|
11097
|
-
function
|
|
11161
|
+
function r1(e, t, n) {
|
|
11098
11162
|
var r = be(nn(n.el, 0, n.options, !0)), s = 10;
|
|
11099
11163
|
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
11164
|
}
|
|
11101
|
-
function
|
|
11165
|
+
function s1(e, t, n) {
|
|
11102
11166
|
var r = be(Hr(n.el, n.options.draggable)), s = 10;
|
|
11103
11167
|
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
11168
|
}
|
|
11105
|
-
function
|
|
11169
|
+
function a1(e, t, n, r, s, i, a, l) {
|
|
11106
11170
|
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
11171
|
if (!a) {
|
|
11108
11172
|
if (l && li < f * s) {
|
|
@@ -11111,19 +11175,19 @@ function s1(e, t, n, r, s, i, a, l) {
|
|
|
11111
11175
|
else if (En === 1 ? u < c + li : u > p - li)
|
|
11112
11176
|
return -En;
|
|
11113
11177
|
} else if (u > c + f * (1 - s) / 2 && u < p - f * (1 - s) / 2)
|
|
11114
|
-
return
|
|
11178
|
+
return l1(t);
|
|
11115
11179
|
}
|
|
11116
11180
|
return g = g || a, g && (u < c + f * i / 2 || u > p - f * i / 2) ? u > c + f / 2 ? 1 : -1 : 0;
|
|
11117
11181
|
}
|
|
11118
|
-
function a1(e) {
|
|
11119
|
-
return We(D) < We(e) ? 1 : -1;
|
|
11120
|
-
}
|
|
11121
11182
|
function l1(e) {
|
|
11183
|
+
return Ke(M) < Ke(e) ? 1 : -1;
|
|
11184
|
+
}
|
|
11185
|
+
function o1(e) {
|
|
11122
11186
|
for (var t = e.tagName + e.className + e.src + e.href + e.textContent, n = t.length, r = 0; n--; )
|
|
11123
11187
|
r += t.charCodeAt(n);
|
|
11124
11188
|
return r.toString(36);
|
|
11125
11189
|
}
|
|
11126
|
-
function
|
|
11190
|
+
function u1(e) {
|
|
11127
11191
|
vi.length = 0;
|
|
11128
11192
|
for (var t = e.getElementsByTagName("input"), n = t.length; n--; ) {
|
|
11129
11193
|
var r = t[n];
|
|
@@ -11136,23 +11200,23 @@ function oi(e) {
|
|
|
11136
11200
|
function wr(e) {
|
|
11137
11201
|
return clearTimeout(e);
|
|
11138
11202
|
}
|
|
11139
|
-
Fi &&
|
|
11203
|
+
Fi && ne(document, "touchmove", function(e) {
|
|
11140
11204
|
(B.active || Kt) && e.cancelable && e.preventDefault();
|
|
11141
11205
|
});
|
|
11142
11206
|
B.utils = {
|
|
11143
|
-
on:
|
|
11207
|
+
on: ne,
|
|
11144
11208
|
off: X,
|
|
11145
11209
|
css: R,
|
|
11146
11210
|
find: zl,
|
|
11147
11211
|
is: function(t, n) {
|
|
11148
11212
|
return !!lt(t, n, t, !1);
|
|
11149
11213
|
},
|
|
11150
|
-
extend:
|
|
11214
|
+
extend: qv,
|
|
11151
11215
|
throttle: Hl,
|
|
11152
11216
|
closest: lt,
|
|
11153
11217
|
toggleClass: Ue,
|
|
11154
11218
|
clone: Wl,
|
|
11155
|
-
index:
|
|
11219
|
+
index: Ke,
|
|
11156
11220
|
nextTick: oi,
|
|
11157
11221
|
cancelNextTick: wr,
|
|
11158
11222
|
detectDirection: Kl,
|
|
@@ -11173,9 +11237,9 @@ B.mount = function() {
|
|
|
11173
11237
|
B.create = function(e, t) {
|
|
11174
11238
|
return new B(e, t);
|
|
11175
11239
|
};
|
|
11176
|
-
B.version =
|
|
11240
|
+
B.version = Rv;
|
|
11177
11241
|
var ye = [], wn, Sr, Tr = !1, er, tr, bi, Sn;
|
|
11178
|
-
function
|
|
11242
|
+
function d1() {
|
|
11179
11243
|
function e() {
|
|
11180
11244
|
this.defaults = {
|
|
11181
11245
|
scroll: !0,
|
|
@@ -11190,14 +11254,14 @@ function u1() {
|
|
|
11190
11254
|
return e.prototype = {
|
|
11191
11255
|
dragStarted: function(n) {
|
|
11192
11256
|
var r = n.originalEvent;
|
|
11193
|
-
this.sortable.nativeDraggable ?
|
|
11257
|
+
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
11258
|
},
|
|
11195
11259
|
dragOverCompleted: function(n) {
|
|
11196
11260
|
var r = n.originalEvent;
|
|
11197
11261
|
!this.options.dragOverBubble && !r.rootEl && this._handleAutoScroll(r);
|
|
11198
11262
|
},
|
|
11199
11263
|
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(),
|
|
11264
|
+
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
11265
|
},
|
|
11202
11266
|
nulling: function() {
|
|
11203
11267
|
bi = Sr = wn = Tr = Sn = er = tr = null, ye.length = 0;
|
|
@@ -11241,9 +11305,9 @@ var nr = Hl(function(e, t, n, r) {
|
|
|
11241
11305
|
Sr !== n && (Sr = n, ui(), wn = t.scroll, c = t.scrollFn, wn === !0 && (wn = St(n, !0)));
|
|
11242
11306
|
var p = 0, g = wn;
|
|
11243
11307
|
do {
|
|
11244
|
-
var b = g, w = be(b), O = w.top, j = w.bottom,
|
|
11245
|
-
b === u ? (ue =
|
|
11246
|
-
var we = ue && (Math.abs(
|
|
11308
|
+
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;
|
|
11309
|
+
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"));
|
|
11310
|
+
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
11311
|
if (!ye[p])
|
|
11248
11312
|
for (var Ce = 0; Ce <= p; Ce++)
|
|
11249
11313
|
ye[Ce] || (ye[Ce] = {});
|
|
@@ -11300,7 +11364,7 @@ Wr.prototype = {
|
|
|
11300
11364
|
ht(Wr, {
|
|
11301
11365
|
pluginName: "removeOnSpill"
|
|
11302
11366
|
});
|
|
11303
|
-
B.mount(new
|
|
11367
|
+
B.mount(new d1());
|
|
11304
11368
|
B.mount(Wr, qr);
|
|
11305
11369
|
function ir(e) {
|
|
11306
11370
|
e.parentElement !== null && e.parentElement.removeChild(e);
|
|
@@ -11309,25 +11373,25 @@ function Js(e, t, n) {
|
|
|
11309
11373
|
const r = n === 0 ? e.children[0] : e.children[n - 1].nextSibling;
|
|
11310
11374
|
e.insertBefore(t, r);
|
|
11311
11375
|
}
|
|
11312
|
-
function
|
|
11376
|
+
function c1() {
|
|
11313
11377
|
return typeof window < "u" ? window.console : global.console;
|
|
11314
11378
|
}
|
|
11315
|
-
const
|
|
11316
|
-
function
|
|
11379
|
+
const f1 = c1();
|
|
11380
|
+
function m1(e) {
|
|
11317
11381
|
const t = /* @__PURE__ */ Object.create(null);
|
|
11318
11382
|
return function(r) {
|
|
11319
11383
|
return t[r] || (t[r] = e(r));
|
|
11320
11384
|
};
|
|
11321
11385
|
}
|
|
11322
|
-
const
|
|
11386
|
+
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
11387
|
manage: to,
|
|
11324
11388
|
manageAndEmit: Ql,
|
|
11325
11389
|
emit: eo
|
|
11326
11390
|
};
|
|
11327
|
-
function
|
|
11328
|
-
return
|
|
11391
|
+
function _1(e) {
|
|
11392
|
+
return y1.indexOf(e) !== -1;
|
|
11329
11393
|
}
|
|
11330
|
-
const
|
|
11394
|
+
const g1 = [
|
|
11331
11395
|
"a",
|
|
11332
11396
|
"abbr",
|
|
11333
11397
|
"address",
|
|
@@ -11446,10 +11510,10 @@ const _1 = [
|
|
|
11446
11510
|
"video",
|
|
11447
11511
|
"wbr"
|
|
11448
11512
|
];
|
|
11449
|
-
function g1(e) {
|
|
11450
|
-
return _1.includes(e);
|
|
11451
|
-
}
|
|
11452
11513
|
function v1(e) {
|
|
11514
|
+
return g1.includes(e);
|
|
11515
|
+
}
|
|
11516
|
+
function b1(e) {
|
|
11453
11517
|
return ["transition-group", "TransitionGroup"].includes(e);
|
|
11454
11518
|
}
|
|
11455
11519
|
function no(e) {
|
|
@@ -11458,7 +11522,7 @@ function no(e) {
|
|
|
11458
11522
|
function io(e) {
|
|
11459
11523
|
return e.reduce((t, [n, r]) => (t[n] = r, t), {});
|
|
11460
11524
|
}
|
|
11461
|
-
function
|
|
11525
|
+
function k1({ $attrs: e, componentData: t = {} }) {
|
|
11462
11526
|
return {
|
|
11463
11527
|
...io(
|
|
11464
11528
|
Object.entries(e).filter(([r, s]) => no(r))
|
|
@@ -11466,7 +11530,7 @@ function b1({ $attrs: e, componentData: t = {} }) {
|
|
|
11466
11530
|
...t
|
|
11467
11531
|
};
|
|
11468
11532
|
}
|
|
11469
|
-
function
|
|
11533
|
+
function x1({ $attrs: e, callBackBuilder: t }) {
|
|
11470
11534
|
const n = io(ro(e));
|
|
11471
11535
|
Object.entries(t).forEach(([s, i]) => {
|
|
11472
11536
|
Or[s].forEach((a) => {
|
|
@@ -11480,10 +11544,10 @@ function k1({ $attrs: e, callBackBuilder: t }) {
|
|
|
11480
11544
|
};
|
|
11481
11545
|
}
|
|
11482
11546
|
function ro(e) {
|
|
11483
|
-
return Object.entries(e).filter(([t, n]) => !no(t)).map(([t, n]) => [
|
|
11547
|
+
return Object.entries(e).filter(([t, n]) => !no(t)).map(([t, n]) => [p1(t), n]).filter(([t, n]) => !_1(t));
|
|
11484
11548
|
}
|
|
11485
|
-
const Xs = ({ el: e }) => e,
|
|
11486
|
-
class
|
|
11549
|
+
const Xs = ({ el: e }) => e, w1 = (e, t) => e.__draggable_context = t, Qs = (e) => e.__draggable_context;
|
|
11550
|
+
class S1 {
|
|
11487
11551
|
constructor({
|
|
11488
11552
|
nodes: { header: t, default: n, footer: r },
|
|
11489
11553
|
root: s,
|
|
@@ -11501,7 +11565,7 @@ class w1 {
|
|
|
11501
11565
|
updated() {
|
|
11502
11566
|
const { defaultNodes: t, realList: n } = this;
|
|
11503
11567
|
t.forEach((r, s) => {
|
|
11504
|
-
|
|
11568
|
+
w1(Xs(r), {
|
|
11505
11569
|
element: n[s],
|
|
11506
11570
|
index: s
|
|
11507
11571
|
});
|
|
@@ -11525,13 +11589,13 @@ class w1 {
|
|
|
11525
11589
|
return t < f ? 0 : s;
|
|
11526
11590
|
}
|
|
11527
11591
|
}
|
|
11528
|
-
function
|
|
11592
|
+
function T1(e, t) {
|
|
11529
11593
|
const n = e[t];
|
|
11530
11594
|
return n ? n() : [];
|
|
11531
11595
|
}
|
|
11532
|
-
function
|
|
11596
|
+
function O1({ $slots: e, realList: t, getKey: n }) {
|
|
11533
11597
|
const r = t || [], [s, i] = ["header", "footer"].map(
|
|
11534
|
-
(u) =>
|
|
11598
|
+
(u) => T1(e, u)
|
|
11535
11599
|
), { item: a } = e;
|
|
11536
11600
|
if (!a)
|
|
11537
11601
|
throw new Error("draggable element must have an item slot");
|
|
@@ -11546,17 +11610,17 @@ function T1({ $slots: e, realList: t, getKey: n }) {
|
|
|
11546
11610
|
default: l
|
|
11547
11611
|
};
|
|
11548
11612
|
}
|
|
11549
|
-
function
|
|
11550
|
-
const t =
|
|
11613
|
+
function C1(e) {
|
|
11614
|
+
const t = b1(e), n = !v1(e) && !t;
|
|
11551
11615
|
return {
|
|
11552
11616
|
transition: t,
|
|
11553
11617
|
externalComponent: n,
|
|
11554
11618
|
tag: n ? y(e) : t ? Ko : e
|
|
11555
11619
|
};
|
|
11556
11620
|
}
|
|
11557
|
-
function
|
|
11558
|
-
const s =
|
|
11559
|
-
return new
|
|
11621
|
+
function V1({ $slots: e, tag: t, realList: n, getKey: r }) {
|
|
11622
|
+
const s = O1({ $slots: e, realList: n, getKey: r }), i = C1(t);
|
|
11623
|
+
return new S1({ nodes: s, root: i, realList: n });
|
|
11560
11624
|
}
|
|
11561
11625
|
function so(e, t) {
|
|
11562
11626
|
Sa(() => this.$emit(e.toLowerCase(), t));
|
|
@@ -11567,14 +11631,14 @@ function ao(e) {
|
|
|
11567
11631
|
return this[`onDrag${e}`](t, n);
|
|
11568
11632
|
};
|
|
11569
11633
|
}
|
|
11570
|
-
function
|
|
11634
|
+
function E1(e) {
|
|
11571
11635
|
const t = ao.call(this, e);
|
|
11572
11636
|
return (n, r) => {
|
|
11573
11637
|
t.call(this, n, r), so.call(this, e, n);
|
|
11574
11638
|
};
|
|
11575
11639
|
}
|
|
11576
11640
|
let rr = null;
|
|
11577
|
-
const
|
|
11641
|
+
const A1 = {
|
|
11578
11642
|
list: {
|
|
11579
11643
|
type: Array,
|
|
11580
11644
|
required: !1,
|
|
@@ -11606,15 +11670,15 @@ const E1 = {
|
|
|
11606
11670
|
required: !1,
|
|
11607
11671
|
default: null
|
|
11608
11672
|
}
|
|
11609
|
-
},
|
|
11673
|
+
}, M1 = [
|
|
11610
11674
|
"update:modelValue",
|
|
11611
11675
|
"change",
|
|
11612
11676
|
...[...Or.manageAndEmit, ...Or.emit].map((e) => e.toLowerCase())
|
|
11613
11677
|
], lo = Vr({
|
|
11614
11678
|
name: "draggable",
|
|
11615
11679
|
inheritAttrs: !1,
|
|
11616
|
-
props:
|
|
11617
|
-
emits:
|
|
11680
|
+
props: A1,
|
|
11681
|
+
emits: M1,
|
|
11618
11682
|
data() {
|
|
11619
11683
|
return {
|
|
11620
11684
|
error: !1
|
|
@@ -11623,21 +11687,21 @@ const E1 = {
|
|
|
11623
11687
|
render() {
|
|
11624
11688
|
try {
|
|
11625
11689
|
this.error = !1;
|
|
11626
|
-
const { $slots: e, $attrs: t, tag: n, componentData: r, realList: s, getKey: i } = this, a =
|
|
11690
|
+
const { $slots: e, $attrs: t, tag: n, componentData: r, realList: s, getKey: i } = this, a = V1({
|
|
11627
11691
|
$slots: e,
|
|
11628
11692
|
tag: n,
|
|
11629
11693
|
realList: s,
|
|
11630
11694
|
getKey: i
|
|
11631
11695
|
});
|
|
11632
11696
|
this.componentStructure = a;
|
|
11633
|
-
const l =
|
|
11697
|
+
const l = k1({ $attrs: t, componentData: r });
|
|
11634
11698
|
return a.render(mr, l);
|
|
11635
11699
|
} catch (e) {
|
|
11636
11700
|
return this.error = !0, mr("pre", { style: { color: "red" } }, e.stack);
|
|
11637
11701
|
}
|
|
11638
11702
|
},
|
|
11639
11703
|
created() {
|
|
11640
|
-
this.list !== null && this.modelValue !== null &&
|
|
11704
|
+
this.list !== null && this.modelValue !== null && f1.error(
|
|
11641
11705
|
"modelValue and list props are mutually exclusive! Please set one or another."
|
|
11642
11706
|
);
|
|
11643
11707
|
},
|
|
@@ -11646,10 +11710,10 @@ const E1 = {
|
|
|
11646
11710
|
return;
|
|
11647
11711
|
const { $attrs: e, $el: t, componentStructure: n } = this;
|
|
11648
11712
|
n.updated();
|
|
11649
|
-
const r =
|
|
11713
|
+
const r = x1({
|
|
11650
11714
|
$attrs: e,
|
|
11651
11715
|
callBackBuilder: {
|
|
11652
|
-
manageAndEmit: (i) =>
|
|
11716
|
+
manageAndEmit: (i) => E1.call(this, i),
|
|
11653
11717
|
emit: (i) => so.bind(this, i),
|
|
11654
11718
|
manage: (i) => ao.call(this, i)
|
|
11655
11719
|
}
|
|
@@ -11785,7 +11849,7 @@ function ea(e, t) {
|
|
|
11785
11849
|
let n = e.title.toUpperCase(), r = t.title.toUpperCase();
|
|
11786
11850
|
return n < r ? -1 : n > r ? 1 : 0;
|
|
11787
11851
|
}
|
|
11788
|
-
const
|
|
11852
|
+
const D1 = {
|
|
11789
11853
|
components: {
|
|
11790
11854
|
Item: jl,
|
|
11791
11855
|
draggable: lo
|
|
@@ -11795,7 +11859,7 @@ const M1 = {
|
|
|
11795
11859
|
type: [Object, Array]
|
|
11796
11860
|
}
|
|
11797
11861
|
},
|
|
11798
|
-
mixins: [
|
|
11862
|
+
mixins: [ie],
|
|
11799
11863
|
async created() {
|
|
11800
11864
|
this.glossary = await this.$sdk.content.glossary({ hash: !0 }), this.value = this.cleanInput(this.value, !0), this.dispatch();
|
|
11801
11865
|
},
|
|
@@ -11914,27 +11978,27 @@ const M1 = {
|
|
|
11914
11978
|
return this.model ? this.showList ? "Click to select" : this.model.title || this.model.name || this.model.firstName : "Click to select";
|
|
11915
11979
|
}
|
|
11916
11980
|
}
|
|
11917
|
-
},
|
|
11981
|
+
}, I1 = {
|
|
11918
11982
|
key: 0,
|
|
11919
11983
|
class: "ux-field-title"
|
|
11920
|
-
},
|
|
11984
|
+
}, F1 = {
|
|
11921
11985
|
key: 0,
|
|
11922
11986
|
class: "ux-required-marker"
|
|
11923
|
-
},
|
|
11987
|
+
}, $1 = {
|
|
11924
11988
|
key: 1,
|
|
11925
11989
|
class: "ux-field-description"
|
|
11926
|
-
},
|
|
11990
|
+
}, N1 = {
|
|
11927
11991
|
key: 1,
|
|
11928
11992
|
class: "items"
|
|
11929
11993
|
};
|
|
11930
|
-
function
|
|
11994
|
+
function L1(e, t, n, r, s, i) {
|
|
11931
11995
|
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
11996
|
return o(), d(S, null, [
|
|
11933
|
-
e.showLabel ? (o(), d("label",
|
|
11997
|
+
e.showLabel ? (o(), d("label", I1, [
|
|
11934
11998
|
T(v(e.label) + " ", 1),
|
|
11935
|
-
e.required ? (o(), d("span",
|
|
11999
|
+
e.required ? (o(), d("span", F1, "*")) : _("", !0)
|
|
11936
12000
|
])) : _("", !0),
|
|
11937
|
-
e.showDescription ? (o(), d("div",
|
|
12001
|
+
e.showDescription ? (o(), d("div", $1, v(e.description), 1)) : _("", !0),
|
|
11938
12002
|
i.showList ? (o(), d(S, { key: 2 }, [
|
|
11939
12003
|
e.multiValue ? (o(), d(S, { key: 0 }, [
|
|
11940
12004
|
e.model && e.model.length ? (o(), k(f, {
|
|
@@ -11987,7 +12051,7 @@ function N1(e, t, n, r, s, i) {
|
|
|
11987
12051
|
]),
|
|
11988
12052
|
_: 1
|
|
11989
12053
|
}, 8, ["modelValue"])) : _("", !0)
|
|
11990
|
-
], 64)) : e.model ? (o(), d("div",
|
|
12054
|
+
], 64)) : e.model ? (o(), d("div", N1, [
|
|
11991
12055
|
m(u, { item: e.model }, {
|
|
11992
12056
|
actions: h(() => [
|
|
11993
12057
|
m(l, {
|
|
@@ -12080,11 +12144,11 @@ function N1(e, t, n, r, s, i) {
|
|
|
12080
12144
|
})) : _("", !0)
|
|
12081
12145
|
], 64);
|
|
12082
12146
|
}
|
|
12083
|
-
const oo = /* @__PURE__ */ C(
|
|
12084
|
-
function
|
|
12147
|
+
const oo = /* @__PURE__ */ C(D1, [["render", L1], ["__scopeId", "data-v-406dd647"]]);
|
|
12148
|
+
function P1(e) {
|
|
12085
12149
|
return e === void 0 || typeof e > "u" || e === null || String(e) === "null" || String(e) === "undefined";
|
|
12086
12150
|
}
|
|
12087
|
-
const
|
|
12151
|
+
const U1 = {
|
|
12088
12152
|
props: {
|
|
12089
12153
|
title: {
|
|
12090
12154
|
type: String
|
|
@@ -12093,7 +12157,7 @@ const P1 = {
|
|
|
12093
12157
|
// type: [Object, Array],
|
|
12094
12158
|
}
|
|
12095
12159
|
},
|
|
12096
|
-
mixins: [
|
|
12160
|
+
mixins: [ie],
|
|
12097
12161
|
async created() {
|
|
12098
12162
|
this.model = this.model;
|
|
12099
12163
|
var e = await this.$sdk.content.glossary(), t = e;
|
|
@@ -12118,7 +12182,7 @@ const P1 = {
|
|
|
12118
12182
|
methods: {
|
|
12119
12183
|
cleanOutput(e) {
|
|
12120
12184
|
var t = this;
|
|
12121
|
-
return
|
|
12185
|
+
return P1(e) ? t.multiValue ? e = [] : e = void 0 : t.multiValue ? e = (e || []).filter(Boolean).map(function(n) {
|
|
12122
12186
|
return t.getValue(n);
|
|
12123
12187
|
}) : e = t.getValue(e), e;
|
|
12124
12188
|
},
|
|
@@ -12158,34 +12222,34 @@ const P1 = {
|
|
|
12158
12222
|
return this.types;
|
|
12159
12223
|
}
|
|
12160
12224
|
}
|
|
12161
|
-
},
|
|
12225
|
+
}, j1 = {
|
|
12162
12226
|
key: 0,
|
|
12163
12227
|
class: "ux-field-title"
|
|
12164
|
-
},
|
|
12228
|
+
}, R1 = {
|
|
12165
12229
|
key: 0,
|
|
12166
12230
|
class: "ux-required-marker"
|
|
12167
|
-
},
|
|
12231
|
+
}, B1 = {
|
|
12168
12232
|
key: 1,
|
|
12169
12233
|
class: "ux-field-description"
|
|
12170
|
-
},
|
|
12234
|
+
}, z1 = {
|
|
12171
12235
|
key: 2,
|
|
12172
12236
|
class: "ui-select-button"
|
|
12173
|
-
},
|
|
12237
|
+
}, H1 = ["multiple"], q1 = {
|
|
12174
12238
|
key: 0,
|
|
12175
12239
|
value: ""
|
|
12176
|
-
},
|
|
12177
|
-
function
|
|
12240
|
+
}, W1 = ["value"];
|
|
12241
|
+
function G1(e, t, n, r, s, i) {
|
|
12178
12242
|
const a = y("ux-button");
|
|
12179
12243
|
return o(), d("div", {
|
|
12180
12244
|
class: L(["native-select", i.classes])
|
|
12181
12245
|
}, [
|
|
12182
|
-
e.showLabel ? (o(), d("label",
|
|
12246
|
+
e.showLabel ? (o(), d("label", j1, [
|
|
12183
12247
|
T(v(e.label) + " ", 1),
|
|
12184
|
-
e.required ? (o(), d("span",
|
|
12248
|
+
e.required ? (o(), d("span", R1, "*")) : _("", !0)
|
|
12185
12249
|
])) : _("", !0),
|
|
12186
|
-
e.showDescription ? (o(), d("div",
|
|
12187
|
-
e.singleValue ? (o(), d("div",
|
|
12188
|
-
|
|
12250
|
+
e.showDescription ? (o(), d("div", B1, v(e.description), 1)) : _("", !0),
|
|
12251
|
+
e.singleValue ? (o(), d("div", z1, [
|
|
12252
|
+
q(e.$slots, "default", {}, () => [
|
|
12189
12253
|
m(a, { tag: "div" }, {
|
|
12190
12254
|
default: h(() => [
|
|
12191
12255
|
T(v(i.summary), 1)
|
|
@@ -12194,22 +12258,22 @@ function W1(e, t, n, r, s, i) {
|
|
|
12194
12258
|
})
|
|
12195
12259
|
], !0)
|
|
12196
12260
|
])) : _("", !0),
|
|
12197
|
-
|
|
12261
|
+
Y(x("select", {
|
|
12198
12262
|
onFocus: t[0] || (t[0] = (...l) => e.touch && e.touch(...l)),
|
|
12199
12263
|
multiple: e.multiValue,
|
|
12200
12264
|
"onUpdate:modelValue": t[1] || (t[1] = (l) => e.model = l)
|
|
12201
12265
|
}, [
|
|
12202
|
-
e.singleValue && !e.minimum ? (o(), d("option",
|
|
12266
|
+
e.singleValue && !e.minimum ? (o(), d("option", q1, "None")) : _("", !0),
|
|
12203
12267
|
(o(!0), d(S, null, F(i.selectableOptions, (l) => (o(), d("option", {
|
|
12204
12268
|
value: l.value
|
|
12205
|
-
}, v(l.title), 9,
|
|
12206
|
-
], 40,
|
|
12269
|
+
}, v(l.title), 9, W1))), 256))
|
|
12270
|
+
], 40, H1), [
|
|
12207
12271
|
[Tt, e.model]
|
|
12208
12272
|
])
|
|
12209
12273
|
], 2);
|
|
12210
12274
|
}
|
|
12211
|
-
const
|
|
12212
|
-
const
|
|
12275
|
+
const K1 = /* @__PURE__ */ C(U1, [["render", G1], ["__scopeId", "data-v-f99f589d"]]);
|
|
12276
|
+
const Y1 = {
|
|
12213
12277
|
components: {
|
|
12214
12278
|
UxCircle: zr
|
|
12215
12279
|
},
|
|
@@ -12259,13 +12323,13 @@ const K1 = {
|
|
|
12259
12323
|
return !this.hasChildren || this.item.collapsed;
|
|
12260
12324
|
}
|
|
12261
12325
|
}
|
|
12262
|
-
},
|
|
12326
|
+
}, Z1 = { class: "outer" }, J1 = {
|
|
12263
12327
|
key: 0,
|
|
12264
12328
|
class: "children"
|
|
12265
12329
|
};
|
|
12266
|
-
function
|
|
12330
|
+
function X1(e, t, n, r, s, i) {
|
|
12267
12331
|
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",
|
|
12332
|
+
return o(), d("div", Z1, [
|
|
12269
12333
|
x("div", {
|
|
12270
12334
|
class: L(["scope-item", { selected: i.selected }]),
|
|
12271
12335
|
onClick: t[1] || (t[1] = (...g) => i.clicked && i.clicked(...g))
|
|
@@ -12332,7 +12396,7 @@ function J1(e, t, n, r, s, i) {
|
|
|
12332
12396
|
_: 1
|
|
12333
12397
|
})
|
|
12334
12398
|
], 2),
|
|
12335
|
-
i.expanded ? (o(), d("div",
|
|
12399
|
+
i.expanded ? (o(), d("div", J1, [
|
|
12336
12400
|
(o(!0), d(S, null, F(n.item.children, (g) => (o(), k(p, {
|
|
12337
12401
|
click: n.click,
|
|
12338
12402
|
item: g
|
|
@@ -12340,11 +12404,11 @@ function J1(e, t, n, r, s, i) {
|
|
|
12340
12404
|
])) : _("", !0)
|
|
12341
12405
|
]);
|
|
12342
12406
|
}
|
|
12343
|
-
const
|
|
12407
|
+
const Q1 = /* @__PURE__ */ C(Y1, [["render", X1], ["__scopeId", "data-v-33a8fd08"]]);
|
|
12344
12408
|
let sr;
|
|
12345
|
-
const
|
|
12409
|
+
const eb = {
|
|
12346
12410
|
components: {
|
|
12347
|
-
ScopeItem:
|
|
12411
|
+
ScopeItem: Q1
|
|
12348
12412
|
},
|
|
12349
12413
|
async created() {
|
|
12350
12414
|
this.glossary = await this.$sdk.content.glossary({ hash: !0 });
|
|
@@ -12362,6 +12426,10 @@ const Q1 = {
|
|
|
12362
12426
|
default() {
|
|
12363
12427
|
return [];
|
|
12364
12428
|
}
|
|
12429
|
+
},
|
|
12430
|
+
single: {
|
|
12431
|
+
type: Boolean,
|
|
12432
|
+
default: !1
|
|
12365
12433
|
}
|
|
12366
12434
|
},
|
|
12367
12435
|
data() {
|
|
@@ -12374,11 +12442,15 @@ const Q1 = {
|
|
|
12374
12442
|
},
|
|
12375
12443
|
methods: {
|
|
12376
12444
|
select(e) {
|
|
12445
|
+
if (this.single) {
|
|
12446
|
+
this.model = [e];
|
|
12447
|
+
return;
|
|
12448
|
+
}
|
|
12377
12449
|
this.isSelected(e) || this.model.push(e);
|
|
12378
12450
|
},
|
|
12379
12451
|
deselect(e) {
|
|
12380
12452
|
const t = this, n = t.$sdk.utils.id(e);
|
|
12381
|
-
t.isSelected(e) && (t.model = t.model.filter(function(r) {
|
|
12453
|
+
t.isSelected(e) && (t.single && (t.model.length = 0), t.model = t.model.filter(function(r) {
|
|
12382
12454
|
return t.$sdk.utils.id(r) != n;
|
|
12383
12455
|
}));
|
|
12384
12456
|
},
|
|
@@ -12461,7 +12533,7 @@ const Q1 = {
|
|
|
12461
12533
|
}
|
|
12462
12534
|
}
|
|
12463
12535
|
};
|
|
12464
|
-
function
|
|
12536
|
+
function tb(e, t, n, r, s, i) {
|
|
12465
12537
|
const a = y("spinner"), l = y("scope-item");
|
|
12466
12538
|
return o(), d("div", {
|
|
12467
12539
|
class: L({ has: i.hasSelection })
|
|
@@ -12472,8 +12544,8 @@ function eb(e, t, n, r, s, i) {
|
|
|
12472
12544
|
}, null, 8, ["click", "item"]))), 256))
|
|
12473
12545
|
], 2);
|
|
12474
12546
|
}
|
|
12475
|
-
const
|
|
12476
|
-
const
|
|
12547
|
+
const nb = /* @__PURE__ */ C(eb, [["render", tb], ["__scopeId", "data-v-7fc51116"]]);
|
|
12548
|
+
const ib = {
|
|
12477
12549
|
components: {
|
|
12478
12550
|
UxCircle: zr
|
|
12479
12551
|
},
|
|
@@ -12496,6 +12568,14 @@ const nb = {
|
|
|
12496
12568
|
default() {
|
|
12497
12569
|
return [];
|
|
12498
12570
|
}
|
|
12571
|
+
},
|
|
12572
|
+
minimum: {
|
|
12573
|
+
type: Number,
|
|
12574
|
+
default: 0
|
|
12575
|
+
},
|
|
12576
|
+
maximum: {
|
|
12577
|
+
type: Number,
|
|
12578
|
+
default: 0
|
|
12499
12579
|
}
|
|
12500
12580
|
},
|
|
12501
12581
|
data() {
|
|
@@ -12512,7 +12592,8 @@ const nb = {
|
|
|
12512
12592
|
const e = this, t = await e.$sdk.selectScopes({
|
|
12513
12593
|
action: e.action,
|
|
12514
12594
|
type: e.type,
|
|
12515
|
-
model: e.model
|
|
12595
|
+
model: e.model,
|
|
12596
|
+
maximum: e.maximum
|
|
12516
12597
|
});
|
|
12517
12598
|
e.model = t;
|
|
12518
12599
|
}
|
|
@@ -12588,8 +12669,8 @@ const nb = {
|
|
|
12588
12669
|
immediate: !0
|
|
12589
12670
|
}
|
|
12590
12671
|
}
|
|
12591
|
-
},
|
|
12592
|
-
function
|
|
12672
|
+
}, rb = { class: "circles" };
|
|
12673
|
+
function sb(e, t, n, r, s, i) {
|
|
12593
12674
|
const a = y("ux-circle"), l = y("ux-button");
|
|
12594
12675
|
return o(), d("div", null, [
|
|
12595
12676
|
m(l, {
|
|
@@ -12598,7 +12679,7 @@ function rb(e, t, n, r, s, i) {
|
|
|
12598
12679
|
onClick: i.openSelection
|
|
12599
12680
|
}, {
|
|
12600
12681
|
default: h(() => [
|
|
12601
|
-
x("div",
|
|
12682
|
+
x("div", rb, [
|
|
12602
12683
|
(o(!0), d(S, null, F(s.model, (u) => (o(), k(a, { value: u }, null, 8, ["value"]))), 256))
|
|
12603
12684
|
]),
|
|
12604
12685
|
x("span", {
|
|
@@ -12609,13 +12690,13 @@ function rb(e, t, n, r, s, i) {
|
|
|
12609
12690
|
}, 8, ["size", "loading", "onClick"])
|
|
12610
12691
|
]);
|
|
12611
12692
|
}
|
|
12612
|
-
const
|
|
12613
|
-
function
|
|
12693
|
+
const ab = /* @__PURE__ */ C(ib, [["render", sb], ["__scopeId", "data-v-9af83f09"]]);
|
|
12694
|
+
function lb(e) {
|
|
12614
12695
|
return e === void 0 || typeof e > "u" || e === null || String(e) === "null" || String(e) === "undefined";
|
|
12615
12696
|
}
|
|
12616
|
-
const
|
|
12697
|
+
const ob = {
|
|
12617
12698
|
components: {
|
|
12618
|
-
ScopeSelectButton:
|
|
12699
|
+
ScopeSelectButton: ab
|
|
12619
12700
|
},
|
|
12620
12701
|
props: {
|
|
12621
12702
|
title: {
|
|
@@ -12623,9 +12704,17 @@ const lb = {
|
|
|
12623
12704
|
},
|
|
12624
12705
|
modelValue: {
|
|
12625
12706
|
// type: [Object, Array],
|
|
12707
|
+
},
|
|
12708
|
+
minimum: {
|
|
12709
|
+
type: Number,
|
|
12710
|
+
default: 0
|
|
12711
|
+
},
|
|
12712
|
+
maximum: {
|
|
12713
|
+
type: Number,
|
|
12714
|
+
default: 0
|
|
12626
12715
|
}
|
|
12627
12716
|
},
|
|
12628
|
-
mixins: [
|
|
12717
|
+
mixins: [ie],
|
|
12629
12718
|
async created() {
|
|
12630
12719
|
this.model = this.model;
|
|
12631
12720
|
var e = await this.$sdk.content.glossary(), t = e;
|
|
@@ -12648,7 +12737,7 @@ const lb = {
|
|
|
12648
12737
|
methods: {
|
|
12649
12738
|
cleanOutput(e) {
|
|
12650
12739
|
var t = this;
|
|
12651
|
-
return
|
|
12740
|
+
return lb(e) ? t.multiValue ? e = [] : e = void 0 : t.multiValue ? e = (e || []).filter(Boolean).map(function(n) {
|
|
12652
12741
|
return t.getValue(n);
|
|
12653
12742
|
}) : e = t.getValue(e), e;
|
|
12654
12743
|
},
|
|
@@ -12694,42 +12783,43 @@ const lb = {
|
|
|
12694
12783
|
return this.types;
|
|
12695
12784
|
}
|
|
12696
12785
|
}
|
|
12697
|
-
},
|
|
12786
|
+
}, ub = {
|
|
12698
12787
|
key: 0,
|
|
12699
12788
|
class: "ux-field-title"
|
|
12700
|
-
},
|
|
12789
|
+
}, db = {
|
|
12701
12790
|
key: 0,
|
|
12702
12791
|
class: "ux-required-marker"
|
|
12703
|
-
},
|
|
12792
|
+
}, cb = {
|
|
12704
12793
|
key: 1,
|
|
12705
12794
|
class: "ux-field-description"
|
|
12706
12795
|
};
|
|
12707
|
-
function
|
|
12796
|
+
function fb(e, t, n, r, s, i) {
|
|
12708
12797
|
const a = y("scope-select-button");
|
|
12709
12798
|
return o(), d("div", {
|
|
12710
12799
|
class: L(["scope-select", i.classes])
|
|
12711
12800
|
}, [
|
|
12712
|
-
e.showLabel ? (o(), d("label",
|
|
12801
|
+
e.showLabel ? (o(), d("label", ub, [
|
|
12713
12802
|
T(v(e.label) + " ", 1),
|
|
12714
|
-
e.required ? (o(), d("span",
|
|
12803
|
+
e.required ? (o(), d("span", db, "*")) : _("", !0)
|
|
12715
12804
|
])) : _("", !0),
|
|
12716
|
-
e.showDescription ? (o(), d("div",
|
|
12805
|
+
e.showDescription ? (o(), d("div", cb, v(e.description), 1)) : _("", !0),
|
|
12717
12806
|
m(a, {
|
|
12807
|
+
maximum: n.maximum,
|
|
12718
12808
|
type: i.contextReferenceType,
|
|
12719
12809
|
action: i.contextReferenceAction,
|
|
12720
12810
|
modelValue: e.model,
|
|
12721
12811
|
"onUpdate:modelValue": t[0] || (t[0] = (l) => e.model = l)
|
|
12722
|
-
}, null, 8, ["type", "action", "modelValue"])
|
|
12812
|
+
}, null, 8, ["maximum", "type", "action", "modelValue"])
|
|
12723
12813
|
], 2);
|
|
12724
12814
|
}
|
|
12725
|
-
const
|
|
12815
|
+
const uo = /* @__PURE__ */ C(ob, [["render", fb], ["__scopeId", "data-v-2d13e8a0"]]);
|
|
12726
12816
|
const mb = {
|
|
12727
12817
|
props: {
|
|
12728
12818
|
modelValue: {
|
|
12729
12819
|
type: [String, Array]
|
|
12730
12820
|
}
|
|
12731
12821
|
},
|
|
12732
|
-
mixins: [
|
|
12822
|
+
mixins: [ie],
|
|
12733
12823
|
methods: {
|
|
12734
12824
|
update(e, t) {
|
|
12735
12825
|
var n = this.format(e.target.value);
|
|
@@ -12823,7 +12913,7 @@ function wb(e, t, n, r, s, i) {
|
|
|
12823
12913
|
class: L(["ux-text-wrap", { prefixed: i.prefix, suffixed: i.suffix }])
|
|
12824
12914
|
}, [
|
|
12825
12915
|
i.prefix ? (o(), d("span", gb, v(i.prefix), 1)) : _("", !0),
|
|
12826
|
-
|
|
12916
|
+
Y((o(), d("input", {
|
|
12827
12917
|
class: "ux-field-focus ux-text-input-multiple",
|
|
12828
12918
|
ref_for: !0,
|
|
12829
12919
|
ref: "input",
|
|
@@ -12835,7 +12925,7 @@ function wb(e, t, n, r, s, i) {
|
|
|
12835
12925
|
onFocus: t[1] || (t[1] = (...g) => e.touch && e.touch(...g))
|
|
12836
12926
|
}, null, 40, vb)), [
|
|
12837
12927
|
[
|
|
12838
|
-
|
|
12928
|
+
ae,
|
|
12839
12929
|
i.proxy[p],
|
|
12840
12930
|
void 0,
|
|
12841
12931
|
{ lazy: !0 }
|
|
@@ -12886,7 +12976,7 @@ function wb(e, t, n, r, s, i) {
|
|
|
12886
12976
|
class: L(["ux-text-wrap", { prefixed: i.prefix, suffixed: i.suffix }])
|
|
12887
12977
|
}, [
|
|
12888
12978
|
i.prefix ? (o(), d("span", kb, v(i.prefix), 1)) : _("", !0),
|
|
12889
|
-
|
|
12979
|
+
Y((o(), d("input", {
|
|
12890
12980
|
class: "ux-field-focus ux-text-input-single",
|
|
12891
12981
|
ref: "input",
|
|
12892
12982
|
key: i.proxy,
|
|
@@ -12896,7 +12986,7 @@ function wb(e, t, n, r, s, i) {
|
|
|
12896
12986
|
"onUpdate:modelValue": t[5] || (t[5] = (c) => i.proxy = c)
|
|
12897
12987
|
}, null, 32)), [
|
|
12898
12988
|
[
|
|
12899
|
-
|
|
12989
|
+
ae,
|
|
12900
12990
|
i.proxy,
|
|
12901
12991
|
void 0,
|
|
12902
12992
|
{ lazy: !0 }
|
|
@@ -12906,7 +12996,7 @@ function wb(e, t, n, r, s, i) {
|
|
|
12906
12996
|
], 2))
|
|
12907
12997
|
], 64);
|
|
12908
12998
|
}
|
|
12909
|
-
const
|
|
12999
|
+
const co = /* @__PURE__ */ C(mb, [["render", wb], ["__scopeId", "data-v-8204c7cd"]]);
|
|
12910
13000
|
const Sb = {
|
|
12911
13001
|
props: {
|
|
12912
13002
|
modelValue: {
|
|
@@ -12919,7 +13009,7 @@ const Sb = {
|
|
|
12919
13009
|
unmaskedLookup: {}
|
|
12920
13010
|
};
|
|
12921
13011
|
},
|
|
12922
|
-
mixins: [
|
|
13012
|
+
mixins: [ie],
|
|
12923
13013
|
computed: {
|
|
12924
13014
|
copyable() {
|
|
12925
13015
|
return this.$sdk.global.copyText && this.field.copyable;
|
|
@@ -13037,7 +13127,7 @@ function Ub(e, t, n, r, s, i) {
|
|
|
13037
13127
|
default: h(() => [
|
|
13038
13128
|
x("div", Eb, [
|
|
13039
13129
|
e.prefix ? (o(), d("span", Ab, v(e.prefix), 1)) : _("", !0),
|
|
13040
|
-
i.lazy ?
|
|
13130
|
+
i.lazy ? Y((o(), d("input", {
|
|
13041
13131
|
key: 1,
|
|
13042
13132
|
type: i.getInput(p),
|
|
13043
13133
|
class: L([i.inputClasses, "ux-field-focus ux-text-input-multiple"]),
|
|
@@ -13055,7 +13145,7 @@ function Ub(e, t, n, r, s, i) {
|
|
|
13055
13145
|
{ lazy: !0 }
|
|
13056
13146
|
]
|
|
13057
13147
|
]) : _("", !0),
|
|
13058
|
-
i.lazy ? _("", !0) :
|
|
13148
|
+
i.lazy ? _("", !0) : Y((o(), d("input", {
|
|
13059
13149
|
key: 2,
|
|
13060
13150
|
type: i.getInput(p),
|
|
13061
13151
|
class: L([i.inputClasses, "ux-field-focus ux-text-input-multiple"]),
|
|
@@ -13158,7 +13248,7 @@ function Ub(e, t, n, r, s, i) {
|
|
|
13158
13248
|
default: h(() => [
|
|
13159
13249
|
x("div", Fb, [
|
|
13160
13250
|
e.prefix ? (o(), d("span", $b, v(e.prefix), 1)) : _("", !0),
|
|
13161
|
-
i.lazy ?
|
|
13251
|
+
i.lazy ? Y((o(), d("input", {
|
|
13162
13252
|
key: 1,
|
|
13163
13253
|
type: i.actualInputType,
|
|
13164
13254
|
ref: "input",
|
|
@@ -13174,7 +13264,7 @@ function Ub(e, t, n, r, s, i) {
|
|
|
13174
13264
|
{ lazy: !0 }
|
|
13175
13265
|
]
|
|
13176
13266
|
]) : _("", !0),
|
|
13177
|
-
i.lazy ? _("", !0) :
|
|
13267
|
+
i.lazy ? _("", !0) : Y((o(), d("input", {
|
|
13178
13268
|
key: 2,
|
|
13179
13269
|
type: i.actualInputType,
|
|
13180
13270
|
ref: "input",
|
|
@@ -13237,14 +13327,14 @@ function Ub(e, t, n, r, s, i) {
|
|
|
13237
13327
|
}))
|
|
13238
13328
|
], 64);
|
|
13239
13329
|
}
|
|
13240
|
-
const
|
|
13330
|
+
const fo = /* @__PURE__ */ C(Sb, [["render", Ub], ["__scopeId", "data-v-ab981ae3"]]);
|
|
13241
13331
|
const jb = {
|
|
13242
13332
|
props: {
|
|
13243
13333
|
modelValue: {
|
|
13244
13334
|
type: [String, Array]
|
|
13245
13335
|
}
|
|
13246
13336
|
},
|
|
13247
|
-
mixins: [
|
|
13337
|
+
mixins: [ie],
|
|
13248
13338
|
methods: {
|
|
13249
13339
|
getNewDefaultEntry() {
|
|
13250
13340
|
return "";
|
|
@@ -13276,7 +13366,7 @@ function Wb(e, t, n, r, s, i) {
|
|
|
13276
13366
|
default: h(() => [
|
|
13277
13367
|
m(a, null, {
|
|
13278
13368
|
default: h(() => [
|
|
13279
|
-
|
|
13369
|
+
Y(x("textarea", {
|
|
13280
13370
|
contenteditable: "",
|
|
13281
13371
|
onFocus: t[0] || (t[0] = (...g) => e.touch && e.touch(...g)),
|
|
13282
13372
|
ref_for: !0,
|
|
@@ -13284,7 +13374,7 @@ function Wb(e, t, n, r, s, i) {
|
|
|
13284
13374
|
"onUpdate:modelValue": (g) => e.model[p] = g,
|
|
13285
13375
|
class: "ux-textarea ux-field-focus ux-text-area-multiple"
|
|
13286
13376
|
}, null, 40, qb), [
|
|
13287
|
-
[
|
|
13377
|
+
[ae, e.model[p]]
|
|
13288
13378
|
])
|
|
13289
13379
|
]),
|
|
13290
13380
|
_: 2
|
|
@@ -13320,7 +13410,7 @@ function Wb(e, t, n, r, s, i) {
|
|
|
13320
13410
|
]),
|
|
13321
13411
|
_: 1
|
|
13322
13412
|
})) : _("", !0)
|
|
13323
|
-
])) :
|
|
13413
|
+
])) : Y((o(), d("textarea", {
|
|
13324
13414
|
key: 3,
|
|
13325
13415
|
class: "ux-textarea ux-field-focus ux-text-area-single",
|
|
13326
13416
|
onFocus: t[2] || (t[2] = (...c) => e.touch && e.touch(...c)),
|
|
@@ -13328,7 +13418,7 @@ function Wb(e, t, n, r, s, i) {
|
|
|
13328
13418
|
role: "textbox",
|
|
13329
13419
|
contenteditable: ""
|
|
13330
13420
|
}, null, 544)), [
|
|
13331
|
-
[
|
|
13421
|
+
[ae, e.model]
|
|
13332
13422
|
])
|
|
13333
13423
|
], 64);
|
|
13334
13424
|
}
|
|
@@ -13342,7 +13432,7 @@ const Kb = {
|
|
|
13342
13432
|
type: [Date, String, Array]
|
|
13343
13433
|
}
|
|
13344
13434
|
},
|
|
13345
|
-
mixins: [
|
|
13435
|
+
mixins: [ie],
|
|
13346
13436
|
computed: {
|
|
13347
13437
|
model: {
|
|
13348
13438
|
get() {
|
|
@@ -13398,7 +13488,7 @@ function e0(e, t, n, r, s, i) {
|
|
|
13398
13488
|
default: h(() => [
|
|
13399
13489
|
m(a, null, {
|
|
13400
13490
|
default: h(() => [
|
|
13401
|
-
|
|
13491
|
+
Y(x("input", {
|
|
13402
13492
|
type: "datetime-local",
|
|
13403
13493
|
class: "ux-field-focus ux-text-input-multiple",
|
|
13404
13494
|
onFocus: t[0] || (t[0] = (...g) => e.touch && e.touch(...g)),
|
|
@@ -13407,7 +13497,7 @@ function e0(e, t, n, r, s, i) {
|
|
|
13407
13497
|
onKeydown: t[1] || (t[1] = ge(z((g) => e.add(), ["stop", "prevent"]), ["enter"])),
|
|
13408
13498
|
"onUpdate:modelValue": (g) => i.model[p] = g
|
|
13409
13499
|
}, null, 40, Qb), [
|
|
13410
|
-
[
|
|
13500
|
+
[ae, i.model[p]]
|
|
13411
13501
|
])
|
|
13412
13502
|
]),
|
|
13413
13503
|
_: 2
|
|
@@ -13443,18 +13533,18 @@ function e0(e, t, n, r, s, i) {
|
|
|
13443
13533
|
]),
|
|
13444
13534
|
_: 1
|
|
13445
13535
|
})) : _("", !0)
|
|
13446
|
-
])) :
|
|
13536
|
+
])) : Y((o(), d("input", {
|
|
13447
13537
|
key: 3,
|
|
13448
13538
|
type: "datetime-local",
|
|
13449
13539
|
class: "ux-field-focus ux-text-input-single",
|
|
13450
13540
|
onFocus: t[3] || (t[3] = (...c) => e.touch && e.touch(...c)),
|
|
13451
13541
|
"onUpdate:modelValue": t[4] || (t[4] = (c) => i.model = c)
|
|
13452
13542
|
}, null, 544)), [
|
|
13453
|
-
[
|
|
13543
|
+
[ae, i.model]
|
|
13454
13544
|
])
|
|
13455
13545
|
], 64);
|
|
13456
13546
|
}
|
|
13457
|
-
const
|
|
13547
|
+
const mo = /* @__PURE__ */ C(Kb, [["render", e0], ["__scopeId", "data-v-32a839f1"]]);
|
|
13458
13548
|
function ta(e) {
|
|
13459
13549
|
return String(e).length < 2 && (e = `0${e}`), e;
|
|
13460
13550
|
}
|
|
@@ -13464,7 +13554,7 @@ const t0 = {
|
|
|
13464
13554
|
type: String
|
|
13465
13555
|
}
|
|
13466
13556
|
},
|
|
13467
|
-
mixins: [
|
|
13557
|
+
mixins: [ie],
|
|
13468
13558
|
methods: {
|
|
13469
13559
|
cleanInputValue(e) {
|
|
13470
13560
|
return e.split(":").join("");
|
|
@@ -13503,7 +13593,7 @@ function l0(e, t, n, r, s, i) {
|
|
|
13503
13593
|
default: h(() => [
|
|
13504
13594
|
m(a, null, {
|
|
13505
13595
|
default: h(() => [
|
|
13506
|
-
|
|
13596
|
+
Y(x("input", {
|
|
13507
13597
|
type: "time",
|
|
13508
13598
|
class: "ux-field-focus ux-text-input-multiple",
|
|
13509
13599
|
onFocus: t[0] || (t[0] = (...g) => e.touch && e.touch(...g)),
|
|
@@ -13512,7 +13602,7 @@ function l0(e, t, n, r, s, i) {
|
|
|
13512
13602
|
onKeydown: t[1] || (t[1] = ge(z((g) => e.add(), ["stop", "prevent"]), ["enter"])),
|
|
13513
13603
|
"onUpdate:modelValue": (g) => e.model[p] = g
|
|
13514
13604
|
}, null, 40, a0), [
|
|
13515
|
-
[
|
|
13605
|
+
[ae, e.model[p]]
|
|
13516
13606
|
])
|
|
13517
13607
|
]),
|
|
13518
13608
|
_: 2
|
|
@@ -13548,28 +13638,28 @@ function l0(e, t, n, r, s, i) {
|
|
|
13548
13638
|
]),
|
|
13549
13639
|
_: 1
|
|
13550
13640
|
})) : _("", !0)
|
|
13551
|
-
])) :
|
|
13641
|
+
])) : Y((o(), d("input", {
|
|
13552
13642
|
key: 3,
|
|
13553
13643
|
type: "time",
|
|
13554
13644
|
class: "ux-field-focus ux-text-input-single",
|
|
13555
13645
|
onFocus: t[3] || (t[3] = (...c) => e.touch && e.touch(...c)),
|
|
13556
13646
|
"onUpdate:modelValue": t[4] || (t[4] = (c) => e.model = c)
|
|
13557
13647
|
}, null, 544)), [
|
|
13558
|
-
[
|
|
13648
|
+
[ae, e.model]
|
|
13559
13649
|
])
|
|
13560
13650
|
], 64);
|
|
13561
13651
|
}
|
|
13562
13652
|
const o0 = /* @__PURE__ */ C(t0, [["render", l0], ["__scopeId", "data-v-9ae5aa1e"]]);
|
|
13563
13653
|
const u0 = {
|
|
13564
13654
|
components: {
|
|
13565
|
-
Daterange:
|
|
13655
|
+
Daterange: ov
|
|
13566
13656
|
},
|
|
13567
13657
|
props: {
|
|
13568
13658
|
modelValue: {
|
|
13569
13659
|
type: [Object, Array]
|
|
13570
13660
|
}
|
|
13571
13661
|
},
|
|
13572
|
-
mixins: [
|
|
13662
|
+
mixins: [ie],
|
|
13573
13663
|
computed: {
|
|
13574
13664
|
model: {
|
|
13575
13665
|
get() {
|
|
@@ -13674,7 +13764,7 @@ function na(e) {
|
|
|
13674
13764
|
return Array.isArray(e) ? !!e[0] : !!e;
|
|
13675
13765
|
}
|
|
13676
13766
|
const y0 = {
|
|
13677
|
-
mixins: [
|
|
13767
|
+
mixins: [ie],
|
|
13678
13768
|
components: {
|
|
13679
13769
|
UxCheckbox: Ll
|
|
13680
13770
|
},
|
|
@@ -13759,7 +13849,7 @@ const k0 = /* @__PURE__ */ C(y0, [["render", b0]]), x0 = {
|
|
|
13759
13849
|
type: [String, Array]
|
|
13760
13850
|
}
|
|
13761
13851
|
},
|
|
13762
|
-
mixins: [
|
|
13852
|
+
mixins: [ie],
|
|
13763
13853
|
methods: {
|
|
13764
13854
|
getNewDefaultEntry() {
|
|
13765
13855
|
return "";
|
|
@@ -13827,7 +13917,7 @@ var M0 = A0, D0 = 9007199254740991;
|
|
|
13827
13917
|
function I0(e) {
|
|
13828
13918
|
return typeof e == "number" && e > -1 && e % 1 == 0 && e <= D0;
|
|
13829
13919
|
}
|
|
13830
|
-
var
|
|
13920
|
+
var ho = I0, F0 = Ol, $0 = ho;
|
|
13831
13921
|
function N0(e) {
|
|
13832
13922
|
return e != null && $0(e.length) && !F0(e);
|
|
13833
13923
|
}
|
|
@@ -13836,7 +13926,7 @@ function U0(e, t) {
|
|
|
13836
13926
|
var n = typeof e;
|
|
13837
13927
|
return t = t ?? L0, !!t && (n == "number" || n != "symbol" && P0.test(e)) && e > -1 && e % 1 == 0 && e < t;
|
|
13838
13928
|
}
|
|
13839
|
-
var
|
|
13929
|
+
var po = U0, j0 = Cl, R0 = Gr, B0 = po, z0 = In;
|
|
13840
13930
|
function H0(e, t, n) {
|
|
13841
13931
|
if (!z0(n))
|
|
13842
13932
|
return !1;
|
|
@@ -13853,20 +13943,20 @@ function K0(e) {
|
|
|
13853
13943
|
}
|
|
13854
13944
|
return e === e ? e : 0;
|
|
13855
13945
|
}
|
|
13856
|
-
var
|
|
13946
|
+
var yo = K0, Y0 = M0, Z0 = q0, ar = yo;
|
|
13857
13947
|
function J0(e) {
|
|
13858
13948
|
return function(t, n, r) {
|
|
13859
13949
|
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
13950
|
};
|
|
13861
13951
|
}
|
|
13862
|
-
var X0 = J0, Q0 = X0, ek = Q0(),
|
|
13952
|
+
var X0 = J0, Q0 = X0, ek = Q0(), _o = ek;
|
|
13863
13953
|
function tk(e) {
|
|
13864
13954
|
return String(e).length < 2 && (e = `0${e}`), e;
|
|
13865
13955
|
}
|
|
13866
13956
|
const {
|
|
13867
13957
|
lookup: nk,
|
|
13868
13958
|
options: ik
|
|
13869
|
-
} = [...
|
|
13959
|
+
} = [..._o(1, 13)].reduce(function(e, t) {
|
|
13870
13960
|
let n;
|
|
13871
13961
|
switch (t) {
|
|
13872
13962
|
case 1:
|
|
@@ -14133,7 +14223,7 @@ const rk = {
|
|
|
14133
14223
|
];
|
|
14134
14224
|
},
|
|
14135
14225
|
dayOptions() {
|
|
14136
|
-
return [...
|
|
14226
|
+
return [..._o(1, 32)].map(function(e) {
|
|
14137
14227
|
return {
|
|
14138
14228
|
title: e,
|
|
14139
14229
|
value: e
|
|
@@ -14198,7 +14288,7 @@ const rk = {
|
|
|
14198
14288
|
// }
|
|
14199
14289
|
// },
|
|
14200
14290
|
}
|
|
14201
|
-
}, sk = (e) => (
|
|
14291
|
+
}, 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
14292
|
function hk(e, t, n, r, s, i) {
|
|
14203
14293
|
const a = y("ux-icon"), l = y("native-select"), u = y("flex-cell"), f = y("flex-row");
|
|
14204
14294
|
return o(), k(f, null, {
|
|
@@ -14364,7 +14454,7 @@ function hk(e, t, n, r, s, i) {
|
|
|
14364
14454
|
}
|
|
14365
14455
|
const pk = /* @__PURE__ */ C(rk, [["render", hk], ["__scopeId", "data-v-569dda27"]]);
|
|
14366
14456
|
const yk = {
|
|
14367
|
-
mixins: [
|
|
14457
|
+
mixins: [ie],
|
|
14368
14458
|
components: {
|
|
14369
14459
|
DateObject: pk
|
|
14370
14460
|
},
|
|
@@ -14557,6 +14647,14 @@ const wk = {
|
|
|
14557
14647
|
}
|
|
14558
14648
|
},
|
|
14559
14649
|
computed: {
|
|
14650
|
+
singleValueTransformer: {
|
|
14651
|
+
get() {
|
|
14652
|
+
return [this.model.value].filter(Boolean);
|
|
14653
|
+
},
|
|
14654
|
+
set(e) {
|
|
14655
|
+
this.model.value = e[0];
|
|
14656
|
+
}
|
|
14657
|
+
},
|
|
14560
14658
|
extraCriteria() {
|
|
14561
14659
|
return this.field && this.field.path && this.field.path.startsWith("join_") && this.field.path.endsWith(".total");
|
|
14562
14660
|
},
|
|
@@ -14659,15 +14757,18 @@ const wk = {
|
|
|
14659
14757
|
return this.comparators.hash;
|
|
14660
14758
|
},
|
|
14661
14759
|
comparatorOptions() {
|
|
14662
|
-
|
|
14760
|
+
const e = this;
|
|
14761
|
+
if (!e.fieldType)
|
|
14663
14762
|
return [];
|
|
14664
|
-
var
|
|
14763
|
+
var t = e.comparators.available[e.fieldType] || [], n = t.filter(function(r) {
|
|
14764
|
+
return r.restrictKey ? r.restrictKey.includes(e.model.key) : !0;
|
|
14765
|
+
}).map(function(r) {
|
|
14665
14766
|
return {
|
|
14666
|
-
title:
|
|
14667
|
-
value:
|
|
14767
|
+
title: r.title,
|
|
14768
|
+
value: r.operator
|
|
14668
14769
|
};
|
|
14669
14770
|
});
|
|
14670
|
-
return
|
|
14771
|
+
return n;
|
|
14671
14772
|
},
|
|
14672
14773
|
comparatorField() {
|
|
14673
14774
|
return {
|
|
@@ -14818,18 +14919,19 @@ const wk = {
|
|
|
14818
14919
|
}
|
|
14819
14920
|
},
|
|
14820
14921
|
components: {
|
|
14821
|
-
TextField:
|
|
14822
|
-
CurrencyField:
|
|
14823
|
-
DateField:
|
|
14922
|
+
TextField: fo,
|
|
14923
|
+
CurrencyField: co,
|
|
14924
|
+
DateField: mo,
|
|
14824
14925
|
NativeSelect: Ct,
|
|
14825
|
-
ContentSelect: oo
|
|
14926
|
+
ContentSelect: oo,
|
|
14927
|
+
ScopeSelect: uo
|
|
14826
14928
|
}
|
|
14827
|
-
}, Sk = (e) => (
|
|
14929
|
+
}, Sk = (e) => (qe("data-v-13dce876"), e = e(), We(), e), Tk = {
|
|
14828
14930
|
key: 0,
|
|
14829
14931
|
class: "filter-condition"
|
|
14830
14932
|
}, 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
14933
|
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("
|
|
14934
|
+
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
14935
|
return s.comparators ? (o(), d("div", Tk, [
|
|
14834
14936
|
m(c, {
|
|
14835
14937
|
gap: "",
|
|
@@ -14841,7 +14943,7 @@ function Pk(e, t, n, r, s, i) {
|
|
|
14841
14943
|
m(a, {
|
|
14842
14944
|
title: "Select field",
|
|
14843
14945
|
modelValue: s.model.key,
|
|
14844
|
-
"onUpdate:modelValue": t[0] || (t[0] = (
|
|
14946
|
+
"onUpdate:modelValue": t[0] || (t[0] = (D) => s.model.key = D),
|
|
14845
14947
|
field: i.keyField
|
|
14846
14948
|
}, null, 8, ["modelValue", "field"])
|
|
14847
14949
|
]),
|
|
@@ -14852,7 +14954,7 @@ function Pk(e, t, n, r, s, i) {
|
|
|
14852
14954
|
m(a, {
|
|
14853
14955
|
title: "Select comparator",
|
|
14854
14956
|
modelValue: s.model.comparator,
|
|
14855
|
-
"onUpdate:modelValue": t[1] || (t[1] = (
|
|
14957
|
+
"onUpdate:modelValue": t[1] || (t[1] = (D) => s.model.comparator = D),
|
|
14856
14958
|
field: i.comparatorField
|
|
14857
14959
|
}, null, 8, ["modelValue", "field"])
|
|
14858
14960
|
]),
|
|
@@ -14864,13 +14966,13 @@ function Pk(e, t, n, r, s, i) {
|
|
|
14864
14966
|
i.showSelectOptions ? (o(), k(a, {
|
|
14865
14967
|
key: 0,
|
|
14866
14968
|
modelValue: s.model.values,
|
|
14867
|
-
"onUpdate:modelValue": t[2] || (t[2] = (
|
|
14969
|
+
"onUpdate:modelValue": t[2] || (t[2] = (D) => s.model.values = D),
|
|
14868
14970
|
field: i.multiOptionsField
|
|
14869
14971
|
}, null, 8, ["modelValue", "field"])) : (o(), k(u, {
|
|
14870
14972
|
key: 1,
|
|
14871
14973
|
field: i.arrayField,
|
|
14872
14974
|
modelValue: s.model.values,
|
|
14873
|
-
"onUpdate:modelValue": t[3] || (t[3] = (
|
|
14975
|
+
"onUpdate:modelValue": t[3] || (t[3] = (D) => s.model.values = D)
|
|
14874
14976
|
}, null, 8, ["field", "modelValue"]))
|
|
14875
14977
|
])) : _("", !0),
|
|
14876
14978
|
i.inputType == "range" ? (o(), d("div", Ck, [
|
|
@@ -14878,25 +14980,25 @@ function Pk(e, t, n, r, s, i) {
|
|
|
14878
14980
|
m(f, {
|
|
14879
14981
|
field: i.normalField,
|
|
14880
14982
|
modelValue: s.model.value,
|
|
14881
|
-
"onUpdate:modelValue": t[4] || (t[4] = (
|
|
14983
|
+
"onUpdate:modelValue": t[4] || (t[4] = (D) => s.model.value = D)
|
|
14882
14984
|
}, null, 8, ["field", "modelValue"]),
|
|
14883
14985
|
T(" And "),
|
|
14884
14986
|
m(f, {
|
|
14885
14987
|
field: i.normalField,
|
|
14886
14988
|
modelValue: s.model.value2,
|
|
14887
|
-
"onUpdate:modelValue": t[5] || (t[5] = (
|
|
14989
|
+
"onUpdate:modelValue": t[5] || (t[5] = (D) => s.model.value2 = D)
|
|
14888
14990
|
}, null, 8, ["field", "modelValue"])
|
|
14889
14991
|
], 64)) : (o(), d(S, { key: 1 }, [
|
|
14890
14992
|
m(u, {
|
|
14891
14993
|
field: i.normalField,
|
|
14892
14994
|
modelValue: s.model.value,
|
|
14893
|
-
"onUpdate:modelValue": t[6] || (t[6] = (
|
|
14995
|
+
"onUpdate:modelValue": t[6] || (t[6] = (D) => s.model.value = D)
|
|
14894
14996
|
}, null, 8, ["field", "modelValue"]),
|
|
14895
14997
|
T(" And "),
|
|
14896
14998
|
m(u, {
|
|
14897
14999
|
field: i.normalField,
|
|
14898
15000
|
modelValue: s.model.value2,
|
|
14899
|
-
"onUpdate:modelValue": t[7] || (t[7] = (
|
|
15001
|
+
"onUpdate:modelValue": t[7] || (t[7] = (D) => s.model.value2 = D)
|
|
14900
15002
|
}, null, 8, ["field", "modelValue"])
|
|
14901
15003
|
], 64))
|
|
14902
15004
|
])) : _("", !0),
|
|
@@ -14908,7 +15010,7 @@ function Pk(e, t, n, r, s, i) {
|
|
|
14908
15010
|
m(u, {
|
|
14909
15011
|
field: i.relativeNumberField,
|
|
14910
15012
|
modelValue: s.model.value,
|
|
14911
|
-
"onUpdate:modelValue": t[8] || (t[8] = (
|
|
15013
|
+
"onUpdate:modelValue": t[8] || (t[8] = (D) => s.model.value = D)
|
|
14912
15014
|
}, null, 8, ["field", "modelValue"])
|
|
14913
15015
|
]),
|
|
14914
15016
|
_: 1
|
|
@@ -14917,7 +15019,7 @@ function Pk(e, t, n, r, s, i) {
|
|
|
14917
15019
|
default: h(() => [
|
|
14918
15020
|
m(a, {
|
|
14919
15021
|
modelValue: s.model.value2,
|
|
14920
|
-
"onUpdate:modelValue": t[9] || (t[9] = (
|
|
15022
|
+
"onUpdate:modelValue": t[9] || (t[9] = (D) => s.model.value2 = D),
|
|
14921
15023
|
field: i.relativePeriodField
|
|
14922
15024
|
}, null, 8, ["modelValue", "field"])
|
|
14923
15025
|
]),
|
|
@@ -14931,35 +15033,46 @@ function Pk(e, t, n, r, s, i) {
|
|
|
14931
15033
|
m(p, {
|
|
14932
15034
|
field: i.dateField,
|
|
14933
15035
|
modelValue: s.model.value,
|
|
14934
|
-
"onUpdate:modelValue": t[10] || (t[10] = (
|
|
15036
|
+
"onUpdate:modelValue": t[10] || (t[10] = (D) => s.model.value = D)
|
|
14935
15037
|
}, null, 8, ["field", "modelValue"]),
|
|
14936
15038
|
T(" And "),
|
|
14937
15039
|
m(p, {
|
|
14938
15040
|
field: i.dateField,
|
|
14939
15041
|
modelValue: s.model.value2,
|
|
14940
|
-
"onUpdate:modelValue": t[11] || (t[11] = (
|
|
15042
|
+
"onUpdate:modelValue": t[11] || (t[11] = (D) => s.model.value2 = D)
|
|
14941
15043
|
}, null, 8, ["field", "modelValue"])
|
|
14942
15044
|
])) : _("", !0),
|
|
14943
15045
|
i.inputType == "date" ? (o(), d("div", Ak, [
|
|
14944
15046
|
m(p, {
|
|
14945
15047
|
field: i.dateField,
|
|
14946
15048
|
modelValue: s.model.value,
|
|
14947
|
-
"onUpdate:modelValue": t[12] || (t[12] = (
|
|
15049
|
+
"onUpdate:modelValue": t[12] || (t[12] = (D) => s.model.value = D)
|
|
14948
15050
|
}, null, 8, ["field", "modelValue"])
|
|
14949
15051
|
])) : _("", !0),
|
|
14950
15052
|
i.inputType == "reference" ? (o(), d("div", Mk, [
|
|
14951
|
-
|
|
15053
|
+
s.model.key === "meta.scopes" ? (o(), k(g, {
|
|
15054
|
+
key: 0,
|
|
15055
|
+
maximum: 1,
|
|
15056
|
+
modelValue: i.singleValueTransformer,
|
|
15057
|
+
"onUpdate:modelValue": t[13] || (t[13] = (D) => i.singleValueTransformer = D)
|
|
15058
|
+
}, null, 8, ["modelValue"])) : (o(), k(b, {
|
|
15059
|
+
key: 1,
|
|
14952
15060
|
field: i.singleReferenceField,
|
|
14953
15061
|
modelValue: s.model.value,
|
|
14954
|
-
"onUpdate:modelValue": t[
|
|
14955
|
-
}, null, 8, ["field", "modelValue"])
|
|
15062
|
+
"onUpdate:modelValue": t[14] || (t[14] = (D) => s.model.value = D)
|
|
15063
|
+
}, null, 8, ["field", "modelValue"]))
|
|
14956
15064
|
])) : _("", !0),
|
|
14957
15065
|
i.inputType == "multireference" ? (o(), d("div", Dk, [
|
|
14958
|
-
|
|
15066
|
+
s.model.key === "meta.scopes" ? (o(), k(g, {
|
|
15067
|
+
key: 0,
|
|
15068
|
+
modelValue: s.model.values,
|
|
15069
|
+
"onUpdate:modelValue": t[15] || (t[15] = (D) => s.model.values = D)
|
|
15070
|
+
}, null, 8, ["modelValue"])) : (o(), k(b, {
|
|
15071
|
+
key: 1,
|
|
14959
15072
|
field: i.multiReferenceField,
|
|
14960
15073
|
modelValue: s.model.values,
|
|
14961
|
-
"onUpdate:modelValue": t[
|
|
14962
|
-
}, null, 8, ["field", "modelValue"])
|
|
15074
|
+
"onUpdate:modelValue": t[16] || (t[16] = (D) => s.model.values = D)
|
|
15075
|
+
}, null, 8, ["field", "modelValue"]))
|
|
14963
15076
|
])) : _("", !0),
|
|
14964
15077
|
i.inputType == "boolean" ? (o(), d("div", Ik, [
|
|
14965
15078
|
m(c, {
|
|
@@ -14969,8 +15082,8 @@ function Pk(e, t, n, r, s, i) {
|
|
|
14969
15082
|
default: h(() => [
|
|
14970
15083
|
m(l, { shrink: "" }, {
|
|
14971
15084
|
default: h(() => [
|
|
14972
|
-
m(
|
|
14973
|
-
onClick: t[
|
|
15085
|
+
m(w, {
|
|
15086
|
+
onClick: t[17] || (t[17] = (D) => s.model.value = !s.model.value),
|
|
14974
15087
|
value: s.model.value
|
|
14975
15088
|
}, null, 8, ["value"])
|
|
14976
15089
|
]),
|
|
@@ -14992,25 +15105,25 @@ function Pk(e, t, n, r, s, i) {
|
|
|
14992
15105
|
key: 0,
|
|
14993
15106
|
field: i.normalField,
|
|
14994
15107
|
modelValue: s.model.value,
|
|
14995
|
-
"onUpdate:modelValue": t[
|
|
15108
|
+
"onUpdate:modelValue": t[18] || (t[18] = (D) => s.model.value = D)
|
|
14996
15109
|
}, null, 8, ["field", "modelValue"])) : (o(), k(u, {
|
|
14997
15110
|
key: 1,
|
|
14998
15111
|
field: i.normalField,
|
|
14999
15112
|
modelValue: s.model.value,
|
|
15000
|
-
"onUpdate:modelValue": t[
|
|
15113
|
+
"onUpdate:modelValue": t[19] || (t[19] = (D) => s.model.value = D)
|
|
15001
15114
|
}, null, 8, ["field", "modelValue"]))
|
|
15002
15115
|
])) : _("", !0),
|
|
15003
15116
|
i.inputType == "normal" ? (o(), d("div", Nk, [
|
|
15004
15117
|
i.showSelectOptions ? (o(), k(a, {
|
|
15005
15118
|
key: 0,
|
|
15006
15119
|
modelValue: s.model.value,
|
|
15007
|
-
"onUpdate:modelValue": t[
|
|
15120
|
+
"onUpdate:modelValue": t[20] || (t[20] = (D) => s.model.value = D),
|
|
15008
15121
|
field: i.singleOptionsField
|
|
15009
15122
|
}, null, 8, ["modelValue", "field"])) : (o(), k(u, {
|
|
15010
15123
|
key: 1,
|
|
15011
15124
|
field: i.normalField,
|
|
15012
15125
|
modelValue: s.model.value,
|
|
15013
|
-
"onUpdate:modelValue": t[
|
|
15126
|
+
"onUpdate:modelValue": t[21] || (t[21] = (D) => s.model.value = D)
|
|
15014
15127
|
}, null, 8, ["field", "modelValue"]))
|
|
15015
15128
|
])) : _("", !0)
|
|
15016
15129
|
]),
|
|
@@ -15021,13 +15134,13 @@ function Pk(e, t, n, r, s, i) {
|
|
|
15021
15134
|
shrink: ""
|
|
15022
15135
|
}, {
|
|
15023
15136
|
default: h(() => [
|
|
15024
|
-
m(
|
|
15137
|
+
m(j, {
|
|
15025
15138
|
size: "sm",
|
|
15026
15139
|
icon: "",
|
|
15027
|
-
onClick: t[
|
|
15140
|
+
onClick: t[22] || (t[22] = (D) => e.$emit("remove"))
|
|
15028
15141
|
}, {
|
|
15029
15142
|
default: h(() => [
|
|
15030
|
-
m(
|
|
15143
|
+
m(O, { icon: "fa-times" })
|
|
15031
15144
|
]),
|
|
15032
15145
|
_: 1
|
|
15033
15146
|
})
|
|
@@ -15039,24 +15152,24 @@ function Pk(e, t, n, r, s, i) {
|
|
|
15039
15152
|
}),
|
|
15040
15153
|
i.extraCriteria ? (o(), d(S, { key: 0 }, [
|
|
15041
15154
|
Lk,
|
|
15042
|
-
(o(!0), d(S, null, F(s.model.conditions, (
|
|
15043
|
-
key:
|
|
15155
|
+
(o(!0), d(S, null, F(s.model.conditions, (D, ee) => (o(), d("div", {
|
|
15156
|
+
key: D._guid
|
|
15044
15157
|
}, [
|
|
15045
|
-
m(
|
|
15158
|
+
m(H, {
|
|
15046
15159
|
enableRemove: !0,
|
|
15047
15160
|
fields: s.criteriaFields,
|
|
15048
|
-
onRemove: (
|
|
15049
|
-
modelValue: s.model.conditions[
|
|
15050
|
-
"onUpdate:modelValue": (
|
|
15161
|
+
onRemove: (re) => i.removeCondition(ee),
|
|
15162
|
+
modelValue: s.model.conditions[ee],
|
|
15163
|
+
"onUpdate:modelValue": (re) => s.model.conditions[ee] = re
|
|
15051
15164
|
}, null, 8, ["fields", "onRemove", "modelValue", "onUpdate:modelValue"])
|
|
15052
15165
|
]))), 128)),
|
|
15053
|
-
m(
|
|
15166
|
+
m(j, {
|
|
15054
15167
|
size: "sm",
|
|
15055
15168
|
onClick: z(i.addCondition, ["stop", "prevent"])
|
|
15056
15169
|
}, {
|
|
15057
15170
|
default: h(() => [
|
|
15058
15171
|
T(" Add Criteria "),
|
|
15059
|
-
m(
|
|
15172
|
+
m(O, {
|
|
15060
15173
|
icon: "fa-plus",
|
|
15061
15174
|
right: ""
|
|
15062
15175
|
})
|
|
@@ -15066,7 +15179,7 @@ function Pk(e, t, n, r, s, i) {
|
|
|
15066
15179
|
], 64)) : _("", !0)
|
|
15067
15180
|
])) : _("", !0);
|
|
15068
15181
|
}
|
|
15069
|
-
const Uk = /* @__PURE__ */ C(wk, [["render", Pk], ["__scopeId", "data-v-
|
|
15182
|
+
const Uk = /* @__PURE__ */ C(wk, [["render", Pk], ["__scopeId", "data-v-13dce876"]]);
|
|
15070
15183
|
function jk(e) {
|
|
15071
15184
|
let t = [];
|
|
15072
15185
|
if (t.push({
|
|
@@ -15383,7 +15496,7 @@ const qk = {
|
|
|
15383
15496
|
FilterCondition: Uk,
|
|
15384
15497
|
NativeSelect: Ct
|
|
15385
15498
|
}
|
|
15386
|
-
}, Wk = (e) => (
|
|
15499
|
+
}, Wk = (e) => (qe("data-v-f372c803"), e = e(), We(), e), Gk = {
|
|
15387
15500
|
key: 0,
|
|
15388
15501
|
class: "filter-rule"
|
|
15389
15502
|
}, Kk = { class: "top" }, Yk = { class: "summary" }, Zk = /* @__PURE__ */ Wk(() => /* @__PURE__ */ x("span", { class: "line" }, null, -1)), Jk = { class: "operator" };
|
|
@@ -15627,11 +15740,11 @@ function rx(e, t, n, r, s, i) {
|
|
|
15627
15740
|
_: 1
|
|
15628
15741
|
});
|
|
15629
15742
|
}
|
|
15630
|
-
const
|
|
15743
|
+
const go = /* @__PURE__ */ C(ex, [["render", rx], ["__scopeId", "data-v-fcb41aed"]]);
|
|
15631
15744
|
const sx = {
|
|
15632
|
-
mixins: [
|
|
15745
|
+
mixins: [ie],
|
|
15633
15746
|
components: {
|
|
15634
|
-
FilterBuilder:
|
|
15747
|
+
FilterBuilder: go
|
|
15635
15748
|
},
|
|
15636
15749
|
props: {
|
|
15637
15750
|
modelValue: {
|
|
@@ -15755,7 +15868,7 @@ const mx = {
|
|
|
15755
15868
|
// type: [Object, Array],
|
|
15756
15869
|
}
|
|
15757
15870
|
},
|
|
15758
|
-
mixins: [
|
|
15871
|
+
mixins: [ie],
|
|
15759
15872
|
async created() {
|
|
15760
15873
|
this.model = this.model;
|
|
15761
15874
|
},
|
|
@@ -15914,7 +16027,7 @@ function kx(e, t, n, r, s, i) {
|
|
|
15914
16027
|
])) : _("", !0),
|
|
15915
16028
|
e.showDescription ? (o(), d("div", yx, v(e.description), 1)) : _("", !0),
|
|
15916
16029
|
e.singleValue ? (o(), d("div", _x, [
|
|
15917
|
-
|
|
16030
|
+
q(e.$slots, "default", {}, () => [
|
|
15918
16031
|
m(a, { tag: "div" }, {
|
|
15919
16032
|
default: h(() => [
|
|
15920
16033
|
T(v(i.summary), 1)
|
|
@@ -15923,7 +16036,7 @@ function kx(e, t, n, r, s, i) {
|
|
|
15923
16036
|
})
|
|
15924
16037
|
], !0)
|
|
15925
16038
|
])) : _("", !0),
|
|
15926
|
-
|
|
16039
|
+
Y(x("select", {
|
|
15927
16040
|
onFocus: t[0] || (t[0] = (...l) => e.touch && e.touch(...l)),
|
|
15928
16041
|
multiple: e.multiValue,
|
|
15929
16042
|
"onUpdate:modelValue": t[1] || (t[1] = (l) => e.model = l)
|
|
@@ -16004,7 +16117,7 @@ const wx = {
|
|
|
16004
16117
|
};
|
|
16005
16118
|
function Cx(e, t, n, r, s, i) {
|
|
16006
16119
|
return o(), d("div", Sx, [
|
|
16007
|
-
|
|
16120
|
+
Y(x("input", {
|
|
16008
16121
|
ref: "range",
|
|
16009
16122
|
min: n.min,
|
|
16010
16123
|
step: n.step,
|
|
@@ -16013,7 +16126,7 @@ function Cx(e, t, n, r, s, i) {
|
|
|
16013
16126
|
type: "range",
|
|
16014
16127
|
class: "ux-range-slider"
|
|
16015
16128
|
}, null, 8, Tx), [
|
|
16016
|
-
[
|
|
16129
|
+
[ae, s.model]
|
|
16017
16130
|
]),
|
|
16018
16131
|
x("output", Ox, null, 512)
|
|
16019
16132
|
]);
|
|
@@ -16045,7 +16158,7 @@ const Ex = {
|
|
|
16045
16158
|
return parseFloat(this.field.maxValue) || 100;
|
|
16046
16159
|
}
|
|
16047
16160
|
},
|
|
16048
|
-
mixins: [
|
|
16161
|
+
mixins: [ie],
|
|
16049
16162
|
methods: {
|
|
16050
16163
|
getNewDefaultEntry() {
|
|
16051
16164
|
return "";
|
|
@@ -16181,7 +16294,7 @@ const Px = {
|
|
|
16181
16294
|
type: String
|
|
16182
16295
|
}
|
|
16183
16296
|
},
|
|
16184
|
-
mixins: [
|
|
16297
|
+
mixins: [ie],
|
|
16185
16298
|
methods: {
|
|
16186
16299
|
cleanInputValue(e) {
|
|
16187
16300
|
return e;
|
|
@@ -16220,7 +16333,7 @@ function qx(e, t, n, r, s, i) {
|
|
|
16220
16333
|
default: h(() => [
|
|
16221
16334
|
m(a, { shrink: "" }, {
|
|
16222
16335
|
default: h(() => [
|
|
16223
|
-
|
|
16336
|
+
Y(x("input", {
|
|
16224
16337
|
type: "color",
|
|
16225
16338
|
class: "ux-field-focus ux-color-input ux-color-input-multiple",
|
|
16226
16339
|
onFocus: t[0] || (t[0] = (...g) => e.touch && e.touch(...g)),
|
|
@@ -16228,14 +16341,14 @@ function qx(e, t, n, r, s, i) {
|
|
|
16228
16341
|
ref: "input",
|
|
16229
16342
|
"onUpdate:modelValue": (g) => e.model[p] = g
|
|
16230
16343
|
}, null, 40, zx), [
|
|
16231
|
-
[
|
|
16344
|
+
[ae, e.model[p]]
|
|
16232
16345
|
])
|
|
16233
16346
|
]),
|
|
16234
16347
|
_: 2
|
|
16235
16348
|
}, 1024),
|
|
16236
16349
|
m(a, null, {
|
|
16237
16350
|
default: h(() => [
|
|
16238
|
-
|
|
16351
|
+
Y(x("input", {
|
|
16239
16352
|
type: "text",
|
|
16240
16353
|
class: "ux-field-focus ux-text-input-multiple",
|
|
16241
16354
|
onFocus: t[1] || (t[1] = (...g) => e.touch && e.touch(...g)),
|
|
@@ -16243,7 +16356,7 @@ function qx(e, t, n, r, s, i) {
|
|
|
16243
16356
|
ref: "input",
|
|
16244
16357
|
"onUpdate:modelValue": (g) => e.model[p] = g
|
|
16245
16358
|
}, null, 40, Hx), [
|
|
16246
|
-
[
|
|
16359
|
+
[ae, e.model[p]]
|
|
16247
16360
|
])
|
|
16248
16361
|
]),
|
|
16249
16362
|
_: 2
|
|
@@ -16287,26 +16400,26 @@ function qx(e, t, n, r, s, i) {
|
|
|
16287
16400
|
default: h(() => [
|
|
16288
16401
|
m(a, { shrink: "" }, {
|
|
16289
16402
|
default: h(() => [
|
|
16290
|
-
|
|
16403
|
+
Y(x("input", {
|
|
16291
16404
|
type: "color",
|
|
16292
16405
|
class: "ux-field-focus ux-color-input ux-color-input-single",
|
|
16293
16406
|
onFocus: t[3] || (t[3] = (...c) => e.touch && e.touch(...c)),
|
|
16294
16407
|
"onUpdate:modelValue": t[4] || (t[4] = (c) => e.model = c)
|
|
16295
16408
|
}, null, 544), [
|
|
16296
|
-
[
|
|
16409
|
+
[ae, e.model]
|
|
16297
16410
|
])
|
|
16298
16411
|
]),
|
|
16299
16412
|
_: 1
|
|
16300
16413
|
}),
|
|
16301
16414
|
m(a, null, {
|
|
16302
16415
|
default: h(() => [
|
|
16303
|
-
|
|
16416
|
+
Y(x("input", {
|
|
16304
16417
|
type: "text",
|
|
16305
16418
|
class: "ux-field-focus ux-text-input-single",
|
|
16306
16419
|
onFocus: t[5] || (t[5] = (...c) => e.touch && e.touch(...c)),
|
|
16307
16420
|
"onUpdate:modelValue": t[6] || (t[6] = (c) => e.model = c)
|
|
16308
16421
|
}, null, 544), [
|
|
16309
|
-
[
|
|
16422
|
+
[ae, e.model]
|
|
16310
16423
|
])
|
|
16311
16424
|
]),
|
|
16312
16425
|
_: 1
|
|
@@ -16321,7 +16434,7 @@ function aa(e) {
|
|
|
16321
16434
|
return Array.isArray(e) ? !!e[0] : !!e;
|
|
16322
16435
|
}
|
|
16323
16436
|
const Gx = {
|
|
16324
|
-
mixins: [
|
|
16437
|
+
mixins: [ie],
|
|
16325
16438
|
components: {
|
|
16326
16439
|
UxSwitch: Pl
|
|
16327
16440
|
},
|
|
@@ -16464,7 +16577,7 @@ function tw(e, t, n, r, s, i) {
|
|
|
16464
16577
|
class: "file-drop-ux",
|
|
16465
16578
|
onClick: t[1] || (t[1] = z((...l) => i.clicked && i.clicked(...l), ["stop", "prevent"]))
|
|
16466
16579
|
}, [
|
|
16467
|
-
|
|
16580
|
+
q(e.$slots, "default", {}, () => [
|
|
16468
16581
|
m(a, null, {
|
|
16469
16582
|
default: h(() => [
|
|
16470
16583
|
T("Select Files")
|
|
@@ -16477,7 +16590,7 @@ function tw(e, t, n, r, s, i) {
|
|
|
16477
16590
|
}
|
|
16478
16591
|
const nw = /* @__PURE__ */ C(Qx, [["render", tw], ["__scopeId", "data-v-0c381e95"]]);
|
|
16479
16592
|
const iw = {
|
|
16480
|
-
mixins: [
|
|
16593
|
+
mixins: [ie],
|
|
16481
16594
|
components: {
|
|
16482
16595
|
FileDrop: nw
|
|
16483
16596
|
},
|
|
@@ -16664,7 +16777,7 @@ function uw(e, t, n, r, s, i) {
|
|
|
16664
16777
|
}
|
|
16665
16778
|
const dw = /* @__PURE__ */ C(iw, [["render", uw], ["__scopeId", "data-v-d29a9855"]]);
|
|
16666
16779
|
const cw = {
|
|
16667
|
-
mixins: [
|
|
16780
|
+
mixins: [ie],
|
|
16668
16781
|
//TODO check whether we should move draggable into the input mixin
|
|
16669
16782
|
components: { draggable: lo },
|
|
16670
16783
|
props: {
|
|
@@ -16823,7 +16936,7 @@ function kw(e, t, n, r, s, i) {
|
|
|
16823
16936
|
m(u, {
|
|
16824
16937
|
size: "xs",
|
|
16825
16938
|
tag: "a",
|
|
16826
|
-
onClick: (
|
|
16939
|
+
onClick: (H) => O.collapsed = !O.collapsed
|
|
16827
16940
|
}, {
|
|
16828
16941
|
default: h(() => [
|
|
16829
16942
|
T(v(O.collapsed ? "More" : "Less") + " ", 1),
|
|
@@ -16846,7 +16959,7 @@ function kw(e, t, n, r, s, i) {
|
|
|
16846
16959
|
key: 0,
|
|
16847
16960
|
icon: "",
|
|
16848
16961
|
tag: "a",
|
|
16849
|
-
onClick: (
|
|
16962
|
+
onClick: (H) => e.remove(O)
|
|
16850
16963
|
}, {
|
|
16851
16964
|
default: h(() => [
|
|
16852
16965
|
m(a, { icon: "fa-times" })
|
|
@@ -16862,8 +16975,8 @@ function kw(e, t, n, r, s, i) {
|
|
|
16862
16975
|
]),
|
|
16863
16976
|
_: 2
|
|
16864
16977
|
}, 1024),
|
|
16865
|
-
|
|
16866
|
-
onKeydown: t[0] || (t[0] = ge((
|
|
16978
|
+
Y(m(g, {
|
|
16979
|
+
onKeydown: t[0] || (t[0] = ge((H) => i.enterPress(H), ["enter"]))
|
|
16867
16980
|
}, {
|
|
16868
16981
|
default: h(() => [
|
|
16869
16982
|
m(p, {
|
|
@@ -16875,7 +16988,7 @@ function kw(e, t, n, r, s, i) {
|
|
|
16875
16988
|
"onForm:state": i.stateChange,
|
|
16876
16989
|
parentModel: e.parentModel,
|
|
16877
16990
|
modelValue: e.model[j],
|
|
16878
|
-
"onUpdate:modelValue": (
|
|
16991
|
+
"onUpdate:modelValue": (H) => e.model[j] = H,
|
|
16879
16992
|
flex: i.sameLine,
|
|
16880
16993
|
fields: e.field.fields
|
|
16881
16994
|
}, null, 8, ["trail", "includeOfficeOnly", "submission", "ignoreDefaults", "onForm:state", "parentModel", "modelValue", "onUpdate:modelValue", "flex", "fields"])
|
|
@@ -16926,7 +17039,7 @@ function kw(e, t, n, r, s, i) {
|
|
|
16926
17039
|
m(u, {
|
|
16927
17040
|
size: "xs",
|
|
16928
17041
|
tag: "a",
|
|
16929
|
-
onClick: (
|
|
17042
|
+
onClick: (H) => O.collapsed = !O.collapsed
|
|
16930
17043
|
}, {
|
|
16931
17044
|
default: h(() => [
|
|
16932
17045
|
T(v(O.collapsed ? "More" : "Less") + " ", 1),
|
|
@@ -16949,7 +17062,7 @@ function kw(e, t, n, r, s, i) {
|
|
|
16949
17062
|
key: 0,
|
|
16950
17063
|
icon: "",
|
|
16951
17064
|
tag: "a",
|
|
16952
|
-
onClick: (
|
|
17065
|
+
onClick: (H) => e.remove(O)
|
|
16953
17066
|
}, {
|
|
16954
17067
|
default: h(() => [
|
|
16955
17068
|
m(a, { icon: "fa-times" })
|
|
@@ -16965,8 +17078,8 @@ function kw(e, t, n, r, s, i) {
|
|
|
16965
17078
|
]),
|
|
16966
17079
|
_: 2
|
|
16967
17080
|
}, 1024),
|
|
16968
|
-
|
|
16969
|
-
onKeydown: t[4] || (t[4] = ge((
|
|
17081
|
+
Y(m(g, {
|
|
17082
|
+
onKeydown: t[4] || (t[4] = ge((H) => i.enterPress(H), ["enter"]))
|
|
16970
17083
|
}, {
|
|
16971
17084
|
default: h(() => [
|
|
16972
17085
|
m(p, {
|
|
@@ -16979,7 +17092,7 @@ function kw(e, t, n, r, s, i) {
|
|
|
16979
17092
|
"onForm:state": i.stateChange,
|
|
16980
17093
|
parentModel: e.parentModel,
|
|
16981
17094
|
modelValue: e.model[j],
|
|
16982
|
-
"onUpdate:modelValue": (
|
|
17095
|
+
"onUpdate:modelValue": (H) => e.model[j] = H,
|
|
16983
17096
|
flex: i.sameLine,
|
|
16984
17097
|
fields: e.field.fields
|
|
16985
17098
|
}, null, 8, ["trail", "includeOfficeOnly", "submission", "ignoreDefaults", "onForm:state", "parentModel", "modelValue", "onUpdate:modelValue", "flex", "fields"])
|
|
@@ -17161,7 +17274,7 @@ const ww = {
|
|
|
17161
17274
|
}
|
|
17162
17275
|
};
|
|
17163
17276
|
function Sw(e, t, n, r, s, i) {
|
|
17164
|
-
return
|
|
17277
|
+
return q(e.$slots, "default", { plainValue: i.plainValue }, () => [
|
|
17165
17278
|
x("pre", null, v(n.option), 1)
|
|
17166
17279
|
]);
|
|
17167
17280
|
}
|
|
@@ -17175,7 +17288,7 @@ const Ow = {
|
|
|
17175
17288
|
// type: [Object, Array],
|
|
17176
17289
|
}
|
|
17177
17290
|
},
|
|
17178
|
-
mixins: [
|
|
17291
|
+
mixins: [ie],
|
|
17179
17292
|
created() {
|
|
17180
17293
|
this.model = this.model;
|
|
17181
17294
|
},
|
|
@@ -17289,7 +17402,7 @@ const Iw = {
|
|
|
17289
17402
|
type: Object
|
|
17290
17403
|
}
|
|
17291
17404
|
},
|
|
17292
|
-
mixins: [
|
|
17405
|
+
mixins: [ie],
|
|
17293
17406
|
computed: {},
|
|
17294
17407
|
methods: {
|
|
17295
17408
|
getNewDefaultEntry() {
|
|
@@ -17371,7 +17484,7 @@ const Rw = {
|
|
|
17371
17484
|
type: [String, Array]
|
|
17372
17485
|
}
|
|
17373
17486
|
},
|
|
17374
|
-
mixins: [
|
|
17487
|
+
mixins: [ie],
|
|
17375
17488
|
computed: {
|
|
17376
17489
|
lazy() {
|
|
17377
17490
|
switch (this.type) {
|
|
@@ -17430,7 +17543,7 @@ const Rw = {
|
|
|
17430
17543
|
};
|
|
17431
17544
|
}
|
|
17432
17545
|
}
|
|
17433
|
-
}, $i = (e) => (
|
|
17546
|
+
}, $i = (e) => (qe("data-v-c8feb6c2"), e = e(), We(), e), Bw = {
|
|
17434
17547
|
key: 0,
|
|
17435
17548
|
class: "ux-field-title"
|
|
17436
17549
|
}, zw = {
|
|
@@ -17458,7 +17571,7 @@ function rS(e, t, n, r, s, i) {
|
|
|
17458
17571
|
default: h(() => [
|
|
17459
17572
|
x("div", Ww, [
|
|
17460
17573
|
Gw,
|
|
17461
|
-
i.lazy ?
|
|
17574
|
+
i.lazy ? Y((o(), d("input", {
|
|
17462
17575
|
key: 0,
|
|
17463
17576
|
class: "ux-field-focus ux-text-input-multiple",
|
|
17464
17577
|
placeholder: "Label",
|
|
@@ -17471,13 +17584,13 @@ function rS(e, t, n, r, s, i) {
|
|
|
17471
17584
|
"onUpdate:modelValue": (g) => e.model[p].title = g
|
|
17472
17585
|
}, null, 40, Kw)), [
|
|
17473
17586
|
[
|
|
17474
|
-
|
|
17587
|
+
ae,
|
|
17475
17588
|
e.model[p].title,
|
|
17476
17589
|
void 0,
|
|
17477
17590
|
{ lazy: !0 }
|
|
17478
17591
|
]
|
|
17479
17592
|
]) : _("", !0),
|
|
17480
|
-
i.lazy ? _("", !0) :
|
|
17593
|
+
i.lazy ? _("", !0) : Y((o(), d("input", {
|
|
17481
17594
|
key: 1,
|
|
17482
17595
|
class: "ux-field-focus ux-text-input-multiple",
|
|
17483
17596
|
placeholder: "Label",
|
|
@@ -17489,7 +17602,7 @@ function rS(e, t, n, r, s, i) {
|
|
|
17489
17602
|
"on:update:modelValue": (g) => i.entryTitleChanged(p),
|
|
17490
17603
|
"onUpdate:modelValue": (g) => e.model[p].title = g
|
|
17491
17604
|
}, null, 40, Yw)), [
|
|
17492
|
-
[
|
|
17605
|
+
[ae, e.model[p].title]
|
|
17493
17606
|
])
|
|
17494
17607
|
])
|
|
17495
17608
|
]),
|
|
@@ -17499,7 +17612,7 @@ function rS(e, t, n, r, s, i) {
|
|
|
17499
17612
|
default: h(() => [
|
|
17500
17613
|
x("div", Zw, [
|
|
17501
17614
|
Jw,
|
|
17502
|
-
i.lazy ?
|
|
17615
|
+
i.lazy ? Y((o(), d("input", {
|
|
17503
17616
|
key: 0,
|
|
17504
17617
|
class: "ux-field-focus ux-text-input-multiple",
|
|
17505
17618
|
placeholder: "Value",
|
|
@@ -17510,13 +17623,13 @@ function rS(e, t, n, r, s, i) {
|
|
|
17510
17623
|
"onUpdate:modelValue": (g) => e.model[p].value = g
|
|
17511
17624
|
}, null, 40, Xw)), [
|
|
17512
17625
|
[
|
|
17513
|
-
|
|
17626
|
+
ae,
|
|
17514
17627
|
e.model[p].value,
|
|
17515
17628
|
void 0,
|
|
17516
17629
|
{ lazy: !0 }
|
|
17517
17630
|
]
|
|
17518
17631
|
]) : _("", !0),
|
|
17519
|
-
i.lazy ? _("", !0) :
|
|
17632
|
+
i.lazy ? _("", !0) : Y((o(), d("input", {
|
|
17520
17633
|
key: 1,
|
|
17521
17634
|
class: "ux-field-focus ux-text-input-multiple",
|
|
17522
17635
|
placeholder: "Value",
|
|
@@ -17526,7 +17639,7 @@ function rS(e, t, n, r, s, i) {
|
|
|
17526
17639
|
onKeydown: t[5] || (t[5] = ge(z((g) => e.add(), ["stop", "prevent"]), ["enter"])),
|
|
17527
17640
|
"onUpdate:modelValue": (g) => e.model[p].value = g
|
|
17528
17641
|
}, null, 40, Qw)), [
|
|
17529
|
-
[
|
|
17642
|
+
[ae, e.model[p].value]
|
|
17530
17643
|
])
|
|
17531
17644
|
])
|
|
17532
17645
|
]),
|
|
@@ -17576,7 +17689,7 @@ function rS(e, t, n, r, s, i) {
|
|
|
17576
17689
|
default: h(() => [
|
|
17577
17690
|
x("div", eS, [
|
|
17578
17691
|
tS,
|
|
17579
|
-
i.lazy ?
|
|
17692
|
+
i.lazy ? Y((o(), d("input", {
|
|
17580
17693
|
key: 0,
|
|
17581
17694
|
class: "ux-field-focus ux-text-input-multiple",
|
|
17582
17695
|
placeholder: "Label",
|
|
@@ -17588,13 +17701,13 @@ function rS(e, t, n, r, s, i) {
|
|
|
17588
17701
|
"onUpdate:modelValue": t[11] || (t[11] = (c) => e.model.title = c)
|
|
17589
17702
|
}, null, 544)), [
|
|
17590
17703
|
[
|
|
17591
|
-
|
|
17704
|
+
ae,
|
|
17592
17705
|
e.model.title,
|
|
17593
17706
|
void 0,
|
|
17594
17707
|
{ lazy: !0 }
|
|
17595
17708
|
]
|
|
17596
17709
|
]) : _("", !0),
|
|
17597
|
-
i.lazy ? _("", !0) :
|
|
17710
|
+
i.lazy ? _("", !0) : Y((o(), d("input", {
|
|
17598
17711
|
key: 1,
|
|
17599
17712
|
class: "ux-field-focus ux-text-input-multiple",
|
|
17600
17713
|
placeholder: "Label",
|
|
@@ -17605,7 +17718,7 @@ function rS(e, t, n, r, s, i) {
|
|
|
17605
17718
|
"on:update:modelValue": t[15] || (t[15] = (...c) => i.entryTitleChanged && i.entryTitleChanged(...c)),
|
|
17606
17719
|
"onUpdate:modelValue": t[16] || (t[16] = (c) => e.model.title = c)
|
|
17607
17720
|
}, null, 544)), [
|
|
17608
|
-
[
|
|
17721
|
+
[ae, e.model.title]
|
|
17609
17722
|
])
|
|
17610
17723
|
])
|
|
17611
17724
|
]),
|
|
@@ -17615,7 +17728,7 @@ function rS(e, t, n, r, s, i) {
|
|
|
17615
17728
|
default: h(() => [
|
|
17616
17729
|
x("div", nS, [
|
|
17617
17730
|
iS,
|
|
17618
|
-
i.lazy ?
|
|
17731
|
+
i.lazy ? Y((o(), d("input", {
|
|
17619
17732
|
key: 0,
|
|
17620
17733
|
class: "ux-field-focus ux-text-input-multiple",
|
|
17621
17734
|
placeholder: "Value",
|
|
@@ -17625,13 +17738,13 @@ function rS(e, t, n, r, s, i) {
|
|
|
17625
17738
|
"onUpdate:modelValue": t[19] || (t[19] = (c) => e.model.value = c)
|
|
17626
17739
|
}, null, 544)), [
|
|
17627
17740
|
[
|
|
17628
|
-
|
|
17741
|
+
ae,
|
|
17629
17742
|
e.model.value,
|
|
17630
17743
|
void 0,
|
|
17631
17744
|
{ lazy: !0 }
|
|
17632
17745
|
]
|
|
17633
17746
|
]) : _("", !0),
|
|
17634
|
-
i.lazy ? _("", !0) :
|
|
17747
|
+
i.lazy ? _("", !0) : Y((o(), d("input", {
|
|
17635
17748
|
key: 1,
|
|
17636
17749
|
class: "ux-field-focus ux-text-input-multiple",
|
|
17637
17750
|
placeholder: "Value",
|
|
@@ -17640,7 +17753,7 @@ function rS(e, t, n, r, s, i) {
|
|
|
17640
17753
|
onKeydown: t[21] || (t[21] = ge(z((c) => e.add(), ["stop", "prevent"]), ["enter"])),
|
|
17641
17754
|
"onUpdate:modelValue": t[22] || (t[22] = (c) => e.model.value = c)
|
|
17642
17755
|
}, null, 544)), [
|
|
17643
|
-
[
|
|
17756
|
+
[ae, e.model.value]
|
|
17644
17757
|
])
|
|
17645
17758
|
])
|
|
17646
17759
|
]),
|
|
@@ -17835,7 +17948,7 @@ const cS = {
|
|
|
17835
17948
|
return this.field ? this.field.syntax : "json";
|
|
17836
17949
|
}
|
|
17837
17950
|
},
|
|
17838
|
-
mixins: [
|
|
17951
|
+
mixins: [ie],
|
|
17839
17952
|
methods: {
|
|
17840
17953
|
enterPress() {
|
|
17841
17954
|
},
|
|
@@ -17937,7 +18050,7 @@ const bS = {
|
|
|
17937
18050
|
type: [String, Array]
|
|
17938
18051
|
}
|
|
17939
18052
|
},
|
|
17940
|
-
mixins: [
|
|
18053
|
+
mixins: [ie],
|
|
17941
18054
|
methods: {
|
|
17942
18055
|
enterPress() {
|
|
17943
18056
|
},
|
|
@@ -18096,7 +18209,7 @@ const DS = {
|
|
|
18096
18209
|
// return this.field ? this.field.syntax : 'json';
|
|
18097
18210
|
// }
|
|
18098
18211
|
},
|
|
18099
|
-
mixins: [
|
|
18212
|
+
mixins: [ie],
|
|
18100
18213
|
methods: {
|
|
18101
18214
|
getNewDefaultEntry() {
|
|
18102
18215
|
return "";
|
|
@@ -18196,7 +18309,7 @@ var ki = {}, RS = {
|
|
|
18196
18309
|
};
|
|
18197
18310
|
(function(e, t) {
|
|
18198
18311
|
(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,
|
|
18312
|
+
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
18313
|
var st = new Error(N + " at character " + V);
|
|
18201
18314
|
throw st.index = V, st.description = N, st;
|
|
18202
18315
|
}, Me = !0, xe = { "-": Me, "!": Me, "~": Me, "+": Me }, we = {
|
|
@@ -18262,16 +18375,16 @@ var ki = {}, RS = {
|
|
|
18262
18375
|
for (var E = de(V); E === 32 || E === 9 || E === 10 || E === 13; )
|
|
18263
18376
|
E = de(++V);
|
|
18264
18377
|
}, zt = function() {
|
|
18265
|
-
var E =
|
|
18266
|
-
if (at(), de(V) ===
|
|
18267
|
-
if (V++, P = zt(), P ||
|
|
18268
|
-
return V++, Z = zt(), Z ||
|
|
18378
|
+
var E = Uo(), P, Z;
|
|
18379
|
+
if (at(), de(V) === W) {
|
|
18380
|
+
if (V++, P = zt(), P || G("Expected expression", V), at(), de(V) === le)
|
|
18381
|
+
return V++, Z = zt(), Z || G("Expected expression", V), {
|
|
18269
18382
|
type: g,
|
|
18270
18383
|
test: E,
|
|
18271
18384
|
consequent: P,
|
|
18272
18385
|
alternate: Z
|
|
18273
18386
|
};
|
|
18274
|
-
|
|
18387
|
+
G("Expected :", V);
|
|
18275
18388
|
} else
|
|
18276
18389
|
return E;
|
|
18277
18390
|
}, Zr = function() {
|
|
@@ -18282,26 +18395,26 @@ var ki = {}, RS = {
|
|
|
18282
18395
|
E = E.substr(0, --P);
|
|
18283
18396
|
}
|
|
18284
18397
|
return !1;
|
|
18285
|
-
},
|
|
18286
|
-
var E, P, Z,
|
|
18398
|
+
}, Uo = function() {
|
|
18399
|
+
var E, P, Z, se, Et, Je, gt, Ht, es;
|
|
18287
18400
|
if (Je = Rn(), P = Zr(), !P)
|
|
18288
18401
|
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 ||
|
|
18402
|
+
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); ) {
|
|
18403
|
+
for (Et = { value: P, prec: Z }, es = P; se.length > 2 && Z <= se[se.length - 2].prec; )
|
|
18404
|
+
gt = se.pop(), P = se.pop().value, Je = se.pop(), E = Rt(P, Je, gt), se.push(E);
|
|
18405
|
+
E = Rn(), E || G("Expected expression after " + es, V), se.push(Et, E);
|
|
18293
18406
|
}
|
|
18294
|
-
for (Ht =
|
|
18295
|
-
E = Rt(
|
|
18407
|
+
for (Ht = se.length - 1, E = se[Ht]; Ht > 1; )
|
|
18408
|
+
E = Rt(se[Ht - 1].value, se[Ht - 2], E), Ht -= 2;
|
|
18296
18409
|
return E;
|
|
18297
18410
|
}, Rn = function() {
|
|
18298
18411
|
var E, P, Z;
|
|
18299
18412
|
if (at(), E = de(V), _t(E) || E === w)
|
|
18300
|
-
return Uo();
|
|
18301
|
-
if (E === j || E === M)
|
|
18302
18413
|
return jo();
|
|
18303
|
-
if (E ===
|
|
18304
|
-
return
|
|
18414
|
+
if (E === j || E === H)
|
|
18415
|
+
return Ro();
|
|
18416
|
+
if (E === re)
|
|
18417
|
+
return Ho();
|
|
18305
18418
|
for (P = N.substr(V, Ce), Z = P.length; Z > 0; ) {
|
|
18306
18419
|
if (xe.hasOwnProperty(P) && (!rt(de(V)) || V + P.length < N.length && !Vt(de(V + P.length))))
|
|
18307
18420
|
return V += Z, {
|
|
@@ -18312,8 +18425,8 @@ var ki = {}, RS = {
|
|
|
18312
18425
|
};
|
|
18313
18426
|
P = P.substr(0, --Z);
|
|
18314
18427
|
}
|
|
18315
|
-
return rt(E) || E ===
|
|
18316
|
-
},
|
|
18428
|
+
return rt(E) || E === D ? Bo() : !1;
|
|
18429
|
+
}, jo = function() {
|
|
18317
18430
|
for (var E = "", P, Z; _t(de(V)); )
|
|
18318
18431
|
E += De(V++);
|
|
18319
18432
|
if (de(V) === w)
|
|
@@ -18322,20 +18435,20 @@ var ki = {}, RS = {
|
|
|
18322
18435
|
if (P = De(V), P === "e" || P === "E") {
|
|
18323
18436
|
for (E += De(V++), P = De(V), (P === "+" || P === "-") && (E += De(V++)); _t(de(V)); )
|
|
18324
18437
|
E += De(V++);
|
|
18325
|
-
_t(de(V - 1)) ||
|
|
18438
|
+
_t(de(V - 1)) || G("Expected exponent (" + E + De(V) + ")", V);
|
|
18326
18439
|
}
|
|
18327
|
-
return Z = de(V), rt(Z) ?
|
|
18440
|
+
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
18441
|
type: a,
|
|
18329
18442
|
value: parseFloat(E),
|
|
18330
18443
|
raw: E
|
|
18331
18444
|
};
|
|
18332
|
-
},
|
|
18333
|
-
for (var E = "", P = De(V++), Z = !1,
|
|
18334
|
-
if (
|
|
18445
|
+
}, Ro = function() {
|
|
18446
|
+
for (var E = "", P = De(V++), Z = !1, se; V < fn; )
|
|
18447
|
+
if (se = De(V++), se === P) {
|
|
18335
18448
|
Z = !0;
|
|
18336
18449
|
break;
|
|
18337
|
-
} else if (
|
|
18338
|
-
switch (
|
|
18450
|
+
} else if (se === "\\")
|
|
18451
|
+
switch (se = De(V++), se) {
|
|
18339
18452
|
case "n":
|
|
18340
18453
|
E += `
|
|
18341
18454
|
`;
|
|
@@ -18356,18 +18469,18 @@ var ki = {}, RS = {
|
|
|
18356
18469
|
E += "\v";
|
|
18357
18470
|
break;
|
|
18358
18471
|
default:
|
|
18359
|
-
E +=
|
|
18472
|
+
E += se;
|
|
18360
18473
|
}
|
|
18361
18474
|
else
|
|
18362
|
-
E +=
|
|
18363
|
-
return Z ||
|
|
18475
|
+
E += se;
|
|
18476
|
+
return Z || G('Unclosed quote after "' + E + '"', V), {
|
|
18364
18477
|
type: a,
|
|
18365
18478
|
value: E,
|
|
18366
18479
|
raw: P + E + P
|
|
18367
18480
|
};
|
|
18368
18481
|
}, Jr = function() {
|
|
18369
18482
|
var E = de(V), P = V, Z;
|
|
18370
|
-
for (rt(E) ? V++ :
|
|
18483
|
+
for (rt(E) ? V++ : G("Unexpected " + De(V), V); V < fn && (E = de(V), Vt(E)); )
|
|
18371
18484
|
V++;
|
|
18372
18485
|
return Z = N.slice(P, V), Ve.hasOwnProperty(Z) ? {
|
|
18373
18486
|
type: a,
|
|
@@ -18378,53 +18491,53 @@ var ki = {}, RS = {
|
|
|
18378
18491
|
name: Z
|
|
18379
18492
|
};
|
|
18380
18493
|
}, Xr = function(E) {
|
|
18381
|
-
for (var P, Z = [],
|
|
18494
|
+
for (var P, Z = [], se, Et = !1, Je = 0; V < fn; )
|
|
18382
18495
|
if (at(), P = de(V), P === E) {
|
|
18383
|
-
Et = !0, V++, E ===
|
|
18496
|
+
Et = !0, V++, E === ee && Je && Je >= Z.length && G("Unexpected token " + String.fromCharCode(E), V);
|
|
18384
18497
|
break;
|
|
18385
18498
|
} else if (P === O) {
|
|
18386
18499
|
if (V++, Je++, Je !== Z.length) {
|
|
18387
|
-
if (E ===
|
|
18388
|
-
|
|
18500
|
+
if (E === ee)
|
|
18501
|
+
G("Unexpected token ,", V);
|
|
18389
18502
|
else if (E === ue)
|
|
18390
18503
|
for (var gt = Z.length; gt < Je; gt++)
|
|
18391
18504
|
Z.push(null);
|
|
18392
18505
|
}
|
|
18393
18506
|
} else
|
|
18394
|
-
|
|
18395
|
-
return Et ||
|
|
18396
|
-
},
|
|
18507
|
+
se = zt(), (!se || se.type === r) && G("Expected comma", V), Z.push(se);
|
|
18508
|
+
return Et || G("Expected " + String.fromCharCode(E), V), Z;
|
|
18509
|
+
}, Bo = function() {
|
|
18397
18510
|
var E, P;
|
|
18398
|
-
for (E = de(V), E ===
|
|
18511
|
+
for (E = de(V), E === D ? P = zo() : P = Jr(), at(), E = de(V); E === w || E === re || E === D; )
|
|
18399
18512
|
V++, E === w ? (at(), P = {
|
|
18400
18513
|
type: i,
|
|
18401
18514
|
computed: !1,
|
|
18402
18515
|
object: P,
|
|
18403
18516
|
property: Jr()
|
|
18404
|
-
}) : E ===
|
|
18517
|
+
}) : E === re ? (P = {
|
|
18405
18518
|
type: i,
|
|
18406
18519
|
computed: !0,
|
|
18407
18520
|
object: P,
|
|
18408
18521
|
property: zt()
|
|
18409
|
-
}, at(), E = de(V), E !== ue &&
|
|
18522
|
+
}, at(), E = de(V), E !== ue && G("Unclosed [", V), V++) : E === D && (P = {
|
|
18410
18523
|
type: u,
|
|
18411
|
-
arguments: Xr(
|
|
18524
|
+
arguments: Xr(ee),
|
|
18412
18525
|
callee: P
|
|
18413
18526
|
}), at(), E = de(V);
|
|
18414
18527
|
return P;
|
|
18415
|
-
},
|
|
18528
|
+
}, zo = function() {
|
|
18416
18529
|
V++;
|
|
18417
18530
|
var E = zt();
|
|
18418
|
-
if (at(), de(V) ===
|
|
18531
|
+
if (at(), de(V) === ee)
|
|
18419
18532
|
return V++, E;
|
|
18420
|
-
|
|
18421
|
-
},
|
|
18533
|
+
G("Unclosed (", V);
|
|
18534
|
+
}, Ho = function() {
|
|
18422
18535
|
return V++, {
|
|
18423
18536
|
type: b,
|
|
18424
18537
|
elements: Xr(ue)
|
|
18425
18538
|
};
|
|
18426
18539
|
}, Bn = [], Ni, Qr; V < fn; )
|
|
18427
|
-
Ni = de(V), Ni === $ || Ni === O ? V++ : (Qr = zt()) ? Bn.push(Qr) : V < fn &&
|
|
18540
|
+
Ni = de(V), Ni === $ || Ni === O ? V++ : (Qr = zt()) ? Bn.push(Qr) : V < fn && G('Unexpected "' + De(V) + '"', V);
|
|
18428
18541
|
return Bn.length === 1 ? Bn[0] : {
|
|
18429
18542
|
type: r,
|
|
18430
18543
|
body: Bn
|
|
@@ -18565,11 +18678,11 @@ var YS = KS, ZS = qS, JS = GS, XS = YS;
|
|
|
18565
18678
|
function QS(e, t, n) {
|
|
18566
18679
|
return t === t ? XS(e, t, n) : ZS(e, JS, n);
|
|
18567
18680
|
}
|
|
18568
|
-
var
|
|
18681
|
+
var vo = QS, e2 = Fn, t2 = Ln, n2 = $n, i2 = "[object String]";
|
|
18569
18682
|
function r2(e) {
|
|
18570
18683
|
return typeof e == "string" || !t2(e) && n2(e) && e2(e) == i2;
|
|
18571
18684
|
}
|
|
18572
|
-
var s2 = r2, a2 =
|
|
18685
|
+
var s2 = r2, a2 = yo;
|
|
18573
18686
|
function l2(e) {
|
|
18574
18687
|
var t = a2(e), n = t % 1;
|
|
18575
18688
|
return t === t ? n ? t - n : t : 0;
|
|
@@ -18590,7 +18703,7 @@ var m2 = f2, h2 = Fn, p2 = $n, y2 = "[object Arguments]";
|
|
|
18590
18703
|
function _2(e) {
|
|
18591
18704
|
return p2(e) && h2(e) == y2;
|
|
18592
18705
|
}
|
|
18593
|
-
var g2 = _2, da = g2, v2 = $n,
|
|
18706
|
+
var g2 = _2, da = g2, v2 = $n, bo = Object.prototype, b2 = bo.hasOwnProperty, k2 = bo.propertyIsEnumerable, x2 = da(function() {
|
|
18594
18707
|
return arguments;
|
|
18595
18708
|
}()) ? da : function(e) {
|
|
18596
18709
|
return v2(e) && b2.call(e, "callee") && !k2.call(e, "callee");
|
|
@@ -18610,11 +18723,11 @@ var O2 = T2;
|
|
|
18610
18723
|
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
18724
|
e.exports = f;
|
|
18612
18725
|
})(S2, xi);
|
|
18613
|
-
var C2 = Fn, V2 =
|
|
18614
|
-
|
|
18615
|
-
|
|
18726
|
+
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 = {};
|
|
18727
|
+
oe[q2] = oe[W2] = oe[G2] = oe[K2] = oe[Y2] = oe[Z2] = oe[J2] = oe[X2] = oe[Q2] = !0;
|
|
18728
|
+
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
18729
|
function eT(e) {
|
|
18617
|
-
return E2(e) && V2(e.length) && !!
|
|
18730
|
+
return E2(e) && V2(e.length) && !!oe[C2(e)];
|
|
18618
18731
|
}
|
|
18619
18732
|
var tT = eT;
|
|
18620
18733
|
function nT(e) {
|
|
@@ -18640,7 +18753,7 @@ var iT = nT, wi = {}, rT = {
|
|
|
18640
18753
|
}();
|
|
18641
18754
|
e.exports = l;
|
|
18642
18755
|
})(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 =
|
|
18756
|
+
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
18757
|
function _T(e, t) {
|
|
18645
18758
|
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
18759
|
for (var f in e)
|
|
@@ -18679,7 +18792,7 @@ var LT = NT, PT = c2, UT = LT;
|
|
|
18679
18792
|
function jT(e) {
|
|
18680
18793
|
return e == null ? [] : PT(e, UT(e));
|
|
18681
18794
|
}
|
|
18682
|
-
var RT = jT, BT =
|
|
18795
|
+
var RT = jT, BT = vo, zT = Gr, HT = s2, qT = o2, WT = RT, GT = Math.max;
|
|
18683
18796
|
function KT(e, t, n, r) {
|
|
18684
18797
|
e = zT(e) ? e : WT(e), n = n && !r ? qT(n) : 0;
|
|
18685
18798
|
var s = e.length;
|
|
@@ -18768,7 +18881,7 @@ const QT = Array.from({ length: 6 }, (e, t) => new Date().getFullYear() + t).map
|
|
|
18768
18881
|
value: t
|
|
18769
18882
|
};
|
|
18770
18883
|
}), eO = {
|
|
18771
|
-
mixins: [
|
|
18884
|
+
mixins: [ie],
|
|
18772
18885
|
components: {
|
|
18773
18886
|
// StripeElements,
|
|
18774
18887
|
// StripeElement,
|
|
@@ -19057,7 +19170,7 @@ const QT = Array.from({ length: 6 }, (e, t) => new Date().getFullYear() + t).map
|
|
|
19057
19170
|
};
|
|
19058
19171
|
}
|
|
19059
19172
|
}
|
|
19060
|
-
}, jn = (e) => (
|
|
19173
|
+
}, 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
19174
|
key: 0,
|
|
19062
19175
|
class: "grand-total"
|
|
19063
19176
|
}, lO = /* @__PURE__ */ jn(() => /* @__PURE__ */ x("td", null, [
|
|
@@ -19164,7 +19277,7 @@ const mO = {
|
|
|
19164
19277
|
// type: [Object, Array],
|
|
19165
19278
|
}
|
|
19166
19279
|
},
|
|
19167
|
-
mixins: [
|
|
19280
|
+
mixins: [ie],
|
|
19168
19281
|
created() {
|
|
19169
19282
|
this.model = this.model;
|
|
19170
19283
|
},
|
|
@@ -19272,7 +19385,7 @@ function xO(e, t, n, r, s, i) {
|
|
|
19272
19385
|
e.showDescription ? (o(), d("div", yO, v(e.description), 1)) : _("", !0),
|
|
19273
19386
|
i.selectableOptions.length ? (o(), d(S, { key: 2 }, [
|
|
19274
19387
|
e.singleValue ? (o(), d("div", _O, [
|
|
19275
|
-
|
|
19388
|
+
q(e.$slots, "default", {}, () => [
|
|
19276
19389
|
m(a, { tag: "div" }, {
|
|
19277
19390
|
default: h(() => [
|
|
19278
19391
|
T(v(i.summary), 1)
|
|
@@ -19281,7 +19394,7 @@ function xO(e, t, n, r, s, i) {
|
|
|
19281
19394
|
})
|
|
19282
19395
|
], !0)
|
|
19283
19396
|
])) : _("", !0),
|
|
19284
|
-
|
|
19397
|
+
Y(x("select", {
|
|
19285
19398
|
onFocus: t[0] || (t[0] = (...l) => e.touch && e.touch(...l)),
|
|
19286
19399
|
multiple: e.multiValue,
|
|
19287
19400
|
"onUpdate:modelValue": t[1] || (t[1] = (l) => e.model = l)
|
|
@@ -19316,7 +19429,7 @@ const TO = {
|
|
|
19316
19429
|
// type: [Object, Array],
|
|
19317
19430
|
}
|
|
19318
19431
|
},
|
|
19319
|
-
mixins: [
|
|
19432
|
+
mixins: [ie],
|
|
19320
19433
|
created() {
|
|
19321
19434
|
this.model = this.model;
|
|
19322
19435
|
},
|
|
@@ -19403,7 +19516,7 @@ function IO(e, t, n, r, s, i) {
|
|
|
19403
19516
|
])) : _("", !0),
|
|
19404
19517
|
e.showDescription ? (o(), d("div", VO, v(e.description), 1)) : _("", !0),
|
|
19405
19518
|
e.singleValue ? (o(), d("div", EO, [
|
|
19406
|
-
|
|
19519
|
+
q(e.$slots, "default", {}, () => [
|
|
19407
19520
|
m(a, { tag: "div" }, {
|
|
19408
19521
|
default: h(() => [
|
|
19409
19522
|
T(v(i.summary), 1)
|
|
@@ -19412,7 +19525,7 @@ function IO(e, t, n, r, s, i) {
|
|
|
19412
19525
|
})
|
|
19413
19526
|
], !0)
|
|
19414
19527
|
])) : _("", !0),
|
|
19415
|
-
|
|
19528
|
+
Y(x("select", {
|
|
19416
19529
|
onFocus: t[0] || (t[0] = (...l) => e.touch && e.touch(...l)),
|
|
19417
19530
|
multiple: e.multiValue,
|
|
19418
19531
|
"onUpdate:modelValue": t[1] || (t[1] = (l) => e.model = l)
|
|
@@ -19802,11 +19915,11 @@ const GO = {
|
|
|
19802
19915
|
InternalFieldCreator: qO,
|
|
19803
19916
|
ButtonSelect: Dw,
|
|
19804
19917
|
NativeSelect: Ct,
|
|
19805
|
-
DateField:
|
|
19918
|
+
DateField: mo,
|
|
19806
19919
|
TimeField: o0,
|
|
19807
19920
|
DateRange: p0,
|
|
19808
|
-
TextField:
|
|
19809
|
-
CurrencyField:
|
|
19921
|
+
TextField: fo,
|
|
19922
|
+
CurrencyField: co,
|
|
19810
19923
|
TextArea: Gb,
|
|
19811
19924
|
Checkbox: k0,
|
|
19812
19925
|
FilterInput: cx,
|
|
@@ -19818,11 +19931,11 @@ const GO = {
|
|
|
19818
19931
|
BooleanSwitch: Xx,
|
|
19819
19932
|
FieldGroup: xw,
|
|
19820
19933
|
ContentSelect: oo,
|
|
19821
|
-
TypeSelect:
|
|
19822
|
-
ScopeSelect:
|
|
19934
|
+
TypeSelect: K1,
|
|
19935
|
+
ScopeSelect: uo,
|
|
19823
19936
|
FieldSelect: sa,
|
|
19824
|
-
TimezoneSelect:
|
|
19825
|
-
PhoneNumberInput:
|
|
19937
|
+
TimezoneSelect: $v,
|
|
19938
|
+
PhoneNumberInput: Sv,
|
|
19826
19939
|
Upload: dw,
|
|
19827
19940
|
ObjectField: jw,
|
|
19828
19941
|
OptionsManager: sS,
|
|
@@ -20224,7 +20337,7 @@ const GO = {
|
|
|
20224
20337
|
class: "ux-field-message"
|
|
20225
20338
|
};
|
|
20226
20339
|
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"),
|
|
20340
|
+
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
20341
|
return i.visible ? (o(), d("div", {
|
|
20229
20342
|
key: 0,
|
|
20230
20343
|
class: L(["ux-field", i.classes]),
|
|
@@ -20309,7 +20422,7 @@ function YO(e, t, n, r, s, i) {
|
|
|
20309
20422
|
"onUpdate:modelValue": t[10] || (t[10] = (A) => i.fieldModel = A)
|
|
20310
20423
|
}, null, 8, ["onTouched", "field", "modelValue"])) : _("", !0),
|
|
20311
20424
|
i.widget == "group" ? (o(), d(S, { key: 12 }, [
|
|
20312
|
-
i.asObject ? (o(), k(
|
|
20425
|
+
i.asObject ? (o(), k(H, {
|
|
20313
20426
|
key: 0,
|
|
20314
20427
|
trail: i.currentTrail,
|
|
20315
20428
|
paymentConfiguration: n.paymentConfiguration,
|
|
@@ -20324,7 +20437,7 @@ function YO(e, t, n, r, s, i) {
|
|
|
20324
20437
|
parentModel: n.parentModel,
|
|
20325
20438
|
modelValue: i.fieldModel,
|
|
20326
20439
|
"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(
|
|
20440
|
+
}, null, 8, ["trail", "paymentConfiguration", "includeOfficeOnly", "submission", "ignoreDefaults", "sandbox", "onForm:state", "onTouched", "field", "parentModel", "modelValue"])) : (o(), k(H, {
|
|
20328
20441
|
key: 1,
|
|
20329
20442
|
trail: n.trail,
|
|
20330
20443
|
paymentConfiguration: n.paymentConfiguration,
|
|
@@ -20341,7 +20454,7 @@ function YO(e, t, n, r, s, i) {
|
|
|
20341
20454
|
"onUpdate:modelValue": t[12] || (t[12] = (A) => i.sourceModel = A)
|
|
20342
20455
|
}, null, 8, ["trail", "paymentConfiguration", "includeOfficeOnly", "submission", "ignoreDefaults", "sandbox", "onForm:state", "onTouched", "field", "parentModel", "modelValue"]))
|
|
20343
20456
|
], 64)) : _("", !0),
|
|
20344
|
-
i.widget == "form" ? (o(), k(
|
|
20457
|
+
i.widget == "form" ? (o(), k(H, {
|
|
20345
20458
|
key: 13,
|
|
20346
20459
|
trail: i.currentTrail,
|
|
20347
20460
|
paymentConfiguration: n.paymentConfiguration,
|
|
@@ -20357,21 +20470,21 @@ function YO(e, t, n, r, s, i) {
|
|
|
20357
20470
|
modelValue: i.fieldModel,
|
|
20358
20471
|
"onUpdate:modelValue": t[13] || (t[13] = (A) => i.fieldModel = A)
|
|
20359
20472
|
}, null, 8, ["trail", "paymentConfiguration", "includeOfficeOnly", "submission", "ignoreDefaults", "sandbox", "onForm:state", "onTouched", "field", "parentModel", "modelValue"])) : _("", !0),
|
|
20360
|
-
i.widget == "field-select" ? (o(), k(
|
|
20473
|
+
i.widget == "field-select" ? (o(), k(D, {
|
|
20361
20474
|
key: 14,
|
|
20362
20475
|
onTouched: i.touch,
|
|
20363
20476
|
field: i.actualField,
|
|
20364
20477
|
modelValue: i.fieldModel,
|
|
20365
20478
|
"onUpdate:modelValue": t[14] || (t[14] = (A) => i.fieldModel = A)
|
|
20366
20479
|
}, null, 8, ["onTouched", "field", "modelValue"])) : _("", !0),
|
|
20367
|
-
i.widget == "select" ? (o(), k(
|
|
20480
|
+
i.widget == "select" ? (o(), k(ee, {
|
|
20368
20481
|
key: 15,
|
|
20369
20482
|
onTouched: i.touch,
|
|
20370
20483
|
field: i.actualField,
|
|
20371
20484
|
modelValue: i.fieldModel,
|
|
20372
20485
|
"onUpdate:modelValue": t[15] || (t[15] = (A) => i.fieldModel = A)
|
|
20373
20486
|
}, null, 8, ["onTouched", "field", "modelValue"])) : _("", !0),
|
|
20374
|
-
i.widget == "button" ? (o(), k(
|
|
20487
|
+
i.widget == "button" ? (o(), k(re, {
|
|
20375
20488
|
key: 16,
|
|
20376
20489
|
onTouched: i.touch,
|
|
20377
20490
|
field: i.actualField,
|
|
@@ -20385,7 +20498,7 @@ function YO(e, t, n, r, s, i) {
|
|
|
20385
20498
|
modelValue: i.fieldModel,
|
|
20386
20499
|
"onUpdate:modelValue": t[17] || (t[17] = (A) => i.fieldModel = A)
|
|
20387
20500
|
}, null, 8, ["onTouched", "field", "modelValue"])) : _("", !0),
|
|
20388
|
-
i.widget == "currency" ? (o(), k(
|
|
20501
|
+
i.widget == "currency" ? (o(), k(W, {
|
|
20389
20502
|
key: 18,
|
|
20390
20503
|
onTouched: i.touch,
|
|
20391
20504
|
field: i.actualField,
|
|
@@ -20399,14 +20512,14 @@ function YO(e, t, n, r, s, i) {
|
|
|
20399
20512
|
modelValue: i.fieldModel,
|
|
20400
20513
|
"onUpdate:modelValue": t[19] || (t[19] = (A) => i.fieldModel = A)
|
|
20401
20514
|
}, null, 8, ["onTouched", "field", "modelValue"])) : _("", !0),
|
|
20402
|
-
i.widget == "datefield" ? (o(), k(
|
|
20515
|
+
i.widget == "datefield" ? (o(), k(le, {
|
|
20403
20516
|
key: 20,
|
|
20404
20517
|
onTouched: i.touch,
|
|
20405
20518
|
field: i.actualField,
|
|
20406
20519
|
modelValue: i.fieldModel,
|
|
20407
20520
|
"onUpdate:modelValue": t[20] || (t[20] = (A) => i.fieldModel = A)
|
|
20408
20521
|
}, null, 8, ["onTouched", "field", "modelValue"])) : _("", !0),
|
|
20409
|
-
i.widget == "daterange" ? (o(), k(
|
|
20522
|
+
i.widget == "daterange" ? (o(), k(G, {
|
|
20410
20523
|
key: 21,
|
|
20411
20524
|
onTouched: i.touch,
|
|
20412
20525
|
field: i.actualField,
|
|
@@ -20730,14 +20843,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
20843
|
function vC(e) {
|
|
20731
20844
|
return gC.test(e);
|
|
20732
20845
|
}
|
|
20733
|
-
var bC = vC,
|
|
20734
|
-
Yt + "?" +
|
|
20846
|
+
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([
|
|
20847
|
+
Yt + "?" + Vo + "+" + pa + "(?=" + [ma, Yt, "$"].join("|") + ")",
|
|
20735
20848
|
NC + "+" + ya + "(?=" + [ma, Yt + ha, "$"].join("|") + ")",
|
|
20736
20849
|
Yt + "?" + ha + "+" + pa,
|
|
20737
20850
|
Yt + "+" + ya,
|
|
20738
20851
|
UC,
|
|
20739
20852
|
PC,
|
|
20740
|
-
|
|
20853
|
+
Co,
|
|
20741
20854
|
RC
|
|
20742
20855
|
].join("|"), "g");
|
|
20743
20856
|
function zC(e) {
|
|
@@ -20953,7 +21066,7 @@ function oV(e, t, n, r, s, i) {
|
|
|
20953
21066
|
return o(), d("div", {
|
|
20954
21067
|
class: L(["ux-form", i.formClass])
|
|
20955
21068
|
}, [
|
|
20956
|
-
|
|
21069
|
+
q(e.$slots, "fields", {
|
|
20957
21070
|
fields: i.renderFields,
|
|
20958
21071
|
hash: i.fieldHash
|
|
20959
21072
|
}, () => [
|
|
@@ -20985,7 +21098,7 @@ function oV(e, t, n, r, s, i) {
|
|
|
20985
21098
|
], !0)
|
|
20986
21099
|
], 2);
|
|
20987
21100
|
}
|
|
20988
|
-
const
|
|
21101
|
+
const Fo = /* @__PURE__ */ C(lV, [["render", oV], ["__scopeId", "data-v-5a0fe930"]]);
|
|
20989
21102
|
const or = "form.ready", uV = "form.processing", _a = "form.complete", ga = "form.error", dV = "form.intent", cV = {
|
|
20990
21103
|
methods: {
|
|
20991
21104
|
formStateUpdated(e) {
|
|
@@ -21096,7 +21209,7 @@ const or = "form.ready", uV = "form.processing", _a = "form.complete", ga = "for
|
|
|
21096
21209
|
}
|
|
21097
21210
|
},
|
|
21098
21211
|
components: {
|
|
21099
|
-
UxForm:
|
|
21212
|
+
UxForm: Fo,
|
|
21100
21213
|
StripeElements: lc,
|
|
21101
21214
|
StripeElement: ic
|
|
21102
21215
|
},
|
|
@@ -21233,7 +21346,7 @@ const or = "form.ready", uV = "form.processing", _a = "form.complete", ga = "for
|
|
|
21233
21346
|
return this.form.fields || [];
|
|
21234
21347
|
}
|
|
21235
21348
|
}
|
|
21236
|
-
}, fV = (e) => (
|
|
21349
|
+
}, 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
21350
|
function vV(e, t, n, r, s, i) {
|
|
21238
21351
|
var b;
|
|
21239
21352
|
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 +21374,7 @@ function vV(e, t, n, r, s, i) {
|
|
|
21261
21374
|
]),
|
|
21262
21375
|
_: 1
|
|
21263
21376
|
}, 8, ["onClick"])
|
|
21264
|
-
], 64)) : s.state === "form.complete" ?
|
|
21377
|
+
], 64)) : s.state === "form.complete" ? q(e.$slots, "default", {
|
|
21265
21378
|
key: 1,
|
|
21266
21379
|
reset: i.reset
|
|
21267
21380
|
}, () => [
|
|
@@ -21413,12 +21526,12 @@ const bV = {
|
|
|
21413
21526
|
function wV(e, t, n, r, s, i) {
|
|
21414
21527
|
const a = y("ux-icon");
|
|
21415
21528
|
return o(), d("div", kV, [
|
|
21416
|
-
|
|
21529
|
+
Y(x("input", {
|
|
21417
21530
|
ref: "input",
|
|
21418
21531
|
"onUpdate:modelValue": t[0] || (t[0] = (l) => i.model = l),
|
|
21419
21532
|
placeholder: n.placeholder
|
|
21420
21533
|
}, null, 8, xV), [
|
|
21421
|
-
[
|
|
21534
|
+
[ae, i.model]
|
|
21422
21535
|
]),
|
|
21423
21536
|
x("div", {
|
|
21424
21537
|
onClick: t[1] || (t[1] = (l) => i.clear()),
|
|
@@ -21443,7 +21556,7 @@ function SV(e) {
|
|
|
21443
21556
|
}
|
|
21444
21557
|
return n.length > 0 ? { invalid: `Unclosed tag(s): ${n.join(", ")}` } : { valid: !0 };
|
|
21445
21558
|
}
|
|
21446
|
-
const
|
|
21559
|
+
const $o = {
|
|
21447
21560
|
props: {
|
|
21448
21561
|
template: {
|
|
21449
21562
|
type: String
|
|
@@ -21505,7 +21618,7 @@ function CV(e, t, n, r, s, i) {
|
|
|
21505
21618
|
]),
|
|
21506
21619
|
_: 1
|
|
21507
21620
|
}, 8, ["onClick"])
|
|
21508
|
-
])) :
|
|
21621
|
+
])) : q(e.$slots, "default", { key: 1 }, void 0, !0);
|
|
21509
21622
|
}
|
|
21510
21623
|
const VV = /* @__PURE__ */ C(TV, [["render", CV], ["__scopeId", "data-v-72d1a309"]]), EV = {
|
|
21511
21624
|
props: {
|
|
@@ -21672,7 +21785,7 @@ const FV = {
|
|
|
21672
21785
|
Item: jl,
|
|
21673
21786
|
FieldGroup: IV,
|
|
21674
21787
|
// Compiler,
|
|
21675
|
-
Compile:
|
|
21788
|
+
Compile: $o,
|
|
21676
21789
|
ErrorBoundary: VV
|
|
21677
21790
|
// ButtonSelect,
|
|
21678
21791
|
// NativeSelect,
|
|
@@ -22098,7 +22211,7 @@ function eE(e, t, n, r, s, i) {
|
|
|
22098
22211
|
], 64))
|
|
22099
22212
|
], 2)) : _("", !0);
|
|
22100
22213
|
}
|
|
22101
|
-
const
|
|
22214
|
+
const No = /* @__PURE__ */ C(FV, [["render", eE], ["__scopeId", "data-v-d9878666"]]);
|
|
22102
22215
|
const tE = {
|
|
22103
22216
|
props: {
|
|
22104
22217
|
parentModel: {
|
|
@@ -22136,7 +22249,7 @@ const tE = {
|
|
|
22136
22249
|
};
|
|
22137
22250
|
},
|
|
22138
22251
|
components: {
|
|
22139
|
-
UxFieldRender:
|
|
22252
|
+
UxFieldRender: No
|
|
22140
22253
|
},
|
|
22141
22254
|
computed: {
|
|
22142
22255
|
renderClass() {
|
|
@@ -22157,7 +22270,7 @@ function nE(e, t, n, r, s, i) {
|
|
|
22157
22270
|
return o(), d("div", {
|
|
22158
22271
|
class: L(["ux-render", i.renderClass])
|
|
22159
22272
|
}, [
|
|
22160
|
-
|
|
22273
|
+
q(e.$slots, "render", { fields: n.fields }, () => [
|
|
22161
22274
|
(o(!0), d(S, null, F(i.renderFields, (l, u) => (o(), k(a, {
|
|
22162
22275
|
submission: n.submission,
|
|
22163
22276
|
field: l,
|
|
@@ -22441,7 +22554,7 @@ function Si(e) {
|
|
|
22441
22554
|
}
|
|
22442
22555
|
Si.prototype.add = Si.prototype.push = hE;
|
|
22443
22556
|
Si.prototype.has = pE;
|
|
22444
|
-
var yE = Si, _E =
|
|
22557
|
+
var yE = Si, _E = vo;
|
|
22445
22558
|
function gE(e, t) {
|
|
22446
22559
|
var n = e == null ? 0 : e.length;
|
|
22447
22560
|
return !!n && _E(e, t, 0) > -1;
|
|
@@ -22467,9 +22580,9 @@ function AE(e) {
|
|
|
22467
22580
|
n[++t] = r;
|
|
22468
22581
|
}), n;
|
|
22469
22582
|
}
|
|
22470
|
-
var
|
|
22583
|
+
var Lo = AE, ur = CE, ME = EE, DE = Lo, IE = 1 / 0, FE = ur && 1 / DE(new ur([, -0]))[1] == IE ? function(e) {
|
|
22471
22584
|
return new ur(e);
|
|
22472
|
-
} : ME, $E = FE, NE = yE, LE = vE, PE = kE, UE = wE, jE = $E, RE =
|
|
22585
|
+
} : ME, $E = FE, NE = yE, LE = vE, PE = kE, UE = wE, jE = $E, RE = Lo, BE = 200;
|
|
22473
22586
|
function zE(e, t, n) {
|
|
22474
22587
|
var r = -1, s = LE, i = e.length, a = !0, l = [], u = l;
|
|
22475
22588
|
if (n)
|
|
@@ -22516,6 +22629,11 @@ function KE(e, t) {
|
|
|
22516
22629
|
switch (t) {
|
|
22517
22630
|
case "profile":
|
|
22518
22631
|
r = !0, n.push({
|
|
22632
|
+
title: "",
|
|
22633
|
+
path: "_id",
|
|
22634
|
+
shrink: !0,
|
|
22635
|
+
widget: "avatar"
|
|
22636
|
+
}), n.push({
|
|
22519
22637
|
title: "First Name",
|
|
22520
22638
|
key: "firstName",
|
|
22521
22639
|
shrink: !0
|
|
@@ -22526,9 +22644,6 @@ function KE(e, t) {
|
|
|
22526
22644
|
}), n.push({
|
|
22527
22645
|
title: "Email",
|
|
22528
22646
|
key: "emails"
|
|
22529
|
-
}), n.push({
|
|
22530
|
-
title: "Phone Number",
|
|
22531
|
-
key: "phoneNumbersInternational"
|
|
22532
22647
|
});
|
|
22533
22648
|
break;
|
|
22534
22649
|
case "definition":
|
|
@@ -22720,7 +22835,7 @@ const YE = {
|
|
|
22720
22835
|
components: {
|
|
22721
22836
|
Pager: lE,
|
|
22722
22837
|
NativeTable: S_,
|
|
22723
|
-
FilterBuilder:
|
|
22838
|
+
FilterBuilder: go,
|
|
22724
22839
|
Search: Yr,
|
|
22725
22840
|
UxField: Kr
|
|
22726
22841
|
},
|
|
@@ -23215,9 +23330,9 @@ const YE = {
|
|
|
23215
23330
|
actualOptions: this.options
|
|
23216
23331
|
};
|
|
23217
23332
|
}
|
|
23218
|
-
},
|
|
23333
|
+
}, 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
23334
|
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"),
|
|
23335
|
+
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
23336
|
return i.actualDefinition ? (o(), k(f, {
|
|
23222
23337
|
key: 0,
|
|
23223
23338
|
class: "content-browser"
|
|
@@ -23225,9 +23340,9 @@ function eA(e, t, n, r, s, i) {
|
|
|
23225
23340
|
default: h(() => [
|
|
23226
23341
|
m(f, { class: "browser-body" }, {
|
|
23227
23342
|
default: h(() => [
|
|
23228
|
-
m(
|
|
23343
|
+
m(H, null, {
|
|
23229
23344
|
default: h(() => [
|
|
23230
|
-
m(
|
|
23345
|
+
m(H, {
|
|
23231
23346
|
class: L({ loading: s.loading })
|
|
23232
23347
|
}, {
|
|
23233
23348
|
default: h(() => [
|
|
@@ -23236,7 +23351,7 @@ function eA(e, t, n, r, s, i) {
|
|
|
23236
23351
|
m(f, null, {
|
|
23237
23352
|
default: h(() => [
|
|
23238
23353
|
s.dataSource ? (o(), d(S, { key: 0 }, [
|
|
23239
|
-
|
|
23354
|
+
q(e.$slots, "abovecontent", {}, void 0, !0),
|
|
23240
23355
|
i.boundaryMessage ? (o(), k(f, {
|
|
23241
23356
|
key: 0,
|
|
23242
23357
|
class: "empty"
|
|
@@ -23303,7 +23418,7 @@ function eA(e, t, n, r, s, i) {
|
|
|
23303
23418
|
m(g, null, {
|
|
23304
23419
|
default: h(() => [
|
|
23305
23420
|
(o(!0), d(S, null, F(i.selectableFields, ($) => (o(), k(p, {
|
|
23306
|
-
onClick: (
|
|
23421
|
+
onClick: (le) => i.toggleField($),
|
|
23307
23422
|
key: $.path
|
|
23308
23423
|
}, {
|
|
23309
23424
|
default: h(() => [
|
|
@@ -23368,7 +23483,7 @@ function eA(e, t, n, r, s, i) {
|
|
|
23368
23483
|
}),
|
|
23369
23484
|
s.dataSource && !i.boundaryMessage ? (o(), k(j, { key: 0 }, {
|
|
23370
23485
|
default: h(() => [
|
|
23371
|
-
|
|
23486
|
+
q(e.$slots, "footera", {}, void 0, !0),
|
|
23372
23487
|
x("div", ZE, [
|
|
23373
23488
|
m(O, {
|
|
23374
23489
|
page: s.page,
|
|
@@ -23376,7 +23491,7 @@ function eA(e, t, n, r, s, i) {
|
|
|
23376
23491
|
total: i.totalItems
|
|
23377
23492
|
}, null, 8, ["page", "total"])
|
|
23378
23493
|
]),
|
|
23379
|
-
|
|
23494
|
+
q(e.$slots, "footerb", {}, void 0, !0)
|
|
23380
23495
|
]),
|
|
23381
23496
|
_: 3
|
|
23382
23497
|
})) : _("", !0)
|
|
@@ -23391,10 +23506,10 @@ function eA(e, t, n, r, s, i) {
|
|
|
23391
23506
|
class: "filter-column"
|
|
23392
23507
|
}, {
|
|
23393
23508
|
default: h(() => [
|
|
23394
|
-
|
|
23509
|
+
q(e.$slots, "abovefilter", {}, void 0, !0),
|
|
23395
23510
|
m(ue, null, {
|
|
23396
23511
|
default: h(() => [
|
|
23397
|
-
m(
|
|
23512
|
+
m(D, {
|
|
23398
23513
|
modelValue: s.keywords,
|
|
23399
23514
|
"onUpdate:modelValue": t[2] || (t[2] = ($) => s.keywords = $),
|
|
23400
23515
|
loading: i.searching,
|
|
@@ -23403,14 +23518,14 @@ function eA(e, t, n, r, s, i) {
|
|
|
23403
23518
|
}, null, 8, ["modelValue", "loading"]),
|
|
23404
23519
|
JE,
|
|
23405
23520
|
n.dateFilterEnabled ? (o(), d("div", XE, [
|
|
23406
|
-
m(
|
|
23521
|
+
m(ee, {
|
|
23407
23522
|
field: i.dateRangeField,
|
|
23408
23523
|
modelValue: s.dateRangeFilter,
|
|
23409
23524
|
"onUpdate:modelValue": t[3] || (t[3] = ($) => s.dateRangeFilter = $)
|
|
23410
23525
|
}, null, 8, ["field", "modelValue"])
|
|
23411
23526
|
])) : _("", !0),
|
|
23412
23527
|
QE,
|
|
23413
|
-
m(
|
|
23528
|
+
m(re, {
|
|
23414
23529
|
definition: i.actualDefinition,
|
|
23415
23530
|
modelValue: s.actualFilter,
|
|
23416
23531
|
"onUpdate:modelValue": t[4] || (t[4] = ($) => s.actualFilter = $)
|
|
@@ -23418,7 +23533,7 @@ function eA(e, t, n, r, s, i) {
|
|
|
23418
23533
|
]),
|
|
23419
23534
|
_: 1
|
|
23420
23535
|
}),
|
|
23421
|
-
|
|
23536
|
+
q(e.$slots, "belowfilter", {}, void 0, !0)
|
|
23422
23537
|
]),
|
|
23423
23538
|
_: 3
|
|
23424
23539
|
})) : _("", !0)
|
|
@@ -23428,7 +23543,7 @@ function eA(e, t, n, r, s, i) {
|
|
|
23428
23543
|
]),
|
|
23429
23544
|
_: 3
|
|
23430
23545
|
}),
|
|
23431
|
-
s.loading ? (o(), k(
|
|
23546
|
+
s.loading ? (o(), k(W, {
|
|
23432
23547
|
key: 0,
|
|
23433
23548
|
large: ""
|
|
23434
23549
|
})) : _("", !0)
|
|
@@ -23436,7 +23551,7 @@ function eA(e, t, n, r, s, i) {
|
|
|
23436
23551
|
_: 3
|
|
23437
23552
|
})) : _("", !0);
|
|
23438
23553
|
}
|
|
23439
|
-
const tA = /* @__PURE__ */ C(YE, [["render", eA], ["__scopeId", "data-v-
|
|
23554
|
+
const tA = /* @__PURE__ */ C(YE, [["render", eA], ["__scopeId", "data-v-5de84b21"]]);
|
|
23440
23555
|
const nA = {
|
|
23441
23556
|
props: {
|
|
23442
23557
|
modal: {
|
|
@@ -24017,7 +24132,7 @@ function FA(e, t, n, r, s, i) {
|
|
|
24017
24132
|
const $A = /* @__PURE__ */ C(AA, [["render", FA], ["__scopeId", "data-v-c9f9fa0a"]]);
|
|
24018
24133
|
const NA = {
|
|
24019
24134
|
components: {
|
|
24020
|
-
ScopeSelect:
|
|
24135
|
+
ScopeSelect: nb
|
|
24021
24136
|
// Search,
|
|
24022
24137
|
},
|
|
24023
24138
|
mixins: [cn],
|
|
@@ -24035,21 +24150,24 @@ const NA = {
|
|
|
24035
24150
|
// self.definition = definition;
|
|
24036
24151
|
// },
|
|
24037
24152
|
computed: {
|
|
24153
|
+
single() {
|
|
24154
|
+
return this.maximum === 1;
|
|
24155
|
+
},
|
|
24038
24156
|
type() {
|
|
24039
24157
|
return this.options.type;
|
|
24040
24158
|
},
|
|
24041
24159
|
action() {
|
|
24042
24160
|
return this.options.action;
|
|
24043
|
-
}
|
|
24161
|
+
},
|
|
24044
24162
|
// title() {
|
|
24045
24163
|
// return this.definition.title;
|
|
24046
24164
|
// },
|
|
24047
24165
|
// plural() {
|
|
24048
24166
|
// return this.definition.plural;
|
|
24049
24167
|
// },
|
|
24050
|
-
|
|
24051
|
-
|
|
24052
|
-
|
|
24168
|
+
maximum() {
|
|
24169
|
+
return this.options.maximum || 0;
|
|
24170
|
+
}
|
|
24053
24171
|
// browserOptions() {
|
|
24054
24172
|
// return this.options.browserOptions || {};
|
|
24055
24173
|
// },
|
|
@@ -24071,7 +24189,7 @@ const NA = {
|
|
|
24071
24189
|
this.close(this.model);
|
|
24072
24190
|
}
|
|
24073
24191
|
}
|
|
24074
|
-
}, LA = (e) => (
|
|
24192
|
+
}, 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
24193
|
function RA(e, t, n, r, s, i) {
|
|
24076
24194
|
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
24195
|
return o(), k(g, { class: "wrapper" }, {
|
|
@@ -24116,10 +24234,11 @@ function RA(e, t, n, r, s, i) {
|
|
|
24116
24234
|
x("div", jA, [
|
|
24117
24235
|
m(c, {
|
|
24118
24236
|
action: i.action,
|
|
24237
|
+
single: i.single,
|
|
24119
24238
|
type: i.type,
|
|
24120
24239
|
modelValue: s.model,
|
|
24121
24240
|
"onUpdate:modelValue": t[0] || (t[0] = (b) => s.model = b)
|
|
24122
|
-
}, null, 8, ["action", "type", "modelValue"])
|
|
24241
|
+
}, null, 8, ["action", "single", "type", "modelValue"])
|
|
24123
24242
|
])
|
|
24124
24243
|
]),
|
|
24125
24244
|
_: 1
|
|
@@ -24128,7 +24247,7 @@ function RA(e, t, n, r, s, i) {
|
|
|
24128
24247
|
_: 1
|
|
24129
24248
|
});
|
|
24130
24249
|
}
|
|
24131
|
-
const BA = /* @__PURE__ */ C(NA, [["render", RA], ["__scopeId", "data-v-
|
|
24250
|
+
const BA = /* @__PURE__ */ C(NA, [["render", RA], ["__scopeId", "data-v-e1cac3f3"]]);
|
|
24132
24251
|
function zA(e, t) {
|
|
24133
24252
|
return t.reduce((n, r) => Math.abs(r - e) < Math.abs(n - e) ? r : n);
|
|
24134
24253
|
}
|
|
@@ -24232,32 +24351,32 @@ const HA = `qik vue ui ${Zo}`, ka = {
|
|
|
24232
24351
|
UxPanelBody: jc,
|
|
24233
24352
|
UxPanelHeader: Hc,
|
|
24234
24353
|
UxPanelFooter: Kc,
|
|
24235
|
-
UxList:
|
|
24236
|
-
UxListItem:
|
|
24237
|
-
UxPill:
|
|
24354
|
+
UxList: ev,
|
|
24355
|
+
UxListItem: iv,
|
|
24356
|
+
UxPill: Zg,
|
|
24238
24357
|
// UxCircle: UXCircle,
|
|
24239
|
-
UxForm:
|
|
24358
|
+
UxForm: Fo,
|
|
24240
24359
|
UxSubmissionForm: va,
|
|
24241
24360
|
UxFormField: Kr,
|
|
24242
24361
|
UxSubmissionForm: va,
|
|
24243
24362
|
UxRender: iE,
|
|
24244
|
-
UxRenderField:
|
|
24245
|
-
UxIcon:
|
|
24246
|
-
UxMenu:
|
|
24247
|
-
UxMenuList:
|
|
24248
|
-
UxImage:
|
|
24249
|
-
UxVideo:
|
|
24250
|
-
UxButton:
|
|
24363
|
+
UxRenderField: No,
|
|
24364
|
+
UxIcon: Sg,
|
|
24365
|
+
UxMenu: Cg,
|
|
24366
|
+
UxMenuList: Ag,
|
|
24367
|
+
UxImage: $g,
|
|
24368
|
+
UxVideo: Rg,
|
|
24369
|
+
UxButton: hg,
|
|
24251
24370
|
UxCheckbox: Ll,
|
|
24252
24371
|
UxSwitch: Pl,
|
|
24253
|
-
UxLink:
|
|
24372
|
+
UxLink: kg,
|
|
24254
24373
|
UxTabset: Wf,
|
|
24255
24374
|
UxTab: Yf,
|
|
24256
24375
|
Avatar: sg,
|
|
24257
24376
|
Spinner: Nl,
|
|
24258
|
-
ProgressBar:
|
|
24377
|
+
ProgressBar: Gg,
|
|
24259
24378
|
UxModal: sA,
|
|
24260
|
-
Compile:
|
|
24379
|
+
Compile: $o
|
|
24261
24380
|
}, ZA = {
|
|
24262
24381
|
install(e, t) {
|
|
24263
24382
|
console.log(HA), t.date = Re, t.modals = Ti([]), t.modal = function(n) {
|
|
@@ -24313,7 +24432,7 @@ export {
|
|
|
24313
24432
|
sg as Avatar,
|
|
24314
24433
|
dS as CodeEditor,
|
|
24315
24434
|
tA as ContentBrowser,
|
|
24316
|
-
|
|
24435
|
+
ov as DateRange,
|
|
24317
24436
|
YA as Device,
|
|
24318
24437
|
nw as FileDrop,
|
|
24319
24438
|
hc as FlexBody,
|
|
@@ -24332,37 +24451,37 @@ export {
|
|
|
24332
24451
|
jc as PanelBody,
|
|
24333
24452
|
Kc as PanelFooter,
|
|
24334
24453
|
Hc as PanelHeader,
|
|
24335
|
-
|
|
24454
|
+
Gg as ProgressBar,
|
|
24336
24455
|
ZA as QikUI,
|
|
24337
24456
|
y_ as RememberScrollMixin,
|
|
24338
|
-
|
|
24339
|
-
|
|
24457
|
+
nb as ScopeSelect,
|
|
24458
|
+
ab as ScopeSelectButton,
|
|
24340
24459
|
Yr as Search,
|
|
24341
24460
|
rE as Selection,
|
|
24342
24461
|
Nl as Spinner,
|
|
24343
24462
|
ic as StripeElement,
|
|
24344
24463
|
lc as StripeElements,
|
|
24345
|
-
|
|
24464
|
+
hg as UXButton,
|
|
24346
24465
|
Ll as UXCheckbox,
|
|
24347
24466
|
zr as UXCircle,
|
|
24348
|
-
|
|
24467
|
+
Fo as UXForm,
|
|
24349
24468
|
Kr as UXFormField,
|
|
24350
|
-
|
|
24351
|
-
|
|
24352
|
-
|
|
24353
|
-
|
|
24354
|
-
|
|
24355
|
-
|
|
24356
|
-
|
|
24357
|
-
|
|
24469
|
+
Sg as UXIcon,
|
|
24470
|
+
$g as UXImage,
|
|
24471
|
+
kg as UXLink,
|
|
24472
|
+
ev as UXList,
|
|
24473
|
+
iv as UXListItem,
|
|
24474
|
+
Cg as UXMenu,
|
|
24475
|
+
Ag as UXMenuList,
|
|
24476
|
+
Zg as UXPill,
|
|
24358
24477
|
iE as UXRender,
|
|
24359
|
-
|
|
24478
|
+
No as UXRenderField,
|
|
24360
24479
|
va as UXSubmissionForm,
|
|
24361
24480
|
Pl as UXSwitch,
|
|
24362
24481
|
Yf as UXTab,
|
|
24363
24482
|
S_ as UXTable,
|
|
24364
24483
|
Wf as UXTabset,
|
|
24365
|
-
|
|
24484
|
+
Rg as UXVideo,
|
|
24366
24485
|
cA as UxConfirmModal,
|
|
24367
24486
|
$A as UxContentModal,
|
|
24368
24487
|
sA as UxModal,
|