golden-logic-ui 1.0.112 → 1.0.114

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.
@@ -147,7 +147,7 @@ function Dt(e, t) {
147
147
  * @license MIT
148
148
  */
149
149
  var Ee = "store";
150
- function Ae(e) {
150
+ function je(e) {
151
151
  return e === void 0 && (e = null), Ce(e !== null ? e : Ee);
152
152
  }
153
153
  function R(e, t) {
@@ -155,7 +155,7 @@ function R(e, t) {
155
155
  return t(e[s], s);
156
156
  });
157
157
  }
158
- function je(e) {
158
+ function Ae(e) {
159
159
  return e !== null && typeof e == "object";
160
160
  }
161
161
  function Ot(e) {
@@ -216,10 +216,10 @@ function ee(e, t, s, n, o) {
216
216
  var h = n.context = Et(e, i, s);
217
217
  n.forEachMutation(function(m, y) {
218
218
  var x = i + y;
219
- At(e, x, m, h);
219
+ jt(e, x, m, h);
220
220
  }), n.forEachAction(function(m, y) {
221
221
  var x = m.root ? y : i + y, S = m.handler || m;
222
- jt(e, x, S, h);
222
+ At(e, x, S, h);
223
223
  }), n.forEachGetter(function(m, y) {
224
224
  var x = i + y;
225
225
  Tt(e, x, m, h);
@@ -278,13 +278,13 @@ function Me(e, t) {
278
278
  }
279
279
  return e._makeLocalGettersCache[t];
280
280
  }
281
- function At(e, t, s, n) {
281
+ function jt(e, t, s, n) {
282
282
  var o = e._mutations[t] || (e._mutations[t] = []);
283
283
  o.push(function(i) {
284
284
  s.call(e, n.state, i);
285
285
  });
286
286
  }
287
- function jt(e, t, s, n) {
287
+ function At(e, t, s, n) {
288
288
  var o = e._actions[t] || (e._actions[t] = []);
289
289
  o.push(function(i) {
290
290
  var l = s.call(e, {
@@ -331,7 +331,7 @@ function fe(e, t) {
331
331
  }, e);
332
332
  }
333
333
  function Q(e, t, s) {
334
- return je(e) && e.type && (s = t, t = e, e = e.type), process.env.NODE_ENV !== "production" && I(typeof e == "string", "expects string as the type, but found " + typeof e + "."), { type: e, payload: t, options: s };
334
+ return Ae(e) && e.type && (s = t, t = e, e = e.type), process.env.NODE_ENV !== "production" && I(typeof e == "string", "expects string as the type, but found " + typeof e + "."), { type: e, payload: t, options: s };
335
335
  }
336
336
  var Mt = "vuex bindings", ve = "vuex:mutations", ne = "vuex:actions", H = "vuex", Nt = 0;
337
337
  function Vt(e, t) {
@@ -666,7 +666,7 @@ function qt(e, t, s, n, o) {
666
666
  var a = t + " should be " + o + ' but "' + t + "." + s + '"';
667
667
  return e.length > 0 && (a += ' in module "' + e.join(".") + '"'), a += " is " + JSON.stringify(n) + ".", a;
668
668
  }
669
- var A = function e(t) {
669
+ var j = function e(t) {
670
670
  var s = this;
671
671
  t === void 0 && (t = {}), process.env.NODE_ENV !== "production" && (I(typeof Promise < "u", "vuex requires a Promise polyfill in this browser."), I(this instanceof e, "store must be called with the new operator."));
672
672
  var n = t.plugins;
@@ -686,7 +686,7 @@ var A = function e(t) {
686
686
  return y(s);
687
687
  });
688
688
  }, ge = { state: { configurable: !0 } };
689
- A.prototype.install = function(t, s) {
689
+ j.prototype.install = function(t, s) {
690
690
  t.provide(s || Ee, this), t.config.globalProperties.$store = this;
691
691
  var n = this._devtools !== void 0 ? this._devtools : process.env.NODE_ENV !== "production" || !1;
692
692
  n && Vt(t, this);
@@ -697,7 +697,7 @@ ge.state.get = function() {
697
697
  ge.state.set = function(e) {
698
698
  process.env.NODE_ENV !== "production" && I(!1, "use store.replaceState() to explicit replace store state.");
699
699
  };
700
- A.prototype.commit = function(t, s, n) {
700
+ j.prototype.commit = function(t, s, n) {
701
701
  var o = this, a = Q(t, s, n), i = a.type, l = a.payload, c = a.options, h = { type: i, payload: l }, m = this._mutations[i];
702
702
  if (!m) {
703
703
  process.env.NODE_ENV !== "production" && console.error("[vuex] unknown mutation type: " + i);
@@ -713,7 +713,7 @@ A.prototype.commit = function(t, s, n) {
713
713
  "[vuex] mutation type: " + i + ". Silent option has been removed. Use the filter functionality in the vue-devtools"
714
714
  );
715
715
  };
716
- A.prototype.dispatch = function(t, s) {
716
+ j.prototype.dispatch = function(t, s) {
717
717
  var n = this, o = Q(t, s), a = o.type, i = o.payload, l = { type: a, payload: i }, c = this._actions[a];
718
718
  if (!c) {
719
719
  process.env.NODE_ENV !== "production" && console.error("[vuex] unknown action type: " + a);
@@ -757,46 +757,46 @@ A.prototype.dispatch = function(t, s) {
757
757
  });
758
758
  });
759
759
  };
760
- A.prototype.subscribe = function(t, s) {
760
+ j.prototype.subscribe = function(t, s) {
761
761
  return Te(t, this._subscribers, s);
762
762
  };
763
- A.prototype.subscribeAction = function(t, s) {
763
+ j.prototype.subscribeAction = function(t, s) {
764
764
  var n = typeof t == "function" ? { before: t } : t;
765
765
  return Te(n, this._actionSubscribers, s);
766
766
  };
767
- A.prototype.watch = function(t, s, n) {
767
+ j.prototype.watch = function(t, s, n) {
768
768
  var o = this;
769
769
  return process.env.NODE_ENV !== "production" && I(typeof t == "function", "store.watch only accepts a function."), Y(function() {
770
770
  return t(o.state, o.getters);
771
771
  }, s, Object.assign({}, n));
772
772
  };
773
- A.prototype.replaceState = function(t) {
773
+ j.prototype.replaceState = function(t) {
774
774
  var s = this;
775
775
  this._withCommit(function() {
776
776
  s._state.data = t;
777
777
  });
778
778
  };
779
- A.prototype.registerModule = function(t, s, n) {
779
+ j.prototype.registerModule = function(t, s, n) {
780
780
  n === void 0 && (n = {}), typeof t == "string" && (t = [t]), process.env.NODE_ENV !== "production" && (I(Array.isArray(t), "module path must be a string or an Array."), I(t.length > 0, "cannot register the root module by using registerModule.")), this._modules.register(t, s), ee(this, this.state, t, this._modules.get(t), n.preserveState), ce(this, this.state);
781
781
  };
782
- A.prototype.unregisterModule = function(t) {
782
+ j.prototype.unregisterModule = function(t) {
783
783
  var s = this;
784
784
  typeof t == "string" && (t = [t]), process.env.NODE_ENV !== "production" && I(Array.isArray(t), "module path must be a string or an Array."), this._modules.unregister(t), this._withCommit(function() {
785
785
  var n = fe(s.state, t.slice(0, -1));
786
786
  delete n[t[t.length - 1]];
787
787
  }), Ie(this);
788
788
  };
789
- A.prototype.hasModule = function(t) {
789
+ j.prototype.hasModule = function(t) {
790
790
  return typeof t == "string" && (t = [t]), process.env.NODE_ENV !== "production" && I(Array.isArray(t), "module path must be a string or an Array."), this._modules.isRegistered(t);
791
791
  };
792
- A.prototype.hotUpdate = function(t) {
792
+ j.prototype.hotUpdate = function(t) {
793
793
  this._modules.update(t), Ie(this, !0);
794
794
  };
795
- A.prototype._withCommit = function(t) {
795
+ j.prototype._withCommit = function(t) {
796
796
  var s = this._committing;
797
797
  this._committing = !0, t(), this._committing = s;
798
798
  };
799
- Object.defineProperties(A.prototype, ge);
799
+ Object.defineProperties(j.prototype, ge);
800
800
  var Ht = qe(function(e, t) {
801
801
  var s = {};
802
802
  return process.env.NODE_ENV !== "production" && !he(t) && console.error("[vuex] mapState: mapper parameter must be either an Array or an Object"), Ue(t).forEach(function(n) {
@@ -838,7 +838,7 @@ function Ue(e) {
838
838
  }) : [];
839
839
  }
840
840
  function he(e) {
841
- return Array.isArray(e) || je(e);
841
+ return Array.isArray(e) || Ae(e);
842
842
  }
843
843
  function qe(e) {
844
844
  return function(t, s) {
@@ -1121,7 +1121,7 @@ function kr(e, t, s, n, o, a) {
1121
1121
  ], 2)
1122
1122
  ], 64);
1123
1123
  }
1124
- const _u = /* @__PURE__ */ k(Zt, [["render", kr]]), $r = {
1124
+ const xu = /* @__PURE__ */ k(Zt, [["render", kr]]), $r = {
1125
1125
  computed: {
1126
1126
  ...Ht("notification", ["notification"]),
1127
1127
  alertClasses() {
@@ -1196,7 +1196,7 @@ const _u = /* @__PURE__ */ k(Zt, [["render", kr]]), $r = {
1196
1196
  Or,
1197
1197
  Pr
1198
1198
  ];
1199
- function Ar(e, t, s, n, o, a) {
1199
+ function jr(e, t, s, n, o, a) {
1200
1200
  return e.notification.show ? (d(), u("div", {
1201
1201
  key: 0,
1202
1202
  class: b(["fixed right-0 z-50 flex items-center p-4 m-5 mb-4 rounded-lg shadow-lg", a.alertClasses]),
@@ -1213,7 +1213,7 @@ function Ar(e, t, s, n, o, a) {
1213
1213
  }, Er, 2)
1214
1214
  ], 2)) : f("", !0);
1215
1215
  }
1216
- const vu = /* @__PURE__ */ k($r, [["render", Ar]]), jr = {
1216
+ const wu = /* @__PURE__ */ k($r, [["render", jr]]), Ar = {
1217
1217
  components: {},
1218
1218
  props: {
1219
1219
  field_name: {
@@ -1272,10 +1272,10 @@ function Nr(e, t, s, n, o, a) {
1272
1272
  ]))), 256))
1273
1273
  ]);
1274
1274
  }
1275
- const xu = /* @__PURE__ */ k(jr, [["render", Nr]]), Vr = { class: "bg-white border rounded-lg border-stroke shadow-default dark:border-strokedark dark:bg-boxdark" }, Lr = { class: "px-3 py-4 border-b border-stroke dark:border-strokedark" }, Br = { class: "font-semibold text-black dark:text-white" }, Gr = {
1275
+ const ku = /* @__PURE__ */ k(Ar, [["render", Nr]]), Vr = { class: "bg-white border rounded-lg border-stroke shadow-default dark:border-strokedark dark:bg-boxdark" }, Lr = { class: "px-3 py-4 border-b border-stroke dark:border-strokedark" }, Br = { class: "font-semibold text-black dark:text-white" }, Gr = {
1276
1276
  key: 0,
1277
1277
  class: "p-6"
1278
- }, wu = {
1278
+ }, $u = {
1279
1279
  __name: "GlCard",
1280
1280
  props: {
1281
1281
  class: {
@@ -1586,7 +1586,7 @@ function os(e, t, s, n, o, a) {
1586
1586
  ], 2))
1587
1587
  ], 64);
1588
1588
  }
1589
- const ku = /* @__PURE__ */ k(Fr, [["render", os]]), ls = {
1589
+ const Cu = /* @__PURE__ */ k(Fr, [["render", os]]), ls = {
1590
1590
  props: {
1591
1591
  button_type: {
1592
1592
  type: String,
@@ -1688,7 +1688,7 @@ function ds(e, t, s, n, o, a) {
1688
1688
  _: 3
1689
1689
  }, 16, ["type", "disabled", "href", "class"]));
1690
1690
  }
1691
- const $u = /* @__PURE__ */ k(ls, [["render", ds]]), us = { class: "font-bold ptext-lg dark:text-white" }, cs = ["name", "id"], fs = ["id"], gs = /* @__PURE__ */ r("hr", { class: "!opacity-100 bg-gray-200 border-0 dark:bg-gray-700" }, null, -1), hs = ["for"], ms = /* @__PURE__ */ r("span", { class: "language-label js-language-label bg-blue-100 text-blue-800 text-xs font-medium me-2 px-2.5 py-0.5 rounded dark:bg-blue-900 dark:text-blue-300" }, null, -1), bs = ["name", "id"], ps = ["required", "name", "id", "type"], ys = { class: "gl-span-form-error" }, _s = { class: "block mt-1 text-sm font-normal leading-5 text-gray-500" }, Cu = {
1691
+ const Su = /* @__PURE__ */ k(ls, [["render", ds]]), us = { class: "font-bold ptext-lg dark:text-white" }, cs = ["name", "id"], fs = ["id"], gs = /* @__PURE__ */ r("hr", { class: "!opacity-100 bg-gray-200 border-0 dark:bg-gray-700" }, null, -1), hs = ["for"], ms = /* @__PURE__ */ r("span", { class: "language-label js-language-label bg-blue-100 text-blue-800 text-xs font-medium me-2 px-2.5 py-0.5 rounded dark:bg-blue-900 dark:text-blue-300" }, null, -1), bs = ["name", "id"], ps = ["required", "name", "id", "type"], ys = { class: "gl-span-form-error" }, _s = { class: "block mt-1 text-sm font-normal leading-5 text-gray-500" }, Du = {
1692
1692
  __name: "GlTextareaTranslate",
1693
1693
  props: {
1694
1694
  is_required: {
@@ -1824,7 +1824,7 @@ const $u = /* @__PURE__ */ k(ls, [["render", ds]]), us = { class: "font-bold pte
1824
1824
  ], 2))
1825
1825
  ], 64));
1826
1826
  }
1827
- }, vs = { class: "font-bold ptext-lg dark:text-white" }, xs = ["name", "id"], ws = ["id"], ks = /* @__PURE__ */ r("hr", { class: "!opacity-100 bg-gray-200 border-0 dark:bg-gray-700" }, null, -1), $s = ["for"], Cs = /* @__PURE__ */ r("span", { class: "language-label js-language-label bg-blue-100 text-blue-800 text-xs font-medium me-2 px-2.5 py-0.5 rounded dark:bg-blue-900 dark:text-blue-300" }, null, -1), Ss = ["name", "id"], Ds = ["name", "id", "type"], Os = { class: "gl-span-form-error" }, Ps = { class: "block mt-1 text-sm font-normal leading-5 text-gray-500" }, Su = {
1827
+ }, vs = { class: "font-bold ptext-lg dark:text-white" }, xs = ["name", "id"], ws = ["id"], ks = /* @__PURE__ */ r("hr", { class: "!opacity-100 bg-gray-200 border-0 dark:bg-gray-700" }, null, -1), $s = ["for"], Cs = /* @__PURE__ */ r("span", { class: "language-label js-language-label bg-blue-100 text-blue-800 text-xs font-medium me-2 px-2.5 py-0.5 rounded dark:bg-blue-900 dark:text-blue-300" }, null, -1), Ss = ["name", "id"], Ds = ["name", "id", "type"], Os = { class: "gl-span-form-error" }, Ps = { class: "block mt-1 text-sm font-normal leading-5 text-gray-500" }, Ou = {
1828
1828
  __name: "GlTinymceTranslate",
1829
1829
  props: {
1830
1830
  is_required: {
@@ -1963,7 +1963,7 @@ const $u = /* @__PURE__ */ k(ls, [["render", ds]]), us = { class: "font-bold pte
1963
1963
  ], 2))
1964
1964
  ], 64));
1965
1965
  }
1966
- }, Es = { class: "font-bold ptext-lg dark:text-white" }, As = ["name", "id"], js = ["id"], Ts = /* @__PURE__ */ r("hr", { class: "!opacity-100 bg-gray-200 border-0 dark:bg-gray-700" }, null, -1), Is = ["for"], Ms = /* @__PURE__ */ r("span", { class: "language-label js-language-label bg-blue-100 text-blue-800 text-xs font-medium me-2 px-2.5 py-0.5 rounded dark:bg-blue-900 dark:text-blue-300" }, null, -1), Ns = ["name", "id"], Vs = ["required", "name", "id", "type"], Ls = { class: "gl-span-form-error" }, Bs = { class: "block mt-1 text-sm font-normal leading-5 text-gray-500" }, Du = {
1966
+ }, Es = { class: "font-bold ptext-lg dark:text-white" }, js = ["name", "id"], As = ["id"], Ts = /* @__PURE__ */ r("hr", { class: "!opacity-100 bg-gray-200 border-0 dark:bg-gray-700" }, null, -1), Is = ["for"], Ms = /* @__PURE__ */ r("span", { class: "language-label js-language-label bg-blue-100 text-blue-800 text-xs font-medium me-2 px-2.5 py-0.5 rounded dark:bg-blue-900 dark:text-blue-300" }, null, -1), Ns = ["name", "id"], Vs = ["required", "name", "id", "type"], Ls = { class: "gl-span-form-error" }, Bs = { class: "block mt-1 text-sm font-normal leading-5 text-gray-500" }, Pu = {
1967
1967
  __name: "GlTextTranslate",
1968
1968
  props: {
1969
1969
  is_required: {
@@ -2045,13 +2045,13 @@ const $u = /* @__PURE__ */ k(ls, [["render", ds]]), us = { class: "font-bold pte
2045
2045
  id: e.field_name + "_i18n",
2046
2046
  ref: "input_translate_s",
2047
2047
  "onUpdate:modelValue": c[0] || (c[0] = (h) => l.inputTranslateValue = h)
2048
- }, null, 8, As), [
2048
+ }, null, 8, js), [
2049
2049
  [L, l.inputTranslateValue]
2050
2050
  ]),
2051
2051
  r("p", {
2052
2052
  id: e.field_name,
2053
2053
  class: "mb-4 text-base text-gray-900 input_tr_show dark:text-white"
2054
- }, g(e.model_value), 9, js),
2054
+ }, g(e.model_value), 9, As),
2055
2055
  Ts
2056
2056
  ], 2)) : f("", !0),
2057
2057
  e.show ? f("", !0) : (d(), u("div", {
@@ -2096,7 +2096,7 @@ const $u = /* @__PURE__ */ k(ls, [["render", ds]]), us = { class: "font-bold pte
2096
2096
  ], 2))
2097
2097
  ], 64));
2098
2098
  }
2099
- }, Gs = { class: "font-bold ptext-lg dark:text-white" }, Fs = { class: "mb-4 text-base text-gray-900 dark:text-white" }, Rs = /* @__PURE__ */ r("hr", { class: "!opacity-100 bg-gray-200 border-0 dark:bg-gray-700" }, null, -1), Us = ["for"], qs = ["required", "name", "id", "type", "placeholder"], Hs = { class: "gl-span-form-error" }, zs = { class: "block mt-1 text-sm font-normal leading-5 text-gray-500" }, Ou = {
2099
+ }, Gs = { class: "font-bold ptext-lg dark:text-white" }, Fs = { class: "mb-4 text-base text-gray-900 dark:text-white" }, Rs = /* @__PURE__ */ r("hr", { class: "!opacity-100 bg-gray-200 border-0 dark:bg-gray-700" }, null, -1), Us = ["for"], qs = ["required", "name", "id", "type", "placeholder"], Hs = { class: "gl-span-form-error" }, zs = { class: "block mt-1 text-sm font-normal leading-5 text-gray-500" }, Eu = {
2100
2100
  __name: "GlTextInput",
2101
2101
  props: {
2102
2102
  is_required: {
@@ -2237,7 +2237,7 @@ function ta(e, t, s, n, o, a) {
2237
2237
  ])
2238
2238
  ], 64);
2239
2239
  }
2240
- const Pu = /* @__PURE__ */ k(Zs, [["render", ta]]), ra = {
2240
+ const ju = /* @__PURE__ */ k(Zs, [["render", ta]]), ra = {
2241
2241
  props: ["title"],
2242
2242
  setup() {
2243
2243
  return {
@@ -2253,7 +2253,7 @@ function aa(e, t, s, n, o, a) {
2253
2253
  T(e.$slots, "default")
2254
2254
  ])) : f("", !0);
2255
2255
  }
2256
- const Eu = /* @__PURE__ */ k(ra, [["render", aa]]), na = {
2256
+ const Au = /* @__PURE__ */ k(ra, [["render", aa]]), na = {
2257
2257
  props: {
2258
2258
  elements_to_show_prop: {
2259
2259
  type: Number,
@@ -2439,8 +2439,8 @@ const Eu = /* @__PURE__ */ k(ra, [["render", aa]]), na = {
2439
2439
  d: "M11 17l-5-5m0 0l5-5m-5 5h12"
2440
2440
  }, null, -1)), Ea = [
2441
2441
  Pa
2442
- ], Aa = ["onClick"], ja = /* @__PURE__ */ P(() => /* @__PURE__ */ r("span", null, null, -1)), Ta = [
2443
- ja
2442
+ ], ja = ["onClick"], Aa = /* @__PURE__ */ P(() => /* @__PURE__ */ r("span", null, null, -1)), Ta = [
2443
+ Aa
2444
2444
  ], Ia = {
2445
2445
  key: 1,
2446
2446
  class: "flex justify-between pl-5 pr-5"
@@ -2601,7 +2601,7 @@ function un(e, t, s, n, o, a) {
2601
2601
  class: b(["gl-dot", { active: e.currentDot == i }]),
2602
2602
  key: i,
2603
2603
  onClick: (l) => a.setDot(i)
2604
- }, Ta, 10, Aa))), 128))
2604
+ }, Ta, 10, ja))), 128))
2605
2605
  ], 2)) : f("", !0),
