@qikdev/vue-ui 0.2.272 → 0.2.276

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.276";
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 = {
@@ -11182,6 +11184,24 @@
11182
11184
  },
11183
11185
  },
11184
11186
  computed: {
11187
+ status() {
11188
+ var e, n;
11189
+ if ((e = this.model.meta) != null && e.deleted) return "deleted";
11190
+ if (
11191
+ ((n = this.model.meta) == null ? void 0 : n.status) === "inactive"
11192
+ )
11193
+ return "inactive";
11194
+ },
11195
+ classes() {
11196
+ var n, o;
11197
+ const e = [];
11198
+ return (
11199
+ (n = this.model.meta) != null && n.deleted && e.push("deleted"),
11200
+ ((o = this.model.meta) == null ? void 0 : o.status) ===
11201
+ "inactive" && e.push("inactive"),
11202
+ e
11203
+ );
11204
+ },
11185
11205
  hasIcon() {
11186
11206
  switch (this.basicType) {
11187
11207
  case "formrequest":
@@ -11253,7 +11273,7 @@
11253
11273
  t.createElementBlock(
11254
11274
  "div",
11255
11275
  {
11256
- class: "content-item",
11276
+ class: t.normalizeClass(["content-item", r.classes]),
11257
11277
  onClick:
11258
11278
  n[0] ||
11259
11279
  (n[0] = t.withModifiers(
@@ -11358,6 +11378,24 @@
11358
11378
  _: 3,
11359
11379
  },
11360
11380
  ),
11381
+ r.status
11382
+ ? (t.openBlock(),
11383
+ t.createBlock(
11384
+ s,
11385
+ { key: 2, shrink: "" },
11386
+ {
11387
+ default: t.withCtx(() => [
11388
+ t.createElementVNode(
11389
+ "div",
11390
+ { class: t.normalizeClass(["pill", r.status]) },
11391
+ t.toDisplayString(r.status),
11392
+ 3,
11393
+ ),
11394
+ ]),
11395
+ _: 1,
11396
+ },
11397
+ ))
11398
+ : t.createCommentVNode("", !0),
11361
11399
  t.createVNode(
11362
11400
  s,
11363
11401
  { shrink: "" },
@@ -11373,12 +11411,13 @@
11373
11411
  },
11374
11412
  ),
11375
11413
  ],
11414
+ 2,
11376
11415
  )
11377
11416
  );
11378
11417
  }
11379
11418
  const er = g(H_, [
11380
11419
  ["render", K_],
11381
- ["__scopeId", "data-v-cf0f8f29"],
11420
+ ["__scopeId", "data-v-df4b8b3a"],
11382
11421
  ]);
