@citruslime/ui 2.6.5-beta.0 → 2.6.5-beta.1
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/citrus-lime-ui.es.js +841 -823
- package/dist/citrus-lime-ui.umd.js +4 -4
- package/dist/components/grid/body/cl-ui-grid-body.vue.d.ts +1 -0
- package/dist/components/grid/cl-ui-grid.vue.d.ts +1 -0
- package/dist/components/grid/header/cl-ui-grid-filter.vue.d.ts +8 -0
- package/dist/components/grid/header/cl-ui-grid-header.vue.d.ts +8 -0
- package/dist/components/grid/header/cl-ui-grid-method-selector.vue.d.ts +8 -0
- package/dist/components/grid/view-manager/cl-ui-grid-view-manager.vue.d.ts +8 -0
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Icon as x } from "@iconify/vue";
|
|
2
|
-
import { defineComponent as Q, ref as I, openBlock as
|
|
2
|
+
import { defineComponent as Q, ref as I, openBlock as p, createElementBlock as y, renderSlot as V, normalizeProps as ce, guardReactiveProps as ve, Fragment as X, createElementVNode as b, normalizeClass as M, createVNode as S, unref as v, Transition as Te, withCtx as Y, withDirectives as le, mergeProps as fe, vShow as te, createBlock as G, Teleport as ll, renderList as se, toDisplayString as q, createCommentVNode as j, nextTick as Fe, computed as R, toHandlers as Vl, withModifiers as ne, useCssVars as Ll, vModelText as Pl, onMounted as Ze, watch as oe, vModelDynamic as Ul, toRefs as Bl, withKeys as Ee, onUnmounted as tl, resolveComponent as Tl, createTextVNode as de, watchEffect as zl, createSlots as al, normalizeStyle as _l } from "vue";
|
|
3
3
|
import { generateStringId as xl, highlightText as Hl } from "@citruslime/utils";
|
|
4
|
-
import { useMediaQuery as Gl, useDebounceFn as ol, unrefElement as Zl, tryOnScopeDispose as Kl, onClickOutside as
|
|
4
|
+
import { useMediaQuery as Gl, useDebounceFn as ol, unrefElement as Zl, tryOnScopeDispose as Kl, onClickOutside as nl, useTimeoutFn as $l, useWindowSize as Ql } from "@vueuse/core";
|
|
5
5
|
import { createI18n as Wl, useI18n as ie } from "vue-i18n";
|
|
6
6
|
import { DateTime as H } from "luxon";
|
|
7
7
|
import { DatePicker as We } from "v-calendar";
|
|
@@ -14,20 +14,20 @@ const Yl = { class: "cl-overflow-hidden" }, Jl = /* @__PURE__ */ Q({
|
|
|
14
14
|
setup(a) {
|
|
15
15
|
const e = a, l = I([]);
|
|
16
16
|
function t(c) {
|
|
17
|
-
let
|
|
18
|
-
return
|
|
17
|
+
let r = l.value.find((o) => o.id === c);
|
|
18
|
+
return r || (r = {
|
|
19
19
|
id: c,
|
|
20
20
|
open: !1
|
|
21
|
-
}, l.value.push(
|
|
21
|
+
}, l.value.push(r)), r.open;
|
|
22
22
|
}
|
|
23
|
-
function
|
|
24
|
-
const
|
|
25
|
-
|
|
23
|
+
function n(c) {
|
|
24
|
+
const r = l.value.find((o) => o.id === c);
|
|
25
|
+
r && (e.exclusive && l.value.forEach((o) => {
|
|
26
26
|
o.id !== c && (o.open = !1);
|
|
27
|
-
}),
|
|
27
|
+
}), r.open = !r.open);
|
|
28
28
|
}
|
|
29
|
-
return (c,
|
|
30
|
-
V(c.$slots, "default", ce(
|
|
29
|
+
return (c, r) => (p(), y("div", Yl, [
|
|
30
|
+
V(c.$slots, "default", ce(ve({ isItemOpen: t, toggleItem: n })))
|
|
31
31
|
]));
|
|
32
32
|
}
|
|
33
33
|
}), Xl = { class: "cl-absolute cl-left-5 cl-top-5" }, et = { class: "cl-font-semibold cl-ml-10 cl-p-4 cl-select-none cl-text-grey-5" }, lt = { class: "cl-overflow-hidden" }, tt = /* @__PURE__ */ Q({
|
|
@@ -45,34 +45,34 @@ const Yl = { class: "cl-overflow-hidden" }, Jl = /* @__PURE__ */ Q({
|
|
|
45
45
|
function t() {
|
|
46
46
|
l.disabled || e("toggle");
|
|
47
47
|
}
|
|
48
|
-
return (
|
|
48
|
+
return (n, c) => (p(), y(X, null, [
|
|
49
49
|
b("div", {
|
|
50
50
|
class: M(["cl-border-b cl-border-grey-1 cl-relative", {
|
|
51
|
-
"cl-bg-grey-0":
|
|
52
|
-
"cl-cursor-pointer": !
|
|
51
|
+
"cl-bg-grey-0": n.disabled,
|
|
52
|
+
"cl-cursor-pointer": !n.disabled
|
|
53
53
|
}]),
|
|
54
54
|
onClick: t
|
|
55
55
|
}, [
|
|
56
56
|
b("div", Xl, [
|
|
57
57
|
S(v(x), {
|
|
58
58
|
class: M(["cl-duration-300 cl-ease-in-out cl-text-grey-3 cl-transform-gpu cl-transition-transform", {
|
|
59
|
-
"cl-rotate-180":
|
|
59
|
+
"cl-rotate-180": n.open
|
|
60
60
|
}]),
|
|
61
61
|
icon: "ph:caret-down-bold",
|
|
62
62
|
width: "20"
|
|
63
63
|
}, null, 8, ["class"])
|
|
64
64
|
]),
|
|
65
65
|
b("div", et, [
|
|
66
|
-
V(
|
|
66
|
+
V(n.$slots, "title")
|
|
67
67
|
])
|
|
68
68
|
], 2),
|
|
69
69
|
b("div", lt, [
|
|
70
70
|
S(Te, { name: "grow-down" }, {
|
|
71
71
|
default: Y(() => [
|
|
72
|
-
le(b("div",
|
|
73
|
-
V(
|
|
72
|
+
le(b("div", fe(n.$attrs, { class: "cl-ml-10 cl-p-4" }), [
|
|
73
|
+
V(n.$slots, "default")
|
|
74
74
|
], 16), [
|
|
75
|
-
[te,
|
|
75
|
+
[te, n.open]
|
|
76
76
|
])
|
|
77
77
|
]),
|
|
78
78
|
_: 3
|
|
@@ -82,16 +82,16 @@ const Yl = { class: "cl-overflow-hidden" }, Jl = /* @__PURE__ */ Q({
|
|
|
82
82
|
}
|
|
83
83
|
}), ke = (a, e) => {
|
|
84
84
|
const l = a.__vccOpts || a;
|
|
85
|
-
for (const [t,
|
|
86
|
-
l[t] =
|
|
85
|
+
for (const [t, n] of e)
|
|
86
|
+
l[t] = n;
|
|
87
87
|
return l;
|
|
88
88
|
}, at = {}, ot = { class: "cl-border-b cl-border-grey-1 cl-font-semibold cl-pl-14 cl-pr-4 cl-py-2 cl-text-grey-3 cl-text-sm" };
|
|
89
|
-
function
|
|
90
|
-
return
|
|
89
|
+
function nt(a, e) {
|
|
90
|
+
return p(), y("div", ot, [
|
|
91
91
|
V(a.$slots, "default")
|
|
92
92
|
]);
|
|
93
93
|
}
|
|
94
|
-
const
|
|
94
|
+
const rt = /* @__PURE__ */ ke(at, [["render", nt]]), Pe = I([]);
|
|
95
95
|
function sl(a) {
|
|
96
96
|
const e = {
|
|
97
97
|
id: xl(),
|
|
@@ -110,7 +110,7 @@ const st = ["onClick"], it = { class: "cl-flex-1 cl-select-none cl-text-ellipsis
|
|
|
110
110
|
position: { default: "top-right" }
|
|
111
111
|
},
|
|
112
112
|
setup(a) {
|
|
113
|
-
return (e, l) => (
|
|
113
|
+
return (e, l) => (p(), G(ll, { to: e.container }, [
|
|
114
114
|
b("div", {
|
|
115
115
|
class: M(["cl-fixed cl-w-80 cl-z-50", {
|
|
116
116
|
"cl-top-5 cl-left-5": e.position === "top-left",
|
|
@@ -121,8 +121,8 @@ const st = ["onClick"], it = { class: "cl-flex-1 cl-select-none cl-text-ellipsis
|
|
|
121
121
|
"cl-bottom-5 cl-right-5": e.position === "bottom-right"
|
|
122
122
|
}])
|
|
123
123
|
}, [
|
|
124
|
-
(
|
|
125
|
-
key:
|
|
124
|
+
(p(!0), y(X, null, se(v(Pe), (t, n) => (p(), y("div", fe(e.$attrs, {
|
|
125
|
+
key: n,
|
|
126
126
|
class: ["cl-break-words cl-cursor-pointer cl-flex cl-font-semibold cl-group cl-mb-2 cl-overflow-hidden cl-p-4 cl-rounded cl-shadow-lg cl-text-sm", {
|
|
127
127
|
"cl-bg-white": t.colour === "default",
|
|
128
128
|
"cl-bg-primary-default": t.colour === "primary",
|
|
@@ -149,7 +149,7 @@ const st = ["onClick"], it = { class: "cl-flex-1 cl-select-none cl-text-ellipsis
|
|
|
149
149
|
removePadding: { type: Boolean, default: !1 }
|
|
150
150
|
},
|
|
151
151
|
setup(a) {
|
|
152
|
-
return (e, l) => (
|
|
152
|
+
return (e, l) => (p(), y(X, null, [
|
|
153
153
|
S(Ol, {
|
|
154
154
|
class: M({
|
|
155
155
|
"first:cl-mt-[4.25rem]": e.$slots.header
|
|
@@ -178,7 +178,7 @@ const st = ["onClick"], it = { class: "cl-flex-1 cl-select-none cl-text-ellipsis
|
|
|
178
178
|
});
|
|
179
179
|
const dt = {}, ft = { class: "loading-spinner" };
|
|
180
180
|
function pt(a, e) {
|
|
181
|
-
return
|
|
181
|
+
return p(), y("div", ft);
|
|
182
182
|
}
|
|
183
183
|
const Ke = /* @__PURE__ */ ke(dt, [["render", pt], ["__scopeId", "data-v-a21dc5d2"]]), mt = ["disabled"], be = /* @__PURE__ */ Q({
|
|
184
184
|
inheritAttrs: !1,
|
|
@@ -195,11 +195,11 @@ const Ke = /* @__PURE__ */ ke(dt, [["render", pt], ["__scopeId", "data-v-a21dc5d
|
|
|
195
195
|
focus() {
|
|
196
196
|
l.value && l.value.focus();
|
|
197
197
|
}
|
|
198
|
-
}), (t,
|
|
198
|
+
}), (t, n) => (p(), y(X, null, [
|
|
199
199
|
le(S(Ke, { class: "relative" }, null, 512), [
|
|
200
200
|
[te, t.loading]
|
|
201
201
|
]),
|
|
202
|
-
le(b("button",
|
|
202
|
+
le(b("button", fe(t.$attrs, {
|
|
203
203
|
ref_key: "buttonRef",
|
|
204
204
|
ref: l,
|
|
205
205
|
class: ["cl-align-middle cl-border cl-font-semibold cl-inline-block cl-rounded cl-select-none cl-shadow cl-text-center cl-transition-colors", {
|
|
@@ -240,15 +240,15 @@ const Ke = /* @__PURE__ */ ke(dt, [["render", pt], ["__scopeId", "data-v-a21dc5d
|
|
|
240
240
|
hover: { type: Boolean, default: !1 }
|
|
241
241
|
},
|
|
242
242
|
setup(a) {
|
|
243
|
-
return (e, l) => (
|
|
243
|
+
return (e, l) => (p(), y("div", {
|
|
244
244
|
class: M(["cl-border cl-border-transparent cl-overflow-hidden cl-relative cl-rounded-md cl-shadow-lg cl-transition-all", {
|
|
245
245
|
"cl-cursor-pointer hover:cl-shadow-xl hover:cl-border-grey-0": e.hover
|
|
246
246
|
}])
|
|
247
247
|
}, [
|
|
248
|
-
e.$slots.image ? (
|
|
248
|
+
e.$slots.image ? (p(), y("div", bt, [
|
|
249
249
|
V(e.$slots, "image")
|
|
250
250
|
])) : j("", !0),
|
|
251
|
-
e.$slots.title ? (
|
|
251
|
+
e.$slots.title ? (p(), y("div", {
|
|
252
252
|
key: 1,
|
|
253
253
|
class: M(["cl-border-grey-2 cl-font-normal", {
|
|
254
254
|
"cl-p-2 cl-text-2xl cl-leading-8": e.size === "small",
|
|
@@ -269,7 +269,7 @@ const Ke = /* @__PURE__ */ ke(dt, [["render", pt], ["__scopeId", "data-v-a21dc5d
|
|
|
269
269
|
}, [
|
|
270
270
|
V(e.$slots, "default")
|
|
271
271
|
], 2),
|
|
272
|
-
e.$slots.footer ? (
|
|
272
|
+
e.$slots.footer ? (p(), y("div", {
|
|
273
273
|
key: 2,
|
|
274
274
|
class: M(["cl-border-grey-2 cl-border-t", {
|
|
275
275
|
"cl-p-2": e.size === "small",
|
|
@@ -286,7 +286,7 @@ const Ke = /* @__PURE__ */ ke(dt, [["render", pt], ["__scopeId", "data-v-a21dc5d
|
|
|
286
286
|
"medium",
|
|
287
287
|
"large"
|
|
288
288
|
];
|
|
289
|
-
var ue = /* @__PURE__ */ ((a) => (a.CURRENCY = "currency", a.PERCENTAGE = "percentage", a.INTEGER = "integer", a.DECIMAL = "decimal", a.MULTIPLIER = "multiplier", a))(ue || {}),
|
|
289
|
+
var ue = /* @__PURE__ */ ((a) => (a.CURRENCY = "currency", a.PERCENTAGE = "percentage", a.INTEGER = "integer", a.DECIMAL = "decimal", a.MULTIPLIER = "multiplier", a))(ue || {}), re = /* @__PURE__ */ ((a) => (a.SHORT_DATE = "short-date", a.SHORT_DATETIME = "short-datetime", a.DATE = "date", a.DATETIME = "datetime", a.LONG_DATE = "long-date", a.LONG_DATETIME = "long-datetime", a.TIME = "time", a.MONTH_YEAR = "month-year", a))(re || {});
|
|
290
290
|
const wt = {
|
|
291
291
|
"en-GB": {
|
|
292
292
|
comboBox: {
|
|
@@ -404,47 +404,47 @@ const wt = {
|
|
|
404
404
|
}
|
|
405
405
|
}, Tt = {
|
|
406
406
|
"en-GB": {
|
|
407
|
-
[
|
|
407
|
+
[re.SHORT_DATE]: {
|
|
408
408
|
day: "numeric",
|
|
409
409
|
month: "numeric",
|
|
410
410
|
year: "2-digit"
|
|
411
411
|
},
|
|
412
|
-
[
|
|
412
|
+
[re.SHORT_DATETIME]: {
|
|
413
413
|
day: "numeric",
|
|
414
414
|
month: "numeric",
|
|
415
415
|
year: "2-digit",
|
|
416
416
|
hour: "numeric",
|
|
417
417
|
minute: "numeric"
|
|
418
418
|
},
|
|
419
|
-
[
|
|
419
|
+
[re.DATE]: {
|
|
420
420
|
day: "numeric",
|
|
421
421
|
month: "numeric",
|
|
422
422
|
year: "numeric"
|
|
423
423
|
},
|
|
424
|
-
[
|
|
424
|
+
[re.DATETIME]: {
|
|
425
425
|
day: "numeric",
|
|
426
426
|
month: "numeric",
|
|
427
427
|
year: "numeric",
|
|
428
428
|
hour: "numeric",
|
|
429
429
|
minute: "numeric"
|
|
430
430
|
},
|
|
431
|
-
[
|
|
431
|
+
[re.LONG_DATE]: {
|
|
432
432
|
day: "numeric",
|
|
433
433
|
month: "long",
|
|
434
434
|
year: "numeric"
|
|
435
435
|
},
|
|
436
|
-
[
|
|
436
|
+
[re.LONG_DATETIME]: {
|
|
437
437
|
day: "numeric",
|
|
438
438
|
month: "long",
|
|
439
439
|
year: "numeric",
|
|
440
440
|
hour: "numeric",
|
|
441
441
|
minute: "numeric"
|
|
442
442
|
},
|
|
443
|
-
[
|
|
443
|
+
[re.TIME]: {
|
|
444
444
|
hour: "numeric",
|
|
445
445
|
minute: "numeric"
|
|
446
446
|
},
|
|
447
|
-
[
|
|
447
|
+
[re.MONTH_YEAR]: {
|
|
448
448
|
month: "long",
|
|
449
449
|
year: "numeric"
|
|
450
450
|
}
|
|
@@ -460,22 +460,22 @@ const wt = {
|
|
|
460
460
|
fallbackWarn: !1,
|
|
461
461
|
warnHtmlMessage: !1
|
|
462
462
|
});
|
|
463
|
-
function
|
|
463
|
+
function ps(a, e) {
|
|
464
464
|
return we.global.mergeLocaleMessage(a, e), Fe();
|
|
465
465
|
}
|
|
466
|
-
function
|
|
466
|
+
function ms(a, e) {
|
|
467
467
|
return we.global.mergeNumberFormat(a, e), Fe();
|
|
468
468
|
}
|
|
469
|
-
function
|
|
469
|
+
function vs(a, e) {
|
|
470
470
|
return we.global.mergeDateTimeFormat(a, e), Fe();
|
|
471
471
|
}
|
|
472
|
-
function
|
|
472
|
+
function gs(a) {
|
|
473
473
|
return we.global.locale.value = a, Fe();
|
|
474
474
|
}
|
|
475
475
|
const { t: he } = we.global;
|
|
476
|
-
function $t(a, e, l, t,
|
|
476
|
+
function $t(a, e, l, t, n) {
|
|
477
477
|
return new Promise((c) => {
|
|
478
|
-
let
|
|
478
|
+
let r = {
|
|
479
479
|
valid: !1,
|
|
480
480
|
message: ""
|
|
481
481
|
};
|
|
@@ -488,43 +488,43 @@ function $t(a, e, l, t, r) {
|
|
|
488
488
|
case "tel":
|
|
489
489
|
case "text":
|
|
490
490
|
case "url":
|
|
491
|
-
o = ((t == null ? void 0 : t.length) ?? 0) >= (Number(a) || 0),
|
|
491
|
+
o = ((t == null ? void 0 : t.length) ?? 0) >= (Number(a) || 0), r = ye(o, he("input.greaterOrEqualToCharacters", { label: l, min: a.toString() }));
|
|
492
492
|
break;
|
|
493
493
|
case "number":
|
|
494
494
|
case "range":
|
|
495
|
-
o = t >= (Number(a) || 0),
|
|
495
|
+
o = t >= (Number(a) || 0), r = ye(o, he("input.greaterOrEqualToValue", { label: l, min: a.toString() }));
|
|
496
496
|
break;
|
|
497
497
|
case "date":
|
|
498
|
-
|
|
498
|
+
n ? (s = H.fromISO(t).setZone(n), i = H.fromISO(a).setZone(n)) : (s = H.fromISO(t, {
|
|
499
499
|
zone: "UTC"
|
|
500
500
|
}), i = H.fromISO(a, {
|
|
501
501
|
zone: "UTC"
|
|
502
|
-
})), o = s >= i,
|
|
502
|
+
})), o = s >= i, r = ye(o, he("input.afterOrEqualToValue", {
|
|
503
503
|
label: l,
|
|
504
504
|
min: i.setLocale(we.global.locale.value).toFormat("D")
|
|
505
505
|
}));
|
|
506
506
|
break;
|
|
507
507
|
case "datetime":
|
|
508
|
-
|
|
508
|
+
n ? (s = H.fromISO(t).setZone(n), i = H.fromISO(a).setZone(n)) : (s = H.fromISO(t, {
|
|
509
509
|
zone: "UTC"
|
|
510
510
|
}), i = H.fromISO(a, {
|
|
511
511
|
zone: "UTC"
|
|
512
|
-
})), o = s >= i,
|
|
512
|
+
})), o = s >= i, n && (i = i.setZone(n)), r = ye(o, he("input.afterOrEqualToValue", {
|
|
513
513
|
label: l,
|
|
514
514
|
min: i.setLocale(we.global.locale.value).toFormat("f")
|
|
515
515
|
}));
|
|
516
516
|
break;
|
|
517
517
|
default:
|
|
518
|
-
|
|
518
|
+
r.valid = !0;
|
|
519
519
|
break;
|
|
520
520
|
}
|
|
521
521
|
}
|
|
522
|
-
c(
|
|
522
|
+
c(r);
|
|
523
523
|
});
|
|
524
524
|
}
|
|
525
|
-
function Ct(a, e, l, t,
|
|
525
|
+
function Ct(a, e, l, t, n) {
|
|
526
526
|
return new Promise((c) => {
|
|
527
|
-
let
|
|
527
|
+
let r = {
|
|
528
528
|
valid: !1,
|
|
529
529
|
message: ""
|
|
530
530
|
};
|
|
@@ -537,49 +537,49 @@ function Ct(a, e, l, t, r) {
|
|
|
537
537
|
case "tel":
|
|
538
538
|
case "text":
|
|
539
539
|
case "url":
|
|
540
|
-
o = ((t == null ? void 0 : t.length) ?? 0) <= (Number(a) || 0),
|
|
540
|
+
o = ((t == null ? void 0 : t.length) ?? 0) <= (Number(a) || 0), r = ye(o, he("input.lessOrEqualToCharacters", { label: l, max: a.toString() }));
|
|
541
541
|
break;
|
|
542
542
|
case "number":
|
|
543
543
|
case "range":
|
|
544
|
-
o = t <= (Number(a) || 0),
|
|
544
|
+
o = t <= (Number(a) || 0), r = ye(o, he("input.lessOrEqualToValue", { label: l, max: a.toString() }));
|
|
545
545
|
break;
|
|
546
546
|
case "date":
|
|
547
|
-
|
|
547
|
+
n ? (s = H.fromISO(t).setZone(n), i = H.fromISO(a).setZone(n)) : (s = H.fromISO(t, {
|
|
548
548
|
zone: "UTC"
|
|
549
549
|
}), i = H.fromISO(a, {
|
|
550
550
|
zone: "UTC"
|
|
551
|
-
})), o = s <= i,
|
|
551
|
+
})), o = s <= i, r = ye(o, he("input.beforeOrEqualToValue", {
|
|
552
552
|
label: l,
|
|
553
553
|
max: i.setLocale(we.global.locale.value).toFormat("D")
|
|
554
554
|
}));
|
|
555
555
|
break;
|
|
556
556
|
case "datetime":
|
|
557
|
-
|
|
557
|
+
n ? (s = H.fromISO(t).setZone(n), i = H.fromISO(a).setZone(n)) : (s = H.fromISO(t, {
|
|
558
558
|
zone: "UTC"
|
|
559
559
|
}), i = H.fromISO(a, {
|
|
560
560
|
zone: "UTC"
|
|
561
|
-
})), o = s <= i,
|
|
561
|
+
})), o = s <= i, r = ye(o, he("input.beforeOrEqualToValue", {
|
|
562
562
|
label: l,
|
|
563
563
|
max: i.setLocale(we.global.locale.value).toFormat("f")
|
|
564
564
|
}));
|
|
565
565
|
break;
|
|
566
566
|
default:
|
|
567
|
-
|
|
567
|
+
r.valid = !0;
|
|
568
568
|
break;
|
|
569
569
|
}
|
|
570
570
|
}
|
|
571
|
-
c(
|
|
571
|
+
c(r);
|
|
572
572
|
});
|
|
573
573
|
}
|
|
574
574
|
function Ot(a, e) {
|
|
575
575
|
return new Promise((l) => {
|
|
576
|
-
const t = e != null && e !== "" && e.toString().trim() !== "",
|
|
577
|
-
l(
|
|
576
|
+
const t = e != null && e !== "" && e.toString().trim() !== "", n = ye(t, he("input.valueIsRequired", { label: a }));
|
|
577
|
+
l(n);
|
|
578
578
|
});
|
|
579
579
|
}
|
|
580
580
|
function St(a, e) {
|
|
581
581
|
return new Promise((l) => {
|
|
582
|
-
const
|
|
582
|
+
const n = e === "" || /[a-zA-Z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-zA-Z0-9!#$%&'*+/=?^_`{|}~-]+)*@(?:[a-zA-Z0-9](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?\.)+[a-zA-Z0-9](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?/.exec(e) !== null, c = ye(n, he("input.valueNotValidEmail", { label: a }));
|
|
583
583
|
l(c);
|
|
584
584
|
});
|
|
585
585
|
}
|
|
@@ -612,11 +612,11 @@ const Nt = {
|
|
|
612
612
|
emits: ["clear", "reset", "togglePopover"],
|
|
613
613
|
setup(a, { expose: e }) {
|
|
614
614
|
const l = a, t = I(null);
|
|
615
|
-
function
|
|
615
|
+
function n() {
|
|
616
616
|
var o;
|
|
617
617
|
(o = t.value) == null || o.focus();
|
|
618
618
|
}
|
|
619
|
-
const { t: c } = ie(),
|
|
619
|
+
const { t: c } = ie(), r = R(() => {
|
|
620
620
|
let o = "";
|
|
621
621
|
switch (l.type) {
|
|
622
622
|
case "date":
|
|
@@ -632,8 +632,8 @@ const Nt = {
|
|
|
632
632
|
return l.placeholder ?? o;
|
|
633
633
|
});
|
|
634
634
|
return e({
|
|
635
|
-
focus:
|
|
636
|
-
}), (o, s) => o.type === "dateRange" ? (
|
|
635
|
+
focus: n
|
|
636
|
+
}), (o, s) => o.type === "dateRange" ? (p(), y("div", Nt, [
|
|
637
637
|
S(be, {
|
|
638
638
|
class: M(["cl-basis-full cl-border-transparent cl-col-span-4 cl-flex cl-items-center cl-justify-center hover:cl-border-transparent", {
|
|
639
639
|
"cl-text-grey-4 hover:cl-text-grey-3": !o.rangeSelected,
|
|
@@ -650,7 +650,7 @@ const Nt = {
|
|
|
650
650
|
]),
|
|
651
651
|
_: 1
|
|
652
652
|
}, 8, ["disabled", "class"]),
|
|
653
|
-
o.required ? j("", !0) : (
|
|
653
|
+
o.required ? j("", !0) : (p(), G(be, {
|
|
654
654
|
key: 0,
|
|
655
655
|
size: "small",
|
|
656
656
|
class: M(["cl-basis-0 cl-border-transparent cl-flex cl-items-center cl-justify-center hover:cl-border-transparent", {
|
|
@@ -668,37 +668,37 @@ const Nt = {
|
|
|
668
668
|
]),
|
|
669
669
|
_: 1
|
|
670
670
|
}, 8, ["disabled", "class"]))
|
|
671
|
-
])) : (
|
|
672
|
-
b("input",
|
|
671
|
+
])) : (p(), y("div", Et, [
|
|
672
|
+
b("input", fe({
|
|
673
673
|
ref_key: "element",
|
|
674
674
|
ref: t
|
|
675
675
|
}, o.$attrs, {
|
|
676
676
|
value: o.date,
|
|
677
677
|
type: "text",
|
|
678
678
|
disabled: o.disabled,
|
|
679
|
-
placeholder:
|
|
679
|
+
placeholder: r.value
|
|
680
680
|
}, Vl(o.events, !0)), null, 16, At),
|
|
681
681
|
le(S(v(x), {
|
|
682
682
|
class: M(["cl-absolute cl-bg-transparent cl-cursor-text cl-left-2 cl-text-grey-4 cl-top-3.5 icon", {
|
|
683
683
|
"!cl-bg-off-white": o.disabled
|
|
684
684
|
}]),
|
|
685
685
|
icon: o.type === "time" ? "ph-clock" : "ph:calendar",
|
|
686
|
-
onClick:
|
|
686
|
+
onClick: n
|
|
687
687
|
}, null, 8, ["class", "icon"]), [
|
|
688
688
|
[te, !o.disabled]
|
|
689
689
|
]),
|
|
690
|
-
o.disabled ? j("", !0) : (
|
|
691
|
-
o.type !== "time" ? (
|
|
690
|
+
o.disabled ? j("", !0) : (p(), y("div", qt, [
|
|
691
|
+
o.type !== "time" ? (p(), G(v(x), {
|
|
692
692
|
key: 0,
|
|
693
693
|
class: "cl-cursor-pointer hover:cl-text-link-light",
|
|
694
694
|
icon: "ph:arrow-counter-clockwise",
|
|
695
|
-
onClick: s[2] || (s[2] =
|
|
695
|
+
onClick: s[2] || (s[2] = ne((i) => o.$emit("reset"), ["prevent"]))
|
|
696
696
|
})) : j("", !0),
|
|
697
|
-
!o.required && o.date && (o.type !== "time" || o.date !== "00:00") ? (
|
|
697
|
+
!o.required && o.date && (o.type !== "time" || o.date !== "00:00") ? (p(), G(v(x), {
|
|
698
698
|
key: 1,
|
|
699
699
|
class: "cl-cursor-pointer clear-icon hover:cl-text-link-light md:cl-ml-0.5",
|
|
700
700
|
icon: "ph:x",
|
|
701
|
-
onClick: s[3] || (s[3] =
|
|
701
|
+
onClick: s[3] || (s[3] = ne((i) => o.$emit("clear"), ["prevent"]))
|
|
702
702
|
})) : j("", !0)
|
|
703
703
|
]))
|
|
704
704
|
]));
|
|
@@ -713,11 +713,11 @@ const Ye = /* @__PURE__ */ ke(Rt, [["__scopeId", "data-v-905eee52"]]), Dt = { cl
|
|
|
713
713
|
emits: ["quick-date-selected"],
|
|
714
714
|
setup(a, { emit: e }) {
|
|
715
715
|
const { t: l } = ie();
|
|
716
|
-
return (t,
|
|
717
|
-
(
|
|
716
|
+
return (t, n) => (p(), y("div", Dt, [
|
|
717
|
+
(p(!0), y(X, null, se(t.dates, (c, r) => {
|
|
718
718
|
var o, s;
|
|
719
|
-
return
|
|
720
|
-
key:
|
|
719
|
+
return p(), y("button", {
|
|
720
|
+
key: r,
|
|
721
721
|
class: M(["cl-border cl-cursor-pointer cl-py-1 cl-rounded-md cl-text-center", {
|
|
722
722
|
"cl-bg-primary-lighter cl-bg-opacity-30 cl-border-primary-default cl-font-bold hover:cl-border-primary-darker": ((o = t.selectedQuickDate) == null ? void 0 : o.name) === c.name,
|
|
723
723
|
"cl-border-grey-2 hover:cl-border-grey-3 hover:cl-opacity-95 cl-opacity-60": ((s = t.selectedQuickDate) == null ? void 0 : s.name) !== c.name
|
|
@@ -833,7 +833,7 @@ const Ye = /* @__PURE__ */ ke(Rt, [["__scopeId", "data-v-905eee52"]]), Dt = { cl
|
|
|
833
833
|
},
|
|
834
834
|
emits: ["quick-date-selected", "apply-button-clicked"],
|
|
835
835
|
setup(a, { emit: e }) {
|
|
836
|
-
const l = a, { t } = ie(),
|
|
836
|
+
const l = a, { t } = ie(), n = R(() => {
|
|
837
837
|
const c = [];
|
|
838
838
|
switch (l.scope) {
|
|
839
839
|
case "past":
|
|
@@ -847,8 +847,8 @@ const Ye = /* @__PURE__ */ ke(Rt, [["__scopeId", "data-v-905eee52"]]), Dt = { cl
|
|
|
847
847
|
break;
|
|
848
848
|
default: {
|
|
849
849
|
const o = [];
|
|
850
|
-
for (var
|
|
851
|
-
const s = Sl.find((i) => i.name ===
|
|
850
|
+
for (var r of l.scope) {
|
|
851
|
+
const s = Sl.find((i) => i.name === r);
|
|
852
852
|
s && o.push(s);
|
|
853
853
|
}
|
|
854
854
|
c.push(o);
|
|
@@ -857,18 +857,18 @@ const Ye = /* @__PURE__ */ ke(Rt, [["__scopeId", "data-v-905eee52"]]), Dt = { cl
|
|
|
857
857
|
}
|
|
858
858
|
return c;
|
|
859
859
|
});
|
|
860
|
-
return (c,
|
|
860
|
+
return (c, r) => (p(), y("div", Mt, [
|
|
861
861
|
b("div", null, q(v(t)("quickDates.quickDatesHeader")), 1),
|
|
862
|
-
(
|
|
862
|
+
(p(!0), y(X, null, se(n.value, (o, s) => (p(), y("div", {
|
|
863
863
|
key: s,
|
|
864
864
|
class: "cl-pt-2"
|
|
865
865
|
}, [
|
|
866
866
|
S(jt, {
|
|
867
867
|
dates: o,
|
|
868
868
|
"selected-quick-date": c.selectedQuickDate,
|
|
869
|
-
onQuickDateSelected:
|
|
869
|
+
onQuickDateSelected: r[0] || (r[0] = (i) => e("quick-date-selected", i))
|
|
870
870
|
}, null, 8, ["dates", "selected-quick-date"]),
|
|
871
|
-
s <
|
|
871
|
+
s < n.value.length - 1 ? (p(), y("div", Vt)) : j("", !0)
|
|
872
872
|
]))), 128))
|
|
873
873
|
]));
|
|
874
874
|
}
|
|
@@ -889,39 +889,39 @@ const Ye = /* @__PURE__ */ ke(Rt, [["__scopeId", "data-v-905eee52"]]), Dt = { cl
|
|
|
889
889
|
},
|
|
890
890
|
emits: ["update:date"],
|
|
891
891
|
setup(a, { expose: e, emit: l }) {
|
|
892
|
-
const t = a,
|
|
892
|
+
const t = a, n = R(() => t.timeZone ?? "UTC"), c = R({
|
|
893
893
|
get() {
|
|
894
894
|
let u = null;
|
|
895
895
|
return t.type === "time" ? u = t.date === null ? "00:00" : t.date : t.date !== null && typeof t.date == "string" ? u = H.fromISO(t.date, {
|
|
896
|
-
zone:
|
|
896
|
+
zone: n.value
|
|
897
897
|
}).toJSDate() : t.date !== null && t.date.start && t.date.end && (u = {
|
|
898
898
|
start: H.fromISO(t.date.start, {
|
|
899
|
-
zone:
|
|
899
|
+
zone: n.value
|
|
900
900
|
}).toJSDate(),
|
|
901
901
|
end: H.fromISO(t.date.end, {
|
|
902
|
-
zone:
|
|
902
|
+
zone: n.value
|
|
903
903
|
}).endOf("day").toJSDate()
|
|
904
904
|
}), u;
|
|
905
905
|
},
|
|
906
906
|
set(u) {
|
|
907
|
-
let
|
|
907
|
+
let f = null;
|
|
908
908
|
if (t.type === "time")
|
|
909
|
-
|
|
909
|
+
f = u;
|
|
910
910
|
else if (u !== null && t.type !== "dateRange")
|
|
911
|
-
|
|
911
|
+
f = r(u, !1);
|
|
912
912
|
else if (u !== null) {
|
|
913
913
|
const O = u;
|
|
914
|
-
|
|
915
|
-
start:
|
|
916
|
-
end:
|
|
914
|
+
f = {
|
|
915
|
+
start: r(O.start, !0) ?? "",
|
|
916
|
+
end: r(O.end, !1) ?? ""
|
|
917
917
|
};
|
|
918
918
|
}
|
|
919
|
-
l("update:date",
|
|
919
|
+
l("update:date", f);
|
|
920
920
|
}
|
|
921
921
|
});
|
|
922
|
-
function
|
|
923
|
-
let O = H.fromJSDate(u, { zone:
|
|
924
|
-
|
|
922
|
+
function r(u, f) {
|
|
923
|
+
let O = H.fromJSDate(u, { zone: n.value }).setZone(n.value);
|
|
924
|
+
f && (O = O.startOf("day"));
|
|
925
925
|
let $ = O.toISO();
|
|
926
926
|
return t.timeZone === null && ($ = ($ == null ? void 0 : $.replace("Z", "")) ?? null), $;
|
|
927
927
|
}
|
|
@@ -934,18 +934,18 @@ const Ye = /* @__PURE__ */ ke(Rt, [["__scopeId", "data-v-905eee52"]]), Dt = { cl
|
|
|
934
934
|
function i() {
|
|
935
935
|
let u = m(H.now());
|
|
936
936
|
if (t.max) {
|
|
937
|
-
const
|
|
938
|
-
u >
|
|
937
|
+
const f = H.fromISO(t.max).setZone(n.value);
|
|
938
|
+
u > f && (u = m(f), u.equals(f) || (t.type === "date" ? u = u.minus({ days: 1 }) : u = u.minus({ minutes: 1 })));
|
|
939
939
|
}
|
|
940
940
|
if (t.min) {
|
|
941
|
-
const
|
|
942
|
-
u <
|
|
941
|
+
const f = H.fromISO(t.min).setZone(n.value);
|
|
942
|
+
u < f && (u = m(f), u.equals(f) || (t.type === "date" ? u = u.plus({ days: 1 }) : u = u.plus({ minutes: 1 })));
|
|
943
943
|
}
|
|
944
944
|
c.value = u.toJSDate();
|
|
945
945
|
}
|
|
946
946
|
function m(u) {
|
|
947
|
-
let
|
|
948
|
-
return t.type === "date" && (
|
|
947
|
+
let f = u.set({ second: 0, millisecond: 0 }).setZone(n.value);
|
|
948
|
+
return t.type === "date" && (f = f.set({ hour: 0, minute: 0 }).setZone(n.value)), f;
|
|
949
949
|
}
|
|
950
950
|
const k = R(() => {
|
|
951
951
|
const u = H.fromObject({
|
|
@@ -955,23 +955,23 @@ const Ye = /* @__PURE__ */ ke(Rt, [["__scopeId", "data-v-905eee52"]]), Dt = { cl
|
|
|
955
955
|
hour: 5,
|
|
956
956
|
minute: 6
|
|
957
957
|
}).setLocale(o.value);
|
|
958
|
-
let
|
|
959
|
-
return t.type === "date" ?
|
|
958
|
+
let f;
|
|
959
|
+
return t.type === "date" ? f = u.toFormat("D") : t.type === "datetime" ? f = u.toFormat("f") : f = u.toFormat("t"), f.replace("2000", "YYYY").replace("20", "YY").replace("04", "MM").replace("4", "M").replace("03", "DD").replace("3", "D").replace("05", "HH").replace("5", "H").replace("06", "mm").replace("6", "m").replace("AM", "A").trim();
|
|
960
960
|
}), d = I(null), h = R(() => {
|
|
961
961
|
let u;
|
|
962
962
|
if (t.date && t.type !== "dateRange")
|
|
963
963
|
u = H.fromISO(t.date, {
|
|
964
|
-
zone:
|
|
964
|
+
zone: n.value
|
|
965
965
|
});
|
|
966
966
|
else if (t.date && t.type === "dateRange") {
|
|
967
|
-
const
|
|
968
|
-
u = H.fromISO(
|
|
969
|
-
zone:
|
|
967
|
+
const f = t.date;
|
|
968
|
+
u = H.fromISO(f.start, {
|
|
969
|
+
zone: n.value
|
|
970
970
|
});
|
|
971
971
|
} else
|
|
972
972
|
t.initialDate ? u = H.fromISO(t.initialDate, {
|
|
973
|
-
zone:
|
|
974
|
-
}) : u = H.utc().setZone(
|
|
973
|
+
zone: n.value
|
|
974
|
+
}) : u = H.utc().setZone(n.value);
|
|
975
975
|
return u;
|
|
976
976
|
});
|
|
977
977
|
e({
|
|
@@ -982,11 +982,11 @@ const Ye = /* @__PURE__ */ ke(Rt, [["__scopeId", "data-v-905eee52"]]), Dt = { cl
|
|
|
982
982
|
});
|
|
983
983
|
const A = I(null), P = I();
|
|
984
984
|
function U(u) {
|
|
985
|
-
const
|
|
986
|
-
c.value =
|
|
985
|
+
const f = Z(u);
|
|
986
|
+
c.value = f, A.value = u, P.value.move(f.start), P.value.hidePopover();
|
|
987
987
|
}
|
|
988
988
|
function Z(u) {
|
|
989
|
-
const
|
|
989
|
+
const f = u.range, O = u.scope === "past" ? -1 : u.scope === "current" ? 0 : 1, $ = H.now().setZone(n.value).startOf(f).plus({ days: f === "day" ? O : 0, weeks: f === "week" ? O : 0, months: f === "month" ? O : 0, years: f === "year" ? O : 0 }), _ = $.endOf(f);
|
|
990
990
|
return {
|
|
991
991
|
start: $.toJSDate(),
|
|
992
992
|
end: _.toJSDate()
|
|
@@ -994,17 +994,17 @@ const Ye = /* @__PURE__ */ ke(Rt, [["__scopeId", "data-v-905eee52"]]), Dt = { cl
|
|
|
994
994
|
}
|
|
995
995
|
const ae = R(() => {
|
|
996
996
|
let u = "";
|
|
997
|
-
const
|
|
998
|
-
if (
|
|
999
|
-
const O = H.fromJSDate(
|
|
997
|
+
const f = c.value;
|
|
998
|
+
if (f !== null && Object.hasOwn(f, "start") && Object.hasOwn(f, "end")) {
|
|
999
|
+
const O = H.fromJSDate(f.start).setZone(n.value).setLocale(o.value).toLocaleString(H.DATETIME_SHORT), $ = H.fromJSDate(f.end).setZone(n.value).setLocale(o.value).toLocaleString(H.DATETIME_SHORT);
|
|
1000
1000
|
u = `${O} - ${$}`;
|
|
1001
1001
|
}
|
|
1002
1002
|
return u;
|
|
1003
1003
|
}), N = Gl("(min-width: 768px)"), B = R(() => N.value ? 2 : 1);
|
|
1004
|
-
return (u,
|
|
1004
|
+
return (u, f) => u.type === "time" ? (p(), G(v(We), {
|
|
1005
1005
|
key: 0,
|
|
1006
1006
|
modelValue: c.value,
|
|
1007
|
-
"onUpdate:modelValue":
|
|
1007
|
+
"onUpdate:modelValue": f[1] || (f[1] = (O) => c.value = O),
|
|
1008
1008
|
modelModifiers: { string: !0 },
|
|
1009
1009
|
locale: v(o),
|
|
1010
1010
|
is24hr: v(o) !== "en-US",
|
|
@@ -1018,7 +1018,7 @@ const Ye = /* @__PURE__ */ ke(Rt, [["__scopeId", "data-v-905eee52"]]), Dt = { cl
|
|
|
1018
1018
|
popover: s.value
|
|
1019
1019
|
}, {
|
|
1020
1020
|
default: Y(({ inputValue: O, inputEvents: $ }) => [
|
|
1021
|
-
S(Ye,
|
|
1021
|
+
S(Ye, fe(u.$attrs, {
|
|
1022
1022
|
ref_key: "input",
|
|
1023
1023
|
ref: d,
|
|
1024
1024
|
date: O,
|
|
@@ -1027,31 +1027,31 @@ const Ye = /* @__PURE__ */ ke(Rt, [["__scopeId", "data-v-905eee52"]]), Dt = { cl
|
|
|
1027
1027
|
placeholder: u.placeholder,
|
|
1028
1028
|
required: u.required,
|
|
1029
1029
|
disabled: u.disabled,
|
|
1030
|
-
onClear:
|
|
1030
|
+
onClear: f[0] || (f[0] = (_) => c.value = null)
|
|
1031
1031
|
}), null, 16, ["date", "events", "type", "placeholder", "required", "disabled"])
|
|
1032
1032
|
]),
|
|
1033
1033
|
_: 1
|
|
1034
|
-
}, 8, ["modelValue", "locale", "is24hr", "mode", "is-required", "masks", "popover"])) : u.type === "dateRange" ? (
|
|
1034
|
+
}, 8, ["modelValue", "locale", "is24hr", "mode", "is-required", "masks", "popover"])) : u.type === "dateRange" ? (p(), G(v(We), {
|
|
1035
1035
|
key: 1,
|
|
1036
1036
|
ref_key: "calendar",
|
|
1037
1037
|
ref: P,
|
|
1038
1038
|
modelValue: c.value,
|
|
1039
|
-
"onUpdate:modelValue":
|
|
1039
|
+
"onUpdate:modelValue": f[3] || (f[3] = (O) => c.value = O),
|
|
1040
1040
|
modelModifiers: { range: !0 },
|
|
1041
1041
|
mode: "date",
|
|
1042
1042
|
color: "primary",
|
|
1043
1043
|
"title-position": "left",
|
|
1044
1044
|
locale: v(o),
|
|
1045
|
-
timezone:
|
|
1045
|
+
timezone: n.value,
|
|
1046
1046
|
columns: B.value,
|
|
1047
1047
|
popover: s.value,
|
|
1048
1048
|
"min-date": u.min,
|
|
1049
1049
|
"max-date": u.max,
|
|
1050
1050
|
"initial-page": h.value,
|
|
1051
|
-
onDayclick:
|
|
1051
|
+
onDayclick: f[4] || (f[4] = (O) => A.value = null)
|
|
1052
1052
|
}, {
|
|
1053
1053
|
default: Y(({ togglePopover: O }) => [
|
|
1054
|
-
S(Ye,
|
|
1054
|
+
S(Ye, fe(u.$attrs, {
|
|
1055
1055
|
ref_key: "input",
|
|
1056
1056
|
ref: d,
|
|
1057
1057
|
type: u.type,
|
|
@@ -1061,13 +1061,13 @@ const Ye = /* @__PURE__ */ ke(Rt, [["__scopeId", "data-v-905eee52"]]), Dt = { cl
|
|
|
1061
1061
|
title: ae.value,
|
|
1062
1062
|
placeholder: null,
|
|
1063
1063
|
onTogglePopover: O,
|
|
1064
|
-
onClear:
|
|
1064
|
+
onClear: f[2] || (f[2] = ($) => {
|
|
1065
1065
|
c.value = null, A.value = null, P.value.hidePopover();
|
|
1066
1066
|
})
|
|
1067
1067
|
}), null, 16, ["type", "required", "disabled", "range-selected", "title", "onTogglePopover"])
|
|
1068
1068
|
]),
|
|
1069
1069
|
footer: Y(() => [
|
|
1070
|
-
u.quickDateScope !== "none" ? (
|
|
1070
|
+
u.quickDateScope !== "none" ? (p(), G(Lt, {
|
|
1071
1071
|
key: 0,
|
|
1072
1072
|
scope: u.quickDateScope,
|
|
1073
1073
|
"selected-quick-date": A.value,
|
|
@@ -1076,13 +1076,13 @@ const Ye = /* @__PURE__ */ ke(Rt, [["__scopeId", "data-v-905eee52"]]), Dt = { cl
|
|
|
1076
1076
|
}, null, 8, ["scope", "selected-quick-date", "current-date-range"])) : j("", !0)
|
|
1077
1077
|
]),
|
|
1078
1078
|
_: 1
|
|
1079
|
-
}, 8, ["modelValue", "locale", "timezone", "columns", "popover", "min-date", "max-date", "initial-page"])) : (
|
|
1079
|
+
}, 8, ["modelValue", "locale", "timezone", "columns", "popover", "min-date", "max-date", "initial-page"])) : (p(), G(v(We), {
|
|
1080
1080
|
key: 2,
|
|
1081
1081
|
modelValue: c.value,
|
|
1082
|
-
"onUpdate:modelValue":
|
|
1082
|
+
"onUpdate:modelValue": f[6] || (f[6] = (O) => c.value = O),
|
|
1083
1083
|
locale: v(o),
|
|
1084
1084
|
is24hr: v(o) !== "en-US",
|
|
1085
|
-
timezone:
|
|
1085
|
+
timezone: n.value,
|
|
1086
1086
|
mode: u.type,
|
|
1087
1087
|
"min-date": u.min,
|
|
1088
1088
|
"max-date": u.max,
|
|
@@ -1096,7 +1096,7 @@ const Ye = /* @__PURE__ */ ke(Rt, [["__scopeId", "data-v-905eee52"]]), Dt = { cl
|
|
|
1096
1096
|
popover: s.value
|
|
1097
1097
|
}, {
|
|
1098
1098
|
default: Y(({ inputValue: O, inputEvents: $ }) => [
|
|
1099
|
-
S(Ye,
|
|
1099
|
+
S(Ye, fe(u.$attrs, {
|
|
1100
1100
|
ref_key: "input",
|
|
1101
1101
|
ref: d,
|
|
1102
1102
|
date: O,
|
|
@@ -1105,7 +1105,7 @@ const Ye = /* @__PURE__ */ ke(Rt, [["__scopeId", "data-v-905eee52"]]), Dt = { cl
|
|
|
1105
1105
|
placeholder: u.placeholder,
|
|
1106
1106
|
required: u.required,
|
|
1107
1107
|
disabled: u.disabled,
|
|
1108
|
-
onClear:
|
|
1108
|
+
onClear: f[5] || (f[5] = (_) => c.value = null),
|
|
1109
1109
|
onReset: i
|
|
1110
1110
|
}), null, 16, ["date", "events", "type", "placeholder", "required", "disabled"])
|
|
1111
1111
|
]),
|
|
@@ -1131,7 +1131,7 @@ function Ut(a) {
|
|
|
1131
1131
|
from: "@iconify/vue"
|
|
1132
1132
|
};
|
|
1133
1133
|
}
|
|
1134
|
-
function
|
|
1134
|
+
function bs() {
|
|
1135
1135
|
return Ut;
|
|
1136
1136
|
}
|
|
1137
1137
|
const Bt = [
|
|
@@ -1173,7 +1173,7 @@ const Bt = [
|
|
|
1173
1173
|
Ll((d) => ({
|
|
1174
1174
|
44703202: i.value
|
|
1175
1175
|
}));
|
|
1176
|
-
const { n
|
|
1176
|
+
const { n, t: c } = ie(), r = I(), o = R({
|
|
1177
1177
|
get: () => t.value,
|
|
1178
1178
|
set: (d) => l("update:value", d ?? "")
|
|
1179
1179
|
}), s = ol((d) => o.value = d || d === 0 ? d : t.min, 1e3), i = R(() => {
|
|
@@ -1183,11 +1183,11 @@ const Bt = [
|
|
|
1183
1183
|
e({
|
|
1184
1184
|
focus() {
|
|
1185
1185
|
var d;
|
|
1186
|
-
(d =
|
|
1186
|
+
(d = r.value) == null || d.focus();
|
|
1187
1187
|
}
|
|
1188
1188
|
});
|
|
1189
1189
|
const k = I(!1);
|
|
1190
|
-
return (d, h) => m.value ? (
|
|
1190
|
+
return (d, h) => m.value ? (p(), y("div", ce(fe({ key: 0 }, d.$attrs)), [
|
|
1191
1191
|
b("div", zt, [
|
|
1192
1192
|
b("span", {
|
|
1193
1193
|
class: M(["cl-border cl-border-transparent cl-leading-6 cl-mr-1 cl-px-2 cl-rounded-full cl-select-none cl-shadow cl-text-center cl-text-xs", {
|
|
@@ -1195,12 +1195,12 @@ const Bt = [
|
|
|
1195
1195
|
"cl-bg-grey-0": d.disabled
|
|
1196
1196
|
}]),
|
|
1197
1197
|
onClick: h[0] || (h[0] = (A) => o.value = d.disabled ? o.value : d.min)
|
|
1198
|
-
}, q(v(
|
|
1198
|
+
}, q(v(n)(d.min, Number.isInteger(d.min) ? v(ue).INTEGER : v(ue).DECIMAL)), 3),
|
|
1199
1199
|
b("div", _t, [
|
|
1200
|
-
k.value ? (
|
|
1200
|
+
k.value ? (p(), G(v(me), {
|
|
1201
1201
|
key: 0,
|
|
1202
1202
|
ref_key: "sliderRef",
|
|
1203
|
-
ref:
|
|
1203
|
+
ref: r,
|
|
1204
1204
|
modelValue: o.value,
|
|
1205
1205
|
"onUpdate:modelValue": [
|
|
1206
1206
|
h[1] || (h[1] = (A) => o.value = A),
|
|
@@ -1214,10 +1214,10 @@ const Bt = [
|
|
|
1214
1214
|
disabled: d.disabled,
|
|
1215
1215
|
"placeholder-text": d.placeholder,
|
|
1216
1216
|
"show-validation-messages": !1
|
|
1217
|
-
}, null, 8, ["modelValue", "min", "max", "step", "disabled", "placeholder-text", "onUpdate:modelValue"])) : (
|
|
1217
|
+
}, null, 8, ["modelValue", "min", "max", "step", "disabled", "placeholder-text", "onUpdate:modelValue"])) : (p(), y(X, { key: 1 }, [
|
|
1218
1218
|
le(b("input", {
|
|
1219
1219
|
ref_key: "sliderRef",
|
|
1220
|
-
ref:
|
|
1220
|
+
ref: r,
|
|
1221
1221
|
"onUpdate:modelValue": h[2] || (h[2] = (A) => o.value = A),
|
|
1222
1222
|
class: "cl-align-middle cl-appearance-none cl-border cl-border-grey-2 cl-delay-500 cl-ease-in cl-flex-1 cl-h-5 cl-min-w-[8.5rem] cl-outline-none cl-rounded-full cl-transition-colors cl-w-full",
|
|
1223
1223
|
type: "range",
|
|
@@ -1242,7 +1242,7 @@ const Bt = [
|
|
|
1242
1242
|
"cl-bg-grey-0": d.disabled
|
|
1243
1243
|
}]),
|
|
1244
1244
|
onClick: h[3] || (h[3] = (A) => o.value = d.disabled ? o.value : d.max)
|
|
1245
|
-
}, q(v(
|
|
1245
|
+
}, q(v(n)(d.max, Number.isInteger(d.max) ? v(ue).INTEGER : v(ue).DECIMAL)), 3),
|
|
1246
1246
|
b("div", Gt, [
|
|
1247
1247
|
b("div", {
|
|
1248
1248
|
class: "cl-bg-white cl-border cl-border-transparent cl-cursor-pointer cl-float-right cl-p-1.5 cl-px-2 cl-rounded-full cl-shadow cl-text-xs hover:cl-border-grey-1",
|
|
@@ -1252,7 +1252,7 @@ const Bt = [
|
|
|
1252
1252
|
])
|
|
1253
1253
|
])
|
|
1254
1254
|
])
|
|
1255
|
-
], 16)) : (
|
|
1255
|
+
], 16)) : (p(), y("div", Zt, q(v(c)("slider.invalidProps")), 1));
|
|
1256
1256
|
}
|
|
1257
1257
|
});
|
|
1258
1258
|
const Qt = /* @__PURE__ */ ke(Kt, [["__scopeId", "data-v-470989ac"]]);
|
|
@@ -1326,10 +1326,10 @@ const Jt = { class: "cl-flex cl-justify-between" }, Xt = { class: "cl-w-full" },
|
|
|
1326
1326
|
}, ta = {
|
|
1327
1327
|
key: 0,
|
|
1328
1328
|
class: "cl-relative"
|
|
1329
|
-
}, aa = ["type", "disabled", "min", "max", "minlength", "maxlength", "step", "placeholder", "accept", "name", "autocomplete", "onBlur"], oa = { key: 0 },
|
|
1329
|
+
}, aa = ["type", "disabled", "min", "max", "minlength", "maxlength", "step", "placeholder", "accept", "name", "autocomplete", "onBlur"], oa = { key: 0 }, na = {
|
|
1330
1330
|
key: 2,
|
|
1331
1331
|
class: "cl-max-h-[2.75rem] cl-pb-0.5"
|
|
1332
|
-
},
|
|
1332
|
+
}, ra = {
|
|
1333
1333
|
key: 0,
|
|
1334
1334
|
class: "cl-bg-primary-lighter cl-px-2 cl-rounded-md cl-text-center cl-text-secondary-light cl-text-xs cl-w-auto cl-whitespace-pre-line"
|
|
1335
1335
|
}, sa = {
|
|
@@ -1370,9 +1370,9 @@ const Jt = { class: "cl-flex cl-justify-between" }, Xt = { class: "cl-w-full" },
|
|
|
1370
1370
|
},
|
|
1371
1371
|
emits: ["update:model-value", "click", "focus", "input", "change", "validated"],
|
|
1372
1372
|
setup(a, { expose: e, emit: l }) {
|
|
1373
|
-
const t = a,
|
|
1373
|
+
const t = a, n = I(null), c = I(!1), r = I(!1), o = R(D), s = R(() => t.placeholderText.trim() !== "" ? t.placeholderText : t.label), i = I(0), m = R({
|
|
1374
1374
|
get: () => t.modelValue,
|
|
1375
|
-
set: (g) =>
|
|
1375
|
+
set: (g) => f(g, !1)
|
|
1376
1376
|
}), k = R({
|
|
1377
1377
|
get: () => t.modelValue,
|
|
1378
1378
|
set: (g) => u(g)
|
|
@@ -1387,7 +1387,7 @@ const Jt = { class: "cl-flex cl-justify-between" }, Xt = { class: "cl-w-full" },
|
|
|
1387
1387
|
async function u(g) {
|
|
1388
1388
|
t.validateOn === "input" && await O(g), l("update:model-value", g);
|
|
1389
1389
|
}
|
|
1390
|
-
async function
|
|
1390
|
+
async function f(g, F) {
|
|
1391
1391
|
t.onInputFunction !== void 0 && (g = t.onInputFunction(g)), t.validateOn === "change" && (ae.value = !1), (F || t.validateOn === "input") && await O(g), l("update:model-value", g);
|
|
1392
1392
|
}
|
|
1393
1393
|
function O(g) {
|
|
@@ -1414,28 +1414,28 @@ const Jt = { class: "cl-flex cl-justify-between" }, Xt = { class: "cl-w-full" },
|
|
|
1414
1414
|
De(t.inputType) ? (g.preventDefault(), l("click", g)) : t.inputType === "checkbox" && l("click", g);
|
|
1415
1415
|
}
|
|
1416
1416
|
function z(g) {
|
|
1417
|
-
if (
|
|
1418
|
-
|
|
1417
|
+
if (n.value) {
|
|
1418
|
+
n.value.stepUp(), n.value.focus(), f(n.value.valueAsNumber, !1);
|
|
1419
1419
|
const F = {
|
|
1420
|
-
target:
|
|
1420
|
+
target: n.value
|
|
1421
1421
|
};
|
|
1422
|
-
l("input", F,
|
|
1422
|
+
l("input", F, n.value.valueAsNumber), l("change", g, n.value.valueAsNumber);
|
|
1423
1423
|
}
|
|
1424
1424
|
}
|
|
1425
1425
|
function T(g) {
|
|
1426
|
-
if (
|
|
1427
|
-
|
|
1426
|
+
if (n.value) {
|
|
1427
|
+
n.value.stepDown(), n.value.focus(), f(n.value.valueAsNumber, !1);
|
|
1428
1428
|
const F = {
|
|
1429
|
-
target:
|
|
1429
|
+
target: n.value
|
|
1430
1430
|
};
|
|
1431
|
-
l("input", F,
|
|
1431
|
+
l("input", F, n.value.valueAsNumber), l("change", g, n.value.valueAsNumber);
|
|
1432
1432
|
}
|
|
1433
1433
|
}
|
|
1434
1434
|
function w(g) {
|
|
1435
1435
|
c.value = g;
|
|
1436
1436
|
}
|
|
1437
1437
|
async function E() {
|
|
1438
|
-
|
|
1438
|
+
r.value = !0, w(!1), t.validateOn === "change" && await O(m.value);
|
|
1439
1439
|
}
|
|
1440
1440
|
function L() {
|
|
1441
1441
|
i.value++;
|
|
@@ -1447,7 +1447,7 @@ const Jt = { class: "cl-flex cl-justify-between" }, Xt = { class: "cl-w-full" },
|
|
|
1447
1447
|
var K;
|
|
1448
1448
|
let g = !0;
|
|
1449
1449
|
const F = o.value;
|
|
1450
|
-
return c.value ? g = F :
|
|
1450
|
+
return c.value ? g = F : r.value && ((K = m.value) == null ? void 0 : K.toString().trim()) === "" && t.requiredText.trim() !== "" && (g = !1), !t.hideRequiredAsterisk && g;
|
|
1451
1451
|
}
|
|
1452
1452
|
async function J(g) {
|
|
1453
1453
|
const F = ul(g, t.inputType);
|
|
@@ -1457,24 +1457,24 @@ const Jt = { class: "cl-flex cl-justify-between" }, Xt = { class: "cl-w-full" },
|
|
|
1457
1457
|
await E(), L();
|
|
1458
1458
|
}
|
|
1459
1459
|
return Ze(() => {
|
|
1460
|
-
t.validateImmediately &&
|
|
1461
|
-
}), oe(() => t.isRequired, () =>
|
|
1460
|
+
t.validateImmediately && f(t.modelValue, !0);
|
|
1461
|
+
}), oe(() => t.isRequired, () => f(t.modelValue, !0)), oe(() => t.externalErrors, async () => {
|
|
1462
1462
|
await O(m.value), l("update:model-value", m.value);
|
|
1463
1463
|
}), oe(
|
|
1464
1464
|
() => t.modelValue,
|
|
1465
1465
|
() => {
|
|
1466
|
-
t.validateImmediately ?
|
|
1466
|
+
t.validateImmediately ? f(t.modelValue, !0) : f(t.modelValue, !1);
|
|
1467
1467
|
}
|
|
1468
1468
|
), e({
|
|
1469
1469
|
focus() {
|
|
1470
1470
|
var g;
|
|
1471
|
-
(g =
|
|
1471
|
+
(g = n.value) == null || g.focus();
|
|
1472
1472
|
},
|
|
1473
1473
|
blur() {
|
|
1474
1474
|
var g;
|
|
1475
|
-
(g =
|
|
1475
|
+
(g = n.value) == null || g.blur();
|
|
1476
1476
|
}
|
|
1477
|
-
}), (g, F) => (
|
|
1477
|
+
}), (g, F) => (p(), y("div", fe({ ...g.$attrs, id: void 0 }, {
|
|
1478
1478
|
key: i.value,
|
|
1479
1479
|
class: "cl-align-top cl-border-none cl-inline-block cl-text-left"
|
|
1480
1480
|
}), [
|
|
@@ -1488,13 +1488,13 @@ const Jt = { class: "cl-flex cl-justify-between" }, Xt = { class: "cl-w-full" },
|
|
|
1488
1488
|
[te, g.showLabel && g.label !== ""]
|
|
1489
1489
|
])
|
|
1490
1490
|
]),
|
|
1491
|
-
g.isRequired && o.value ? (
|
|
1492
|
-
g.isRequired && !o.value && g.requiredText.length ? (
|
|
1491
|
+
g.isRequired && o.value ? (p(), y("label", ea, " * ")) : j("", !0),
|
|
1492
|
+
g.isRequired && !o.value && g.requiredText.length ? (p(), y("label", la, q(g.requiredText), 1)) : j("", !0)
|
|
1493
1493
|
]),
|
|
1494
|
-
g.inputType !== "range" && !v(cl)(g.inputType) ? (
|
|
1495
|
-
le(b("input",
|
|
1494
|
+
g.inputType !== "range" && !v(cl)(g.inputType) ? (p(), y("div", ta, [
|
|
1495
|
+
le(b("input", fe({
|
|
1496
1496
|
ref_key: "inputElement",
|
|
1497
|
-
ref:
|
|
1497
|
+
ref: n,
|
|
1498
1498
|
"onUpdate:modelValue": F[0] || (F[0] = (K) => m.value = K)
|
|
1499
1499
|
}, g.$attrs, {
|
|
1500
1500
|
class: ["!cl-mb-1 cl-block cl-border cl-duration-300 cl-h-full cl-transition cl-w-full focus:cl-outline-none", {
|
|
@@ -1521,7 +1521,7 @@ const Jt = { class: "cl-flex cl-justify-between" }, Xt = { class: "cl-w-full" },
|
|
|
1521
1521
|
autocomplete: g.autocomplete,
|
|
1522
1522
|
onClick: F[1] || (F[1] = (K) => _(K)),
|
|
1523
1523
|
onFocus: F[2] || (F[2] = (K) => l("focus")),
|
|
1524
|
-
onBlur:
|
|
1524
|
+
onBlur: ne(W, ["self"]),
|
|
1525
1525
|
onMousewheelPassive: C,
|
|
1526
1526
|
onInput: F[3] || (F[3] = (K) => {
|
|
1527
1527
|
l("input", K, v(ul)(K, g.inputType));
|
|
@@ -1535,19 +1535,19 @@ const Jt = { class: "cl-flex cl-justify-between" }, Xt = { class: "cl-w-full" },
|
|
|
1535
1535
|
duration: 300
|
|
1536
1536
|
}, {
|
|
1537
1537
|
default: Y(() => [
|
|
1538
|
-
g.inputType === "number" && !g.disabled && g.showArrows ? le((
|
|
1538
|
+
g.inputType === "number" && !g.disabled && g.showArrows ? le((p(), y("div", oa, [
|
|
1539
1539
|
S(v(x), {
|
|
1540
1540
|
icon: "ph:caret-up-bold",
|
|
1541
1541
|
class: "cl-absolute cl-bg-link-default cl-right-1 cl-rounded-full cl-text-sm cl-text-white cl-top-1 hover:cl-bg-link-light hover:cl-cursor-pointer",
|
|
1542
1542
|
onClick: z,
|
|
1543
|
-
onMousedown: F[4] || (F[4] =
|
|
1543
|
+
onMousedown: F[4] || (F[4] = ne(() => {
|
|
1544
1544
|
}, ["prevent"]))
|
|
1545
1545
|
}),
|
|
1546
1546
|
S(v(x), {
|
|
1547
1547
|
icon: "ph:caret-down-bold",
|
|
1548
1548
|
class: "cl-absolute cl-bg-link-default cl-bottom-2 cl-right-1 cl-rounded-full cl-text-sm cl-text-white hover:cl-bg-link-light hover:cl-cursor-pointer",
|
|
1549
1549
|
onClick: T,
|
|
1550
|
-
onMousedown: F[5] || (F[5] =
|
|
1550
|
+
onMousedown: F[5] || (F[5] = ne(() => {
|
|
1551
1551
|
}, ["prevent"]))
|
|
1552
1552
|
})
|
|
1553
1553
|
], 512)), [
|
|
@@ -1556,9 +1556,9 @@ const Jt = { class: "cl-flex cl-justify-between" }, Xt = { class: "cl-w-full" },
|
|
|
1556
1556
|
]),
|
|
1557
1557
|
_: 1
|
|
1558
1558
|
})
|
|
1559
|
-
])) : v(cl)(g.inputType) ? (
|
|
1559
|
+
])) : v(cl)(g.inputType) ? (p(), G(v(Pt), fe({ key: 1 }, g.$attrs, {
|
|
1560
1560
|
ref_key: "inputElement",
|
|
1561
|
-
ref:
|
|
1561
|
+
ref: n,
|
|
1562
1562
|
date: k.value,
|
|
1563
1563
|
"onUpdate:date": F[6] || (F[6] = (K) => k.value = K),
|
|
1564
1564
|
class: ["cl-block cl-duration-300 cl-h-fit cl-mb-1 cl-rounded-lg cl-text-sm cl-transition cl-w-full focus:cl-outline-none", {
|
|
@@ -1575,12 +1575,12 @@ const Jt = { class: "cl-flex cl-justify-between" }, Xt = { class: "cl-w-full" },
|
|
|
1575
1575
|
placeholder: s.value,
|
|
1576
1576
|
"initial-date": g.initialDate,
|
|
1577
1577
|
"quick-date-scope": g.quickDateScope,
|
|
1578
|
-
onBlur:
|
|
1578
|
+
onBlur: ne(E, ["self"]),
|
|
1579
1579
|
onFocus: F[7] || (F[7] = (K) => l("focus"))
|
|
1580
|
-
}), null, 16, ["date", "class", "disabled", "required", "type", "time-zone", "min", "max", "placeholder", "initial-date", "quick-date-scope", "onBlur"])) : g.inputType === "range" && (typeof m.value == "number" || typeof m.value == "string") ? (
|
|
1580
|
+
}), null, 16, ["date", "class", "disabled", "required", "type", "time-zone", "min", "max", "placeholder", "initial-date", "quick-date-scope", "onBlur"])) : g.inputType === "range" && (typeof m.value == "number" || typeof m.value == "string") ? (p(), y("div", na, [
|
|
1581
1581
|
S(v(Qt), {
|
|
1582
1582
|
ref_key: "inputElement",
|
|
1583
|
-
ref:
|
|
1583
|
+
ref: n,
|
|
1584
1584
|
value: m.value,
|
|
1585
1585
|
"onUpdate:value": F[8] || (F[8] = (K) => m.value = K),
|
|
1586
1586
|
min: A.value ?? 0,
|
|
@@ -1589,13 +1589,13 @@ const Jt = { class: "cl-flex cl-justify-between" }, Xt = { class: "cl-w-full" },
|
|
|
1589
1589
|
placeholder: s.value,
|
|
1590
1590
|
"enforce-step": !0,
|
|
1591
1591
|
disabled: g.disabled,
|
|
1592
|
-
onBlur:
|
|
1592
|
+
onBlur: ne(E, ["self"]),
|
|
1593
1593
|
onFocus: F[9] || (F[9] = (K) => l("focus"))
|
|
1594
1594
|
}, null, 8, ["value", "min", "max", "step", "placeholder", "disabled", "onBlur"])
|
|
1595
1595
|
])) : j("", !0)
|
|
1596
1596
|
], 32),
|
|
1597
|
-
Z.value && U.value && ae.value ? (
|
|
1598
|
-
!Z.value && B.value.length > 0 && g.showValidationMessages && ae.value ? (
|
|
1597
|
+
Z.value && U.value && ae.value ? (p(), y("div", ra, q(U.value), 1)) : j("", !0),
|
|
1598
|
+
!Z.value && B.value.length > 0 && g.showValidationMessages && ae.value ? (p(), y("div", sa, q(B.value), 1)) : j("", !0)
|
|
1599
1599
|
], 16));
|
|
1600
1600
|
}
|
|
1601
1601
|
});
|
|
@@ -1613,42 +1613,42 @@ var Nl = ["input:not([inert])", "select:not([inert])", "textarea:not([inert])",
|
|
|
1613
1613
|
}, xe = function a(e, l) {
|
|
1614
1614
|
var t;
|
|
1615
1615
|
l === void 0 && (l = !0);
|
|
1616
|
-
var
|
|
1617
|
-
return
|
|
1616
|
+
var n = e == null || (t = e.getAttribute) === null || t === void 0 ? void 0 : t.call(e, "inert"), c = n === "" || n === "true", r = c || l && e && a(e.parentNode);
|
|
1617
|
+
return r;
|
|
1618
1618
|
}, ca = function(e) {
|
|
1619
1619
|
var l, t = e == null || (l = e.getAttribute) === null || l === void 0 ? void 0 : l.call(e, "contenteditable");
|
|
1620
1620
|
return t === "" || t === "true";
|
|
1621
1621
|
}, Al = function(e, l, t) {
|
|
1622
1622
|
if (xe(e))
|
|
1623
1623
|
return [];
|
|
1624
|
-
var
|
|
1625
|
-
return l && Se.call(e, ze) &&
|
|
1624
|
+
var n = Array.prototype.slice.apply(e.querySelectorAll(ze));
|
|
1625
|
+
return l && Se.call(e, ze) && n.unshift(e), n = n.filter(t), n;
|
|
1626
1626
|
}, ql = function a(e, l, t) {
|
|
1627
|
-
for (var
|
|
1628
|
-
var
|
|
1629
|
-
if (!xe(
|
|
1630
|
-
if (
|
|
1631
|
-
var o =
|
|
1632
|
-
t.flatten ?
|
|
1633
|
-
scopeParent:
|
|
1627
|
+
for (var n = [], c = Array.from(e); c.length; ) {
|
|
1628
|
+
var r = c.shift();
|
|
1629
|
+
if (!xe(r, !1))
|
|
1630
|
+
if (r.tagName === "SLOT") {
|
|
1631
|
+
var o = r.assignedElements(), s = o.length ? o : r.children, i = a(s, !0, t);
|
|
1632
|
+
t.flatten ? n.push.apply(n, i) : n.push({
|
|
1633
|
+
scopeParent: r,
|
|
1634
1634
|
candidates: i
|
|
1635
1635
|
});
|
|
1636
1636
|
} else {
|
|
1637
|
-
var m = Se.call(
|
|
1638
|
-
m && t.filter(
|
|
1639
|
-
var k =
|
|
1640
|
-
typeof t.getShadowRoot == "function" && t.getShadowRoot(
|
|
1637
|
+
var m = Se.call(r, ze);
|
|
1638
|
+
m && t.filter(r) && (l || !e.includes(r)) && n.push(r);
|
|
1639
|
+
var k = r.shadowRoot || // check for an undisclosed shadow
|
|
1640
|
+
typeof t.getShadowRoot == "function" && t.getShadowRoot(r), d = !xe(k, !1) && (!t.shadowRootFilter || t.shadowRootFilter(r));
|
|
1641
1641
|
if (k && d) {
|
|
1642
|
-
var h = a(k === !0 ?
|
|
1643
|
-
t.flatten ?
|
|
1644
|
-
scopeParent:
|
|
1642
|
+
var h = a(k === !0 ? r.children : k.children, !0, t);
|
|
1643
|
+
t.flatten ? n.push.apply(n, h) : n.push({
|
|
1644
|
+
scopeParent: r,
|
|
1645
1645
|
candidates: h
|
|
1646
1646
|
});
|
|
1647
1647
|
} else
|
|
1648
|
-
c.unshift.apply(c,
|
|
1648
|
+
c.unshift.apply(c, r.children);
|
|
1649
1649
|
}
|
|
1650
1650
|
}
|
|
1651
|
-
return
|
|
1651
|
+
return n;
|
|
1652
1652
|
}, Rl = function(e) {
|
|
1653
1653
|
return !isNaN(parseInt(e.getAttribute("tabindex"), 10));
|
|
1654
1654
|
}, Oe = function(e) {
|
|
@@ -1678,46 +1678,46 @@ var Nl = ["input:not([inert])", "select:not([inert])", "textarea:not([inert])",
|
|
|
1678
1678
|
return !0;
|
|
1679
1679
|
var l = e.form || _e(e), t = function(o) {
|
|
1680
1680
|
return l.querySelectorAll('input[type="radio"][name="' + o + '"]');
|
|
1681
|
-
},
|
|
1681
|
+
}, n;
|
|
1682
1682
|
if (typeof window < "u" && typeof window.CSS < "u" && typeof window.CSS.escape == "function")
|
|
1683
|
-
|
|
1683
|
+
n = t(window.CSS.escape(e.name));
|
|
1684
1684
|
else
|
|
1685
1685
|
try {
|
|
1686
|
-
|
|
1687
|
-
} catch (
|
|
1688
|
-
return console.error("Looks like you have a radio button with a name attribute containing invalid CSS selector characters and need the CSS.escape polyfill: %s",
|
|
1686
|
+
n = t(e.name);
|
|
1687
|
+
} catch (r) {
|
|
1688
|
+
return console.error("Looks like you have a radio button with a name attribute containing invalid CSS selector characters and need the CSS.escape polyfill: %s", r.message), !1;
|
|
1689
1689
|
}
|
|
1690
|
-
var c = ma(
|
|
1690
|
+
var c = ma(n, e.form);
|
|
1691
1691
|
return !c || c === e;
|
|
1692
1692
|
}, ga = function(e) {
|
|
1693
1693
|
return Dl(e) && e.type === "radio";
|
|
1694
1694
|
}, ba = function(e) {
|
|
1695
1695
|
return ga(e) && !va(e);
|
|
1696
1696
|
}, ha = function(e) {
|
|
1697
|
-
var l, t = e && _e(e),
|
|
1697
|
+
var l, t = e && _e(e), n = (l = t) === null || l === void 0 ? void 0 : l.host, c = !1;
|
|
1698
1698
|
if (t && t !== e) {
|
|
1699
|
-
var
|
|
1700
|
-
for (c = !!((
|
|
1699
|
+
var r, o, s;
|
|
1700
|
+
for (c = !!((r = n) !== null && r !== void 0 && (o = r.ownerDocument) !== null && o !== void 0 && o.contains(n) || e != null && (s = e.ownerDocument) !== null && s !== void 0 && s.contains(e)); !c && n; ) {
|
|
1701
1701
|
var i, m, k;
|
|
1702
|
-
t = _e(
|
|
1702
|
+
t = _e(n), n = (i = t) === null || i === void 0 ? void 0 : i.host, c = !!((m = n) !== null && m !== void 0 && (k = m.ownerDocument) !== null && k !== void 0 && k.contains(n));
|
|
1703
1703
|
}
|
|
1704
1704
|
}
|
|
1705
1705
|
return c;
|
|
1706
1706
|
}, dl = function(e) {
|
|
1707
|
-
var l = e.getBoundingClientRect(), t = l.width,
|
|
1708
|
-
return t === 0 &&
|
|
1707
|
+
var l = e.getBoundingClientRect(), t = l.width, n = l.height;
|
|
1708
|
+
return t === 0 && n === 0;
|
|
1709
1709
|
}, ya = function(e, l) {
|
|
1710
|
-
var t = l.displayCheck,
|
|
1710
|
+
var t = l.displayCheck, n = l.getShadowRoot;
|
|
1711
1711
|
if (getComputedStyle(e).visibility === "hidden")
|
|
1712
1712
|
return !0;
|
|
1713
|
-
var c = Se.call(e, "details>summary:first-of-type"),
|
|
1714
|
-
if (Se.call(
|
|
1713
|
+
var c = Se.call(e, "details>summary:first-of-type"), r = c ? e.parentElement : e;
|
|
1714
|
+
if (Se.call(r, "details:not([open]) *"))
|
|
1715
1715
|
return !0;
|
|
1716
1716
|
if (!t || t === "full" || t === "legacy-full") {
|
|
1717
|
-
if (typeof
|
|
1717
|
+
if (typeof n == "function") {
|
|
1718
1718
|
for (var o = e; e; ) {
|
|
1719
1719
|
var s = e.parentElement, i = _e(e);
|
|
1720
|
-
if (s && !s.shadowRoot &&
|
|
1720
|
+
if (s && !s.shadowRoot && n(s) === !0)
|
|
1721
1721
|
return dl(e);
|
|
1722
1722
|
e.assignedSlot ? e = e.assignedSlot : !s && i !== e.ownerDocument ? e = i.host : e = s;
|
|
1723
1723
|
}
|
|
@@ -1735,9 +1735,9 @@ var Nl = ["input:not([inert])", "select:not([inert])", "textarea:not([inert])",
|
|
|
1735
1735
|
for (var l = e.parentElement; l; ) {
|
|
1736
1736
|
if (l.tagName === "FIELDSET" && l.disabled) {
|
|
1737
1737
|
for (var t = 0; t < l.children.length; t++) {
|
|
1738
|
-
var
|
|
1739
|
-
if (
|
|
1740
|
-
return Se.call(l, "fieldset[disabled] *") ? !0 : !
|
|
1738
|
+
var n = l.children.item(t);
|
|
1739
|
+
if (n.tagName === "LEGEND")
|
|
1740
|
+
return Se.call(l, "fieldset[disabled] *") ? !0 : !n.contains(e);
|
|
1741
1741
|
}
|
|
1742
1742
|
return !0;
|
|
1743
1743
|
}
|
|
@@ -1757,17 +1757,17 @@ var Nl = ["input:not([inert])", "select:not([inert])", "textarea:not([inert])",
|
|
|
1757
1757
|
return !!(isNaN(l) || l >= 0);
|
|
1758
1758
|
}, Ta = function a(e) {
|
|
1759
1759
|
var l = [], t = [];
|
|
1760
|
-
return e.forEach(function(
|
|
1761
|
-
var
|
|
1762
|
-
s === 0 ?
|
|
1760
|
+
return e.forEach(function(n, c) {
|
|
1761
|
+
var r = !!n.scopeParent, o = r ? n.scopeParent : n, s = ua(o, r), i = r ? a(n.candidates) : o;
|
|
1762
|
+
s === 0 ? r ? l.push.apply(l, i) : l.push(o) : t.push({
|
|
1763
1763
|
documentOrder: c,
|
|
1764
1764
|
tabIndex: s,
|
|
1765
|
-
item:
|
|
1766
|
-
isScope:
|
|
1765
|
+
item: n,
|
|
1766
|
+
isScope: r,
|
|
1767
1767
|
content: i
|
|
1768
1768
|
});
|
|
1769
|
-
}), t.sort(da).reduce(function(
|
|
1770
|
-
return c.isScope ?
|
|
1769
|
+
}), t.sort(da).reduce(function(n, c) {
|
|
1770
|
+
return c.isScope ? n.push.apply(n, c.content) : n.push(c.content), n;
|
|
1771
1771
|
}, []).concat(l);
|
|
1772
1772
|
}, $a = function(e, l) {
|
|
1773
1773
|
l = l || {};
|
|
@@ -1803,8 +1803,8 @@ function fl(a, e) {
|
|
|
1803
1803
|
var l = Object.keys(a);
|
|
1804
1804
|
if (Object.getOwnPropertySymbols) {
|
|
1805
1805
|
var t = Object.getOwnPropertySymbols(a);
|
|
1806
|
-
e && (t = t.filter(function(
|
|
1807
|
-
return Object.getOwnPropertyDescriptor(a,
|
|
1806
|
+
e && (t = t.filter(function(n) {
|
|
1807
|
+
return Object.getOwnPropertyDescriptor(a, n).enumerable;
|
|
1808
1808
|
})), l.push.apply(l, t);
|
|
1809
1809
|
}
|
|
1810
1810
|
return l;
|
|
@@ -1850,8 +1850,8 @@ var ml = {
|
|
|
1850
1850
|
var t = e[e.length - 1];
|
|
1851
1851
|
t !== l && t.pause();
|
|
1852
1852
|
}
|
|
1853
|
-
var
|
|
1854
|
-
|
|
1853
|
+
var n = e.indexOf(l);
|
|
1854
|
+
n === -1 || e.splice(n, 1), e.push(l);
|
|
1855
1855
|
},
|
|
1856
1856
|
deactivateTrap: function(e, l) {
|
|
1857
1857
|
var t = e.indexOf(l);
|
|
@@ -1871,23 +1871,23 @@ var ml = {
|
|
|
1871
1871
|
return setTimeout(e, 0);
|
|
1872
1872
|
}, gl = function(e, l) {
|
|
1873
1873
|
var t = -1;
|
|
1874
|
-
return e.every(function(
|
|
1875
|
-
return l(
|
|
1874
|
+
return e.every(function(n, c) {
|
|
1875
|
+
return l(n) ? (t = c, !1) : !0;
|
|
1876
1876
|
}), t;
|
|
1877
1877
|
}, qe = function(e) {
|
|
1878
|
-
for (var l = arguments.length, t = new Array(l > 1 ? l - 1 : 0),
|
|
1879
|
-
t[
|
|
1878
|
+
for (var l = arguments.length, t = new Array(l > 1 ? l - 1 : 0), n = 1; n < l; n++)
|
|
1879
|
+
t[n - 1] = arguments[n];
|
|
1880
1880
|
return typeof e == "function" ? e.apply(void 0, t) : e;
|
|
1881
1881
|
}, Me = function(e) {
|
|
1882
1882
|
return e.target.shadowRoot && typeof e.composedPath == "function" ? e.composedPath()[0] : e.target;
|
|
1883
1883
|
}, Ia = [], ja = function(e, l) {
|
|
1884
|
-
var t = (l == null ? void 0 : l.document) || document,
|
|
1884
|
+
var t = (l == null ? void 0 : l.document) || document, n = (l == null ? void 0 : l.trapStack) || Ia, c = pl({
|
|
1885
1885
|
returnFocusOnDeactivate: !0,
|
|
1886
1886
|
escapeDeactivates: !0,
|
|
1887
1887
|
delayInitialFocus: !0,
|
|
1888
1888
|
isKeyForward: Ra,
|
|
1889
1889
|
isKeyBackward: Da
|
|
1890
|
-
}, l),
|
|
1890
|
+
}, l), r = {
|
|
1891
1891
|
// containers given to createFocusTrap()
|
|
1892
1892
|
// @type {Array<HTMLElement>}
|
|
1893
1893
|
containers: [],
|
|
@@ -1927,7 +1927,7 @@ var ml = {
|
|
|
1927
1927
|
return T && T[w] !== void 0 ? T[w] : c[E || w];
|
|
1928
1928
|
}, i = function(T, w) {
|
|
1929
1929
|
var E = typeof (w == null ? void 0 : w.composedPath) == "function" ? w.composedPath() : void 0;
|
|
1930
|
-
return
|
|
1930
|
+
return r.containerGroups.findIndex(function(L) {
|
|
1931
1931
|
var C = L.container, D = L.tabbableNodes;
|
|
1932
1932
|
return C.contains(T) || // fall back to explicit tabbable search which will take into consideration any
|
|
1933
1933
|
// web components if the `tabbableOptions.getShadowRoot` option was used for
|
|
@@ -1961,14 +1961,14 @@ var ml = {
|
|
|
1961
1961
|
if (i(t.activeElement) >= 0)
|
|
1962
1962
|
T = t.activeElement;
|
|
1963
1963
|
else {
|
|
1964
|
-
var w =
|
|
1964
|
+
var w = r.tabbableGroups[0], E = w && w.firstTabbableNode;
|
|
1965
1965
|
T = E || m("fallbackFocus");
|
|
1966
1966
|
}
|
|
1967
1967
|
if (!T)
|
|
1968
1968
|
throw new Error("Your focus-trap needs to have at least one focusable element");
|
|
1969
1969
|
return T;
|
|
1970
1970
|
}, d = function() {
|
|
1971
|
-
if (
|
|
1971
|
+
if (r.containerGroups = r.containers.map(function(T) {
|
|
1972
1972
|
var w = $a(T, c.tabbableOptions), E = Ca(T, c.tabbableOptions), L = w.length > 0 ? w[0] : void 0, C = w.length > 0 ? w[w.length - 1] : void 0, D = E.find(function(g) {
|
|
1973
1973
|
return Ne(g);
|
|
1974
1974
|
}), J = E.slice().reverse().find(function(g) {
|
|
@@ -2014,13 +2014,13 @@ var ml = {
|
|
|
2014
2014
|
}) : w[pe + (K ? 1 : -1)];
|
|
2015
2015
|
}
|
|
2016
2016
|
};
|
|
2017
|
-
}),
|
|
2017
|
+
}), r.tabbableGroups = r.containerGroups.filter(function(T) {
|
|
2018
2018
|
return T.tabbableNodes.length > 0;
|
|
2019
|
-
}),
|
|
2019
|
+
}), r.tabbableGroups.length <= 0 && !m("fallbackFocus"))
|
|
2020
2020
|
throw new Error("Your focus-trap must have at least one container with at least one tabbable node in it at all times");
|
|
2021
|
-
if (
|
|
2021
|
+
if (r.containerGroups.find(function(T) {
|
|
2022
2022
|
return T.posTabIndexesFound;
|
|
2023
|
-
}) &&
|
|
2023
|
+
}) && r.containerGroups.length > 1)
|
|
2024
2024
|
throw new Error("At least one node with a positive tabindex was found in one of your focus-trap's multiple containers. Positive tabindexes are only supported in single-container focus-traps.");
|
|
2025
2025
|
}, h = function z(T) {
|
|
2026
2026
|
if (T !== !1 && T !== t.activeElement) {
|
|
@@ -2030,7 +2030,7 @@ var ml = {
|
|
|
2030
2030
|
}
|
|
2031
2031
|
T.focus({
|
|
2032
2032
|
preventScroll: !!c.preventScroll
|
|
2033
|
-
}),
|
|
2033
|
+
}), r.mostRecentlyFocusedNode = T, Aa(T) && T.select();
|
|
2034
2034
|
}
|
|
2035
2035
|
}, A = function(T) {
|
|
2036
2036
|
var w = m("setReturnFocus", T);
|
|
@@ -2039,27 +2039,27 @@ var ml = {
|
|
|
2039
2039
|
var w = T.target, E = T.event, L = T.isBackward, C = L === void 0 ? !1 : L;
|
|
2040
2040
|
w = w || Me(E), d();
|
|
2041
2041
|
var D = null;
|
|
2042
|
-
if (
|
|
2043
|
-
var J = i(w, E), W = J >= 0 ?
|
|
2042
|
+
if (r.tabbableGroups.length > 0) {
|
|
2043
|
+
var J = i(w, E), W = J >= 0 ? r.containerGroups[J] : void 0;
|
|
2044
2044
|
if (J < 0)
|
|
2045
|
-
C ? D =
|
|
2045
|
+
C ? D = r.tabbableGroups[r.tabbableGroups.length - 1].lastTabbableNode : D = r.tabbableGroups[0].firstTabbableNode;
|
|
2046
2046
|
else if (C) {
|
|
2047
|
-
var g = gl(
|
|
2047
|
+
var g = gl(r.tabbableGroups, function($e) {
|
|
2048
2048
|
var Qe = $e.firstTabbableNode;
|
|
2049
2049
|
return w === Qe;
|
|
2050
2050
|
});
|
|
2051
2051
|
if (g < 0 && (W.container === w || Je(w, c.tabbableOptions) && !Ne(w, c.tabbableOptions) && !W.nextTabbableNode(w, !1)) && (g = J), g >= 0) {
|
|
2052
|
-
var F = g === 0 ?
|
|
2052
|
+
var F = g === 0 ? r.tabbableGroups.length - 1 : g - 1, K = r.tabbableGroups[F];
|
|
2053
2053
|
D = Oe(w) >= 0 ? K.lastTabbableNode : K.lastDomTabbableNode;
|
|
2054
2054
|
} else
|
|
2055
2055
|
je(E) || (D = W.nextTabbableNode(w, !1));
|
|
2056
2056
|
} else {
|
|
2057
|
-
var pe = gl(
|
|
2057
|
+
var pe = gl(r.tabbableGroups, function($e) {
|
|
2058
2058
|
var Qe = $e.lastTabbableNode;
|
|
2059
2059
|
return w === Qe;
|
|
2060
2060
|
});
|
|
2061
2061
|
if (pe < 0 && (W.container === w || Je(w, c.tabbableOptions) && !Ne(w, c.tabbableOptions) && !W.nextTabbableNode(w)) && (pe = J), pe >= 0) {
|
|
2062
|
-
var Ce = pe ===
|
|
2062
|
+
var Ce = pe === r.tabbableGroups.length - 1 ? 0 : pe + 1, Ae = r.tabbableGroups[Ce];
|
|
2063
2063
|
D = Oe(w) >= 0 ? Ae.firstTabbableNode : Ae.firstDomTabbableNode;
|
|
2064
2064
|
} else
|
|
2065
2065
|
je(E) || (D = W.nextTabbableNode(w));
|
|
@@ -2087,21 +2087,21 @@ var ml = {
|
|
|
2087
2087
|
}, Z = function(T) {
|
|
2088
2088
|
var w = Me(T), E = i(w, T) >= 0;
|
|
2089
2089
|
if (E || w instanceof Document)
|
|
2090
|
-
E && (
|
|
2090
|
+
E && (r.mostRecentlyFocusedNode = w);
|
|
2091
2091
|
else {
|
|
2092
2092
|
T.stopImmediatePropagation();
|
|
2093
2093
|
var L, C = !0;
|
|
2094
|
-
if (
|
|
2095
|
-
if (Oe(
|
|
2096
|
-
var D = i(
|
|
2094
|
+
if (r.mostRecentlyFocusedNode)
|
|
2095
|
+
if (Oe(r.mostRecentlyFocusedNode) > 0) {
|
|
2096
|
+
var D = i(r.mostRecentlyFocusedNode), J = r.containerGroups[D].tabbableNodes;
|
|
2097
2097
|
if (J.length > 0) {
|
|
2098
2098
|
var W = J.findIndex(function(g) {
|
|
2099
|
-
return g ===
|
|
2099
|
+
return g === r.mostRecentlyFocusedNode;
|
|
2100
2100
|
});
|
|
2101
|
-
W >= 0 && (c.isKeyForward(
|
|
2101
|
+
W >= 0 && (c.isKeyForward(r.recentNavEvent) ? W + 1 < J.length && (L = J[W + 1], C = !1) : W - 1 >= 0 && (L = J[W - 1], C = !1));
|
|
2102
2102
|
}
|
|
2103
2103
|
} else
|
|
2104
|
-
|
|
2104
|
+
r.containerGroups.some(function(g) {
|
|
2105
2105
|
return g.tabbableNodes.some(function(F) {
|
|
2106
2106
|
return Oe(F) > 0;
|
|
2107
2107
|
});
|
|
@@ -2111,14 +2111,14 @@ var ml = {
|
|
|
2111
2111
|
C && (L = P({
|
|
2112
2112
|
// move FROM the MRU node, not event-related node (which will be the node that is
|
|
2113
2113
|
// outside the trap causing the focus escape we're trying to fix)
|
|
2114
|
-
target:
|
|
2115
|
-
isBackward: c.isKeyBackward(
|
|
2116
|
-
})), h(L ||
|
|
2114
|
+
target: r.mostRecentlyFocusedNode,
|
|
2115
|
+
isBackward: c.isKeyBackward(r.recentNavEvent)
|
|
2116
|
+
})), h(L || r.mostRecentlyFocusedNode || k());
|
|
2117
2117
|
}
|
|
2118
|
-
|
|
2118
|
+
r.recentNavEvent = void 0;
|
|
2119
2119
|
}, ae = function(T) {
|
|
2120
2120
|
var w = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : !1;
|
|
2121
|
-
|
|
2121
|
+
r.recentNavEvent = T;
|
|
2122
2122
|
var E = P({
|
|
2123
2123
|
event: T,
|
|
2124
2124
|
isBackward: w
|
|
@@ -2134,8 +2134,8 @@ var ml = {
|
|
|
2134
2134
|
var w = Me(T);
|
|
2135
2135
|
i(w, T) >= 0 || qe(c.clickOutsideDeactivates, T) || qe(c.allowOutsideClick, T) || (T.preventDefault(), T.stopImmediatePropagation());
|
|
2136
2136
|
}, u = function() {
|
|
2137
|
-
if (
|
|
2138
|
-
return ml.activateTrap(
|
|
2137
|
+
if (r.active)
|
|
2138
|
+
return ml.activateTrap(n, o), r.delayInitialFocusTimer = c.delayInitialFocus ? vl(function() {
|
|
2139
2139
|
h(k());
|
|
2140
2140
|
}) : h(k()), t.addEventListener("focusin", Z, !0), t.addEventListener("mousedown", U, {
|
|
2141
2141
|
capture: !0,
|
|
@@ -2150,19 +2150,19 @@ var ml = {
|
|
|
2150
2150
|
capture: !0,
|
|
2151
2151
|
passive: !1
|
|
2152
2152
|
}), o;
|
|
2153
|
-
},
|
|
2154
|
-
if (
|
|
2153
|
+
}, f = function() {
|
|
2154
|
+
if (r.active)
|
|
2155
2155
|
return t.removeEventListener("focusin", Z, !0), t.removeEventListener("mousedown", U, !0), t.removeEventListener("touchstart", U, !0), t.removeEventListener("click", B, !0), t.removeEventListener("keydown", N, !0), o;
|
|
2156
2156
|
}, O = function(T) {
|
|
2157
2157
|
var w = T.some(function(E) {
|
|
2158
2158
|
var L = Array.from(E.removedNodes);
|
|
2159
2159
|
return L.some(function(C) {
|
|
2160
|
-
return C ===
|
|
2160
|
+
return C === r.mostRecentlyFocusedNode;
|
|
2161
2161
|
});
|
|
2162
2162
|
});
|
|
2163
2163
|
w && h(k());
|
|
2164
2164
|
}, $ = typeof window < "u" && "MutationObserver" in window ? new MutationObserver(O) : void 0, _ = function() {
|
|
2165
|
-
$ && ($.disconnect(),
|
|
2165
|
+
$ && ($.disconnect(), r.active && !r.paused && r.containers.map(function(T) {
|
|
2166
2166
|
$.observe(T, {
|
|
2167
2167
|
subtree: !0,
|
|
2168
2168
|
childList: !0
|
|
@@ -2171,56 +2171,56 @@ var ml = {
|
|
|
2171
2171
|
};
|
|
2172
2172
|
return o = {
|
|
2173
2173
|
get active() {
|
|
2174
|
-
return
|
|
2174
|
+
return r.active;
|
|
2175
2175
|
},
|
|
2176
2176
|
get paused() {
|
|
2177
|
-
return
|
|
2177
|
+
return r.paused;
|
|
2178
2178
|
},
|
|
2179
2179
|
activate: function(T) {
|
|
2180
|
-
if (
|
|
2180
|
+
if (r.active)
|
|
2181
2181
|
return this;
|
|
2182
2182
|
var w = s(T, "onActivate"), E = s(T, "onPostActivate"), L = s(T, "checkCanFocusTrap");
|
|
2183
|
-
L || d(),
|
|
2183
|
+
L || d(), r.active = !0, r.paused = !1, r.nodeFocusedBeforeActivation = t.activeElement, w == null || w();
|
|
2184
2184
|
var C = function() {
|
|
2185
2185
|
L && d(), u(), _(), E == null || E();
|
|
2186
2186
|
};
|
|
2187
|
-
return L ? (L(
|
|
2187
|
+
return L ? (L(r.containers.concat()).then(C, C), this) : (C(), this);
|
|
2188
2188
|
},
|
|
2189
2189
|
deactivate: function(T) {
|
|
2190
|
-
if (!
|
|
2190
|
+
if (!r.active)
|
|
2191
2191
|
return this;
|
|
2192
2192
|
var w = pl({
|
|
2193
2193
|
onDeactivate: c.onDeactivate,
|
|
2194
2194
|
onPostDeactivate: c.onPostDeactivate,
|
|
2195
2195
|
checkCanReturnFocus: c.checkCanReturnFocus
|
|
2196
2196
|
}, T);
|
|
2197
|
-
clearTimeout(
|
|
2197
|
+
clearTimeout(r.delayInitialFocusTimer), r.delayInitialFocusTimer = void 0, f(), r.active = !1, r.paused = !1, _(), ml.deactivateTrap(n, o);
|
|
2198
2198
|
var E = s(w, "onDeactivate"), L = s(w, "onPostDeactivate"), C = s(w, "checkCanReturnFocus"), D = s(w, "returnFocus", "returnFocusOnDeactivate");
|
|
2199
2199
|
E == null || E();
|
|
2200
2200
|
var J = function() {
|
|
2201
2201
|
vl(function() {
|
|
2202
|
-
D && h(A(
|
|
2202
|
+
D && h(A(r.nodeFocusedBeforeActivation)), L == null || L();
|
|
2203
2203
|
});
|
|
2204
2204
|
};
|
|
2205
|
-
return D && C ? (C(A(
|
|
2205
|
+
return D && C ? (C(A(r.nodeFocusedBeforeActivation)).then(J, J), this) : (J(), this);
|
|
2206
2206
|
},
|
|
2207
2207
|
pause: function(T) {
|
|
2208
|
-
if (
|
|
2208
|
+
if (r.paused || !r.active)
|
|
2209
2209
|
return this;
|
|
2210
2210
|
var w = s(T, "onPause"), E = s(T, "onPostPause");
|
|
2211
|
-
return
|
|
2211
|
+
return r.paused = !0, w == null || w(), f(), _(), E == null || E(), this;
|
|
2212
2212
|
},
|
|
2213
2213
|
unpause: function(T) {
|
|
2214
|
-
if (!
|
|
2214
|
+
if (!r.paused || !r.active)
|
|
2215
2215
|
return this;
|
|
2216
2216
|
var w = s(T, "onUnpause"), E = s(T, "onPostUnpause");
|
|
2217
|
-
return
|
|
2217
|
+
return r.paused = !1, w == null || w(), d(), u(), _(), E == null || E(), this;
|
|
2218
2218
|
},
|
|
2219
2219
|
updateContainerElements: function(T) {
|
|
2220
2220
|
var w = [].concat(T).filter(Boolean);
|
|
2221
|
-
return
|
|
2221
|
+
return r.containers = w.map(function(E) {
|
|
2222
2222
|
return typeof E == "string" ? t.querySelector(E) : E;
|
|
2223
|
-
}),
|
|
2223
|
+
}), r.active && d(), _(), this;
|
|
2224
2224
|
}
|
|
2225
2225
|
}, o.updateContainerElements(e), o;
|
|
2226
2226
|
}, Fa = Object.defineProperty, Ma = Object.defineProperties, Va = Object.getOwnPropertyDescriptors, Ge = Object.getOwnPropertySymbols, Il = Object.prototype.hasOwnProperty, jl = Object.prototype.propertyIsEnumerable, bl = (a, e, l) => e in a ? Fa(a, e, { enumerable: !0, configurable: !0, writable: !0, value: l }) : a[e] = l, La = (a, e) => {
|
|
@@ -2241,7 +2241,7 @@ var ml = {
|
|
|
2241
2241
|
};
|
|
2242
2242
|
function Ba(a, e = {}) {
|
|
2243
2243
|
let l;
|
|
2244
|
-
const t = e, { immediate:
|
|
2244
|
+
const t = e, { immediate: n } = t, c = Ua(t, ["immediate"]), r = I(!1), o = I(!1), s = (d) => l && l.activate(d), i = (d) => l && l.deactivate(d), m = () => {
|
|
2245
2245
|
l && (l.pause(), o.value = !0);
|
|
2246
2246
|
}, k = () => {
|
|
2247
2247
|
l && (l.unpause(), o.value = !1);
|
|
@@ -2251,16 +2251,16 @@ function Ba(a, e = {}) {
|
|
|
2251
2251
|
(d) => {
|
|
2252
2252
|
d && (l = ja(d, Pa(La({}, c), {
|
|
2253
2253
|
onActivate() {
|
|
2254
|
-
|
|
2254
|
+
r.value = !0, e.onActivate && e.onActivate();
|
|
2255
2255
|
},
|
|
2256
2256
|
onDeactivate() {
|
|
2257
|
-
|
|
2257
|
+
r.value = !1, e.onDeactivate && e.onDeactivate();
|
|
2258
2258
|
}
|
|
2259
|
-
})),
|
|
2259
|
+
})), n && s());
|
|
2260
2260
|
},
|
|
2261
2261
|
{ flush: "post" }
|
|
2262
2262
|
), Kl(() => i()), {
|
|
2263
|
-
hasFocus:
|
|
2263
|
+
hasFocus: r,
|
|
2264
2264
|
isPaused: o,
|
|
2265
2265
|
activate: s,
|
|
2266
2266
|
deactivate: i,
|
|
@@ -2281,7 +2281,7 @@ const za = /* @__PURE__ */ b("div", { tabindex: "0" }, null, -1), _a = ["onKeypr
|
|
|
2281
2281
|
trapFocus: { type: Boolean, default: !1 }
|
|
2282
2282
|
},
|
|
2283
2283
|
setup(a) {
|
|
2284
|
-
const e = a, { trapFocus: l } = Bl(e), t = I(!1),
|
|
2284
|
+
const e = a, { trapFocus: l } = Bl(e), t = I(!1), n = I(), c = Ba(n);
|
|
2285
2285
|
oe([
|
|
2286
2286
|
l,
|
|
2287
2287
|
t
|
|
@@ -2293,7 +2293,7 @@ const za = /* @__PURE__ */ b("div", { tabindex: "0" }, null, -1), _a = ["onKeypr
|
|
|
2293
2293
|
i === !0 && m === !0 ? c.activate() : c.deactivate();
|
|
2294
2294
|
});
|
|
2295
2295
|
});
|
|
2296
|
-
function
|
|
2296
|
+
function r() {
|
|
2297
2297
|
t.value = !0, document.addEventListener("keydown", s);
|
|
2298
2298
|
}
|
|
2299
2299
|
function o() {
|
|
@@ -2302,18 +2302,18 @@ const za = /* @__PURE__ */ b("div", { tabindex: "0" }, null, -1), _a = ["onKeypr
|
|
|
2302
2302
|
function s(i) {
|
|
2303
2303
|
i.key === "Escape" && o();
|
|
2304
2304
|
}
|
|
2305
|
-
return (i, m) => (
|
|
2306
|
-
V(i.$slots, "trigger", ce(
|
|
2307
|
-
(
|
|
2305
|
+
return (i, m) => (p(), y(X, null, [
|
|
2306
|
+
V(i.$slots, "trigger", ce(ve({ open: r }))),
|
|
2307
|
+
(p(), G(ll, { to: "body" }, [
|
|
2308
2308
|
S(Te, { name: "fade" }, {
|
|
2309
2309
|
default: Y(() => [
|
|
2310
2310
|
le(b("div", {
|
|
2311
2311
|
ref_key: "clUiModal",
|
|
2312
|
-
ref:
|
|
2312
|
+
ref: n,
|
|
2313
2313
|
class: "cl-align-items-center cl-bg-black cl-bg-opacity-40 cl-bottom-0 cl-fixed cl-flex cl-h-full cl-justify-center cl-left-0 cl-right-0 cl-top-0 cl-w-full cl-z-40 xl:cl-h-screen"
|
|
2314
2314
|
}, [
|
|
2315
2315
|
za,
|
|
2316
|
-
b("div",
|
|
2316
|
+
b("div", fe(i.$attrs, {
|
|
2317
2317
|
class: ["cl-bg-white cl-flex cl-flex-wrap cl-max-h-[calc(100%-8rem)] cl-mx-0 cl-my-auto cl-overflow-y-auto cl-overscroll-y-none cl-relative cl-rounded-lg cl-shadow-lg xl:cl-max-h-[calc(100vh-8rem)]", {
|
|
2318
2318
|
"lg:cl-w-2/12 cl-w-10/12": i.size === "x-small",
|
|
2319
2319
|
"cl-w-6/12": i.size === "small",
|
|
@@ -2342,12 +2342,12 @@ const za = /* @__PURE__ */ b("div", { tabindex: "0" }, null, -1), _a = ["onKeypr
|
|
|
2342
2342
|
}])
|
|
2343
2343
|
}, [
|
|
2344
2344
|
V(i.$slots, "title"),
|
|
2345
|
-
i.headerColour === "white" ? (
|
|
2345
|
+
i.headerColour === "white" ? (p(), y("hr", xa)) : j("", !0)
|
|
2346
2346
|
], 2),
|
|
2347
2347
|
b("div", Ha, [
|
|
2348
|
-
V(i.$slots, "default", ce(
|
|
2348
|
+
V(i.$slots, "default", ce(ve({ close: o })))
|
|
2349
2349
|
]),
|
|
2350
|
-
V(i.$slots, "footer", ce(
|
|
2350
|
+
V(i.$slots, "footer", ce(ve({ close: o })))
|
|
2351
2351
|
], 16)
|
|
2352
2352
|
], 512), [
|
|
2353
2353
|
[te, t.value]
|
|
@@ -2372,8 +2372,8 @@ const za = /* @__PURE__ */ b("div", { tabindex: "0" }, null, -1), _a = ["onKeypr
|
|
|
2372
2372
|
"clear-object": null
|
|
2373
2373
|
},
|
|
2374
2374
|
setup(a) {
|
|
2375
|
-
return (e, l) => (
|
|
2376
|
-
e.additionalText !== "" ? (
|
|
2375
|
+
return (e, l) => (p(), y("div", Ga, [
|
|
2376
|
+
e.additionalText !== "" ? (p(), y("div", Za, q(e.additionalText), 1)) : j("", !0),
|
|
2377
2377
|
b("div", {
|
|
2378
2378
|
class: M({
|
|
2379
2379
|
"cl-w-1/2": e.additionalText !== "",
|
|
@@ -2414,11 +2414,11 @@ const za = /* @__PURE__ */ b("div", { tabindex: "0" }, null, -1), _a = ["onKeypr
|
|
|
2414
2414
|
const l = a, t = R(() => {
|
|
2415
2415
|
var i;
|
|
2416
2416
|
return ((i = l.option) == null ? void 0 : i.name) ?? l.text;
|
|
2417
|
-
}),
|
|
2417
|
+
}), n = R(() => {
|
|
2418
2418
|
var i;
|
|
2419
2419
|
return ((i = l.option) == null ? void 0 : i.parentName) ?? "";
|
|
2420
2420
|
}), c = I(!1);
|
|
2421
|
-
function
|
|
2421
|
+
function r() {
|
|
2422
2422
|
var i;
|
|
2423
2423
|
l.isCreateNewOption === !0 ? e("create-object") : e("select-object", (i = l.option) == null ? void 0 : i.id);
|
|
2424
2424
|
}
|
|
@@ -2430,21 +2430,21 @@ const za = /* @__PURE__ */ b("div", { tabindex: "0" }, null, -1), _a = ["onKeypr
|
|
|
2430
2430
|
}
|
|
2431
2431
|
return oe(() => l.selectedIndex, () => s()), (i, m) => {
|
|
2432
2432
|
var k, d;
|
|
2433
|
-
return
|
|
2433
|
+
return p(), y("div", {
|
|
2434
2434
|
class: M(["cl-cursor-pointer cl-duration-75 cl-flex cl-p-1 cl-text-left cl-transition-colors", {
|
|
2435
2435
|
"cl-bg-white": c.value === !1,
|
|
2436
2436
|
"cl-bg-link-light cl-text-white cl-opacity-90": c.value && i.isCreateNewOption === !1,
|
|
2437
2437
|
"cl-bg-primary-default cl-text-black cl-opacity-90": c.value && i.isCreateNewOption
|
|
2438
2438
|
}]),
|
|
2439
|
-
onMousedown:
|
|
2439
|
+
onMousedown: r,
|
|
2440
2440
|
onMousemove: m[0] || (m[0] = (h) => o(!0)),
|
|
2441
2441
|
onMouseleave: m[1] || (m[1] = (h) => o(!1))
|
|
2442
2442
|
}, [
|
|
2443
|
-
i.option !== null && ((k = i.option) == null ? void 0 : k.parentId) !== 0 && ((d = i.option) == null ? void 0 : d.parentId) !== void 0 ? (
|
|
2443
|
+
i.option !== null && ((k = i.option) == null ? void 0 : k.parentId) !== 0 && ((d = i.option) == null ? void 0 : d.parentId) !== void 0 ? (p(), y("div", Ka, q(n.value), 1)) : j("", !0),
|
|
2444
2444
|
b("div", {
|
|
2445
2445
|
class: M({
|
|
2446
|
-
"cl-w-1/2":
|
|
2447
|
-
"cl-w-full":
|
|
2446
|
+
"cl-w-1/2": n.value !== "",
|
|
2447
|
+
"cl-w-full": n.value === ""
|
|
2448
2448
|
})
|
|
2449
2449
|
}, q(t.value), 3),
|
|
2450
2450
|
le(b("div", Qa, [
|
|
@@ -2480,52 +2480,52 @@ const za = /* @__PURE__ */ b("div", { tabindex: "0" }, null, -1), _a = ["onKeypr
|
|
|
2480
2480
|
"hide-dropdown": null
|
|
2481
2481
|
},
|
|
2482
2482
|
setup(a, { emit: e }) {
|
|
2483
|
-
const l = a, { t } = ie(),
|
|
2483
|
+
const l = a, { t } = ie(), n = I(""), c = I(!1), r = I(-1), o = R(() => c.value ? -1 : 0), s = I();
|
|
2484
2484
|
function i(u) {
|
|
2485
|
-
(u === void 0 || (u == null ? void 0 : u.code.startsWith("Arrow")) === !1 && (u == null ? void 0 : u.code.startsWith("Control")) === !1 && (u == null ? void 0 : u.code.startsWith("Shift")) === !1 && (u == null ? void 0 : u.code.startsWith("Tab")) === !1 && (u == null ? void 0 : u.code) !== "Enter") && (e("search",
|
|
2485
|
+
(u === void 0 || (u == null ? void 0 : u.code.startsWith("Arrow")) === !1 && (u == null ? void 0 : u.code.startsWith("Control")) === !1 && (u == null ? void 0 : u.code.startsWith("Shift")) === !1 && (u == null ? void 0 : u.code.startsWith("Tab")) === !1 && (u == null ? void 0 : u.code) !== "Enter") && (e("search", n.value), r.value = -2);
|
|
2486
2486
|
}
|
|
2487
2487
|
function m(u) {
|
|
2488
2488
|
e("select-object", u);
|
|
2489
2489
|
}
|
|
2490
2490
|
function k() {
|
|
2491
|
-
e("create-object",
|
|
2491
|
+
e("create-object", n.value), d();
|
|
2492
2492
|
}
|
|
2493
2493
|
function d() {
|
|
2494
2494
|
e("hide-dropdown");
|
|
2495
2495
|
}
|
|
2496
2496
|
function h(u) {
|
|
2497
|
-
|
|
2497
|
+
r.value < l.results.length - 1 ? (r.value === -2 && n.value === "" && r.value++, r.value++) : r.value = u, Z();
|
|
2498
2498
|
}
|
|
2499
2499
|
function A(u) {
|
|
2500
|
-
|
|
2500
|
+
r.value > u ? r.value-- : r.value = l.results.length - 1, Z();
|
|
2501
2501
|
}
|
|
2502
2502
|
function P() {
|
|
2503
|
-
|
|
2503
|
+
r.value >= 0 && l.results !== void 0 ? m(l.results[r.value].id) : r.value === -1 && k();
|
|
2504
2504
|
}
|
|
2505
2505
|
function U(u) {
|
|
2506
2506
|
if (u.key === "Tab" && u.shiftKey === !0) {
|
|
2507
|
-
const
|
|
2507
|
+
const f = document.getElementsByTagName("input");
|
|
2508
2508
|
let O = -1;
|
|
2509
|
-
for (let $ = 0; $ <
|
|
2510
|
-
|
|
2511
|
-
O >= 0 && (
|
|
2509
|
+
for (let $ = 0; $ < f.length; $++)
|
|
2510
|
+
f[$] === u.target && (O = $ - 1);
|
|
2511
|
+
O >= 0 && (f[O].focus(), d());
|
|
2512
2512
|
}
|
|
2513
2513
|
}
|
|
2514
2514
|
function Z() {
|
|
2515
2515
|
var u;
|
|
2516
|
-
l.results && l.results.length > 1 && ((u = s.value) == null || u.scrollTo(0, (
|
|
2516
|
+
l.results && l.results.length > 1 && ((u = s.value) == null || u.scrollTo(0, (r.value + 1) * 34 - 34 * 2));
|
|
2517
2517
|
}
|
|
2518
2518
|
function ae() {
|
|
2519
2519
|
let u = !1;
|
|
2520
|
-
l.results !== null && l.results.length === 1 && (u =
|
|
2520
|
+
l.results !== null && l.results.length === 1 && (u = n.value.toUpperCase().trim() === l.results[0].name.toUpperCase().trim()), c.value = l.canCreateNewObject === !0 && l.errorMessage === "" && n.value.trim() !== "" && u === !1;
|
|
2521
2521
|
}
|
|
2522
2522
|
function N(u) {
|
|
2523
|
-
|
|
2523
|
+
r.value = u;
|
|
2524
2524
|
}
|
|
2525
2525
|
function B() {
|
|
2526
|
-
l.isVisible === !0 && (
|
|
2527
|
-
var u,
|
|
2528
|
-
return (
|
|
2526
|
+
l.isVisible === !0 && (n.value = "", i(), Fe(() => {
|
|
2527
|
+
var u, f;
|
|
2528
|
+
return (f = (u = s.value) == null ? void 0 : u.querySelector("input")) == null ? void 0 : f.focus();
|
|
2529
2529
|
}));
|
|
2530
2530
|
}
|
|
2531
2531
|
return oe(() => l.results, () => ae()), oe(() => l.errorMessage, () => ae()), oe(() => l.isVisible, () => B()), Ze(() => {
|
|
@@ -2534,22 +2534,22 @@ const za = /* @__PURE__ */ b("div", { tabindex: "0" }, null, -1), _a = ["onKeypr
|
|
|
2534
2534
|
}), tl(() => {
|
|
2535
2535
|
var u;
|
|
2536
2536
|
return (u = s.value) == null ? void 0 : u.removeEventListener("keydown", U);
|
|
2537
|
-
}), (u,
|
|
2537
|
+
}), (u, f) => {
|
|
2538
2538
|
var O;
|
|
2539
|
-
return
|
|
2539
|
+
return p(), y("div", {
|
|
2540
2540
|
ref_key: "container",
|
|
2541
2541
|
ref: s,
|
|
2542
2542
|
class: "cl-absolute cl-bg-white cl-border cl-border-collapse cl-border-grey-0 cl-h-52 cl-overflow-y-auto cl-overscroll-y-none cl-rounded cl-text-sm cl-w-full cl-z-20",
|
|
2543
2543
|
onKeydown: [
|
|
2544
|
-
|
|
2545
|
-
|
|
2544
|
+
f[2] || (f[2] = Ee(ne(($) => A(o.value), ["prevent", "stop"]), ["up"])),
|
|
2545
|
+
f[3] || (f[3] = Ee(ne(($) => h(o.value), ["prevent", "stop"]), ["down"]))
|
|
2546
2546
|
],
|
|
2547
|
-
onKeyup: Ee(
|
|
2547
|
+
onKeyup: Ee(ne(P, ["prevent", "stop"]), ["enter"])
|
|
2548
2548
|
}, [
|
|
2549
2549
|
b("div", Ya, [
|
|
2550
2550
|
S(me, {
|
|
2551
|
-
modelValue:
|
|
2552
|
-
"onUpdate:modelValue":
|
|
2551
|
+
modelValue: n.value,
|
|
2552
|
+
"onUpdate:modelValue": f[0] || (f[0] = ($) => n.value = $),
|
|
2553
2553
|
class: "!cl-mr-0 cl-w-full",
|
|
2554
2554
|
"input-type": "text",
|
|
2555
2555
|
"placeholder-text": u.searchHint,
|
|
@@ -2560,44 +2560,44 @@ const za = /* @__PURE__ */ b("div", { tabindex: "0" }, null, -1), _a = ["onKeypr
|
|
|
2560
2560
|
[te, u.loading]
|
|
2561
2561
|
])
|
|
2562
2562
|
]),
|
|
2563
|
-
u.currentObjectName !== "" ? (
|
|
2563
|
+
u.currentObjectName !== "" ? (p(), G(Ve, {
|
|
2564
2564
|
key: 0,
|
|
2565
2565
|
"show-clear-button": u.canClearSelectedObject,
|
|
2566
2566
|
text: u.currentObjectName,
|
|
2567
|
-
onClearObject:
|
|
2567
|
+
onClearObject: f[1] || (f[1] = ($) => u.$emit("clear-object"))
|
|
2568
2568
|
}, null, 8, ["show-clear-button", "text"])) : j("", !0),
|
|
2569
|
-
u.objectParentType !== "" && u.results !== void 0 && u.results.length > 0 && u.errorMessage === "" ? (
|
|
2569
|
+
u.objectParentType !== "" && u.results !== void 0 && u.results.length > 0 && u.errorMessage === "" ? (p(), G(Ve, {
|
|
2570
2570
|
key: 1,
|
|
2571
2571
|
text: u.objectType,
|
|
2572
2572
|
"additional-text": u.objectParentType,
|
|
2573
2573
|
class: "cl-bg-grey-2 cl-mt-1"
|
|
2574
2574
|
}, null, 8, ["text", "additional-text"])) : j("", !0),
|
|
2575
|
-
u.results !== null && ((O = u.results) == null ? void 0 : O.length) === 0 &&
|
|
2575
|
+
u.results !== null && ((O = u.results) == null ? void 0 : O.length) === 0 && n.value.trim() !== "" && u.canCreateNewObject === !1 && u.errorMessage === "" ? (p(), G(Ve, {
|
|
2576
2576
|
key: 2,
|
|
2577
|
-
text: v(t)("comboBox.noResults", { value:
|
|
2577
|
+
text: v(t)("comboBox.noResults", { value: n.value })
|
|
2578
2578
|
}, null, 8, ["text"])) : j("", !0),
|
|
2579
|
-
u.errorMessage !== "" ? (
|
|
2579
|
+
u.errorMessage !== "" ? (p(), G(Ve, {
|
|
2580
2580
|
key: 3,
|
|
2581
2581
|
class: "!cl-bg-danger-light cl-border-danger-light cl-rounded cl-text-danger-dark",
|
|
2582
2582
|
text: v(t)("comboBox.errorMessage", { error: u.errorMessage })
|
|
2583
2583
|
}, null, 8, ["text"])) : j("", !0),
|
|
2584
|
-
c.value ? (
|
|
2584
|
+
c.value ? (p(), G(hl, {
|
|
2585
2585
|
key: 4,
|
|
2586
2586
|
"is-create-new-option": !0,
|
|
2587
|
-
text: v(t)("comboBox.addPrompt", { value:
|
|
2587
|
+
text: v(t)("comboBox.addPrompt", { value: n.value, object: u.objectType }),
|
|
2588
2588
|
index: -1,
|
|
2589
|
-
"selected-index":
|
|
2589
|
+
"selected-index": r.value,
|
|
2590
2590
|
class: "cl-px-2",
|
|
2591
2591
|
onCreateObject: k,
|
|
2592
2592
|
onOptionHighlighted: N
|
|
2593
2593
|
}, null, 8, ["text", "selected-index"])) : j("", !0),
|
|
2594
|
-
u.errorMessage === "" && u.results !== null ? (
|
|
2595
|
-
(
|
|
2594
|
+
u.errorMessage === "" && u.results !== null ? (p(), y("div", Ja, [
|
|
2595
|
+
(p(!0), y(X, null, se(u.results, ($, _) => (p(), G(hl, {
|
|
2596
2596
|
key: _,
|
|
2597
2597
|
option: $,
|
|
2598
2598
|
index: _,
|
|
2599
2599
|
class: "cl-px-2",
|
|
2600
|
-
"selected-index":
|
|
2600
|
+
"selected-index": r.value,
|
|
2601
2601
|
onSelectObject: m,
|
|
2602
2602
|
onOptionHighlighted: N
|
|
2603
2603
|
}, null, 8, ["option", "index", "selected-index"]))), 128))
|
|
@@ -2605,7 +2605,7 @@ const za = /* @__PURE__ */ b("div", { tabindex: "0" }, null, -1), _a = ["onKeypr
|
|
|
2605
2605
|
], 40, Wa);
|
|
2606
2606
|
};
|
|
2607
2607
|
}
|
|
2608
|
-
}), eo = { class: "cl-flex" }, lo = { class: "cl-relative cl-right-20 cl-top-0.5" }, to = { class: "cl-absolute cl-flex cl-float-right cl-font-semibold cl-mt-2 cl-text-danger-default cl-text-sm cl-z-10" }, ao = { class: "cl-min-h-[16rem] cl-mx-4" }, oo = { class: "cl-p-2 cl-text-right cl-w-full" },
|
|
2608
|
+
}), eo = { class: "cl-flex" }, lo = { class: "cl-relative cl-right-20 cl-top-0.5" }, to = { class: "cl-absolute cl-flex cl-float-right cl-font-semibold cl-mt-2 cl-text-danger-default cl-text-sm cl-z-10" }, ao = { class: "cl-min-h-[16rem] cl-mx-4" }, oo = { class: "cl-p-2 cl-text-right cl-w-full" }, no = /* @__PURE__ */ Q({
|
|
2609
2609
|
__name: "cl-ui-combo-box",
|
|
2610
2610
|
props: {
|
|
2611
2611
|
loading: { type: Boolean, default: !1 },
|
|
@@ -2634,7 +2634,7 @@ const za = /* @__PURE__ */ b("div", { tabindex: "0" }, null, -1), _a = ["onKeypr
|
|
|
2634
2634
|
"update:current-object": null
|
|
2635
2635
|
},
|
|
2636
2636
|
setup(a, { expose: e, emit: l }) {
|
|
2637
|
-
const t = a,
|
|
2637
|
+
const t = a, n = R(() => t.placeholderText ? t.placeholderText : r("comboBox.emptyHintText", { object: t.objectType })), c = R(() => t.searchHint ? t.searchHint : r("comboBox.searchHint", { object: t.objectType })), { t: r } = ie(), o = I(!1), s = R({
|
|
2638
2638
|
get: () => t.currentObject,
|
|
2639
2639
|
set: (C) => l("update:current-object", C)
|
|
2640
2640
|
}), i = I(null), m = I(null), k = R(() => w()), d = I(""), h = I(""), A = I(), P = I(!0), U = I(!1);
|
|
@@ -2653,10 +2653,10 @@ const za = /* @__PURE__ */ b("div", { tabindex: "0" }, null, -1), _a = ["onKeypr
|
|
|
2653
2653
|
s.value = null, Z(!1);
|
|
2654
2654
|
}
|
|
2655
2655
|
function u(C) {
|
|
2656
|
-
const D =
|
|
2656
|
+
const D = f(C);
|
|
2657
2657
|
s.value = D, Z(!1);
|
|
2658
2658
|
}
|
|
2659
|
-
function
|
|
2659
|
+
function f(C) {
|
|
2660
2660
|
let D = null;
|
|
2661
2661
|
if (t.results !== null) {
|
|
2662
2662
|
for (let J = 0; J < t.results.length; J++)
|
|
@@ -2683,7 +2683,7 @@ const za = /* @__PURE__ */ b("div", { tabindex: "0" }, null, -1), _a = ["onKeypr
|
|
|
2683
2683
|
function _() {
|
|
2684
2684
|
var C, D;
|
|
2685
2685
|
(C = t.objectCreatedResponse) != null && C.error ? sl({
|
|
2686
|
-
message:
|
|
2686
|
+
message: r("comboBox.createFailed", { name: d.value, error: t.objectCreatedResponse.error }),
|
|
2687
2687
|
colour: "danger",
|
|
2688
2688
|
duration: 1e4
|
|
2689
2689
|
}) : (D = t.objectCreatedResponse) != null && D.id && T();
|
|
@@ -2698,7 +2698,7 @@ const za = /* @__PURE__ */ b("div", { tabindex: "0" }, null, -1), _a = ["onKeypr
|
|
|
2698
2698
|
function T() {
|
|
2699
2699
|
var D, J, W, g, F;
|
|
2700
2700
|
sl({
|
|
2701
|
-
message:
|
|
2701
|
+
message: r("comboBox.createSuccessful", { object: t.objectType, name: ((D = t.objectCreatedResponse) == null ? void 0 : D.name) ?? "" }),
|
|
2702
2702
|
colour: "primary",
|
|
2703
2703
|
duration: 1e4
|
|
2704
2704
|
});
|
|
@@ -2725,9 +2725,9 @@ const za = /* @__PURE__ */ b("div", { tabindex: "0" }, null, -1), _a = ["onKeypr
|
|
|
2725
2725
|
}
|
|
2726
2726
|
});
|
|
2727
2727
|
const L = I();
|
|
2728
|
-
return
|
|
2728
|
+
return nl(L, () => o.value ? Z(!1) : ""), (C, D) => {
|
|
2729
2729
|
const J = Tl("cl-ui-combo-box", !0);
|
|
2730
|
-
return
|
|
2730
|
+
return p(), y("div", {
|
|
2731
2731
|
ref_key: "outsideRef",
|
|
2732
2732
|
ref: L,
|
|
2733
2733
|
class: "cl-relative"
|
|
@@ -2742,14 +2742,14 @@ const za = /* @__PURE__ */ b("div", { tabindex: "0" }, null, -1), _a = ["onKeypr
|
|
|
2742
2742
|
"cl-cursor-pointer": C.disabled === !1
|
|
2743
2743
|
}]),
|
|
2744
2744
|
"input-type": "text",
|
|
2745
|
-
"placeholder-text":
|
|
2745
|
+
"placeholder-text": n.value,
|
|
2746
2746
|
onFocus: D[1] || (D[1] = (W) => {
|
|
2747
2747
|
Z(), C.$emit("focus");
|
|
2748
2748
|
})
|
|
2749
2749
|
}, null, 8, ["modelValue", "class", "placeholder-text"]),
|
|
2750
2750
|
le(b("div", lo, [
|
|
2751
2751
|
b("div", to, [
|
|
2752
|
-
de(q(v(
|
|
2752
|
+
de(q(v(r)("comboBox.required")) + " ", 1),
|
|
2753
2753
|
S(v(x), {
|
|
2754
2754
|
class: "cl-ml-1 cl-mt-1",
|
|
2755
2755
|
icon: "ph:warning"
|
|
@@ -2758,7 +2758,7 @@ const za = /* @__PURE__ */ b("div", { tabindex: "0" }, null, -1), _a = ["onKeypr
|
|
|
2758
2758
|
], 512), [
|
|
2759
2759
|
[te, C.required && C.disabled === !1 && C.currentObject === null]
|
|
2760
2760
|
]),
|
|
2761
|
-
o.value ? (
|
|
2761
|
+
o.value ? (p(), y("div", {
|
|
2762
2762
|
key: 1,
|
|
2763
2763
|
class: M(["cl-bg-white cl-border cl-border-grey-1 cl-float-right cl-h-10 cl-rounded cl-rounded-l-none cl-text-grey-3 cl-transition-colors cl-w-[27px] hover:cl-bg-link-light hover:cl-opacity-90 hover:cl-text-white", {
|
|
2764
2764
|
"cl-cursor-default": C.disabled,
|
|
@@ -2770,7 +2770,7 @@ const za = /* @__PURE__ */ b("div", { tabindex: "0" }, null, -1), _a = ["onKeypr
|
|
|
2770
2770
|
icon: "ph:caret-up-bold",
|
|
2771
2771
|
class: "cl-ml-[4px] cl-mt-[12px]"
|
|
2772
2772
|
})
|
|
2773
|
-
], 2)) : (
|
|
2773
|
+
], 2)) : (p(), y("div", {
|
|
2774
2774
|
key: 0,
|
|
2775
2775
|
class: M(["cl-bg-white cl-border cl-border-grey-1 cl-float-right cl-h-10 cl-rounded cl-rounded-l-none cl-text-grey-3 cl-transition-colors cl-w-[27px] hover:cl-bg-link-light hover:cl-opacity-90 hover:cl-text-white", {
|
|
2776
2776
|
"cl-cursor-default": C.disabled,
|
|
@@ -2786,7 +2786,7 @@ const za = /* @__PURE__ */ b("div", { tabindex: "0" }, null, -1), _a = ["onKeypr
|
|
|
2786
2786
|
]),
|
|
2787
2787
|
S(Fl, { size: "small" }, {
|
|
2788
2788
|
title: Y(() => [
|
|
2789
|
-
de(q(v(
|
|
2789
|
+
de(q(v(r)("comboBox.createTitle", { object: C.objectType })), 1)
|
|
2790
2790
|
]),
|
|
2791
2791
|
trigger: Y(({ open: W }) => [
|
|
2792
2792
|
le(S(Xa, {
|
|
@@ -2821,7 +2821,7 @@ const za = /* @__PURE__ */ b("div", { tabindex: "0" }, null, -1), _a = ["onKeypr
|
|
|
2821
2821
|
onClick: W
|
|
2822
2822
|
}, {
|
|
2823
2823
|
default: Y(() => [
|
|
2824
|
-
de(q(v(
|
|
2824
|
+
de(q(v(r)("comboBox.cancel")), 1)
|
|
2825
2825
|
]),
|
|
2826
2826
|
_: 2
|
|
2827
2827
|
}, 1032, ["onClick"]),
|
|
@@ -2834,7 +2834,7 @@ const za = /* @__PURE__ */ b("div", { tabindex: "0" }, null, -1), _a = ["onKeypr
|
|
|
2834
2834
|
}
|
|
2835
2835
|
}, {
|
|
2836
2836
|
default: Y(() => [
|
|
2837
|
-
de(q(v(
|
|
2837
|
+
de(q(v(r)("comboBox.create")), 1)
|
|
2838
2838
|
]),
|
|
2839
2839
|
_: 2
|
|
2840
2840
|
}, 1032, ["disabled", "onClick"])
|
|
@@ -2842,7 +2842,7 @@ const za = /* @__PURE__ */ b("div", { tabindex: "0" }, null, -1), _a = ["onKeypr
|
|
|
2842
2842
|
]),
|
|
2843
2843
|
default: Y(() => [
|
|
2844
2844
|
b("div", ao, [
|
|
2845
|
-
C.objectParentType ? (
|
|
2845
|
+
C.objectParentType ? (p(), G(J, {
|
|
2846
2846
|
key: 0,
|
|
2847
2847
|
"current-object": m.value,
|
|
2848
2848
|
"onUpdate:currentObject": D[5] || (D[5] = (W) => m.value = W),
|
|
@@ -2860,7 +2860,7 @@ const za = /* @__PURE__ */ b("div", { tabindex: "0" }, null, -1), _a = ["onKeypr
|
|
|
2860
2860
|
S(me, {
|
|
2861
2861
|
modelValue: d.value,
|
|
2862
2862
|
"onUpdate:modelValue": D[6] || (D[6] = (W) => d.value = W),
|
|
2863
|
-
label: v(
|
|
2863
|
+
label: v(r)("comboBox.createProperty"),
|
|
2864
2864
|
class: "cl-mb-2 cl-pt-3 cl-w-full",
|
|
2865
2865
|
"input-type": "text"
|
|
2866
2866
|
}, null, 8, ["modelValue", "label"])
|
|
@@ -2872,7 +2872,7 @@ const za = /* @__PURE__ */ b("div", { tabindex: "0" }, null, -1), _a = ["onKeypr
|
|
|
2872
2872
|
};
|
|
2873
2873
|
}
|
|
2874
2874
|
});
|
|
2875
|
-
function
|
|
2875
|
+
function ro(a) {
|
|
2876
2876
|
return typeof a.id == "number" && typeof a.name == "string";
|
|
2877
2877
|
}
|
|
2878
2878
|
function so(a) {
|
|
@@ -2886,11 +2886,11 @@ const io = {}, co = { class: "cl-flex cl-flex-wrap cl-left-0 cl-mt-4 cl-w-full"
|
|
|
2886
2886
|
class: "cl-leading-10 cl-text-sm cl-w-full"
|
|
2887
2887
|
}, po = { class: "cl-float-left" }, mo = { class: "cl-float-right" };
|
|
2888
2888
|
function vo(a, e) {
|
|
2889
|
-
return
|
|
2890
|
-
a.$slots.default ? (
|
|
2889
|
+
return p(), y("div", co, [
|
|
2890
|
+
a.$slots.default ? (p(), y("div", uo, [
|
|
2891
2891
|
V(a.$slots, "default")
|
|
2892
2892
|
])) : j("", !0),
|
|
2893
|
-
a.$slots.left || a.$slots.right ? (
|
|
2893
|
+
a.$slots.left || a.$slots.right ? (p(), y("div", fo, [
|
|
2894
2894
|
b("span", po, [
|
|
2895
2895
|
V(a.$slots, "left")
|
|
2896
2896
|
]),
|
|
@@ -2905,7 +2905,7 @@ function Le(a) {
|
|
|
2905
2905
|
const e = a.type !== "slot" || a.slotType !== void 0 && a.field !== void 0, l = a.sortable ?? !0;
|
|
2906
2906
|
return e && l;
|
|
2907
2907
|
}
|
|
2908
|
-
function
|
|
2908
|
+
function rl(a) {
|
|
2909
2909
|
const e = a.type !== "slot" || a.slotType !== void 0 && a.field !== void 0, l = a.filterable ?? !0;
|
|
2910
2910
|
return e && l;
|
|
2911
2911
|
}
|
|
@@ -2913,7 +2913,7 @@ function bo(a) {
|
|
|
2913
2913
|
return a.some((e) => Le(e));
|
|
2914
2914
|
}
|
|
2915
2915
|
function yl(a) {
|
|
2916
|
-
return a.some((e) =>
|
|
2916
|
+
return a.some((e) => rl(e));
|
|
2917
2917
|
}
|
|
2918
2918
|
const ho = { class: "cl-mb-2 cl-text-sm lg:cl-hidden" }, yo = { class: "cl-gap-1 cl-grid cl-grid-cols-2 cl-justify-end cl-mb-2 lg:cl-flex lg:cl-gap-2" }, wo = { class: "cl-basis-0 cl-col-span-2 cl-flex-grow" }, ko = /* @__PURE__ */ b("hr", { class: "cl-block cl-border-grey-3 cl-col-span-2 cl-my-4 lg:cl-hidden" }, null, -1), To = {
|
|
2919
2919
|
key: 1,
|
|
@@ -2930,59 +2930,61 @@ const ho = { class: "cl-mb-2 cl-text-sm lg:cl-hidden" }, yo = { class: "cl-gap-1
|
|
|
2930
2930
|
},
|
|
2931
2931
|
emits: ["update:edit-mode", "update:filterPanelOpen", "clear-filters"],
|
|
2932
2932
|
setup(a) {
|
|
2933
|
-
const e = a, { t: l } = ie(), t = R(() => e.request.filters.some((
|
|
2934
|
-
return (
|
|
2933
|
+
const e = a, { t: l } = ie(), t = R(() => e.request.filters.some((n) => n.filterValue !== ""));
|
|
2934
|
+
return (n, c) => (p(), y(X, null, [
|
|
2935
2935
|
b("div", ho, [
|
|
2936
2936
|
b("strong", null, q(v(l)("grid.gridTools")), 1)
|
|
2937
2937
|
]),
|
|
2938
2938
|
b("div", yo, [
|
|
2939
2939
|
b("div", wo, [
|
|
2940
|
-
V(
|
|
2941
|
-
loading:
|
|
2942
|
-
editMode:
|
|
2940
|
+
V(n.$slots, "additional-grid-actions", ce(ve({
|
|
2941
|
+
loading: n.loading,
|
|
2942
|
+
editMode: n.editMode
|
|
2943
2943
|
})))
|
|
2944
2944
|
]),
|
|
2945
2945
|
ko,
|
|
2946
|
-
|
|
2946
|
+
n.columns.some((r) => r.editable) ? (p(), G(be, {
|
|
2947
2947
|
key: 0,
|
|
2948
2948
|
size: "small",
|
|
2949
2949
|
colour: "default",
|
|
2950
|
-
|
|
2950
|
+
disabled: n.loading,
|
|
2951
|
+
onClick: c[0] || (c[0] = ne((r) => n.$emit("update:edit-mode", !n.editMode), ["prevent"]))
|
|
2951
2952
|
}, {
|
|
2952
2953
|
default: Y(() => [
|
|
2953
|
-
|
|
2954
|
+
n.editMode ? (p(), y(X, { key: 0 }, [
|
|
2954
2955
|
de(q(v(l)("grid.finishEditing")), 1)
|
|
2955
|
-
], 64)) : (
|
|
2956
|
+
], 64)) : (p(), y(X, { key: 1 }, [
|
|
2956
2957
|
de(q(v(l)("grid.editData")), 1)
|
|
2957
2958
|
], 64))
|
|
2958
2959
|
]),
|
|
2959
2960
|
_: 1
|
|
2960
|
-
})) : j("", !0),
|
|
2961
|
-
|
|
2962
|
-
V(
|
|
2961
|
+
}, 8, ["disabled"])) : j("", !0),
|
|
2962
|
+
n.options.hideViewManager ? j("", !0) : (p(), y("div", To, [
|
|
2963
|
+
V(n.$slots, "view-manager")
|
|
2963
2964
|
])),
|
|
2964
|
-
v(yl)(
|
|
2965
|
+
v(yl)(n.columns) || v(bo)(n.columns) ? (p(), y(X, { key: 2 }, [
|
|
2965
2966
|
b("div", $o, [
|
|
2966
2967
|
S(be, {
|
|
2967
2968
|
class: "cl-w-full",
|
|
2968
2969
|
size: "small",
|
|
2969
|
-
|
|
2970
|
+
disabled: n.loading,
|
|
2971
|
+
onClick: c[1] || (c[1] = ne((r) => n.$emit("update:filterPanelOpen", !n.filterPanelOpen), ["prevent"]))
|
|
2970
2972
|
}, {
|
|
2971
2973
|
default: Y(() => [
|
|
2972
2974
|
de(q(v(l)("grid.modifyFilters")), 1)
|
|
2973
2975
|
]),
|
|
2974
2976
|
_: 1
|
|
2975
|
-
})
|
|
2977
|
+
}, 8, ["disabled"])
|
|
2976
2978
|
]),
|
|
2977
|
-
v(yl)(
|
|
2979
|
+
v(yl)(n.columns) ? (p(), G(be, {
|
|
2978
2980
|
key: 0,
|
|
2979
2981
|
size: "small",
|
|
2980
2982
|
colour: "danger",
|
|
2981
|
-
disabled: !t.value ||
|
|
2983
|
+
disabled: !t.value || n.loading,
|
|
2982
2984
|
class: M({
|
|
2983
|
-
"cl-col-span-2":
|
|
2985
|
+
"cl-col-span-2": n.columns.some((r) => r.editable)
|
|
2984
2986
|
}),
|
|
2985
|
-
onClick: c[2] || (c[2] =
|
|
2987
|
+
onClick: c[2] || (c[2] = ne((r) => n.$emit("clear-filters"), ["prevent"]))
|
|
2986
2988
|
}, {
|
|
2987
2989
|
default: Y(() => [
|
|
2988
2990
|
de(q(v(l)("grid.clearFilters")), 1)
|
|
@@ -3011,7 +3013,7 @@ const ho = { class: "cl-mb-2 cl-text-sm lg:cl-hidden" }, yo = { class: "cl-gap-1
|
|
|
3011
3013
|
searchValue: {}
|
|
3012
3014
|
},
|
|
3013
3015
|
setup(a) {
|
|
3014
|
-
const e = a, { t: l, locale: t, n
|
|
3016
|
+
const e = a, { t: l, locale: t, n } = ie();
|
|
3015
3017
|
function c(o, s) {
|
|
3016
3018
|
let i;
|
|
3017
3019
|
e.timeZone ? i = H.fromISO(o, {
|
|
@@ -3022,50 +3024,50 @@ const ho = { class: "cl-mb-2 cl-text-sm lg:cl-hidden" }, yo = { class: "cl-gap-1
|
|
|
3022
3024
|
});
|
|
3023
3025
|
let m = "";
|
|
3024
3026
|
switch (s) {
|
|
3025
|
-
case
|
|
3026
|
-
case
|
|
3027
|
+
case re.SHORT_DATE:
|
|
3028
|
+
case re.DATE:
|
|
3027
3029
|
m = i.toFormat("D");
|
|
3028
3030
|
break;
|
|
3029
|
-
case
|
|
3031
|
+
case re.LONG_DATE:
|
|
3030
3032
|
m = i.toFormat("DDD");
|
|
3031
3033
|
break;
|
|
3032
|
-
case
|
|
3033
|
-
case
|
|
3034
|
+
case re.SHORT_DATETIME:
|
|
3035
|
+
case re.DATETIME:
|
|
3034
3036
|
m = i.toFormat("f");
|
|
3035
3037
|
break;
|
|
3036
|
-
case
|
|
3038
|
+
case re.LONG_DATETIME:
|
|
3037
3039
|
m = i.toFormat("fff");
|
|
3038
3040
|
break;
|
|
3039
|
-
case
|
|
3041
|
+
case re.TIME:
|
|
3040
3042
|
m = i.toFormat("t");
|
|
3041
3043
|
break;
|
|
3042
|
-
case
|
|
3044
|
+
case re.MONTH_YEAR:
|
|
3043
3045
|
m = i.toFormat("LLLL yyyy");
|
|
3044
3046
|
}
|
|
3045
3047
|
return m;
|
|
3046
3048
|
}
|
|
3047
|
-
function
|
|
3049
|
+
function r() {
|
|
3048
3050
|
let o = e.data[e.column.field];
|
|
3049
3051
|
return e.column.maxLength && (o = o.trimToLength(e.column.maxLength, e.column.format !== void 0 ? e.column.format === "ellipsis" : !1)), e.searchValue && e.column.searchable && (o = Hl(o, e.searchValue.split(" "))), e.column.format === "wrap-text" && (o = `<span class="cl-break-words cl-whitespace-pre-wrap">${o}</span>`), o;
|
|
3050
3052
|
}
|
|
3051
3053
|
return (o, s) => {
|
|
3052
3054
|
var i;
|
|
3053
|
-
return o.column.type === "slot" ? V(o.$slots, o.column.name, { key: 0 }) : o.column.type === "boolean" && o.column.field !== void 0 ? (
|
|
3055
|
+
return o.column.type === "slot" ? V(o.$slots, o.column.name, { key: 0 }) : o.column.type === "boolean" && o.column.field !== void 0 ? (p(), G(me, {
|
|
3054
3056
|
key: 1,
|
|
3055
3057
|
"input-type": "checkbox",
|
|
3056
3058
|
"model-value": o.data[o.column.field],
|
|
3057
3059
|
disabled: !0
|
|
3058
|
-
}, null, 8, ["model-value"])) : (o.column.type === "date" || o.column.type === "datetime" || o.column.type === "dateRange") && o.column.field !== void 0 ? (
|
|
3059
|
-
o.column.format !== void 0 ? (
|
|
3060
|
+
}, null, 8, ["model-value"])) : (o.column.type === "date" || o.column.type === "datetime" || o.column.type === "dateRange") && o.column.field !== void 0 ? (p(), y(X, { key: 2 }, [
|
|
3061
|
+
o.column.format !== void 0 ? (p(), y(X, { key: 0 }, [
|
|
3060
3062
|
de(q(c(o.data[o.column.field], o.column.format)), 1)
|
|
3061
|
-
], 64)) : o.column.type === "date" || o.column.type === "dateRange" ? (
|
|
3062
|
-
de(q(c(o.data[o.column.field], v(
|
|
3063
|
-
], 64)) : (
|
|
3064
|
-
de(q(c(o.data[o.column.field], v(
|
|
3063
|
+
], 64)) : o.column.type === "date" || o.column.type === "dateRange" ? (p(), y(X, { key: 1 }, [
|
|
3064
|
+
de(q(c(o.data[o.column.field], v(re).DATE)), 1)
|
|
3065
|
+
], 64)) : (p(), y(X, { key: 2 }, [
|
|
3066
|
+
de(q(c(o.data[o.column.field], v(re).DATETIME)), 1)
|
|
3065
3067
|
], 64))
|
|
3066
|
-
], 64)) : o.column.type === "list" && o.column.field !== void 0 && o.column.listEntries !== void 0 ? (
|
|
3068
|
+
], 64)) : o.column.type === "list" && o.column.field !== void 0 && o.column.listEntries !== void 0 ? (p(), y("span", Oo, q(v(l)(((i = o.column.listEntries.find((m) => m.value === o.data[o.column.field])) == null ? void 0 : i.translationKey) ?? "")), 1)) : o.column.type === "number" && o.column.field !== void 0 ? (p(), y("span", So, q(v(n)(o.data[o.column.field], o.column.format ?? v(ue).DECIMAL)), 1)) : o.column.field !== void 0 ? (p(), y("span", No, [
|
|
3067
3069
|
b("span", {
|
|
3068
|
-
innerHTML:
|
|
3070
|
+
innerHTML: r()
|
|
3069
3071
|
}, null, 8, Eo)
|
|
3070
3072
|
])) : j("", !0);
|
|
3071
3073
|
};
|
|
@@ -3081,30 +3083,30 @@ const ho = { class: "cl-mb-2 cl-text-sm lg:cl-hidden" }, yo = { class: "cl-gap-1
|
|
|
3081
3083
|
},
|
|
3082
3084
|
emits: ["edit", "focus", "undo"],
|
|
3083
3085
|
setup(a, { emit: e }) {
|
|
3084
|
-
const l = a, { t } = ie(),
|
|
3086
|
+
const l = a, { t } = ie(), n = I(ge(l.data)), c = R(() => l.column.field !== void 0 && n.value[l.column.field] !== l.data[l.column.field]), r = R(() => {
|
|
3085
3087
|
var o;
|
|
3086
3088
|
return ((o = l.column.listEntries) == null ? void 0 : o.map((s, i) => ({
|
|
3087
3089
|
id: i,
|
|
3088
3090
|
name: t(s.translationKey)
|
|
3089
3091
|
}))) ?? [];
|
|
3090
3092
|
});
|
|
3091
|
-
return zl(() =>
|
|
3093
|
+
return zl(() => n.value = ge(l.data)), oe(n, (o) => {
|
|
3092
3094
|
const s = l.column.field ?? "";
|
|
3093
3095
|
s !== "" && (o[s] !== l.data[s] ? e("edit", o[s]) : e("undo"));
|
|
3094
3096
|
}, {
|
|
3095
3097
|
deep: !0
|
|
3096
|
-
}), (o, s) => (
|
|
3098
|
+
}), (o, s) => (p(), y("td", {
|
|
3097
3099
|
class: M(["cl-border-b cl-border-grey-1 cl-gap-1 cl-grid cl-grid-cols-2 cl-m-1 cl-mb-0 cl-py-2 cl-text-xs lg:cl-border-b-0 lg:cl-m-0 lg:cl-px-1 lg:cl-table-cell lg:cl-text-base", {
|
|
3098
3100
|
"cl-bg-link-lighter": c.value
|
|
3099
3101
|
}])
|
|
3100
3102
|
}, [
|
|
3101
3103
|
b("span", Ao, q(o.column.caption), 1),
|
|
3102
|
-
o.editMode && o.column.editable === !0 ? V(o.$slots, `${o.column.name}Edit`, ce(
|
|
3104
|
+
o.editMode && o.column.editable === !0 ? V(o.$slots, `${o.column.name}Edit`, ce(fe({ key: 0 }, {
|
|
3103
3105
|
cellFocused: () => e("focus"),
|
|
3104
3106
|
column: o.column,
|
|
3105
3107
|
edited: c.value,
|
|
3106
|
-
record:
|
|
3107
|
-
listEntries:
|
|
3108
|
+
record: n.value,
|
|
3109
|
+
listEntries: r.value,
|
|
3108
3110
|
searchValue: o.searchValue
|
|
3109
3111
|
})), () => [
|
|
3110
3112
|
S(wl, {
|
|
@@ -3114,7 +3116,7 @@ const ho = { class: "cl-mb-2 cl-text-sm lg:cl-hidden" }, yo = { class: "cl-gap-1
|
|
|
3114
3116
|
"search-value": o.searchValue
|
|
3115
3117
|
}, {
|
|
3116
3118
|
[o.column.name]: Y(() => [
|
|
3117
|
-
V(o.$slots, o.column.name, ce(
|
|
3119
|
+
V(o.$slots, o.column.name, ce(ve({
|
|
3118
3120
|
column: o.column,
|
|
3119
3121
|
record: o.data,
|
|
3120
3122
|
searchValue: o.searchValue
|
|
@@ -3122,7 +3124,7 @@ const ho = { class: "cl-mb-2 cl-text-sm lg:cl-hidden" }, yo = { class: "cl-gap-1
|
|
|
3122
3124
|
]),
|
|
3123
3125
|
_: 2
|
|
3124
3126
|
}, 1032, ["column", "data", "time-zone", "search-value"])
|
|
3125
|
-
]) : (
|
|
3127
|
+
]) : (p(), G(wl, {
|
|
3126
3128
|
key: 1,
|
|
3127
3129
|
column: o.column,
|
|
3128
3130
|
data: o.data,
|
|
@@ -3130,7 +3132,7 @@ const ho = { class: "cl-mb-2 cl-text-sm lg:cl-hidden" }, yo = { class: "cl-gap-1
|
|
|
3130
3132
|
"search-value": o.searchValue
|
|
3131
3133
|
}, {
|
|
3132
3134
|
[o.column.name]: Y(() => [
|
|
3133
|
-
V(o.$slots, o.column.name, ce(
|
|
3135
|
+
V(o.$slots, o.column.name, ce(ve({ column: o.column, record: o.data, searchValue: o.searchValue })))
|
|
3134
3136
|
]),
|
|
3135
3137
|
_: 2
|
|
3136
3138
|
}, 1032, ["column", "data", "time-zone", "search-value"]))
|
|
@@ -3147,9 +3149,9 @@ const ho = { class: "cl-mb-2 cl-text-sm lg:cl-hidden" }, yo = { class: "cl-gap-1
|
|
|
3147
3149
|
},
|
|
3148
3150
|
emits: ["cell-focus", "cell-edit", "cell-undo", "row-select"],
|
|
3149
3151
|
setup(a) {
|
|
3150
|
-
return (e, l) => (
|
|
3151
|
-
(
|
|
3152
|
-
key:
|
|
3152
|
+
return (e, l) => (p(), y("tr", null, [
|
|
3153
|
+
(p(!0), y(X, null, se(e.columns, (t, n) => (p(), G(qo, {
|
|
3154
|
+
key: n,
|
|
3153
3155
|
data: e.data,
|
|
3154
3156
|
column: t,
|
|
3155
3157
|
"time-zone": e.timeZone,
|
|
@@ -3159,10 +3161,10 @@ const ho = { class: "cl-mb-2 cl-text-sm lg:cl-hidden" }, yo = { class: "cl-gap-1
|
|
|
3159
3161
|
onEdit: (c) => e.$emit("cell-edit", { field: t.field, value: c }),
|
|
3160
3162
|
onUndo: (c) => e.$emit("cell-undo", t.field)
|
|
3161
3163
|
}, al({ _: 2 }, [
|
|
3162
|
-
se(e.$slots, (c,
|
|
3163
|
-
name:
|
|
3164
|
+
se(e.$slots, (c, r) => ({
|
|
3165
|
+
name: r,
|
|
3164
3166
|
fn: Y((o) => [
|
|
3165
|
-
V(e.$slots,
|
|
3167
|
+
V(e.$slots, r, ce(ve(o)))
|
|
3166
3168
|
])
|
|
3167
3169
|
}))
|
|
3168
3170
|
]), 1032, ["data", "column", "time-zone", "search-value", "edit-mode", "onEdit", "onUndo"]))), 128))
|
|
@@ -3185,23 +3187,23 @@ const ho = { class: "cl-mb-2 cl-text-sm lg:cl-hidden" }, yo = { class: "cl-gap-1
|
|
|
3185
3187
|
},
|
|
3186
3188
|
emits: ["row-select", "row-edit", "clear-filters"],
|
|
3187
3189
|
setup(a, { emit: e }) {
|
|
3188
|
-
const l = a, { t } = ie(),
|
|
3190
|
+
const l = a, { t } = ie(), n = I({
|
|
3189
3191
|
index: -1,
|
|
3190
3192
|
record: {}
|
|
3191
3193
|
});
|
|
3192
3194
|
function c() {
|
|
3193
|
-
Object.keys(
|
|
3195
|
+
Object.keys(n.value.record).length !== 0 && (e("row-edit", ge(n.value)), n.value.record = {});
|
|
3194
3196
|
}
|
|
3195
|
-
function
|
|
3196
|
-
|
|
3197
|
+
function r(d) {
|
|
3198
|
+
n.value.index !== -1 && n.value.index !== d && c(), n.value.index = d;
|
|
3197
3199
|
}
|
|
3198
3200
|
function o(d, h) {
|
|
3199
|
-
|
|
3201
|
+
r(d), h.field !== void 0 && (n.value.record[h.field] = h.value);
|
|
3200
3202
|
}
|
|
3201
3203
|
function s(d) {
|
|
3202
3204
|
if (d !== void 0) {
|
|
3203
|
-
const { [d]: h, ...A } =
|
|
3204
|
-
|
|
3205
|
+
const { [d]: h, ...A } = n.value.record;
|
|
3206
|
+
n.value.record = {
|
|
3205
3207
|
...A
|
|
3206
3208
|
};
|
|
3207
3209
|
}
|
|
@@ -3231,11 +3233,11 @@ const ho = { class: "cl-mb-2 cl-text-sm lg:cl-hidden" }, yo = { class: "cl-gap-1
|
|
|
3231
3233
|
l.options.highlightRowSelection && (d == null || d.classList.toggle("!cl-bg-link-lighter"));
|
|
3232
3234
|
}
|
|
3233
3235
|
return oe(() => l.editMode, () => {
|
|
3234
|
-
l.editMode || (c(),
|
|
3236
|
+
l.editMode || (c(), n.value.index = -1);
|
|
3235
3237
|
}), (d, h) => {
|
|
3236
3238
|
var A;
|
|
3237
|
-
return
|
|
3238
|
-
d.data && ((A = d.data.results) != null && A.length) ? (
|
|
3239
|
+
return p(), y("tbody", null, [
|
|
3240
|
+
d.data && ((A = d.data.results) != null && A.length) ? (p(!0), y(X, { key: 0 }, se(d.data.results, (P, U) => (p(), G(Ro, {
|
|
3239
3241
|
key: U,
|
|
3240
3242
|
data: P,
|
|
3241
3243
|
columns: d.columns,
|
|
@@ -3251,7 +3253,7 @@ const ho = { class: "cl-mb-2 cl-text-sm lg:cl-hidden" }, yo = { class: "cl-gap-1
|
|
|
3251
3253
|
d.editMode || m(U, P, Z);
|
|
3252
3254
|
},
|
|
3253
3255
|
onCellFocus: (Z) => {
|
|
3254
|
-
|
|
3256
|
+
r(U);
|
|
3255
3257
|
},
|
|
3256
3258
|
onCellEdit: (Z) => {
|
|
3257
3259
|
o(U, Z);
|
|
@@ -3261,21 +3263,21 @@ const ho = { class: "cl-mb-2 cl-text-sm lg:cl-hidden" }, yo = { class: "cl-gap-1
|
|
|
3261
3263
|
se(d.$slots, (Z, ae) => ({
|
|
3262
3264
|
name: ae,
|
|
3263
3265
|
fn: Y((N) => [
|
|
3264
|
-
V(d.$slots, ae,
|
|
3266
|
+
V(d.$slots, ae, fe(N, { disabled: d.loading }))
|
|
3265
3267
|
])
|
|
3266
3268
|
}))
|
|
3267
|
-
]), 1032, ["data", "columns", "time-zone", "search-value", "edit-mode", "class", "onClick", "onCellFocus", "onCellEdit"]))), 128)) : d.loading ? j("", !0) : (
|
|
3269
|
+
]), 1032, ["data", "columns", "time-zone", "search-value", "edit-mode", "class", "onClick", "onCellFocus", "onCellEdit"]))), 128)) : d.loading ? j("", !0) : (p(), y("tr", Do, [
|
|
3268
3270
|
b("td", {
|
|
3269
3271
|
colspan: d.columns.length
|
|
3270
3272
|
}, [
|
|
3271
3273
|
b("div", jo, [
|
|
3272
3274
|
b("strong", Fo, q(v(t)("grid.noData")), 1),
|
|
3273
|
-
d.request.filters.some((P) => P.filterValue !== "") ? (
|
|
3275
|
+
d.request.filters.some((P) => P.filterValue !== "") ? (p(), y("div", Mo, [
|
|
3274
3276
|
b("div", Vo, q(v(t)("grid.noDataFiltersPresent")), 1),
|
|
3275
3277
|
S(be, {
|
|
3276
3278
|
size: "small",
|
|
3277
3279
|
colour: "danger",
|
|
3278
|
-
onClick: h[0] || (h[0] =
|
|
3280
|
+
onClick: h[0] || (h[0] = ne((P) => d.$emit("clear-filters"), ["prevent"]))
|
|
3279
3281
|
}, {
|
|
3280
3282
|
default: Y(() => [
|
|
3281
3283
|
de(q(v(t)("grid.clearFilters")), 1)
|
|
@@ -3292,7 +3294,7 @@ const ho = { class: "cl-mb-2 cl-text-sm lg:cl-hidden" }, yo = { class: "cl-gap-1
|
|
|
3292
3294
|
}), Po = {
|
|
3293
3295
|
key: 0,
|
|
3294
3296
|
class: "cl-flex cl-flex-wrap cl-justify-end cl-mt-2 cl-w-full"
|
|
3295
|
-
}, Uo = { class: "cl-bg-off-white cl-border cl-border-grey-1 cl-flex cl-items-center cl-mb-2 cl-px-3 cl-rounded-lg cl-shadow-md cl-text-sm cl-w-full lg:cl-w-auto" }, Bo = { class: "cl-text-grey-3 cl-w-max" }, zo = { class: "cl-bg-off-white cl-border cl-border-grey-1 cl-flex cl-flex-wrap cl-items-center cl-mb-2 cl-px-3 cl-py-2 cl-rounded-lg cl-shadow-md cl-text-sm cl-w-full lg:cl-ml-2 lg:cl-w-auto mb:cl-flex-nowrap" }, _o = { class: "cl-flex cl-flex-wrap cl-mb-2 cl-text-sm cl-w-full lg:cl-p-2 md:cl-mb-0 md:cl-w-auto" }, xo = { class: "cl-flex cl-flex-wrap cl-mb-2 cl-w-full lg:cl-mb-0 lg:cl-mr-2 lg:cl-w-auto" }, Ho = { class: "cl-text-grey-3 cl-w-full lg:cl-mr-2 lg:cl-w-auto" }, Go = { class: "cl-flex cl-flex-wrap cl-text-sm mb:cl-flex-nowrap" }, Zo = { class: "cl-pr-2" }, Ko = ["onClick"], Qo = { class: "cl-flex cl-flex-wrap cl-mb-2 cl-text-sm cl-w-full lg:cl-p-2 md:cl-mb-0 md:cl-w-auto" }, Wo = { class: "cl-mb-2 cl-text-grey-3 cl-w-full lg:cl-mb-0 lg:cl-mr-2 lg:cl-w-auto" }, Yo = ["onClick"], Jo = { class: "cl-mb-2 cl-w-full lg:cl-p-2 md:cl-mb-0 md:cl-w-auto" }, Xo = { class: "cl-block cl-mb-2 cl-text-grey-3 cl-w-full lg:cl-inline-block lg:cl-mb-0 lg:cl-mr-1 lg:cl-w-auto" },
|
|
3297
|
+
}, Uo = { class: "cl-bg-off-white cl-border cl-border-grey-1 cl-flex cl-items-center cl-mb-2 cl-px-3 cl-rounded-lg cl-shadow-md cl-text-sm cl-w-full lg:cl-w-auto" }, Bo = { class: "cl-text-grey-3 cl-w-max" }, zo = { class: "cl-bg-off-white cl-border cl-border-grey-1 cl-flex cl-flex-wrap cl-items-center cl-mb-2 cl-px-3 cl-py-2 cl-rounded-lg cl-shadow-md cl-text-sm cl-w-full lg:cl-ml-2 lg:cl-w-auto mb:cl-flex-nowrap" }, _o = { class: "cl-flex cl-flex-wrap cl-mb-2 cl-text-sm cl-w-full lg:cl-p-2 md:cl-mb-0 md:cl-w-auto" }, xo = { class: "cl-flex cl-flex-wrap cl-mb-2 cl-w-full lg:cl-mb-0 lg:cl-mr-2 lg:cl-w-auto" }, Ho = { class: "cl-text-grey-3 cl-w-full lg:cl-mr-2 lg:cl-w-auto" }, Go = { class: "cl-flex cl-flex-wrap cl-text-sm mb:cl-flex-nowrap" }, Zo = { class: "cl-pr-2" }, Ko = ["onClick"], Qo = { class: "cl-flex cl-flex-wrap cl-mb-2 cl-text-sm cl-w-full lg:cl-p-2 md:cl-mb-0 md:cl-w-auto" }, Wo = { class: "cl-mb-2 cl-text-grey-3 cl-w-full lg:cl-mb-0 lg:cl-mr-2 lg:cl-w-auto" }, Yo = ["onClick"], Jo = { class: "cl-mb-2 cl-w-full lg:cl-p-2 md:cl-mb-0 md:cl-w-auto" }, Xo = { class: "cl-block cl-mb-2 cl-text-grey-3 cl-w-full lg:cl-inline-block lg:cl-mb-0 lg:cl-mr-1 lg:cl-w-auto" }, en = { class: "cl-block lg:cl-inline-block" }, ln = /* @__PURE__ */ Q({
|
|
3296
3298
|
__name: "cl-ui-grid-footer",
|
|
3297
3299
|
props: {
|
|
3298
3300
|
request: {},
|
|
@@ -3303,10 +3305,10 @@ const ho = { class: "cl-mb-2 cl-text-sm lg:cl-hidden" }, yo = { class: "cl-gap-1
|
|
|
3303
3305
|
"update:request": null
|
|
3304
3306
|
},
|
|
3305
3307
|
setup(a, { emit: e }) {
|
|
3306
|
-
const l = a, { n: t, t:
|
|
3308
|
+
const l = a, { n: t, t: n } = ie(), c = R(() => {
|
|
3307
3309
|
var d;
|
|
3308
3310
|
return l.data !== null ? Math.ceil((((d = l.data) == null ? void 0 : d.totalRecords) ?? 0) / l.request.pageSize) : 1;
|
|
3309
|
-
}),
|
|
3311
|
+
}), r = R(() => {
|
|
3310
3312
|
const d = Array.from(Array(c.value + 1).keys());
|
|
3311
3313
|
let h = [];
|
|
3312
3314
|
if (d.shift(), d.length) {
|
|
@@ -3338,9 +3340,9 @@ const ho = { class: "cl-mb-2 cl-text-sm lg:cl-hidden" }, yo = { class: "cl-gap-1
|
|
|
3338
3340
|
const k = ol(s, 750);
|
|
3339
3341
|
return (d, h) => {
|
|
3340
3342
|
var A, P;
|
|
3341
|
-
return (P = (A = d.data) == null ? void 0 : A.results) != null && P.length && d.request ? (
|
|
3343
|
+
return (P = (A = d.data) == null ? void 0 : A.results) != null && P.length && d.request ? (p(), y("div", Po, [
|
|
3342
3344
|
b("div", Uo, [
|
|
3343
|
-
b("span", Bo, q(v(
|
|
3345
|
+
b("span", Bo, q(v(n)("grid.jumpToPage")), 1),
|
|
3344
3346
|
S(me, {
|
|
3345
3347
|
"model-value": d.request.pageNumber,
|
|
3346
3348
|
class: "cl-ml-1 cl-mt-0.5 cl-text-sm",
|
|
@@ -3355,7 +3357,7 @@ const ho = { class: "cl-mb-2 cl-text-sm lg:cl-hidden" }, yo = { class: "cl-gap-1
|
|
|
3355
3357
|
b("div", zo, [
|
|
3356
3358
|
b("div", _o, [
|
|
3357
3359
|
b("li", xo, [
|
|
3358
|
-
b("span", Ho, q(v(
|
|
3360
|
+
b("span", Ho, q(v(n)("grid.page")), 1)
|
|
3359
3361
|
]),
|
|
3360
3362
|
b("ul", Go, [
|
|
3361
3363
|
b("li", Zo, q(v(t)(d.request.pageNumber, v(ue).INTEGER)) + " / " + q(v(t)(c.value, v(ue).INTEGER)), 1),
|
|
@@ -3381,7 +3383,7 @@ const ho = { class: "cl-mb-2 cl-text-sm lg:cl-hidden" }, yo = { class: "cl-gap-1
|
|
|
3381
3383
|
], 512), [
|
|
3382
3384
|
[te, d.request.pageNumber > 1]
|
|
3383
3385
|
]),
|
|
3384
|
-
(
|
|
3386
|
+
(p(!0), y(X, null, se(r.value, (U, Z) => (p(), y("li", {
|
|
3385
3387
|
key: Z,
|
|
3386
3388
|
class: M(["cl-cursor-pointer cl-mr-1 lg:cl-mr-2", {
|
|
3387
3389
|
"cl-text-black cl-font-bold": d.request.pageNumber === U,
|
|
@@ -3414,8 +3416,8 @@ const ho = { class: "cl-mb-2 cl-text-sm lg:cl-hidden" }, yo = { class: "cl-gap-1
|
|
|
3414
3416
|
])
|
|
3415
3417
|
]),
|
|
3416
3418
|
b("ul", Qo, [
|
|
3417
|
-
b("li", Wo, q(v(
|
|
3418
|
-
(
|
|
3419
|
+
b("li", Wo, q(v(n)("grid.pageSize")), 1),
|
|
3420
|
+
(p(), y(X, null, se(i, (U, Z) => b("li", {
|
|
3419
3421
|
key: Z,
|
|
3420
3422
|
class: M(["cl-cursor-pointer cl-mr-1 lg:cl-mr-2", {
|
|
3421
3423
|
"cl-text-black cl-font-bold": d.request.pageSize === U,
|
|
@@ -3425,14 +3427,14 @@ const ho = { class: "cl-mb-2 cl-text-sm lg:cl-hidden" }, yo = { class: "cl-gap-1
|
|
|
3425
3427
|
}, q(v(t)(U, v(ue).INTEGER)), 11, Yo)), 64))
|
|
3426
3428
|
]),
|
|
3427
3429
|
b("ul", Jo, [
|
|
3428
|
-
b("li", Xo, q(v(
|
|
3429
|
-
b("li",
|
|
3430
|
+
b("li", Xo, q(v(n)("grid.totalRecords")), 1),
|
|
3431
|
+
b("li", en, q(v(t)(d.data.totalRecords, v(ue).INTEGER)), 1)
|
|
3430
3432
|
])
|
|
3431
3433
|
])
|
|
3432
3434
|
])) : j("", !0);
|
|
3433
3435
|
};
|
|
3434
3436
|
}
|
|
3435
|
-
}),
|
|
3437
|
+
}), tn = [
|
|
3436
3438
|
"string",
|
|
3437
3439
|
"boolean",
|
|
3438
3440
|
"number",
|
|
@@ -3445,7 +3447,7 @@ const ho = { class: "cl-mb-2 cl-text-sm lg:cl-hidden" }, yo = { class: "cl-gap-1
|
|
|
3445
3447
|
function Ml(a) {
|
|
3446
3448
|
return typeof a.caption == "string" && typeof a.name == "string" && typeof a.type == "string";
|
|
3447
3449
|
}
|
|
3448
|
-
function
|
|
3450
|
+
function an(a) {
|
|
3449
3451
|
let e = Array.isArray(a);
|
|
3450
3452
|
if (e) {
|
|
3451
3453
|
for (const l of a)
|
|
@@ -3456,12 +3458,12 @@ function ar(a) {
|
|
|
3456
3458
|
}
|
|
3457
3459
|
return e;
|
|
3458
3460
|
}
|
|
3459
|
-
const
|
|
3461
|
+
const on = [
|
|
3460
3462
|
"ellipsis",
|
|
3461
3463
|
"wrap-text"
|
|
3462
3464
|
];
|
|
3463
3465
|
var ee = /* @__PURE__ */ ((a) => (a[a.CONTAINS = 0] = "CONTAINS", a[a.NOT_CONTAINS = 1] = "NOT_CONTAINS", a[a.EQUAL = 2] = "EQUAL", a[a.NOT_EQUAL = 3] = "NOT_EQUAL", a[a.STARTS_WITH = 4] = "STARTS_WITH", a[a.ENDS_WITH = 5] = "ENDS_WITH", a[a.GREATER_THAN = 6] = "GREATER_THAN", a[a.LESS_THAN = 7] = "LESS_THAN", a[a.EQUAL_OR_GREATER_THAN = 8] = "EQUAL_OR_GREATER_THAN", a[a.EQUAL_OR_LESS_THAN = 9] = "EQUAL_OR_LESS_THAN", a[a.AND_CONTAINS = 10] = "AND_CONTAINS", a))(ee || {});
|
|
3464
|
-
const
|
|
3466
|
+
const nn = [
|
|
3465
3467
|
"equal",
|
|
3466
3468
|
"notequal",
|
|
3467
3469
|
"contains",
|
|
@@ -3474,24 +3476,24 @@ const rr = [
|
|
|
3474
3476
|
"equalorgreaterthan",
|
|
3475
3477
|
"andcontains"
|
|
3476
3478
|
];
|
|
3477
|
-
function
|
|
3479
|
+
function rn(a) {
|
|
3478
3480
|
return typeof a.filterOnColumn == "string" && typeof a.filterOperation == "number" && typeof a.filterValue == "string";
|
|
3479
3481
|
}
|
|
3480
|
-
function
|
|
3482
|
+
function sn(a) {
|
|
3481
3483
|
return a === null || typeof a.sortByAscending == "boolean" && typeof a.sortOnColumn == "string";
|
|
3482
3484
|
}
|
|
3483
|
-
function
|
|
3484
|
-
let e = typeof a.filters == "object" && Array.isArray(a.filters) && typeof a.pageNumber == "number" && typeof a.pageSize == "number" && typeof a.sort == "object" &&
|
|
3485
|
+
function cn(a) {
|
|
3486
|
+
let e = typeof a.filters == "object" && Array.isArray(a.filters) && typeof a.pageNumber == "number" && typeof a.pageSize == "number" && typeof a.sort == "object" && sn(a.sort);
|
|
3485
3487
|
if (e) {
|
|
3486
3488
|
for (const l of a.filters)
|
|
3487
|
-
if (!
|
|
3489
|
+
if (!rn(l)) {
|
|
3488
3490
|
e = !1;
|
|
3489
3491
|
break;
|
|
3490
3492
|
}
|
|
3491
3493
|
}
|
|
3492
3494
|
return e;
|
|
3493
3495
|
}
|
|
3494
|
-
function
|
|
3496
|
+
function un(a, e) {
|
|
3495
3497
|
let l = typeof a.results == "object" && Array.isArray(a.results) && typeof a.totalRecords == "number";
|
|
3496
3498
|
if (l) {
|
|
3497
3499
|
for (const t of a.results)
|
|
@@ -3502,7 +3504,7 @@ function cr(a, e) {
|
|
|
3502
3504
|
}
|
|
3503
3505
|
return l;
|
|
3504
3506
|
}
|
|
3505
|
-
const
|
|
3507
|
+
const dn = {
|
|
3506
3508
|
method: "equal",
|
|
3507
3509
|
icon: "mdi:equal",
|
|
3508
3510
|
description: "Equals",
|
|
@@ -3515,12 +3517,12 @@ const ur = {
|
|
|
3515
3517
|
"list"
|
|
3516
3518
|
],
|
|
3517
3519
|
key: "equal"
|
|
3518
|
-
},
|
|
3520
|
+
}, fn = {
|
|
3519
3521
|
method: "contains",
|
|
3520
3522
|
icon: "mdi:format-letter-matches",
|
|
3521
3523
|
description: "Contains",
|
|
3522
3524
|
allowedTypes: ["string"]
|
|
3523
|
-
},
|
|
3525
|
+
}, pn = {
|
|
3524
3526
|
method: "lessthan",
|
|
3525
3527
|
icon: "mdi:less-than",
|
|
3526
3528
|
description: "Before",
|
|
@@ -3530,7 +3532,7 @@ const ur = {
|
|
|
3530
3532
|
],
|
|
3531
3533
|
key: "before"
|
|
3532
3534
|
}, kl = [
|
|
3533
|
-
|
|
3535
|
+
fn,
|
|
3534
3536
|
{
|
|
3535
3537
|
method: "notcontains",
|
|
3536
3538
|
icon: "mdi:format-letter-spacing-variant",
|
|
@@ -3549,7 +3551,7 @@ const ur = {
|
|
|
3549
3551
|
description: "Ends with",
|
|
3550
3552
|
allowedTypes: ["string"]
|
|
3551
3553
|
},
|
|
3552
|
-
|
|
3554
|
+
dn,
|
|
3553
3555
|
{
|
|
3554
3556
|
method: "notequal",
|
|
3555
3557
|
icon: "mdi:not-equal",
|
|
@@ -3562,7 +3564,7 @@ const ur = {
|
|
|
3562
3564
|
],
|
|
3563
3565
|
key: "notequal"
|
|
3564
3566
|
},
|
|
3565
|
-
|
|
3567
|
+
pn,
|
|
3566
3568
|
{
|
|
3567
3569
|
method: "greaterthan",
|
|
3568
3570
|
icon: "mdi:greater-than",
|
|
@@ -3617,17 +3619,18 @@ const ur = {
|
|
|
3617
3619
|
description: "Less than",
|
|
3618
3620
|
allowedTypes: ["number"]
|
|
3619
3621
|
}
|
|
3620
|
-
],
|
|
3622
|
+
], mn = { class: "cl-group cl-inline cl-relative cl-w-auto" }, vn = { class: "cl-bg-off-white cl-border-grey-1 cl-border-r cl-flex cl-h-full cl-items-center cl-justify-center cl-rounded-md cl-w-10" }, gn = { class: "cl-p-2 cl-select-none" }, bn = ["onClick"], hn = /* @__PURE__ */ Q({
|
|
3621
3623
|
__name: "cl-ui-grid-method-selector",
|
|
3622
3624
|
props: {
|
|
3623
3625
|
filter: {},
|
|
3624
3626
|
column: {},
|
|
3625
3627
|
defaultOperation: {},
|
|
3628
|
+
loading: { type: Boolean },
|
|
3626
3629
|
firstHalf: { type: Boolean, default: !0 }
|
|
3627
3630
|
},
|
|
3628
3631
|
emits: ["update:filter"],
|
|
3629
3632
|
setup(a, { emit: e }) {
|
|
3630
|
-
const l = a, { t } = ie(),
|
|
3633
|
+
const l = a, { t } = ie(), n = R(() => {
|
|
3631
3634
|
let o = [];
|
|
3632
3635
|
return l.column.type !== "slot" ? o = kl.filter((s) => s.allowedTypes.includes(l.column.type)) : typeof l.column.slotType < "u" && typeof l.column.field < "u" && (o = kl.filter((s) => s.allowedTypes.includes(l.column.slotType))), l.column.type === "date" || l.column.type === "datetime" || l.column.slotType === "date" || l.column.slotType === "datetime" ? o.forEach((s) => {
|
|
3633
3636
|
s.description = t(`grid.${s.key}`);
|
|
@@ -3637,12 +3640,12 @@ const ur = {
|
|
|
3637
3640
|
}), c = R(() => {
|
|
3638
3641
|
var s;
|
|
3639
3642
|
let o = (s = l.filter) == null ? void 0 : s.filterMethod;
|
|
3640
|
-
return typeof o > "u" && (o = ee[l.defaultOperation].replace("_", "").toLowerCase()),
|
|
3643
|
+
return typeof o > "u" && (o = ee[l.defaultOperation].replace("_", "").toLowerCase()), n.value.find((i) => {
|
|
3641
3644
|
var m;
|
|
3642
3645
|
return i.method.toLowerCase() === ((m = o == null ? void 0 : o.removeNonAlphanumeric()) == null ? void 0 : m.toLowerCase());
|
|
3643
3646
|
});
|
|
3644
3647
|
});
|
|
3645
|
-
function
|
|
3648
|
+
function r(o) {
|
|
3646
3649
|
let s;
|
|
3647
3650
|
if (l.filter)
|
|
3648
3651
|
s = ge(l.filter), s.filterOperation = ee[o.toUpperCase()], s.filterMethod = o.toLowerCase();
|
|
@@ -3657,9 +3660,9 @@ const ur = {
|
|
|
3657
3660
|
return;
|
|
3658
3661
|
e("update:filter", s);
|
|
3659
3662
|
}
|
|
3660
|
-
return (o, s) => (
|
|
3661
|
-
b("div",
|
|
3662
|
-
c.value ? (
|
|
3663
|
+
return (o, s) => (p(), y("div", mn, [
|
|
3664
|
+
b("div", vn, [
|
|
3665
|
+
c.value ? (p(), G(v(x), {
|
|
3663
3666
|
key: 0,
|
|
3664
3667
|
icon: c.value.icon,
|
|
3665
3668
|
class: M(["cl-text-lg", {
|
|
@@ -3669,37 +3672,39 @@ const ur = {
|
|
|
3669
3672
|
}, null, 8, ["icon", "class"])) : j("", !0)
|
|
3670
3673
|
]),
|
|
3671
3674
|
b("div", {
|
|
3672
|
-
class: M(["cl-absolute cl-bg-white cl-border cl-border-grey-0 cl-flex-wrap cl-font-normal cl-h-0 cl-hidden cl-rounded cl-shadow-lg cl-text-left cl-text-xs cl-top-8 cl-z-10
|
|
3675
|
+
class: M(["cl-absolute cl-bg-white cl-border cl-border-grey-0 cl-flex-wrap cl-font-normal cl-h-0 cl-hidden cl-rounded cl-shadow-lg cl-text-left cl-text-xs cl-top-8 cl-z-10", {
|
|
3676
|
+
"group-hover:cl-flex group-hover:cl-h-auto group-hover:cl-w-52": o.loading === !1,
|
|
3673
3677
|
"cl-left-0": o.firstHalf,
|
|
3674
3678
|
"cl--left-44": !o.firstHalf
|
|
3675
3679
|
}])
|
|
3676
3680
|
}, [
|
|
3677
|
-
b("strong",
|
|
3678
|
-
(
|
|
3681
|
+
b("strong", gn, q(v(t)("grid.availableMethods")), 1),
|
|
3682
|
+
(p(!0), y(X, null, se(n.value, (i, m) => {
|
|
3679
3683
|
var k;
|
|
3680
|
-
return
|
|
3684
|
+
return p(), y("span", {
|
|
3681
3685
|
key: m,
|
|
3682
3686
|
class: M(["cl-cursor-pointer cl-px-4 cl-py-1 cl-transition-colors cl-w-full hover:cl-bg-grey-0", {
|
|
3683
3687
|
"cl-bg-primary-default cl-opacity-80": i.method === ((k = c.value) == null ? void 0 : k.method)
|
|
3684
3688
|
}]),
|
|
3685
|
-
onClick:
|
|
3689
|
+
onClick: ne((d) => r(i.method), ["prevent"])
|
|
3686
3690
|
}, [
|
|
3687
3691
|
de(q(i.description) + " ", 1),
|
|
3688
3692
|
S(v(x), {
|
|
3689
3693
|
icon: i.icon,
|
|
3690
3694
|
class: "cl-float-right cl-text-grey-4 cl-text-sm"
|
|
3691
3695
|
}, null, 8, ["icon"])
|
|
3692
|
-
], 10,
|
|
3696
|
+
], 10, bn);
|
|
3693
3697
|
}), 128))
|
|
3694
3698
|
], 2)
|
|
3695
3699
|
]));
|
|
3696
3700
|
}
|
|
3697
|
-
}),
|
|
3701
|
+
}), yn = {
|
|
3698
3702
|
key: 0,
|
|
3699
3703
|
class: "cl-border cl-border-grey-2 cl-flex cl-overflow-hidden cl-rounded-md lg:cl-overflow-visible"
|
|
3700
|
-
},
|
|
3704
|
+
}, wn = ["disabled"], kn = /* @__PURE__ */ b("option", { value: void 0 }, null, -1), Tn = ["selected"], $n = ["selected"], Cn = ["disabled"], On = /* @__PURE__ */ b("option", { value: void 0 }, null, -1), Sn = ["value", "selected"], Nn = /* @__PURE__ */ Q({
|
|
3701
3705
|
__name: "cl-ui-grid-filter",
|
|
3702
3706
|
props: {
|
|
3707
|
+
loading: { type: Boolean },
|
|
3703
3708
|
filter: {},
|
|
3704
3709
|
column: {},
|
|
3705
3710
|
timeZone: {},
|
|
@@ -3708,41 +3713,41 @@ const ur = {
|
|
|
3708
3713
|
},
|
|
3709
3714
|
emits: ["update:filter"],
|
|
3710
3715
|
setup(a, { emit: e }) {
|
|
3711
|
-
const l = a, { locale: t, t:
|
|
3716
|
+
const l = a, { locale: t, t: n } = ie();
|
|
3712
3717
|
function c() {
|
|
3713
3718
|
return l.column.type === "string" || l.column.slotType === "string" ? ee.CONTAINS : l.column.type === "datetime" || l.column.slotType === "datetime" || l.column.type === "date" || l.column.slotType === "date" ? ee.LESS_THAN : ee.EQUAL;
|
|
3714
3719
|
}
|
|
3715
|
-
const
|
|
3720
|
+
const r = R({
|
|
3716
3721
|
get: () => l.filter,
|
|
3717
|
-
set: (
|
|
3722
|
+
set: (f) => e("update:filter", f)
|
|
3718
3723
|
}), o = R(() => l.column.type === "date" || l.column.type === "datetime" || l.column.type === "slot" && (l.column.slotType === "date" || l.column.slotType === "datetime")), s = R(() => l.column.type === "dateRange" || l.column.type === "slot" && l.column.slotType === "dateRange"), i = R(() => l.column.type === "list" || l.column.type === "slot" && l.column.slotType === "list"), m = R(() => i.value && l.column.listType === "number"), k = R({
|
|
3719
3724
|
get() {
|
|
3720
3725
|
var O, $, _, z, T, w, E;
|
|
3721
|
-
let
|
|
3722
|
-
if (
|
|
3726
|
+
let f = (O = r.value) == null ? void 0 : O[0];
|
|
3727
|
+
if (f) {
|
|
3723
3728
|
if (o.value) {
|
|
3724
3729
|
if (((($ = l.filter) == null ? void 0 : $.length) ?? 0) > 1) {
|
|
3725
|
-
const L = (_ =
|
|
3726
|
-
L && C && (
|
|
3730
|
+
const L = (_ = r.value) == null ? void 0 : _.find((D) => D.filterOperation === ee.EQUAL_OR_GREATER_THAN), C = (z = r.value) == null ? void 0 : z.find((D) => D.filterOperation === ee.LESS_THAN);
|
|
3731
|
+
L && C && (f = {
|
|
3727
3732
|
filterOnColumn: l.column.field,
|
|
3728
3733
|
filterOperation: ee.EQUAL,
|
|
3729
3734
|
filterMethod: "equal",
|
|
3730
3735
|
filterValue: L.filterValue
|
|
3731
3736
|
});
|
|
3732
|
-
} else if (
|
|
3733
|
-
let L = H.fromISO(
|
|
3737
|
+
} else if (f.filterOperation === ee.EQUAL_OR_LESS_THAN || f.filterOperation === ee.GREATER_THAN) {
|
|
3738
|
+
let L = H.fromISO(f.filterValue, {
|
|
3734
3739
|
zone: l.timeZone ?? "UTC"
|
|
3735
3740
|
});
|
|
3736
|
-
l.column.type === "date" || l.column.type === "slot" && l.column.slotType === "date" ? L = L.minus({ days: 1 }) : L = L.minus({ minutes: 1 }),
|
|
3741
|
+
l.column.type === "date" || l.column.type === "slot" && l.column.slotType === "date" ? L = L.minus({ days: 1 }) : L = L.minus({ minutes: 1 }), f = {
|
|
3737
3742
|
filterOnColumn: l.column.field,
|
|
3738
|
-
filterOperation:
|
|
3739
|
-
filterMethod:
|
|
3743
|
+
filterOperation: f.filterOperation,
|
|
3744
|
+
filterMethod: f.filterOperation === ee.EQUAL_OR_LESS_THAN ? "equalorlessthan" : "greaterthan",
|
|
3740
3745
|
filterValue: L.plus({ milliseconds: 1 }).toISO() ?? ""
|
|
3741
3746
|
};
|
|
3742
3747
|
}
|
|
3743
3748
|
} else if (s.value && (((T = l.filter) == null ? void 0 : T.length) ?? 0) > 1) {
|
|
3744
|
-
const L = (w =
|
|
3745
|
-
L && C && (
|
|
3749
|
+
const L = (w = r.value) == null ? void 0 : w.find((D) => D.filterOperation === ee.EQUAL_OR_GREATER_THAN), C = (E = r.value) == null ? void 0 : E.find((D) => D.filterOperation === ee.EQUAL_OR_LESS_THAN);
|
|
3750
|
+
L && C && (f = {
|
|
3746
3751
|
filterOnColumn: l.column.field,
|
|
3747
3752
|
filterOperation: ee.EQUAL,
|
|
3748
3753
|
filterMethod: "equal",
|
|
@@ -3753,12 +3758,12 @@ const ur = {
|
|
|
3753
3758
|
});
|
|
3754
3759
|
}
|
|
3755
3760
|
}
|
|
3756
|
-
return
|
|
3761
|
+
return f;
|
|
3757
3762
|
},
|
|
3758
|
-
set(
|
|
3763
|
+
set(f) {
|
|
3759
3764
|
let O = null;
|
|
3760
3765
|
if (o.value) {
|
|
3761
|
-
const $ =
|
|
3766
|
+
const $ = f, _ = ($ == null ? void 0 : $.filterMethod) && h($.filterMethod, $.filterValue, "equal"), z = ($ == null ? void 0 : $.filterMethod) && h($.filterMethod, $.filterValue, "equalorlessthan"), T = ($ == null ? void 0 : $.filterMethod) && h($.filterMethod, $.filterValue, "greaterthan");
|
|
3762
3767
|
if (_) {
|
|
3763
3768
|
let w = H.fromISO($.filterValue, {
|
|
3764
3769
|
zone: l.timeZone ?? "UTC"
|
|
@@ -3793,8 +3798,8 @@ const ur = {
|
|
|
3793
3798
|
}
|
|
3794
3799
|
];
|
|
3795
3800
|
}
|
|
3796
|
-
} else if (s.value && (
|
|
3797
|
-
const $ =
|
|
3801
|
+
} else if (s.value && (f != null && f.filterValue)) {
|
|
3802
|
+
const $ = f.filterValue, _ = H.fromISO($.start, {
|
|
3798
3803
|
zone: l.timeZone ?? "UTC"
|
|
3799
3804
|
}).toISO(), z = H.fromISO($.end, {
|
|
3800
3805
|
zone: l.timeZone ?? "UTC"
|
|
@@ -3815,31 +3820,31 @@ const ur = {
|
|
|
3815
3820
|
];
|
|
3816
3821
|
}
|
|
3817
3822
|
if (O === null) {
|
|
3818
|
-
const $ =
|
|
3823
|
+
const $ = f;
|
|
3819
3824
|
O = $ && [$];
|
|
3820
3825
|
}
|
|
3821
3826
|
if (O && (o.value || s.value))
|
|
3822
3827
|
for (const $ of O)
|
|
3823
3828
|
l.timeZone ? $.filterValue = H.fromISO($.filterValue).setZone("UTC").toISO() ?? "" : $.filterValue = $.filterValue.replace("Z", "");
|
|
3824
|
-
|
|
3829
|
+
r.value = O;
|
|
3825
3830
|
}
|
|
3826
3831
|
}), d = R({
|
|
3827
3832
|
get: () => k.value,
|
|
3828
|
-
set(
|
|
3829
|
-
k.value =
|
|
3833
|
+
set(f) {
|
|
3834
|
+
k.value = f;
|
|
3830
3835
|
}
|
|
3831
3836
|
});
|
|
3832
|
-
function h(
|
|
3833
|
-
return O !== void 0 && O !== "" &&
|
|
3837
|
+
function h(f, O, $) {
|
|
3838
|
+
return O !== void 0 && O !== "" && f === $ && o.value;
|
|
3834
3839
|
}
|
|
3835
3840
|
const A = R(() => {
|
|
3836
|
-
var
|
|
3837
|
-
return ((
|
|
3838
|
-
}), P = R(() => A.value === "" ? null : A.value), U = R(() => A.value === "" ? null : A.value), Z = R(() => Intl.NumberFormat(t.value).format(1.1).replace(/[0-9]+/g, "")), ae = R(() =>
|
|
3839
|
-
function N(
|
|
3841
|
+
var f;
|
|
3842
|
+
return ((f = k.value) == null ? void 0 : f.filterValue) ?? "";
|
|
3843
|
+
}), P = R(() => A.value === "" ? null : A.value), U = R(() => A.value === "" ? null : A.value), Z = R(() => Intl.NumberFormat(t.value).format(1.1).replace(/[0-9]+/g, "")), ae = R(() => rl(l.column));
|
|
3844
|
+
function N(f, O) {
|
|
3840
3845
|
var T;
|
|
3841
3846
|
let $, _ = !1;
|
|
3842
|
-
const z = ((
|
|
3847
|
+
const z = ((f == null ? void 0 : f.value) ?? O).trim();
|
|
3843
3848
|
if (k.value)
|
|
3844
3849
|
_ = ((T = k.value) == null ? void 0 : T.filterValue) === z, $ = ge(d.value), $.filterValue = z;
|
|
3845
3850
|
else if (z !== "" && typeof l.column.field < "u") {
|
|
@@ -3854,139 +3859,147 @@ const ur = {
|
|
|
3854
3859
|
return;
|
|
3855
3860
|
_ === !1 && (k.value = $);
|
|
3856
3861
|
}
|
|
3857
|
-
function B(
|
|
3858
|
-
let $, _ = (
|
|
3862
|
+
function B(f, O) {
|
|
3863
|
+
let $, _ = (f == null ? void 0 : f.value) ?? O ?? 0;
|
|
3859
3864
|
l.column.format === ue.INTEGER ? (typeof _ == "string" && (_ = parseInt(_)), $ = Math.round(_)) : (typeof _ == "string" && (_ = parseFloat(_.replace(Z.value, "."))), $ = _), N(null, isNaN($) ? "" : $.toString());
|
|
3860
3865
|
}
|
|
3861
|
-
function u(
|
|
3866
|
+
function u(f) {
|
|
3862
3867
|
var _;
|
|
3863
3868
|
let O, $ = !1;
|
|
3864
3869
|
if (k.value)
|
|
3865
|
-
$ = ((_ = k.value) == null ? void 0 : _.filterValue) ===
|
|
3866
|
-
else if (
|
|
3870
|
+
$ = ((_ = k.value) == null ? void 0 : _.filterValue) === f, O = ge(k.value), O.filterValue = f ?? "";
|
|
3871
|
+
else if (f !== null && typeof l.column.field < "u") {
|
|
3867
3872
|
const z = c();
|
|
3868
3873
|
O = {
|
|
3869
3874
|
filterOnColumn: l.column.field,
|
|
3870
3875
|
filterMethod: ee[z].replace("_", "").toLowerCase(),
|
|
3871
3876
|
filterOperation: z,
|
|
3872
|
-
filterValue:
|
|
3877
|
+
filterValue: f
|
|
3873
3878
|
};
|
|
3874
3879
|
} else
|
|
3875
3880
|
return;
|
|
3876
3881
|
$ === !1 && (k.value = O);
|
|
3877
3882
|
}
|
|
3878
|
-
return (
|
|
3879
|
-
|
|
3883
|
+
return (f, O) => ae.value ? (p(), y("div", yn, [
|
|
3884
|
+
f.column.type === "boolean" || f.column.type === "slot" && f.column.slotType === "boolean" ? (p(), y("select", {
|
|
3880
3885
|
key: 0,
|
|
3886
|
+
disabled: f.loading,
|
|
3881
3887
|
class: "!cl-h-[2rem] cl-bg-white cl-border-none cl-mb-0 cl-rounded-md cl-w-full",
|
|
3882
3888
|
onChange: O[0] || (O[0] = ($) => N($.target))
|
|
3883
3889
|
}, [
|
|
3884
|
-
|
|
3890
|
+
kn,
|
|
3885
3891
|
b("option", {
|
|
3886
3892
|
value: "true",
|
|
3887
3893
|
selected: A.value === "true"
|
|
3888
|
-
}, q(v(
|
|
3894
|
+
}, q(v(n)("grid.true")), 9, Tn),
|
|
3889
3895
|
b("option", {
|
|
3890
3896
|
value: "false",
|
|
3891
3897
|
selected: A.value === "false"
|
|
3892
|
-
}, q(v(
|
|
3893
|
-
],
|
|
3898
|
+
}, q(v(n)("grid.false")), 9, $n)
|
|
3899
|
+
], 40, wn)) : o.value ? (p(), G(me, {
|
|
3894
3900
|
key: 1,
|
|
3895
3901
|
"model-value": P.value,
|
|
3896
3902
|
class: "!cl-h-[2rem] !cl-text-xs cl-border-none cl-mb-0 cl-w-full lg:!cl-text-base",
|
|
3897
|
-
|
|
3903
|
+
disabled: f.loading,
|
|
3904
|
+
label: f.column.caption,
|
|
3898
3905
|
"show-label": !1,
|
|
3899
|
-
"input-type":
|
|
3900
|
-
"time-zone":
|
|
3906
|
+
"input-type": f.column.type === "slot" ? f.column.slotType : f.column.type,
|
|
3907
|
+
"time-zone": f.timeZone,
|
|
3901
3908
|
"onUpdate:modelValue": O[1] || (O[1] = ($) => N(null, $ ?? ""))
|
|
3902
|
-
}, null, 8, ["model-value", "label", "input-type", "time-zone"])) : s.value ? (
|
|
3909
|
+
}, null, 8, ["model-value", "disabled", "label", "input-type", "time-zone"])) : s.value ? (p(), G(me, {
|
|
3903
3910
|
key: 2,
|
|
3904
3911
|
"model-value": U.value,
|
|
3905
3912
|
class: "!cl-h-[2rem] [&_.clear-icon]:-cl-m-1 [&_.icon]:cl-text-sm cl-border-none cl-mb-0 cl-w-full",
|
|
3913
|
+
disabled: f.loading,
|
|
3906
3914
|
"input-type": "dateRange",
|
|
3907
|
-
"time-zone":
|
|
3908
|
-
"quick-date-scope":
|
|
3915
|
+
"time-zone": f.timeZone,
|
|
3916
|
+
"quick-date-scope": f.quickDateScope,
|
|
3909
3917
|
"onUpdate:modelValue": O[2] || (O[2] = ($) => u($))
|
|
3910
|
-
}, null, 8, ["model-value", "time-zone", "quick-date-scope"])) :
|
|
3918
|
+
}, null, 8, ["model-value", "disabled", "time-zone", "quick-date-scope"])) : f.column.type === "number" || f.column.type === "slot" && f.column.slotType === "number" ? (p(), G(me, {
|
|
3911
3919
|
key: 3,
|
|
3912
3920
|
"model-value": A.value,
|
|
3913
3921
|
class: "!cl-h-[2rem] !cl-text-xs cl-border-none cl-mb-0 cl-w-full lg:!cl-text-base",
|
|
3922
|
+
disabled: f.loading,
|
|
3914
3923
|
"input-type": "number",
|
|
3915
3924
|
"show-arrows": !1,
|
|
3916
3925
|
onInput: O[3] || (O[3] = ($, _) => B(null, _))
|
|
3917
|
-
}, null, 8, ["model-value"])) :
|
|
3926
|
+
}, null, 8, ["model-value", "disabled"])) : f.column.type === "string" || f.column.type === "slot" && f.column.slotType === "string" ? (p(), G(me, {
|
|
3918
3927
|
key: 4,
|
|
3919
3928
|
"model-value": A.value,
|
|
3920
3929
|
class: "!cl-h-[2rem] !cl-text-xs cl-border-none cl-mb-0 cl-w-full lg:!cl-text-base",
|
|
3930
|
+
disabled: f.loading,
|
|
3921
3931
|
"input-type": "text",
|
|
3922
3932
|
onInput: O[4] || (O[4] = ($, _) => N(null, _))
|
|
3923
|
-
}, null, 8, ["model-value"])) : i.value ? (
|
|
3933
|
+
}, null, 8, ["model-value", "disabled"])) : i.value ? (p(), y("select", {
|
|
3924
3934
|
key: 5,
|
|
3925
3935
|
class: "!cl-h-[2rem] cl-bg-white cl-border-none cl-mb-0 cl-rounded-md cl-w-full",
|
|
3936
|
+
disabled: f.loading,
|
|
3926
3937
|
onChange: O[5] || (O[5] = ($) => m.value ? B($.target) : N($.target))
|
|
3927
3938
|
}, [
|
|
3928
|
-
|
|
3929
|
-
(
|
|
3939
|
+
On,
|
|
3940
|
+
(p(!0), y(X, null, se(f.column.listEntries ?? [], ($) => (p(), y("option", {
|
|
3930
3941
|
key: $.value,
|
|
3931
3942
|
value: $.value,
|
|
3932
3943
|
selected: A.value === $.value.toString()
|
|
3933
|
-
}, q(v(
|
|
3934
|
-
],
|
|
3935
|
-
s.value ? j("", !0) : (
|
|
3944
|
+
}, q(v(n)($.translationKey)), 9, Sn))), 128))
|
|
3945
|
+
], 40, Cn)) : j("", !0),
|
|
3946
|
+
s.value ? j("", !0) : (p(), G(hn, {
|
|
3936
3947
|
key: 6,
|
|
3937
3948
|
filter: d.value,
|
|
3938
3949
|
"onUpdate:filter": O[6] || (O[6] = ($) => d.value = $),
|
|
3939
|
-
|
|
3950
|
+
loading: f.loading,
|
|
3951
|
+
column: f.column,
|
|
3940
3952
|
"default-operation": c(),
|
|
3941
|
-
"first-half":
|
|
3942
|
-
}, null, 8, ["filter", "column", "default-operation", "first-half"]))
|
|
3953
|
+
"first-half": f.firstHalf
|
|
3954
|
+
}, null, 8, ["filter", "loading", "column", "default-operation", "first-half"]))
|
|
3943
3955
|
])) : j("", !0);
|
|
3944
3956
|
}
|
|
3945
|
-
}),
|
|
3957
|
+
}), En = { class: "-cl-top-1 cl-bg-white cl-shadow-sm cl-sticky cl-z-20 lg:cl-bg-transparent lg:cl-relative lg:cl-shadow-none" }, An = { class: "cl-hidden lg:cl-table-row" }, qn = ["onClick"], Rn = { class: "cl-flex cl-justify-end cl-w-full lg:cl-hidden" }, Dn = { class: "cl-col-span-2 lg:cl-hidden" }, In = ["onClick"], jn = { class: "cl-font-normal cl-mr-1" }, Fn = /* @__PURE__ */ Q({
|
|
3946
3958
|
__name: "cl-ui-grid-header",
|
|
3947
3959
|
props: {
|
|
3948
3960
|
request: {},
|
|
3949
3961
|
columns: {},
|
|
3950
3962
|
options: {},
|
|
3963
|
+
loading: { type: Boolean },
|
|
3951
3964
|
filterPanelOpen: { type: Boolean },
|
|
3952
3965
|
timeZone: {}
|
|
3953
3966
|
},
|
|
3954
3967
|
emits: ["update:request", "update:filterPanelOpen"],
|
|
3955
3968
|
setup(a, { emit: e }) {
|
|
3956
|
-
const l = a, { t } = ie(),
|
|
3969
|
+
const l = a, { t } = ie(), n = R({
|
|
3957
3970
|
get: () => l.request,
|
|
3958
3971
|
set: (s) => e("update:request", s)
|
|
3959
3972
|
});
|
|
3960
3973
|
function c(s, i) {
|
|
3961
3974
|
var m, k;
|
|
3962
|
-
return ((m =
|
|
3975
|
+
return ((m = n.value.sort) == null ? void 0 : m.sortOnColumn) === s.field && ((k = n.value.sort) == null ? void 0 : k.sortByAscending) === i;
|
|
3963
3976
|
}
|
|
3964
|
-
function
|
|
3977
|
+
function r(s) {
|
|
3965
3978
|
if (typeof s < "u") {
|
|
3966
3979
|
const i = ge(l.request);
|
|
3967
3980
|
i.sort === null || i.sort.sortOnColumn !== s ? i.sort = {
|
|
3968
3981
|
sortOnColumn: s,
|
|
3969
3982
|
sortByAscending: !0
|
|
3970
|
-
} : i.sort.sortOnColumn === s && i.sort.sortByAscending === !0 ? i.sort.sortByAscending = !1 : i.sort = null,
|
|
3983
|
+
} : i.sort.sortOnColumn === s && i.sort.sortByAscending === !0 ? i.sort.sortByAscending = !1 : i.sort = null, n.value = i;
|
|
3971
3984
|
}
|
|
3972
3985
|
}
|
|
3973
3986
|
function o(s) {
|
|
3974
3987
|
if (s) {
|
|
3975
|
-
const i = ge(
|
|
3988
|
+
const i = ge(n.value);
|
|
3976
3989
|
i.filters = [
|
|
3977
3990
|
...i.filters.filter((m) => m.filterOnColumn !== s[0].filterOnColumn),
|
|
3978
3991
|
...s
|
|
3979
|
-
], i.pageNumber = 1,
|
|
3992
|
+
], i.pageNumber = 1, n.value = i;
|
|
3980
3993
|
}
|
|
3981
3994
|
}
|
|
3982
|
-
return (s, i) => (
|
|
3983
|
-
b("tr",
|
|
3984
|
-
(
|
|
3995
|
+
return (s, i) => (p(), y("thead", En, [
|
|
3996
|
+
b("tr", An, [
|
|
3997
|
+
(p(!0), y(X, null, se(s.columns, (m, k) => (p(), y("th", {
|
|
3985
3998
|
key: k,
|
|
3986
3999
|
class: M(["cl-text-grey-3 cl-text-sm", {
|
|
3987
|
-
"cl-cursor-pointer": v(Le)(m)
|
|
4000
|
+
"cl-cursor-pointer": v(Le)(m) && s.loading === !1
|
|
3988
4001
|
}]),
|
|
3989
|
-
onClick: (d) => v(Le)(m) ?
|
|
4002
|
+
onClick: (d) => v(Le)(m) && s.loading === !1 ? r(m.field) : () => {
|
|
3990
4003
|
}
|
|
3991
4004
|
}, [
|
|
3992
4005
|
de(q(m.caption) + " ", 1),
|
|
@@ -4002,62 +4015,63 @@ const ur = {
|
|
|
4002
4015
|
}, null, 512), [
|
|
4003
4016
|
[te, c(m, !1)]
|
|
4004
4017
|
])
|
|
4005
|
-
], 10,
|
|
4018
|
+
], 10, qn))), 128))
|
|
4006
4019
|
]),
|
|
4007
4020
|
b("tr", {
|
|
4008
4021
|
class: M(["cl-border cl-border-grey-2 cl-flex cl-flex-wrap cl-p-2 lg:cl-border-none lg:cl-p-0 lg:cl-table-row", {
|
|
4009
4022
|
"cl-hidden lg:cl-table-row": !s.filterPanelOpen
|
|
4010
4023
|
}])
|
|
4011
4024
|
}, [
|
|
4012
|
-
b("div",
|
|
4025
|
+
b("div", Rn, [
|
|
4013
4026
|
S(v(x), {
|
|
4014
4027
|
class: "cl-text-grey-4 hover:cl-cursor-pointer hover:cl-text-link-default",
|
|
4015
4028
|
icon: "ph:x",
|
|
4016
4029
|
size: 16,
|
|
4017
|
-
onClick: i[0] || (i[0] =
|
|
4030
|
+
onClick: i[0] || (i[0] = ne((m) => s.loading === !1 ? s.$emit("update:filterPanelOpen", !1) : void 0, ["prevent"]))
|
|
4018
4031
|
})
|
|
4019
4032
|
]),
|
|
4020
|
-
(
|
|
4033
|
+
(p(!0), y(X, null, se(s.columns, (m, k) => (p(), y("th", {
|
|
4021
4034
|
key: k,
|
|
4022
4035
|
class: M(["cl-grid cl-grid-cols-4 cl-py-1 cl-text-xs cl-w-full lg:cl-table-cell lg:cl-w-auto", {
|
|
4023
|
-
"cl-hidden lg:cl-table-cell": !v(
|
|
4036
|
+
"cl-hidden lg:cl-table-cell": !v(rl)(m)
|
|
4024
4037
|
}])
|
|
4025
4038
|
}, [
|
|
4026
|
-
b("div",
|
|
4027
|
-
v(Le)(m) ? (
|
|
4039
|
+
b("div", Dn, q(m.caption), 1),
|
|
4040
|
+
v(Le)(m) ? (p(), y("div", {
|
|
4028
4041
|
key: 0,
|
|
4029
4042
|
class: "cl-col-span-2 cl-gap-1 cl-span lg:cl-hidden",
|
|
4030
|
-
onClick: (d) =>
|
|
4043
|
+
onClick: (d) => s.loading === !1 ? r(m.field) : void 0
|
|
4031
4044
|
}, [
|
|
4032
|
-
b("span",
|
|
4033
|
-
c(m, !0) ? (
|
|
4045
|
+
b("span", jn, q(v(t)("grid.sortBy")), 1),
|
|
4046
|
+
c(m, !0) ? (p(), G(v(x), {
|
|
4034
4047
|
key: 0,
|
|
4035
4048
|
class: "cl-cursor-pointer cl-inline-block",
|
|
4036
4049
|
icon: "ph:caret-up"
|
|
4037
|
-
})) : c(m, !1) ? (
|
|
4050
|
+
})) : c(m, !1) ? (p(), G(v(x), {
|
|
4038
4051
|
key: 1,
|
|
4039
4052
|
class: "cl-cursor-pointer cl-inline-block",
|
|
4040
4053
|
icon: "ph:caret-down"
|
|
4041
|
-
})) : (
|
|
4054
|
+
})) : (p(), G(v(x), {
|
|
4042
4055
|
key: 2,
|
|
4043
4056
|
class: "cl-cursor-pointer cl-inline-block",
|
|
4044
4057
|
icon: "ph:minus"
|
|
4045
4058
|
}))
|
|
4046
|
-
], 8,
|
|
4047
|
-
S(
|
|
4059
|
+
], 8, In)) : j("", !0),
|
|
4060
|
+
S(Nn, {
|
|
4048
4061
|
class: "cl-col-span-4",
|
|
4049
|
-
|
|
4062
|
+
loading: s.loading,
|
|
4063
|
+
filter: n.value.filters.filter((d) => d.filterOnColumn === m.field),
|
|
4050
4064
|
column: m,
|
|
4051
4065
|
"time-zone": s.timeZone,
|
|
4052
4066
|
"quick-date-scope": m.quickDateScope ?? null,
|
|
4053
4067
|
"first-half": k <= s.columns.length / 2,
|
|
4054
4068
|
"onUpdate:filter": o
|
|
4055
|
-
}, null, 8, ["filter", "column", "time-zone", "quick-date-scope", "first-half"])
|
|
4069
|
+
}, null, 8, ["loading", "filter", "column", "time-zone", "quick-date-scope", "first-half"])
|
|
4056
4070
|
], 2))), 128))
|
|
4057
4071
|
], 2)
|
|
4058
4072
|
]));
|
|
4059
4073
|
}
|
|
4060
|
-
}),
|
|
4074
|
+
}), Mn = { class: "cl-flex cl-mb-2" }, Vn = /* @__PURE__ */ Q({
|
|
4061
4075
|
__name: "cl-ui-grid-search",
|
|
4062
4076
|
props: {
|
|
4063
4077
|
searchValue: {},
|
|
@@ -4069,59 +4083,60 @@ const ur = {
|
|
|
4069
4083
|
setup(a, { emit: e }) {
|
|
4070
4084
|
const l = a, t = R({
|
|
4071
4085
|
get: () => l.request,
|
|
4072
|
-
set: (
|
|
4086
|
+
set: (r) => e("update:request", r)
|
|
4073
4087
|
});
|
|
4074
|
-
function r
|
|
4088
|
+
function n(r) {
|
|
4075
4089
|
const o = t.value.filters.filter((s) => s.filterMethod !== "andcontains" && s.filterOperation !== ee.AND_CONTAINS);
|
|
4076
4090
|
for (const s of l.columns)
|
|
4077
|
-
s.field &&
|
|
4091
|
+
s.field && r && o.push({
|
|
4078
4092
|
filterOnColumn: s.field,
|
|
4079
4093
|
filterMethod: "andcontains",
|
|
4080
4094
|
filterOperation: ee.AND_CONTAINS,
|
|
4081
|
-
filterValue:
|
|
4095
|
+
filterValue: r
|
|
4082
4096
|
});
|
|
4083
4097
|
t.value = {
|
|
4084
4098
|
...t.value,
|
|
4085
4099
|
filters: o
|
|
4086
|
-
}, e("update:searchValue",
|
|
4100
|
+
}, e("update:searchValue", r);
|
|
4087
4101
|
}
|
|
4088
|
-
oe(() => l.columns, () =>
|
|
4102
|
+
oe(() => l.columns, () => n(l.searchValue));
|
|
4089
4103
|
const { t: c } = ie();
|
|
4090
|
-
return (
|
|
4104
|
+
return (r, o) => {
|
|
4091
4105
|
const s = Tl("icon");
|
|
4092
|
-
return V(
|
|
4093
|
-
b("div",
|
|
4106
|
+
return V(r.$slots, "search", ce(ve({ searchValue: r.searchValue, performSearch: n })), () => [
|
|
4107
|
+
b("div", Mn, [
|
|
4094
4108
|
S(me, {
|
|
4095
|
-
"model-value":
|
|
4109
|
+
"model-value": r.searchValue,
|
|
4096
4110
|
class: "cl-grow",
|
|
4097
4111
|
"input-specific-classes": "!cl-pr-6",
|
|
4098
4112
|
"input-type": "text",
|
|
4099
|
-
"placeholder-text":
|
|
4100
|
-
onKeypress: o[0] || (o[0] = Ee((i) =>
|
|
4101
|
-
onBlur: o[1] || (o[1] = (i) =>
|
|
4113
|
+
"placeholder-text": r.columns.length > 4 ? v(c)("grid.search") : v(c)("grid.searchSpecific", { columns: r.columns.map((i) => i.caption).join(", ") }),
|
|
4114
|
+
onKeypress: o[0] || (o[0] = Ee((i) => n(i.target.value), ["enter"])),
|
|
4115
|
+
onBlur: o[1] || (o[1] = (i) => n(i.target.value))
|
|
4102
4116
|
}, null, 8, ["model-value", "placeholder-text"]),
|
|
4103
4117
|
S(s, {
|
|
4104
4118
|
class: "cl-absolute cl-cursor-pointer cl-right-1 cl-text-grey-4 cl-top-3 cl-z-10 hover:cl-text-link-light lg:cl-right-4",
|
|
4105
4119
|
icon: "ph:x-bold",
|
|
4106
|
-
onClick: o[2] || (o[2] =
|
|
4120
|
+
onClick: o[2] || (o[2] = ne((i) => n(""), ["prevent"]))
|
|
4107
4121
|
})
|
|
4108
4122
|
])
|
|
4109
4123
|
]);
|
|
4110
4124
|
};
|
|
4111
4125
|
}
|
|
4112
|
-
}),
|
|
4126
|
+
}), Ln = { class: "cl-fixed cl-flex cl-h-full cl-justify-end cl-right-0 cl-shadow-lg cl-top-0 cl-z-40" }, Pn = { class: "cl-bg-secondary-default cl-h-full cl-overflow-y-auto cl-overscroll-y-none cl-px-10 cl-py-20 cl-relative cl-text-grey-2 cl-w-80" }, Un = { class: "cl-mb-4 cl-text-2xl cl-text-off-white" }, Bn = { class: "cl-border-grey-3 cl-border-t cl-flex cl-flex-wrap cl-text-sm cl-w-full" }, zn = { class: "cl-border-b cl-border-grey-2 cl-flex cl-py-2 cl-text-sm cl-w-full" }, _n = { class: "cl-flex-1 cl-py-2" }, xn = { class: "cl-py-2 cl-w-1/4" }, Hn = { class: "cl-py-2 cl-w-1/5" }, Gn = { class: "cl-flex-1 cl-py-2" }, Zn = { class: "cl-py-2 cl-w-1/4" }, Kn = { class: "cl-py-2 cl-text-off-white cl-w-1/5" }, Qn = { key: 1 }, Wn = /* @__PURE__ */ Q({
|
|
4113
4127
|
inheritAttrs: !1,
|
|
4114
4128
|
__name: "cl-ui-grid-view-manager",
|
|
4115
4129
|
props: {
|
|
4116
|
-
columns: {}
|
|
4130
|
+
columns: {},
|
|
4131
|
+
loading: { type: Boolean }
|
|
4117
4132
|
},
|
|
4118
4133
|
emits: ["update:columns"],
|
|
4119
4134
|
setup(a, { emit: e }) {
|
|
4120
|
-
const l = a, { t } = ie(),
|
|
4135
|
+
const l = a, { t } = ie(), n = I(!1);
|
|
4121
4136
|
function c(s, i, m) {
|
|
4122
4137
|
m < s.length && m >= 0 && s.splice(m, 0, s.splice(i, 1)[0]);
|
|
4123
4138
|
}
|
|
4124
|
-
function
|
|
4139
|
+
function r(s, i) {
|
|
4125
4140
|
const m = ge(l.columns), k = (s == null ? void 0 : s.checked) ?? !1, d = m.findIndex((h) => h.name === i.name);
|
|
4126
4141
|
d >= 0 && (m[d].visible = k), e("update:columns", m);
|
|
4127
4142
|
}
|
|
@@ -4129,68 +4144,69 @@ const ur = {
|
|
|
4129
4144
|
const m = ge(l.columns), k = i === "up" ? s + 1 : s - 1;
|
|
4130
4145
|
c(m, s, k), e("update:columns", m);
|
|
4131
4146
|
}
|
|
4132
|
-
return (s, i) => (
|
|
4133
|
-
S(be,
|
|
4147
|
+
return (s, i) => (p(), y(X, null, [
|
|
4148
|
+
S(be, fe(s.$attrs, {
|
|
4134
4149
|
class: "cl-w-full",
|
|
4135
4150
|
size: "small",
|
|
4136
|
-
|
|
4151
|
+
disabled: s.loading,
|
|
4152
|
+
onClick: i[0] || (i[0] = ne((m) => n.value = !0, ["prevent"]))
|
|
4137
4153
|
}), {
|
|
4138
4154
|
default: Y(() => [
|
|
4139
4155
|
de(q(v(t)("grid.manageView")), 1)
|
|
4140
4156
|
]),
|
|
4141
4157
|
_: 1
|
|
4142
|
-
}, 16),
|
|
4143
|
-
(
|
|
4158
|
+
}, 16, ["disabled"]),
|
|
4159
|
+
(p(), G(ll, { to: "body" }, [
|
|
4144
4160
|
S(Te, { name: "slide-left" }, {
|
|
4145
4161
|
default: Y(() => [
|
|
4146
|
-
le(b("div",
|
|
4147
|
-
b("div",
|
|
4162
|
+
le(b("div", Ln, [
|
|
4163
|
+
b("div", Pn, [
|
|
4148
4164
|
S(v(x), {
|
|
4149
4165
|
class: "cl-absolute cl-cursor-pointer cl-right-3 cl-text-off-white cl-top-3",
|
|
4150
4166
|
icon: "ph:x",
|
|
4151
4167
|
size: 16,
|
|
4152
|
-
onClick: i[1] || (i[1] = (m) =>
|
|
4168
|
+
onClick: i[1] || (i[1] = (m) => n.value = !1)
|
|
4153
4169
|
}),
|
|
4154
|
-
b("h3",
|
|
4155
|
-
b("ul",
|
|
4156
|
-
b("li",
|
|
4157
|
-
b("strong",
|
|
4158
|
-
b("strong",
|
|
4159
|
-
b("strong",
|
|
4170
|
+
b("h3", Un, q(v(t)("grid.manageView")), 1),
|
|
4171
|
+
b("ul", Bn, [
|
|
4172
|
+
b("li", zn, [
|
|
4173
|
+
b("strong", _n, q(v(t)("grid.column")), 1),
|
|
4174
|
+
b("strong", xn, q(v(t)("grid.visible")), 1),
|
|
4175
|
+
b("strong", Hn, q(v(t)("grid.order")), 1)
|
|
4160
4176
|
]),
|
|
4161
|
-
(
|
|
4177
|
+
(p(!0), y(X, null, se(s.columns, (m, k) => (p(), y("li", {
|
|
4162
4178
|
key: k,
|
|
4163
4179
|
class: "cl-border-b cl-border-grey-2 cl-flex cl-py-2 cl-text-sm cl-w-full"
|
|
4164
4180
|
}, [
|
|
4165
|
-
b("div",
|
|
4166
|
-
b("div",
|
|
4181
|
+
b("div", Gn, q(m.caption), 1),
|
|
4182
|
+
b("div", Zn, [
|
|
4167
4183
|
S(me, {
|
|
4168
4184
|
"model-value": m.visible === void 0 || m.visible === !0,
|
|
4169
4185
|
"input-type": "checkbox",
|
|
4170
|
-
onClick: (d) =>
|
|
4186
|
+
onClick: (d) => r(d.target, m)
|
|
4171
4187
|
}, null, 8, ["model-value", "onClick"])
|
|
4172
4188
|
]),
|
|
4173
|
-
b("div",
|
|
4174
|
-
m.visible === void 0 || m.visible === !0 ? (
|
|
4175
|
-
k !== 0 ? (
|
|
4189
|
+
b("div", Kn, [
|
|
4190
|
+
m.visible === void 0 || m.visible === !0 ? (p(), y(X, { key: 0 }, [
|
|
4191
|
+
k !== 0 ? (p(), G(v(x), {
|
|
4176
4192
|
key: 0,
|
|
4177
4193
|
class: "cl-cursor-pointer cl-inline-block cl-mr-2",
|
|
4178
4194
|
icon: "ph:arrow-left",
|
|
4179
4195
|
onClick: (d) => o(k, "down")
|
|
4180
4196
|
}, null, 8, ["onClick"])) : j("", !0),
|
|
4181
|
-
k !== s.columns.length - 1 ? (
|
|
4197
|
+
k !== s.columns.length - 1 ? (p(), G(v(x), {
|
|
4182
4198
|
key: 1,
|
|
4183
4199
|
class: "cl-cursor-pointer cl-inline-block",
|
|
4184
4200
|
icon: "ph:arrow-right",
|
|
4185
4201
|
onClick: (d) => o(k, "up")
|
|
4186
4202
|
}, null, 8, ["onClick"])) : j("", !0)
|
|
4187
|
-
], 64)) : (
|
|
4203
|
+
], 64)) : (p(), y("em", Qn, q(v(t)("grid.hidden")), 1))
|
|
4188
4204
|
])
|
|
4189
4205
|
]))), 128))
|
|
4190
4206
|
])
|
|
4191
4207
|
])
|
|
4192
4208
|
], 512), [
|
|
4193
|
-
[te,
|
|
4209
|
+
[te, n.value]
|
|
4194
4210
|
])
|
|
4195
4211
|
]),
|
|
4196
4212
|
_: 1
|
|
@@ -4198,7 +4214,7 @@ const ur = {
|
|
|
4198
4214
|
]))
|
|
4199
4215
|
], 64));
|
|
4200
4216
|
}
|
|
4201
|
-
}),
|
|
4217
|
+
}), Yn = { class: "cl-relative cl-w-full grid-wrapper lg:cl-min-h-fit" }, Jn = { class: "cl-absolute cl-flex cl-items-center cl-justify-center cl-min-h-full cl-p-28 cl-pt-0 cl-w-full" }, Xn = { class: "cl-overflow-x-auto cl-overscroll-x-none cl-pt-1" }, er = { class: "cl-hidden lg:cl-table-column-group" }, lr = /* @__PURE__ */ Q({
|
|
4202
4218
|
__name: "cl-ui-grid",
|
|
4203
4219
|
props: {
|
|
4204
4220
|
columns: {},
|
|
@@ -4214,8 +4230,8 @@ const ur = {
|
|
|
4214
4230
|
const l = a, t = R({
|
|
4215
4231
|
get: () => l.columns,
|
|
4216
4232
|
set: (N) => e("update:columns", N)
|
|
4217
|
-
}),
|
|
4218
|
-
function
|
|
4233
|
+
}), n = R(() => t.value.filter((N) => N.visible ?? !0)), c = I({});
|
|
4234
|
+
function r() {
|
|
4219
4235
|
const N = {};
|
|
4220
4236
|
window.innerWidth >= 1024 && t.value.forEach((B) => {
|
|
4221
4237
|
const u = B.width ? `${B.width}px` : "";
|
|
@@ -4226,8 +4242,8 @@ const ur = {
|
|
|
4226
4242
|
return c.value[N] ?? "";
|
|
4227
4243
|
}
|
|
4228
4244
|
Ze(() => {
|
|
4229
|
-
window.addEventListener("resize",
|
|
4230
|
-
}), tl(() => window.removeEventListener("resize",
|
|
4245
|
+
window.addEventListener("resize", r), r();
|
|
4246
|
+
}), tl(() => window.removeEventListener("resize", r));
|
|
4231
4247
|
const s = R({
|
|
4232
4248
|
get: () => l.request,
|
|
4233
4249
|
set: (N) => e("update:request", N)
|
|
@@ -4262,8 +4278,8 @@ const ur = {
|
|
|
4262
4278
|
};
|
|
4263
4279
|
}
|
|
4264
4280
|
}), U = I(((ae = l.request.filters.find((N) => N.filterMethod === "andcontains" || N.filterOperation === ee.AND_CONTAINS)) == null ? void 0 : ae.filterValue) ?? ""), Z = R(() => l.columns.filter((N) => (N.type === "string" || N.type === "slot" && N.slotType === "string") && N.searchable));
|
|
4265
|
-
return (N, B) => (
|
|
4266
|
-
Z.value.length > 0 ? (
|
|
4281
|
+
return (N, B) => (p(), y("div", Yn, [
|
|
4282
|
+
Z.value.length > 0 ? (p(), G(Vn, {
|
|
4267
4283
|
key: 0,
|
|
4268
4284
|
"search-value": U.value,
|
|
4269
4285
|
"onUpdate:searchValue": B[0] || (B[0] = (u) => U.value = u),
|
|
@@ -4273,13 +4289,13 @@ const ur = {
|
|
|
4273
4289
|
loading: N.loading
|
|
4274
4290
|
}, {
|
|
4275
4291
|
search: Y((u) => [
|
|
4276
|
-
V(N.$slots, "search", ce(
|
|
4292
|
+
V(N.$slots, "search", ce(ve(u)))
|
|
4277
4293
|
]),
|
|
4278
4294
|
_: 3
|
|
4279
4295
|
}, 8, ["search-value", "request", "columns", "loading"])) : j("", !0),
|
|
4280
4296
|
S(Te, { name: "fade" }, {
|
|
4281
4297
|
default: Y(() => [
|
|
4282
|
-
le(b("div",
|
|
4298
|
+
le(b("div", Jn, [
|
|
4283
4299
|
S(Ke, { class: "after:!cl-h-20 after:!cl-w-20 cl-h-20 cl-w-20" })
|
|
4284
4300
|
], 512), [
|
|
4285
4301
|
[te, N.loading]
|
|
@@ -4299,40 +4315,42 @@ const ur = {
|
|
|
4299
4315
|
onClearFilters: i
|
|
4300
4316
|
}, {
|
|
4301
4317
|
"additional-grid-actions": Y((u) => [
|
|
4302
|
-
V(N.$slots, "additional-grid-actions", ce(
|
|
4318
|
+
V(N.$slots, "additional-grid-actions", ce(ve(u)))
|
|
4303
4319
|
]),
|
|
4304
4320
|
"view-manager": Y(() => [
|
|
4305
|
-
S(
|
|
4321
|
+
S(Wn, {
|
|
4306
4322
|
columns: t.value,
|
|
4307
|
-
"onUpdate:columns": B[2] || (B[2] = (u) => t.value = u)
|
|
4308
|
-
|
|
4323
|
+
"onUpdate:columns": B[2] || (B[2] = (u) => t.value = u),
|
|
4324
|
+
loading: N.loading
|
|
4325
|
+
}, null, 8, ["columns", "loading"])
|
|
4309
4326
|
]),
|
|
4310
4327
|
_: 3
|
|
4311
4328
|
}, 8, ["edit-mode", "filter-panel-open", "columns", "options", "request", "loading"]),
|
|
4312
|
-
b("div",
|
|
4329
|
+
b("div", Xn, [
|
|
4313
4330
|
b("table", {
|
|
4314
4331
|
class: M(["cl-delay-75 cl-min-h-[276px] cl-overflow-x-auto cl-overscroll-x-none cl-text-left cl-transition-opacity cl-w-full", {
|
|
4315
|
-
"cl-opacity-40": N.loading
|
|
4332
|
+
"cl-opacity-40 cl-pointer-events-none": N.loading
|
|
4316
4333
|
}])
|
|
4317
4334
|
}, [
|
|
4318
|
-
b("colgroup",
|
|
4319
|
-
(
|
|
4320
|
-
key:
|
|
4335
|
+
b("colgroup", er, [
|
|
4336
|
+
(p(!0), y(X, null, se(n.value, (u, f) => (p(), y("col", {
|
|
4337
|
+
key: f,
|
|
4321
4338
|
style: _l(o(u.name)),
|
|
4322
4339
|
span: 1
|
|
4323
4340
|
}, null, 4))), 128))
|
|
4324
4341
|
]),
|
|
4325
|
-
S(
|
|
4342
|
+
S(Fn, {
|
|
4326
4343
|
request: P.value,
|
|
4327
4344
|
"onUpdate:request": B[5] || (B[5] = (u) => P.value = u),
|
|
4328
4345
|
"filter-panel-open": h.value,
|
|
4329
4346
|
"onUpdate:filterPanelOpen": B[6] || (B[6] = (u) => h.value = u),
|
|
4330
|
-
columns:
|
|
4347
|
+
columns: n.value,
|
|
4331
4348
|
options: A.value,
|
|
4349
|
+
loading: N.loading,
|
|
4332
4350
|
"time-zone": N.timeZone
|
|
4333
|
-
}, null, 8, ["request", "filter-panel-open", "columns", "options", "time-zone"]),
|
|
4351
|
+
}, null, 8, ["request", "filter-panel-open", "columns", "options", "loading", "time-zone"]),
|
|
4334
4352
|
S(Lo, {
|
|
4335
|
-
columns:
|
|
4353
|
+
columns: n.value,
|
|
4336
4354
|
request: s.value,
|
|
4337
4355
|
data: k.value,
|
|
4338
4356
|
"time-zone": N.timeZone,
|
|
@@ -4344,16 +4362,16 @@ const ur = {
|
|
|
4344
4362
|
onRowEdit: B[7] || (B[7] = (u) => N.$emit("row-edit", u)),
|
|
4345
4363
|
onRowSelect: B[8] || (B[8] = (u) => N.$emit("row-select", u))
|
|
4346
4364
|
}, al({ _: 2 }, [
|
|
4347
|
-
se(N.$slots, (u,
|
|
4348
|
-
name:
|
|
4365
|
+
se(N.$slots, (u, f) => ({
|
|
4366
|
+
name: f,
|
|
4349
4367
|
fn: Y((O) => [
|
|
4350
|
-
V(N.$slots,
|
|
4368
|
+
V(N.$slots, f, ce(ve(O)))
|
|
4351
4369
|
])
|
|
4352
4370
|
}))
|
|
4353
4371
|
]), 1032, ["columns", "request", "data", "time-zone", "loading", "search-value", "options", "edit-mode"])
|
|
4354
4372
|
], 2)
|
|
4355
4373
|
]),
|
|
4356
|
-
S(
|
|
4374
|
+
S(ln, {
|
|
4357
4375
|
request: s.value,
|
|
4358
4376
|
"onUpdate:request": B[9] || (B[9] = (u) => s.value = u),
|
|
4359
4377
|
loading: N.loading,
|
|
@@ -4361,7 +4379,7 @@ const ur = {
|
|
|
4361
4379
|
}, null, 8, ["request", "loading", "data"])
|
|
4362
4380
|
]));
|
|
4363
4381
|
}
|
|
4364
|
-
}),
|
|
4382
|
+
}), tr = { class: "cl-absolute cl-bg-secondary-default cl-flex cl-h-20 cl-items-center cl-justify-between cl-left-0 cl-top-0 cl-w-full cl-z-40" }, ar = /* @__PURE__ */ Q({
|
|
4365
4383
|
__name: "cl-ui-header",
|
|
4366
4384
|
props: {
|
|
4367
4385
|
isOpen: { type: Boolean }
|
|
@@ -4369,28 +4387,28 @@ const ur = {
|
|
|
4369
4387
|
emits: ["open-click"],
|
|
4370
4388
|
setup(a, { emit: e }) {
|
|
4371
4389
|
const l = a, t = I();
|
|
4372
|
-
return
|
|
4390
|
+
return nl(t, () => {
|
|
4373
4391
|
(l.isOpen ?? !1) && e("open-click");
|
|
4374
|
-
}), (
|
|
4375
|
-
V(
|
|
4392
|
+
}), (n, c) => (p(), y("header", tr, [
|
|
4393
|
+
V(n.$slots, "logo"),
|
|
4376
4394
|
b("div", {
|
|
4377
4395
|
ref_key: "headerMenuElement",
|
|
4378
4396
|
ref: t,
|
|
4379
4397
|
class: "cl-cursor-pointer cl-flex cl-flex-nowrap",
|
|
4380
|
-
onClick: c[0] || (c[0] = (
|
|
4398
|
+
onClick: c[0] || (c[0] = (r) => n.$emit("open-click"))
|
|
4381
4399
|
}, [
|
|
4382
|
-
V(
|
|
4383
|
-
V(
|
|
4400
|
+
V(n.$slots, "menu"),
|
|
4401
|
+
V(n.$slots, "icon")
|
|
4384
4402
|
], 512)
|
|
4385
4403
|
]));
|
|
4386
4404
|
}
|
|
4387
|
-
}),
|
|
4405
|
+
}), or = { class: "cl-bg-transparent cl-flex cl-items-center cl-select-none hover:cl-bg-opacity-10 hover:cl-bg-white md:cl-min-w-[320px]" }, nr = ["src"], rr = {
|
|
4388
4406
|
key: 0,
|
|
4389
4407
|
class: "cl-text-ellipsis cl-whitespace-nowrap"
|
|
4390
|
-
},
|
|
4408
|
+
}, sr = {
|
|
4391
4409
|
key: 1,
|
|
4392
4410
|
class: "cl-text-ellipsis cl-text-xs cl-whitespace-nowrap"
|
|
4393
|
-
},
|
|
4411
|
+
}, ir = { class: "cl-content-center cl-flex cl-h-20 cl-items-center cl-justify-center cl-justify-items-center cl-transition-all cl-w-10 md:cl-ml-4 md:cl-w-20" }, cr = { class: "cl-absolute cl-bg-white cl-right-0 cl-shadow-2xl cl-top-20 cl-w-full cl-z-20" }, ur = /* @__PURE__ */ Q({
|
|
4394
4412
|
__name: "cl-ui-header-menu",
|
|
4395
4413
|
props: {
|
|
4396
4414
|
username: { default: "" },
|
|
@@ -4401,18 +4419,18 @@ const ur = {
|
|
|
4401
4419
|
},
|
|
4402
4420
|
setup(a) {
|
|
4403
4421
|
const e = a;
|
|
4404
|
-
return (l, t) => (
|
|
4422
|
+
return (l, t) => (p(), y("div", {
|
|
4405
4423
|
class: M(["md:cl-relative", {
|
|
4406
4424
|
"cl-bg-primary-default": (e == null ? void 0 : e.colour) === "default",
|
|
4407
4425
|
"cl-bg-blue-light": e.colour === "secondary"
|
|
4408
4426
|
}])
|
|
4409
4427
|
}, [
|
|
4410
|
-
b("div",
|
|
4411
|
-
l.image ? (
|
|
4428
|
+
b("div", or, [
|
|
4429
|
+
l.image ? (p(), y("img", {
|
|
4412
4430
|
key: 0,
|
|
4413
4431
|
src: l.image,
|
|
4414
4432
|
class: "cl-hidden cl-m-4 cl-max-h-12 cl-max-w-12 cl-ring-2 cl-ring-white cl-rounded-full md:cl-block"
|
|
4415
|
-
}, null, 8,
|
|
4433
|
+
}, null, 8, nr)) : (p(), G(v(x), {
|
|
4416
4434
|
key: 1,
|
|
4417
4435
|
class: "cl-hidden cl-m-4 cl-text-white md:cl-block",
|
|
4418
4436
|
icon: "ph:user-circle",
|
|
@@ -4425,10 +4443,10 @@ const ur = {
|
|
|
4425
4443
|
"cl-text-white": e.colour === "secondary"
|
|
4426
4444
|
}])
|
|
4427
4445
|
}, [
|
|
4428
|
-
l.username ? (
|
|
4429
|
-
l.group ? (
|
|
4446
|
+
l.username ? (p(), y("div", rr, q(l.username), 1)) : j("", !0),
|
|
4447
|
+
l.group ? (p(), y("div", sr, q(l.group), 1)) : j("", !0)
|
|
4430
4448
|
], 2),
|
|
4431
|
-
b("div",
|
|
4449
|
+
b("div", ir, [
|
|
4432
4450
|
S(v(x), {
|
|
4433
4451
|
class: M(["cl-transform-gpu cl-transition-transform", {
|
|
4434
4452
|
"cl-rotate-180": l.isOpen,
|
|
@@ -4441,7 +4459,7 @@ const ur = {
|
|
|
4441
4459
|
]),
|
|
4442
4460
|
S(Te, { name: "fade" }, {
|
|
4443
4461
|
default: Y(() => [
|
|
4444
|
-
le(b("div",
|
|
4462
|
+
le(b("div", cr, [
|
|
4445
4463
|
V(l.$slots, "default")
|
|
4446
4464
|
], 512), [
|
|
4447
4465
|
[te, l.isOpen]
|
|
@@ -4455,24 +4473,24 @@ const ur = {
|
|
|
4455
4473
|
function el(a) {
|
|
4456
4474
|
return /[a-z]{2}-[A-Z]{2}/gm.test(a.localeCode);
|
|
4457
4475
|
}
|
|
4458
|
-
function
|
|
4476
|
+
function dr(a) {
|
|
4459
4477
|
let e = Array.isArray(a);
|
|
4460
4478
|
if (e) {
|
|
4461
4479
|
for (const l of a)
|
|
4462
|
-
if (!
|
|
4480
|
+
if (!fr(l)) {
|
|
4463
4481
|
e = !1;
|
|
4464
4482
|
break;
|
|
4465
4483
|
}
|
|
4466
4484
|
}
|
|
4467
4485
|
return e;
|
|
4468
4486
|
}
|
|
4469
|
-
function
|
|
4487
|
+
function fr(a) {
|
|
4470
4488
|
return typeof a.name == "string" && typeof a.nativeName == "string" && typeof a.localeCode == "string";
|
|
4471
4489
|
}
|
|
4472
|
-
const
|
|
4490
|
+
const pr = {
|
|
4473
4491
|
key: 0,
|
|
4474
4492
|
class: "cl-flex cl-relative cl-select-none cl-w-auto cl-z-30"
|
|
4475
|
-
},
|
|
4493
|
+
}, mr = { class: "cl-absolute cl-bg-white cl-border cl-border-grey-0 cl-overflow-hidden cl-right-0 cl-rounded cl-shadow-xl cl-text-black cl-top-6 cl-z-30" }, vr = ["data-localename", "data-localecode", "onClick"], gr = { class: "cl-text-xs" }, br = /* @__PURE__ */ Q({
|
|
4476
4494
|
__name: "cl-ui-language-switcher",
|
|
4477
4495
|
props: {
|
|
4478
4496
|
supportedLanguages: {},
|
|
@@ -4481,13 +4499,13 @@ const dn = {
|
|
|
4481
4499
|
},
|
|
4482
4500
|
emits: ["language-select"],
|
|
4483
4501
|
setup(a, { emit: e }) {
|
|
4484
|
-
const l = a, { locale: t } = ie(),
|
|
4502
|
+
const l = a, { locale: t } = ie(), n = I(!1), c = R(() => l.supportedLanguages.find((s) => s.localeCode === t.value) ?? l.defaultLangauge), r = R(() => l.supportedLanguages.filter((s) => el(s)).sort((s, i) => s.nativeName > i.nativeName ? 1 : i.nativeName > s.nativeName ? -1 : 0));
|
|
4485
4503
|
function o() {
|
|
4486
|
-
l.disabled || (
|
|
4504
|
+
l.disabled || (n.value = !n.value);
|
|
4487
4505
|
}
|
|
4488
4506
|
return oe(() => l.disabled, (s) => {
|
|
4489
|
-
s && (
|
|
4490
|
-
}), (s, i) => c.value !== null && v(el)(c.value) ? (
|
|
4507
|
+
s && (n.value = !1);
|
|
4508
|
+
}), (s, i) => c.value !== null && v(el)(c.value) ? (p(), y("div", pr, [
|
|
4491
4509
|
b("div", {
|
|
4492
4510
|
class: M(["cl-flex cl-items-center", {
|
|
4493
4511
|
"cl-cursor-pointer": !s.disabled
|
|
@@ -4502,8 +4520,8 @@ const dn = {
|
|
|
4502
4520
|
], 2),
|
|
4503
4521
|
S(Te, { name: "fade" }, {
|
|
4504
4522
|
default: Y(() => [
|
|
4505
|
-
le(b("div",
|
|
4506
|
-
(
|
|
4523
|
+
le(b("div", mr, [
|
|
4524
|
+
(p(!0), y(X, null, se(r.value, (m, k) => (p(), y("div", {
|
|
4507
4525
|
key: k,
|
|
4508
4526
|
class: "cl-border-b cl-border-grey-0 cl-cursor-pointer cl-flex cl-items-center cl-justify-center cl-p-1 cl-text-center cl-transition-colors cl-w-28 hover:cl-bg-grey-0 last-child:cl-border-b-0 last:cl-border-b-0 lg:cl-p-2",
|
|
4509
4527
|
"data-localename": m.name,
|
|
@@ -4512,20 +4530,20 @@ const dn = {
|
|
|
4512
4530
|
t.value = m.localeCode, o(), e("language-select", m.localeCode);
|
|
4513
4531
|
}
|
|
4514
4532
|
}, [
|
|
4515
|
-
b("span",
|
|
4516
|
-
], 8,
|
|
4533
|
+
b("span", gr, q(m.nativeName), 1)
|
|
4534
|
+
], 8, vr))), 128))
|
|
4517
4535
|
], 512), [
|
|
4518
|
-
[te,
|
|
4536
|
+
[te, n.value]
|
|
4519
4537
|
])
|
|
4520
4538
|
]),
|
|
4521
4539
|
_: 1
|
|
4522
4540
|
})
|
|
4523
4541
|
])) : j("", !0);
|
|
4524
4542
|
}
|
|
4525
|
-
}),
|
|
4543
|
+
}), hr = { class: "cl-relative" }, yr = { class: "cl-h-full cl-z-0 xl:cl-h-screen" }, wr = { class: "cl-absolute cl-bg-secondary-default cl-gap-y-1 cl-grid cl-grid-cols-1 cl-left-0 cl-opacity-95 cl-p-6 cl-top-0 cl-w-full cl-z-10 lg:cl-gap-x-1 lg:cl-grid-cols-10 lg:cl-p-10" }, kr = { class: "cl-col-span-10 lg:cl-col-span-3" }, Tr = {
|
|
4526
4544
|
key: 0,
|
|
4527
4545
|
class: "cl-col-span-10 cl-flex cl-items-start cl-justify-end cl-text-white lg:cl-col-span-1 lg:cl-p-2"
|
|
4528
|
-
},
|
|
4546
|
+
}, $r = { class: "cl-col-span-3" }, Cr = { class: "cl-inline cl-relative cl-text-grey-4" }, Or = { class: "cl-col-span-3" }, Sr = { class: "cl-inline cl-relative cl-text-grey-4" }, Nr = { class: "cl-col-span-10 cl-emphasis-danger cl-mt-10 cl-p-3 cl-rounded-md cl-text-sm md:cl-mt-3" }, Er = /* @__PURE__ */ Q({
|
|
4529
4547
|
__name: "cl-ui-login",
|
|
4530
4548
|
props: {
|
|
4531
4549
|
errors: { default: () => [] },
|
|
@@ -4536,11 +4554,11 @@ const dn = {
|
|
|
4536
4554
|
"update:errors": null
|
|
4537
4555
|
},
|
|
4538
4556
|
setup(a, { emit: e }) {
|
|
4539
|
-
const { t: l } = ie(), t = I(""),
|
|
4557
|
+
const { t: l } = ie(), t = I(""), n = I(""), c = I("password"), r = I();
|
|
4540
4558
|
function o() {
|
|
4541
4559
|
const k = {
|
|
4542
4560
|
username: t.value,
|
|
4543
|
-
password:
|
|
4561
|
+
password: n.value
|
|
4544
4562
|
};
|
|
4545
4563
|
e("login", k);
|
|
4546
4564
|
}
|
|
@@ -4555,17 +4573,17 @@ const dn = {
|
|
|
4555
4573
|
return typeof d == "string" && d.trim() === "" && (h.valid = !1), h;
|
|
4556
4574
|
}
|
|
4557
4575
|
function m(k, d) {
|
|
4558
|
-
|
|
4576
|
+
r.value = k;
|
|
4559
4577
|
}
|
|
4560
|
-
return (k, d) => (
|
|
4561
|
-
b("div",
|
|
4578
|
+
return (k, d) => (p(), y("div", hr, [
|
|
4579
|
+
b("div", yr, [
|
|
4562
4580
|
V(k.$slots, "background")
|
|
4563
4581
|
]),
|
|
4564
|
-
b("form",
|
|
4565
|
-
b("div",
|
|
4582
|
+
b("form", wr, [
|
|
4583
|
+
b("div", kr, [
|
|
4566
4584
|
V(k.$slots, "logo")
|
|
4567
4585
|
]),
|
|
4568
|
-
k.$slots["language-switcher"] ? (
|
|
4586
|
+
k.$slots["language-switcher"] ? (p(), y("div", Tr, [
|
|
4569
4587
|
V(k.$slots, "language-switcher")
|
|
4570
4588
|
])) : j("", !0),
|
|
4571
4589
|
b("div", {
|
|
@@ -4574,8 +4592,8 @@ const dn = {
|
|
|
4574
4592
|
"cl-col-span-6": k.$slots["language-switcher"]
|
|
4575
4593
|
}])
|
|
4576
4594
|
}, [
|
|
4577
|
-
b("div",
|
|
4578
|
-
b("div",
|
|
4595
|
+
b("div", $r, [
|
|
4596
|
+
b("div", Cr, [
|
|
4579
4597
|
S(v(x), {
|
|
4580
4598
|
class: "cl-absolute cl-left-3 cl-top-2.5 cl-z-10",
|
|
4581
4599
|
icon: "ph:user",
|
|
@@ -4603,8 +4621,8 @@ const dn = {
|
|
|
4603
4621
|
}, null, 8, ["modelValue", "highlight-when-valid", "label", "placeholder-text", "message-when-valid"])
|
|
4604
4622
|
])
|
|
4605
4623
|
]),
|
|
4606
|
-
b("div",
|
|
4607
|
-
b("div",
|
|
4624
|
+
b("div", Or, [
|
|
4625
|
+
b("div", Sr, [
|
|
4608
4626
|
S(v(x), {
|
|
4609
4627
|
class: "cl-absolute cl-left-3 cl-top-2.5 cl-z-10",
|
|
4610
4628
|
icon: "ph:lock",
|
|
@@ -4628,11 +4646,11 @@ const dn = {
|
|
|
4628
4646
|
]),
|
|
4629
4647
|
S(me, {
|
|
4630
4648
|
id: "cl-ui-login-passwordinput",
|
|
4631
|
-
modelValue:
|
|
4632
|
-
"onUpdate:modelValue": d[3] || (d[3] = (h) =>
|
|
4649
|
+
modelValue: n.value,
|
|
4650
|
+
"onUpdate:modelValue": d[3] || (d[3] = (h) => n.value = h),
|
|
4633
4651
|
class: "!cl-border-2 cl-w-full",
|
|
4634
4652
|
"input-type": c.value,
|
|
4635
|
-
"highlight-when-valid":
|
|
4653
|
+
"highlight-when-valid": n.value !== void 0 && n.value !== "",
|
|
4636
4654
|
label: v(l)("login.password"),
|
|
4637
4655
|
"show-label": !1,
|
|
4638
4656
|
"placeholder-text": v(l)("login.password"),
|
|
@@ -4654,8 +4672,8 @@ const dn = {
|
|
|
4654
4672
|
class: "cl-w-full",
|
|
4655
4673
|
colour: "blue",
|
|
4656
4674
|
loading: k.loading,
|
|
4657
|
-
disabled: !
|
|
4658
|
-
onClick:
|
|
4675
|
+
disabled: !r.value || n.value === "",
|
|
4676
|
+
onClick: ne(o, ["prevent"])
|
|
4659
4677
|
}, {
|
|
4660
4678
|
default: Y(() => [
|
|
4661
4679
|
de(q(v(l)("login.login")), 1)
|
|
@@ -4668,8 +4686,8 @@ const dn = {
|
|
|
4668
4686
|
default: Y(() => {
|
|
4669
4687
|
var h;
|
|
4670
4688
|
return [
|
|
4671
|
-
le(b("span",
|
|
4672
|
-
(
|
|
4689
|
+
le(b("span", Nr, [
|
|
4690
|
+
(p(!0), y(X, null, se(k.errors, (A, P) => (p(), y("div", {
|
|
4673
4691
|
id: "cl-ui-login-errors",
|
|
4674
4692
|
key: P,
|
|
4675
4693
|
class: "cl-font-semibold"
|
|
@@ -4684,26 +4702,26 @@ const dn = {
|
|
|
4684
4702
|
])
|
|
4685
4703
|
]));
|
|
4686
4704
|
}
|
|
4687
|
-
}),
|
|
4705
|
+
}), Ar = [
|
|
4688
4706
|
"x-small",
|
|
4689
4707
|
"small",
|
|
4690
4708
|
"medium",
|
|
4691
4709
|
"large"
|
|
4692
|
-
],
|
|
4710
|
+
], qr = [
|
|
4693
4711
|
"primary",
|
|
4694
4712
|
"secondary",
|
|
4695
4713
|
"white"
|
|
4696
|
-
],
|
|
4714
|
+
], Rr = {
|
|
4697
4715
|
key: 0,
|
|
4698
4716
|
class: "cl-h-0 cl-w-0"
|
|
4699
|
-
},
|
|
4717
|
+
}, Dr = { class: "cl-relative cl-w-full" }, Ir = /* @__PURE__ */ Q({
|
|
4700
4718
|
__name: "cl-ui-navigation",
|
|
4701
4719
|
props: {
|
|
4702
4720
|
colour: { default: "default" }
|
|
4703
4721
|
},
|
|
4704
4722
|
setup(a, { expose: e }) {
|
|
4705
4723
|
const l = I([]), t = R(() => l.value.filter((h) => h.open === !0).length > 0);
|
|
4706
|
-
function
|
|
4724
|
+
function n(h) {
|
|
4707
4725
|
let A = l.value.find((P) => P.id === h);
|
|
4708
4726
|
return A || (A = {
|
|
4709
4727
|
id: h,
|
|
@@ -4716,9 +4734,9 @@ const dn = {
|
|
|
4716
4734
|
P.id !== h && (P.open = !1);
|
|
4717
4735
|
}));
|
|
4718
4736
|
}
|
|
4719
|
-
const
|
|
4737
|
+
const r = Ql();
|
|
4720
4738
|
oe(
|
|
4721
|
-
() =>
|
|
4739
|
+
() => r,
|
|
4722
4740
|
() => {
|
|
4723
4741
|
o.value = !1;
|
|
4724
4742
|
},
|
|
@@ -4736,9 +4754,9 @@ const dn = {
|
|
|
4736
4754
|
h.open = !1;
|
|
4737
4755
|
});
|
|
4738
4756
|
}
|
|
4739
|
-
return
|
|
4757
|
+
return nl(k, d), e({
|
|
4740
4758
|
closeNavigation: d
|
|
4741
|
-
}), (h, A) => (
|
|
4759
|
+
}), (h, A) => (p(), y("div", {
|
|
4742
4760
|
ref_key: "navElement",
|
|
4743
4761
|
ref: k,
|
|
4744
4762
|
class: "cl-flex cl-flex-nowrap cl-relative"
|
|
@@ -4750,9 +4768,9 @@ const dn = {
|
|
|
4750
4768
|
"cl-bg-blue-dark": h.colour === "secondary"
|
|
4751
4769
|
}])
|
|
4752
4770
|
}, [
|
|
4753
|
-
V(h.$slots, "icon",
|
|
4771
|
+
V(h.$slots, "icon", fe({ navcolour: h.colour }, { groupIsOpen: n, toggleOpen: c }), void 0, !0)
|
|
4754
4772
|
], 2),
|
|
4755
|
-
s.value ? (
|
|
4773
|
+
s.value ? (p(), y("div", Rr)) : j("", !0),
|
|
4756
4774
|
S(Te, { name: "slide-right" }, {
|
|
4757
4775
|
default: Y(() => [
|
|
4758
4776
|
le(b("div", {
|
|
@@ -4761,20 +4779,20 @@ const dn = {
|
|
|
4761
4779
|
"cl-absolute cl-left-20 cl-shadow-lg": !o.value
|
|
4762
4780
|
}])
|
|
4763
4781
|
}, [
|
|
4764
|
-
b("div",
|
|
4782
|
+
b("div", Dr, [
|
|
4765
4783
|
b("span", {
|
|
4766
4784
|
class: "cl-absolute cl-cursor-pointer cl-hidden cl-right-0 cl-top-1.5 lg:cl-block",
|
|
4767
4785
|
onClick: m
|
|
4768
4786
|
}, [
|
|
4769
|
-
o.value ? (
|
|
4787
|
+
o.value ? (p(), G(v(x), {
|
|
4770
4788
|
key: 1,
|
|
4771
4789
|
icon: "ph:push-pin-slash"
|
|
4772
|
-
})) : (
|
|
4790
|
+
})) : (p(), G(v(x), {
|
|
4773
4791
|
key: 0,
|
|
4774
4792
|
icon: "ph:push-pin"
|
|
4775
4793
|
}))
|
|
4776
4794
|
]),
|
|
4777
|
-
V(h.$slots, "default", ce(
|
|
4795
|
+
V(h.$slots, "default", ce(ve({ groupIsOpen: n })), void 0, !0)
|
|
4778
4796
|
])
|
|
4779
4797
|
], 2), [
|
|
4780
4798
|
[te, t.value]
|
|
@@ -4785,7 +4803,7 @@ const dn = {
|
|
|
4785
4803
|
], 512));
|
|
4786
4804
|
}
|
|
4787
4805
|
});
|
|
4788
|
-
const
|
|
4806
|
+
const jr = /* @__PURE__ */ ke(Ir, [["__scopeId", "data-v-0958dcf5"]]), Fr = /* @__PURE__ */ Q({
|
|
4789
4807
|
__name: "cl-ui-navigation-icon",
|
|
4790
4808
|
props: {
|
|
4791
4809
|
iconValue: {},
|
|
@@ -4793,7 +4811,7 @@ const Dn = /* @__PURE__ */ ke(Rn, [["__scopeId", "data-v-0958dcf5"]]), In = /* @
|
|
|
4793
4811
|
colour: { default: "default" }
|
|
4794
4812
|
},
|
|
4795
4813
|
setup(a) {
|
|
4796
|
-
return (e, l) => (
|
|
4814
|
+
return (e, l) => (p(), y("div", {
|
|
4797
4815
|
class: M(["cl-cursor-pointer cl-flex cl-h-20 cl-items-center cl-justify-center cl-transition-colors cl-w-20", {
|
|
4798
4816
|
"cl-text-secondary-default hover:cl-bg-primary-dark hover:cl-text-white": e.colour === "default",
|
|
4799
4817
|
"cl-bg-primary-darker cl-text-white": e.open && e.colour === "default",
|
|
@@ -4808,49 +4826,49 @@ const Dn = /* @__PURE__ */ ke(Rn, [["__scopeId", "data-v-0958dcf5"]]), In = /* @
|
|
|
4808
4826
|
}, null, 8, ["icon"])
|
|
4809
4827
|
], 2));
|
|
4810
4828
|
}
|
|
4811
|
-
}),
|
|
4829
|
+
}), Mr = {
|
|
4812
4830
|
key: 0,
|
|
4813
4831
|
class: "cl-font-bold cl-leading-8 cl-mb-8 cl-pr-8 cl-select-none cl-text-lg cl-text-secondary-default"
|
|
4814
|
-
},
|
|
4832
|
+
}, Vr = { class: "cl-flex cl-flex-wrap cl-space-y-8 cl-text-sm cl-w-full" }, Lr = /* @__PURE__ */ Q({
|
|
4815
4833
|
__name: "cl-ui-navigation-group",
|
|
4816
4834
|
props: {
|
|
4817
4835
|
open: { type: Boolean }
|
|
4818
4836
|
},
|
|
4819
4837
|
setup(a) {
|
|
4820
|
-
return (e, l) => (
|
|
4838
|
+
return (e, l) => (p(), y("div", {
|
|
4821
4839
|
class: M({
|
|
4822
4840
|
"cl-hidden": !e.open
|
|
4823
4841
|
})
|
|
4824
4842
|
}, [
|
|
4825
|
-
e.$slots.title ? (
|
|
4843
|
+
e.$slots.title ? (p(), y("div", Mr, [
|
|
4826
4844
|
V(e.$slots, "title")
|
|
4827
4845
|
])) : j("", !0),
|
|
4828
|
-
b("div",
|
|
4846
|
+
b("div", Vr, [
|
|
4829
4847
|
V(e.$slots, "default")
|
|
4830
4848
|
])
|
|
4831
4849
|
], 2));
|
|
4832
4850
|
}
|
|
4833
|
-
}),
|
|
4851
|
+
}), Pr = {}, Ur = { class: "cl-w-full" }, Br = {
|
|
4834
4852
|
key: 0,
|
|
4835
4853
|
class: "cl-font-bold cl-mb-4 cl-select-none"
|
|
4836
|
-
},
|
|
4837
|
-
function
|
|
4838
|
-
return
|
|
4839
|
-
a.$slots.title ? (
|
|
4854
|
+
}, zr = { class: "cl-flex cl-flex-wrap cl-space-y-2" };
|
|
4855
|
+
function _r(a, e) {
|
|
4856
|
+
return p(), y("div", Ur, [
|
|
4857
|
+
a.$slots.title ? (p(), y("div", Br, [
|
|
4840
4858
|
V(a.$slots, "title")
|
|
4841
4859
|
])) : j("", !0),
|
|
4842
|
-
b("span",
|
|
4860
|
+
b("span", zr, [
|
|
4843
4861
|
V(a.$slots, "default")
|
|
4844
4862
|
])
|
|
4845
4863
|
]);
|
|
4846
4864
|
}
|
|
4847
|
-
const
|
|
4848
|
-
function
|
|
4849
|
-
return
|
|
4865
|
+
const xr = /* @__PURE__ */ ke(Pr, [["render", _r]]), Hr = {}, Gr = { class: "cl-cursor-pointer cl-transition-colors cl-w-full hover:cl-text-primary-darker" };
|
|
4866
|
+
function Zr(a, e) {
|
|
4867
|
+
return p(), y("div", Gr, [
|
|
4850
4868
|
V(a.$slots, "default")
|
|
4851
4869
|
]);
|
|
4852
4870
|
}
|
|
4853
|
-
const
|
|
4871
|
+
const Kr = /* @__PURE__ */ ke(Hr, [["render", Zr]]), Qr = { class: "cl-w-full" }, Wr = /* @__PURE__ */ Q({
|
|
4854
4872
|
__name: "cl-ui-tab",
|
|
4855
4873
|
props: {
|
|
4856
4874
|
currentTab: { default: 0 },
|
|
@@ -4858,19 +4876,19 @@ const Gn = /* @__PURE__ */ ke(_n, [["render", Hn]]), Zn = { class: "cl-w-full" }
|
|
|
4858
4876
|
colour: { default: "default" }
|
|
4859
4877
|
},
|
|
4860
4878
|
setup(a) {
|
|
4861
|
-
const e = a, l = I(), t = I(!1),
|
|
4879
|
+
const e = a, l = I(), t = I(!1), n = I(!1);
|
|
4862
4880
|
function c(i) {
|
|
4863
4881
|
return i === e.currentTab;
|
|
4864
4882
|
}
|
|
4865
|
-
function
|
|
4883
|
+
function r() {
|
|
4866
4884
|
if (l.value) {
|
|
4867
4885
|
const i = l.value.scrollWidth - l.value.clientWidth;
|
|
4868
|
-
t.value = l.value.scrollLeft > 0,
|
|
4886
|
+
t.value = l.value.scrollLeft > 0, n.value = l.value.scrollLeft < i;
|
|
4869
4887
|
} else
|
|
4870
|
-
t.value = !1,
|
|
4888
|
+
t.value = !1, n.value = !1;
|
|
4871
4889
|
}
|
|
4872
4890
|
function o() {
|
|
4873
|
-
|
|
4891
|
+
r(), window.addEventListener("resize", r);
|
|
4874
4892
|
}
|
|
4875
4893
|
function s(i) {
|
|
4876
4894
|
if (l.value) {
|
|
@@ -4879,9 +4897,9 @@ const Gn = /* @__PURE__ */ ke(_n, [["render", Hn]]), Zn = { class: "cl-w-full" }
|
|
|
4879
4897
|
i === "left" && (k = -m), l.value.scroll(l.value.scrollLeft + k, 0);
|
|
4880
4898
|
}
|
|
4881
4899
|
}
|
|
4882
|
-
return Ze(() => o()), tl(() => window.removeEventListener("resize",
|
|
4900
|
+
return Ze(() => o()), tl(() => window.removeEventListener("resize", r)), (i, m) => (p(), y("div", Qr, [
|
|
4883
4901
|
b("div", null, [
|
|
4884
|
-
t.value ? (
|
|
4902
|
+
t.value ? (p(), y("div", {
|
|
4885
4903
|
key: 0,
|
|
4886
4904
|
class: "cl-bg-white cl-cursor-pointer cl-float-left cl-h-11 cl-w-4",
|
|
4887
4905
|
onClick: m[0] || (m[0] = (k) => s("left"))
|
|
@@ -4901,13 +4919,13 @@ const Gn = /* @__PURE__ */ ke(_n, [["render", Hn]]), Zn = { class: "cl-w-full" }
|
|
|
4901
4919
|
"cl-shadow-[inset_0_-1px_0_#f0506e]": !i.disabled && i.colour === "danger",
|
|
4902
4920
|
"cl-shadow-[inset_0_-1px_0_#1e90ff]": !i.disabled && i.colour === "blue",
|
|
4903
4921
|
"cl-shadow-[inset_0_-1px_0_#d7d7d7]": i.disabled,
|
|
4904
|
-
"cl-mr-4":
|
|
4922
|
+
"cl-mr-4": n.value
|
|
4905
4923
|
}]),
|
|
4906
|
-
onScrollPassive:
|
|
4924
|
+
onScrollPassive: r
|
|
4907
4925
|
}, [
|
|
4908
|
-
V(i.$slots, "headings", ce(
|
|
4926
|
+
V(i.$slots, "headings", ce(ve({ isTabOpen: c, disabled: i.disabled, colour: i.colour })))
|
|
4909
4927
|
], 34),
|
|
4910
|
-
|
|
4928
|
+
n.value ? (p(), y("div", {
|
|
4911
4929
|
key: 1,
|
|
4912
4930
|
class: "cl-bg-white cl-bottom-12 cl-cursor-pointer cl-float-right cl-h-11 cl-relative cl-w-4",
|
|
4913
4931
|
onClick: m[1] || (m[1] = (k) => s("right"))
|
|
@@ -4918,10 +4936,10 @@ const Gn = /* @__PURE__ */ ke(_n, [["render", Hn]]), Zn = { class: "cl-w-full" }
|
|
|
4918
4936
|
})
|
|
4919
4937
|
])) : j("", !0)
|
|
4920
4938
|
]),
|
|
4921
|
-
V(i.$slots, "content", ce(
|
|
4939
|
+
V(i.$slots, "content", ce(ve({ isTabOpen: c, disabled: i.disabled, colour: i.colour })))
|
|
4922
4940
|
]));
|
|
4923
4941
|
}
|
|
4924
|
-
}),
|
|
4942
|
+
}), Yr = ["onKeyup"], Jr = /* @__PURE__ */ Q({
|
|
4925
4943
|
__name: "cl-ui-tab-header",
|
|
4926
4944
|
props: {
|
|
4927
4945
|
id: {},
|
|
@@ -4933,11 +4951,11 @@ const Gn = /* @__PURE__ */ ke(_n, [["render", Hn]]), Zn = { class: "cl-w-full" }
|
|
|
4933
4951
|
"update:currentTab": null
|
|
4934
4952
|
},
|
|
4935
4953
|
setup(a, { emit: e }) {
|
|
4936
|
-
const l = a, t = I(),
|
|
4937
|
-
function
|
|
4938
|
-
l.disabled || (t.value = !1,
|
|
4954
|
+
const l = a, t = I(), n = I(), c = R(() => l.id === l.currentTab);
|
|
4955
|
+
function r() {
|
|
4956
|
+
l.disabled || (t.value = !1, n.value = !1, e("update:currentTab", l.id));
|
|
4939
4957
|
}
|
|
4940
|
-
return (o, s) => (
|
|
4958
|
+
return (o, s) => (p(), y("div", {
|
|
4941
4959
|
class: M(["cl-border-b cl-cursor-pointer cl-flex cl-items-center cl-px-4 cl-py-2 cl-rounded-b-none cl-rounded-sm cl-select-none cl-text-xl cl-transition cl-whitespace-nowrap focus:cl-outline-none", {
|
|
4942
4960
|
"!cl-cursor-default cl-text-grey-4 !cl-border-grey-2": o.disabled,
|
|
4943
4961
|
"cl-border cl-border-b-0 cl-rounded-t-md cl-shadow-[inset_0_-1px_0_#ffffff] cl-cursor-default": c.value,
|
|
@@ -4958,30 +4976,30 @@ const Gn = /* @__PURE__ */ ke(_n, [["render", Hn]]), Zn = { class: "cl-w-full" }
|
|
|
4958
4976
|
"cl-bg-link-lighter": t.value && !o.disabled && o.colour === "blue"
|
|
4959
4977
|
}]),
|
|
4960
4978
|
tabindex: "0",
|
|
4961
|
-
onClick:
|
|
4962
|
-
onMouseover: s[0] || (s[0] = (i) =>
|
|
4963
|
-
onMouseout: s[1] || (s[1] = (i) =>
|
|
4979
|
+
onClick: r,
|
|
4980
|
+
onMouseover: s[0] || (s[0] = (i) => n.value = !0),
|
|
4981
|
+
onMouseout: s[1] || (s[1] = (i) => n.value = !1),
|
|
4964
4982
|
onFocusin: s[2] || (s[2] = (i) => t.value = !0),
|
|
4965
4983
|
onFocusout: s[3] || (s[3] = (i) => t.value = !1),
|
|
4966
|
-
onKeyup: Ee(
|
|
4984
|
+
onKeyup: Ee(ne(r, ["self"]), ["enter"])
|
|
4967
4985
|
}, [
|
|
4968
4986
|
V(o.$slots, "default")
|
|
4969
|
-
], 42,
|
|
4987
|
+
], 42, Yr));
|
|
4970
4988
|
}
|
|
4971
|
-
}),
|
|
4972
|
-
function
|
|
4989
|
+
}), Xr = {};
|
|
4990
|
+
function es(a, e) {
|
|
4973
4991
|
return V(a.$slots, "default");
|
|
4974
4992
|
}
|
|
4975
|
-
const
|
|
4993
|
+
const ls = /* @__PURE__ */ ke(Xr, [["render", es]]), ts = [
|
|
4976
4994
|
"default",
|
|
4977
4995
|
"primary",
|
|
4978
4996
|
"secondary",
|
|
4979
4997
|
"danger",
|
|
4980
4998
|
"blue"
|
|
4981
|
-
],
|
|
4999
|
+
], as = [
|
|
4982
5000
|
"left",
|
|
4983
5001
|
"right"
|
|
4984
|
-
],
|
|
5002
|
+
], os = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
4985
5003
|
__proto__: null,
|
|
4986
5004
|
FilterOperation: ee,
|
|
4987
5005
|
allQuickDates: Sl,
|
|
@@ -4989,53 +5007,53 @@ const Xn = /* @__PURE__ */ ke(Yn, [["render", Jn]]), es = [
|
|
|
4989
5007
|
buttonSizes: gt,
|
|
4990
5008
|
cardSizes: yt,
|
|
4991
5009
|
clUiAccordion: Jl,
|
|
4992
|
-
clUiAccordionHeader:
|
|
5010
|
+
clUiAccordionHeader: rt,
|
|
4993
5011
|
clUiAccordionItem: tt,
|
|
4994
5012
|
clUiApp: ut,
|
|
4995
5013
|
clUiButton: be,
|
|
4996
5014
|
clUiCard: ht,
|
|
4997
|
-
clUiComboBox:
|
|
5015
|
+
clUiComboBox: no,
|
|
4998
5016
|
clUiFooter: go,
|
|
4999
|
-
clUiGrid:
|
|
5000
|
-
clUiHeader:
|
|
5001
|
-
clUiHeaderMenu:
|
|
5017
|
+
clUiGrid: lr,
|
|
5018
|
+
clUiHeader: ar,
|
|
5019
|
+
clUiHeaderMenu: ur,
|
|
5002
5020
|
clUiInput: me,
|
|
5003
|
-
clUiLanguageSwitcher:
|
|
5021
|
+
clUiLanguageSwitcher: br,
|
|
5004
5022
|
clUiLoadingSpinner: Ke,
|
|
5005
|
-
clUiLogin:
|
|
5023
|
+
clUiLogin: Er,
|
|
5006
5024
|
clUiModal: Fl,
|
|
5007
|
-
clUiNavigation:
|
|
5008
|
-
clUiNavigationGroup:
|
|
5009
|
-
clUiNavigationIcon:
|
|
5010
|
-
clUiNavigationItem:
|
|
5011
|
-
clUiNavigationSection:
|
|
5025
|
+
clUiNavigation: jr,
|
|
5026
|
+
clUiNavigationGroup: Lr,
|
|
5027
|
+
clUiNavigationIcon: Fr,
|
|
5028
|
+
clUiNavigationItem: Kr,
|
|
5029
|
+
clUiNavigationSection: xr,
|
|
5012
5030
|
clUiNotification: Ol,
|
|
5013
|
-
clUiTab:
|
|
5014
|
-
clUiTabContent:
|
|
5015
|
-
clUiTabHeader:
|
|
5031
|
+
clUiTab: Wr,
|
|
5032
|
+
clUiTabContent: ls,
|
|
5033
|
+
clUiTabHeader: Jr,
|
|
5016
5034
|
currentQuickDates: Ie,
|
|
5017
|
-
filterMethodTypes:
|
|
5035
|
+
filterMethodTypes: nn,
|
|
5018
5036
|
futureQuickDates: Be,
|
|
5019
|
-
gridColumnTypes:
|
|
5037
|
+
gridColumnTypes: tn,
|
|
5020
5038
|
inputTypes: Bt,
|
|
5021
5039
|
isComboBoxCreateRequest: so,
|
|
5022
|
-
isComboBoxItem:
|
|
5023
|
-
isFilterRequest:
|
|
5024
|
-
isFilterResponse:
|
|
5040
|
+
isComboBoxItem: ro,
|
|
5041
|
+
isFilterRequest: cn,
|
|
5042
|
+
isFilterResponse: un,
|
|
5025
5043
|
isGridColumn: Ml,
|
|
5026
|
-
isGridColumnArray:
|
|
5027
|
-
isLanguageArray:
|
|
5044
|
+
isGridColumnArray: an,
|
|
5045
|
+
isLanguageArray: dr,
|
|
5028
5046
|
isLanguageLocaleFormat: el,
|
|
5029
|
-
modalColours:
|
|
5030
|
-
modalSizes:
|
|
5047
|
+
modalColours: qr,
|
|
5048
|
+
modalSizes: Ar,
|
|
5031
5049
|
pastQuickDates: Ue,
|
|
5032
5050
|
quickDateNames: Ft,
|
|
5033
|
-
stringFormats:
|
|
5034
|
-
tabColours:
|
|
5035
|
-
tabScroll:
|
|
5051
|
+
stringFormats: on,
|
|
5052
|
+
tabColours: ts,
|
|
5053
|
+
tabScroll: as
|
|
5036
5054
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
5037
|
-
const
|
|
5038
|
-
a.use(we), a.component("Icon", x), Object.entries(
|
|
5055
|
+
const hs = (a) => {
|
|
5056
|
+
a.use(we), a.component("Icon", x), Object.entries(os).forEach(([
|
|
5039
5057
|
e,
|
|
5040
5058
|
l
|
|
5041
5059
|
]) => {
|
|
@@ -5043,8 +5061,8 @@ const gs = (a) => {
|
|
|
5043
5061
|
});
|
|
5044
5062
|
};
|
|
5045
5063
|
export {
|
|
5046
|
-
|
|
5047
|
-
|
|
5064
|
+
bs as CitrusLimeUI,
|
|
5065
|
+
re as DateFormat,
|
|
5048
5066
|
ee as FilterOperation,
|
|
5049
5067
|
ue as NumberFormat,
|
|
5050
5068
|
Sl as allQuickDates,
|
|
@@ -5052,60 +5070,60 @@ export {
|
|
|
5052
5070
|
gt as buttonSizes,
|
|
5053
5071
|
yt as cardSizes,
|
|
5054
5072
|
Jl as clUiAccordion,
|
|
5055
|
-
|
|
5073
|
+
rt as clUiAccordionHeader,
|
|
5056
5074
|
tt as clUiAccordionItem,
|
|
5057
5075
|
ut as clUiApp,
|
|
5058
5076
|
be as clUiButton,
|
|
5059
5077
|
ht as clUiCard,
|
|
5060
|
-
|
|
5078
|
+
no as clUiComboBox,
|
|
5061
5079
|
go as clUiFooter,
|
|
5062
|
-
|
|
5063
|
-
|
|
5064
|
-
|
|
5080
|
+
lr as clUiGrid,
|
|
5081
|
+
ar as clUiHeader,
|
|
5082
|
+
ur as clUiHeaderMenu,
|
|
5065
5083
|
me as clUiInput,
|
|
5066
|
-
|
|
5084
|
+
br as clUiLanguageSwitcher,
|
|
5067
5085
|
Ke as clUiLoadingSpinner,
|
|
5068
|
-
|
|
5086
|
+
Er as clUiLogin,
|
|
5069
5087
|
Fl as clUiModal,
|
|
5070
|
-
|
|
5071
|
-
|
|
5072
|
-
|
|
5073
|
-
|
|
5074
|
-
|
|
5088
|
+
jr as clUiNavigation,
|
|
5089
|
+
Lr as clUiNavigationGroup,
|
|
5090
|
+
Fr as clUiNavigationIcon,
|
|
5091
|
+
Kr as clUiNavigationItem,
|
|
5092
|
+
xr as clUiNavigationSection,
|
|
5075
5093
|
Ol as clUiNotification,
|
|
5076
|
-
|
|
5077
|
-
|
|
5078
|
-
|
|
5094
|
+
Wr as clUiTab,
|
|
5095
|
+
ls as clUiTabContent,
|
|
5096
|
+
Jr as clUiTabHeader,
|
|
5079
5097
|
Ie as currentQuickDates,
|
|
5080
5098
|
Tt as datetimeFormats,
|
|
5081
|
-
|
|
5082
|
-
|
|
5099
|
+
hs as default,
|
|
5100
|
+
nn as filterMethodTypes,
|
|
5083
5101
|
Be as futureQuickDates,
|
|
5084
|
-
|
|
5102
|
+
tn as gridColumnTypes,
|
|
5085
5103
|
we as i18n,
|
|
5086
5104
|
Bt as inputTypes,
|
|
5087
5105
|
so as isComboBoxCreateRequest,
|
|
5088
|
-
|
|
5089
|
-
|
|
5090
|
-
|
|
5106
|
+
ro as isComboBoxItem,
|
|
5107
|
+
cn as isFilterRequest,
|
|
5108
|
+
un as isFilterResponse,
|
|
5091
5109
|
Ml as isGridColumn,
|
|
5092
|
-
|
|
5093
|
-
|
|
5110
|
+
an as isGridColumnArray,
|
|
5111
|
+
dr as isLanguageArray,
|
|
5094
5112
|
el as isLanguageLocaleFormat,
|
|
5095
5113
|
wt as messages,
|
|
5096
|
-
|
|
5097
|
-
|
|
5114
|
+
qr as modalColours,
|
|
5115
|
+
Ar as modalSizes,
|
|
5098
5116
|
kt as numberFormats,
|
|
5099
5117
|
Ue as pastQuickDates,
|
|
5100
5118
|
Ft as quickDateNames,
|
|
5101
|
-
|
|
5102
|
-
|
|
5103
|
-
|
|
5104
|
-
|
|
5119
|
+
gs as setCurrentLocale,
|
|
5120
|
+
vs as setLocaleDateTimeFormats,
|
|
5121
|
+
ps as setLocaleMessages,
|
|
5122
|
+
ms as setLocaleNumberFormats,
|
|
5105
5123
|
sl as showNotification,
|
|
5106
|
-
|
|
5107
|
-
|
|
5108
|
-
|
|
5124
|
+
on as stringFormats,
|
|
5125
|
+
ts as tabColours,
|
|
5126
|
+
as as tabScroll,
|
|
5109
5127
|
St as validateEmail,
|
|
5110
5128
|
Ct as validateMaxValue,
|
|
5111
5129
|
$t as validateMinValue
|