@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.es.js CHANGED
@@ -40,14 +40,14 @@ import {
40
40
  onScopeDispose as uu,
41
41
  getCurrentInstance as du,
42
42
  Teleport as Ul,
43
- vModelText as oe,
43
+ vModelText as ae,
44
44
  withKeys as _e,
45
45
  TransitionGroup as cu,
46
46
  nextTick as Pl,
47
47
  vModelDynamic as Zn,
48
48
  } from "vue";
49
49
  import { EventDispatcher as jl } from "@qikdev/sdk";
50
- const fu = "0.2.272";
50
+ const fu = "0.2.276";
51
51
  class qt extends Error {}
52
52
  class mu extends qt {
53
53
  constructor(t) {
@@ -5407,21 +5407,21 @@ function wn(e) {
5407
5407
  if (e && typeof e == "object") return L.fromObject(e);
5408
5408
  throw new Ye(`Unknown datetime argument: ${e}, of type ${typeof e}`);
5409
5409
  }
5410
- const me = {};
5411
- me.format = function (e, t) {
5410
+ const oe = {};
5411
+ oe.format = function (e, t) {
5412
5412
  return (e = e ? new Date(e) : new Date()), L.fromJSDate(e).toFormat(t);
5413
5413
  };
5414
- me.timeago = function (e, t) {
5414
+ oe.timeago = function (e, t) {
5415
5415
  return L.fromJSDate(new Date(e)).toRelative(t);
5416
5416
  };
5417
- me.getDatesBetween = function (e, t) {
5417
+ oe.getDatesBetween = function (e, t) {
5418
5418
  const n = [];
5419
5419
  let r = L.fromISO(e);
5420
5420
  const s = L.fromISO(t);
5421
5421
  for (; r <= s; ) n.push(r.toISODate()), (r = r.plus({ days: 1 }));
5422
5422
  return n;
5423
5423
  };
5424
- me.getCalendarDateLimits = function (e) {
5424
+ oe.getCalendarDateLimits = function (e) {
5425
5425
  const t = e.getFullYear(),
5426
5426
  n = e.getMonth(),
5427
5427
  r = new Date(t, n, 1),
@@ -5443,18 +5443,18 @@ me.getCalendarDateLimits = function (e) {
5443
5443
  end: new Date(m),
5444
5444
  };
5445
5445
  };
5446
- me.getMiddleDate = function (e, t) {
5446
+ oe.getMiddleDate = function (e, t) {
5447
5447
  const n = e.getTime(),
5448
5448
  r = t.getTime(),
5449
5449
  s = (n + r) / 2;
5450
5450
  return new Date(s);
5451
5451
  };
5452
- me.shortTime = function (e) {
5452
+ oe.shortTime = function (e) {
5453
5453
  return e.toFormat("mm") === "00"
5454
5454
  ? e.toFormat("ha").toLowerCase()
5455
5455
  : e.toFormat("h:mma").toLowerCase();
5456
5456
  };
5457
- me.readableEventDate = function ({ startDate: e, endDate: t, timezone: n }) {
5457
+ oe.readableEventDate = function ({ startDate: e, endDate: t, timezone: n }) {
5458
5458
  if (!e) return "";
5459
5459
  (e = new Date(e)), (t = t ? new Date(t) : void 0);
5460
5460
  let r, s;
@@ -5468,16 +5468,18 @@ me.readableEventDate = function ({ startDate: e, endDate: t, timezone: n }) {
5468
5468
  l = n && r.zoneName !== L.local().zoneName ? ` (${r.zoneName})` : "",
5469
5469
  u = r.year !== i.year ? ` ${r.year}` : "";
5470
5470
  return r.hasSame(s, "day")
5471
- ? `${me.shortTime(r)}, ${r.toFormat("d MMMM")}${u}${l}`
5471
+ ? oe.shortTime(r) === "12am"
5472
+ ? `${r.toFormat("d MMMM")}${u}${l}`
5473
+ : `${oe.shortTime(r)}, ${r.toFormat("d MMMM")}${u}${l}`
5472
5474
  : r.hasSame(s, "month")
5473
5475
  ? `${r.toFormat("d")}-${s.toFormat("d MMMM")}${u}${l}`
5474
5476
  : r.hasSame(s, "year")
5475
5477
  ? `${r.toFormat("d MMM")} - ${s.toFormat("d MMM")}${u}${l}`
5476
5478
  : `${r.toFormat("d MMM yyyy")} - ${s.toFormat("d MMM yyyy")}${l}`;
5477
5479
  };
5478
- me.readableDateRange = function (e, t) {
5480
+ oe.readableDateRange = function (e, t) {
5479
5481
  if (!e) return;
5480
- if (!t) return me.readableDate(e);
5482
+ if (!t) return oe.readableDate(e);
5481
5483
  (e = L.fromJSDate(new Date(e))), (t = L.fromJSDate(new Date(t)));
5482
5484
  const n = e.toFormat("yyyy"),
5483
5485
  r = e.toFormat("LLL yyyy"),
@@ -5488,16 +5490,18 @@ me.readableDateRange = function (e, t) {
5488
5490
  u = t.toFormat("WW yyyy"),
5489
5491
  m = t.toFormat("d LLL yyyy");
5490
5492
  return i === m
5491
- ? `${me.shortTime(e)} - ${me.readableDate(t)}`
5493
+ ? oe.shortTime(e) === "12am"
5494
+ ? `${oe.readableDate(t)}`
5495
+ : `${oe.shortTime(e)} - ${oe.readableDate(t)}`
5492
5496
  : s === u
5493
- ? `${me.readableDate(e)} - ${me.readableDate(t)}`
5497
+ ? `${oe.readableDate(e)} - ${oe.readableDate(t)}`
5494
5498
  : r === o
5495
5499
  ? `${e.toFormat("d")} - ${t.toFormat("d LLL")}`
5496
5500
  : n === l
5497
- ? `${me.readableDate(e)} - ${me.readableDate(t)}`
5498
- : `${me.readableDate(e)} - ${me.readableDate(t)}`;
5501
+ ? `${oe.readableDate(e)} - ${oe.readableDate(t)}`
5502
+ : `${oe.readableDate(e)} - ${oe.readableDate(t)}`;
5499
5503
  };
5500
- me.readableDate = function (e) {
5504
+ oe.readableDate = function (e) {
5501
5505
  if (!e) return;
5502
5506
  const t = new Date(),
5503
5507
  n = L.fromJSDate(t),
@@ -5510,16 +5514,18 @@ me.readableDate = function (e) {
5510
5514
  u = o.toFormat("yyyy"),
5511
5515
  m = o.toFormat("LLL yyyy"),
5512
5516
  f = o.toFormat("WW yyyy");
5513
- if (o.toFormat("d LLL yyyy") === l) return `${me.shortTime(o)} today`;
5517
+ if (o.toFormat("d LLL yyyy") === l) return `${oe.shortTime(o)} today`;
5514
5518
  if (f === i)
5515
5519
  if (e > t) {
5516
5520
  const _ = parseInt(n.toFormat("d"));
5517
5521
  return parseInt(o.toFormat("d")) - _ === 1
5518
- ? `${me.shortTime(o)} tomorrow`
5519
- : `${me.shortTime(o)} ${o.toFormat("cccc")}`;
5522
+ ? `${oe.shortTime(o)} tomorrow`
5523
+ : `${oe.shortTime(o)} ${o.toFormat("cccc")}`;
5520
5524
  } else return `${o.toRelativeCalendar()}`;
5521
5525
  return m === s
5522
- ? `${me.shortTime(o)} ${o.toFormat("d LLL")}`
5526
+ ? oe.shortTime(o) === "12am"
5527
+ ? `${o.toFormat("d LLL")}`
5528
+ : `${oe.shortTime(o)} ${o.toFormat("d LLL")}`
5523
5529
  : u === r
5524
5530
  ? o.toFormat("cccc d LLL")
5525
5531
  : o.toFormat("d LLL yyyy");
@@ -6251,7 +6257,7 @@ const sm = ["onClick"],
6251
6257
  );
6252
6258
  },
6253
6259
  },
6254
- am = /* @__PURE__ */ V(om, [["__scopeId", "data-v-dd52e89f"]]),
6260
+ am = /* @__PURE__ */ V(om, [["__scopeId", "data-v-1d7eba43"]]),
6255
6261
  um = {
6256
6262
  emits: ["mount", "unmount"],
6257
6263
  name: "tab",
@@ -7540,8 +7546,8 @@ const Ko = {
7540
7546
  return (
7541
7547
  R.forEach(function (G) {
7542
7548
  G &&
7543
- Object.getOwnPropertyNames(G).forEach(function (de) {
7544
- return Js(G, J, de);
7549
+ Object.getOwnPropertyNames(G).forEach(function (ce) {
7550
+ return Js(G, J, ce);
7545
7551
  });
7546
7552
  }),
7547
7553
  J
@@ -7965,14 +7971,10 @@ const gg = {
7965
7971
  i = n || r || s;
7966
7972
  switch (this.typeKey) {
7967
7973
  case "event":
7968
- {
7969
- const o = t.startDate,
7970
- u = t.endDate;
7971
- if (e.$sdk.date)
7972
- return i
7973
- ? `${i} - ${e.$sdk.date.readableDateRange(o, u)}`
7974
- : `${e.$sdk.date.readableDateRange(o, u)}`;
7975
- }
7974
+ if ((t.startDate, t.endDate, e.$sdk.date))
7975
+ return i
7976
+ ? `${i} - ${e.$sdk.date.readableEventDate(t)}`
7977
+ : `${e.$sdk.date.readableEventDate(t)}`;
7976
7978
  break;
7977
7979
  }
7978
7980
  return i;
@@ -8002,7 +8004,7 @@ function bg(e, t, n, r, s, i) {
8002
8004
  }
8003
8005
  const kg = /* @__PURE__ */ V(gg, [
8004
8006
  ["render", bg],
8005
- ["__scopeId", "data-v-743aaea7"],
8007
+ ["__scopeId", "data-v-206fbd94"],
8006
8008
  ]);
8007
8009
  const xg = {
8008
8010
  props: {
@@ -12497,7 +12499,7 @@ function Uv(e, t, n, r, s, i) {
12497
12499
  null,
12498
12500
  512,
12499
12501
  ),
12500
- [[oe, i.startDate]],
12502
+ [[ae, i.startDate]],
12501
12503
  ),
12502
12504
  ]),
12503
12505
  ]),
@@ -12524,7 +12526,7 @@ function Uv(e, t, n, r, s, i) {
12524
12526
  null,
12525
12527
  512,
12526
12528
  ),
12527
- [[oe, i.endDate]],
12529
+ [[ae, i.endDate]],
12528
12530
  ),
12529
12531
  ]),
12530
12532
  ]),
@@ -12767,15 +12769,15 @@ const Wv = {
12767
12769
  Jv = { key: 2 },
12768
12770
  Xv = { key: 0 },
12769
12771
  Qv = { key: 1 },
12770
- e1 = { class: "ux-text-wrap" },
12771
- t1 = ["placeholder", "onUpdate:modelValue"],
12772
- n1 = /* @__PURE__ */ Gv(() =>
12772
+ eb = { class: "ux-text-wrap" },
12773
+ tb = ["placeholder", "onUpdate:modelValue"],
12774
+ nb = /* @__PURE__ */ Gv(() =>
12773
12775
  /* @__PURE__ */ x("option", { value: "" }, "None", -1),
12774
12776
  ),
12775
- i1 = ["value"],
12776
- r1 = { class: "ux-text-wrap" },
12777
- s1 = ["placeholder"];
12778
- function l1(e, t, n, r, s, i) {
12777
+ ib = ["value"],
12778
+ rb = { class: "ux-text-wrap" },
12779
+ sb = ["placeholder"];
12780
+ function lb(e, t, n, r, s, i) {
12779
12781
  const l = y("ux-button"),
12780
12782
  o = y("native-select"),
12781
12783
  u = y("flex-cell"),
@@ -12904,7 +12906,7 @@ function l1(e, t, n, r, s, i) {
12904
12906
  null,
12905
12907
  {
12906
12908
  default: h(() => [
12907
- x("div", e1, [
12909
+ x("div", eb, [
12908
12910
  Y(
12909
12911
  x(
12910
12912
  "input",
@@ -12932,9 +12934,9 @@ function l1(e, t, n, r, s, i) {
12932
12934
  },
12933
12935
  null,
12934
12936
  40,
12935
- t1,
12937
+ tb,
12936
12938
  ),
12937
- [[oe, p.number]],
12939
+ [[ae, p.number]],
12938
12940
  ),
12939
12941
  ]),
12940
12942
  ]),
@@ -13030,7 +13032,7 @@ function l1(e, t, n, r, s, i) {
13030
13032
  (t[3] = (p) => (e.model.countryCode = p)),
13031
13033
  },
13032
13034
  [
13033
- n1,
13035
+ nb,
13034
13036
  (a(!0),
13035
13037
  d(
13036
13038
  S,
@@ -13046,7 +13048,7 @@ function l1(e, t, n, r, s, i) {
13046
13048
  },
13047
13049
  b(p.title),
13048
13050
  9,
13049
- i1,
13051
+ ib,
13050
13052
  )
13051
13053
  ),
13052
13054
  ),
@@ -13063,7 +13065,7 @@ function l1(e, t, n, r, s, i) {
13063
13065
  ),
13064
13066
  c(u, null, {
13065
13067
  default: h(() => [
13066
- x("div", r1, [
13068
+ x("div", rb, [
13067
13069
  Y(
13068
13070
  x(
13069
13071
  "input",
@@ -13085,9 +13087,9 @@ function l1(e, t, n, r, s, i) {
13085
13087
  },
13086
13088
  null,
13087
13089
  40,
13088
- s1,
13090
+ sb,
13089
13091
  ),
13090
- [[oe, e.model.number]],
13092
+ [[ae, e.model.number]],
13091
13093
  ),
13092
13094
  ]),
13093
13095
  ]),
@@ -13102,11 +13104,11 @@ function l1(e, t, n, r, s, i) {
13102
13104
  )
13103
13105
  );
13104
13106
  }
13105
- const o1 = /* @__PURE__ */ V(Wv, [
13106
- ["render", l1],
13107
+ const ob = /* @__PURE__ */ V(Wv, [
13108
+ ["render", lb],
13107
13109
  ["__scopeId", "data-v-4bea995b"],
13108
13110
  ]);
13109
- function a1(e) {
13111
+ function ab(e) {
13110
13112
  return (
13111
13113
  e === void 0 ||
13112
13114
  typeof e > "u" ||
@@ -13115,7 +13117,7 @@ function a1(e) {
13115
13117
  String(e) === "undefined"
13116
13118
  );
13117
13119
  }
13118
- const u1 = {
13120
+ const ub = {
13119
13121
  props: {
13120
13122
  modelValue: {
13121
13123
  type: String,
@@ -13129,7 +13131,7 @@ const u1 = {
13129
13131
  cleanOutput(e) {
13130
13132
  var t = this;
13131
13133
  return (
13132
- a1(e)
13134
+ ab(e)
13133
13135
  ? t.multiValue
13134
13136
  ? (e = [])
13135
13137
  : (e = void 0)
@@ -13212,29 +13214,29 @@ const u1 = {
13212
13214
  },
13213
13215
  },
13214
13216
  },
13215
- d1 = {
13217
+ db = {
13216
13218
  key: 0,
13217
13219
  class: "ux-field-title",
13218
13220
  },
13219
- c1 = {
13221
+ cb = {
13220
13222
  key: 0,
13221
13223
  class: "ux-required-marker",
13222
13224
  },
13223
- f1 = {
13225
+ fb = {
13224
13226
  key: 1,
13225
13227
  class: "ux-field-description",
13226
13228
  },
13227
- m1 = {
13229
+ mb = {
13228
13230
  key: 2,
13229
13231
  class: "ui-select-button",
13230
13232
  },
13231
- h1 = ["multiple"],
13232
- p1 = {
13233
+ hb = ["multiple"],
13234
+ pb = {
13233
13235
  key: 0,
13234
13236
  value: "",
13235
13237
  },
13236
- y1 = ["value"];
13237
- function g1(e, t, n, r, s, i) {
13238
+ yb = ["value"];
13239
+ function gb(e, t, n, r, s, i) {
13238
13240
  const l = y("ux-button");
13239
13241
  return (
13240
13242
  a(),
@@ -13246,17 +13248,17 @@ function g1(e, t, n, r, s, i) {
13246
13248
  [
13247
13249
  e.showLabel
13248
13250
  ? (a(),
13249
- d("label", d1, [
13251
+ d("label", db, [
13250
13252
  T(b(e.label) + " ", 1),
13251
- e.required ? (a(), d("span", c1, "*")) : g("", !0),
13253
+ e.required ? (a(), d("span", cb, "*")) : g("", !0),
13252
13254
  ]))
13253
13255
  : g("", !0),
13254
13256
  e.showDescription
13255
- ? (a(), d("div", f1, b(e.description), 1))
13257
+ ? (a(), d("div", fb, b(e.description), 1))
13256
13258
  : g("", !0),
13257
13259
  e.singleValue
13258
13260
  ? (a(),
13259
- d("div", m1, [
13261
+ d("div", mb, [
13260
13262
  H(
13261
13263
  e.$slots,
13262
13264
  "default",
@@ -13285,7 +13287,7 @@ function g1(e, t, n, r, s, i) {
13285
13287
  },
13286
13288
  [
13287
13289
  e.singleValue && !e.minimum
13288
- ? (a(), d("option", p1, "None"))
13290
+ ? (a(), d("option", pb, "None"))
13289
13291
  : g("", !0),
13290
13292
  (a(!0),
13291
13293
  d(
@@ -13302,7 +13304,7 @@ function g1(e, t, n, r, s, i) {
13302
13304
  },
13303
13305
  b(o.title),
13304
13306
  9,
13305
- y1,
13307
+ yb,
13306
13308
  )
13307
13309
  ),
13308
13310
  ),
@@ -13310,7 +13312,7 @@ function g1(e, t, n, r, s, i) {
13310
13312
  )),
13311
13313
  ],
13312
13314
  40,
13313
- h1,
13315
+ hb,
13314
13316
  ),
13315
13317
  [[ht, e.model]],
13316
13318
  ),
@@ -13319,11 +13321,11 @@ function g1(e, t, n, r, s, i) {
13319
13321
  )
13320
13322
  );
13321
13323
  }
13322
- const na = /* @__PURE__ */ V(u1, [
13323
- ["render", g1],
13324
+ const na = /* @__PURE__ */ V(ub, [
13325
+ ["render", gb],
13324
13326
  ["__scopeId", "data-v-79d2b7f9"],
13325
13327
  ]);
13326
- function _1(e) {
13328
+ function _b(e) {
13327
13329
  return (
13328
13330
  e === void 0 ||
13329
13331
  typeof e > "u" ||
@@ -13332,7 +13334,7 @@ function _1(e) {
13332
13334
  String(e) === "undefined"
13333
13335
  );
13334
13336
  }
13335
- const v1 = {
13337
+ const vb = {
13336
13338
  props: {
13337
13339
  modelValue: {
13338
13340
  type: String,
@@ -13346,7 +13348,7 @@ const v1 = {
13346
13348
  cleanOutput(e) {
13347
13349
  var t = this;
13348
13350
  return (
13349
- _1(e)
13351
+ _b(e)
13350
13352
  ? t.multiValue
13351
13353
  ? (e = [])
13352
13354
  : (e = void 0)
@@ -13429,29 +13431,29 @@ const v1 = {
13429
13431
  },
13430
13432
  },
13431
13433
  },
13432
- b1 = {
13434
+ bb = {
13433
13435
  key: 0,
13434
13436
  class: "ux-field-title",
13435
13437
  },
13436
- k1 = {
13438
+ kb = {
13437
13439
  key: 0,
13438
13440
  class: "ux-required-marker",
13439
13441
  },
13440
- x1 = {
13442
+ xb = {
13441
13443
  key: 1,
13442
13444
  class: "ux-field-description",
13443
13445
  },
13444
- w1 = {
13446
+ wb = {
13445
13447
  key: 2,
13446
13448
  class: "ui-select-button",
13447
13449
  },
13448
- S1 = ["multiple"],
13449
- T1 = {
13450
+ Sb = ["multiple"],
13451
+ Tb = {
13450
13452
  key: 0,
13451
13453
  value: "",
13452
13454
  },
13453
- O1 = ["value"];
13454
- function V1(e, t, n, r, s, i) {
13455
+ Ob = ["value"];
13456
+ function Vb(e, t, n, r, s, i) {
13455
13457
  const l = y("ux-button");
13456
13458
  return (
13457
13459
  a(),
@@ -13463,17 +13465,17 @@ function V1(e, t, n, r, s, i) {
13463
13465
  [
13464
13466
  e.showLabel
13465
13467
  ? (a(),
13466
- d("label", b1, [
13468
+ d("label", bb, [
13467
13469
  T(b(e.label) + " ", 1),
13468
- e.required ? (a(), d("span", k1, "*")) : g("", !0),
13470
+ e.required ? (a(), d("span", kb, "*")) : g("", !0),
13469
13471
  ]))
13470
13472
  : g("", !0),
13471
13473
  e.showDescription
13472
- ? (a(), d("div", x1, b(e.description), 1))
13474
+ ? (a(), d("div", xb, b(e.description), 1))
13473
13475
  : g("", !0),
13474
13476
  e.singleValue
13475
13477
  ? (a(),
13476
- d("div", w1, [
13478
+ d("div", wb, [
13477
13479
  H(
13478
13480
  e.$slots,
13479
13481
  "default",
@@ -13502,7 +13504,7 @@ function V1(e, t, n, r, s, i) {
13502
13504
  },
13503
13505
  [
13504
13506
  e.singleValue && !e.minimum
13505
- ? (a(), d("option", T1, "None"))
13507
+ ? (a(), d("option", Tb, "None"))
13506
13508
  : g("", !0),
13507
13509
  (a(!0),
13508
13510
  d(
@@ -13519,7 +13521,7 @@ function V1(e, t, n, r, s, i) {
13519
13521
  },
13520
13522
  b(o.title),
13521
13523
  9,
13522
- O1,
13524
+ Ob,
13523
13525
  )
13524
13526
  ),
13525
13527
  ),
@@ -13527,7 +13529,7 @@ function V1(e, t, n, r, s, i) {
13527
13529
  )),
13528
13530
  ],
13529
13531
  40,
13530
- S1,
13532
+ Sb,
13531
13533
  ),
13532
13534
  [[ht, e.model]],
13533
13535
  ),
@@ -13536,11 +13538,11 @@ function V1(e, t, n, r, s, i) {
13536
13538
  )
13537
13539
  );
13538
13540
  }
13539
- const Qr = /* @__PURE__ */ V(v1, [
13540
- ["render", V1],
13541
+ const Qr = /* @__PURE__ */ V(vb, [
13542
+ ["render", Vb],
13541
13543
  ["__scopeId", "data-v-b7cde9e0"],
13542
13544
  ]);
13543
- const C1 = {
13545
+ const Cb = {
13544
13546
  props: {
13545
13547
  manual: {
13546
13548
  type: Boolean,
@@ -13561,6 +13563,22 @@ const C1 = {
13561
13563
  },
13562
13564
  },
13563
13565
  computed: {
13566
+ status() {
13567
+ var e, t;
13568
+ if ((e = this.model.meta) != null && e.deleted) return "deleted";
13569
+ if (((t = this.model.meta) == null ? void 0 : t.status) === "inactive")
13570
+ return "inactive";
13571
+ },
13572
+ classes() {
13573
+ var t, n;
13574
+ const e = [];
13575
+ return (
13576
+ (t = this.model.meta) != null && t.deleted && e.push("deleted"),
13577
+ ((n = this.model.meta) == null ? void 0 : n.status) === "inactive" &&
13578
+ e.push("inactive"),
13579
+ e
13580
+ );
13581
+ },
13564
13582
  hasIcon() {
13565
13583
  switch (this.basicType) {
13566
13584
  case "formrequest":
@@ -13620,9 +13638,9 @@ const C1 = {
13620
13638
  },
13621
13639
  },
13622
13640
  },
13623
- E1 = { class: "item-title" },
13624
- D1 = { class: "item-summary" };
13625
- function F1(e, t, n, r, s, i) {
13641
+ Eb = { class: "item-title" },
13642
+ Db = { class: "item-summary" };
13643
+ function Fb(e, t, n, r, s, i) {
13626
13644
  const l = y("ux-image"),
13627
13645
  o = y("flex-cell"),
13628
13646
  u = y("ux-icon"),
@@ -13632,7 +13650,7 @@ function F1(e, t, n, r, s, i) {
13632
13650
  d(
13633
13651
  "div",
13634
13652
  {
13635
- class: "content-item",
13653
+ class: A(["content-item", i.classes]),
13636
13654
  onClick:
13637
13655
  t[0] ||
13638
13656
  (t[0] = B(
@@ -13721,8 +13739,8 @@ function F1(e, t, n, r, s, i) {
13721
13739
  "default",
13722
13740
  {},
13723
13741
  () => [
13724
- x("div", E1, b(i.title), 1),
13725
- x("div", D1, b(i.summary), 1),
13742
+ x("div", Eb, b(i.title), 1),
13743
+ x("div", Db, b(i.summary), 1),
13726
13744
  ],
13727
13745
  !0,
13728
13746
  ),
@@ -13733,6 +13751,29 @@ function F1(e, t, n, r, s, i) {
13733
13751
  _: 3,
13734
13752
  },
13735
13753
  ),
13754
+ i.status
13755
+ ? (a(),
13756
+ k(
13757
+ o,
13758
+ {
13759
+ key: 2,
13760
+ shrink: "",
13761
+ },
13762
+ {
13763
+ default: h(() => [
13764
+ x(
13765
+ "div",
13766
+ {
13767
+ class: A(["pill", i.status]),
13768
+ },
13769
+ b(i.status),
13770
+ 3,
13771
+ ),
13772
+ ]),
13773
+ _: 1,
13774
+ },
13775
+ ))
13776
+ : g("", !0),
13736
13777
  c(
13737
13778
  o,
13738
13779
  { shrink: "" },
@@ -13746,12 +13787,13 @@ function F1(e, t, n, r, s, i) {
13746
13787
  },
13747
13788
  ),
13748
13789
  ],
13790
+ 2,
13749
13791
  )
13750
13792
  );
13751
13793
  }
13752
- const ia = /* @__PURE__ */ V(C1, [
13753
- ["render", F1],
13754
- ["__scopeId", "data-v-cf0f8f29"],
13794
+ const ia = /* @__PURE__ */ V(Cb, [
13795
+ ["render", Fb],
13796
+ ["__scopeId", "data-v-df4b8b3a"],
13755
13797
  ]);
13756
13798
  /**!
13757
13799
  * Sortable 1.14.0
@@ -13776,7 +13818,7 @@ function ct(e) {
13776
13818
  var n = arguments[t] != null ? arguments[t] : {};
13777
13819
  t % 2
13778
13820
  ? tl(Object(n), !0).forEach(function (r) {
13779
- M1(e, r, n[r]);
13821
+ Mb(e, r, n[r]);
13780
13822
  })
13781
13823
  : Object.getOwnPropertyDescriptors
13782
13824
  ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(n))
@@ -13803,7 +13845,7 @@ function ci(e) {
13803
13845
  ci(e)
13804
13846
  );
13805
13847
  }
13806
- function M1(e, t, n) {
13848
+ function Mb(e, t, n) {
13807
13849
  return (
13808
13850
  t in e
13809
13851
  ? Object.defineProperty(e, t, {
@@ -13831,7 +13873,7 @@ function yt() {
13831
13873
  yt.apply(this, arguments)
13832
13874
  );
13833
13875
  }
13834
- function I1(e, t) {
13876
+ function Ib(e, t) {
13835
13877
  if (e == null) return {};
13836
13878
  var n = {},
13837
13879
  r = Object.keys(e),
@@ -13841,9 +13883,9 @@ function I1(e, t) {
13841
13883
  (s = r[i]), !(t.indexOf(s) >= 0) && (n[s] = e[s]);
13842
13884
  return n;
13843
13885
  }
13844
- function $1(e, t) {
13886
+ function $b(e, t) {
13845
13887
  if (e == null) return {};
13846
- var n = I1(e, t),
13888
+ var n = Ib(e, t),
13847
13889
  r,
13848
13890
  s;
13849
13891
  if (Object.getOwnPropertySymbols) {
@@ -13856,7 +13898,7 @@ function $1(e, t) {
13856
13898
  }
13857
13899
  return n;
13858
13900
  }
13859
- var A1 = "1.14.0";
13901
+ var Ab = "1.14.0";
13860
13902
  function mt(e) {
13861
13903
  if (typeof window < "u" && window.navigator)
13862
13904
  return !!(/* @__PURE__ */ navigator.userAgent.match(e));
@@ -13866,7 +13908,7 @@ var _t = mt(/(?:Trident.*rv[ :]?11\.|msie|iemobile|Windows Phone)/i),
13866
13908
  nl = mt(/firefox/i),
13867
13909
  In = mt(/safari/i) && !mt(/chrome/i) && !mt(/android/i),
13868
13910
  ra = mt(/iP(ad|od|hone)/i),
13869
- L1 = mt(/chrome/i) && mt(/android/i),
13911
+ Lb = mt(/chrome/i) && mt(/android/i),
13870
13912
  sa = {
13871
13913
  capture: !1,
13872
13914
  passive: !1,
@@ -13890,7 +13932,7 @@ function xi(e, t) {
13890
13932
  return !1;
13891
13933
  }
13892
13934
  }
13893
- function N1(e) {
13935
+ function Nb(e) {
13894
13936
  return e.host && e !== document && e.host.nodeType ? e.host : e.parentNode;
13895
13937
  }
13896
13938
  function at(e, t, n, r) {
@@ -13904,7 +13946,7 @@ function at(e, t, n, r) {
13904
13946
  )
13905
13947
  return e;
13906
13948
  if (e === n) break;
13907
- } while ((e = N1(e)));
13949
+ } while ((e = Nb(e)));
13908
13950
  }
13909
13951
  return null;
13910
13952
  }
@@ -14070,7 +14112,7 @@ function sl(e) {
14070
14112
  } while (e !== r && (e = e.parentNode));
14071
14113
  return [t, n];
14072
14114
  }
14073
- function U1(e, t) {
14115
+ function Ub(e, t) {
14074
14116
  for (var n in e)
14075
14117
  if (e.hasOwnProperty(n)) {
14076
14118
  for (var r in t)
@@ -14099,7 +14141,7 @@ function Ct(e, t) {
14099
14141
  while ((n = n.parentNode));
14100
14142
  return dt();
14101
14143
  }
14102
- function P1(e, t) {
14144
+ function Pb(e, t) {
14103
14145
  if (e && t) for (var n in t) t.hasOwnProperty(n) && (e[n] = t[n]);
14104
14146
  return e;
14105
14147
  }
@@ -14124,7 +14166,7 @@ function oa(e, t) {
14124
14166
  }
14125
14167
  };
14126
14168
  }
14127
- function j1() {
14169
+ function jb() {
14128
14170
  clearTimeout($n), ($n = void 0);
14129
14171
  }
14130
14172
  function aa(e, t, n) {
@@ -14140,7 +14182,7 @@ function ua(e) {
14140
14182
  : e.cloneNode(!0);
14141
14183
  }
14142
14184
  var ze = "Sortable" + new Date().getTime();
14143
- function R1() {
14185
+ function Rb() {
14144
14186
  var e = [],
14145
14187
  t;
14146
14188
  return {
@@ -14168,7 +14210,7 @@ function R1() {
14168
14210
  },
14169
14211
  removeAnimationState: function (r) {
14170
14212
  e.splice(
14171
- U1(e, {
14213
+ Ub(e, {
14172
14214
  target: r,
14173
14215
  }),
14174
14216
  1,
@@ -14198,7 +14240,7 @@ function R1() {
14198
14240
  !ir(f, p) && // Make sure animatingRect is on line between toRect & fromRect
14199
14241
  (w.top - p.top) / (w.left - p.left) ===
14200
14242
  (f.top - p.top) / (f.left - p.left) &&
14201
- (u = z1(w, _, v, s.options)),
14243
+ (u = zb(w, _, v, s.options)),
14202
14244
  ir(p, f) ||
14203
14245
  ((m.prevFromRect = f),
14204
14246
  (m.prevToRect = p),
@@ -14236,7 +14278,7 @@ function R1() {
14236
14278
  (r.animatingX = !!f),
14237
14279
  (r.animatingY = !!p),
14238
14280
  z(r, "transform", "translate3d(" + f + "px," + p + "px,0)"),
14239
- (this.forRepaintDummy = B1(r)),
14281
+ (this.forRepaintDummy = Bb(r)),
14240
14282
  z(
14241
14283
  r,
14242
14284
  "transition",
@@ -14258,10 +14300,10 @@ function R1() {
14258
14300
  },
14259
14301
  };
14260
14302
  }
14261
- function B1(e) {
14303
+ function Bb(e) {
14262
14304
  return e.offsetWidth;
14263
14305
  }
14264
- function z1(e, t, n, r) {
14306
+ function zb(e, t, n, r) {
14265
14307
  return (
14266
14308
  (Math.sqrt(Math.pow(t.top - e.top, 2) + Math.pow(t.left - e.left, 2)) /
14267
14309
  Math.sqrt(Math.pow(t.top - n.top, 2) + Math.pow(t.left - n.left, 2))) *
@@ -14354,7 +14396,7 @@ var Xt = [],
14354
14396
  );
14355
14397
  },
14356
14398
  };
14357
- function q1(e) {
14399
+ function qb(e) {
14358
14400
  var t = e.sortable,
14359
14401
  n = e.rootEl,
14360
14402
  r = e.name,
@@ -14394,11 +14436,11 @@ function q1(e) {
14394
14436
  n && n.dispatchEvent(O), U[P] && U[P].call(t, O);
14395
14437
  }
14396
14438
  }
14397
- var H1 = ["evt"],
14439
+ var Hb = ["evt"],
14398
14440
  Pe = function (t, n) {
14399
14441
  var r = arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : {},
14400
14442
  s = r.evt,
14401
- i = $1(r, H1);
14443
+ i = $b(r, Hb);
14402
14444
  Wn.pluginEvent.bind(q)(
14403
14445
  t,
14404
14446
  n,
@@ -14407,7 +14449,7 @@ var H1 = ["evt"],
14407
14449
  dragEl: F,
14408
14450
  parentEl: pe,
14409
14451
  ghostEl: Z,
14410
- rootEl: fe,
14452
+ rootEl: me,
14411
14453
  nextEl: jt,
14412
14454
  lastDownEl: fi,
14413
14455
  cloneEl: ye,
@@ -14441,13 +14483,13 @@ var H1 = ["evt"],
14441
14483
  );
14442
14484
  };
14443
14485
  function Le(e) {
14444
- q1(
14486
+ qb(
14445
14487
  ct(
14446
14488
  {
14447
14489
  putSortable: Oe,
14448
14490
  cloneEl: ye,
14449
14491
  targetEl: F,
14450
- rootEl: fe,
14492
+ rootEl: me,
14451
14493
  oldIndex: nn,
14452
14494
  oldDraggableIndex: An,
14453
14495
  newIndex: Be,
@@ -14460,7 +14502,7 @@ function Le(e) {
14460
14502
  var F,
14461
14503
  pe,
14462
14504
  Z,
14463
- fe,
14505
+ me,
14464
14506
  jt,
14465
14507
  fi,
14466
14508
  ye,
@@ -14493,7 +14535,7 @@ var F,
14493
14535
  ji = typeof document < "u",
14494
14536
  li = ra,
14495
14537
  al = Hn || _t ? "cssFloat" : "float",
14496
- W1 = ji && !L1 && !ra && "draggable" in document.createElement("div"),
14538
+ Wb = ji && !Lb && !ra && "draggable" in document.createElement("div"),
14497
14539
  da = (function () {
14498
14540
  if (ji) {
14499
14541
  if (_t) return !1;
@@ -14543,7 +14585,7 @@ var F,
14543
14585
  ? "vertical"
14544
14586
  : "horizontal";
14545
14587
  },
14546
- G1 = function (t, n, r) {
14588
+ Gb = function (t, n, r) {
14547
14589
  var s = r ? t.left : t.top,
14548
14590
  i = r ? t.right : t.bottom,
14549
14591
  l = r ? t.width : t.height,
@@ -14552,7 +14594,7 @@ var F,
14552
14594
  m = r ? n.width : n.height;
14553
14595
  return s === o || i === u || s + l / 2 === o + m / 2;
14554
14596
  },
14555
- Y1 = function (t, n) {
14597
+ Yb = function (t, n) {
14556
14598
  var r;
14557
14599
  return (
14558
14600
  Si.some(function (s) {
@@ -14622,7 +14664,7 @@ ji &&
14622
14664
  var Lt = function (t) {
14623
14665
  if (F) {
14624
14666
  t = t.touches ? t.touches[0] : t;
14625
- var n = Y1(t.clientX, t.clientY);
14667
+ var n = Yb(t.clientX, t.clientY);
14626
14668
  if (n) {
14627
14669
  var r = {};
14628
14670
  for (var s in t) t.hasOwnProperty(s) && (r[s] = t[s]);
@@ -14633,7 +14675,7 @@ var Lt = function (t) {
14633
14675
  }
14634
14676
  }
14635
14677
  },
14636
- K1 = function (t) {
14678
+ Kb = function (t) {
14637
14679
  F && F.parentNode[ze]._isOutsideThisEl(t.target);
14638
14680
  };
14639
14681
  function q(e, t) {
@@ -14698,7 +14740,7 @@ function q(e, t) {
14698
14740
  s.charAt(0) === "_" &&
14699
14741
  typeof this[s] == "function" &&
14700
14742
  (this[s] = this[s].bind(this));
14701
- (this.nativeDraggable = t.forceFallback ? !1 : W1),
14743
+ (this.nativeDraggable = t.forceFallback ? !1 : Wb),
14702
14744
  this.nativeDraggable && (this.options.touchStartThreshold = 1),
14703
14745
  t.supportPointer
14704
14746
  ? se(e, "pointerdown", this._onTapStart)
@@ -14707,7 +14749,7 @@ function q(e, t) {
14707
14749
  this.nativeDraggable && (se(e, "dragover", this), se(e, "dragenter", this)),
14708
14750
  Si.push(this.el),
14709
14751
  t.store && t.store.get && this.sort(t.store.get(this) || []),
14710
- yt(this, R1());
14752
+ yt(this, Rb());
14711
14753
  }
14712
14754
  q.prototype =
14713
14755
  /** @lends Sortable.prototype */
@@ -14739,7 +14781,7 @@ q.prototype =
14739
14781
  u,
14740
14782
  f = s.filter;
14741
14783
  if (
14742
- (ib(r),
14784
+ (i1(r),
14743
14785
  !F &&
14744
14786
  !(
14745
14787
  (/mousedown|pointerdown/.test(l) && t.button !== 0) ||
@@ -14810,7 +14852,7 @@ q.prototype =
14810
14852
  if (r && !F && r.parentNode === i) {
14811
14853
  var m = we(r);
14812
14854
  if (
14813
- ((fe = i),
14855
+ ((me = i),
14814
14856
  (F = r),
14815
14857
  (pe = F.parentNode),
14816
14858
  (jt = F.nextSibling),
@@ -14914,7 +14956,7 @@ q.prototype =
14914
14956
  : n
14915
14957
  ? se(document, "touchmove", this._onTouchMove)
14916
14958
  : se(document, "mousemove", this._onTouchMove)
14917
- : (se(F, "dragend", this), se(fe, "dragstart", this._onDragStart));
14959
+ : (se(F, "dragend", this), se(me, "dragstart", this._onDragStart));
14918
14960
  try {
14919
14961
  document.selection
14920
14962
  ? hi(function () {
@@ -14924,11 +14966,11 @@ q.prototype =
14924
14966
  } catch {}
14925
14967
  },
14926
14968
  _dragStarted: function (t, n) {
14927
- if (((en = !1), fe && F)) {
14969
+ if (((en = !1), me && F)) {
14928
14970
  Pe("dragStarted", this, {
14929
14971
  evt: n,
14930
14972
  }),
14931
- this.nativeDraggable && se(document, "dragover", K1);
14973
+ this.nativeDraggable && se(document, "dragover", Kb);
14932
14974
  var r = this.options;
14933
14975
  !t && Re(F, r.dragClass, !1),
14934
14976
  Re(F, r.ghostClass, !0),
@@ -15031,7 +15073,7 @@ q.prototype =
15031
15073
  },
15032
15074
  _appendGhost: function () {
15033
15075
  if (!Z) {
15034
- var t = this.options.fallbackOnBody ? document.body : fe,
15076
+ var t = this.options.fallbackOnBody ? document.body : me,
15035
15077
  n = we(F, !0, li, !0, t),
15036
15078
  r = this.options;
15037
15079
  if (li) {
@@ -15102,7 +15144,7 @@ q.prototype =
15102
15144
  (r.cloneId = hi(function () {
15103
15145
  Pe("clone", r),
15104
15146
  !q.eventCanceled &&
15105
- (r.options.removeCloneOnHide || fe.insertBefore(ye, F),
15147
+ (r.options.removeCloneOnHide || me.insertBefore(ye, F),
15106
15148
  r._hideClone(),
15107
15149
  Le({
15108
15150
  sortable: r,
@@ -15160,7 +15202,7 @@ q.prototype =
15160
15202
  target: r,
15161
15203
  completed: K,
15162
15204
  onMove: function (st, Ft) {
15163
- return oi(fe, n, F, s, st, we(st), t, Ft);
15205
+ return oi(me, n, F, s, st, we(st), t, Ft);
15164
15206
  },
15165
15207
  changed: X,
15166
15208
  },
@@ -15230,7 +15272,7 @@ q.prototype =
15230
15272
  m &&
15231
15273
  !o.disabled &&
15232
15274
  (f
15233
- ? p || (l = pe !== fe)
15275
+ ? p || (l = pe !== me)
15234
15276
  : Oe === this ||
15235
15277
  ((this.lastPutMode = ri.checkPull(this, m, F, t)) &&
15236
15278
  u.checkPut(this, m, F, t))))
@@ -15244,44 +15286,44 @@ q.prototype =
15244
15286
  return O;
15245
15287
  if (l)
15246
15288
  return (
15247
- (pe = fe),
15289
+ (pe = me),
15248
15290
  P(),
15249
15291
  this._hideClone(),
15250
15292
  U("revert"),
15251
15293
  q.eventCanceled ||
15252
- (jt ? fe.insertBefore(F, jt) : fe.appendChild(F)),
15294
+ (jt ? me.insertBefore(F, jt) : me.appendChild(F)),
15253
15295
  K(!0)
15254
15296
  );
15255
15297
  var M = es(n, o.draggable);
15256
- if (!M || (Q1(t, v, this) && !M.animated)) {
15298
+ if (!M || (Qb(t, v, this) && !M.animated)) {
15257
15299
  if (M === F) return K(!1);
15258
15300
  if (
15259
15301
  (M && n === t.target && (r = M),
15260
15302
  r && (i = we(r)),
15261
- oi(fe, n, F, s, r, i, t, !!r) !== !1)
15303
+ oi(me, n, F, s, r, i, t, !!r) !== !1)
15262
15304
  )
15263
15305
  return P(), n.appendChild(F), (pe = n), X(), K(!0);
15264
- } else if (M && X1(t, v, this)) {
15306
+ } else if (M && Xb(t, v, this)) {
15265
15307
  var le = dn(n, 0, o, !0);
15266
15308
  if (le === F) return K(!1);
15267
- if (((r = le), (i = we(r)), oi(fe, n, F, s, r, i, t, !1) !== !1))
15309
+ if (((r = le), (i = we(r)), oi(me, n, F, s, r, i, t, !1) !== !1))
15268
15310
  return P(), n.insertBefore(F, le), (pe = n), X(), K(!0);
15269
15311
  } else if (r.parentNode === n) {
15270
15312
  i = we(r);
15271
15313
  var W = 0,
15272
15314
  R,
15273
15315
  J = F.parentNode !== n,
15274
- G = !G1(
15316
+ G = !Gb(
15275
15317
  (F.animated && F.toRect) || s,
15276
15318
  (r.animated && r.toRect) || i,
15277
15319
  v,
15278
15320
  ),
15279
- de = v ? "top" : "left",
15321
+ ce = v ? "top" : "left",
15280
15322
  Se = rl(r, "top", "top") || rl(F, "top", "top"),
15281
15323
  Te = Se ? Se.scrollTop : void 0;
15282
15324
  Qt !== r &&
15283
- ((R = i[de]), (Nn = !1), (si = (!G && o.invertSwap) || J)),
15284
- (W = eb(
15325
+ ((R = i[ce]), (Nn = !1), (si = (!G && o.invertSwap) || J)),
15326
+ (W = e1(
15285
15327
  t,
15286
15328
  r,
15287
15329
  i,
@@ -15304,19 +15346,19 @@ q.prototype =
15304
15346
  var Ue = r.nextElementSibling,
15305
15347
  Fe = !1;
15306
15348
  Fe = W === 1;
15307
- var vt = oi(fe, n, F, s, r, i, t, Fe);
15349
+ var vt = oi(me, n, F, s, r, i, t, Fe);
15308
15350
  if (vt !== !1)
15309
15351
  return (
15310
15352
  (vt === 1 || vt === -1) && (Fe = vt === 1),
15311
15353
  (Dr = !0),
15312
- setTimeout(J1, 30),
15354
+ setTimeout(Jb, 30),
15313
15355
  P(),
15314
15356
  Fe && !Ue
15315
15357
  ? n.appendChild(F)
15316
15358
  : r.parentNode.insertBefore(F, Fe ? Ue : r),
15317
15359
  Se && aa(Se, 0, Te - Se.scrollTop),
15318
15360
  (pe = F.parentNode),
15319
- R !== void 0 && !si && (mi = Math.abs(R - we(r)[de])),
15361
+ R !== void 0 && !si && (mi = Math.abs(R - we(r)[ce])),
15320
15362
  X(),
15321
15363
  K(!0)
15322
15364
  );
@@ -15377,7 +15419,7 @@ q.prototype =
15377
15419
  (t.cancelable && t.preventDefault(),
15378
15420
  !r.dropBubble && t.stopPropagation()),
15379
15421
  Z && Z.parentNode && Z.parentNode.removeChild(Z),
15380
- (fe === pe || (Oe && Oe.lastPutMode !== "clone")) &&
15422
+ (me === pe || (Oe && Oe.lastPutMode !== "clone")) &&
15381
15423
  ye &&
15382
15424
  ye.parentNode &&
15383
15425
  ye.parentNode.removeChild(ye),
@@ -15397,13 +15439,13 @@ q.prototype =
15397
15439
  newDraggableIndex: null,
15398
15440
  originalEvent: t,
15399
15441
  }),
15400
- fe !== pe
15442
+ me !== pe
15401
15443
  ? (Be >= 0 &&
15402
15444
  (Le({
15403
15445
  rootEl: pe,
15404
15446
  name: "add",
15405
15447
  toEl: pe,
15406
- fromEl: fe,
15448
+ fromEl: me,
15407
15449
  originalEvent: t,
15408
15450
  }),
15409
15451
  Le({
@@ -15416,7 +15458,7 @@ q.prototype =
15416
15458
  rootEl: pe,
15417
15459
  name: "sort",
15418
15460
  toEl: pe,
15419
- fromEl: fe,
15461
+ fromEl: me,
15420
15462
  originalEvent: t,
15421
15463
  }),
15422
15464
  Le({
@@ -15453,7 +15495,7 @@ q.prototype =
15453
15495
  },
15454
15496
  _nulling: function () {
15455
15497
  Pe("nulling", this),
15456
- (fe =
15498
+ (me =
15457
15499
  F =
15458
15500
  pe =
15459
15501
  Z =
@@ -15490,7 +15532,7 @@ q.prototype =
15490
15532
  break;
15491
15533
  case "dragenter":
15492
15534
  case "dragover":
15493
- F && (this._onDragOver(t), Z1(t));
15535
+ F && (this._onDragOver(t), Zb(t));
15494
15536
  break;
15495
15537
  case "selectstart":
15496
15538
  t.preventDefault();
@@ -15514,7 +15556,7 @@ q.prototype =
15514
15556
  )
15515
15557
  (n = r[s]),
15516
15558
  at(n, l.draggable, this.el, !1) &&
15517
- t.push(n.getAttribute(l.dataIdAttr) || nb(n));
15559
+ t.push(n.getAttribute(l.dataIdAttr) || n1(n));
15518
15560
  return t;
15519
15561
  },
15520
15562
  /**
@@ -15602,18 +15644,18 @@ q.prototype =
15602
15644
  }
15603
15645
  if (Vt) {
15604
15646
  if ((Pe("showClone", this), q.eventCanceled)) return;
15605
- F.parentNode == fe && !this.options.group.revertClone
15606
- ? fe.insertBefore(ye, F)
15647
+ F.parentNode == me && !this.options.group.revertClone
15648
+ ? me.insertBefore(ye, F)
15607
15649
  : jt
15608
- ? fe.insertBefore(ye, jt)
15609
- : fe.appendChild(ye),
15650
+ ? me.insertBefore(ye, jt)
15651
+ : me.appendChild(ye),
15610
15652
  this.options.group.revertClone && this.animate(F, ye),
15611
15653
  z(ye, "display", ""),
15612
15654
  (Vt = !1);
15613
15655
  }
15614
15656
  },
15615
15657
  };
15616
- function Z1(e) {
15658
+ function Zb(e) {
15617
15659
  e.dataTransfer && (e.dataTransfer.dropEffect = "move"),
15618
15660
  e.cancelable && e.preventDefault();
15619
15661
  }
@@ -15645,17 +15687,17 @@ function oi(e, t, n, r, s, i, l, o) {
15645
15687
  function ar(e) {
15646
15688
  e.draggable = !1;
15647
15689
  }
15648
- function J1() {
15690
+ function Jb() {
15649
15691
  Dr = !1;
15650
15692
  }
15651
- function X1(e, t, n) {
15693
+ function Xb(e, t, n) {
15652
15694
  var r = we(dn(n.el, 0, n.options, !0)),
15653
15695
  s = 10;
15654
15696
  return t
15655
15697
  ? e.clientX < r.left - s || (e.clientY < r.top && e.clientX < r.right)
15656
15698
  : e.clientY < r.top - s || (e.clientY < r.bottom && e.clientX < r.left);
15657
15699
  }
15658
- function Q1(e, t, n) {
15700
+ function Qb(e, t, n) {
15659
15701
  var r = we(es(n.el, n.options.draggable)),
15660
15702
  s = 10;
15661
15703
  return t
@@ -15664,7 +15706,7 @@ function Q1(e, t, n) {
15664
15706
  : (e.clientX > r.right && e.clientY > r.top) ||
15665
15707
  (e.clientX <= r.right && e.clientY > r.bottom + s);
15666
15708
  }
15667
- function eb(e, t, n, r, s, i, l, o) {
15709
+ function e1(e, t, n, r, s, i, l, o) {
15668
15710
  var u = r ? e.clientY : e.clientX,
15669
15711
  m = r ? n.height : n.width,
15670
15712
  f = r ? n.top : n.left,
@@ -15681,7 +15723,7 @@ function eb(e, t, n, r, s, i, l, o) {
15681
15723
  _ = !0;
15682
15724
  else if (Ln === 1 ? u < f + mi : u > p - mi) return -Ln;
15683
15725
  } else if (u > f + (m * (1 - s)) / 2 && u < p - (m * (1 - s)) / 2)
15684
- return tb(t);
15726
+ return t1(t);
15685
15727
  }
15686
15728
  return (
15687
15729
  (_ = _ || l),
@@ -15692,10 +15734,10 @@ function eb(e, t, n, r, s, i, l, o) {
15692
15734
  : 0
15693
15735
  );
15694
15736
  }
15695
- function tb(e) {
15737
+ function t1(e) {
15696
15738
  return Ge(F) < Ge(e) ? 1 : -1;
15697
15739
  }
15698
- function nb(e) {
15740
+ function n1(e) {
15699
15741
  for (
15700
15742
  var t = e.tagName + e.className + e.src + e.href + e.textContent,
15701
15743
  n = t.length,
@@ -15706,7 +15748,7 @@ function nb(e) {
15706
15748
  r += t.charCodeAt(n);
15707
15749
  return r.toString(36);
15708
15750
  }
15709
- function ib(e) {
15751
+ function i1(e) {
15710
15752
  Ti.length = 0;
15711
15753
  for (var t = e.getElementsByTagName("input"), n = t.length; n--; ) {
15712
15754
  var r = t[n];
@@ -15731,7 +15773,7 @@ q.utils = {
15731
15773
  is: function (t, n) {
15732
15774
  return !!at(t, n, t, !1);
15733
15775
  },
15734
- extend: P1,
15776
+ extend: Pb,
15735
15777
  throttle: oa,
15736
15778
  closest: at,
15737
15779
  toggleClass: Re,
@@ -15760,7 +15802,7 @@ q.mount = function () {
15760
15802
  q.create = function (e, t) {
15761
15803
  return new q(e, t);
15762
15804
  };
15763
- q.version = A1;
15805
+ q.version = Ab;
15764
15806
  var be = [],
15765
15807
  Dn,
15766
15808
  Mr,
@@ -15769,7 +15811,7 @@ var be = [],
15769
15811
  dr,
15770
15812
  Oi,
15771
15813
  Fn;
15772
- function rb() {
15814
+ function r1() {
15773
15815
  function e() {
15774
15816
  this.defaults = {
15775
15817
  scroll: !0,
@@ -15807,7 +15849,7 @@ function rb() {
15807
15849
  ne(document, "mousemove", this._handleFallbackAutoScroll)),
15808
15850
  ul(),
15809
15851
  pi(),
15810
- j1();
15852
+ jb();
15811
15853
  },
15812
15854
  nulling: function () {
15813
15855
  (Oi = Mr = Dn = Ir = Fn = ur = dr = null), (be.length = 0);
@@ -15890,7 +15932,7 @@ var cr = oa(function (e, t, n, r) {
15890
15932
  R = v.scrollWidth,
15891
15933
  J = v.scrollHeight,
15892
15934
  G = z(v),
15893
- de = v.scrollLeft,
15935
+ ce = v.scrollLeft,
15894
15936
  Se = v.scrollTop;
15895
15937
  v === u
15896
15938
  ? ((le =
@@ -15909,8 +15951,8 @@ var cr = oa(function (e, t, n, r) {
15909
15951
  M < J && (G.overflowY === "auto" || G.overflowY === "scroll")));
15910
15952
  var Te =
15911
15953
  le &&
15912
- (Math.abs(K - s) <= l && de + X < R) -
15913
- (Math.abs(P - s) <= l && !!de),
15954
+ (Math.abs(K - s) <= l && ce + X < R) -
15955
+ (Math.abs(P - s) <= l && !!ce),
15914
15956
  Ee =
15915
15957
  W &&
15916
15958
  (Math.abs(U - i) <= l && Se + M < J) -
@@ -16008,7 +16050,7 @@ ns.prototype = {
16008
16050
  yt(ns, {
16009
16051
  pluginName: "removeOnSpill",
16010
16052
  });
16011
- q.mount(new rb());
16053
+ q.mount(new r1());
16012
16054
  q.mount(ns, ts);
16013
16055
  function fr(e) {
16014
16056
  e.parentElement !== null && e.parentElement.removeChild(e);
@@ -16017,31 +16059,31 @@ function dl(e, t, n) {
16017
16059
  const r = n === 0 ? e.children[0] : e.children[n - 1].nextSibling;
16018
16060
  e.insertBefore(t, r);
16019
16061
  }
16020
- function sb() {
16062
+ function s1() {
16021
16063
  return typeof window < "u" ? window.console : global.console;
16022
16064
  }
16023
- const lb = sb();
16024
- function ob(e) {
16065
+ const l1 = s1();
16066
+ function o1(e) {
16025
16067
  const t = /* @__PURE__ */ Object.create(null);
16026
16068
  return function (r) {
16027
16069
  return t[r] || (t[r] = e(r));
16028
16070
  };
16029
16071
  }
16030
- const ab = /-(\w)/g,
16031
- ub = ob((e) => e.replace(ab, (t, n) => n.toUpperCase())),
16072
+ const a1 = /-(\w)/g,
16073
+ u1 = o1((e) => e.replace(a1, (t, n) => n.toUpperCase())),
16032
16074
  ya = ["Start", "Add", "Remove", "Update", "End"],
16033
16075
  ga = ["Choose", "Unchoose", "Sort", "Filter", "Clone"],
16034
16076
  _a = ["Move"],
16035
- db = [_a, ya, ga].flatMap((e) => e).map((e) => `on${e}`),
16077
+ d1 = [_a, ya, ga].flatMap((e) => e).map((e) => `on${e}`),
16036
16078
  $r = {
16037
16079
  manage: _a,
16038
16080
  manageAndEmit: ya,
16039
16081
  emit: ga,
16040
16082
  };
16041
- function cb(e) {
16042
- return db.indexOf(e) !== -1;
16083
+ function c1(e) {
16084
+ return d1.indexOf(e) !== -1;
16043
16085
  }
16044
- const fb = [
16086
+ const f1 = [
16045
16087
  "a",
16046
16088
  "abbr",
16047
16089
  "address",
@@ -16160,10 +16202,10 @@ const fb = [
16160
16202
  "video",
16161
16203
  "wbr",
16162
16204
  ];
16163
- function mb(e) {
16164
- return fb.includes(e);
16205
+ function m1(e) {
16206
+ return f1.includes(e);
16165
16207
  }
16166
- function hb(e) {
16208
+ function h1(e) {
16167
16209
  return ["transition-group", "TransitionGroup"].includes(e);
16168
16210
  }
16169
16211
  function va(e) {
@@ -16177,13 +16219,13 @@ function va(e) {
16177
16219
  function ba(e) {
16178
16220
  return e.reduce((t, [n, r]) => ((t[n] = r), t), {});
16179
16221
  }
16180
- function pb({ $attrs: e, componentData: t = {} }) {
16222
+ function p1({ $attrs: e, componentData: t = {} }) {
16181
16223
  return {
16182
16224
  ...ba(Object.entries(e).filter(([r, s]) => va(r))),
16183
16225
  ...t,
16184
16226
  };
16185
16227
  }
16186
- function yb({ $attrs: e, callBackBuilder: t }) {
16228
+ function y1({ $attrs: e, callBackBuilder: t }) {
16187
16229
  const n = ba(ka(e));
16188
16230
  Object.entries(t).forEach(([s, i]) => {
16189
16231
  $r[s].forEach((l) => {
@@ -16199,13 +16241,13 @@ function yb({ $attrs: e, callBackBuilder: t }) {
16199
16241
  function ka(e) {
16200
16242
  return Object.entries(e)
16201
16243
  .filter(([t, n]) => !va(t))
16202
- .map(([t, n]) => [ub(t), n])
16203
- .filter(([t, n]) => !cb(t));
16244
+ .map(([t, n]) => [u1(t), n])
16245
+ .filter(([t, n]) => !c1(t));
16204
16246
  }
16205
16247
  const cl = ({ el: e }) => e,
16206
- gb = (e, t) => (e.__draggable_context = t),
16248
+ g1 = (e, t) => (e.__draggable_context = t),
16207
16249
  fl = (e) => e.__draggable_context;
16208
- class _b {
16250
+ class _1 {
16209
16251
  constructor({
16210
16252
  nodes: { header: t, default: n, footer: r },
16211
16253
  root: s,
@@ -16228,7 +16270,7 @@ class _b {
16228
16270
  updated() {
16229
16271
  const { defaultNodes: t, realList: n } = this;
16230
16272
  t.forEach((r, s) => {
16231
- gb(cl(r), {
16273
+ g1(cl(r), {
16232
16274
  element: n[s],
16233
16275
  index: s,
16234
16276
  });
@@ -16251,13 +16293,13 @@ class _b {
16251
16293
  return t < m ? 0 : s;
16252
16294
  }
16253
16295
  }
16254
- function vb(e, t) {
16296
+ function v1(e, t) {
16255
16297
  const n = e[t];
16256
16298
  return n ? n() : [];
16257
16299
  }
16258
- function bb({ $slots: e, realList: t, getKey: n }) {
16300
+ function b1({ $slots: e, realList: t, getKey: n }) {
16259
16301
  const r = t || [],
16260
- [s, i] = ["header", "footer"].map((u) => vb(e, u)),
16302
+ [s, i] = ["header", "footer"].map((u) => v1(e, u)),
16261
16303
  { item: l } = e;
16262
16304
  if (!l) throw new Error("draggable element must have an item slot");
16263
16305
  const o = r.flatMap((u, m) =>
@@ -16277,19 +16319,19 @@ function bb({ $slots: e, realList: t, getKey: n }) {
16277
16319
  default: o,
16278
16320
  };
16279
16321
  }
16280
- function kb(e) {
16281
- const t = hb(e),
16282
- n = !mb(e) && !t;
16322
+ function k1(e) {
16323
+ const t = h1(e),
16324
+ n = !m1(e) && !t;
16283
16325
  return {
16284
16326
  transition: t,
16285
16327
  externalComponent: n,
16286
16328
  tag: n ? y(e) : t ? cu : e,
16287
16329
  };
16288
16330
  }
16289
- function xb({ $slots: e, tag: t, realList: n, getKey: r }) {
16290
- const s = bb({ $slots: e, realList: n, getKey: r }),
16291
- i = kb(t);
16292
- return new _b({ nodes: s, root: i, realList: n });
16331
+ function x1({ $slots: e, tag: t, realList: n, getKey: r }) {
16332
+ const s = b1({ $slots: e, realList: n, getKey: r }),
16333
+ i = k1(t);
16334
+ return new _1({ nodes: s, root: i, realList: n });
16293
16335
  }
16294
16336
  function xa(e, t) {
16295
16337
  Pl(() => this.$emit(e.toLowerCase(), t));
@@ -16299,14 +16341,14 @@ function wa(e) {
16299
16341
  if (this.realList !== null) return this[`onDrag${e}`](t, n);
16300
16342
  };
16301
16343
  }
16302
- function wb(e) {
16344
+ function w1(e) {
16303
16345
  const t = wa.call(this, e);
16304
16346
  return (n, r) => {
16305
16347
  t.call(this, n, r), xa.call(this, e, n);
16306
16348
  };
16307
16349
  }
16308
16350
  let mr = null;
16309
- const Sb = {
16351
+ const S1 = {
16310
16352
  list: {
16311
16353
  type: Array,
16312
16354
  required: !1,
@@ -16339,7 +16381,7 @@ const Sb = {
16339
16381
  default: null,
16340
16382
  },
16341
16383
  },
16342
- Tb = [
16384
+ T1 = [
16343
16385
  "update:modelValue",
16344
16386
  "change",
16345
16387
  ...[...$r.manageAndEmit, ...$r.emit].map((e) => e.toLowerCase()),
@@ -16347,8 +16389,8 @@ const Sb = {
16347
16389
  Sa = Lr({
16348
16390
  name: "draggable",
16349
16391
  inheritAttrs: !1,
16350
- props: Sb,
16351
- emits: Tb,
16392
+ props: S1,
16393
+ emits: T1,
16352
16394
  data() {
16353
16395
  return {
16354
16396
  error: !1,
@@ -16365,14 +16407,14 @@ const Sb = {
16365
16407
  realList: s,
16366
16408
  getKey: i,
16367
16409
  } = this,
16368
- l = xb({
16410
+ l = x1({
16369
16411
  $slots: e,
16370
16412
  tag: n,
16371
16413
  realList: s,
16372
16414
  getKey: i,
16373
16415
  });
16374
16416
  this.componentStructure = l;
16375
- const o = pb({ $attrs: t, componentData: r });
16417
+ const o = p1({ $attrs: t, componentData: r });
16376
16418
  return l.render(kr, o);
16377
16419
  } catch (e) {
16378
16420
  return (
@@ -16383,7 +16425,7 @@ const Sb = {
16383
16425
  created() {
16384
16426
  this.list !== null &&
16385
16427
  this.modelValue !== null &&
16386
- lb.error(
16428
+ l1.error(
16387
16429
  "modelValue and list props are mutually exclusive! Please set one or another.",
16388
16430
  );
16389
16431
  },
@@ -16391,10 +16433,10 @@ const Sb = {
16391
16433
  if (this.error) return;
16392
16434
  const { $attrs: e, $el: t, componentStructure: n } = this;
16393
16435
  n.updated();
16394
- const r = yb({
16436
+ const r = y1({
16395
16437
  $attrs: e,
16396
16438
  callBackBuilder: {
16397
- manageAndEmit: (i) => wb.call(this, i),
16439
+ manageAndEmit: (i) => w1.call(this, i),
16398
16440
  emit: (i) => xa.bind(this, i),
16399
16441
  manage: (i) => wa.call(this, i),
16400
16442
  },
@@ -16536,7 +16578,7 @@ function ml(e, t) {
16536
16578
  r = t.title.toUpperCase();
16537
16579
  return n < r ? -1 : n > r ? 1 : 0;
16538
16580
  }
16539
- const Ob = {
16581
+ const O1 = {
16540
16582
  components: {
16541
16583
  Item: ia,
16542
16584
  draggable: Sa,
@@ -16740,23 +16782,23 @@ const Ob = {
16740
16782
  },
16741
16783
  },
16742
16784
  },
16743
- Vb = {
16785
+ V1 = {
16744
16786
  key: 0,
16745
16787
  class: "ux-field-title",
16746
16788
  },
16747
- Cb = {
16789
+ C1 = {
16748
16790
  key: 0,
16749
16791
  class: "ux-required-marker",
16750
16792
  },
16751
- Eb = {
16793
+ E1 = {
16752
16794
  key: 1,
16753
16795
  class: "ux-field-description",
16754
16796
  },
16755
- Db = {
16797
+ D1 = {
16756
16798
  key: 1,
16757
16799
  class: "items",
16758
16800
  };
16759
- function Fb(e, t, n, r, s, i) {
16801
+ function F1(e, t, n, r, s, i) {
16760
16802
  const l = y("ux-icon"),
16761
16803
  o = y("ux-button"),
16762
16804
  u = y("item"),
@@ -16772,13 +16814,13 @@ function Fb(e, t, n, r, s, i) {
16772
16814
  [
16773
16815
  e.showLabel
16774
16816
  ? (a(),
16775
- d("label", Vb, [
16817
+ d("label", V1, [
16776
16818
  T(b(e.label) + " ", 1),
16777
- e.required ? (a(), d("span", Cb, "*")) : g("", !0),
16819
+ e.required ? (a(), d("span", C1, "*")) : g("", !0),
16778
16820
  ]))
16779
16821
  : g("", !0),
16780
16822
  e.showDescription
16781
- ? (a(), d("div", Eb, b(e.description), 1))
16823
+ ? (a(), d("div", E1, b(e.description), 1))
16782
16824
  : g("", !0),
16783
16825
  i.showList
16784
16826
  ? (a(),
@@ -16897,7 +16939,7 @@ function Fb(e, t, n, r, s, i) {
16897
16939
  ))
16898
16940
  : e.model
16899
16941
  ? (a(),
16900
- d("div", Db, [
16942
+ d("div", D1, [
16901
16943
  c(
16902
16944
  u,
16903
16945
  { item: e.model },
@@ -17070,11 +17112,11 @@ function Fb(e, t, n, r, s, i) {
17070
17112
  )
17071
17113
  );
17072
17114
  }
17073
- const Ta = /* @__PURE__ */ V(Ob, [
17074
- ["render", Fb],
17115
+ const Ta = /* @__PURE__ */ V(O1, [
17116
+ ["render", F1],
17075
17117
  ["__scopeId", "data-v-38242855"],
17076
17118
  ]);
17077
- function Mb(e) {
17119
+ function M1(e) {
17078
17120
  return (
17079
17121
  e === void 0 ||
17080
17122
  typeof e > "u" ||
@@ -17083,7 +17125,7 @@ function Mb(e) {
17083
17125
  String(e) === "undefined"
17084
17126
  );
17085
17127
  }
17086
- const Ib = {
17128
+ const I1 = {
17087
17129
  props: {
17088
17130
  title: {
17089
17131
  type: String,
@@ -17131,7 +17173,7 @@ const Ib = {
17131
17173
  cleanOutput(e) {
17132
17174
  var t = this;
17133
17175
  return (
17134
- Mb(e)
17176
+ M1(e)
17135
17177
  ? t.multiValue
17136
17178
  ? (e = [])
17137
17179
  : (e = void 0)
@@ -17231,30 +17273,30 @@ const Ib = {
17231
17273
  },
17232
17274
  },
17233
17275
  },
17234
- $b = {
17276
+ $1 = {
17235
17277
  key: 0,
17236
17278
  class: "ux-field-title",
17237
17279
  },
17238
- Ab = {
17280
+ A1 = {
17239
17281
  key: 0,
17240
17282
  class: "ux-required-marker",
17241
17283
  },
17242
- Lb = {
17284
+ L1 = {
17243
17285
  key: 1,
17244
17286
  class: "ux-field-description",
17245
17287
  },
17246
- Nb = {
17288
+ N1 = {
17247
17289
  key: 2,
17248
17290
  class: "ui-select-button",
17249
17291
  },
17250
- Ub = ["multiple"],
17251
- Pb = {
17292
+ U1 = ["multiple"],
17293
+ P1 = {
17252
17294
  key: 0,
17253
17295
  value: "",
17254
17296
  },
17255
- jb = ["label"],
17256
- Rb = ["value"];
17257
- function Bb(e, t, n, r, s, i) {
17297
+ j1 = ["label"],
17298
+ R1 = ["value"];
17299
+ function B1(e, t, n, r, s, i) {
17258
17300
  const l = y("ux-button");
17259
17301
  return (
17260
17302
  a(),
@@ -17266,17 +17308,17 @@ function Bb(e, t, n, r, s, i) {
17266
17308
  [
17267
17309
  e.showLabel
17268
17310
  ? (a(),
17269
- d("label", $b, [
17311
+ d("label", $1, [
17270
17312
  T(b(e.label) + " ", 1),
17271
- e.required ? (a(), d("span", Ab, "*")) : g("", !0),
17313
+ e.required ? (a(), d("span", A1, "*")) : g("", !0),
17272
17314
  ]))
17273
17315
  : g("", !0),
17274
17316
  e.showDescription
17275
- ? (a(), d("div", Lb, b(e.description), 1))
17317
+ ? (a(), d("div", L1, b(e.description), 1))
17276
17318
  : g("", !0),
17277
17319
  e.singleValue
17278
17320
  ? (a(),
17279
- d("div", Nb, [
17321
+ d("div", N1, [
17280
17322
  H(
17281
17323
  e.$slots,
17282
17324
  "default",
@@ -17305,7 +17347,7 @@ function Bb(e, t, n, r, s, i) {
17305
17347
  },
17306
17348
  [
17307
17349
  e.singleValue && !e.minimum
17308
- ? (a(), d("option", Pb, "None"))
17350
+ ? (a(), d("option", P1, "None"))
17309
17351
  : g("", !0),
17310
17352
  (a(!0),
17311
17353
  d(
@@ -17337,7 +17379,7 @@ function Bb(e, t, n, r, s, i) {
17337
17379
  },
17338
17380
  b(u.title),
17339
17381
  9,
17340
- Rb,
17382
+ R1,
17341
17383
  )
17342
17384
  ),
17343
17385
  ),
@@ -17345,7 +17387,7 @@ function Bb(e, t, n, r, s, i) {
17345
17387
  )),
17346
17388
  ],
17347
17389
  8,
17348
- jb,
17390
+ j1,
17349
17391
  )
17350
17392
  ),
17351
17393
  ),
@@ -17353,7 +17395,7 @@ function Bb(e, t, n, r, s, i) {
17353
17395
  )),
17354
17396
  ],
17355
17397
  40,
17356
- Ub,
17398
+ U1,
17357
17399
  ),
17358
17400
  [[ht, e.model]],
17359
17401
  ),
@@ -17362,11 +17404,11 @@ function Bb(e, t, n, r, s, i) {
17362
17404
  )
17363
17405
  );
17364
17406
  }
17365
- const zb = /* @__PURE__ */ V(Ib, [
17366
- ["render", Bb],
17407
+ const z1 = /* @__PURE__ */ V(I1, [
17408
+ ["render", B1],
17367
17409
  ["__scopeId", "data-v-17c04ff2"],
17368
17410
  ]);
17369
- const qb = {
17411
+ const q1 = {
17370
17412
  components: {
17371
17413
  UxCircle: Jr,
17372
17414
  },
@@ -17423,12 +17465,12 @@ const qb = {
17423
17465
  },
17424
17466
  },
17425
17467
  },
17426
- Hb = { class: "outer" },
17427
- Wb = {
17468
+ H1 = { class: "outer" },
17469
+ W1 = {
17428
17470
  key: 0,
17429
17471
  class: "children",
17430
17472
  };
17431
- function Gb(e, t, n, r, s, i) {
17473
+ function G1(e, t, n, r, s, i) {
17432
17474
  const l = y("ux-icon"),
17433
17475
  o = y("flex-cell"),
17434
17476
  u = y("ux-circle"),
@@ -17437,7 +17479,7 @@ function Gb(e, t, n, r, s, i) {
17437
17479
  p = y("scope-item", !0);
17438
17480
  return (
17439
17481
  a(),
17440
- d("div", Hb, [
17482
+ d("div", H1, [
17441
17483
  x(
17442
17484
  "div",
17443
17485
  {
@@ -17562,7 +17604,7 @@ function Gb(e, t, n, r, s, i) {
17562
17604
  ),
17563
17605
  i.expanded
17564
17606
  ? (a(),
17565
- d("div", Wb, [
17607
+ d("div", W1, [
17566
17608
  (a(!0),
17567
17609
  d(
17568
17610
  S,
@@ -17590,14 +17632,14 @@ function Gb(e, t, n, r, s, i) {
17590
17632
  ])
17591
17633
  );
17592
17634
  }
17593
- const Yb = /* @__PURE__ */ V(qb, [
17594
- ["render", Gb],
17635
+ const Y1 = /* @__PURE__ */ V(q1, [
17636
+ ["render", G1],
17595
17637
  ["__scopeId", "data-v-be6d1032"],
17596
17638
  ]);
17597
17639
  let hr;
17598
- const Kb = {
17640
+ const K1 = {
17599
17641
  components: {
17600
- ScopeItem: Yb,
17642
+ ScopeItem: Y1,
17601
17643
  },
17602
17644
  created() {
17603
17645
  this.loadGlossary();
@@ -17751,7 +17793,7 @@ const Kb = {
17751
17793
  },
17752
17794
  },
17753
17795
  };
17754
- function Zb(e, t, n, r, s, i) {
17796
+ function Z1(e, t, n, r, s, i) {
17755
17797
  const l = y("spinner"),
17756
17798
  o = y("scope-item");
17757
17799
  return (
@@ -17791,11 +17833,11 @@ function Zb(e, t, n, r, s, i) {
17791
17833
  )
17792
17834
  );
17793
17835
  }
17794
- const Jb = /* @__PURE__ */ V(Kb, [
17795
- ["render", Zb],
17836
+ const J1 = /* @__PURE__ */ V(K1, [
17837
+ ["render", Z1],
17796
17838
  ["__scopeId", "data-v-70c07a8e"],
17797
17839
  ]);
17798
- const Xb = {
17840
+ const X1 = {
17799
17841
  components: {
17800
17842
  UxCircle: Jr,
17801
17843
  },
@@ -17862,6 +17904,11 @@ const Xb = {
17862
17904
  },
17863
17905
  },
17864
17906
  computed: {
17907
+ visible() {
17908
+ const e = this.$sdk.utils.ids(this.model) || [],
17909
+ t = this.$sdk.utils.ids(this.availableDefaultScopes) || [];
17910
+ return !(t.length === 1 && (!e.length || e[0] === t[0]));
17911
+ },
17865
17912
  loading() {
17866
17913
  return this.loadingScopeGlossary || this.loadingContentGlossary;
17867
17914
  },
@@ -17915,7 +17962,6 @@ const Xb = {
17915
17962
  var r = n._id || n;
17916
17963
  return e.restrictedLookup[r];
17917
17964
  })),
17918
- console.log("AVAILABLE DEFAULT SCOPES", t),
17919
17965
  !t.length &&
17920
17966
  e.definitionRestrictScopes.length === 1 &&
17921
17967
  (t = e.definitionRestrictScopes),
@@ -17926,9 +17972,7 @@ const Xb = {
17926
17972
  watch: {
17927
17973
  availableDefaultScopes: {
17928
17974
  handler(e) {
17929
- this.model.length ||
17930
- (e.length &&
17931
- (console.log("SET DEFAULT", e), (this.model = [...e])));
17975
+ this.model.length || (e.length && (this.model = [...e]));
17932
17976
  },
17933
17977
  immediate: !0,
17934
17978
  },
@@ -17951,54 +17995,61 @@ const Xb = {
17951
17995
  },
17952
17996
  },
17953
17997
  },
17954
- Qb = { class: "circles" };
17998
+ Q1 = { class: "circles" };
17955
17999
  function ek(e, t, n, r, s, i) {
17956
18000
  const l = y("ux-circle"),
17957
18001
  o = y("ux-button");
17958
18002
  return (
17959
18003
  a(),
17960
- d("div", null, [
17961
- c(
17962
- o,
17963
- {
17964
- size: n.size,
17965
- loading: i.loading,
17966
- onClick: i.openSelection,
17967
- },
17968
- {
17969
- default: h(() => [
17970
- x("div", Qb, [
17971
- (a(!0),
17972
- d(
17973
- S,
17974
- null,
17975
- I(
17976
- s.model,
17977
- (u) => (a(), k(l, { value: u }, null, 8, ["value"])),
17978
- ),
17979
- 256,
17980
- )),
18004
+ d(
18005
+ "div",
18006
+ {
18007
+ class: A({ invisible: !i.visible }),
18008
+ },
18009
+ [
18010
+ c(
18011
+ o,
18012
+ {
18013
+ size: n.size,
18014
+ loading: i.loading,
18015
+ onClick: i.openSelection,
18016
+ },
18017
+ {
18018
+ default: h(() => [
18019
+ x("div", Q1, [
18020
+ (a(!0),
18021
+ d(
18022
+ S,
18023
+ null,
18024
+ I(
18025
+ s.model,
18026
+ (u) => (a(), k(l, { value: u }, null, 8, ["value"])),
18027
+ ),
18028
+ 256,
18029
+ )),
18030
+ ]),
18031
+ x(
18032
+ "span",
18033
+ {
18034
+ class: A({ "empty-text": i.empty }),
18035
+ },
18036
+ b(i.summary),
18037
+ 3,
18038
+ ),
17981
18039
  ]),
17982
- x(
17983
- "span",
17984
- {
17985
- class: A({ "empty-text": i.empty }),
17986
- },
17987
- b(i.summary),
17988
- 3,
17989
- ),
17990
- ]),
17991
- _: 1,
17992
- },
17993
- 8,
17994
- ["size", "loading", "onClick"],
17995
- ),
17996
- ])
18040
+ _: 1,
18041
+ },
18042
+ 8,
18043
+ ["size", "loading", "onClick"],
18044
+ ),
18045
+ ],
18046
+ 2,
18047
+ )
17997
18048
  );
17998
18049
  }
17999
- const tk = /* @__PURE__ */ V(Xb, [
18050
+ const tk = /* @__PURE__ */ V(X1, [
18000
18051
  ["render", ek],
18001
- ["__scopeId", "data-v-0e820a8c"],
18052
+ ["__scopeId", "data-v-13dbe8a6"],
18002
18053
  ]);
18003
18054
  function nk(e) {
18004
18055
  return (
@@ -18356,7 +18407,7 @@ function _k(e, t, n, r, s, i) {
18356
18407
  40,
18357
18408
  hk,
18358
18409
  )),
18359
- [[oe, i.proxy[p], void 0, { lazy: !0 }]],
18410
+ [[ae, i.proxy[p], void 0, { lazy: !0 }]],
18360
18411
  ),
18361
18412
  i.suffix
18362
18413
  ? (a(), d("span", pk, b(i.suffix), 1))
@@ -18470,7 +18521,7 @@ function _k(e, t, n, r, s, i) {
18470
18521
  null,
18471
18522
  32,
18472
18523
  )),
18473
- [[oe, i.proxy, void 0, { lazy: !0 }]],
18524
+ [[ae, i.proxy, void 0, { lazy: !0 }]],
18474
18525
  ),
18475
18526
  i.suffix ? (a(), d("span", gk, b(i.suffix), 1)) : g("", !0),
18476
18527
  ],
@@ -19163,7 +19214,7 @@ function Rk(e, t, n, r, s, i) {
19163
19214
  40,
19164
19215
  jk,
19165
19216
  ),
19166
- [[oe, e.model[p]]],
19217
+ [[ae, e.model[p]]],
19167
19218
  ),
19168
19219
  ]),
19169
19220
  _: 2,
@@ -19242,7 +19293,7 @@ function Rk(e, t, n, r, s, i) {
19242
19293
  null,
19243
19294
  544,
19244
19295
  )),
19245
- [[oe, e.model]],
19296
+ [[ae, e.model]],
19246
19297
  ),
19247
19298
  ],
19248
19299
  64,
@@ -19465,7 +19516,7 @@ function Xk(e, t, n, r, s, i) {
19465
19516
  40,
19466
19517
  Yk,
19467
19518
  )),
19468
- [[oe, i.model[p]]],
19519
+ [[ae, i.model[p]]],
19469
19520
  )
19470
19521
  : Y(
19471
19522
  (a(),
@@ -19500,7 +19551,7 @@ function Xk(e, t, n, r, s, i) {
19500
19551
  40,
19501
19552
  Kk,
19502
19553
  )),
19503
- [[oe, i.dateOnlyModel[p]]],
19554
+ [[ae, i.dateOnlyModel[p]]],
19504
19555
  ),
19505
19556
  ]),
19506
19557
  _: 2,
@@ -19590,7 +19641,7 @@ function Xk(e, t, n, r, s, i) {
19590
19641
  40,
19591
19642
  Zk,
19592
19643
  )),
19593
- [[oe, i.model]],
19644
+ [[ae, i.model]],
19594
19645
  )
19595
19646
  : Y(
19596
19647
  (a(),
@@ -19611,7 +19662,7 @@ function Xk(e, t, n, r, s, i) {
19611
19662
  40,
19612
19663
  Jk,
19613
19664
  )),
19614
- [[oe, i.dateOnlyModel]],
19665
+ [[ae, i.dateOnlyModel]],
19615
19666
  ),
19616
19667
  ],
19617
19668
  64,
@@ -19743,7 +19794,7 @@ function s0(e, t, n, r, s, i) {
19743
19794
  40,
19744
19795
  r0,
19745
19796
  ),
19746
- [[oe, e.model[p]]],
19797
+ [[ae, e.model[p]]],
19747
19798
  ),
19748
19799
  ]),
19749
19800
  _: 2,
@@ -19821,7 +19872,7 @@ function s0(e, t, n, r, s, i) {
19821
19872
  null,
19822
19873
  544,
19823
19874
  )),
19824
- [[oe, e.model]],
19875
+ [[ae, e.model]],
19825
19876
  ),
19826
19877
  ],
19827
19878
  64,
@@ -23938,7 +23989,7 @@ function Ow(e, t, n, r, s, i) {
23938
23989
  8,
23939
23990
  Sw,
23940
23991
  ),
23941
- [[oe, s.model]],
23992
+ [[ae, s.model]],
23942
23993
  ),
23943
23994
  x("output", Tw, null, 512),
23944
23995
  ])
@@ -24345,7 +24396,7 @@ function qw(e, t, n, r, s, i) {
24345
24396
  40,
24346
24397
  Bw,
24347
24398
  ),
24348
- [[oe, e.model[p]]],
24399
+ [[ae, e.model[p]]],
24349
24400
  ),
24350
24401
  ]),
24351
24402
  _: 2,
@@ -24377,7 +24428,7 @@ function qw(e, t, n, r, s, i) {
24377
24428
  40,
24378
24429
  zw,
24379
24430
  ),
24380
- [[oe, e.model[p]]],
24431
+ [[ae, e.model[p]]],
24381
24432
  ),
24382
24433
  ]),
24383
24434
  _: 2,
@@ -24472,7 +24523,7 @@ function qw(e, t, n, r, s, i) {
24472
24523
  null,
24473
24524
  544,
24474
24525
  ),
24475
- [[oe, e.model]],
24526
+ [[ae, e.model]],
24476
24527
  ),
24477
24528
  ]),
24478
24529
  _: 1,
@@ -24495,7 +24546,7 @@ function qw(e, t, n, r, s, i) {
24495
24546
  null,
24496
24547
  544,
24497
24548
  ),
24498
- [[oe, e.model]],
24549
+ [[ae, e.model]],
24499
24550
  ),
24500
24551
  ]),
24501
24552
  _: 1,
@@ -27017,7 +27068,7 @@ function m2(e, t, n, r, s, i) {
27017
27068
  )),
27018
27069
  [
27019
27070
  [
27020
- oe,
27071
+ ae,
27021
27072
  e.model[p].title,
27022
27073
  void 0,
27023
27074
  { lazy: !0 },
@@ -27061,7 +27112,7 @@ function m2(e, t, n, r, s, i) {
27061
27112
  40,
27062
27113
  r2,
27063
27114
  )),
27064
- [[oe, e.model[p].title]],
27115
+ [[ae, e.model[p].title]],
27065
27116
  ),
27066
27117
  ]),
27067
27118
  ]),
@@ -27107,7 +27158,7 @@ function m2(e, t, n, r, s, i) {
27107
27158
  )),
27108
27159
  [
27109
27160
  [
27110
- oe,
27161
+ ae,
27111
27162
  e.model[p].value,
27112
27163
  void 0,
27113
27164
  { lazy: !0 },
@@ -27145,7 +27196,7 @@ function m2(e, t, n, r, s, i) {
27145
27196
  40,
27146
27197
  a2,
27147
27198
  )),
27148
- [[oe, e.model[p].value]],
27199
+ [[ae, e.model[p].value]],
27149
27200
  ),
27150
27201
  ]),
27151
27202
  ]),
@@ -27264,7 +27315,7 @@ function m2(e, t, n, r, s, i) {
27264
27315
  null,
27265
27316
  544,
27266
27317
  )),
27267
- [[oe, e.model.title, void 0, { lazy: !0 }]],
27318
+ [[ae, e.model.title, void 0, { lazy: !0 }]],
27268
27319
  )
27269
27320
  : g("", !0),
27270
27321
  i.lazy
@@ -27304,7 +27355,7 @@ function m2(e, t, n, r, s, i) {
27304
27355
  null,
27305
27356
  544,
27306
27357
  )),
27307
- [[oe, e.model.title]],
27358
+ [[ae, e.model.title]],
27308
27359
  ),
27309
27360
  ]),
27310
27361
  ]),
@@ -27342,7 +27393,7 @@ function m2(e, t, n, r, s, i) {
27342
27393
  null,
27343
27394
  544,
27344
27395
  )),
27345
- [[oe, e.model.value, void 0, { lazy: !0 }]],
27396
+ [[ae, e.model.value, void 0, { lazy: !0 }]],
27346
27397
  )
27347
27398
  : g("", !0),
27348
27399
  i.lazy
@@ -27374,7 +27425,7 @@ function m2(e, t, n, r, s, i) {
27374
27425
  null,
27375
27426
  544,
27376
27427
  )),
27377
- [[oe, e.model.value]],
27428
+ [[ae, e.model.value]],
27378
27429
  ),
27379
27430
  ]),
27380
27431
  ]),
@@ -27964,7 +28015,7 @@ function M2(e, t, n, r, s, i) {
27964
28015
  8,
27965
28016
  F2,
27966
28017
  ),
27967
- [[oe, i.model]],
28018
+ [[ae, i.model]],
27968
28019
  ),
27969
28020
  x(
27970
28021
  "div",
@@ -29867,8 +29918,8 @@ var Vi = {},
29867
29918
  var E = new Error(N + " at character " + C);
29868
29919
  throw ((E.index = C), (E.description = N), E);
29869
29920
  },
29870
- de = !0,
29871
- Se = { "-": de, "!": de, "~": de, "+": de },
29921
+ ce = !0,
29922
+ Se = { "-": ce, "!": ce, "~": ce, "+": ce },
29872
29923
  Te = {
29873
29924
  "||": 1,
29874
29925
  "&&": 2,
@@ -29949,25 +30000,25 @@ var Vi = {},
29949
30000
  $e = function (D) {
29950
30001
  return E.call(N, D);
29951
30002
  },
29952
- ce = function (D) {
30003
+ fe = function (D) {
29953
30004
  return Yt.call(N, D);
29954
30005
  },
29955
30006
  vn = N.length,
29956
30007
  lt = function () {
29957
- for (var D = ce(C); D === 32 || D === 9 || D === 10 || D === 13; )
29958
- D = ce(++C);
30008
+ for (var D = fe(C); D === 32 || D === 9 || D === 10 || D === 13; )
30009
+ D = fe(++C);
29959
30010
  },
29960
30011
  Kt = function () {
29961
30012
  var D = eu(),
29962
30013
  j,
29963
30014
  Q;
29964
- if ((lt(), ce(C) === W)) {
30015
+ if ((lt(), fe(C) === W)) {
29965
30016
  if (
29966
30017
  (C++,
29967
30018
  (j = Kt()),
29968
30019
  j || G("Expected expression", C),
29969
30020
  lt(),
29970
- ce(C) === J)
30021
+ fe(C) === J)
29971
30022
  )
29972
30023
  return (
29973
30024
  C++,
@@ -29988,8 +30039,8 @@ var Vi = {},
29988
30039
  for (var D = N.substr(C, Ue), j = D.length; j > 0; ) {
29989
30040
  if (
29990
30041
  Te.hasOwnProperty(D) &&
29991
- (!st(ce(C)) ||
29992
- (C + D.length < N.length && !Ft(ce(C + D.length))))
30042
+ (!st(fe(C)) ||
30043
+ (C + D.length < N.length && !Ft(fe(C + D.length))))
29993
30044
  )
29994
30045
  return (C += j), D;
29995
30046
  D = D.substr(0, --j);
@@ -29997,44 +30048,44 @@ var Vi = {},
29997
30048
  return !1;
29998
30049
  },
29999
30050
  eu = function () {
30000
- var D, j, Q, ae, Mt, Xe, kt, Zt, cs;
30051
+ var D, j, Q, ue, Mt, Xe, kt, Zt, cs;
30001
30052
  if (((Xe = Yn()), (j = os()), !j)) return Xe;
30002
30053
  for (
30003
30054
  Mt = { value: j, prec: rt(j) },
30004
30055
  kt = Yn(),
30005
30056
  kt || G("Expected expression after " + j, C),
30006
- ae = [Xe, Mt, kt];
30057
+ ue = [Xe, Mt, kt];
30007
30058
  (j = os()) && ((Q = rt(j)), Q !== 0);
30008
30059
 
30009
30060
  ) {
30010
30061
  for (
30011
30062
  Mt = { value: j, prec: Q }, cs = j;
30012
- ae.length > 2 && Q <= ae[ae.length - 2].prec;
30063
+ ue.length > 2 && Q <= ue[ue.length - 2].prec;
30013
30064
 
30014
30065
  )
30015
- (kt = ae.pop()),
30016
- (j = ae.pop().value),
30017
- (Xe = ae.pop()),
30066
+ (kt = ue.pop()),
30067
+ (j = ue.pop().value),
30068
+ (Xe = ue.pop()),
30018
30069
  (D = Gt(j, Xe, kt)),
30019
- ae.push(D);
30070
+ ue.push(D);
30020
30071
  (D = Yn()),
30021
30072
  D || G("Expected expression after " + cs, C),
30022
- ae.push(Mt, D);
30073
+ ue.push(Mt, D);
30023
30074
  }
30024
- for (Zt = ae.length - 1, D = ae[Zt]; Zt > 1; )
30025
- (D = Gt(ae[Zt - 1].value, ae[Zt - 2], D)), (Zt -= 2);
30075
+ for (Zt = ue.length - 1, D = ue[Zt]; Zt > 1; )
30076
+ (D = Gt(ue[Zt - 1].value, ue[Zt - 2], D)), (Zt -= 2);
30026
30077
  return D;
30027
30078
  },
30028
30079
  Yn = function () {
30029
30080
  var D, j, Q;
30030
- if ((lt(), (D = ce(C)), bt(D) || D === w)) return tu();
30081
+ if ((lt(), (D = fe(C)), bt(D) || D === w)) return tu();
30031
30082
  if (D === U || D === P) return nu();
30032
30083
  if (D === M) return su();
30033
30084
  for (j = N.substr(C, De), Q = j.length; Q > 0; ) {
30034
30085
  if (
30035
30086
  Se.hasOwnProperty(j) &&
30036
- (!st(ce(C)) ||
30037
- (C + j.length < N.length && !Ft(ce(C + j.length))))
30087
+ (!st(fe(C)) ||
30088
+ (C + j.length < N.length && !Ft(fe(C + j.length))))
30038
30089
  )
30039
30090
  return (
30040
30091
  (C += Q),
@@ -30050,21 +30101,21 @@ var Vi = {},
30050
30101
  return st(D) || D === K ? iu() : !1;
30051
30102
  },
30052
30103
  tu = function () {
30053
- for (var D = "", j, Q; bt(ce(C)); ) D += $e(C++);
30054
- if (ce(C) === w) for (D += $e(C++); bt(ce(C)); ) D += $e(C++);
30104
+ for (var D = "", j, Q; bt(fe(C)); ) D += $e(C++);
30105
+ if (fe(C) === w) for (D += $e(C++); bt(fe(C)); ) D += $e(C++);
30055
30106
  if (((j = $e(C)), j === "e" || j === "E")) {
30056
30107
  for (
30057
30108
  D += $e(C++),
30058
30109
  j = $e(C),
30059
30110
  (j === "+" || j === "-") && (D += $e(C++));
30060
- bt(ce(C));
30111
+ bt(fe(C));
30061
30112
 
30062
30113
  )
30063
30114
  D += $e(C++);
30064
- bt(ce(C - 1)) || G("Expected exponent (" + D + $e(C) + ")", C);
30115
+ bt(fe(C - 1)) || G("Expected exponent (" + D + $e(C) + ")", C);
30065
30116
  }
30066
30117
  return (
30067
- (Q = ce(C)),
30118
+ (Q = fe(C)),
30068
30119
  st(Q)
30069
30120
  ? G(
30070
30121
  "Variable names cannot start with a number (" +
@@ -30082,12 +30133,12 @@ var Vi = {},
30082
30133
  );
30083
30134
  },
30084
30135
  nu = function () {
30085
- for (var D = "", j = $e(C++), Q = !1, ae; C < vn; )
30086
- if (((ae = $e(C++)), ae === j)) {
30136
+ for (var D = "", j = $e(C++), Q = !1, ue; C < vn; )
30137
+ if (((ue = $e(C++)), ue === j)) {
30087
30138
  Q = !0;
30088
30139
  break;
30089
- } else if (ae === "\\")
30090
- switch (((ae = $e(C++)), ae)) {
30140
+ } else if (ue === "\\")
30141
+ switch (((ue = $e(C++)), ue)) {
30091
30142
  case "n":
30092
30143
  D += `
30093
30144
  `;
@@ -30108,9 +30159,9 @@ var Vi = {},
30108
30159
  D += "\v";
30109
30160
  break;
30110
30161
  default:
30111
- D += ae;
30162
+ D += ue;
30112
30163
  }
30113
- else D += ae;
30164
+ else D += ue;
30114
30165
  return (
30115
30166
  Q || G('Unclosed quote after "' + D + '"', C),
30116
30167
  {
@@ -30121,12 +30172,12 @@ var Vi = {},
30121
30172
  );
30122
30173
  },
30123
30174
  as = function () {
30124
- var D = ce(C),
30175
+ var D = fe(C),
30125
30176
  j = C,
30126
30177
  Q;
30127
30178
  for (
30128
30179
  st(D) ? C++ : G("Unexpected " + $e(C), C);
30129
- C < vn && ((D = ce(C)), Ft(D));
30180
+ C < vn && ((D = fe(C)), Ft(D));
30130
30181
 
30131
30182
  )
30132
30183
  C++;
@@ -30147,8 +30198,8 @@ var Vi = {},
30147
30198
  );
30148
30199
  },
30149
30200
  us = function (D) {
30150
- for (var j, Q = [], ae, Mt = !1, Xe = 0; C < vn; )
30151
- if ((lt(), (j = ce(C)), j === D)) {
30201
+ for (var j, Q = [], ue, Mt = !1, Xe = 0; C < vn; )
30202
+ if ((lt(), (j = fe(C)), j === D)) {
30152
30203
  (Mt = !0),
30153
30204
  C++,
30154
30205
  D === X &&
@@ -30163,15 +30214,15 @@ var Vi = {},
30163
30214
  for (var kt = Q.length; kt < Xe; kt++) Q.push(null);
30164
30215
  }
30165
30216
  } else
30166
- (ae = Kt()),
30167
- (!ae || ae.type === r) && G("Expected comma", C),
30168
- Q.push(ae);
30217
+ (ue = Kt()),
30218
+ (!ue || ue.type === r) && G("Expected comma", C),
30219
+ Q.push(ue);
30169
30220
  return Mt || G("Expected " + String.fromCharCode(D), C), Q;
30170
30221
  },
30171
30222
  iu = function () {
30172
30223
  var D, j;
30173
30224
  for (
30174
- D = ce(C), D === K ? (j = ru()) : (j = as()), lt(), D = ce(C);
30225
+ D = fe(C), D === K ? (j = ru()) : (j = as()), lt(), D = fe(C);
30175
30226
  D === w || D === M || D === K;
30176
30227
 
30177
30228
  )
@@ -30192,7 +30243,7 @@ var Vi = {},
30192
30243
  property: Kt(),
30193
30244
  }),
30194
30245
  lt(),
30195
- (D = ce(C)),
30246
+ (D = fe(C)),
30196
30247
  D !== le && G("Unclosed [", C),
30197
30248
  C++)
30198
30249
  : D === K &&
@@ -30202,13 +30253,13 @@ var Vi = {},
30202
30253
  callee: j,
30203
30254
  }),
30204
30255
  lt(),
30205
- (D = ce(C));
30256
+ (D = fe(C));
30206
30257
  return j;
30207
30258
  },
30208
30259
  ru = function () {
30209
30260
  C++;
30210
30261
  var D = Kt();
30211
- if ((lt(), ce(C) === X)) return C++, D;
30262
+ if ((lt(), fe(C) === X)) return C++, D;
30212
30263
  G("Unclosed (", C);
30213
30264
  },
30214
30265
  su = function () {
@@ -30226,7 +30277,7 @@ var Vi = {},
30226
30277
  C < vn;
30227
30278
 
30228
30279
  )
30229
- (zi = ce(C)),
30280
+ (zi = fe(C)),
30230
30281
  zi === R || zi === O
30231
30282
  ? C++
30232
30283
  : (ds = Kt())
@@ -30244,7 +30295,7 @@ var Vi = {},
30244
30295
  return "JavaScript Expression Parser (JSEP) v" + Me.version;
30245
30296
  }),
30246
30297
  (Me.addUnaryOp = function (N) {
30247
- return (De = Math.max(N.length, De)), (Se[N] = de), this;
30298
+ return (De = Math.max(N.length, De)), (Se[N] = ce), this;
30248
30299
  }),
30249
30300
  (Me.addBinaryOp = function (N, C) {
30250
30301
  return (Ue = Math.max(N.length, Ue)), (Te[N] = C), this;
@@ -30527,35 +30578,35 @@ var gO = Rn,
30527
30578
  RO = "[object Uint8ClampedArray]",
30528
30579
  BO = "[object Uint16Array]",
30529
30580
  zO = "[object Uint32Array]",
30530
- ue = {};
30531
- ue[AO] =
30532
- ue[LO] =
30533
- ue[NO] =
30534
- ue[UO] =
30535
- ue[PO] =
30536
- ue[jO] =
30537
- ue[RO] =
30538
- ue[BO] =
30539
- ue[zO] =
30581
+ de = {};
30582
+ de[AO] =
30583
+ de[LO] =
30584
+ de[NO] =
30585
+ de[UO] =
30586
+ de[PO] =
30587
+ de[jO] =
30588
+ de[RO] =
30589
+ de[BO] =
30590
+ de[zO] =
30540
30591
  !0;
30541
- ue[bO] =
30542
- ue[kO] =
30543
- ue[IO] =
30544
- ue[xO] =
30545
- ue[$O] =
30546
- ue[wO] =
30547
- ue[SO] =
30548
- ue[TO] =
30549
- ue[OO] =
30550
- ue[VO] =
30551
- ue[CO] =
30552
- ue[EO] =
30553
- ue[DO] =
30554
- ue[FO] =
30555
- ue[MO] =
30592
+ de[bO] =
30593
+ de[kO] =
30594
+ de[IO] =
30595
+ de[xO] =
30596
+ de[$O] =
30597
+ de[wO] =
30598
+ de[SO] =
30599
+ de[TO] =
30600
+ de[OO] =
30601
+ de[VO] =
30602
+ de[CO] =
30603
+ de[EO] =
30604
+ de[DO] =
30605
+ de[FO] =
30606
+ de[MO] =
30556
30607
  !1;
30557
30608
  function qO(e) {
30558
- return vO(e) && _O(e.length) && !!ue[gO(e)];
30609
+ return vO(e) && _O(e.length) && !!de[gO(e)];
30559
30610
  }
30560
30611
  var HO = qO;
30561
30612
  function WO(e) {
@@ -32371,12 +32422,12 @@ const UC = {
32371
32422
  BooleanSwitch: Jw,
32372
32423
  FieldGroup: kS,
32373
32424
  ContentSelect: Ta,
32374
- TypeSelect: zb,
32425
+ TypeSelect: z1,
32375
32426
  ScopeSelect: Oa,
32376
32427
  FieldSelect: _l,
32377
32428
  TimezoneSelect: na,
32378
32429
  CountrySelect: Qr,
32379
- PhoneNumberInput: o1,
32430
+ PhoneNumberInput: ob,
32380
32431
  Upload: uS,
32381
32432
  ObjectField: jS,
32382
32433
  ModelField: KS,
@@ -33041,7 +33092,7 @@ function jC(e, t, n, r, s, i) {
33041
33092
  R = y("time-field"),
33042
33093
  J = y("date-field"),
33043
33094
  G = y("date-range"),
33044
- de = y("content-select"),
33095
+ ce = y("content-select"),
33045
33096
  Se = y("type-select"),
33046
33097
  Te = y("scope-select"),
33047
33098
  Ee = y("rich-text-field"),
@@ -33522,7 +33573,7 @@ function jC(e, t, n, r, s, i) {
33522
33573
  i.widget == "content-select"
33523
33574
  ? (a(),
33524
33575
  k(
33525
- de,
33576
+ ce,
33526
33577
  {
33527
33578
  key: 22,
33528
33579
  onTouched: i.touch,
@@ -34628,11 +34679,21 @@ const gr = "form.ready",
34628
34679
  r = (i = n._payment) == null ? void 0 : i.total,
34629
34680
  s = (l = n._payment) == null ? void 0 : l.gateway;
34630
34681
  if (t.form.hasGeographicRequirements) {
34631
- const { coords: o } = await t.$sdk.geo.getPosition();
34682
+ const { coords: o } = await t.$sdk.geo
34683
+ .getPosition()
34684
+ .catch(function (u) {
34685
+ return (
34686
+ console.log("Error", u),
34687
+ {
34688
+ coords: void 0,
34689
+ }
34690
+ );
34691
+ });
34632
34692
  if (!o || !o.latitude || !o.longitude)
34633
34693
  return {
34634
34694
  error: {
34635
- message: "Location data is required to submit this form",
34695
+ message:
34696
+ "Location data is required to submit this form. Please allow location to continue.",
34636
34697
  status: 400,
34637
34698
  statusCode: 400,
34638
34699
  },
@@ -34923,7 +34984,7 @@ const gr = "form.ready",
34923
34984
  },
34924
34985
  },
34925
34986
  },
34926
- iD = (e) => (Ze("data-v-091267f5"), (e = e()), Je(), e),
34987
+ iD = (e) => (Ze("data-v-478e89d4"), (e = e()), Je(), e),
34927
34988
  rD = /* @__PURE__ */ iD(() =>
34928
34989
  /* @__PURE__ */ x("h3", null, "An error occurred", -1),
34929
34990
  ),
@@ -35434,7 +35495,7 @@ function gD(e, t, n, r, s, i) {
35434
35495
  }
35435
35496
  const Il = /* @__PURE__ */ V(nD, [
35436
35497
  ["render", gD],
35437
- ["__scopeId", "data-v-091267f5"],
35498
+ ["__scopeId", "data-v-478e89d4"],
35438
35499
  ]);
35439
35500
  function _D(e) {
35440
35501
  const t = /<\/?([a-zA-Z0-9]+)[^>]*>/g,
@@ -38298,7 +38359,7 @@ const zF = {
38298
38359
  };
38299
38360
  },
38300
38361
  },
38301
- ls = (e) => (Ze("data-v-10d1c729"), (e = e()), Je(), e),
38362
+ ls = (e) => (Ze("data-v-665d3903"), (e = e()), Je(), e),
38302
38363
  qF = /* @__PURE__ */ ls(() =>
38303
38364
  /* @__PURE__ */ x("strong", null, "Select Columns", -1),
38304
38365
  ),
@@ -38438,6 +38499,8 @@ function KF(e, t, n, r, s, i) {
38438
38499
  selection:
38439
38500
  s.manager
38440
38501
  .items,
38502
+ selectionManager:
38503
+ s.manager,
38441
38504
  items:
38442
38505
  i.items,
38443
38506
  "onClick:actions":
@@ -38456,6 +38519,7 @@ function KF(e, t, n, r, s, i) {
38456
38519
  "cacheKey",
38457
38520
  "definition",
38458
38521
  "selection",
38522
+ "selectionManager",
38459
38523
  "items",
38460
38524
  "onClick:actions",
38461
38525
  "onSelect:item:toggle",
@@ -38471,10 +38535,10 @@ function KF(e, t, n, r, s, i) {
38471
38535
  "onUpdate:sort":
38472
38536
  t[0] ||
38473
38537
  (t[0] = (
38474
- de,
38538
+ ce,
38475
38539
  ) =>
38476
38540
  (s.sort =
38477
- de)),
38541
+ ce)),
38478
38542
  enableSelection:
38479
38543
  n.enableSelection,
38480
38544
  enableActions:
@@ -38516,7 +38580,7 @@ function KF(e, t, n, r, s, i) {
38516
38580
  activator:
38517
38581
  h(
38518
38582
  ({
38519
- on: de,
38583
+ on: ce,
38520
38584
  }) => [
38521
38585
  c(
38522
38586
  f,
@@ -38525,7 +38589,7 @@ function KF(e, t, n, r, s, i) {
38525
38589
  icon: "",
38526
38590
  },
38527
38591
  Ur(
38528
- de,
38592
+ ce,
38529
38593
  ),
38530
38594
  ),
38531
38595
  {
@@ -38617,7 +38681,7 @@ function KF(e, t, n, r, s, i) {
38617
38681
  I(
38618
38682
  i.selectableFields,
38619
38683
  (
38620
- de,
38684
+ ce,
38621
38685
  ) => (
38622
38686
  a(),
38623
38687
  k(
@@ -38628,9 +38692,9 @@ function KF(e, t, n, r, s, i) {
38628
38692
  Se,
38629
38693
  ) =>
38630
38694
  i.toggleField(
38631
- de,
38695
+ ce,
38632
38696
  ),
38633
- key: de.path,
38697
+ key: ce.path,
38634
38698
  },
38635
38699
  {
38636
38700
  default:
@@ -38641,7 +38705,7 @@ function KF(e, t, n, r, s, i) {
38641
38705
  {
38642
38706
  icon: i
38643
38707
  .fieldEnabled[
38644
- de
38708
+ ce
38645
38709
  .path
38646
38710
  ]
38647
38711
  ? "fa-check-square"
@@ -38657,7 +38721,7 @@ function KF(e, t, n, r, s, i) {
38657
38721
  T(
38658
38722
  " " +
38659
38723
  b(
38660
- de.title,
38724
+ ce.title,
38661
38725
  ),
38662
38726
  1,
38663
38727
  ),
@@ -38914,7 +38978,7 @@ function KF(e, t, n, r, s, i) {
38914
38978
  }
38915
38979
  const ZF = /* @__PURE__ */ V(zF, [
38916
38980
  ["render", KF],
38917
- ["__scopeId", "data-v-10d1c729"],
38981
+ ["__scopeId", "data-v-665d3903"],
38918
38982
  ]);
38919
38983
  const JF = {
38920
38984
  props: {
@@ -39907,7 +39971,7 @@ const EM = /* @__PURE__ */ V(SM, [
39907
39971
  ]);
39908
39972
  const DM = {
39909
39973
  components: {
39910
- ScopeSelect: Jb,
39974
+ ScopeSelect: J1,
39911
39975
  // Search,
39912
39976
  },
39913
39977
  mixins: [_n],
@@ -40601,7 +40665,7 @@ const YM = `qik vue ui ${fu}`,
40601
40665
  install(e, t) {
40602
40666
  var n;
40603
40667
  console.log(YM),
40604
- (t.date = me),
40668
+ (t.date = oe),
40605
40669
  (t.global = t.global || Rt({})),
40606
40670
  ((n = t.global) != null && n.cacheKeys) ||
40607
40671
  (t.global.cacheKeys = t.global.cacheKeys || Rt({})),
@@ -40718,7 +40782,7 @@ export {
40718
40782
  el as ProgressBar,
40719
40783
  tI as QikUI,
40720
40784
  Pg as RememberScrollMixin,
40721
- Jb as ScopeSelect,
40785
+ J1 as ScopeSelect,
40722
40786
  tk as ScopeSelectButton,
40723
40787
  Bi as Search,
40724
40788
  XD as Selection,