@qikdev/vue-ui 0.2.190 → 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 +939 -810
- package/dist/lib.es.js.map +1 -1
- package/dist/lib.umd.js +3 -3
- package/dist/lib.umd.js.map +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/lib.es.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import './style.css';
|
|
2
|
-
import { defineComponent as Vr, ref as Jt, toRefs as xa, onMounted as wa, onBeforeUnmount as
|
|
2
|
+
import { defineComponent as Vr, ref as Jt, toRefs as xa, onMounted as wa, onBeforeUnmount as qo, watch as Er, computed as fr, openBlock as o, createElementBlock as d, renderSlot as q, createCommentVNode as _, normalizeClass as L, useSlots as Wo, reactive as Ti, provide as Li, resolveComponent as y, Fragment as S, unref as zn, createBlock as k, withCtx as h, createVNode as m, renderList as F, toDisplayString as v, withDirectives as Y, vShow as di, createElementVNode as x, withModifiers as z, createTextVNode as T, h as mr, mergeProps as Oi, toHandlers as Ar, normalizeStyle as He, resolveDynamicComponent as ft, vModelSelect as Tt, pushScopeId as qe, popScopeId as We, Teleport as Go, vModelText as ae, withKeys as ge, TransitionGroup as Ko, nextTick as Sa, vModelDynamic as Hn } from "vue";
|
|
3
3
|
import { EventDispatcher as Yo } from "@qikdev/sdk";
|
|
4
|
-
const Zo = "0.2.
|
|
4
|
+
const Zo = "0.2.191";
|
|
5
5
|
class Pt extends Error {
|
|
6
6
|
}
|
|
7
7
|
class Jo extends Pt {
|
|
@@ -26,7 +26,7 @@ class Ta extends Pt {
|
|
|
26
26
|
super(`Invalid unit ${t}`);
|
|
27
27
|
}
|
|
28
28
|
}
|
|
29
|
-
class
|
|
29
|
+
class Ye extends Pt {
|
|
30
30
|
}
|
|
31
31
|
class vt extends Pt {
|
|
32
32
|
constructor() {
|
|
@@ -277,7 +277,7 @@ function Vi(e, t) {
|
|
|
277
277
|
function Ga(e) {
|
|
278
278
|
const t = Number(e);
|
|
279
279
|
if (typeof e == "boolean" || e === "" || Number.isNaN(t))
|
|
280
|
-
throw new
|
|
280
|
+
throw new Ye(`Invalid unit value ${e}`);
|
|
281
281
|
return t;
|
|
282
282
|
}
|
|
283
283
|
function mi(e, t) {
|
|
@@ -1577,25 +1577,25 @@ const bd = "Invalid Duration", ll = {
|
|
|
1577
1577
|
milliseconds: 30 * 24 * 60 * 60 * 1e3
|
|
1578
1578
|
},
|
|
1579
1579
|
...ll
|
|
1580
|
-
},
|
|
1580
|
+
}, Ge = 146097 / 400, qt = 146097 / 4800, xd = {
|
|
1581
1581
|
years: {
|
|
1582
1582
|
quarters: 4,
|
|
1583
1583
|
months: 12,
|
|
1584
|
-
weeks:
|
|
1585
|
-
days:
|
|
1586
|
-
hours:
|
|
1587
|
-
minutes:
|
|
1588
|
-
seconds:
|
|
1589
|
-
milliseconds:
|
|
1584
|
+
weeks: Ge / 7,
|
|
1585
|
+
days: Ge,
|
|
1586
|
+
hours: Ge * 24,
|
|
1587
|
+
minutes: Ge * 24 * 60,
|
|
1588
|
+
seconds: Ge * 24 * 60 * 60,
|
|
1589
|
+
milliseconds: Ge * 24 * 60 * 60 * 1e3
|
|
1590
1590
|
},
|
|
1591
1591
|
quarters: {
|
|
1592
1592
|
months: 3,
|
|
1593
|
-
weeks:
|
|
1594
|
-
days:
|
|
1595
|
-
hours:
|
|
1596
|
-
minutes:
|
|
1597
|
-
seconds:
|
|
1598
|
-
milliseconds:
|
|
1593
|
+
weeks: Ge / 28,
|
|
1594
|
+
days: Ge / 4,
|
|
1595
|
+
hours: Ge * 24 / 4,
|
|
1596
|
+
minutes: Ge * 24 * 60 / 4,
|
|
1597
|
+
seconds: Ge * 24 * 60 * 60 / 4,
|
|
1598
|
+
milliseconds: Ge * 24 * 60 * 60 * 1e3 / 4
|
|
1599
1599
|
},
|
|
1600
1600
|
months: {
|
|
1601
1601
|
weeks: qt / 7,
|
|
@@ -1676,7 +1676,7 @@ class Q {
|
|
|
1676
1676
|
*/
|
|
1677
1677
|
static fromObject(t, n = {}) {
|
|
1678
1678
|
if (t == null || typeof t != "object")
|
|
1679
|
-
throw new
|
|
1679
|
+
throw new Ye(
|
|
1680
1680
|
`Duration.fromObject: argument expected to be an object, got ${t === null ? "null" : typeof t}`
|
|
1681
1681
|
);
|
|
1682
1682
|
return new Q({
|
|
@@ -1702,7 +1702,7 @@ class Q {
|
|
|
1702
1702
|
return t;
|
|
1703
1703
|
if (typeof t == "object")
|
|
1704
1704
|
return Q.fromObject(t);
|
|
1705
|
-
throw new
|
|
1705
|
+
throw new Ye(
|
|
1706
1706
|
`Unknown duration argument ${t} of type ${typeof t}`
|
|
1707
1707
|
);
|
|
1708
1708
|
}
|
|
@@ -1750,7 +1750,7 @@ class Q {
|
|
|
1750
1750
|
*/
|
|
1751
1751
|
static invalid(t, n = null) {
|
|
1752
1752
|
if (!t)
|
|
1753
|
-
throw new
|
|
1753
|
+
throw new Ye("need to specify a reason the Duration is invalid");
|
|
1754
1754
|
const r = t instanceof tt ? t : new tt(t, n);
|
|
1755
1755
|
if (ve.throwOnInvalid)
|
|
1756
1756
|
throw new Qo(r);
|
|
@@ -2205,7 +2205,7 @@ class pe {
|
|
|
2205
2205
|
*/
|
|
2206
2206
|
static invalid(t, n = null) {
|
|
2207
2207
|
if (!t)
|
|
2208
|
-
throw new
|
|
2208
|
+
throw new Ye("need to specify a reason the Interval is invalid");
|
|
2209
2209
|
const r = t instanceof tt ? t : new tt(t, n);
|
|
2210
2210
|
if (ve.throwOnInvalid)
|
|
2211
2211
|
throw new Xo(r);
|
|
@@ -2848,7 +2848,7 @@ function Xe({ numberingSystem: e }, t = "") {
|
|
|
2848
2848
|
return new RegExp(`${Pr[e || "latn"]}${t}`);
|
|
2849
2849
|
}
|
|
2850
2850
|
const Md = "missing Intl.DateTimeFormat.formatToParts support";
|
|
2851
|
-
function
|
|
2851
|
+
function te(e, t = (n) => n) {
|
|
2852
2852
|
return { regex: e, deser: ([n]) => t(Ad(n)) };
|
|
2853
2853
|
}
|
|
2854
2854
|
const Dd = String.fromCharCode(160), ul = `( |${Dd})`, dl = new RegExp(ul, "g");
|
|
@@ -2874,7 +2874,7 @@ function Fd(e) {
|
|
|
2874
2874
|
return e.replace(/[\-\[\]{}()*+?.,\\\^$|#\s]/g, "\\$&");
|
|
2875
2875
|
}
|
|
2876
2876
|
function $d(e, t) {
|
|
2877
|
-
const n = Xe(t), r = Xe(t, "{2}"), s = Xe(t, "{3}"), i = Xe(t, "{4}"), a = Xe(t, "{6}"), l = Xe(t, "{1,2}"), u = Xe(t, "{1,3}"), f = Xe(t, "{1,6}"), c = Xe(t, "{1,9}"), p = Xe(t, "{2,4}"), g = Xe(t, "{4,6}"), b = (j) => ({ regex: RegExp(Fd(j.val)), deser: ([
|
|
2877
|
+
const n = Xe(t), r = Xe(t, "{2}"), s = Xe(t, "{3}"), i = Xe(t, "{4}"), a = Xe(t, "{6}"), l = Xe(t, "{1,2}"), u = Xe(t, "{1,3}"), f = Xe(t, "{1,6}"), c = Xe(t, "{1,9}"), p = Xe(t, "{2,4}"), g = Xe(t, "{4,6}"), b = (j) => ({ regex: RegExp(Fd(j.val)), deser: ([H]) => H, literal: !0 }), O = ((j) => {
|
|
2878
2878
|
if (e.literal)
|
|
2879
2879
|
return b(j);
|
|
2880
2880
|
switch (j.val) {
|
|
@@ -2883,82 +2883,82 @@ function $d(e, t) {
|
|
|
2883
2883
|
case "GG":
|
|
2884
2884
|
return Qe(t.eras("long", !1), 0);
|
|
2885
2885
|
case "y":
|
|
2886
|
-
return
|
|
2886
|
+
return te(f);
|
|
2887
2887
|
case "yy":
|
|
2888
|
-
return
|
|
2888
|
+
return te(p, pr);
|
|
2889
2889
|
case "yyyy":
|
|
2890
|
-
return
|
|
2890
|
+
return te(i);
|
|
2891
2891
|
case "yyyyy":
|
|
2892
|
-
return
|
|
2892
|
+
return te(g);
|
|
2893
2893
|
case "yyyyyy":
|
|
2894
|
-
return
|
|
2894
|
+
return te(a);
|
|
2895
2895
|
case "M":
|
|
2896
|
-
return
|
|
2896
|
+
return te(l);
|
|
2897
2897
|
case "MM":
|
|
2898
|
-
return
|
|
2898
|
+
return te(r);
|
|
2899
2899
|
case "MMM":
|
|
2900
2900
|
return Qe(t.months("short", !0, !1), 1);
|
|
2901
2901
|
case "MMMM":
|
|
2902
2902
|
return Qe(t.months("long", !0, !1), 1);
|
|
2903
2903
|
case "L":
|
|
2904
|
-
return
|
|
2904
|
+
return te(l);
|
|
2905
2905
|
case "LL":
|
|
2906
|
-
return
|
|
2906
|
+
return te(r);
|
|
2907
2907
|
case "LLL":
|
|
2908
2908
|
return Qe(t.months("short", !1, !1), 1);
|
|
2909
2909
|
case "LLLL":
|
|
2910
2910
|
return Qe(t.months("long", !1, !1), 1);
|
|
2911
2911
|
case "d":
|
|
2912
|
-
return
|
|
2912
|
+
return te(l);
|
|
2913
2913
|
case "dd":
|
|
2914
|
-
return
|
|
2914
|
+
return te(r);
|
|
2915
2915
|
case "o":
|
|
2916
|
-
return
|
|
2916
|
+
return te(u);
|
|
2917
2917
|
case "ooo":
|
|
2918
|
-
return
|
|
2918
|
+
return te(s);
|
|
2919
2919
|
case "HH":
|
|
2920
|
-
return
|
|
2920
|
+
return te(r);
|
|
2921
2921
|
case "H":
|
|
2922
|
-
return
|
|
2922
|
+
return te(l);
|
|
2923
2923
|
case "hh":
|
|
2924
|
-
return
|
|
2924
|
+
return te(r);
|
|
2925
2925
|
case "h":
|
|
2926
|
-
return
|
|
2926
|
+
return te(l);
|
|
2927
2927
|
case "mm":
|
|
2928
|
-
return
|
|
2928
|
+
return te(r);
|
|
2929
2929
|
case "m":
|
|
2930
|
-
return
|
|
2930
|
+
return te(l);
|
|
2931
2931
|
case "q":
|
|
2932
|
-
return
|
|
2932
|
+
return te(l);
|
|
2933
2933
|
case "qq":
|
|
2934
|
-
return
|
|
2934
|
+
return te(r);
|
|
2935
2935
|
case "s":
|
|
2936
|
-
return
|
|
2936
|
+
return te(l);
|
|
2937
2937
|
case "ss":
|
|
2938
|
-
return
|
|
2938
|
+
return te(r);
|
|
2939
2939
|
case "S":
|
|
2940
|
-
return
|
|
2940
|
+
return te(u);
|
|
2941
2941
|
case "SSS":
|
|
2942
|
-
return
|
|
2942
|
+
return te(s);
|
|
2943
2943
|
case "u":
|
|
2944
2944
|
return ji(c);
|
|
2945
2945
|
case "uu":
|
|
2946
2946
|
return ji(l);
|
|
2947
2947
|
case "uuu":
|
|
2948
|
-
return
|
|
2948
|
+
return te(n);
|
|
2949
2949
|
case "a":
|
|
2950
2950
|
return Qe(t.meridiems(), 0);
|
|
2951
2951
|
case "kkkk":
|
|
2952
|
-
return
|
|
2952
|
+
return te(i);
|
|
2953
2953
|
case "kk":
|
|
2954
|
-
return
|
|
2954
|
+
return te(p, pr);
|
|
2955
2955
|
case "W":
|
|
2956
|
-
return
|
|
2956
|
+
return te(l);
|
|
2957
2957
|
case "WW":
|
|
2958
|
-
return
|
|
2958
|
+
return te(r);
|
|
2959
2959
|
case "E":
|
|
2960
2960
|
case "c":
|
|
2961
|
-
return
|
|
2961
|
+
return te(n);
|
|
2962
2962
|
case "EEE":
|
|
2963
2963
|
return Qe(t.weekdays("short", !1, !1), 1);
|
|
2964
2964
|
case "EEEE":
|
|
@@ -3122,7 +3122,7 @@ function Hd(e, t, n) {
|
|
|
3122
3122
|
return [r, s, i, a];
|
|
3123
3123
|
}
|
|
3124
3124
|
const fl = [0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334], ml = [0, 31, 60, 91, 121, 152, 182, 213, 244, 274, 305, 335];
|
|
3125
|
-
function
|
|
3125
|
+
function Ze(e, t) {
|
|
3126
3126
|
return new tt(
|
|
3127
3127
|
"unit out of range",
|
|
3128
3128
|
`you specified ${t} (of type ${typeof t}) as a ${e}, which is invalid`
|
|
@@ -3163,19 +3163,19 @@ function ys(e) {
|
|
|
3163
3163
|
}
|
|
3164
3164
|
function qd(e) {
|
|
3165
3165
|
const t = Ci(e.weekYear), n = dt(e.weekNumber, 1, fi(e.weekYear)), r = dt(e.weekday, 1, 7);
|
|
3166
|
-
return t ? n ? r ? !1 :
|
|
3166
|
+
return t ? n ? r ? !1 : Ze("weekday", e.weekday) : Ze("week", e.week) : Ze("weekYear", e.weekYear);
|
|
3167
3167
|
}
|
|
3168
3168
|
function Wd(e) {
|
|
3169
3169
|
const t = Ci(e.year), n = dt(e.ordinal, 1, Tn(e.year));
|
|
3170
|
-
return t ? n ? !1 :
|
|
3170
|
+
return t ? n ? !1 : Ze("ordinal", e.ordinal) : Ze("year", e.year);
|
|
3171
3171
|
}
|
|
3172
3172
|
function _l(e) {
|
|
3173
3173
|
const t = Ci(e.year), n = dt(e.month, 1, 12), r = dt(e.day, 1, ci(e.year, e.month));
|
|
3174
|
-
return t ? n ? r ? !1 :
|
|
3174
|
+
return t ? n ? r ? !1 : Ze("day", e.day) : Ze("month", e.month) : Ze("year", e.year);
|
|
3175
3175
|
}
|
|
3176
3176
|
function gl(e) {
|
|
3177
3177
|
const { hour: t, minute: n, second: r, millisecond: s } = e, i = dt(t, 0, 23) || t === 24 && n === 0 && r === 0 && s === 0, a = dt(n, 0, 59), l = dt(r, 0, 59), u = dt(s, 0, 999);
|
|
3178
|
-
return i ? a ? l ? u ? !1 :
|
|
3178
|
+
return i ? a ? l ? u ? !1 : Ze("millisecond", s) : Ze("second", r) : Ze("minute", n) : Ze("hour", t);
|
|
3179
3179
|
}
|
|
3180
3180
|
const zi = "Invalid DateTime", _s = 864e13;
|
|
3181
3181
|
function Kn(e) {
|
|
@@ -3477,7 +3477,7 @@ class U {
|
|
|
3477
3477
|
zone: xt(n.zone, ve.defaultZone),
|
|
3478
3478
|
loc: fe.fromObject(n)
|
|
3479
3479
|
});
|
|
3480
|
-
throw new
|
|
3480
|
+
throw new Ye(
|
|
3481
3481
|
`fromMillis requires a numerical input, but received a ${typeof t} with value ${t}`
|
|
3482
3482
|
);
|
|
3483
3483
|
}
|
|
@@ -3498,7 +3498,7 @@ class U {
|
|
|
3498
3498
|
zone: xt(n.zone, ve.defaultZone),
|
|
3499
3499
|
loc: fe.fromObject(n)
|
|
3500
3500
|
});
|
|
3501
|
-
throw new
|
|
3501
|
+
throw new Ye("fromSeconds requires a numerical input");
|
|
3502
3502
|
}
|
|
3503
3503
|
/**
|
|
3504
3504
|
* Create a DateTime from a JavaScript object with keys like 'year' and 'hour' with reasonable defaults.
|
|
@@ -3543,18 +3543,18 @@ class U {
|
|
|
3543
3543
|
const b = p || a.weekday && !c;
|
|
3544
3544
|
let w, O, j = gs(s, i);
|
|
3545
3545
|
b ? (w = Yd, O = Gd, j = br(j)) : l ? (w = Zd, O = Kd, j = Bi(j)) : (w = kl, O = bl);
|
|
3546
|
-
let
|
|
3547
|
-
for (const
|
|
3548
|
-
const
|
|
3549
|
-
J(
|
|
3550
|
-
}
|
|
3551
|
-
const
|
|
3552
|
-
if (
|
|
3553
|
-
return U.invalid(
|
|
3554
|
-
const
|
|
3546
|
+
let H = !1;
|
|
3547
|
+
for (const le of w) {
|
|
3548
|
+
const G = a[le];
|
|
3549
|
+
J(G) ? H ? a[le] = O[le] : a[le] = j[le] : H = !0;
|
|
3550
|
+
}
|
|
3551
|
+
const D = b ? qd(a) : l ? Wd(a) : _l(a), ee = D || gl(a);
|
|
3552
|
+
if (ee)
|
|
3553
|
+
return U.invalid(ee);
|
|
3554
|
+
const re = b ? ps(a) : l ? ys(a) : a, [ue, W] = ri(re, i, r), $ = new U({
|
|
3555
3555
|
ts: ue,
|
|
3556
3556
|
zone: r,
|
|
3557
|
-
o:
|
|
3557
|
+
o: W,
|
|
3558
3558
|
loc: g
|
|
3559
3559
|
});
|
|
3560
3560
|
return a.weekday && c && t.weekday !== $.weekday ? U.invalid(
|
|
@@ -3634,7 +3634,7 @@ class U {
|
|
|
3634
3634
|
*/
|
|
3635
3635
|
static fromFormat(t, n, r = {}) {
|
|
3636
3636
|
if (J(t) || J(n))
|
|
3637
|
-
throw new
|
|
3637
|
+
throw new Ye("fromFormat requires an input string and a format");
|
|
3638
3638
|
const { locale: s = null, numberingSystem: i = null } = r, a = fe.fromOpts({
|
|
3639
3639
|
locale: s,
|
|
3640
3640
|
numberingSystem: i,
|
|
@@ -3680,7 +3680,7 @@ class U {
|
|
|
3680
3680
|
*/
|
|
3681
3681
|
static invalid(t, n = null) {
|
|
3682
3682
|
if (!t)
|
|
3683
|
-
throw new
|
|
3683
|
+
throw new Ye("need to specify a reason the DateTime is invalid");
|
|
3684
3684
|
const r = t instanceof tt ? t : new tt(t, n);
|
|
3685
3685
|
if (ve.throwOnInvalid)
|
|
3686
3686
|
throw new Jo(r);
|
|
@@ -4538,7 +4538,7 @@ class U {
|
|
|
4538
4538
|
*/
|
|
4539
4539
|
static min(...t) {
|
|
4540
4540
|
if (!t.every(U.isDateTime))
|
|
4541
|
-
throw new
|
|
4541
|
+
throw new Ye("min requires all arguments be DateTimes");
|
|
4542
4542
|
return ts(t, (n) => n.valueOf(), Math.min);
|
|
4543
4543
|
}
|
|
4544
4544
|
/**
|
|
@@ -4548,7 +4548,7 @@ class U {
|
|
|
4548
4548
|
*/
|
|
4549
4549
|
static max(...t) {
|
|
4550
4550
|
if (!t.every(U.isDateTime))
|
|
4551
|
-
throw new
|
|
4551
|
+
throw new Ye("max requires all arguments be DateTimes");
|
|
4552
4552
|
return ts(t, (n) => n.valueOf(), Math.max);
|
|
4553
4553
|
}
|
|
4554
4554
|
// MISC
|
|
@@ -4736,7 +4736,7 @@ function yn(e) {
|
|
|
4736
4736
|
return U.fromJSDate(e);
|
|
4737
4737
|
if (e && typeof e == "object")
|
|
4738
4738
|
return U.fromObject(e);
|
|
4739
|
-
throw new
|
|
4739
|
+
throw new Ye(
|
|
4740
4740
|
`Unknown datetime argument: ${e}, of type ${typeof e}`
|
|
4741
4741
|
);
|
|
4742
4742
|
}
|
|
@@ -4850,7 +4850,7 @@ const ec = Vr({
|
|
|
4850
4850
|
} catch (p) {
|
|
4851
4851
|
console.error(p);
|
|
4852
4852
|
}
|
|
4853
|
-
}),
|
|
4853
|
+
}), qo(() => {
|
|
4854
4854
|
var u, f;
|
|
4855
4855
|
(u = r.value) == null || u.unmount(), (f = r.value) == null || f.destroy();
|
|
4856
4856
|
}), Er(l, () => {
|
|
@@ -4899,7 +4899,7 @@ const rc = Vr({
|
|
|
4899
4899
|
}), sc = { key: 0 };
|
|
4900
4900
|
function ac(e, t, n, r, s, i) {
|
|
4901
4901
|
return e.elementsUsable ? (o(), d("div", sc, [
|
|
4902
|
-
|
|
4902
|
+
q(e.$slots, "default", {
|
|
4903
4903
|
instance: e.instance,
|
|
4904
4904
|
elements: e.elements
|
|
4905
4905
|
})
|
|
@@ -4925,28 +4925,28 @@ function uc(e, t, n, r, s, i) {
|
|
|
4925
4925
|
return o(), d("div", {
|
|
4926
4926
|
class: L(["flex-column", { center: n.center, shrink: n.shrink }])
|
|
4927
4927
|
}, [
|
|
4928
|
-
|
|
4928
|
+
q(e.$slots, "default", {}, void 0, !0)
|
|
4929
4929
|
], 2);
|
|
4930
4930
|
}
|
|
4931
4931
|
const dc = /* @__PURE__ */ C(oc, [["render", uc], ["__scopeId", "data-v-b03628f8"]]);
|
|
4932
4932
|
const cc = {}, fc = { class: "flex-column-body" };
|
|
4933
4933
|
function mc(e, t, n, r, s, i) {
|
|
4934
4934
|
return o(), d("div", fc, [
|
|
4935
|
-
|
|
4935
|
+
q(e.$slots, "default", {}, void 0, !0)
|
|
4936
4936
|
]);
|
|
4937
4937
|
}
|
|
4938
4938
|
const hc = /* @__PURE__ */ C(cc, [["render", mc], ["__scopeId", "data-v-ab49c425"]]);
|
|
4939
4939
|
const pc = {}, yc = { class: "flex-column-header" };
|
|
4940
4940
|
function _c(e, t, n, r, s, i) {
|
|
4941
4941
|
return o(), d("div", yc, [
|
|
4942
|
-
|
|
4942
|
+
q(e.$slots, "default", {}, void 0, !0)
|
|
4943
4943
|
]);
|
|
4944
4944
|
}
|
|
4945
4945
|
const gc = /* @__PURE__ */ C(pc, [["render", _c], ["__scopeId", "data-v-968bcded"]]);
|
|
4946
4946
|
const vc = {}, bc = { class: "flex-column-footer" };
|
|
4947
4947
|
function kc(e, t, n, r, s, i) {
|
|
4948
4948
|
return o(), d("div", bc, [
|
|
4949
|
-
|
|
4949
|
+
q(e.$slots, "default", {}, void 0, !0)
|
|
4950
4950
|
]);
|
|
4951
4951
|
}
|
|
4952
4952
|
const xc = /* @__PURE__ */ C(vc, [["render", kc], ["__scopeId", "data-v-941966e2"]]);
|
|
@@ -4963,7 +4963,7 @@ function Sc(e, t, n, r, s, i) {
|
|
|
4963
4963
|
return o(), d("div", {
|
|
4964
4964
|
class: L(["flex-cell", { flex: n.flex, center: n.center, vcenter: n.vcenter, "align-bottom": n.alignBottom, shrink: n.shrink }])
|
|
4965
4965
|
}, [
|
|
4966
|
-
|
|
4966
|
+
q(e.$slots, "default", {}, void 0, !0)
|
|
4967
4967
|
], 2);
|
|
4968
4968
|
}
|
|
4969
4969
|
const Tc = /* @__PURE__ */ C(wc, [["render", Sc], ["__scopeId", "data-v-efd82fd0"]]);
|
|
@@ -4987,7 +4987,7 @@ function Cc(e, t, n, r, s, i) {
|
|
|
4987
4987
|
return o(), d("div", {
|
|
4988
4988
|
class: L(["flex-row", { gap: n.gap, vcenter: n.vcenter, center: n.center, wrap: n.wrap }])
|
|
4989
4989
|
}, [
|
|
4990
|
-
|
|
4990
|
+
q(e.$slots, "default", {}, void 0, !0)
|
|
4991
4991
|
], 2);
|
|
4992
4992
|
}
|
|
4993
4993
|
const Vc = /* @__PURE__ */ C(Oc, [["render", Cc], ["__scopeId", "data-v-bd96c129"]]);
|
|
@@ -4999,28 +4999,28 @@ const Dc = /* @__PURE__ */ C(Ec, [["render", Mc], ["__scopeId", "data-v-f42ac625
|
|
|
4999
4999
|
const Ic = {}, Fc = { class: "panel" };
|
|
5000
5000
|
function $c(e, t, n, r, s, i) {
|
|
5001
5001
|
return o(), d("div", Fc, [
|
|
5002
|
-
|
|
5002
|
+
q(e.$slots, "default", {}, void 0, !0)
|
|
5003
5003
|
]);
|
|
5004
5004
|
}
|
|
5005
5005
|
const Nc = /* @__PURE__ */ C(Ic, [["render", $c], ["__scopeId", "data-v-b89677dc"]]);
|
|
5006
5006
|
const Lc = {}, Pc = { class: "panel-body" };
|
|
5007
5007
|
function Uc(e, t, n, r, s, i) {
|
|
5008
5008
|
return o(), d("div", Pc, [
|
|
5009
|
-
|
|
5009
|
+
q(e.$slots, "default", {}, void 0, !0)
|
|
5010
5010
|
]);
|
|
5011
5011
|
}
|
|
5012
5012
|
const jc = /* @__PURE__ */ C(Lc, [["render", Uc], ["__scopeId", "data-v-53a6d4be"]]);
|
|
5013
5013
|
const Rc = {}, Bc = { class: "panel-header" };
|
|
5014
5014
|
function zc(e, t, n, r, s, i) {
|
|
5015
5015
|
return o(), d("div", Bc, [
|
|
5016
|
-
|
|
5016
|
+
q(e.$slots, "default", {}, void 0, !0)
|
|
5017
5017
|
]);
|
|
5018
5018
|
}
|
|
5019
5019
|
const Hc = /* @__PURE__ */ C(Rc, [["render", zc], ["__scopeId", "data-v-12bf7f04"]]);
|
|
5020
5020
|
const qc = {}, Wc = { class: "panel-footer" };
|
|
5021
5021
|
function Gc(e, t, n, r, s, i) {
|
|
5022
5022
|
return o(), d("div", Wc, [
|
|
5023
|
-
|
|
5023
|
+
q(e.$slots, "default", {}, void 0, !0)
|
|
5024
5024
|
]);
|
|
5025
5025
|
}
|
|
5026
5026
|
const Kc = /* @__PURE__ */ C(qc, [["render", Gc], ["__scopeId", "data-v-d8937de9"]]);
|
|
@@ -5090,47 +5090,47 @@ function Bf(e, t, n) {
|
|
|
5090
5090
|
if (typeof e != "function")
|
|
5091
5091
|
throw new TypeError(Uf);
|
|
5092
5092
|
t = As(t) || 0, Pf(n) && (c = !!n.leading, p = "maxWait" in n, i = p ? jf(As(n.maxWait) || 0, t) : i, g = "trailing" in n ? !!n.trailing : g);
|
|
5093
|
-
function b(
|
|
5094
|
-
var $ = r,
|
|
5095
|
-
return r = s = void 0, f =
|
|
5093
|
+
function b(W) {
|
|
5094
|
+
var $ = r, le = s;
|
|
5095
|
+
return r = s = void 0, f = W, a = e.apply(le, $), a;
|
|
5096
5096
|
}
|
|
5097
|
-
function w(
|
|
5098
|
-
return f =
|
|
5097
|
+
function w(W) {
|
|
5098
|
+
return f = W, l = setTimeout(H, t), c ? b(W) : a;
|
|
5099
5099
|
}
|
|
5100
|
-
function O(
|
|
5101
|
-
var $ =
|
|
5102
|
-
return p ? Rf(
|
|
5100
|
+
function O(W) {
|
|
5101
|
+
var $ = W - u, le = W - f, G = t - $;
|
|
5102
|
+
return p ? Rf(G, i - le) : G;
|
|
5103
5103
|
}
|
|
5104
|
-
function j(
|
|
5105
|
-
var $ =
|
|
5106
|
-
return u === void 0 || $ >= t || $ < 0 || p &&
|
|
5104
|
+
function j(W) {
|
|
5105
|
+
var $ = W - u, le = W - f;
|
|
5106
|
+
return u === void 0 || $ >= t || $ < 0 || p && le >= i;
|
|
5107
5107
|
}
|
|
5108
|
-
function
|
|
5109
|
-
var
|
|
5110
|
-
if (j(
|
|
5111
|
-
return
|
|
5112
|
-
l = setTimeout(
|
|
5108
|
+
function H() {
|
|
5109
|
+
var W = Wi();
|
|
5110
|
+
if (j(W))
|
|
5111
|
+
return D(W);
|
|
5112
|
+
l = setTimeout(H, O(W));
|
|
5113
5113
|
}
|
|
5114
|
-
function
|
|
5115
|
-
return l = void 0, g && r ? b(
|
|
5114
|
+
function D(W) {
|
|
5115
|
+
return l = void 0, g && r ? b(W) : (r = s = void 0, a);
|
|
5116
5116
|
}
|
|
5117
|
-
function
|
|
5117
|
+
function ee() {
|
|
5118
5118
|
l !== void 0 && clearTimeout(l), f = 0, r = u = s = l = void 0;
|
|
5119
5119
|
}
|
|
5120
|
-
function
|
|
5121
|
-
return l === void 0 ? a :
|
|
5120
|
+
function re() {
|
|
5121
|
+
return l === void 0 ? a : D(Wi());
|
|
5122
5122
|
}
|
|
5123
5123
|
function ue() {
|
|
5124
|
-
var
|
|
5125
|
-
if (r = arguments, s = this, u =
|
|
5124
|
+
var W = Wi(), $ = j(W);
|
|
5125
|
+
if (r = arguments, s = this, u = W, $) {
|
|
5126
5126
|
if (l === void 0)
|
|
5127
5127
|
return w(u);
|
|
5128
5128
|
if (p)
|
|
5129
|
-
return clearTimeout(l), l = setTimeout(
|
|
5129
|
+
return clearTimeout(l), l = setTimeout(H, t), b(u);
|
|
5130
5130
|
}
|
|
5131
|
-
return l === void 0 && (l = setTimeout(
|
|
5131
|
+
return l === void 0 && (l = setTimeout(H, t)), a;
|
|
5132
5132
|
}
|
|
5133
|
-
return ue.cancel =
|
|
5133
|
+
return ue.cancel = ee, ue.flush = re, ue;
|
|
5134
5134
|
}
|
|
5135
5135
|
var Nn = Bf;
|
|
5136
5136
|
const zf = ["onClick"], Hf = ["onClick"], qf = {
|
|
@@ -5140,7 +5140,7 @@ const zf = ["onClick"], Hf = ["onClick"], qf = {
|
|
|
5140
5140
|
inline: Boolean
|
|
5141
5141
|
},
|
|
5142
5142
|
setup(e) {
|
|
5143
|
-
const t =
|
|
5143
|
+
const t = Wo(), n = Ti({
|
|
5144
5144
|
tabs: []
|
|
5145
5145
|
});
|
|
5146
5146
|
Li("tabset", n);
|
|
@@ -5222,7 +5222,7 @@ const zf = ["onClick"], Hf = ["onClick"], qf = {
|
|
|
5222
5222
|
], 64)),
|
|
5223
5223
|
m(p, null, {
|
|
5224
5224
|
default: h(() => [
|
|
5225
|
-
|
|
5225
|
+
q(u.$slots, "default", {}, void 0, !0)
|
|
5226
5226
|
]),
|
|
5227
5227
|
_: 3
|
|
5228
5228
|
})
|
|
@@ -5316,16 +5316,16 @@ const zf = ["onClick"], Hf = ["onClick"], qf = {
|
|
|
5316
5316
|
};
|
|
5317
5317
|
function Kf(e, t, n, r, s, i) {
|
|
5318
5318
|
const a = y("flex-column");
|
|
5319
|
-
return n.keepAlive ?
|
|
5319
|
+
return n.keepAlive ? Y((o(), k(a, { key: 0 }, {
|
|
5320
5320
|
default: h(() => [
|
|
5321
|
-
|
|
5321
|
+
q(e.$slots, "default")
|
|
5322
5322
|
]),
|
|
5323
5323
|
_: 3
|
|
5324
5324
|
}, 512)), [
|
|
5325
5325
|
[di, i.active]
|
|
5326
5326
|
]) : i.active ? (o(), k(a, { key: 1 }, {
|
|
5327
5327
|
default: h(() => [
|
|
5328
|
-
|
|
5328
|
+
q(e.$slots, "default")
|
|
5329
5329
|
]),
|
|
5330
5330
|
_: 3
|
|
5331
5331
|
})) : _("", !0);
|
|
@@ -5950,7 +5950,8 @@ const vy = {
|
|
|
5950
5950
|
return String(this.value || "").trim();
|
|
5951
5951
|
},
|
|
5952
5952
|
href() {
|
|
5953
|
-
|
|
5953
|
+
let e = this.actualValue;
|
|
5954
|
+
return /^https?:\/\//i.test(e) ? e : "https://" + e;
|
|
5954
5955
|
}
|
|
5955
5956
|
}
|
|
5956
5957
|
}, by = { class: "table-url-cell" }, ky = ["href"];
|
|
@@ -5971,7 +5972,7 @@ function xy(e, t, n, r, s, i) {
|
|
|
5971
5972
|
], 8, ky)) : _("", !0)
|
|
5972
5973
|
]);
|
|
5973
5974
|
}
|
|
5974
|
-
const Us = /* @__PURE__ */ C(vy, [["render", xy], ["__scopeId", "data-v-
|
|
5975
|
+
const Us = /* @__PURE__ */ C(vy, [["render", xy], ["__scopeId", "data-v-aa99a5e7"]]);
|
|
5975
5976
|
var js = function(e, t, n) {
|
|
5976
5977
|
if (!t.hasOwnProperty(n)) {
|
|
5977
5978
|
var r = Object.getOwnPropertyDescriptor(e, n);
|
|
@@ -6018,19 +6019,19 @@ const Dl = { props: { template: String, parent: Object, templateProps: { type: O
|
|
|
6018
6019
|
}), Object.keys(s).forEach(function($) {
|
|
6019
6020
|
g[$] === void 0 && (b.components[$] = s[$]);
|
|
6020
6021
|
});
|
|
6021
|
-
var w = Object.keys(b.methods || {}), O = Object.keys(b.$data || {}), j = Object.keys(b.$props || {}),
|
|
6022
|
-
return js(ue,
|
|
6023
|
-
}),
|
|
6024
|
-
var
|
|
6025
|
-
return $.forEach(function(
|
|
6026
|
-
|
|
6027
|
-
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);
|
|
6028
6029
|
});
|
|
6029
|
-
}),
|
|
6030
|
-
}([b.$data, b.$props,
|
|
6031
|
-
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));
|
|
6032
6033
|
}
|
|
6033
|
-
var ue,
|
|
6034
|
+
var ue, W;
|
|
6034
6035
|
} };
|
|
6035
6036
|
const wy = {
|
|
6036
6037
|
components: {
|
|
@@ -6606,7 +6607,7 @@ function h_(e, t, n, r, s, i) {
|
|
|
6606
6607
|
return o(), d("tr", {
|
|
6607
6608
|
class: L([i.classes, "table-row"])
|
|
6608
6609
|
}, [
|
|
6609
|
-
|
|
6610
|
+
q(e.$slots, "default", {}, () => [
|
|
6610
6611
|
n.enableSelection ? (o(), d("th", {
|
|
6611
6612
|
key: 0,
|
|
6612
6613
|
class: "table-cell table-select first shrink",
|
|
@@ -6962,7 +6963,7 @@ function w_(e, t, n, r, s, i) {
|
|
|
6962
6963
|
], 10, k_);
|
|
6963
6964
|
}), 256)),
|
|
6964
6965
|
n.enableActions ? (o(), d("th", x_, [
|
|
6965
|
-
|
|
6966
|
+
q(e.$slots, "corner", {}, void 0, !0)
|
|
6966
6967
|
])) : _("", !0)
|
|
6967
6968
|
])
|
|
6968
6969
|
]),
|
|
@@ -6985,7 +6986,7 @@ function w_(e, t, n, r, s, i) {
|
|
|
6985
6986
|
], 512)
|
|
6986
6987
|
]);
|
|
6987
6988
|
}
|
|
6988
|
-
const S_ = /* @__PURE__ */ C(__, [["render", w_], ["__scopeId", "data-v-
|
|
6989
|
+
const S_ = /* @__PURE__ */ C(__, [["render", w_], ["__scopeId", "data-v-d9ac49e2"]]);
|
|
6989
6990
|
var tn = {}, T_ = {
|
|
6990
6991
|
get exports() {
|
|
6991
6992
|
return tn;
|
|
@@ -7041,7 +7042,7 @@ function V_(e, t) {
|
|
|
7041
7042
|
function Rs(e) {
|
|
7042
7043
|
return e != null;
|
|
7043
7044
|
}
|
|
7044
|
-
const
|
|
7045
|
+
const ie = {
|
|
7045
7046
|
props: {
|
|
7046
7047
|
field: {
|
|
7047
7048
|
type: Object,
|
|
@@ -7074,8 +7075,25 @@ const ne = {
|
|
|
7074
7075
|
},
|
|
7075
7076
|
inject: ["form", "fieldPath"],
|
|
7076
7077
|
computed: {
|
|
7078
|
+
asyncOptionsURL() {
|
|
7079
|
+
const e = this;
|
|
7080
|
+
if (e.field.asyncOptions)
|
|
7081
|
+
return e.field.asyncOptions;
|
|
7082
|
+
},
|
|
7077
7083
|
hasAsyncOptions() {
|
|
7078
|
-
|
|
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;
|
|
7079
7097
|
},
|
|
7080
7098
|
loadingAsyncOptions() {
|
|
7081
7099
|
return this.hasAsyncOptions && this.asyncOptionsAreLoading;
|
|
@@ -7107,7 +7125,20 @@ const ne = {
|
|
|
7107
7125
|
},
|
|
7108
7126
|
options() {
|
|
7109
7127
|
var e = this;
|
|
7110
|
-
|
|
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) {
|
|
7111
7142
|
if (!n)
|
|
7112
7143
|
return t;
|
|
7113
7144
|
const r = e.getValue(n);
|
|
@@ -7223,9 +7254,27 @@ const ne = {
|
|
|
7223
7254
|
e.asyncOptionsAreLoading = !1;
|
|
7224
7255
|
return;
|
|
7225
7256
|
}
|
|
7226
|
-
e.asyncOptionsAreLoading = !0
|
|
7227
|
-
|
|
7228
|
-
|
|
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;
|
|
7229
7278
|
},
|
|
7230
7279
|
cleanTextInput(e, t, n) {
|
|
7231
7280
|
switch (t) {
|
|
@@ -7338,7 +7387,7 @@ const A_ = {
|
|
|
7338
7387
|
// type: [Object, Array],
|
|
7339
7388
|
}
|
|
7340
7389
|
},
|
|
7341
|
-
mixins: [
|
|
7390
|
+
mixins: [ie],
|
|
7342
7391
|
created() {
|
|
7343
7392
|
this.model = this.model;
|
|
7344
7393
|
},
|
|
@@ -7451,7 +7500,7 @@ const A_ = {
|
|
|
7451
7500
|
}));
|
|
7452
7501
|
}
|
|
7453
7502
|
}
|
|
7454
|
-
}, M_ = (e) => (
|
|
7503
|
+
}, M_ = (e) => (qe("data-v-0525e84f"), e = e(), We(), e), D_ = {
|
|
7455
7504
|
key: 0,
|
|
7456
7505
|
class: "ux-field-title"
|
|
7457
7506
|
}, I_ = {
|
|
@@ -7522,7 +7571,7 @@ function Z_(e, t, n, r, s, i) {
|
|
|
7522
7571
|
e.multiValue ? (o(), d(S, { key: 0 }, [
|
|
7523
7572
|
e.canAddValue ? (o(), d(S, { key: 0 }, [
|
|
7524
7573
|
x("div", U_, [
|
|
7525
|
-
|
|
7574
|
+
q(e.$slots, "default", {}, () => [
|
|
7526
7575
|
m(f, {
|
|
7527
7576
|
size: e.size,
|
|
7528
7577
|
tag: "div"
|
|
@@ -7534,7 +7583,7 @@ function Z_(e, t, n, r, s, i) {
|
|
|
7534
7583
|
}, 8, ["size"])
|
|
7535
7584
|
], !0)
|
|
7536
7585
|
]),
|
|
7537
|
-
|
|
7586
|
+
Y(x("select", {
|
|
7538
7587
|
onFocus: t[0] || (t[0] = (...c) => e.touch && e.touch(...c)),
|
|
7539
7588
|
"onUpdate:modelValue": t[1] || (t[1] = (c) => s.candidate = c)
|
|
7540
7589
|
}, [
|
|
@@ -7555,7 +7604,7 @@ function Z_(e, t, n, r, s, i) {
|
|
|
7555
7604
|
], 64)) : _("", !0)
|
|
7556
7605
|
], 64)) : (o(), d(S, { key: 1 }, [
|
|
7557
7606
|
x("div", H_, [
|
|
7558
|
-
|
|
7607
|
+
q(e.$slots, "default", {}, () => [
|
|
7559
7608
|
m(f, {
|
|
7560
7609
|
size: e.size,
|
|
7561
7610
|
tag: "div"
|
|
@@ -7567,7 +7616,7 @@ function Z_(e, t, n, r, s, i) {
|
|
|
7567
7616
|
}, 8, ["size"])
|
|
7568
7617
|
], !0)
|
|
7569
7618
|
]),
|
|
7570
|
-
|
|
7619
|
+
Y(x("select", {
|
|
7571
7620
|
onFocus: t[2] || (t[2] = (...c) => e.touch && e.touch(...c)),
|
|
7572
7621
|
multiple: e.multiValue,
|
|
7573
7622
|
"onUpdate:modelValue": t[3] || (t[3] = (c) => e.model = c)
|
|
@@ -7835,7 +7884,7 @@ function tg(e, t, n, r, s, i) {
|
|
|
7835
7884
|
})) : _("", !0),
|
|
7836
7885
|
m(l, null, {
|
|
7837
7886
|
default: h(() => [
|
|
7838
|
-
|
|
7887
|
+
q(e.$slots, "default", {}, void 0, !0)
|
|
7839
7888
|
]),
|
|
7840
7889
|
_: 3
|
|
7841
7890
|
})
|
|
@@ -7884,16 +7933,32 @@ const ag = {
|
|
|
7884
7933
|
type: Boolean
|
|
7885
7934
|
}
|
|
7886
7935
|
}
|
|
7887
|
-
}, lg =
|
|
7888
|
-
|
|
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
|
|
7889
7954
|
];
|
|
7890
|
-
function
|
|
7955
|
+
function dg(e, t, n, r, s, i) {
|
|
7891
7956
|
return o(), d("div", {
|
|
7892
7957
|
class: L(["ux-spinner", { large: n.large }])
|
|
7893
|
-
},
|
|
7958
|
+
}, ug, 2);
|
|
7894
7959
|
}
|
|
7895
|
-
const Nl = /* @__PURE__ */ C(ag, [["render",
|
|
7896
|
-
const
|
|
7960
|
+
const Nl = /* @__PURE__ */ C(ag, [["render", dg], ["__scopeId", "data-v-4104e95e"]]);
|
|
7961
|
+
const cg = {
|
|
7897
7962
|
components: {
|
|
7898
7963
|
Spinner: Nl
|
|
7899
7964
|
},
|
|
@@ -7960,8 +8025,8 @@ const dg = {
|
|
|
7960
8025
|
}
|
|
7961
8026
|
}
|
|
7962
8027
|
}
|
|
7963
|
-
},
|
|
7964
|
-
function
|
|
8028
|
+
}, fg = { class: "ux-btn-text" };
|
|
8029
|
+
function mg(e, t, n, r, s, i) {
|
|
7965
8030
|
const a = y("spinner");
|
|
7966
8031
|
return o(), k(ft(i.element), {
|
|
7967
8032
|
type: "button",
|
|
@@ -7976,15 +8041,15 @@ function fg(e, t, n, r, s, i) {
|
|
|
7976
8041
|
}, {
|
|
7977
8042
|
default: h(() => [
|
|
7978
8043
|
n.loading ? (o(), k(a, { key: 0 })) : _("", !0),
|
|
7979
|
-
x("span",
|
|
7980
|
-
|
|
8044
|
+
x("span", fg, [
|
|
8045
|
+
q(e.$slots, "default", {}, void 0, !0)
|
|
7981
8046
|
])
|
|
7982
8047
|
]),
|
|
7983
8048
|
_: 3
|
|
7984
8049
|
}, 8, ["active", "loading", "to", "href", "target", "style", "class", "disabled"]);
|
|
7985
8050
|
}
|
|
7986
|
-
const
|
|
7987
|
-
const
|
|
8051
|
+
const hg = /* @__PURE__ */ C(cg, [["render", mg], ["__scopeId", "data-v-cede7d1c"]]);
|
|
8052
|
+
const pg = {
|
|
7988
8053
|
props: {
|
|
7989
8054
|
value: {
|
|
7990
8055
|
type: Boolean,
|
|
@@ -8000,7 +8065,7 @@ const hg = {
|
|
|
8000
8065
|
}
|
|
8001
8066
|
}
|
|
8002
8067
|
};
|
|
8003
|
-
function
|
|
8068
|
+
function yg(e, t, n, r, s, i) {
|
|
8004
8069
|
const a = y("ux-icon");
|
|
8005
8070
|
return o(), d("button", {
|
|
8006
8071
|
class: L(["ux-checkbox", i.classes])
|
|
@@ -8011,8 +8076,8 @@ function pg(e, t, n, r, s, i) {
|
|
|
8011
8076
|
})
|
|
8012
8077
|
], 2);
|
|
8013
8078
|
}
|
|
8014
|
-
const Ll = /* @__PURE__ */ C(
|
|
8015
|
-
const
|
|
8079
|
+
const Ll = /* @__PURE__ */ C(pg, [["render", yg], ["__scopeId", "data-v-23f90447"]]);
|
|
8080
|
+
const _g = {
|
|
8016
8081
|
// components:{
|
|
8017
8082
|
// UxIcon,
|
|
8018
8083
|
// },
|
|
@@ -8037,7 +8102,7 @@ const yg = {
|
|
|
8037
8102
|
}
|
|
8038
8103
|
}
|
|
8039
8104
|
};
|
|
8040
|
-
function
|
|
8105
|
+
function gg(e, t, n, r, s, i) {
|
|
8041
8106
|
const a = y("ux-icon");
|
|
8042
8107
|
return o(), d("a", {
|
|
8043
8108
|
class: L(["ux-switch", i.classes])
|
|
@@ -8050,8 +8115,8 @@ function _g(e, t, n, r, s, i) {
|
|
|
8050
8115
|
])
|
|
8051
8116
|
], 2);
|
|
8052
8117
|
}
|
|
8053
|
-
const Pl = /* @__PURE__ */ C(
|
|
8054
|
-
const
|
|
8118
|
+
const Pl = /* @__PURE__ */ C(_g, [["render", gg], ["__scopeId", "data-v-51e4f653"]]);
|
|
8119
|
+
const vg = {
|
|
8055
8120
|
props: {
|
|
8056
8121
|
to: {
|
|
8057
8122
|
type: [Object, String]
|
|
@@ -8118,7 +8183,7 @@ const gg = {
|
|
|
8118
8183
|
}
|
|
8119
8184
|
}
|
|
8120
8185
|
};
|
|
8121
|
-
function
|
|
8186
|
+
function bg(e, t, n, r, s, i) {
|
|
8122
8187
|
return o(), k(ft(i.element), {
|
|
8123
8188
|
onClick: i.clicked,
|
|
8124
8189
|
to: n.to,
|
|
@@ -8127,13 +8192,13 @@ function vg(e, t, n, r, s, i) {
|
|
|
8127
8192
|
class: L([i.class, "ux-link"])
|
|
8128
8193
|
}, {
|
|
8129
8194
|
default: h(() => [
|
|
8130
|
-
|
|
8195
|
+
q(e.$slots, "default", {}, void 0, !0)
|
|
8131
8196
|
]),
|
|
8132
8197
|
_: 3
|
|
8133
8198
|
}, 8, ["onClick", "to", "href", "target", "class"]);
|
|
8134
8199
|
}
|
|
8135
|
-
const
|
|
8136
|
-
const
|
|
8200
|
+
const kg = /* @__PURE__ */ C(vg, [["render", bg], ["__scopeId", "data-v-f55db950"]]);
|
|
8201
|
+
const xg = {
|
|
8137
8202
|
props: {
|
|
8138
8203
|
icon: {
|
|
8139
8204
|
type: [Object, String]
|
|
@@ -8161,15 +8226,15 @@ const kg = {
|
|
|
8161
8226
|
}
|
|
8162
8227
|
}
|
|
8163
8228
|
};
|
|
8164
|
-
function
|
|
8229
|
+
function wg(e, t, n, r, s, i) {
|
|
8165
8230
|
return o(), k(ft(i.element), {
|
|
8166
8231
|
class: L(["ux-icon fa", i.classes])
|
|
8167
8232
|
}, null, 8, ["class"]);
|
|
8168
8233
|
}
|
|
8169
|
-
const
|
|
8234
|
+
const Sg = /* @__PURE__ */ C(xg, [["render", wg], ["__scopeId", "data-v-028189aa"]]), Jn = {
|
|
8170
8235
|
cache: {}
|
|
8171
8236
|
};
|
|
8172
|
-
const
|
|
8237
|
+
const Tg = {
|
|
8173
8238
|
props: {
|
|
8174
8239
|
group: {
|
|
8175
8240
|
type: String
|
|
@@ -8292,15 +8357,15 @@ const Sg = {
|
|
|
8292
8357
|
}
|
|
8293
8358
|
}
|
|
8294
8359
|
};
|
|
8295
|
-
function
|
|
8360
|
+
function Og(e, t, n, r, s, i) {
|
|
8296
8361
|
return o(), d("div", {
|
|
8297
8362
|
class: L(["ux-menu", { right: n.right }])
|
|
8298
8363
|
}, [
|
|
8299
8364
|
x("span", null, [
|
|
8300
|
-
|
|
8365
|
+
q(e.$slots, "activator", { on: i.on }, void 0, !0)
|
|
8301
8366
|
]),
|
|
8302
8367
|
(o(), k(Go, { to: "body" }, [
|
|
8303
|
-
s.isExpanded ?
|
|
8368
|
+
s.isExpanded ? Y((o(), d("div", {
|
|
8304
8369
|
key: 0,
|
|
8305
8370
|
class: "ux-menu-outer",
|
|
8306
8371
|
style: He(s.outerStyle)
|
|
@@ -8310,7 +8375,7 @@ function Tg(e, t, n, r, s, i) {
|
|
|
8310
8375
|
ref: "menu",
|
|
8311
8376
|
style: He(s.innerStyle)
|
|
8312
8377
|
}, [
|
|
8313
|
-
|
|
8378
|
+
q(e.$slots, "default", {}, void 0, !0)
|
|
8314
8379
|
], 4)
|
|
8315
8380
|
], 4)), [
|
|
8316
8381
|
[di, s.isVisible]
|
|
@@ -8318,8 +8383,8 @@ function Tg(e, t, n, r, s, i) {
|
|
|
8318
8383
|
]))
|
|
8319
8384
|
], 2);
|
|
8320
8385
|
}
|
|
8321
|
-
const
|
|
8322
|
-
const
|
|
8386
|
+
const Cg = /* @__PURE__ */ C(Tg, [["render", Og], ["__scopeId", "data-v-960ee754"]]);
|
|
8387
|
+
const Vg = {
|
|
8323
8388
|
name: "menulist",
|
|
8324
8389
|
props: {
|
|
8325
8390
|
items: {
|
|
@@ -8473,7 +8538,7 @@ const Cg = {
|
|
|
8473
8538
|
}
|
|
8474
8539
|
}
|
|
8475
8540
|
};
|
|
8476
|
-
function
|
|
8541
|
+
function Eg(e, t, n, r, s, i) {
|
|
8477
8542
|
const a = y("flex-cell"), l = y("ux-icon"), u = y("flex-row"), f = y("ux-link"), c = y("menulist", !0);
|
|
8478
8543
|
return o(), d("ul", null, [
|
|
8479
8544
|
(o(!0), d(S, null, F(i.filteredItems, (p) => {
|
|
@@ -8547,8 +8612,8 @@ function Vg(e, t, n, r, s, i) {
|
|
|
8547
8612
|
}), 128))
|
|
8548
8613
|
]);
|
|
8549
8614
|
}
|
|
8550
|
-
const
|
|
8551
|
-
const
|
|
8615
|
+
const Ag = /* @__PURE__ */ C(Vg, [["render", Eg], ["__scopeId", "data-v-3764c3fa"]]);
|
|
8616
|
+
const Mg = {
|
|
8552
8617
|
props: {
|
|
8553
8618
|
item: {
|
|
8554
8619
|
type: [Object, String]
|
|
@@ -8727,8 +8792,8 @@ const Ag = {
|
|
|
8727
8792
|
return t && t.length && (e.backgroundColor = t[0]), this.isSvg || this.preview && (e.backgroundImage = `url(${this.previewSrc})`), e;
|
|
8728
8793
|
}
|
|
8729
8794
|
}
|
|
8730
|
-
},
|
|
8731
|
-
function
|
|
8795
|
+
}, Dg = ["alt", "data"], Ig = ["loading", "alt", "src"];
|
|
8796
|
+
function Fg(e, t, n, r, s, i) {
|
|
8732
8797
|
return o(), d("div", {
|
|
8733
8798
|
class: L(["ux-image", i.className]),
|
|
8734
8799
|
style: He(i.style)
|
|
@@ -8738,18 +8803,18 @@ function Ig(e, t, n, r, s, i) {
|
|
|
8738
8803
|
alt: i.altText,
|
|
8739
8804
|
type: "image/svg+xml",
|
|
8740
8805
|
data: i.src
|
|
8741
|
-
}, null, 8,
|
|
8806
|
+
}, null, 8, Dg)) : (o(), d("img", {
|
|
8742
8807
|
key: 1,
|
|
8743
8808
|
ref: "img",
|
|
8744
8809
|
loading: i.loading,
|
|
8745
8810
|
alt: i.altText,
|
|
8746
8811
|
style: He(i.imageStyle),
|
|
8747
8812
|
src: i.src
|
|
8748
|
-
}, null, 12,
|
|
8813
|
+
}, null, 12, Ig))
|
|
8749
8814
|
], 6);
|
|
8750
8815
|
}
|
|
8751
|
-
const
|
|
8752
|
-
const
|
|
8816
|
+
const $g = /* @__PURE__ */ C(Mg, [["render", Fg], ["__scopeId", "data-v-8c3931c4"]]);
|
|
8817
|
+
const Ng = {
|
|
8753
8818
|
props: {
|
|
8754
8819
|
item: {
|
|
8755
8820
|
type: [Object, String]
|
|
@@ -8768,6 +8833,10 @@ const $g = {
|
|
|
8768
8833
|
type: Boolean,
|
|
8769
8834
|
default: !1
|
|
8770
8835
|
},
|
|
8836
|
+
playsinline: {
|
|
8837
|
+
type: Boolean,
|
|
8838
|
+
default: !1
|
|
8839
|
+
},
|
|
8771
8840
|
loop: {
|
|
8772
8841
|
type: Boolean,
|
|
8773
8842
|
default: !1
|
|
@@ -8780,10 +8849,14 @@ const $g = {
|
|
|
8780
8849
|
data() {
|
|
8781
8850
|
return {
|
|
8782
8851
|
model: this.item,
|
|
8783
|
-
isMuted: this.muted || this.autoplay
|
|
8852
|
+
isMuted: this.muted || this.autoplay,
|
|
8853
|
+
playsInline: this.playsinline || this.autoplay
|
|
8784
8854
|
};
|
|
8785
8855
|
},
|
|
8786
8856
|
watch: {
|
|
8857
|
+
playsinline(e) {
|
|
8858
|
+
this.playsInline = e;
|
|
8859
|
+
},
|
|
8787
8860
|
muted(e) {
|
|
8788
8861
|
this.isMuted = e;
|
|
8789
8862
|
}
|
|
@@ -8894,8 +8967,8 @@ const $g = {
|
|
|
8894
8967
|
return this.padHeight && (e.height = 0, e.paddingBottom = this.padHeight, e.overflow = "hidden", e.position = "relative"), e;
|
|
8895
8968
|
}
|
|
8896
8969
|
}
|
|
8897
|
-
},
|
|
8898
|
-
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) {
|
|
8899
8972
|
return o(), d("div", {
|
|
8900
8973
|
class: L(["ux-video", i.className])
|
|
8901
8974
|
}, [
|
|
@@ -8905,6 +8978,7 @@ function Ug(e, t, n, r, s, i) {
|
|
|
8905
8978
|
style: He(i.embedStyle)
|
|
8906
8979
|
}, [
|
|
8907
8980
|
x("video", {
|
|
8981
|
+
playsinline: s.playsInline,
|
|
8908
8982
|
muted: s.isMuted,
|
|
8909
8983
|
loop: n.loop,
|
|
8910
8984
|
autoplay: n.autoplay,
|
|
@@ -8915,9 +8989,9 @@ function Ug(e, t, n, r, s, i) {
|
|
|
8915
8989
|
x("source", {
|
|
8916
8990
|
src: i.src,
|
|
8917
8991
|
type: i.mimetype
|
|
8918
|
-
}, null, 8,
|
|
8992
|
+
}, null, 8, Pg),
|
|
8919
8993
|
T(" Your browser does not support the video tag. ")
|
|
8920
|
-
], 8,
|
|
8994
|
+
], 8, Lg)
|
|
8921
8995
|
], 4)) : _("", !0),
|
|
8922
8996
|
i.mediaType === "youtube" ? (o(), d("div", {
|
|
8923
8997
|
key: 1,
|
|
@@ -8932,12 +9006,12 @@ function Ug(e, t, n, r, s, i) {
|
|
|
8932
9006
|
frameborder: "0",
|
|
8933
9007
|
allow: "accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share",
|
|
8934
9008
|
allowfullscreen: ""
|
|
8935
|
-
}, null, 8,
|
|
9009
|
+
}, null, 8, Ug)
|
|
8936
9010
|
], 4)) : _("", !0)
|
|
8937
9011
|
], 2);
|
|
8938
9012
|
}
|
|
8939
|
-
const
|
|
8940
|
-
const
|
|
9013
|
+
const Rg = /* @__PURE__ */ C(Ng, [["render", jg], ["__scopeId", "data-v-d46f56d4"]]);
|
|
9014
|
+
const Bg = {
|
|
8941
9015
|
props: {
|
|
8942
9016
|
value: {
|
|
8943
9017
|
type: Number
|
|
@@ -8960,18 +9034,18 @@ const Rg = {
|
|
|
8960
9034
|
return "i";
|
|
8961
9035
|
}
|
|
8962
9036
|
}
|
|
8963
|
-
},
|
|
8964
|
-
function
|
|
8965
|
-
return o(), d("div",
|
|
8966
|
-
|
|
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,
|
|
8967
9041
|
x("div", {
|
|
8968
9042
|
class: "ux-progress-fg",
|
|
8969
9043
|
style: He(i.barStyle)
|
|
8970
9044
|
}, null, 4)
|
|
8971
9045
|
]);
|
|
8972
9046
|
}
|
|
8973
|
-
const
|
|
8974
|
-
const
|
|
9047
|
+
const Gg = /* @__PURE__ */ C(Bg, [["render", Wg], ["__scopeId", "data-v-b9019dd2"]]);
|
|
9048
|
+
const Kg = {
|
|
8975
9049
|
props: {
|
|
8976
9050
|
value: {},
|
|
8977
9051
|
tag: {
|
|
@@ -9010,7 +9084,7 @@ const Gg = {
|
|
|
9010
9084
|
}
|
|
9011
9085
|
}
|
|
9012
9086
|
};
|
|
9013
|
-
function
|
|
9087
|
+
function Yg(e, t, n, r, s, i) {
|
|
9014
9088
|
return o(), k(ft(i.elementType), {
|
|
9015
9089
|
class: L(["ux-pill", { "has-link": i.hasLink }]),
|
|
9016
9090
|
style: He(i.style)
|
|
@@ -9021,15 +9095,15 @@ function Kg(e, t, n, r, s, i) {
|
|
|
9021
9095
|
_: 1
|
|
9022
9096
|
}, 8, ["class", "style"]);
|
|
9023
9097
|
}
|
|
9024
|
-
const
|
|
9025
|
-
const
|
|
9026
|
-
function
|
|
9027
|
-
return o(), d("ul",
|
|
9028
|
-
|
|
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)
|
|
9029
9103
|
]);
|
|
9030
9104
|
}
|
|
9031
|
-
const
|
|
9032
|
-
const
|
|
9105
|
+
const ev = /* @__PURE__ */ C(Jg, [["render", Qg], ["__scopeId", "data-v-98a2be3e"]]);
|
|
9106
|
+
const tv = {
|
|
9033
9107
|
props: {
|
|
9034
9108
|
to: {
|
|
9035
9109
|
type: [Object, String]
|
|
@@ -9050,7 +9124,7 @@ const ev = {
|
|
|
9050
9124
|
}
|
|
9051
9125
|
}
|
|
9052
9126
|
};
|
|
9053
|
-
function
|
|
9127
|
+
function nv(e, t, n, r, s, i) {
|
|
9054
9128
|
return o(), k(ft(i.element), {
|
|
9055
9129
|
class: "ux-list-item",
|
|
9056
9130
|
to: n.to,
|
|
@@ -9059,18 +9133,18 @@ function tv(e, t, n, r, s, i) {
|
|
|
9059
9133
|
disabled: n.disabled
|
|
9060
9134
|
}, {
|
|
9061
9135
|
default: h(() => [
|
|
9062
|
-
|
|
9136
|
+
q(e.$slots, "default", {}, void 0, !0)
|
|
9063
9137
|
]),
|
|
9064
9138
|
_: 3
|
|
9065
9139
|
}, 8, ["to", "href", "target", "disabled"]);
|
|
9066
9140
|
}
|
|
9067
|
-
const
|
|
9141
|
+
const iv = /* @__PURE__ */ C(tv, [["render", nv], ["__scopeId", "data-v-ebb9a7bc"]]);
|
|
9068
9142
|
function gn(e) {
|
|
9069
9143
|
var t = new Date(e);
|
|
9070
9144
|
if (t instanceof Date && !isNaN(t))
|
|
9071
9145
|
return t;
|
|
9072
9146
|
}
|
|
9073
|
-
const
|
|
9147
|
+
const rv = {
|
|
9074
9148
|
props: {
|
|
9075
9149
|
modelValue: {
|
|
9076
9150
|
type: Object
|
|
@@ -9109,8 +9183,8 @@ const iv = {
|
|
|
9109
9183
|
this.model = e;
|
|
9110
9184
|
}
|
|
9111
9185
|
}
|
|
9112
|
-
}, Ul = (e) => (
|
|
9113
|
-
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) {
|
|
9114
9188
|
const a = y("flex-cell"), l = y("flex-row");
|
|
9115
9189
|
return o(), d("div", null, [
|
|
9116
9190
|
m(l, {
|
|
@@ -9122,14 +9196,14 @@ function av(e, t, n, r, s, i) {
|
|
|
9122
9196
|
m(a, { class: "cell" }, {
|
|
9123
9197
|
default: h(() => [
|
|
9124
9198
|
x("div", null, [
|
|
9125
|
-
|
|
9126
|
-
|
|
9199
|
+
sv,
|
|
9200
|
+
Y(x("input", {
|
|
9127
9201
|
type: "date",
|
|
9128
9202
|
class: "ux-field-focus ux-text-input-multiple",
|
|
9129
9203
|
ref: "input",
|
|
9130
9204
|
"onUpdate:modelValue": t[0] || (t[0] = (u) => i.startDate = u)
|
|
9131
9205
|
}, null, 512), [
|
|
9132
|
-
[
|
|
9206
|
+
[ae, i.startDate]
|
|
9133
9207
|
])
|
|
9134
9208
|
])
|
|
9135
9209
|
]),
|
|
@@ -9138,14 +9212,14 @@ function av(e, t, n, r, s, i) {
|
|
|
9138
9212
|
m(a, { class: "cell" }, {
|
|
9139
9213
|
default: h(() => [
|
|
9140
9214
|
x("div", null, [
|
|
9141
|
-
|
|
9142
|
-
|
|
9215
|
+
av,
|
|
9216
|
+
Y(x("input", {
|
|
9143
9217
|
type: "date",
|
|
9144
9218
|
class: "ux-field-focus ux-text-input-multiple",
|
|
9145
9219
|
ref: "input",
|
|
9146
9220
|
"onUpdate:modelValue": t[1] || (t[1] = (u) => i.endDate = u)
|
|
9147
9221
|
}, null, 512), [
|
|
9148
|
-
[
|
|
9222
|
+
[ae, i.endDate]
|
|
9149
9223
|
])
|
|
9150
9224
|
])
|
|
9151
9225
|
]),
|
|
@@ -9156,8 +9230,8 @@ function av(e, t, n, r, s, i) {
|
|
|
9156
9230
|
})
|
|
9157
9231
|
]);
|
|
9158
9232
|
}
|
|
9159
|
-
const
|
|
9160
|
-
const
|
|
9233
|
+
const ov = /* @__PURE__ */ C(rv, [["render", lv], ["__scopeId", "data-v-dc53841d"]]);
|
|
9234
|
+
const uv = {
|
|
9161
9235
|
props: {
|
|
9162
9236
|
modelValue: {
|
|
9163
9237
|
type: [Object, Array]
|
|
@@ -9166,7 +9240,7 @@ const ov = {
|
|
|
9166
9240
|
components: {
|
|
9167
9241
|
NativeSelect: Ct
|
|
9168
9242
|
},
|
|
9169
|
-
mixins: [
|
|
9243
|
+
mixins: [ie],
|
|
9170
9244
|
async created() {
|
|
9171
9245
|
var e = await this.$sdk.system.countries(), t = e.reduce(function(n, r) {
|
|
9172
9246
|
if (!r.countryCallingCodes || !r.countryCallingCodes.length)
|
|
@@ -9216,25 +9290,25 @@ const ov = {
|
|
|
9216
9290
|
};
|
|
9217
9291
|
}
|
|
9218
9292
|
}
|
|
9219
|
-
},
|
|
9293
|
+
}, dv = (e) => (qe("data-v-d61960a4"), e = e(), We(), e), cv = {
|
|
9220
9294
|
key: 0,
|
|
9221
9295
|
class: "ux-field-title"
|
|
9222
|
-
},
|
|
9296
|
+
}, fv = {
|
|
9223
9297
|
key: 0,
|
|
9224
9298
|
class: "ux-required-marker"
|
|
9225
|
-
},
|
|
9299
|
+
}, mv = {
|
|
9226
9300
|
key: 1,
|
|
9227
9301
|
class: "ux-field-description"
|
|
9228
|
-
},
|
|
9229
|
-
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) {
|
|
9230
9304
|
const a = y("ux-button"), l = y("native-select"), u = y("flex-cell"), f = y("ux-icon"), c = y("flex-row");
|
|
9231
9305
|
return o(), d(S, null, [
|
|
9232
|
-
e.showLabel ? (o(), d("label",
|
|
9306
|
+
e.showLabel ? (o(), d("label", cv, [
|
|
9233
9307
|
T(v(e.label) + " ", 1),
|
|
9234
|
-
e.required ? (o(), d("span",
|
|
9308
|
+
e.required ? (o(), d("span", fv, "*")) : _("", !0)
|
|
9235
9309
|
])) : _("", !0),
|
|
9236
|
-
e.showDescription ? (o(), d("div",
|
|
9237
|
-
e.multiValue ? (o(), d("div",
|
|
9310
|
+
e.showDescription ? (o(), d("div", mv, v(e.description), 1)) : _("", !0),
|
|
9311
|
+
e.multiValue ? (o(), d("div", hv, [
|
|
9238
9312
|
(o(!0), d(S, null, F(e.model, (p, g) => (o(), k(c, {
|
|
9239
9313
|
gap: "",
|
|
9240
9314
|
vcenter: "",
|
|
@@ -9254,7 +9328,7 @@ function xv(e, t, n, r, s, i) {
|
|
|
9254
9328
|
m(a, { tag: "a" }, {
|
|
9255
9329
|
default: h(() => [
|
|
9256
9330
|
p.countryCode ? (o(), d(S, { key: 1 }, [
|
|
9257
|
-
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"))
|
|
9258
9332
|
], 64)) : (o(), d(S, { key: 0 }, [
|
|
9259
9333
|
T(" Country Code ")
|
|
9260
9334
|
], 64))
|
|
@@ -9269,8 +9343,8 @@ function xv(e, t, n, r, s, i) {
|
|
|
9269
9343
|
}, 1024),
|
|
9270
9344
|
m(u, null, {
|
|
9271
9345
|
default: h(() => [
|
|
9272
|
-
x("div",
|
|
9273
|
-
|
|
9346
|
+
x("div", _v, [
|
|
9347
|
+
Y(x("input", {
|
|
9274
9348
|
class: "ux-field-focus ux-text-input-multiple",
|
|
9275
9349
|
placeholder: i.actualPlaceholder,
|
|
9276
9350
|
onFocus: t[0] || (t[0] = (...b) => e.touch && e.touch(...b)),
|
|
@@ -9278,8 +9352,8 @@ function xv(e, t, n, r, s, i) {
|
|
|
9278
9352
|
ref: "input",
|
|
9279
9353
|
onKeydown: t[1] || (t[1] = ge(z((b) => e.add(), ["stop", "prevent"]), ["enter"])),
|
|
9280
9354
|
"onUpdate:modelValue": (b) => p.number = b
|
|
9281
|
-
}, null, 40,
|
|
9282
|
-
[
|
|
9355
|
+
}, null, 40, gv), [
|
|
9356
|
+
[ae, p.number]
|
|
9283
9357
|
])
|
|
9284
9358
|
])
|
|
9285
9359
|
]),
|
|
@@ -9328,14 +9402,14 @@ function xv(e, t, n, r, s, i) {
|
|
|
9328
9402
|
default: h(() => [
|
|
9329
9403
|
m(u, { shrink: "" }, {
|
|
9330
9404
|
default: h(() => [
|
|
9331
|
-
|
|
9405
|
+
Y(x("select", {
|
|
9332
9406
|
class: "ux-country-code-select",
|
|
9333
9407
|
"onUpdate:modelValue": t[3] || (t[3] = (p) => e.model.countryCode = p)
|
|
9334
9408
|
}, [
|
|
9335
|
-
|
|
9409
|
+
vv,
|
|
9336
9410
|
(o(!0), d(S, null, F(s.countryCodes, (p) => (o(), d("option", {
|
|
9337
9411
|
value: p.value
|
|
9338
|
-
}, v(p.title), 9,
|
|
9412
|
+
}, v(p.title), 9, bv))), 256))
|
|
9339
9413
|
], 512), [
|
|
9340
9414
|
[Tt, e.model.countryCode]
|
|
9341
9415
|
])
|
|
@@ -9344,16 +9418,16 @@ function xv(e, t, n, r, s, i) {
|
|
|
9344
9418
|
}),
|
|
9345
9419
|
m(u, null, {
|
|
9346
9420
|
default: h(() => [
|
|
9347
|
-
x("div",
|
|
9348
|
-
|
|
9421
|
+
x("div", kv, [
|
|
9422
|
+
Y(x("input", {
|
|
9349
9423
|
class: "ux-field-focus ux-text-input-multiple",
|
|
9350
9424
|
placeholder: i.actualPlaceholder,
|
|
9351
9425
|
onFocus: t[4] || (t[4] = (...p) => e.touch && e.touch(...p)),
|
|
9352
9426
|
ref: "input",
|
|
9353
9427
|
onKeydown: t[5] || (t[5] = ge(z((p) => e.add(), ["stop", "prevent"]), ["enter"])),
|
|
9354
9428
|
"onUpdate:modelValue": t[6] || (t[6] = (p) => e.model.number = p)
|
|
9355
|
-
}, null, 40,
|
|
9356
|
-
[
|
|
9429
|
+
}, null, 40, xv), [
|
|
9430
|
+
[ae, e.model.number]
|
|
9357
9431
|
])
|
|
9358
9432
|
])
|
|
9359
9433
|
]),
|
|
@@ -9364,24 +9438,24 @@ function xv(e, t, n, r, s, i) {
|
|
|
9364
9438
|
}))
|
|
9365
9439
|
], 64);
|
|
9366
9440
|
}
|
|
9367
|
-
const
|
|
9368
|
-
function
|
|
9441
|
+
const Sv = /* @__PURE__ */ C(uv, [["render", wv], ["__scopeId", "data-v-d61960a4"]]);
|
|
9442
|
+
function Tv(e) {
|
|
9369
9443
|
return e === void 0 || typeof e > "u" || e === null || String(e) === "null" || String(e) === "undefined";
|
|
9370
9444
|
}
|
|
9371
|
-
const
|
|
9445
|
+
const Ov = {
|
|
9372
9446
|
props: {
|
|
9373
9447
|
modelValue: {
|
|
9374
9448
|
type: String
|
|
9375
9449
|
}
|
|
9376
9450
|
},
|
|
9377
|
-
mixins: [
|
|
9451
|
+
mixins: [ie],
|
|
9378
9452
|
created() {
|
|
9379
9453
|
this.model = this.model;
|
|
9380
9454
|
},
|
|
9381
9455
|
methods: {
|
|
9382
9456
|
cleanOutput(e) {
|
|
9383
9457
|
var t = this;
|
|
9384
|
-
return
|
|
9458
|
+
return Tv(e) ? t.multiValue ? e = [] : e = void 0 : t.multiValue ? e = (e || []).filter(Boolean).map(function(n) {
|
|
9385
9459
|
return t.getValue(n);
|
|
9386
9460
|
}) : e = t.getValue(e), e;
|
|
9387
9461
|
},
|
|
@@ -9884,34 +9958,34 @@ const Tv = {
|
|
|
9884
9958
|
return this.options;
|
|
9885
9959
|
}
|
|
9886
9960
|
}
|
|
9887
|
-
},
|
|
9961
|
+
}, Cv = {
|
|
9888
9962
|
key: 0,
|
|
9889
9963
|
class: "ux-field-title"
|
|
9890
|
-
},
|
|
9964
|
+
}, Vv = {
|
|
9891
9965
|
key: 0,
|
|
9892
9966
|
class: "ux-required-marker"
|
|
9893
|
-
},
|
|
9967
|
+
}, Ev = {
|
|
9894
9968
|
key: 1,
|
|
9895
9969
|
class: "ux-field-description"
|
|
9896
|
-
},
|
|
9970
|
+
}, Av = {
|
|
9897
9971
|
key: 2,
|
|
9898
9972
|
class: "ui-select-button"
|
|
9899
|
-
},
|
|
9973
|
+
}, Mv = ["multiple"], Dv = {
|
|
9900
9974
|
key: 0,
|
|
9901
9975
|
value: ""
|
|
9902
|
-
},
|
|
9903
|
-
function
|
|
9976
|
+
}, Iv = ["value"];
|
|
9977
|
+
function Fv(e, t, n, r, s, i) {
|
|
9904
9978
|
const a = y("ux-button");
|
|
9905
9979
|
return o(), d("div", {
|
|
9906
9980
|
class: L(["native-select", i.classes])
|
|
9907
9981
|
}, [
|
|
9908
|
-
e.showLabel ? (o(), d("label",
|
|
9982
|
+
e.showLabel ? (o(), d("label", Cv, [
|
|
9909
9983
|
T(v(e.label) + " ", 1),
|
|
9910
|
-
e.required ? (o(), d("span",
|
|
9984
|
+
e.required ? (o(), d("span", Vv, "*")) : _("", !0)
|
|
9911
9985
|
])) : _("", !0),
|
|
9912
|
-
e.showDescription ? (o(), d("div",
|
|
9913
|
-
e.singleValue ? (o(), d("div",
|
|
9914
|
-
|
|
9986
|
+
e.showDescription ? (o(), d("div", Ev, v(e.description), 1)) : _("", !0),
|
|
9987
|
+
e.singleValue ? (o(), d("div", Av, [
|
|
9988
|
+
q(e.$slots, "default", {}, () => [
|
|
9915
9989
|
m(a, { tag: "div" }, {
|
|
9916
9990
|
default: h(() => [
|
|
9917
9991
|
T(v(i.summary), 1)
|
|
@@ -9920,22 +9994,22 @@ function Iv(e, t, n, r, s, i) {
|
|
|
9920
9994
|
})
|
|
9921
9995
|
], !0)
|
|
9922
9996
|
])) : _("", !0),
|
|
9923
|
-
|
|
9997
|
+
Y(x("select", {
|
|
9924
9998
|
onFocus: t[0] || (t[0] = (...l) => e.touch && e.touch(...l)),
|
|
9925
9999
|
multiple: e.multiValue,
|
|
9926
10000
|
"onUpdate:modelValue": t[1] || (t[1] = (l) => e.model = l)
|
|
9927
10001
|
}, [
|
|
9928
|
-
e.singleValue && !e.minimum ? (o(), d("option",
|
|
10002
|
+
e.singleValue && !e.minimum ? (o(), d("option", Dv, "None")) : _("", !0),
|
|
9929
10003
|
(o(!0), d(S, null, F(i.selectableOptions, (l) => (o(), d("option", {
|
|
9930
10004
|
value: l.value
|
|
9931
|
-
}, v(l.title), 9,
|
|
9932
|
-
], 40,
|
|
10005
|
+
}, v(l.title), 9, Iv))), 256))
|
|
10006
|
+
], 40, Mv), [
|
|
9933
10007
|
[Tt, e.model]
|
|
9934
10008
|
])
|
|
9935
10009
|
], 2);
|
|
9936
10010
|
}
|
|
9937
|
-
const
|
|
9938
|
-
const
|
|
10011
|
+
const $v = /* @__PURE__ */ C(Ov, [["render", Fv], ["__scopeId", "data-v-9c322e6d"]]);
|
|
10012
|
+
const Nv = {
|
|
9939
10013
|
props: {
|
|
9940
10014
|
manual: {
|
|
9941
10015
|
type: Boolean
|
|
@@ -9978,7 +10052,7 @@ const $v = {
|
|
|
9978
10052
|
}
|
|
9979
10053
|
}
|
|
9980
10054
|
};
|
|
9981
|
-
function
|
|
10055
|
+
function Lv(e, t, n, r, s, i) {
|
|
9982
10056
|
const a = y("ux-image"), l = y("flex-cell"), u = y("flex-row");
|
|
9983
10057
|
return o(), d("div", {
|
|
9984
10058
|
class: "content-item",
|
|
@@ -10013,7 +10087,7 @@ function Nv(e, t, n, r, s, i) {
|
|
|
10013
10087
|
default: h(() => [
|
|
10014
10088
|
m(l, null, {
|
|
10015
10089
|
default: h(() => [
|
|
10016
|
-
|
|
10090
|
+
q(e.$slots, "default", {}, () => [
|
|
10017
10091
|
T(v(i.title), 1)
|
|
10018
10092
|
], !0)
|
|
10019
10093
|
]),
|
|
@@ -10024,7 +10098,7 @@ function Nv(e, t, n, r, s, i) {
|
|
|
10024
10098
|
}),
|
|
10025
10099
|
m(l, { shrink: "" }, {
|
|
10026
10100
|
default: h(() => [
|
|
10027
|
-
|
|
10101
|
+
q(e.$slots, "actions", {}, void 0, !0)
|
|
10028
10102
|
]),
|
|
10029
10103
|
_: 3
|
|
10030
10104
|
})
|
|
@@ -10033,7 +10107,7 @@ function Nv(e, t, n, r, s, i) {
|
|
|
10033
10107
|
})
|
|
10034
10108
|
]);
|
|
10035
10109
|
}
|
|
10036
|
-
const jl = /* @__PURE__ */ C(
|
|
10110
|
+
const jl = /* @__PURE__ */ C(Nv, [["render", Lv], ["__scopeId", "data-v-2ce8bfb1"]]);
|
|
10037
10111
|
/**!
|
|
10038
10112
|
* Sortable 1.14.0
|
|
10039
10113
|
* @author RubaXa <trash@rubaxa.org>
|
|
@@ -10054,7 +10128,7 @@ function ut(e) {
|
|
|
10054
10128
|
for (var t = 1; t < arguments.length; t++) {
|
|
10055
10129
|
var n = arguments[t] != null ? arguments[t] : {};
|
|
10056
10130
|
t % 2 ? Bs(Object(n), !0).forEach(function(r) {
|
|
10057
|
-
|
|
10131
|
+
Pv(e, r, n[r]);
|
|
10058
10132
|
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(n)) : Bs(Object(n)).forEach(function(r) {
|
|
10059
10133
|
Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(n, r));
|
|
10060
10134
|
});
|
|
@@ -10068,7 +10142,7 @@ function si(e) {
|
|
|
10068
10142
|
return t && typeof Symbol == "function" && t.constructor === Symbol && t !== Symbol.prototype ? "symbol" : typeof t;
|
|
10069
10143
|
}, si(e);
|
|
10070
10144
|
}
|
|
10071
|
-
function
|
|
10145
|
+
function Pv(e, t, n) {
|
|
10072
10146
|
return t in e ? Object.defineProperty(e, t, {
|
|
10073
10147
|
value: n,
|
|
10074
10148
|
enumerable: !0,
|
|
@@ -10086,7 +10160,7 @@ function ht() {
|
|
|
10086
10160
|
return e;
|
|
10087
10161
|
}, ht.apply(this, arguments);
|
|
10088
10162
|
}
|
|
10089
|
-
function
|
|
10163
|
+
function Uv(e, t) {
|
|
10090
10164
|
if (e == null)
|
|
10091
10165
|
return {};
|
|
10092
10166
|
var n = {}, r = Object.keys(e), s, i;
|
|
@@ -10094,10 +10168,10 @@ function Pv(e, t) {
|
|
|
10094
10168
|
s = r[i], !(t.indexOf(s) >= 0) && (n[s] = e[s]);
|
|
10095
10169
|
return n;
|
|
10096
10170
|
}
|
|
10097
|
-
function
|
|
10171
|
+
function jv(e, t) {
|
|
10098
10172
|
if (e == null)
|
|
10099
10173
|
return {};
|
|
10100
|
-
var n =
|
|
10174
|
+
var n = Uv(e, t), r, s;
|
|
10101
10175
|
if (Object.getOwnPropertySymbols) {
|
|
10102
10176
|
var i = Object.getOwnPropertySymbols(e);
|
|
10103
10177
|
for (s = 0; s < i.length; s++)
|
|
@@ -10105,16 +10179,16 @@ function Uv(e, t) {
|
|
|
10105
10179
|
}
|
|
10106
10180
|
return n;
|
|
10107
10181
|
}
|
|
10108
|
-
var
|
|
10182
|
+
var Rv = "1.14.0";
|
|
10109
10183
|
function ct(e) {
|
|
10110
10184
|
if (typeof window < "u" && window.navigator)
|
|
10111
10185
|
return !!/* @__PURE__ */ navigator.userAgent.match(e);
|
|
10112
10186
|
}
|
|
10113
|
-
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 = {
|
|
10114
10188
|
capture: !1,
|
|
10115
10189
|
passive: !1
|
|
10116
10190
|
};
|
|
10117
|
-
function
|
|
10191
|
+
function ne(e, t, n) {
|
|
10118
10192
|
e.addEventListener(t, n, !pt && Bl);
|
|
10119
10193
|
}
|
|
10120
10194
|
function X(e, t, n) {
|
|
@@ -10136,7 +10210,7 @@ function yi(e, t) {
|
|
|
10136
10210
|
return !1;
|
|
10137
10211
|
}
|
|
10138
10212
|
}
|
|
10139
|
-
function
|
|
10213
|
+
function zv(e) {
|
|
10140
10214
|
return e.host && e !== document && e.host.nodeType ? e.host : e.parentNode;
|
|
10141
10215
|
}
|
|
10142
10216
|
function lt(e, t, n, r) {
|
|
@@ -10147,7 +10221,7 @@ function lt(e, t, n, r) {
|
|
|
10147
10221
|
return e;
|
|
10148
10222
|
if (e === n)
|
|
10149
10223
|
break;
|
|
10150
|
-
} while (e =
|
|
10224
|
+
} while (e = zv(e));
|
|
10151
10225
|
}
|
|
10152
10226
|
return null;
|
|
10153
10227
|
}
|
|
@@ -10247,7 +10321,7 @@ function Hr(e, t) {
|
|
|
10247
10321
|
n = n.previousElementSibling;
|
|
10248
10322
|
return n || null;
|
|
10249
10323
|
}
|
|
10250
|
-
function
|
|
10324
|
+
function Ke(e, t) {
|
|
10251
10325
|
var n = 0;
|
|
10252
10326
|
if (!e || !e.parentNode)
|
|
10253
10327
|
return -1;
|
|
@@ -10264,7 +10338,7 @@ function Ws(e) {
|
|
|
10264
10338
|
} while (e !== r && (e = e.parentNode));
|
|
10265
10339
|
return [t, n];
|
|
10266
10340
|
}
|
|
10267
|
-
function
|
|
10341
|
+
function Hv(e, t) {
|
|
10268
10342
|
for (var n in e)
|
|
10269
10343
|
if (e.hasOwnProperty(n)) {
|
|
10270
10344
|
for (var r in t)
|
|
@@ -10291,7 +10365,7 @@ function St(e, t) {
|
|
|
10291
10365
|
while (n = n.parentNode);
|
|
10292
10366
|
return ot();
|
|
10293
10367
|
}
|
|
10294
|
-
function
|
|
10368
|
+
function qv(e, t) {
|
|
10295
10369
|
if (e && t)
|
|
10296
10370
|
for (var n in t)
|
|
10297
10371
|
t.hasOwnProperty(n) && (e[n] = t[n]);
|
|
@@ -10311,7 +10385,7 @@ function Hl(e, t) {
|
|
|
10311
10385
|
}
|
|
10312
10386
|
};
|
|
10313
10387
|
}
|
|
10314
|
-
function
|
|
10388
|
+
function Wv() {
|
|
10315
10389
|
clearTimeout(Cn), Cn = void 0;
|
|
10316
10390
|
}
|
|
10317
10391
|
function ql(e, t, n) {
|
|
@@ -10322,7 +10396,7 @@ function Wl(e) {
|
|
|
10322
10396
|
return t && t.dom ? t.dom(e).cloneNode(!0) : n ? n(e).clone(!0)[0] : e.cloneNode(!0);
|
|
10323
10397
|
}
|
|
10324
10398
|
var Be = "Sortable" + new Date().getTime();
|
|
10325
|
-
function
|
|
10399
|
+
function Gv() {
|
|
10326
10400
|
var e = [], t;
|
|
10327
10401
|
return {
|
|
10328
10402
|
captureAnimationState: function() {
|
|
@@ -10348,7 +10422,7 @@ function Wv() {
|
|
|
10348
10422
|
e.push(r);
|
|
10349
10423
|
},
|
|
10350
10424
|
removeAnimationState: function(r) {
|
|
10351
|
-
e.splice(
|
|
10425
|
+
e.splice(Hv(e, {
|
|
10352
10426
|
target: r
|
|
10353
10427
|
}), 1);
|
|
10354
10428
|
},
|
|
@@ -10362,7 +10436,7 @@ function Wv() {
|
|
|
10362
10436
|
e.forEach(function(l) {
|
|
10363
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);
|
|
10364
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
|
|
10365
|
-
(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() {
|
|
10366
10440
|
f.animationTime = 0, f.prevFromRect = null, f.fromRect = null, f.prevToRect = null, f.thisAnimationDuration = null;
|
|
10367
10441
|
}, u), f.thisAnimationDuration = u);
|
|
10368
10442
|
}), clearTimeout(t), i ? t = setTimeout(function() {
|
|
@@ -10373,17 +10447,17 @@ function Wv() {
|
|
|
10373
10447
|
if (a) {
|
|
10374
10448
|
R(r, "transition", ""), R(r, "transform", "");
|
|
10375
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);
|
|
10376
|
-
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() {
|
|
10377
10451
|
R(r, "transition", ""), R(r, "transform", ""), r.animated = !1, r.animatingX = !1, r.animatingY = !1;
|
|
10378
10452
|
}, a);
|
|
10379
10453
|
}
|
|
10380
10454
|
}
|
|
10381
10455
|
};
|
|
10382
10456
|
}
|
|
10383
|
-
function
|
|
10457
|
+
function Kv(e) {
|
|
10384
10458
|
return e.offsetWidth;
|
|
10385
10459
|
}
|
|
10386
|
-
function
|
|
10460
|
+
function Yv(e, t, n, r) {
|
|
10387
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;
|
|
10388
10462
|
}
|
|
10389
10463
|
var Wt = [], Yi = {
|
|
@@ -10438,26 +10512,26 @@ var Wt = [], Yi = {
|
|
|
10438
10512
|
}), s;
|
|
10439
10513
|
}
|
|
10440
10514
|
};
|
|
10441
|
-
function
|
|
10515
|
+
function Zv(e) {
|
|
10442
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;
|
|
10443
10517
|
if (t = t || n && n[Be], !!t) {
|
|
10444
|
-
var O, j = t.options,
|
|
10518
|
+
var O, j = t.options, H = "on" + r.charAt(0).toUpperCase() + r.substr(1);
|
|
10445
10519
|
window.CustomEvent && !pt && !Pn ? O = new CustomEvent(r, {
|
|
10446
10520
|
bubbles: !0,
|
|
10447
10521
|
cancelable: !0
|
|
10448
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;
|
|
10449
|
-
var
|
|
10450
|
-
for (var
|
|
10451
|
-
O[
|
|
10452
|
-
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);
|
|
10453
10527
|
}
|
|
10454
10528
|
}
|
|
10455
|
-
var
|
|
10456
|
-
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);
|
|
10457
10531
|
Un.pluginEvent.bind(B)(t, n, ut({
|
|
10458
|
-
dragEl:
|
|
10532
|
+
dragEl: M,
|
|
10459
10533
|
parentEl: me,
|
|
10460
|
-
ghostEl:
|
|
10534
|
+
ghostEl: K,
|
|
10461
10535
|
rootEl: ce,
|
|
10462
10536
|
nextEl: $t,
|
|
10463
10537
|
lastDownEl: ai,
|
|
@@ -10489,10 +10563,10 @@ var Zv = ["evt"], Le = function(t, n) {
|
|
|
10489
10563
|
}, i));
|
|
10490
10564
|
};
|
|
10491
10565
|
function Fe(e) {
|
|
10492
|
-
|
|
10566
|
+
Zv(ut({
|
|
10493
10567
|
putSortable: Se,
|
|
10494
10568
|
cloneEl: he,
|
|
10495
|
-
targetEl:
|
|
10569
|
+
targetEl: M,
|
|
10496
10570
|
rootEl: ce,
|
|
10497
10571
|
oldIndex: Zt,
|
|
10498
10572
|
oldDraggableIndex: Vn,
|
|
@@ -10500,7 +10574,7 @@ function Fe(e) {
|
|
|
10500
10574
|
newDraggableIndex: kt
|
|
10501
10575
|
}, e));
|
|
10502
10576
|
}
|
|
10503
|
-
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() {
|
|
10504
10578
|
if (Fi) {
|
|
10505
10579
|
if (pt)
|
|
10506
10580
|
return !1;
|
|
@@ -10518,10 +10592,10 @@ var D, me, G, ce, $t, ai, he, wt, Zt, je, Vn, kt, Xn, Se, Kt = !1, _i = !1, gi =
|
|
|
10518
10592
|
return a && (u.clear === "both" || u.clear === p) ? "vertical" : "horizontal";
|
|
10519
10593
|
}
|
|
10520
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";
|
|
10521
|
-
},
|
|
10595
|
+
}, Qv = function(t, n, r) {
|
|
10522
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;
|
|
10523
10597
|
return s === l || i === u || s + a / 2 === l + f / 2;
|
|
10524
|
-
},
|
|
10598
|
+
}, e1 = function(t, n) {
|
|
10525
10599
|
var r;
|
|
10526
10600
|
return gi.some(function(s) {
|
|
10527
10601
|
var i = s[Be].options.emptyInsertThreshold;
|
|
@@ -10552,18 +10626,18 @@ var D, me, G, ce, $t, ai, he, wt, Zt, je, Vn, kt, Xn, Se, Kt = !1, _i = !1, gi =
|
|
|
10552
10626
|
name: s
|
|
10553
10627
|
}), r.name = s.name, r.checkPull = n(s.pull, !0), r.checkPut = n(s.put), r.revertClone = s.revertClone, t.group = r;
|
|
10554
10628
|
}, Zl = function() {
|
|
10555
|
-
!Gl &&
|
|
10629
|
+
!Gl && K && R(K, "display", "none");
|
|
10556
10630
|
}, Jl = function() {
|
|
10557
|
-
!Gl &&
|
|
10631
|
+
!Gl && K && R(K, "display", "");
|
|
10558
10632
|
};
|
|
10559
10633
|
Fi && document.addEventListener("click", function(e) {
|
|
10560
10634
|
if (_i)
|
|
10561
10635
|
return e.preventDefault(), e.stopPropagation && e.stopPropagation(), e.stopImmediatePropagation && e.stopImmediatePropagation(), _i = !1, !1;
|
|
10562
10636
|
}, !0);
|
|
10563
10637
|
var It = function(t) {
|
|
10564
|
-
if (
|
|
10638
|
+
if (M) {
|
|
10565
10639
|
t = t.touches ? t.touches[0] : t;
|
|
10566
|
-
var n =
|
|
10640
|
+
var n = e1(t.clientX, t.clientY);
|
|
10567
10641
|
if (n) {
|
|
10568
10642
|
var r = {};
|
|
10569
10643
|
for (var s in t)
|
|
@@ -10571,8 +10645,8 @@ var It = function(t) {
|
|
|
10571
10645
|
r.target = r.rootEl = n, r.preventDefault = void 0, r.stopPropagation = void 0, n[Be]._onDragOver(r);
|
|
10572
10646
|
}
|
|
10573
10647
|
}
|
|
10574
|
-
},
|
|
10575
|
-
|
|
10648
|
+
}, t1 = function(t) {
|
|
10649
|
+
M && M.parentNode[Be]._isOutsideThisEl(t.target);
|
|
10576
10650
|
};
|
|
10577
10651
|
function B(e, t) {
|
|
10578
10652
|
if (!(e && e.nodeType && e.nodeType === 1))
|
|
@@ -10629,7 +10703,7 @@ function B(e, t) {
|
|
|
10629
10703
|
Yl(t);
|
|
10630
10704
|
for (var s in this)
|
|
10631
10705
|
s.charAt(0) === "_" && typeof this[s] == "function" && (this[s] = this[s].bind(this));
|
|
10632
|
-
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());
|
|
10633
10707
|
}
|
|
10634
10708
|
B.prototype = /** @lends Sortable.prototype */
|
|
10635
10709
|
{
|
|
@@ -10638,13 +10712,13 @@ B.prototype = /** @lends Sortable.prototype */
|
|
|
10638
10712
|
!this.el.contains(t) && t !== this.el && (Gt = null);
|
|
10639
10713
|
},
|
|
10640
10714
|
_getDirection: function(t, n) {
|
|
10641
|
-
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;
|
|
10642
10716
|
},
|
|
10643
10717
|
_onTapStart: function(t) {
|
|
10644
10718
|
if (t.cancelable) {
|
|
10645
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;
|
|
10646
|
-
if (
|
|
10647
|
-
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") {
|
|
10648
10722
|
if (c.call(this, t, u, this)) {
|
|
10649
10723
|
Fe({
|
|
10650
10724
|
sortable: n,
|
|
@@ -10680,34 +10754,34 @@ B.prototype = /** @lends Sortable.prototype */
|
|
|
10680
10754
|
},
|
|
10681
10755
|
_prepareDragStart: function(t, n, r) {
|
|
10682
10756
|
var s = this, i = s.el, a = s.options, l = i.ownerDocument, u;
|
|
10683
|
-
if (r && !
|
|
10757
|
+
if (r && !M && r.parentNode === i) {
|
|
10684
10758
|
var f = be(r);
|
|
10685
|
-
if (ce = i,
|
|
10686
|
-
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,
|
|
10687
10761
|
clientX: (n || t).clientX,
|
|
10688
10762
|
clientY: (n || t).clientY
|
|
10689
|
-
}, 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() {
|
|
10690
10764
|
if (Le("delayEnded", s, {
|
|
10691
10765
|
evt: t
|
|
10692
10766
|
}), B.eventCanceled) {
|
|
10693
10767
|
s._onDrop();
|
|
10694
10768
|
return;
|
|
10695
10769
|
}
|
|
10696
|
-
s._disableDelayedDragEvents(), !zs && s.nativeDraggable && (
|
|
10770
|
+
s._disableDelayedDragEvents(), !zs && s.nativeDraggable && (M.draggable = !0), s._triggerDragStart(t, n), Fe({
|
|
10697
10771
|
sortable: s,
|
|
10698
10772
|
name: "choose",
|
|
10699
10773
|
originalEvent: t
|
|
10700
|
-
}), Ue(
|
|
10774
|
+
}), Ue(M, a.chosenClass, !0);
|
|
10701
10775
|
}, a.ignore.split(",").forEach(function(c) {
|
|
10702
|
-
zl(
|
|
10703
|
-
}),
|
|
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, {
|
|
10704
10778
|
evt: t
|
|
10705
10779
|
}), a.delay && (!a.delayOnTouchOnly || n) && (!this.nativeDraggable || !(Pn || pt))) {
|
|
10706
10780
|
if (B.eventCanceled) {
|
|
10707
10781
|
this._onDrop();
|
|
10708
10782
|
return;
|
|
10709
10783
|
}
|
|
10710
|
-
|
|
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);
|
|
10711
10785
|
} else
|
|
10712
10786
|
u();
|
|
10713
10787
|
}
|
|
@@ -10717,14 +10791,14 @@ B.prototype = /** @lends Sortable.prototype */
|
|
|
10717
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();
|
|
10718
10792
|
},
|
|
10719
10793
|
_disableDelayedDrag: function() {
|
|
10720
|
-
|
|
10794
|
+
M && Qi(M), clearTimeout(this._dragStartTimer), this._disableDelayedDragEvents();
|
|
10721
10795
|
},
|
|
10722
10796
|
_disableDelayedDragEvents: function() {
|
|
10723
10797
|
var t = this.el.ownerDocument;
|
|
10724
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);
|
|
10725
10799
|
},
|
|
10726
10800
|
_triggerDragStart: function(t, n) {
|
|
10727
|
-
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));
|
|
10728
10802
|
try {
|
|
10729
10803
|
document.selection ? oi(function() {
|
|
10730
10804
|
document.selection.empty();
|
|
@@ -10733,12 +10807,12 @@ B.prototype = /** @lends Sortable.prototype */
|
|
|
10733
10807
|
}
|
|
10734
10808
|
},
|
|
10735
10809
|
_dragStarted: function(t, n) {
|
|
10736
|
-
if (Kt = !1, ce &&
|
|
10810
|
+
if (Kt = !1, ce && M) {
|
|
10737
10811
|
Le("dragStarted", this, {
|
|
10738
10812
|
evt: n
|
|
10739
|
-
}), this.nativeDraggable &&
|
|
10813
|
+
}), this.nativeDraggable && ne(document, "dragover", t1);
|
|
10740
10814
|
var r = this.options;
|
|
10741
|
-
!t && Ue(
|
|
10815
|
+
!t && Ue(M, r.dragClass, !1), Ue(M, r.ghostClass, !0), B.active = this, t && this._appendGhost(), Fe({
|
|
10742
10816
|
sortable: this,
|
|
10743
10817
|
name: "start",
|
|
10744
10818
|
originalEvent: n
|
|
@@ -10751,7 +10825,7 @@ B.prototype = /** @lends Sortable.prototype */
|
|
|
10751
10825
|
this._lastX = et.clientX, this._lastY = et.clientY, Zl();
|
|
10752
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); )
|
|
10753
10827
|
n = t;
|
|
10754
|
-
if (
|
|
10828
|
+
if (M.parentNode[Be]._isOutsideThisEl(t), n)
|
|
10755
10829
|
do {
|
|
10756
10830
|
if (n[Be]) {
|
|
10757
10831
|
var r = void 0;
|
|
@@ -10770,13 +10844,13 @@ B.prototype = /** @lends Sortable.prototype */
|
|
|
10770
10844
|
},
|
|
10771
10845
|
_onTouchMove: function(t) {
|
|
10772
10846
|
if (Dt) {
|
|
10773
|
-
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);
|
|
10774
10848
|
if (!B.active && !Kt) {
|
|
10775
10849
|
if (r && Math.max(Math.abs(i.clientX - this._lastX), Math.abs(i.clientY - this._lastY)) < r)
|
|
10776
10850
|
return;
|
|
10777
10851
|
this._onDragStart(t, !0);
|
|
10778
10852
|
}
|
|
10779
|
-
if (
|
|
10853
|
+
if (K) {
|
|
10780
10854
|
a ? (a.e += c - (Zi || 0), a.f += p - (Ji || 0)) : a = {
|
|
10781
10855
|
a: 1,
|
|
10782
10856
|
b: 0,
|
|
@@ -10786,20 +10860,20 @@ B.prototype = /** @lends Sortable.prototype */
|
|
|
10786
10860
|
f: p
|
|
10787
10861
|
};
|
|
10788
10862
|
var g = "matrix(".concat(a.a, ",").concat(a.b, ",").concat(a.c, ",").concat(a.d, ",").concat(a.e, ",").concat(a.f, ")");
|
|
10789
|
-
R(
|
|
10863
|
+
R(K, "webkitTransform", g), R(K, "mozTransform", g), R(K, "msTransform", g), R(K, "transform", g), Zi = c, Ji = p, et = i;
|
|
10790
10864
|
}
|
|
10791
10865
|
t.cancelable && t.preventDefault();
|
|
10792
10866
|
}
|
|
10793
10867
|
},
|
|
10794
10868
|
_appendGhost: function() {
|
|
10795
|
-
if (!
|
|
10796
|
-
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;
|
|
10797
10871
|
if (ei) {
|
|
10798
10872
|
for (Ee = t; R(Ee, "position") === "static" && R(Ee, "transform") === "none" && Ee !== document; )
|
|
10799
10873
|
Ee = Ee.parentNode;
|
|
10800
10874
|
Ee !== document.body && Ee !== document.documentElement ? (Ee === document && (Ee = ot()), n.top += Ee.scrollTop, n.left += Ee.scrollLeft) : Ee = ot(), Xi = Ws(Ee);
|
|
10801
10875
|
}
|
|
10802
|
-
|
|
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 + "%");
|
|
10803
10877
|
}
|
|
10804
10878
|
},
|
|
10805
10879
|
_onDragStart: function(t, n) {
|
|
@@ -10810,12 +10884,12 @@ B.prototype = /** @lends Sortable.prototype */
|
|
|
10810
10884
|
this._onDrop();
|
|
10811
10885
|
return;
|
|
10812
10886
|
}
|
|
10813
|
-
Le("setupClone", this), B.eventCanceled || (he = Wl(
|
|
10814
|
-
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({
|
|
10815
10889
|
sortable: r,
|
|
10816
10890
|
name: "clone"
|
|
10817
10891
|
}));
|
|
10818
|
-
}), !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");
|
|
10819
10893
|
},
|
|
10820
10894
|
// Returns true - if no further action is needed (either inserted or another condition)
|
|
10821
10895
|
_onDragOver: function(t) {
|
|
@@ -10833,25 +10907,25 @@ B.prototype = /** @lends Sortable.prototype */
|
|
|
10833
10907
|
canSort: p,
|
|
10834
10908
|
fromSortable: g,
|
|
10835
10909
|
target: r,
|
|
10836
|
-
completed:
|
|
10910
|
+
completed: D,
|
|
10837
10911
|
onMove: function(rt, Vt) {
|
|
10838
|
-
return ti(ce, n,
|
|
10912
|
+
return ti(ce, n, M, s, rt, be(rt), t, Vt);
|
|
10839
10913
|
},
|
|
10840
|
-
changed:
|
|
10914
|
+
changed: ee
|
|
10841
10915
|
}, Rt));
|
|
10842
10916
|
}
|
|
10843
|
-
function
|
|
10917
|
+
function H() {
|
|
10844
10918
|
j("dragOverAnimationCapture"), w.captureAnimationState(), w !== g && g.captureAnimationState();
|
|
10845
10919
|
}
|
|
10846
|
-
function
|
|
10920
|
+
function D(it) {
|
|
10847
10921
|
return j("dragOverCompleted", {
|
|
10848
10922
|
insertion: it
|
|
10849
|
-
}), 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() {
|
|
10850
10924
|
j("dragOverAnimationComplete"), w._ignoreWhileAnimating = null;
|
|
10851
|
-
}), 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;
|
|
10852
10926
|
}
|
|
10853
|
-
function
|
|
10854
|
-
je =
|
|
10927
|
+
function ee() {
|
|
10928
|
+
je = Ke(M), kt = Ke(M, l.draggable), Fe({
|
|
10855
10929
|
sortable: w,
|
|
10856
10930
|
name: "change",
|
|
10857
10931
|
toEl: n,
|
|
@@ -10862,47 +10936,47 @@ B.prototype = /** @lends Sortable.prototype */
|
|
|
10862
10936
|
}
|
|
10863
10937
|
if (t.preventDefault !== void 0 && t.cancelable && t.preventDefault(), r = lt(r, l.draggable, n, !0), j("dragOver"), B.eventCanceled)
|
|
10864
10938
|
return O;
|
|
10865
|
-
if (
|
|
10866
|
-
return
|
|
10867
|
-
if (_i = !1, f && !l.disabled && (c ? p || (a = me !== ce) : Se === this || (this.lastPutMode = Xn.checkPull(this, f,
|
|
10868
|
-
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)
|
|
10869
10943
|
return O;
|
|
10870
10944
|
if (a)
|
|
10871
|
-
return me = ce,
|
|
10872
|
-
var
|
|
10873
|
-
if (!
|
|
10874
|
-
if (
|
|
10875
|
-
return
|
|
10876
|
-
if (
|
|
10877
|
-
return
|
|
10878
|
-
} 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)) {
|
|
10879
10953
|
var ue = nn(n, 0, l, !0);
|
|
10880
|
-
if (ue ===
|
|
10881
|
-
return
|
|
10882
|
-
if (r = ue, i = be(r), ti(ce, n,
|
|
10883
|
-
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);
|
|
10884
10958
|
} else if (r.parentNode === n) {
|
|
10885
10959
|
i = be(r);
|
|
10886
|
-
var
|
|
10887
|
-
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);
|
|
10888
10962
|
var Oe;
|
|
10889
|
-
if (
|
|
10890
|
-
var Ce =
|
|
10963
|
+
if (W !== 0) {
|
|
10964
|
+
var Ce = Ke(M);
|
|
10891
10965
|
do
|
|
10892
|
-
Ce -=
|
|
10893
|
-
while (Oe && (R(Oe, "display") === "none" || Oe ===
|
|
10966
|
+
Ce -= W, Oe = me.children[Ce];
|
|
10967
|
+
while (Oe && (R(Oe, "display") === "none" || Oe === K));
|
|
10894
10968
|
}
|
|
10895
|
-
if (
|
|
10896
|
-
return
|
|
10897
|
-
Gt = r, En =
|
|
10969
|
+
if (W === 0 || Oe === r)
|
|
10970
|
+
return D(!1);
|
|
10971
|
+
Gt = r, En = W;
|
|
10898
10972
|
var Ne = r.nextElementSibling, Ve = !1;
|
|
10899
|
-
Ve =
|
|
10900
|
-
var yt = ti(ce, n,
|
|
10973
|
+
Ve = W === 1;
|
|
10974
|
+
var yt = ti(ce, n, M, s, r, i, t, Ve);
|
|
10901
10975
|
if (yt !== !1)
|
|
10902
|
-
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);
|
|
10903
10977
|
}
|
|
10904
|
-
if (n.contains(
|
|
10905
|
-
return
|
|
10978
|
+
if (n.contains(M))
|
|
10979
|
+
return D(!1);
|
|
10906
10980
|
}
|
|
10907
10981
|
return !1;
|
|
10908
10982
|
},
|
|
@@ -10916,13 +10990,13 @@ B.prototype = /** @lends Sortable.prototype */
|
|
|
10916
10990
|
},
|
|
10917
10991
|
_onDrop: function(t) {
|
|
10918
10992
|
var n = this.el, r = this.options;
|
|
10919
|
-
if (je =
|
|
10993
|
+
if (je = Ke(M), kt = Ke(M, r.draggable), Le("drop", this, {
|
|
10920
10994
|
evt: t
|
|
10921
|
-
}), me =
|
|
10995
|
+
}), me = M && M.parentNode, je = Ke(M), kt = Ke(M, r.draggable), B.eventCanceled) {
|
|
10922
10996
|
this._nulling();
|
|
10923
10997
|
return;
|
|
10924
10998
|
}
|
|
10925
|
-
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({
|
|
10926
11000
|
sortable: this,
|
|
10927
11001
|
name: "unchoose",
|
|
10928
11002
|
toEl: me,
|
|
@@ -10969,7 +11043,7 @@ B.prototype = /** @lends Sortable.prototype */
|
|
|
10969
11043
|
}), this.save()))), this._nulling();
|
|
10970
11044
|
},
|
|
10971
11045
|
_nulling: function() {
|
|
10972
|
-
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) {
|
|
10973
11047
|
t.checked = !0;
|
|
10974
11048
|
}), vi.length = Zi = Ji = 0;
|
|
10975
11049
|
},
|
|
@@ -10981,7 +11055,7 @@ B.prototype = /** @lends Sortable.prototype */
|
|
|
10981
11055
|
break;
|
|
10982
11056
|
case "dragenter":
|
|
10983
11057
|
case "dragover":
|
|
10984
|
-
|
|
11058
|
+
M && (this._onDragOver(t), n1(t));
|
|
10985
11059
|
break;
|
|
10986
11060
|
case "selectstart":
|
|
10987
11061
|
t.preventDefault();
|
|
@@ -10994,7 +11068,7 @@ B.prototype = /** @lends Sortable.prototype */
|
|
|
10994
11068
|
*/
|
|
10995
11069
|
toArray: function() {
|
|
10996
11070
|
for (var t = [], n, r = this.el.children, s = 0, i = r.length, a = this.options; s < i; s++)
|
|
10997
|
-
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));
|
|
10998
11072
|
return t;
|
|
10999
11073
|
},
|
|
11000
11074
|
/**
|
|
@@ -11064,11 +11138,11 @@ B.prototype = /** @lends Sortable.prototype */
|
|
|
11064
11138
|
if (wt) {
|
|
11065
11139
|
if (Le("showClone", this), B.eventCanceled)
|
|
11066
11140
|
return;
|
|
11067
|
-
|
|
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;
|
|
11068
11142
|
}
|
|
11069
11143
|
}
|
|
11070
11144
|
};
|
|
11071
|
-
function
|
|
11145
|
+
function n1(e) {
|
|
11072
11146
|
e.dataTransfer && (e.dataTransfer.dropEffect = "move"), e.cancelable && e.preventDefault();
|
|
11073
11147
|
}
|
|
11074
11148
|
function ti(e, t, n, r, s, i, a, l) {
|
|
@@ -11081,18 +11155,18 @@ function ti(e, t, n, r, s, i, a, l) {
|
|
|
11081
11155
|
function Qi(e) {
|
|
11082
11156
|
e.draggable = !1;
|
|
11083
11157
|
}
|
|
11084
|
-
function
|
|
11158
|
+
function i1() {
|
|
11085
11159
|
xr = !1;
|
|
11086
11160
|
}
|
|
11087
|
-
function
|
|
11161
|
+
function r1(e, t, n) {
|
|
11088
11162
|
var r = be(nn(n.el, 0, n.options, !0)), s = 10;
|
|
11089
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;
|
|
11090
11164
|
}
|
|
11091
|
-
function
|
|
11165
|
+
function s1(e, t, n) {
|
|
11092
11166
|
var r = be(Hr(n.el, n.options.draggable)), s = 10;
|
|
11093
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;
|
|
11094
11168
|
}
|
|
11095
|
-
function
|
|
11169
|
+
function a1(e, t, n, r, s, i, a, l) {
|
|
11096
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;
|
|
11097
11171
|
if (!a) {
|
|
11098
11172
|
if (l && li < f * s) {
|
|
@@ -11101,19 +11175,19 @@ function s1(e, t, n, r, s, i, a, l) {
|
|
|
11101
11175
|
else if (En === 1 ? u < c + li : u > p - li)
|
|
11102
11176
|
return -En;
|
|
11103
11177
|
} else if (u > c + f * (1 - s) / 2 && u < p - f * (1 - s) / 2)
|
|
11104
|
-
return
|
|
11178
|
+
return l1(t);
|
|
11105
11179
|
}
|
|
11106
11180
|
return g = g || a, g && (u < c + f * i / 2 || u > p - f * i / 2) ? u > c + f / 2 ? 1 : -1 : 0;
|
|
11107
11181
|
}
|
|
11108
|
-
function a1(e) {
|
|
11109
|
-
return We(D) < We(e) ? 1 : -1;
|
|
11110
|
-
}
|
|
11111
11182
|
function l1(e) {
|
|
11183
|
+
return Ke(M) < Ke(e) ? 1 : -1;
|
|
11184
|
+
}
|
|
11185
|
+
function o1(e) {
|
|
11112
11186
|
for (var t = e.tagName + e.className + e.src + e.href + e.textContent, n = t.length, r = 0; n--; )
|
|
11113
11187
|
r += t.charCodeAt(n);
|
|
11114
11188
|
return r.toString(36);
|
|
11115
11189
|
}
|
|
11116
|
-
function
|
|
11190
|
+
function u1(e) {
|
|
11117
11191
|
vi.length = 0;
|
|
11118
11192
|
for (var t = e.getElementsByTagName("input"), n = t.length; n--; ) {
|
|
11119
11193
|
var r = t[n];
|
|
@@ -11126,23 +11200,23 @@ function oi(e) {
|
|
|
11126
11200
|
function wr(e) {
|
|
11127
11201
|
return clearTimeout(e);
|
|
11128
11202
|
}
|
|
11129
|
-
Fi &&
|
|
11203
|
+
Fi && ne(document, "touchmove", function(e) {
|
|
11130
11204
|
(B.active || Kt) && e.cancelable && e.preventDefault();
|
|
11131
11205
|
});
|
|
11132
11206
|
B.utils = {
|
|
11133
|
-
on:
|
|
11207
|
+
on: ne,
|
|
11134
11208
|
off: X,
|
|
11135
11209
|
css: R,
|
|
11136
11210
|
find: zl,
|
|
11137
11211
|
is: function(t, n) {
|
|
11138
11212
|
return !!lt(t, n, t, !1);
|
|
11139
11213
|
},
|
|
11140
|
-
extend:
|
|
11214
|
+
extend: qv,
|
|
11141
11215
|
throttle: Hl,
|
|
11142
11216
|
closest: lt,
|
|
11143
11217
|
toggleClass: Ue,
|
|
11144
11218
|
clone: Wl,
|
|
11145
|
-
index:
|
|
11219
|
+
index: Ke,
|
|
11146
11220
|
nextTick: oi,
|
|
11147
11221
|
cancelNextTick: wr,
|
|
11148
11222
|
detectDirection: Kl,
|
|
@@ -11163,9 +11237,9 @@ B.mount = function() {
|
|
|
11163
11237
|
B.create = function(e, t) {
|
|
11164
11238
|
return new B(e, t);
|
|
11165
11239
|
};
|
|
11166
|
-
B.version =
|
|
11240
|
+
B.version = Rv;
|
|
11167
11241
|
var ye = [], wn, Sr, Tr = !1, er, tr, bi, Sn;
|
|
11168
|
-
function
|
|
11242
|
+
function d1() {
|
|
11169
11243
|
function e() {
|
|
11170
11244
|
this.defaults = {
|
|
11171
11245
|
scroll: !0,
|
|
@@ -11180,14 +11254,14 @@ function u1() {
|
|
|
11180
11254
|
return e.prototype = {
|
|
11181
11255
|
dragStarted: function(n) {
|
|
11182
11256
|
var r = n.originalEvent;
|
|
11183
|
-
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);
|
|
11184
11258
|
},
|
|
11185
11259
|
dragOverCompleted: function(n) {
|
|
11186
11260
|
var r = n.originalEvent;
|
|
11187
11261
|
!this.options.dragOverBubble && !r.rootEl && this._handleAutoScroll(r);
|
|
11188
11262
|
},
|
|
11189
11263
|
drop: function() {
|
|
11190
|
-
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();
|
|
11191
11265
|
},
|
|
11192
11266
|
nulling: function() {
|
|
11193
11267
|
bi = Sr = wn = Tr = Sn = er = tr = null, ye.length = 0;
|
|
@@ -11231,9 +11305,9 @@ var nr = Hl(function(e, t, n, r) {
|
|
|
11231
11305
|
Sr !== n && (Sr = n, ui(), wn = t.scroll, c = t.scrollFn, wn === !0 && (wn = St(n, !0)));
|
|
11232
11306
|
var p = 0, g = wn;
|
|
11233
11307
|
do {
|
|
11234
|
-
var b = g, w = be(b), O = w.top, j = w.bottom,
|
|
11235
|
-
b === u ? (ue =
|
|
11236
|
-
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);
|
|
11237
11311
|
if (!ye[p])
|
|
11238
11312
|
for (var Ce = 0; Ce <= p; Ce++)
|
|
11239
11313
|
ye[Ce] || (ye[Ce] = {});
|
|
@@ -11290,7 +11364,7 @@ Wr.prototype = {
|
|
|
11290
11364
|
ht(Wr, {
|
|
11291
11365
|
pluginName: "removeOnSpill"
|
|
11292
11366
|
});
|
|
11293
|
-
B.mount(new
|
|
11367
|
+
B.mount(new d1());
|
|
11294
11368
|
B.mount(Wr, qr);
|
|
11295
11369
|
function ir(e) {
|
|
11296
11370
|
e.parentElement !== null && e.parentElement.removeChild(e);
|
|
@@ -11299,25 +11373,25 @@ function Js(e, t, n) {
|
|
|
11299
11373
|
const r = n === 0 ? e.children[0] : e.children[n - 1].nextSibling;
|
|
11300
11374
|
e.insertBefore(t, r);
|
|
11301
11375
|
}
|
|
11302
|
-
function
|
|
11376
|
+
function c1() {
|
|
11303
11377
|
return typeof window < "u" ? window.console : global.console;
|
|
11304
11378
|
}
|
|
11305
|
-
const
|
|
11306
|
-
function
|
|
11379
|
+
const f1 = c1();
|
|
11380
|
+
function m1(e) {
|
|
11307
11381
|
const t = /* @__PURE__ */ Object.create(null);
|
|
11308
11382
|
return function(r) {
|
|
11309
11383
|
return t[r] || (t[r] = e(r));
|
|
11310
11384
|
};
|
|
11311
11385
|
}
|
|
11312
|
-
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 = {
|
|
11313
11387
|
manage: to,
|
|
11314
11388
|
manageAndEmit: Ql,
|
|
11315
11389
|
emit: eo
|
|
11316
11390
|
};
|
|
11317
|
-
function
|
|
11318
|
-
return
|
|
11391
|
+
function _1(e) {
|
|
11392
|
+
return y1.indexOf(e) !== -1;
|
|
11319
11393
|
}
|
|
11320
|
-
const
|
|
11394
|
+
const g1 = [
|
|
11321
11395
|
"a",
|
|
11322
11396
|
"abbr",
|
|
11323
11397
|
"address",
|
|
@@ -11436,10 +11510,10 @@ const _1 = [
|
|
|
11436
11510
|
"video",
|
|
11437
11511
|
"wbr"
|
|
11438
11512
|
];
|
|
11439
|
-
function g1(e) {
|
|
11440
|
-
return _1.includes(e);
|
|
11441
|
-
}
|
|
11442
11513
|
function v1(e) {
|
|
11514
|
+
return g1.includes(e);
|
|
11515
|
+
}
|
|
11516
|
+
function b1(e) {
|
|
11443
11517
|
return ["transition-group", "TransitionGroup"].includes(e);
|
|
11444
11518
|
}
|
|
11445
11519
|
function no(e) {
|
|
@@ -11448,7 +11522,7 @@ function no(e) {
|
|
|
11448
11522
|
function io(e) {
|
|
11449
11523
|
return e.reduce((t, [n, r]) => (t[n] = r, t), {});
|
|
11450
11524
|
}
|
|
11451
|
-
function
|
|
11525
|
+
function k1({ $attrs: e, componentData: t = {} }) {
|
|
11452
11526
|
return {
|
|
11453
11527
|
...io(
|
|
11454
11528
|
Object.entries(e).filter(([r, s]) => no(r))
|
|
@@ -11456,7 +11530,7 @@ function b1({ $attrs: e, componentData: t = {} }) {
|
|
|
11456
11530
|
...t
|
|
11457
11531
|
};
|
|
11458
11532
|
}
|
|
11459
|
-
function
|
|
11533
|
+
function x1({ $attrs: e, callBackBuilder: t }) {
|
|
11460
11534
|
const n = io(ro(e));
|
|
11461
11535
|
Object.entries(t).forEach(([s, i]) => {
|
|
11462
11536
|
Or[s].forEach((a) => {
|
|
@@ -11470,10 +11544,10 @@ function k1({ $attrs: e, callBackBuilder: t }) {
|
|
|
11470
11544
|
};
|
|
11471
11545
|
}
|
|
11472
11546
|
function ro(e) {
|
|
11473
|
-
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));
|
|
11474
11548
|
}
|
|
11475
|
-
const Xs = ({ el: e }) => e,
|
|
11476
|
-
class
|
|
11549
|
+
const Xs = ({ el: e }) => e, w1 = (e, t) => e.__draggable_context = t, Qs = (e) => e.__draggable_context;
|
|
11550
|
+
class S1 {
|
|
11477
11551
|
constructor({
|
|
11478
11552
|
nodes: { header: t, default: n, footer: r },
|
|
11479
11553
|
root: s,
|
|
@@ -11491,7 +11565,7 @@ class w1 {
|
|
|
11491
11565
|
updated() {
|
|
11492
11566
|
const { defaultNodes: t, realList: n } = this;
|
|
11493
11567
|
t.forEach((r, s) => {
|
|
11494
|
-
|
|
11568
|
+
w1(Xs(r), {
|
|
11495
11569
|
element: n[s],
|
|
11496
11570
|
index: s
|
|
11497
11571
|
});
|
|
@@ -11515,13 +11589,13 @@ class w1 {
|
|
|
11515
11589
|
return t < f ? 0 : s;
|
|
11516
11590
|
}
|
|
11517
11591
|
}
|
|
11518
|
-
function
|
|
11592
|
+
function T1(e, t) {
|
|
11519
11593
|
const n = e[t];
|
|
11520
11594
|
return n ? n() : [];
|
|
11521
11595
|
}
|
|
11522
|
-
function
|
|
11596
|
+
function O1({ $slots: e, realList: t, getKey: n }) {
|
|
11523
11597
|
const r = t || [], [s, i] = ["header", "footer"].map(
|
|
11524
|
-
(u) =>
|
|
11598
|
+
(u) => T1(e, u)
|
|
11525
11599
|
), { item: a } = e;
|
|
11526
11600
|
if (!a)
|
|
11527
11601
|
throw new Error("draggable element must have an item slot");
|
|
@@ -11536,17 +11610,17 @@ function T1({ $slots: e, realList: t, getKey: n }) {
|
|
|
11536
11610
|
default: l
|
|
11537
11611
|
};
|
|
11538
11612
|
}
|
|
11539
|
-
function
|
|
11540
|
-
const t =
|
|
11613
|
+
function C1(e) {
|
|
11614
|
+
const t = b1(e), n = !v1(e) && !t;
|
|
11541
11615
|
return {
|
|
11542
11616
|
transition: t,
|
|
11543
11617
|
externalComponent: n,
|
|
11544
11618
|
tag: n ? y(e) : t ? Ko : e
|
|
11545
11619
|
};
|
|
11546
11620
|
}
|
|
11547
|
-
function
|
|
11548
|
-
const s =
|
|
11549
|
-
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 });
|
|
11550
11624
|
}
|
|
11551
11625
|
function so(e, t) {
|
|
11552
11626
|
Sa(() => this.$emit(e.toLowerCase(), t));
|
|
@@ -11557,14 +11631,14 @@ function ao(e) {
|
|
|
11557
11631
|
return this[`onDrag${e}`](t, n);
|
|
11558
11632
|
};
|
|
11559
11633
|
}
|
|
11560
|
-
function
|
|
11634
|
+
function E1(e) {
|
|
11561
11635
|
const t = ao.call(this, e);
|
|
11562
11636
|
return (n, r) => {
|
|
11563
11637
|
t.call(this, n, r), so.call(this, e, n);
|
|
11564
11638
|
};
|
|
11565
11639
|
}
|
|
11566
11640
|
let rr = null;
|
|
11567
|
-
const
|
|
11641
|
+
const A1 = {
|
|
11568
11642
|
list: {
|
|
11569
11643
|
type: Array,
|
|
11570
11644
|
required: !1,
|
|
@@ -11596,15 +11670,15 @@ const E1 = {
|
|
|
11596
11670
|
required: !1,
|
|
11597
11671
|
default: null
|
|
11598
11672
|
}
|
|
11599
|
-
},
|
|
11673
|
+
}, M1 = [
|
|
11600
11674
|
"update:modelValue",
|
|
11601
11675
|
"change",
|
|
11602
11676
|
...[...Or.manageAndEmit, ...Or.emit].map((e) => e.toLowerCase())
|
|
11603
11677
|
], lo = Vr({
|
|
11604
11678
|
name: "draggable",
|
|
11605
11679
|
inheritAttrs: !1,
|
|
11606
|
-
props:
|
|
11607
|
-
emits:
|
|
11680
|
+
props: A1,
|
|
11681
|
+
emits: M1,
|
|
11608
11682
|
data() {
|
|
11609
11683
|
return {
|
|
11610
11684
|
error: !1
|
|
@@ -11613,21 +11687,21 @@ const E1 = {
|
|
|
11613
11687
|
render() {
|
|
11614
11688
|
try {
|
|
11615
11689
|
this.error = !1;
|
|
11616
|
-
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({
|
|
11617
11691
|
$slots: e,
|
|
11618
11692
|
tag: n,
|
|
11619
11693
|
realList: s,
|
|
11620
11694
|
getKey: i
|
|
11621
11695
|
});
|
|
11622
11696
|
this.componentStructure = a;
|
|
11623
|
-
const l =
|
|
11697
|
+
const l = k1({ $attrs: t, componentData: r });
|
|
11624
11698
|
return a.render(mr, l);
|
|
11625
11699
|
} catch (e) {
|
|
11626
11700
|
return this.error = !0, mr("pre", { style: { color: "red" } }, e.stack);
|
|
11627
11701
|
}
|
|
11628
11702
|
},
|
|
11629
11703
|
created() {
|
|
11630
|
-
this.list !== null && this.modelValue !== null &&
|
|
11704
|
+
this.list !== null && this.modelValue !== null && f1.error(
|
|
11631
11705
|
"modelValue and list props are mutually exclusive! Please set one or another."
|
|
11632
11706
|
);
|
|
11633
11707
|
},
|
|
@@ -11636,10 +11710,10 @@ const E1 = {
|
|
|
11636
11710
|
return;
|
|
11637
11711
|
const { $attrs: e, $el: t, componentStructure: n } = this;
|
|
11638
11712
|
n.updated();
|
|
11639
|
-
const r =
|
|
11713
|
+
const r = x1({
|
|
11640
11714
|
$attrs: e,
|
|
11641
11715
|
callBackBuilder: {
|
|
11642
|
-
manageAndEmit: (i) =>
|
|
11716
|
+
manageAndEmit: (i) => E1.call(this, i),
|
|
11643
11717
|
emit: (i) => so.bind(this, i),
|
|
11644
11718
|
manage: (i) => ao.call(this, i)
|
|
11645
11719
|
}
|
|
@@ -11775,7 +11849,7 @@ function ea(e, t) {
|
|
|
11775
11849
|
let n = e.title.toUpperCase(), r = t.title.toUpperCase();
|
|
11776
11850
|
return n < r ? -1 : n > r ? 1 : 0;
|
|
11777
11851
|
}
|
|
11778
|
-
const
|
|
11852
|
+
const D1 = {
|
|
11779
11853
|
components: {
|
|
11780
11854
|
Item: jl,
|
|
11781
11855
|
draggable: lo
|
|
@@ -11785,7 +11859,7 @@ const M1 = {
|
|
|
11785
11859
|
type: [Object, Array]
|
|
11786
11860
|
}
|
|
11787
11861
|
},
|
|
11788
|
-
mixins: [
|
|
11862
|
+
mixins: [ie],
|
|
11789
11863
|
async created() {
|
|
11790
11864
|
this.glossary = await this.$sdk.content.glossary({ hash: !0 }), this.value = this.cleanInput(this.value, !0), this.dispatch();
|
|
11791
11865
|
},
|
|
@@ -11904,27 +11978,27 @@ const M1 = {
|
|
|
11904
11978
|
return this.model ? this.showList ? "Click to select" : this.model.title || this.model.name || this.model.firstName : "Click to select";
|
|
11905
11979
|
}
|
|
11906
11980
|
}
|
|
11907
|
-
},
|
|
11981
|
+
}, I1 = {
|
|
11908
11982
|
key: 0,
|
|
11909
11983
|
class: "ux-field-title"
|
|
11910
|
-
},
|
|
11984
|
+
}, F1 = {
|
|
11911
11985
|
key: 0,
|
|
11912
11986
|
class: "ux-required-marker"
|
|
11913
|
-
},
|
|
11987
|
+
}, $1 = {
|
|
11914
11988
|
key: 1,
|
|
11915
11989
|
class: "ux-field-description"
|
|
11916
|
-
},
|
|
11990
|
+
}, N1 = {
|
|
11917
11991
|
key: 1,
|
|
11918
11992
|
class: "items"
|
|
11919
11993
|
};
|
|
11920
|
-
function
|
|
11994
|
+
function L1(e, t, n, r, s, i) {
|
|
11921
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");
|
|
11922
11996
|
return o(), d(S, null, [
|
|
11923
|
-
e.showLabel ? (o(), d("label",
|
|
11997
|
+
e.showLabel ? (o(), d("label", I1, [
|
|
11924
11998
|
T(v(e.label) + " ", 1),
|
|
11925
|
-
e.required ? (o(), d("span",
|
|
11999
|
+
e.required ? (o(), d("span", F1, "*")) : _("", !0)
|
|
11926
12000
|
])) : _("", !0),
|
|
11927
|
-
e.showDescription ? (o(), d("div",
|
|
12001
|
+
e.showDescription ? (o(), d("div", $1, v(e.description), 1)) : _("", !0),
|
|
11928
12002
|
i.showList ? (o(), d(S, { key: 2 }, [
|
|
11929
12003
|
e.multiValue ? (o(), d(S, { key: 0 }, [
|
|
11930
12004
|
e.model && e.model.length ? (o(), k(f, {
|
|
@@ -11977,7 +12051,7 @@ function N1(e, t, n, r, s, i) {
|
|
|
11977
12051
|
]),
|
|
11978
12052
|
_: 1
|
|
11979
12053
|
}, 8, ["modelValue"])) : _("", !0)
|
|
11980
|
-
], 64)) : e.model ? (o(), d("div",
|
|
12054
|
+
], 64)) : e.model ? (o(), d("div", N1, [
|
|
11981
12055
|
m(u, { item: e.model }, {
|
|
11982
12056
|
actions: h(() => [
|
|
11983
12057
|
m(l, {
|
|
@@ -12070,11 +12144,11 @@ function N1(e, t, n, r, s, i) {
|
|
|
12070
12144
|
})) : _("", !0)
|
|
12071
12145
|
], 64);
|
|
12072
12146
|
}
|
|
12073
|
-
const oo = /* @__PURE__ */ C(
|
|
12074
|
-
function
|
|
12147
|
+
const oo = /* @__PURE__ */ C(D1, [["render", L1], ["__scopeId", "data-v-406dd647"]]);
|
|
12148
|
+
function P1(e) {
|
|
12075
12149
|
return e === void 0 || typeof e > "u" || e === null || String(e) === "null" || String(e) === "undefined";
|
|
12076
12150
|
}
|
|
12077
|
-
const
|
|
12151
|
+
const U1 = {
|
|
12078
12152
|
props: {
|
|
12079
12153
|
title: {
|
|
12080
12154
|
type: String
|
|
@@ -12083,7 +12157,7 @@ const P1 = {
|
|
|
12083
12157
|
// type: [Object, Array],
|
|
12084
12158
|
}
|
|
12085
12159
|
},
|
|
12086
|
-
mixins: [
|
|
12160
|
+
mixins: [ie],
|
|
12087
12161
|
async created() {
|
|
12088
12162
|
this.model = this.model;
|
|
12089
12163
|
var e = await this.$sdk.content.glossary(), t = e;
|
|
@@ -12108,7 +12182,7 @@ const P1 = {
|
|
|
12108
12182
|
methods: {
|
|
12109
12183
|
cleanOutput(e) {
|
|
12110
12184
|
var t = this;
|
|
12111
|
-
return
|
|
12185
|
+
return P1(e) ? t.multiValue ? e = [] : e = void 0 : t.multiValue ? e = (e || []).filter(Boolean).map(function(n) {
|
|
12112
12186
|
return t.getValue(n);
|
|
12113
12187
|
}) : e = t.getValue(e), e;
|
|
12114
12188
|
},
|
|
@@ -12148,34 +12222,34 @@ const P1 = {
|
|
|
12148
12222
|
return this.types;
|
|
12149
12223
|
}
|
|
12150
12224
|
}
|
|
12151
|
-
},
|
|
12225
|
+
}, j1 = {
|
|
12152
12226
|
key: 0,
|
|
12153
12227
|
class: "ux-field-title"
|
|
12154
|
-
},
|
|
12228
|
+
}, R1 = {
|
|
12155
12229
|
key: 0,
|
|
12156
12230
|
class: "ux-required-marker"
|
|
12157
|
-
},
|
|
12231
|
+
}, B1 = {
|
|
12158
12232
|
key: 1,
|
|
12159
12233
|
class: "ux-field-description"
|
|
12160
|
-
},
|
|
12234
|
+
}, z1 = {
|
|
12161
12235
|
key: 2,
|
|
12162
12236
|
class: "ui-select-button"
|
|
12163
|
-
},
|
|
12237
|
+
}, H1 = ["multiple"], q1 = {
|
|
12164
12238
|
key: 0,
|
|
12165
12239
|
value: ""
|
|
12166
|
-
},
|
|
12167
|
-
function
|
|
12240
|
+
}, W1 = ["value"];
|
|
12241
|
+
function G1(e, t, n, r, s, i) {
|
|
12168
12242
|
const a = y("ux-button");
|
|
12169
12243
|
return o(), d("div", {
|
|
12170
12244
|
class: L(["native-select", i.classes])
|
|
12171
12245
|
}, [
|
|
12172
|
-
e.showLabel ? (o(), d("label",
|
|
12246
|
+
e.showLabel ? (o(), d("label", j1, [
|
|
12173
12247
|
T(v(e.label) + " ", 1),
|
|
12174
|
-
e.required ? (o(), d("span",
|
|
12248
|
+
e.required ? (o(), d("span", R1, "*")) : _("", !0)
|
|
12175
12249
|
])) : _("", !0),
|
|
12176
|
-
e.showDescription ? (o(), d("div",
|
|
12177
|
-
e.singleValue ? (o(), d("div",
|
|
12178
|
-
|
|
12250
|
+
e.showDescription ? (o(), d("div", B1, v(e.description), 1)) : _("", !0),
|
|
12251
|
+
e.singleValue ? (o(), d("div", z1, [
|
|
12252
|
+
q(e.$slots, "default", {}, () => [
|
|
12179
12253
|
m(a, { tag: "div" }, {
|
|
12180
12254
|
default: h(() => [
|
|
12181
12255
|
T(v(i.summary), 1)
|
|
@@ -12184,22 +12258,22 @@ function W1(e, t, n, r, s, i) {
|
|
|
12184
12258
|
})
|
|
12185
12259
|
], !0)
|
|
12186
12260
|
])) : _("", !0),
|
|
12187
|
-
|
|
12261
|
+
Y(x("select", {
|
|
12188
12262
|
onFocus: t[0] || (t[0] = (...l) => e.touch && e.touch(...l)),
|
|
12189
12263
|
multiple: e.multiValue,
|
|
12190
12264
|
"onUpdate:modelValue": t[1] || (t[1] = (l) => e.model = l)
|
|
12191
12265
|
}, [
|
|
12192
|
-
e.singleValue && !e.minimum ? (o(), d("option",
|
|
12266
|
+
e.singleValue && !e.minimum ? (o(), d("option", q1, "None")) : _("", !0),
|
|
12193
12267
|
(o(!0), d(S, null, F(i.selectableOptions, (l) => (o(), d("option", {
|
|
12194
12268
|
value: l.value
|
|
12195
|
-
}, v(l.title), 9,
|
|
12196
|
-
], 40,
|
|
12269
|
+
}, v(l.title), 9, W1))), 256))
|
|
12270
|
+
], 40, H1), [
|
|
12197
12271
|
[Tt, e.model]
|
|
12198
12272
|
])
|
|
12199
12273
|
], 2);
|
|
12200
12274
|
}
|
|
12201
|
-
const
|
|
12202
|
-
const
|
|
12275
|
+
const K1 = /* @__PURE__ */ C(U1, [["render", G1], ["__scopeId", "data-v-f99f589d"]]);
|
|
12276
|
+
const Y1 = {
|
|
12203
12277
|
components: {
|
|
12204
12278
|
UxCircle: zr
|
|
12205
12279
|
},
|
|
@@ -12249,13 +12323,13 @@ const K1 = {
|
|
|
12249
12323
|
return !this.hasChildren || this.item.collapsed;
|
|
12250
12324
|
}
|
|
12251
12325
|
}
|
|
12252
|
-
},
|
|
12326
|
+
}, Z1 = { class: "outer" }, J1 = {
|
|
12253
12327
|
key: 0,
|
|
12254
12328
|
class: "children"
|
|
12255
12329
|
};
|
|
12256
|
-
function
|
|
12330
|
+
function X1(e, t, n, r, s, i) {
|
|
12257
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);
|
|
12258
|
-
return o(), d("div",
|
|
12332
|
+
return o(), d("div", Z1, [
|
|
12259
12333
|
x("div", {
|
|
12260
12334
|
class: L(["scope-item", { selected: i.selected }]),
|
|
12261
12335
|
onClick: t[1] || (t[1] = (...g) => i.clicked && i.clicked(...g))
|
|
@@ -12322,7 +12396,7 @@ function J1(e, t, n, r, s, i) {
|
|
|
12322
12396
|
_: 1
|
|
12323
12397
|
})
|
|
12324
12398
|
], 2),
|
|
12325
|
-
i.expanded ? (o(), d("div",
|
|
12399
|
+
i.expanded ? (o(), d("div", J1, [
|
|
12326
12400
|
(o(!0), d(S, null, F(n.item.children, (g) => (o(), k(p, {
|
|
12327
12401
|
click: n.click,
|
|
12328
12402
|
item: g
|
|
@@ -12330,11 +12404,11 @@ function J1(e, t, n, r, s, i) {
|
|
|
12330
12404
|
])) : _("", !0)
|
|
12331
12405
|
]);
|
|
12332
12406
|
}
|
|
12333
|
-
const
|
|
12407
|
+
const Q1 = /* @__PURE__ */ C(Y1, [["render", X1], ["__scopeId", "data-v-33a8fd08"]]);
|
|
12334
12408
|
let sr;
|
|
12335
|
-
const
|
|
12409
|
+
const eb = {
|
|
12336
12410
|
components: {
|
|
12337
|
-
ScopeItem:
|
|
12411
|
+
ScopeItem: Q1
|
|
12338
12412
|
},
|
|
12339
12413
|
async created() {
|
|
12340
12414
|
this.glossary = await this.$sdk.content.glossary({ hash: !0 });
|
|
@@ -12352,6 +12426,10 @@ const Q1 = {
|
|
|
12352
12426
|
default() {
|
|
12353
12427
|
return [];
|
|
12354
12428
|
}
|
|
12429
|
+
},
|
|
12430
|
+
single: {
|
|
12431
|
+
type: Boolean,
|
|
12432
|
+
default: !1
|
|
12355
12433
|
}
|
|
12356
12434
|
},
|
|
12357
12435
|
data() {
|
|
@@ -12364,11 +12442,15 @@ const Q1 = {
|
|
|
12364
12442
|
},
|
|
12365
12443
|
methods: {
|
|
12366
12444
|
select(e) {
|
|
12445
|
+
if (this.single) {
|
|
12446
|
+
this.model = [e];
|
|
12447
|
+
return;
|
|
12448
|
+
}
|
|
12367
12449
|
this.isSelected(e) || this.model.push(e);
|
|
12368
12450
|
},
|
|
12369
12451
|
deselect(e) {
|
|
12370
12452
|
const t = this, n = t.$sdk.utils.id(e);
|
|
12371
|
-
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) {
|
|
12372
12454
|
return t.$sdk.utils.id(r) != n;
|
|
12373
12455
|
}));
|
|
12374
12456
|
},
|
|
@@ -12451,7 +12533,7 @@ const Q1 = {
|
|
|
12451
12533
|
}
|
|
12452
12534
|
}
|
|
12453
12535
|
};
|
|
12454
|
-
function
|
|
12536
|
+
function tb(e, t, n, r, s, i) {
|
|
12455
12537
|
const a = y("spinner"), l = y("scope-item");
|
|
12456
12538
|
return o(), d("div", {
|
|
12457
12539
|
class: L({ has: i.hasSelection })
|
|
@@ -12462,8 +12544,8 @@ function eb(e, t, n, r, s, i) {
|
|
|
12462
12544
|
}, null, 8, ["click", "item"]))), 256))
|
|
12463
12545
|
], 2);
|
|
12464
12546
|
}
|
|
12465
|
-
const
|
|
12466
|
-
const
|
|
12547
|
+
const nb = /* @__PURE__ */ C(eb, [["render", tb], ["__scopeId", "data-v-7fc51116"]]);
|
|
12548
|
+
const ib = {
|
|
12467
12549
|
components: {
|
|
12468
12550
|
UxCircle: zr
|
|
12469
12551
|
},
|
|
@@ -12486,6 +12568,14 @@ const nb = {
|
|
|
12486
12568
|
default() {
|
|
12487
12569
|
return [];
|
|
12488
12570
|
}
|
|
12571
|
+
},
|
|
12572
|
+
minimum: {
|
|
12573
|
+
type: Number,
|
|
12574
|
+
default: 0
|
|
12575
|
+
},
|
|
12576
|
+
maximum: {
|
|
12577
|
+
type: Number,
|
|
12578
|
+
default: 0
|
|
12489
12579
|
}
|
|
12490
12580
|
},
|
|
12491
12581
|
data() {
|
|
@@ -12502,7 +12592,8 @@ const nb = {
|
|
|
12502
12592
|
const e = this, t = await e.$sdk.selectScopes({
|
|
12503
12593
|
action: e.action,
|
|
12504
12594
|
type: e.type,
|
|
12505
|
-
model: e.model
|
|
12595
|
+
model: e.model,
|
|
12596
|
+
maximum: e.maximum
|
|
12506
12597
|
});
|
|
12507
12598
|
e.model = t;
|
|
12508
12599
|
}
|
|
@@ -12578,8 +12669,8 @@ const nb = {
|
|
|
12578
12669
|
immediate: !0
|
|
12579
12670
|
}
|
|
12580
12671
|
}
|
|
12581
|
-
},
|
|
12582
|
-
function
|
|
12672
|
+
}, rb = { class: "circles" };
|
|
12673
|
+
function sb(e, t, n, r, s, i) {
|
|
12583
12674
|
const a = y("ux-circle"), l = y("ux-button");
|
|
12584
12675
|
return o(), d("div", null, [
|
|
12585
12676
|
m(l, {
|
|
@@ -12588,7 +12679,7 @@ function rb(e, t, n, r, s, i) {
|
|
|
12588
12679
|
onClick: i.openSelection
|
|
12589
12680
|
}, {
|
|
12590
12681
|
default: h(() => [
|
|
12591
|
-
x("div",
|
|
12682
|
+
x("div", rb, [
|
|
12592
12683
|
(o(!0), d(S, null, F(s.model, (u) => (o(), k(a, { value: u }, null, 8, ["value"]))), 256))
|
|
12593
12684
|
]),
|
|
12594
12685
|
x("span", {
|
|
@@ -12599,13 +12690,13 @@ function rb(e, t, n, r, s, i) {
|
|
|
12599
12690
|
}, 8, ["size", "loading", "onClick"])
|
|
12600
12691
|
]);
|
|
12601
12692
|
}
|
|
12602
|
-
const
|
|
12603
|
-
function
|
|
12693
|
+
const ab = /* @__PURE__ */ C(ib, [["render", sb], ["__scopeId", "data-v-9af83f09"]]);
|
|
12694
|
+
function lb(e) {
|
|
12604
12695
|
return e === void 0 || typeof e > "u" || e === null || String(e) === "null" || String(e) === "undefined";
|
|
12605
12696
|
}
|
|
12606
|
-
const
|
|
12697
|
+
const ob = {
|
|
12607
12698
|
components: {
|
|
12608
|
-
ScopeSelectButton:
|
|
12699
|
+
ScopeSelectButton: ab
|
|
12609
12700
|
},
|
|
12610
12701
|
props: {
|
|
12611
12702
|
title: {
|
|
@@ -12613,9 +12704,17 @@ const lb = {
|
|
|
12613
12704
|
},
|
|
12614
12705
|
modelValue: {
|
|
12615
12706
|
// type: [Object, Array],
|
|
12707
|
+
},
|
|
12708
|
+
minimum: {
|
|
12709
|
+
type: Number,
|
|
12710
|
+
default: 0
|
|
12711
|
+
},
|
|
12712
|
+
maximum: {
|
|
12713
|
+
type: Number,
|
|
12714
|
+
default: 0
|
|
12616
12715
|
}
|
|
12617
12716
|
},
|
|
12618
|
-
mixins: [
|
|
12717
|
+
mixins: [ie],
|
|
12619
12718
|
async created() {
|
|
12620
12719
|
this.model = this.model;
|
|
12621
12720
|
var e = await this.$sdk.content.glossary(), t = e;
|
|
@@ -12638,7 +12737,7 @@ const lb = {
|
|
|
12638
12737
|
methods: {
|
|
12639
12738
|
cleanOutput(e) {
|
|
12640
12739
|
var t = this;
|
|
12641
|
-
return
|
|
12740
|
+
return lb(e) ? t.multiValue ? e = [] : e = void 0 : t.multiValue ? e = (e || []).filter(Boolean).map(function(n) {
|
|
12642
12741
|
return t.getValue(n);
|
|
12643
12742
|
}) : e = t.getValue(e), e;
|
|
12644
12743
|
},
|
|
@@ -12684,42 +12783,43 @@ const lb = {
|
|
|
12684
12783
|
return this.types;
|
|
12685
12784
|
}
|
|
12686
12785
|
}
|
|
12687
|
-
},
|
|
12786
|
+
}, ub = {
|
|
12688
12787
|
key: 0,
|
|
12689
12788
|
class: "ux-field-title"
|
|
12690
|
-
},
|
|
12789
|
+
}, db = {
|
|
12691
12790
|
key: 0,
|
|
12692
12791
|
class: "ux-required-marker"
|
|
12693
|
-
},
|
|
12792
|
+
}, cb = {
|
|
12694
12793
|
key: 1,
|
|
12695
12794
|
class: "ux-field-description"
|
|
12696
12795
|
};
|
|
12697
|
-
function
|
|
12796
|
+
function fb(e, t, n, r, s, i) {
|
|
12698
12797
|
const a = y("scope-select-button");
|
|
12699
12798
|
return o(), d("div", {
|
|
12700
12799
|
class: L(["scope-select", i.classes])
|
|
12701
12800
|
}, [
|
|
12702
|
-
e.showLabel ? (o(), d("label",
|
|
12801
|
+
e.showLabel ? (o(), d("label", ub, [
|
|
12703
12802
|
T(v(e.label) + " ", 1),
|
|
12704
|
-
e.required ? (o(), d("span",
|
|
12803
|
+
e.required ? (o(), d("span", db, "*")) : _("", !0)
|
|
12705
12804
|
])) : _("", !0),
|
|
12706
|
-
e.showDescription ? (o(), d("div",
|
|
12805
|
+
e.showDescription ? (o(), d("div", cb, v(e.description), 1)) : _("", !0),
|
|
12707
12806
|
m(a, {
|
|
12807
|
+
maximum: n.maximum,
|
|
12708
12808
|
type: i.contextReferenceType,
|
|
12709
12809
|
action: i.contextReferenceAction,
|
|
12710
12810
|
modelValue: e.model,
|
|
12711
12811
|
"onUpdate:modelValue": t[0] || (t[0] = (l) => e.model = l)
|
|
12712
|
-
}, null, 8, ["type", "action", "modelValue"])
|
|
12812
|
+
}, null, 8, ["maximum", "type", "action", "modelValue"])
|
|
12713
12813
|
], 2);
|
|
12714
12814
|
}
|
|
12715
|
-
const
|
|
12815
|
+
const uo = /* @__PURE__ */ C(ob, [["render", fb], ["__scopeId", "data-v-2d13e8a0"]]);
|
|
12716
12816
|
const mb = {
|
|
12717
12817
|
props: {
|
|
12718
12818
|
modelValue: {
|
|
12719
12819
|
type: [String, Array]
|
|
12720
12820
|
}
|
|
12721
12821
|
},
|
|
12722
|
-
mixins: [
|
|
12822
|
+
mixins: [ie],
|
|
12723
12823
|
methods: {
|
|
12724
12824
|
update(e, t) {
|
|
12725
12825
|
var n = this.format(e.target.value);
|
|
@@ -12813,7 +12913,7 @@ function wb(e, t, n, r, s, i) {
|
|
|
12813
12913
|
class: L(["ux-text-wrap", { prefixed: i.prefix, suffixed: i.suffix }])
|
|
12814
12914
|
}, [
|
|
12815
12915
|
i.prefix ? (o(), d("span", gb, v(i.prefix), 1)) : _("", !0),
|
|
12816
|
-
|
|
12916
|
+
Y((o(), d("input", {
|
|
12817
12917
|
class: "ux-field-focus ux-text-input-multiple",
|
|
12818
12918
|
ref_for: !0,
|
|
12819
12919
|
ref: "input",
|
|
@@ -12825,7 +12925,7 @@ function wb(e, t, n, r, s, i) {
|
|
|
12825
12925
|
onFocus: t[1] || (t[1] = (...g) => e.touch && e.touch(...g))
|
|
12826
12926
|
}, null, 40, vb)), [
|
|
12827
12927
|
[
|
|
12828
|
-
|
|
12928
|
+
ae,
|
|
12829
12929
|
i.proxy[p],
|
|
12830
12930
|
void 0,
|
|
12831
12931
|
{ lazy: !0 }
|
|
@@ -12876,7 +12976,7 @@ function wb(e, t, n, r, s, i) {
|
|
|
12876
12976
|
class: L(["ux-text-wrap", { prefixed: i.prefix, suffixed: i.suffix }])
|
|
12877
12977
|
}, [
|
|
12878
12978
|
i.prefix ? (o(), d("span", kb, v(i.prefix), 1)) : _("", !0),
|
|
12879
|
-
|
|
12979
|
+
Y((o(), d("input", {
|
|
12880
12980
|
class: "ux-field-focus ux-text-input-single",
|
|
12881
12981
|
ref: "input",
|
|
12882
12982
|
key: i.proxy,
|
|
@@ -12886,7 +12986,7 @@ function wb(e, t, n, r, s, i) {
|
|
|
12886
12986
|
"onUpdate:modelValue": t[5] || (t[5] = (c) => i.proxy = c)
|
|
12887
12987
|
}, null, 32)), [
|
|
12888
12988
|
[
|
|
12889
|
-
|
|
12989
|
+
ae,
|
|
12890
12990
|
i.proxy,
|
|
12891
12991
|
void 0,
|
|
12892
12992
|
{ lazy: !0 }
|
|
@@ -12896,7 +12996,7 @@ function wb(e, t, n, r, s, i) {
|
|
|
12896
12996
|
], 2))
|
|
12897
12997
|
], 64);
|
|
12898
12998
|
}
|
|
12899
|
-
const
|
|
12999
|
+
const co = /* @__PURE__ */ C(mb, [["render", wb], ["__scopeId", "data-v-8204c7cd"]]);
|
|
12900
13000
|
const Sb = {
|
|
12901
13001
|
props: {
|
|
12902
13002
|
modelValue: {
|
|
@@ -12909,7 +13009,7 @@ const Sb = {
|
|
|
12909
13009
|
unmaskedLookup: {}
|
|
12910
13010
|
};
|
|
12911
13011
|
},
|
|
12912
|
-
mixins: [
|
|
13012
|
+
mixins: [ie],
|
|
12913
13013
|
computed: {
|
|
12914
13014
|
copyable() {
|
|
12915
13015
|
return this.$sdk.global.copyText && this.field.copyable;
|
|
@@ -13027,7 +13127,7 @@ function Ub(e, t, n, r, s, i) {
|
|
|
13027
13127
|
default: h(() => [
|
|
13028
13128
|
x("div", Eb, [
|
|
13029
13129
|
e.prefix ? (o(), d("span", Ab, v(e.prefix), 1)) : _("", !0),
|
|
13030
|
-
i.lazy ?
|
|
13130
|
+
i.lazy ? Y((o(), d("input", {
|
|
13031
13131
|
key: 1,
|
|
13032
13132
|
type: i.getInput(p),
|
|
13033
13133
|
class: L([i.inputClasses, "ux-field-focus ux-text-input-multiple"]),
|
|
@@ -13045,7 +13145,7 @@ function Ub(e, t, n, r, s, i) {
|
|
|
13045
13145
|
{ lazy: !0 }
|
|
13046
13146
|
]
|
|
13047
13147
|
]) : _("", !0),
|
|
13048
|
-
i.lazy ? _("", !0) :
|
|
13148
|
+
i.lazy ? _("", !0) : Y((o(), d("input", {
|
|
13049
13149
|
key: 2,
|
|
13050
13150
|
type: i.getInput(p),
|
|
13051
13151
|
class: L([i.inputClasses, "ux-field-focus ux-text-input-multiple"]),
|
|
@@ -13148,7 +13248,7 @@ function Ub(e, t, n, r, s, i) {
|
|
|
13148
13248
|
default: h(() => [
|
|
13149
13249
|
x("div", Fb, [
|
|
13150
13250
|
e.prefix ? (o(), d("span", $b, v(e.prefix), 1)) : _("", !0),
|
|
13151
|
-
i.lazy ?
|
|
13251
|
+
i.lazy ? Y((o(), d("input", {
|
|
13152
13252
|
key: 1,
|
|
13153
13253
|
type: i.actualInputType,
|
|
13154
13254
|
ref: "input",
|
|
@@ -13164,7 +13264,7 @@ function Ub(e, t, n, r, s, i) {
|
|
|
13164
13264
|
{ lazy: !0 }
|
|
13165
13265
|
]
|
|
13166
13266
|
]) : _("", !0),
|
|
13167
|
-
i.lazy ? _("", !0) :
|
|
13267
|
+
i.lazy ? _("", !0) : Y((o(), d("input", {
|
|
13168
13268
|
key: 2,
|
|
13169
13269
|
type: i.actualInputType,
|
|
13170
13270
|
ref: "input",
|
|
@@ -13227,14 +13327,14 @@ function Ub(e, t, n, r, s, i) {
|
|
|
13227
13327
|
}))
|
|
13228
13328
|
], 64);
|
|
13229
13329
|
}
|
|
13230
|
-
const
|
|
13330
|
+
const fo = /* @__PURE__ */ C(Sb, [["render", Ub], ["__scopeId", "data-v-ab981ae3"]]);
|
|
13231
13331
|
const jb = {
|
|
13232
13332
|
props: {
|
|
13233
13333
|
modelValue: {
|
|
13234
13334
|
type: [String, Array]
|
|
13235
13335
|
}
|
|
13236
13336
|
},
|
|
13237
|
-
mixins: [
|
|
13337
|
+
mixins: [ie],
|
|
13238
13338
|
methods: {
|
|
13239
13339
|
getNewDefaultEntry() {
|
|
13240
13340
|
return "";
|
|
@@ -13266,7 +13366,7 @@ function Wb(e, t, n, r, s, i) {
|
|
|
13266
13366
|
default: h(() => [
|
|
13267
13367
|
m(a, null, {
|
|
13268
13368
|
default: h(() => [
|
|
13269
|
-
|
|
13369
|
+
Y(x("textarea", {
|
|
13270
13370
|
contenteditable: "",
|
|
13271
13371
|
onFocus: t[0] || (t[0] = (...g) => e.touch && e.touch(...g)),
|
|
13272
13372
|
ref_for: !0,
|
|
@@ -13274,7 +13374,7 @@ function Wb(e, t, n, r, s, i) {
|
|
|
13274
13374
|
"onUpdate:modelValue": (g) => e.model[p] = g,
|
|
13275
13375
|
class: "ux-textarea ux-field-focus ux-text-area-multiple"
|
|
13276
13376
|
}, null, 40, qb), [
|
|
13277
|
-
[
|
|
13377
|
+
[ae, e.model[p]]
|
|
13278
13378
|
])
|
|
13279
13379
|
]),
|
|
13280
13380
|
_: 2
|
|
@@ -13310,7 +13410,7 @@ function Wb(e, t, n, r, s, i) {
|
|
|
13310
13410
|
]),
|
|
13311
13411
|
_: 1
|
|
13312
13412
|
})) : _("", !0)
|
|
13313
|
-
])) :
|
|
13413
|
+
])) : Y((o(), d("textarea", {
|
|
13314
13414
|
key: 3,
|
|
13315
13415
|
class: "ux-textarea ux-field-focus ux-text-area-single",
|
|
13316
13416
|
onFocus: t[2] || (t[2] = (...c) => e.touch && e.touch(...c)),
|
|
@@ -13318,7 +13418,7 @@ function Wb(e, t, n, r, s, i) {
|
|
|
13318
13418
|
role: "textbox",
|
|
13319
13419
|
contenteditable: ""
|
|
13320
13420
|
}, null, 544)), [
|
|
13321
|
-
[
|
|
13421
|
+
[ae, e.model]
|
|
13322
13422
|
])
|
|
13323
13423
|
], 64);
|
|
13324
13424
|
}
|
|
@@ -13332,7 +13432,7 @@ const Kb = {
|
|
|
13332
13432
|
type: [Date, String, Array]
|
|
13333
13433
|
}
|
|
13334
13434
|
},
|
|
13335
|
-
mixins: [
|
|
13435
|
+
mixins: [ie],
|
|
13336
13436
|
computed: {
|
|
13337
13437
|
model: {
|
|
13338
13438
|
get() {
|
|
@@ -13388,7 +13488,7 @@ function e0(e, t, n, r, s, i) {
|
|
|
13388
13488
|
default: h(() => [
|
|
13389
13489
|
m(a, null, {
|
|
13390
13490
|
default: h(() => [
|
|
13391
|
-
|
|
13491
|
+
Y(x("input", {
|
|
13392
13492
|
type: "datetime-local",
|
|
13393
13493
|
class: "ux-field-focus ux-text-input-multiple",
|
|
13394
13494
|
onFocus: t[0] || (t[0] = (...g) => e.touch && e.touch(...g)),
|
|
@@ -13397,7 +13497,7 @@ function e0(e, t, n, r, s, i) {
|
|
|
13397
13497
|
onKeydown: t[1] || (t[1] = ge(z((g) => e.add(), ["stop", "prevent"]), ["enter"])),
|
|
13398
13498
|
"onUpdate:modelValue": (g) => i.model[p] = g
|
|
13399
13499
|
}, null, 40, Qb), [
|
|
13400
|
-
[
|
|
13500
|
+
[ae, i.model[p]]
|
|
13401
13501
|
])
|
|
13402
13502
|
]),
|
|
13403
13503
|
_: 2
|
|
@@ -13433,18 +13533,18 @@ function e0(e, t, n, r, s, i) {
|
|
|
13433
13533
|
]),
|
|
13434
13534
|
_: 1
|
|
13435
13535
|
})) : _("", !0)
|
|
13436
|
-
])) :
|
|
13536
|
+
])) : Y((o(), d("input", {
|
|
13437
13537
|
key: 3,
|
|
13438
13538
|
type: "datetime-local",
|
|
13439
13539
|
class: "ux-field-focus ux-text-input-single",
|
|
13440
13540
|
onFocus: t[3] || (t[3] = (...c) => e.touch && e.touch(...c)),
|
|
13441
13541
|
"onUpdate:modelValue": t[4] || (t[4] = (c) => i.model = c)
|
|
13442
13542
|
}, null, 544)), [
|
|
13443
|
-
[
|
|
13543
|
+
[ae, i.model]
|
|
13444
13544
|
])
|
|
13445
13545
|
], 64);
|
|
13446
13546
|
}
|
|
13447
|
-
const
|
|
13547
|
+
const mo = /* @__PURE__ */ C(Kb, [["render", e0], ["__scopeId", "data-v-32a839f1"]]);
|
|
13448
13548
|
function ta(e) {
|
|
13449
13549
|
return String(e).length < 2 && (e = `0${e}`), e;
|
|
13450
13550
|
}
|
|
@@ -13454,7 +13554,7 @@ const t0 = {
|
|
|
13454
13554
|
type: String
|
|
13455
13555
|
}
|
|
13456
13556
|
},
|
|
13457
|
-
mixins: [
|
|
13557
|
+
mixins: [ie],
|
|
13458
13558
|
methods: {
|
|
13459
13559
|
cleanInputValue(e) {
|
|
13460
13560
|
return e.split(":").join("");
|
|
@@ -13493,7 +13593,7 @@ function l0(e, t, n, r, s, i) {
|
|
|
13493
13593
|
default: h(() => [
|
|
13494
13594
|
m(a, null, {
|
|
13495
13595
|
default: h(() => [
|
|
13496
|
-
|
|
13596
|
+
Y(x("input", {
|
|
13497
13597
|
type: "time",
|
|
13498
13598
|
class: "ux-field-focus ux-text-input-multiple",
|
|
13499
13599
|
onFocus: t[0] || (t[0] = (...g) => e.touch && e.touch(...g)),
|
|
@@ -13502,7 +13602,7 @@ function l0(e, t, n, r, s, i) {
|
|
|
13502
13602
|
onKeydown: t[1] || (t[1] = ge(z((g) => e.add(), ["stop", "prevent"]), ["enter"])),
|
|
13503
13603
|
"onUpdate:modelValue": (g) => e.model[p] = g
|
|
13504
13604
|
}, null, 40, a0), [
|
|
13505
|
-
[
|
|
13605
|
+
[ae, e.model[p]]
|
|
13506
13606
|
])
|
|
13507
13607
|
]),
|
|
13508
13608
|
_: 2
|
|
@@ -13538,28 +13638,28 @@ function l0(e, t, n, r, s, i) {
|
|
|
13538
13638
|
]),
|
|
13539
13639
|
_: 1
|
|
13540
13640
|
})) : _("", !0)
|
|
13541
|
-
])) :
|
|
13641
|
+
])) : Y((o(), d("input", {
|
|
13542
13642
|
key: 3,
|
|
13543
13643
|
type: "time",
|
|
13544
13644
|
class: "ux-field-focus ux-text-input-single",
|
|
13545
13645
|
onFocus: t[3] || (t[3] = (...c) => e.touch && e.touch(...c)),
|
|
13546
13646
|
"onUpdate:modelValue": t[4] || (t[4] = (c) => e.model = c)
|
|
13547
13647
|
}, null, 544)), [
|
|
13548
|
-
[
|
|
13648
|
+
[ae, e.model]
|
|
13549
13649
|
])
|
|
13550
13650
|
], 64);
|
|
13551
13651
|
}
|
|
13552
13652
|
const o0 = /* @__PURE__ */ C(t0, [["render", l0], ["__scopeId", "data-v-9ae5aa1e"]]);
|
|
13553
13653
|
const u0 = {
|
|
13554
13654
|
components: {
|
|
13555
|
-
Daterange:
|
|
13655
|
+
Daterange: ov
|
|
13556
13656
|
},
|
|
13557
13657
|
props: {
|
|
13558
13658
|
modelValue: {
|
|
13559
13659
|
type: [Object, Array]
|
|
13560
13660
|
}
|
|
13561
13661
|
},
|
|
13562
|
-
mixins: [
|
|
13662
|
+
mixins: [ie],
|
|
13563
13663
|
computed: {
|
|
13564
13664
|
model: {
|
|
13565
13665
|
get() {
|
|
@@ -13664,7 +13764,7 @@ function na(e) {
|
|
|
13664
13764
|
return Array.isArray(e) ? !!e[0] : !!e;
|
|
13665
13765
|
}
|
|
13666
13766
|
const y0 = {
|
|
13667
|
-
mixins: [
|
|
13767
|
+
mixins: [ie],
|
|
13668
13768
|
components: {
|
|
13669
13769
|
UxCheckbox: Ll
|
|
13670
13770
|
},
|
|
@@ -13749,7 +13849,7 @@ const k0 = /* @__PURE__ */ C(y0, [["render", b0]]), x0 = {
|
|
|
13749
13849
|
type: [String, Array]
|
|
13750
13850
|
}
|
|
13751
13851
|
},
|
|
13752
|
-
mixins: [
|
|
13852
|
+
mixins: [ie],
|
|
13753
13853
|
methods: {
|
|
13754
13854
|
getNewDefaultEntry() {
|
|
13755
13855
|
return "";
|
|
@@ -13817,7 +13917,7 @@ var M0 = A0, D0 = 9007199254740991;
|
|
|
13817
13917
|
function I0(e) {
|
|
13818
13918
|
return typeof e == "number" && e > -1 && e % 1 == 0 && e <= D0;
|
|
13819
13919
|
}
|
|
13820
|
-
var
|
|
13920
|
+
var ho = I0, F0 = Ol, $0 = ho;
|
|
13821
13921
|
function N0(e) {
|
|
13822
13922
|
return e != null && $0(e.length) && !F0(e);
|
|
13823
13923
|
}
|
|
@@ -13826,7 +13926,7 @@ function U0(e, t) {
|
|
|
13826
13926
|
var n = typeof e;
|
|
13827
13927
|
return t = t ?? L0, !!t && (n == "number" || n != "symbol" && P0.test(e)) && e > -1 && e % 1 == 0 && e < t;
|
|
13828
13928
|
}
|
|
13829
|
-
var
|
|
13929
|
+
var po = U0, j0 = Cl, R0 = Gr, B0 = po, z0 = In;
|
|
13830
13930
|
function H0(e, t, n) {
|
|
13831
13931
|
if (!z0(n))
|
|
13832
13932
|
return !1;
|
|
@@ -13843,20 +13943,20 @@ function K0(e) {
|
|
|
13843
13943
|
}
|
|
13844
13944
|
return e === e ? e : 0;
|
|
13845
13945
|
}
|
|
13846
|
-
var
|
|
13946
|
+
var yo = K0, Y0 = M0, Z0 = q0, ar = yo;
|
|
13847
13947
|
function J0(e) {
|
|
13848
13948
|
return function(t, n, r) {
|
|
13849
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);
|
|
13850
13950
|
};
|
|
13851
13951
|
}
|
|
13852
|
-
var X0 = J0, Q0 = X0, ek = Q0(),
|
|
13952
|
+
var X0 = J0, Q0 = X0, ek = Q0(), _o = ek;
|
|
13853
13953
|
function tk(e) {
|
|
13854
13954
|
return String(e).length < 2 && (e = `0${e}`), e;
|
|
13855
13955
|
}
|
|
13856
13956
|
const {
|
|
13857
13957
|
lookup: nk,
|
|
13858
13958
|
options: ik
|
|
13859
|
-
} = [...
|
|
13959
|
+
} = [..._o(1, 13)].reduce(function(e, t) {
|
|
13860
13960
|
let n;
|
|
13861
13961
|
switch (t) {
|
|
13862
13962
|
case 1:
|
|
@@ -14123,7 +14223,7 @@ const rk = {
|
|
|
14123
14223
|
];
|
|
14124
14224
|
},
|
|
14125
14225
|
dayOptions() {
|
|
14126
|
-
return [...
|
|
14226
|
+
return [..._o(1, 32)].map(function(e) {
|
|
14127
14227
|
return {
|
|
14128
14228
|
title: e,
|
|
14129
14229
|
value: e
|
|
@@ -14188,7 +14288,7 @@ const rk = {
|
|
|
14188
14288
|
// }
|
|
14189
14289
|
// },
|
|
14190
14290
|
}
|
|
14191
|
-
}, 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" };
|
|
14192
14292
|
function hk(e, t, n, r, s, i) {
|
|
14193
14293
|
const a = y("ux-icon"), l = y("native-select"), u = y("flex-cell"), f = y("flex-row");
|
|
14194
14294
|
return o(), k(f, null, {
|
|
@@ -14354,7 +14454,7 @@ function hk(e, t, n, r, s, i) {
|
|
|
14354
14454
|
}
|
|
14355
14455
|
const pk = /* @__PURE__ */ C(rk, [["render", hk], ["__scopeId", "data-v-569dda27"]]);
|
|
14356
14456
|
const yk = {
|
|
14357
|
-
mixins: [
|
|
14457
|
+
mixins: [ie],
|
|
14358
14458
|
components: {
|
|
14359
14459
|
DateObject: pk
|
|
14360
14460
|
},
|
|
@@ -14547,6 +14647,14 @@ const wk = {
|
|
|
14547
14647
|
}
|
|
14548
14648
|
},
|
|
14549
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
|
+
},
|
|
14550
14658
|
extraCriteria() {
|
|
14551
14659
|
return this.field && this.field.path && this.field.path.startsWith("join_") && this.field.path.endsWith(".total");
|
|
14552
14660
|
},
|
|
@@ -14649,15 +14757,18 @@ const wk = {
|
|
|
14649
14757
|
return this.comparators.hash;
|
|
14650
14758
|
},
|
|
14651
14759
|
comparatorOptions() {
|
|
14652
|
-
|
|
14760
|
+
const e = this;
|
|
14761
|
+
if (!e.fieldType)
|
|
14653
14762
|
return [];
|
|
14654
|
-
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) {
|
|
14655
14766
|
return {
|
|
14656
|
-
title:
|
|
14657
|
-
value:
|
|
14767
|
+
title: r.title,
|
|
14768
|
+
value: r.operator
|
|
14658
14769
|
};
|
|
14659
14770
|
});
|
|
14660
|
-
return
|
|
14771
|
+
return n;
|
|
14661
14772
|
},
|
|
14662
14773
|
comparatorField() {
|
|
14663
14774
|
return {
|
|
@@ -14808,18 +14919,19 @@ const wk = {
|
|
|
14808
14919
|
}
|
|
14809
14920
|
},
|
|
14810
14921
|
components: {
|
|
14811
|
-
TextField:
|
|
14812
|
-
CurrencyField:
|
|
14813
|
-
DateField:
|
|
14922
|
+
TextField: fo,
|
|
14923
|
+
CurrencyField: co,
|
|
14924
|
+
DateField: mo,
|
|
14814
14925
|
NativeSelect: Ct,
|
|
14815
|
-
ContentSelect: oo
|
|
14926
|
+
ContentSelect: oo,
|
|
14927
|
+
ScopeSelect: uo
|
|
14816
14928
|
}
|
|
14817
|
-
}, Sk = (e) => (
|
|
14929
|
+
}, Sk = (e) => (qe("data-v-13dce876"), e = e(), We(), e), Tk = {
|
|
14818
14930
|
key: 0,
|
|
14819
14931
|
class: "filter-condition"
|
|
14820
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));
|
|
14821
14933
|
function Pk(e, t, n, r, s, i) {
|
|
14822
|
-
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);
|
|
14823
14935
|
return s.comparators ? (o(), d("div", Tk, [
|
|
14824
14936
|
m(c, {
|
|
14825
14937
|
gap: "",
|
|
@@ -14831,7 +14943,7 @@ function Pk(e, t, n, r, s, i) {
|
|
|
14831
14943
|
m(a, {
|
|
14832
14944
|
title: "Select field",
|
|
14833
14945
|
modelValue: s.model.key,
|
|
14834
|
-
"onUpdate:modelValue": t[0] || (t[0] = (
|
|
14946
|
+
"onUpdate:modelValue": t[0] || (t[0] = (D) => s.model.key = D),
|
|
14835
14947
|
field: i.keyField
|
|
14836
14948
|
}, null, 8, ["modelValue", "field"])
|
|
14837
14949
|
]),
|
|
@@ -14842,7 +14954,7 @@ function Pk(e, t, n, r, s, i) {
|
|
|
14842
14954
|
m(a, {
|
|
14843
14955
|
title: "Select comparator",
|
|
14844
14956
|
modelValue: s.model.comparator,
|
|
14845
|
-
"onUpdate:modelValue": t[1] || (t[1] = (
|
|
14957
|
+
"onUpdate:modelValue": t[1] || (t[1] = (D) => s.model.comparator = D),
|
|
14846
14958
|
field: i.comparatorField
|
|
14847
14959
|
}, null, 8, ["modelValue", "field"])
|
|
14848
14960
|
]),
|
|
@@ -14854,13 +14966,13 @@ function Pk(e, t, n, r, s, i) {
|
|
|
14854
14966
|
i.showSelectOptions ? (o(), k(a, {
|
|
14855
14967
|
key: 0,
|
|
14856
14968
|
modelValue: s.model.values,
|
|
14857
|
-
"onUpdate:modelValue": t[2] || (t[2] = (
|
|
14969
|
+
"onUpdate:modelValue": t[2] || (t[2] = (D) => s.model.values = D),
|
|
14858
14970
|
field: i.multiOptionsField
|
|
14859
14971
|
}, null, 8, ["modelValue", "field"])) : (o(), k(u, {
|
|
14860
14972
|
key: 1,
|
|
14861
14973
|
field: i.arrayField,
|
|
14862
14974
|
modelValue: s.model.values,
|
|
14863
|
-
"onUpdate:modelValue": t[3] || (t[3] = (
|
|
14975
|
+
"onUpdate:modelValue": t[3] || (t[3] = (D) => s.model.values = D)
|
|
14864
14976
|
}, null, 8, ["field", "modelValue"]))
|
|
14865
14977
|
])) : _("", !0),
|
|
14866
14978
|
i.inputType == "range" ? (o(), d("div", Ck, [
|
|
@@ -14868,25 +14980,25 @@ function Pk(e, t, n, r, s, i) {
|
|
|
14868
14980
|
m(f, {
|
|
14869
14981
|
field: i.normalField,
|
|
14870
14982
|
modelValue: s.model.value,
|
|
14871
|
-
"onUpdate:modelValue": t[4] || (t[4] = (
|
|
14983
|
+
"onUpdate:modelValue": t[4] || (t[4] = (D) => s.model.value = D)
|
|
14872
14984
|
}, null, 8, ["field", "modelValue"]),
|
|
14873
14985
|
T(" And "),
|
|
14874
14986
|
m(f, {
|
|
14875
14987
|
field: i.normalField,
|
|
14876
14988
|
modelValue: s.model.value2,
|
|
14877
|
-
"onUpdate:modelValue": t[5] || (t[5] = (
|
|
14989
|
+
"onUpdate:modelValue": t[5] || (t[5] = (D) => s.model.value2 = D)
|
|
14878
14990
|
}, null, 8, ["field", "modelValue"])
|
|
14879
14991
|
], 64)) : (o(), d(S, { key: 1 }, [
|
|
14880
14992
|
m(u, {
|
|
14881
14993
|
field: i.normalField,
|
|
14882
14994
|
modelValue: s.model.value,
|
|
14883
|
-
"onUpdate:modelValue": t[6] || (t[6] = (
|
|
14995
|
+
"onUpdate:modelValue": t[6] || (t[6] = (D) => s.model.value = D)
|
|
14884
14996
|
}, null, 8, ["field", "modelValue"]),
|
|
14885
14997
|
T(" And "),
|
|
14886
14998
|
m(u, {
|
|
14887
14999
|
field: i.normalField,
|
|
14888
15000
|
modelValue: s.model.value2,
|
|
14889
|
-
"onUpdate:modelValue": t[7] || (t[7] = (
|
|
15001
|
+
"onUpdate:modelValue": t[7] || (t[7] = (D) => s.model.value2 = D)
|
|
14890
15002
|
}, null, 8, ["field", "modelValue"])
|
|
14891
15003
|
], 64))
|
|
14892
15004
|
])) : _("", !0),
|
|
@@ -14898,7 +15010,7 @@ function Pk(e, t, n, r, s, i) {
|
|
|
14898
15010
|
m(u, {
|
|
14899
15011
|
field: i.relativeNumberField,
|
|
14900
15012
|
modelValue: s.model.value,
|
|
14901
|
-
"onUpdate:modelValue": t[8] || (t[8] = (
|
|
15013
|
+
"onUpdate:modelValue": t[8] || (t[8] = (D) => s.model.value = D)
|
|
14902
15014
|
}, null, 8, ["field", "modelValue"])
|
|
14903
15015
|
]),
|
|
14904
15016
|
_: 1
|
|
@@ -14907,7 +15019,7 @@ function Pk(e, t, n, r, s, i) {
|
|
|
14907
15019
|
default: h(() => [
|
|
14908
15020
|
m(a, {
|
|
14909
15021
|
modelValue: s.model.value2,
|
|
14910
|
-
"onUpdate:modelValue": t[9] || (t[9] = (
|
|
15022
|
+
"onUpdate:modelValue": t[9] || (t[9] = (D) => s.model.value2 = D),
|
|
14911
15023
|
field: i.relativePeriodField
|
|
14912
15024
|
}, null, 8, ["modelValue", "field"])
|
|
14913
15025
|
]),
|
|
@@ -14921,35 +15033,46 @@ function Pk(e, t, n, r, s, i) {
|
|
|
14921
15033
|
m(p, {
|
|
14922
15034
|
field: i.dateField,
|
|
14923
15035
|
modelValue: s.model.value,
|
|
14924
|
-
"onUpdate:modelValue": t[10] || (t[10] = (
|
|
15036
|
+
"onUpdate:modelValue": t[10] || (t[10] = (D) => s.model.value = D)
|
|
14925
15037
|
}, null, 8, ["field", "modelValue"]),
|
|
14926
15038
|
T(" And "),
|
|
14927
15039
|
m(p, {
|
|
14928
15040
|
field: i.dateField,
|
|
14929
15041
|
modelValue: s.model.value2,
|
|
14930
|
-
"onUpdate:modelValue": t[11] || (t[11] = (
|
|
15042
|
+
"onUpdate:modelValue": t[11] || (t[11] = (D) => s.model.value2 = D)
|
|
14931
15043
|
}, null, 8, ["field", "modelValue"])
|
|
14932
15044
|
])) : _("", !0),
|
|
14933
15045
|
i.inputType == "date" ? (o(), d("div", Ak, [
|
|
14934
15046
|
m(p, {
|
|
14935
15047
|
field: i.dateField,
|
|
14936
15048
|
modelValue: s.model.value,
|
|
14937
|
-
"onUpdate:modelValue": t[12] || (t[12] = (
|
|
15049
|
+
"onUpdate:modelValue": t[12] || (t[12] = (D) => s.model.value = D)
|
|
14938
15050
|
}, null, 8, ["field", "modelValue"])
|
|
14939
15051
|
])) : _("", !0),
|
|
14940
15052
|
i.inputType == "reference" ? (o(), d("div", Mk, [
|
|
14941
|
-
|
|
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,
|
|
14942
15060
|
field: i.singleReferenceField,
|
|
14943
15061
|
modelValue: s.model.value,
|
|
14944
|
-
"onUpdate:modelValue": t[
|
|
14945
|
-
}, null, 8, ["field", "modelValue"])
|
|
15062
|
+
"onUpdate:modelValue": t[14] || (t[14] = (D) => s.model.value = D)
|
|
15063
|
+
}, null, 8, ["field", "modelValue"]))
|
|
14946
15064
|
])) : _("", !0),
|
|
14947
15065
|
i.inputType == "multireference" ? (o(), d("div", Dk, [
|
|
14948
|
-
|
|
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,
|
|
14949
15072
|
field: i.multiReferenceField,
|
|
14950
15073
|
modelValue: s.model.values,
|
|
14951
|
-
"onUpdate:modelValue": t[
|
|
14952
|
-
}, null, 8, ["field", "modelValue"])
|
|
15074
|
+
"onUpdate:modelValue": t[16] || (t[16] = (D) => s.model.values = D)
|
|
15075
|
+
}, null, 8, ["field", "modelValue"]))
|
|
14953
15076
|
])) : _("", !0),
|
|
14954
15077
|
i.inputType == "boolean" ? (o(), d("div", Ik, [
|
|
14955
15078
|
m(c, {
|
|
@@ -14959,8 +15082,8 @@ function Pk(e, t, n, r, s, i) {
|
|
|
14959
15082
|
default: h(() => [
|
|
14960
15083
|
m(l, { shrink: "" }, {
|
|
14961
15084
|
default: h(() => [
|
|
14962
|
-
m(
|
|
14963
|
-
onClick: t[
|
|
15085
|
+
m(w, {
|
|
15086
|
+
onClick: t[17] || (t[17] = (D) => s.model.value = !s.model.value),
|
|
14964
15087
|
value: s.model.value
|
|
14965
15088
|
}, null, 8, ["value"])
|
|
14966
15089
|
]),
|
|
@@ -14982,25 +15105,25 @@ function Pk(e, t, n, r, s, i) {
|
|
|
14982
15105
|
key: 0,
|
|
14983
15106
|
field: i.normalField,
|
|
14984
15107
|
modelValue: s.model.value,
|
|
14985
|
-
"onUpdate:modelValue": t[
|
|
15108
|
+
"onUpdate:modelValue": t[18] || (t[18] = (D) => s.model.value = D)
|
|
14986
15109
|
}, null, 8, ["field", "modelValue"])) : (o(), k(u, {
|
|
14987
15110
|
key: 1,
|
|
14988
15111
|
field: i.normalField,
|
|
14989
15112
|
modelValue: s.model.value,
|
|
14990
|
-
"onUpdate:modelValue": t[
|
|
15113
|
+
"onUpdate:modelValue": t[19] || (t[19] = (D) => s.model.value = D)
|
|
14991
15114
|
}, null, 8, ["field", "modelValue"]))
|
|
14992
15115
|
])) : _("", !0),
|
|
14993
15116
|
i.inputType == "normal" ? (o(), d("div", Nk, [
|
|
14994
15117
|
i.showSelectOptions ? (o(), k(a, {
|
|
14995
15118
|
key: 0,
|
|
14996
15119
|
modelValue: s.model.value,
|
|
14997
|
-
"onUpdate:modelValue": t[
|
|
15120
|
+
"onUpdate:modelValue": t[20] || (t[20] = (D) => s.model.value = D),
|
|
14998
15121
|
field: i.singleOptionsField
|
|
14999
15122
|
}, null, 8, ["modelValue", "field"])) : (o(), k(u, {
|
|
15000
15123
|
key: 1,
|
|
15001
15124
|
field: i.normalField,
|
|
15002
15125
|
modelValue: s.model.value,
|
|
15003
|
-
"onUpdate:modelValue": t[
|
|
15126
|
+
"onUpdate:modelValue": t[21] || (t[21] = (D) => s.model.value = D)
|
|
15004
15127
|
}, null, 8, ["field", "modelValue"]))
|
|
15005
15128
|
])) : _("", !0)
|
|
15006
15129
|
]),
|
|
@@ -15011,13 +15134,13 @@ function Pk(e, t, n, r, s, i) {
|
|
|
15011
15134
|
shrink: ""
|
|
15012
15135
|
}, {
|
|
15013
15136
|
default: h(() => [
|
|
15014
|
-
m(
|
|
15137
|
+
m(j, {
|
|
15015
15138
|
size: "sm",
|
|
15016
15139
|
icon: "",
|
|
15017
|
-
onClick: t[
|
|
15140
|
+
onClick: t[22] || (t[22] = (D) => e.$emit("remove"))
|
|
15018
15141
|
}, {
|
|
15019
15142
|
default: h(() => [
|
|
15020
|
-
m(
|
|
15143
|
+
m(O, { icon: "fa-times" })
|
|
15021
15144
|
]),
|
|
15022
15145
|
_: 1
|
|
15023
15146
|
})
|
|
@@ -15029,24 +15152,24 @@ function Pk(e, t, n, r, s, i) {
|
|
|
15029
15152
|
}),
|
|
15030
15153
|
i.extraCriteria ? (o(), d(S, { key: 0 }, [
|
|
15031
15154
|
Lk,
|
|
15032
|
-
(o(!0), d(S, null, F(s.model.conditions, (
|
|
15033
|
-
key:
|
|
15155
|
+
(o(!0), d(S, null, F(s.model.conditions, (D, ee) => (o(), d("div", {
|
|
15156
|
+
key: D._guid
|
|
15034
15157
|
}, [
|
|
15035
|
-
m(
|
|
15158
|
+
m(H, {
|
|
15036
15159
|
enableRemove: !0,
|
|
15037
15160
|
fields: s.criteriaFields,
|
|
15038
|
-
onRemove: (
|
|
15039
|
-
modelValue: s.model.conditions[
|
|
15040
|
-
"onUpdate:modelValue": (
|
|
15161
|
+
onRemove: (re) => i.removeCondition(ee),
|
|
15162
|
+
modelValue: s.model.conditions[ee],
|
|
15163
|
+
"onUpdate:modelValue": (re) => s.model.conditions[ee] = re
|
|
15041
15164
|
}, null, 8, ["fields", "onRemove", "modelValue", "onUpdate:modelValue"])
|
|
15042
15165
|
]))), 128)),
|
|
15043
|
-
m(
|
|
15166
|
+
m(j, {
|
|
15044
15167
|
size: "sm",
|
|
15045
15168
|
onClick: z(i.addCondition, ["stop", "prevent"])
|
|
15046
15169
|
}, {
|
|
15047
15170
|
default: h(() => [
|
|
15048
15171
|
T(" Add Criteria "),
|
|
15049
|
-
m(
|
|
15172
|
+
m(O, {
|
|
15050
15173
|
icon: "fa-plus",
|
|
15051
15174
|
right: ""
|
|
15052
15175
|
})
|
|
@@ -15056,7 +15179,7 @@ function Pk(e, t, n, r, s, i) {
|
|
|
15056
15179
|
], 64)) : _("", !0)
|
|
15057
15180
|
])) : _("", !0);
|
|
15058
15181
|
}
|
|
15059
|
-
const Uk = /* @__PURE__ */ C(wk, [["render", Pk], ["__scopeId", "data-v-
|
|
15182
|
+
const Uk = /* @__PURE__ */ C(wk, [["render", Pk], ["__scopeId", "data-v-13dce876"]]);
|
|
15060
15183
|
function jk(e) {
|
|
15061
15184
|
let t = [];
|
|
15062
15185
|
if (t.push({
|
|
@@ -15373,7 +15496,7 @@ const qk = {
|
|
|
15373
15496
|
FilterCondition: Uk,
|
|
15374
15497
|
NativeSelect: Ct
|
|
15375
15498
|
}
|
|
15376
|
-
}, Wk = (e) => (
|
|
15499
|
+
}, Wk = (e) => (qe("data-v-f372c803"), e = e(), We(), e), Gk = {
|
|
15377
15500
|
key: 0,
|
|
15378
15501
|
class: "filter-rule"
|
|
15379
15502
|
}, Kk = { class: "top" }, Yk = { class: "summary" }, Zk = /* @__PURE__ */ Wk(() => /* @__PURE__ */ x("span", { class: "line" }, null, -1)), Jk = { class: "operator" };
|
|
@@ -15617,11 +15740,11 @@ function rx(e, t, n, r, s, i) {
|
|
|
15617
15740
|
_: 1
|
|
15618
15741
|
});
|
|
15619
15742
|
}
|
|
15620
|
-
const
|
|
15743
|
+
const go = /* @__PURE__ */ C(ex, [["render", rx], ["__scopeId", "data-v-fcb41aed"]]);
|
|
15621
15744
|
const sx = {
|
|
15622
|
-
mixins: [
|
|
15745
|
+
mixins: [ie],
|
|
15623
15746
|
components: {
|
|
15624
|
-
FilterBuilder:
|
|
15747
|
+
FilterBuilder: go
|
|
15625
15748
|
},
|
|
15626
15749
|
props: {
|
|
15627
15750
|
modelValue: {
|
|
@@ -15745,7 +15868,7 @@ const mx = {
|
|
|
15745
15868
|
// type: [Object, Array],
|
|
15746
15869
|
}
|
|
15747
15870
|
},
|
|
15748
|
-
mixins: [
|
|
15871
|
+
mixins: [ie],
|
|
15749
15872
|
async created() {
|
|
15750
15873
|
this.model = this.model;
|
|
15751
15874
|
},
|
|
@@ -15904,7 +16027,7 @@ function kx(e, t, n, r, s, i) {
|
|
|
15904
16027
|
])) : _("", !0),
|
|
15905
16028
|
e.showDescription ? (o(), d("div", yx, v(e.description), 1)) : _("", !0),
|
|
15906
16029
|
e.singleValue ? (o(), d("div", _x, [
|
|
15907
|
-
|
|
16030
|
+
q(e.$slots, "default", {}, () => [
|
|
15908
16031
|
m(a, { tag: "div" }, {
|
|
15909
16032
|
default: h(() => [
|
|
15910
16033
|
T(v(i.summary), 1)
|
|
@@ -15913,7 +16036,7 @@ function kx(e, t, n, r, s, i) {
|
|
|
15913
16036
|
})
|
|
15914
16037
|
], !0)
|
|
15915
16038
|
])) : _("", !0),
|
|
15916
|
-
|
|
16039
|
+
Y(x("select", {
|
|
15917
16040
|
onFocus: t[0] || (t[0] = (...l) => e.touch && e.touch(...l)),
|
|
15918
16041
|
multiple: e.multiValue,
|
|
15919
16042
|
"onUpdate:modelValue": t[1] || (t[1] = (l) => e.model = l)
|
|
@@ -15994,7 +16117,7 @@ const wx = {
|
|
|
15994
16117
|
};
|
|
15995
16118
|
function Cx(e, t, n, r, s, i) {
|
|
15996
16119
|
return o(), d("div", Sx, [
|
|
15997
|
-
|
|
16120
|
+
Y(x("input", {
|
|
15998
16121
|
ref: "range",
|
|
15999
16122
|
min: n.min,
|
|
16000
16123
|
step: n.step,
|
|
@@ -16003,7 +16126,7 @@ function Cx(e, t, n, r, s, i) {
|
|
|
16003
16126
|
type: "range",
|
|
16004
16127
|
class: "ux-range-slider"
|
|
16005
16128
|
}, null, 8, Tx), [
|
|
16006
|
-
[
|
|
16129
|
+
[ae, s.model]
|
|
16007
16130
|
]),
|
|
16008
16131
|
x("output", Ox, null, 512)
|
|
16009
16132
|
]);
|
|
@@ -16035,7 +16158,7 @@ const Ex = {
|
|
|
16035
16158
|
return parseFloat(this.field.maxValue) || 100;
|
|
16036
16159
|
}
|
|
16037
16160
|
},
|
|
16038
|
-
mixins: [
|
|
16161
|
+
mixins: [ie],
|
|
16039
16162
|
methods: {
|
|
16040
16163
|
getNewDefaultEntry() {
|
|
16041
16164
|
return "";
|
|
@@ -16171,7 +16294,7 @@ const Px = {
|
|
|
16171
16294
|
type: String
|
|
16172
16295
|
}
|
|
16173
16296
|
},
|
|
16174
|
-
mixins: [
|
|
16297
|
+
mixins: [ie],
|
|
16175
16298
|
methods: {
|
|
16176
16299
|
cleanInputValue(e) {
|
|
16177
16300
|
return e;
|
|
@@ -16210,7 +16333,7 @@ function qx(e, t, n, r, s, i) {
|
|
|
16210
16333
|
default: h(() => [
|
|
16211
16334
|
m(a, { shrink: "" }, {
|
|
16212
16335
|
default: h(() => [
|
|
16213
|
-
|
|
16336
|
+
Y(x("input", {
|
|
16214
16337
|
type: "color",
|
|
16215
16338
|
class: "ux-field-focus ux-color-input ux-color-input-multiple",
|
|
16216
16339
|
onFocus: t[0] || (t[0] = (...g) => e.touch && e.touch(...g)),
|
|
@@ -16218,14 +16341,14 @@ function qx(e, t, n, r, s, i) {
|
|
|
16218
16341
|
ref: "input",
|
|
16219
16342
|
"onUpdate:modelValue": (g) => e.model[p] = g
|
|
16220
16343
|
}, null, 40, zx), [
|
|
16221
|
-
[
|
|
16344
|
+
[ae, e.model[p]]
|
|
16222
16345
|
])
|
|
16223
16346
|
]),
|
|
16224
16347
|
_: 2
|
|
16225
16348
|
}, 1024),
|
|
16226
16349
|
m(a, null, {
|
|
16227
16350
|
default: h(() => [
|
|
16228
|
-
|
|
16351
|
+
Y(x("input", {
|
|
16229
16352
|
type: "text",
|
|
16230
16353
|
class: "ux-field-focus ux-text-input-multiple",
|
|
16231
16354
|
onFocus: t[1] || (t[1] = (...g) => e.touch && e.touch(...g)),
|
|
@@ -16233,7 +16356,7 @@ function qx(e, t, n, r, s, i) {
|
|
|
16233
16356
|
ref: "input",
|
|
16234
16357
|
"onUpdate:modelValue": (g) => e.model[p] = g
|
|
16235
16358
|
}, null, 40, Hx), [
|
|
16236
|
-
[
|
|
16359
|
+
[ae, e.model[p]]
|
|
16237
16360
|
])
|
|
16238
16361
|
]),
|
|
16239
16362
|
_: 2
|
|
@@ -16277,26 +16400,26 @@ function qx(e, t, n, r, s, i) {
|
|
|
16277
16400
|
default: h(() => [
|
|
16278
16401
|
m(a, { shrink: "" }, {
|
|
16279
16402
|
default: h(() => [
|
|
16280
|
-
|
|
16403
|
+
Y(x("input", {
|
|
16281
16404
|
type: "color",
|
|
16282
16405
|
class: "ux-field-focus ux-color-input ux-color-input-single",
|
|
16283
16406
|
onFocus: t[3] || (t[3] = (...c) => e.touch && e.touch(...c)),
|
|
16284
16407
|
"onUpdate:modelValue": t[4] || (t[4] = (c) => e.model = c)
|
|
16285
16408
|
}, null, 544), [
|
|
16286
|
-
[
|
|
16409
|
+
[ae, e.model]
|
|
16287
16410
|
])
|
|
16288
16411
|
]),
|
|
16289
16412
|
_: 1
|
|
16290
16413
|
}),
|
|
16291
16414
|
m(a, null, {
|
|
16292
16415
|
default: h(() => [
|
|
16293
|
-
|
|
16416
|
+
Y(x("input", {
|
|
16294
16417
|
type: "text",
|
|
16295
16418
|
class: "ux-field-focus ux-text-input-single",
|
|
16296
16419
|
onFocus: t[5] || (t[5] = (...c) => e.touch && e.touch(...c)),
|
|
16297
16420
|
"onUpdate:modelValue": t[6] || (t[6] = (c) => e.model = c)
|
|
16298
16421
|
}, null, 544), [
|
|
16299
|
-
[
|
|
16422
|
+
[ae, e.model]
|
|
16300
16423
|
])
|
|
16301
16424
|
]),
|
|
16302
16425
|
_: 1
|
|
@@ -16311,7 +16434,7 @@ function aa(e) {
|
|
|
16311
16434
|
return Array.isArray(e) ? !!e[0] : !!e;
|
|
16312
16435
|
}
|
|
16313
16436
|
const Gx = {
|
|
16314
|
-
mixins: [
|
|
16437
|
+
mixins: [ie],
|
|
16315
16438
|
components: {
|
|
16316
16439
|
UxSwitch: Pl
|
|
16317
16440
|
},
|
|
@@ -16454,7 +16577,7 @@ function tw(e, t, n, r, s, i) {
|
|
|
16454
16577
|
class: "file-drop-ux",
|
|
16455
16578
|
onClick: t[1] || (t[1] = z((...l) => i.clicked && i.clicked(...l), ["stop", "prevent"]))
|
|
16456
16579
|
}, [
|
|
16457
|
-
|
|
16580
|
+
q(e.$slots, "default", {}, () => [
|
|
16458
16581
|
m(a, null, {
|
|
16459
16582
|
default: h(() => [
|
|
16460
16583
|
T("Select Files")
|
|
@@ -16467,7 +16590,7 @@ function tw(e, t, n, r, s, i) {
|
|
|
16467
16590
|
}
|
|
16468
16591
|
const nw = /* @__PURE__ */ C(Qx, [["render", tw], ["__scopeId", "data-v-0c381e95"]]);
|
|
16469
16592
|
const iw = {
|
|
16470
|
-
mixins: [
|
|
16593
|
+
mixins: [ie],
|
|
16471
16594
|
components: {
|
|
16472
16595
|
FileDrop: nw
|
|
16473
16596
|
},
|
|
@@ -16654,7 +16777,7 @@ function uw(e, t, n, r, s, i) {
|
|
|
16654
16777
|
}
|
|
16655
16778
|
const dw = /* @__PURE__ */ C(iw, [["render", uw], ["__scopeId", "data-v-d29a9855"]]);
|
|
16656
16779
|
const cw = {
|
|
16657
|
-
mixins: [
|
|
16780
|
+
mixins: [ie],
|
|
16658
16781
|
//TODO check whether we should move draggable into the input mixin
|
|
16659
16782
|
components: { draggable: lo },
|
|
16660
16783
|
props: {
|
|
@@ -16813,7 +16936,7 @@ function kw(e, t, n, r, s, i) {
|
|
|
16813
16936
|
m(u, {
|
|
16814
16937
|
size: "xs",
|
|
16815
16938
|
tag: "a",
|
|
16816
|
-
onClick: (
|
|
16939
|
+
onClick: (H) => O.collapsed = !O.collapsed
|
|
16817
16940
|
}, {
|
|
16818
16941
|
default: h(() => [
|
|
16819
16942
|
T(v(O.collapsed ? "More" : "Less") + " ", 1),
|
|
@@ -16836,7 +16959,7 @@ function kw(e, t, n, r, s, i) {
|
|
|
16836
16959
|
key: 0,
|
|
16837
16960
|
icon: "",
|
|
16838
16961
|
tag: "a",
|
|
16839
|
-
onClick: (
|
|
16962
|
+
onClick: (H) => e.remove(O)
|
|
16840
16963
|
}, {
|
|
16841
16964
|
default: h(() => [
|
|
16842
16965
|
m(a, { icon: "fa-times" })
|
|
@@ -16852,8 +16975,8 @@ function kw(e, t, n, r, s, i) {
|
|
|
16852
16975
|
]),
|
|
16853
16976
|
_: 2
|
|
16854
16977
|
}, 1024),
|
|
16855
|
-
|
|
16856
|
-
onKeydown: t[0] || (t[0] = ge((
|
|
16978
|
+
Y(m(g, {
|
|
16979
|
+
onKeydown: t[0] || (t[0] = ge((H) => i.enterPress(H), ["enter"]))
|
|
16857
16980
|
}, {
|
|
16858
16981
|
default: h(() => [
|
|
16859
16982
|
m(p, {
|
|
@@ -16865,7 +16988,7 @@ function kw(e, t, n, r, s, i) {
|
|
|
16865
16988
|
"onForm:state": i.stateChange,
|
|
16866
16989
|
parentModel: e.parentModel,
|
|
16867
16990
|
modelValue: e.model[j],
|
|
16868
|
-
"onUpdate:modelValue": (
|
|
16991
|
+
"onUpdate:modelValue": (H) => e.model[j] = H,
|
|
16869
16992
|
flex: i.sameLine,
|
|
16870
16993
|
fields: e.field.fields
|
|
16871
16994
|
}, null, 8, ["trail", "includeOfficeOnly", "submission", "ignoreDefaults", "onForm:state", "parentModel", "modelValue", "onUpdate:modelValue", "flex", "fields"])
|
|
@@ -16916,7 +17039,7 @@ function kw(e, t, n, r, s, i) {
|
|
|
16916
17039
|
m(u, {
|
|
16917
17040
|
size: "xs",
|
|
16918
17041
|
tag: "a",
|
|
16919
|
-
onClick: (
|
|
17042
|
+
onClick: (H) => O.collapsed = !O.collapsed
|
|
16920
17043
|
}, {
|
|
16921
17044
|
default: h(() => [
|
|
16922
17045
|
T(v(O.collapsed ? "More" : "Less") + " ", 1),
|
|
@@ -16939,7 +17062,7 @@ function kw(e, t, n, r, s, i) {
|
|
|
16939
17062
|
key: 0,
|
|
16940
17063
|
icon: "",
|
|
16941
17064
|
tag: "a",
|
|
16942
|
-
onClick: (
|
|
17065
|
+
onClick: (H) => e.remove(O)
|
|
16943
17066
|
}, {
|
|
16944
17067
|
default: h(() => [
|
|
16945
17068
|
m(a, { icon: "fa-times" })
|
|
@@ -16955,8 +17078,8 @@ function kw(e, t, n, r, s, i) {
|
|
|
16955
17078
|
]),
|
|
16956
17079
|
_: 2
|
|
16957
17080
|
}, 1024),
|
|
16958
|
-
|
|
16959
|
-
onKeydown: t[4] || (t[4] = ge((
|
|
17081
|
+
Y(m(g, {
|
|
17082
|
+
onKeydown: t[4] || (t[4] = ge((H) => i.enterPress(H), ["enter"]))
|
|
16960
17083
|
}, {
|
|
16961
17084
|
default: h(() => [
|
|
16962
17085
|
m(p, {
|
|
@@ -16969,7 +17092,7 @@ function kw(e, t, n, r, s, i) {
|
|
|
16969
17092
|
"onForm:state": i.stateChange,
|
|
16970
17093
|
parentModel: e.parentModel,
|
|
16971
17094
|
modelValue: e.model[j],
|
|
16972
|
-
"onUpdate:modelValue": (
|
|
17095
|
+
"onUpdate:modelValue": (H) => e.model[j] = H,
|
|
16973
17096
|
flex: i.sameLine,
|
|
16974
17097
|
fields: e.field.fields
|
|
16975
17098
|
}, null, 8, ["trail", "includeOfficeOnly", "submission", "ignoreDefaults", "onForm:state", "parentModel", "modelValue", "onUpdate:modelValue", "flex", "fields"])
|
|
@@ -17151,7 +17274,7 @@ const ww = {
|
|
|
17151
17274
|
}
|
|
17152
17275
|
};
|
|
17153
17276
|
function Sw(e, t, n, r, s, i) {
|
|
17154
|
-
return
|
|
17277
|
+
return q(e.$slots, "default", { plainValue: i.plainValue }, () => [
|
|
17155
17278
|
x("pre", null, v(n.option), 1)
|
|
17156
17279
|
]);
|
|
17157
17280
|
}
|
|
@@ -17165,7 +17288,7 @@ const Ow = {
|
|
|
17165
17288
|
// type: [Object, Array],
|
|
17166
17289
|
}
|
|
17167
17290
|
},
|
|
17168
|
-
mixins: [
|
|
17291
|
+
mixins: [ie],
|
|
17169
17292
|
created() {
|
|
17170
17293
|
this.model = this.model;
|
|
17171
17294
|
},
|
|
@@ -17279,7 +17402,7 @@ const Iw = {
|
|
|
17279
17402
|
type: Object
|
|
17280
17403
|
}
|
|
17281
17404
|
},
|
|
17282
|
-
mixins: [
|
|
17405
|
+
mixins: [ie],
|
|
17283
17406
|
computed: {},
|
|
17284
17407
|
methods: {
|
|
17285
17408
|
getNewDefaultEntry() {
|
|
@@ -17361,7 +17484,7 @@ const Rw = {
|
|
|
17361
17484
|
type: [String, Array]
|
|
17362
17485
|
}
|
|
17363
17486
|
},
|
|
17364
|
-
mixins: [
|
|
17487
|
+
mixins: [ie],
|
|
17365
17488
|
computed: {
|
|
17366
17489
|
lazy() {
|
|
17367
17490
|
switch (this.type) {
|
|
@@ -17420,7 +17543,7 @@ const Rw = {
|
|
|
17420
17543
|
};
|
|
17421
17544
|
}
|
|
17422
17545
|
}
|
|
17423
|
-
}, $i = (e) => (
|
|
17546
|
+
}, $i = (e) => (qe("data-v-c8feb6c2"), e = e(), We(), e), Bw = {
|
|
17424
17547
|
key: 0,
|
|
17425
17548
|
class: "ux-field-title"
|
|
17426
17549
|
}, zw = {
|
|
@@ -17448,7 +17571,7 @@ function rS(e, t, n, r, s, i) {
|
|
|
17448
17571
|
default: h(() => [
|
|
17449
17572
|
x("div", Ww, [
|
|
17450
17573
|
Gw,
|
|
17451
|
-
i.lazy ?
|
|
17574
|
+
i.lazy ? Y((o(), d("input", {
|
|
17452
17575
|
key: 0,
|
|
17453
17576
|
class: "ux-field-focus ux-text-input-multiple",
|
|
17454
17577
|
placeholder: "Label",
|
|
@@ -17461,13 +17584,13 @@ function rS(e, t, n, r, s, i) {
|
|
|
17461
17584
|
"onUpdate:modelValue": (g) => e.model[p].title = g
|
|
17462
17585
|
}, null, 40, Kw)), [
|
|
17463
17586
|
[
|
|
17464
|
-
|
|
17587
|
+
ae,
|
|
17465
17588
|
e.model[p].title,
|
|
17466
17589
|
void 0,
|
|
17467
17590
|
{ lazy: !0 }
|
|
17468
17591
|
]
|
|
17469
17592
|
]) : _("", !0),
|
|
17470
|
-
i.lazy ? _("", !0) :
|
|
17593
|
+
i.lazy ? _("", !0) : Y((o(), d("input", {
|
|
17471
17594
|
key: 1,
|
|
17472
17595
|
class: "ux-field-focus ux-text-input-multiple",
|
|
17473
17596
|
placeholder: "Label",
|
|
@@ -17479,7 +17602,7 @@ function rS(e, t, n, r, s, i) {
|
|
|
17479
17602
|
"on:update:modelValue": (g) => i.entryTitleChanged(p),
|
|
17480
17603
|
"onUpdate:modelValue": (g) => e.model[p].title = g
|
|
17481
17604
|
}, null, 40, Yw)), [
|
|
17482
|
-
[
|
|
17605
|
+
[ae, e.model[p].title]
|
|
17483
17606
|
])
|
|
17484
17607
|
])
|
|
17485
17608
|
]),
|
|
@@ -17489,7 +17612,7 @@ function rS(e, t, n, r, s, i) {
|
|
|
17489
17612
|
default: h(() => [
|
|
17490
17613
|
x("div", Zw, [
|
|
17491
17614
|
Jw,
|
|
17492
|
-
i.lazy ?
|
|
17615
|
+
i.lazy ? Y((o(), d("input", {
|
|
17493
17616
|
key: 0,
|
|
17494
17617
|
class: "ux-field-focus ux-text-input-multiple",
|
|
17495
17618
|
placeholder: "Value",
|
|
@@ -17500,13 +17623,13 @@ function rS(e, t, n, r, s, i) {
|
|
|
17500
17623
|
"onUpdate:modelValue": (g) => e.model[p].value = g
|
|
17501
17624
|
}, null, 40, Xw)), [
|
|
17502
17625
|
[
|
|
17503
|
-
|
|
17626
|
+
ae,
|
|
17504
17627
|
e.model[p].value,
|
|
17505
17628
|
void 0,
|
|
17506
17629
|
{ lazy: !0 }
|
|
17507
17630
|
]
|
|
17508
17631
|
]) : _("", !0),
|
|
17509
|
-
i.lazy ? _("", !0) :
|
|
17632
|
+
i.lazy ? _("", !0) : Y((o(), d("input", {
|
|
17510
17633
|
key: 1,
|
|
17511
17634
|
class: "ux-field-focus ux-text-input-multiple",
|
|
17512
17635
|
placeholder: "Value",
|
|
@@ -17516,7 +17639,7 @@ function rS(e, t, n, r, s, i) {
|
|
|
17516
17639
|
onKeydown: t[5] || (t[5] = ge(z((g) => e.add(), ["stop", "prevent"]), ["enter"])),
|
|
17517
17640
|
"onUpdate:modelValue": (g) => e.model[p].value = g
|
|
17518
17641
|
}, null, 40, Qw)), [
|
|
17519
|
-
[
|
|
17642
|
+
[ae, e.model[p].value]
|
|
17520
17643
|
])
|
|
17521
17644
|
])
|
|
17522
17645
|
]),
|
|
@@ -17566,7 +17689,7 @@ function rS(e, t, n, r, s, i) {
|
|
|
17566
17689
|
default: h(() => [
|
|
17567
17690
|
x("div", eS, [
|
|
17568
17691
|
tS,
|
|
17569
|
-
i.lazy ?
|
|
17692
|
+
i.lazy ? Y((o(), d("input", {
|
|
17570
17693
|
key: 0,
|
|
17571
17694
|
class: "ux-field-focus ux-text-input-multiple",
|
|
17572
17695
|
placeholder: "Label",
|
|
@@ -17578,13 +17701,13 @@ function rS(e, t, n, r, s, i) {
|
|
|
17578
17701
|
"onUpdate:modelValue": t[11] || (t[11] = (c) => e.model.title = c)
|
|
17579
17702
|
}, null, 544)), [
|
|
17580
17703
|
[
|
|
17581
|
-
|
|
17704
|
+
ae,
|
|
17582
17705
|
e.model.title,
|
|
17583
17706
|
void 0,
|
|
17584
17707
|
{ lazy: !0 }
|
|
17585
17708
|
]
|
|
17586
17709
|
]) : _("", !0),
|
|
17587
|
-
i.lazy ? _("", !0) :
|
|
17710
|
+
i.lazy ? _("", !0) : Y((o(), d("input", {
|
|
17588
17711
|
key: 1,
|
|
17589
17712
|
class: "ux-field-focus ux-text-input-multiple",
|
|
17590
17713
|
placeholder: "Label",
|
|
@@ -17595,7 +17718,7 @@ function rS(e, t, n, r, s, i) {
|
|
|
17595
17718
|
"on:update:modelValue": t[15] || (t[15] = (...c) => i.entryTitleChanged && i.entryTitleChanged(...c)),
|
|
17596
17719
|
"onUpdate:modelValue": t[16] || (t[16] = (c) => e.model.title = c)
|
|
17597
17720
|
}, null, 544)), [
|
|
17598
|
-
[
|
|
17721
|
+
[ae, e.model.title]
|
|
17599
17722
|
])
|
|
17600
17723
|
])
|
|
17601
17724
|
]),
|
|
@@ -17605,7 +17728,7 @@ function rS(e, t, n, r, s, i) {
|
|
|
17605
17728
|
default: h(() => [
|
|
17606
17729
|
x("div", nS, [
|
|
17607
17730
|
iS,
|
|
17608
|
-
i.lazy ?
|
|
17731
|
+
i.lazy ? Y((o(), d("input", {
|
|
17609
17732
|
key: 0,
|
|
17610
17733
|
class: "ux-field-focus ux-text-input-multiple",
|
|
17611
17734
|
placeholder: "Value",
|
|
@@ -17615,13 +17738,13 @@ function rS(e, t, n, r, s, i) {
|
|
|
17615
17738
|
"onUpdate:modelValue": t[19] || (t[19] = (c) => e.model.value = c)
|
|
17616
17739
|
}, null, 544)), [
|
|
17617
17740
|
[
|
|
17618
|
-
|
|
17741
|
+
ae,
|
|
17619
17742
|
e.model.value,
|
|
17620
17743
|
void 0,
|
|
17621
17744
|
{ lazy: !0 }
|
|
17622
17745
|
]
|
|
17623
17746
|
]) : _("", !0),
|
|
17624
|
-
i.lazy ? _("", !0) :
|
|
17747
|
+
i.lazy ? _("", !0) : Y((o(), d("input", {
|
|
17625
17748
|
key: 1,
|
|
17626
17749
|
class: "ux-field-focus ux-text-input-multiple",
|
|
17627
17750
|
placeholder: "Value",
|
|
@@ -17630,7 +17753,7 @@ function rS(e, t, n, r, s, i) {
|
|
|
17630
17753
|
onKeydown: t[21] || (t[21] = ge(z((c) => e.add(), ["stop", "prevent"]), ["enter"])),
|
|
17631
17754
|
"onUpdate:modelValue": t[22] || (t[22] = (c) => e.model.value = c)
|
|
17632
17755
|
}, null, 544)), [
|
|
17633
|
-
[
|
|
17756
|
+
[ae, e.model.value]
|
|
17634
17757
|
])
|
|
17635
17758
|
])
|
|
17636
17759
|
]),
|
|
@@ -17825,7 +17948,7 @@ const cS = {
|
|
|
17825
17948
|
return this.field ? this.field.syntax : "json";
|
|
17826
17949
|
}
|
|
17827
17950
|
},
|
|
17828
|
-
mixins: [
|
|
17951
|
+
mixins: [ie],
|
|
17829
17952
|
methods: {
|
|
17830
17953
|
enterPress() {
|
|
17831
17954
|
},
|
|
@@ -17927,7 +18050,7 @@ const bS = {
|
|
|
17927
18050
|
type: [String, Array]
|
|
17928
18051
|
}
|
|
17929
18052
|
},
|
|
17930
|
-
mixins: [
|
|
18053
|
+
mixins: [ie],
|
|
17931
18054
|
methods: {
|
|
17932
18055
|
enterPress() {
|
|
17933
18056
|
},
|
|
@@ -18086,7 +18209,7 @@ const DS = {
|
|
|
18086
18209
|
// return this.field ? this.field.syntax : 'json';
|
|
18087
18210
|
// }
|
|
18088
18211
|
},
|
|
18089
|
-
mixins: [
|
|
18212
|
+
mixins: [ie],
|
|
18090
18213
|
methods: {
|
|
18091
18214
|
getNewDefaultEntry() {
|
|
18092
18215
|
return "";
|
|
@@ -18186,7 +18309,7 @@ var ki = {}, RS = {
|
|
|
18186
18309
|
};
|
|
18187
18310
|
(function(e, t) {
|
|
18188
18311
|
(function(n) {
|
|
18189
|
-
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) {
|
|
18190
18313
|
var st = new Error(N + " at character " + V);
|
|
18191
18314
|
throw st.index = V, st.description = N, st;
|
|
18192
18315
|
}, Me = !0, xe = { "-": Me, "!": Me, "~": Me, "+": Me }, we = {
|
|
@@ -18252,16 +18375,16 @@ var ki = {}, RS = {
|
|
|
18252
18375
|
for (var E = de(V); E === 32 || E === 9 || E === 10 || E === 13; )
|
|
18253
18376
|
E = de(++V);
|
|
18254
18377
|
}, zt = function() {
|
|
18255
|
-
var E =
|
|
18256
|
-
if (at(), de(V) ===
|
|
18257
|
-
if (V++, P = zt(), P ||
|
|
18258
|
-
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), {
|
|
18259
18382
|
type: g,
|
|
18260
18383
|
test: E,
|
|
18261
18384
|
consequent: P,
|
|
18262
18385
|
alternate: Z
|
|
18263
18386
|
};
|
|
18264
|
-
|
|
18387
|
+
G("Expected :", V);
|
|
18265
18388
|
} else
|
|
18266
18389
|
return E;
|
|
18267
18390
|
}, Zr = function() {
|
|
@@ -18272,26 +18395,26 @@ var ki = {}, RS = {
|
|
|
18272
18395
|
E = E.substr(0, --P);
|
|
18273
18396
|
}
|
|
18274
18397
|
return !1;
|
|
18275
|
-
},
|
|
18276
|
-
var E, P, Z,
|
|
18398
|
+
}, Uo = function() {
|
|
18399
|
+
var E, P, Z, se, Et, Je, gt, Ht, es;
|
|
18277
18400
|
if (Je = Rn(), P = Zr(), !P)
|
|
18278
18401
|
return Je;
|
|
18279
|
-
for (Et = { value: P, prec: it(P) }, gt = Rn(), gt ||
|
|
18280
|
-
for (Et = { value: P, prec: Z }, es = P;
|
|
18281
|
-
gt =
|
|
18282
|
-
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);
|
|
18283
18406
|
}
|
|
18284
|
-
for (Ht =
|
|
18285
|
-
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;
|
|
18286
18409
|
return E;
|
|
18287
18410
|
}, Rn = function() {
|
|
18288
18411
|
var E, P, Z;
|
|
18289
18412
|
if (at(), E = de(V), _t(E) || E === w)
|
|
18290
|
-
return Uo();
|
|
18291
|
-
if (E === j || E === M)
|
|
18292
18413
|
return jo();
|
|
18293
|
-
if (E ===
|
|
18294
|
-
return
|
|
18414
|
+
if (E === j || E === H)
|
|
18415
|
+
return Ro();
|
|
18416
|
+
if (E === re)
|
|
18417
|
+
return Ho();
|
|
18295
18418
|
for (P = N.substr(V, Ce), Z = P.length; Z > 0; ) {
|
|
18296
18419
|
if (xe.hasOwnProperty(P) && (!rt(de(V)) || V + P.length < N.length && !Vt(de(V + P.length))))
|
|
18297
18420
|
return V += Z, {
|
|
@@ -18302,8 +18425,8 @@ var ki = {}, RS = {
|
|
|
18302
18425
|
};
|
|
18303
18426
|
P = P.substr(0, --Z);
|
|
18304
18427
|
}
|
|
18305
|
-
return rt(E) || E ===
|
|
18306
|
-
},
|
|
18428
|
+
return rt(E) || E === D ? Bo() : !1;
|
|
18429
|
+
}, jo = function() {
|
|
18307
18430
|
for (var E = "", P, Z; _t(de(V)); )
|
|
18308
18431
|
E += De(V++);
|
|
18309
18432
|
if (de(V) === w)
|
|
@@ -18312,20 +18435,20 @@ var ki = {}, RS = {
|
|
|
18312
18435
|
if (P = De(V), P === "e" || P === "E") {
|
|
18313
18436
|
for (E += De(V++), P = De(V), (P === "+" || P === "-") && (E += De(V++)); _t(de(V)); )
|
|
18314
18437
|
E += De(V++);
|
|
18315
|
-
_t(de(V - 1)) ||
|
|
18438
|
+
_t(de(V - 1)) || G("Expected exponent (" + E + De(V) + ")", V);
|
|
18316
18439
|
}
|
|
18317
|
-
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), {
|
|
18318
18441
|
type: a,
|
|
18319
18442
|
value: parseFloat(E),
|
|
18320
18443
|
raw: E
|
|
18321
18444
|
};
|
|
18322
|
-
},
|
|
18323
|
-
for (var E = "", P = De(V++), Z = !1,
|
|
18324
|
-
if (
|
|
18445
|
+
}, Ro = function() {
|
|
18446
|
+
for (var E = "", P = De(V++), Z = !1, se; V < fn; )
|
|
18447
|
+
if (se = De(V++), se === P) {
|
|
18325
18448
|
Z = !0;
|
|
18326
18449
|
break;
|
|
18327
|
-
} else if (
|
|
18328
|
-
switch (
|
|
18450
|
+
} else if (se === "\\")
|
|
18451
|
+
switch (se = De(V++), se) {
|
|
18329
18452
|
case "n":
|
|
18330
18453
|
E += `
|
|
18331
18454
|
`;
|
|
@@ -18346,18 +18469,18 @@ var ki = {}, RS = {
|
|
|
18346
18469
|
E += "\v";
|
|
18347
18470
|
break;
|
|
18348
18471
|
default:
|
|
18349
|
-
E +=
|
|
18472
|
+
E += se;
|
|
18350
18473
|
}
|
|
18351
18474
|
else
|
|
18352
|
-
E +=
|
|
18353
|
-
return Z ||
|
|
18475
|
+
E += se;
|
|
18476
|
+
return Z || G('Unclosed quote after "' + E + '"', V), {
|
|
18354
18477
|
type: a,
|
|
18355
18478
|
value: E,
|
|
18356
18479
|
raw: P + E + P
|
|
18357
18480
|
};
|
|
18358
18481
|
}, Jr = function() {
|
|
18359
18482
|
var E = de(V), P = V, Z;
|
|
18360
|
-
for (rt(E) ? V++ :
|
|
18483
|
+
for (rt(E) ? V++ : G("Unexpected " + De(V), V); V < fn && (E = de(V), Vt(E)); )
|
|
18361
18484
|
V++;
|
|
18362
18485
|
return Z = N.slice(P, V), Ve.hasOwnProperty(Z) ? {
|
|
18363
18486
|
type: a,
|
|
@@ -18368,53 +18491,53 @@ var ki = {}, RS = {
|
|
|
18368
18491
|
name: Z
|
|
18369
18492
|
};
|
|
18370
18493
|
}, Xr = function(E) {
|
|
18371
|
-
for (var P, Z = [],
|
|
18494
|
+
for (var P, Z = [], se, Et = !1, Je = 0; V < fn; )
|
|
18372
18495
|
if (at(), P = de(V), P === E) {
|
|
18373
|
-
Et = !0, V++, E ===
|
|
18496
|
+
Et = !0, V++, E === ee && Je && Je >= Z.length && G("Unexpected token " + String.fromCharCode(E), V);
|
|
18374
18497
|
break;
|
|
18375
18498
|
} else if (P === O) {
|
|
18376
18499
|
if (V++, Je++, Je !== Z.length) {
|
|
18377
|
-
if (E ===
|
|
18378
|
-
|
|
18500
|
+
if (E === ee)
|
|
18501
|
+
G("Unexpected token ,", V);
|
|
18379
18502
|
else if (E === ue)
|
|
18380
18503
|
for (var gt = Z.length; gt < Je; gt++)
|
|
18381
18504
|
Z.push(null);
|
|
18382
18505
|
}
|
|
18383
18506
|
} else
|
|
18384
|
-
|
|
18385
|
-
return Et ||
|
|
18386
|
-
},
|
|
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() {
|
|
18387
18510
|
var E, P;
|
|
18388
|
-
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; )
|
|
18389
18512
|
V++, E === w ? (at(), P = {
|
|
18390
18513
|
type: i,
|
|
18391
18514
|
computed: !1,
|
|
18392
18515
|
object: P,
|
|
18393
18516
|
property: Jr()
|
|
18394
|
-
}) : E ===
|
|
18517
|
+
}) : E === re ? (P = {
|
|
18395
18518
|
type: i,
|
|
18396
18519
|
computed: !0,
|
|
18397
18520
|
object: P,
|
|
18398
18521
|
property: zt()
|
|
18399
|
-
}, at(), E = de(V), E !== ue &&
|
|
18522
|
+
}, at(), E = de(V), E !== ue && G("Unclosed [", V), V++) : E === D && (P = {
|
|
18400
18523
|
type: u,
|
|
18401
|
-
arguments: Xr(
|
|
18524
|
+
arguments: Xr(ee),
|
|
18402
18525
|
callee: P
|
|
18403
18526
|
}), at(), E = de(V);
|
|
18404
18527
|
return P;
|
|
18405
|
-
},
|
|
18528
|
+
}, zo = function() {
|
|
18406
18529
|
V++;
|
|
18407
18530
|
var E = zt();
|
|
18408
|
-
if (at(), de(V) ===
|
|
18531
|
+
if (at(), de(V) === ee)
|
|
18409
18532
|
return V++, E;
|
|
18410
|
-
|
|
18411
|
-
},
|
|
18533
|
+
G("Unclosed (", V);
|
|
18534
|
+
}, Ho = function() {
|
|
18412
18535
|
return V++, {
|
|
18413
18536
|
type: b,
|
|
18414
18537
|
elements: Xr(ue)
|
|
18415
18538
|
};
|
|
18416
18539
|
}, Bn = [], Ni, Qr; V < fn; )
|
|
18417
|
-
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);
|
|
18418
18541
|
return Bn.length === 1 ? Bn[0] : {
|
|
18419
18542
|
type: r,
|
|
18420
18543
|
body: Bn
|
|
@@ -18555,11 +18678,11 @@ var YS = KS, ZS = qS, JS = GS, XS = YS;
|
|
|
18555
18678
|
function QS(e, t, n) {
|
|
18556
18679
|
return t === t ? XS(e, t, n) : ZS(e, JS, n);
|
|
18557
18680
|
}
|
|
18558
|
-
var
|
|
18681
|
+
var vo = QS, e2 = Fn, t2 = Ln, n2 = $n, i2 = "[object String]";
|
|
18559
18682
|
function r2(e) {
|
|
18560
18683
|
return typeof e == "string" || !t2(e) && n2(e) && e2(e) == i2;
|
|
18561
18684
|
}
|
|
18562
|
-
var s2 = r2, a2 =
|
|
18685
|
+
var s2 = r2, a2 = yo;
|
|
18563
18686
|
function l2(e) {
|
|
18564
18687
|
var t = a2(e), n = t % 1;
|
|
18565
18688
|
return t === t ? n ? t - n : t : 0;
|
|
@@ -18580,7 +18703,7 @@ var m2 = f2, h2 = Fn, p2 = $n, y2 = "[object Arguments]";
|
|
|
18580
18703
|
function _2(e) {
|
|
18581
18704
|
return p2(e) && h2(e) == y2;
|
|
18582
18705
|
}
|
|
18583
|
-
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() {
|
|
18584
18707
|
return arguments;
|
|
18585
18708
|
}()) ? da : function(e) {
|
|
18586
18709
|
return v2(e) && b2.call(e, "callee") && !k2.call(e, "callee");
|
|
@@ -18600,11 +18723,11 @@ var O2 = T2;
|
|
|
18600
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;
|
|
18601
18724
|
e.exports = f;
|
|
18602
18725
|
})(S2, xi);
|
|
18603
|
-
var C2 = Fn, V2 =
|
|
18604
|
-
|
|
18605
|
-
|
|
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;
|
|
18606
18729
|
function eT(e) {
|
|
18607
|
-
return E2(e) && V2(e.length) && !!
|
|
18730
|
+
return E2(e) && V2(e.length) && !!oe[C2(e)];
|
|
18608
18731
|
}
|
|
18609
18732
|
var tT = eT;
|
|
18610
18733
|
function nT(e) {
|
|
@@ -18630,7 +18753,7 @@ var iT = nT, wi = {}, rT = {
|
|
|
18630
18753
|
}();
|
|
18631
18754
|
e.exports = l;
|
|
18632
18755
|
})(rT, wi);
|
|
18633
|
-
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;
|
|
18634
18757
|
function _T(e, t) {
|
|
18635
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;
|
|
18636
18759
|
for (var f in e)
|
|
@@ -18669,7 +18792,7 @@ var LT = NT, PT = c2, UT = LT;
|
|
|
18669
18792
|
function jT(e) {
|
|
18670
18793
|
return e == null ? [] : PT(e, UT(e));
|
|
18671
18794
|
}
|
|
18672
|
-
var RT = jT, BT =
|
|
18795
|
+
var RT = jT, BT = vo, zT = Gr, HT = s2, qT = o2, WT = RT, GT = Math.max;
|
|
18673
18796
|
function KT(e, t, n, r) {
|
|
18674
18797
|
e = zT(e) ? e : WT(e), n = n && !r ? qT(n) : 0;
|
|
18675
18798
|
var s = e.length;
|
|
@@ -18758,7 +18881,7 @@ const QT = Array.from({ length: 6 }, (e, t) => new Date().getFullYear() + t).map
|
|
|
18758
18881
|
value: t
|
|
18759
18882
|
};
|
|
18760
18883
|
}), eO = {
|
|
18761
|
-
mixins: [
|
|
18884
|
+
mixins: [ie],
|
|
18762
18885
|
components: {
|
|
18763
18886
|
// StripeElements,
|
|
18764
18887
|
// StripeElement,
|
|
@@ -19047,7 +19170,7 @@ const QT = Array.from({ length: 6 }, (e, t) => new Date().getFullYear() + t).map
|
|
|
19047
19170
|
};
|
|
19048
19171
|
}
|
|
19049
19172
|
}
|
|
19050
|
-
}, 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 = {
|
|
19051
19174
|
key: 0,
|
|
19052
19175
|
class: "grand-total"
|
|
19053
19176
|
}, lO = /* @__PURE__ */ jn(() => /* @__PURE__ */ x("td", null, [
|
|
@@ -19154,7 +19277,7 @@ const mO = {
|
|
|
19154
19277
|
// type: [Object, Array],
|
|
19155
19278
|
}
|
|
19156
19279
|
},
|
|
19157
|
-
mixins: [
|
|
19280
|
+
mixins: [ie],
|
|
19158
19281
|
created() {
|
|
19159
19282
|
this.model = this.model;
|
|
19160
19283
|
},
|
|
@@ -19262,7 +19385,7 @@ function xO(e, t, n, r, s, i) {
|
|
|
19262
19385
|
e.showDescription ? (o(), d("div", yO, v(e.description), 1)) : _("", !0),
|
|
19263
19386
|
i.selectableOptions.length ? (o(), d(S, { key: 2 }, [
|
|
19264
19387
|
e.singleValue ? (o(), d("div", _O, [
|
|
19265
|
-
|
|
19388
|
+
q(e.$slots, "default", {}, () => [
|
|
19266
19389
|
m(a, { tag: "div" }, {
|
|
19267
19390
|
default: h(() => [
|
|
19268
19391
|
T(v(i.summary), 1)
|
|
@@ -19271,7 +19394,7 @@ function xO(e, t, n, r, s, i) {
|
|
|
19271
19394
|
})
|
|
19272
19395
|
], !0)
|
|
19273
19396
|
])) : _("", !0),
|
|
19274
|
-
|
|
19397
|
+
Y(x("select", {
|
|
19275
19398
|
onFocus: t[0] || (t[0] = (...l) => e.touch && e.touch(...l)),
|
|
19276
19399
|
multiple: e.multiValue,
|
|
19277
19400
|
"onUpdate:modelValue": t[1] || (t[1] = (l) => e.model = l)
|
|
@@ -19306,7 +19429,7 @@ const TO = {
|
|
|
19306
19429
|
// type: [Object, Array],
|
|
19307
19430
|
}
|
|
19308
19431
|
},
|
|
19309
|
-
mixins: [
|
|
19432
|
+
mixins: [ie],
|
|
19310
19433
|
created() {
|
|
19311
19434
|
this.model = this.model;
|
|
19312
19435
|
},
|
|
@@ -19393,7 +19516,7 @@ function IO(e, t, n, r, s, i) {
|
|
|
19393
19516
|
])) : _("", !0),
|
|
19394
19517
|
e.showDescription ? (o(), d("div", VO, v(e.description), 1)) : _("", !0),
|
|
19395
19518
|
e.singleValue ? (o(), d("div", EO, [
|
|
19396
|
-
|
|
19519
|
+
q(e.$slots, "default", {}, () => [
|
|
19397
19520
|
m(a, { tag: "div" }, {
|
|
19398
19521
|
default: h(() => [
|
|
19399
19522
|
T(v(i.summary), 1)
|
|
@@ -19402,7 +19525,7 @@ function IO(e, t, n, r, s, i) {
|
|
|
19402
19525
|
})
|
|
19403
19526
|
], !0)
|
|
19404
19527
|
])) : _("", !0),
|
|
19405
|
-
|
|
19528
|
+
Y(x("select", {
|
|
19406
19529
|
onFocus: t[0] || (t[0] = (...l) => e.touch && e.touch(...l)),
|
|
19407
19530
|
multiple: e.multiValue,
|
|
19408
19531
|
"onUpdate:modelValue": t[1] || (t[1] = (l) => e.model = l)
|
|
@@ -19792,11 +19915,11 @@ const GO = {
|
|
|
19792
19915
|
InternalFieldCreator: qO,
|
|
19793
19916
|
ButtonSelect: Dw,
|
|
19794
19917
|
NativeSelect: Ct,
|
|
19795
|
-
DateField:
|
|
19918
|
+
DateField: mo,
|
|
19796
19919
|
TimeField: o0,
|
|
19797
19920
|
DateRange: p0,
|
|
19798
|
-
TextField:
|
|
19799
|
-
CurrencyField:
|
|
19921
|
+
TextField: fo,
|
|
19922
|
+
CurrencyField: co,
|
|
19800
19923
|
TextArea: Gb,
|
|
19801
19924
|
Checkbox: k0,
|
|
19802
19925
|
FilterInput: cx,
|
|
@@ -19808,11 +19931,11 @@ const GO = {
|
|
|
19808
19931
|
BooleanSwitch: Xx,
|
|
19809
19932
|
FieldGroup: xw,
|
|
19810
19933
|
ContentSelect: oo,
|
|
19811
|
-
TypeSelect:
|
|
19812
|
-
ScopeSelect:
|
|
19934
|
+
TypeSelect: K1,
|
|
19935
|
+
ScopeSelect: uo,
|
|
19813
19936
|
FieldSelect: sa,
|
|
19814
|
-
TimezoneSelect:
|
|
19815
|
-
PhoneNumberInput:
|
|
19937
|
+
TimezoneSelect: $v,
|
|
19938
|
+
PhoneNumberInput: Sv,
|
|
19816
19939
|
Upload: dw,
|
|
19817
19940
|
ObjectField: jw,
|
|
19818
19941
|
OptionsManager: sS,
|
|
@@ -20214,7 +20337,7 @@ const GO = {
|
|
|
20214
20337
|
class: "ux-field-message"
|
|
20215
20338
|
};
|
|
20216
20339
|
function YO(e, t, n, r, s, i) {
|
|
20217
|
-
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");
|
|
20218
20341
|
return i.visible ? (o(), d("div", {
|
|
20219
20342
|
key: 0,
|
|
20220
20343
|
class: L(["ux-field", i.classes]),
|
|
@@ -20299,7 +20422,7 @@ function YO(e, t, n, r, s, i) {
|
|
|
20299
20422
|
"onUpdate:modelValue": t[10] || (t[10] = (A) => i.fieldModel = A)
|
|
20300
20423
|
}, null, 8, ["onTouched", "field", "modelValue"])) : _("", !0),
|
|
20301
20424
|
i.widget == "group" ? (o(), d(S, { key: 12 }, [
|
|
20302
|
-
i.asObject ? (o(), k(
|
|
20425
|
+
i.asObject ? (o(), k(H, {
|
|
20303
20426
|
key: 0,
|
|
20304
20427
|
trail: i.currentTrail,
|
|
20305
20428
|
paymentConfiguration: n.paymentConfiguration,
|
|
@@ -20314,7 +20437,7 @@ function YO(e, t, n, r, s, i) {
|
|
|
20314
20437
|
parentModel: n.parentModel,
|
|
20315
20438
|
modelValue: i.fieldModel,
|
|
20316
20439
|
"onUpdate:modelValue": t[11] || (t[11] = (A) => i.fieldModel = A)
|
|
20317
|
-
}, 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, {
|
|
20318
20441
|
key: 1,
|
|
20319
20442
|
trail: n.trail,
|
|
20320
20443
|
paymentConfiguration: n.paymentConfiguration,
|
|
@@ -20331,7 +20454,7 @@ function YO(e, t, n, r, s, i) {
|
|
|
20331
20454
|
"onUpdate:modelValue": t[12] || (t[12] = (A) => i.sourceModel = A)
|
|
20332
20455
|
}, null, 8, ["trail", "paymentConfiguration", "includeOfficeOnly", "submission", "ignoreDefaults", "sandbox", "onForm:state", "onTouched", "field", "parentModel", "modelValue"]))
|
|
20333
20456
|
], 64)) : _("", !0),
|
|
20334
|
-
i.widget == "form" ? (o(), k(
|
|
20457
|
+
i.widget == "form" ? (o(), k(H, {
|
|
20335
20458
|
key: 13,
|
|
20336
20459
|
trail: i.currentTrail,
|
|
20337
20460
|
paymentConfiguration: n.paymentConfiguration,
|
|
@@ -20347,21 +20470,21 @@ function YO(e, t, n, r, s, i) {
|
|
|
20347
20470
|
modelValue: i.fieldModel,
|
|
20348
20471
|
"onUpdate:modelValue": t[13] || (t[13] = (A) => i.fieldModel = A)
|
|
20349
20472
|
}, null, 8, ["trail", "paymentConfiguration", "includeOfficeOnly", "submission", "ignoreDefaults", "sandbox", "onForm:state", "onTouched", "field", "parentModel", "modelValue"])) : _("", !0),
|
|
20350
|
-
i.widget == "field-select" ? (o(), k(
|
|
20473
|
+
i.widget == "field-select" ? (o(), k(D, {
|
|
20351
20474
|
key: 14,
|
|
20352
20475
|
onTouched: i.touch,
|
|
20353
20476
|
field: i.actualField,
|
|
20354
20477
|
modelValue: i.fieldModel,
|
|
20355
20478
|
"onUpdate:modelValue": t[14] || (t[14] = (A) => i.fieldModel = A)
|
|
20356
20479
|
}, null, 8, ["onTouched", "field", "modelValue"])) : _("", !0),
|
|
20357
|
-
i.widget == "select" ? (o(), k(
|
|
20480
|
+
i.widget == "select" ? (o(), k(ee, {
|
|
20358
20481
|
key: 15,
|
|
20359
20482
|
onTouched: i.touch,
|
|
20360
20483
|
field: i.actualField,
|
|
20361
20484
|
modelValue: i.fieldModel,
|
|
20362
20485
|
"onUpdate:modelValue": t[15] || (t[15] = (A) => i.fieldModel = A)
|
|
20363
20486
|
}, null, 8, ["onTouched", "field", "modelValue"])) : _("", !0),
|
|
20364
|
-
i.widget == "button" ? (o(), k(
|
|
20487
|
+
i.widget == "button" ? (o(), k(re, {
|
|
20365
20488
|
key: 16,
|
|
20366
20489
|
onTouched: i.touch,
|
|
20367
20490
|
field: i.actualField,
|
|
@@ -20375,7 +20498,7 @@ function YO(e, t, n, r, s, i) {
|
|
|
20375
20498
|
modelValue: i.fieldModel,
|
|
20376
20499
|
"onUpdate:modelValue": t[17] || (t[17] = (A) => i.fieldModel = A)
|
|
20377
20500
|
}, null, 8, ["onTouched", "field", "modelValue"])) : _("", !0),
|
|
20378
|
-
i.widget == "currency" ? (o(), k(
|
|
20501
|
+
i.widget == "currency" ? (o(), k(W, {
|
|
20379
20502
|
key: 18,
|
|
20380
20503
|
onTouched: i.touch,
|
|
20381
20504
|
field: i.actualField,
|
|
@@ -20389,14 +20512,14 @@ function YO(e, t, n, r, s, i) {
|
|
|
20389
20512
|
modelValue: i.fieldModel,
|
|
20390
20513
|
"onUpdate:modelValue": t[19] || (t[19] = (A) => i.fieldModel = A)
|
|
20391
20514
|
}, null, 8, ["onTouched", "field", "modelValue"])) : _("", !0),
|
|
20392
|
-
i.widget == "datefield" ? (o(), k(
|
|
20515
|
+
i.widget == "datefield" ? (o(), k(le, {
|
|
20393
20516
|
key: 20,
|
|
20394
20517
|
onTouched: i.touch,
|
|
20395
20518
|
field: i.actualField,
|
|
20396
20519
|
modelValue: i.fieldModel,
|
|
20397
20520
|
"onUpdate:modelValue": t[20] || (t[20] = (A) => i.fieldModel = A)
|
|
20398
20521
|
}, null, 8, ["onTouched", "field", "modelValue"])) : _("", !0),
|
|
20399
|
-
i.widget == "daterange" ? (o(), k(
|
|
20522
|
+
i.widget == "daterange" ? (o(), k(G, {
|
|
20400
20523
|
key: 21,
|
|
20401
20524
|
onTouched: i.touch,
|
|
20402
20525
|
field: i.actualField,
|
|
@@ -20720,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
|
|
|
20720
20843
|
function vC(e) {
|
|
20721
20844
|
return gC.test(e);
|
|
20722
20845
|
}
|
|
20723
|
-
var bC = vC,
|
|
20724
|
-
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("|") + ")",
|
|
20725
20848
|
NC + "+" + ya + "(?=" + [ma, Yt + ha, "$"].join("|") + ")",
|
|
20726
20849
|
Yt + "?" + ha + "+" + pa,
|
|
20727
20850
|
Yt + "+" + ya,
|
|
20728
20851
|
UC,
|
|
20729
20852
|
PC,
|
|
20730
|
-
|
|
20853
|
+
Co,
|
|
20731
20854
|
RC
|
|
20732
20855
|
].join("|"), "g");
|
|
20733
20856
|
function zC(e) {
|
|
@@ -20943,7 +21066,7 @@ function oV(e, t, n, r, s, i) {
|
|
|
20943
21066
|
return o(), d("div", {
|
|
20944
21067
|
class: L(["ux-form", i.formClass])
|
|
20945
21068
|
}, [
|
|
20946
|
-
|
|
21069
|
+
q(e.$slots, "fields", {
|
|
20947
21070
|
fields: i.renderFields,
|
|
20948
21071
|
hash: i.fieldHash
|
|
20949
21072
|
}, () => [
|
|
@@ -20975,7 +21098,7 @@ function oV(e, t, n, r, s, i) {
|
|
|
20975
21098
|
], !0)
|
|
20976
21099
|
], 2);
|
|
20977
21100
|
}
|
|
20978
|
-
const
|
|
21101
|
+
const Fo = /* @__PURE__ */ C(lV, [["render", oV], ["__scopeId", "data-v-5a0fe930"]]);
|
|
20979
21102
|
const or = "form.ready", uV = "form.processing", _a = "form.complete", ga = "form.error", dV = "form.intent", cV = {
|
|
20980
21103
|
methods: {
|
|
20981
21104
|
formStateUpdated(e) {
|
|
@@ -21086,7 +21209,7 @@ const or = "form.ready", uV = "form.processing", _a = "form.complete", ga = "for
|
|
|
21086
21209
|
}
|
|
21087
21210
|
},
|
|
21088
21211
|
components: {
|
|
21089
|
-
UxForm:
|
|
21212
|
+
UxForm: Fo,
|
|
21090
21213
|
StripeElements: lc,
|
|
21091
21214
|
StripeElement: ic
|
|
21092
21215
|
},
|
|
@@ -21223,7 +21346,7 @@ const or = "form.ready", uV = "form.processing", _a = "form.complete", ga = "for
|
|
|
21223
21346
|
return this.form.fields || [];
|
|
21224
21347
|
}
|
|
21225
21348
|
}
|
|
21226
|
-
}, 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"];
|
|
21227
21350
|
function vV(e, t, n, r, s, i) {
|
|
21228
21351
|
var b;
|
|
21229
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");
|
|
@@ -21251,7 +21374,7 @@ function vV(e, t, n, r, s, i) {
|
|
|
21251
21374
|
]),
|
|
21252
21375
|
_: 1
|
|
21253
21376
|
}, 8, ["onClick"])
|
|
21254
|
-
], 64)) : s.state === "form.complete" ?
|
|
21377
|
+
], 64)) : s.state === "form.complete" ? q(e.$slots, "default", {
|
|
21255
21378
|
key: 1,
|
|
21256
21379
|
reset: i.reset
|
|
21257
21380
|
}, () => [
|
|
@@ -21403,12 +21526,12 @@ const bV = {
|
|
|
21403
21526
|
function wV(e, t, n, r, s, i) {
|
|
21404
21527
|
const a = y("ux-icon");
|
|
21405
21528
|
return o(), d("div", kV, [
|
|
21406
|
-
|
|
21529
|
+
Y(x("input", {
|
|
21407
21530
|
ref: "input",
|
|
21408
21531
|
"onUpdate:modelValue": t[0] || (t[0] = (l) => i.model = l),
|
|
21409
21532
|
placeholder: n.placeholder
|
|
21410
21533
|
}, null, 8, xV), [
|
|
21411
|
-
[
|
|
21534
|
+
[ae, i.model]
|
|
21412
21535
|
]),
|
|
21413
21536
|
x("div", {
|
|
21414
21537
|
onClick: t[1] || (t[1] = (l) => i.clear()),
|
|
@@ -21433,7 +21556,7 @@ function SV(e) {
|
|
|
21433
21556
|
}
|
|
21434
21557
|
return n.length > 0 ? { invalid: `Unclosed tag(s): ${n.join(", ")}` } : { valid: !0 };
|
|
21435
21558
|
}
|
|
21436
|
-
const
|
|
21559
|
+
const $o = {
|
|
21437
21560
|
props: {
|
|
21438
21561
|
template: {
|
|
21439
21562
|
type: String
|
|
@@ -21495,7 +21618,7 @@ function CV(e, t, n, r, s, i) {
|
|
|
21495
21618
|
]),
|
|
21496
21619
|
_: 1
|
|
21497
21620
|
}, 8, ["onClick"])
|
|
21498
|
-
])) :
|
|
21621
|
+
])) : q(e.$slots, "default", { key: 1 }, void 0, !0);
|
|
21499
21622
|
}
|
|
21500
21623
|
const VV = /* @__PURE__ */ C(TV, [["render", CV], ["__scopeId", "data-v-72d1a309"]]), EV = {
|
|
21501
21624
|
props: {
|
|
@@ -21662,7 +21785,7 @@ const FV = {
|
|
|
21662
21785
|
Item: jl,
|
|
21663
21786
|
FieldGroup: IV,
|
|
21664
21787
|
// Compiler,
|
|
21665
|
-
Compile:
|
|
21788
|
+
Compile: $o,
|
|
21666
21789
|
ErrorBoundary: VV
|
|
21667
21790
|
// ButtonSelect,
|
|
21668
21791
|
// NativeSelect,
|
|
@@ -22088,7 +22211,7 @@ function eE(e, t, n, r, s, i) {
|
|
|
22088
22211
|
], 64))
|
|
22089
22212
|
], 2)) : _("", !0);
|
|
22090
22213
|
}
|
|
22091
|
-
const
|
|
22214
|
+
const No = /* @__PURE__ */ C(FV, [["render", eE], ["__scopeId", "data-v-d9878666"]]);
|
|
22092
22215
|
const tE = {
|
|
22093
22216
|
props: {
|
|
22094
22217
|
parentModel: {
|
|
@@ -22126,7 +22249,7 @@ const tE = {
|
|
|
22126
22249
|
};
|
|
22127
22250
|
},
|
|
22128
22251
|
components: {
|
|
22129
|
-
UxFieldRender:
|
|
22252
|
+
UxFieldRender: No
|
|
22130
22253
|
},
|
|
22131
22254
|
computed: {
|
|
22132
22255
|
renderClass() {
|
|
@@ -22147,7 +22270,7 @@ function nE(e, t, n, r, s, i) {
|
|
|
22147
22270
|
return o(), d("div", {
|
|
22148
22271
|
class: L(["ux-render", i.renderClass])
|
|
22149
22272
|
}, [
|
|
22150
|
-
|
|
22273
|
+
q(e.$slots, "render", { fields: n.fields }, () => [
|
|
22151
22274
|
(o(!0), d(S, null, F(i.renderFields, (l, u) => (o(), k(a, {
|
|
22152
22275
|
submission: n.submission,
|
|
22153
22276
|
field: l,
|
|
@@ -22431,7 +22554,7 @@ function Si(e) {
|
|
|
22431
22554
|
}
|
|
22432
22555
|
Si.prototype.add = Si.prototype.push = hE;
|
|
22433
22556
|
Si.prototype.has = pE;
|
|
22434
|
-
var yE = Si, _E =
|
|
22557
|
+
var yE = Si, _E = vo;
|
|
22435
22558
|
function gE(e, t) {
|
|
22436
22559
|
var n = e == null ? 0 : e.length;
|
|
22437
22560
|
return !!n && _E(e, t, 0) > -1;
|
|
@@ -22457,9 +22580,9 @@ function AE(e) {
|
|
|
22457
22580
|
n[++t] = r;
|
|
22458
22581
|
}), n;
|
|
22459
22582
|
}
|
|
22460
|
-
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) {
|
|
22461
22584
|
return new ur(e);
|
|
22462
|
-
} : 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;
|
|
22463
22586
|
function zE(e, t, n) {
|
|
22464
22587
|
var r = -1, s = LE, i = e.length, a = !0, l = [], u = l;
|
|
22465
22588
|
if (n)
|
|
@@ -22506,6 +22629,11 @@ function KE(e, t) {
|
|
|
22506
22629
|
switch (t) {
|
|
22507
22630
|
case "profile":
|
|
22508
22631
|
r = !0, n.push({
|
|
22632
|
+
title: "",
|
|
22633
|
+
path: "_id",
|
|
22634
|
+
shrink: !0,
|
|
22635
|
+
widget: "avatar"
|
|
22636
|
+
}), n.push({
|
|
22509
22637
|
title: "First Name",
|
|
22510
22638
|
key: "firstName",
|
|
22511
22639
|
shrink: !0
|
|
@@ -22516,9 +22644,6 @@ function KE(e, t) {
|
|
|
22516
22644
|
}), n.push({
|
|
22517
22645
|
title: "Email",
|
|
22518
22646
|
key: "emails"
|
|
22519
|
-
}), n.push({
|
|
22520
|
-
title: "Phone Number",
|
|
22521
|
-
key: "phoneNumbersInternational"
|
|
22522
22647
|
});
|
|
22523
22648
|
break;
|
|
22524
22649
|
case "definition":
|
|
@@ -22710,7 +22835,7 @@ const YE = {
|
|
|
22710
22835
|
components: {
|
|
22711
22836
|
Pager: lE,
|
|
22712
22837
|
NativeTable: S_,
|
|
22713
|
-
FilterBuilder:
|
|
22838
|
+
FilterBuilder: go,
|
|
22714
22839
|
Search: Yr,
|
|
22715
22840
|
UxField: Kr
|
|
22716
22841
|
},
|
|
@@ -23205,9 +23330,9 @@ const YE = {
|
|
|
23205
23330
|
actualOptions: this.options
|
|
23206
23331
|
};
|
|
23207
23332
|
}
|
|
23208
|
-
},
|
|
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));
|
|
23209
23334
|
function eA(e, t, n, r, s, i) {
|
|
23210
|
-
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");
|
|
23211
23336
|
return i.actualDefinition ? (o(), k(f, {
|
|
23212
23337
|
key: 0,
|
|
23213
23338
|
class: "content-browser"
|
|
@@ -23215,9 +23340,9 @@ function eA(e, t, n, r, s, i) {
|
|
|
23215
23340
|
default: h(() => [
|
|
23216
23341
|
m(f, { class: "browser-body" }, {
|
|
23217
23342
|
default: h(() => [
|
|
23218
|
-
m(
|
|
23343
|
+
m(H, null, {
|
|
23219
23344
|
default: h(() => [
|
|
23220
|
-
m(
|
|
23345
|
+
m(H, {
|
|
23221
23346
|
class: L({ loading: s.loading })
|
|
23222
23347
|
}, {
|
|
23223
23348
|
default: h(() => [
|
|
@@ -23226,7 +23351,7 @@ function eA(e, t, n, r, s, i) {
|
|
|
23226
23351
|
m(f, null, {
|
|
23227
23352
|
default: h(() => [
|
|
23228
23353
|
s.dataSource ? (o(), d(S, { key: 0 }, [
|
|
23229
|
-
|
|
23354
|
+
q(e.$slots, "abovecontent", {}, void 0, !0),
|
|
23230
23355
|
i.boundaryMessage ? (o(), k(f, {
|
|
23231
23356
|
key: 0,
|
|
23232
23357
|
class: "empty"
|
|
@@ -23293,7 +23418,7 @@ function eA(e, t, n, r, s, i) {
|
|
|
23293
23418
|
m(g, null, {
|
|
23294
23419
|
default: h(() => [
|
|
23295
23420
|
(o(!0), d(S, null, F(i.selectableFields, ($) => (o(), k(p, {
|
|
23296
|
-
onClick: (
|
|
23421
|
+
onClick: (le) => i.toggleField($),
|
|
23297
23422
|
key: $.path
|
|
23298
23423
|
}, {
|
|
23299
23424
|
default: h(() => [
|
|
@@ -23358,7 +23483,7 @@ function eA(e, t, n, r, s, i) {
|
|
|
23358
23483
|
}),
|
|
23359
23484
|
s.dataSource && !i.boundaryMessage ? (o(), k(j, { key: 0 }, {
|
|
23360
23485
|
default: h(() => [
|
|
23361
|
-
|
|
23486
|
+
q(e.$slots, "footera", {}, void 0, !0),
|
|
23362
23487
|
x("div", ZE, [
|
|
23363
23488
|
m(O, {
|
|
23364
23489
|
page: s.page,
|
|
@@ -23366,7 +23491,7 @@ function eA(e, t, n, r, s, i) {
|
|
|
23366
23491
|
total: i.totalItems
|
|
23367
23492
|
}, null, 8, ["page", "total"])
|
|
23368
23493
|
]),
|
|
23369
|
-
|
|
23494
|
+
q(e.$slots, "footerb", {}, void 0, !0)
|
|
23370
23495
|
]),
|
|
23371
23496
|
_: 3
|
|
23372
23497
|
})) : _("", !0)
|
|
@@ -23381,10 +23506,10 @@ function eA(e, t, n, r, s, i) {
|
|
|
23381
23506
|
class: "filter-column"
|
|
23382
23507
|
}, {
|
|
23383
23508
|
default: h(() => [
|
|
23384
|
-
|
|
23509
|
+
q(e.$slots, "abovefilter", {}, void 0, !0),
|
|
23385
23510
|
m(ue, null, {
|
|
23386
23511
|
default: h(() => [
|
|
23387
|
-
m(
|
|
23512
|
+
m(D, {
|
|
23388
23513
|
modelValue: s.keywords,
|
|
23389
23514
|
"onUpdate:modelValue": t[2] || (t[2] = ($) => s.keywords = $),
|
|
23390
23515
|
loading: i.searching,
|
|
@@ -23393,14 +23518,14 @@ function eA(e, t, n, r, s, i) {
|
|
|
23393
23518
|
}, null, 8, ["modelValue", "loading"]),
|
|
23394
23519
|
JE,
|
|
23395
23520
|
n.dateFilterEnabled ? (o(), d("div", XE, [
|
|
23396
|
-
m(
|
|
23521
|
+
m(ee, {
|
|
23397
23522
|
field: i.dateRangeField,
|
|
23398
23523
|
modelValue: s.dateRangeFilter,
|
|
23399
23524
|
"onUpdate:modelValue": t[3] || (t[3] = ($) => s.dateRangeFilter = $)
|
|
23400
23525
|
}, null, 8, ["field", "modelValue"])
|
|
23401
23526
|
])) : _("", !0),
|
|
23402
23527
|
QE,
|
|
23403
|
-
m(
|
|
23528
|
+
m(re, {
|
|
23404
23529
|
definition: i.actualDefinition,
|
|
23405
23530
|
modelValue: s.actualFilter,
|
|
23406
23531
|
"onUpdate:modelValue": t[4] || (t[4] = ($) => s.actualFilter = $)
|
|
@@ -23408,7 +23533,7 @@ function eA(e, t, n, r, s, i) {
|
|
|
23408
23533
|
]),
|
|
23409
23534
|
_: 1
|
|
23410
23535
|
}),
|
|
23411
|
-
|
|
23536
|
+
q(e.$slots, "belowfilter", {}, void 0, !0)
|
|
23412
23537
|
]),
|
|
23413
23538
|
_: 3
|
|
23414
23539
|
})) : _("", !0)
|
|
@@ -23418,7 +23543,7 @@ function eA(e, t, n, r, s, i) {
|
|
|
23418
23543
|
]),
|
|
23419
23544
|
_: 3
|
|
23420
23545
|
}),
|
|
23421
|
-
s.loading ? (o(), k(
|
|
23546
|
+
s.loading ? (o(), k(W, {
|
|
23422
23547
|
key: 0,
|
|
23423
23548
|
large: ""
|
|
23424
23549
|
})) : _("", !0)
|
|
@@ -23426,7 +23551,7 @@ function eA(e, t, n, r, s, i) {
|
|
|
23426
23551
|
_: 3
|
|
23427
23552
|
})) : _("", !0);
|
|
23428
23553
|
}
|
|
23429
|
-
const tA = /* @__PURE__ */ C(YE, [["render", eA], ["__scopeId", "data-v-
|
|
23554
|
+
const tA = /* @__PURE__ */ C(YE, [["render", eA], ["__scopeId", "data-v-5de84b21"]]);
|
|
23430
23555
|
const nA = {
|
|
23431
23556
|
props: {
|
|
23432
23557
|
modal: {
|
|
@@ -24007,7 +24132,7 @@ function FA(e, t, n, r, s, i) {
|
|
|
24007
24132
|
const $A = /* @__PURE__ */ C(AA, [["render", FA], ["__scopeId", "data-v-c9f9fa0a"]]);
|
|
24008
24133
|
const NA = {
|
|
24009
24134
|
components: {
|
|
24010
|
-
ScopeSelect:
|
|
24135
|
+
ScopeSelect: nb
|
|
24011
24136
|
// Search,
|
|
24012
24137
|
},
|
|
24013
24138
|
mixins: [cn],
|
|
@@ -24025,21 +24150,24 @@ const NA = {
|
|
|
24025
24150
|
// self.definition = definition;
|
|
24026
24151
|
// },
|
|
24027
24152
|
computed: {
|
|
24153
|
+
single() {
|
|
24154
|
+
return this.maximum === 1;
|
|
24155
|
+
},
|
|
24028
24156
|
type() {
|
|
24029
24157
|
return this.options.type;
|
|
24030
24158
|
},
|
|
24031
24159
|
action() {
|
|
24032
24160
|
return this.options.action;
|
|
24033
|
-
}
|
|
24161
|
+
},
|
|
24034
24162
|
// title() {
|
|
24035
24163
|
// return this.definition.title;
|
|
24036
24164
|
// },
|
|
24037
24165
|
// plural() {
|
|
24038
24166
|
// return this.definition.plural;
|
|
24039
24167
|
// },
|
|
24040
|
-
|
|
24041
|
-
|
|
24042
|
-
|
|
24168
|
+
maximum() {
|
|
24169
|
+
return this.options.maximum || 0;
|
|
24170
|
+
}
|
|
24043
24171
|
// browserOptions() {
|
|
24044
24172
|
// return this.options.browserOptions || {};
|
|
24045
24173
|
// },
|
|
@@ -24061,7 +24189,7 @@ const NA = {
|
|
|
24061
24189
|
this.close(this.model);
|
|
24062
24190
|
}
|
|
24063
24191
|
}
|
|
24064
|
-
}, 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" };
|
|
24065
24193
|
function RA(e, t, n, r, s, i) {
|
|
24066
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");
|
|
24067
24195
|
return o(), k(g, { class: "wrapper" }, {
|
|
@@ -24106,10 +24234,11 @@ function RA(e, t, n, r, s, i) {
|
|
|
24106
24234
|
x("div", jA, [
|
|
24107
24235
|
m(c, {
|
|
24108
24236
|
action: i.action,
|
|
24237
|
+
single: i.single,
|
|
24109
24238
|
type: i.type,
|
|
24110
24239
|
modelValue: s.model,
|
|
24111
24240
|
"onUpdate:modelValue": t[0] || (t[0] = (b) => s.model = b)
|
|
24112
|
-
}, null, 8, ["action", "type", "modelValue"])
|
|
24241
|
+
}, null, 8, ["action", "single", "type", "modelValue"])
|
|
24113
24242
|
])
|
|
24114
24243
|
]),
|
|
24115
24244
|
_: 1
|
|
@@ -24118,7 +24247,7 @@ function RA(e, t, n, r, s, i) {
|
|
|
24118
24247
|
_: 1
|
|
24119
24248
|
});
|
|
24120
24249
|
}
|
|
24121
|
-
const BA = /* @__PURE__ */ C(NA, [["render", RA], ["__scopeId", "data-v-
|
|
24250
|
+
const BA = /* @__PURE__ */ C(NA, [["render", RA], ["__scopeId", "data-v-e1cac3f3"]]);
|
|
24122
24251
|
function zA(e, t) {
|
|
24123
24252
|
return t.reduce((n, r) => Math.abs(r - e) < Math.abs(n - e) ? r : n);
|
|
24124
24253
|
}
|
|
@@ -24222,32 +24351,32 @@ const HA = `qik vue ui ${Zo}`, ka = {
|
|
|
24222
24351
|
UxPanelBody: jc,
|
|
24223
24352
|
UxPanelHeader: Hc,
|
|
24224
24353
|
UxPanelFooter: Kc,
|
|
24225
|
-
UxList:
|
|
24226
|
-
UxListItem:
|
|
24227
|
-
UxPill:
|
|
24354
|
+
UxList: ev,
|
|
24355
|
+
UxListItem: iv,
|
|
24356
|
+
UxPill: Zg,
|
|
24228
24357
|
// UxCircle: UXCircle,
|
|
24229
|
-
UxForm:
|
|
24358
|
+
UxForm: Fo,
|
|
24230
24359
|
UxSubmissionForm: va,
|
|
24231
24360
|
UxFormField: Kr,
|
|
24232
24361
|
UxSubmissionForm: va,
|
|
24233
24362
|
UxRender: iE,
|
|
24234
|
-
UxRenderField:
|
|
24235
|
-
UxIcon:
|
|
24236
|
-
UxMenu:
|
|
24237
|
-
UxMenuList:
|
|
24238
|
-
UxImage:
|
|
24239
|
-
UxVideo:
|
|
24240
|
-
UxButton:
|
|
24363
|
+
UxRenderField: No,
|
|
24364
|
+
UxIcon: Sg,
|
|
24365
|
+
UxMenu: Cg,
|
|
24366
|
+
UxMenuList: Ag,
|
|
24367
|
+
UxImage: $g,
|
|
24368
|
+
UxVideo: Rg,
|
|
24369
|
+
UxButton: hg,
|
|
24241
24370
|
UxCheckbox: Ll,
|
|
24242
24371
|
UxSwitch: Pl,
|
|
24243
|
-
UxLink:
|
|
24372
|
+
UxLink: kg,
|
|
24244
24373
|
UxTabset: Wf,
|
|
24245
24374
|
UxTab: Yf,
|
|
24246
24375
|
Avatar: sg,
|
|
24247
24376
|
Spinner: Nl,
|
|
24248
|
-
ProgressBar:
|
|
24377
|
+
ProgressBar: Gg,
|
|
24249
24378
|
UxModal: sA,
|
|
24250
|
-
Compile:
|
|
24379
|
+
Compile: $o
|
|
24251
24380
|
}, ZA = {
|
|
24252
24381
|
install(e, t) {
|
|
24253
24382
|
console.log(HA), t.date = Re, t.modals = Ti([]), t.modal = function(n) {
|
|
@@ -24303,7 +24432,7 @@ export {
|
|
|
24303
24432
|
sg as Avatar,
|
|
24304
24433
|
dS as CodeEditor,
|
|
24305
24434
|
tA as ContentBrowser,
|
|
24306
|
-
|
|
24435
|
+
ov as DateRange,
|
|
24307
24436
|
YA as Device,
|
|
24308
24437
|
nw as FileDrop,
|
|
24309
24438
|
hc as FlexBody,
|
|
@@ -24322,37 +24451,37 @@ export {
|
|
|
24322
24451
|
jc as PanelBody,
|
|
24323
24452
|
Kc as PanelFooter,
|
|
24324
24453
|
Hc as PanelHeader,
|
|
24325
|
-
|
|
24454
|
+
Gg as ProgressBar,
|
|
24326
24455
|
ZA as QikUI,
|
|
24327
24456
|
y_ as RememberScrollMixin,
|
|
24328
|
-
|
|
24329
|
-
|
|
24457
|
+
nb as ScopeSelect,
|
|
24458
|
+
ab as ScopeSelectButton,
|
|
24330
24459
|
Yr as Search,
|
|
24331
24460
|
rE as Selection,
|
|
24332
24461
|
Nl as Spinner,
|
|
24333
24462
|
ic as StripeElement,
|
|
24334
24463
|
lc as StripeElements,
|
|
24335
|
-
|
|
24464
|
+
hg as UXButton,
|
|
24336
24465
|
Ll as UXCheckbox,
|
|
24337
24466
|
zr as UXCircle,
|
|
24338
|
-
|
|
24467
|
+
Fo as UXForm,
|
|
24339
24468
|
Kr as UXFormField,
|
|
24340
|
-
|
|
24341
|
-
|
|
24342
|
-
|
|
24343
|
-
|
|
24344
|
-
|
|
24345
|
-
|
|
24346
|
-
|
|
24347
|
-
|
|
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,
|
|
24348
24477
|
iE as UXRender,
|
|
24349
|
-
|
|
24478
|
+
No as UXRenderField,
|
|
24350
24479
|
va as UXSubmissionForm,
|
|
24351
24480
|
Pl as UXSwitch,
|
|
24352
24481
|
Yf as UXTab,
|
|
24353
24482
|
S_ as UXTable,
|
|
24354
24483
|
Wf as UXTabset,
|
|
24355
|
-
|
|
24484
|
+
Rg as UXVideo,
|
|
24356
24485
|
cA as UxConfirmModal,
|
|
24357
24486
|
$A as UxContentModal,
|
|
24358
24487
|
sA as UxModal,
|