2606
2606
  s.slider_arrows_indicators_position == "arrows_indicators_below_slider" ? (d(), u("div", Ia, [
2607
2607
  r("div", {
@@ -2654,7 +2654,7 @@ function un(e, t, s, n, o, a) {
2654
2654
  ], 10, oa)
2655
2655
  ]);
2656
2656
  }
2657
- const Au = /* @__PURE__ */ k(na, [["render", un], ["__scopeId", "data-v-a94f16a9"]]), cn = {
2657
+ const Tu = /* @__PURE__ */ k(na, [["render", un], ["__scopeId", "data-v-a94f16a9"]]), cn = {
2658
2658
  class: "fixed left-0 top-13 z-[1055] h-full w-full overflow-y-auto overflow-x-hidden outline-none inset-0 bg-black bg-opacity-80",
2659
2659
  tabindex: "-1",
2660
2660
  "aria-hidden": "true"
@@ -2674,7 +2674,7 @@ const Au = /* @__PURE__ */ k(na, [["render", un], ["__scopeId", "data-v-a94f16a9
2674
2674
  ])
2675
2675
  ], -1), bn = [
2676
2676
  mn
2677
- ], pn = { class: "flex flex-wrap items-center justify-end flex-shrink-0 p-4 border-t-2 rounded-b-md border-neutral-100 dark:border-gray-600" }, ju = {
2677
+ ], pn = { class: "flex flex-wrap items-center justify-end flex-shrink-0 p-4 border-t-2 rounded-b-md border-neutral-100 dark:border-gray-600" }, Iu = {
2678
2678
  __name: "GlModal",
2679
2679
  props: {
2680
2680
  is_open: {
@@ -2742,7 +2742,10 @@ const Au = /* @__PURE__ */ k(na, [["render", un], ["__scopeId", "data-v-a94f16a9
2742
2742
  [Z, e.is_open]
2743
2743
  ]);
2744
2744
  }
2745
- }, yn = { class: "flex justify-between p-2 -mb-px border border-gray-300 no-underlin" }, _n = { class: "relative inline-flex items-center cursor-pointer" }, vn = ["name", "id", "checked"], xn = /* @__PURE__ */ r("div", { class: "w-11 h-6 bg-gray-200 peer-focus:outline-none peer-focus:ring-4 peer-focus:ring-blue-300 dark:peer-focus:ring-blue-800 rounded-full peer dark:bg-gray-700 peer-checked:after:translate-x-full rtl:peer-checked:after:-translate-x-full peer-checked:after:border-white after:content-[''] after:absolute after:top-[2px] after:start-[2px] after:bg-white after:border-gray-300 after:border after:rounded-full after:h-5 after:w-5 after:transition-all dark:border-gray-600 peer-checked:bg-blue-600" }, null, -1), wn = /* @__PURE__ */ r("hr", { class: "!opacity-100 bg-gray-200 border-0 dark:bg-gray-700" }, null, -1), kn = { class: "flex justify-between p-2 -mb-px border border-gray-200 rounded-lg no-underlin dark:border-gray-600 dark:focus:border-frontenddark" }, $n = { class: "relative inline-flex items-center cursor-pointer" }, Cn = ["name", "id"], Sn = /* @__PURE__ */ r("div", { class: "w-11 h-6 bg-gray-200 peer-focus:outline-none peer-focus:ring-4 peer-focus:ring-blue-300 dark:peer-focus:ring-blue-800 rounded-full peer dark:bg-gray-700 peer-checked:after:translate-x-full rtl:peer-checked:after:-translate-x-full peer-checked:after:border-white after:content-[''] after:absolute after:top-[2px] after:start-[2px] after:bg-white after:border-gray-300 after:border after:rounded-full after:h-5 after:w-5 after:transition-all dark:border-gray-600 peer-checked:bg-blue-600" }, null, -1), Dn = { class: "gl-span-form-error" }, On = { class: "block mt-1 text-sm font-normal leading-5 text-gray-500" }, Tu = {
2745
+ }, yn = { class: "flex justify-between p-2 -mb-px border border-gray-300 no-underlin" }, _n = { class: "relative inline-flex items-center cursor-pointer" }, vn = ["name", "id", "checked"], xn = /* @__PURE__ */ r("div", { class: "w-11 h-6 bg-gray-200 peer-focus:outline-none peer-focus:ring-4 peer-focus:ring-blue-300 dark:peer-focus:ring-blue-800 rounded-full peer dark:bg-gray-700 peer-checked:after:translate-x-full rtl:peer-checked:after:-translate-x-full peer-checked:after:border-white after:content-[''] after:absolute after:top-[2px] after:start-[2px] after:bg-white after:border-gray-300 after:border after:rounded-full after:h-5 after:w-5 after:transition-all dark:border-gray-600 peer-checked:bg-blue-600" }, null, -1), wn = /* @__PURE__ */ r("hr", { class: "!opacity-100 bg-gray-200 border-0 dark:bg-gray-700" }, null, -1), kn = {
2746
+ key: 0,
2747
+ class: "flex justify-between items-center"
2748
+ }, $n = { class: "gl-label-form" }, Cn = { class: "flex justify-between p-2 -mb-px border border-gray-200 rounded-lg no-underlin dark:border-gray-600 dark:focus:border-frontenddark" }, Sn = { class: "relative inline-flex items-center cursor-pointer" }, Dn = ["name", "id"], On = /* @__PURE__ */ r("div", { class: "w-11 h-6 bg-gray-200 peer-focus:outline-none peer-focus:ring-4 peer-focus:ring-blue-300 dark:peer-focus:ring-blue-800 rounded-full peer dark:bg-gray-700 peer-checked:after:translate-x-full rtl:peer-checked:after:-translate-x-full peer-checked:after:border-white after:content-[''] after:absolute after:top-[2px] after:start-[2px] after:bg-white after:border-gray-300 after:border after:rounded-full after:h-5 after:w-5 after:transition-all dark:border-gray-600 peer-checked:bg-blue-600" }, null, -1), Pn = { class: "gl-span-form-error" }, En = { class: "block mt-1 text-sm font-normal leading-5 text-gray-500" }, Mu = {
2746
2749
  __name: "GlToggleBox",
2747
2750
  props: {
2748
2751
  is_required: {
@@ -2777,6 +2780,10 @@ const Au = /* @__PURE__ */ k(na, [["render", un], ["__scopeId", "data-v-a94f16a9
2777
2780
  type: String,
2778
2781
  default: ""
2779
2782
  },
2783
+ has_label_up: {
2784
+ type: Boolean,
2785
+ default: !1
2786
+ },
2780
2787
  description: {
2781
2788
  type: String,
2782
2789
  default: ""
@@ -2823,9 +2830,12 @@ const Au = /* @__PURE__ */ k(na, [["render", un], ["__scopeId", "data-v-a94f16a9
2823
2830
  key: 1,
2824
2831
  class: b(e.field_name)
2825
2832
  }, [
2826
- r("li", kn, [
2833
+ e.has_label_up ? (d(), u("div", kn, [
2834
+ r("label", $n, g(e.label_name), 1)
2835
+ ])) : f("", !0),
2836
+ r("li", Cn, [
2827
2837
  w(g(e.label_name) + " ", 1),
2828
- r("label", $n, [
2838
+ r("label", Sn, [
2829
2839
  O(r("input", {
2830
2840
  type: "checkbox",
2831
2841
  class: "sr-only peer",
@@ -2836,24 +2846,24 @@ const Au = /* @__PURE__ */ k(na, [["render", un], ["__scopeId", "data-v-a94f16a9
2836
2846
  ref_key: "input",
2837
2847
  ref: o,
2838
2848
  "onUpdate:modelValue": l[0] || (l[0] = (c) => a.value = c)
2839
- }, null, 8, Cn), [
2849
+ }, null, 8, Dn), [
2840
2850
  [ot, a.value]
2841
2851
  ]),
2842
- Sn
2852
+ On
2843
2853
  ])
2844
2854
  ]),
2845
- r("span", Dn, g(e.error_message), 1),
2846
- r("small", On, g(e.description), 1)
2855
+ r("span", Pn, g(e.error_message), 1),
2856
+ r("small", En, g(e.description), 1)
2847
2857
  ], 2))
2848
2858
  ], 64));
2849
2859
  }
2850
- }, Pn = { class: "font-bold ptext-lg dark:text-white" }, En = { class: "mt-3 mb-4" }, An = { class: "bg-blue-100 text-blue-800 text-sm font-medium mb-2 mt-2 me-2 px-2.5 py-0.5 rounded dark:bg-blue-900 dark:text-blue-300" }, jn = /* @__PURE__ */ r("hr", { class: "!opacity-100 bg-gray-200 border-0 dark:bg-gray-700" }, null, -1), Tn = ["name", "id", "value"], In = {
2860
+ }, jn = { class: "font-bold ptext-lg dark:text-white" }, An = { class: "mt-3 mb-4" }, Tn = { class: "bg-blue-100 text-blue-800 text-sm font-medium mb-2 mt-2 me-2 px-2.5 py-0.5 rounded dark:bg-blue-900 dark:text-blue-300" }, In = /* @__PURE__ */ r("hr", { class: "!opacity-100 bg-gray-200 border-0 dark:bg-gray-700" }, null, -1), Mn = ["name", "id", "value"], Nn = {
2851
2861
  key: 0,
2852
2862
  class: "dropdown"
2853
- }, Mn = { class: "focus:ring-blue-500 focus:border-blue-500 dark:border-gray-600 dark:focus:ring-blue-500 dark:focus:border-blue-500" }, Nn = { class: "relative showOptions" }, Vn = ["value", "placeholder"], Ln = { class: "text-gray-700 bg-white dark:border-strokedark dark:bg-boxdark dark:text-gray-200 !border-b !border-t-0 !border-r !border-l absolute w-full z-[999999999]" }, Bn = { class: "p-1" }, Gn = /* @__PURE__ */ r("label", {
2863
+ }, Vn = { class: "focus:ring-blue-500 focus:border-blue-500 dark:border-gray-600 dark:focus:ring-blue-500 dark:focus:border-blue-500" }, Ln = { class: "relative showOptions" }, Bn = ["value", "placeholder"], Gn = { class: "text-gray-700 bg-white dark:border-strokedark dark:bg-boxdark dark:text-gray-200 !border-b !border-t-0 !border-r !border-l absolute w-full z-[999999999]" }, Fn = { class: "p-1" }, Rn = /* @__PURE__ */ r("label", {
2854
2864
  for: "default-search",
2855
2865
  class: "mb-2 text-sm font-medium text-gray-900 sr-only dark:text-white"
2856
- }, "Search", -1), Fn = { class: "relative" }, Rn = /* @__PURE__ */ r("div", { class: "absolute inset-y-0 flex items-center pointer-events-none start-0 ps-3" }, [
2866
+ }, "Search", -1), Un = { class: "relative" }, qn = /* @__PURE__ */ r("div", { class: "absolute inset-y-0 flex items-center pointer-events-none start-0 ps-3" }, [
2857
2867
  /* @__PURE__ */ r("svg", {
2858
2868
  class: "w-4 h-4 text-gray-500 dark:text-gray-400",
2859
2869
  "aria-hidden": "true",
@@ -2869,22 +2879,22 @@ const Au = /* @__PURE__ */ k(na, [["render", un], ["__scopeId", "data-v-a94f16a9
2869
2879
  d: "m19 19-4-4m0-7A7 7 0 1 1 1 8a7 7 0 0 1 14 0Z"
2870
2880
  })
2871
2881
  ])
2872
- ], -1), Un = ["id"], qn = { class: "overflow-y-auto max-h-64" }, Hn = ["onClick", "onMousedown", "id"], zn = { class: "flex items-center py-2 pl-10 pr-4" }, Zn = {
2882
+ ], -1), Hn = ["id"], zn = { class: "overflow-y-auto max-h-64" }, Zn = ["onClick", "onMousedown", "id"], Kn = { class: "flex items-center py-2 pl-10 pr-4" }, Wn = {
2873
2883
  key: 0,
2874
2884
  class: "absolute flex items-center flex-shrink-0 w-4 h-4 text-green-500 left-2 dark:text-green-400",
2875
2885
  "aria-hidden": "true",
2876
2886
  xmlns: "http://www.w3.org/2000/svg",
2877
2887
  fill: "none",
2878
2888
  viewBox: "0 0 16 12"
2879
- }, Kn = /* @__PURE__ */ r("path", {
2889
+ }, Yn = /* @__PURE__ */ r("path", {
2880
2890
  stroke: "currentColor",
2881
2891
  "stroke-linecap": "round",
2882
2892
  "stroke-linejoin": "round",
2883
2893
  "stroke-width": "2",
2884
2894
  d: "M1 5.917 5.724 10.5 15 1.5"
2885
- }, null, -1), Wn = [
2886
- Kn
2887
- ], Yn = { class: "block mt-1 text-sm font-normal leading-5 text-red-500" }, Xn = { class: "block mt-1 text-sm font-normal leading-5 text-gray-500" }, Iu = {
2895
+ }, null, -1), Xn = [
2896
+ Yn
2897
+ ], Jn = { class: "block mt-1 text-sm font-normal leading-5 text-red-500" }, Qn = { class: "block mt-1 text-sm font-normal leading-5 text-gray-500" }, Nu = {
2888
2898
  __name: "GlDropdown",
2889
2899
  props: {
2890
2900
  modelValue: {
@@ -3045,11 +3055,11 @@ const Au = /* @__PURE__ */ k(na, [["render", un], ["__scopeId", "data-v-a94f16a9
3045
3055
  key: 0,
3046
3056
  class: b(e.field_name)
3047
3057
  }, [
3048
- r("h3", Pn, g(e.label_name), 1),
3049
- r("p", En, [
3050
- r("span", An, g((E = y.value) == null ? void 0 : E.name), 1)
3058
+ r("h3", jn, g(e.label_name), 1),
3059
+ r("p", An, [
3060
+ r("span", Tn, g((E = y.value) == null ? void 0 : E.name), 1)
3051
3061
  ]),
3052
- jn
3062
+ In
3053
3063
  ], 2)) : f("", !0),
3054
3064
  e.show ? f("", !0) : (d(), u("div", {
3055
3065
  key: 1,
@@ -3060,8 +3070,8 @@ const Au = /* @__PURE__ */ k(na, [["render", un], ["__scopeId", "data-v-a94f16a9
3060
3070
  name: e.field_name,
3061
3071
  id: e.field_name,
3062
3072
  value: (G = y.value) == null ? void 0 : G.id
3063
- }, null, 8, Tn),
3064
- e.options ? (d(), u("div", In, [
3073
+ }, null, 8, Mn),
3074
+ e.options ? (d(), u("div", Nn, [
3065
3075
  e.label_name ? (d(), u("label", {
3066
3076
  key: 0,
3067
3077
  class: b({
@@ -3070,68 +3080,68 @@ const Au = /* @__PURE__ */ k(na, [["render", un], ["__scopeId", "data-v-a94f16a9
3070
3080
  required: e.is_required
3071
3081
  })
3072
3082
  }, g(e.label_name), 3)) : f("", !0),
3073
- r("div", Mn, [
3074
- r("div", Nn, [
3083
+ r("div", Vn, [
3084
+ r("div", Ln, [
3075
3085
  r("input", {
3076
3086
  class: b([{
3077
3087
  "gl-input-form": e.error_message == "",
3078
3088
  "gl-input-form-invalid": e.error_message !== ""
3079
3089
  }, "pl-8 pr-2 showOptions"]),
3080
3090
  ref: e.field_name,
3081
- onClick: D[0] || (D[0] = (j) => re()),
3091
+ onClick: D[0] || (D[0] = (A) => re()),
3082
3092
  value: (ye = y.value) == null ? void 0 : ye.name,
3083
3093
  placeholder: e.placeholder,
3084
3094
  autocomplete: "off",
3085
3095
  readonly: ""
3086
- }, null, 10, Vn),
3096
+ }, null, 10, Bn),
3087
3097
  O(r("i", {
3088
- onClick: D[1] || (D[1] = V((j) => Xe(), ["stop"])),
3098
+ onClick: D[1] || (D[1] = V((A) => Xe(), ["stop"])),
3089
3099
  class: "absolute text-gray-500 cursor-pointer fas fa-times right-7 hover:text-gray-700 dark:hover:text-gray-800",
3090
3100
  style: { top: "13px" }
3091
3101
  }, null, 512), [
3092
3102
  [Z, te(y.value) && e.has_cancel]
3093
3103
  ]),
3094
3104
  r("i", {
3095
- onClick: D[2] || (D[2] = (j) => !l.value && re()),
3105
+ onClick: D[2] || (D[2] = (A) => !l.value && re()),
3096
3106
  class: b([l.value ? "fa-angle-up" : "fa-angle-down", "absolute text-xl text-gray-500 cursor-pointer fas right-2 hover:text-gray-700 dark:hover:text-gray-800 showOptions"]),
3097
3107
  style: { top: "11px" }
3098
3108
  }, null, 2)
3099
3109
  ]),
3100
- O(r("div", Ln, [
3101
- r("div", Bn, [
3102
- Gn,
3103
- r("div", Fn, [
3104
- Rn,
3110
+ O(r("div", Gn, [
3111
+ r("div", Fn, [
3112
+ Rn,
3113
+ r("div", Un, [
3114
+ qn,
3105
3115
  O(r("input", {
3106
3116
  type: "search",
3107
- "onUpdate:modelValue": D[3] || (D[3] = (j) => c.value = j),
3117
+ "onUpdate:modelValue": D[3] || (D[3] = (A) => c.value = A),
3108
3118
  ref: o.value,
3109
3119
  id: `${e.field_name}search${h.value}`,
3110
3120
  onKeydown: S,
3111
- onBlur: D[4] || (D[4] = (j) => pe()),
3121
+ onBlur: D[4] || (D[4] = (A) => pe()),
3112
3122
  autocomplete: "off",
3113
3123
  class: "block w-full p-2 text-sm text-gray-900 border rounded-lg outline-none border-frontend ps-10 bg-gray-50 focus:border-frontend dark:bg-gray-700 dark:border-frontenddark dark:placeholder-frontenddark dark:text-white dark:focus:border-frontenddark",
3114
3124
  placeholder: "Search ..."
3115
- }, null, 40, Un), [
3125
+ }, null, 40, Hn), [
3116
3126
  [L, c.value]
3117
3127
  ])
3118
3128
  ])
3119
3129
  ]),
3120
- r("div", qn, [
3121
- (d(!0), u(v, null, C(x.value, (j, se) => {
3130
+ r("div", zn, [
3131
+ (d(!0), u(v, null, C(x.value, (A, se) => {
3122
3132
  var _e;
3123
3133
  return d(), u("div", {
3124
3134
  class: b(["relative px-2 py-2 text-xs leading-4 text-gray-700 no-underline cursor-pointer dark:text-gray-200 hover:bg-gray-100 dark:hover:bg-gray-600 dark:hover:text-white", se + 1 == i.value ? "bg-gray-100 dark:bg-gray-600" : ""]),
3125
- onClick: (Je) => be(j),
3126
- onMousedown: (Je) => be(j),
3135
+ onClick: (Je) => be(A),
3136
+ onMousedown: (Je) => be(A),
3127
3137
  key: se,
3128
3138
  id: `${se + 1}${h.value}`
3129
3139
  }, [
3130
- r("div", zn, [
3131
- ((_e = y.value) == null ? void 0 : _e.id) === j.id ? (d(), u("svg", Zn, Wn)) : f("", !0),
3132
- r("span", null, g(j.name || j.id || "-"), 1)
3140
+ r("div", Kn, [
3141
+ ((_e = y.value) == null ? void 0 : _e.id) === A.id ? (d(), u("svg", Wn, Xn)) : f("", !0),
3142
+ r("span", null, g(A.name || A.id || "-"), 1)
3133
3143
  ])
3134
- ], 42, Hn);
3144
+ ], 42, Zn);
3135
3145
  }), 128))
3136
3146
  ])
3137
3147
  ], 512), [
@@ -3139,13 +3149,13 @@ const Au = /* @__PURE__ */ k(na, [["render", un], ["__scopeId", "data-v-a94f16a9
3139
3149
  ])
3140
3150
  ])
3141
3151
  ])) : f("", !0),
3142
- r("span", Yn, g(e.error_message), 1),
3143
- r("small", Xn, g(e.description), 1)
3152
+ r("span", Jn, g(e.error_message), 1),
3153
+ r("small", Qn, g(e.description), 1)
3144
3154
  ], 2))
3145
3155
  ], 64);
3146
3156
  };
3147
3157
  }
3148
- }, Jn = { class: "font-bold ptext-lg dark:text-white" }, Qn = ["id"], eo = /* @__PURE__ */ r("hr", { class: "!opacity-100 bg-gray-200 border-0 dark:bg-gray-700" }, null, -1), to = ["for"], ro = ["required", "name", "id", "type", "placeholder"], so = { class: "gl-span-form-error" }, ao = { class: "block mt-1 text-sm font-normal leading-5 text-gray-500" }, Mu = {
3158
+ }, eo = { class: "font-bold ptext-lg dark:text-white" }, to = ["id"], ro = /* @__PURE__ */ r("hr", { class: "!opacity-100 bg-gray-200 border-0 dark:bg-gray-700" }, null, -1), so = ["for"], ao = ["required", "name", "id", "type", "placeholder"], no = { class: "gl-span-form-error" }, oo = { class: "block mt-1 text-sm font-normal leading-5 text-gray-500" }, Vu = {
3149
3159
  __name: "GlTextarea",
3150
3160
  props: {
3151
3161
  is_required: {
@@ -3208,12 +3218,12 @@ const Au = /* @__PURE__ */ k(na, [["render", un], ["__scopeId", "data-v-a94f16a9
3208
3218
  key: 0,
3209
3219
  class: b(e.field_name)
3210
3220
  }, [
3211
- r("h3", Jn, g(e.label_name), 1),
3221
+ r("h3", eo, g(e.label_name), 1),
3212
3222
  r("p", {
3213
3223
  id: e.field_name,
3214
3224
  class: "mb-4 text-base text-gray-900 input_tr_show dark:text-white"
3215
- }, g(e.model_value), 9, Qn),
3216
- eo
3225
+ }, g(e.model_value), 9, to),
3226
+ ro
3217
3227
  ], 2)) : f("", !0),
3218
3228
  e.show ? f("", !0) : (d(), u("div", {
3219
3229
  key: 1,
@@ -3226,7 +3236,7 @@ const Au = /* @__PURE__ */ k(na, [["render", un], ["__scopeId", "data-v-a94f16a9
3226
3236
  required: e.is_required
3227
3237
  }),
3228
3238
  for: e.field_name
3229
- }, g(e.label_name), 11, to),
3239
+ }, g(e.label_name), 11, so),
3230
3240
  O(r("textarea", {
3231
3241
  required: e.is_required,
3232
3242
  name: e.field_name,
@@ -3242,15 +3252,15 @@ const Au = /* @__PURE__ */ k(na, [["render", un], ["__scopeId", "data-v-a94f16a9
3242
3252
  ref: a,
3243
3253
  rows: "4",
3244
3254
  placeholder: e.placeholder
3245
- }, null, 42, ro), [
3255
+ }, null, 42, ao), [
3246
3256
  [L, De(i)]
3247
3257
  ]),
3248
- r("span", so, g(e.error_message), 1),
3249
- r("small", ao, g(e.description), 1)
3258
+ r("span", no, g(e.error_message), 1),
3259
+ r("small", oo, g(e.description), 1)
3250
3260
  ], 2))
3251
3261
  ], 64));
3252
3262
  }
3253
- }, no = {
3263
+ }, lo = {
3254
3264
  emits: ["pagination-change-page"],
3255
3265
  props: {
3256
3266
  data: {
@@ -3355,14 +3365,14 @@ const Au = /* @__PURE__ */ k(na, [["render", un], ["__scopeId", "data-v-a94f16a9
3355
3365
  })
3356
3366
  });
3357
3367
  }
3358
- }, oo = {
3368
+ }, io = {
3359
3369
  compatConfig: {
3360
3370
  MODE: 3
3361
3371
  },
3362
3372
  inheritAttrs: !1,
3363
3373
  emits: ["pagination-change-page"],
3364
3374
  components: {
3365
- RenderlessPagination: no
3375
+ RenderlessPagination: lo
3366
3376
  },
3367
3377
  props: {
3368
3378
  data: {
@@ -3396,10 +3406,10 @@ const Au = /* @__PURE__ */ k(na, [["render", un], ["__scopeId", "data-v-a94f16a9
3396
3406
  },
3397
3407
  mounted() {
3398
3408
  }
3399
- }, lo = { class: "flex flex-col items-center" }, io = {
3409
+ }, uo = { class: "flex flex-col items-center" }, co = {
3400
3410
  key: 0,
3401
3411
  class: "text-sm text-gray-700 dark:text-gray-400"
3402
- }, uo = { class: "font-semibold text-gray-900 dark:text-white" }, co = { class: "font-semibold text-gray-900 dark:text-white" }, fo = { class: "font-semibold text-gray-900 dark:text-white" }, go = ["tabindex"], ho = /* @__PURE__ */ r("span", { class: "sr-only" }, "Previous", -1), mo = /* @__PURE__ */ r("svg", {
3412
+ }, fo = { class: "font-semibold text-gray-900 dark:text-white" }, go = { class: "font-semibold text-gray-900 dark:text-white" }, ho = { class: "font-semibold text-gray-900 dark:text-white" }, mo = ["tabindex"], bo = /* @__PURE__ */ r("span", { class: "sr-only" }, "Previous", -1), po = /* @__PURE__ */ r("svg", {
3403
3413
  class: "w-2.5 h-2.5 rtl:rotate-180",
3404
3414
  "aria-hidden": "true",
3405
3415
  xmlns: "http://www.w3.org/2000/svg",
@@ -3413,7 +3423,7 @@ const Au = /* @__PURE__ */ k(na, [["render", un], ["__scopeId", "data-v-a94f16a9
3413
3423
  "stroke-width": "2",
3414
3424
  d: "M5 1 1 5l4 4"
3415
3425
  })
3416
- ], -1), bo = ["aria-current"], po = ["tabindex"], yo = /* @__PURE__ */ r("span", { class: "sr-only" }, "Next", -1), _o = /* @__PURE__ */ r("svg", {
3426
+ ], -1), yo = ["aria-current"], _o = ["tabindex"], vo = /* @__PURE__ */ r("span", { class: "sr-only" }, "Next", -1), xo = /* @__PURE__ */ r("svg", {
3417
3427
  class: "w-2.5 h-2.5 rtl:rotate-180",
3418
3428
  "aria-hidden": "true",
3419
3429
  xmlns: "http://www.w3.org/2000/svg",
@@ -3428,7 +3438,7 @@ const Au = /* @__PURE__ */ k(na, [["render", un], ["__scopeId", "data-v-a94f16a9
3428
3438
  d: "m1 9 4-4-4-4"
3429
3439
  })
3430
3440
  ], -1);
3431
- function vo(e, t, s, n, o, a) {
3441
+ function wo(e, t, s, n, o, a) {
3432
3442
  const i = X("RenderlessPagination");
3433
3443
  return d(), K(i, {
3434
3444
  data: s.data,
@@ -3436,14 +3446,14 @@ function vo(e, t, s, n, o, a) {
3436
3446
  onPaginationChangePage: a.onPaginationChangePage
3437
3447
  }, {
3438
3448
  default: J((l) => [
3439
- r("div", lo, [
3440
- l.computed.total > l.computed.perPage ? (d(), u("span", io, [
3449
+ r("div", uo, [
3450
+ l.computed.total > l.computed.perPage ? (d(), u("span", co, [
3441
3451
  w(" Showing "),
3442
- r("span", uo, g(l.computed.from), 1),
3452
+ r("span", fo, g(l.computed.from), 1),
3443
3453
  w(" to "),
3444
- r("span", co, g(l.computed.to), 1),
3454
+ r("span", go, g(l.computed.to), 1),
3445
3455
  w(" of "),
3446
- r("span", fo, g(l.computed.total), 1),
3456
+ r("span", ho, g(l.computed.total), 1),
3447
3457
  w(" Entries ")
3448
3458
  ])) : f("", !0),
3449
3459
  l.computed.total > l.computed.perPage ? (d(), u("ul", W({ key: 1 }, e.$attrs, {
@@ -3465,10 +3475,10 @@ function vo(e, t, s, n, o, a) {
3465
3475
  tabindex: !l.computed.prevPageUrl && -1
3466
3476
  }, ae(l.prevButtonEvents, !0)), [
3467
3477
  T(e.$slots, "prev-nav", {}, () => [
3468
- ho,
3469
- mo
3478
+ bo,
3479
+ po
3470
3480
  ])
3471
- ], 16, go)
3481
+ ], 16, mo)
3472
3482
  ], 2)) : f("", !0),
3473
3483
  (d(!0), u(v, null, C(l.computed.pageRange, (c, h) => (d(), u("li", {
3474
3484
  class: b(["", { active: c == l.computed.currentPage }]),
@@ -3480,7 +3490,7 @@ function vo(e, t, s, n, o, a) {
3480
3490
  }, ae(l.pageButtonEvents(c), !0), {
3481
3491
  "aria-current": c == l.computed.currentPage ? "page" : null,
3482
3492
  class: c == l.computed.currentPage ? "z-10 flex items-center justify-center px-3 h-8 leading-tight text-blue-600 border border-blue-300 bg-blue-50 hover:bg-blue-100 hover:text-blue-700 dark:border-gray-700 dark:bg-gray-700 dark:text-white" : "flex items-center justify-center px-3 h-8 leading-tight text-gray-500 bg-white border border-gray-300 hover:bg-gray-100 hover:text-gray-700 dark:bg-gray-800 dark:border-gray-700 dark:text-gray-400 dark:hover:bg-gray-700 dark:hover:text-white"
3483
- }), g(c), 17, bo)
3493
+ }), g(c), 17, yo)
3484
3494
  ], 2))), 128)),
3485
3495
  l.computed.nextPageUrl || s.showDisabled ? (d(), u("li", {
3486
3496
  key: 1,
@@ -3493,10 +3503,10 @@ function vo(e, t, s, n, o, a) {
3493
3503
  tabindex: !l.computed.nextPageUrl && -1
3494
3504
  }, ae(l.nextButtonEvents, !0)), [
3495
3505
  T(e.$slots, "next-nav", {}, () => [
3496
- yo,
3497
- _o
3506
+ vo,
3507
+ xo
3498
3508
  ])
3499
- ], 16, po)
3509
+ ], 16, _o)
3500
3510
  ], 2)) : f("", !0)
3501
3511
  ], 16)) : f("", !0)
3502
3512
  ])
@@ -3504,8 +3514,8 @@ function vo(e, t, s, n, o, a) {
3504
3514
  _: 3
3505
3515
  }, 8, ["data", "limit", "onPaginationChangePage"]);
3506
3516
  }
3507
- const xo = /* @__PURE__ */ k(oo, [["render", vo]]), wo = {
3508
- components: { TailwindPagination: xo },
3517
+ const ko = /* @__PURE__ */ k(io, [["render", wo]]), $o = {
3518
+ components: { TailwindPagination: ko },
3509
3519
  props: {
3510
3520
  data: Array,
3511
3521
  columns: Array,
@@ -3584,10 +3594,10 @@ const xo = /* @__PURE__ */ k(oo, [["render", vo]]), wo = {
3584
3594
  this.isMounted && e !== t && this.GetItemLists();
3585
3595
  }
3586
3596
  }
3587
- }, ko = { class: "p-2" }, $o = { class: "flex flex-col flex-wrap pb-4 space-y-4 xl:flex-row xl:items-center xl:justify-between flex-column sm:space-y-0" }, Co = { class: "flex items-center gap-2" }, So = /* @__PURE__ */ r("span", { class: "font-medium" }, " Show ", -1), Do = { style: { "margin-top": "9px" } }, Oo = /* @__PURE__ */ r("span", { class: "font-medium" }, " Entries ", -1), Po = /* @__PURE__ */ r("label", {
3597
+ }, Co = { class: "p-2" }, So = { class: "flex flex-col flex-wrap pb-4 space-y-4 xl:flex-row xl:items-center xl:justify-between flex-column sm:space-y-0" }, Do = { class: "flex items-center gap-2" }, Oo = /* @__PURE__ */ r("span", { class: "font-medium" }, " Show ", -1), Po = { style: { "margin-top": "9px" } }, Eo = /* @__PURE__ */ r("span", { class: "font-medium" }, " Entries ", -1), jo = /* @__PURE__ */ r("label", {
3588
3598
  for: "table-search",
3589
3599
  class: "sr-only"
3590
- }, "Search", -1), Eo = { class: "relative" }, Ao = /* @__PURE__ */ r("div", { class: "absolute inset-y-0 left-0 flex items-center pointer-events-none rtl:inset-r-0 rtl:right-0 ps-3" }, [
3600
+ }, "Search", -1), Ao = { class: "relative" }, To = /* @__PURE__ */ r("div", { class: "absolute inset-y-0 left-0 flex items-center pointer-events-none rtl:inset-r-0 rtl:right-0 ps-3" }, [
3591
3601
  /* @__PURE__ */ r("svg", {
3592
3602
  class: "w-5 h-5 text-gray-500 dark:text-gray-400",
3593
3603
  "aria-hidden": "true",
@@ -3601,16 +3611,16 @@ const xo = /* @__PURE__ */ k(oo, [["render", vo]]), wo = {
3601
3611
  "clip-rule": "evenodd"
3602
3612
  })
3603
3613
  ])
3604
- ], -1), jo = { class: "overflow-auto rounded-lg dark:text-gray-400 dark:bg-gray-800" }, To = { class: "w-full h-full max-w-full overflow-hidden bg-white border-separate xl:overflow-auto lg:border-collapse border-spacing-y-3 lg:border-spacing-y-0 dark:border-strokedark dark:bg-boxdark" }, Io = { class: "hidden text-sm font-normal text-center text-gray-500 lg:table-header-group dark:border-strokedark bg-gray-50 dark:bg-gray-700 dark:text-gray-400" }, Mo = ["onClick"], No = {
3614
+ ], -1), Io = { class: "overflow-auto rounded-lg dark:text-gray-400 dark:bg-gray-800" }, Mo = { class: "w-full h-full max-w-full overflow-hidden bg-white border-separate xl:overflow-auto lg:border-collapse border-spacing-y-3 lg:border-spacing-y-0 dark:border-strokedark dark:bg-boxdark" }, No = { class: "hidden text-sm font-normal text-center text-gray-500 lg:table-header-group dark:border-strokedark bg-gray-50 dark:bg-gray-700 dark:text-gray-400" }, Vo = ["onClick"], Lo = {
3605
3615
  key: 0,
3606
3616
  class: "ml-2"
3607
- }, Vo = {
3617
+ }, Bo = {
3608
3618
  key: 0,
3609
3619
  class: "fa fa-arrow-up"
3610
- }, Lo = {
3620
+ }, Go = {
3611
3621
  key: 1,
3612
3622
  class: "fa fa-arrow-down"
3613
- }, Bo = { key: 0 }, Go = ["colspan"], Fo = /* @__PURE__ */ r("div", {
3623
+ }, Fo = { key: 0 }, Ro = ["colspan"], Uo = /* @__PURE__ */ r("div", {
3614
3624
  role: "status",
3615
3625
  class: "p-4 space-y-4 border border-gray-200 divide-y divide-gray-200 rounded shadow animate-pulse dark:divide-gray-700 md:p-6 dark:border-gray-700"
3616
3626
  }, [
@@ -3650,16 +3660,16 @@ const xo = /* @__PURE__ */ k(oo, [["render", vo]]), wo = {
3650
3660
  /* @__PURE__ */ r("div", { class: "h-3 bg-gray-300 rounded-full dark:bg-gray-700 w-12" })
3651
3661
  ]),
3652
3662
  /* @__PURE__ */ r("span", { class: "sr-only" }, "Loading...")
3653
- ], -1), Ro = [
3654
- Fo
3655
- ], Uo = ["data-label"], qo = { class: "overflow-auto max-h-40" }, Ho = { class: "flex items-center justify-between px-4 py-3 bg-white border-gray-200 sm:px-6 dark:text-gray-400 dark:bg-gray-800" };
3656
- function zo(e, t, s, n, o, a) {
3663
+ ], -1), qo = [
3664
+ Uo
3665
+ ], Ho = ["data-label"], zo = { class: "overflow-auto max-h-40" }, Zo = { class: "flex items-center justify-between px-4 py-3 bg-white border-gray-200 sm:px-6 dark:text-gray-400 dark:bg-gray-800" };
3666
+ function Ko(e, t, s, n, o, a) {
3657
3667
  const i = X("dropdown"), l = X("TailwindPagination");
3658
- return d(), u("div", ko, [
3659
- r("div", $o, [
3660
- r("div", Co, [
3661
- So,
3662
- r("div", Do, [
3668
+ return d(), u("div", Co, [
3669
+ r("div", So, [
3670
+ r("div", Do, [
3671
+ Oo,
3672
+ r("div", Po, [
3663
3673
  z(i, {
3664
3674
  has_cancel: !1,
3665
3675
  options: o.pageOptions,
@@ -3673,11 +3683,11 @@ function zo(e, t, s, n, o, a) {
3673
3683
  placeholder: "Please select an option"
3674
3684
  }, null, 8, ["options", "modelValue"])
3675
3685
  ]),
3676
- Oo
3686
+ Eo
3677
3687
  ]),
3678
- Po,
3679
- r("div", Eo, [
3680
- Ao,
3688
+ jo,
3689
+ r("div", Ao, [
3690
+ To,
3681
3691
  O(r("input", {
3682
3692
  type: "text",
3683
3693
  "onUpdate:modelValue": t[1] || (t[1] = (c) => o.search = c),
@@ -3689,9 +3699,9 @@ function zo(e, t, s, n, o, a) {
3689
3699
  ])
3690
3700
  ])
3691
3701
  ]),
3692
- r("div", jo, [
3693
- r("table", To, [
3694
- r("thead", Io, [
3702
+ r("div", Io, [
3703
+ r("table", Mo, [
3704
+ r("thead", No, [
3695
3705
  r("tr", null, [
3696
3706
  (d(!0), u(v, null, C(s.columns, (c, h) => (d(), u("th", {
3697
3707
  key: h,
@@ -3699,17 +3709,17 @@ function zo(e, t, s, n, o, a) {
3699
3709
  class: "w-full px-4 py-2 lg:w-2/12"
3700
3710
  }, [
3701
3711
  w(g(c.field_label) + " ", 1),
3702
- o.sortField === c.field_name ? (d(), u("span", No, [
3703
- o.sortOrder === "asc" ? (d(), u("i", Vo)) : (d(), u("i", Lo))
3712
+ o.sortField === c.field_name ? (d(), u("span", Lo, [
3713
+ o.sortOrder === "asc" ? (d(), u("i", Bo)) : (d(), u("i", Go))
3704
3714
  ])) : f("", !0)
3705
- ], 8, Mo))), 128))
3715
+ ], 8, Vo))), 128))
3706
3716
  ])
3707
3717
  ]),
3708
3718
  r("tbody", null, [
3709
- o.isLoading ? (d(), u("tr", Bo, [
3719
+ o.isLoading ? (d(), u("tr", Fo, [
3710
3720
  r("td", {
3711
3721
  colspan: s.columns.length
3712
- }, Ro, 8, Go)
3722
+ }, qo, 8, Ro)
3713
3723
  ])) : f("", !0),
3714
3724
  o.isLoading ? f("", !0) : (d(!0), u(v, { key: 1 }, C(o.itemLists.data, (c, h) => (d(), u("tr", {
3715
3725
  key: h,
@@ -3720,7 +3730,7 @@ function zo(e, t, s, n, o, a) {
3720
3730
  "data-label": m.field_label,
3721
3731
  class: "text-pretty before:content-[attr(data-label)] before:font-bold lg:before:content-none flex md:flex-row flex-col justify-between gap-2 lg:table-cell py-4 px-5 lg:py-2.5 lg:px-4 border dark:border-gray-700"
3722
3732
  }, [
3723
- r("div", qo, [
3733
+ r("div", zo, [
3724
3734
  m.tdComp ? (d(), K(oe(a.forDynCompIs(m.tdComp)), {
3725
3735
  key: 0,
3726
3736
  row: c,
@@ -3733,12 +3743,12 @@ function zo(e, t, s, n, o, a) {
3733
3743
  w(g(c[m.field_name]), 1)
3734
3744
  ], 64))
3735
3745
  ])
3736
- ], 8, Uo))), 128))
3746
+ ], 8, Ho))), 128))
3737
3747
  ]))), 128))
3738
3748
  ])
3739
3749
  ])
3740
3750
  ]),
3741
- r("div", Ho, [
3751
+ r("div", Zo, [
3742
3752
  z(l, {
3743
3753
  class: "mt-3 mb-0",
3744
3754
  data: o.itemLists,
@@ -3750,7 +3760,7 @@ function zo(e, t, s, n, o, a) {
3750
3760
  ])
3751
3761
  ]);
3752
3762
  }
3753
- const Nu = /* @__PURE__ */ k(wo, [["render", zo]]), Zo = {
3763
+ const Lu = /* @__PURE__ */ k($o, [["render", Ko]]), Wo = {
3754
3764
  components: {},
3755
3765
  props: {
3756
3766
  data: Array,
@@ -3830,10 +3840,10 @@ const Nu = /* @__PURE__ */ k(wo, [["render", zo]]), Zo = {
3830
3840
  e >= 1 && e <= this.totalPages && (this.currentPage = e);
3831
3841
  }
3832
3842
  }
3833
- }, Ko = { class: "p-2" }, Wo = { class: "flex flex-wrap pb-4 space-y-4 md:items-center md:justify-between flex-column sm:flex-row sm:space-y-0" }, Yo = { class: "flex items-center gap-2" }, Xo = /* @__PURE__ */ r("span", { class: "font-medium" }, " Show ", -1), Jo = { style: { "margin-top": "9px" } }, Qo = /* @__PURE__ */ r("span", { class: "font-medium" }, " Entries ", -1), el = /* @__PURE__ */ r("label", {
3843
+ }, Yo = { class: "p-2" }, Xo = { class: "flex flex-wrap pb-4 space-y-4 md:items-center md:justify-between flex-column sm:flex-row sm:space-y-0" }, Jo = { class: "flex items-center gap-2" }, Qo = /* @__PURE__ */ r("span", { class: "font-medium" }, " Show ", -1), el = { style: { "margin-top": "9px" } }, tl = /* @__PURE__ */ r("span", { class: "font-medium" }, " Entries ", -1), rl = /* @__PURE__ */ r("label", {
3834
3844
  for: "table-search",
3835
3845
  class: "sr-only"
3836
- }, "Search", -1), tl = { class: "relative" }, rl = /* @__PURE__ */ r("div", { class: "absolute inset-y-0 left-0 flex items-center pointer-events-none rtl:inset-r-0 rtl:right-0 ps-3" }, [
3846
+ }, "Search", -1), sl = { class: "relative" }, al = /* @__PURE__ */ r("div", { class: "absolute inset-y-0 left-0 flex items-center pointer-events-none rtl:inset-r-0 rtl:right-0 ps-3" }, [
3837
3847
  /* @__PURE__ */ r("svg", {
3838
3848
  class: "w-5 h-5 text-gray-500 dark:text-gray-400",
3839
3849
  "aria-hidden": "true",
@@ -3847,19 +3857,19 @@ const Nu = /* @__PURE__ */ k(wo, [["render", zo]]), Zo = {
3847
3857
  "clip-rule": "evenodd"
3848
3858
  })
3849
3859
  ])
3850
- ], -1), sl = { class: "overflow-auto rounded-lg dark:text-gray-400 dark:bg-gray-800" }, al = { class: "w-full h-full max-w-full overflow-hidden bg-white border-separate xl:overflow-auto lg:border-collapse border-spacing-y-3 lg:border-spacing-y-0 dark:border-strokedark dark:bg-boxdark" }, nl = { class: "hidden text-sm font-normal text-center text-gray-700 lg:table-header-group dark:border-strokedark bg-gray-50 dark:bg-gray-700 dark:text-gray-400" }, ol = ["onClick"], ll = {
3860
+ ], -1), nl = { class: "overflow-auto rounded-lg dark:text-gray-400 dark:bg-gray-800" }, ol = { class: "w-full h-full max-w-full overflow-hidden bg-white border-separate xl:overflow-auto lg:border-collapse border-spacing-y-3 lg:border-spacing-y-0 dark:border-strokedark dark:bg-boxdark" }, ll = { class: "hidden text-sm font-normal text-center text-gray-700 lg:table-header-group dark:border-strokedark bg-gray-50 dark:bg-gray-700 dark:text-gray-400" }, il = ["onClick"], dl = {
3851
3861
  key: 0,
3852
3862
  class: "ml-2"
3853
- }, il = {
3863
+ }, ul = {
3854
3864
  key: 0,
3855
3865
  class: "fa fa-arrow-up"
3856
- }, dl = {
3866
+ }, cl = {
3857
3867
  key: 1,
3858
3868
  class: "fa fa-arrow-down"
3859
- }, ul = ["data-label"], cl = ["innerHTML"], fl = {
3869
+ }, fl = ["data-label"], gl = ["innerHTML"], hl = {
3860
3870
  key: 0,
3861
3871
  class: "flex items-center justify-between px-4 py-3 bg-white border-gray-200 sm:px-6 dark:text-gray-400 dark:bg-gray-800"
3862
- }, gl = { class: "flex justify-between flex-1 sm:hidden" }, hl = ["disabled"], ml = ["disabled"], bl = { class: "hidden sm:flex sm:flex-1 sm:items-center sm:justify-between" }, pl = { class: "text-sm text-gray-700 dark:text-gray-400" }, yl = { class: "font-medium" }, _l = { class: "font-medium" }, vl = { class: "font-medium" }, xl = { "aria-label": "Page navigation" }, wl = { class: "flex items-center h-8 -space-x-px text-sm" }, kl = ["disabled"], $l = /* @__PURE__ */ r("span", { class: "sr-only" }, "Previous", -1), Cl = /* @__PURE__ */ r("svg", {
3872
+ }, ml = { class: "flex justify-between flex-1 sm:hidden" }, bl = ["disabled"], pl = ["disabled"], yl = { class: "hidden sm:flex sm:flex-1 sm:items-center sm:justify-between" }, _l = { class: "text-sm text-gray-700 dark:text-gray-400" }, vl = { class: "font-medium" }, xl = { class: "font-medium" }, wl = { class: "font-medium" }, kl = { "aria-label": "Page navigation" }, $l = { class: "flex items-center h-8 -space-x-px text-sm" }, Cl = ["disabled"], Sl = /* @__PURE__ */ r("span", { class: "sr-only" }, "Previous", -1), Dl = /* @__PURE__ */ r("svg", {
3863
3873
  class: "w-2.5 h-2.5 rtl:rotate-180",
3864
3874
  "aria-hidden": "true",
3865
3875
  xmlns: "http://www.w3.org/2000/svg",
@@ -3873,10 +3883,10 @@ const Nu = /* @__PURE__ */ k(wo, [["render", zo]]), Zo = {
3873
3883
  "stroke-width": "2",
3874
3884
  d: "M5 1 1 5l4 4"
3875
3885
  })
3876
- ], -1), Sl = [
3877
- $l,
3878
- Cl
3879
- ], Dl = ["onClick"], Ol = ["onClick"], Pl = ["disabled"], El = /* @__PURE__ */ r("span", { class: "sr-only" }, "Next", -1), Al = /* @__PURE__ */ r("svg", {
3886
+ ], -1), Ol = [
3887
+ Sl,
3888
+ Dl
3889
+ ], Pl = ["onClick"], El = ["onClick"], jl = ["disabled"], Al = /* @__PURE__ */ r("span", { class: "sr-only" }, "Next", -1), Tl = /* @__PURE__ */ r("svg", {
3880
3890
  class: "w-2.5 h-2.5 rtl:rotate-180",
3881
3891
  "aria-hidden": "true",
3882
3892
  xmlns: "http://www.w3.org/2000/svg",
@@ -3890,17 +3900,17 @@ const Nu = /* @__PURE__ */ k(wo, [["render", zo]]), Zo = {
3890
3900
  "stroke-width": "2",
3891
3901
  d: "m1 9 4-4-4-4"
3892
3902
  })
3893
- ], -1), jl = [
3894
- El,
3895
- Al
3903
+ ], -1), Il = [
3904
+ Al,
3905
+ Tl
3896
3906
  ];
3897
- function Tl(e, t, s, n, o, a) {
3907
+ function Ml(e, t, s, n, o, a) {
3898
3908
  const i = X("dropdown");
3899
- return d(), u("div", Ko, [
3900
- r("div", Wo, [
3901
- r("div", Yo, [
3902
- Xo,
3903
- r("div", Jo, [
3909
+ return d(), u("div", Yo, [
3910
+ r("div", Xo, [
3911
+ r("div", Jo, [
3912
+ Qo,
3913
+ r("div", el, [
3904
3914
  z(i, {
3905
3915
  has_cancel: !1,
3906
3916
  options: o.showNoOfEntries,
@@ -3914,11 +3924,11 @@ function Tl(e, t, s, n, o, a) {
3914
3924
  placeholder: "Please select an option"
3915
3925
  }, null, 8, ["options", "modelValue"])
3916
3926
  ]),
3917
- Qo
3927
+ tl
3918
3928
  ]),
3919
- el,
3920
- r("div", tl, [
3921
- rl,
3929
+ rl,
3930
+ r("div", sl, [
3931
+ al,
3922
3932
  O(r("input", {
3923
3933
  type: "text",
3924
3934
  "onUpdate:modelValue": t[1] || (t[1] = (l) => o.search = l),
@@ -3929,9 +3939,9 @@ function Tl(e, t, s, n, o, a) {
3929
3939
  ])
3930
3940
  ])
3931
3941
  ]),
3932
- r("div", sl, [
3933
- r("table", al, [
3934
- r("thead", nl, [
3942
+ r("div", nl, [
3943
+ r("table", ol, [
3944
+ r("thead", ll, [
3935
3945
  r("tr", null, [
3936
3946
  (d(!0), u(v, null, C(s.columns, (l, c) => (d(), u("th", {
3937
3947
  key: c,
@@ -3939,10 +3949,10 @@ function Tl(e, t, s, n, o, a) {
3939
3949
  class: "w-full px-4 py-2 lg:w-2/12"
3940
3950
  }, [
3941
3951
  w(g(l) + " ", 1),
3942
- o.sortKey === l ? (d(), u("span", ll, [
3943
- o.sortOrder === "asc" ? (d(), u("i", il)) : (d(), u("i", dl))
3952
+ o.sortKey === l ? (d(), u("span", dl, [
3953
+ o.sortOrder === "asc" ? (d(), u("i", ul)) : (d(), u("i", cl))
3944
3954
  ])) : f("", !0)
3945
- ], 8, ol))), 128))
3955
+ ], 8, il))), 128))
3946
3956
  ])
3947
3957
  ]),
3948
3958
  r("tbody", null, [
@@ -3958,49 +3968,49 @@ function Tl(e, t, s, n, o, a) {
3958
3968
  r("p", {
3959
3969
  class: "text-pretty",
3960
3970
  innerHTML: l[m]
3961
- }, null, 8, cl)
3962
- ], 8, ul))), 128))
3971
+ }, null, 8, gl)
3972
+ ], 8, fl))), 128))
3963
3973
  ]))), 128))
3964
3974
  ])
3965
3975
  ])
3966
3976
  ]),
3967
- a.paginatedData.length > 0 ? (d(), u("div", fl, [
3968
- r("div", gl, [
3977
+ a.paginatedData.length > 0 ? (d(), u("div", hl, [
3978
+ r("div", ml, [
3969
3979
  r("a", {
3970
3980
  href: "#",
3971
3981
  onClick: t[2] || (t[2] = (...l) => a.previousPage && a.previousPage(...l)),
3972
3982
  disabled: o.currentPage === 1,
3973
3983
  class: "relative inline-flex items-center px-4 py-2 text-sm font-medium text-gray-700 bg-white border border-gray-300 rounded-md hover:bg-gray-50"
3974
- }, "Previous", 8, hl),
3984
+ }, "Previous", 8, bl),
3975
3985
  r("a", {
3976
3986
  href: "#",
3977
3987
  onClick: t[3] || (t[3] = (...l) => a.nextPage && a.nextPage(...l)),
3978
3988
  disabled: o.currentPage === a.totalPages,
3979
3989
  class: "relative inline-flex items-center px-4 py-2 ml-3 text-sm font-medium text-gray-700 bg-white border border-gray-300 rounded-md hover:bg-gray-50"
3980
- }, "Next", 8, ml)
3990
+ }, "Next", 8, pl)
3981
3991
  ]),
3982
- r("div", bl, [
3992
+ r("div", yl, [
3983
3993
  r("div", null, [
3984
- r("p", pl, [
3994
+ r("p", _l, [
3985
3995
  w(" Showing "),
3986
- r("span", yl, g(a.firstItemIndex), 1),
3996
+ r("span", vl, g(a.firstItemIndex), 1),
3987
3997
  w(" to "),
3988
- r("span", _l, g(a.lastItemIndex), 1),
3998
+ r("span", xl, g(a.lastItemIndex), 1),
3989
3999
  w(" of "),
3990
- r("span", vl, g(a.filteredData.length), 1),
4000
+ r("span", wl, g(a.filteredData.length), 1),
3991
4001
  w(" entries ")
3992
4002
  ])
3993
4003
  ]),
3994
4004
  r("div", null, [
3995
- r("nav", xl, [
3996
- r("ul", wl, [
4005
+ r("nav", kl, [
4006
+ r("ul", $l, [
3997
4007
  r("li", null, [
3998
4008
  r("a", {
3999
4009
  href: "#",
4000
4010
  onClick: t[4] || (t[4] = (...l) => a.previousPage && a.previousPage(...l)),
4001
4011
  disabled: o.currentPage === 1,
4002
4012
  class: "flex items-center justify-center h-8 px-3 leading-tight text-gray-500 bg-white border border-gray-300 ms-0 border-e-0 rounded-s-lg hover:bg-gray-100 hover:text-gray-700 dark:bg-gray-800 dark:border-gray-700 dark:text-gray-400 dark:hover:bg-gray-700 dark:hover:text-white"
4003
- }, Sl, 8, kl)
4013
+ }, Ol, 8, Cl)
4004
4014
  ]),
4005
4015
  (d(!0), u(v, null, C(a.displayedPageNumbers, (l) => (d(), u(v, { key: l }, [
4006
4016
  r("li", null, [
@@ -4009,7 +4019,7 @@ function Tl(e, t, s, n, o, a) {
4009
4019
  href: "#",
4010
4020
  onClick: (c) => a.goToPage(l),
4011
4021
  class: "flex items-center justify-center h-8 px-3 leading-tight text-gray-500 bg-white border border-gray-300 hover:bg-gray-100 hover:text-gray-700 dark:bg-gray-800 dark:border-gray-700 dark:text-gray-400 dark:hover:bg-gray-700 dark:hover:text-white"
4012
- }, g(l), 9, Dl)) : f("", !0)
4022
+ }, g(l), 9, Pl)) : f("", !0)
4013
4023
  ]),
4014
4024
  r("li", null, [
4015
4025
  o.currentPage === l ? (d(), u("a", {
@@ -4018,7 +4028,7 @@ function Tl(e, t, s, n, o, a) {
4018
4028
  onClick: (c) => a.goToPage(l),
4019
4029
  "aria-current": "page",
4020
4030
  class: "z-10 flex items-center justify-center h-8 px-3 leading-tight text-blue-600 border border-blue-300 bg-blue-50 hover:bg-blue-100 hover:text-blue-700 dark:border-gray-700 dark:bg-gray-700 dark:text-white"
4021
- }, g(l), 9, Ol)) : f("", !0)
4031
+ }, g(l), 9, El)) : f("", !0)
4022
4032
  ])
4023
4033
  ], 64))), 128)),
4024
4034
  r("li", null, [
@@ -4027,7 +4037,7 @@ function Tl(e, t, s, n, o, a) {
4027
4037
  onClick: t[5] || (t[5] = (...l) => a.nextPage && a.nextPage(...l)),
4028
4038
  disabled: o.currentPage === a.totalPages,
4029
4039
  class: "flex items-center justify-center h-8 px-3 leading-tight text-gray-500 bg-white border border-gray-300 rounded-e-lg hover:bg-gray-100 hover:text-gray-700 dark:bg-gray-800 dark:border-gray-700 dark:text-gray-400 dark:hover:bg-gray-700 dark:hover:text-white"
4030
- }, jl, 8, Pl)
4040
+ }, Il, 8, jl)
4031
4041
  ])
4032
4042
  ])
4033
4043
  ])
@@ -4036,13 +4046,13 @@ function Tl(e, t, s, n, o, a) {
4036
4046
  ])) : f("", !0)
4037
4047
  ]);
4038
4048
  }
4039
- const Vu = /* @__PURE__ */ k(Zo, [["render", Tl]]), Il = {
4049
+ const Bu = /* @__PURE__ */ k(Wo, [["render", Ml]]), Nl = {
4040
4050
  class: "flex items-center p-4 text-gray-500 bg-white rounded-lg shadow dark:bg-gray-800 dark:text-gray-400",
4041
4051
  role: "alert"
4042
- }, Ml = {
4052
+ }, Vl = {
4043
4053
  key: 0,
4044
4054
  class: "inline-flex items-center justify-center flex-shrink-0 w-8 h-8 text-green-500 bg-green-100 rounded-lg dark:bg-green-800 dark:text-green-200"
4045
- }, Nl = /* @__PURE__ */ r("svg", {
4055
+ }, Ll = /* @__PURE__ */ r("svg", {
4046
4056
  class: "w-5 h-5",
4047
4057
  "aria-hidden": "true",
4048
4058
  xmlns: "http://www.w3.org/2000/svg",
@@ -4050,13 +4060,13 @@ const Vu = /* @__PURE__ */ k(Zo, [["render", Tl]]), Il = {
4050
4060
  viewBox: "0 0 20 20"
4051
4061
  }, [
4052
4062
  /* @__PURE__ */ r("path", { d: "M10 .5a9.5 9.5 0 1 0 9.5 9.5A9.51 9.51 0 0 0 10 .5Zm3.707 8.207-4 4a1 1 0 0 1-1.414 0l-2-2a1 1 0 0 1 1.414-1.414L9 10.586l3.293-3.293a1 1 0 0 1 1.414 1.414Z" })
4053
- ], -1), Vl = /* @__PURE__ */ r("span", { class: "sr-only" }, "Check icon", -1), Ll = [
4054
- Nl,
4055
- Vl
4056
- ], Bl = {
4063
+ ], -1), Bl = /* @__PURE__ */ r("span", { class: "sr-only" }, "Check icon", -1), Gl = [
4064
+ Ll,
4065
+ Bl
4066
+ ], Fl = {
4057
4067
  key: 1,
4058
4068
  class: "inline-flex items-center justify-center flex-shrink-0 w-8 h-8 text-red-500 bg-red-100 rounded-lg dark:bg-red-800 dark:text-red-200"
4059
- }, Gl = /* @__PURE__ */ r("svg", {
4069
+ }, Rl = /* @__PURE__ */ r("svg", {
4060
4070
  class: "w-5 h-5",
4061
4071
  "aria-hidden": "true",
4062
4072
  xmlns: "http://www.w3.org/2000/svg",
@@ -4064,13 +4074,13 @@ const Vu = /* @__PURE__ */ k(Zo, [["render", Tl]]), Il = {
4064
4074
  viewBox: "0 0 20 20"
4065
4075
  }, [
4066
4076
  /* @__PURE__ */ r("path", { d: "M10 .5a9.5 9.5 0 1 0 9.5 9.5A9.51 9.51 0 0 0 10 .5Zm3.707 11.793a1 1 0 1 1-1.414 1.414L10 11.414l-2.293 2.293a1 1 0 0 1-1.414-1.414L8.586 10 6.293 7.707a1 1 0 0 1 1.414-1.414L10 8.586l2.293-2.293a1 1 0 0 1 1.414 1.414L11.414 10l2.293 2.293Z" })
4067
- ], -1), Fl = /* @__PURE__ */ r("span", { class: "sr-only" }, "Error icon", -1), Rl = [
4068
- Gl,
4069
- Fl
4070
- ], Ul = {
4077
+ ], -1), Ul = /* @__PURE__ */ r("span", { class: "sr-only" }, "Error icon", -1), ql = [
4078
+ Rl,
4079
+ Ul
4080
+ ], Hl = {
4071
4081
  key: 2,
4072
4082
  class: "inline-flex items-center justify-center flex-shrink-0 w-8 h-8 text-orange-500 bg-orange-100 rounded-lg dark:bg-orange-700 dark:text-orange-200"
4073
- }, ql = /* @__PURE__ */ r("svg", {
4083
+ }, zl = /* @__PURE__ */ r("svg", {
4074
4084
  class: "w-5 h-5",
4075
4085
  "aria-hidden": "true",
4076
4086
  xmlns: "http://www.w3.org/2000/svg",
@@ -4078,10 +4088,10 @@ const Vu = /* @__PURE__ */ k(Zo, [["render", Tl]]), Il = {
4078
4088
  viewBox: "0 0 20 20"
4079
4089
  }, [
4080
4090
  /* @__PURE__ */ r("path", { d: "M10 .5a9.5 9.5 0 1 0 9.5 9.5A9.51 9.51 0 0 0 10 .5ZM10 15a1 1 0 1 1 0-2 1 1 0 0 1 0 2Zm1-4a1 1 0 0 1-2 0V6a1 1 0 0 1 2 0v5Z" })
4081
- ], -1), Hl = /* @__PURE__ */ r("span", { class: "sr-only" }, "Warning icon", -1), zl = [
4082
- ql,
4083
- Hl
4084
- ], Zl = { class: "ml-3 text-sm font-normal" }, Kl = /* @__PURE__ */ r("span", { class: "sr-only" }, "Close", -1), Wl = /* @__PURE__ */ r("svg", {
4091
+ ], -1), Zl = /* @__PURE__ */ r("span", { class: "sr-only" }, "Warning icon", -1), Kl = [
4092
+ zl,
4093
+ Zl
4094
+ ], Wl = { class: "ml-3 text-sm font-normal" }, Yl = /* @__PURE__ */ r("span", { class: "sr-only" }, "Close", -1), Xl = /* @__PURE__ */ r("svg", {
4085
4095
  "aria-hidden": "true",
4086
4096
  class: "w-5 h-5",
4087
4097
  fill: "currentColor",
@@ -4093,10 +4103,10 @@ const Vu = /* @__PURE__ */ k(Zo, [["render", Tl]]), Il = {
4093
4103
  d: "M4.293 4.293a1 1 0 011.414 0L10 8.586l4.293-4.293a1 1 0 111.414 1.414L11.414 10l4.293 4.293a1 1 0 01-1.414 1.414L10 11.414l-4.293 4.293a1 1 0 01-1.414-1.414L8.586 10 4.293 5.707a1 1 0 010-1.414z",
4094
4104
  "clip-rule": "evenodd"
4095
4105
  })
4096
- ], -1), Yl = [
4097
- Kl,
4098
- Wl
4099
- ], Xl = {
4106
+ ], -1), Jl = [
4107
+ Yl,
4108
+ Xl
4109
+ ], Ql = {
4100
4110
  __name: "ToastListItem",
4101
4111
  props: {
4102
4112
  message: String,
@@ -4116,23 +4126,23 @@ const Vu = /* @__PURE__ */ k(Zo, [["render", Tl]]), Il = {
4116
4126
  setTimeout(() => n("remove"), s.duration);
4117
4127
  });
4118
4128
  const n = t;
4119
- return (o, a) => (d(), u("div", Il, [
4120
- s.type === "success" ? (d(), u("div", Ml, Ll)) : f("", !0),
4121
- s.type === "error" ? (d(), u("div", Bl, Rl)) : f("", !0),
4122
- s.type === "warning" ? (d(), u("div", Ul, zl)) : f("", !0),
4123
- r("div", Zl, g(s.message), 1),
4129
+ return (o, a) => (d(), u("div", Nl, [
4130
+ s.type === "success" ? (d(), u("div", Vl, Gl)) : f("", !0),
4131
+ s.type === "error" ? (d(), u("div", Fl, ql)) : f("", !0),
4132
+ s.type === "warning" ? (d(), u("div", Hl, Kl)) : f("", !0),
4133
+ r("div", Wl, g(s.message), 1),
4124
4134
  r("button", {
4125
4135
  onClick: a[0] || (a[0] = (i) => n("remove")),
4126
4136
  type: "button",
4127
4137
  class: "-mx-1.5 -my-1.5 ml-auto inline-flex h-8 w-8 rounded-lg bg-white p-1.5 text-gray-400 hover:bg-gray-100 hover:text-gray-900 focus:ring-2 focus:ring-gray-300 dark:bg-gray-800 dark:text-gray-500 dark:hover:bg-gray-700 dark:hover:text-white",
4128
4138
  "data-dismiss-target": "#toast-default",
4129
4139
  "aria-label": "Close"
4130
- }, Yl)
4140
+ }, Jl)
4131
4141
  ]));
4132
4142
  }
4133
4143
  }, de = Se({
4134
4144
  items: []
4135
- }), Jl = {
4145
+ }), ei = {
4136
4146
  add(e) {
4137
4147
  de.items.unshift({
4138
4148
  key: Symbol(),
@@ -4146,8 +4156,8 @@ const Vu = /* @__PURE__ */ k(Zo, [["render", Tl]]), Il = {
4146
4156
  }
4147
4157
  }, $e = {
4148
4158
  state: de,
4149
- methods: Jl
4150
- }, Lu = {
4159
+ methods: ei
4160
+ }, Gu = {
4151
4161
  __name: "GlToastList",
4152
4162
  setup(e) {
4153
4163
  function t(s) {
@@ -4162,7 +4172,7 @@ const Vu = /* @__PURE__ */ k(Zo, [["render", Tl]]), Il = {
4162
4172
  class: "fixed z-50 w-full max-w-xs space-y-4 top-4 right-4"
4163
4173
  }, {
4164
4174
  default: J(() => [
4165
- (d(!0), u(v, null, C(De($e).state.items, (o, a) => (d(), K(Xl, {
4175
+ (d(!0), u(v, null, C(De($e).state.items, (o, a) => (d(), K(Ql, {
4166
4176
  key: o.key,
4167
4177
  message: o.message,
4168
4178
  type: o.type,
@@ -4173,10 +4183,10 @@ const Vu = /* @__PURE__ */ k(Zo, [["render", Tl]]), Il = {
4173
4183
  _: 1
4174
4184
  }));
4175
4185
  }
4176
- }, Ql = {
4186
+ }, ti = {
4177
4187
  key: 0,
4178
4188
  class: "flex justify-center"
4179
- }, ei = /* @__PURE__ */ r("svg", {
4189
+ }, ri = /* @__PURE__ */ r("svg", {
4180
4190
  class: "w-5 h-5",
4181
4191
  "aria-hidden": "true",
4182
4192
  xmlns: "http://www.w3.org/2000/svg",
@@ -4184,12 +4194,12 @@ const Vu = /* @__PURE__ */ k(Zo, [["render", Tl]]), Il = {
4184
4194
  viewBox: "0 0 4 15"
4185
4195
  }, [
4186
4196
  /* @__PURE__ */ r("path", { d: "M3.5 1.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Zm0 6.041a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Zm0 5.959a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Z" })
4187
- ], -1), ti = [
4188
- ei
4189
- ], ri = { class: "absolute right-0 z-10 mt-5 origin-top-right bg-white divide-y divide-gray-100 rounded-lg shadow w-44 dark:bg-gray-700 dark:divide-gray-600" }, si = {
4197
+ ], -1), si = [
4198
+ ri
4199
+ ], ai = { class: "absolute right-0 z-10 mt-5 origin-top-right bg-white divide-y divide-gray-100 rounded-lg shadow w-44 dark:bg-gray-700 dark:divide-gray-600" }, ni = {
4190
4200
  class: "py-2 text-sm text-gray-700 dark:text-gray-200",
4191
4201
  "aria-labelledby": "dropdownDividerButton"
4192
- }, ai = { key: 0 }, ni = ["href"], oi = /* @__PURE__ */ r("i", { class: "mr-2 fa-solid fa-list-ul opacity-80" }, null, -1), li = { key: 1 }, ii = /* @__PURE__ */ r("i", { class: "mr-2 fa-solid fa-trash-can opacity-80" }, null, -1), Bu = {
4202
+ }, oi = { key: 0 }, li = ["href"], ii = /* @__PURE__ */ r("i", { class: "mr-2 fa-solid fa-list-ul opacity-80" }, null, -1), di = { key: 1 }, ui = /* @__PURE__ */ r("i", { class: "mr-2 fa-solid fa-trash-can opacity-80" }, null, -1), Fu = {
4193
4203
  __name: "DatatableAction",
4194
4204
  props: {
4195
4205
  field: {
@@ -4215,7 +4225,7 @@ const Vu = /* @__PURE__ */ k(Zo, [["render", Tl]]), Il = {
4215
4225
  },
4216
4226
  emits: ["deleteAction"],
4217
4227
  setup(e, { emit: t }) {
4218
- const s = Ae(), n = e, o = $(!1), a = $(!1), i = () => {
4228
+ const s = je(), n = e, o = $(!1), a = $(!1), i = () => {
4219
4229
  o.value = !1;
4220
4230
  }, l = () => {
4221
4231
  o.value = !0;
@@ -4242,30 +4252,30 @@ const Vu = /* @__PURE__ */ k(Zo, [["render", Tl]]), Il = {
4242
4252
  onConfirmDelete: y,
4243
4253
  onCancelDelete: c
4244
4254
  }, null, 8, ["isOpen"]),
4245
- e.row && x.can(`edit_${e.xprops.permission} || delete_${e.xprops.permission}`) ? O((d(), u("div", Ql, [
4255
+ e.row && x.can(`edit_${e.xprops.permission} || delete_${e.xprops.permission}`) ? O((d(), u("div", ti, [
4246
4256
  r("button", {
4247
4257
  onClick: l,
4248
4258
  class: "inline-flex items-center p-2 text-sm font-medium text-center text-gray-900 bg-white rounded-lg hover:bg-gray-100 focus:ring-4 focus:outline-none dark:text-white focus:ring-gray-50 dark:bg-gray-800 dark:hover:bg-gray-700 dark:focus:ring-gray-600",
4249
4259
  type: "button"
4250
- }, ti),
4251
- O(r("div", ri, [
4252
- r("ul", si, [
4253
- x.can(`edit_${e.xprops.permission}`) ? (d(), u("li", ai, [
4260
+ }, si),
4261
+ O(r("div", ai, [
4262
+ r("ul", ni, [
4263
+ x.can(`edit_${e.xprops.permission}`) ? (d(), u("li", oi, [
4254
4264
  r("a", {
4255
4265
  href: e.xprops.route + "/" + e.row.id + "/edit",
4256
4266
  class: "block px-4 py-2 hover:bg-gray-100 dark:hover:bg-gray-600 dark:hover:text-white"
4257
4267
  }, [
4258
- oi,
4268
+ ii,
4259
4269
  w(" Edit")
4260
- ], 8, ni)
4270
+ ], 8, li)
4261
4271
  ])) : f("", !0),
4262
- x.can(`delete_${e.xprops.permission}`) ? (d(), u("li", li, [
4272
+ x.can(`delete_${e.xprops.permission}`) ? (d(), u("li", di, [
4263
4273
  r("a", {
4264
4274
  href: "#",
4265
4275
  onClick: V(h, ["prevent"]),
4266
4276
  class: "block px-4 py-2 hover:bg-gray-100 dark:hover:bg-gray-600 dark:hover:text-white"
4267
4277
  }, [
4268
- ii,
4278
+ ui,
4269
4279
  w(" Remove")
4270
4280
  ])
4271
4281
  ])) : f("", !0)
@@ -4279,10 +4289,10 @@ const Vu = /* @__PURE__ */ k(Zo, [["render", Tl]]), Il = {
4279
4289
  ], 64);
4280
4290
  };
4281
4291
  }
4282
- }, di = {
4292
+ }, ci = {
4283
4293
  key: 0,
4284
4294
  class: "flex justify-center"
4285
- }, ui = /* @__PURE__ */ r("svg", {
4295
+ }, fi = /* @__PURE__ */ r("svg", {
4286
4296
  class: "w-5 h-5",
4287
4297
  "aria-hidden": "true",
4288
4298
  xmlns: "http://www.w3.org/2000/svg",
@@ -4290,12 +4300,12 @@ const Vu = /* @__PURE__ */ k(Zo, [["render", Tl]]), Il = {
4290
4300
  viewBox: "0 0 4 15"
4291
4301
  }, [
4292
4302
  /* @__PURE__ */ r("path", { d: "M3.5 1.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Zm0 6.041a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Zm0 5.959a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Z" })
4293
- ], -1), ci = [
4294
- ui
4295
- ], fi = { class: "absolute right-0 z-10 mt-5 origin-top-right bg-white divide-y divide-gray-100 rounded-lg shadow w-44 dark:bg-gray-700 dark:divide-gray-600" }, gi = {
4303
+ ], -1), gi = [
4304
+ fi
4305
+ ], hi = { class: "absolute right-0 z-10 mt-5 origin-top-right bg-white divide-y divide-gray-100 rounded-lg shadow w-44 dark:bg-gray-700 dark:divide-gray-600" }, mi = {
4296
4306
  class: "py-2 text-sm text-gray-700 dark:text-gray-200",
4297
4307
  "aria-labelledby": "dropdownDividerButton"
4298
- }, hi = { key: 0 }, mi = /* @__PURE__ */ r("i", { class: "mr-2 fa-solid fa-trash-can opacity-80" }, null, -1), Gu = {
4308
+ }, bi = { key: 0 }, pi = /* @__PURE__ */ r("i", { class: "mr-2 fa-solid fa-trash-can opacity-80" }, null, -1), Ru = {
4299
4309
  __name: "DatatableDeleteAction",
4300
4310
  props: {
4301
4311
  field: {
@@ -4321,7 +4331,7 @@ const Vu = /* @__PURE__ */ k(Zo, [["render", Tl]]), Il = {
4321
4331
  },
4322
4332
  emits: ["deleteAction"],
4323
4333
  setup(e, { emit: t }) {
4324
- const s = Ae(), n = e, o = $(!1), a = $(!1), i = () => {
4334
+ const s = je(), n = e, o = $(!1), a = $(!1), i = () => {
4325
4335
  o.value = !1;
4326
4336
  }, l = () => {
4327
4337
  o.value = !0;
@@ -4348,21 +4358,21 @@ const Vu = /* @__PURE__ */ k(Zo, [["render", Tl]]), Il = {
4348
4358
  onConfirmDelete: y,
4349
4359
  onCancelDelete: c
4350
4360
  }, null, 8, ["isOpen"]),
4351
- e.row && x.can(`delete_${e.xprops.permission}`) ? O((d(), u("div", di, [
4361
+ e.row && x.can(`delete_${e.xprops.permission}`) ? O((d(), u("div", ci, [
4352
4362
  r("button", {
4353
4363
  onClick: l,
4354
4364
  class: "inline-flex items-center p-2 text-sm font-medium text-center text-gray-900 bg-white rounded-lg hover:bg-gray-100 focus:ring-4 focus:outline-none dark:text-white focus:ring-gray-50 dark:bg-gray-800 dark:hover:bg-gray-700 dark:focus:ring-gray-600",
4355
4365
  type: "button"
4356
- }, ci),
4357
- O(r("div", fi, [
4358
- r("ul", gi, [
4359
- x.can(`delete_${e.xprops.permission}`) ? (d(), u("li", hi, [
4366
+ }, gi),
4367
+ O(r("div", hi, [
4368
+ r("ul", mi, [
4369
+ x.can(`delete_${e.xprops.permission}`) ? (d(), u("li", bi, [
4360
4370
  r("a", {
4361
4371
  href: "#",
4362
4372
  onClick: V(h, ["prevent"]),
4363
4373
  class: "block px-4 py-2 hover:bg-gray-100 dark:hover:bg-gray-600 dark:hover:text-white"
4364
4374
  }, [
4365
- mi,
4375
+ pi,
4366
4376
  w(" Remove")
4367
4377
  ])
4368
4378
  ])) : f("", !0)
@@ -4376,7 +4386,7 @@ const Vu = /* @__PURE__ */ k(Zo, [["render", Tl]]), Il = {
4376
4386
  ], 64);
4377
4387
  };
4378
4388
  }
4379
- }, bi = {
4389
+ }, yi = {
4380
4390
  props: ["field", "row"],
4381
4391
  computed: {
4382
4392
  isArray() {
@@ -4391,7 +4401,7 @@ const Vu = /* @__PURE__ */ k(Zo, [["render", Tl]]), Il = {
4391
4401
  },
4392
4402
  mounted() {
4393
4403
  }
4394
- }, pi = ["href", "title"], yi = /* @__PURE__ */ r("svg", {
4404
+ }, _i = ["href", "title"], vi = /* @__PURE__ */ r("svg", {
4395
4405
  class: "w-3 h-3 text-white me-2",
4396
4406
  "aria-hidden": "true",
4397
4407
  xmlns: "http://www.w3.org/2000/svg",
@@ -4408,10 +4418,10 @@ const Vu = /* @__PURE__ */ k(Zo, [["render", Tl]]), Il = {
4408
4418
  d: "M9.657 15.874 7.358 13H5a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-4a2 2 0 0 0-2-2h-2.358l-2.3 2.874a3 3 0 0 1-4.685 0ZM17 16a1 1 0 1 0 0 2h.01a1 1 0 1 0 0-2H17Z",
4409
4419
  "clip-rule": "evenodd"
4410
4420
  })
4411
- ], -1), _i = {
4421
+ ], -1), xi = {
4412
4422
  key: 1,
4413
4423
  class: "m-1 d-inline-block"
4414
- }, vi = ["href", "title"], xi = /* @__PURE__ */ r("svg", {
4424
+ }, wi = ["href", "title"], ki = /* @__PURE__ */ r("svg", {
4415
4425
  class: "w-3 h-3 text-white me-2",
4416
4426
  "aria-hidden": "true",
4417
4427
  xmlns: "http://www.w3.org/2000/svg",
@@ -4429,7 +4439,7 @@ const Vu = /* @__PURE__ */ k(Zo, [["render", Tl]]), Il = {
4429
4439
  "clip-rule": "evenodd"
4430
4440
  })
4431
4441
  ], -1);
4432
- function wi(e, t, s, n, o, a) {
4442
+ function $i(e, t, s, n, o, a) {
4433
4443
  return d(), u("div", null, [
4434
4444
  a.isArray ? (d(!0), u(v, { key: 0 }, C(s.row, (i, l) => (d(), u("div", {
4435
4445
  key: l,
@@ -4441,23 +4451,23 @@ function wi(e, t, s, n, o, a) {
4441
4451
  target: "_blank",
4442
4452
  class: "inline-flex items-center px-3 py-2 text-xs font-medium text-center text-white bg-blue-700 rounded-lg hover:bg-blue-800 focus:ring-4 focus:outline-none focus:ring-blue-300 dark:bg-blue-600 dark:hover:bg-blue-700 dark:focus:ring-blue-800"
4443
4453
  }, [
4444
- yi,
4454
+ vi,
4445
4455
  w(" Download ")
4446
- ], 8, pi)
4447
- ]))), 128)) : a.isString ? (d(), u("div", _i, [
4456
+ ], 8, _i)
4457
+ ]))), 128)) : a.isString ? (d(), u("div", xi, [
4448
4458
  r("a", {
4449
4459
  href: s.row,
4450
4460
  title: s.row,
4451
4461
  target: "_blank",
4452
4462
  class: "inline-flex items-center px-3 py-2 text-xs font-medium text-center text-white bg-blue-700 rounded-lg hover:bg-blue-800 focus:ring-4 focus:outline-none focus:ring-blue-300 dark:bg-blue-600 dark:hover:bg-blue-700 dark:focus:ring-blue-800"
4453
4463
  }, [
4454
- xi,
4464
+ ki,
4455
4465
  w(" Download ")
4456
- ], 8, vi)
4466
+ ], 8, wi)
4457
4467
  ])) : f("", !0)
4458
4468
  ]);
4459
4469
  }
4460
- const Fu = /* @__PURE__ */ k(bi, [["render", wi]]), ki = {
4470
+ const Uu = /* @__PURE__ */ k(yi, [["render", $i]]), Ci = {
4461
4471
  props: ["field", "row"],
4462
4472
  computed: {
4463
4473
  isArray() {
@@ -4467,7 +4477,7 @@ const Fu = /* @__PURE__ */ k(bi, [["render", wi]]), ki = {
4467
4477
  return typeof this.row[this.field] == "object";
4468
4478
  }
4469
4479
  }
4470
- }, $i = ["href", "title"], Ci = /* @__PURE__ */ r("svg", {
4480
+ }, Si = ["href", "title"], Di = /* @__PURE__ */ r("svg", {
4471
4481
  class: "w-3 h-3 text-white me-2",
4472
4482
  "aria-hidden": "true",
4473
4483
  xmlns: "http://www.w3.org/2000/svg",
@@ -4484,10 +4494,10 @@ const Fu = /* @__PURE__ */ k(bi, [["render", wi]]), ki = {
4484
4494
  d: "M9.657 15.874 7.358 13H5a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-4a2 2 0 0 0-2-2h-2.358l-2.3 2.874a3 3 0 0 1-4.685 0ZM17 16a1 1 0 1 0 0 2h.01a1 1 0 1 0 0-2H17Z",
4485
4495
  "clip-rule": "evenodd"
4486
4496
  })
4487
- ], -1), Si = {
4497
+ ], -1), Oi = {
4488
4498
  key: 1,
4489
4499
  class: "m-1 d-inline-block"
4490
- }, Di = ["href", "title"], Oi = /* @__PURE__ */ r("svg", {
4500
+ }, Pi = ["href", "title"], Ei = /* @__PURE__ */ r("svg", {
4491
4501
  class: "w-3 h-3 text-white me-2",
4492
4502
  "aria-hidden": "true",
4493
4503
  xmlns: "http://www.w3.org/2000/svg",
@@ -4505,7 +4515,7 @@ const Fu = /* @__PURE__ */ k(bi, [["render", wi]]), ki = {
4505
4515
  "clip-rule": "evenodd"
4506
4516
  })
4507
4517
  ], -1);
4508
- function Pi(e, t, s, n, o, a) {
4518
+ function ji(e, t, s, n, o, a) {
4509
4519
  return d(), u("div", null, [
4510
4520
  a.isArray ? (d(!0), u(v, { key: 0 }, C(s.row[s.field], (i) => (d(), u("div", {
4511
4521
  key: i.id,
@@ -4517,34 +4527,34 @@ function Pi(e, t, s, n, o, a) {
4517
4527
  target: "_blank",
4518
4528
  class: "inline-flex items-center px-3 py-2 text-xs font-medium text-center text-white bg-blue-700 rounded-lg hover:bg-blue-800 focus:ring-4 focus:outline-none focus:ring-blue-300 dark:bg-blue-600 dark:hover:bg-blue-700 dark:focus:ring-blue-800"
4519
4529
  }, [
4520
- Ci,
4530
+ Di,
4521
4531
  w(" Download ")
4522
- ], 8, $i)
4523
- ]))), 128)) : a.isObject ? (d(), u("div", Si, [
4532
+ ], 8, Si)
4533
+ ]))), 128)) : a.isObject ? (d(), u("div", Oi, [
4524
4534
  r("a", {
4525
4535
  href: s.row[s.field].url,
4526
4536
  title: s.row[s.field].name,
4527
4537
  target: "_blank",
4528
4538
  class: "inline-flex items-center px-3 py-2 text-xs font-medium text-center text-white bg-blue-700 rounded-lg hover:bg-blue-800 focus:ring-4 focus:outline-none focus:ring-blue-300 dark:bg-blue-600 dark:hover:bg-blue-700 dark:focus:ring-blue-800"
4529
4539
  }, [
4530
- Oi,
4540
+ Ei,
4531
4541
  w(" Download ")
4532
- ], 8, Di)
4542
+ ], 8, Pi)
4533
4543
  ])) : f("", !0)
4534
4544
  ]);
4535
4545
  }
4536
- const Ru = /* @__PURE__ */ k(ki, [["render", Pi]]), Ei = {
4546
+ const qu = /* @__PURE__ */ k(Ci, [["render", ji]]), Ai = {
4537
4547
  props: ["field", "row", "tdProps"]
4538
- }, Ai = { key: 0 }, ji = ["innerHTML"];
4539
- function Ti(e, t, s, n, o, a) {
4540
- return s.row[s.field] ? (d(), u("div", Ai, [
4548
+ }, Ti = { key: 0 }, Ii = ["innerHTML"];
4549
+ function Mi(e, t, s, n, o, a) {
4550
+ return s.row[s.field] ? (d(), u("div", Ti, [
4541
4551
  r("div", {
4542
4552
  class: "w-full",
4543
4553
  innerHTML: s.row[s.field]
4544
- }, null, 8, ji)
4554
+ }, null, 8, Ii)
4545
4555
  ])) : f("", !0);
4546
4556
  }
4547
- const Uu = /* @__PURE__ */ k(Ei, [["render", Ti]]), Ii = {
4557
+ const Hu = /* @__PURE__ */ k(Ai, [["render", Mi]]), Ni = {
4548
4558
  props: ["field", "row", "tdProps"],
4549
4559
  computed: {
4550
4560
  entry() {
@@ -4558,24 +4568,24 @@ const Uu = /* @__PURE__ */ k(Ei, [["render", Ti]]), Ii = {
4558
4568
  return typeof this.row[this.entry.key] == "object";
4559
4569
  }
4560
4570
  }
4561
- }, Mi = { class: "flex flex-wrap gap-2" }, Ni = {
4571
+ }, Vi = { class: "flex flex-wrap gap-2" }, Li = {
4562
4572
  key: 1,
4563
4573
  class: "px-2 py-1 text-xs font-medium text-blue-800 bg-blue-100 rounded dark:bg-blue-900 dark:text-blue-300"
4564
4574
  };
4565
- function Vi(e, t, s, n, o, a) {
4566
- return d(), u("div", Mi, [
4575
+ function Bi(e, t, s, n, o, a) {
4576
+ return d(), u("div", Vi, [
4567
4577
  a.isArray ? (d(!0), u(v, { key: 0 }, C(s.row[a.entry.key], (i, l) => (d(), u("span", {
4568
4578
  key: l,
4569
4579
  class: "px-2 py-1 text-xs font-medium text-blue-800 bg-blue-100 rounded dark:bg-blue-900 dark:text-blue-300"
4570
- }, g(i[a.entry.field]), 1))), 128)) : a.isObject ? (d(), u("span", Ni, g(s.row[a.entry.key][a.entry.field]), 1)) : f("", !0)
4580
+ }, g(i[a.entry.field]), 1))), 128)) : a.isObject ? (d(), u("span", Li, g(s.row[a.entry.key][a.entry.field]), 1)) : f("", !0)
4571
4581
  ]);
4572
4582
  }
4573
- const qu = /* @__PURE__ */ k(Ii, [["render", Vi]]), Li = {
4583
+ const zu = /* @__PURE__ */ k(Ni, [["render", Bi]]), Gi = {
4574
4584
  props: ["field", "row", "tdProps"]
4575
- }, Bi = { key: 0 }, Gi = { class: "m-1 d-inline-block" }, Fi = ["href", "title"], Ri = ["src", "alt", "title"];
4576
- function Ui(e, t, s, n, o, a) {
4577
- return s.row[s.field] ? (d(), u("div", Bi, [
4578
- r("div", Gi, [
4585
+ }, Fi = { key: 0 }, Ri = { class: "m-1 d-inline-block" }, Ui = ["href", "title"], qi = ["src", "alt", "title"];
4586
+ function Hi(e, t, s, n, o, a) {
4587
+ return s.row[s.field] ? (d(), u("div", Fi, [
4588
+ r("div", Ri, [
4579
4589
  r("a", {
4580
4590
  href: s.row[s.field].url,
4581
4591
  title: s.row[s.field].name,
@@ -4585,37 +4595,37 @@ function Ui(e, t, s, n, o, a) {
4585
4595
  src: s.row[s.field].thumbnail,
4586
4596
  alt: s.row[s.field].name,
4587
4597
  title: s.row[s.field].name
4588
- }, null, 8, Ri)
4589
- ], 8, Fi)
4598
+ }, null, 8, qi)
4599
+ ], 8, Ui)
4590
4600
  ])
4591
4601
  ])) : f("", !0);
4592
4602
  }
4593
- const Hu = /* @__PURE__ */ k(Li, [["render", Ui], ["__scopeId", "data-v-3a28c02c"]]), qi = {
4603
+ const Zu = /* @__PURE__ */ k(Gi, [["render", Hi], ["__scopeId", "data-v-3a28c02c"]]), zi = {
4594
4604
  props: ["field", "row", "tdProps"],
4595
4605
  computed: {
4596
4606
  isActive() {
4597
4607
  return this.row[this.field] === 1;
4598
4608
  }
4599
4609
  }
4600
- }, Hi = { class: "flex flex-wrap gap-2 text-nowrap" }, zi = {
4610
+ }, Zi = { class: "flex flex-wrap gap-2 text-nowrap" }, Ki = {
4601
4611
  key: 0,
4602
4612
  class: "inline-flex items-center px-2 py-1 text-xs font-medium text-green-800 bg-green-100 rounded-full dark:bg-green-900 dark:text-green-300"
4603
- }, Zi = /* @__PURE__ */ r("span", { class: "w-2 h-2 bg-green-500 rounded-full me-1" }, null, -1), Ki = {
4613
+ }, Wi = /* @__PURE__ */ r("span", { class: "w-2 h-2 bg-green-500 rounded-full me-1" }, null, -1), Yi = {
4604
4614
  key: 1,
4605
4615
  class: "inline-flex items-center bg-red-100 text-red-800 text-xs font-medium px-2.5 py-0.5 rounded-full dark:bg-red-900 dark:text-red-300"
4606
- }, Wi = /* @__PURE__ */ r("span", { class: "w-2 h-2 bg-red-500 rounded-full me-1" }, null, -1);
4607
- function Yi(e, t, s, n, o, a) {
4608
- return d(), u("div", Hi, [
4609
- a.isActive ? (d(), u("span", zi, [
4610
- Zi,
4611
- w(" Active ")
4612
- ])) : a.isActive ? f("", !0) : (d(), u("span", Ki, [
4616
+ }, Xi = /* @__PURE__ */ r("span", { class: "w-2 h-2 bg-red-500 rounded-full me-1" }, null, -1);
4617
+ function Ji(e, t, s, n, o, a) {
4618
+ return d(), u("div", Zi, [
4619
+ a.isActive ? (d(), u("span", Ki, [
4613
4620
  Wi,
4621
+ w(" Active ")
4622
+ ])) : a.isActive ? f("", !0) : (d(), u("span", Yi, [
4623
+ Xi,
4614
4624
  w(" Inactive ")
4615
4625
  ]))
4616
4626
  ]);
4617
4627
  }
4618
- const zu = /* @__PURE__ */ k(qi, [["render", Yi]]), Xi = {
4628
+ const Ku = /* @__PURE__ */ k(zi, [["render", Ji]]), Qi = {
4619
4629
  props: ["field", "row", "tdProps"],
4620
4630
  computed: {
4621
4631
  hasLabelColor(e) {
@@ -4625,50 +4635,50 @@ const zu = /* @__PURE__ */ k(qi, [["render", Yi]]), Xi = {
4625
4635
  return t ? t.class : "";
4626
4636
  }
4627
4637
  }
4628
- }, Ji = { class: "flex flex-wrap gap-2 text-nowrap" }, Qi = {
4638
+ }, ed = { class: "flex flex-wrap gap-2 text-nowrap" }, td = {
4629
4639
  key: 0,
4630
4640
  class: "inline-flex items-center px-2 py-1 text-xs font-medium text-green-800 bg-green-100 rounded-full dark:bg-green-900 dark:text-green-300"
4631
- }, ed = /* @__PURE__ */ r("span", { class: "w-2 h-2 bg-green-500 rounded-full me-1" }, null, -1), td = {
4641
+ }, rd = /* @__PURE__ */ r("span", { class: "w-2 h-2 bg-green-500 rounded-full me-1" }, null, -1), sd = {
4632
4642
  key: 1,
4633
4643
  class: "inline-flex items-center px-2 py-1 text-xs font-medium text-red-800 bg-red-100 rounded-full dark:bg-red-900 dark:text-red-300"
4634
- }, rd = /* @__PURE__ */ r("span", { class: "w-2 h-2 bg-red-500 rounded-full me-1" }, null, -1), sd = {
4644
+ }, ad = /* @__PURE__ */ r("span", { class: "w-2 h-2 bg-red-500 rounded-full me-1" }, null, -1), nd = {
4635
4645
  key: 2,
4636
4646
  class: "inline-flex items-center px-2 py-1 text-xs font-medium text-yellow-800 bg-yellow-100 rounded-full dark:bg-gray-700 dark:text-yellow-300"
4637
- }, ad = /* @__PURE__ */ r("span", { class: "w-2 h-2 bg-yellow-500 rounded-full me-1" }, null, -1), nd = {
4647
+ }, od = /* @__PURE__ */ r("span", { class: "w-2 h-2 bg-yellow-500 rounded-full me-1" }, null, -1), ld = {
4638
4648
  key: 3,
4639
4649
  class: "inline-flex items-center px-2 py-1 text-xs font-medium text-blue-800 bg-blue-100 rounded-full dark:bg-gray-700 dark:text-blue-400"
4640
- }, od = /* @__PURE__ */ r("span", { class: "w-2 h-2 bg-blue-500 rounded-full me-1" }, null, -1), ld = {
4650
+ }, id = /* @__PURE__ */ r("span", { class: "w-2 h-2 bg-blue-500 rounded-full me-1" }, null, -1), dd = {
4641
4651
  key: 4,
4642
4652
  class: "inline-flex items-center px-2 py-1 text-sm text-blue-800 bg-blue-100 rounded-full dark:bg-blue-900 dark:text-blue-300"
4643
- }, id = /* @__PURE__ */ r("span", { class: "relative flex w-2 h-2 mr-1" }, [
4653
+ }, ud = /* @__PURE__ */ r("span", { class: "relative flex w-2 h-2 mr-1" }, [
4644
4654
  /* @__PURE__ */ r("span", { class: "absolute inline-flex w-full h-full bg-blue-500 rounded-full animate-ping" }),
4645
4655
  /* @__PURE__ */ r("span", { class: "relative inline-flex w-2 h-2 bg-blue-500 rounded-full" })
4646
4656
  ], -1);
4647
- function dd(e, t, s, n, o, a) {
4648
- return d(), u("div", Ji, [
4649
- a.hasLabelColor == "green" ? (d(), u("span", Qi, [
4650
- ed,
4651
- w(" " + g(this.row[this.field]), 1)
4652
- ])) : f("", !0),
4653
- a.hasLabelColor == "red" ? (d(), u("span", td, [
4657
+ function cd(e, t, s, n, o, a) {
4658
+ return d(), u("div", ed, [
4659
+ a.hasLabelColor == "green" ? (d(), u("span", td, [
4654
4660
  rd,
4655
4661
  w(" " + g(this.row[this.field]), 1)
4656
4662
  ])) : f("", !0),
4657
- a.hasLabelColor == "yellow" ? (d(), u("span", sd, [
4663
+ a.hasLabelColor == "red" ? (d(), u("span", sd, [
4658
4664
  ad,
4659
4665
  w(" " + g(this.row[this.field]), 1)
4660
4666
  ])) : f("", !0),
4661
- a.hasLabelColor == "default" ? (d(), u("span", nd, [
4667
+ a.hasLabelColor == "yellow" ? (d(), u("span", nd, [
4662
4668
  od,
4663
4669
  w(" " + g(this.row[this.field]), 1)
4664
4670
  ])) : f("", !0),
4665
- a.hasLabelColor == "animate" ? (d(), u("span", ld, [
4671
+ a.hasLabelColor == "default" ? (d(), u("span", ld, [
4666
4672
  id,
4667
4673
  w(" " + g(this.row[this.field]), 1)
4674
+ ])) : f("", !0),
4675
+ a.hasLabelColor == "animate" ? (d(), u("span", dd, [
4676
+ ud,
4677
+ w(" " + g(this.row[this.field]), 1)
4668
4678
  ])) : f("", !0)
4669
4679
  ]);
4670
4680
  }
4671
- const Zu = /* @__PURE__ */ k(Xi, [["render", dd]]), ud = {
4681
+ const Wu = /* @__PURE__ */ k(Qi, [["render", cd]]), fd = {
4672
4682
  props: ["field", "row", "tdProps"],
4673
4683
  computed: {
4674
4684
  hasLabelColor() {
@@ -4689,9 +4699,9 @@ const Zu = /* @__PURE__ */ k(Xi, [["render", dd]]), ud = {
4689
4699
  }
4690
4700
  }
4691
4701
  }
4692
- }, cd = { class: "flex flex-wrap gap-2 text-nowrap justify-center" };
4693
- function fd(e, t, s, n, o, a) {
4694
- return d(), u("div", cd, [
4702
+ }, gd = { class: "flex flex-wrap gap-2 text-nowrap justify-center" };
4703
+ function hd(e, t, s, n, o, a) {
4704
+ return d(), u("div", gd, [
4695
4705
  a.hasLabelColor == "Default" ? (d(), u("span", {
4696
4706
  key: 0,
4697
4707
  class: b(["bg-blue-100 text-blue-800 font-medium me-2 px-2.5 py-0.5 dark:bg-blue-900 dark:text-blue-300 border-blue-400", a.badgeType])
@@ -4726,7 +4736,7 @@ function fd(e, t, s, n, o, a) {
4726
4736
  }, g(this.row[this.field]), 3)) : f("", !0)
4727
4737
  ]);
4728
4738
  }
4729
- const Ku = /* @__PURE__ */ k(ud, [["render", fd]]), gd = {
4739
+ const Yu = /* @__PURE__ */ k(fd, [["render", hd]]), md = {
4730
4740
  props: ["field", "row", "tdProps"],
4731
4741
  computed: {
4732
4742
  formattedDate() {
@@ -4741,54 +4751,54 @@ const Ku = /* @__PURE__ */ k(ud, [["render", fd]]), gd = {
4741
4751
  return this.row[this.field] === 1;
4742
4752
  }
4743
4753
  }
4744
- }, hd = { class: "w-full" };
4745
- function md(e, t, s, n, o, a) {
4746
- return d(), u("div", hd, g(a.formattedDate), 1);
4754
+ }, bd = { class: "w-full" };
4755
+ function pd(e, t, s, n, o, a) {
4756
+ return d(), u("div", bd, g(a.formattedDate), 1);
4747
4757
  }
4748
- const Wu = /* @__PURE__ */ k(gd, [["render", md]]), bd = {
4758
+ const Xu = /* @__PURE__ */ k(md, [["render", pd]]), yd = {
4749
4759
  props: ["field", "row", "tdProps"]
4750
- }, pd = { class: "flex flex-wrap gap-2 text-nowrap" }, yd = {
4760
+ }, _d = { class: "flex flex-wrap gap-2 text-nowrap" }, vd = {
4751
4761
  key: 0,
4752
4762
  class: "inline-flex items-center px-2 py-1 text-sm text-blue-800 bg-blue-100 rounded-full dark:bg-blue-900 dark:text-blue-300"
4753
- }, _d = /* @__PURE__ */ r("span", { class: "relative flex w-2 h-2 mr-1" }, [
4763
+ }, xd = /* @__PURE__ */ r("span", { class: "relative flex w-2 h-2 mr-1" }, [
4754
4764
  /* @__PURE__ */ r("span", { class: "absolute inline-flex w-full h-full bg-blue-500 rounded-full animate-ping" }),
4755
4765
  /* @__PURE__ */ r("span", { class: "relative inline-flex w-2 h-2 bg-blue-500 rounded-full" })
4756
- ], -1), vd = {
4766
+ ], -1), wd = {
4757
4767
  key: 1,
4758
4768
  class: "inline-flex items-center px-2 py-1 text-xs font-medium text-yellow-800 bg-yellow-100 rounded-full dark:bg-gray-700 dark:text-yellow-300"
4759
- }, xd = /* @__PURE__ */ r("span", { class: "w-2 h-2 bg-yellow-500 rounded-full me-1" }, null, -1), wd = {
4769
+ }, kd = /* @__PURE__ */ r("span", { class: "w-2 h-2 bg-yellow-500 rounded-full me-1" }, null, -1), $d = {
4760
4770
  key: 2,
4761
4771
  class: "inline-flex items-center px-2 py-1 text-xs font-medium text-green-800 bg-green-100 rounded-full dark:bg-green-900 dark:text-green-300"
4762
- }, kd = /* @__PURE__ */ r("span", { class: "w-2 h-2 bg-green-500 rounded-full me-1" }, null, -1);
4763
- function $d(e, t, s, n, o, a) {
4764
- return d(), u("div", pd, [
4765
- s.row[s.field] === 0 ? (d(), u("span", yd, [
4766
- _d,
4772
+ }, Cd = /* @__PURE__ */ r("span", { class: "w-2 h-2 bg-green-500 rounded-full me-1" }, null, -1);
4773
+ function Sd(e, t, s, n, o, a) {
4774
+ return d(), u("div", _d, [
4775
+ s.row[s.field] === 0 ? (d(), u("span", vd, [
4776
+ xd,
4767
4777
  w(" Provisioning")
4768
4778
  ])) : f("", !0),
4769
- s.row[s.field] === 2 ? (d(), u("span", vd, [
4770
- xd,
4779
+ s.row[s.field] === 2 ? (d(), u("span", wd, [
4780
+ kd,
4771
4781
  w(" Paused ")
4772
4782
  ])) : f("", !0),
4773
- s.row[s.field] === 1 ? (d(), u("span", wd, [
4774
- kd,
4783
+ s.row[s.field] === 1 ? (d(), u("span", $d, [
4784
+ Cd,
4775
4785
  w(" Active ")
4776
4786
  ])) : f("", !0)
4777
4787
  ]);
4778
4788
  }
4779
- const Yu = /* @__PURE__ */ k(bd, [["render", $d]]), Cd = {
4789
+ const Ju = /* @__PURE__ */ k(yd, [["render", Sd]]), Dd = {
4780
4790
  props: ["field", "row", "tdProps"]
4781
- }, Sd = {
4791
+ }, Od = {
4782
4792
  key: 0,
4783
4793
  class: "text-nowrap"
4784
- }, Dd = { class: "w-full h-full p-3 mx-0 mt-0 overflow-auto font-mono text-left text-white break-words rounded cursor-default whitespace-nowrap bg-zinc-700" };
4785
- function Od(e, t, s, n, o, a) {
4786
- return s.row[s.field] ? (d(), u("div", Sd, [
4787
- r("pre", Dd, " " + g(s.row[s.field]) + `
4794
+ }, Pd = { class: "w-full h-full p-3 mx-0 mt-0 overflow-auto font-mono text-left text-white break-words rounded cursor-default whitespace-nowrap bg-zinc-700" };
4795
+ function Ed(e, t, s, n, o, a) {
4796
+ return s.row[s.field] ? (d(), u("div", Od, [
4797
+ r("pre", Pd, " " + g(s.row[s.field]) + `
4788
4798
  `, 1)
4789
4799
  ])) : f("", !0);
4790
4800
  }
4791
- const Xu = /* @__PURE__ */ k(Cd, [["render", Od]]), Pd = {
4801
+ const Qu = /* @__PURE__ */ k(Dd, [["render", Ed]]), jd = {
4792
4802
  props: ["isOpen", "title", "button_text"],
4793
4803
  methods: {
4794
4804
  confirmAction() {
@@ -4798,35 +4808,35 @@ const Xu = /* @__PURE__ */ k(Cd, [["render", Od]]), Pd = {
4798
4808
  this.$emit("cancel-action");
4799
4809
  }
4800
4810
  }
4801
- }, Ed = {
4811
+ }, Ad = {
4802
4812
  key: 0,
4803
4813
  class: "fixed inset-0 z-50 overflow-y-auto",
4804
4814
  role: "dialog",
4805
4815
  "aria-modal": "true"
4806
- }, Ad = { class: "flex items-end justify-center min-h-screen px-4 pt-4 pb-20 text-center sm:block sm:p-0" }, jd = /* @__PURE__ */ r("div", {
4816
+ }, Td = { class: "flex items-end justify-center min-h-screen px-4 pt-4 pb-20 text-center sm:block sm:p-0" }, Id = /* @__PURE__ */ r("div", {
4807
4817
  class: "fixed inset-0 transition-opacity bg-gray-500 bg-opacity-75",
4808
4818
  "aria-hidden": "true"
4809
- }, null, -1), Td = /* @__PURE__ */ r("span", {
4819
+ }, null, -1), Md = /* @__PURE__ */ r("span", {
4810
4820
  class: "hidden sm:inline-block sm:align-middle sm:h-screen",
4811
4821
  "aria-hidden": "true"
4812
- }, "​", -1), Id = { class: "inline-block overflow-hidden text-left align-bottom transition-all transform bg-white rounded-lg shadow-xl sm:my-8 sm:align-middle sm:max-w-lg sm:w-full" }, Md = { class: "px-4 pt-5 pb-4 bg-white sm:p-6 sm:pb-4" }, Nd = { class: "sm:flex sm:items-start" }, Vd = { class: "mt-3 text-center sm:mt-0 sm:ml-4 sm:text-left" }, Ld = { class: "text-lg font-medium leading-6 text-gray-900" }, Bd = { class: "mt-2" }, Gd = { class: "px-4 py-3 bg-gray-50 sm:px-6 sm:flex sm:flex-row-reverse" };
4813
- function Fd(e, t, s, n, o, a) {
4814
- return s.isOpen ? (d(), u("div", Ed, [
4815
- r("div", Ad, [
4816
- jd,
4817
- Td,
4818
- r("div", Id, [
4819
- r("div", Md, [
4820
- r("div", Nd, [
4821
- r("div", Vd, [
4822
- r("h3", Ld, g(s.title), 1),
4823
- r("div", Bd, [
4822
+ }, "​", -1), Nd = { class: "inline-block overflow-hidden text-left align-bottom transition-all transform bg-white rounded-lg shadow-xl sm:my-8 sm:align-middle sm:max-w-lg sm:w-full" }, Vd = { class: "px-4 pt-5 pb-4 bg-white sm:p-6 sm:pb-4" }, Ld = { class: "sm:flex sm:items-start" }, Bd = { class: "mt-3 text-center sm:mt-0 sm:ml-4 sm:text-left" }, Gd = { class: "text-lg font-medium leading-6 text-gray-900" }, Fd = { class: "mt-2" }, Rd = { class: "px-4 py-3 bg-gray-50 sm:px-6 sm:flex sm:flex-row-reverse" };
4823
+ function Ud(e, t, s, n, o, a) {
4824
+ return s.isOpen ? (d(), u("div", Ad, [
4825
+ r("div", Td, [
4826
+ Id,
4827
+ Md,
4828
+ r("div", Nd, [
4829
+ r("div", Vd, [
4830
+ r("div", Ld, [
4831
+ r("div", Bd, [
4832
+ r("h3", Gd, g(s.title), 1),
4833
+ r("div", Fd, [
4824
4834
  T(e.$slots, "default")
4825
4835
  ])
4826
4836
  ])
4827
4837
  ])
4828
4838
  ]),
4829
- r("div", Gd, [
4839
+ r("div", Rd, [
4830
4840
  r("button", {
4831
4841
  onClick: t[0] || (t[0] = (...i) => a.confirmAction && a.confirmAction(...i)),
4832
4842
  type: "button",
@@ -4842,10 +4852,10 @@ function Fd(e, t, s, n, o, a) {
4842
4852
  ])
4843
4853
  ])) : f("", !0);
4844
4854
  }
4845
- const Ju = /* @__PURE__ */ k(Pd, [["render", Fd]]), Rd = { class: "w-full" }, Ud = { class: "mb-2 flex justify-between items-center" }, qd = { class: "text-sm font-medium text-gray-900 dark:text-white" }, Hd = { class: "relative bg-gray-50 rounded-lg dark:bg-gray-700 p-4 h-auto" }, zd = { class: "overflow-auto max-h-32" }, Zd = { class: "text-sm text-gray-500 dark:text-gray-400" }, Kd = { class: "absolute top-2 end-2 bg-gray-50 dark:bg-gray-700" }, Wd = {
4855
+ const ec = /* @__PURE__ */ k(jd, [["render", Ud]]), qd = { class: "w-full" }, Hd = { class: "mb-2 flex justify-between items-center" }, zd = { class: "text-sm font-medium text-gray-900 dark:text-white" }, Zd = { class: "relative bg-gray-50 rounded-lg dark:bg-gray-700 p-4 h-auto" }, Kd = { class: "overflow-auto max-h-32" }, Wd = { class: "text-sm text-gray-500 dark:text-gray-400" }, Yd = { class: "absolute top-2 end-2 bg-gray-50 dark:bg-gray-700" }, Xd = {
4846
4856
  key: 0,
4847
4857
  class: "inline-flex items-center"
4848
- }, Yd = /* @__PURE__ */ r("svg", {
4858
+ }, Jd = /* @__PURE__ */ r("svg", {
4849
4859
  class: "w-3 h-3 me-2",
4850
4860
  "aria-hidden": "true",
4851
4861
  xmlns: "http://www.w3.org/2000/svg",
@@ -4853,13 +4863,13 @@ const Ju = /* @__PURE__ */ k(Pd, [["render", Fd]]), Rd = { class: "w-full" }, Ud
4853
4863
  viewBox: "0 0 18 20"
4854
4864
  }, [
4855
4865
  /* @__PURE__ */ r("path", { d: "M16 1h-3.278A1.992 1.992 0 0 0 11 0H7a1.993 1.993 0 0 0-1.722 1H2a2 2 0 0 0-2 2v15a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V3a2 2 0 0 0-2-2Zm-3 14H5a1 1 0 0 1 0-2h8a1 1 0 0 1 0 2Zm0-4H5a1 1 0 0 1 0-2h8a1 1 0 1 1 0 2Zm0-5H5a1 1 0 0 1 0-2h2V2h4v2h2a1 1 0 1 1 0 2Z" })
4856
- ], -1), Xd = /* @__PURE__ */ r("span", { class: "text-xs font-semibold" }, "Copy", -1), Jd = [
4857
- Yd,
4858
- Xd
4859
- ], Qd = {
4866
+ ], -1), Qd = /* @__PURE__ */ r("span", { class: "text-xs font-semibold" }, "Copy", -1), eu = [
4867
+ Jd,
4868
+ Qd
4869
+ ], tu = {
4860
4870
  key: 1,
4861
4871
  class: "inline-flex items-center"
4862
- }, eu = /* @__PURE__ */ r("svg", {
4872
+ }, ru = /* @__PURE__ */ r("svg", {
4863
4873
  class: "w-3 h-3 text-blue-700 dark:text-blue-500 me-2",
4864
4874
  "aria-hidden": "true",
4865
4875
  xmlns: "http://www.w3.org/2000/svg",
@@ -4873,10 +4883,10 @@ const Ju = /* @__PURE__ */ k(Pd, [["render", Fd]]), Rd = { class: "w-full" }, Ud
4873
4883
  "stroke-width": "2",
4874
4884
  d: "M1 5.917 5.724 10.5 15 1.5"
4875
4885
  })
4876
- ], -1), tu = /* @__PURE__ */ r("span", { class: "text-xs font-semibold text-blue-700 dark:text-blue-500" }, "Copied", -1), ru = [
4877
- eu,
4878
- tu
4879
- ], su = { class: "mt-2 text-sm text-gray-500 dark:text-gray-400" }, Qu = {
4886
+ ], -1), su = /* @__PURE__ */ r("span", { class: "text-xs font-semibold text-blue-700 dark:text-blue-500" }, "Copied", -1), au = [
4887
+ ru,
4888
+ su
4889
+ ], nu = { class: "mt-2 text-sm text-gray-500 dark:text-gray-400" }, tc = {
4880
4890
  __name: "GlCodeCopy",
4881
4891
  props: {
4882
4892
  label_name: {
@@ -4902,28 +4912,28 @@ const Ju = /* @__PURE__ */ k(Pd, [["render", Fd]]), Rd = { class: "w-full" }, Ud
4902
4912
  console.error("Error copying to clipboard: ", i);
4903
4913
  });
4904
4914
  }, o = N(() => t.code);
4905
- return (a, i) => (d(), u("div", Rd, [
4906
- r("div", Ud, [
4907
- r("p", qd, g(e.label_name), 1)
4908
- ]),
4915
+ return (a, i) => (d(), u("div", qd, [
4909
4916
  r("div", Hd, [
4910
- r("div", zd, [
4911
- r("code", Zd, g(o.value), 1)
4912
- ]),
4917
+ r("p", zd, g(e.label_name), 1)
4918
+ ]),
4919
+ r("div", Zd, [
4913
4920
  r("div", Kd, [
4921
+ r("code", Wd, g(o.value), 1)
4922
+ ]),
4923
+ r("div", Yd, [
4914
4924
  r("button", {
4915
4925
  onClick: i[0] || (i[0] = (l) => n(o.value)),
4916
4926
  class: "text-gray-900 dark:text-gray-400 m-1 hover:bg-gray-100 dark:bg-gray-800 dark:border-gray-600 dark:hover:bg-gray-700 rounded-lg py-2 px-3 inline-flex items-center justify-center bg-white border-gray-200 border"
4917
4927
  }, [
4918
- s.value ? f("", !0) : (d(), u("span", Wd, Jd)),
4919
- s.value ? (d(), u("span", Qd, ru)) : f("", !0)
4928
+ s.value ? f("", !0) : (d(), u("span", Xd, eu)),
4929
+ s.value ? (d(), u("span", tu, au)) : f("", !0)
4920
4930
  ])
4921
4931
  ])
4922
4932
  ]),
4923
- r("p", su, g(e.description), 1)
4933
+ r("p", nu, g(e.description), 1)
4924
4934
  ]));
4925
4935
  }
4926
- }, au = { class: "w-full" }, nu = { class: "mb-4 flex justify-between items-center" }, ou = { class: "text-sm font-medium text-gray-900 dark:text-white" }, lu = { class: "flex items-center" }, iu = { class: "flex-shrink-0 z-10 inline-flex items-center p-2 text-sm font-medium text-center text-gray-900 bg-gray-100 border border-gray-300 rounded-s-lg dark:bg-gray-600 dark:text-white dark:border-gray-600" }, du = { class: "relative w-full" }, uu = ["value"], cu = { key: 0 }, fu = /* @__PURE__ */ r("svg", {
4936
+ }, ou = { class: "w-full" }, lu = { class: "flex justify-between items-center" }, iu = { class: "gl-label-form" }, du = { class: "flex items-center" }, uu = { class: "flex-shrink-0 z-10 inline-flex items-center p-2 text-sm font-medium text-center text-gray-900 bg-gray-100 border border-gray-300 rounded-s-lg dark:bg-gray-600 dark:text-white dark:border-gray-600" }, cu = { class: "relative w-full" }, fu = ["value"], gu = { key: 0 }, hu = /* @__PURE__ */ r("svg", {
4927
4937
  class: "w-4 h-4",
4928
4938
  "aria-hidden": "true",
4929
4939
  xmlns: "http://www.w3.org/2000/svg",
@@ -4931,12 +4941,12 @@ const Ju = /* @__PURE__ */ k(Pd, [["render", Fd]]), Rd = { class: "w-full" }, Ud
4931
4941
  viewBox: "0 0 18 20"
4932
4942
  }, [
4933
4943
  /* @__PURE__ */ r("path", { d: "M16 1h-3.278A1.992 1.992 0 0 0 11 0H7a1.993 1.993 0 0 0-1.722 1H2a2 2 0 0 0-2 2v15a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V3a2 2 0 0 0-2-2Zm-3 14H5a1 1 0 0 1 0-2h8a1 1 0 0 1 0 2Zm0-4H5a1 1 0 0 1 0-2h8a1 1 0 1 1 0 2Zm0-5H5a1 1 0 0 1 0-2h2V2h4v2h2a1 1 0 1 1 0 2Z" })
4934
- ], -1), gu = [
4935
- fu
4936
- ], hu = {
4944
+ ], -1), mu = [
4945
+ hu
4946
+ ], bu = {
4937
4947
  key: 1,
4938
4948
  class: "inline-flex items-center"
4939
- }, mu = /* @__PURE__ */ r("svg", {
4949
+ }, pu = /* @__PURE__ */ r("svg", {
4940
4950
  class: "w-4 h-4",
4941
4951
  "aria-hidden": "true",
4942
4952
  xmlns: "http://www.w3.org/2000/svg",
@@ -4950,9 +4960,9 @@ const Ju = /* @__PURE__ */ k(Pd, [["render", Fd]]), Rd = { class: "w-full" }, Ud
4950
4960
  "stroke-width": "2",
4951
4961
  d: "M1 5.917 5.724 10.5 15 1.5"
4952
4962
  })
4953
- ], -1), bu = [
4954
- mu
4955
- ], pu = { class: "mt-2 text-sm text-gray-500 dark:text-gray-400" }, ec = {
4963
+ ], -1), yu = [
4964
+ pu
4965
+ ], _u = { class: "mt-2 text-sm text-gray-500 dark:text-gray-400" }, rc = {
4956
4966
  __name: "GlTextCopy",
4957
4967
  props: {
4958
4968
  label_name: {
@@ -4982,13 +4992,13 @@ const Ju = /* @__PURE__ */ k(Pd, [["render", Fd]]), Rd = { class: "w-full" }, Ud
4982
4992
  console.error("Error copying to clipboard: ", i);
4983
4993
  });
4984
4994
  }, o = N(() => t.code);
4985
- return (a, i) => (d(), u("div", au, [
4986
- r("div", nu, [
4987
- r("label", ou, g(e.label_name), 1)
4988
- ]),
4995
+ return (a, i) => (d(), u("div", ou, [
4989
4996
  r("div", lu, [
4990
- r("span", iu, g(e.text_name), 1),
4991
- r("div", du, [
4997
+ r("label", iu, g(e.label_name), 1)
4998
+ ]),
4999
+ r("div", du, [
5000
+ r("span", uu, g(e.text_name), 1),
5001
+ r("div", cu, [
4992
5002
  r("input", {
4993
5003
  type: "text",
4994
5004
  "aria-describedby": "helper-text-explanation",
@@ -4996,7 +5006,7 @@ const Ju = /* @__PURE__ */ k(Pd, [["render", Fd]]), Rd = { class: "w-full" }, Ud
4996
5006
  value: o.value,
4997
5007
  readonly: "",
4998
5008
  disabled: ""
4999
- }, null, 8, uu)
5009
+ }, null, 8, fu)
5000
5010
  ]),
5001
5011
  r("button", {
5002
5012
  style: { padding: ".61rem" },
@@ -5004,52 +5014,52 @@ const Ju = /* @__PURE__ */ k(Pd, [["render", Fd]]), Rd = { class: "w-full" }, Ud
5004
5014
  class: "flex-shrink-0 z-10 inline-flex items-center px-4 text-sm font-medium text-center text-white bg-blue-700 rounded-e-lg hover:bg-blue-800 focus:ring-4 focus:outline-none focus:ring-blue-300 dark:bg-blue-600 dark:hover:bg-blue-700 dark:focus:ring-blue-800 border border-blue-700 dark:border-blue-600 hover:border-blue-800 dark:hover:border-blue-700",
5005
5015
  type: "button"
5006
5016
  }, [
5007
- s.value ? f("", !0) : (d(), u("span", cu, gu)),
5008
- s.value ? (d(), u("span", hu, bu)) : f("", !0)
5017
+ s.value ? f("", !0) : (d(), u("span", gu, mu)),
5018
+ s.value ? (d(), u("span", bu, yu)) : f("", !0)
5009
5019
  ])
5010
5020
  ]),
5011
- r("p", pu, g(e.description), 1)
5021
+ r("p", _u, g(e.description), 1)
5012
5022
  ]));
5013
5023
  }
5014
5024
  };
5015
5025
  export {
5016
- Xu as GLDatatableCommand,
5017
- Wu as GLDatatableDateTime,
5018
- Yu as GLDatatableStatusServer,
5019
- $u as GlButton,
5020
- wu as GlCard,
5021
- Qu as GlCodeCopy,
5022
- Ju as GlConfirmationModal,
5023
- Vu as GlDataTable,
5024
- Nu as GlDataTableServerSide,
5025
- Bu as GlDatatableAction,
5026
- Gu as GlDatatableDeleteAction,
5027
- Fu as GlDatatableFileDownload,
5028
- Ru as GlDatatableFiles,
5029
- Uu as GlDatatableHtml,
5030
- qu as GlDatatableList,
5031
- Hu as GlDatatablePicture,
5032
- zu as GlDatatableStatus,
5033
- Zu as GlDatatableStatusGeneral,
5034
- Ku as GlDatatableStatusSpecficColor,
5026
+ Qu as GLDatatableCommand,
5027
+ Xu as GLDatatableDateTime,
5028
+ Ju as GLDatatableStatusServer,
5029
+ Su as GlButton,
5030
+ $u as GlCard,
5031
+ tc as GlCodeCopy,
5032
+ ec as GlConfirmationModal,
5033
+ Bu as GlDataTable,
5034
+ Lu as GlDataTableServerSide,
5035
+ Fu as GlDatatableAction,
5036
+ Ru as GlDatatableDeleteAction,
5037
+ Uu as GlDatatableFileDownload,
5038
+ qu as GlDatatableFiles,
5039
+ Hu as GlDatatableHtml,
5040
+ zu as GlDatatableList,
5041
+ Zu as GlDatatablePicture,
5042
+ Ku as GlDatatableStatus,
5043
+ Wu as GlDatatableStatusGeneral,
5044
+ Yu as GlDatatableStatusSpecficColor,
5035
5045
  ue as GlDeleteConfirmationModal,
5036
- Iu as GlDropdown,
5037
- _u as GlFilesUpload,
5038
- xu as GlLanguageSelector,
5039
- ju as GlModal,
5040
- Au as GlMultiItemSlide,
5041
- ku as GlMultiSelectDropdown,
5042
- vu as GlNotify,
5043
- Eu as GlTab,
5044
- Pu as GlTabsWrapper,
5045
- xo as GlTailwindPagination,
5046
- ec as GlTextCopy,
5047
- Ou as GlTextInput,
5048
- Du as GlTextTranslate,
5049
- Mu as GlTextarea,
5050
- Cu as GlTextareaTranslate,
5051
- Su as GlTinymceTranslate,
5046
+ Nu as GlDropdown,
5047
+ xu as GlFilesUpload,
5048
+ ku as GlLanguageSelector,
5049
+ Iu as GlModal,
5050
+ Tu as GlMultiItemSlide,
5051
+ Cu as GlMultiSelectDropdown,
5052
+ wu as GlNotify,
5053
+ Au as GlTab,
5054
+ ju as GlTabsWrapper,
5055
+ ko as GlTailwindPagination,
5056
+ rc as GlTextCopy,
5057
+ Eu as GlTextInput,
5058
+ Pu as GlTextTranslate,
5059
+ Vu as GlTextarea,
5060
+ Du as GlTextareaTranslate,
5061
+ Ou as GlTinymceTranslate,
5052
5062
  $e as GlToast,
5053
- Lu as GlToastList,
5054
- Tu as GlToggleBox
5063
+ Gu as GlToastList,
5064
+ Mu as GlToggleBox
5055
5065
  };