11383
11422
  /**!
11384
11423
  * Sortable 1.14.0
@@ -11691,7 +11730,7 @@
11691
11730
  } while (e !== l && (e = e.parentNode));
11692
11731
  return [n, o];
11693
11732
  }
11694
- function e1(e, n) {
11733
+ function eb(e, n) {
11695
11734
  for (var o in e)
11696
11735
  if (e.hasOwnProperty(o)) {
11697
11736
  for (var l in n)
@@ -11720,7 +11759,7 @@
11720
11759
  while ((o = o.parentNode));
11721
11760
  return ze();
11722
11761
  }
11723
- function t1(e, n) {
11762
+ function tb(e, n) {
11724
11763
  if (e && n) for (var o in n) n.hasOwnProperty(o) && (e[o] = n[o]);
11725
11764
  return e;
11726
11765
  }
@@ -11745,7 +11784,7 @@
11745
11784
  }
11746
11785
  };
11747
11786
  }
11748
- function n1() {
11787
+ function nb() {
11749
11788
  clearTimeout(mn), (mn = void 0);
11750
11789
  }
11751
11790
  function Ca(e, n, o) {
@@ -11761,7 +11800,7 @@
11761
11800
  : e.cloneNode(!0);
11762
11801
  }
11763
11802
  var Ee = "Sortable" + new Date().getTime();
11764
- function o1() {
11803
+ function ob() {
11765
11804
  var e = [],
11766
11805
  n;
11767
11806
  return {
@@ -11785,7 +11824,7 @@
11785
11824
  e.push(l);
11786
11825
  },
11787
11826
  removeAnimationState: function (l) {
11788
- e.splice(e1(e, { target: l }), 1);
11827
+ e.splice(eb(e, { target: l }), 1);
11789
11828
  },
11790
11829
  animateAll: function (l) {
11791
11830
  var i = this;
@@ -11811,7 +11850,7 @@
11811
11850
  !nr(d, m) &&
11812
11851
  (h.top - m.top) / (h.left - m.left) ===
11813
11852
  (d.top - m.top) / (d.left - m.left) &&
11814
- (c = l1(h, f, p, i.options)),
11853
+ (c = lb(h, f, p, i.options)),
11815
11854
  nr(m, d) ||
11816
11855
  ((u.prevFromRect = d),
11817
11856
  (u.prevToRect = m),
@@ -11849,7 +11888,7 @@
11849
11888
  (l.animatingX = !!d),
11850
11889
  (l.animatingY = !!m),
11851
11890
  O(l, "transform", "translate3d(" + d + "px," + m + "px,0)"),
11852
- (this.forRepaintDummy = r1(l)),
11891
+ (this.forRepaintDummy = rb(l)),
11853
11892
  O(
11854
11893
  l,
11855
11894
  "transition",
@@ -11871,10 +11910,10 @@
11871
11910
  },
11872
11911
  };
11873
11912
  }
11874
- function r1(e) {
11913
+ function rb(e) {
11875
11914
  return e.offsetWidth;
11876
11915
  }
11877
- function l1(e, n, o, l) {
11916
+ function lb(e, n, o, l) {
11878
11917
  return (
11879
11918
  (Math.sqrt(Math.pow(n.top - e.top, 2) + Math.pow(n.left - e.left, 2)) /
11880
11919
  Math.sqrt(Math.pow(n.top - o.top, 2) + Math.pow(n.left - o.left, 2))) *
@@ -11950,7 +11989,7 @@
11950
11989
  );
11951
11990
  },
11952
11991
  };
11953
- function i1(e) {
11992
+ function ib(e) {
11954
11993
  var n = e.sortable,
11955
11994
  o = e.rootEl,
11956
11995
  l = e.name,
@@ -11987,12 +12026,12 @@
11987
12026
  o && o.dispatchEvent(y), E[S] && E[S].call(n, y);
11988
12027
  }
11989
12028
  }
11990
- var a1 = ["evt"],
12029
+ var ab = ["evt"],
11991
12030
  Ce = function (n, o) {
11992
12031
  var l =
11993
12032
  arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : {},
11994
12033
  i = l.evt,
11995
- r = J_(l, a1);
12034
+ r = J_(l, ab);
11996
12035
  fn.pluginEvent.bind(F)(
11997
12036
  n,
11998
12037
  o,
@@ -12031,7 +12070,7 @@
12031
12070
  );
12032
12071
  };
12033
12072
  function _e(e) {
12034
- i1(
12073
+ ib(
12035
12074
  je(
12036
12075
  {
12037
12076
  putSortable: de,
@@ -12083,7 +12122,7 @@
12083
12122
  no = typeof document < "u",
12084
12123
  oo = ya,
12085
12124
  Ea = dn || Xe ? "cssFloat" : "float",
12086
- s1 = no && !Q_ && !ya && "draggable" in document.createElement("div"),
12125
+ sb = no && !Q_ && !ya && "draggable" in document.createElement("div"),
12087
12126
  Sa = (function () {
12088
12127
  if (no) {
12089
12128
  if (Xe) return !1;
@@ -12133,7 +12172,7 @@
12133
12172
  ? "vertical"
12134
12173
  : "horizontal";
12135
12174
  },
12136
- c1 = function (n, o, l) {
12175
+ cb = function (n, o, l) {
12137
12176
  var i = l ? n.left : n.top,
12138
12177
  r = l ? n.right : n.bottom,
12139
12178
  a = l ? n.width : n.height,
@@ -12142,7 +12181,7 @@
12142
12181
  u = l ? o.width : o.height;
12143
12182
  return i === s || r === c || i + a / 2 === s + u / 2;
12144
12183
  },
12145
- d1 = function (n, o) {
12184
+ db = function (n, o) {
12146
12185
  var l;
12147
12186
  return (
12148
12187
  Qn.some(function (i) {
@@ -12209,7 +12248,7 @@
12209
12248
  var bt = function (n) {
12210
12249
  if (x) {
12211
12250
  n = n.touches ? n.touches[0] : n;
12212
- var o = d1(n.clientX, n.clientY);
12251
+ var o = db(n.clientX, n.clientY);
12213
12252
  if (o) {
12214
12253
  var l = {};
12215
12254
  for (var i in n) n.hasOwnProperty(i) && (l[i] = n[i]);
@@ -12220,7 +12259,7 @@
12220
12259
  }
12221
12260
  }
12222
12261
  },
12223
- u1 = function (n) {
12262
+ ub = function (n) {
12224
12263
  x && x.parentNode[Ee]._isOutsideThisEl(n.target);
12225
12264
  };
12226
12265
  function F(e, n) {
@@ -12280,7 +12319,7 @@
12280
12319
  i.charAt(0) === "_" &&
12281
12320
  typeof this[i] == "function" &&
12282
12321
  (this[i] = this[i].bind(this));
12283
- (this.nativeDraggable = n.forceFallback ? !1 : s1),
12322
+ (this.nativeDraggable = n.forceFallback ? !1 : sb),
12284
12323
  this.nativeDraggable && (this.options.touchStartThreshold = 1),
12285
12324
  n.supportPointer
12286
12325
  ? W(e, "pointerdown", this._onTapStart)
@@ -12289,7 +12328,7 @@
12289
12328
  this.nativeDraggable && (W(e, "dragover", this), W(e, "dragenter", this)),
12290
12329
  Qn.push(this.el),
12291
12330
  n.store && n.store.get && this.sort(n.store.get(this) || []),
12292
- Ze(this, o1());
12331
+ Ze(this, ob());
12293
12332
  }
12294
12333
  F.prototype = {
12295
12334
  constructor: F,
@@ -12319,7 +12358,7 @@
12319
12358
  c,
12320
12359
  d = i.filter;
12321
12360
  if (
12322
- (_1(l),
12361
+ (_b(l),
12323
12362
  !x &&
12324
12363
  !(
12325
12364
  (/mousedown|pointerdown/.test(a) && n.button !== 0) ||
@@ -12491,7 +12530,7 @@
12491
12530
  _dragStarted: function (n, o) {
12492
12531
  if (((jt = !1), J && x)) {
12493
12532
  Ce("dragStarted", this, { evt: o }),
12494
- this.nativeDraggable && W(document, "dragover", u1);
12533
+ this.nativeDraggable && W(document, "dragover", ub);
12495
12534
  var l = this.options;
12496
12535
  !n && Ne(x, l.dragClass, !1),
12497
12536
  Ne(x, l.ghostClass, !0),
@@ -12793,7 +12832,7 @@
12793
12832
  $(!0)
12794
12833
  );
12795
12834
  var w = tr(o, s.draggable);
12796
- if (!w || (h1(n, p, this) && !w.animated)) {
12835
+ if (!w || (hb(n, p, this) && !w.animated)) {
12797
12836
  if (w === x) return $(!1);
12798
12837
  if (
12799
12838
  (w && o === n.target && (l = w),
@@ -12801,17 +12840,17 @@
12801
12840
  ro(J, o, x, i, l, r, n, !!l) !== !1)
12802
12841
  )
12803
12842
  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);
12843
+ } else if (w && pb(n, p, this)) {
12844
+ var K = At(o, 0, s, !0);
12845
+ if (K === x) return $(!1);
12846
+ if (((l = K), (r = ae(l)), ro(J, o, x, i, l, r, n, !1) !== !1))
12847
+ return S(), o.insertBefore(x, K), (te = o), j(), $(!0);
12809
12848
  } else if (l.parentNode === o) {
12810
12849
  r = ae(l);
12811
12850
  var M = 0,
12812
12851
  D,
12813
12852
  A = x.parentNode !== o,
12814
- I = !c1(
12853
+ I = !cb(
12815
12854
  (x.animated && x.toRect) || i,
12816
12855
  (l.animated && l.toRect) || r,
12817
12856
  p,
@@ -12820,7 +12859,7 @@
12820
12859
  se = ba(l, "top", "top") || ba(x, "top", "top"),
12821
12860
  me = se ? se.scrollTop : void 0;
12822
12861
  Rt !== l && ((D = r[X]), (gn = !1), (vn = (!I && s.invertSwap) || A)),
12823
- (M = y1(
12862
+ (M = yb(
12824
12863
  n,
12825
12864
  l,
12826
12865
  r,
@@ -12848,7 +12887,7 @@
12848
12887
  return (
12849
12888
  (it === 1 || it === -1) && (ye = it === 1),
12850
12889
  (ar = !0),
12851
- setTimeout(f1, 30),
12890
+ setTimeout(fb, 30),
12852
12891
  S(),
12853
12892
  ye && !Ve
12854
12893
  ? o.appendChild(x)
@@ -13022,7 +13061,7 @@
13022
13061
  break;
13023
13062
  case "dragenter":
13024
13063
  case "dragover":
13025
- x && (this._onDragOver(n), m1(n));
13064
+ x && (this._onDragOver(n), mb(n));
13026
13065
  break;
13027
13066
  case "selectstart":
13028
13067
  n.preventDefault();
@@ -13042,7 +13081,7 @@
13042
13081
  )
13043
13082
  (o = l[i]),
13044
13083
  Re(o, a.draggable, this.el, !1) &&
13045
- n.push(o.getAttribute(a.dataIdAttr) || k1(o));
13084
+ n.push(o.getAttribute(a.dataIdAttr) || kb(o));
13046
13085
  return n;
13047
13086
  },
13048
13087
  sort: function (n, o) {
@@ -13119,7 +13158,7 @@
13119
13158
  }
13120
13159
  },
13121
13160
  };
13122
- function m1(e) {
13161
+ function mb(e) {
13123
13162
  e.dataTransfer && (e.dataTransfer.dropEffect = "move"),
13124
13163
  e.cancelable && e.preventDefault();
13125
13164
  }
@@ -13148,17 +13187,17 @@
13148
13187
  function sr(e) {
13149
13188
  e.draggable = !1;
13150
13189
  }
13151
- function f1() {
13190
+ function fb() {
13152
13191
  ar = !1;
13153
13192
  }
13154
- function p1(e, n, o) {
13193
+ function pb(e, n, o) {
13155
13194
  var l = ae(At(o.el, 0, o.options, !0)),
13156
13195
  i = 10;
13157
13196
  return n
13158
13197
  ? e.clientX < l.left - i || (e.clientY < l.top && e.clientX < l.right)
13159
13198
  : e.clientY < l.top - i || (e.clientY < l.bottom && e.clientX < l.left);
13160
13199
  }
13161
- function h1(e, n, o) {
13200
+ function hb(e, n, o) {
13162
13201
  var l = ae(tr(o.el, o.options.draggable)),
13163
13202
  i = 10;
13164
13203
  return n
@@ -13167,7 +13206,7 @@
13167
13206
  : (e.clientX > l.right && e.clientY > l.top) ||
13168
13207
  (e.clientX <= l.right && e.clientY > l.bottom + i);
13169
13208
  }
13170
- function y1(e, n, o, l, i, r, a, s) {
13209
+ function yb(e, n, o, l, i, r, a, s) {
13171
13210
  var c = l ? e.clientY : e.clientX,
13172
13211
  u = l ? o.height : o.width,
13173
13212
  d = l ? o.top : o.left,
@@ -13184,7 +13223,7 @@
13184
13223
  f = !0;
13185
13224
  else if (yn === 1 ? c < d + eo : c > m - eo) return -yn;
13186
13225
  } else if (c > d + (u * (1 - i)) / 2 && c < m - (u * (1 - i)) / 2)
13187
- return g1(n);
13226
+ return gb(n);
13188
13227
  }
13189
13228
  return (
13190
13229
  (f = f || a),
@@ -13195,10 +13234,10 @@
13195
13234
  : 0
13196
13235
  );
13197
13236
  }
13198
- function g1(e) {
13237
+ function gb(e) {
13199
13238
  return Fe(x) < Fe(e) ? 1 : -1;
13200
13239
  }
13201
- function k1(e) {
13240
+ function kb(e) {
13202
13241
  for (
13203
13242
  var n = e.tagName + e.className + e.src + e.href + e.textContent,
13204
13243
  o = n.length,
@@ -13209,7 +13248,7 @@
13209
13248
  l += n.charCodeAt(o);
13210
13249
  return l.toString(36);
13211
13250
  }
13212
- function _1(e) {
13251
+ function _b(e) {
13213
13252
  to.length = 0;
13214
13253
  for (var n = e.getElementsByTagName("input"), o = n.length; o--; ) {
13215
13254
  var l = n[o];
@@ -13234,7 +13273,7 @@
13234
13273
  is: function (n, o) {
13235
13274
  return !!Re(n, o, n, !1);
13236
13275
  },
13237
- extend: t1,
13276
+ extend: tb,
13238
13277
  throttle: wa,
13239
13278
  closest: Re,
13240
13279
  toggleClass: Ne,
@@ -13272,7 +13311,7 @@
13272
13311
  fr,
13273
13312
  io,
13274
13313
  _n;
13275
- function b1() {
13314
+ function bb() {
13276
13315
  function e() {
13277
13316
  this.defaults = {
13278
13317
  scroll: !0,
@@ -13312,7 +13351,7 @@
13312
13351
  q(document, "mousemove", this._handleFallbackAutoScroll)),
13313
13352
  Ma(),
13314
13353
  ao(),
13315
- n1();
13354
+ nb();
13316
13355
  },
13317
13356
  nulling: function () {
13318
13357
  (io = dr = kn = ur = _n = mr = fr = null), (re.length = 0);
@@ -13387,7 +13426,7 @@
13387
13426
  $ = h.right,
13388
13427
  j = h.width,
13389
13428
  w = h.height,
13390
- G = void 0,
13429
+ K = void 0,
13391
13430
  M = void 0,
13392
13431
  D = p.scrollWidth,
13393
13432
  A = p.scrollHeight,
@@ -13395,7 +13434,7 @@
13395
13434
  X = p.scrollLeft,
13396
13435
  se = p.scrollTop;
13397
13436
  p === c
13398
- ? ((G =
13437
+ ? ((K =
13399
13438
  j < D &&
13400
13439
  (I.overflowX === "auto" ||
13401
13440
  I.overflowX === "scroll" ||
@@ -13405,12 +13444,12 @@
13405
13444
  (I.overflowY === "auto" ||
13406
13445
  I.overflowY === "scroll" ||
13407
13446
  I.overflowY === "visible")))
13408
- : ((G =
13447
+ : ((K =
13409
13448
  j < D && (I.overflowX === "auto" || I.overflowX === "scroll")),
13410
13449
  (M =
13411
13450
  w < A && (I.overflowY === "auto" || I.overflowY === "scroll")));
13412
13451
  var me =
13413
- G &&
13452
+ K &&
13414
13453
  (Math.abs($ - i) <= a && X + j < D) -
13415
13454
  (Math.abs(S - i) <= a && !!X),
13416
13455
  pe =
@@ -13502,7 +13541,7 @@
13502
13541
  drop: Ia,
13503
13542
  }),
13504
13543
  Ze(yr, { pluginName: "removeOnSpill" }),
13505
- F.mount(new b1()),
13544
+ F.mount(new bb()),
13506
13545
  F.mount(yr, hr);
13507
13546
  function gr(e) {
13508
13547
  e.parentElement !== null && e.parentElement.removeChild(e);
@@ -13511,27 +13550,27 @@
13511
13550
  const l = o === 0 ? e.children[0] : e.children[o - 1].nextSibling;
13512
13551
  e.insertBefore(n, l);
13513
13552
  }
13514
- function x1() {
13553
+ function xb() {
13515
13554
  return typeof window < "u" ? window.console : global.console;
13516
13555
  }
13517
- const w1 = x1();
13518
- function C1(e) {
13556
+ const wb = xb();
13557
+ function Cb(e) {
13519
13558
  const n = Object.create(null);
13520
13559
  return function (l) {
13521
13560
  return n[l] || (n[l] = e(l));
13522
13561
  };
13523
13562
  }
13524
- const V1 = /-(\w)/g,
13525
- B1 = C1((e) => e.replace(V1, (n, o) => o.toUpperCase())),
13563
+ const Vb = /-(\w)/g,
13564
+ Bb = Cb((e) => e.replace(Vb, (n, o) => o.toUpperCase())),
13526
13565
  La = ["Start", "Add", "Remove", "Update", "End"],
13527
13566
  Aa = ["Choose", "Unchoose", "Sort", "Filter", "Clone"],
13528
13567
  Ua = ["Move"],
13529
- N1 = [Ua, La, Aa].flatMap((e) => e).map((e) => `on${e}`),
13568
+ Nb = [Ua, La, Aa].flatMap((e) => e).map((e) => `on${e}`),
13530
13569
  kr = { manage: Ua, manageAndEmit: La, emit: Aa };
13531
- function E1(e) {
13532
- return N1.indexOf(e) !== -1;
13570
+ function Eb(e) {
13571
+ return Nb.indexOf(e) !== -1;
13533
13572
  }
13534
- const S1 = [
13573
+ const Sb = [
13535
13574
  "a",
13536
13575
  "abbr",
13537
13576
  "address",
@@ -13650,10 +13689,10 @@
13650
13689
  "video",
13651
13690
  "wbr",
13652
13691
  ];
13653
- function T1(e) {
13654
- return S1.includes(e);
13692
+ function Tb(e) {
13693
+ return Sb.includes(e);
13655
13694
  }
13656
- function D1(e) {
13695
+ function Db(e) {
13657
13696
  return ["transition-group", "TransitionGroup"].includes(e);
13658
13697
  }
13659
13698
  function Pa(e) {
@@ -13667,10 +13706,10 @@
13667
13706
  function ja(e) {
13668
13707
  return e.reduce((n, [o, l]) => ((n[o] = l), n), {});
13669
13708
  }
13670
- function O1({ $attrs: e, componentData: n = {} }) {
13709
+ function Ob({ $attrs: e, componentData: n = {} }) {
13671
13710
  return { ...ja(Object.entries(e).filter(([l, i]) => Pa(l))), ...n };
13672
13711
  }
13673
- function F1({ $attrs: e, callBackBuilder: n }) {
13712
+ function Fb({ $attrs: e, callBackBuilder: n }) {
13674
13713
  const o = ja(Ra(e));
13675
13714
  Object.entries(n).forEach(([i, r]) => {
13676
13715
  kr[i].forEach((a) => {
@@ -13683,13 +13722,13 @@
13683
13722
  function Ra(e) {
13684
13723
  return Object.entries(e)
13685
13724
  .filter(([n, o]) => !Pa(n))
13686
- .map(([n, o]) => [B1(n), o])
13687
- .filter(([n, o]) => !E1(n));
13725
+ .map(([n, o]) => [Bb(n), o])
13726
+ .filter(([n, o]) => !Eb(n));
13688
13727
  }
13689
13728
  const za = ({ el: e }) => e,
13690
- M1 = (e, n) => (e.__draggable_context = n),
13729
+ Mb = (e, n) => (e.__draggable_context = n),
13691
13730
  qa = (e) => e.__draggable_context;
13692
- class I1 {
13731
+ class Ib {
13693
13732
  constructor({
13694
13733
  nodes: { header: n, default: o, footer: l },
13695
13734
  root: i,
@@ -13712,7 +13751,7 @@
13712
13751
  updated() {
13713
13752
  const { defaultNodes: n, realList: o } = this;
13714
13753
  n.forEach((l, i) => {
13715
- M1(za(l), { element: o[i], index: i });
13754
+ Mb(za(l), { element: o[i], index: i });
13716
13755
  });
13717
13756
  }
13718
13757
  getUnderlyingVm(n) {
@@ -13732,13 +13771,13 @@
13732
13771
  return n < u ? 0 : i;
13733
13772
  }
13734
13773
  }
13735
- function $1(e, n) {
13774
+ function $b(e, n) {
13736
13775
  const o = e[n];
13737
13776
  return o ? o() : [];
13738
13777
  }
13739
- function L1({ $slots: e, realList: n, getKey: o }) {
13778
+ function Lb({ $slots: e, realList: n, getKey: o }) {
13740
13779
  const l = n || [],
13741
- [i, r] = ["header", "footer"].map((c) => $1(e, c)),
13780
+ [i, r] = ["header", "footer"].map((c) => $b(e, c)),
13742
13781
  { item: a } = e;
13743
13782
  if (!a) throw new Error("draggable element must have an item slot");
13744
13783
  const s = l.flatMap((c, u) =>
@@ -13754,19 +13793,19 @@
13754
13793
  throw new Error("Item slot must have only one child");
13755
13794
  return { header: i, footer: r, default: s };
13756
13795
  }
13757
- function A1(e) {
13758
- const n = D1(e),
13759
- o = !T1(e) && !n;
13796
+ function Ab(e) {
13797
+ const n = Db(e),
13798
+ o = !Tb(e) && !n;
13760
13799
  return {
13761
13800
  transition: n,
13762
13801
  externalComponent: o,
13763
13802
  tag: o ? t.resolveComponent(e) : n ? t.TransitionGroup : e,
13764
13803
  };
13765
13804
  }
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 });
13805
+ function Ub({ $slots: e, tag: n, realList: o, getKey: l }) {
13806
+ const i = Lb({ $slots: e, realList: o, getKey: l }),
13807
+ r = Ab(n);
13808
+ return new Ib({ nodes: i, root: r, realList: o });
13770
13809
  }
13771
13810
  function Ha(e, n) {
13772
13811
  t.nextTick(() => this.$emit(e.toLowerCase(), n));
@@ -13776,14 +13815,14 @@
13776
13815
  if (this.realList !== null) return this[`onDrag${e}`](n, o);
13777
13816
  };
13778
13817
  }
13779
- function P1(e) {
13818
+ function Pb(e) {
13780
13819
  const n = Wa.call(this, e);
13781
13820
  return (o, l) => {
13782
13821
  n.call(this, o, l), Ha.call(this, e, o);
13783
13822
  };
13784
13823
  }
13785
13824
  let _r = null;
13786
- const j1 = {
13825
+ const jb = {
13787
13826
  list: { type: Array, required: !1, default: null },
13788
13827
  modelValue: { type: Array, required: !1, default: null },
13789
13828
  itemKey: { type: [String, Function], required: !0 },
@@ -13792,7 +13831,7 @@
13792
13831
  move: { type: Function, default: null },
13793
13832
  componentData: { type: Object, required: !1, default: null },
13794
13833
  },
13795
- R1 = [
13834
+ Rb = [
13796
13835
  "update:modelValue",
13797
13836
  "change",
13798
13837
  ...[...kr.manageAndEmit, ...kr.emit].map((e) => e.toLowerCase()),
@@ -13800,8 +13839,8 @@
13800
13839
  Ga = t.defineComponent({
13801
13840
  name: "draggable",
13802
13841
  inheritAttrs: !1,
13803
- props: j1,
13804
- emits: R1,
13842
+ props: jb,
13843
+ emits: Rb,
13805
13844
  data() {
13806
13845
  return { error: !1 };
13807
13846
  },
@@ -13816,9 +13855,9 @@
13816
13855
  realList: i,
13817
13856
  getKey: r,
13818
13857
  } = this,
13819
- a = U1({ $slots: e, tag: o, realList: i, getKey: r });
13858
+ a = Ub({ $slots: e, tag: o, realList: i, getKey: r });
13820
13859
  this.componentStructure = a;
13821
- const s = O1({ $attrs: n, componentData: l });
13860
+ const s = Ob({ $attrs: n, componentData: l });
13822
13861
  return a.render(t.h, s);
13823
13862
  } catch (e) {
13824
13863
  return (
@@ -13829,7 +13868,7 @@
13829
13868
  created() {
13830
13869
  this.list !== null &&
13831
13870
  this.modelValue !== null &&
13832
- w1.error(
13871
+ wb.error(
13833
13872
  "modelValue and list props are mutually exclusive! Please set one or another.",
13834
13873
  );
13835
13874
  },
@@ -13837,10 +13876,10 @@
13837
13876
  if (this.error) return;
13838
13877
  const { $attrs: e, $el: n, componentStructure: o } = this;
13839
13878
  o.updated();
13840
- const l = F1({
13879
+ const l = Fb({
13841
13880
  $attrs: e,
13842
13881
  callBackBuilder: {
13843
- manageAndEmit: (r) => P1.call(this, r),
13882
+ manageAndEmit: (r) => Pb.call(this, r),
13844
13883
  emit: (r) => Ha.bind(this, r),
13845
13884
  manage: (r) => Wa.call(this, r),
13846
13885
  },
@@ -13978,7 +14017,7 @@
13978
14017
  l = n.title.toUpperCase();
13979
14018
  return o < l ? -1 : o > l ? 1 : 0;
13980
14019
  }
13981
- const z1 = {
14020
+ const zb = {
13982
14021
  components: { Item: er, draggable: Ga },
13983
14022
  props: { modelValue: { type: [Object, Array] } },
13984
14023
  mixins: [P],
@@ -14167,11 +14206,11 @@
14167
14206
  },
14168
14207
  },
14169
14208
  },
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) {
14209
+ qb = { key: 0, class: "ux-field-title" },
14210
+ Hb = { key: 0, class: "ux-required-marker" },
14211
+ Wb = { key: 1, class: "ux-field-description" },
14212
+ Gb = { key: 1, class: "items" };
14213
+ function Kb(e, n, o, l, i, r) {
14175
14214
  const a = t.resolveComponent("ux-icon"),
14176
14215
  s = t.resolveComponent("ux-button"),
14177
14216
  c = t.resolveComponent("item"),
@@ -14187,10 +14226,10 @@
14187
14226
  [
14188
14227
  e.showLabel
14189
14228
  ? (t.openBlock(),
14190
- t.createElementBlock("label", q1, [
14229
+ t.createElementBlock("label", qb, [
14191
14230
  t.createTextVNode(t.toDisplayString(e.label) + " ", 1),
14192
14231
  e.required
14193
- ? (t.openBlock(), t.createElementBlock("span", H1, "*"))
14232
+ ? (t.openBlock(), t.createElementBlock("span", Hb, "*"))
14194
14233
  : t.createCommentVNode("", !0),
14195
14234
  ]))
14196
14235
  : t.createCommentVNode("", !0),
@@ -14198,7 +14237,7 @@
14198
14237
  ? (t.openBlock(),
14199
14238
  t.createElementBlock(
14200
14239
  "div",
14201
- W1,
14240
+ Wb,
14202
14241
  t.toDisplayString(e.description),
14203
14242
  1,
14204
14243
  ))
@@ -14326,7 +14365,7 @@
14326
14365
  ))
14327
14366
  : e.model
14328
14367
  ? (t.openBlock(),
14329
- t.createElementBlock("div", G1, [
14368
+ t.createElementBlock("div", Gb, [
14330
14369
  t.createVNode(
14331
14370
  c,
14332
14371
  { item: e.model },
@@ -14502,12 +14541,12 @@
14502
14541
  )
14503
14542
  );
14504
14543
  }
14505
- const Ya = g(z1, [
14506
- ["render", K1],
14544
+ const Ya = g(zb, [
14545
+ ["render", Kb],
14507
14546
  ["__scopeId", "data-v-38242855"],
14508
14547
  ]),
14509
14548
  pM = "";
14510
- function Y1(e) {
14549
+ function Yb(e) {
14511
14550
  return (
14512
14551
  e === void 0 ||
14513
14552
  typeof e > "u" ||
@@ -14516,7 +14555,7 @@
14516
14555
  String(e) === "undefined"
14517
14556
  );
14518
14557
  }
14519
- const Z1 = {
14558
+ const Zb = {
14520
14559
  props: { title: { type: String }, modelValue: {} },
14521
14560
  mixins: [P],
14522
14561
  async created() {
@@ -14554,7 +14593,7 @@
14554
14593
  cleanOutput(e) {
14555
14594
  var n = this;
14556
14595
  return (
14557
- Y1(e)
14596
+ Yb(e)
14558
14597
  ? n.multiValue
14559
14598
  ? (e = [])
14560
14599
  : (e = void 0)
@@ -14646,15 +14685,15 @@
14646
14685
  },
14647
14686
  },
14648
14687
  },
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) {
14688
+ Jb = { key: 0, class: "ux-field-title" },
14689
+ Xb = { key: 0, class: "ux-required-marker" },
14690
+ Qb = { key: 1, class: "ux-field-description" },
14691
+ vb = { key: 2, class: "ui-select-button" },
14692
+ e1 = ["multiple"],
14693
+ t1 = { key: 0, value: "" },
14694
+ n1 = ["label"],
14695
+ o1 = ["value"];
14696
+ function r1(e, n, o, l, i, r) {
14658
14697
  const a = t.resolveComponent("ux-button");
14659
14698
  return (
14660
14699
  t.openBlock(),
@@ -14664,10 +14703,10 @@
14664
14703
  [
14665
14704
  e.showLabel
14666
14705
  ? (t.openBlock(),
14667
- t.createElementBlock("label", J1, [
14706
+ t.createElementBlock("label", Jb, [
14668
14707
  t.createTextVNode(t.toDisplayString(e.label) + " ", 1),
14669
14708
  e.required
14670
- ? (t.openBlock(), t.createElementBlock("span", X1, "*"))
14709
+ ? (t.openBlock(), t.createElementBlock("span", Xb, "*"))
14671
14710
  : t.createCommentVNode("", !0),
14672
14711
  ]))
14673
14712
  : t.createCommentVNode("", !0),
@@ -14675,14 +14714,14 @@
14675
14714
  ? (t.openBlock(),
14676
14715
  t.createElementBlock(
14677
14716
  "div",
14678
- Q1,
14717
+ Qb,
14679
14718
  t.toDisplayString(e.description),
14680
14719
  1,
14681
14720
  ))
14682
14721
  : t.createCommentVNode("", !0),
14683
14722
  e.singleValue
14684
14723
  ? (t.openBlock(),
14685
- t.createElementBlock("div", v1, [
14724
+ t.createElementBlock("div", vb, [
14686
14725
  t.renderSlot(
14687
14726
  e.$slots,
14688
14727
  "default",
@@ -14713,7 +14752,7 @@
14713
14752
  },
14714
14753
  [
14715
14754
  e.singleValue && !e.minimum
14716
- ? (t.openBlock(), t.createElementBlock("option", tb, "None"))
14755
+ ? (t.openBlock(), t.createElementBlock("option", t1, "None"))
14717
14756
  : t.createCommentVNode("", !0),
14718
14757
  (t.openBlock(!0),
14719
14758
  t.createElementBlock(
@@ -14740,7 +14779,7 @@
14740
14779
  { value: c.value },
14741
14780
  t.toDisplayString(c.title),
14742
14781
  9,
14743
- ob,
14782
+ o1,
14744
14783
  )
14745
14784
  ),
14746
14785
  ),
@@ -14748,7 +14787,7 @@
14748
14787
  )),
14749
14788
  ],
14750
14789
  8,
14751
- nb,
14790
+ n1,
14752
14791
  )
14753
14792
  ),
14754
14793
  ),
@@ -14756,7 +14795,7 @@
14756
14795
  )),
14757
14796
  ],
14758
14797
  40,
14759
- eb,
14798
+ e1,
14760
14799
  ),
14761
14800
  [[t.vModelSelect, e.model]],
14762
14801
  ),
@@ -14765,12 +14804,12 @@
14765
14804
  )
14766
14805
  );
14767
14806
  }
14768
- const lb = g(Z1, [
14769
- ["render", rb],
14807
+ const l1 = g(Zb, [
14808
+ ["render", r1],
14770
14809
  ["__scopeId", "data-v-17c04ff2"],
14771
14810
  ]),
14772
14811
  hM = "",
14773
- ib = {
14812
+ i1 = {
14774
14813
  components: { UxCircle: Hn },
14775
14814
  props: { item: { type: Object }, click: { type: Function } },
14776
14815
  data() {
@@ -14812,9 +14851,9 @@
14812
14851
  },
14813
14852
  },
14814
14853
  },
14815
- ab = { class: "outer" },
14816
- sb = { key: 0, class: "children" };
14817
- function cb(e, n, o, l, i, r) {
14854
+ a1 = { class: "outer" },
14855
+ s1 = { key: 0, class: "children" };
14856
+ function c1(e, n, o, l, i, r) {
14818
14857
  const a = t.resolveComponent("ux-icon"),
14819
14858
  s = t.resolveComponent("flex-cell"),
14820
14859
  c = t.resolveComponent("ux-circle"),
@@ -14823,7 +14862,7 @@
14823
14862
  m = t.resolveComponent("scope-item", !0);
14824
14863
  return (
14825
14864
  t.openBlock(),
14826
- t.createElementBlock("div", ab, [
14865
+ t.createElementBlock("div", a1, [
14827
14866
  t.createElementVNode(
14828
14867
  "div",
14829
14868
  {
@@ -14942,7 +14981,7 @@
14942
14981
  ),
14943
14982
  r.expanded
14944
14983
  ? (t.openBlock(),
14945
- t.createElementBlock("div", sb, [
14984
+ t.createElementBlock("div", s1, [
14946
14985
  (t.openBlock(!0),
14947
14986
  t.createElementBlock(
14948
14987
  t.Fragment,
@@ -14964,14 +15003,14 @@
14964
15003
  ])
14965
15004
  );
14966
15005
  }
14967
- const db = g(ib, [
14968
- ["render", cb],
15006
+ const d1 = g(i1, [
15007
+ ["render", c1],
14969
15008
  ["__scopeId", "data-v-be6d1032"],
14970
15009
  ]),
14971
15010
  yM = "";
14972
15011
  let br;
14973
- const ub = {
14974
- components: { ScopeItem: db },
15012
+ const u1 = {
15013
+ components: { ScopeItem: d1 },
14975
15014
  created() {
14976
15015
  this.loadGlossary();
14977
15016
  },
@@ -15106,7 +15145,7 @@
15106
15145
  },
15107
15146
  },
15108
15147
  };
15109
- function mb(e, n, o, l, i, r) {
15148
+ function m1(e, n, o, l, i, r) {
15110
15149
  const a = t.resolveComponent("spinner"),
15111
15150
  s = t.resolveComponent("scope-item");
15112
15151
  return (
@@ -15138,12 +15177,12 @@
15138
15177
  )
15139
15178
  );
15140
15179
  }
15141
- const Za = g(ub, [
15142
- ["render", mb],
15180
+ const Za = g(u1, [
15181
+ ["render", m1],
15143
15182
  ["__scopeId", "data-v-70c07a8e"],
15144
15183
  ]),
15145
15184
  gM = "",
15146
- fb = {
15185
+ f1 = {
15147
15186
  components: { UxCircle: Hn },
15148
15187
  async created() {
15149
15188
  this.reloadScopeGlossary();
@@ -15197,6 +15236,11 @@
15197
15236
  },
15198
15237
  },
15199
15238
  computed: {
15239
+ visible() {
15240
+ const e = this.$sdk.utils.ids(this.model) || [],
15241
+ n = this.$sdk.utils.ids(this.availableDefaultScopes) || [];
15242
+ return !(n.length === 1 && (!e.length || e[0] === n[0]));
15243
+ },
15200
15244
  loading() {
15201
15245
  return this.loadingScopeGlossary || this.loadingContentGlossary;
15202
15246
  },
@@ -15250,7 +15294,6 @@
15250
15294
  var l = o._id || o;
15251
15295
  return e.restrictedLookup[l];
15252
15296
  })),
15253
- console.log("AVAILABLE DEFAULT SCOPES", n),
15254
15297
  !n.length &&
15255
15298
  e.definitionRestrictScopes.length === 1 &&
15256
15299
  (n = e.definitionRestrictScopes),
@@ -15261,9 +15304,7 @@
15261
15304
  watch: {
15262
15305
  availableDefaultScopes: {
15263
15306
  handler(e) {
15264
- this.model.length ||
15265
- (e.length &&
15266
- (console.log("SET DEFAULT", e), (this.model = [...e])));
15307
+ this.model.length || (e.length && (this.model = [...e]));
15267
15308
  },
15268
15309
  immediate: !0,
15269
15310
  },
@@ -15284,54 +15325,59 @@
15284
15325
  },
15285
15326
  },
15286
15327
  },
15287
- pb = { class: "circles" };
15288
- function hb(e, n, o, l, i, r) {
15328
+ p1 = { class: "circles" };
15329
+ function h1(e, n, o, l, i, r) {
15289
15330
  const a = t.resolveComponent("ux-circle"),
15290
15331
  s = t.resolveComponent("ux-button");
15291
15332
  return (
15292
15333
  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"])
15334
+ t.createElementBlock(
15335
+ "div",
15336
+ { class: t.normalizeClass({ invisible: !r.visible }) },
15337
+ [
15338
+ t.createVNode(
15339
+ s,
15340
+ { size: o.size, loading: r.loading, onClick: r.openSelection },
15341
+ {
15342
+ default: t.withCtx(() => [
15343
+ t.createElementVNode("div", p1, [
15344
+ (t.openBlock(!0),
15345
+ t.createElementBlock(
15346
+ t.Fragment,
15347
+ null,
15348
+ t.renderList(
15349
+ i.model,
15350
+ (c) => (
15351
+ t.openBlock(),
15352
+ t.createBlock(a, { value: c }, null, 8, ["value"])
15353
+ ),
15309
15354
  ),
15310
- ),
15311
- 256,
15312
- )),
15355
+ 256,
15356
+ )),
15357
+ ]),
15358
+ t.createElementVNode(
15359
+ "span",
15360
+ { class: t.normalizeClass({ "empty-text": r.empty }) },
15361
+ t.toDisplayString(r.summary),
15362
+ 3,
15363
+ ),
15313
15364
  ]),
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
- ])
15365
+ _: 1,
15366
+ },
15367
+ 8,
15368
+ ["size", "loading", "onClick"],
15369
+ ),
15370
+ ],
15371
+ 2,
15372
+ )
15327
15373
  );
15328
15374
  }
15329
- const Ja = g(fb, [
15330
- ["render", hb],
15331
- ["__scopeId", "data-v-0e820a8c"],
15375
+ const Ja = g(f1, [
15376
+ ["render", h1],
15377
+ ["__scopeId", "data-v-13dbe8a6"],
15332
15378
  ]),
15333
15379
  kM = "";
15334
- function yb(e) {
15380
+ function y1(e) {
15335
15381
  return (
15336
15382
  e === void 0 ||
15337
15383
  typeof e > "u" ||
@@ -15340,7 +15386,7 @@
15340
15386
  String(e) === "undefined"
15341
15387
  );
15342
15388
  }
15343
- const gb = {
15389
+ const g1 = {
15344
15390
  components: { ScopeSelectButton: Ja },
15345
15391
  props: {
15346
15392
  title: { type: String },
@@ -15375,7 +15421,7 @@
15375
15421
  cleanOutput(e) {
15376
15422
  var n = this;
15377
15423
  return (
15378
- yb(e)
15424
+ y1(e)
15379
15425
  ? n.multiValue
15380
15426
  ? (e = [])
15381
15427
  : (e = void 0)
@@ -15435,10 +15481,10 @@
15435
15481
  },
15436
15482
  },
15437
15483
  },
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) {
15484
+ k1 = { key: 0, class: "ux-field-title" },
15485
+ _1 = { key: 0, class: "ux-required-marker" },
15486
+ b1 = { key: 1, class: "ux-field-description" };
15487
+ function x1(e, n, o, l, i, r) {
15442
15488
  const a = t.resolveComponent("scope-select-button");
15443
15489
  return (
15444
15490
  t.openBlock(),
@@ -15448,10 +15494,10 @@
15448
15494
  [
15449
15495
  e.showLabel
15450
15496
  ? (t.openBlock(),
15451
- t.createElementBlock("label", kb, [
15497
+ t.createElementBlock("label", k1, [
15452
15498
  t.createTextVNode(t.toDisplayString(e.label) + " ", 1),
15453
15499
  e.required
15454
- ? (t.openBlock(), t.createElementBlock("span", _b, "*"))
15500
+ ? (t.openBlock(), t.createElementBlock("span", _1, "*"))
15455
15501
  : t.createCommentVNode("", !0),
15456
15502
  ]))
15457
15503
  : t.createCommentVNode("", !0),
@@ -15459,7 +15505,7 @@
15459
15505
  ? (t.openBlock(),
15460
15506
  t.createElementBlock(
15461
15507
  "div",
15462
- bb,
15508
+ b1,
15463
15509
  t.toDisplayString(e.description),
15464
15510
  1,
15465
15511
  ))
@@ -15482,12 +15528,12 @@
15482
15528
  )
15483
15529
  );
15484
15530
  }
15485
- const Xa = g(gb, [
15486
- ["render", xb],
15531
+ const Xa = g(g1, [
15532
+ ["render", x1],
15487
15533
  ["__scopeId", "data-v-6361df61"],
15488
15534
  ]),
15489
15535
  _M = "",
15490
- wb = {
15536
+ w1 = {
15491
15537
  props: { modelValue: { type: [String, Array] } },
15492
15538
  mixins: [P],
15493
15539
  methods: {
@@ -15544,16 +15590,16 @@
15544
15590
  },
15545
15591
  },
15546
15592
  },
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) {
15593
+ C1 = { key: 0, class: "ux-field-title" },
15594
+ V1 = { key: 0, class: "ux-required-marker" },
15595
+ B1 = { key: 1, class: "ux-field-description" },
15596
+ N1 = { key: 2 },
15597
+ E1 = { key: 0, class: "ux-text-prefix" },
15598
+ S1 = ["onBlur", "onUpdate:modelValue"],
15599
+ T1 = { key: 1, class: "ux-text-suffix" },
15600
+ D1 = { key: 0, class: "ux-text-prefix" },
15601
+ O1 = { key: 1, class: "ux-text-suffix" };
15602
+ function F1(e, n, o, l, i, r) {
15557
15603
  const a = t.resolveComponent("flex-cell"),
15558
15604
  s = t.resolveComponent("ux-icon"),
15559
15605
  c = t.resolveComponent("ux-button"),
@@ -15566,10 +15612,10 @@
15566
15612
  [
15567
15613
  e.showLabel
15568
15614
  ? (t.openBlock(),
15569
- t.createElementBlock("label", Cb, [
15615
+ t.createElementBlock("label", C1, [
15570
15616
  t.createTextVNode(t.toDisplayString(e.label) + " ", 1),
15571
15617
  e.required
15572
- ? (t.openBlock(), t.createElementBlock("span", Vb, "*"))
15618
+ ? (t.openBlock(), t.createElementBlock("span", V1, "*"))
15573
15619
  : t.createCommentVNode("", !0),
15574
15620
  ]))
15575
15621
  : t.createCommentVNode("", !0),
@@ -15577,14 +15623,14 @@
15577
15623
  ? (t.openBlock(),
15578
15624
  t.createElementBlock(
15579
15625
  "div",
15580
- Bb,
15626
+ B1,
15581
15627
  t.toDisplayString(e.description),
15582
15628
  1,
15583
15629
  ))
15584
15630
  : t.createCommentVNode("", !0),
15585
15631
  e.multiValue
15586
15632
  ? (t.openBlock(),
15587
- t.createElementBlock("div", Nb, [
15633
+ t.createElementBlock("div", N1, [
15588
15634
  (t.openBlock(!0),
15589
15635
  t.createElementBlock(
15590
15636
  t.Fragment,
@@ -15619,7 +15665,7 @@
15619
15665
  ? (t.openBlock(),
15620
15666
  t.createElementBlock(
15621
15667
  "span",
15622
- Eb,
15668
+ E1,
15623
15669
  t.toDisplayString(r.prefix),
15624
15670
  1,
15625
15671
  ))
@@ -15654,7 +15700,7 @@
15654
15700
  },
15655
15701
  null,
15656
15702
  40,
15657
- Sb,
15703
+ S1,
15658
15704
  )),
15659
15705
  [
15660
15706
  [
@@ -15669,7 +15715,7 @@
15669
15715
  ? (t.openBlock(),
15670
15716
  t.createElementBlock(
15671
15717
  "span",
15672
- Tb,
15718
+ T1,
15673
15719
  t.toDisplayString(r.suffix),
15674
15720
  1,
15675
15721
  ))
@@ -15756,7 +15802,7 @@
15756
15802
  ? (t.openBlock(),
15757
15803
  t.createElementBlock(
15758
15804
  "span",
15759
- Db,
15805
+ D1,
15760
15806
  t.toDisplayString(r.prefix),
15761
15807
  1,
15762
15808
  ))
@@ -15793,7 +15839,7 @@
15793
15839
  ? (t.openBlock(),
15794
15840
  t.createElementBlock(
15795
15841
  "span",
15796
- Ob,
15842
+ O1,
15797
15843
  t.toDisplayString(r.suffix),
15798
15844
  1,
15799
15845
  ))
@@ -15806,12 +15852,12 @@
15806
15852
  )
15807
15853
  );
15808
15854
  }
15809
- const Qa = g(wb, [
15810
- ["render", Fb],
15855
+ const Qa = g(w1, [
15856
+ ["render", F1],
15811
15857
  ["__scopeId", "data-v-30b07ae5"],
15812
15858
  ]),
15813
15859
  bM = "",
15814
- Mb = {
15860
+ M1 = {
15815
15861
  props: { modelValue: { type: [String, Array] } },
15816
15862
  data() {
15817
15863
  return { unmasked: !1, unmaskedLookup: t.reactive({}) };
@@ -15897,21 +15943,21 @@
15897
15943
  },
15898
15944
  },
15899
15945
  },
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) {
15946
+ I1 = { key: 0, class: "ux-field-title" },
15947
+ $1 = { key: 0, class: "ux-required-marker" },
15948
+ L1 = { key: 1, class: "ux-field-description" },
15949
+ A1 = { key: 2 },
15950
+ U1 = { class: "ux-text-wrap" },
15951
+ P1 = { key: 0, class: "ux-text-prefix" },
15952
+ j1 = ["readonly", "type", "placeholder", "onUpdate:modelValue"],
15953
+ R1 = ["readonly", "type", "placeholder", "onUpdate:modelValue"],
15954
+ z1 = { key: 3, class: "ux-text-suffix" },
15955
+ q1 = { class: "ux-text-wrap" },
15956
+ H1 = { key: 0, class: "ux-text-prefix" },
15957
+ W1 = ["readonly", "type", "placeholder"],
15958
+ G1 = ["readonly", "type", "placeholder"],
15959
+ K1 = { key: 3, class: "ux-text-suffix" };
15960
+ function Y1(e, n, o, l, i, r) {
15915
15961
  const a = t.resolveComponent("flex-cell"),
15916
15962
  s = t.resolveComponent("ux-icon"),
15917
15963
  c = t.resolveComponent("ux-button"),
@@ -15924,10 +15970,10 @@
15924
15970
  [
15925
15971
  e.showLabel
15926
15972
  ? (t.openBlock(),
15927
- t.createElementBlock("label", Ib, [
15973
+ t.createElementBlock("label", I1, [
15928
15974
  t.createTextVNode(t.toDisplayString(e.label) + " ", 1),
15929
15975
  e.required
15930
- ? (t.openBlock(), t.createElementBlock("span", $b, "*"))
15976
+ ? (t.openBlock(), t.createElementBlock("span", $1, "*"))
15931
15977
  : t.createCommentVNode("", !0),
15932
15978
  ]))
15933
15979
  : t.createCommentVNode("", !0),
@@ -15935,14 +15981,14 @@
15935
15981
  ? (t.openBlock(),
15936
15982
  t.createElementBlock(
15937
15983
  "div",
15938
- Lb,
15984
+ L1,
15939
15985
  t.toDisplayString(e.description),
15940
15986
  1,
15941
15987
  ))
15942
15988
  : t.createCommentVNode("", !0),
15943
15989
  e.multiValue
15944
15990
  ? (t.openBlock(),
15945
- t.createElementBlock("div", Ab, [
15991
+ t.createElementBlock("div", A1, [
15946
15992
  (t.openBlock(!0),
15947
15993
  t.createElementBlock(
15948
15994
  t.Fragment,
@@ -15961,12 +16007,12 @@
15961
16007
  null,
15962
16008
  {
15963
16009
  default: t.withCtx(() => [
15964
- t.createElementVNode("div", Ub, [
16010
+ t.createElementVNode("div", U1, [
15965
16011
  e.prefix
15966
16012
  ? (t.openBlock(),
15967
16013
  t.createElementBlock(
15968
16014
  "span",
15969
- Pb,
16015
+ P1,
15970
16016
  t.toDisplayString(e.prefix),
15971
16017
  1,
15972
16018
  ))
@@ -16007,7 +16053,7 @@
16007
16053
  },
16008
16054
  null,
16009
16055
  42,
16010
- jb,
16056
+ j1,
16011
16057
  )),
16012
16058
  [
16013
16059
  [
@@ -16056,7 +16102,7 @@
16056
16102
  },
16057
16103
  null,
16058
16104
  42,
16059
- Rb,
16105
+ R1,
16060
16106
  )),
16061
16107
  [[t.vModelDynamic, e.model[m]]],
16062
16108
  ),
@@ -16064,7 +16110,7 @@
16064
16110
  ? (t.openBlock(),
16065
16111
  t.createElementBlock(
16066
16112
  "span",
16067
- zb,
16113
+ z1,
16068
16114
  t.toDisplayString(e.suffix),
16069
16115
  1,
16070
16116
  ))
@@ -16221,12 +16267,12 @@
16221
16267
  default: t.withCtx(() => [
16222
16268
  t.createVNode(a, null, {
16223
16269
  default: t.withCtx(() => [
16224
- t.createElementVNode("div", qb, [
16270
+ t.createElementVNode("div", q1, [
16225
16271
  e.prefix
16226
16272
  ? (t.openBlock(),
16227
16273
  t.createElementBlock(
16228
16274
  "span",
16229
- Hb,
16275
+ H1,
16230
16276
  t.toDisplayString(e.prefix),
16231
16277
  1,
16232
16278
  ))
@@ -16255,7 +16301,7 @@
16255
16301
  },
16256
16302
  null,
16257
16303
  42,
16258
- Wb,
16304
+ W1,
16259
16305
  )),
16260
16306
  [
16261
16307
  [
@@ -16292,7 +16338,7 @@
16292
16338
  },
16293
16339
  null,
16294
16340
  42,
16295
- Gb,
16341
+ G1,
16296
16342
  )),
16297
16343
  [[t.vModelDynamic, e.model]],
16298
16344
  ),
@@ -16300,7 +16346,7 @@
16300
16346
  ? (t.openBlock(),
16301
16347
  t.createElementBlock(
16302
16348
  "span",
16303
- Kb,
16349
+ K1,
16304
16350
  t.toDisplayString(e.suffix),
16305
16351
  1,
16306
16352
  ))
@@ -16386,12 +16432,12 @@
16386
16432
  )
16387
16433
  );
16388
16434
  }
16389
- const xr = g(Mb, [
16390
- ["render", Yb],
16435
+ const xr = g(M1, [
16436
+ ["render", Y1],
16391
16437
  ["__scopeId", "data-v-da2ca789"],
16392
16438
  ]),
16393
16439
  xM = "",
16394
- Zb = {
16440
+ Z1 = {
16395
16441
  props: { modelValue: { type: [String, Array] } },
16396
16442
  mixins: [P],
16397
16443
  methods: {
@@ -16400,10 +16446,10 @@
16400
16446
  },
16401
16447
  },
16402
16448
  },
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 },
16449
+ J1 = { key: 0, class: "ux-field-title" },
16450
+ X1 = { key: 0, class: "ux-required-marker" },
16451
+ Q1 = { key: 1, class: "ux-field-description" },
16452
+ v1 = { key: 2 },
16407
16453
  ex = ["onUpdate:modelValue"];
16408
16454
  function tx(e, n, o, l, i, r) {
16409
16455
  const a = t.resolveComponent("flex-cell"),
@@ -16418,10 +16464,10 @@
16418
16464
  [
16419
16465
  e.showLabel
16420
16466
  ? (t.openBlock(),
16421
- t.createElementBlock("label", Jb, [
16467
+ t.createElementBlock("label", J1, [
16422
16468
  t.createTextVNode(t.toDisplayString(e.label) + " ", 1),
16423
16469
  e.required
16424
- ? (t.openBlock(), t.createElementBlock("span", Xb, "*"))
16470
+ ? (t.openBlock(), t.createElementBlock("span", X1, "*"))
16425
16471
  : t.createCommentVNode("", !0),
16426
16472
  ]))
16427
16473
  : t.createCommentVNode("", !0),
@@ -16429,14 +16475,14 @@
16429
16475
  ? (t.openBlock(),
16430
16476
  t.createElementBlock(
16431
16477
  "div",
16432
- Qb,
16478
+ Q1,
16433
16479
  t.toDisplayString(e.description),
16434
16480
  1,
16435
16481
  ))
16436
16482
  : t.createCommentVNode("", !0),
16437
16483
  e.multiValue
16438
16484
  ? (t.openBlock(),
16439
- t.createElementBlock("div", vb, [
16485
+ t.createElementBlock("div", v1, [
16440
16486
  (t.openBlock(!0),
16441
16487
  t.createElementBlock(
16442
16488
  t.Fragment,
@@ -16561,7 +16607,7 @@
16561
16607
  )
16562
16608
  );
16563
16609
  }
16564
- const nx = g(Zb, [
16610
+ const nx = g(Z1, [
16565
16611
  ["render", tx],
16566
16612
  ["__scopeId", "data-v-251e7614"],
16567
16613
  ]),
@@ -19856,7 +19902,7 @@
19856
19902
  null,
19857
19903
  t.renderList(
19858
19904
  i.model.conditions,
19859
- (w, G) => (
19905
+ (w, K) => (
19860
19906
  t.openBlock(),
19861
19907
  t.createElementBlock("div", { key: w._guid }, [
19862
19908
  t.createVNode(
@@ -19864,10 +19910,10 @@
19864
19910
  {
19865
19911
  enableRemove: !0,
19866
19912
  fields: i.criteriaFields,
19867
- onRemove: (M) => r.removeCondition(G),
19868
- modelValue: i.model.conditions[G],
19913
+ onRemove: (M) => r.removeCondition(K),
19914
+ modelValue: i.model.conditions[K],
19869
19915
  "onUpdate:modelValue": (M) =>
19870
- (i.model.conditions[G] = M),
19916
+ (i.model.conditions[K] = M),
19871
19917
  },
19872
19918
  null,
19873
19919
  8,
@@ -26631,7 +26677,7 @@
26631
26677
  $ = 40,
26632
26678
  j = 41,
26633
26679
  w = 91,
26634
- G = 93,
26680
+ K = 93,
26635
26681
  M = 63,
26636
26682
  D = 59,
26637
26683
  A = 58,
@@ -26759,32 +26805,32 @@
26759
26805
  return !1;
26760
26806
  },
26761
26807
  vO = function () {
26762
- var b, T, R, K, Vt, Ue, st, Gt, ac;
26808
+ var b, T, R, Y, Vt, Ue, st, Gt, ac;
26763
26809
  if (((Ue = yo()), (T = oc()), !T)) return Ue;
26764
26810
  for (
26765
26811
  Vt = { value: T, prec: He(T) },
26766
26812
  st = yo(),
26767
26813
  st || I("Expected expression after " + T, k),
26768
- K = [Ue, Vt, st];
26814
+ Y = [Ue, Vt, st];
26769
26815
  (T = oc()) && ((R = He(T)), R !== 0);
26770
26816
 
26771
26817
  ) {
26772
26818
  for (
26773
26819
  Vt = { value: T, prec: R }, ac = T;
26774
- K.length > 2 && R <= K[K.length - 2].prec;
26820
+ Y.length > 2 && R <= Y[Y.length - 2].prec;
26775
26821
 
26776
26822
  )
26777
- (st = K.pop()),
26778
- (T = K.pop().value),
26779
- (Ue = K.pop()),
26823
+ (st = Y.pop()),
26824
+ (T = Y.pop().value),
26825
+ (Ue = Y.pop()),
26780
26826
  (b = qt(T, Ue, st)),
26781
- K.push(b);
26827
+ Y.push(b);
26782
26828
  (b = yo()),
26783
26829
  b || I("Expected expression after " + ac, k),
26784
- K.push(Vt, b);
26830
+ Y.push(Vt, b);
26785
26831
  }
26786
- for (Gt = K.length - 1, b = K[Gt]; Gt > 1; )
26787
- (b = qt(K[Gt - 1].value, K[Gt - 2], b)), (Gt -= 2);
26832
+ for (Gt = Y.length - 1, b = Y[Gt]; Gt > 1; )
26833
+ (b = qt(Y[Gt - 1].value, Y[Gt - 2], b)), (Gt -= 2);
26788
26834
  return b;
26789
26835
  },
26790
26836
  yo = function () {
@@ -26835,12 +26881,12 @@
26835
26881
  );
26836
26882
  },
26837
26883
  tF = function () {
26838
- for (var b = "", T = xe(k++), R = !1, K; k < Cn; )
26839
- if (((K = xe(k++)), K === T)) {
26884
+ for (var b = "", T = xe(k++), R = !1, Y; k < Cn; )
26885
+ if (((Y = xe(k++)), Y === T)) {
26840
26886
  R = !0;
26841
26887
  break;
26842
- } else if (K === "\\")
26843
- switch (((K = xe(k++)), K)) {
26888
+ } else if (Y === "\\")
26889
+ switch (((Y = xe(k++)), Y)) {
26844
26890
  case "n":
26845
26891
  b += `
26846
26892
  `;
@@ -26861,9 +26907,9 @@
26861
26907
  b += "\v";
26862
26908
  break;
26863
26909
  default:
26864
- b += K;
26910
+ b += Y;
26865
26911
  }
26866
- else b += K;
26912
+ else b += Y;
26867
26913
  return (
26868
26914
  R || I('Unclosed quote after "' + b + '"', k),
26869
26915
  { type: a, value: b, raw: T + b + T }
@@ -26889,7 +26935,7 @@
26889
26935
  );
26890
26936
  },
26891
26937
  lc = function (b) {
26892
- for (var T, R = [], K, Vt = !1, Ue = 0; k < Cn; )
26938
+ for (var T, R = [], Y, Vt = !1, Ue = 0; k < Cn; )
26893
26939
  if ((Ge(), (T = Q(k)), T === b)) {
26894
26940
  (Vt = !0),
26895
26941
  k++,
@@ -26901,13 +26947,13 @@
26901
26947
  } else if (T === y) {
26902
26948
  if ((k++, Ue++, Ue !== R.length)) {
26903
26949
  if (b === j) I("Unexpected token ,", k);
26904
- else if (b === G)
26950
+ else if (b === K)
26905
26951
  for (var st = R.length; st < Ue; st++) R.push(null);
26906
26952
  }
26907
26953
  } else
26908
- (K = Wt()),
26909
- (!K || K.type === l) && I("Expected comma", k),
26910
- R.push(K);
26954
+ (Y = Wt()),
26955
+ (!Y || Y.type === l) && I("Expected comma", k),
26956
+ R.push(Y);
26911
26957
  return Vt || I("Expected " + String.fromCharCode(b), k), R;
26912
26958
  },
26913
26959
  nF = function () {
@@ -26935,7 +26981,7 @@
26935
26981
  }),
26936
26982
  Ge(),
26937
26983
  (b = Q(k)),
26938
- b !== G && I("Unclosed [", k),
26984
+ b !== K && I("Unclosed [", k),
26939
26985
  k++)
26940
26986
  : b === $ &&
26941
26987
  (T = { type: c, arguments: lc(j), callee: T }),
@@ -26950,7 +26996,7 @@
26950
26996
  I("Unclosed (", k);
26951
26997
  },
26952
26998
  rF = function () {
26953
- return k++, { type: p, elements: lc(G) };
26999
+ return k++, { type: p, elements: lc(K) };
26954
27000
  },
26955
27001
  go = [],
26956
27002
  Ir,
@@ -27254,26 +27300,26 @@
27254
27300
  QN = "[object Uint8ClampedArray]",
27255
27301
  vN = "[object Uint16Array]",
27256
27302
  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] =
27303
+ Z = {};
27304
+ (Z[GN] = Z[KN] = Z[YN] = Z[ZN] = Z[JN] = Z[XN] = Z[QN] = Z[vN] = Z[eE] = !0),
27305
+ (Z[ON] =
27306
+ Z[FN] =
27307
+ Z[HN] =
27308
+ Z[MN] =
27309
+ Z[WN] =
27310
+ Z[IN] =
27311
+ Z[$N] =
27312
+ Z[LN] =
27313
+ Z[AN] =
27314
+ Z[UN] =
27315
+ Z[PN] =
27316
+ Z[jN] =
27317
+ Z[RN] =
27318
+ Z[zN] =
27319
+ Z[qN] =
27274
27320
  !1);
27275
27321
  function tE(e) {
27276
- return DN(e) && TN(e.length) && !!Y[SN(e)];
27322
+ return DN(e) && TN(e.length) && !!Z[SN(e)];
27277
27323
  }
27278
27324
  var nE = tE;
27279
27325
  function oE(e) {
@@ -29044,7 +29090,7 @@
29044
29090
  BooleanSwitch: uV,
29045
29091
  FieldGroup: IV,
29046
29092
  ContentSelect: Ya,
29047
- TypeSelect: lb,
29093
+ TypeSelect: l1,
29048
29094
  ScopeSelect: Xa,
29049
29095
  FieldSelect: ds,
29050
29096
  TimezoneSelect: fa,
@@ -29658,7 +29704,7 @@
29658
29704
  $ = t.resolveComponent("field-group"),
29659
29705
  j = t.resolveComponent("field-select"),
29660
29706
  w = t.resolveComponent("native-select"),
29661
- G = t.resolveComponent("button-select"),
29707
+ K = t.resolveComponent("button-select"),
29662
29708
  M = t.resolveComponent("currency-field"),
29663
29709
  D = t.resolveComponent("time-field"),
29664
29710
  A = t.resolveComponent("date-field"),
@@ -30068,7 +30114,7 @@
30068
30114
  r.widget == "button"
30069
30115
  ? (t.openBlock(),
30070
30116
  t.createBlock(
30071
- G,
30117
+ K,
30072
30118
  {
30073
30119
  key: 17,
30074
30120
  onTouched: r.touch,
@@ -30748,23 +30794,23 @@
30748
30794
  }
30749
30795
  var QT = XT,
30750
30796
  vT = vS,
30751
- e2 = yT,
30752
- t2 = QT,
30753
- n2 = "['’]",
30754
- o2 = RegExp(n2, "g");
30755
- function r2(e) {
30797
+ eD = yT,
30798
+ tD = QT,
30799
+ nD = "['’]",
30800
+ oD = RegExp(nD, "g");
30801
+ function rD(e) {
30756
30802
  return function (n) {
30757
- return vT(t2(e2(n).replace(o2, "")), e, "");
30803
+ return vT(tD(eD(n).replace(oD, "")), e, "");
30758
30804
  };
30759
30805
  }
30760
- var l2 = r2,
30761
- i2 = l2,
30762
- a2 = i2(function (e, n, o) {
30806
+ var lD = rD,
30807
+ iD = lD,
30808
+ aD = iD(function (e, n, o) {
30763
30809
  return e + (o ? "-" : "") + n.toLowerCase();
30764
30810
  }),
30765
- s2 = a2;
30811
+ sD = aD;
30766
30812
  const oI = "",
30767
- c2 = {
30813
+ cD = {
30768
30814
  emits: [
30769
30815
  "field:unmount",
30770
30816
  "field:mount",
@@ -30879,7 +30925,7 @@
30879
30925
  );
30880
30926
  },
30881
30927
  getFieldKey(e) {
30882
- let n = s2(`${e.title}-${e.key}`);
30928
+ let n = sD(`${e.title}-${e.key}`);
30883
30929
  return e.incrementor && (n = `${n}-${e.incrementor}`), n;
30884
30930
  },
30885
30931
  touch() {
@@ -30983,7 +31029,7 @@
30983
31029
  },
30984
31030
  },
30985
31031
  };
30986
- function d2(e, n, o, l, i, r) {
31032
+ function dD(e, n, o, l, i, r) {
30987
31033
  const a = t.resolveComponent("ux-field");
30988
31034
  return (
30989
31035
  t.openBlock(),
@@ -31073,17 +31119,17 @@
31073
31119
  )
31074
31120
  );
31075
31121
  }
31076
- const Nr = g(c2, [
31077
- ["render", d2],
31122
+ const Nr = g(cD, [
31123
+ ["render", dD],
31078
31124
  ["__scopeId", "data-v-f0b9d2cd"],
31079
31125
  ]),
31080
31126
  rI = "",
31081
31127
  Er = "form.ready",
31082
- u2 = "form.processing",
31128
+ uD = "form.processing",
31083
31129
  Rs = "form.complete",
31084
31130
  zs = "form.error",
31085
- m2 = "form.intent",
31086
- f2 = {
31131
+ mD = "form.intent",
31132
+ fD = {
31087
31133
  emits: ["reset", "processing", "intent", "success", "error"],
31088
31134
  methods: {
31089
31135
  multiFormStateUpdated(e, n) {
@@ -31169,7 +31215,7 @@
31169
31215
  console.log("Form is invalid", this.formState);
31170
31216
  return;
31171
31217
  }
31172
- (e.processing = !0), (e.state = u2), e.$emit("processing");
31218
+ (e.processing = !0), (e.state = uD), e.$emit("processing");
31173
31219
  const { submission: n, error: o } = await e.preSubmit(e.model);
31174
31220
  if (o) return console.log("pre submit error", o), s(o);
31175
31221
  const l = {},
@@ -31206,7 +31252,7 @@
31206
31252
  );
31207
31253
  break;
31208
31254
  }
31209
- (e.state = m2), (e.processing = !1), e.$emit("intent", c);
31255
+ (e.state = mD), (e.processing = !1), e.$emit("intent", c);
31210
31256
  }
31211
31257
  async function a(c) {
31212
31258
  await e.postSubmit(c),
@@ -31230,11 +31276,16 @@
31230
31276
  l = (r = o._payment) == null ? void 0 : r.total,
31231
31277
  i = (a = o._payment) == null ? void 0 : a.gateway;
31232
31278
  if (n.form.hasGeographicRequirements) {
31233
- const { coords: s } = await n.$sdk.geo.getPosition();
31279
+ const { coords: s } = await n.$sdk.geo
31280
+ .getPosition()
31281
+ .catch(function (c) {
31282
+ return console.log("Error", c), { coords: void 0 };
31283
+ });
31234
31284
  if (!s || !s.latitude || !s.longitude)
31235
31285
  return {
31236
31286
  error: {
31237
- message: "Location data is required to submit this form",
31287
+ message:
31288
+ "Location data is required to submit this form. Please allow location to continue.",
31238
31289
  status: 400,
31239
31290
  statusCode: 400,
31240
31291
  },
@@ -31497,22 +31548,22 @@
31497
31548
  },
31498
31549
  },
31499
31550
  },
31500
- p2 = ((e) => (
31501
- t.pushScopeId("data-v-091267f5"), (e = e()), t.popScopeId(), e
31551
+ pD = ((e) => (
31552
+ t.pushScopeId("data-v-478e89d4"), (e = e()), t.popScopeId(), e
31502
31553
  ))(() => 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) {
31554
+ hD = { key: 0 },
31555
+ yD = { key: 1 },
31556
+ gD = { key: 2 },
31557
+ kD = { class: "intent-submit" },
31558
+ _D = { key: 0, class: "multistep-form" },
31559
+ bD = { class: "multistep-form-sections" },
31560
+ xD = { class: "multistep-fields" },
31561
+ wD = { class: "multistep-controls" },
31562
+ CD = ["tooltip"],
31563
+ VD = ["tooltip"],
31564
+ BD = { class: "multistep-progress" },
31565
+ ND = ["tooltip"];
31566
+ function ED(e, n, o, l, i, r) {
31516
31567
  var E;
31517
31568
  const a = t.resolveComponent("ux-icon"),
31518
31569
  s = t.resolveComponent("ux-button"),
@@ -31536,19 +31587,19 @@
31536
31587
  t.Fragment,
31537
31588
  { key: 0 },
31538
31589
  [
31539
- p2,
31590
+ pD,
31540
31591
  i.error.message
31541
31592
  ? (t.openBlock(),
31542
31593
  t.createElementBlock(
31543
31594
  "pre",
31544
- h2,
31595
+ hD,
31545
31596
  t.toDisplayString(i.error.message),
31546
31597
  1,
31547
31598
  ))
31548
31599
  : t.createCommentVNode("", !0),
31549
31600
  (E = i.error.data) != null && E.errors
31550
31601
  ? (t.openBlock(),
31551
- t.createElementBlock("div", y2, [
31602
+ t.createElementBlock("div", yD, [
31552
31603
  (t.openBlock(!0),
31553
31604
  t.createElementBlock(
31554
31605
  t.Fragment,
@@ -31571,7 +31622,7 @@
31571
31622
  : (t.openBlock(),
31572
31623
  t.createElementBlock(
31573
31624
  "pre",
31574
- g2,
31625
+ gD,
31575
31626
  t.toDisplayString(i.error),
31576
31627
  1,
31577
31628
  )),
@@ -31679,7 +31730,7 @@
31679
31730
  ],
31680
31731
  ))
31681
31732
  : t.createCommentVNode("", !0),
31682
- t.createElementVNode("div", k2, [
31733
+ t.createElementVNode("div", kD, [
31683
31734
  t.createVNode(
31684
31735
  s,
31685
31736
  {
@@ -31710,8 +31761,8 @@
31710
31761
  [
31711
31762
  o.multistep
31712
31763
  ? (t.openBlock(),
31713
- t.createElementBlock("div", _2, [
31714
- t.createElementVNode("div", b2, [
31764
+ t.createElementBlock("div", _D, [
31765
+ t.createElementVNode("div", bD, [
31715
31766
  (t.openBlock(!0),
31716
31767
  t.createElementBlock(
31717
31768
  t.Fragment,
@@ -31734,7 +31785,7 @@
31734
31785
  ]),
31735
31786
  },
31736
31787
  [
31737
- t.createElementVNode("div", x2, [
31788
+ t.createElementVNode("div", xD, [
31738
31789
  t.createVNode(
31739
31790
  f,
31740
31791
  {
@@ -31765,7 +31816,7 @@
31765
31816
  ],
31766
31817
  ),
31767
31818
  ]),
31768
- t.createElementVNode("div", w2, [
31819
+ t.createElementVNode("div", wD, [
31769
31820
  t.createVNode(
31770
31821
  h,
31771
31822
  { gap: "", center: "" },
@@ -31866,7 +31917,7 @@
31866
31917
  ),
31867
31918
  ],
31868
31919
  8,
31869
- C2,
31920
+ CD,
31870
31921
  ),
31871
31922
  ],
31872
31923
  ),
@@ -31927,7 +31978,7 @@
31927
31978
  ),
31928
31979
  ],
31929
31980
  8,
31930
- V2,
31981
+ VD,
31931
31982
  ),
31932
31983
  ],
31933
31984
  ),
@@ -31951,7 +32002,7 @@
31951
32002
  256,
31952
32003
  )),
31953
32004
  ]),
31954
- t.createElementVNode("div", B2, [
32005
+ t.createElementVNode("div", BD, [
31955
32006
  t.createTextVNode(
31956
32007
  t.toDisplayString(r.displayCurrentPage) +
31957
32008
  " of " +
@@ -32022,7 +32073,7 @@
32022
32073
  ),
32023
32074
  ],
32024
32075
  8,
32025
- N2,
32076
+ ND,
32026
32077
  ),
32027
32078
  ],
32028
32079
  64,
@@ -32035,11 +32086,11 @@
32035
32086
  )
32036
32087
  );
32037
32088
  }
32038
- const Sr = g(f2, [
32039
- ["render", E2],
32040
- ["__scopeId", "data-v-091267f5"],
32089
+ const Sr = g(fD, [
32090
+ ["render", ED],
32091
+ ["__scopeId", "data-v-478e89d4"],
32041
32092
  ]);
32042
- function S2(e) {
32093
+ function SD(e) {
32043
32094
  const n = /<\/?([a-zA-Z0-9]+)[^>]*>/g,
32044
32095
  o = [];
32045
32096
  let l;
@@ -32075,7 +32126,7 @@
32075
32126
  actualTemplate() {
32076
32127
  let e = this.template || "";
32077
32128
  e = e.replaceAll ? e.replaceAll("<br>", "<br/>") : e;
32078
- var { valid: n, invalid: o } = S2(e);
32129
+ var { valid: n, invalid: o } = SD(e);
32079
32130
  return (
32080
32131
  n ||
32081
32132
  (console.log("Invalid html", e),
@@ -32087,7 +32138,7 @@
32087
32138
  components: { VRuntimeTemplate: Hi },
32088
32139
  },
32089
32140
  iI = "",
32090
- T2 = {
32141
+ TD = {
32091
32142
  emits: ["error", "reset"],
32092
32143
  data() {
32093
32144
  return { error: null };
@@ -32101,7 +32152,7 @@
32101
32152
  },
32102
32153
  },
32103
32154
  },
32104
- D2 = {
32155
+ DD = {
32105
32156
  key: 0,
32106
32157
  class: "error-boundary",
32107
32158
  style: {
@@ -32111,11 +32162,11 @@
32111
32162
  padding: "1em",
32112
32163
  },
32113
32164
  };
32114
- function O2(e, n, o, l, i, r) {
32165
+ function OD(e, n, o, l, i, r) {
32115
32166
  const a = t.resolveComponent("ux-button");
32116
32167
  return i.error
32117
32168
  ? (t.openBlock(),
32118
- t.createElementBlock("div", D2, [
32169
+ t.createElementBlock("div", DD, [
32119
32170
  t.createElementVNode(
32120
32171
  "pre",
32121
32172
  null,
@@ -32137,11 +32188,11 @@
32137
32188
  ]))
32138
32189
  : t.renderSlot(e.$slots, "default", { key: 1 }, void 0, !0);
32139
32190
  }
32140
- const F2 = g(T2, [
32141
- ["render", O2],
32191
+ const FD = g(TD, [
32192
+ ["render", OD],
32142
32193
  ["__scopeId", "data-v-0fd69158"],
32143
32194
  ]),
32144
- M2 = {
32195
+ MD = {
32145
32196
  props: {
32146
32197
  field: {
32147
32198
  type: Object,
@@ -32218,8 +32269,8 @@
32218
32269
  },
32219
32270
  },
32220
32271
  aI = "",
32221
- I2 = {
32222
- mixins: [M2],
32272
+ ID = {
32273
+ mixins: [MD],
32223
32274
  props: {
32224
32275
  modelValue: { type: [Object, Array] },
32225
32276
  submission: { type: Boolean, default: !1 },
@@ -32235,8 +32286,8 @@
32235
32286
  },
32236
32287
  },
32237
32288
  },
32238
- $2 = { key: 0, class: "ux-multi-group" };
32239
- function L2(e, n, o, l, i, r) {
32289
+ $D = { key: 0, class: "ux-multi-group" };
32290
+ function LD(e, n, o, l, i, r) {
32240
32291
  const a = t.resolveComponent("flex-cell"),
32241
32292
  s = t.resolveComponent("flex-row"),
32242
32293
  c = t.resolveComponent("ux-panel-header"),
@@ -32245,7 +32296,7 @@
32245
32296
  m = t.resolveComponent("ux-panel");
32246
32297
  return e.multiValue
32247
32298
  ? (t.openBlock(),
32248
- t.createElementBlock("div", $2, [
32299
+ t.createElementBlock("div", $D, [
32249
32300
  (t.openBlock(!0),
32250
32301
  t.createElementBlock(
32251
32302
  t.Fragment,
@@ -32357,13 +32408,13 @@
32357
32408
  ["submission", "fields", "flex", "parentModel", "modelValue"],
32358
32409
  ));
32359
32410
  }
32360
- const A2 = g(I2, [
32361
- ["render", L2],
32411
+ const AD = g(ID, [
32412
+ ["render", LD],
32362
32413
  ["__scopeId", "data-v-cb997d0e"],
32363
32414
  ]),
32364
32415
  sI = "",
32365
- U2 = {
32366
- components: { Item: er, FieldGroup: A2, Compile: qs, ErrorBoundary: F2 },
32416
+ UD = {
32417
+ components: { Item: er, FieldGroup: AD, Compile: qs, ErrorBoundary: FD },
32367
32418
  props: {
32368
32419
  field: { type: Object, required: !0 },
32369
32420
  parentModel: { type: Object },
@@ -32565,26 +32616,26 @@
32565
32616
  },
32566
32617
  },
32567
32618
  },
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) {
32619
+ PD = { class: "ux-field-title" },
32620
+ jD = { class: "currency" },
32621
+ RD = { key: 1 },
32622
+ zD = { class: "currency" },
32623
+ qD = { key: 1 },
32624
+ HD = { key: 4, class: "ux-password-render" },
32625
+ WD = ["type", "value"],
32626
+ GD = ["type", "value"],
32627
+ KD = ["innerHTML"],
32628
+ YD = ["innerHTML"],
32629
+ ZD = { key: 1 },
32630
+ JD = { key: 1 },
32631
+ XD = ["href"],
32632
+ QD = { key: 1 },
32633
+ vD = ["href"],
32634
+ e2 = ["href"],
32635
+ t2 = { key: 1 },
32636
+ n2 = ["href"],
32637
+ o2 = { key: 1 };
32638
+ function r2(e, n, o, l, i, r) {
32588
32639
  const a = t.resolveComponent("field-group"),
32589
32640
  s = t.resolveComponent("v-ace-editor"),
32590
32641
  c = t.resolveComponent("flex-cell"),
@@ -32599,7 +32650,7 @@
32599
32650
  "div",
32600
32651
  { key: 0, class: t.normalizeClass(["ux-field-render", r.classes]) },
32601
32652
  [
32602
- t.createElementVNode("label", P2, t.toDisplayString(r.title), 1),
32653
+ t.createElementVNode("label", PD, t.toDisplayString(r.title), 1),
32603
32654
  r.widget === "group"
32604
32655
  ? (t.openBlock(),
32605
32656
  t.createElementBlock(
@@ -32682,7 +32733,7 @@
32682
32733
  ),
32683
32734
  t.createElementVNode(
32684
32735
  "span",
32685
- j2,
32736
+ jD,
32686
32737
  t.toDisplayString(o.field.currency),
32687
32738
  1,
32688
32739
  ),
@@ -32692,7 +32743,7 @@
32692
32743
  256,
32693
32744
  ))
32694
32745
  : (t.openBlock(),
32695
- t.createElementBlock("div", R2, [
32746
+ t.createElementBlock("div", RD, [
32696
32747
  t.createTextVNode(
32697
32748
  t.toDisplayString(
32698
32749
  r.formatCurrency(r.fieldModel),
@@ -32701,7 +32752,7 @@
32701
32752
  ),
32702
32753
  t.createElementVNode(
32703
32754
  "span",
32704
- z2,
32755
+ zD,
32705
32756
  t.toDisplayString(o.field.currency),
32706
32757
  1,
32707
32758
  ),
@@ -32746,7 +32797,7 @@
32746
32797
  256,
32747
32798
  ))
32748
32799
  : (t.openBlock(),
32749
- t.createElementBlock("div", q2, [
32800
+ t.createElementBlock("div", qD, [
32750
32801
  t.createVNode(
32751
32802
  s,
32752
32803
  {
@@ -32768,7 +32819,7 @@
32768
32819
  ))
32769
32820
  : r.widget === "password"
32770
32821
  ? (t.openBlock(),
32771
- t.createElementBlock("div", H2, [
32822
+ t.createElementBlock("div", HD, [
32772
32823
  r.multiValue
32773
32824
  ? (t.openBlock(!0),
32774
32825
  t.createElementBlock(
@@ -32800,7 +32851,7 @@
32800
32851
  },
32801
32852
  null,
32802
32853
  8,
32803
- W2,
32854
+ WD,
32804
32855
  ),
32805
32856
  ]),
32806
32857
  _: 2,
@@ -32911,7 +32962,7 @@
32911
32962
  },
32912
32963
  null,
32913
32964
  8,
32914
- G2,
32965
+ GD,
32915
32966
  ),
32916
32967
  ]),
32917
32968
  _: 1,
@@ -33119,7 +33170,7 @@
33119
33170
  { innerHTML: h },
33120
33171
  null,
33121
33172
  8,
33122
- K2,
33173
+ KD,
33123
33174
  ),
33124
33175
  ]),
33125
33176
  _: 2,
@@ -33143,7 +33194,7 @@
33143
33194
  { innerHTML: r.fieldModel },
33144
33195
  null,
33145
33196
  8,
33146
- Y2,
33197
+ YD,
33147
33198
  ),
33148
33199
  ]),
33149
33200
  _: 1,
@@ -33181,7 +33232,7 @@
33181
33232
  : (t.openBlock(),
33182
33233
  t.createElementBlock(
33183
33234
  "div",
33184
- Z2,
33235
+ ZD,
33185
33236
  t.toDisplayString(!!r.fieldModel),
33186
33237
  1,
33187
33238
  )),
@@ -33219,7 +33270,7 @@
33219
33270
  : (t.openBlock(),
33220
33271
  t.createElementBlock(
33221
33272
  "div",
33222
- J2,
33273
+ JD,
33223
33274
  t.toDisplayString(
33224
33275
  r.renderDate(r.fieldModel),
33225
33276
  ),
@@ -33253,7 +33304,7 @@
33253
33304
  { href: `mailto:${h}` },
33254
33305
  t.toDisplayString(h),
33255
33306
  9,
33256
- X2,
33307
+ XD,
33257
33308
  ),
33258
33309
  ],
33259
33310
  )
@@ -33262,13 +33313,13 @@
33262
33313
  256,
33263
33314
  ))
33264
33315
  : (t.openBlock(),
33265
- t.createElementBlock("div", Q2, [
33316
+ t.createElementBlock("div", QD, [
33266
33317
  t.createElementVNode(
33267
33318
  "a",
33268
33319
  { href: `mailto:${r.fieldModel}` },
33269
33320
  t.toDisplayString(r.fieldModel),
33270
33321
  9,
33271
- v2,
33322
+ vD,
33272
33323
  ),
33273
33324
  ])),
33274
33325
  ],
@@ -33299,7 +33350,7 @@
33299
33350
  { href: h },
33300
33351
  t.toDisplayString(h),
33301
33352
  9,
33302
- eD,
33353
+ e2,
33303
33354
  ),
33304
33355
  ],
33305
33356
  )
@@ -33308,13 +33359,13 @@
33308
33359
  256,
33309
33360
  ))
33310
33361
  : (t.openBlock(),
33311
- t.createElementBlock("div", tD, [
33362
+ t.createElementBlock("div", t2, [
33312
33363
  t.createElementVNode(
33313
33364
  "a",
33314
33365
  { href: r.fieldModel },
33315
33366
  t.toDisplayString(r.fieldModel),
33316
33367
  9,
33317
- nD,
33368
+ n2,
33318
33369
  ),
33319
33370
  ])),
33320
33371
  ],
@@ -33349,7 +33400,7 @@
33349
33400
  : (t.openBlock(),
33350
33401
  t.createElementBlock(
33351
33402
  "div",
33352
- oD,
33403
+ o2,
33353
33404
  t.toDisplayString(r.fieldModel),
33354
33405
  1,
33355
33406
  )),
@@ -33365,12 +33416,12 @@
33365
33416
  ))
33366
33417
  : t.createCommentVNode("", !0);
33367
33418
  }
33368
- const Tr = g(U2, [
33369
- ["render", rD],
33419
+ const Tr = g(UD, [
33420
+ ["render", r2],
33370
33421
  ["__scopeId", "data-v-932f5321"],
33371
33422
  ]),
33372
33423
  cI = "",
33373
- lD = {
33424
+ l2 = {
33374
33425
  props: {
33375
33426
  parentModel: { type: Object },
33376
33427
  fields: {
@@ -33411,7 +33462,7 @@
33411
33462
  },
33412
33463
  },
33413
33464
  };
33414
- function iD(e, n, o, l, i, r) {
33465
+ function i2(e, n, o, l, i, r) {
33415
33466
  const a = t.resolveComponent("ux-field-render");
33416
33467
  return (
33417
33468
  t.openBlock(),
@@ -33466,8 +33517,8 @@
33466
33517
  )
33467
33518
  );
33468
33519
  }
33469
- const Hs = g(lD, [
33470
- ["render", iD],
33520
+ const Hs = g(l2, [
33521
+ ["render", i2],
33471
33522
  ["__scopeId", "data-v-f2b5ec33"],
33472
33523
  ]);
33473
33524
  function Ws(e) {
@@ -33540,7 +33591,7 @@
33540
33591
  );
33541
33592
  }
33542
33593
  const dI = "",
33543
- aD = {
33594
+ a2 = {
33544
33595
  props: {
33545
33596
  total: {
33546
33597
  type: Number,
@@ -33634,7 +33685,7 @@
33634
33685
  };
33635
33686
  },
33636
33687
  };
33637
- function sD(e, n, o, l, i, r) {
33688
+ function s2(e, n, o, l, i, r) {
33638
33689
  const a = t.resolveComponent("native-select"),
33639
33690
  s = t.resolveComponent("flex-cell"),
33640
33691
  c = t.resolveComponent("ux-icon"),
@@ -33850,52 +33901,52 @@
33850
33901
  )
33851
33902
  );
33852
33903
  }
33853
- const cD = g(aD, [
33854
- ["render", sD],
33904
+ const c2 = g(a2, [
33905
+ ["render", s2],
33855
33906
  ["__scopeId", "data-v-696aa569"],
33856
33907
  ]);
33857
- var dD = "__lodash_hash_undefined__";
33858
- function uD(e) {
33859
- return this.__data__.set(e, dD), this;
33908
+ var d2 = "__lodash_hash_undefined__";
33909
+ function u2(e) {
33910
+ return this.__data__.set(e, d2), this;
33860
33911
  }
33861
- var mD = uD;
33862
- function fD(e) {
33912
+ var m2 = u2;
33913
+ function f2(e) {
33863
33914
  return this.__data__.has(e);
33864
33915
  }
33865
- var pD = fD,
33866
- hD = Mi,
33867
- yD = mD,
33868
- gD = pD;
33916
+ var p2 = f2,
33917
+ h2 = Mi,
33918
+ y2 = m2,
33919
+ g2 = p2;
33869
33920
  function po(e) {
33870
33921
  var n = -1,
33871
33922
  o = e == null ? 0 : e.length;
33872
- for (this.__data__ = new hD(); ++n < o; ) this.add(e[n]);
33923
+ for (this.__data__ = new h2(); ++n < o; ) this.add(e[n]);
33873
33924
  }
33874
- (po.prototype.add = po.prototype.push = yD), (po.prototype.has = gD);
33875
- var kD = po,
33876
- _D = _s;
33877
- function bD(e, n) {
33925
+ (po.prototype.add = po.prototype.push = y2), (po.prototype.has = g2);
33926
+ var k2 = po,
33927
+ _2 = _s;
33928
+ function b2(e, n) {
33878
33929
  var o = e == null ? 0 : e.length;
33879
- return !!o && _D(e, n, 0) > -1;
33930
+ return !!o && _2(e, n, 0) > -1;
33880
33931
  }
33881
- var xD = bD;
33882
- function wD(e, n, o) {
33932
+ var x2 = b2;
33933
+ function w2(e, n, o) {
33883
33934
  for (var l = -1, i = e == null ? 0 : e.length; ++l < i; )
33884
33935
  if (o(n, e[l])) return !0;
33885
33936
  return !1;
33886
33937
  }
33887
- var CD = wD;
33888
- function VD(e, n) {
33938
+ var C2 = w2;
33939
+ function V2(e, n) {
33889
33940
  return e.has(n);
33890
33941
  }
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) {
33942
+ var B2 = V2,
33943
+ N2 = Ho,
33944
+ E2 = Ot,
33945
+ S2 = N2(E2, "Set"),
33946
+ T2 = S2;
33947
+ function D2() {}
33948
+ var O2 = D2;
33949
+ function F2(e) {
33899
33950
  var n = -1,
33900
33951
  o = Array(e.size);
33901
33952
  return (
@@ -33905,37 +33956,37 @@
33905
33956
  o
33906
33957
  );
33907
33958
  }
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
33959
+ var Gs = F2,
33960
+ Dr = T2,
33961
+ M2 = O2,
33962
+ I2 = Gs,
33963
+ $2 = 1 / 0,
33964
+ L2 =
33965
+ Dr && 1 / I2(new Dr([, -0]))[1] == $2
33915
33966
  ? function (e) {
33916
33967
  return new Dr(e);
33917
33968
  }
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) {
33969
+ : M2,
33970
+ A2 = L2,
33971
+ U2 = k2,
33972
+ P2 = x2,
33973
+ j2 = C2,
33974
+ R2 = B2,
33975
+ z2 = A2,
33976
+ q2 = Gs,
33977
+ H2 = 200;
33978
+ function W2(e, n, o) {
33928
33979
  var l = -1,
33929
- i = PD,
33980
+ i = P2,
33930
33981
  r = e.length,
33931
33982
  a = !0,
33932
33983
  s = [],
33933
33984
  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());
33985
+ if (o) (a = !1), (i = j2);
33986
+ else if (r >= H2) {
33987
+ var u = n ? null : z2(e);
33988
+ if (u) return q2(u);
33989
+ (a = !1), (i = R2), (c = new U2());
33939
33990
  } else c = n ? [] : s;
33940
33991
  e: for (; ++l < r; ) {
33941
33992
  var d = e[l],
@@ -33947,14 +33998,14 @@
33947
33998
  }
33948
33999
  return s;
33949
34000
  }
33950
- var GD = WD,
33951
- KD = GD;
33952
- function YD(e) {
33953
- return e && e.length ? KD(e) : [];
34001
+ var G2 = W2,
34002
+ K2 = G2;
34003
+ function Y2(e) {
34004
+ return e && e.length ? K2(e) : [];
33954
34005
  }
33955
- var ZD = YD;
34006
+ var Z2 = Y2;
33956
34007
  const uI = "";
33957
- function JD(e, n) {
34008
+ function J2(e, n) {
33958
34009
  var o = [],
33959
34010
  l;
33960
34011
  switch (n) {
@@ -34053,7 +34104,7 @@
34053
34104
  return { operator: "and", filters: [] };
34054
34105
  }
34055
34106
  let be, Or, Fr;
34056
- const XD = {
34107
+ const X2 = {
34057
34108
  emits: ["loading", "loaded", "click:row", "click:actions"],
34058
34109
  props: {
34059
34110
  defaultPage: { type: Number, default: 1 },
@@ -34102,7 +34153,7 @@
34102
34153
  pluralText: { type: String },
34103
34154
  },
34104
34155
  components: {
34105
- Pager: cD,
34156
+ Pager: c2,
34106
34157
  NativeTable: Ki,
34107
34158
  FilterBuilder: cs,
34108
34159
  Search: bn,
@@ -34473,7 +34524,7 @@
34473
34524
  n.push("color"), n.push("bgColor");
34474
34525
  break;
34475
34526
  }
34476
- return ZD(n);
34527
+ return Z2(n);
34477
34528
  },
34478
34529
  columns() {
34479
34530
  let e = [],
@@ -34489,7 +34540,7 @@
34489
34540
  var l = this.actualOptions.prefixColumns || [];
34490
34541
  l.forEach(o(!0));
34491
34542
  var i = this.actualOptions.columns || [],
34492
- r = i.length ? i : JD(this, this.basicType);
34543
+ r = i.length ? i : J2(this, this.basicType);
34493
34544
  r.length || r.push({ title: "Title", key: "title" }),
34494
34545
  r.forEach(o(!0));
34495
34546
  var a = this.additionalFields;
@@ -34714,10 +34765,10 @@
34714
34765
  },
34715
34766
  },
34716
34767
  Mr = (e) => (
34717
- t.pushScopeId("data-v-10d1c729"), (e = e()), t.popScopeId(), e
34768
+ t.pushScopeId("data-v-665d3903"), (e = e()), t.popScopeId(), e
34718
34769
  ),
34719
- QD = Mr(() => t.createElementVNode("strong", null, "Select Columns", -1)),
34720
- vD = { class: "footer" },
34770
+ Q2 = Mr(() => t.createElementVNode("strong", null, "Select Columns", -1)),
34771
+ v2 = { class: "footer" },
34721
34772
  eO = Mr(() => t.createElementVNode("p", null, null, -1)),
34722
34773
  tO = { key: 0 },
34723
34774
  nO = Mr(() => t.createElementVNode("p", null, null, -1));
@@ -34737,7 +34788,7 @@
34737
34788
  $ = t.resolveComponent("flex-footer"),
34738
34789
  j = t.resolveComponent("flex-row"),
34739
34790
  w = t.resolveComponent("search"),
34740
- G = t.resolveComponent("ux-field"),
34791
+ K = t.resolveComponent("ux-field"),
34741
34792
  M = t.resolveComponent("filter-builder"),
34742
34793
  D = t.resolveComponent("spinner");
34743
34794
  return r.actualDefinition
@@ -34871,6 +34922,8 @@
34871
34922
  i
34872
34923
  .manager
34873
34924
  .items,
34925
+ selectionManager:
34926
+ i.manager,
34874
34927
  items:
34875
34928
  r.items,
34876
34929
  "onClick:actions":
@@ -34889,6 +34942,7 @@
34889
34942
  "cacheKey",
34890
34943
  "definition",
34891
34944
  "selection",
34945
+ "selectionManager",
34892
34946
  "items",
34893
34947
  "onClick:actions",
34894
34948
  "onSelect:item:toggle",
@@ -35017,7 +35071,7 @@
35017
35071
  left: "",
35018
35072
  },
35019
35073
  ),
35020
- QD,
35074
+ Q2,
35021
35075
  ],
35022
35076
  ),
35023
35077
  _: 1,
@@ -35234,7 +35288,7 @@
35234
35288
  void 0,
35235
35289
  !0,
35236
35290
  ),
35237
- t.createElementVNode("div", vD, [
35291
+ t.createElementVNode("div", v2, [
35238
35292
  t.createVNode(
35239
35293
  S,
35240
35294
  {
@@ -35307,7 +35361,7 @@
35307
35361
  ? (t.openBlock(),
35308
35362
  t.createElementBlock("div", tO, [
35309
35363
  t.createVNode(
35310
- G,
35364
+ K,
35311
35365
  {
35312
35366
  field: r.dateRangeField,
35313
35367
  modelValue: i.dateRangeFilter,
@@ -35368,9 +35422,9 @@
35368
35422
  ))
35369
35423
  : t.createCommentVNode("", !0);
35370
35424
  }
35371
- const Ys = g(XD, [
35425
+ const Ys = g(X2, [
35372
35426
  ["render", oO],
35373
- ["__scopeId", "data-v-10d1c729"],
35427
+ ["__scopeId", "data-v-665d3903"],
35374
35428
  ]),
35375
35429
  mI = "",
35376
35430
  rO = {
@@ -37011,7 +37065,7 @@
37011
37065
  install(e, n) {
37012
37066
  var o;
37013
37067
  console.log(XO),
37014
- (n.date = Z),
37068
+ (n.date = G),
37015
37069
  (n.global = n.global || t.reactive({})),
37016
37070
  ((o = n.global) != null && o.cacheKeys) ||
37017
37071
  (n.global.cacheKeys = n.global.cacheKeys || t.reactive({})),