golden-logic-ui 1.0.49 → 1.0.51
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/golden-logic-ui.js +545 -544
- package/dist/golden-logic-ui.umd.cjs +1 -1
- package/package.json +1 -1
package/dist/golden-logic-ui.js
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { openBlock as d, createElementBlock as u, createElementVNode as s, createCommentVNode as g, createStaticVNode as Ke, inject as xe, watch as W, effectScope as We, computed as B, reactive as we, resolveComponent as X, Fragment as v, createVNode as H, normalizeClass as p, toDisplayString as h, withModifiers as M, withDirectives as P, vModelText as V, renderList as $, normalizeStyle as Xe, renderSlot as A, createTextVNode as w, vShow as G, createBlock as Z, resolveDynamicComponent as se, mergeProps as K, withCtx as Y, ref as O, onMounted as F, vModelDynamic as Ye, provide as Je, pushScopeId as Qe, popScopeId as et, vModelCheckbox as tt, nextTick as rt, toHandlers as te, TransitionGroup as st, unref as nt, resolveDirective as ke, markRaw as
|
|
1
|
+
import { openBlock as d, createElementBlock as u, createElementVNode as s, createCommentVNode as g, createStaticVNode as Ke, inject as xe, watch as W, effectScope as We, computed as B, reactive as we, resolveComponent as X, Fragment as v, createVNode as H, normalizeClass as p, toDisplayString as h, withModifiers as M, withDirectives as P, vModelText as V, renderList as $, normalizeStyle as Xe, renderSlot as A, createTextVNode as w, vShow as G, createBlock as Z, resolveDynamicComponent as se, mergeProps as K, withCtx as Y, ref as O, onMounted as F, vModelDynamic as Ye, provide as Je, pushScopeId as Qe, popScopeId as et, vModelCheckbox as tt, nextTick as rt, toHandlers as te, TransitionGroup as st, unref as nt, resolveDirective as ke, markRaw as at } from "vue";
|
|
2
2
|
const D = (e, t) => {
|
|
3
3
|
const r = e.__vccOpts || e;
|
|
4
|
-
for (const [n,
|
|
5
|
-
r[n] =
|
|
4
|
+
for (const [n, o] of t)
|
|
5
|
+
r[n] = o;
|
|
6
6
|
return r;
|
|
7
|
-
},
|
|
7
|
+
}, ot = {
|
|
8
8
|
props: ["isOpen"],
|
|
9
9
|
methods: {
|
|
10
10
|
confirmDeletion() {
|
|
@@ -27,7 +27,7 @@ const D = (e, t) => {
|
|
|
27
27
|
class: "hidden sm:inline-block sm:align-middle sm:h-screen",
|
|
28
28
|
"aria-hidden": "true"
|
|
29
29
|
}, "", -1), ct = { 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" }, ft = /* @__PURE__ */ Ke('<div class="px-4 pt-5 pb-4 bg-white sm:p-6 sm:pb-4"><div class="sm:flex sm:items-start"><div class="mt-3 text-center sm:mt-0 sm:ml-4 sm:text-left"><h3 class="text-lg font-medium leading-6 text-gray-900" id="modal-title"> Confirm Deletion </h3><div class="mt-2"><p class="text-sm text-gray-500"> Are you sure you want to delete this item? This action cannot be undone. </p></div></div></div></div>', 1), ht = { class: "px-4 py-3 bg-gray-50 sm:px-6 sm:flex sm:flex-row-reverse" };
|
|
30
|
-
function gt(e, t, r, n,
|
|
30
|
+
function gt(e, t, r, n, o, a) {
|
|
31
31
|
return r.isOpen ? (d(), u("div", it, [
|
|
32
32
|
s("div", lt, [
|
|
33
33
|
dt,
|
|
@@ -36,12 +36,12 @@ function gt(e, t, r, n, a, o) {
|
|
|
36
36
|
ft,
|
|
37
37
|
s("div", ht, [
|
|
38
38
|
s("button", {
|
|
39
|
-
onClick: t[0] || (t[0] = (...l) =>
|
|
39
|
+
onClick: t[0] || (t[0] = (...l) => a.confirmDeletion && a.confirmDeletion(...l)),
|
|
40
40
|
type: "button",
|
|
41
41
|
class: "inline-flex justify-center w-full px-4 py-2 text-base font-medium text-white bg-red-600 border border-transparent rounded-md shadow-sm hover:bg-red-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-red-500 sm:ml-3 sm:w-auto sm:text-sm"
|
|
42
42
|
}, " Delete "),
|
|
43
43
|
s("button", {
|
|
44
|
-
onClick: t[1] || (t[1] = (...l) =>
|
|
44
|
+
onClick: t[1] || (t[1] = (...l) => a.cancelDeletion && a.cancelDeletion(...l)),
|
|
45
45
|
type: "button",
|
|
46
46
|
class: "inline-flex justify-center w-full px-4 py-2 mt-3 text-base font-medium text-gray-700 bg-white border border-gray-300 rounded-md shadow-sm hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 sm:mt-0 sm:ml-3 sm:w-auto sm:text-sm"
|
|
47
47
|
}, " Cancel ")
|
|
@@ -50,14 +50,14 @@ function gt(e, t, r, n, a, o) {
|
|
|
50
50
|
])
|
|
51
51
|
])) : g("", !0);
|
|
52
52
|
}
|
|
53
|
-
const ie = /* @__PURE__ */ D(
|
|
53
|
+
const ie = /* @__PURE__ */ D(ot, [["render", gt]]);
|
|
54
54
|
function mt() {
|
|
55
55
|
return $e().__VUE_DEVTOOLS_GLOBAL_HOOK__;
|
|
56
56
|
}
|
|
57
57
|
function $e() {
|
|
58
58
|
return typeof navigator < "u" && typeof window < "u" ? window : typeof globalThis < "u" ? globalThis : {};
|
|
59
59
|
}
|
|
60
|
-
const
|
|
60
|
+
const _t = typeof Proxy == "function", pt = "devtools-plugin:setup", bt = "plugin:settings:set";
|
|
61
61
|
let q, ne;
|
|
62
62
|
function yt() {
|
|
63
63
|
var e;
|
|
@@ -75,23 +75,23 @@ class xt {
|
|
|
75
75
|
const i = t.settings[l];
|
|
76
76
|
n[l] = i.defaultValue;
|
|
77
77
|
}
|
|
78
|
-
const
|
|
79
|
-
let
|
|
78
|
+
const o = `__vue-devtools-plugin-settings__${t.id}`;
|
|
79
|
+
let a = Object.assign({}, n);
|
|
80
80
|
try {
|
|
81
|
-
const l = localStorage.getItem(
|
|
82
|
-
Object.assign(
|
|
81
|
+
const l = localStorage.getItem(o), i = JSON.parse(l);
|
|
82
|
+
Object.assign(a, i);
|
|
83
83
|
} catch {
|
|
84
84
|
}
|
|
85
85
|
this.fallbacks = {
|
|
86
86
|
getSettings() {
|
|
87
|
-
return
|
|
87
|
+
return a;
|
|
88
88
|
},
|
|
89
89
|
setSettings(l) {
|
|
90
90
|
try {
|
|
91
|
-
localStorage.setItem(
|
|
91
|
+
localStorage.setItem(o, JSON.stringify(l));
|
|
92
92
|
} catch {
|
|
93
93
|
}
|
|
94
|
-
|
|
94
|
+
a = l;
|
|
95
95
|
},
|
|
96
96
|
now() {
|
|
97
97
|
return vt();
|
|
@@ -129,11 +129,11 @@ class xt {
|
|
|
129
129
|
}
|
|
130
130
|
}
|
|
131
131
|
function wt(e, t) {
|
|
132
|
-
const r = e, n = $e(),
|
|
133
|
-
if (
|
|
134
|
-
|
|
132
|
+
const r = e, n = $e(), o = mt(), a = _t && r.enableEarlyProxy;
|
|
133
|
+
if (o && (n.__VUE_DEVTOOLS_PLUGIN_API_AVAILABLE__ || !a))
|
|
134
|
+
o.emit(pt, e, t);
|
|
135
135
|
else {
|
|
136
|
-
const l =
|
|
136
|
+
const l = a ? new xt(r, o) : null;
|
|
137
137
|
(n.__VUE_DEVTOOLS_PLUGINS__ = n.__VUE_DEVTOOLS_PLUGINS__ || []).push({
|
|
138
138
|
pluginDescriptor: r,
|
|
139
139
|
setupFn: t,
|
|
@@ -182,11 +182,11 @@ function Pe(e, t) {
|
|
|
182
182
|
Q(e, r, [], e._modules.root, !0), le(e, r, t);
|
|
183
183
|
}
|
|
184
184
|
function le(e, t, r) {
|
|
185
|
-
var n = e._state,
|
|
185
|
+
var n = e._state, o = e._scope;
|
|
186
186
|
e.getters = {}, e._makeLocalGettersCache = /* @__PURE__ */ Object.create(null);
|
|
187
|
-
var
|
|
187
|
+
var a = e._wrappedGetters, l = {}, i = {}, c = We(!0);
|
|
188
188
|
c.run(function() {
|
|
189
|
-
R(
|
|
189
|
+
R(a, function(f, m) {
|
|
190
190
|
l[m] = $t(f, e), i[m] = B(function() {
|
|
191
191
|
return l[m]();
|
|
192
192
|
}), Object.defineProperty(e.getters, m, {
|
|
@@ -201,11 +201,11 @@ function le(e, t, r) {
|
|
|
201
201
|
data: t
|
|
202
202
|
}), e._scope = c, e.strict && Pt(e), n && r && e._withCommit(function() {
|
|
203
203
|
n.data = null;
|
|
204
|
-
}),
|
|
204
|
+
}), o && o.stop();
|
|
205
205
|
}
|
|
206
|
-
function Q(e, t, r, n,
|
|
207
|
-
var
|
|
208
|
-
if (n.namespaced && (e._modulesNamespaceMap[l] && process.env.NODE_ENV !== "production" && console.error("[vuex] duplicate namespace " + l + " for the namespaced module " + r.join("/")), e._modulesNamespaceMap[l] = n), !
|
|
206
|
+
function Q(e, t, r, n, o) {
|
|
207
|
+
var a = !r.length, l = e._modules.getNamespace(r);
|
|
208
|
+
if (n.namespaced && (e._modulesNamespaceMap[l] && process.env.NODE_ENV !== "production" && console.error("[vuex] duplicate namespace " + l + " for the namespaced module " + r.join("/")), e._modulesNamespaceMap[l] = n), !a && !o) {
|
|
209
209
|
var i = de(t, r.slice(0, -1)), c = r[r.length - 1];
|
|
210
210
|
e._withCommit(function() {
|
|
211
211
|
process.env.NODE_ENV !== "production" && c in i && console.warn(
|
|
@@ -224,21 +224,21 @@ function Q(e, t, r, n, a) {
|
|
|
224
224
|
var x = l + y;
|
|
225
225
|
Dt(e, x, m, f);
|
|
226
226
|
}), n.forEachChild(function(m, y) {
|
|
227
|
-
Q(e, t, r.concat(y), m,
|
|
227
|
+
Q(e, t, r.concat(y), m, o);
|
|
228
228
|
});
|
|
229
229
|
}
|
|
230
230
|
function Ct(e, t, r) {
|
|
231
|
-
var n = t === "",
|
|
232
|
-
dispatch: n ? e.dispatch : function(
|
|
233
|
-
var c = J(
|
|
231
|
+
var n = t === "", o = {
|
|
232
|
+
dispatch: n ? e.dispatch : function(a, l, i) {
|
|
233
|
+
var c = J(a, l, i), f = c.payload, m = c.options, y = c.type;
|
|
234
234
|
if ((!m || !m.root) && (y = t + y, process.env.NODE_ENV !== "production" && !e._actions[y])) {
|
|
235
235
|
console.error("[vuex] unknown local action type: " + c.type + ", global type: " + y);
|
|
236
236
|
return;
|
|
237
237
|
}
|
|
238
238
|
return e.dispatch(y, f);
|
|
239
239
|
},
|
|
240
|
-
commit: n ? e.commit : function(
|
|
241
|
-
var c = J(
|
|
240
|
+
commit: n ? e.commit : function(a, l, i) {
|
|
241
|
+
var c = J(a, l, i), f = c.payload, m = c.options, y = c.type;
|
|
242
242
|
if ((!m || !m.root) && (y = t + y, process.env.NODE_ENV !== "production" && !e._mutations[y])) {
|
|
243
243
|
console.error("[vuex] unknown local mutation type: " + c.type + ", global type: " + y);
|
|
244
244
|
return;
|
|
@@ -246,7 +246,7 @@ function Ct(e, t, r) {
|
|
|
246
246
|
e.commit(y, f, m);
|
|
247
247
|
}
|
|
248
248
|
};
|
|
249
|
-
return Object.defineProperties(
|
|
249
|
+
return Object.defineProperties(o, {
|
|
250
250
|
getters: {
|
|
251
251
|
get: n ? function() {
|
|
252
252
|
return e.getters;
|
|
@@ -259,17 +259,17 @@ function Ct(e, t, r) {
|
|
|
259
259
|
return de(e.state, r);
|
|
260
260
|
}
|
|
261
261
|
}
|
|
262
|
-
}),
|
|
262
|
+
}), o;
|
|
263
263
|
}
|
|
264
264
|
function Ee(e, t) {
|
|
265
265
|
if (!e._makeLocalGettersCache[t]) {
|
|
266
266
|
var r = {}, n = t.length;
|
|
267
|
-
Object.keys(e.getters).forEach(function(
|
|
268
|
-
if (
|
|
269
|
-
var
|
|
270
|
-
Object.defineProperty(r,
|
|
267
|
+
Object.keys(e.getters).forEach(function(o) {
|
|
268
|
+
if (o.slice(0, n) === t) {
|
|
269
|
+
var a = o.slice(n);
|
|
270
|
+
Object.defineProperty(r, a, {
|
|
271
271
|
get: function() {
|
|
272
|
-
return e.getters[
|
|
272
|
+
return e.getters[o];
|
|
273
273
|
},
|
|
274
274
|
enumerable: !0
|
|
275
275
|
});
|
|
@@ -279,14 +279,14 @@ function Ee(e, t) {
|
|
|
279
279
|
return e._makeLocalGettersCache[t];
|
|
280
280
|
}
|
|
281
281
|
function St(e, t, r, n) {
|
|
282
|
-
var
|
|
283
|
-
|
|
282
|
+
var o = e._mutations[t] || (e._mutations[t] = []);
|
|
283
|
+
o.push(function(l) {
|
|
284
284
|
r.call(e, n.state, l);
|
|
285
285
|
});
|
|
286
286
|
}
|
|
287
287
|
function Ot(e, t, r, n) {
|
|
288
|
-
var
|
|
289
|
-
|
|
288
|
+
var o = e._actions[t] || (e._actions[t] = []);
|
|
289
|
+
o.push(function(l) {
|
|
290
290
|
var i = r.call(e, {
|
|
291
291
|
dispatch: n.dispatch,
|
|
292
292
|
commit: n.commit,
|
|
@@ -305,15 +305,15 @@ function Dt(e, t, r, n) {
|
|
|
305
305
|
process.env.NODE_ENV !== "production" && console.error("[vuex] duplicate getter key: " + t);
|
|
306
306
|
return;
|
|
307
307
|
}
|
|
308
|
-
e._wrappedGetters[t] = function(
|
|
308
|
+
e._wrappedGetters[t] = function(a) {
|
|
309
309
|
return r(
|
|
310
310
|
n.state,
|
|
311
311
|
// local state
|
|
312
312
|
n.getters,
|
|
313
313
|
// local getters
|
|
314
|
-
|
|
314
|
+
a.state,
|
|
315
315
|
// root state
|
|
316
|
-
|
|
316
|
+
a.getters
|
|
317
317
|
// root getters
|
|
318
318
|
);
|
|
319
319
|
};
|
|
@@ -333,7 +333,7 @@ function de(e, t) {
|
|
|
333
333
|
function J(e, t, r) {
|
|
334
334
|
return Oe(e) && e.type && (r = 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: r };
|
|
335
335
|
}
|
|
336
|
-
var Et = "vuex bindings",
|
|
336
|
+
var Et = "vuex bindings", _e = "vuex:mutations", re = "vuex:actions", z = "vuex", jt = 0;
|
|
337
337
|
function At(e, t) {
|
|
338
338
|
wt(
|
|
339
339
|
{
|
|
@@ -347,13 +347,13 @@ function At(e, t) {
|
|
|
347
347
|
},
|
|
348
348
|
function(r) {
|
|
349
349
|
r.addTimelineLayer({
|
|
350
|
-
id:
|
|
350
|
+
id: _e,
|
|
351
351
|
label: "Vuex Mutations",
|
|
352
|
-
color:
|
|
352
|
+
color: pe
|
|
353
353
|
}), r.addTimelineLayer({
|
|
354
354
|
id: re,
|
|
355
355
|
label: "Vuex Actions",
|
|
356
|
-
color:
|
|
356
|
+
color: pe
|
|
357
357
|
}), r.addInspector({
|
|
358
358
|
id: z,
|
|
359
359
|
label: "Vuex",
|
|
@@ -362,69 +362,69 @@ function At(e, t) {
|
|
|
362
362
|
}), r.on.getInspectorTree(function(n) {
|
|
363
363
|
if (n.app === e && n.inspectorId === z)
|
|
364
364
|
if (n.filter) {
|
|
365
|
-
var
|
|
366
|
-
Te(
|
|
365
|
+
var o = [];
|
|
366
|
+
Te(o, t._modules.root, n.filter, ""), n.rootNodes = o;
|
|
367
367
|
} else
|
|
368
368
|
n.rootNodes = [
|
|
369
369
|
Ie(t._modules.root, "")
|
|
370
370
|
];
|
|
371
371
|
}), r.on.getInspectorState(function(n) {
|
|
372
372
|
if (n.app === e && n.inspectorId === z) {
|
|
373
|
-
var
|
|
374
|
-
Ee(t,
|
|
375
|
-
Vt(t._modules,
|
|
376
|
-
|
|
377
|
-
|
|
373
|
+
var o = n.nodeId;
|
|
374
|
+
Ee(t, o), n.state = Mt(
|
|
375
|
+
Vt(t._modules, o),
|
|
376
|
+
o === "root" ? t.getters : t._makeLocalGettersCache,
|
|
377
|
+
o
|
|
378
378
|
);
|
|
379
379
|
}
|
|
380
380
|
}), r.on.editInspectorState(function(n) {
|
|
381
381
|
if (n.app === e && n.inspectorId === z) {
|
|
382
|
-
var
|
|
383
|
-
|
|
384
|
-
n.set(t._state.data,
|
|
382
|
+
var o = n.nodeId, a = n.path;
|
|
383
|
+
o !== "root" && (a = o.split("/").filter(Boolean).concat(a)), t._withCommit(function() {
|
|
384
|
+
n.set(t._state.data, a, n.state.value);
|
|
385
385
|
});
|
|
386
386
|
}
|
|
387
|
-
}), t.subscribe(function(n,
|
|
388
|
-
var
|
|
389
|
-
n.payload && (
|
|
390
|
-
layerId:
|
|
387
|
+
}), t.subscribe(function(n, o) {
|
|
388
|
+
var a = {};
|
|
389
|
+
n.payload && (a.payload = n.payload), a.state = o, r.notifyComponentUpdate(), r.sendInspectorTree(z), r.sendInspectorState(z), r.addTimelineEvent({
|
|
390
|
+
layerId: _e,
|
|
391
391
|
event: {
|
|
392
392
|
time: Date.now(),
|
|
393
393
|
title: n.type,
|
|
394
|
-
data:
|
|
394
|
+
data: a
|
|
395
395
|
}
|
|
396
396
|
});
|
|
397
397
|
}), t.subscribeAction({
|
|
398
|
-
before: function(n,
|
|
399
|
-
var
|
|
400
|
-
n.payload && (
|
|
398
|
+
before: function(n, o) {
|
|
399
|
+
var a = {};
|
|
400
|
+
n.payload && (a.payload = n.payload), n._id = jt++, n._time = Date.now(), a.state = o, r.addTimelineEvent({
|
|
401
401
|
layerId: re,
|
|
402
402
|
event: {
|
|
403
403
|
time: n._time,
|
|
404
404
|
title: n.type,
|
|
405
405
|
groupId: n._id,
|
|
406
406
|
subtitle: "start",
|
|
407
|
-
data:
|
|
407
|
+
data: a
|
|
408
408
|
}
|
|
409
409
|
});
|
|
410
410
|
},
|
|
411
|
-
after: function(n,
|
|
412
|
-
var
|
|
413
|
-
|
|
411
|
+
after: function(n, o) {
|
|
412
|
+
var a = {}, l = Date.now() - n._time;
|
|
413
|
+
a.duration = {
|
|
414
414
|
_custom: {
|
|
415
415
|
type: "duration",
|
|
416
416
|
display: l + "ms",
|
|
417
417
|
tooltip: "Action duration",
|
|
418
418
|
value: l
|
|
419
419
|
}
|
|
420
|
-
}, n.payload && (
|
|
420
|
+
}, n.payload && (a.payload = n.payload), a.state = o, r.addTimelineEvent({
|
|
421
421
|
layerId: re,
|
|
422
422
|
event: {
|
|
423
423
|
time: Date.now(),
|
|
424
424
|
title: n.type,
|
|
425
425
|
groupId: n._id,
|
|
426
426
|
subtitle: "end",
|
|
427
|
-
data:
|
|
427
|
+
data: a
|
|
428
428
|
}
|
|
429
429
|
});
|
|
430
430
|
}
|
|
@@ -432,7 +432,7 @@ function At(e, t) {
|
|
|
432
432
|
}
|
|
433
433
|
);
|
|
434
434
|
}
|
|
435
|
-
var
|
|
435
|
+
var pe = 8702998, It = 6710886, Tt = 16777215, je = {
|
|
436
436
|
label: "namespaced",
|
|
437
437
|
textColor: Tt,
|
|
438
438
|
backgroundColor: It
|
|
@@ -463,13 +463,13 @@ function Te(e, t, r, n) {
|
|
|
463
463
|
id: n || "root",
|
|
464
464
|
label: n.endsWith("/") ? n.slice(0, n.length - 1) : n || "Root",
|
|
465
465
|
tags: t.namespaced ? [je] : []
|
|
466
|
-
}), Object.keys(t._children).forEach(function(
|
|
467
|
-
Te(e, t._children[
|
|
466
|
+
}), Object.keys(t._children).forEach(function(o) {
|
|
467
|
+
Te(e, t._children[o], r, n + o + "/");
|
|
468
468
|
});
|
|
469
469
|
}
|
|
470
470
|
function Mt(e, t, r) {
|
|
471
471
|
t = r === "root" ? t : t[r];
|
|
472
|
-
var n = Object.keys(t),
|
|
472
|
+
var n = Object.keys(t), o = {
|
|
473
473
|
state: Object.keys(e.state).map(function(l) {
|
|
474
474
|
return {
|
|
475
475
|
key: l,
|
|
@@ -479,39 +479,39 @@ function Mt(e, t, r) {
|
|
|
479
479
|
})
|
|
480
480
|
};
|
|
481
481
|
if (n.length) {
|
|
482
|
-
var
|
|
483
|
-
|
|
482
|
+
var a = Nt(t);
|
|
483
|
+
o.getters = Object.keys(a).map(function(l) {
|
|
484
484
|
return {
|
|
485
485
|
key: l.endsWith("/") ? Ae(l) : l,
|
|
486
486
|
editable: !1,
|
|
487
|
-
value:
|
|
488
|
-
return
|
|
487
|
+
value: ae(function() {
|
|
488
|
+
return a[l];
|
|
489
489
|
})
|
|
490
490
|
};
|
|
491
491
|
});
|
|
492
492
|
}
|
|
493
|
-
return
|
|
493
|
+
return o;
|
|
494
494
|
}
|
|
495
495
|
function Nt(e) {
|
|
496
496
|
var t = {};
|
|
497
497
|
return Object.keys(e).forEach(function(r) {
|
|
498
498
|
var n = r.split("/");
|
|
499
499
|
if (n.length > 1) {
|
|
500
|
-
var
|
|
500
|
+
var o = t, a = n.pop();
|
|
501
501
|
n.forEach(function(l) {
|
|
502
|
-
|
|
502
|
+
o[l] || (o[l] = {
|
|
503
503
|
_custom: {
|
|
504
504
|
value: {},
|
|
505
505
|
display: l,
|
|
506
506
|
tooltip: "Module",
|
|
507
507
|
abstract: !0
|
|
508
508
|
}
|
|
509
|
-
}),
|
|
510
|
-
}), a
|
|
509
|
+
}), o = o[l]._custom.value;
|
|
510
|
+
}), o[a] = ae(function() {
|
|
511
511
|
return e[r];
|
|
512
512
|
});
|
|
513
513
|
} else
|
|
514
|
-
t[r] =
|
|
514
|
+
t[r] = ae(function() {
|
|
515
515
|
return e[r];
|
|
516
516
|
});
|
|
517
517
|
}), t;
|
|
@@ -521,16 +521,16 @@ function Vt(e, t) {
|
|
|
521
521
|
return n;
|
|
522
522
|
});
|
|
523
523
|
return r.reduce(
|
|
524
|
-
function(n,
|
|
525
|
-
var l = n[
|
|
524
|
+
function(n, o, a) {
|
|
525
|
+
var l = n[o];
|
|
526
526
|
if (!l)
|
|
527
|
-
throw new Error('Missing module "' +
|
|
528
|
-
return
|
|
527
|
+
throw new Error('Missing module "' + o + '" for path "' + t + '".');
|
|
528
|
+
return a === r.length - 1 ? l : l._children;
|
|
529
529
|
},
|
|
530
530
|
t === "root" ? e : e.root._children
|
|
531
531
|
);
|
|
532
532
|
}
|
|
533
|
-
function
|
|
533
|
+
function ae(e) {
|
|
534
534
|
try {
|
|
535
535
|
return e();
|
|
536
536
|
} catch (t) {
|
|
@@ -583,36 +583,36 @@ U.prototype.get = function(t) {
|
|
|
583
583
|
};
|
|
584
584
|
U.prototype.getNamespace = function(t) {
|
|
585
585
|
var r = this.root;
|
|
586
|
-
return t.reduce(function(n,
|
|
587
|
-
return r = r.getChild(
|
|
586
|
+
return t.reduce(function(n, o) {
|
|
587
|
+
return r = r.getChild(o), n + (r.namespaced ? o + "/" : "");
|
|
588
588
|
}, "");
|
|
589
589
|
};
|
|
590
590
|
U.prototype.update = function(t) {
|
|
591
591
|
Ne([], this.root, t);
|
|
592
592
|
};
|
|
593
593
|
U.prototype.register = function(t, r, n) {
|
|
594
|
-
var
|
|
594
|
+
var o = this;
|
|
595
595
|
n === void 0 && (n = !0), process.env.NODE_ENV !== "production" && Ve(t, r);
|
|
596
|
-
var
|
|
596
|
+
var a = new T(r, n);
|
|
597
597
|
if (t.length === 0)
|
|
598
|
-
this.root =
|
|
598
|
+
this.root = a;
|
|
599
599
|
else {
|
|
600
600
|
var l = this.get(t.slice(0, -1));
|
|
601
|
-
l.addChild(t[t.length - 1],
|
|
601
|
+
l.addChild(t[t.length - 1], a);
|
|
602
602
|
}
|
|
603
603
|
r.modules && R(r.modules, function(i, c) {
|
|
604
|
-
|
|
604
|
+
o.register(t.concat(c), i, n);
|
|
605
605
|
});
|
|
606
606
|
};
|
|
607
607
|
U.prototype.unregister = function(t) {
|
|
608
|
-
var r = this.get(t.slice(0, -1)), n = t[t.length - 1],
|
|
609
|
-
if (!
|
|
608
|
+
var r = this.get(t.slice(0, -1)), n = t[t.length - 1], o = r.getChild(n);
|
|
609
|
+
if (!o) {
|
|
610
610
|
process.env.NODE_ENV !== "production" && console.warn(
|
|
611
611
|
"[vuex] trying to unregister module '" + n + "', which is not registered"
|
|
612
612
|
);
|
|
613
613
|
return;
|
|
614
614
|
}
|
|
615
|
-
|
|
615
|
+
o.runtime && r.removeChild(n);
|
|
616
616
|
};
|
|
617
617
|
U.prototype.isRegistered = function(t) {
|
|
618
618
|
var r = this.get(t.slice(0, -1)), n = t[t.length - 1];
|
|
@@ -653,34 +653,34 @@ function Ve(e, t) {
|
|
|
653
653
|
Object.keys(ye).forEach(function(r) {
|
|
654
654
|
if (t[r]) {
|
|
655
655
|
var n = ye[r];
|
|
656
|
-
R(t[r], function(
|
|
656
|
+
R(t[r], function(o, a) {
|
|
657
657
|
I(
|
|
658
|
-
n.assert(
|
|
659
|
-
Bt(e, r,
|
|
658
|
+
n.assert(o),
|
|
659
|
+
Bt(e, r, a, o, n.expected)
|
|
660
660
|
);
|
|
661
661
|
});
|
|
662
662
|
}
|
|
663
663
|
});
|
|
664
664
|
}
|
|
665
|
-
function Bt(e, t, r, n,
|
|
666
|
-
var
|
|
667
|
-
return e.length > 0 && (
|
|
665
|
+
function Bt(e, t, r, n, o) {
|
|
666
|
+
var a = t + " should be " + o + ' but "' + t + "." + r + '"';
|
|
667
|
+
return e.length > 0 && (a += ' in module "' + e.join(".") + '"'), a += " is " + JSON.stringify(n) + ".", a;
|
|
668
668
|
}
|
|
669
669
|
var j = function e(t) {
|
|
670
670
|
var r = 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;
|
|
673
673
|
n === void 0 && (n = []);
|
|
674
|
-
var
|
|
675
|
-
|
|
676
|
-
var
|
|
677
|
-
this._committing = !1, this._actions = /* @__PURE__ */ Object.create(null), this._actionSubscribers = [], this._mutations = /* @__PURE__ */ Object.create(null), this._wrappedGetters = /* @__PURE__ */ Object.create(null), this._modules = new U(t), this._modulesNamespaceMap = /* @__PURE__ */ Object.create(null), this._subscribers = [], this._makeLocalGettersCache = /* @__PURE__ */ Object.create(null), this._scope = null, this._devtools =
|
|
674
|
+
var o = t.strict;
|
|
675
|
+
o === void 0 && (o = !1);
|
|
676
|
+
var a = t.devtools;
|
|
677
|
+
this._committing = !1, this._actions = /* @__PURE__ */ Object.create(null), this._actionSubscribers = [], this._mutations = /* @__PURE__ */ Object.create(null), this._wrappedGetters = /* @__PURE__ */ Object.create(null), this._modules = new U(t), this._modulesNamespaceMap = /* @__PURE__ */ Object.create(null), this._subscribers = [], this._makeLocalGettersCache = /* @__PURE__ */ Object.create(null), this._scope = null, this._devtools = a;
|
|
678
678
|
var l = this, i = this, c = i.dispatch, f = i.commit;
|
|
679
679
|
this.dispatch = function(x, S) {
|
|
680
680
|
return c.call(l, x, S);
|
|
681
681
|
}, this.commit = function(x, S, L) {
|
|
682
682
|
return f.call(l, x, S, L);
|
|
683
|
-
}, this.strict =
|
|
683
|
+
}, this.strict = o;
|
|
684
684
|
var m = this._modules.root.state;
|
|
685
685
|
Q(this, m, [], this._modules.root), le(this, m), n.forEach(function(y) {
|
|
686
686
|
return y(r);
|
|
@@ -698,7 +698,7 @@ ue.state.set = function(e) {
|
|
|
698
698
|
process.env.NODE_ENV !== "production" && I(!1, "use store.replaceState() to explicit replace store state.");
|
|
699
699
|
};
|
|
700
700
|
j.prototype.commit = function(t, r, n) {
|
|
701
|
-
var
|
|
701
|
+
var o = this, a = J(t, r, n), l = a.type, i = a.payload, c = a.options, f = { type: l, payload: i }, m = this._mutations[l];
|
|
702
702
|
if (!m) {
|
|
703
703
|
process.env.NODE_ENV !== "production" && console.error("[vuex] unknown mutation type: " + l);
|
|
704
704
|
return;
|
|
@@ -708,15 +708,15 @@ j.prototype.commit = function(t, r, n) {
|
|
|
708
708
|
x(i);
|
|
709
709
|
});
|
|
710
710
|
}), this._subscribers.slice().forEach(function(y) {
|
|
711
|
-
return y(f,
|
|
711
|
+
return y(f, o.state);
|
|
712
712
|
}), process.env.NODE_ENV !== "production" && c && c.silent && console.warn(
|
|
713
713
|
"[vuex] mutation type: " + l + ". Silent option has been removed. Use the filter functionality in the vue-devtools"
|
|
714
714
|
);
|
|
715
715
|
};
|
|
716
716
|
j.prototype.dispatch = function(t, r) {
|
|
717
|
-
var n = this,
|
|
717
|
+
var n = this, o = J(t, r), a = o.type, l = o.payload, i = { type: a, payload: l }, c = this._actions[a];
|
|
718
718
|
if (!c) {
|
|
719
|
-
process.env.NODE_ENV !== "production" && console.error("[vuex] unknown action type: " +
|
|
719
|
+
process.env.NODE_ENV !== "production" && console.error("[vuex] unknown action type: " + a);
|
|
720
720
|
return;
|
|
721
721
|
}
|
|
722
722
|
try {
|
|
@@ -765,9 +765,9 @@ j.prototype.subscribeAction = function(t, r) {
|
|
|
765
765
|
return De(n, this._actionSubscribers, r);
|
|
766
766
|
};
|
|
767
767
|
j.prototype.watch = function(t, r, n) {
|
|
768
|
-
var
|
|
768
|
+
var o = this;
|
|
769
769
|
return process.env.NODE_ENV !== "production" && I(typeof t == "function", "store.watch only accepts a function."), W(function() {
|
|
770
|
-
return t(
|
|
770
|
+
return t(o.state, o.getters);
|
|
771
771
|
}, r, Object.assign({}, n));
|
|
772
772
|
};
|
|
773
773
|
j.prototype.replaceState = function(t) {
|
|
@@ -800,8 +800,8 @@ Object.defineProperties(j.prototype, ue);
|
|
|
800
800
|
var Gt = Be(function(e, t) {
|
|
801
801
|
var r = {};
|
|
802
802
|
return process.env.NODE_ENV !== "production" && !ce(t) && console.error("[vuex] mapState: mapper parameter must be either an Array or an Object"), Le(t).forEach(function(n) {
|
|
803
|
-
var
|
|
804
|
-
r[
|
|
803
|
+
var o = n.key, a = n.val;
|
|
804
|
+
r[o] = function() {
|
|
805
805
|
var i = this.$store.state, c = this.$store.getters;
|
|
806
806
|
if (e) {
|
|
807
807
|
var f = Ge(this.$store, "mapState", e);
|
|
@@ -809,14 +809,14 @@ var Gt = Be(function(e, t) {
|
|
|
809
809
|
return;
|
|
810
810
|
i = f.context.state, c = f.context.getters;
|
|
811
811
|
}
|
|
812
|
-
return typeof
|
|
813
|
-
}, r[
|
|
812
|
+
return typeof a == "function" ? a.call(this, i, c) : i[a];
|
|
813
|
+
}, r[o].vuex = !0;
|
|
814
814
|
}), r;
|
|
815
815
|
}), Ft = Be(function(e, t) {
|
|
816
816
|
var r = {};
|
|
817
817
|
return process.env.NODE_ENV !== "production" && !ce(t) && console.error("[vuex] mapMutations: mapper parameter must be either an Array or an Object"), Le(t).forEach(function(n) {
|
|
818
|
-
var
|
|
819
|
-
r[
|
|
818
|
+
var o = n.key, a = n.val;
|
|
819
|
+
r[o] = function() {
|
|
820
820
|
for (var i = [], c = arguments.length; c--; )
|
|
821
821
|
i[c] = arguments[c];
|
|
822
822
|
var f = this.$store.commit;
|
|
@@ -826,7 +826,7 @@ var Gt = Be(function(e, t) {
|
|
|
826
826
|
return;
|
|
827
827
|
f = m.context.commit;
|
|
828
828
|
}
|
|
829
|
-
return typeof
|
|
829
|
+
return typeof a == "function" ? a.apply(this, [f].concat(i)) : f.apply(this.$store, [a].concat(i));
|
|
830
830
|
};
|
|
831
831
|
}), r;
|
|
832
832
|
});
|
|
@@ -959,33 +959,33 @@ const Rt = {
|
|
|
959
959
|
return new Promise((t, r) => {
|
|
960
960
|
e || t();
|
|
961
961
|
const n = new FormData();
|
|
962
|
-
n.append("file", e), Object.entries(this.file_config).forEach(([
|
|
963
|
-
n.append(
|
|
962
|
+
n.append("file", e), Object.entries(this.file_config).forEach(([o, a]) => {
|
|
963
|
+
n.append(o, a);
|
|
964
964
|
}), this.files.push({ file_name: e.name, loading: 0 }), axios.post(this.route_url + "/media", n, {
|
|
965
|
-
onUploadProgress: (
|
|
965
|
+
onUploadProgress: (o) => {
|
|
966
966
|
this.files[this.files.length - 1].loading = Math.floor(
|
|
967
|
-
|
|
967
|
+
o.loaded / o.total * 100
|
|
968
968
|
);
|
|
969
969
|
}
|
|
970
|
-
}).then((
|
|
971
|
-
let
|
|
970
|
+
}).then((o) => {
|
|
971
|
+
let a = this.files.findIndex(
|
|
972
972
|
(l) => l.file_name === e.name
|
|
973
973
|
);
|
|
974
|
-
|
|
975
|
-
file_name:
|
|
976
|
-
size:
|
|
977
|
-
id:
|
|
978
|
-
url:
|
|
974
|
+
a !== -1 && this.files.splice(a, 1), this.uploadFileList.push({
|
|
975
|
+
file_name: o.data.file_name,
|
|
976
|
+
size: o.data.size,
|
|
977
|
+
id: o.data.id,
|
|
978
|
+
url: o.data.url
|
|
979
979
|
}), this.error_message_data = "", t();
|
|
980
|
-
}).catch((
|
|
981
|
-
|
|
982
|
-
|
|
980
|
+
}).catch((o) => {
|
|
981
|
+
o.response.status === 422 ? this.error_message_data = this.getFirstError(
|
|
982
|
+
o.response.data.errors,
|
|
983
983
|
"file"
|
|
984
|
-
) : console.error("An error occurred:",
|
|
985
|
-
let
|
|
984
|
+
) : console.error("An error occurred:", o);
|
|
985
|
+
let a = this.files.findIndex(
|
|
986
986
|
(l) => l.file_name === e.name
|
|
987
987
|
);
|
|
988
|
-
|
|
988
|
+
a !== -1 && this.files.splice(a, 1), console.log(o), t();
|
|
989
989
|
});
|
|
990
990
|
});
|
|
991
991
|
}
|
|
@@ -1021,35 +1021,35 @@ const Rt = {
|
|
|
1021
1021
|
], Jt = { class: "mt-2 gl-span-form-error" }, Qt = { class: "block mt-2 mb-3 text-sm font-normal leading-5 text-gray-500" }, er = {
|
|
1022
1022
|
key: 0,
|
|
1023
1023
|
class: ""
|
|
1024
|
-
}, tr = { class: "flex items-center justify-between p-2 mb-2 text-gray-900 rounded-lg bg-gray-50 hover:bg-gray-100 hover:shadow dark:bg-gray-600 dark:hover:bg-gray-500 dark:text-white" }, rr = /* @__PURE__ */ s("i", { class: "text-3xl fas fa-file-alt" }, null, -1), sr = { class: "w-full ml-3" }, nr = { class: "flex items-center justify-between mb-1" },
|
|
1024
|
+
}, tr = { class: "flex items-center justify-between p-2 mb-2 text-gray-900 rounded-lg bg-gray-50 hover:bg-gray-100 hover:shadow dark:bg-gray-600 dark:hover:bg-gray-500 dark:text-white" }, rr = /* @__PURE__ */ s("i", { class: "text-3xl fas fa-file-alt" }, null, -1), sr = { class: "w-full ml-3" }, nr = { class: "flex items-center justify-between mb-1" }, ar = { class: "text-xs text-black dark:text-white" }, or = { class: "text-xs text-black dark:text-white" }, ir = { class: "w-full h-1 mb-1 bg-white rounded-full dark:bg-gray-800" }, lr = { class: "overflow-x-scroll max-h-56" }, dr = { class: "flex items-center justify-between p-2 mb-2 text-gray-900 rounded-lg bg-gray-50 hover:bg-gray-100 hover:shadow dark:bg-gray-600 dark:hover:bg-gray-500 dark:text-white" }, ur = { class: "flex items-center" }, cr = /* @__PURE__ */ s("i", {
|
|
1025
1025
|
class: "text-3xl fas fa-file-alt",
|
|
1026
1026
|
"aria-hidden": "true"
|
|
1027
|
-
}, null, -1), fr = { class: "flex flex-col ml-3" }, hr = { class: "text-xs" }, gr = { class: "text-xs" }, mr = { class: "flex gap-2" },
|
|
1028
|
-
function br(e, t, r, n,
|
|
1027
|
+
}, null, -1), fr = { class: "flex flex-col ml-3" }, hr = { class: "text-xs" }, gr = { class: "text-xs" }, mr = { class: "flex gap-2" }, _r = ["href"], pr = ["onClick"];
|
|
1028
|
+
function br(e, t, r, n, o, a) {
|
|
1029
1029
|
const l = X("DeleteConfirmationModal");
|
|
1030
1030
|
return d(), u(v, null, [
|
|
1031
1031
|
H(l, {
|
|
1032
|
-
isOpen:
|
|
1033
|
-
onConfirmDelete:
|
|
1034
|
-
onCancelDelete:
|
|
1032
|
+
isOpen: o.open_delete_modal,
|
|
1033
|
+
onConfirmDelete: a.deleteAction,
|
|
1034
|
+
onCancelDelete: a.closeDeleteModal
|
|
1035
1035
|
}, null, 8, ["isOpen", "onConfirmDelete", "onCancelDelete"]),
|
|
1036
1036
|
s("div", {
|
|
1037
1037
|
class: p([{
|
|
1038
|
-
"border-red-500 dark:border-red-500":
|
|
1039
|
-
"border-gray-200 dark:border-gray-700":
|
|
1038
|
+
"border-red-500 dark:border-red-500": o.error_message_data !== "",
|
|
1039
|
+
"border-gray-200 dark:border-gray-700": o.error_message_data == ""
|
|
1040
1040
|
}, "w-full p-4 bg-white border rounded-lg shadow dark:bg-gray-800"])
|
|
1041
1041
|
}, [
|
|
1042
1042
|
s("label", {
|
|
1043
1043
|
class: p({
|
|
1044
|
-
"gl-label-form":
|
|
1045
|
-
"gl-label-form-invalid":
|
|
1044
|
+
"gl-label-form": o.error_message_data == "",
|
|
1045
|
+
"gl-label-form-invalid": o.error_message_data !== "",
|
|
1046
1046
|
required: r.is_required
|
|
1047
1047
|
})
|
|
1048
1048
|
}, h(r.label_name), 3),
|
|
1049
1049
|
s("div", {
|
|
1050
|
-
onDragover: t[3] || (t[3] = M((...i) =>
|
|
1051
|
-
onDragleave: t[4] || (t[4] = M((...i) =>
|
|
1052
|
-
onDrop: t[5] || (t[5] = M((...i) =>
|
|
1050
|
+
onDragover: t[3] || (t[3] = M((...i) => a.onDragOver && a.onDragOver(...i), ["prevent"])),
|
|
1051
|
+
onDragleave: t[4] || (t[4] = M((...i) => a.onDragLeave && a.onDragLeave(...i), ["prevent"])),
|
|
1052
|
+
onDrop: t[5] || (t[5] = M((...i) => a.onDrop && a.onDrop(...i), ["prevent"])),
|
|
1053
1053
|
class: "flex flex-col items-center justify-center w-full h-40 mt-3 mb-3 border-2 border-gray-300 border-dashed rounded-lg cursor-pointer bg-gray-50 dark:hover:bg-bray-800 dark:bg-gray-700 hover:bg-gray-100 dark:border-gray-600 dark:hover:border-gray-500 dark:hover:bg-gray-600"
|
|
1054
1054
|
}, [
|
|
1055
1055
|
s("div", Ut, [
|
|
@@ -1058,31 +1058,31 @@ function br(e, t, r, n, a, o) {
|
|
|
1058
1058
|
ref: "file_input" + r.field_name,
|
|
1059
1059
|
hidden: "",
|
|
1060
1060
|
multiple: r.has_multiple_file,
|
|
1061
|
-
onChange: t[0] || (t[0] = (...i) =>
|
|
1061
|
+
onChange: t[0] || (t[0] = (...i) => a.uploadFiles && a.uploadFiles(...i))
|
|
1062
1062
|
}, null, 40, qt),
|
|
1063
1063
|
P(s("input", {
|
|
1064
1064
|
type: "hidden",
|
|
1065
1065
|
name: r.field_name,
|
|
1066
|
-
"onUpdate:modelValue": t[1] || (t[1] = (i) =>
|
|
1066
|
+
"onUpdate:modelValue": t[1] || (t[1] = (i) => a.uploadedFileIds = i)
|
|
1067
1067
|
}, null, 8, zt), [
|
|
1068
|
-
[V,
|
|
1068
|
+
[V, a.uploadedFileIds]
|
|
1069
1069
|
]),
|
|
1070
|
-
|
|
1070
|
+
o.isDragging ? (d(), u("div", Wt, Yt)) : (d(), u("div", {
|
|
1071
1071
|
key: 0,
|
|
1072
1072
|
class: "flex flex-col items-center justify-center",
|
|
1073
1073
|
onClick: t[2] || (t[2] = (i) => e.$refs["file_input" + this.field_name].click())
|
|
1074
1074
|
}, Kt))
|
|
1075
1075
|
])
|
|
1076
1076
|
], 32),
|
|
1077
|
-
s("span", Jt, h(
|
|
1077
|
+
s("span", Jt, h(o.error_message_data), 1),
|
|
1078
1078
|
s("small", Qt, h(r.description), 1),
|
|
1079
|
-
|
|
1080
|
-
(d(!0), u(v, null, $(
|
|
1079
|
+
o.files.length > 0 ? (d(), u("section", er, [
|
|
1080
|
+
(d(!0), u(v, null, $(o.files, (i, c) => (d(), u("li", tr, [
|
|
1081
1081
|
rr,
|
|
1082
1082
|
s("div", sr, [
|
|
1083
1083
|
s("div", nr, [
|
|
1084
|
-
s("span",
|
|
1085
|
-
s("span",
|
|
1084
|
+
s("span", ar, h(a.getFileName(i.file_name)), 1),
|
|
1085
|
+
s("span", or, h(i.loading), 1)
|
|
1086
1086
|
]),
|
|
1087
1087
|
s("div", ir, [
|
|
1088
1088
|
s("div", {
|
|
@@ -1094,12 +1094,12 @@ function br(e, t, r, n, a, o) {
|
|
|
1094
1094
|
]))), 256))
|
|
1095
1095
|
])) : g("", !0),
|
|
1096
1096
|
s("section", lr, [
|
|
1097
|
-
(d(!0), u(v, null, $(
|
|
1097
|
+
(d(!0), u(v, null, $(o.uploadFileList, (i, c) => (d(), u("li", dr, [
|
|
1098
1098
|
s("div", ur, [
|
|
1099
1099
|
cr,
|
|
1100
1100
|
s("div", fr, [
|
|
1101
|
-
s("span", hr, h(
|
|
1102
|
-
s("span", gr, h(
|
|
1101
|
+
s("span", hr, h(a.getFileName(i.file_name)), 1),
|
|
1102
|
+
s("span", gr, h(a.formatFileSize(i.size)), 1)
|
|
1103
1103
|
])
|
|
1104
1104
|
]),
|
|
1105
1105
|
s("div", mr, [
|
|
@@ -1107,14 +1107,14 @@ function br(e, t, r, n, a, o) {
|
|
|
1107
1107
|
href: i.url,
|
|
1108
1108
|
target: "_blank",
|
|
1109
1109
|
class: "text-lg text-blue-600 cursor-pointer dark:text-blue-400 fas fa-download"
|
|
1110
|
-
}, null, 8,
|
|
1110
|
+
}, null, 8, _r),
|
|
1111
1111
|
r.is_enable_delete ? (d(), u("i", {
|
|
1112
1112
|
key: 0,
|
|
1113
1113
|
onClick: (f) => {
|
|
1114
|
-
|
|
1114
|
+
o.media_id = i.id, o.open_delete_modal = !0;
|
|
1115
1115
|
},
|
|
1116
1116
|
class: "text-lg text-red-600 cursor-pointer dark:text-red-400 fas fa-x"
|
|
1117
|
-
}, null, 8,
|
|
1117
|
+
}, null, 8, pr)) : g("", !0)
|
|
1118
1118
|
])
|
|
1119
1119
|
]))), 256))
|
|
1120
1120
|
])
|
|
@@ -1196,10 +1196,10 @@ const hd = /* @__PURE__ */ D(Rt, [["render", br]]), yr = {
|
|
|
1196
1196
|
kr,
|
|
1197
1197
|
$r
|
|
1198
1198
|
];
|
|
1199
|
-
function Sr(e, t, r, n,
|
|
1199
|
+
function Sr(e, t, r, n, o, a) {
|
|
1200
1200
|
return e.notification.show ? (d(), u("div", {
|
|
1201
1201
|
key: 0,
|
|
1202
|
-
class: p(["fixed right-0 z-50 flex items-center p-4 m-5 mb-4 rounded-lg shadow-lg",
|
|
1202
|
+
class: p(["fixed right-0 z-50 flex items-center p-4 m-5 mb-4 rounded-lg shadow-lg", a.alertClasses]),
|
|
1203
1203
|
role: "alert"
|
|
1204
1204
|
}, [
|
|
1205
1205
|
vr,
|
|
@@ -1207,8 +1207,8 @@ function Sr(e, t, r, n, a, o) {
|
|
|
1207
1207
|
s("div", wr, h(e.notification.message), 1),
|
|
1208
1208
|
s("button", {
|
|
1209
1209
|
type: "button",
|
|
1210
|
-
onClick: t[0] || (t[0] = (...l) =>
|
|
1211
|
-
class: p(["inline-flex items-center justify-center w-6 h-6 p-1 -mx-1 -my-1 rounded-lg ms-auto focus:ring-2 hover:bg-opacity-50",
|
|
1210
|
+
onClick: t[0] || (t[0] = (...l) => a.dismiss && a.dismiss(...l)),
|
|
1211
|
+
class: p(["inline-flex items-center justify-center w-6 h-6 p-1 -mx-1 -my-1 rounded-lg ms-auto focus:ring-2 hover:bg-opacity-50", a.buttonClasses]),
|
|
1212
1212
|
"aria-label": "Close"
|
|
1213
1213
|
}, Cr, 2)
|
|
1214
1214
|
], 2)) : g("", !0);
|
|
@@ -1249,9 +1249,9 @@ const gd = /* @__PURE__ */ D(yr, [["render", Sr]]), Or = {
|
|
|
1249
1249
|
mounted() {
|
|
1250
1250
|
}
|
|
1251
1251
|
}, Dr = { class: "grid w-full gap-1 mt-5 mb-5 md:gap-0 md:grid-cols-10 language-selector" }, Pr = ["name", "value", "id", "checked"], Er = ["for"];
|
|
1252
|
-
function jr(e, t, r, n,
|
|
1252
|
+
function jr(e, t, r, n, o, a) {
|
|
1253
1253
|
return d(), u("ul", Dr, [
|
|
1254
|
-
(d(!0), u(v, null, $(
|
|
1254
|
+
(d(!0), u(v, null, $(o.locals, (l, i) => (d(), u("li", null, [
|
|
1255
1255
|
s("input", {
|
|
1256
1256
|
type: "radio",
|
|
1257
1257
|
name: r.trans_selector_name,
|
|
@@ -1259,14 +1259,14 @@ function jr(e, t, r, n, a, o) {
|
|
|
1259
1259
|
class: "hidden peer",
|
|
1260
1260
|
id: l + "_" + r.field_name,
|
|
1261
1261
|
autocomplete: "off",
|
|
1262
|
-
checked: l ===
|
|
1262
|
+
checked: l === o.default_language
|
|
1263
1263
|
}, null, 8, Pr),
|
|
1264
1264
|
s("label", {
|
|
1265
1265
|
for: l + "_" + r.field_name,
|
|
1266
1266
|
class: p([{
|
|
1267
1267
|
"border md:!rounded-s-lg": i === 0,
|
|
1268
|
-
"border md:!rounded-e-lg": i ===
|
|
1269
|
-
"border-t border-b": i !== 0 && i !==
|
|
1268
|
+
"border md:!rounded-e-lg": i === o.locals.length - 1,
|
|
1269
|
+
"border-t border-b": i !== 0 && i !== o.locals.length - 1
|
|
1270
1270
|
}, "w-full p-1 font-bold text-center text-gray-500 uppercase bg-white border-gray-200 rounded-lg cursor-pointer md:rounded-none dark:hover:text-gray-300 dark:border-gray-700 dark:peer-checked:text-blue-500 peer-checked:border-blue-600 peer-checked:text-blue-600 hover:text-gray-600 hover:bg-gray-100 dark:text-gray-400 dark:bg-gray-800 dark:hover:bg-gray-700"])
|
|
1271
1271
|
}, h(l), 11, Er)
|
|
1272
1272
|
]))), 256))
|
|
@@ -1275,7 +1275,7 @@ function jr(e, t, r, n, a, o) {
|
|
|
1275
1275
|
const md = /* @__PURE__ */ D(Or, [["render", jr]]), Ar = { class: "bg-white border rounded-lg border-stroke shadow-default dark:border-strokedark dark:bg-boxdark" }, Ir = { class: "px-3 py-4 border-b border-stroke dark:border-strokedark" }, Tr = { class: "font-semibold text-black dark:text-white" }, Mr = {
|
|
1276
1276
|
key: 0,
|
|
1277
1277
|
class: "p-6"
|
|
1278
|
-
},
|
|
1278
|
+
}, _d = {
|
|
1279
1279
|
__name: "GlCard",
|
|
1280
1280
|
props: {
|
|
1281
1281
|
class: {
|
|
@@ -1285,7 +1285,7 @@ const md = /* @__PURE__ */ D(Or, [["render", jr]]), Ar = { class: "bg-white bord
|
|
|
1285
1285
|
},
|
|
1286
1286
|
setup(e) {
|
|
1287
1287
|
const t = e, r = B(() => t.class);
|
|
1288
|
-
return (n,
|
|
1288
|
+
return (n, o) => (d(), u("div", {
|
|
1289
1289
|
class: p(["flex flex-col gap-9", r.value])
|
|
1290
1290
|
}, [
|
|
1291
1291
|
s("div", Ar, [
|
|
@@ -1483,7 +1483,7 @@ const md = /* @__PURE__ */ D(Or, [["render", jr]]), Ar = { class: "bg-white bord
|
|
|
1483
1483
|
})
|
|
1484
1484
|
])
|
|
1485
1485
|
], -1), Jr = ["id"], Qr = { class: "overflow-y-auto max-h-64" }, es = ["onClick", "onMousedown", "id"];
|
|
1486
|
-
function ts(e, t, r, n,
|
|
1486
|
+
function ts(e, t, r, n, o, a) {
|
|
1487
1487
|
return d(), u(v, null, [
|
|
1488
1488
|
r.show ? (d(), u("div", {
|
|
1489
1489
|
key: 0,
|
|
@@ -1491,7 +1491,7 @@ function ts(e, t, r, n, a, o) {
|
|
|
1491
1491
|
}, [
|
|
1492
1492
|
s("h3", Vr, h(r.label_name), 1),
|
|
1493
1493
|
s("p", Lr, [
|
|
1494
|
-
(d(!0), u(v, null, $(
|
|
1494
|
+
(d(!0), u(v, null, $(o.selected, (l, i) => (d(), u("span", Br, h(l.name), 1))), 256))
|
|
1495
1495
|
]),
|
|
1496
1496
|
Gr
|
|
1497
1497
|
], 2)) : g("", !0),
|
|
@@ -1499,7 +1499,7 @@ function ts(e, t, r, n, a, o) {
|
|
|
1499
1499
|
key: 1,
|
|
1500
1500
|
class: p(["mb-4", r.field_name])
|
|
1501
1501
|
}, [
|
|
1502
|
-
(d(!0), u(v, null, $(
|
|
1502
|
+
(d(!0), u(v, null, $(o.selectedIds, (l, i) => (d(), u("input", {
|
|
1503
1503
|
type: "hidden",
|
|
1504
1504
|
name: r.field_name + "[]",
|
|
1505
1505
|
key: i,
|
|
@@ -1515,12 +1515,12 @@ function ts(e, t, r, n, a, o) {
|
|
|
1515
1515
|
}, h(r.label_name), 3),
|
|
1516
1516
|
s("div", Ur, [
|
|
1517
1517
|
s("button", {
|
|
1518
|
-
onClick: t[0] || (t[0] = (...l) =>
|
|
1518
|
+
onClick: t[0] || (t[0] = (...l) => a.selectAll && a.selectAll(...l)),
|
|
1519
1519
|
type: "button",
|
|
1520
1520
|
class: "px-4 py-0 text-sm font-medium text-gray-900 bg-transparent border border-gray-900 rounded-s-md hover:bg-gray-900 hover:text-white focus:z-10 focus:bg-gray-900 focus:text-white dark:border-white dark:text-white dark:hover:text-white dark:hover:bg-gray-700 dark:focus:bg-gray-700"
|
|
1521
1521
|
}, " Select all "),
|
|
1522
1522
|
s("button", {
|
|
1523
|
-
onClick: t[1] || (t[1] = (...l) =>
|
|
1523
|
+
onClick: t[1] || (t[1] = (...l) => a.deselectAll && a.deselectAll(...l)),
|
|
1524
1524
|
type: "button",
|
|
1525
1525
|
class: "px-4 py-0 text-sm font-medium text-gray-900 bg-transparent border border-gray-900 rounded-e-md hover:bg-gray-900 hover:text-white focus:z-10 focus:bg-gray-900 focus:text-white dark:border-white dark:text-white dark:hover:text-white dark:hover:bg-gray-700 dark:focus:bg-gray-700"
|
|
1526
1526
|
}, " Deselect all ")
|
|
@@ -1529,21 +1529,21 @@ function ts(e, t, r, n, a, o) {
|
|
|
1529
1529
|
s("div", zr, [
|
|
1530
1530
|
s("div", {
|
|
1531
1531
|
class: "flex flex-wrap gap-2 pl-8 pr-2 gl-multi-dropdown showOptions",
|
|
1532
|
-
onClick: t[2] || (t[2] = (l) =>
|
|
1532
|
+
onClick: t[2] || (t[2] = (l) => a.showOptions())
|
|
1533
1533
|
}, [
|
|
1534
|
-
(d(!0), u(v, null, $(
|
|
1534
|
+
(d(!0), u(v, null, $(o.selected, (l, i) => (d(), u("span", {
|
|
1535
1535
|
key: i,
|
|
1536
1536
|
class: "px-2 py-1 text-xs font-medium text-blue-800 bg-blue-100 rounded pointer-events-none dark:bg-blue-900 dark:text-blue-300"
|
|
1537
1537
|
}, [
|
|
1538
1538
|
w(h(l.name) + " ", 1),
|
|
1539
1539
|
s("i", {
|
|
1540
|
-
onClick: M((c) =>
|
|
1540
|
+
onClick: M((c) => a.clearOption(l), ["stop"]),
|
|
1541
1541
|
class: "cursor-pointer pointer-events-auto hover:text-red-600 dark:hover:text-red-400 fas fa-times"
|
|
1542
1542
|
}, null, 8, Hr)
|
|
1543
1543
|
]))), 128))
|
|
1544
1544
|
]),
|
|
1545
1545
|
s("i", {
|
|
1546
|
-
class: p([
|
|
1546
|
+
class: p([o.optionsShown ? "fa-angle-up" : "fa-angle-down", "absolute text-xl text-gray-500 cursor-pointer fas right-2 hover:text-gray-700"]),
|
|
1547
1547
|
style: { top: "11px" }
|
|
1548
1548
|
}, null, 2)
|
|
1549
1549
|
]),
|
|
@@ -1554,39 +1554,39 @@ function ts(e, t, r, n, a, o) {
|
|
|
1554
1554
|
Yr,
|
|
1555
1555
|
P(s("input", {
|
|
1556
1556
|
type: "search",
|
|
1557
|
-
"onUpdate:modelValue": t[3] || (t[3] = (l) =>
|
|
1557
|
+
"onUpdate:modelValue": t[3] || (t[3] = (l) => o.searchFilter = l),
|
|
1558
1558
|
id: r.field_name + "search",
|
|
1559
1559
|
ref: r.field_name + "search",
|
|
1560
|
-
onBlur: t[4] || (t[4] = (l) =>
|
|
1560
|
+
onBlur: t[4] || (t[4] = (l) => a.exit()),
|
|
1561
1561
|
autocomplete: "off",
|
|
1562
1562
|
class: "block w-full p-2 text-sm text-gray-900 border border-gray-300 rounded-lg ps-10 bg-gray-50 focus:ring-blue-500 focus:border-blue-500 dark:bg-gray-700 dark:border-gray-600 dark:placeholder-gray-400 dark:text-white dark:focus:ring-blue-500 dark:focus:border-blue-500",
|
|
1563
1563
|
placeholder: "Search ..."
|
|
1564
1564
|
}, null, 40, Jr), [
|
|
1565
|
-
[V,
|
|
1565
|
+
[V, o.searchFilter]
|
|
1566
1566
|
])
|
|
1567
1567
|
])
|
|
1568
1568
|
]),
|
|
1569
1569
|
s("div", Qr, [
|
|
1570
|
-
(d(!0), u(v, null, $(
|
|
1570
|
+
(d(!0), u(v, null, $(a.filteredOptions, (l, i) => (d(), u("div", {
|
|
1571
1571
|
class: p([
|
|
1572
1572
|
"block 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",
|
|
1573
|
-
i + 1 ==
|
|
1573
|
+
i + 1 == o.count || a.isOptionSelected(l.id) ? "bg-gray-100 dark:bg-gray-600" : ""
|
|
1574
1574
|
]),
|
|
1575
|
-
onClick: (c) =>
|
|
1576
|
-
onMousedown: (c) =>
|
|
1575
|
+
onClick: (c) => a.selectOption(l),
|
|
1576
|
+
onMousedown: (c) => a.selectOption(l),
|
|
1577
1577
|
key: i,
|
|
1578
1578
|
id: i + 1
|
|
1579
1579
|
}, h(l.name || l.id || "-"), 43, es))), 128))
|
|
1580
1580
|
])
|
|
1581
1581
|
], 512), [
|
|
1582
|
-
[G,
|
|
1582
|
+
[G, o.optionsShown]
|
|
1583
1583
|
])
|
|
1584
1584
|
])
|
|
1585
1585
|
])) : g("", !0)
|
|
1586
1586
|
], 2))
|
|
1587
1587
|
], 64);
|
|
1588
1588
|
}
|
|
1589
|
-
const
|
|
1589
|
+
const pd = /* @__PURE__ */ D(Nr, [["render", ts]]), rs = {
|
|
1590
1590
|
props: {
|
|
1591
1591
|
button_type: {
|
|
1592
1592
|
type: String,
|
|
@@ -1655,11 +1655,11 @@ const _d = /* @__PURE__ */ D(Nr, [["render", ts]]), rs = {
|
|
|
1655
1655
|
fill: "#1C64F2"
|
|
1656
1656
|
})
|
|
1657
1657
|
], -1);
|
|
1658
|
-
function ns(e, t, r, n,
|
|
1658
|
+
function ns(e, t, r, n, o, a) {
|
|
1659
1659
|
return r.is_loading ? (d(), Z(se("button"), {
|
|
1660
1660
|
key: 1,
|
|
1661
1661
|
disabled: "",
|
|
1662
|
-
class: p(`flex items-center gap-2 focus:outline-none text-sm px-2 py-2 me-2 font-medium rounded-lg ${
|
|
1662
|
+
class: p(`flex items-center gap-2 focus:outline-none text-sm px-2 py-2 me-2 font-medium rounded-lg ${a.buttonTypeClass}`)
|
|
1663
1663
|
}, {
|
|
1664
1664
|
default: Y(() => [
|
|
1665
1665
|
ss,
|
|
@@ -1671,7 +1671,7 @@ function ns(e, t, r, n, a, o) {
|
|
|
1671
1671
|
type: r.is_submit
|
|
1672
1672
|
}, { type: r.is_submit ? "submit" : void 0 }, {
|
|
1673
1673
|
href: r.tag === "a" ? r.href : void 0,
|
|
1674
|
-
class: `flex items-center gap-2 focus:outline-none text-sm px-5 py-2 me-2 font-medium rounded-lg ${
|
|
1674
|
+
class: `flex items-center gap-2 focus:outline-none text-sm px-5 py-2 me-2 font-medium rounded-lg ${a.buttonTypeClass}`
|
|
1675
1675
|
}), {
|
|
1676
1676
|
default: Y(() => [
|
|
1677
1677
|
r.icon ? (d(), u("i", {
|
|
@@ -1683,7 +1683,7 @@ function ns(e, t, r, n, a, o) {
|
|
|
1683
1683
|
_: 3
|
|
1684
1684
|
}, 16, ["type", "href", "class"]));
|
|
1685
1685
|
}
|
|
1686
|
-
const bd = /* @__PURE__ */ D(rs, [["render", ns]]),
|
|
1686
|
+
const bd = /* @__PURE__ */ D(rs, [["render", ns]]), as = { class: "font-bold ptext-lg dark:text-white" }, os = ["name", "id"], is = ["id"], ls = /* @__PURE__ */ s("hr", { class: "!opacity-100 bg-gray-200 border-0 dark:bg-gray-700" }, null, -1), ds = ["for"], us = /* @__PURE__ */ s("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), cs = ["name", "id"], fs = ["required", "name", "id", "type"], hs = { class: "gl-span-form-error" }, gs = { class: "block mt-1 text-sm font-normal leading-5 text-gray-500" }, yd = {
|
|
1687
1687
|
__name: "GlTextareaTranslate",
|
|
1688
1688
|
props: {
|
|
1689
1689
|
is_required: {
|
|
@@ -1741,23 +1741,23 @@ const bd = /* @__PURE__ */ D(rs, [["render", ns]]), os = { class: "font-bold pte
|
|
|
1741
1741
|
},
|
|
1742
1742
|
emits: ["update:modelValue", "update:modelValueTranslate", "keydown"],
|
|
1743
1743
|
setup(e, { expose: t, emit: r }) {
|
|
1744
|
-
const n = e,
|
|
1744
|
+
const n = e, o = r, a = O(null), l = O(null);
|
|
1745
1745
|
return F(() => {
|
|
1746
|
-
|
|
1746
|
+
a.value !== null && a.value.hasAttribute("autofocus") && a.value.focus(), n.model_value && (o("update:modelValue", n.model_value), a.value.value = n.model_value), n.model_value_translate, n.translatable && axios.post("/admin/get_field_translations", {
|
|
1747
1747
|
model: n.translatable.model,
|
|
1748
1748
|
row_id: n.translatable.row_id,
|
|
1749
1749
|
field: n.translatable.field
|
|
1750
1750
|
}).then((i) => {
|
|
1751
|
-
l.value.value = JSON.stringify(i.data),
|
|
1751
|
+
l.value.value = JSON.stringify(i.data), o("update:modelValueTranslate", JSON.stringify(i.data)), console.log("input_translate", l.value.value);
|
|
1752
1752
|
}).catch((i) => {
|
|
1753
1753
|
console.log(i);
|
|
1754
1754
|
});
|
|
1755
|
-
}), t({ focus: () =>
|
|
1755
|
+
}), t({ focus: () => a.value.focus() }), (i, c) => (d(), u(v, null, [
|
|
1756
1756
|
e.show ? (d(), u("div", {
|
|
1757
1757
|
key: 0,
|
|
1758
1758
|
class: p(e.field_name)
|
|
1759
1759
|
}, [
|
|
1760
|
-
s("h3",
|
|
1760
|
+
s("h3", as, h(e.label_name), 1),
|
|
1761
1761
|
P(s("input", {
|
|
1762
1762
|
type: "hidden",
|
|
1763
1763
|
"data-i18n": "true",
|
|
@@ -1766,7 +1766,7 @@ const bd = /* @__PURE__ */ D(rs, [["render", ns]]), os = { class: "font-bold pte
|
|
|
1766
1766
|
ref_key: "input_translate",
|
|
1767
1767
|
ref: l,
|
|
1768
1768
|
"onUpdate:modelValue": c[0] || (c[0] = (f) => i.inputTranslateValue = f)
|
|
1769
|
-
}, null, 8,
|
|
1769
|
+
}, null, 8, os), [
|
|
1770
1770
|
[V, i.inputTranslateValue]
|
|
1771
1771
|
]),
|
|
1772
1772
|
s("p", {
|
|
@@ -1810,7 +1810,7 @@ const bd = /* @__PURE__ */ D(rs, [["render", ns]]), os = { class: "font-bold pte
|
|
|
1810
1810
|
onInput: c[2] || (c[2] = (f) => i.$emit("update:modelValue", f.target.value)),
|
|
1811
1811
|
onKeydown: c[3] || (c[3] = (f) => i.$emit("keydown", f)),
|
|
1812
1812
|
ref_key: "input",
|
|
1813
|
-
ref:
|
|
1813
|
+
ref: a,
|
|
1814
1814
|
rows: "4"
|
|
1815
1815
|
}, `
|
|
1816
1816
|
`, 42, fs),
|
|
@@ -1819,7 +1819,7 @@ const bd = /* @__PURE__ */ D(rs, [["render", ns]]), os = { class: "font-bold pte
|
|
|
1819
1819
|
], 2))
|
|
1820
1820
|
], 64));
|
|
1821
1821
|
}
|
|
1822
|
-
}, ms = { class: "font-bold ptext-lg dark:text-white" },
|
|
1822
|
+
}, ms = { class: "font-bold ptext-lg dark:text-white" }, _s = ["name", "id"], ps = ["id"], bs = /* @__PURE__ */ s("hr", { class: "!opacity-100 bg-gray-200 border-0 dark:bg-gray-700" }, null, -1), ys = ["for"], vs = /* @__PURE__ */ s("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), xs = ["name", "id"], ws = ["name", "id", "type"], ks = { class: "gl-span-form-error" }, $s = { class: "block mt-1 text-sm font-normal leading-5 text-gray-500" }, vd = {
|
|
1823
1823
|
__name: "GlTinymceTranslate",
|
|
1824
1824
|
props: {
|
|
1825
1825
|
is_required: {
|
|
@@ -1877,22 +1877,22 @@ const bd = /* @__PURE__ */ D(rs, [["render", ns]]), os = { class: "font-bold pte
|
|
|
1877
1877
|
},
|
|
1878
1878
|
emits: ["update:modelValue", "update:modelValueTranslate", "keydown"],
|
|
1879
1879
|
setup(e, { expose: t, emit: r }) {
|
|
1880
|
-
const n = e,
|
|
1880
|
+
const n = e, o = r, a = O(null), l = O(null);
|
|
1881
1881
|
return F(() => {
|
|
1882
1882
|
tinymce.init({
|
|
1883
1883
|
selector: "#" + n.field_name,
|
|
1884
1884
|
width: "100%",
|
|
1885
1885
|
height: 300
|
|
1886
|
-
}), console.log("tinymce ", n.model_value),
|
|
1886
|
+
}), console.log("tinymce ", n.model_value), a.value !== null && a.value.hasAttribute("autofocus") && a.value.focus(), n.model_value && (o("update:modelValue", n.model_value), a.value.value = n.model_value), n.model_value_translate, n.translatable && axios.post("/admin/get_field_translations", {
|
|
1887
1887
|
model: n.translatable.model,
|
|
1888
1888
|
row_id: n.translatable.row_id,
|
|
1889
1889
|
field: n.translatable.field
|
|
1890
1890
|
}).then((i) => {
|
|
1891
|
-
l.value.value = JSON.stringify(i.data),
|
|
1891
|
+
l.value.value = JSON.stringify(i.data), o("update:modelValueTranslate", JSON.stringify(i.data));
|
|
1892
1892
|
}).catch((i) => {
|
|
1893
1893
|
console.log(i);
|
|
1894
1894
|
});
|
|
1895
|
-
}), t({ focus: () =>
|
|
1895
|
+
}), t({ focus: () => a.value.focus() }), (i, c) => (d(), u(v, null, [
|
|
1896
1896
|
e.show ? (d(), u("div", {
|
|
1897
1897
|
key: 0,
|
|
1898
1898
|
class: p(e.field_name)
|
|
@@ -1906,13 +1906,13 @@ const bd = /* @__PURE__ */ D(rs, [["render", ns]]), os = { class: "font-bold pte
|
|
|
1906
1906
|
ref_key: "input_translate",
|
|
1907
1907
|
ref: l,
|
|
1908
1908
|
"onUpdate:modelValue": c[0] || (c[0] = (f) => i.inputTranslateValue = f)
|
|
1909
|
-
}, null, 8,
|
|
1909
|
+
}, null, 8, _s), [
|
|
1910
1910
|
[V, i.inputTranslateValue]
|
|
1911
1911
|
]),
|
|
1912
1912
|
s("p", {
|
|
1913
1913
|
id: e.field_name,
|
|
1914
1914
|
class: "mb-4 text-base text-gray-900 input_tr_show dark:text-white"
|
|
1915
|
-
}, h(e.model_value), 9,
|
|
1915
|
+
}, h(e.model_value), 9, ps),
|
|
1916
1916
|
bs
|
|
1917
1917
|
], 2)) : g("", !0),
|
|
1918
1918
|
e.show ? g("", !0) : (d(), u("div", {
|
|
@@ -1949,7 +1949,7 @@ const bd = /* @__PURE__ */ D(rs, [["render", ns]]), os = { class: "font-bold pte
|
|
|
1949
1949
|
onInput: c[2] || (c[2] = (f) => i.$emit("update:modelValue", f.target.value)),
|
|
1950
1950
|
onKeydown: c[3] || (c[3] = (f) => i.$emit("keydown", f)),
|
|
1951
1951
|
ref_key: "input",
|
|
1952
|
-
ref:
|
|
1952
|
+
ref: a,
|
|
1953
1953
|
rows: "4"
|
|
1954
1954
|
}, `
|
|
1955
1955
|
`, 42, ws),
|
|
@@ -2016,18 +2016,18 @@ const bd = /* @__PURE__ */ D(rs, [["render", ns]]), os = { class: "font-bold pte
|
|
|
2016
2016
|
},
|
|
2017
2017
|
emits: ["update:modelValue", "update:modelValueTranslate", "keydown"],
|
|
2018
2018
|
setup(e, { expose: t, emit: r }) {
|
|
2019
|
-
const n = e,
|
|
2019
|
+
const n = e, o = r, a = O(null), l = O(null);
|
|
2020
2020
|
return F(() => {
|
|
2021
|
-
|
|
2021
|
+
a.value !== null && a.value.hasAttribute("autofocus") && a.value.focus(), n.model_value && (o("update:modelValue", n.model_value), a.value.value = n.model_value), n.model_value_translate, n.translatable && axios.post("/admin/get_field_translations", {
|
|
2022
2022
|
model: n.translatable.model,
|
|
2023
2023
|
row_id: n.translatable.row_id,
|
|
2024
2024
|
field: n.translatable.field
|
|
2025
2025
|
}).then((i) => {
|
|
2026
|
-
l.value.value = JSON.stringify(i.data),
|
|
2026
|
+
l.value.value = JSON.stringify(i.data), o("update:modelValueTranslate", JSON.stringify(i.data));
|
|
2027
2027
|
}).catch((i) => {
|
|
2028
2028
|
console.log(i);
|
|
2029
2029
|
});
|
|
2030
|
-
}), t({ focus: () =>
|
|
2030
|
+
}), t({ focus: () => a.value.focus() }), (i, c) => (d(), u(v, null, [
|
|
2031
2031
|
e.show ? (d(), u("div", {
|
|
2032
2032
|
key: 0,
|
|
2033
2033
|
class: p(e.field_name)
|
|
@@ -2084,7 +2084,7 @@ const bd = /* @__PURE__ */ D(rs, [["render", ns]]), os = { class: "font-bold pte
|
|
|
2084
2084
|
onInput: c[2] || (c[2] = (f) => i.$emit("update:modelValue", f.target.value)),
|
|
2085
2085
|
onKeydown: c[3] || (c[3] = (f) => i.$emit("keydown", f)),
|
|
2086
2086
|
ref_key: "input",
|
|
2087
|
-
ref:
|
|
2087
|
+
ref: a
|
|
2088
2088
|
}, null, 42, As),
|
|
2089
2089
|
s("span", Is, h(e.error_message), 1),
|
|
2090
2090
|
s("small", Ts, h(e.description), 1)
|
|
@@ -2133,19 +2133,19 @@ const bd = /* @__PURE__ */ D(rs, [["render", ns]]), os = { class: "font-bold pte
|
|
|
2133
2133
|
},
|
|
2134
2134
|
emits: ["update:modelValue", "keydown"],
|
|
2135
2135
|
setup(e, { expose: t, emit: r }) {
|
|
2136
|
-
const n = e,
|
|
2136
|
+
const n = e, o = r, a = O(null);
|
|
2137
2137
|
F(() => {
|
|
2138
|
-
|
|
2138
|
+
a.value !== null && a.value.hasAttribute("autofocus") && a.value.focus();
|
|
2139
2139
|
});
|
|
2140
2140
|
const l = B({
|
|
2141
2141
|
get() {
|
|
2142
2142
|
return n.modelValue;
|
|
2143
2143
|
},
|
|
2144
2144
|
set(i) {
|
|
2145
|
-
|
|
2145
|
+
o("update:modelValue", i);
|
|
2146
2146
|
}
|
|
2147
2147
|
});
|
|
2148
|
-
return t({ focus: () =>
|
|
2148
|
+
return t({ focus: () => a.value.focus() }), (i, c) => (d(), u(v, null, [
|
|
2149
2149
|
e.show ? (d(), u("div", {
|
|
2150
2150
|
key: 0,
|
|
2151
2151
|
class: p(e.field_name)
|
|
@@ -2178,7 +2178,7 @@ const bd = /* @__PURE__ */ D(rs, [["render", ns]]), os = { class: "font-bold pte
|
|
|
2178
2178
|
"onUpdate:modelValue": c[0] || (c[0] = (f) => l.value = f),
|
|
2179
2179
|
onKeydown: c[1] || (c[1] = (f) => i.$emit("keydown", f)),
|
|
2180
2180
|
ref_key: "input",
|
|
2181
|
-
ref:
|
|
2181
|
+
ref: a
|
|
2182
2182
|
}, null, 42, Bs), [
|
|
2183
2183
|
[Ye, l.value]
|
|
2184
2184
|
]),
|
|
@@ -2189,14 +2189,14 @@ const bd = /* @__PURE__ */ D(rs, [["render", ns]]), os = { class: "font-bold pte
|
|
|
2189
2189
|
}
|
|
2190
2190
|
}, Rs = {
|
|
2191
2191
|
setup(e, { slots: t }) {
|
|
2192
|
-
const r = O(t.default().map((
|
|
2192
|
+
const r = O(t.default().map((o) => o.props)), n = O(r.value[0].title);
|
|
2193
2193
|
return Je("selectedTitle", n), {
|
|
2194
2194
|
tabs: r,
|
|
2195
2195
|
selectedTitle: n
|
|
2196
2196
|
};
|
|
2197
2197
|
}
|
|
2198
2198
|
}, Us = { class: "flex flex-wrap" }, qs = { class: "w-full" }, zs = { class: "flex flex-row flex-wrap gap-1 pt-3 pb-4 mb-0 list-none" }, Hs = ["onClick"], Zs = { class: "relative flex flex-col w-full min-w-0 mb-6 break-words bg-white rounded shadow-lg dark:border-strokedark dark:bg-boxdark" }, Ks = { class: "flex-auto px-4 py-5" }, Ws = { class: "tab-content tab-space" };
|
|
2199
|
-
function Xs(e, t, r, n,
|
|
2199
|
+
function Xs(e, t, r, n, o, a) {
|
|
2200
2200
|
return d(), u(v, null, [
|
|
2201
2201
|
s("div", Us, [
|
|
2202
2202
|
s("div", qs, [
|
|
@@ -2235,7 +2235,7 @@ const kd = /* @__PURE__ */ D(Rs, [["render", Xs]]), Ys = {
|
|
|
2235
2235
|
};
|
|
2236
2236
|
}
|
|
2237
2237
|
}, Js = { class: "block" };
|
|
2238
|
-
function Qs(e, t, r, n,
|
|
2238
|
+
function Qs(e, t, r, n, o, a) {
|
|
2239
2239
|
return P((d(), u("div", Js, [
|
|
2240
2240
|
A(e.$slots, "default")
|
|
2241
2241
|
], 512)), [
|
|
@@ -2295,23 +2295,23 @@ const $d = /* @__PURE__ */ D(Ys, [["render", Qs]]), en = {
|
|
|
2295
2295
|
generateRandomString(e) {
|
|
2296
2296
|
let t = "";
|
|
2297
2297
|
const r = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789", n = r.length;
|
|
2298
|
-
for (let
|
|
2298
|
+
for (let o = 0; o < e; o++)
|
|
2299
2299
|
t += r.charAt(Math.floor(Math.random() * n));
|
|
2300
2300
|
return t;
|
|
2301
2301
|
},
|
|
2302
2302
|
movingActions() {
|
|
2303
2303
|
let e = this, t = document.getElementById("slider_" + this.Random_string);
|
|
2304
|
-
const r = (
|
|
2304
|
+
const r = (o) => {
|
|
2305
2305
|
t.style.cursor = "grabbing";
|
|
2306
|
-
const
|
|
2306
|
+
const a = (i) => {
|
|
2307
2307
|
const c = i.clientX || i.touches && i.touches[0] && i.touches[0].clientX, f = i.clientY || i.touches && i.touches[0] && i.touches[0].clientY, m = c - e.initialX, y = f - e.initialY;
|
|
2308
2308
|
Math.abs(m) > Math.abs(y) ? (i.preventDefault(), Math.abs(m) >= 70 && (m < 0 ? e.next() : e.prev(), e.initialX = c)) : t.style.cursor = "grab", Math.abs(y) > Math.abs(m) && (t.style.cursor = "grab");
|
|
2309
2309
|
}, l = () => {
|
|
2310
|
-
document.removeEventListener("mousemove",
|
|
2310
|
+
document.removeEventListener("mousemove", a), document.removeEventListener("touchmove", a), document.removeEventListener("mouseup", l), document.removeEventListener("touchend", l), t.style.cursor = "grab";
|
|
2311
2311
|
};
|
|
2312
|
-
document.addEventListener("mousemove",
|
|
2313
|
-
}, n = (
|
|
2314
|
-
|
|
2312
|
+
document.addEventListener("mousemove", a), document.addEventListener("touchmove", a, { passive: !1 }), document.addEventListener("mouseup", l), document.addEventListener("touchend", l), e.initialX = o.clientX || o.touches && o.touches[0] && o.touches[0].clientX, e.initialY = o.clientY || o.touches && o.touches[0] && o.touches[0].clientY;
|
|
2313
|
+
}, n = (o) => {
|
|
2314
|
+
o.key === "ArrowLeft" ? e.prev() : o.key === "ArrowRight" && e.next();
|
|
2315
2315
|
};
|
|
2316
2316
|
t.addEventListener("mousedown", r), t.addEventListener("touchstart", r), document.addEventListener("keydown", n);
|
|
2317
2317
|
},
|
|
@@ -2322,17 +2322,17 @@ const $d = /* @__PURE__ */ D(Ys, [["render", Qs]]), en = {
|
|
|
2322
2322
|
this.currentDot > 1 && (this.currentDot--, this.setDot(this.currentDot));
|
|
2323
2323
|
},
|
|
2324
2324
|
initSlider() {
|
|
2325
|
-
let e = document.getElementById("sliderContainer_" + this.Random_string), t = document.getElementById("mainSliderContainer_" + this.Random_string), r = document.getElementById("slider_" + this.Random_string), n = r.querySelectorAll("li"),
|
|
2326
|
-
if (this.elementsToShow > 1 ? document.body.clientWidth < 1e3 ? (this.elementsToShow = 1, l = this.hide_arrow ? t.clientWidth :
|
|
2327
|
-
this.dotsNum = this.elementsToShow == 1 ?
|
|
2328
|
-
let i = this.elementsToShow == 1 ? l *
|
|
2325
|
+
let e = document.getElementById("sliderContainer_" + this.Random_string), t = document.getElementById("mainSliderContainer_" + this.Random_string), r = document.getElementById("slider_" + this.Random_string), n = r.querySelectorAll("li"), o = Array.from(n).filter((i) => i.parentNode === r), a = e.clientWidth, l = a / this.elementsToShow;
|
|
2326
|
+
if (this.elementsToShow > 1 ? document.body.clientWidth < 1e3 ? (this.elementsToShow = 1, l = this.hide_arrow ? t.clientWidth : a) : document.body.clientWidth < 1500 && (this.elementsToShow = 2) : (this.elementsToShow = 1, l = this.hide_arrow ? t.clientWidth : a), o.length > 1) {
|
|
2327
|
+
this.dotsNum = this.elementsToShow == 1 ? o.length : o.length - this.elementsToShow + 1;
|
|
2328
|
+
let i = this.elementsToShow == 1 ? l * o.length / this.dotsNum : l * (o.length - this.elementsToShow) / (this.dotsNum - 1);
|
|
2329
2329
|
this.dotsNavigation = [];
|
|
2330
2330
|
for (let c = 0; c < this.dotsNum; c++)
|
|
2331
2331
|
this.dotsNavigation.push(i * c);
|
|
2332
2332
|
}
|
|
2333
|
-
r.style.width =
|
|
2334
|
-
for (let i = 0; i <
|
|
2335
|
-
const c =
|
|
2333
|
+
r.style.width = o.length * l + "px", r.style.transition = "margin", r.style.transitionDuration = "1s";
|
|
2334
|
+
for (let i = 0; i < o.length; i++) {
|
|
2335
|
+
const c = o[i];
|
|
2336
2336
|
c.style.width = l + "px";
|
|
2337
2337
|
}
|
|
2338
2338
|
},
|
|
@@ -2352,12 +2352,12 @@ const $d = /* @__PURE__ */ D(Ys, [["render", Qs]]), en = {
|
|
|
2352
2352
|
viewBox: "0 0 24 24",
|
|
2353
2353
|
stroke: "currentColor",
|
|
2354
2354
|
"stroke-width": "2"
|
|
2355
|
-
},
|
|
2355
|
+
}, an = /* @__PURE__ */ E(() => /* @__PURE__ */ s("path", {
|
|
2356
2356
|
"stroke-linecap": "round",
|
|
2357
2357
|
"stroke-linejoin": "round",
|
|
2358
2358
|
d: "M11 17l-5-5m0 0l5-5m-5 5h12"
|
|
2359
|
-
}, null, -1)),
|
|
2360
|
-
|
|
2359
|
+
}, null, -1)), on = [
|
|
2360
|
+
an
|
|
2361
2361
|
], ln = {
|
|
2362
2362
|
key: 1,
|
|
2363
2363
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2384,9 +2384,9 @@ const $d = /* @__PURE__ */ D(Ys, [["render", Qs]]), en = {
|
|
|
2384
2384
|
"stroke-linecap": "round",
|
|
2385
2385
|
"stroke-linejoin": "round",
|
|
2386
2386
|
d: "M11 17l-5-5m0 0l5-5m-5 5h12"
|
|
2387
|
-
}, null, -1)),
|
|
2387
|
+
}, null, -1)), _n = [
|
|
2388
2388
|
mn
|
|
2389
|
-
],
|
|
2389
|
+
], pn = {
|
|
2390
2390
|
key: 1,
|
|
2391
2391
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2392
2392
|
class: "w-6 h-6",
|
|
@@ -2505,13 +2505,13 @@ const $d = /* @__PURE__ */ D(Ys, [["render", Qs]]), en = {
|
|
|
2505
2505
|
viewBox: "0 0 24 24",
|
|
2506
2506
|
stroke: "currentColor",
|
|
2507
2507
|
"stroke-width": "2"
|
|
2508
|
-
},
|
|
2508
|
+
}, ea = /* @__PURE__ */ E(() => /* @__PURE__ */ s("path", {
|
|
2509
2509
|
"stroke-linecap": "round",
|
|
2510
2510
|
"stroke-linejoin": "round",
|
|
2511
2511
|
d: "M13 7l5 5m0 0l-5 5m5-5H6"
|
|
2512
|
-
}, null, -1)),
|
|
2513
|
-
|
|
2514
|
-
],
|
|
2512
|
+
}, null, -1)), ta = [
|
|
2513
|
+
ea
|
|
2514
|
+
], ra = {
|
|
2515
2515
|
key: 1,
|
|
2516
2516
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2517
2517
|
class: "w-6 h-6",
|
|
@@ -2519,14 +2519,14 @@ const $d = /* @__PURE__ */ D(Ys, [["render", Qs]]), en = {
|
|
|
2519
2519
|
viewBox: "0 0 24 24",
|
|
2520
2520
|
stroke: "currentColor",
|
|
2521
2521
|
"stroke-width": "2"
|
|
2522
|
-
},
|
|
2522
|
+
}, sa = /* @__PURE__ */ E(() => /* @__PURE__ */ s("path", {
|
|
2523
2523
|
"stroke-linecap": "round",
|
|
2524
2524
|
"stroke-linejoin": "round",
|
|
2525
2525
|
d: "M11 17l-5-5m0 0l5-5m-5 5h12"
|
|
2526
|
-
}, null, -1)),
|
|
2527
|
-
|
|
2526
|
+
}, null, -1)), na = [
|
|
2527
|
+
sa
|
|
2528
2528
|
];
|
|
2529
|
-
function
|
|
2529
|
+
function aa(e, t, r, n, o, a) {
|
|
2530
2530
|
return d(), u("div", null, [
|
|
2531
2531
|
s("div", {
|
|
2532
2532
|
class: p(["", !r.hide_arrow && r.slider_arrows_indicators_position == "arrows_outside_slide" ? "flex" : "relative block"]),
|
|
@@ -2536,15 +2536,15 @@ function oo(e, t, r, n, a, o) {
|
|
|
2536
2536
|
s("div", sn, [
|
|
2537
2537
|
s("button", {
|
|
2538
2538
|
class: "p-3 mr-5 rounded-full shadow-lg arrow_button_styles",
|
|
2539
|
-
onClick: t[0] || (t[0] = (l) =>
|
|
2539
|
+
onClick: t[0] || (t[0] = (l) => a.prev())
|
|
2540
2540
|
}, [
|
|
2541
|
-
r.direction_property == "ltr" ? (d(), u("svg", nn,
|
|
2541
|
+
r.direction_property == "ltr" ? (d(), u("svg", nn, on)) : g("", !0),
|
|
2542
2542
|
r.direction_property == "rtl" ? (d(), u("svg", ln, un)) : g("", !0)
|
|
2543
2543
|
])
|
|
2544
2544
|
])
|
|
2545
2545
|
])) : g("", !0),
|
|
2546
2546
|
s("div", {
|
|
2547
|
-
class: p(["overflow-hidden",
|
|
2547
|
+
class: p(["overflow-hidden", a.sliderContainerAction()]),
|
|
2548
2548
|
id: "sliderContainer_" + e.Random_string
|
|
2549
2549
|
}, [
|
|
2550
2550
|
s("ul", {
|
|
@@ -2558,10 +2558,10 @@ function oo(e, t, r, n, a, o) {
|
|
|
2558
2558
|
s("div", hn, [
|
|
2559
2559
|
s("button", {
|
|
2560
2560
|
class: "p-3 rounded-full shadow-lg arrow_button_styles",
|
|
2561
|
-
onClick: t[1] || (t[1] = M((l) =>
|
|
2561
|
+
onClick: t[1] || (t[1] = M((l) => a.prev(), ["stop"]))
|
|
2562
2562
|
}, [
|
|
2563
|
-
r.direction_property == "ltr" ? (d(), u("svg", gn,
|
|
2564
|
-
r.direction_property == "rtl" ? (d(), u("svg",
|
|
2563
|
+
r.direction_property == "ltr" ? (d(), u("svg", gn, _n)) : g("", !0),
|
|
2564
|
+
r.direction_property == "rtl" ? (d(), u("svg", pn, yn)) : g("", !0)
|
|
2565
2565
|
])
|
|
2566
2566
|
])
|
|
2567
2567
|
], 2)) : g("", !0),
|
|
@@ -2573,7 +2573,7 @@ function oo(e, t, r, n, a, o) {
|
|
|
2573
2573
|
s("div", vn, [
|
|
2574
2574
|
s("button", {
|
|
2575
2575
|
class: "p-3 rounded-full shadow-lg arrow_button_styles",
|
|
2576
|
-
onClick: t[2] || (t[2] = M((l) =>
|
|
2576
|
+
onClick: t[2] || (t[2] = M((l) => a.next(), ["stop"]))
|
|
2577
2577
|
}, [
|
|
2578
2578
|
r.direction_property == "ltr" ? (d(), u("svg", xn, kn)) : g("", !0),
|
|
2579
2579
|
r.direction_property == "rtl" ? (d(), u("svg", $n, Sn)) : g("", !0)
|
|
@@ -2583,24 +2583,24 @@ function oo(e, t, r, n, a, o) {
|
|
|
2583
2583
|
], 8, fn),
|
|
2584
2584
|
r.slider_arrows_indicators_position != "arrows_indicators_below_slider" ? (d(), u("div", {
|
|
2585
2585
|
key: 0,
|
|
2586
|
-
class: p(["flex justify-center mb-1 space-x-1",
|
|
2586
|
+
class: p(["flex justify-center mb-1 space-x-1", a.sliderIndicatorsAction()])
|
|
2587
2587
|
}, [
|
|
2588
2588
|
(d(!0), u(v, null, $(e.dotsNum, (l) => (d(), u("button", {
|
|
2589
2589
|
role: "button",
|
|
2590
2590
|
class: p(["gl-dot", { active: e.currentDot == l }]),
|
|
2591
2591
|
key: l,
|
|
2592
|
-
onClick: (i) =>
|
|
2592
|
+
onClick: (i) => a.setDot(l)
|
|
2593
2593
|
}, Pn, 10, On))), 128))
|
|
2594
2594
|
], 2)) : g("", !0),
|
|
2595
2595
|
r.slider_arrows_indicators_position == "arrows_indicators_below_slider" ? (d(), u("div", En, [
|
|
2596
2596
|
s("div", {
|
|
2597
|
-
class: p(["flex justify-center mb-1 space-x-1",
|
|
2597
|
+
class: p(["flex justify-center mb-1 space-x-1", a.sliderIndicatorsAction()])
|
|
2598
2598
|
}, [
|
|
2599
2599
|
(d(!0), u(v, null, $(e.dotsNum, (l) => (d(), u("button", {
|
|
2600
2600
|
role: "button",
|
|
2601
2601
|
class: p(["gl-dot", { active: e.currentDot == l }]),
|
|
2602
2602
|
key: l,
|
|
2603
|
-
onClick: (i) =>
|
|
2603
|
+
onClick: (i) => a.setDot(l)
|
|
2604
2604
|
}, In, 10, jn))), 128))
|
|
2605
2605
|
], 2),
|
|
2606
2606
|
e.dotsNum > 0 ? (d(), u("div", Tn, [
|
|
@@ -2608,7 +2608,7 @@ function oo(e, t, r, n, a, o) {
|
|
|
2608
2608
|
s("div", Nn, [
|
|
2609
2609
|
s("button", {
|
|
2610
2610
|
class: p(["p-3 rounded-full arrow_button_styles", r.direction_property == "rtl" ? "ml-3" : "mr-3"]),
|
|
2611
|
-
onClick: t[3] || (t[3] = (l) =>
|
|
2611
|
+
onClick: t[3] || (t[3] = (l) => a.prev())
|
|
2612
2612
|
}, [
|
|
2613
2613
|
r.direction_property == "ltr" ? (d(), u("svg", Vn, Bn)) : g("", !0),
|
|
2614
2614
|
r.direction_property == "rtl" ? (d(), u("svg", Gn, Rn)) : g("", !0)
|
|
@@ -2619,7 +2619,7 @@ function oo(e, t, r, n, a, o) {
|
|
|
2619
2619
|
s("div", qn, [
|
|
2620
2620
|
s("button", {
|
|
2621
2621
|
class: "p-3 rounded-full arrow_button_styles",
|
|
2622
|
-
onClick: t[4] || (t[4] = (l) =>
|
|
2622
|
+
onClick: t[4] || (t[4] = (l) => a.next())
|
|
2623
2623
|
}, [
|
|
2624
2624
|
r.direction_property == "ltr" ? (d(), u("svg", zn, Zn)) : g("", !0),
|
|
2625
2625
|
r.direction_property == "rtl" ? (d(), u("svg", Kn, Xn)) : g("", !0)
|
|
@@ -2633,21 +2633,21 @@ function oo(e, t, r, n, a, o) {
|
|
|
2633
2633
|
s("div", Jn, [
|
|
2634
2634
|
s("button", {
|
|
2635
2635
|
class: "p-3 ml-5 rounded-full shadow-lg arrow_button_styles",
|
|
2636
|
-
onClick: t[5] || (t[5] = (l) =>
|
|
2636
|
+
onClick: t[5] || (t[5] = (l) => a.next())
|
|
2637
2637
|
}, [
|
|
2638
|
-
r.direction_property == "ltr" ? (d(), u("svg", Qn,
|
|
2639
|
-
r.direction_property == "rtl" ? (d(), u("svg",
|
|
2638
|
+
r.direction_property == "ltr" ? (d(), u("svg", Qn, ta)) : g("", !0),
|
|
2639
|
+
r.direction_property == "rtl" ? (d(), u("svg", ra, na)) : g("", !0)
|
|
2640
2640
|
])
|
|
2641
2641
|
])
|
|
2642
2642
|
])) : g("", !0)
|
|
2643
2643
|
], 10, tn)
|
|
2644
2644
|
]);
|
|
2645
2645
|
}
|
|
2646
|
-
const Cd = /* @__PURE__ */ D(en, [["render",
|
|
2646
|
+
const Cd = /* @__PURE__ */ D(en, [["render", aa], ["__scopeId", "data-v-a94f16a9"]]), oa = {
|
|
2647
2647
|
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",
|
|
2648
2648
|
tabindex: "-1",
|
|
2649
2649
|
"aria-hidden": "true"
|
|
2650
|
-
},
|
|
2650
|
+
}, ia = { class: "pointer-events-auto relative flex max-h-[100%] w-full flex-col overflow-hidden text-current shadow-4 outline-none bg-white border rounded-lg border-stroke dark:border-strokedark dark:bg-boxdark" }, la = { class: "flex items-center justify-between flex-shrink-0 pt-10 pb-3 pl-3 pr-3 border-b-2 dark:border-gray-600" }, da = { class: "text-xl font-medium leading-normal text-surface dark:text-white" }, ua = /* @__PURE__ */ s("span", { class: "[&>svg]:h-6 [&>svg]:w-6" }, [
|
|
2651
2651
|
/* @__PURE__ */ s("svg", {
|
|
2652
2652
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2653
2653
|
fill: "currentColor",
|
|
@@ -2661,9 +2661,9 @@ const Cd = /* @__PURE__ */ D(en, [["render", oo], ["__scopeId", "data-v-a94f16a9
|
|
|
2661
2661
|
d: "M6 18L18 6M6 6l12 12"
|
|
2662
2662
|
})
|
|
2663
2663
|
])
|
|
2664
|
-
], -1),
|
|
2665
|
-
|
|
2666
|
-
],
|
|
2664
|
+
], -1), ca = [
|
|
2665
|
+
ua
|
|
2666
|
+
], fa = { class: "relative p-4 overflow-y-auto" }, ha = { 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" }, Sd = {
|
|
2667
2667
|
__name: "GlModal",
|
|
2668
2668
|
props: {
|
|
2669
2669
|
is_open: {
|
|
@@ -2681,37 +2681,37 @@ const Cd = /* @__PURE__ */ D(en, [["render", oo], ["__scopeId", "data-v-a94f16a9
|
|
|
2681
2681
|
},
|
|
2682
2682
|
emits: ["closeModal"],
|
|
2683
2683
|
setup(e, { emit: t }) {
|
|
2684
|
-
const r = e, n = t,
|
|
2684
|
+
const r = e, n = t, o = () => {
|
|
2685
2685
|
document.documentElement.style.overflow = "hidden", document.documentElement.style.paddingRight = "0px";
|
|
2686
|
-
},
|
|
2686
|
+
}, a = () => {
|
|
2687
2687
|
document.documentElement.style.overflow = "", document.documentElement.style.paddingRight = "";
|
|
2688
2688
|
}, l = () => {
|
|
2689
|
-
n("closeModal"),
|
|
2689
|
+
n("closeModal"), a();
|
|
2690
2690
|
};
|
|
2691
2691
|
return W(
|
|
2692
2692
|
() => r.is_open,
|
|
2693
2693
|
(i, c) => {
|
|
2694
|
-
i ?
|
|
2694
|
+
i ? o() : a();
|
|
2695
2695
|
},
|
|
2696
2696
|
{ immediate: !0, deep: !0 }
|
|
2697
|
-
), (i, c) => P((d(), u("div",
|
|
2697
|
+
), (i, c) => P((d(), u("div", oa, [
|
|
2698
2698
|
s("div", {
|
|
2699
2699
|
class: p(["pointer-events-none relative h-[calc(100%-1rem)] w-auto translate-y-[-50px] transition-all duration-300 ease-in-out min-[576px]:mx-auto min-[576px]:mt-7 min-[576px]:h-[calc(100%-3.5rem)]", e.max_width])
|
|
2700
2700
|
}, [
|
|
2701
|
-
s("div",
|
|
2702
|
-
s("div",
|
|
2703
|
-
s("h5",
|
|
2701
|
+
s("div", ia, [
|
|
2702
|
+
s("div", la, [
|
|
2703
|
+
s("h5", da, h(e.title), 1),
|
|
2704
2704
|
s("button", {
|
|
2705
2705
|
type: "button",
|
|
2706
2706
|
class: "box-content border-none rounded-none text-neutral-500 hover:text-neutral-800 hover:no-underline focus:text-neutral-800 focus:opacity-100 focus:shadow-none focus:outline-none dark:text-neutral-400 dark:hover:text-neutral-300 dark:focus:text-neutral-300",
|
|
2707
2707
|
onClick: l,
|
|
2708
2708
|
"aria-label": "Close"
|
|
2709
|
-
},
|
|
2709
|
+
}, ca)
|
|
2710
2710
|
]),
|
|
2711
|
-
s("div",
|
|
2711
|
+
s("div", fa, [
|
|
2712
2712
|
A(i.$slots, "body")
|
|
2713
2713
|
]),
|
|
2714
|
-
s("div",
|
|
2714
|
+
s("div", ha, [
|
|
2715
2715
|
A(i.$slots, "buttons"),
|
|
2716
2716
|
s("button", {
|
|
2717
2717
|
onClick: l,
|
|
@@ -2725,7 +2725,7 @@ const Cd = /* @__PURE__ */ D(en, [["render", oo], ["__scopeId", "data-v-a94f16a9
|
|
|
2725
2725
|
[G, e.is_open]
|
|
2726
2726
|
]);
|
|
2727
2727
|
}
|
|
2728
|
-
},
|
|
2728
|
+
}, ga = { class: "mb-4" }, ma = { class: "flex justify-between px-6 py-3 -mb-px border border-gray-300 no-underlin" }, _a = { class: "relative inline-flex items-center cursor-pointer" }, pa = ["name", "id", "checked"], ba = /* @__PURE__ */ s("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), ya = /* @__PURE__ */ s("hr", { class: "!opacity-100 bg-gray-200 border-0 dark:bg-gray-700" }, null, -1), va = { class: "flex justify-between px-6 py-3 -mb-px border border-gray-200 rounded-lg no-underlin dark:border-gray-600 dark:focus:border-frontenddark" }, xa = { class: "relative inline-flex items-center cursor-pointer" }, wa = ["name", "id"], ka = /* @__PURE__ */ s("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), $a = { class: "gl-span-form-error" }, Ca = { class: "block mt-1 text-sm font-normal leading-5 text-gray-500" }, Od = {
|
|
2729
2729
|
__name: "GlToggleBox",
|
|
2730
2730
|
props: {
|
|
2731
2731
|
is_required: {
|
|
@@ -2767,7 +2767,7 @@ const Cd = /* @__PURE__ */ D(en, [["render", oo], ["__scopeId", "data-v-a94f16a9
|
|
|
2767
2767
|
},
|
|
2768
2768
|
emits: ["update:modelValue"],
|
|
2769
2769
|
setup(e, { emit: t }) {
|
|
2770
|
-
const r = e, n = t,
|
|
2770
|
+
const r = e, n = t, o = O(null), a = B({
|
|
2771
2771
|
get() {
|
|
2772
2772
|
return r.modelValue;
|
|
2773
2773
|
},
|
|
@@ -2780,10 +2780,10 @@ const Cd = /* @__PURE__ */ D(en, [["render", oo], ["__scopeId", "data-v-a94f16a9
|
|
|
2780
2780
|
key: 0,
|
|
2781
2781
|
class: p(e.field_name)
|
|
2782
2782
|
}, [
|
|
2783
|
-
s("div",
|
|
2784
|
-
s("li",
|
|
2783
|
+
s("div", ga, [
|
|
2784
|
+
s("li", ma, [
|
|
2785
2785
|
w(h(e.label_name) + " ", 1),
|
|
2786
|
-
s("label",
|
|
2786
|
+
s("label", _a, [
|
|
2787
2787
|
s("input", {
|
|
2788
2788
|
type: "checkbox",
|
|
2789
2789
|
class: "sr-only peer",
|
|
@@ -2793,22 +2793,22 @@ const Cd = /* @__PURE__ */ D(en, [["render", oo], ["__scopeId", "data-v-a94f16a9
|
|
|
2793
2793
|
"true-value": 1,
|
|
2794
2794
|
"false-value": 0,
|
|
2795
2795
|
ref_key: "input",
|
|
2796
|
-
ref:
|
|
2796
|
+
ref: o,
|
|
2797
2797
|
disabled: ""
|
|
2798
|
-
}, null, 8,
|
|
2799
|
-
|
|
2798
|
+
}, null, 8, pa),
|
|
2799
|
+
ba
|
|
2800
2800
|
])
|
|
2801
2801
|
])
|
|
2802
2802
|
]),
|
|
2803
|
-
|
|
2803
|
+
ya
|
|
2804
2804
|
], 2)) : g("", !0),
|
|
2805
2805
|
e.show ? g("", !0) : (d(), u("div", {
|
|
2806
2806
|
key: 1,
|
|
2807
2807
|
class: p(["mb-4", e.field_name])
|
|
2808
2808
|
}, [
|
|
2809
|
-
s("li",
|
|
2809
|
+
s("li", va, [
|
|
2810
2810
|
w(h(e.label_name) + " ", 1),
|
|
2811
|
-
s("label",
|
|
2811
|
+
s("label", xa, [
|
|
2812
2812
|
P(s("input", {
|
|
2813
2813
|
type: "checkbox",
|
|
2814
2814
|
class: "sr-only peer",
|
|
@@ -2817,26 +2817,26 @@ const Cd = /* @__PURE__ */ D(en, [["render", oo], ["__scopeId", "data-v-a94f16a9
|
|
|
2817
2817
|
"true-value": 1,
|
|
2818
2818
|
"false-value": 0,
|
|
2819
2819
|
ref_key: "input",
|
|
2820
|
-
ref:
|
|
2821
|
-
"onUpdate:modelValue": i[0] || (i[0] = (c) =>
|
|
2822
|
-
}, null, 8,
|
|
2823
|
-
[tt,
|
|
2820
|
+
ref: o,
|
|
2821
|
+
"onUpdate:modelValue": i[0] || (i[0] = (c) => a.value = c)
|
|
2822
|
+
}, null, 8, wa), [
|
|
2823
|
+
[tt, a.value]
|
|
2824
2824
|
]),
|
|
2825
|
-
|
|
2825
|
+
ka
|
|
2826
2826
|
])
|
|
2827
2827
|
]),
|
|
2828
|
-
s("span",
|
|
2829
|
-
s("small",
|
|
2828
|
+
s("span", $a, h(e.error_message), 1),
|
|
2829
|
+
s("small", Ca, h(e.description), 1)
|
|
2830
2830
|
], 2))
|
|
2831
2831
|
], 64));
|
|
2832
2832
|
}
|
|
2833
|
-
},
|
|
2833
|
+
}, Sa = { class: "font-bold ptext-lg dark:text-white" }, Oa = { class: "mt-3 mb-4" }, Da = { 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" }, Pa = /* @__PURE__ */ s("hr", { class: "!opacity-100 bg-gray-200 border-0 dark:bg-gray-700" }, null, -1), Ea = ["name", "id", "value"], ja = {
|
|
2834
2834
|
key: 0,
|
|
2835
2835
|
class: "dropdown"
|
|
2836
|
-
},
|
|
2836
|
+
}, Aa = { class: "border border-gray-200 rounded-lg focus:ring-blue-500 focus:border-blue-500 dark:border-gray-600 dark:focus:ring-blue-500 dark:focus:border-blue-500" }, Ia = { class: "relative showOptions" }, Ta = ["value", "placeholder"], Ma = { 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]" }, Na = { class: "p-1" }, Va = /* @__PURE__ */ s("label", {
|
|
2837
2837
|
for: "default-search",
|
|
2838
2838
|
class: "mb-2 text-sm font-medium text-gray-900 sr-only dark:text-white"
|
|
2839
|
-
}, "Search", -1),
|
|
2839
|
+
}, "Search", -1), La = { class: "relative" }, Ba = /* @__PURE__ */ s("div", { class: "absolute inset-y-0 flex items-center pointer-events-none start-0 ps-3" }, [
|
|
2840
2840
|
/* @__PURE__ */ s("svg", {
|
|
2841
2841
|
class: "w-4 h-4 text-gray-500 dark:text-gray-400",
|
|
2842
2842
|
"aria-hidden": "true",
|
|
@@ -2852,22 +2852,22 @@ const Cd = /* @__PURE__ */ D(en, [["render", oo], ["__scopeId", "data-v-a94f16a9
|
|
|
2852
2852
|
d: "m19 19-4-4m0-7A7 7 0 1 1 1 8a7 7 0 0 1 14 0Z"
|
|
2853
2853
|
})
|
|
2854
2854
|
])
|
|
2855
|
-
], -1),
|
|
2855
|
+
], -1), Ga = ["id"], Fa = { class: "overflow-y-auto max-h-64" }, Ra = ["onClick", "onMousedown", "id"], Ua = { class: "flex items-center py-2 pl-10 pr-4" }, qa = {
|
|
2856
2856
|
key: 0,
|
|
2857
2857
|
class: "absolute flex items-center flex-shrink-0 w-4 h-4 text-green-500 left-2 dark:text-green-400",
|
|
2858
2858
|
"aria-hidden": "true",
|
|
2859
2859
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2860
2860
|
fill: "none",
|
|
2861
2861
|
viewBox: "0 0 16 12"
|
|
2862
|
-
},
|
|
2862
|
+
}, za = /* @__PURE__ */ s("path", {
|
|
2863
2863
|
stroke: "currentColor",
|
|
2864
2864
|
"stroke-linecap": "round",
|
|
2865
2865
|
"stroke-linejoin": "round",
|
|
2866
2866
|
"stroke-width": "2",
|
|
2867
2867
|
d: "M1 5.917 5.724 10.5 15 1.5"
|
|
2868
|
-
}, null, -1),
|
|
2869
|
-
|
|
2870
|
-
],
|
|
2868
|
+
}, null, -1), Ha = [
|
|
2869
|
+
za
|
|
2870
|
+
], Za = { class: "block mt-1 text-sm font-normal leading-5 text-red-500" }, Ka = { class: "block mt-1 text-sm font-normal leading-5 text-gray-500" }, Dd = {
|
|
2871
2871
|
__name: "GlDropdown",
|
|
2872
2872
|
props: {
|
|
2873
2873
|
modelValue: {
|
|
@@ -2927,17 +2927,17 @@ const Cd = /* @__PURE__ */ D(en, [["render", oo], ["__scopeId", "data-v-a94f16a9
|
|
|
2927
2927
|
},
|
|
2928
2928
|
emits: ["update:modelValue", "selected", "selectionChanged"],
|
|
2929
2929
|
setup(e, { emit: t }) {
|
|
2930
|
-
const r = e, n = t,
|
|
2930
|
+
const r = e, n = t, o = O(null), a = O({}), l = O(0), i = O(!1), c = O(""), f = O("");
|
|
2931
2931
|
F(() => {
|
|
2932
|
-
n("selected",
|
|
2932
|
+
n("selected", a.value), f.value = L(), r.show || (document.body.addEventListener("click", (b) => {
|
|
2933
2933
|
Fe(b);
|
|
2934
2934
|
}), document.addEventListener("keypress", (b) => {
|
|
2935
2935
|
b.key === "Enter" && b.target.form && b.preventDefault();
|
|
2936
2936
|
}));
|
|
2937
2937
|
});
|
|
2938
|
-
const m = B(() =>
|
|
2938
|
+
const m = B(() => qe()), y = B(() => ze()), x = B(() => {
|
|
2939
2939
|
const b = [], k = new RegExp(c.value, "ig");
|
|
2940
|
-
for (const C of
|
|
2940
|
+
for (const C of m.value) {
|
|
2941
2941
|
const N = String(C.name);
|
|
2942
2942
|
(c.value.length < 1 || N.match(k)) && b.length < r.maxItem && b.push(C);
|
|
2943
2943
|
}
|
|
@@ -2978,38 +2978,39 @@ const Cd = /* @__PURE__ */ D(en, [["render", oo], ["__scopeId", "data-v-a94f16a9
|
|
|
2978
2978
|
return r.options.map((b, k) => typeof b == "object" ? b : { id: b, name: b });
|
|
2979
2979
|
}
|
|
2980
2980
|
function ze() {
|
|
2981
|
-
var b =
|
|
2982
|
-
if (b)
|
|
2983
|
-
return typeof b == "object" ?
|
|
2981
|
+
var b = a.value || r.modelValue;
|
|
2982
|
+
if (console.log(a.value, " - ", r.modelValue, " - ", b), b)
|
|
2983
|
+
return typeof b == "object" ? m.value.find((k) => String(k.id) === String(b.id)) || {} : m.value.find((k) => String(k.id) === String(b)) || {};
|
|
2984
2984
|
}
|
|
2985
2985
|
function ge(b) {
|
|
2986
|
-
|
|
2986
|
+
a.value = b, i.value = !1, n("selected", a.value), n("selectionChanged", a.value);
|
|
2987
2987
|
}
|
|
2988
2988
|
function ee() {
|
|
2989
2989
|
r.show || (c.value = "", i.value = !0, rt(() => {
|
|
2990
|
-
|
|
2990
|
+
var b = document.getElementById(`${r.field_name}search${f.value}`);
|
|
2991
|
+
b && b.focus();
|
|
2991
2992
|
}));
|
|
2992
2993
|
}
|
|
2993
2994
|
function He() {
|
|
2994
|
-
r.show || (
|
|
2995
|
+
r.show || (a.value = {}, c.value = "", n("update:modelValue", ""), ee());
|
|
2995
2996
|
}
|
|
2996
2997
|
function me() {
|
|
2997
|
-
|
|
2998
|
+
a.value.id || (a.value = {}, c.value = ""), n("selected", a.value), i.value = !1;
|
|
2998
2999
|
}
|
|
2999
3000
|
return W(c, () => {
|
|
3000
|
-
x.value.length === 0 && (
|
|
3001
|
-
}), W(
|
|
3001
|
+
x.value.length === 0 && (a.value = {});
|
|
3002
|
+
}), W(a, (b) => {
|
|
3002
3003
|
fe(b) && n("update:modelValue", b.id);
|
|
3003
3004
|
}), (b, k) => (d(), u(v, null, [
|
|
3004
3005
|
e.show ? (d(), u("div", {
|
|
3005
3006
|
key: 0,
|
|
3006
3007
|
class: p(e.field_name)
|
|
3007
3008
|
}, [
|
|
3008
|
-
s("h3",
|
|
3009
|
-
s("p",
|
|
3010
|
-
s("span",
|
|
3009
|
+
s("h3", Sa, h(e.label_name), 1),
|
|
3010
|
+
s("p", Oa, [
|
|
3011
|
+
s("span", Da, h(b.selectedValue.name), 1)
|
|
3011
3012
|
]),
|
|
3012
|
-
|
|
3013
|
+
Pa
|
|
3013
3014
|
], 2)) : g("", !0),
|
|
3014
3015
|
e.show ? g("", !0) : (d(), u("div", {
|
|
3015
3016
|
key: 1,
|
|
@@ -3019,9 +3020,9 @@ const Cd = /* @__PURE__ */ D(en, [["render", oo], ["__scopeId", "data-v-a94f16a9
|
|
|
3019
3020
|
type: "hidden",
|
|
3020
3021
|
name: e.field_name,
|
|
3021
3022
|
id: e.field_name,
|
|
3022
|
-
value:
|
|
3023
|
-
}, null, 8,
|
|
3024
|
-
e.options ? (d(), u("div",
|
|
3023
|
+
value: a.value.id
|
|
3024
|
+
}, null, 8, Ea),
|
|
3025
|
+
e.options ? (d(), u("div", ja, [
|
|
3025
3026
|
e.label_name ? (d(), u("label", {
|
|
3026
3027
|
key: 0,
|
|
3027
3028
|
class: p({
|
|
@@ -3030,8 +3031,8 @@ const Cd = /* @__PURE__ */ D(en, [["render", oo], ["__scopeId", "data-v-a94f16a9
|
|
|
3030
3031
|
required: e.is_required
|
|
3031
3032
|
})
|
|
3032
3033
|
}, h(e.label_name), 3)) : g("", !0),
|
|
3033
|
-
s("div",
|
|
3034
|
-
s("div",
|
|
3034
|
+
s("div", Aa, [
|
|
3035
|
+
s("div", Ia, [
|
|
3035
3036
|
s("input", {
|
|
3036
3037
|
class: p([{
|
|
3037
3038
|
"gl-input-form": e.error_message == "",
|
|
@@ -3039,17 +3040,17 @@ const Cd = /* @__PURE__ */ D(en, [["render", oo], ["__scopeId", "data-v-a94f16a9
|
|
|
3039
3040
|
}, "pl-8 pr-2 showOptions"]),
|
|
3040
3041
|
ref: e.field_name,
|
|
3041
3042
|
onClick: k[0] || (k[0] = (C) => ee()),
|
|
3042
|
-
value:
|
|
3043
|
+
value: y.value.name,
|
|
3043
3044
|
placeholder: e.placeholder,
|
|
3044
3045
|
autocomplete: "off",
|
|
3045
3046
|
readonly: ""
|
|
3046
|
-
}, null, 10,
|
|
3047
|
+
}, null, 10, Ta),
|
|
3047
3048
|
P(s("i", {
|
|
3048
3049
|
onClick: k[1] || (k[1] = M((C) => He(), ["stop"])),
|
|
3049
3050
|
class: "absolute text-gray-500 cursor-pointer fas fa-times right-7 hover:text-gray-700 dark:hover:text-gray-800",
|
|
3050
3051
|
style: { top: "13px" }
|
|
3051
3052
|
}, null, 512), [
|
|
3052
|
-
[G, fe(
|
|
3053
|
+
[G, fe(y.value) && e.has_cancel]
|
|
3053
3054
|
]),
|
|
3054
3055
|
s("i", {
|
|
3055
3056
|
onClick: k[2] || (k[2] = (C) => !i.value && ee()),
|
|
@@ -3057,27 +3058,27 @@ const Cd = /* @__PURE__ */ D(en, [["render", oo], ["__scopeId", "data-v-a94f16a9
|
|
|
3057
3058
|
style: { top: "11px" }
|
|
3058
3059
|
}, null, 2)
|
|
3059
3060
|
]),
|
|
3060
|
-
P(s("div",
|
|
3061
|
-
s("div",
|
|
3062
|
-
|
|
3063
|
-
s("div",
|
|
3064
|
-
|
|
3061
|
+
P(s("div", Ma, [
|
|
3062
|
+
s("div", Na, [
|
|
3063
|
+
Va,
|
|
3064
|
+
s("div", La, [
|
|
3065
|
+
Ba,
|
|
3065
3066
|
P(s("input", {
|
|
3066
3067
|
type: "search",
|
|
3067
3068
|
"onUpdate:modelValue": k[3] || (k[3] = (C) => c.value = C),
|
|
3068
|
-
ref:
|
|
3069
|
+
ref: o.value,
|
|
3069
3070
|
id: `${e.field_name}search${f.value}`,
|
|
3070
3071
|
onKeydown: S,
|
|
3071
3072
|
onBlur: k[4] || (k[4] = (C) => me()),
|
|
3072
3073
|
autocomplete: "off",
|
|
3073
3074
|
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",
|
|
3074
3075
|
placeholder: "Search ..."
|
|
3075
|
-
}, null, 40,
|
|
3076
|
+
}, null, 40, Ga), [
|
|
3076
3077
|
[V, c.value]
|
|
3077
3078
|
])
|
|
3078
3079
|
])
|
|
3079
3080
|
]),
|
|
3080
|
-
s("div",
|
|
3081
|
+
s("div", Fa, [
|
|
3081
3082
|
(d(!0), u(v, null, $(x.value, (C, N) => (d(), u("div", {
|
|
3082
3083
|
class: p(["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", N + 1 == l.value ? "bg-gray-100 dark:bg-gray-600" : ""]),
|
|
3083
3084
|
onClick: (Ze) => ge(C),
|
|
@@ -3085,23 +3086,23 @@ const Cd = /* @__PURE__ */ D(en, [["render", oo], ["__scopeId", "data-v-a94f16a9
|
|
|
3085
3086
|
key: N,
|
|
3086
3087
|
id: `${N + 1}${f.value}`
|
|
3087
3088
|
}, [
|
|
3088
|
-
s("div",
|
|
3089
|
-
|
|
3089
|
+
s("div", Ua, [
|
|
3090
|
+
y.value.id === C.id ? (d(), u("svg", qa, Ha)) : g("", !0),
|
|
3090
3091
|
s("span", null, h(C.name || C.id || "-"), 1)
|
|
3091
3092
|
])
|
|
3092
|
-
], 42,
|
|
3093
|
+
], 42, Ra))), 128))
|
|
3093
3094
|
])
|
|
3094
3095
|
], 512), [
|
|
3095
3096
|
[G, i.value]
|
|
3096
3097
|
])
|
|
3097
3098
|
])
|
|
3098
3099
|
])) : g("", !0),
|
|
3099
|
-
s("span",
|
|
3100
|
-
s("small",
|
|
3100
|
+
s("span", Za, h(e.error_message), 1),
|
|
3101
|
+
s("small", Ka, h(e.description), 1)
|
|
3101
3102
|
], 2))
|
|
3102
3103
|
], 64));
|
|
3103
3104
|
}
|
|
3104
|
-
},
|
|
3105
|
+
}, Wa = { class: "font-bold ptext-lg dark:text-white" }, Xa = ["id"], Ya = /* @__PURE__ */ s("hr", { class: "!opacity-100 bg-gray-200 border-0 dark:bg-gray-700" }, null, -1), Ja = ["for"], Qa = ["required", "name", "id", "type", "placeholder"], eo = { class: "gl-span-form-error" }, to = { class: "block mt-1 text-sm font-normal leading-5 text-gray-500" }, Pd = {
|
|
3105
3106
|
__name: "GlTextarea",
|
|
3106
3107
|
props: {
|
|
3107
3108
|
is_required: {
|
|
@@ -3147,20 +3148,20 @@ const Cd = /* @__PURE__ */ D(en, [["render", oo], ["__scopeId", "data-v-a94f16a9
|
|
|
3147
3148
|
},
|
|
3148
3149
|
emits: ["update:modelValue", "keydown"],
|
|
3149
3150
|
setup(e, { expose: t, emit: r }) {
|
|
3150
|
-
const n = e,
|
|
3151
|
+
const n = e, o = r, a = O(null);
|
|
3151
3152
|
return F(() => {
|
|
3152
|
-
|
|
3153
|
-
}), t({ focus: () =>
|
|
3153
|
+
a.value !== null && a.value.hasAttribute("autofocus") && a.value.focus(), n.model_value && (o("update:modelValue", n.model_value), a.value.value = n.model_value), n.modelValue != "" && (o("update:modelValue", n.modelValue), a.value.value = n.modelValue);
|
|
3154
|
+
}), t({ focus: () => a.value.focus() }), (l, i) => (d(), u(v, null, [
|
|
3154
3155
|
e.show ? (d(), u("div", {
|
|
3155
3156
|
key: 0,
|
|
3156
3157
|
class: p(e.field_name)
|
|
3157
3158
|
}, [
|
|
3158
|
-
s("h3",
|
|
3159
|
+
s("h3", Wa, h(e.label_name), 1),
|
|
3159
3160
|
s("p", {
|
|
3160
3161
|
id: e.field_name,
|
|
3161
3162
|
class: "mb-4 text-base text-gray-900 input_tr_show dark:text-white"
|
|
3162
|
-
}, h(e.model_value), 9,
|
|
3163
|
-
|
|
3163
|
+
}, h(e.model_value), 9, Xa),
|
|
3164
|
+
Ya
|
|
3164
3165
|
], 2)) : g("", !0),
|
|
3165
3166
|
e.show ? g("", !0) : (d(), u("div", {
|
|
3166
3167
|
key: 1,
|
|
@@ -3173,7 +3174,7 @@ const Cd = /* @__PURE__ */ D(en, [["render", oo], ["__scopeId", "data-v-a94f16a9
|
|
|
3173
3174
|
required: e.is_required
|
|
3174
3175
|
}),
|
|
3175
3176
|
for: e.field_name
|
|
3176
|
-
}, h(e.label_name), 11,
|
|
3177
|
+
}, h(e.label_name), 11, Ja),
|
|
3177
3178
|
s("textarea", {
|
|
3178
3179
|
required: e.is_required,
|
|
3179
3180
|
name: e.field_name,
|
|
@@ -3185,16 +3186,16 @@ const Cd = /* @__PURE__ */ D(en, [["render", oo], ["__scopeId", "data-v-a94f16a9
|
|
|
3185
3186
|
type: e.type,
|
|
3186
3187
|
onInput: i[0] || (i[0] = (c) => l.$emit("update:modelValue", c.target.value)),
|
|
3187
3188
|
ref_key: "input",
|
|
3188
|
-
ref:
|
|
3189
|
+
ref: a,
|
|
3189
3190
|
rows: "4",
|
|
3190
3191
|
placeholder: e.place_holder
|
|
3191
|
-
}, null, 42,
|
|
3192
|
-
s("span",
|
|
3193
|
-
s("small",
|
|
3192
|
+
}, null, 42, Qa),
|
|
3193
|
+
s("span", eo, h(e.error_message), 1),
|
|
3194
|
+
s("small", to, h(e.description), 1)
|
|
3194
3195
|
], 2))
|
|
3195
3196
|
], 64));
|
|
3196
3197
|
}
|
|
3197
|
-
},
|
|
3198
|
+
}, ro = {
|
|
3198
3199
|
emits: ["pagination-change-page"],
|
|
3199
3200
|
props: {
|
|
3200
3201
|
data: {
|
|
@@ -3246,9 +3247,9 @@ const Cd = /* @__PURE__ */ D(en, [["render", oo], ["__scopeId", "data-v-a94f16a9
|
|
|
3246
3247
|
return 0;
|
|
3247
3248
|
if (this.limit === 0)
|
|
3248
3249
|
return this.lastPage;
|
|
3249
|
-
for (var e = this.currentPage, t = this.lastPage, r = this.limit, n = e - r,
|
|
3250
|
-
(c === 1 || c === t || c >= n && c <
|
|
3251
|
-
return
|
|
3250
|
+
for (var e = this.currentPage, t = this.lastPage, r = this.limit, n = e - r, o = e + r + 1, a = [], l = [], i, c = 1; c <= t; c++)
|
|
3251
|
+
(c === 1 || c === t || c >= n && c < o) && a.push(c);
|
|
3252
|
+
return a.forEach(function(f) {
|
|
3252
3253
|
i && (f - i === 2 ? l.push(i + 1) : f - i !== 1 && l.push("...")), l.push(f), i = f;
|
|
3253
3254
|
}), l;
|
|
3254
3255
|
}
|
|
@@ -3299,14 +3300,14 @@ const Cd = /* @__PURE__ */ D(en, [["render", oo], ["__scopeId", "data-v-a94f16a9
|
|
|
3299
3300
|
})
|
|
3300
3301
|
});
|
|
3301
3302
|
}
|
|
3302
|
-
},
|
|
3303
|
+
}, so = {
|
|
3303
3304
|
compatConfig: {
|
|
3304
3305
|
MODE: 3
|
|
3305
3306
|
},
|
|
3306
3307
|
inheritAttrs: !1,
|
|
3307
3308
|
emits: ["pagination-change-page"],
|
|
3308
3309
|
components: {
|
|
3309
|
-
RenderlessPagination:
|
|
3310
|
+
RenderlessPagination: ro
|
|
3310
3311
|
},
|
|
3311
3312
|
props: {
|
|
3312
3313
|
data: {
|
|
@@ -3340,10 +3341,10 @@ const Cd = /* @__PURE__ */ D(en, [["render", oo], ["__scopeId", "data-v-a94f16a9
|
|
|
3340
3341
|
},
|
|
3341
3342
|
mounted() {
|
|
3342
3343
|
}
|
|
3343
|
-
},
|
|
3344
|
+
}, no = { class: "flex flex-col items-center" }, ao = {
|
|
3344
3345
|
key: 0,
|
|
3345
3346
|
class: "text-sm text-gray-700 dark:text-gray-400"
|
|
3346
|
-
},
|
|
3347
|
+
}, oo = { class: "font-semibold text-gray-900 dark:text-white" }, io = { class: "font-semibold text-gray-900 dark:text-white" }, lo = { class: "font-semibold text-gray-900 dark:text-white" }, uo = ["tabindex"], co = /* @__PURE__ */ s("span", { class: "sr-only" }, "Previous", -1), fo = /* @__PURE__ */ s("svg", {
|
|
3347
3348
|
class: "w-2.5 h-2.5 rtl:rotate-180",
|
|
3348
3349
|
"aria-hidden": "true",
|
|
3349
3350
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3357,7 +3358,7 @@ const Cd = /* @__PURE__ */ D(en, [["render", oo], ["__scopeId", "data-v-a94f16a9
|
|
|
3357
3358
|
"stroke-width": "2",
|
|
3358
3359
|
d: "M5 1 1 5l4 4"
|
|
3359
3360
|
})
|
|
3360
|
-
], -1),
|
|
3361
|
+
], -1), ho = ["aria-current"], go = ["tabindex"], mo = /* @__PURE__ */ s("span", { class: "sr-only" }, "Next", -1), _o = /* @__PURE__ */ s("svg", {
|
|
3361
3362
|
class: "w-2.5 h-2.5 rtl:rotate-180",
|
|
3362
3363
|
"aria-hidden": "true",
|
|
3363
3364
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3372,22 +3373,22 @@ const Cd = /* @__PURE__ */ D(en, [["render", oo], ["__scopeId", "data-v-a94f16a9
|
|
|
3372
3373
|
d: "m1 9 4-4-4-4"
|
|
3373
3374
|
})
|
|
3374
3375
|
], -1);
|
|
3375
|
-
function
|
|
3376
|
+
function po(e, t, r, n, o, a) {
|
|
3376
3377
|
const l = X("RenderlessPagination");
|
|
3377
3378
|
return d(), Z(l, {
|
|
3378
3379
|
data: r.data,
|
|
3379
3380
|
limit: r.limit,
|
|
3380
|
-
onPaginationChangePage:
|
|
3381
|
+
onPaginationChangePage: a.onPaginationChangePage
|
|
3381
3382
|
}, {
|
|
3382
3383
|
default: Y((i) => [
|
|
3383
|
-
s("div",
|
|
3384
|
-
i.computed.total > i.computed.perPage ? (d(), u("span",
|
|
3384
|
+
s("div", no, [
|
|
3385
|
+
i.computed.total > i.computed.perPage ? (d(), u("span", ao, [
|
|
3385
3386
|
w(" Showing "),
|
|
3386
|
-
s("span",
|
|
3387
|
+
s("span", oo, h(i.computed.from), 1),
|
|
3387
3388
|
w(" to "),
|
|
3388
|
-
s("span",
|
|
3389
|
+
s("span", io, h(i.computed.to), 1),
|
|
3389
3390
|
w(" of "),
|
|
3390
|
-
s("span",
|
|
3391
|
+
s("span", lo, h(i.computed.total), 1),
|
|
3391
3392
|
w(" Entries ")
|
|
3392
3393
|
])) : g("", !0),
|
|
3393
3394
|
i.computed.total > i.computed.perPage ? (d(), u("ul", K({ key: 1 }, e.$attrs, {
|
|
@@ -3409,10 +3410,10 @@ function _a(e, t, r, n, a, o) {
|
|
|
3409
3410
|
tabindex: !i.computed.prevPageUrl && -1
|
|
3410
3411
|
}, te(i.prevButtonEvents, !0)), [
|
|
3411
3412
|
A(e.$slots, "prev-nav", {}, () => [
|
|
3412
|
-
|
|
3413
|
-
|
|
3413
|
+
co,
|
|
3414
|
+
fo
|
|
3414
3415
|
])
|
|
3415
|
-
], 16,
|
|
3416
|
+
], 16, uo)
|
|
3416
3417
|
], 2)) : g("", !0),
|
|
3417
3418
|
(d(!0), u(v, null, $(i.computed.pageRange, (c, f) => (d(), u("li", {
|
|
3418
3419
|
class: p(["", { active: c == i.computed.currentPage }]),
|
|
@@ -3424,7 +3425,7 @@ function _a(e, t, r, n, a, o) {
|
|
|
3424
3425
|
}, te(i.pageButtonEvents(c), !0), {
|
|
3425
3426
|
"aria-current": c == i.computed.currentPage ? "page" : null,
|
|
3426
3427
|
class: c == i.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"
|
|
3427
|
-
}), h(c), 17,
|
|
3428
|
+
}), h(c), 17, ho)
|
|
3428
3429
|
], 2))), 128)),
|
|
3429
3430
|
i.computed.nextPageUrl || r.showDisabled ? (d(), u("li", {
|
|
3430
3431
|
key: 1,
|
|
@@ -3437,10 +3438,10 @@ function _a(e, t, r, n, a, o) {
|
|
|
3437
3438
|
tabindex: !i.computed.nextPageUrl && -1
|
|
3438
3439
|
}, te(i.nextButtonEvents, !0)), [
|
|
3439
3440
|
A(e.$slots, "next-nav", {}, () => [
|
|
3440
|
-
|
|
3441
|
-
|
|
3441
|
+
mo,
|
|
3442
|
+
_o
|
|
3442
3443
|
])
|
|
3443
|
-
], 16,
|
|
3444
|
+
], 16, go)
|
|
3444
3445
|
], 2)) : g("", !0)
|
|
3445
3446
|
], 16)) : g("", !0)
|
|
3446
3447
|
])
|
|
@@ -3448,8 +3449,8 @@ function _a(e, t, r, n, a, o) {
|
|
|
3448
3449
|
_: 3
|
|
3449
3450
|
}, 8, ["data", "limit", "onPaginationChangePage"]);
|
|
3450
3451
|
}
|
|
3451
|
-
const
|
|
3452
|
-
components: { TailwindPagination:
|
|
3452
|
+
const bo = /* @__PURE__ */ D(so, [["render", po]]), yo = {
|
|
3453
|
+
components: { TailwindPagination: bo },
|
|
3453
3454
|
props: {
|
|
3454
3455
|
data: Array,
|
|
3455
3456
|
columns: Array,
|
|
@@ -3525,10 +3526,10 @@ const ba = /* @__PURE__ */ D(na, [["render", _a]]), ya = {
|
|
|
3525
3526
|
this.isMounted && e !== t && this.GetItemLists();
|
|
3526
3527
|
}
|
|
3527
3528
|
}
|
|
3528
|
-
},
|
|
3529
|
+
}, vo = { class: "p-2" }, xo = { 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" }, wo = { class: "flex items-center gap-2" }, ko = /* @__PURE__ */ s("span", { class: "font-medium" }, " Show ", -1), $o = { style: { "margin-top": "9px" } }, Co = /* @__PURE__ */ s("span", { class: "font-medium" }, " Entries ", -1), So = /* @__PURE__ */ s("label", {
|
|
3529
3530
|
for: "table-search",
|
|
3530
3531
|
class: "sr-only"
|
|
3531
|
-
}, "Search", -1),
|
|
3532
|
+
}, "Search", -1), Oo = { class: "relative" }, Do = /* @__PURE__ */ s("div", { class: "absolute inset-y-0 left-0 flex items-center pointer-events-none rtl:inset-r-0 rtl:right-0 ps-3" }, [
|
|
3532
3533
|
/* @__PURE__ */ s("svg", {
|
|
3533
3534
|
class: "w-5 h-5 text-gray-500 dark:text-gray-400",
|
|
3534
3535
|
"aria-hidden": "true",
|
|
@@ -3542,28 +3543,28 @@ const ba = /* @__PURE__ */ D(na, [["render", _a]]), ya = {
|
|
|
3542
3543
|
"clip-rule": "evenodd"
|
|
3543
3544
|
})
|
|
3544
3545
|
])
|
|
3545
|
-
], -1),
|
|
3546
|
+
], -1), Po = { class: "overflow-auto rounded-lg dark:text-gray-400 dark:bg-gray-800" }, Eo = { 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" }, jo = { class: "hidden text-sm font-normal text-center text-gray-700 uppercase lg:table-header-group dark:border-strokedark bg-gray-50 dark:bg-gray-700 dark:text-gray-400" }, Ao = ["onClick"], Io = {
|
|
3546
3547
|
key: 0,
|
|
3547
3548
|
class: "ml-2"
|
|
3548
|
-
},
|
|
3549
|
+
}, To = {
|
|
3549
3550
|
key: 0,
|
|
3550
3551
|
class: "fa fa-arrow-up"
|
|
3551
|
-
},
|
|
3552
|
+
}, Mo = {
|
|
3552
3553
|
key: 1,
|
|
3553
3554
|
class: "fa fa-arrow-down"
|
|
3554
|
-
},
|
|
3555
|
-
function
|
|
3555
|
+
}, No = ["data-label"], Vo = { class: "overflow-auto max-h-40" }, Lo = { 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" };
|
|
3556
|
+
function Bo(e, t, r, n, o, a) {
|
|
3556
3557
|
const l = X("dropdown"), i = X("TailwindPagination");
|
|
3557
|
-
return d(), u("div",
|
|
3558
|
-
s("div",
|
|
3559
|
-
s("div",
|
|
3560
|
-
|
|
3561
|
-
s("div", $
|
|
3558
|
+
return d(), u("div", vo, [
|
|
3559
|
+
s("div", xo, [
|
|
3560
|
+
s("div", wo, [
|
|
3561
|
+
ko,
|
|
3562
|
+
s("div", $o, [
|
|
3562
3563
|
H(l, {
|
|
3563
3564
|
has_cancel: !1,
|
|
3564
|
-
options:
|
|
3565
|
-
modelValue:
|
|
3566
|
-
"onUpdate:modelValue": t[0] || (t[0] = (c) =>
|
|
3565
|
+
options: o.pageOptions,
|
|
3566
|
+
modelValue: o.perPage,
|
|
3567
|
+
"onUpdate:modelValue": t[0] || (t[0] = (c) => o.perPage = c),
|
|
3567
3568
|
is_required: !1,
|
|
3568
3569
|
field_name: "perPage",
|
|
3569
3570
|
label_name: "",
|
|
@@ -3572,40 +3573,40 @@ function Ba(e, t, r, n, a, o) {
|
|
|
3572
3573
|
placeholder: "Please select an option"
|
|
3573
3574
|
}, null, 8, ["options", "modelValue"])
|
|
3574
3575
|
]),
|
|
3575
|
-
|
|
3576
|
+
Co
|
|
3576
3577
|
]),
|
|
3577
|
-
|
|
3578
|
-
s("div",
|
|
3579
|
-
|
|
3578
|
+
So,
|
|
3579
|
+
s("div", Oo, [
|
|
3580
|
+
Do,
|
|
3580
3581
|
P(s("input", {
|
|
3581
3582
|
type: "text",
|
|
3582
|
-
"onUpdate:modelValue": t[1] || (t[1] = (c) =>
|
|
3583
|
-
onInput: t[2] || (t[2] = (c) =>
|
|
3583
|
+
"onUpdate:modelValue": t[1] || (t[1] = (c) => o.search = c),
|
|
3584
|
+
onInput: t[2] || (t[2] = (c) => a.handleSearch()),
|
|
3584
3585
|
class: "block w-full p-2 text-sm text-gray-900 border border-gray-300 rounded-lg ps-10 bg-gray-50 focus:ring-blue-500 focus:border-blue-500 dark:bg-gray-700 dark:border-gray-600 dark:placeholder-gray-400 dark:text-white dark:focus:ring-blue-500 dark:focus:border-blue-500",
|
|
3585
3586
|
placeholder: "Search ..."
|
|
3586
3587
|
}, null, 544), [
|
|
3587
|
-
[V,
|
|
3588
|
+
[V, o.search]
|
|
3588
3589
|
])
|
|
3589
3590
|
])
|
|
3590
3591
|
]),
|
|
3591
|
-
s("div",
|
|
3592
|
-
s("table",
|
|
3593
|
-
s("thead",
|
|
3592
|
+
s("div", Po, [
|
|
3593
|
+
s("table", Eo, [
|
|
3594
|
+
s("thead", jo, [
|
|
3594
3595
|
s("tr", null, [
|
|
3595
3596
|
(d(!0), u(v, null, $(r.columns, (c, f) => (d(), u("th", {
|
|
3596
3597
|
key: f,
|
|
3597
|
-
onClick: (m) =>
|
|
3598
|
+
onClick: (m) => a.updateSortColumn(c.field_name, c.sortable),
|
|
3598
3599
|
class: "w-full px-4 py-2 lg:w-2/12"
|
|
3599
3600
|
}, [
|
|
3600
3601
|
w(h(c.field_label) + " ", 1),
|
|
3601
|
-
|
|
3602
|
-
|
|
3602
|
+
o.sortField === c.field_name ? (d(), u("span", Io, [
|
|
3603
|
+
o.sortOrder === "asc" ? (d(), u("i", To)) : (d(), u("i", Mo))
|
|
3603
3604
|
])) : g("", !0)
|
|
3604
|
-
], 8,
|
|
3605
|
+
], 8, Ao))), 128))
|
|
3605
3606
|
])
|
|
3606
3607
|
]),
|
|
3607
3608
|
s("tbody", null, [
|
|
3608
|
-
(d(!0), u(v, null, $(
|
|
3609
|
+
(d(!0), u(v, null, $(o.itemLists.data, (c, f) => (d(), u("tr", {
|
|
3609
3610
|
key: f,
|
|
3610
3611
|
class: "bg-white dark:bg-gray-800 dark:border-gray-700 hover:bg-gray-50 dark:hover:bg-gray-600"
|
|
3611
3612
|
}, [
|
|
@@ -3614,36 +3615,36 @@ function Ba(e, t, r, n, a, o) {
|
|
|
3614
3615
|
"data-label": m.field_label,
|
|
3615
3616
|
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"
|
|
3616
3617
|
}, [
|
|
3617
|
-
s("div",
|
|
3618
|
-
m.tdComp ? (d(), Z(se(
|
|
3618
|
+
s("div", Vo, [
|
|
3619
|
+
m.tdComp ? (d(), Z(se(a.forDynCompIs(m.tdComp)), {
|
|
3619
3620
|
key: 0,
|
|
3620
3621
|
row: c,
|
|
3621
3622
|
field: m.field_name,
|
|
3622
3623
|
xprops: r.xprops,
|
|
3623
3624
|
tdProps: m.tdProps,
|
|
3624
|
-
onDeleteAction: t[3] || (t[3] = (x) =>
|
|
3625
|
+
onDeleteAction: t[3] || (t[3] = (x) => a.GetItemLists())
|
|
3625
3626
|
}, null, 40, ["row", "field", "xprops", "tdProps"])) : (d(), u(v, { key: 1 }, [
|
|
3626
3627
|
w(h(c[m.field_name]), 1)
|
|
3627
3628
|
], 64))
|
|
3628
3629
|
])
|
|
3629
|
-
], 8,
|
|
3630
|
+
], 8, No))), 128))
|
|
3630
3631
|
]))), 128))
|
|
3631
3632
|
])
|
|
3632
3633
|
])
|
|
3633
3634
|
]),
|
|
3634
|
-
s("div",
|
|
3635
|
+
s("div", Lo, [
|
|
3635
3636
|
H(i, {
|
|
3636
3637
|
class: "mt-3 mb-0",
|
|
3637
|
-
data:
|
|
3638
|
-
limit:
|
|
3639
|
-
size:
|
|
3640
|
-
align:
|
|
3641
|
-
onPaginationChangePage:
|
|
3638
|
+
data: o.itemLists,
|
|
3639
|
+
limit: o.limit,
|
|
3640
|
+
size: o.size,
|
|
3641
|
+
align: o.align,
|
|
3642
|
+
onPaginationChangePage: a.GetItemLists
|
|
3642
3643
|
}, null, 8, ["data", "limit", "size", "align", "onPaginationChangePage"])
|
|
3643
3644
|
])
|
|
3644
3645
|
]);
|
|
3645
3646
|
}
|
|
3646
|
-
const Ed = /* @__PURE__ */ D(
|
|
3647
|
+
const Ed = /* @__PURE__ */ D(yo, [["render", Bo]]), Go = {
|
|
3647
3648
|
components: {},
|
|
3648
3649
|
props: {
|
|
3649
3650
|
data: Array,
|
|
@@ -3740,10 +3741,10 @@ const Ed = /* @__PURE__ */ D(ya, [["render", Ba]]), Ga = {
|
|
|
3740
3741
|
mounted() {
|
|
3741
3742
|
document.body.addEventListener("click", this.closeBoxOnbodyClick);
|
|
3742
3743
|
}
|
|
3743
|
-
},
|
|
3744
|
+
}, Fo = { class: "p-2" }, Ro = { class: "flex flex-wrap pb-4 space-y-4 md:items-center md:justify-between flex-column sm:flex-row sm:space-y-0" }, Uo = { class: "flex items-center gap-2" }, qo = /* @__PURE__ */ s("span", { class: "font-medium" }, " Show ", -1), zo = { style: { "margin-top": "9px" } }, Ho = /* @__PURE__ */ s("span", { class: "font-medium" }, " Entries ", -1), Zo = /* @__PURE__ */ s("label", {
|
|
3744
3745
|
for: "table-search",
|
|
3745
3746
|
class: "sr-only"
|
|
3746
|
-
}, "Search", -1),
|
|
3747
|
+
}, "Search", -1), Ko = { class: "relative" }, Wo = /* @__PURE__ */ s("div", { class: "absolute inset-y-0 left-0 flex items-center pointer-events-none rtl:inset-r-0 rtl:right-0 ps-3" }, [
|
|
3747
3748
|
/* @__PURE__ */ s("svg", {
|
|
3748
3749
|
class: "w-5 h-5 text-gray-500 dark:text-gray-400",
|
|
3749
3750
|
"aria-hidden": "true",
|
|
@@ -3757,10 +3758,10 @@ const Ed = /* @__PURE__ */ D(ya, [["render", Ba]]), Ga = {
|
|
|
3757
3758
|
"clip-rule": "evenodd"
|
|
3758
3759
|
})
|
|
3759
3760
|
])
|
|
3760
|
-
], -1),
|
|
3761
|
+
], -1), Xo = { class: "overflow-auto rounded-lg dark:text-gray-400 dark:bg-gray-800" }, Yo = { 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" }, Jo = { class: "hidden text-sm font-normal text-center text-gray-700 uppercase lg:table-header-group dark:border-strokedark bg-gray-50 dark:bg-gray-700 dark:text-gray-400" }, Qo = ["onClick"], ei = {
|
|
3761
3762
|
key: 0,
|
|
3762
3763
|
class: "ml-2"
|
|
3763
|
-
}, ti = ["data-label"], ri = ["innerHTML"], si = { 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" }, ni = { class: "flex justify-between flex-1 sm:hidden" },
|
|
3764
|
+
}, ti = ["data-label"], ri = ["innerHTML"], si = { 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" }, ni = { class: "flex justify-between flex-1 sm:hidden" }, ai = ["disabled"], oi = ["disabled"], ii = { class: "hidden sm:flex sm:flex-1 sm:items-center sm:justify-between" }, li = { class: "text-sm text-gray-700 dark:text-gray-400" }, di = { class: "font-medium" }, ui = { class: "font-medium" }, ci = { class: "font-medium" }, fi = { "aria-label": "Page navigation" }, hi = { class: "flex items-center h-8 -space-x-px text-sm" }, gi = ["disabled"], mi = /* @__PURE__ */ s("span", { class: "sr-only" }, "Previous", -1), _i = /* @__PURE__ */ s("svg", {
|
|
3764
3765
|
class: "w-2.5 h-2.5 rtl:rotate-180",
|
|
3765
3766
|
"aria-hidden": "true",
|
|
3766
3767
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3774,9 +3775,9 @@ const Ed = /* @__PURE__ */ D(ya, [["render", Ba]]), Ga = {
|
|
|
3774
3775
|
"stroke-width": "2",
|
|
3775
3776
|
d: "M5 1 1 5l4 4"
|
|
3776
3777
|
})
|
|
3777
|
-
], -1),
|
|
3778
|
+
], -1), pi = [
|
|
3778
3779
|
mi,
|
|
3779
|
-
|
|
3780
|
+
_i
|
|
3780
3781
|
], bi = ["onClick"], yi = ["onClick"], vi = ["disabled"], xi = /* @__PURE__ */ s("span", { class: "sr-only" }, "Next", -1), wi = /* @__PURE__ */ s("svg", {
|
|
3781
3782
|
class: "w-2.5 h-2.5 rtl:rotate-180",
|
|
3782
3783
|
"aria-hidden": "true",
|
|
@@ -3795,18 +3796,18 @@ const Ed = /* @__PURE__ */ D(ya, [["render", Ba]]), Ga = {
|
|
|
3795
3796
|
xi,
|
|
3796
3797
|
wi
|
|
3797
3798
|
];
|
|
3798
|
-
function $i(e, t, r, n,
|
|
3799
|
+
function $i(e, t, r, n, o, a) {
|
|
3799
3800
|
const l = X("dropdown");
|
|
3800
|
-
return d(), u("div",
|
|
3801
|
-
s("div",
|
|
3802
|
-
s("div",
|
|
3803
|
-
|
|
3804
|
-
s("div",
|
|
3801
|
+
return d(), u("div", Fo, [
|
|
3802
|
+
s("div", Ro, [
|
|
3803
|
+
s("div", Uo, [
|
|
3804
|
+
qo,
|
|
3805
|
+
s("div", zo, [
|
|
3805
3806
|
H(l, {
|
|
3806
3807
|
has_cancel: !1,
|
|
3807
|
-
options:
|
|
3808
|
-
modelValue:
|
|
3809
|
-
"onUpdate:modelValue": t[0] || (t[0] = (i) =>
|
|
3808
|
+
options: o.showNoOfEntries,
|
|
3809
|
+
modelValue: o.itemsPerPage,
|
|
3810
|
+
"onUpdate:modelValue": t[0] || (t[0] = (i) => o.itemsPerPage = i),
|
|
3810
3811
|
is_required: !1,
|
|
3811
3812
|
field_name: "NoOfEntries",
|
|
3812
3813
|
label_name: "",
|
|
@@ -3815,37 +3816,37 @@ function $i(e, t, r, n, a, o) {
|
|
|
3815
3816
|
placeholder: "Please select an option"
|
|
3816
3817
|
}, null, 8, ["options", "modelValue"])
|
|
3817
3818
|
]),
|
|
3818
|
-
|
|
3819
|
+
Ho
|
|
3819
3820
|
]),
|
|
3820
|
-
|
|
3821
|
-
s("div",
|
|
3822
|
-
|
|
3821
|
+
Zo,
|
|
3822
|
+
s("div", Ko, [
|
|
3823
|
+
Wo,
|
|
3823
3824
|
P(s("input", {
|
|
3824
3825
|
type: "text",
|
|
3825
|
-
"onUpdate:modelValue": t[1] || (t[1] = (i) =>
|
|
3826
|
+
"onUpdate:modelValue": t[1] || (t[1] = (i) => o.search = i),
|
|
3826
3827
|
class: "block p-2 text-sm text-gray-900 border border-gray-300 rounded-lg ps-10 w-80 bg-gray-50 focus:ring-blue-500 focus:border-blue-500 dark:bg-gray-700 dark:border-gray-600 dark:placeholder-gray-400 dark:text-white dark:focus:ring-blue-500 dark:focus:border-blue-500",
|
|
3827
3828
|
placeholder: "Search ..."
|
|
3828
3829
|
}, null, 512), [
|
|
3829
|
-
[V,
|
|
3830
|
+
[V, o.search]
|
|
3830
3831
|
])
|
|
3831
3832
|
])
|
|
3832
3833
|
]),
|
|
3833
|
-
s("div",
|
|
3834
|
-
s("table",
|
|
3835
|
-
s("thead",
|
|
3834
|
+
s("div", Xo, [
|
|
3835
|
+
s("table", Yo, [
|
|
3836
|
+
s("thead", Jo, [
|
|
3836
3837
|
s("tr", null, [
|
|
3837
3838
|
(d(!0), u(v, null, $(r.columns, (i, c) => (d(), u("th", {
|
|
3838
3839
|
key: c,
|
|
3839
|
-
onClick: (f) =>
|
|
3840
|
+
onClick: (f) => a.sort(i),
|
|
3840
3841
|
class: "w-full px-4 py-2 lg:w-2/12"
|
|
3841
3842
|
}, [
|
|
3842
3843
|
w(h(i) + " ", 1),
|
|
3843
|
-
|
|
3844
|
-
], 8,
|
|
3844
|
+
o.sortKey === i ? (d(), u("span", ei, h(o.sortOrder === 1 ? "▲" : "▼"), 1)) : g("", !0)
|
|
3845
|
+
], 8, Qo))), 128))
|
|
3845
3846
|
])
|
|
3846
3847
|
]),
|
|
3847
3848
|
s("tbody", null, [
|
|
3848
|
-
(d(!0), u(v, null, $(
|
|
3849
|
+
(d(!0), u(v, null, $(a.paginatedData, (i, c) => (d(), u("tr", {
|
|
3849
3850
|
key: c,
|
|
3850
3851
|
class: "bg-white dark:bg-gray-800 dark:border-gray-700 hover:bg-gray-50 dark:hover:bg-gray-600"
|
|
3851
3852
|
}, [
|
|
@@ -3867,26 +3868,26 @@ function $i(e, t, r, n, a, o) {
|
|
|
3867
3868
|
s("div", ni, [
|
|
3868
3869
|
s("a", {
|
|
3869
3870
|
href: "#",
|
|
3870
|
-
onClick: t[2] || (t[2] = (...i) =>
|
|
3871
|
-
disabled:
|
|
3871
|
+
onClick: t[2] || (t[2] = (...i) => a.previousPage && a.previousPage(...i)),
|
|
3872
|
+
disabled: o.currentPage === 1,
|
|
3872
3873
|
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"
|
|
3873
|
-
}, "Previous", 8,
|
|
3874
|
+
}, "Previous", 8, ai),
|
|
3874
3875
|
s("a", {
|
|
3875
3876
|
href: "#",
|
|
3876
|
-
onClick: t[3] || (t[3] = (...i) =>
|
|
3877
|
-
disabled:
|
|
3877
|
+
onClick: t[3] || (t[3] = (...i) => a.nextPage && a.nextPage(...i)),
|
|
3878
|
+
disabled: o.currentPage === a.totalPages,
|
|
3878
3879
|
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"
|
|
3879
|
-
}, "Next", 8,
|
|
3880
|
+
}, "Next", 8, oi)
|
|
3880
3881
|
]),
|
|
3881
3882
|
s("div", ii, [
|
|
3882
3883
|
s("div", null, [
|
|
3883
3884
|
s("p", li, [
|
|
3884
3885
|
w(" Showing "),
|
|
3885
|
-
s("span", di, h(
|
|
3886
|
+
s("span", di, h(a.firstItemIndex), 1),
|
|
3886
3887
|
w(" to "),
|
|
3887
|
-
s("span", ui, h(
|
|
3888
|
+
s("span", ui, h(a.lastItemIndex), 1),
|
|
3888
3889
|
w(" of "),
|
|
3889
|
-
s("span", ci, h(
|
|
3890
|
+
s("span", ci, h(a.filteredData.length), 1),
|
|
3890
3891
|
w(" entries ")
|
|
3891
3892
|
])
|
|
3892
3893
|
]),
|
|
@@ -3896,25 +3897,25 @@ function $i(e, t, r, n, a, o) {
|
|
|
3896
3897
|
s("li", null, [
|
|
3897
3898
|
s("a", {
|
|
3898
3899
|
href: "#",
|
|
3899
|
-
onClick: t[4] || (t[4] = (...i) =>
|
|
3900
|
-
disabled:
|
|
3900
|
+
onClick: t[4] || (t[4] = (...i) => a.previousPage && a.previousPage(...i)),
|
|
3901
|
+
disabled: o.currentPage === 1,
|
|
3901
3902
|
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"
|
|
3902
|
-
},
|
|
3903
|
+
}, pi, 8, gi)
|
|
3903
3904
|
]),
|
|
3904
|
-
(d(!0), u(v, null, $(
|
|
3905
|
+
(d(!0), u(v, null, $(a.displayedPageNumbers, (i) => (d(), u(v, { key: i }, [
|
|
3905
3906
|
s("li", null, [
|
|
3906
|
-
|
|
3907
|
+
o.currentPage !== i ? (d(), u("a", {
|
|
3907
3908
|
key: 0,
|
|
3908
3909
|
href: "#",
|
|
3909
|
-
onClick: (c) =>
|
|
3910
|
+
onClick: (c) => a.goToPage(i),
|
|
3910
3911
|
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"
|
|
3911
3912
|
}, h(i), 9, bi)) : g("", !0)
|
|
3912
3913
|
]),
|
|
3913
3914
|
s("li", null, [
|
|
3914
|
-
|
|
3915
|
+
o.currentPage === i ? (d(), u("a", {
|
|
3915
3916
|
key: 0,
|
|
3916
3917
|
href: "#",
|
|
3917
|
-
onClick: (c) =>
|
|
3918
|
+
onClick: (c) => a.goToPage(i),
|
|
3918
3919
|
"aria-current": "page",
|
|
3919
3920
|
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"
|
|
3920
3921
|
}, h(i), 9, yi)) : g("", !0)
|
|
@@ -3923,8 +3924,8 @@ function $i(e, t, r, n, a, o) {
|
|
|
3923
3924
|
s("li", null, [
|
|
3924
3925
|
s("a", {
|
|
3925
3926
|
href: "#",
|
|
3926
|
-
onClick: t[5] || (t[5] = (...i) =>
|
|
3927
|
-
disabled:
|
|
3927
|
+
onClick: t[5] || (t[5] = (...i) => a.nextPage && a.nextPage(...i)),
|
|
3928
|
+
disabled: o.currentPage === a.totalPages,
|
|
3928
3929
|
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"
|
|
3929
3930
|
}, ki, 8, vi)
|
|
3930
3931
|
])
|
|
@@ -3935,7 +3936,7 @@ function $i(e, t, r, n, a, o) {
|
|
|
3935
3936
|
])
|
|
3936
3937
|
]);
|
|
3937
3938
|
}
|
|
3938
|
-
const jd = /* @__PURE__ */ D(
|
|
3939
|
+
const jd = /* @__PURE__ */ D(Go, [["render", $i]]), Ci = {
|
|
3939
3940
|
class: "flex items-center p-4 text-gray-500 bg-white rounded-lg shadow dark:bg-gray-800 dark:text-gray-400",
|
|
3940
3941
|
role: "alert"
|
|
3941
3942
|
}, Si = {
|
|
@@ -4015,13 +4016,13 @@ const jd = /* @__PURE__ */ D(Ga, [["render", $i]]), Ci = {
|
|
|
4015
4016
|
setTimeout(() => n("remove"), r.duration);
|
|
4016
4017
|
});
|
|
4017
4018
|
const n = t;
|
|
4018
|
-
return (
|
|
4019
|
+
return (o, a) => (d(), u("div", Ci, [
|
|
4019
4020
|
r.type === "success" ? (d(), u("div", Si, Pi)) : g("", !0),
|
|
4020
4021
|
r.type === "error" ? (d(), u("div", Ei, Ii)) : g("", !0),
|
|
4021
4022
|
r.type === "warning" ? (d(), u("div", Ti, Vi)) : g("", !0),
|
|
4022
4023
|
s("div", Li, h(r.message), 1),
|
|
4023
4024
|
s("button", {
|
|
4024
|
-
onClick:
|
|
4025
|
+
onClick: a[0] || (a[0] = (l) => n("remove")),
|
|
4025
4026
|
type: "button",
|
|
4026
4027
|
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",
|
|
4027
4028
|
"data-dismiss-target": "#toast-default",
|
|
@@ -4029,11 +4030,11 @@ const jd = /* @__PURE__ */ D(Ga, [["render", $i]]), Ci = {
|
|
|
4029
4030
|
}, Fi)
|
|
4030
4031
|
]));
|
|
4031
4032
|
}
|
|
4032
|
-
},
|
|
4033
|
+
}, oe = we({
|
|
4033
4034
|
items: []
|
|
4034
4035
|
}), Ui = {
|
|
4035
4036
|
add(e) {
|
|
4036
|
-
|
|
4037
|
+
oe.items.unshift({
|
|
4037
4038
|
key: Symbol(),
|
|
4038
4039
|
message: e.message,
|
|
4039
4040
|
type: e.type,
|
|
@@ -4041,10 +4042,10 @@ const jd = /* @__PURE__ */ D(Ga, [["render", $i]]), Ci = {
|
|
|
4041
4042
|
});
|
|
4042
4043
|
},
|
|
4043
4044
|
remove(e) {
|
|
4044
|
-
|
|
4045
|
+
oe.items.splice(e, 1);
|
|
4045
4046
|
}
|
|
4046
4047
|
}, ve = {
|
|
4047
|
-
state:
|
|
4048
|
+
state: oe,
|
|
4048
4049
|
methods: Ui
|
|
4049
4050
|
}, Ad = {
|
|
4050
4051
|
__name: "GlToastList",
|
|
@@ -4061,12 +4062,12 @@ const jd = /* @__PURE__ */ D(Ga, [["render", $i]]), Ci = {
|
|
|
4061
4062
|
class: "fixed z-50 w-full max-w-xs space-y-4 top-4 right-4"
|
|
4062
4063
|
}, {
|
|
4063
4064
|
default: Y(() => [
|
|
4064
|
-
(d(!0), u(v, null, $(nt(ve).state.items, (
|
|
4065
|
-
key:
|
|
4066
|
-
message:
|
|
4067
|
-
type:
|
|
4068
|
-
duration:
|
|
4069
|
-
onRemove: (l) => t(
|
|
4065
|
+
(d(!0), u(v, null, $(nt(ve).state.items, (o, a) => (d(), Z(Ri, {
|
|
4066
|
+
key: o.key,
|
|
4067
|
+
message: o.message,
|
|
4068
|
+
type: o.type,
|
|
4069
|
+
duration: o.duration,
|
|
4070
|
+
onRemove: (l) => t(a)
|
|
4070
4071
|
}, null, 8, ["message", "type", "duration", "onRemove"]))), 128))
|
|
4071
4072
|
]),
|
|
4072
4073
|
_: 1
|
|
@@ -4114,14 +4115,14 @@ const jd = /* @__PURE__ */ D(Ga, [["render", $i]]), Ci = {
|
|
|
4114
4115
|
},
|
|
4115
4116
|
emits: ["deleteAction"],
|
|
4116
4117
|
setup(e, { emit: t }) {
|
|
4117
|
-
const r = Se(), n = e,
|
|
4118
|
-
|
|
4118
|
+
const r = Se(), n = e, o = O(!1), a = O(!1), l = () => {
|
|
4119
|
+
o.value = !1;
|
|
4119
4120
|
}, i = () => {
|
|
4120
|
-
|
|
4121
|
+
o.value = !0;
|
|
4121
4122
|
}, c = () => {
|
|
4122
|
-
|
|
4123
|
+
a.value = !1;
|
|
4123
4124
|
}, f = () => {
|
|
4124
|
-
|
|
4125
|
+
a.value = !0;
|
|
4125
4126
|
}, m = t, y = () => {
|
|
4126
4127
|
axios.delete(`${n.xprops.route}/${n.row.id}`).then(() => {
|
|
4127
4128
|
c(), m("deleteAction"), r.commit("notification/SHOW_NOTIFICATION", {
|
|
@@ -4137,7 +4138,7 @@ const jd = /* @__PURE__ */ D(Ga, [["render", $i]]), Ci = {
|
|
|
4137
4138
|
const L = ke("click-outside");
|
|
4138
4139
|
return d(), u(v, null, [
|
|
4139
4140
|
H(ie, {
|
|
4140
|
-
isOpen:
|
|
4141
|
+
isOpen: a.value,
|
|
4141
4142
|
onConfirmDelete: y,
|
|
4142
4143
|
onCancelDelete: c
|
|
4143
4144
|
}, null, 8, ["isOpen"]),
|
|
@@ -4170,7 +4171,7 @@ const jd = /* @__PURE__ */ D(Ga, [["render", $i]]), Ci = {
|
|
|
4170
4171
|
])) : g("", !0)
|
|
4171
4172
|
])
|
|
4172
4173
|
], 512), [
|
|
4173
|
-
[G,
|
|
4174
|
+
[G, o.value]
|
|
4174
4175
|
])
|
|
4175
4176
|
])), [
|
|
4176
4177
|
[L, l]
|
|
@@ -4194,7 +4195,7 @@ const jd = /* @__PURE__ */ D(Ga, [["render", $i]]), Ci = {
|
|
|
4194
4195
|
], sl = { class: "absolute 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" }, nl = {
|
|
4195
4196
|
class: "py-2 text-sm text-gray-700 dark:text-gray-200",
|
|
4196
4197
|
"aria-labelledby": "dropdownDividerButton"
|
|
4197
|
-
},
|
|
4198
|
+
}, al = { key: 0 }, ol = /* @__PURE__ */ s("i", { class: "mr-2 fa-solid fa-trash-can opacity-80" }, null, -1), Td = {
|
|
4198
4199
|
__name: "DatatableDeleteAction",
|
|
4199
4200
|
props: {
|
|
4200
4201
|
field: {
|
|
@@ -4220,14 +4221,14 @@ const jd = /* @__PURE__ */ D(Ga, [["render", $i]]), Ci = {
|
|
|
4220
4221
|
},
|
|
4221
4222
|
emits: ["deleteAction"],
|
|
4222
4223
|
setup(e, { emit: t }) {
|
|
4223
|
-
const r = Se(), n = e,
|
|
4224
|
-
|
|
4224
|
+
const r = Se(), n = e, o = O(!1), a = O(!1), l = () => {
|
|
4225
|
+
o.value = !1;
|
|
4225
4226
|
}, i = () => {
|
|
4226
|
-
|
|
4227
|
+
o.value = !0;
|
|
4227
4228
|
}, c = () => {
|
|
4228
|
-
|
|
4229
|
+
a.value = !1;
|
|
4229
4230
|
}, f = () => {
|
|
4230
|
-
|
|
4231
|
+
a.value = !0;
|
|
4231
4232
|
}, m = t, y = () => {
|
|
4232
4233
|
axios.delete(`${n.xprops.route}/${n.row.id}`).then(() => {
|
|
4233
4234
|
c(), m("deleteAction"), r.commit("notification/SHOW_NOTIFICATION", {
|
|
@@ -4243,7 +4244,7 @@ const jd = /* @__PURE__ */ D(Ga, [["render", $i]]), Ci = {
|
|
|
4243
4244
|
const L = ke("click-outside");
|
|
4244
4245
|
return d(), u(v, null, [
|
|
4245
4246
|
H(ie, {
|
|
4246
|
-
isOpen:
|
|
4247
|
+
isOpen: a.value,
|
|
4247
4248
|
onConfirmDelete: y,
|
|
4248
4249
|
onCancelDelete: c
|
|
4249
4250
|
}, null, 8, ["isOpen"]),
|
|
@@ -4255,19 +4256,19 @@ const jd = /* @__PURE__ */ D(Ga, [["render", $i]]), Ci = {
|
|
|
4255
4256
|
}, rl),
|
|
4256
4257
|
P(s("div", sl, [
|
|
4257
4258
|
s("ul", nl, [
|
|
4258
|
-
x.can(`delete_${e.xprops.permission}`) ? (d(), u("li",
|
|
4259
|
+
x.can(`delete_${e.xprops.permission}`) ? (d(), u("li", al, [
|
|
4259
4260
|
s("a", {
|
|
4260
4261
|
href: "#",
|
|
4261
4262
|
onClick: M(f, ["prevent"]),
|
|
4262
4263
|
class: "block px-4 py-2 hover:bg-gray-100 dark:hover:bg-gray-600 dark:hover:text-white"
|
|
4263
4264
|
}, [
|
|
4264
|
-
|
|
4265
|
+
ol,
|
|
4265
4266
|
w(" Remove")
|
|
4266
4267
|
])
|
|
4267
4268
|
])) : g("", !0)
|
|
4268
4269
|
])
|
|
4269
4270
|
], 512), [
|
|
4270
|
-
[G,
|
|
4271
|
+
[G, o.value]
|
|
4271
4272
|
])
|
|
4272
4273
|
])), [
|
|
4273
4274
|
[L, l]
|
|
@@ -4329,9 +4330,9 @@ const jd = /* @__PURE__ */ D(Ga, [["render", $i]]), Ci = {
|
|
|
4329
4330
|
"clip-rule": "evenodd"
|
|
4330
4331
|
})
|
|
4331
4332
|
], -1);
|
|
4332
|
-
function hl(e, t, r, n,
|
|
4333
|
+
function hl(e, t, r, n, o, a) {
|
|
4333
4334
|
return d(), u("div", null, [
|
|
4334
|
-
|
|
4335
|
+
a.isArray ? (d(!0), u(v, { key: 0 }, $(r.row, (l, i) => (d(), u("div", {
|
|
4335
4336
|
key: i,
|
|
4336
4337
|
class: "m-1 d-inline-block"
|
|
4337
4338
|
}, [
|
|
@@ -4344,7 +4345,7 @@ function hl(e, t, r, n, a, o) {
|
|
|
4344
4345
|
dl,
|
|
4345
4346
|
w(" Download ")
|
|
4346
4347
|
], 8, ll)
|
|
4347
|
-
]))), 128)) :
|
|
4348
|
+
]))), 128)) : a.isString ? (d(), u("div", ul, [
|
|
4348
4349
|
s("a", {
|
|
4349
4350
|
href: r.row,
|
|
4350
4351
|
title: r.row,
|
|
@@ -4367,7 +4368,7 @@ const Md = /* @__PURE__ */ D(il, [["render", hl]]), gl = {
|
|
|
4367
4368
|
return typeof this.row[this.field] == "object";
|
|
4368
4369
|
}
|
|
4369
4370
|
}
|
|
4370
|
-
}, ml = ["href", "title"],
|
|
4371
|
+
}, ml = ["href", "title"], _l = /* @__PURE__ */ s("svg", {
|
|
4371
4372
|
class: "w-3 h-3 text-white me-2",
|
|
4372
4373
|
"aria-hidden": "true",
|
|
4373
4374
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4384,7 +4385,7 @@ const Md = /* @__PURE__ */ D(il, [["render", hl]]), gl = {
|
|
|
4384
4385
|
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",
|
|
4385
4386
|
"clip-rule": "evenodd"
|
|
4386
4387
|
})
|
|
4387
|
-
], -1),
|
|
4388
|
+
], -1), pl = {
|
|
4388
4389
|
key: 1,
|
|
4389
4390
|
class: "m-1 d-inline-block"
|
|
4390
4391
|
}, bl = ["href", "title"], yl = /* @__PURE__ */ s("svg", {
|
|
@@ -4405,9 +4406,9 @@ const Md = /* @__PURE__ */ D(il, [["render", hl]]), gl = {
|
|
|
4405
4406
|
"clip-rule": "evenodd"
|
|
4406
4407
|
})
|
|
4407
4408
|
], -1);
|
|
4408
|
-
function vl(e, t, r, n,
|
|
4409
|
+
function vl(e, t, r, n, o, a) {
|
|
4409
4410
|
return d(), u("div", null, [
|
|
4410
|
-
|
|
4411
|
+
a.isArray ? (d(!0), u(v, { key: 0 }, $(r.row[r.field], (l) => (d(), u("div", {
|
|
4411
4412
|
key: l.id,
|
|
4412
4413
|
class: "m-1 d-inline-block"
|
|
4413
4414
|
}, [
|
|
@@ -4417,10 +4418,10 @@ function vl(e, t, r, n, a, o) {
|
|
|
4417
4418
|
target: "_blank",
|
|
4418
4419
|
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"
|
|
4419
4420
|
}, [
|
|
4420
|
-
|
|
4421
|
+
_l,
|
|
4421
4422
|
w(" Download ")
|
|
4422
4423
|
], 8, ml)
|
|
4423
|
-
]))), 128)) :
|
|
4424
|
+
]))), 128)) : a.isObject ? (d(), u("div", pl, [
|
|
4424
4425
|
s("a", {
|
|
4425
4426
|
href: r.row[r.field].url,
|
|
4426
4427
|
title: r.row[r.field].name,
|
|
@@ -4436,7 +4437,7 @@ function vl(e, t, r, n, a, o) {
|
|
|
4436
4437
|
const Nd = /* @__PURE__ */ D(gl, [["render", vl]]), xl = {
|
|
4437
4438
|
props: ["field", "row", "tdProps"]
|
|
4438
4439
|
}, wl = { key: 0 }, kl = ["innerHTML"];
|
|
4439
|
-
function $l(e, t, r, n,
|
|
4440
|
+
function $l(e, t, r, n, o, a) {
|
|
4440
4441
|
return r.row[r.field] ? (d(), u("div", wl, [
|
|
4441
4442
|
s("div", {
|
|
4442
4443
|
class: "w-full",
|
|
@@ -4449,7 +4450,7 @@ const Vd = /* @__PURE__ */ D(xl, [["render", $l]]), Cl = {
|
|
|
4449
4450
|
computed: {
|
|
4450
4451
|
entry() {
|
|
4451
4452
|
const [e, t] = this.field.split(".");
|
|
4452
|
-
return
|
|
4453
|
+
return at({ key: e, field: t });
|
|
4453
4454
|
},
|
|
4454
4455
|
isArray() {
|
|
4455
4456
|
return Array.isArray(this.row[this.entry.key]);
|
|
@@ -4462,18 +4463,18 @@ const Vd = /* @__PURE__ */ D(xl, [["render", $l]]), Cl = {
|
|
|
4462
4463
|
key: 1,
|
|
4463
4464
|
class: "px-2 py-1 text-xs font-medium text-blue-800 bg-blue-100 rounded dark:bg-blue-900 dark:text-blue-300"
|
|
4464
4465
|
};
|
|
4465
|
-
function Dl(e, t, r, n,
|
|
4466
|
+
function Dl(e, t, r, n, o, a) {
|
|
4466
4467
|
return d(), u("div", Sl, [
|
|
4467
|
-
|
|
4468
|
+
a.isArray ? (d(!0), u(v, { key: 0 }, $(r.row[a.entry.key], (l, i) => (d(), u("span", {
|
|
4468
4469
|
key: i,
|
|
4469
4470
|
class: "px-2 py-1 text-xs font-medium text-blue-800 bg-blue-100 rounded dark:bg-blue-900 dark:text-blue-300"
|
|
4470
|
-
}, h(l[
|
|
4471
|
+
}, h(l[a.entry.field]), 1))), 128)) : a.isObject ? (d(), u("span", Ol, h(r.row[a.entry.key][a.entry.field]), 1)) : g("", !0)
|
|
4471
4472
|
]);
|
|
4472
4473
|
}
|
|
4473
4474
|
const Ld = /* @__PURE__ */ D(Cl, [["render", Dl]]), Pl = {
|
|
4474
4475
|
props: ["field", "row", "tdProps"]
|
|
4475
4476
|
}, El = { key: 0 }, jl = { class: "m-1 d-inline-block" }, Al = ["href", "title"], Il = ["src", "alt", "title"];
|
|
4476
|
-
function Tl(e, t, r, n,
|
|
4477
|
+
function Tl(e, t, r, n, o, a) {
|
|
4477
4478
|
return r.row[r.field] ? (d(), u("div", El, [
|
|
4478
4479
|
s("div", jl, [
|
|
4479
4480
|
s("a", {
|
|
@@ -4504,12 +4505,12 @@ const Bd = /* @__PURE__ */ D(Pl, [["render", Tl], ["__scopeId", "data-v-3a28c02c
|
|
|
4504
4505
|
key: 1,
|
|
4505
4506
|
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"
|
|
4506
4507
|
}, Gl = /* @__PURE__ */ s("span", { class: "w-2 h-2 bg-red-500 rounded-full me-1" }, null, -1);
|
|
4507
|
-
function Fl(e, t, r, n,
|
|
4508
|
+
function Fl(e, t, r, n, o, a) {
|
|
4508
4509
|
return d(), u("div", Nl, [
|
|
4509
|
-
|
|
4510
|
+
a.isActive ? (d(), u("span", Vl, [
|
|
4510
4511
|
Ll,
|
|
4511
4512
|
w(" Active ")
|
|
4512
|
-
])) :
|
|
4513
|
+
])) : a.isActive ? g("", !0) : (d(), u("span", Bl, [
|
|
4513
4514
|
Gl,
|
|
4514
4515
|
w(" Inactive ")
|
|
4515
4516
|
]))
|
|
@@ -4536,21 +4537,21 @@ const Gd = /* @__PURE__ */ D(Ml, [["render", Fl]]), Rl = {
|
|
|
4536
4537
|
key: 3,
|
|
4537
4538
|
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"
|
|
4538
4539
|
}, Yl = /* @__PURE__ */ s("span", { class: "w-2 h-2 bg-blue-500 rounded-full me-1" }, null, -1);
|
|
4539
|
-
function Jl(e, t, r, n,
|
|
4540
|
+
function Jl(e, t, r, n, o, a) {
|
|
4540
4541
|
return d(), u("div", Ul, [
|
|
4541
|
-
|
|
4542
|
+
a.hasLabelColor == "green" ? (d(), u("span", ql, [
|
|
4542
4543
|
zl,
|
|
4543
4544
|
w(" " + h(this.row[this.field]), 1)
|
|
4544
4545
|
])) : g("", !0),
|
|
4545
|
-
|
|
4546
|
+
a.hasLabelColor == "red" ? (d(), u("span", Hl, [
|
|
4546
4547
|
Zl,
|
|
4547
4548
|
w(" " + h(this.row[this.field]), 1)
|
|
4548
4549
|
])) : g("", !0),
|
|
4549
|
-
|
|
4550
|
+
a.hasLabelColor == "yellow" ? (d(), u("span", Kl, [
|
|
4550
4551
|
Wl,
|
|
4551
4552
|
w(" " + h(this.row[this.field]), 1)
|
|
4552
4553
|
])) : g("", !0),
|
|
4553
|
-
|
|
4554
|
+
a.hasLabelColor == "default" ? (d(), u("span", Xl, [
|
|
4554
4555
|
Yl,
|
|
4555
4556
|
w(" " + h(this.row[this.field]), 1)
|
|
4556
4557
|
])) : g("", !0)
|
|
@@ -4577,15 +4578,15 @@ const Fd = /* @__PURE__ */ D(Rl, [["render", Jl]]), Ql = {
|
|
|
4577
4578
|
}, null, -1), sd = /* @__PURE__ */ s("span", {
|
|
4578
4579
|
class: "hidden sm:inline-block sm:align-middle sm:h-screen",
|
|
4579
4580
|
"aria-hidden": "true"
|
|
4580
|
-
}, "", -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" },
|
|
4581
|
-
function cd(e, t, r, n,
|
|
4581
|
+
}, "", -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" }, ad = { class: "px-4 pt-5 pb-4 bg-white sm:p-6 sm:pb-4" }, od = { class: "sm:flex sm:items-start" }, id = { 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" }, dd = { class: "mt-2" }, ud = { class: "px-4 py-3 bg-gray-50 sm:px-6 sm:flex sm:flex-row-reverse" };
|
|
4582
|
+
function cd(e, t, r, n, o, a) {
|
|
4582
4583
|
return r.isOpen ? (d(), u("div", ed, [
|
|
4583
4584
|
s("div", td, [
|
|
4584
4585
|
rd,
|
|
4585
4586
|
sd,
|
|
4586
4587
|
s("div", nd, [
|
|
4587
|
-
s("div",
|
|
4588
|
-
s("div",
|
|
4588
|
+
s("div", ad, [
|
|
4589
|
+
s("div", od, [
|
|
4589
4590
|
s("div", id, [
|
|
4590
4591
|
s("h3", ld, h(r.title), 1),
|
|
4591
4592
|
s("div", dd, [
|
|
@@ -4596,12 +4597,12 @@ function cd(e, t, r, n, a, o) {
|
|
|
4596
4597
|
]),
|
|
4597
4598
|
s("div", ud, [
|
|
4598
4599
|
s("button", {
|
|
4599
|
-
onClick: t[0] || (t[0] = (...l) =>
|
|
4600
|
+
onClick: t[0] || (t[0] = (...l) => a.confirmAction && a.confirmAction(...l)),
|
|
4600
4601
|
type: "button",
|
|
4601
4602
|
class: "inline-flex justify-center w-full px-4 py-2 text-base font-medium text-white bg-red-600 border border-transparent rounded-md shadow-sm hover:bg-red-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-red-500 sm:ml-3 sm:w-auto sm:text-sm"
|
|
4602
4603
|
}, h(r.button_text), 1),
|
|
4603
4604
|
s("button", {
|
|
4604
|
-
onClick: t[1] || (t[1] = (...l) =>
|
|
4605
|
+
onClick: t[1] || (t[1] = (...l) => a.cancelAction && a.cancelAction(...l)),
|
|
4605
4606
|
type: "button",
|
|
4606
4607
|
class: "inline-flex justify-center w-full px-4 py-2 mt-3 text-base font-medium text-gray-700 bg-white border border-gray-300 rounded-md shadow-sm hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 sm:mt-0 sm:ml-3 sm:w-auto sm:text-sm"
|
|
4607
4608
|
}, " Cancel ")
|
|
@@ -4613,7 +4614,7 @@ function cd(e, t, r, n, a, o) {
|
|
|
4613
4614
|
const Rd = /* @__PURE__ */ D(Ql, [["render", cd]]);
|
|
4614
4615
|
export {
|
|
4615
4616
|
bd as GlButton,
|
|
4616
|
-
|
|
4617
|
+
_d as GlCard,
|
|
4617
4618
|
Rd as GlConfirmationModal,
|
|
4618
4619
|
jd as GlDataTable,
|
|
4619
4620
|
Ed as GlDataTableServerSide,
|
|
@@ -4632,11 +4633,11 @@ export {
|
|
|
4632
4633
|
md as GlLanguageSelector,
|
|
4633
4634
|
Sd as GlModal,
|
|
4634
4635
|
Cd as GlMultiItemSlide,
|
|
4635
|
-
|
|
4636
|
+
pd as GlMultiSelectDropdown,
|
|
4636
4637
|
gd as GlNotify,
|
|
4637
4638
|
$d as GlTab,
|
|
4638
4639
|
kd as GlTabsWrapper,
|
|
4639
|
-
|
|
4640
|
+
bo as GlTailwindPagination,
|
|
4640
4641
|
wd as GlTextInput,
|
|
4641
4642
|
xd as GlTextTranslate,
|
|
4642
4643
|
Pd as GlTextarea,
|