@qikdev/vue-ui 0.2.272 → 0.2.275

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.umd.js CHANGED
@@ -7,7 +7,7 @@
7
7
  t((V["@qikdev/vue-ui"] = {}), V.Vue, V["@qikdev/sdk"]));
8
8
  })(this, function (V, t, $r) {
9
9
  "use strict";
10
- const sc = "0.2.272";
10
+ const sc = "0.2.275";
11
11
  class ct extends Error {}
12
12
  class cc extends ct {
13
13
  constructor(n) {
@@ -3062,8 +3062,8 @@
3062
3062
  j = $ || Wl(a);
3063
3063
  if (j) return B.invalid(j);
3064
3064
  const w = p ? zl(a) : s ? ql(a) : a,
3065
- [G, M] = Ln(w, r, l),
3066
- D = new B({ ts: G, zone: l, o: M, loc: f });
3065
+ [K, M] = Ln(w, r, l),
3066
+ D = new B({ ts: K, zone: l, o: M, loc: f });
3067
3067
  return a.weekday && d && n.weekday !== D.weekday
3068
3068
  ? B.invalid(
3069
3069
  "mismatched weekday",
@@ -3581,21 +3581,21 @@
3581
3581
  if (e && typeof e == "object") return B.fromObject(e);
3582
3582
  throw new Te(`Unknown datetime argument: ${e}, of type ${typeof e}`);
3583
3583
  }
3584
- const Z = {};
3585
- (Z.format = function (e, n) {
3584
+ const G = {};
3585
+ (G.format = function (e, n) {
3586
3586
  return (e = e ? new Date(e) : new Date()), B.fromJSDate(e).toFormat(n);
3587
3587
  }),
3588
- (Z.timeago = function (e, n) {
3588
+ (G.timeago = function (e, n) {
3589
3589
  return B.fromJSDate(new Date(e)).toRelative(n);
3590
3590
  }),
3591
- (Z.getDatesBetween = function (e, n) {
3591
+ (G.getDatesBetween = function (e, n) {
3592
3592
  const o = [];
3593
3593
  let l = B.fromISO(e);
3594
3594
  const i = B.fromISO(n);
3595
3595
  for (; l <= i; ) o.push(l.toISODate()), (l = l.plus({ days: 1 }));
3596
3596
  return o;
3597
3597
  }),
3598
- (Z.getCalendarDateLimits = function (e) {
3598
+ (G.getCalendarDateLimits = function (e) {
3599
3599
  const n = e.getFullYear(),
3600
3600
  o = e.getMonth(),
3601
3601
  l = new Date(n, o, 1),
@@ -3614,18 +3614,18 @@
3614
3614
  u = a.toLocaleDateString("en-US", s);
3615
3615
  return { start: new Date(c), end: new Date(u) };
3616
3616
  }),
3617
- (Z.getMiddleDate = function (e, n) {
3617
+ (G.getMiddleDate = function (e, n) {
3618
3618
  const o = e.getTime(),
3619
3619
  l = n.getTime(),
3620
3620
  i = (o + l) / 2;
3621
3621
  return new Date(i);
3622
3622
  }),
3623
- (Z.shortTime = function (e) {
3623
+ (G.shortTime = function (e) {
3624
3624
  return e.toFormat("mm") === "00"
3625
3625
  ? e.toFormat("ha").toLowerCase()
3626
3626
  : e.toFormat("h:mma").toLowerCase();
3627
3627
  }),
3628
- (Z.readableEventDate = function ({
3628
+ (G.readableEventDate = function ({
3629
3629
  startDate: e,
3630
3630
  endDate: n,
3631
3631
  timezone: o,
@@ -3643,16 +3643,18 @@
3643
3643
  a = o && l.zoneName !== B.local().zoneName ? ` (${l.zoneName})` : "",
3644
3644
  c = l.year !== r.year ? ` ${l.year}` : "";
3645
3645
  return l.hasSame(i, "day")
3646
- ? `${Z.shortTime(l)}, ${l.toFormat("d MMMM")}${c}${a}`
3646
+ ? G.shortTime(l) === "12am"
3647
+ ? `${l.toFormat("d MMMM")}${c}${a}`
3648
+ : `${G.shortTime(l)}, ${l.toFormat("d MMMM")}${c}${a}`
3647
3649
  : l.hasSame(i, "month")
3648
3650
  ? `${l.toFormat("d")}-${i.toFormat("d MMMM")}${c}${a}`
3649
3651
  : l.hasSame(i, "year")
3650
3652
  ? `${l.toFormat("d MMM")} - ${i.toFormat("d MMM")}${c}${a}`
3651
3653
  : `${l.toFormat("d MMM yyyy")} - ${i.toFormat("d MMM yyyy")}${a}`;
3652
3654
  }),
3653
- (Z.readableDateRange = function (e, n) {
3655
+ (G.readableDateRange = function (e, n) {
3654
3656
  if (!e) return;
3655
- if (!n) return Z.readableDate(e);
3657
+ if (!n) return G.readableDate(e);
3656
3658
  (e = B.fromJSDate(new Date(e))), (n = B.fromJSDate(new Date(n)));
3657
3659
  const o = e.toFormat("yyyy"),
3658
3660
  l = e.toFormat("LLL yyyy"),
@@ -3663,16 +3665,18 @@
3663
3665
  c = n.toFormat("WW yyyy"),
3664
3666
  u = n.toFormat("d LLL yyyy");
3665
3667
  return r === u
3666
- ? `${Z.shortTime(e)} - ${Z.readableDate(n)}`
3668
+ ? G.shortTime(e) === "12am"
3669
+ ? `${G.readableDate(n)}`
3670
+ : `${G.shortTime(e)} - ${G.readableDate(n)}`
3667
3671
  : i === c
3668
- ? `${Z.readableDate(e)} - ${Z.readableDate(n)}`
3672
+ ? `${G.readableDate(e)} - ${G.readableDate(n)}`
3669
3673
  : l === s
3670
3674
  ? `${e.toFormat("d")} - ${n.toFormat("d LLL")}`
3671
3675
  : o === a
3672
- ? `${Z.readableDate(e)} - ${Z.readableDate(n)}`
3673
- : `${Z.readableDate(e)} - ${Z.readableDate(n)}`;
3676
+ ? `${G.readableDate(e)} - ${G.readableDate(n)}`
3677
+ : `${G.readableDate(e)} - ${G.readableDate(n)}`;
3674
3678
  }),
3675
- (Z.readableDate = function (e) {
3679
+ (G.readableDate = function (e) {
3676
3680
  if (!e) return;
3677
3681
  const n = new Date(),
3678
3682
  o = B.fromJSDate(n),
@@ -3685,16 +3689,18 @@
3685
3689
  c = s.toFormat("yyyy"),
3686
3690
  u = s.toFormat("LLL yyyy"),
3687
3691
  d = s.toFormat("WW yyyy");
3688
- if (s.toFormat("d LLL yyyy") === a) return `${Z.shortTime(s)} today`;
3692
+ if (s.toFormat("d LLL yyyy") === a) return `${G.shortTime(s)} today`;
3689
3693
  if (d === r)
3690
3694
  if (e > n) {
3691
3695
  const f = parseInt(o.toFormat("d"));
3692
3696
  return parseInt(s.toFormat("d")) - f === 1
3693
- ? `${Z.shortTime(s)} tomorrow`
3694
- : `${Z.shortTime(s)} ${s.toFormat("cccc")}`;
3697
+ ? `${G.shortTime(s)} tomorrow`
3698
+ : `${G.shortTime(s)} ${s.toFormat("cccc")}`;
3695
3699
  } else return `${s.toRelativeCalendar()}`;
3696
3700
  return u === i
3697
- ? `${Z.shortTime(s)} ${s.toFormat("d LLL")}`
3701
+ ? G.shortTime(s) === "12am"
3702
+ ? `${s.toFormat("d LLL")}`
3703
+ : `${G.shortTime(s)} ${s.toFormat("d LLL")}`
3698
3704
  : c === l
3699
3705
  ? s.toFormat("cccc d LLL")
3700
3706
  : s.toFormat("d LLL yyyy");
@@ -4209,7 +4215,7 @@
4209
4215
  function w() {
4210
4216
  return s === void 0 ? a : $(zo());
4211
4217
  }
4212
- function G() {
4218
+ function K() {
4213
4219
  var M = zo(),
4214
4220
  D = E(M);
4215
4221
  if (((l = arguments), (i = this), (c = M), D)) {
@@ -4218,7 +4224,7 @@
4218
4224
  }
4219
4225
  return s === void 0 && (s = setTimeout(S, n)), a;
4220
4226
  }
4221
- return (G.cancel = j), (G.flush = w), G;
4227
+ return (K.cancel = j), (K.flush = w), K;
4222
4228
  }
4223
4229
  var an = Pm;
4224
4230
  const gF = "",
@@ -4431,7 +4437,7 @@
4431
4437
  );
4432
4438
  },
4433
4439
  },
4434
- [["__scopeId", "data-v-dd52e89f"]],
4440
+ [["__scopeId", "data-v-1d7eba43"]],
4435
4441
  ),
4436
4442
  zm = {
4437
4443
  emits: ["mount", "unmount"],
@@ -5616,10 +5622,10 @@
5616
5622
  S = Object.keys(this.templateProps),
5617
5623
  $ = y.concat(E).concat(h).concat(S),
5618
5624
  j =
5619
- ((G = e),
5625
+ ((K = e),
5620
5626
  (M = {}),
5621
5627
  h.forEach(function (D) {
5622
- return qi(G, M, D);
5628
+ return qi(K, M, D);
5623
5629
  }),
5624
5630
  M),
5625
5631
  w = (function (D) {
@@ -5645,7 +5651,7 @@
5645
5651
  Object.assign({}, w),
5646
5652
  );
5647
5653
  }
5648
- var G, M;
5654
+ var K, M;
5649
5655
  },
5650
5656
  },
5651
5657
  SF = "",
@@ -6051,14 +6057,10 @@
6051
6057
  r = o || l || i;
6052
6058
  switch (this.typeKey) {
6053
6059
  case "event":
6054
- {
6055
- const s = n.startDate,
6056
- c = n.endDate;
6057
- if (e.$sdk.date)
6058
- return r
6059
- ? `${r} - ${e.$sdk.date.readableDateRange(s, c)}`
6060
- : `${e.$sdk.date.readableDateRange(s, c)}`;
6061
- }
6060
+ if ((n.startDate, n.endDate, e.$sdk.date))
6061
+ return r
6062
+ ? `${r} - ${e.$sdk.date.readableEventDate(n)}`
6063
+ : `${e.$sdk.date.readableEventDate(n)}`;
6062
6064
  break;
6063
6065
  }
6064
6066
  return r;
@@ -6086,7 +6088,7 @@
6086
6088
  }
6087
6089
  const eg = g(Jy, [
6088
6090
  ["render", vy],
6089
- ["__scopeId", "data-v-743aaea7"],
6091
+ ["__scopeId", "data-v-206fbd94"],
6090
6092
  ]),
6091
6093
  $F = "",
6092
6094
  tg = {
@@ -11691,7 +11693,7 @@
11691
11693
  } while (e !== l && (e = e.parentNode));
11692
11694
  return [n, o];
11693
11695
  }
11694
- function e1(e, n) {
11696
+ function eb(e, n) {
11695
11697
  for (var o in e)
11696
11698
  if (e.hasOwnProperty(o)) {
11697
11699
  for (var l in n)
@@ -11720,7 +11722,7 @@
11720
11722
  while ((o = o.parentNode));
11721
11723
  return ze();
11722
11724
  }
11723
- function t1(e, n) {
11725
+ function tb(e, n) {
11724
11726
  if (e && n) for (var o in n) n.hasOwnProperty(o) && (e[o] = n[o]);
11725
11727
  return e;
11726
11728
  }
@@ -11745,7 +11747,7 @@
11745
11747
  }
11746
11748
  };
11747
11749
  }
11748
- function n1() {
11750
+ function nb() {
11749
11751
  clearTimeout(mn), (mn = void 0);
11750
11752
  }
11751
11753
  function Ca(e, n, o) {
@@ -11761,7 +11763,7 @@
11761
11763
  : e.cloneNode(!0);
11762
11764
  }
11763
11765
  var Ee = "Sortable" + new Date().getTime();
11764
- function o1() {
11766
+ function ob() {
11765
11767
  var e = [],
11766
11768
  n;
11767
11769
  return {
@@ -11785,7 +11787,7 @@
11785
11787
  e.push(l);
11786
11788
  },
11787
11789
  removeAnimationState: function (l) {
11788
- e.splice(e1(e, { target: l }), 1);
11790
+ e.splice(eb(e, { target: l }), 1);
11789
11791
  },
11790
11792
  animateAll: function (l) {
11791
11793
  var i = this;
@@ -11811,7 +11813,7 @@
11811
11813
  !nr(d, m) &&
11812
11814
  (h.top - m.top) / (h.left - m.left) ===
11813
11815
  (d.top - m.top) / (d.left - m.left) &&
11814
- (c = l1(h, f, p, i.options)),
11816
+ (c = lb(h, f, p, i.options)),
11815
11817
  nr(m, d) ||
11816
11818
  ((u.prevFromRect = d),
11817
11819
  (u.prevToRect = m),
@@ -11849,7 +11851,7 @@
11849
11851
  (l.animatingX = !!d),
11850
11852
  (l.animatingY = !!m),
11851
11853
  O(l, "transform", "translate3d(" + d + "px," + m + "px,0)"),
11852
- (this.forRepaintDummy = r1(l)),
11854
+ (this.forRepaintDummy = rb(l)),
11853
11855
  O(
11854
11856
  l,
11855
11857
  "transition",
@@ -11871,10 +11873,10 @@
11871
11873
  },
11872
11874
  };
11873
11875
  }
11874
- function r1(e) {
11876
+ function rb(e) {
11875
11877
  return e.offsetWidth;
11876
11878
  }
11877
- function l1(e, n, o, l) {
11879
+ function lb(e, n, o, l) {
11878
11880
  return (
11879
11881
  (Math.sqrt(Math.pow(n.top - e.top, 2) + Math.pow(n.left - e.left, 2)) /
11880
11882
  Math.sqrt(Math.pow(n.top - o.top, 2) + Math.pow(n.left - o.left, 2))) *
@@ -11950,7 +11952,7 @@
11950
11952
  );
11951
11953
  },
11952
11954
  };
11953
- function i1(e) {
11955
+ function ib(e) {
11954
11956
  var n = e.sortable,
11955
11957
  o = e.rootEl,
11956
11958
  l = e.name,
@@ -11987,12 +11989,12 @@
11987
11989
  o && o.dispatchEvent(y), E[S] && E[S].call(n, y);
11988
11990
  }
11989
11991
  }
11990
- var a1 = ["evt"],
11992
+ var ab = ["evt"],
11991
11993
  Ce = function (n, o) {
11992
11994
  var l =
11993
11995
  arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : {},
11994
11996
  i = l.evt,
11995
- r = J_(l, a1);
11997
+ r = J_(l, ab);
11996
11998
  fn.pluginEvent.bind(F)(
11997
11999
  n,
11998
12000
  o,
@@ -12031,7 +12033,7 @@
12031
12033
  );
12032
12034
  };
12033
12035
  function _e(e) {
12034
- i1(
12036
+ ib(
12035
12037
  je(
12036
12038
  {
12037
12039
  putSortable: de,
@@ -12083,7 +12085,7 @@
12083
12085
  no = typeof document < "u",
12084
12086
  oo = ya,
12085
12087
  Ea = dn || Xe ? "cssFloat" : "float",
12086
- s1 = no && !Q_ && !ya && "draggable" in document.createElement("div"),
12088
+ sb = no && !Q_ && !ya && "draggable" in document.createElement("div"),
12087
12089
  Sa = (function () {
12088
12090
  if (no) {
12089
12091
  if (Xe) return !1;
@@ -12133,7 +12135,7 @@
12133
12135
  ? "vertical"
12134
12136
  : "horizontal";
12135
12137
  },
12136
- c1 = function (n, o, l) {
12138
+ cb = function (n, o, l) {
12137
12139
  var i = l ? n.left : n.top,
12138
12140
  r = l ? n.right : n.bottom,
12139
12141
  a = l ? n.width : n.height,
@@ -12142,7 +12144,7 @@
12142
12144
  u = l ? o.width : o.height;
12143
12145
  return i === s || r === c || i + a / 2 === s + u / 2;
12144
12146
  },
12145
- d1 = function (n, o) {
12147
+ db = function (n, o) {
12146
12148
  var l;
12147
12149
  return (
12148
12150
  Qn.some(function (i) {
@@ -12209,7 +12211,7 @@
12209
12211
  var bt = function (n) {
12210
12212
  if (x) {
12211
12213
  n = n.touches ? n.touches[0] : n;
12212
- var o = d1(n.clientX, n.clientY);
12214
+ var o = db(n.clientX, n.clientY);
12213
12215
  if (o) {
12214
12216
  var l = {};
12215
12217
  for (var i in n) n.hasOwnProperty(i) && (l[i] = n[i]);
@@ -12220,7 +12222,7 @@
12220
12222
  }
12221
12223
  }
12222
12224
  },
12223
- u1 = function (n) {
12225
+ ub = function (n) {
12224
12226
  x && x.parentNode[Ee]._isOutsideThisEl(n.target);
12225
12227
  };
12226
12228
  function F(e, n) {
@@ -12280,7 +12282,7 @@
12280
12282
  i.charAt(0) === "_" &&
12281
12283
  typeof this[i] == "function" &&
12282
12284
  (this[i] = this[i].bind(this));
12283
- (this.nativeDraggable = n.forceFallback ? !1 : s1),
12285
+ (this.nativeDraggable = n.forceFallback ? !1 : sb),
12284
12286
  this.nativeDraggable && (this.options.touchStartThreshold = 1),
12285
12287
  n.supportPointer
12286
12288
  ? W(e, "pointerdown", this._onTapStart)
@@ -12289,7 +12291,7 @@
12289
12291
  this.nativeDraggable && (W(e, "dragover", this), W(e, "dragenter", this)),
12290
12292
  Qn.push(this.el),
12291
12293
  n.store && n.store.get && this.sort(n.store.get(this) || []),
12292
- Ze(this, o1());
12294
+ Ze(this, ob());
12293
12295
  }
12294
12296
  F.prototype = {
12295
12297
  constructor: F,
@@ -12319,7 +12321,7 @@
12319
12321
  c,
12320
12322
  d = i.filter;
12321
12323
  if (
12322
- (_1(l),
12324
+ (_b(l),
12323
12325
  !x &&
12324
12326
  !(
12325
12327
  (/mousedown|pointerdown/.test(a) && n.button !== 0) ||
@@ -12491,7 +12493,7 @@
12491
12493
  _dragStarted: function (n, o) {
12492
12494
  if (((jt = !1), J && x)) {
12493
12495
  Ce("dragStarted", this, { evt: o }),
12494
- this.nativeDraggable && W(document, "dragover", u1);
12496
+ this.nativeDraggable && W(document, "dragover", ub);
12495
12497
  var l = this.options;
12496
12498
  !n && Ne(x, l.dragClass, !1),
12497
12499
  Ne(x, l.ghostClass, !0),
@@ -12793,7 +12795,7 @@
12793
12795
  $(!0)
12794
12796
  );
12795
12797
  var w = tr(o, s.draggable);
12796
- if (!w || (h1(n, p, this) && !w.animated)) {
12798
+ if (!w || (hb(n, p, this) && !w.animated)) {
12797
12799
  if (w === x) return $(!1);
12798
12800
  if (
12799
12801
  (w && o === n.target && (l = w),
@@ -12801,17 +12803,17 @@
12801
12803
  ro(J, o, x, i, l, r, n, !!l) !== !1)
12802
12804
  )
12803
12805
  return S(), o.appendChild(x), (te = o), j(), $(!0);
12804
- } else if (w && p1(n, p, this)) {
12805
- var G = At(o, 0, s, !0);
12806
- if (G === x) return $(!1);
12807
- if (((l = G), (r = ae(l)), ro(J, o, x, i, l, r, n, !1) !== !1))
12808
- return S(), o.insertBefore(x, G), (te = o), j(), $(!0);
12806
+ } else if (w && pb(n, p, this)) {
12807
+ var K = At(o, 0, s, !0);
12808
+ if (K === x) return $(!1);
12809
+ if (((l = K), (r = ae(l)), ro(J, o, x, i, l, r, n, !1) !== !1))
12810
+ return S(), o.insertBefore(x, K), (te = o), j(), $(!0);
12809
12811
  } else if (l.parentNode === o) {
12810
12812
  r = ae(l);
12811
12813
  var M = 0,
12812
12814
  D,
12813
12815
  A = x.parentNode !== o,
12814
- I = !c1(
12816
+ I = !cb(
12815
12817
  (x.animated && x.toRect) || i,
12816
12818
  (l.animated && l.toRect) || r,
12817
12819
  p,
@@ -12820,7 +12822,7 @@
12820
12822
  se = ba(l, "top", "top") || ba(x, "top", "top"),
12821
12823
  me = se ? se.scrollTop : void 0;
12822
12824
  Rt !== l && ((D = r[X]), (gn = !1), (vn = (!I && s.invertSwap) || A)),
12823
- (M = y1(
12825
+ (M = yb(
12824
12826
  n,
12825
12827
  l,
12826
12828
  r,
@@ -12848,7 +12850,7 @@
12848
12850
  return (
12849
12851
  (it === 1 || it === -1) && (ye = it === 1),
12850
12852
  (ar = !0),
12851
- setTimeout(f1, 30),
12853
+ setTimeout(fb, 30),
12852
12854
  S(),
12853
12855
  ye && !Ve
12854
12856
  ? o.appendChild(x)
@@ -13022,7 +13024,7 @@
13022
13024
  break;
13023
13025
  case "dragenter":
13024
13026
  case "dragover":
13025
- x && (this._onDragOver(n), m1(n));
13027
+ x && (this._onDragOver(n), mb(n));
13026
13028
  break;
13027
13029
  case "selectstart":
13028
13030
  n.preventDefault();
@@ -13042,7 +13044,7 @@
13042
13044
  )
13043
13045
  (o = l[i]),
13044
13046
  Re(o, a.draggable, this.el, !1) &&
13045
- n.push(o.getAttribute(a.dataIdAttr) || k1(o));
13047
+ n.push(o.getAttribute(a.dataIdAttr) || kb(o));
13046
13048
  return n;
13047
13049
  },
13048
13050
  sort: function (n, o) {
@@ -13119,7 +13121,7 @@
13119
13121
  }
13120
13122
  },
13121
13123
  };
13122
- function m1(e) {
13124
+ function mb(e) {
13123
13125
  e.dataTransfer && (e.dataTransfer.dropEffect = "move"),
13124
13126
  e.cancelable && e.preventDefault();
13125
13127
  }
@@ -13148,17 +13150,17 @@
13148
13150
  function sr(e) {
13149
13151
  e.draggable = !1;
13150
13152
  }
13151
- function f1() {
13153
+ function fb() {
13152
13154
  ar = !1;
13153
13155
  }
13154
- function p1(e, n, o) {
13156
+ function pb(e, n, o) {
13155
13157
  var l = ae(At(o.el, 0, o.options, !0)),
13156
13158
  i = 10;
13157
13159
  return n
13158
13160
  ? e.clientX < l.left - i || (e.clientY < l.top && e.clientX < l.right)
13159
13161
  : e.clientY < l.top - i || (e.clientY < l.bottom && e.clientX < l.left);
13160
13162
  }
13161
- function h1(e, n, o) {
13163
+ function hb(e, n, o) {
13162
13164
  var l = ae(tr(o.el, o.options.draggable)),
13163
13165
  i = 10;
13164
13166
  return n
@@ -13167,7 +13169,7 @@
13167
13169
  : (e.clientX > l.right && e.clientY > l.top) ||
13168
13170
  (e.clientX <= l.right && e.clientY > l.bottom + i);
13169
13171
  }
13170
- function y1(e, n, o, l, i, r, a, s) {
13172
+ function yb(e, n, o, l, i, r, a, s) {
13171
13173
  var c = l ? e.clientY : e.clientX,
13172
13174
  u = l ? o.height : o.width,
13173
13175
  d = l ? o.top : o.left,
@@ -13184,7 +13186,7 @@
13184
13186
  f = !0;
13185
13187
  else if (yn === 1 ? c < d + eo : c > m - eo) return -yn;
13186
13188
  } else if (c > d + (u * (1 - i)) / 2 && c < m - (u * (1 - i)) / 2)
13187
- return g1(n);
13189
+ return gb(n);
13188
13190
  }
13189
13191
  return (
13190
13192
  (f = f || a),
@@ -13195,10 +13197,10 @@
13195
13197
  : 0
13196
13198
  );
13197
13199
  }
13198
- function g1(e) {
13200
+ function gb(e) {
13199
13201
  return Fe(x) < Fe(e) ? 1 : -1;
13200
13202
  }
13201
- function k1(e) {
13203
+ function kb(e) {
13202
13204
  for (
13203
13205
  var n = e.tagName + e.className + e.src + e.href + e.textContent,
13204
13206
  o = n.length,
@@ -13209,7 +13211,7 @@
13209
13211
  l += n.charCodeAt(o);
13210
13212
  return l.toString(36);
13211
13213
  }
13212
- function _1(e) {
13214
+ function _b(e) {
13213
13215
  to.length = 0;
13214
13216
  for (var n = e.getElementsByTagName("input"), o = n.length; o--; ) {
13215
13217
  var l = n[o];
@@ -13234,7 +13236,7 @@
13234
13236
  is: function (n, o) {
13235
13237
  return !!Re(n, o, n, !1);
13236
13238
  },
13237
- extend: t1,
13239
+ extend: tb,
13238
13240
  throttle: wa,
13239
13241
  closest: Re,
13240
13242
  toggleClass: Ne,
@@ -13272,7 +13274,7 @@
13272
13274
  fr,
13273
13275
  io,
13274
13276
  _n;
13275
- function b1() {
13277
+ function bb() {
13276
13278
  function e() {
13277
13279
  this.defaults = {
13278
13280
  scroll: !0,
@@ -13312,7 +13314,7 @@
13312
13314
  q(document, "mousemove", this._handleFallbackAutoScroll)),
13313
13315
  Ma(),
13314
13316
  ao(),
13315
- n1();
13317
+ nb();
13316
13318
  },
13317
13319
  nulling: function () {
13318
13320
  (io = dr = kn = ur = _n = mr = fr = null), (re.length = 0);
@@ -13387,7 +13389,7 @@
13387
13389
  $ = h.right,
13388
13390
  j = h.width,
13389
13391
  w = h.height,
13390
- G = void 0,
13392
+ K = void 0,
13391
13393
  M = void 0,
13392
13394
  D = p.scrollWidth,
13393
13395
  A = p.scrollHeight,
@@ -13395,7 +13397,7 @@
13395
13397
  X = p.scrollLeft,
13396
13398
  se = p.scrollTop;
13397
13399
  p === c
13398
- ? ((G =
13400
+ ? ((K =
13399
13401
  j < D &&
13400
13402
  (I.overflowX === "auto" ||
13401
13403
  I.overflowX === "scroll" ||
@@ -13405,12 +13407,12 @@
13405
13407
  (I.overflowY === "auto" ||
13406
13408
  I.overflowY === "scroll" ||
13407
13409
  I.overflowY === "visible")))
13408
- : ((G =
13410
+ : ((K =
13409
13411
  j < D && (I.overflowX === "auto" || I.overflowX === "scroll")),
13410
13412
  (M =
13411
13413
  w < A && (I.overflowY === "auto" || I.overflowY === "scroll")));
13412
13414
  var me =
13413
- G &&
13415
+ K &&
13414
13416
  (Math.abs($ - i) <= a && X + j < D) -
13415
13417
  (Math.abs(S - i) <= a && !!X),
13416
13418
  pe =
@@ -13502,7 +13504,7 @@
13502
13504
  drop: Ia,
13503
13505
  }),
13504
13506
  Ze(yr, { pluginName: "removeOnSpill" }),
13505
- F.mount(new b1()),
13507
+ F.mount(new bb()),
13506
13508
  F.mount(yr, hr);
13507
13509
  function gr(e) {
13508
13510
  e.parentElement !== null && e.parentElement.removeChild(e);
@@ -13511,27 +13513,27 @@
13511
13513
  const l = o === 0 ? e.children[0] : e.children[o - 1].nextSibling;
13512
13514
  e.insertBefore(n, l);
13513
13515
  }
13514
- function x1() {
13516
+ function xb() {
13515
13517
  return typeof window < "u" ? window.console : global.console;
13516
13518
  }
13517
- const w1 = x1();
13518
- function C1(e) {
13519
+ const wb = xb();
13520
+ function Cb(e) {
13519
13521
  const n = Object.create(null);
13520
13522
  return function (l) {
13521
13523
  return n[l] || (n[l] = e(l));
13522
13524
  };
13523
13525
  }
13524
- const V1 = /-(\w)/g,
13525
- B1 = C1((e) => e.replace(V1, (n, o) => o.toUpperCase())),
13526
+ const Vb = /-(\w)/g,
13527
+ Bb = Cb((e) => e.replace(Vb, (n, o) => o.toUpperCase())),
13526
13528
  La = ["Start", "Add", "Remove", "Update", "End"],
13527
13529
  Aa = ["Choose", "Unchoose", "Sort", "Filter", "Clone"],
13528
13530
  Ua = ["Move"],
13529
- N1 = [Ua, La, Aa].flatMap((e) => e).map((e) => `on${e}`),
13531
+ Nb = [Ua, La, Aa].flatMap((e) => e).map((e) => `on${e}`),
13530
13532
  kr = { manage: Ua, manageAndEmit: La, emit: Aa };
13531
- function E1(e) {
13532
- return N1.indexOf(e) !== -1;
13533
+ function Eb(e) {
13534
+ return Nb.indexOf(e) !== -1;
13533
13535
  }
13534
- const S1 = [
13536
+ const Sb = [
13535
13537
  "a",
13536
13538
  "abbr",
13537
13539
  "address",
@@ -13650,10 +13652,10 @@
13650
13652
  "video",
13651
13653
  "wbr",
13652
13654
  ];
13653
- function T1(e) {
13654
- return S1.includes(e);
13655
+ function Tb(e) {
13656
+ return Sb.includes(e);
13655
13657
  }
13656
- function D1(e) {
13658
+ function Db(e) {
13657
13659
  return ["transition-group", "TransitionGroup"].includes(e);
13658
13660
  }
13659
13661
  function Pa(e) {
@@ -13667,10 +13669,10 @@
13667
13669
  function ja(e) {
13668
13670
  return e.reduce((n, [o, l]) => ((n[o] = l), n), {});
13669
13671
  }
13670
- function O1({ $attrs: e, componentData: n = {} }) {
13672
+ function Ob({ $attrs: e, componentData: n = {} }) {
13671
13673
  return { ...ja(Object.entries(e).filter(([l, i]) => Pa(l))), ...n };
13672
13674
  }
13673
- function F1({ $attrs: e, callBackBuilder: n }) {
13675
+ function Fb({ $attrs: e, callBackBuilder: n }) {
13674
13676
  const o = ja(Ra(e));
13675
13677
  Object.entries(n).forEach(([i, r]) => {
13676
13678
  kr[i].forEach((a) => {
@@ -13683,13 +13685,13 @@
13683
13685
  function Ra(e) {
13684
13686
  return Object.entries(e)
13685
13687
  .filter(([n, o]) => !Pa(n))
13686
- .map(([n, o]) => [B1(n), o])
13687
- .filter(([n, o]) => !E1(n));
13688
+ .map(([n, o]) => [Bb(n), o])
13689
+ .filter(([n, o]) => !Eb(n));
13688
13690
  }
13689
13691
  const za = ({ el: e }) => e,
13690
- M1 = (e, n) => (e.__draggable_context = n),
13692
+ Mb = (e, n) => (e.__draggable_context = n),
13691
13693
  qa = (e) => e.__draggable_context;
13692
- class I1 {
13694
+ class Ib {
13693
13695
  constructor({
13694
13696
  nodes: { header: n, default: o, footer: l },
13695
13697
  root: i,
@@ -13712,7 +13714,7 @@
13712
13714
  updated() {
13713
13715
  const { defaultNodes: n, realList: o } = this;
13714
13716
  n.forEach((l, i) => {
13715
- M1(za(l), { element: o[i], index: i });
13717
+ Mb(za(l), { element: o[i], index: i });
13716
13718
  });
13717
13719
  }
13718
13720
  getUnderlyingVm(n) {
@@ -13732,13 +13734,13 @@
13732
13734
  return n < u ? 0 : i;
13733
13735
  }
13734
13736
  }
13735
- function $1(e, n) {
13737
+ function $b(e, n) {
13736
13738
  const o = e[n];
13737
13739
  return o ? o() : [];
13738
13740
  }
13739
- function L1({ $slots: e, realList: n, getKey: o }) {
13741
+ function Lb({ $slots: e, realList: n, getKey: o }) {
13740
13742
  const l = n || [],
13741
- [i, r] = ["header", "footer"].map((c) => $1(e, c)),
13743
+ [i, r] = ["header", "footer"].map((c) => $b(e, c)),
13742
13744
  { item: a } = e;
13743
13745
  if (!a) throw new Error("draggable element must have an item slot");
13744
13746
  const s = l.flatMap((c, u) =>
@@ -13754,19 +13756,19 @@
13754
13756
  throw new Error("Item slot must have only one child");
13755
13757
  return { header: i, footer: r, default: s };
13756
13758
  }
13757
- function A1(e) {
13758
- const n = D1(e),
13759
- o = !T1(e) && !n;
13759
+ function Ab(e) {
13760
+ const n = Db(e),
13761
+ o = !Tb(e) && !n;
13760
13762
  return {
13761
13763
  transition: n,
13762
13764
  externalComponent: o,
13763
13765
  tag: o ? t.resolveComponent(e) : n ? t.TransitionGroup : e,
13764
13766
  };
13765
13767
  }
13766
- function U1({ $slots: e, tag: n, realList: o, getKey: l }) {
13767
- const i = L1({ $slots: e, realList: o, getKey: l }),
13768
- r = A1(n);
13769
- return new I1({ nodes: i, root: r, realList: o });
13768
+ function Ub({ $slots: e, tag: n, realList: o, getKey: l }) {
13769
+ const i = Lb({ $slots: e, realList: o, getKey: l }),
13770
+ r = Ab(n);
13771
+ return new Ib({ nodes: i, root: r, realList: o });
13770
13772
  }
13771
13773
  function Ha(e, n) {
13772
13774
  t.nextTick(() => this.$emit(e.toLowerCase(), n));
@@ -13776,14 +13778,14 @@
13776
13778
  if (this.realList !== null) return this[`onDrag${e}`](n, o);
13777
13779
  };
13778
13780
  }
13779
- function P1(e) {
13781
+ function Pb(e) {
13780
13782
  const n = Wa.call(this, e);
13781
13783
  return (o, l) => {
13782
13784
  n.call(this, o, l), Ha.call(this, e, o);
13783
13785
  };
13784
13786
  }
13785
13787
  let _r = null;
13786
- const j1 = {
13788
+ const jb = {
13787
13789
  list: { type: Array, required: !1, default: null },
13788
13790
  modelValue: { type: Array, required: !1, default: null },
13789
13791
  itemKey: { type: [String, Function], required: !0 },
@@ -13792,7 +13794,7 @@
13792
13794
  move: { type: Function, default: null },
13793
13795
  componentData: { type: Object, required: !1, default: null },
13794
13796
  },
13795
- R1 = [
13797
+ Rb = [
13796
13798
  "update:modelValue",
13797
13799
  "change",
13798
13800
  ...[...kr.manageAndEmit, ...kr.emit].map((e) => e.toLowerCase()),
@@ -13800,8 +13802,8 @@
13800
13802
  Ga = t.defineComponent({
13801
13803
  name: "draggable",
13802
13804
  inheritAttrs: !1,
13803
- props: j1,
13804
- emits: R1,
13805
+ props: jb,
13806
+ emits: Rb,
13805
13807
  data() {
13806
13808
  return { error: !1 };
13807
13809
  },
@@ -13816,9 +13818,9 @@
13816
13818
  realList: i,
13817
13819
  getKey: r,
13818
13820
  } = this,
13819
- a = U1({ $slots: e, tag: o, realList: i, getKey: r });
13821
+ a = Ub({ $slots: e, tag: o, realList: i, getKey: r });
13820
13822
  this.componentStructure = a;
13821
- const s = O1({ $attrs: n, componentData: l });
13823
+ const s = Ob({ $attrs: n, componentData: l });
13822
13824
  return a.render(t.h, s);
13823
13825
  } catch (e) {
13824
13826
  return (
@@ -13829,7 +13831,7 @@
13829
13831
  created() {
13830
13832
  this.list !== null &&
13831
13833
  this.modelValue !== null &&
13832
- w1.error(
13834
+ wb.error(
13833
13835
  "modelValue and list props are mutually exclusive! Please set one or another.",
13834
13836
  );
13835
13837
  },
@@ -13837,10 +13839,10 @@
13837
13839
  if (this.error) return;
13838
13840
  const { $attrs: e, $el: n, componentStructure: o } = this;
13839
13841
  o.updated();
13840
- const l = F1({
13842
+ const l = Fb({
13841
13843
  $attrs: e,
13842
13844
  callBackBuilder: {
13843
- manageAndEmit: (r) => P1.call(this, r),
13845
+ manageAndEmit: (r) => Pb.call(this, r),
13844
13846
  emit: (r) => Ha.bind(this, r),
13845
13847
  manage: (r) => Wa.call(this, r),
13846
13848
  },
@@ -13978,7 +13980,7 @@
13978
13980
  l = n.title.toUpperCase();
13979
13981
  return o < l ? -1 : o > l ? 1 : 0;
13980
13982
  }
13981
- const z1 = {
13983
+ const zb = {
13982
13984
  components: { Item: er, draggable: Ga },
13983
13985
  props: { modelValue: { type: [Object, Array] } },
13984
13986
  mixins: [P],
@@ -14167,11 +14169,11 @@
14167
14169
  },
14168
14170
  },
14169
14171
  },
14170
- q1 = { key: 0, class: "ux-field-title" },
14171
- H1 = { key: 0, class: "ux-required-marker" },
14172
- W1 = { key: 1, class: "ux-field-description" },
14173
- G1 = { key: 1, class: "items" };
14174
- function K1(e, n, o, l, i, r) {
14172
+ qb = { key: 0, class: "ux-field-title" },
14173
+ Hb = { key: 0, class: "ux-required-marker" },
14174
+ Wb = { key: 1, class: "ux-field-description" },
14175
+ Gb = { key: 1, class: "items" };
14176
+ function Kb(e, n, o, l, i, r) {
14175
14177
  const a = t.resolveComponent("ux-icon"),
14176
14178
  s = t.resolveComponent("ux-button"),
14177
14179
  c = t.resolveComponent("item"),
@@ -14187,10 +14189,10 @@
14187
14189
  [
14188
14190
  e.showLabel
14189
14191
  ? (t.openBlock(),
14190
- t.createElementBlock("label", q1, [
14192
+ t.createElementBlock("label", qb, [
14191
14193
  t.createTextVNode(t.toDisplayString(e.label) + " ", 1),
14192
14194
  e.required
14193
- ? (t.openBlock(), t.createElementBlock("span", H1, "*"))
14195
+ ? (t.openBlock(), t.createElementBlock("span", Hb, "*"))
14194
14196
  : t.createCommentVNode("", !0),
14195
14197
  ]))
14196
14198
  : t.createCommentVNode("", !0),
@@ -14198,7 +14200,7 @@
14198
14200
  ? (t.openBlock(),
14199
14201
  t.createElementBlock(
14200
14202
  "div",
14201
- W1,
14203
+ Wb,
14202
14204
  t.toDisplayString(e.description),
14203
14205
  1,
14204
14206
  ))
@@ -14326,7 +14328,7 @@
14326
14328
  ))
14327
14329
  : e.model
14328
14330
  ? (t.openBlock(),
14329
- t.createElementBlock("div", G1, [
14331
+ t.createElementBlock("div", Gb, [
14330
14332
  t.createVNode(
14331
14333
  c,
14332
14334
  { item: e.model },
@@ -14502,12 +14504,12 @@
14502
14504
  )
14503
14505
  );
14504
14506
  }
14505
- const Ya = g(z1, [
14506
- ["render", K1],
14507
+ const Ya = g(zb, [
14508
+ ["render", Kb],
14507
14509
  ["__scopeId", "data-v-38242855"],
14508
14510
  ]),
14509
14511
  pM = "";
14510
- function Y1(e) {
14512
+ function Yb(e) {
14511
14513
  return (
14512
14514
  e === void 0 ||
14513
14515
  typeof e > "u" ||
@@ -14516,7 +14518,7 @@
14516
14518
  String(e) === "undefined"
14517
14519
  );
14518
14520
  }
14519
- const Z1 = {
14521
+ const Zb = {
14520
14522
  props: { title: { type: String }, modelValue: {} },
14521
14523
  mixins: [P],
14522
14524
  async created() {
@@ -14554,7 +14556,7 @@
14554
14556
  cleanOutput(e) {
14555
14557
  var n = this;
14556
14558
  return (
14557
- Y1(e)
14559
+ Yb(e)
14558
14560
  ? n.multiValue
14559
14561
  ? (e = [])
14560
14562
  : (e = void 0)
@@ -14646,15 +14648,15 @@
14646
14648
  },
14647
14649
  },
14648
14650
  },
14649
- J1 = { key: 0, class: "ux-field-title" },
14650
- X1 = { key: 0, class: "ux-required-marker" },
14651
- Q1 = { key: 1, class: "ux-field-description" },
14652
- v1 = { key: 2, class: "ui-select-button" },
14653
- eb = ["multiple"],
14654
- tb = { key: 0, value: "" },
14655
- nb = ["label"],
14656
- ob = ["value"];
14657
- function rb(e, n, o, l, i, r) {
14651
+ Jb = { key: 0, class: "ux-field-title" },
14652
+ Xb = { key: 0, class: "ux-required-marker" },
14653
+ Qb = { key: 1, class: "ux-field-description" },
14654
+ vb = { key: 2, class: "ui-select-button" },
14655
+ e1 = ["multiple"],
14656
+ t1 = { key: 0, value: "" },
14657
+ n1 = ["label"],
14658
+ o1 = ["value"];
14659
+ function r1(e, n, o, l, i, r) {
14658
14660
  const a = t.resolveComponent("ux-button");
14659
14661
  return (
14660
14662
  t.openBlock(),
@@ -14664,10 +14666,10 @@
14664
14666
  [
14665
14667
  e.showLabel
14666
14668
  ? (t.openBlock(),
14667
- t.createElementBlock("label", J1, [
14669
+ t.createElementBlock("label", Jb, [
14668
14670
  t.createTextVNode(t.toDisplayString(e.label) + " ", 1),
14669
14671
  e.required
14670
- ? (t.openBlock(), t.createElementBlock("span", X1, "*"))
14672
+ ? (t.openBlock(), t.createElementBlock("span", Xb, "*"))
14671
14673
  : t.createCommentVNode("", !0),
14672
14674
  ]))
14673
14675
  : t.createCommentVNode("", !0),
@@ -14675,14 +14677,14 @@
14675
14677
  ? (t.openBlock(),
14676
14678
  t.createElementBlock(
14677
14679
  "div",
14678
- Q1,
14680
+ Qb,
14679
14681
  t.toDisplayString(e.description),
14680
14682
  1,
14681
14683
  ))
14682
14684
  : t.createCommentVNode("", !0),
14683
14685
  e.singleValue
14684
14686
  ? (t.openBlock(),
14685
- t.createElementBlock("div", v1, [
14687
+ t.createElementBlock("div", vb, [
14686
14688
  t.renderSlot(
14687
14689
  e.$slots,
14688
14690
  "default",
@@ -14713,7 +14715,7 @@
14713
14715
  },
14714
14716
  [
14715
14717
  e.singleValue && !e.minimum
14716
- ? (t.openBlock(), t.createElementBlock("option", tb, "None"))
14718
+ ? (t.openBlock(), t.createElementBlock("option", t1, "None"))
14717
14719
  : t.createCommentVNode("", !0),
14718
14720
  (t.openBlock(!0),
14719
14721
  t.createElementBlock(
@@ -14740,7 +14742,7 @@
14740
14742
  { value: c.value },
14741
14743
  t.toDisplayString(c.title),
14742
14744
  9,
14743
- ob,
14745
+ o1,
14744
14746
  )
14745
14747
  ),
14746
14748
  ),
@@ -14748,7 +14750,7 @@
14748
14750
  )),
14749
14751
  ],
14750
14752
  8,
14751
- nb,
14753
+ n1,
14752
14754
  )
14753
14755
  ),
14754
14756
  ),
@@ -14756,7 +14758,7 @@
14756
14758
  )),
14757
14759
  ],
14758
14760
  40,
14759
- eb,
14761
+ e1,
14760
14762
  ),
14761
14763
  [[t.vModelSelect, e.model]],
14762
14764
  ),
@@ -14765,12 +14767,12 @@
14765
14767
  )
14766
14768
  );
14767
14769
  }
14768
- const lb = g(Z1, [
14769
- ["render", rb],
14770
+ const l1 = g(Zb, [
14771
+ ["render", r1],
14770
14772
  ["__scopeId", "data-v-17c04ff2"],
14771
14773
  ]),
14772
14774
  hM = "",
14773
- ib = {
14775
+ i1 = {
14774
14776
  components: { UxCircle: Hn },
14775
14777
  props: { item: { type: Object }, click: { type: Function } },
14776
14778
  data() {
@@ -14812,9 +14814,9 @@
14812
14814
  },
14813
14815
  },
14814
14816
  },
14815
- ab = { class: "outer" },
14816
- sb = { key: 0, class: "children" };
14817
- function cb(e, n, o, l, i, r) {
14817
+ a1 = { class: "outer" },
14818
+ s1 = { key: 0, class: "children" };
14819
+ function c1(e, n, o, l, i, r) {
14818
14820
  const a = t.resolveComponent("ux-icon"),
14819
14821
  s = t.resolveComponent("flex-cell"),
14820
14822
  c = t.resolveComponent("ux-circle"),
@@ -14823,7 +14825,7 @@
14823
14825
  m = t.resolveComponent("scope-item", !0);
14824
14826
  return (
14825
14827
  t.openBlock(),
14826
- t.createElementBlock("div", ab, [
14828
+ t.createElementBlock("div", a1, [
14827
14829
  t.createElementVNode(
14828
14830
  "div",
14829
14831
  {
@@ -14942,7 +14944,7 @@
14942
14944
  ),
14943
14945
  r.expanded
14944
14946
  ? (t.openBlock(),
14945
- t.createElementBlock("div", sb, [
14947
+ t.createElementBlock("div", s1, [
14946
14948
  (t.openBlock(!0),
14947
14949
  t.createElementBlock(
14948
14950
  t.Fragment,
@@ -14964,14 +14966,14 @@
14964
14966
  ])
14965
14967
  );
14966
14968
  }
14967
- const db = g(ib, [
14968
- ["render", cb],
14969
+ const d1 = g(i1, [
14970
+ ["render", c1],
14969
14971
  ["__scopeId", "data-v-be6d1032"],
14970
14972
  ]),
14971
14973
  yM = "";
14972
14974
  let br;
14973
- const ub = {
14974
- components: { ScopeItem: db },
14975
+ const u1 = {
14976
+ components: { ScopeItem: d1 },
14975
14977
  created() {
14976
14978
  this.loadGlossary();
14977
14979
  },
@@ -15106,7 +15108,7 @@
15106
15108
  },
15107
15109
  },
15108
15110
  };
15109
- function mb(e, n, o, l, i, r) {
15111
+ function m1(e, n, o, l, i, r) {
15110
15112
  const a = t.resolveComponent("spinner"),
15111
15113
  s = t.resolveComponent("scope-item");
15112
15114
  return (
@@ -15138,12 +15140,12 @@
15138
15140
  )
15139
15141
  );
15140
15142
  }
15141
- const Za = g(ub, [
15142
- ["render", mb],
15143
+ const Za = g(u1, [
15144
+ ["render", m1],
15143
15145
  ["__scopeId", "data-v-70c07a8e"],
15144
15146
  ]),
15145
15147
  gM = "",
15146
- fb = {
15148
+ f1 = {
15147
15149
  components: { UxCircle: Hn },
15148
15150
  async created() {
15149
15151
  this.reloadScopeGlossary();
@@ -15197,6 +15199,11 @@
15197
15199
  },
15198
15200
  },
15199
15201
  computed: {
15202
+ visible() {
15203
+ const e = this.$sdk.utils.ids(this.model) || [],
15204
+ n = this.$sdk.utils.ids(this.availableDefaultScopes) || [];
15205
+ return !(n.length === 1 && (!e.length || e[0] === n[0]));
15206
+ },
15200
15207
  loading() {
15201
15208
  return this.loadingScopeGlossary || this.loadingContentGlossary;
15202
15209
  },
@@ -15250,7 +15257,6 @@
15250
15257
  var l = o._id || o;
15251
15258
  return e.restrictedLookup[l];
15252
15259
  })),
15253
- console.log("AVAILABLE DEFAULT SCOPES", n),
15254
15260
  !n.length &&
15255
15261
  e.definitionRestrictScopes.length === 1 &&
15256
15262
  (n = e.definitionRestrictScopes),
@@ -15261,9 +15267,7 @@
15261
15267
  watch: {
15262
15268
  availableDefaultScopes: {
15263
15269
  handler(e) {
15264
- this.model.length ||
15265
- (e.length &&
15266
- (console.log("SET DEFAULT", e), (this.model = [...e])));
15270
+ this.model.length || (e.length && (this.model = [...e]));
15267
15271
  },
15268
15272
  immediate: !0,
15269
15273
  },
@@ -15284,54 +15288,59 @@
15284
15288
  },
15285
15289
  },
15286
15290
  },
15287
- pb = { class: "circles" };
15288
- function hb(e, n, o, l, i, r) {
15291
+ p1 = { class: "circles" };
15292
+ function h1(e, n, o, l, i, r) {
15289
15293
  const a = t.resolveComponent("ux-circle"),
15290
15294
  s = t.resolveComponent("ux-button");
15291
15295
  return (
15292
15296
  t.openBlock(),
15293
- t.createElementBlock("div", null, [
15294
- t.createVNode(
15295
- s,
15296
- { size: o.size, loading: r.loading, onClick: r.openSelection },
15297
- {
15298
- default: t.withCtx(() => [
15299
- t.createElementVNode("div", pb, [
15300
- (t.openBlock(!0),
15301
- t.createElementBlock(
15302
- t.Fragment,
15303
- null,
15304
- t.renderList(
15305
- i.model,
15306
- (c) => (
15307
- t.openBlock(),
15308
- t.createBlock(a, { value: c }, null, 8, ["value"])
15297
+ t.createElementBlock(
15298
+ "div",
15299
+ { class: t.normalizeClass({ invisible: !r.visible }) },
15300
+ [
15301
+ t.createVNode(
15302
+ s,
15303
+ { size: o.size, loading: r.loading, onClick: r.openSelection },
15304
+ {
15305
+ default: t.withCtx(() => [
15306
+ t.createElementVNode("div", p1, [
15307
+ (t.openBlock(!0),
15308
+ t.createElementBlock(
15309
+ t.Fragment,
15310
+ null,
15311
+ t.renderList(
15312
+ i.model,
15313
+ (c) => (
15314
+ t.openBlock(),
15315
+ t.createBlock(a, { value: c }, null, 8, ["value"])
15316
+ ),
15309
15317
  ),
15310
- ),
15311
- 256,
15312
- )),
15318
+ 256,
15319
+ )),
15320
+ ]),
15321
+ t.createElementVNode(
15322
+ "span",
15323
+ { class: t.normalizeClass({ "empty-text": r.empty }) },
15324
+ t.toDisplayString(r.summary),
15325
+ 3,
15326
+ ),
15313
15327
  ]),
15314
- t.createElementVNode(
15315
- "span",
15316
- { class: t.normalizeClass({ "empty-text": r.empty }) },
15317
- t.toDisplayString(r.summary),
15318
- 3,
15319
- ),
15320
- ]),
15321
- _: 1,
15322
- },
15323
- 8,
15324
- ["size", "loading", "onClick"],
15325
- ),
15326
- ])
15328
+ _: 1,
15329
+ },
15330
+ 8,
15331
+ ["size", "loading", "onClick"],
15332
+ ),
15333
+ ],
15334
+ 2,
15335
+ )
15327
15336
  );
15328
15337
  }
15329
- const Ja = g(fb, [
15330
- ["render", hb],
15331
- ["__scopeId", "data-v-0e820a8c"],
15338
+ const Ja = g(f1, [
15339
+ ["render", h1],
15340
+ ["__scopeId", "data-v-13dbe8a6"],
15332
15341
  ]),
15333
15342
  kM = "";
15334
- function yb(e) {
15343
+ function y1(e) {
15335
15344
  return (
15336
15345
  e === void 0 ||
15337
15346
  typeof e > "u" ||
@@ -15340,7 +15349,7 @@
15340
15349
  String(e) === "undefined"
15341
15350
  );
15342
15351
  }
15343
- const gb = {
15352
+ const g1 = {
15344
15353
  components: { ScopeSelectButton: Ja },
15345
15354
  props: {
15346
15355
  title: { type: String },
@@ -15375,7 +15384,7 @@
15375
15384
  cleanOutput(e) {
15376
15385
  var n = this;
15377
15386
  return (
15378
- yb(e)
15387
+ y1(e)
15379
15388
  ? n.multiValue
15380
15389
  ? (e = [])
15381
15390
  : (e = void 0)
@@ -15435,10 +15444,10 @@
15435
15444
  },
15436
15445
  },
15437
15446
  },
15438
- kb = { key: 0, class: "ux-field-title" },
15439
- _b = { key: 0, class: "ux-required-marker" },
15440
- bb = { key: 1, class: "ux-field-description" };
15441
- function xb(e, n, o, l, i, r) {
15447
+ k1 = { key: 0, class: "ux-field-title" },
15448
+ _1 = { key: 0, class: "ux-required-marker" },
15449
+ b1 = { key: 1, class: "ux-field-description" };
15450
+ function x1(e, n, o, l, i, r) {
15442
15451
  const a = t.resolveComponent("scope-select-button");
15443
15452
  return (
15444
15453
  t.openBlock(),
@@ -15448,10 +15457,10 @@
15448
15457
  [
15449
15458
  e.showLabel
15450
15459
  ? (t.openBlock(),
15451
- t.createElementBlock("label", kb, [
15460
+ t.createElementBlock("label", k1, [
15452
15461
  t.createTextVNode(t.toDisplayString(e.label) + " ", 1),
15453
15462
  e.required
15454
- ? (t.openBlock(), t.createElementBlock("span", _b, "*"))
15463
+ ? (t.openBlock(), t.createElementBlock("span", _1, "*"))
15455
15464
  : t.createCommentVNode("", !0),
15456
15465
  ]))
15457
15466
  : t.createCommentVNode("", !0),
@@ -15459,7 +15468,7 @@
15459
15468
  ? (t.openBlock(),
15460
15469
  t.createElementBlock(
15461
15470
  "div",
15462
- bb,
15471
+ b1,
15463
15472
  t.toDisplayString(e.description),
15464
15473
  1,
15465
15474
  ))
@@ -15482,12 +15491,12 @@
15482
15491
  )
15483
15492
  );
15484
15493
  }
15485
- const Xa = g(gb, [
15486
- ["render", xb],
15494
+ const Xa = g(g1, [
15495
+ ["render", x1],
15487
15496
  ["__scopeId", "data-v-6361df61"],
15488
15497
  ]),
15489
15498
  _M = "",
15490
- wb = {
15499
+ w1 = {
15491
15500
  props: { modelValue: { type: [String, Array] } },
15492
15501
  mixins: [P],
15493
15502
  methods: {
@@ -15544,16 +15553,16 @@
15544
15553
  },
15545
15554
  },
15546
15555
  },
15547
- Cb = { key: 0, class: "ux-field-title" },
15548
- Vb = { key: 0, class: "ux-required-marker" },
15549
- Bb = { key: 1, class: "ux-field-description" },
15550
- Nb = { key: 2 },
15551
- Eb = { key: 0, class: "ux-text-prefix" },
15552
- Sb = ["onBlur", "onUpdate:modelValue"],
15553
- Tb = { key: 1, class: "ux-text-suffix" },
15554
- Db = { key: 0, class: "ux-text-prefix" },
15555
- Ob = { key: 1, class: "ux-text-suffix" };
15556
- function Fb(e, n, o, l, i, r) {
15556
+ C1 = { key: 0, class: "ux-field-title" },
15557
+ V1 = { key: 0, class: "ux-required-marker" },
15558
+ B1 = { key: 1, class: "ux-field-description" },
15559
+ N1 = { key: 2 },
15560
+ E1 = { key: 0, class: "ux-text-prefix" },
15561
+ S1 = ["onBlur", "onUpdate:modelValue"],
15562
+ T1 = { key: 1, class: "ux-text-suffix" },
15563
+ D1 = { key: 0, class: "ux-text-prefix" },
15564
+ O1 = { key: 1, class: "ux-text-suffix" };
15565
+ function F1(e, n, o, l, i, r) {
15557
15566
  const a = t.resolveComponent("flex-cell"),
15558
15567
  s = t.resolveComponent("ux-icon"),
15559
15568
  c = t.resolveComponent("ux-button"),
@@ -15566,10 +15575,10 @@
15566
15575
  [
15567
15576
  e.showLabel
15568
15577
  ? (t.openBlock(),
15569
- t.createElementBlock("label", Cb, [
15578
+ t.createElementBlock("label", C1, [
15570
15579
  t.createTextVNode(t.toDisplayString(e.label) + " ", 1),
15571
15580
  e.required
15572
- ? (t.openBlock(), t.createElementBlock("span", Vb, "*"))
15581
+ ? (t.openBlock(), t.createElementBlock("span", V1, "*"))
15573
15582
  : t.createCommentVNode("", !0),
15574
15583
  ]))
15575
15584
  : t.createCommentVNode("", !0),
@@ -15577,14 +15586,14 @@
15577
15586
  ? (t.openBlock(),
15578
15587
  t.createElementBlock(
15579
15588
  "div",
15580
- Bb,
15589
+ B1,
15581
15590
  t.toDisplayString(e.description),
15582
15591
  1,
15583
15592
  ))
15584
15593
  : t.createCommentVNode("", !0),
15585
15594
  e.multiValue
15586
15595
  ? (t.openBlock(),
15587
- t.createElementBlock("div", Nb, [
15596
+ t.createElementBlock("div", N1, [
15588
15597
  (t.openBlock(!0),
15589
15598
  t.createElementBlock(
15590
15599
  t.Fragment,
@@ -15619,7 +15628,7 @@
15619
15628
  ? (t.openBlock(),
15620
15629
  t.createElementBlock(
15621
15630
  "span",
15622
- Eb,
15631
+ E1,
15623
15632
  t.toDisplayString(r.prefix),
15624
15633
  1,
15625
15634
  ))
@@ -15654,7 +15663,7 @@
15654
15663
  },
15655
15664
  null,
15656
15665
  40,
15657
- Sb,
15666
+ S1,
15658
15667
  )),
15659
15668
  [
15660
15669
  [
@@ -15669,7 +15678,7 @@
15669
15678
  ? (t.openBlock(),
15670
15679
  t.createElementBlock(
15671
15680
  "span",
15672
- Tb,
15681
+ T1,
15673
15682
  t.toDisplayString(r.suffix),
15674
15683
  1,
15675
15684
  ))
@@ -15756,7 +15765,7 @@
15756
15765
  ? (t.openBlock(),
15757
15766
  t.createElementBlock(
15758
15767
  "span",
15759
- Db,
15768
+ D1,
15760
15769
  t.toDisplayString(r.prefix),
15761
15770
  1,
15762
15771
  ))
@@ -15793,7 +15802,7 @@
15793
15802
  ? (t.openBlock(),
15794
15803
  t.createElementBlock(
15795
15804
  "span",
15796
- Ob,
15805
+ O1,
15797
15806
  t.toDisplayString(r.suffix),
15798
15807
  1,
15799
15808
  ))
@@ -15806,12 +15815,12 @@
15806
15815
  )
15807
15816
  );
15808
15817
  }
15809
- const Qa = g(wb, [
15810
- ["render", Fb],
15818
+ const Qa = g(w1, [
15819
+ ["render", F1],
15811
15820
  ["__scopeId", "data-v-30b07ae5"],
15812
15821
  ]),
15813
15822
  bM = "",
15814
- Mb = {
15823
+ M1 = {
15815
15824
  props: { modelValue: { type: [String, Array] } },
15816
15825
  data() {
15817
15826
  return { unmasked: !1, unmaskedLookup: t.reactive({}) };
@@ -15897,21 +15906,21 @@
15897
15906
  },
15898
15907
  },
15899
15908
  },
15900
- Ib = { key: 0, class: "ux-field-title" },
15901
- $b = { key: 0, class: "ux-required-marker" },
15902
- Lb = { key: 1, class: "ux-field-description" },
15903
- Ab = { key: 2 },
15904
- Ub = { class: "ux-text-wrap" },
15905
- Pb = { key: 0, class: "ux-text-prefix" },
15906
- jb = ["readonly", "type", "placeholder", "onUpdate:modelValue"],
15907
- Rb = ["readonly", "type", "placeholder", "onUpdate:modelValue"],
15908
- zb = { key: 3, class: "ux-text-suffix" },
15909
- qb = { class: "ux-text-wrap" },
15910
- Hb = { key: 0, class: "ux-text-prefix" },
15911
- Wb = ["readonly", "type", "placeholder"],
15912
- Gb = ["readonly", "type", "placeholder"],
15913
- Kb = { key: 3, class: "ux-text-suffix" };
15914
- function Yb(e, n, o, l, i, r) {
15909
+ I1 = { key: 0, class: "ux-field-title" },
15910
+ $1 = { key: 0, class: "ux-required-marker" },
15911
+ L1 = { key: 1, class: "ux-field-description" },
15912
+ A1 = { key: 2 },
15913
+ U1 = { class: "ux-text-wrap" },
15914
+ P1 = { key: 0, class: "ux-text-prefix" },
15915
+ j1 = ["readonly", "type", "placeholder", "onUpdate:modelValue"],
15916
+ R1 = ["readonly", "type", "placeholder", "onUpdate:modelValue"],
15917
+ z1 = { key: 3, class: "ux-text-suffix" },
15918
+ q1 = { class: "ux-text-wrap" },
15919
+ H1 = { key: 0, class: "ux-text-prefix" },
15920
+ W1 = ["readonly", "type", "placeholder"],
15921
+ G1 = ["readonly", "type", "placeholder"],
15922
+ K1 = { key: 3, class: "ux-text-suffix" };
15923
+ function Y1(e, n, o, l, i, r) {
15915
15924
  const a = t.resolveComponent("flex-cell"),
15916
15925
  s = t.resolveComponent("ux-icon"),
15917
15926
  c = t.resolveComponent("ux-button"),
@@ -15924,10 +15933,10 @@
15924
15933
  [
15925
15934
  e.showLabel
15926
15935
  ? (t.openBlock(),
15927
- t.createElementBlock("label", Ib, [
15936
+ t.createElementBlock("label", I1, [
15928
15937
  t.createTextVNode(t.toDisplayString(e.label) + " ", 1),
15929
15938
  e.required
15930
- ? (t.openBlock(), t.createElementBlock("span", $b, "*"))
15939
+ ? (t.openBlock(), t.createElementBlock("span", $1, "*"))
15931
15940
  : t.createCommentVNode("", !0),
15932
15941
  ]))
15933
15942
  : t.createCommentVNode("", !0),
@@ -15935,14 +15944,14 @@
15935
15944
  ? (t.openBlock(),
15936
15945
  t.createElementBlock(
15937
15946
  "div",
15938
- Lb,
15947
+ L1,
15939
15948
  t.toDisplayString(e.description),
15940
15949
  1,
15941
15950
  ))
15942
15951
  : t.createCommentVNode("", !0),
15943
15952
  e.multiValue
15944
15953
  ? (t.openBlock(),
15945
- t.createElementBlock("div", Ab, [
15954
+ t.createElementBlock("div", A1, [
15946
15955
  (t.openBlock(!0),
15947
15956
  t.createElementBlock(
15948
15957
  t.Fragment,
@@ -15961,12 +15970,12 @@
15961
15970
  null,
15962
15971
  {
15963
15972
  default: t.withCtx(() => [
15964
- t.createElementVNode("div", Ub, [
15973
+ t.createElementVNode("div", U1, [
15965
15974
  e.prefix
15966
15975
  ? (t.openBlock(),
15967
15976
  t.createElementBlock(
15968
15977
  "span",
15969
- Pb,
15978
+ P1,
15970
15979
  t.toDisplayString(e.prefix),
15971
15980
  1,
15972
15981
  ))
@@ -16007,7 +16016,7 @@
16007
16016
  },
16008
16017
  null,
16009
16018
  42,
16010
- jb,
16019
+ j1,
16011
16020
  )),
16012
16021
  [
16013
16022
  [
@@ -16056,7 +16065,7 @@
16056
16065
  },
16057
16066
  null,
16058
16067
  42,
16059
- Rb,
16068
+ R1,
16060
16069
  )),
16061
16070
  [[t.vModelDynamic, e.model[m]]],
16062
16071
  ),
@@ -16064,7 +16073,7 @@
16064
16073
  ? (t.openBlock(),
16065
16074
  t.createElementBlock(
16066
16075
  "span",
16067
- zb,
16076
+ z1,
16068
16077
  t.toDisplayString(e.suffix),
16069
16078
  1,
16070
16079
  ))
@@ -16221,12 +16230,12 @@
16221
16230
  default: t.withCtx(() => [
16222
16231
  t.createVNode(a, null, {
16223
16232
  default: t.withCtx(() => [
16224
- t.createElementVNode("div", qb, [
16233
+ t.createElementVNode("div", q1, [
16225
16234
  e.prefix
16226
16235
  ? (t.openBlock(),
16227
16236
  t.createElementBlock(
16228
16237
  "span",
16229
- Hb,
16238
+ H1,
16230
16239
  t.toDisplayString(e.prefix),
16231
16240
  1,
16232
16241
  ))
@@ -16255,7 +16264,7 @@
16255
16264
  },
16256
16265
  null,
16257
16266
  42,
16258
- Wb,
16267
+ W1,
16259
16268
  )),
16260
16269
  [
16261
16270
  [
@@ -16292,7 +16301,7 @@
16292
16301
  },
16293
16302
  null,
16294
16303
  42,
16295
- Gb,
16304
+ G1,
16296
16305
  )),
16297
16306
  [[t.vModelDynamic, e.model]],
16298
16307
  ),
@@ -16300,7 +16309,7 @@
16300
16309
  ? (t.openBlock(),
16301
16310
  t.createElementBlock(
16302
16311
  "span",
16303
- Kb,
16312
+ K1,
16304
16313
  t.toDisplayString(e.suffix),
16305
16314
  1,
16306
16315
  ))
@@ -16386,12 +16395,12 @@
16386
16395
  )
16387
16396
  );
16388
16397
  }
16389
- const xr = g(Mb, [
16390
- ["render", Yb],
16398
+ const xr = g(M1, [
16399
+ ["render", Y1],
16391
16400
  ["__scopeId", "data-v-da2ca789"],
16392
16401
  ]),
16393
16402
  xM = "",
16394
- Zb = {
16403
+ Z1 = {
16395
16404
  props: { modelValue: { type: [String, Array] } },
16396
16405
  mixins: [P],
16397
16406
  methods: {
@@ -16400,10 +16409,10 @@
16400
16409
  },
16401
16410
  },
16402
16411
  },
16403
- Jb = { key: 0, class: "ux-field-title" },
16404
- Xb = { key: 0, class: "ux-required-marker" },
16405
- Qb = { key: 1, class: "ux-field-description" },
16406
- vb = { key: 2 },
16412
+ J1 = { key: 0, class: "ux-field-title" },
16413
+ X1 = { key: 0, class: "ux-required-marker" },
16414
+ Q1 = { key: 1, class: "ux-field-description" },
16415
+ v1 = { key: 2 },
16407
16416
  ex = ["onUpdate:modelValue"];
16408
16417
  function tx(e, n, o, l, i, r) {
16409
16418
  const a = t.resolveComponent("flex-cell"),
@@ -16418,10 +16427,10 @@
16418
16427
  [
16419
16428
  e.showLabel
16420
16429
  ? (t.openBlock(),
16421
- t.createElementBlock("label", Jb, [
16430
+ t.createElementBlock("label", J1, [
16422
16431
  t.createTextVNode(t.toDisplayString(e.label) + " ", 1),
16423
16432
  e.required
16424
- ? (t.openBlock(), t.createElementBlock("span", Xb, "*"))
16433
+ ? (t.openBlock(), t.createElementBlock("span", X1, "*"))
16425
16434
  : t.createCommentVNode("", !0),
16426
16435
  ]))
16427
16436
  : t.createCommentVNode("", !0),
@@ -16429,14 +16438,14 @@
16429
16438
  ? (t.openBlock(),
16430
16439
  t.createElementBlock(
16431
16440
  "div",
16432
- Qb,
16441
+ Q1,
16433
16442
  t.toDisplayString(e.description),
16434
16443
  1,
16435
16444
  ))
16436
16445
  : t.createCommentVNode("", !0),
16437
16446
  e.multiValue
16438
16447
  ? (t.openBlock(),
16439
- t.createElementBlock("div", vb, [
16448
+ t.createElementBlock("div", v1, [
16440
16449
  (t.openBlock(!0),
16441
16450
  t.createElementBlock(
16442
16451
  t.Fragment,
@@ -16561,7 +16570,7 @@
16561
16570
  )
16562
16571
  );
16563
16572
  }
16564
- const nx = g(Zb, [
16573
+ const nx = g(Z1, [
16565
16574
  ["render", tx],
16566
16575
  ["__scopeId", "data-v-251e7614"],
16567
16576
  ]),
@@ -19856,7 +19865,7 @@
19856
19865
  null,
19857
19866
  t.renderList(
19858
19867
  i.model.conditions,
19859
- (w, G) => (
19868
+ (w, K) => (
19860
19869
  t.openBlock(),
19861
19870
  t.createElementBlock("div", { key: w._guid }, [
19862
19871
  t.createVNode(
@@ -19864,10 +19873,10 @@
19864
19873
  {
19865
19874
  enableRemove: !0,
19866
19875
  fields: i.criteriaFields,
19867
- onRemove: (M) => r.removeCondition(G),
19868
- modelValue: i.model.conditions[G],
19876
+ onRemove: (M) => r.removeCondition(K),
19877
+ modelValue: i.model.conditions[K],
19869
19878
  "onUpdate:modelValue": (M) =>
19870
- (i.model.conditions[G] = M),
19879
+ (i.model.conditions[K] = M),
19871
19880
  },
19872
19881
  null,
19873
19882
  8,
@@ -26631,7 +26640,7 @@
26631
26640
  $ = 40,
26632
26641
  j = 41,
26633
26642
  w = 91,
26634
- G = 93,
26643
+ K = 93,
26635
26644
  M = 63,
26636
26645
  D = 59,
26637
26646
  A = 58,
@@ -26759,32 +26768,32 @@
26759
26768
  return !1;
26760
26769
  },
26761
26770
  vO = function () {
26762
- var b, T, R, K, Vt, Ue, st, Gt, ac;
26771
+ var b, T, R, Y, Vt, Ue, st, Gt, ac;
26763
26772
  if (((Ue = yo()), (T = oc()), !T)) return Ue;
26764
26773
  for (
26765
26774
  Vt = { value: T, prec: He(T) },
26766
26775
  st = yo(),
26767
26776
  st || I("Expected expression after " + T, k),
26768
- K = [Ue, Vt, st];
26777
+ Y = [Ue, Vt, st];
26769
26778
  (T = oc()) && ((R = He(T)), R !== 0);
26770
26779
 
26771
26780
  ) {
26772
26781
  for (
26773
26782
  Vt = { value: T, prec: R }, ac = T;
26774
- K.length > 2 && R <= K[K.length - 2].prec;
26783
+ Y.length > 2 && R <= Y[Y.length - 2].prec;
26775
26784
 
26776
26785
  )
26777
- (st = K.pop()),
26778
- (T = K.pop().value),
26779
- (Ue = K.pop()),
26786
+ (st = Y.pop()),
26787
+ (T = Y.pop().value),
26788
+ (Ue = Y.pop()),
26780
26789
  (b = qt(T, Ue, st)),
26781
- K.push(b);
26790
+ Y.push(b);
26782
26791
  (b = yo()),
26783
26792
  b || I("Expected expression after " + ac, k),
26784
- K.push(Vt, b);
26793
+ Y.push(Vt, b);
26785
26794
  }
26786
- for (Gt = K.length - 1, b = K[Gt]; Gt > 1; )
26787
- (b = qt(K[Gt - 1].value, K[Gt - 2], b)), (Gt -= 2);
26795
+ for (Gt = Y.length - 1, b = Y[Gt]; Gt > 1; )
26796
+ (b = qt(Y[Gt - 1].value, Y[Gt - 2], b)), (Gt -= 2);
26788
26797
  return b;
26789
26798
  },
26790
26799
  yo = function () {
@@ -26835,12 +26844,12 @@
26835
26844
  );
26836
26845
  },
26837
26846
  tF = function () {
26838
- for (var b = "", T = xe(k++), R = !1, K; k < Cn; )
26839
- if (((K = xe(k++)), K === T)) {
26847
+ for (var b = "", T = xe(k++), R = !1, Y; k < Cn; )
26848
+ if (((Y = xe(k++)), Y === T)) {
26840
26849
  R = !0;
26841
26850
  break;
26842
- } else if (K === "\\")
26843
- switch (((K = xe(k++)), K)) {
26851
+ } else if (Y === "\\")
26852
+ switch (((Y = xe(k++)), Y)) {
26844
26853
  case "n":
26845
26854
  b += `
26846
26855
  `;
@@ -26861,9 +26870,9 @@
26861
26870
  b += "\v";
26862
26871
  break;
26863
26872
  default:
26864
- b += K;
26873
+ b += Y;
26865
26874
  }
26866
- else b += K;
26875
+ else b += Y;
26867
26876
  return (
26868
26877
  R || I('Unclosed quote after "' + b + '"', k),
26869
26878
  { type: a, value: b, raw: T + b + T }
@@ -26889,7 +26898,7 @@
26889
26898
  );
26890
26899
  },
26891
26900
  lc = function (b) {
26892
- for (var T, R = [], K, Vt = !1, Ue = 0; k < Cn; )
26901
+ for (var T, R = [], Y, Vt = !1, Ue = 0; k < Cn; )
26893
26902
  if ((Ge(), (T = Q(k)), T === b)) {
26894
26903
  (Vt = !0),
26895
26904
  k++,
@@ -26901,13 +26910,13 @@
26901
26910
  } else if (T === y) {
26902
26911
  if ((k++, Ue++, Ue !== R.length)) {
26903
26912
  if (b === j) I("Unexpected token ,", k);
26904
- else if (b === G)
26913
+ else if (b === K)
26905
26914
  for (var st = R.length; st < Ue; st++) R.push(null);
26906
26915
  }
26907
26916
  } else
26908
- (K = Wt()),
26909
- (!K || K.type === l) && I("Expected comma", k),
26910
- R.push(K);
26917
+ (Y = Wt()),
26918
+ (!Y || Y.type === l) && I("Expected comma", k),
26919
+ R.push(Y);
26911
26920
  return Vt || I("Expected " + String.fromCharCode(b), k), R;
26912
26921
  },
26913
26922
  nF = function () {
@@ -26935,7 +26944,7 @@
26935
26944
  }),
26936
26945
  Ge(),
26937
26946
  (b = Q(k)),
26938
- b !== G && I("Unclosed [", k),
26947
+ b !== K && I("Unclosed [", k),
26939
26948
  k++)
26940
26949
  : b === $ &&
26941
26950
  (T = { type: c, arguments: lc(j), callee: T }),
@@ -26950,7 +26959,7 @@
26950
26959
  I("Unclosed (", k);
26951
26960
  },
26952
26961
  rF = function () {
26953
- return k++, { type: p, elements: lc(G) };
26962
+ return k++, { type: p, elements: lc(K) };
26954
26963
  },
26955
26964
  go = [],
26956
26965
  Ir,
@@ -27254,26 +27263,26 @@
27254
27263
  QN = "[object Uint8ClampedArray]",
27255
27264
  vN = "[object Uint16Array]",
27256
27265
  eE = "[object Uint32Array]",
27257
- Y = {};
27258
- (Y[GN] = Y[KN] = Y[YN] = Y[ZN] = Y[JN] = Y[XN] = Y[QN] = Y[vN] = Y[eE] = !0),
27259
- (Y[ON] =
27260
- Y[FN] =
27261
- Y[HN] =
27262
- Y[MN] =
27263
- Y[WN] =
27264
- Y[IN] =
27265
- Y[$N] =
27266
- Y[LN] =
27267
- Y[AN] =
27268
- Y[UN] =
27269
- Y[PN] =
27270
- Y[jN] =
27271
- Y[RN] =
27272
- Y[zN] =
27273
- Y[qN] =
27266
+ Z = {};
27267
+ (Z[GN] = Z[KN] = Z[YN] = Z[ZN] = Z[JN] = Z[XN] = Z[QN] = Z[vN] = Z[eE] = !0),
27268
+ (Z[ON] =
27269
+ Z[FN] =
27270
+ Z[HN] =
27271
+ Z[MN] =
27272
+ Z[WN] =
27273
+ Z[IN] =
27274
+ Z[$N] =
27275
+ Z[LN] =
27276
+ Z[AN] =
27277
+ Z[UN] =
27278
+ Z[PN] =
27279
+ Z[jN] =
27280
+ Z[RN] =
27281
+ Z[zN] =
27282
+ Z[qN] =
27274
27283
  !1);
27275
27284
  function tE(e) {
27276
- return DN(e) && TN(e.length) && !!Y[SN(e)];
27285
+ return DN(e) && TN(e.length) && !!Z[SN(e)];
27277
27286
  }
27278
27287
  var nE = tE;
27279
27288
  function oE(e) {
@@ -29044,7 +29053,7 @@
29044
29053
  BooleanSwitch: uV,
29045
29054
  FieldGroup: IV,
29046
29055
  ContentSelect: Ya,
29047
- TypeSelect: lb,
29056
+ TypeSelect: l1,
29048
29057
  ScopeSelect: Xa,
29049
29058
  FieldSelect: ds,
29050
29059
  TimezoneSelect: fa,
@@ -29658,7 +29667,7 @@
29658
29667
  $ = t.resolveComponent("field-group"),
29659
29668
  j = t.resolveComponent("field-select"),
29660
29669
  w = t.resolveComponent("native-select"),
29661
- G = t.resolveComponent("button-select"),
29670
+ K = t.resolveComponent("button-select"),
29662
29671
  M = t.resolveComponent("currency-field"),
29663
29672
  D = t.resolveComponent("time-field"),
29664
29673
  A = t.resolveComponent("date-field"),
@@ -30068,7 +30077,7 @@
30068
30077
  r.widget == "button"
30069
30078
  ? (t.openBlock(),
30070
30079
  t.createBlock(
30071
- G,
30080
+ K,
30072
30081
  {
30073
30082
  key: 17,
30074
30083
  onTouched: r.touch,
@@ -30748,23 +30757,23 @@
30748
30757
  }
30749
30758
  var QT = XT,
30750
30759
  vT = vS,
30751
- e2 = yT,
30752
- t2 = QT,
30753
- n2 = "['’]",
30754
- o2 = RegExp(n2, "g");
30755
- function r2(e) {
30760
+ eD = yT,
30761
+ tD = QT,
30762
+ nD = "['’]",
30763
+ oD = RegExp(nD, "g");
30764
+ function rD(e) {
30756
30765
  return function (n) {
30757
- return vT(t2(e2(n).replace(o2, "")), e, "");
30766
+ return vT(tD(eD(n).replace(oD, "")), e, "");
30758
30767
  };
30759
30768
  }
30760
- var l2 = r2,
30761
- i2 = l2,
30762
- a2 = i2(function (e, n, o) {
30769
+ var lD = rD,
30770
+ iD = lD,
30771
+ aD = iD(function (e, n, o) {
30763
30772
  return e + (o ? "-" : "") + n.toLowerCase();
30764
30773
  }),
30765
- s2 = a2;
30774
+ sD = aD;
30766
30775
  const oI = "",
30767
- c2 = {
30776
+ cD = {
30768
30777
  emits: [
30769
30778
  "field:unmount",
30770
30779
  "field:mount",
@@ -30879,7 +30888,7 @@
30879
30888
  );
30880
30889
  },
30881
30890
  getFieldKey(e) {
30882
- let n = s2(`${e.title}-${e.key}`);
30891
+ let n = sD(`${e.title}-${e.key}`);
30883
30892
  return e.incrementor && (n = `${n}-${e.incrementor}`), n;
30884
30893
  },
30885
30894
  touch() {
@@ -30983,7 +30992,7 @@
30983
30992
  },
30984
30993
  },
30985
30994
  };
30986
- function d2(e, n, o, l, i, r) {
30995
+ function dD(e, n, o, l, i, r) {
30987
30996
  const a = t.resolveComponent("ux-field");
30988
30997
  return (
30989
30998
  t.openBlock(),
@@ -31073,17 +31082,17 @@
31073
31082
  )
31074
31083
  );
31075
31084
  }
31076
- const Nr = g(c2, [
31077
- ["render", d2],
31085
+ const Nr = g(cD, [
31086
+ ["render", dD],
31078
31087
  ["__scopeId", "data-v-f0b9d2cd"],
31079
31088
  ]),
31080
31089
  rI = "",
31081
31090
  Er = "form.ready",
31082
- u2 = "form.processing",
31091
+ uD = "form.processing",
31083
31092
  Rs = "form.complete",
31084
31093
  zs = "form.error",
31085
- m2 = "form.intent",
31086
- f2 = {
31094
+ mD = "form.intent",
31095
+ fD = {
31087
31096
  emits: ["reset", "processing", "intent", "success", "error"],
31088
31097
  methods: {
31089
31098
  multiFormStateUpdated(e, n) {
@@ -31169,7 +31178,7 @@
31169
31178
  console.log("Form is invalid", this.formState);
31170
31179
  return;
31171
31180
  }
31172
- (e.processing = !0), (e.state = u2), e.$emit("processing");
31181
+ (e.processing = !0), (e.state = uD), e.$emit("processing");
31173
31182
  const { submission: n, error: o } = await e.preSubmit(e.model);
31174
31183
  if (o) return console.log("pre submit error", o), s(o);
31175
31184
  const l = {},
@@ -31206,7 +31215,7 @@
31206
31215
  );
31207
31216
  break;
31208
31217
  }
31209
- (e.state = m2), (e.processing = !1), e.$emit("intent", c);
31218
+ (e.state = mD), (e.processing = !1), e.$emit("intent", c);
31210
31219
  }
31211
31220
  async function a(c) {
31212
31221
  await e.postSubmit(c),
@@ -31230,11 +31239,16 @@
31230
31239
  l = (r = o._payment) == null ? void 0 : r.total,
31231
31240
  i = (a = o._payment) == null ? void 0 : a.gateway;
31232
31241
  if (n.form.hasGeographicRequirements) {
31233
- const { coords: s } = await n.$sdk.geo.getPosition();
31242
+ const { coords: s } = await n.$sdk.geo
31243
+ .getPosition()
31244
+ .catch(function (c) {
31245
+ return console.log("Error", c), { coords: void 0 };
31246
+ });
31234
31247
  if (!s || !s.latitude || !s.longitude)
31235
31248
  return {
31236
31249
  error: {
31237
- message: "Location data is required to submit this form",
31250
+ message:
31251
+ "Location data is required to submit this form. Please allow location to continue.",
31238
31252
  status: 400,
31239
31253
  statusCode: 400,
31240
31254
  },
@@ -31497,22 +31511,22 @@
31497
31511
  },
31498
31512
  },
31499
31513
  },
31500
- p2 = ((e) => (
31501
- t.pushScopeId("data-v-091267f5"), (e = e()), t.popScopeId(), e
31514
+ pD = ((e) => (
31515
+ t.pushScopeId("data-v-478e89d4"), (e = e()), t.popScopeId(), e
31502
31516
  ))(() => t.createElementVNode("h3", null, "An error occurred", -1)),
31503
- h2 = { key: 0 },
31504
- y2 = { key: 1 },
31505
- g2 = { key: 2 },
31506
- k2 = { class: "intent-submit" },
31507
- _2 = { key: 0, class: "multistep-form" },
31508
- b2 = { class: "multistep-form-sections" },
31509
- x2 = { class: "multistep-fields" },
31510
- w2 = { class: "multistep-controls" },
31511
- C2 = ["tooltip"],
31512
- V2 = ["tooltip"],
31513
- B2 = { class: "multistep-progress" },
31514
- N2 = ["tooltip"];
31515
- function E2(e, n, o, l, i, r) {
31517
+ hD = { key: 0 },
31518
+ yD = { key: 1 },
31519
+ gD = { key: 2 },
31520
+ kD = { class: "intent-submit" },
31521
+ _D = { key: 0, class: "multistep-form" },
31522
+ bD = { class: "multistep-form-sections" },
31523
+ xD = { class: "multistep-fields" },
31524
+ wD = { class: "multistep-controls" },
31525
+ CD = ["tooltip"],
31526
+ VD = ["tooltip"],
31527
+ BD = { class: "multistep-progress" },
31528
+ ND = ["tooltip"];
31529
+ function ED(e, n, o, l, i, r) {
31516
31530
  var E;
31517
31531
  const a = t.resolveComponent("ux-icon"),
31518
31532
  s = t.resolveComponent("ux-button"),
@@ -31536,19 +31550,19 @@
31536
31550
  t.Fragment,
31537
31551
  { key: 0 },
31538
31552
  [
31539
- p2,
31553
+ pD,
31540
31554
  i.error.message
31541
31555
  ? (t.openBlock(),
31542
31556
  t.createElementBlock(
31543
31557
  "pre",
31544
- h2,
31558
+ hD,
31545
31559
  t.toDisplayString(i.error.message),
31546
31560
  1,
31547
31561
  ))
31548
31562
  : t.createCommentVNode("", !0),
31549
31563
  (E = i.error.data) != null && E.errors
31550
31564
  ? (t.openBlock(),
31551
- t.createElementBlock("div", y2, [
31565
+ t.createElementBlock("div", yD, [
31552
31566
  (t.openBlock(!0),
31553
31567
  t.createElementBlock(
31554
31568
  t.Fragment,
@@ -31571,7 +31585,7 @@
31571
31585
  : (t.openBlock(),
31572
31586
  t.createElementBlock(
31573
31587
  "pre",
31574
- g2,
31588
+ gD,
31575
31589
  t.toDisplayString(i.error),
31576
31590
  1,
31577
31591
  )),
@@ -31679,7 +31693,7 @@
31679
31693
  ],
31680
31694
  ))
31681
31695
  : t.createCommentVNode("", !0),
31682
- t.createElementVNode("div", k2, [
31696
+ t.createElementVNode("div", kD, [
31683
31697
  t.createVNode(
31684
31698
  s,
31685
31699
  {
@@ -31710,8 +31724,8 @@
31710
31724
  [
31711
31725
  o.multistep
31712
31726
  ? (t.openBlock(),
31713
- t.createElementBlock("div", _2, [
31714
- t.createElementVNode("div", b2, [
31727
+ t.createElementBlock("div", _D, [
31728
+ t.createElementVNode("div", bD, [
31715
31729
  (t.openBlock(!0),
31716
31730
  t.createElementBlock(
31717
31731
  t.Fragment,
@@ -31734,7 +31748,7 @@
31734
31748
  ]),
31735
31749
  },
31736
31750
  [
31737
- t.createElementVNode("div", x2, [
31751
+ t.createElementVNode("div", xD, [
31738
31752
  t.createVNode(
31739
31753
  f,
31740
31754
  {
@@ -31765,7 +31779,7 @@
31765
31779
  ],
31766
31780
  ),
31767
31781
  ]),
31768
- t.createElementVNode("div", w2, [
31782
+ t.createElementVNode("div", wD, [
31769
31783
  t.createVNode(
31770
31784
  h,
31771
31785
  { gap: "", center: "" },
@@ -31866,7 +31880,7 @@
31866
31880
  ),
31867
31881
  ],
31868
31882
  8,
31869
- C2,
31883
+ CD,
31870
31884
  ),
31871
31885
  ],
31872
31886
  ),
@@ -31927,7 +31941,7 @@
31927
31941
  ),
31928
31942
  ],
31929
31943
  8,
31930
- V2,
31944
+ VD,
31931
31945
  ),
31932
31946
  ],
31933
31947
  ),
@@ -31951,7 +31965,7 @@
31951
31965
  256,
31952
31966
  )),
31953
31967
  ]),
31954
- t.createElementVNode("div", B2, [
31968
+ t.createElementVNode("div", BD, [
31955
31969
  t.createTextVNode(
31956
31970
  t.toDisplayString(r.displayCurrentPage) +
31957
31971
  " of " +
@@ -32022,7 +32036,7 @@
32022
32036
  ),
32023
32037
  ],
32024
32038
  8,
32025
- N2,
32039
+ ND,
32026
32040
  ),
32027
32041
  ],
32028
32042
  64,
@@ -32035,11 +32049,11 @@
32035
32049
  )
32036
32050
  );
32037
32051
  }
32038
- const Sr = g(f2, [
32039
- ["render", E2],
32040
- ["__scopeId", "data-v-091267f5"],
32052
+ const Sr = g(fD, [
32053
+ ["render", ED],
32054
+ ["__scopeId", "data-v-478e89d4"],
32041
32055
  ]);
32042
- function S2(e) {
32056
+ function SD(e) {
32043
32057
  const n = /<\/?([a-zA-Z0-9]+)[^>]*>/g,
32044
32058
  o = [];
32045
32059
  let l;
@@ -32075,7 +32089,7 @@
32075
32089
  actualTemplate() {
32076
32090
  let e = this.template || "";
32077
32091
  e = e.replaceAll ? e.replaceAll("<br>", "<br/>") : e;
32078
- var { valid: n, invalid: o } = S2(e);
32092
+ var { valid: n, invalid: o } = SD(e);
32079
32093
  return (
32080
32094
  n ||
32081
32095
  (console.log("Invalid html", e),
@@ -32087,7 +32101,7 @@
32087
32101
  components: { VRuntimeTemplate: Hi },
32088
32102
  },
32089
32103
  iI = "",
32090
- T2 = {
32104
+ TD = {
32091
32105
  emits: ["error", "reset"],
32092
32106
  data() {
32093
32107
  return { error: null };
@@ -32101,7 +32115,7 @@
32101
32115
  },
32102
32116
  },
32103
32117
  },
32104
- D2 = {
32118
+ DD = {
32105
32119
  key: 0,
32106
32120
  class: "error-boundary",
32107
32121
  style: {
@@ -32111,11 +32125,11 @@
32111
32125
  padding: "1em",
32112
32126
  },
32113
32127
  };
32114
- function O2(e, n, o, l, i, r) {
32128
+ function OD(e, n, o, l, i, r) {
32115
32129
  const a = t.resolveComponent("ux-button");
32116
32130
  return i.error
32117
32131
  ? (t.openBlock(),
32118
- t.createElementBlock("div", D2, [
32132
+ t.createElementBlock("div", DD, [
32119
32133
  t.createElementVNode(
32120
32134
  "pre",
32121
32135
  null,
@@ -32137,11 +32151,11 @@
32137
32151
  ]))
32138
32152
  : t.renderSlot(e.$slots, "default", { key: 1 }, void 0, !0);
32139
32153
  }
32140
- const F2 = g(T2, [
32141
- ["render", O2],
32154
+ const FD = g(TD, [
32155
+ ["render", OD],
32142
32156
  ["__scopeId", "data-v-0fd69158"],
32143
32157
  ]),
32144
- M2 = {
32158
+ MD = {
32145
32159
  props: {
32146
32160
  field: {
32147
32161
  type: Object,
@@ -32218,8 +32232,8 @@
32218
32232
  },
32219
32233
  },
32220
32234
  aI = "",
32221
- I2 = {
32222
- mixins: [M2],
32235
+ ID = {
32236
+ mixins: [MD],
32223
32237
  props: {
32224
32238
  modelValue: { type: [Object, Array] },
32225
32239
  submission: { type: Boolean, default: !1 },
@@ -32235,8 +32249,8 @@
32235
32249
  },
32236
32250
  },
32237
32251
  },
32238
- $2 = { key: 0, class: "ux-multi-group" };
32239
- function L2(e, n, o, l, i, r) {
32252
+ $D = { key: 0, class: "ux-multi-group" };
32253
+ function LD(e, n, o, l, i, r) {
32240
32254
  const a = t.resolveComponent("flex-cell"),
32241
32255
  s = t.resolveComponent("flex-row"),
32242
32256
  c = t.resolveComponent("ux-panel-header"),
@@ -32245,7 +32259,7 @@
32245
32259
  m = t.resolveComponent("ux-panel");
32246
32260
  return e.multiValue
32247
32261
  ? (t.openBlock(),
32248
- t.createElementBlock("div", $2, [
32262
+ t.createElementBlock("div", $D, [
32249
32263
  (t.openBlock(!0),
32250
32264
  t.createElementBlock(
32251
32265
  t.Fragment,
@@ -32357,13 +32371,13 @@
32357
32371
  ["submission", "fields", "flex", "parentModel", "modelValue"],
32358
32372
  ));
32359
32373
  }
32360
- const A2 = g(I2, [
32361
- ["render", L2],
32374
+ const AD = g(ID, [
32375
+ ["render", LD],
32362
32376
  ["__scopeId", "data-v-cb997d0e"],
32363
32377
  ]),
32364
32378
  sI = "",
32365
- U2 = {
32366
- components: { Item: er, FieldGroup: A2, Compile: qs, ErrorBoundary: F2 },
32379
+ UD = {
32380
+ components: { Item: er, FieldGroup: AD, Compile: qs, ErrorBoundary: FD },
32367
32381
  props: {
32368
32382
  field: { type: Object, required: !0 },
32369
32383
  parentModel: { type: Object },
@@ -32565,26 +32579,26 @@
32565
32579
  },
32566
32580
  },
32567
32581
  },
32568
- P2 = { class: "ux-field-title" },
32569
- j2 = { class: "currency" },
32570
- R2 = { key: 1 },
32571
- z2 = { class: "currency" },
32572
- q2 = { key: 1 },
32573
- H2 = { key: 4, class: "ux-password-render" },
32574
- W2 = ["type", "value"],
32575
- G2 = ["type", "value"],
32576
- K2 = ["innerHTML"],
32577
- Y2 = ["innerHTML"],
32578
- Z2 = { key: 1 },
32579
- J2 = { key: 1 },
32580
- X2 = ["href"],
32581
- Q2 = { key: 1 },
32582
- v2 = ["href"],
32583
- eD = ["href"],
32584
- tD = { key: 1 },
32585
- nD = ["href"],
32586
- oD = { key: 1 };
32587
- function rD(e, n, o, l, i, r) {
32582
+ PD = { class: "ux-field-title" },
32583
+ jD = { class: "currency" },
32584
+ RD = { key: 1 },
32585
+ zD = { class: "currency" },
32586
+ qD = { key: 1 },
32587
+ HD = { key: 4, class: "ux-password-render" },
32588
+ WD = ["type", "value"],
32589
+ GD = ["type", "value"],
32590
+ KD = ["innerHTML"],
32591
+ YD = ["innerHTML"],
32592
+ ZD = { key: 1 },
32593
+ JD = { key: 1 },
32594
+ XD = ["href"],
32595
+ QD = { key: 1 },
32596
+ vD = ["href"],
32597
+ e2 = ["href"],
32598
+ t2 = { key: 1 },
32599
+ n2 = ["href"],
32600
+ o2 = { key: 1 };
32601
+ function r2(e, n, o, l, i, r) {
32588
32602
  const a = t.resolveComponent("field-group"),
32589
32603
  s = t.resolveComponent("v-ace-editor"),
32590
32604
  c = t.resolveComponent("flex-cell"),
@@ -32599,7 +32613,7 @@
32599
32613
  "div",
32600
32614
  { key: 0, class: t.normalizeClass(["ux-field-render", r.classes]) },
32601
32615
  [
32602
- t.createElementVNode("label", P2, t.toDisplayString(r.title), 1),
32616
+ t.createElementVNode("label", PD, t.toDisplayString(r.title), 1),
32603
32617
  r.widget === "group"
32604
32618
  ? (t.openBlock(),
32605
32619
  t.createElementBlock(
@@ -32682,7 +32696,7 @@
32682
32696
  ),
32683
32697
  t.createElementVNode(
32684
32698
  "span",
32685
- j2,
32699
+ jD,
32686
32700
  t.toDisplayString(o.field.currency),
32687
32701
  1,
32688
32702
  ),
@@ -32692,7 +32706,7 @@
32692
32706
  256,
32693
32707
  ))
32694
32708
  : (t.openBlock(),
32695
- t.createElementBlock("div", R2, [
32709
+ t.createElementBlock("div", RD, [
32696
32710
  t.createTextVNode(
32697
32711
  t.toDisplayString(
32698
32712
  r.formatCurrency(r.fieldModel),
@@ -32701,7 +32715,7 @@
32701
32715
  ),
32702
32716
  t.createElementVNode(
32703
32717
  "span",
32704
- z2,
32718
+ zD,
32705
32719
  t.toDisplayString(o.field.currency),
32706
32720
  1,
32707
32721
  ),
@@ -32746,7 +32760,7 @@
32746
32760
  256,
32747
32761
  ))
32748
32762
  : (t.openBlock(),
32749
- t.createElementBlock("div", q2, [
32763
+ t.createElementBlock("div", qD, [
32750
32764
  t.createVNode(
32751
32765
  s,
32752
32766
  {
@@ -32768,7 +32782,7 @@
32768
32782
  ))
32769
32783
  : r.widget === "password"
32770
32784
  ? (t.openBlock(),
32771
- t.createElementBlock("div", H2, [
32785
+ t.createElementBlock("div", HD, [
32772
32786
  r.multiValue
32773
32787
  ? (t.openBlock(!0),
32774
32788
  t.createElementBlock(
@@ -32800,7 +32814,7 @@
32800
32814
  },
32801
32815
  null,
32802
32816
  8,
32803
- W2,
32817
+ WD,
32804
32818
  ),
32805
32819
  ]),
32806
32820
  _: 2,
@@ -32911,7 +32925,7 @@
32911
32925
  },
32912
32926
  null,
32913
32927
  8,
32914
- G2,
32928
+ GD,
32915
32929
  ),
32916
32930
  ]),
32917
32931
  _: 1,
@@ -33119,7 +33133,7 @@
33119
33133
  { innerHTML: h },
33120
33134
  null,
33121
33135
  8,
33122
- K2,
33136
+ KD,
33123
33137
  ),
33124
33138
  ]),
33125
33139
  _: 2,
@@ -33143,7 +33157,7 @@
33143
33157
  { innerHTML: r.fieldModel },
33144
33158
  null,
33145
33159
  8,
33146
- Y2,
33160
+ YD,
33147
33161
  ),
33148
33162
  ]),
33149
33163
  _: 1,
@@ -33181,7 +33195,7 @@
33181
33195
  : (t.openBlock(),
33182
33196
  t.createElementBlock(
33183
33197
  "div",
33184
- Z2,
33198
+ ZD,
33185
33199
  t.toDisplayString(!!r.fieldModel),
33186
33200
  1,
33187
33201
  )),
@@ -33219,7 +33233,7 @@
33219
33233
  : (t.openBlock(),
33220
33234
  t.createElementBlock(
33221
33235
  "div",
33222
- J2,
33236
+ JD,
33223
33237
  t.toDisplayString(
33224
33238
  r.renderDate(r.fieldModel),
33225
33239
  ),
@@ -33253,7 +33267,7 @@
33253
33267
  { href: `mailto:${h}` },
33254
33268
  t.toDisplayString(h),
33255
33269
  9,
33256
- X2,
33270
+ XD,
33257
33271
  ),
33258
33272
  ],
33259
33273
  )
@@ -33262,13 +33276,13 @@
33262
33276
  256,
33263
33277
  ))
33264
33278
  : (t.openBlock(),
33265
- t.createElementBlock("div", Q2, [
33279
+ t.createElementBlock("div", QD, [
33266
33280
  t.createElementVNode(
33267
33281
  "a",
33268
33282
  { href: `mailto:${r.fieldModel}` },
33269
33283
  t.toDisplayString(r.fieldModel),
33270
33284
  9,
33271
- v2,
33285
+ vD,
33272
33286
  ),
33273
33287
  ])),
33274
33288
  ],
@@ -33299,7 +33313,7 @@
33299
33313
  { href: h },
33300
33314
  t.toDisplayString(h),
33301
33315
  9,
33302
- eD,
33316
+ e2,
33303
33317
  ),
33304
33318
  ],
33305
33319
  )
@@ -33308,13 +33322,13 @@
33308
33322
  256,
33309
33323
  ))
33310
33324
  : (t.openBlock(),
33311
- t.createElementBlock("div", tD, [
33325
+ t.createElementBlock("div", t2, [
33312
33326
  t.createElementVNode(
33313
33327
  "a",
33314
33328
  { href: r.fieldModel },
33315
33329
  t.toDisplayString(r.fieldModel),
33316
33330
  9,
33317
- nD,
33331
+ n2,
33318
33332
  ),
33319
33333
  ])),
33320
33334
  ],
@@ -33349,7 +33363,7 @@
33349
33363
  : (t.openBlock(),
33350
33364
  t.createElementBlock(
33351
33365
  "div",
33352
- oD,
33366
+ o2,
33353
33367
  t.toDisplayString(r.fieldModel),
33354
33368
  1,
33355
33369
  )),
@@ -33365,12 +33379,12 @@
33365
33379
  ))
33366
33380
  : t.createCommentVNode("", !0);
33367
33381
  }
33368
- const Tr = g(U2, [
33369
- ["render", rD],
33382
+ const Tr = g(UD, [
33383
+ ["render", r2],
33370
33384
  ["__scopeId", "data-v-932f5321"],
33371
33385
  ]),
33372
33386
  cI = "",
33373
- lD = {
33387
+ l2 = {
33374
33388
  props: {
33375
33389
  parentModel: { type: Object },
33376
33390
  fields: {
@@ -33411,7 +33425,7 @@
33411
33425
  },
33412
33426
  },
33413
33427
  };
33414
- function iD(e, n, o, l, i, r) {
33428
+ function i2(e, n, o, l, i, r) {
33415
33429
  const a = t.resolveComponent("ux-field-render");
33416
33430
  return (
33417
33431
  t.openBlock(),
@@ -33466,8 +33480,8 @@
33466
33480
  )
33467
33481
  );
33468
33482
  }
33469
- const Hs = g(lD, [
33470
- ["render", iD],
33483
+ const Hs = g(l2, [
33484
+ ["render", i2],
33471
33485
  ["__scopeId", "data-v-f2b5ec33"],
33472
33486
  ]);
33473
33487
  function Ws(e) {
@@ -33540,7 +33554,7 @@
33540
33554
  );
33541
33555
  }
33542
33556
  const dI = "",
33543
- aD = {
33557
+ a2 = {
33544
33558
  props: {
33545
33559
  total: {
33546
33560
  type: Number,
@@ -33634,7 +33648,7 @@
33634
33648
  };
33635
33649
  },
33636
33650
  };
33637
- function sD(e, n, o, l, i, r) {
33651
+ function s2(e, n, o, l, i, r) {
33638
33652
  const a = t.resolveComponent("native-select"),
33639
33653
  s = t.resolveComponent("flex-cell"),
33640
33654
  c = t.resolveComponent("ux-icon"),
@@ -33850,52 +33864,52 @@
33850
33864
  )
33851
33865
  );
33852
33866
  }
33853
- const cD = g(aD, [
33854
- ["render", sD],
33867
+ const c2 = g(a2, [
33868
+ ["render", s2],
33855
33869
  ["__scopeId", "data-v-696aa569"],
33856
33870
  ]);
33857
- var dD = "__lodash_hash_undefined__";
33858
- function uD(e) {
33859
- return this.__data__.set(e, dD), this;
33871
+ var d2 = "__lodash_hash_undefined__";
33872
+ function u2(e) {
33873
+ return this.__data__.set(e, d2), this;
33860
33874
  }
33861
- var mD = uD;
33862
- function fD(e) {
33875
+ var m2 = u2;
33876
+ function f2(e) {
33863
33877
  return this.__data__.has(e);
33864
33878
  }
33865
- var pD = fD,
33866
- hD = Mi,
33867
- yD = mD,
33868
- gD = pD;
33879
+ var p2 = f2,
33880
+ h2 = Mi,
33881
+ y2 = m2,
33882
+ g2 = p2;
33869
33883
  function po(e) {
33870
33884
  var n = -1,
33871
33885
  o = e == null ? 0 : e.length;
33872
- for (this.__data__ = new hD(); ++n < o; ) this.add(e[n]);
33886
+ for (this.__data__ = new h2(); ++n < o; ) this.add(e[n]);
33873
33887
  }
33874
- (po.prototype.add = po.prototype.push = yD), (po.prototype.has = gD);
33875
- var kD = po,
33876
- _D = _s;
33877
- function bD(e, n) {
33888
+ (po.prototype.add = po.prototype.push = y2), (po.prototype.has = g2);
33889
+ var k2 = po,
33890
+ _2 = _s;
33891
+ function b2(e, n) {
33878
33892
  var o = e == null ? 0 : e.length;
33879
- return !!o && _D(e, n, 0) > -1;
33893
+ return !!o && _2(e, n, 0) > -1;
33880
33894
  }
33881
- var xD = bD;
33882
- function wD(e, n, o) {
33895
+ var x2 = b2;
33896
+ function w2(e, n, o) {
33883
33897
  for (var l = -1, i = e == null ? 0 : e.length; ++l < i; )
33884
33898
  if (o(n, e[l])) return !0;
33885
33899
  return !1;
33886
33900
  }
33887
- var CD = wD;
33888
- function VD(e, n) {
33901
+ var C2 = w2;
33902
+ function V2(e, n) {
33889
33903
  return e.has(n);
33890
33904
  }
33891
- var BD = VD,
33892
- ND = Ho,
33893
- ED = Ot,
33894
- SD = ND(ED, "Set"),
33895
- TD = SD;
33896
- function DD() {}
33897
- var OD = DD;
33898
- function FD(e) {
33905
+ var B2 = V2,
33906
+ N2 = Ho,
33907
+ E2 = Ot,
33908
+ S2 = N2(E2, "Set"),
33909
+ T2 = S2;
33910
+ function D2() {}
33911
+ var O2 = D2;
33912
+ function F2(e) {
33899
33913
  var n = -1,
33900
33914
  o = Array(e.size);
33901
33915
  return (
@@ -33905,37 +33919,37 @@
33905
33919
  o
33906
33920
  );
33907
33921
  }
33908
- var Gs = FD,
33909
- Dr = TD,
33910
- MD = OD,
33911
- ID = Gs,
33912
- $D = 1 / 0,
33913
- LD =
33914
- Dr && 1 / ID(new Dr([, -0]))[1] == $D
33922
+ var Gs = F2,
33923
+ Dr = T2,
33924
+ M2 = O2,
33925
+ I2 = Gs,
33926
+ $2 = 1 / 0,
33927
+ L2 =
33928
+ Dr && 1 / I2(new Dr([, -0]))[1] == $2
33915
33929
  ? function (e) {
33916
33930
  return new Dr(e);
33917
33931
  }
33918
- : MD,
33919
- AD = LD,
33920
- UD = kD,
33921
- PD = xD,
33922
- jD = CD,
33923
- RD = BD,
33924
- zD = AD,
33925
- qD = Gs,
33926
- HD = 200;
33927
- function WD(e, n, o) {
33932
+ : M2,
33933
+ A2 = L2,
33934
+ U2 = k2,
33935
+ P2 = x2,
33936
+ j2 = C2,
33937
+ R2 = B2,
33938
+ z2 = A2,
33939
+ q2 = Gs,
33940
+ H2 = 200;
33941
+ function W2(e, n, o) {
33928
33942
  var l = -1,
33929
- i = PD,
33943
+ i = P2,
33930
33944
  r = e.length,
33931
33945
  a = !0,
33932
33946
  s = [],
33933
33947
  c = s;
33934
- if (o) (a = !1), (i = jD);
33935
- else if (r >= HD) {
33936
- var u = n ? null : zD(e);
33937
- if (u) return qD(u);
33938
- (a = !1), (i = RD), (c = new UD());
33948
+ if (o) (a = !1), (i = j2);
33949
+ else if (r >= H2) {
33950
+ var u = n ? null : z2(e);
33951
+ if (u) return q2(u);
33952
+ (a = !1), (i = R2), (c = new U2());
33939
33953
  } else c = n ? [] : s;
33940
33954
  e: for (; ++l < r; ) {
33941
33955
  var d = e[l],
@@ -33947,14 +33961,14 @@
33947
33961
  }
33948
33962
  return s;
33949
33963
  }
33950
- var GD = WD,
33951
- KD = GD;
33952
- function YD(e) {
33953
- return e && e.length ? KD(e) : [];
33964
+ var G2 = W2,
33965
+ K2 = G2;
33966
+ function Y2(e) {
33967
+ return e && e.length ? K2(e) : [];
33954
33968
  }
33955
- var ZD = YD;
33969
+ var Z2 = Y2;
33956
33970
  const uI = "";
33957
- function JD(e, n) {
33971
+ function J2(e, n) {
33958
33972
  var o = [],
33959
33973
  l;
33960
33974
  switch (n) {
@@ -34053,7 +34067,7 @@
34053
34067
  return { operator: "and", filters: [] };
34054
34068
  }
34055
34069
  let be, Or, Fr;
34056
- const XD = {
34070
+ const X2 = {
34057
34071
  emits: ["loading", "loaded", "click:row", "click:actions"],
34058
34072
  props: {
34059
34073
  defaultPage: { type: Number, default: 1 },
@@ -34102,7 +34116,7 @@
34102
34116
  pluralText: { type: String },
34103
34117
  },
34104
34118
  components: {
34105
- Pager: cD,
34119
+ Pager: c2,
34106
34120
  NativeTable: Ki,
34107
34121
  FilterBuilder: cs,
34108
34122
  Search: bn,
@@ -34473,7 +34487,7 @@
34473
34487
  n.push("color"), n.push("bgColor");
34474
34488
  break;
34475
34489
  }
34476
- return ZD(n);
34490
+ return Z2(n);
34477
34491
  },
34478
34492
  columns() {
34479
34493
  let e = [],
@@ -34489,7 +34503,7 @@
34489
34503
  var l = this.actualOptions.prefixColumns || [];
34490
34504
  l.forEach(o(!0));
34491
34505
  var i = this.actualOptions.columns || [],
34492
- r = i.length ? i : JD(this, this.basicType);
34506
+ r = i.length ? i : J2(this, this.basicType);
34493
34507
  r.length || r.push({ title: "Title", key: "title" }),
34494
34508
  r.forEach(o(!0));
34495
34509
  var a = this.additionalFields;
@@ -34714,10 +34728,10 @@
34714
34728
  },
34715
34729
  },
34716
34730
  Mr = (e) => (
34717
- t.pushScopeId("data-v-10d1c729"), (e = e()), t.popScopeId(), e
34731
+ t.pushScopeId("data-v-665d3903"), (e = e()), t.popScopeId(), e
34718
34732
  ),
34719
- QD = Mr(() => t.createElementVNode("strong", null, "Select Columns", -1)),
34720
- vD = { class: "footer" },
34733
+ Q2 = Mr(() => t.createElementVNode("strong", null, "Select Columns", -1)),
34734
+ v2 = { class: "footer" },
34721
34735
  eO = Mr(() => t.createElementVNode("p", null, null, -1)),
34722
34736
  tO = { key: 0 },
34723
34737
  nO = Mr(() => t.createElementVNode("p", null, null, -1));
@@ -34737,7 +34751,7 @@
34737
34751
  $ = t.resolveComponent("flex-footer"),
34738
34752
  j = t.resolveComponent("flex-row"),
34739
34753
  w = t.resolveComponent("search"),
34740
- G = t.resolveComponent("ux-field"),
34754
+ K = t.resolveComponent("ux-field"),
34741
34755
  M = t.resolveComponent("filter-builder"),
34742
34756
  D = t.resolveComponent("spinner");
34743
34757
  return r.actualDefinition
@@ -34871,6 +34885,8 @@
34871
34885
  i
34872
34886
  .manager
34873
34887
  .items,
34888
+ selectionManager:
34889
+ i.manager,
34874
34890
  items:
34875
34891
  r.items,
34876
34892
  "onClick:actions":
@@ -34889,6 +34905,7 @@
34889
34905
  "cacheKey",
34890
34906
  "definition",
34891
34907
  "selection",
34908
+ "selectionManager",
34892
34909
  "items",
34893
34910
  "onClick:actions",
34894
34911
  "onSelect:item:toggle",
@@ -35017,7 +35034,7 @@
35017
35034
  left: "",
35018
35035
  },
35019
35036
  ),
35020
- QD,
35037
+ Q2,
35021
35038
  ],
35022
35039
  ),
35023
35040
  _: 1,
@@ -35234,7 +35251,7 @@
35234
35251
  void 0,
35235
35252
  !0,
35236
35253
  ),
35237
- t.createElementVNode("div", vD, [
35254
+ t.createElementVNode("div", v2, [
35238
35255
  t.createVNode(
35239
35256
  S,
35240
35257
  {
@@ -35307,7 +35324,7 @@
35307
35324
  ? (t.openBlock(),
35308
35325
  t.createElementBlock("div", tO, [
35309
35326
  t.createVNode(
35310
- G,
35327
+ K,
35311
35328
  {
35312
35329
  field: r.dateRangeField,
35313
35330
  modelValue: i.dateRangeFilter,
@@ -35368,9 +35385,9 @@
35368
35385
  ))
35369
35386
  : t.createCommentVNode("", !0);
35370
35387
  }
35371
- const Ys = g(XD, [
35388
+ const Ys = g(X2, [
35372
35389
  ["render", oO],
35373
- ["__scopeId", "data-v-10d1c729"],
35390
+ ["__scopeId", "data-v-665d3903"],
35374
35391
  ]),
35375
35392
  mI = "",
35376
35393
  rO = {
@@ -37011,7 +37028,7 @@
37011
37028
  install(e, n) {
37012
37029
  var o;
37013
37030
  console.log(XO),
37014
- (n.date = Z),
37031
+ (n.date = G),
37015
37032
  (n.global = n.global || t.reactive({})),
37016
37033
  ((o = n.global) != null && o.cacheKeys) ||
37017
37034
  (n.global.cacheKeys = n.global.cacheKeys || t.reactive({})),