@citruslime/ui 2.1.0-beta.4 → 2.1.1-beta.0
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 +1173 -1161
- package/dist/citrus-lime-ui.umd.js +2 -2
- package/dist/components/grid/body/cl-ui-grid-row.d.ts +12 -1
- package/dist/components/grid/cl-ui-grid.d.ts +6 -4
- package/dist/components/grid/header/cl-ui-grid-action-row.d.ts +4 -3
- package/dist/components/grid/header/cl-ui-grid-filter.d.ts +1 -1
- package/dist/components/grid/header/cl-ui-grid-header.d.ts +7 -5
- package/dist/components/grid/utils.d.ts +15 -0
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { Icon as
|
|
2
|
-
import { defineComponent as D, ref as C, openBlock as
|
|
3
|
-
import { generateStringId as
|
|
4
|
-
import { createI18n as
|
|
5
|
-
import
|
|
6
|
-
import { useDebouncer as
|
|
7
|
-
import { useTimeoutFn as
|
|
8
|
-
const
|
|
1
|
+
import { Icon as fl } from "@iconify/vue";
|
|
2
|
+
import { defineComponent as D, ref as C, openBlock as s, createElementBlock as v, renderSlot as O, normalizeProps as oe, guardReactiveProps as ie, resolveComponent as K, Fragment as P, createElementVNode as u, normalizeClass as M, createVNode as w, Transition as $e, withCtx as B, withDirectives as q, vShow as R, createBlock as z, Teleport as Fe, renderList as te, unref as a, mergeProps as ve, toDisplayString as x, createCommentVNode as A, nextTick as ke, computed as E, watch as W, onMounted as Ee, onUnmounted as Pe, isRef as be, normalizeStyle as nl, vModelText as ml, withModifiers as Y, vModelDynamic as gl, withKeys as Se, createTextVNode as le, watchEffect as bl, createSlots as Ve } from "vue";
|
|
3
|
+
import { generateStringId as vl } from "@citruslime/utils";
|
|
4
|
+
import { createI18n as hl, useI18n as ae } from "vue-i18n";
|
|
5
|
+
import Je from "flatpickr";
|
|
6
|
+
import { useDebouncer as pl, copy as me } from "@citruslime/vue-utils";
|
|
7
|
+
import { useTimeoutFn as ol, useDebounceFn as al, onClickOutside as cl, useWindowSize as yl } from "@vueuse/core";
|
|
8
|
+
const wl = { class: "cl-overflow-hidden" }, xl = /* @__PURE__ */ D({
|
|
9
9
|
__name: "cl-ui-accordion",
|
|
10
10
|
props: {
|
|
11
11
|
exclusive: { type: Boolean, default: !1 }
|
|
@@ -13,23 +13,23 @@ const pl = { class: "cl-overflow-hidden" }, yl = /* @__PURE__ */ D({
|
|
|
13
13
|
setup(e) {
|
|
14
14
|
const n = e, t = C([]);
|
|
15
15
|
function l(i) {
|
|
16
|
-
let c = t.value.find((
|
|
16
|
+
let c = t.value.find((b) => b.id === i);
|
|
17
17
|
return c || (c = {
|
|
18
18
|
id: i,
|
|
19
19
|
open: !1
|
|
20
20
|
}, t.value.push(c)), c.open;
|
|
21
21
|
}
|
|
22
22
|
function o(i) {
|
|
23
|
-
const c = t.value.find((
|
|
24
|
-
c && (n.exclusive && t.value.forEach((
|
|
25
|
-
|
|
23
|
+
const c = t.value.find((b) => b.id === i);
|
|
24
|
+
c && (n.exclusive && t.value.forEach((b) => {
|
|
25
|
+
b.id !== i && (b.open = !1);
|
|
26
26
|
}), c.open = !c.open);
|
|
27
27
|
}
|
|
28
|
-
return (i, c) => (
|
|
29
|
-
|
|
28
|
+
return (i, c) => (s(), v("div", wl, [
|
|
29
|
+
O(i.$slots, "default", oe(ie({ isItemOpen: l, toggleItem: o })))
|
|
30
30
|
]));
|
|
31
31
|
}
|
|
32
|
-
}),
|
|
32
|
+
}), $l = { class: "cl-absolute cl-left-5 cl-top-5" }, kl = { class: "cl-font-semibold cl-ml-10 cl-p-4 cl-select-none cl-text-grey-5" }, Tl = { class: "cl-overflow-hidden" }, Cl = { class: "cl-ml-10 cl-p-4" }, Sl = /* @__PURE__ */ D({
|
|
33
33
|
__name: "cl-ui-accordion-item",
|
|
34
34
|
props: {
|
|
35
35
|
open: { type: Boolean },
|
|
@@ -45,32 +45,32 @@ const pl = { class: "cl-overflow-hidden" }, yl = /* @__PURE__ */ D({
|
|
|
45
45
|
}
|
|
46
46
|
return (o, i) => {
|
|
47
47
|
const c = K("icon");
|
|
48
|
-
return
|
|
49
|
-
|
|
50
|
-
class:
|
|
48
|
+
return s(), v(P, null, [
|
|
49
|
+
u("div", {
|
|
50
|
+
class: M(["cl-border-b cl-border-grey-1 cl-relative", {
|
|
51
51
|
"cl-bg-grey-0": e.disabled,
|
|
52
52
|
"cl-cursor-pointer": !e.disabled
|
|
53
53
|
}]),
|
|
54
54
|
onClick: l
|
|
55
55
|
}, [
|
|
56
|
-
|
|
56
|
+
u("div", $l, [
|
|
57
57
|
w(c, {
|
|
58
|
-
class:
|
|
58
|
+
class: M(["cl-duration-300 cl-ease-in-out cl-text-grey-3 cl-transform-gpu cl-transition-transform", {
|
|
59
59
|
"cl-rotate-180": e.open
|
|
60
60
|
}]),
|
|
61
61
|
icon: "ph:caret-down-bold",
|
|
62
62
|
width: "20"
|
|
63
63
|
}, null, 8, ["class"])
|
|
64
64
|
]),
|
|
65
|
-
|
|
66
|
-
|
|
65
|
+
u("div", kl, [
|
|
66
|
+
O(o.$slots, "title")
|
|
67
67
|
])
|
|
68
68
|
], 2),
|
|
69
|
-
|
|
69
|
+
u("div", Tl, [
|
|
70
70
|
w($e, { name: "grow-down" }, {
|
|
71
|
-
default:
|
|
72
|
-
q(
|
|
73
|
-
|
|
71
|
+
default: B(() => [
|
|
72
|
+
q(u("div", Cl, [
|
|
73
|
+
O(o.$slots, "default")
|
|
74
74
|
], 512), [
|
|
75
75
|
[R, e.open]
|
|
76
76
|
])
|
|
@@ -86,27 +86,27 @@ const pl = { class: "cl-overflow-hidden" }, yl = /* @__PURE__ */ D({
|
|
|
86
86
|
for (const [l, o] of n)
|
|
87
87
|
t[l] = o;
|
|
88
88
|
return t;
|
|
89
|
-
},
|
|
90
|
-
function
|
|
91
|
-
return
|
|
92
|
-
|
|
89
|
+
}, El = {}, Ol = { 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" };
|
|
90
|
+
function jl(e, n) {
|
|
91
|
+
return s(), v("div", Ol, [
|
|
92
|
+
O(e.$slots, "default")
|
|
93
93
|
]);
|
|
94
94
|
}
|
|
95
|
-
const
|
|
96
|
-
function
|
|
95
|
+
const Al = /* @__PURE__ */ he(El, [["render", jl]]), Me = C([]);
|
|
96
|
+
function Ke(e) {
|
|
97
97
|
const n = {
|
|
98
|
-
id:
|
|
98
|
+
id: vl(),
|
|
99
99
|
...e
|
|
100
100
|
};
|
|
101
|
-
|
|
101
|
+
Me.value.push(n), setTimeout(() => sl(n), e.duration);
|
|
102
102
|
}
|
|
103
|
-
function
|
|
104
|
-
|
|
103
|
+
function sl(e) {
|
|
104
|
+
Me.value = Me.value.filter((n) => n.id !== e.id);
|
|
105
105
|
}
|
|
106
|
-
const
|
|
106
|
+
const Ml = ["onClick"], Il = { class: "cl-flex-1 cl-select-none cl-text-ellipsis cl-w-64" }, Nl = {
|
|
107
107
|
inheritAttrs: !1
|
|
108
|
-
},
|
|
109
|
-
...
|
|
108
|
+
}, il = /* @__PURE__ */ D({
|
|
109
|
+
...Nl,
|
|
110
110
|
__name: "cl-ui-notification",
|
|
111
111
|
props: {
|
|
112
112
|
container: { default: "body" },
|
|
@@ -115,9 +115,9 @@ const jl = ["onClick"], Al = { class: "cl-flex-1 cl-select-none cl-text-ellipsis
|
|
|
115
115
|
setup(e) {
|
|
116
116
|
return (n, t) => {
|
|
117
117
|
const l = K("icon");
|
|
118
|
-
return
|
|
119
|
-
|
|
120
|
-
class:
|
|
118
|
+
return s(), z(Fe, { to: e.container }, [
|
|
119
|
+
u("div", {
|
|
120
|
+
class: M(["cl-fixed cl-w-80 cl-z-40", {
|
|
121
121
|
"cl-top-5 cl-left-5": e.position === "top-left",
|
|
122
122
|
"cl-top-5 cl-left-1/2": e.position === "top-centre",
|
|
123
123
|
"cl-top-5 cl-right-5": e.position === "top-right",
|
|
@@ -126,7 +126,7 @@ const jl = ["onClick"], Al = { class: "cl-flex-1 cl-select-none cl-text-ellipsis
|
|
|
126
126
|
"cl-bottom-5 cl-right-5": e.position === "bottom-right"
|
|
127
127
|
}])
|
|
128
128
|
}, [
|
|
129
|
-
(
|
|
129
|
+
(s(!0), v(P, null, te(a(Me), (o, i) => (s(), v("div", ve(n.$attrs, {
|
|
130
130
|
key: i,
|
|
131
131
|
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", {
|
|
132
132
|
"cl-bg-white": o.colour === "default",
|
|
@@ -135,56 +135,56 @@ const jl = ["onClick"], Al = { class: "cl-flex-1 cl-select-none cl-text-ellipsis
|
|
|
135
135
|
"cl-bg-danger-default": o.colour === "danger",
|
|
136
136
|
"cl-bg-warning-default": o.colour === "warning"
|
|
137
137
|
}],
|
|
138
|
-
onClick: (c) => a(
|
|
138
|
+
onClick: (c) => a(sl)(o)
|
|
139
139
|
}), [
|
|
140
|
-
|
|
140
|
+
u("span", Il, x(o.message), 1),
|
|
141
141
|
w(l, {
|
|
142
142
|
class: "cl-inline-block cl-opacity-0 cl-transition-opacity group-hover:cl-opacity-100",
|
|
143
143
|
icon: "ph:x",
|
|
144
144
|
size: 16,
|
|
145
145
|
weight: "bold"
|
|
146
146
|
})
|
|
147
|
-
], 16,
|
|
147
|
+
], 16, Ml))), 128))
|
|
148
148
|
], 2)
|
|
149
149
|
], 8, ["to"]);
|
|
150
150
|
};
|
|
151
151
|
}
|
|
152
|
-
}),
|
|
152
|
+
}), Dl = { class: "cl-absolute cl-flex cl-flex-wrap cl-h-screen cl-max-h-screen cl-max-w-full cl-min-h-screen cl-min-w-full cl-w-full" }, ql = /* @__PURE__ */ D({
|
|
153
153
|
__name: "cl-ui-app",
|
|
154
154
|
props: {
|
|
155
155
|
removePadding: { type: Boolean, default: !1 }
|
|
156
156
|
},
|
|
157
157
|
setup(e) {
|
|
158
|
-
return (n, t) => (
|
|
159
|
-
w(
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
class:
|
|
158
|
+
return (n, t) => (s(), v(P, null, [
|
|
159
|
+
w(il),
|
|
160
|
+
u("div", Dl, [
|
|
161
|
+
O(n.$slots, "header"),
|
|
162
|
+
u("div", {
|
|
163
|
+
class: M(["cl-content-start cl-flex cl-flex-nowrap cl-items-stretch cl-max-h-screen cl-relative cl-w-full", {
|
|
164
164
|
"cl-pt-20": n.$slots.header
|
|
165
165
|
}])
|
|
166
166
|
}, [
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
class:
|
|
167
|
+
O(n.$slots, "navigation"),
|
|
168
|
+
u("div", {
|
|
169
|
+
class: M(["cl-grow cl-max-h-full cl-overflow-x-hidden cl-overflow-y-auto cl-overscroll-y-none cl-w-auto", {
|
|
170
170
|
"md:cl-p-8 cl-p-2": !e.removePadding
|
|
171
171
|
}])
|
|
172
172
|
}, [
|
|
173
|
-
|
|
173
|
+
O(n.$slots, "default")
|
|
174
174
|
], 2)
|
|
175
175
|
], 2)
|
|
176
176
|
])
|
|
177
177
|
], 64));
|
|
178
178
|
}
|
|
179
179
|
});
|
|
180
|
-
const
|
|
181
|
-
function
|
|
182
|
-
return
|
|
180
|
+
const Rl = {}, Ul = { class: "loading-spinner" };
|
|
181
|
+
function Pl(e, n) {
|
|
182
|
+
return s(), v("div", Ul);
|
|
183
183
|
}
|
|
184
|
-
const
|
|
184
|
+
const Ge = /* @__PURE__ */ he(Rl, [["render", Pl], ["__scopeId", "data-v-a21dc5d2"]]), Bl = ["disabled"], zl = {
|
|
185
185
|
inheritAttrs: !1
|
|
186
186
|
}, we = /* @__PURE__ */ D({
|
|
187
|
-
...
|
|
187
|
+
...zl,
|
|
188
188
|
__name: "cl-ui-button",
|
|
189
189
|
props: {
|
|
190
190
|
colour: { default: "default" },
|
|
@@ -198,11 +198,11 @@ const Ve = /* @__PURE__ */ he(Dl, [["render", Rl], ["__scopeId", "data-v-a21dc5d
|
|
|
198
198
|
focus() {
|
|
199
199
|
t.value && t.value.focus();
|
|
200
200
|
}
|
|
201
|
-
}), (l, o) => (
|
|
202
|
-
q(w(
|
|
201
|
+
}), (l, o) => (s(), v(P, null, [
|
|
202
|
+
q(w(Ge, null, null, 512), [
|
|
203
203
|
[R, e.loading]
|
|
204
204
|
]),
|
|
205
|
-
q(
|
|
205
|
+
q(u("button", ve(l.$attrs, {
|
|
206
206
|
ref_key: "buttonRef",
|
|
207
207
|
ref: t,
|
|
208
208
|
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", {
|
|
@@ -218,77 +218,77 @@ const Ve = /* @__PURE__ */ he(Dl, [["render", Rl], ["__scopeId", "data-v-a21dc5d
|
|
|
218
218
|
}],
|
|
219
219
|
disabled: e.disabled
|
|
220
220
|
}), [
|
|
221
|
-
|
|
222
|
-
], 16,
|
|
221
|
+
O(l.$slots, "default")
|
|
222
|
+
], 16, Bl), [
|
|
223
223
|
[R, !e.loading]
|
|
224
224
|
])
|
|
225
225
|
], 64));
|
|
226
226
|
}
|
|
227
|
-
}),
|
|
227
|
+
}), Ll = [
|
|
228
228
|
"default",
|
|
229
229
|
"primary",
|
|
230
230
|
"secondary",
|
|
231
231
|
"danger",
|
|
232
232
|
"blue"
|
|
233
|
-
],
|
|
233
|
+
], Fl = [
|
|
234
234
|
"small",
|
|
235
235
|
"medium",
|
|
236
236
|
"large"
|
|
237
|
-
],
|
|
237
|
+
], Vl = { key: 0 }, Gl = /* @__PURE__ */ D({
|
|
238
238
|
__name: "cl-ui-card",
|
|
239
239
|
props: {
|
|
240
240
|
size: { default: "medium" },
|
|
241
241
|
hover: { type: Boolean, default: !1 }
|
|
242
242
|
},
|
|
243
243
|
setup(e) {
|
|
244
|
-
return (n, t) => (
|
|
245
|
-
class:
|
|
244
|
+
return (n, t) => (s(), v("div", {
|
|
245
|
+
class: M(["cl-border cl-border-transparent cl-overflow-hidden cl-relative cl-rounded-md cl-shadow-lg cl-transition-all", {
|
|
246
246
|
"cl-cursor-pointer hover:cl-shadow-xl hover:cl-border-grey-0": e.hover
|
|
247
247
|
}])
|
|
248
248
|
}, [
|
|
249
|
-
n.$slots.image ? (
|
|
250
|
-
|
|
251
|
-
])) :
|
|
252
|
-
n.$slots.title ? (
|
|
249
|
+
n.$slots.image ? (s(), v("div", Vl, [
|
|
250
|
+
O(n.$slots, "image")
|
|
251
|
+
])) : A("", !0),
|
|
252
|
+
n.$slots.title ? (s(), v("div", {
|
|
253
253
|
key: 1,
|
|
254
|
-
class:
|
|
254
|
+
class: M(["cl-border-grey-2 cl-font-normal", {
|
|
255
255
|
"cl-p-2 cl-text-2xl cl-leading-8": e.size === "small",
|
|
256
256
|
"cl-p-4 cl-text-3xl cl-leading-9": e.size === "medium",
|
|
257
257
|
"cl-p-6 cl-text-4xl cl-leading-10": e.size === "large",
|
|
258
258
|
"cl-border-t": n.$slots.image
|
|
259
259
|
}])
|
|
260
260
|
}, [
|
|
261
|
-
|
|
262
|
-
], 2)) :
|
|
263
|
-
|
|
264
|
-
class:
|
|
261
|
+
O(n.$slots, "title")
|
|
262
|
+
], 2)) : A("", !0),
|
|
263
|
+
u("div", {
|
|
264
|
+
class: M(["cl-border-grey-2", {
|
|
265
265
|
"cl-p-2": e.size === "small",
|
|
266
266
|
"cl-p-4": e.size === "medium",
|
|
267
267
|
"cl-p-6": e.size === "large",
|
|
268
268
|
"cl-border-t": n.$slots.image || n.$slots.title
|
|
269
269
|
}])
|
|
270
270
|
}, [
|
|
271
|
-
|
|
271
|
+
O(n.$slots, "default")
|
|
272
272
|
], 2),
|
|
273
|
-
n.$slots.footer ? (
|
|
273
|
+
n.$slots.footer ? (s(), v("div", {
|
|
274
274
|
key: 2,
|
|
275
|
-
class:
|
|
275
|
+
class: M(["cl-border-grey-2 cl-border-t", {
|
|
276
276
|
"cl-p-2": e.size === "small",
|
|
277
277
|
"cl-p-4": e.size === "medium",
|
|
278
278
|
"cl-p-6": e.size === "large"
|
|
279
279
|
}])
|
|
280
280
|
}, [
|
|
281
|
-
|
|
282
|
-
], 2)) :
|
|
281
|
+
O(n.$slots, "footer")
|
|
282
|
+
], 2)) : A("", !0)
|
|
283
283
|
], 2));
|
|
284
284
|
}
|
|
285
|
-
}),
|
|
285
|
+
}), Hl = [
|
|
286
286
|
"small",
|
|
287
287
|
"medium",
|
|
288
288
|
"large"
|
|
289
289
|
];
|
|
290
290
|
var ne = /* @__PURE__ */ ((e) => (e.CURRENCY = "currency", e.PERCENTAGE = "percentage", e.INTEGER = "integer", e.DECIMAL = "decimal", e.MULTIPLIER = "multiplier", e))(ne || {}), H = /* @__PURE__ */ ((e) => (e.SHORT_DATE = "short-date", e.SHORT_DATETIME = "short-datetime", e.DATE = "date", e.DATETIME = "datetime", e.LONG_DATE = "long-date", e.LONG_DATETIME = "long-datetime", e.TIME = "time", e.MONTH_YEAR = "month-year", e))(H || {});
|
|
291
|
-
const
|
|
291
|
+
const Wl = {
|
|
292
292
|
"en-GB": {
|
|
293
293
|
comboBox: {
|
|
294
294
|
emptyHintText: "Choose a {object}",
|
|
@@ -366,7 +366,7 @@ const Gl = {
|
|
|
366
366
|
timePlaceholder: "Select time"
|
|
367
367
|
}
|
|
368
368
|
}
|
|
369
|
-
},
|
|
369
|
+
}, Jl = {
|
|
370
370
|
"en-GB": {
|
|
371
371
|
[ne.PERCENTAGE]: {
|
|
372
372
|
style: "percent"
|
|
@@ -383,7 +383,7 @@ const Gl = {
|
|
|
383
383
|
currencyDisplay: "symbol"
|
|
384
384
|
}
|
|
385
385
|
}
|
|
386
|
-
},
|
|
386
|
+
}, Kl = {
|
|
387
387
|
"en-GB": {
|
|
388
388
|
[H.SHORT_DATE]: {
|
|
389
389
|
day: "numeric",
|
|
@@ -430,12 +430,12 @@ const Gl = {
|
|
|
430
430
|
year: "numeric"
|
|
431
431
|
}
|
|
432
432
|
}
|
|
433
|
-
}, ee =
|
|
433
|
+
}, ee = hl({
|
|
434
434
|
locale: "en-GB",
|
|
435
435
|
fallbackLocale: "en-GB",
|
|
436
|
-
messages:
|
|
437
|
-
numberFormats:
|
|
438
|
-
datetimeFormats:
|
|
436
|
+
messages: Wl,
|
|
437
|
+
numberFormats: Jl,
|
|
438
|
+
datetimeFormats: Kl,
|
|
439
439
|
useScope: "global",
|
|
440
440
|
missingWarn: !1,
|
|
441
441
|
fallbackWarn: !1,
|
|
@@ -453,8 +453,8 @@ function _a(e, n) {
|
|
|
453
453
|
function ec(e) {
|
|
454
454
|
return ee.global.locale.value = e, ke();
|
|
455
455
|
}
|
|
456
|
-
const { t:
|
|
457
|
-
function
|
|
456
|
+
const { t: ue } = ee.global;
|
|
457
|
+
function Zl(e, n, t, l) {
|
|
458
458
|
const o = ee.global.locale.value;
|
|
459
459
|
return l instanceof Date && (l = l.getTime()), new Promise((i) => {
|
|
460
460
|
let c = {
|
|
@@ -462,7 +462,7 @@ function Jl(e, n, t, l) {
|
|
|
462
462
|
message: ""
|
|
463
463
|
};
|
|
464
464
|
if (e != null) {
|
|
465
|
-
let
|
|
465
|
+
let b, r;
|
|
466
466
|
switch (n) {
|
|
467
467
|
case "email":
|
|
468
468
|
case "password":
|
|
@@ -470,20 +470,20 @@ function Jl(e, n, t, l) {
|
|
|
470
470
|
case "tel":
|
|
471
471
|
case "text":
|
|
472
472
|
case "url":
|
|
473
|
-
|
|
473
|
+
b = ((l == null ? void 0 : l.length) ?? 0) >= e, c = de(b, ue("input.greaterOrEqualToCharacters", { label: t, min: e.toString() }));
|
|
474
474
|
break;
|
|
475
475
|
case "number":
|
|
476
476
|
case "range":
|
|
477
|
-
|
|
477
|
+
b = l >= e, c = de(b, ue("input.greaterOrEqualToValue", { label: t, min: e.toString() }));
|
|
478
478
|
break;
|
|
479
479
|
case "date":
|
|
480
|
-
|
|
480
|
+
b = l >= new Date(e).getTime(), c = de(b, ue("input.afterOrEqualToValue", { label: t, min: new Date(e).toLocaleDateString(o) }));
|
|
481
481
|
break;
|
|
482
482
|
case "datetime":
|
|
483
|
-
|
|
483
|
+
b = l >= new Date(e).getTime(), c = de(b, ue("input.afterOrEqualToValue", { label: t, min: ee.global.d(new Date(e), H.DATETIME, o ?? ee.global.locale.value) }));
|
|
484
484
|
break;
|
|
485
485
|
case "time":
|
|
486
|
-
|
|
486
|
+
r = e.toDateFromTime(), b = l >= r, c = de(b, ue("input.afterOrEqualToValue", { label: t, min: ee.global.d(new Date(r), H.TIME, o ?? ee.global.locale.value) }));
|
|
487
487
|
break;
|
|
488
488
|
default:
|
|
489
489
|
c.valid = !0;
|
|
@@ -493,7 +493,7 @@ function Jl(e, n, t, l) {
|
|
|
493
493
|
i(c);
|
|
494
494
|
});
|
|
495
495
|
}
|
|
496
|
-
function
|
|
496
|
+
function Ql(e, n, t, l) {
|
|
497
497
|
const o = ee.global.locale.value;
|
|
498
498
|
return l instanceof Date && (l = l.getTime()), new Promise((i) => {
|
|
499
499
|
let c = {
|
|
@@ -501,7 +501,7 @@ function Kl(e, n, t, l) {
|
|
|
501
501
|
message: ""
|
|
502
502
|
};
|
|
503
503
|
if (e != null) {
|
|
504
|
-
let
|
|
504
|
+
let b, r;
|
|
505
505
|
switch (n) {
|
|
506
506
|
case "email":
|
|
507
507
|
case "password":
|
|
@@ -509,20 +509,20 @@ function Kl(e, n, t, l) {
|
|
|
509
509
|
case "tel":
|
|
510
510
|
case "text":
|
|
511
511
|
case "url":
|
|
512
|
-
|
|
512
|
+
b = ((l == null ? void 0 : l.length) ?? 0) <= e, c = de(b, ue("input.lessOrEqualToCharacters", { label: t, max: e.toString() }));
|
|
513
513
|
break;
|
|
514
514
|
case "number":
|
|
515
515
|
case "range":
|
|
516
|
-
|
|
516
|
+
b = l <= e, c = de(b, ue("input.lessOrEqualToValue", { label: t, max: e.toString() }));
|
|
517
517
|
break;
|
|
518
518
|
case "date":
|
|
519
|
-
|
|
519
|
+
b = l <= new Date(e).getTime(), c = de(b, ue("input.beforeOrEqualToValue", { label: t, max: new Date(e).toLocaleDateString(o) }));
|
|
520
520
|
break;
|
|
521
521
|
case "datetime":
|
|
522
|
-
|
|
522
|
+
b = l <= new Date(e).getTime(), c = de(b, ue("input.afterOrEqualToValue", { label: t, min: ee.global.d(new Date(e), H.DATETIME, o ?? ee.global.locale.value) }));
|
|
523
523
|
break;
|
|
524
524
|
case "time":
|
|
525
|
-
|
|
525
|
+
r = e.toDateFromTime(), b = l <= r, c = de(b, ue("input.afterOrEqualToValue", { label: t, min: ee.global.d(new Date(r), H.TIME, o ?? ee.global.locale.value) }));
|
|
526
526
|
break;
|
|
527
527
|
default:
|
|
528
528
|
c.valid = !0;
|
|
@@ -532,30 +532,30 @@ function Kl(e, n, t, l) {
|
|
|
532
532
|
i(c);
|
|
533
533
|
});
|
|
534
534
|
}
|
|
535
|
-
function
|
|
535
|
+
function Yl(e, n) {
|
|
536
536
|
return new Promise((t) => {
|
|
537
|
-
const l = n != null && n !== "" && n.toString().trim() !== "", o =
|
|
537
|
+
const l = n != null && n !== "" && n.toString().trim() !== "", o = de(l, ue("input.valueIsRequired", { label: e }));
|
|
538
538
|
t(o);
|
|
539
539
|
});
|
|
540
540
|
}
|
|
541
|
-
function
|
|
541
|
+
function Xl(e, n) {
|
|
542
542
|
return new Promise((t) => {
|
|
543
|
-
const o = n === "" || /[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(n) !== null, i =
|
|
543
|
+
const o = n === "" || /[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(n) !== null, i = de(o, ue("input.valueNotValidEmail", { label: e }));
|
|
544
544
|
t(i);
|
|
545
545
|
});
|
|
546
546
|
}
|
|
547
|
-
function
|
|
547
|
+
function de(e, n) {
|
|
548
548
|
return {
|
|
549
549
|
valid: e,
|
|
550
550
|
message: e ? "" : n
|
|
551
551
|
};
|
|
552
552
|
}
|
|
553
|
-
var Te = typeof globalThis < "u" ? globalThis : typeof window < "u" ? window : typeof global < "u" ? global : typeof self < "u" ? self : {},
|
|
553
|
+
var Te = typeof globalThis < "u" ? globalThis : typeof window < "u" ? window : typeof global < "u" ? global : typeof self < "u" ? self : {}, Ie = {}, _l = {
|
|
554
554
|
get exports() {
|
|
555
|
-
return
|
|
555
|
+
return Ie;
|
|
556
556
|
},
|
|
557
557
|
set exports(e) {
|
|
558
|
-
|
|
558
|
+
Ie = e;
|
|
559
559
|
}
|
|
560
560
|
};
|
|
561
561
|
(function(e, n) {
|
|
@@ -618,13 +618,13 @@ var Te = typeof globalThis < "u" ? globalThis : typeof window < "u" ? window : t
|
|
|
618
618
|
var i = l.l10ns;
|
|
619
619
|
t.German = o, t.default = i, Object.defineProperty(t, "__esModule", { value: !0 });
|
|
620
620
|
});
|
|
621
|
-
})(
|
|
622
|
-
var
|
|
621
|
+
})(_l, Ie);
|
|
622
|
+
var Ne = {}, et = {
|
|
623
623
|
get exports() {
|
|
624
|
-
return
|
|
624
|
+
return Ne;
|
|
625
625
|
},
|
|
626
626
|
set exports(e) {
|
|
627
|
-
|
|
627
|
+
Ne = e;
|
|
628
628
|
}
|
|
629
629
|
};
|
|
630
630
|
(function(e, n) {
|
|
@@ -704,13 +704,13 @@ var Ie = {}, Xl = {
|
|
|
704
704
|
};
|
|
705
705
|
t.default = l, t.english = l, Object.defineProperty(t, "__esModule", { value: !0 });
|
|
706
706
|
});
|
|
707
|
-
})(
|
|
708
|
-
var
|
|
707
|
+
})(et, Ne);
|
|
708
|
+
var De = {}, lt = {
|
|
709
709
|
get exports() {
|
|
710
|
-
return
|
|
710
|
+
return De;
|
|
711
711
|
},
|
|
712
712
|
set exports(e) {
|
|
713
|
-
|
|
713
|
+
De = e;
|
|
714
714
|
}
|
|
715
715
|
};
|
|
716
716
|
(function(e, n) {
|
|
@@ -773,13 +773,13 @@ var Ne = {}, _l = {
|
|
|
773
773
|
var i = l.l10ns;
|
|
774
774
|
t.Spanish = o, t.default = i, Object.defineProperty(t, "__esModule", { value: !0 });
|
|
775
775
|
});
|
|
776
|
-
})(
|
|
777
|
-
var
|
|
776
|
+
})(lt, De);
|
|
777
|
+
var qe = {}, tt = {
|
|
778
778
|
get exports() {
|
|
779
|
-
return
|
|
779
|
+
return qe;
|
|
780
780
|
},
|
|
781
781
|
set exports(e) {
|
|
782
|
-
|
|
782
|
+
qe = e;
|
|
783
783
|
}
|
|
784
784
|
};
|
|
785
785
|
(function(e, n) {
|
|
@@ -845,13 +845,13 @@ var De = {}, et = {
|
|
|
845
845
|
var i = l.l10ns;
|
|
846
846
|
t.French = o, t.default = i, Object.defineProperty(t, "__esModule", { value: !0 });
|
|
847
847
|
});
|
|
848
|
-
})(
|
|
849
|
-
var
|
|
848
|
+
})(tt, qe);
|
|
849
|
+
var Re = {}, nt = {
|
|
850
850
|
get exports() {
|
|
851
|
-
return
|
|
851
|
+
return Re;
|
|
852
852
|
},
|
|
853
853
|
set exports(e) {
|
|
854
|
-
|
|
854
|
+
Re = e;
|
|
855
855
|
}
|
|
856
856
|
};
|
|
857
857
|
(function(e, n) {
|
|
@@ -917,13 +917,13 @@ var qe = {}, lt = {
|
|
|
917
917
|
var i = l.l10ns;
|
|
918
918
|
t.Italian = o, t.default = i, Object.defineProperty(t, "__esModule", { value: !0 });
|
|
919
919
|
});
|
|
920
|
-
})(
|
|
921
|
-
var
|
|
920
|
+
})(nt, Re);
|
|
921
|
+
var Ue = {}, ot = {
|
|
922
922
|
get exports() {
|
|
923
|
-
return
|
|
923
|
+
return Ue;
|
|
924
924
|
},
|
|
925
925
|
set exports(e) {
|
|
926
|
-
|
|
926
|
+
Ue = e;
|
|
927
927
|
}
|
|
928
928
|
};
|
|
929
929
|
(function(e, n) {
|
|
@@ -989,38 +989,38 @@ var Re = {}, tt = {
|
|
|
989
989
|
var i = l.l10ns;
|
|
990
990
|
t.Dutch = o, t.default = i, Object.defineProperty(t, "__esModule", { value: !0 });
|
|
991
991
|
});
|
|
992
|
-
})(
|
|
993
|
-
function
|
|
992
|
+
})(ot, Ue);
|
|
993
|
+
function at() {
|
|
994
994
|
return new Date("1990-01-02T12:05");
|
|
995
995
|
}
|
|
996
|
-
function
|
|
996
|
+
function ct(e, n, t) {
|
|
997
997
|
return e.replace("1990", t).replace("12", n).replace("01", "m").replace("1", "n").replace("02", "d").replace("2", "j").replace("05", "i").replace("PM", "K");
|
|
998
998
|
}
|
|
999
|
-
function
|
|
999
|
+
function st(e) {
|
|
1000
1000
|
let n;
|
|
1001
1001
|
switch (e) {
|
|
1002
1002
|
case "de-DE":
|
|
1003
|
-
n =
|
|
1003
|
+
n = Ie.German;
|
|
1004
1004
|
break;
|
|
1005
1005
|
case "fr-FR":
|
|
1006
|
-
n =
|
|
1006
|
+
n = qe.French;
|
|
1007
1007
|
break;
|
|
1008
1008
|
case "nl-NL":
|
|
1009
|
-
n =
|
|
1009
|
+
n = Ue.Dutch;
|
|
1010
1010
|
break;
|
|
1011
1011
|
case "it-IT":
|
|
1012
|
-
n =
|
|
1012
|
+
n = Re.Italian;
|
|
1013
1013
|
break;
|
|
1014
1014
|
case "es-ES":
|
|
1015
|
-
n =
|
|
1015
|
+
n = De.Spanish;
|
|
1016
1016
|
break;
|
|
1017
1017
|
default:
|
|
1018
|
-
n =
|
|
1018
|
+
n = Ne.english;
|
|
1019
1019
|
break;
|
|
1020
1020
|
}
|
|
1021
1021
|
return n;
|
|
1022
1022
|
}
|
|
1023
|
-
function
|
|
1023
|
+
function Ze(e, n) {
|
|
1024
1024
|
let t;
|
|
1025
1025
|
if (e.indexOf("/") > -1 || e.indexOf("-") > -1) {
|
|
1026
1026
|
const l = new Date(e).toLocaleString(n), o = l.indexOf(",");
|
|
@@ -1028,7 +1028,7 @@ function Je(e, n) {
|
|
|
1028
1028
|
}
|
|
1029
1029
|
return t;
|
|
1030
1030
|
}
|
|
1031
|
-
function
|
|
1031
|
+
function Qe(e) {
|
|
1032
1032
|
let n;
|
|
1033
1033
|
if (/([0-9]{2}:[0-9]{2})/.exec(e) !== null) {
|
|
1034
1034
|
const l = e.indexOf("T");
|
|
@@ -1036,7 +1036,7 @@ function Ke(e) {
|
|
|
1036
1036
|
}
|
|
1037
1037
|
return n;
|
|
1038
1038
|
}
|
|
1039
|
-
const
|
|
1039
|
+
const it = ["placeholder", "disabled"], rt = { class: "cl-absolute cl-bg-white cl-flex cl-right-2 cl-text-grey-4 cl-top-3.5" }, ut = /* @__PURE__ */ D({
|
|
1040
1040
|
__name: "cl-ui-calendar",
|
|
1041
1041
|
props: {
|
|
1042
1042
|
date: { default: null },
|
|
@@ -1053,89 +1053,89 @@ const ct = ["placeholder", "disabled"], st = { class: "cl-absolute cl-bg-white c
|
|
|
1053
1053
|
valueOutOfRange: null
|
|
1054
1054
|
},
|
|
1055
1055
|
setup(e, { expose: n, emit: t }) {
|
|
1056
|
-
const l = e, { d: o, getDateTimeFormat: i, locale: c, t:
|
|
1056
|
+
const l = e, { d: o, getDateTimeFormat: i, locale: c, t: b } = ae(), r = C(null), h = C(null), p = E(() => o(at(), l.type)), g = E(() => i(c.value)[l.type]), f = E(() => U()), d = E(() => Q()), m = E(() => ge()), y = E(() => Ze(l.min, c.value)), I = E(() => Ze(l.max, c.value)), S = C(!1), J = E(() => {
|
|
1057
1057
|
var se, xe;
|
|
1058
1058
|
let $ = "H", L = "Y";
|
|
1059
|
-
return ((se =
|
|
1060
|
-
}), V =
|
|
1059
|
+
return ((se = g.value) == null ? void 0 : se.hour12) === !0 && ($ = "h"), ((xe = g.value) == null ? void 0 : xe.year) === "2-digit" && (L = "y"), ct(p.value, $, L);
|
|
1060
|
+
}), V = E(() => {
|
|
1061
1061
|
var L, se;
|
|
1062
1062
|
const $ = {
|
|
1063
|
-
...
|
|
1063
|
+
...Je.defaultConfig,
|
|
1064
1064
|
allowInput: !0,
|
|
1065
1065
|
dateFormat: J.value,
|
|
1066
1066
|
disableMobile: !0,
|
|
1067
1067
|
enableTime: l.type === H.DATETIME || l.type === H.TIME,
|
|
1068
|
-
locale:
|
|
1069
|
-
maxDate:
|
|
1070
|
-
maxTime:
|
|
1071
|
-
minDate:
|
|
1072
|
-
minTime:
|
|
1068
|
+
locale: st(c.value),
|
|
1069
|
+
maxDate: I.value,
|
|
1070
|
+
maxTime: m.value,
|
|
1071
|
+
minDate: y.value,
|
|
1072
|
+
minTime: d.value,
|
|
1073
1073
|
minuteIncrement: 1,
|
|
1074
1074
|
monthSelectorType: "static",
|
|
1075
1075
|
noCalendar: l.type === H.TIME,
|
|
1076
1076
|
// eslint-disable-next-line @typescript-eslint/naming-convention
|
|
1077
|
-
time_24hr: typeof ((L =
|
|
1077
|
+
time_24hr: typeof ((L = g.value) == null ? void 0 : L.hour12) > "u" || ((se = g.value) == null ? void 0 : se.hour12) === !1
|
|
1078
1078
|
};
|
|
1079
1079
|
return l.date !== null && ($.defaultDate = l.date), $;
|
|
1080
1080
|
});
|
|
1081
1081
|
function ce($, L, se) {
|
|
1082
1082
|
const xe = $.length > 0 ? $[0] : null;
|
|
1083
|
-
xe !== l.date && !
|
|
1083
|
+
xe !== l.date && !S.value && (t("update:date", xe), xe === null && t("valueOutOfRange")), S.value = !1;
|
|
1084
1084
|
}
|
|
1085
1085
|
function T() {
|
|
1086
|
-
|
|
1086
|
+
S.value = !0, t("update:date", null);
|
|
1087
1087
|
}
|
|
1088
1088
|
function G() {
|
|
1089
|
-
if (
|
|
1089
|
+
if (r.value !== null) {
|
|
1090
1090
|
let $ = new Date();
|
|
1091
1091
|
$.setHours(12, 0, 0, 0);
|
|
1092
1092
|
let L;
|
|
1093
|
-
l.type === "time" ? L = l.min.toDateFromTime() : L = new Date(l.min), L > $ && ($ = L),
|
|
1093
|
+
l.type === "time" ? L = l.min.toDateFromTime() : L = new Date(l.min), L > $ && ($ = L), S.value = !0, t("update:date", $);
|
|
1094
1094
|
}
|
|
1095
1095
|
}
|
|
1096
1096
|
function X() {
|
|
1097
|
-
|
|
1097
|
+
r.value === null && h.value !== null && (r.value = Je(h.value, V.value), r.value.config.onChange.push(ce));
|
|
1098
1098
|
}
|
|
1099
1099
|
function _() {
|
|
1100
|
-
|
|
1100
|
+
r.value !== null && (r.value.set(V.value), r.value.config.onChange.push(ce));
|
|
1101
1101
|
}
|
|
1102
|
-
function
|
|
1103
|
-
|
|
1102
|
+
function re($) {
|
|
1103
|
+
r.value !== null && r.value.setDate($, !0);
|
|
1104
1104
|
}
|
|
1105
1105
|
function pe() {
|
|
1106
|
-
|
|
1106
|
+
r.value !== null && r.value.clear();
|
|
1107
1107
|
}
|
|
1108
1108
|
function j() {
|
|
1109
|
-
|
|
1109
|
+
r.value !== null && (r.value.destroy(), r.value = null);
|
|
1110
1110
|
}
|
|
1111
1111
|
function U() {
|
|
1112
1112
|
let $ = l.dateTimePlaceholder;
|
|
1113
1113
|
switch (l.type) {
|
|
1114
1114
|
case "date":
|
|
1115
|
-
$ = l.datePlaceholder === "" ?
|
|
1115
|
+
$ = l.datePlaceholder === "" ? b("calendar.datePlaceholder") : l.datePlaceholder;
|
|
1116
1116
|
break;
|
|
1117
1117
|
case "datetime":
|
|
1118
|
-
$ = l.dateTimePlaceholder === "" ?
|
|
1118
|
+
$ = l.dateTimePlaceholder === "" ? b("calendar.dateTimePlaceholder") : l.dateTimePlaceholder;
|
|
1119
1119
|
break;
|
|
1120
1120
|
case "time":
|
|
1121
|
-
$ = l.timePlaceholder === "" ?
|
|
1121
|
+
$ = l.timePlaceholder === "" ? b("calendar.timePlaceholder") : l.timePlaceholder;
|
|
1122
1122
|
break;
|
|
1123
1123
|
default:
|
|
1124
|
-
$ = l.dateTimePlaceholder === "" ?
|
|
1124
|
+
$ = l.dateTimePlaceholder === "" ? b("calendar.dateTimePlaceholder") : l.dateTimePlaceholder;
|
|
1125
1125
|
break;
|
|
1126
1126
|
}
|
|
1127
1127
|
return $;
|
|
1128
1128
|
}
|
|
1129
1129
|
function Q() {
|
|
1130
1130
|
let $;
|
|
1131
|
-
return (l.type === H.TIME || l.type === H.DATETIME) && ($ =
|
|
1131
|
+
return (l.type === H.TIME || l.type === H.DATETIME) && ($ = Qe(l.min)), $;
|
|
1132
1132
|
}
|
|
1133
|
-
function
|
|
1133
|
+
function ge() {
|
|
1134
1134
|
let $;
|
|
1135
|
-
return (l.type === H.TIME || l.type === H.DATETIME) && ($ =
|
|
1135
|
+
return (l.type === H.TIME || l.type === H.DATETIME) && ($ = Qe(l.max)), $;
|
|
1136
1136
|
}
|
|
1137
1137
|
return W(() => l.date, ($, L) => {
|
|
1138
|
-
$ !== null && L !== null ? $.getTime() !== L.getTime() &&
|
|
1138
|
+
$ !== null && L !== null ? $.getTime() !== L.getTime() && re($) : $ === null && L !== null && pe();
|
|
1139
1139
|
}, {
|
|
1140
1140
|
deep: !0
|
|
1141
1141
|
}), W(() => V.value, _, {
|
|
@@ -1144,25 +1144,25 @@ const ct = ["placeholder", "disabled"], st = { class: "cl-absolute cl-bg-white c
|
|
|
1144
1144
|
j(), ke(() => X());
|
|
1145
1145
|
}, {
|
|
1146
1146
|
immediate: !1
|
|
1147
|
-
}),
|
|
1147
|
+
}), Ee(() => X()), Pe(() => j()), n({
|
|
1148
1148
|
focus() {
|
|
1149
1149
|
var $;
|
|
1150
1150
|
($ = h.value) == null || $.focus();
|
|
1151
1151
|
}
|
|
1152
1152
|
}), ($, L) => {
|
|
1153
1153
|
const se = K("icon");
|
|
1154
|
-
return
|
|
1155
|
-
|
|
1154
|
+
return s(), v("div", ve($.$attrs, { class: "cl-relative" }), [
|
|
1155
|
+
u("input", ve({
|
|
1156
1156
|
ref_key: "element",
|
|
1157
1157
|
ref: h
|
|
1158
1158
|
}, $.$attrs, {
|
|
1159
1159
|
class: ["!cl-text-sm cl-border-grey-1 cl-rounded-lg focus:cl-border-blue-light focus:cl-ring-0", { "cl-bg-off-white": e.disabled }],
|
|
1160
1160
|
type: "text",
|
|
1161
|
-
placeholder: a(
|
|
1161
|
+
placeholder: a(f),
|
|
1162
1162
|
disabled: e.disabled
|
|
1163
|
-
}), null, 16,
|
|
1163
|
+
}), null, 16, it),
|
|
1164
1164
|
q(w(se, {
|
|
1165
|
-
class:
|
|
1165
|
+
class: M(["cl-absolute cl-bg-white cl-right-2 cl-text-grey-4 cl-top-3.5", {
|
|
1166
1166
|
"!cl-bg-off-white": e.disabled
|
|
1167
1167
|
}]),
|
|
1168
1168
|
icon: "ph:calendar",
|
|
@@ -1172,7 +1172,7 @@ const ct = ["placeholder", "disabled"], st = { class: "cl-absolute cl-bg-white c
|
|
|
1172
1172
|
[R, (e.date === null || e.disabled) && e.type !== "time"]
|
|
1173
1173
|
]),
|
|
1174
1174
|
q(w(se, {
|
|
1175
|
-
class:
|
|
1175
|
+
class: M(["cl-absolute cl-bg-white cl-right-2 cl-text-grey-4 cl-top-3.5", {
|
|
1176
1176
|
"!cl-bg-off-white": e.disabled
|
|
1177
1177
|
}]),
|
|
1178
1178
|
icon: "ph-clock",
|
|
@@ -1181,7 +1181,7 @@ const ct = ["placeholder", "disabled"], st = { class: "cl-absolute cl-bg-white c
|
|
|
1181
1181
|
}, null, 8, ["class"]), [
|
|
1182
1182
|
[R, (e.date === null || e.disabled) && e.type === "time"]
|
|
1183
1183
|
]),
|
|
1184
|
-
q(
|
|
1184
|
+
q(u("div", rt, [
|
|
1185
1185
|
w(se, {
|
|
1186
1186
|
class: "cl-cursor-pointer cl-mr-0.5 md:cl-mr-1",
|
|
1187
1187
|
icon: "ph:arrow-counter-clockwise",
|
|
@@ -1201,17 +1201,17 @@ const ct = ["placeholder", "disabled"], st = { class: "cl-absolute cl-bg-white c
|
|
|
1201
1201
|
};
|
|
1202
1202
|
}
|
|
1203
1203
|
});
|
|
1204
|
-
const
|
|
1204
|
+
const dt = /* @__PURE__ */ he(ut, [["__scopeId", "data-v-053c2f6e"]]), ze = [
|
|
1205
1205
|
"date",
|
|
1206
1206
|
"datetime",
|
|
1207
1207
|
"time"
|
|
1208
|
-
],
|
|
1208
|
+
], ft = { class: "cl-flex cl-flex-wrap cl-items-center" }, mt = { class: "cl-flex cl-flex-1 cl-flex-wrap cl-items-center cl-mb-2 cl-mt-3 cl-relative md:cl-mt-0" }, gt = { class: "cl-absolute cl-bg-grey-0 cl-leading-6 cl-ml-0 cl-px-3 cl-rounded-full cl-text-center cl-text-xs cl-top-full" }, bt = {
|
|
1209
1209
|
key: 0,
|
|
1210
1210
|
class: "cl-w-full"
|
|
1211
|
-
},
|
|
1211
|
+
}, vt = ["min", "max", "step", "disabled"], ht = { class: "cl-absolute cl-bg-grey-0 cl-leading-6 cl-ml-2 cl-px-3 cl-right-0 cl-rounded-full cl-text-center cl-text-xs cl-top-full" }, pt = {
|
|
1212
1212
|
key: 1,
|
|
1213
1213
|
class: "emphasis-danger text-sm w-full"
|
|
1214
|
-
},
|
|
1214
|
+
}, yt = /* @__PURE__ */ D({
|
|
1215
1215
|
__name: "cl-ui-slider",
|
|
1216
1216
|
props: {
|
|
1217
1217
|
value: null,
|
|
@@ -1226,76 +1226,76 @@ const rt = /* @__PURE__ */ he(it, [["__scopeId", "data-v-053c2f6e"]]), Be = [
|
|
|
1226
1226
|
"update:value": null
|
|
1227
1227
|
},
|
|
1228
1228
|
setup(e, { expose: n, emit: t }) {
|
|
1229
|
-
const l = e, { n: o, t: i } =
|
|
1229
|
+
const l = e, { n: o, t: i } = ae(), { debounce: c } = pl(), b = C(l.value), r = C(), h = E({
|
|
1230
1230
|
get: () => l.value,
|
|
1231
|
-
set: (
|
|
1232
|
-
}),
|
|
1233
|
-
let
|
|
1234
|
-
return
|
|
1235
|
-
}),
|
|
1236
|
-
function
|
|
1237
|
-
const
|
|
1238
|
-
h.value = l.enforceStep ? Math.ceil(
|
|
1239
|
-
}
|
|
1240
|
-
return W(() => l.value, () =>
|
|
1231
|
+
set: (m) => t("update:value", m)
|
|
1232
|
+
}), p = E(() => l.disabled ? "rgba(153, 153, 153, 0.8)" : "#9acd32"), g = E(() => {
|
|
1233
|
+
let m = (h.value - l.min) / (l.max - l.min) * 100;
|
|
1234
|
+
return m < 35 && m > 0 ? m < 20 ? m += 0.5 : m += 0.25 : m > 65 && m < 100 && (m > 80 ? m -= 0.5 : m -= 0.25), m;
|
|
1235
|
+
}), f = E(() => l.min <= l.max && l.step > 0);
|
|
1236
|
+
function d(m, y) {
|
|
1237
|
+
const I = (m == null ? void 0 : m.value) ?? "", S = Math.max(Math.min(parseFloat(I) || l.min, l.max), l.min);
|
|
1238
|
+
h.value = l.enforceStep ? Math.ceil(S / l.step) * l.step : S, ke(() => y());
|
|
1239
|
+
}
|
|
1240
|
+
return W(() => l.value, () => b.value = l.value), n({
|
|
1241
1241
|
focus() {
|
|
1242
|
-
var
|
|
1243
|
-
(
|
|
1242
|
+
var m;
|
|
1243
|
+
(m = r.value) == null || m.focus();
|
|
1244
1244
|
}
|
|
1245
|
-
}), (
|
|
1246
|
-
const
|
|
1247
|
-
return a(
|
|
1248
|
-
q(
|
|
1245
|
+
}), (m, y) => {
|
|
1246
|
+
const I = K("cl-ui-input");
|
|
1247
|
+
return a(f) ? (s(), v("div", oe(ve({ key: 0 }, m.$attrs)), [
|
|
1248
|
+
q(u("div", { class: "cl-bg-transparent cl-relative cl-text-center cl-text-sm" }, x(a(h)), 513), [
|
|
1249
1249
|
[R, !e.showNumericInput]
|
|
1250
1250
|
]),
|
|
1251
|
-
|
|
1252
|
-
q(w(
|
|
1253
|
-
modelValue:
|
|
1254
|
-
"onUpdate:modelValue":
|
|
1251
|
+
u("div", ft, [
|
|
1252
|
+
q(w(I, {
|
|
1253
|
+
modelValue: b.value,
|
|
1254
|
+
"onUpdate:modelValue": y[0] || (y[0] = (S) => b.value = S),
|
|
1255
1255
|
class: "!cl-text-sm md:!cl-w-auto",
|
|
1256
1256
|
"input-type": "number",
|
|
1257
1257
|
min: e.min,
|
|
1258
1258
|
max: e.max,
|
|
1259
1259
|
step: e.step,
|
|
1260
1260
|
disabled: e.disabled,
|
|
1261
|
-
onInput:
|
|
1261
|
+
onInput: y[1] || (y[1] = (S) => a(c)(d, S.target, m.$forceUpdate))
|
|
1262
1262
|
}, null, 8, ["modelValue", "min", "max", "step", "disabled"]), [
|
|
1263
1263
|
[R, e.showNumericInput]
|
|
1264
1264
|
]),
|
|
1265
|
-
|
|
1266
|
-
|
|
1267
|
-
typeof a(h) == "number" ? (
|
|
1268
|
-
q(
|
|
1265
|
+
u("div", mt, [
|
|
1266
|
+
u("span", gt, x(a(o)(e.min, Number.isInteger(e.min) ? a(ne).INTEGER : a(ne).DECIMAL)), 1),
|
|
1267
|
+
typeof a(h) == "number" ? (s(), v("div", bt, [
|
|
1268
|
+
q(u("input", {
|
|
1269
1269
|
ref_key: "sliderRef",
|
|
1270
|
-
ref:
|
|
1271
|
-
"onUpdate:modelValue":
|
|
1270
|
+
ref: r,
|
|
1271
|
+
"onUpdate:modelValue": y[2] || (y[2] = (S) => be(h) ? h.value = S : null),
|
|
1272
1272
|
class: "cl-align-middle cl-appearance-none cl-bg-gradient-to-r cl-border cl-border-grey-2 cl-delay-500 cl-ease-in cl-flex-1 cl-h-5 cl-mb-2 cl-outline-none cl-rounded-full cl-transition-colors cl-w-full",
|
|
1273
|
-
style:
|
|
1274
|
-
background: `linear-gradient(to right, ${a(
|
|
1273
|
+
style: nl({
|
|
1274
|
+
background: `linear-gradient(to right, ${a(p)} 0%, ${a(p)} ${a(g)}%, white ${a(g)}%, white 100%)`
|
|
1275
1275
|
}),
|
|
1276
1276
|
type: "range",
|
|
1277
1277
|
min: e.min,
|
|
1278
1278
|
max: e.max,
|
|
1279
1279
|
step: e.step,
|
|
1280
1280
|
disabled: e.disabled
|
|
1281
|
-
}, null, 12,
|
|
1281
|
+
}, null, 12, vt), [
|
|
1282
1282
|
[
|
|
1283
|
-
|
|
1283
|
+
ml,
|
|
1284
1284
|
a(h),
|
|
1285
1285
|
void 0,
|
|
1286
1286
|
{ number: !0 }
|
|
1287
1287
|
]
|
|
1288
1288
|
])
|
|
1289
|
-
])) :
|
|
1290
|
-
|
|
1289
|
+
])) : A("", !0),
|
|
1290
|
+
u("span", ht, x(a(o)(e.max, Number.isInteger(e.max) ? a(ne).INTEGER : a(ne).DECIMAL)), 1)
|
|
1291
1291
|
])
|
|
1292
1292
|
])
|
|
1293
|
-
], 16)) : (
|
|
1293
|
+
], 16)) : (s(), v("div", pt, x(a(i)("slider.invalidProps")), 1));
|
|
1294
1294
|
};
|
|
1295
1295
|
}
|
|
1296
1296
|
});
|
|
1297
|
-
const
|
|
1298
|
-
function
|
|
1297
|
+
const wt = /* @__PURE__ */ he(yt, [["__scopeId", "data-v-47d8e44f"]]);
|
|
1298
|
+
function Ye(e) {
|
|
1299
1299
|
let n = !1;
|
|
1300
1300
|
switch (e) {
|
|
1301
1301
|
case "email":
|
|
@@ -1312,10 +1312,10 @@ function Ze(e) {
|
|
|
1312
1312
|
}
|
|
1313
1313
|
return n;
|
|
1314
1314
|
}
|
|
1315
|
-
function
|
|
1315
|
+
function xt(e) {
|
|
1316
1316
|
return e === "number" || e === "range";
|
|
1317
1317
|
}
|
|
1318
|
-
function
|
|
1318
|
+
function Xe(e) {
|
|
1319
1319
|
let n = !1;
|
|
1320
1320
|
switch (e) {
|
|
1321
1321
|
case "date":
|
|
@@ -1329,7 +1329,7 @@ function Qe(e) {
|
|
|
1329
1329
|
}
|
|
1330
1330
|
return n;
|
|
1331
1331
|
}
|
|
1332
|
-
function
|
|
1332
|
+
function $t(e) {
|
|
1333
1333
|
let n = !1;
|
|
1334
1334
|
switch (e) {
|
|
1335
1335
|
case "date":
|
|
@@ -1346,42 +1346,42 @@ function wt(e) {
|
|
|
1346
1346
|
function Ce(e) {
|
|
1347
1347
|
return e === "button" || e === "submit" || e === "reset";
|
|
1348
1348
|
}
|
|
1349
|
-
function
|
|
1349
|
+
function kt(e) {
|
|
1350
1350
|
let n;
|
|
1351
1351
|
switch (e) {
|
|
1352
1352
|
case "datetime":
|
|
1353
|
-
n =
|
|
1353
|
+
n = ze[1];
|
|
1354
1354
|
break;
|
|
1355
1355
|
case "time":
|
|
1356
|
-
n =
|
|
1356
|
+
n = ze[2];
|
|
1357
1357
|
break;
|
|
1358
1358
|
case "date":
|
|
1359
1359
|
default:
|
|
1360
|
-
n =
|
|
1360
|
+
n = ze[0];
|
|
1361
1361
|
break;
|
|
1362
1362
|
}
|
|
1363
1363
|
return n;
|
|
1364
1364
|
}
|
|
1365
|
-
function
|
|
1365
|
+
function _e(e, n) {
|
|
1366
1366
|
const t = e.target;
|
|
1367
|
-
return
|
|
1367
|
+
return xt(n) ? t.valueAsNumber : $t(n) ? t.valueAsDate : Ce(n) ? t.checked : t.value;
|
|
1368
1368
|
}
|
|
1369
|
-
const
|
|
1369
|
+
const Tt = { class: "cl-flex cl-justify-between" }, Ct = { class: "cl-w-full" }, St = {
|
|
1370
1370
|
key: 0,
|
|
1371
1371
|
class: "cl-block cl-left-auto cl-relative cl-text-danger-default"
|
|
1372
|
-
},
|
|
1372
|
+
}, Et = {
|
|
1373
1373
|
key: 1,
|
|
1374
1374
|
class: "cl-bg-danger-light cl-block cl-max-h-6 cl-mb-1 cl-ml-2 cl-px-2 cl-rounded-md cl-text-center cl-text-danger-default cl-text-xs"
|
|
1375
|
-
},
|
|
1375
|
+
}, Ot = ["type", "disabled", "min", "max", "minlength", "maxlength", "step", "placeholder", "accept", "name", "autocomplete"], jt = {
|
|
1376
1376
|
key: 2,
|
|
1377
1377
|
class: "cl-h-[5.78rem] cl-pb-2 md:cl-h-20"
|
|
1378
|
-
},
|
|
1378
|
+
}, At = { class: "cl-relative" }, Mt = {
|
|
1379
1379
|
key: 0,
|
|
1380
1380
|
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"
|
|
1381
|
-
},
|
|
1381
|
+
}, It = {
|
|
1382
1382
|
key: 1,
|
|
1383
1383
|
class: "cl-bg-danger-light cl-px-2 cl-rounded-md cl-text-center cl-text-danger-default cl-text-xs cl-w-auto cl-whitespace-pre-line"
|
|
1384
|
-
},
|
|
1384
|
+
}, Nt = /* @__PURE__ */ D({
|
|
1385
1385
|
__name: "cl-ui-input",
|
|
1386
1386
|
props: {
|
|
1387
1387
|
inputType: { default: "text" },
|
|
@@ -1410,13 +1410,13 @@ const $t = { class: "cl-flex cl-justify-between" }, kt = { class: "cl-w-full" },
|
|
|
1410
1410
|
},
|
|
1411
1411
|
emits: ["update:model-value", "click", "focus", "input", "change", "validated"],
|
|
1412
1412
|
setup(e, { expose: n, emit: t }) {
|
|
1413
|
-
const l = e, o = C(null), i = C(!1), c = C(!1),
|
|
1413
|
+
const l = e, o = C(null), i = C(!1), c = C(!1), b = E(se), r = E(() => l.placeholderText.trim() !== "" ? l.placeholderText : l.label), h = C(!1), { t: p } = ae(), g = C(0), f = E({
|
|
1414
1414
|
get: () => l.modelValue,
|
|
1415
1415
|
set: (k) => X(k, !1)
|
|
1416
|
-
}),
|
|
1416
|
+
}), d = E({
|
|
1417
1417
|
get: () => l.modelValue,
|
|
1418
1418
|
set: (k) => G(k)
|
|
1419
|
-
}),
|
|
1419
|
+
}), m = E(() => typeof l.min == "number" ? l.min.toString() : l.min), y = E(() => typeof l.max == "number" ? l.max.toString() : l.max), I = E(() => typeof l.min == "number" ? l.min : parseFloat(l.min)), S = E(() => typeof l.max == "number" ? l.max : parseFloat(l.max)), J = E(() => l.messageWhenValid.trim() !== "" ? l.messageWhenValid : ""), V = C(!0), ce = C([]), T = E(() => {
|
|
1420
1420
|
var k, N;
|
|
1421
1421
|
return [
|
|
1422
1422
|
...((k = ce.value) == null ? void 0 : k.filter((Z) => ((Z == null ? void 0 : Z.length) ?? 0) > 0)) ?? [],
|
|
@@ -1441,15 +1441,15 @@ const $t = { class: "cl-flex cl-justify-between" }, kt = { class: "cl-w-full" },
|
|
|
1441
1441
|
F(l.customValidationFunction(l.label, k));
|
|
1442
1442
|
})
|
|
1443
1443
|
];
|
|
1444
|
-
return (typeof k == "string" || typeof k == "number" || k instanceof Date) && (Z.push(
|
|
1445
|
-
const
|
|
1446
|
-
let
|
|
1447
|
-
h.value && (
|
|
1444
|
+
return (typeof k == "string" || typeof k == "number" || k instanceof Date) && (Z.push(Zl(l.min, l.inputType, l.label, k)), Z.push(Ql(l.max, l.inputType, l.label, k))), l.isRequired && Z.push(Yl(l.label, k)), l.inputType === "email" && typeof k == "string" && Z.push(Xl(l.label, k)), Promise.all(Z).then((F) => {
|
|
1445
|
+
const We = [...F.map((Oe) => Oe.message)];
|
|
1446
|
+
let Be = F.some((Oe) => Oe.message.length > 0 && Oe.valid === !1) || l.externalErrors.length > 0;
|
|
1447
|
+
h.value && (We.push(p("input.dateOutOfRange")), Be = !0), Be ? (ce.value = We, t("validated", !1, k)) : (ce.value = [], t("validated", !0, k)), V.value = !Be;
|
|
1448
1448
|
});
|
|
1449
1449
|
}
|
|
1450
|
-
function
|
|
1450
|
+
function re() {
|
|
1451
1451
|
let k = "";
|
|
1452
|
-
return l.inputType === "color" &&
|
|
1452
|
+
return l.inputType === "color" && f.value && (l.disabled ? k = "background: #999999" : k = `background: ${f.value};`), k;
|
|
1453
1453
|
}
|
|
1454
1454
|
function pe(k) {
|
|
1455
1455
|
Ce(l.inputType) ? (k.preventDefault(), t("click", k)) : l.inputType === "checkbox" && t("click", k);
|
|
@@ -1475,11 +1475,11 @@ const $t = { class: "cl-flex cl-justify-between" }, kt = { class: "cl-w-full" },
|
|
|
1475
1475
|
function Q(k) {
|
|
1476
1476
|
i.value = k;
|
|
1477
1477
|
}
|
|
1478
|
-
function
|
|
1478
|
+
function ge() {
|
|
1479
1479
|
c.value = !0, Q(!1);
|
|
1480
1480
|
}
|
|
1481
1481
|
function $() {
|
|
1482
|
-
|
|
1482
|
+
g.value++;
|
|
1483
1483
|
}
|
|
1484
1484
|
function L(k) {
|
|
1485
1485
|
k.target.blur();
|
|
@@ -1487,20 +1487,20 @@ const $t = { class: "cl-flex cl-justify-between" }, kt = { class: "cl-w-full" },
|
|
|
1487
1487
|
function se() {
|
|
1488
1488
|
var Z;
|
|
1489
1489
|
let k = !0;
|
|
1490
|
-
const N =
|
|
1491
|
-
return i.value ? k = N : c.value && ((Z =
|
|
1490
|
+
const N = b.value;
|
|
1491
|
+
return i.value ? k = N : c.value && ((Z = f.value) == null ? void 0 : Z.toString().trim()) === "" && (k = !1), k;
|
|
1492
1492
|
}
|
|
1493
1493
|
function xe() {
|
|
1494
1494
|
h.value = !0;
|
|
1495
1495
|
}
|
|
1496
|
-
async function
|
|
1497
|
-
const N =
|
|
1496
|
+
async function dl(k) {
|
|
1497
|
+
const N = _e(k, l.inputType);
|
|
1498
1498
|
l.validateOn === "change" && await _(N), t("change", k, N);
|
|
1499
1499
|
}
|
|
1500
|
-
return
|
|
1500
|
+
return Ee(() => {
|
|
1501
1501
|
l.validateImmediately && X(l.modelValue, !0);
|
|
1502
1502
|
}), W(() => l.isRequired, () => X(l.modelValue, !0)), W(() => l.externalErrors, async () => {
|
|
1503
|
-
await _(
|
|
1503
|
+
await _(f.value), t("update:model-value", f.value);
|
|
1504
1504
|
}), n({
|
|
1505
1505
|
focus() {
|
|
1506
1506
|
var k;
|
|
@@ -1508,28 +1508,28 @@ const $t = { class: "cl-flex cl-justify-between" }, kt = { class: "cl-w-full" },
|
|
|
1508
1508
|
}
|
|
1509
1509
|
}), (k, N) => {
|
|
1510
1510
|
const Z = K("icon");
|
|
1511
|
-
return
|
|
1512
|
-
key:
|
|
1511
|
+
return s(), v("div", {
|
|
1512
|
+
key: g.value,
|
|
1513
1513
|
class: "cl-align-top cl-border-none cl-inline-block cl-text-left"
|
|
1514
1514
|
}, [
|
|
1515
|
-
|
|
1515
|
+
u("div", {
|
|
1516
1516
|
onMouseenter: N[11] || (N[11] = (F) => Q(!0)),
|
|
1517
1517
|
onMouseleave: N[12] || (N[12] = (F) => Q(!1))
|
|
1518
1518
|
}, [
|
|
1519
|
-
|
|
1520
|
-
|
|
1521
|
-
q(
|
|
1519
|
+
u("div", Tt, [
|
|
1520
|
+
u("div", Ct, [
|
|
1521
|
+
q(u("label", { class: "cl-block cl-mb-1 cl-text-gray-400 cl-text-xs cl-tracking-widest" }, x(e.label), 513), [
|
|
1522
1522
|
[R, e.showLabel && e.label !== ""]
|
|
1523
1523
|
])
|
|
1524
1524
|
]),
|
|
1525
|
-
e.isRequired && a(
|
|
1526
|
-
e.isRequired && !a(
|
|
1525
|
+
e.isRequired && a(b) ? (s(), v("label", St, " * ")) : A("", !0),
|
|
1526
|
+
e.isRequired && !a(b) ? (s(), v("label", Et, x(e.requiredText), 1)) : A("", !0)
|
|
1527
1527
|
]),
|
|
1528
|
-
e.inputType !== "range" && !a(
|
|
1528
|
+
e.inputType !== "range" && !a(Xe)(e.inputType) ? q((s(), v("input", ve({
|
|
1529
1529
|
key: 0,
|
|
1530
1530
|
ref_key: "inputElement",
|
|
1531
1531
|
ref: o,
|
|
1532
|
-
"onUpdate:modelValue": N[0] || (N[0] = (F) =>
|
|
1532
|
+
"onUpdate:modelValue": N[0] || (N[0] = (F) => be(f) ? f.value = F : null)
|
|
1533
1533
|
}, k.$attrs, {
|
|
1534
1534
|
class: ["cl-block cl-border cl-duration-300 cl-h-full cl-mb-1 cl-transition cl-w-full focus:cl-outline-none", {
|
|
1535
1535
|
"hover:!cl-border-grey-3": e.disabled === !1 && !a(Ce)(e.inputType),
|
|
@@ -1541,69 +1541,69 @@ const $t = { class: "cl-flex cl-justify-between" }, kt = { class: "cl-w-full" },
|
|
|
1541
1541
|
"cl-p-3 cl-rounded-lg": !a(Ce)(e.inputType),
|
|
1542
1542
|
[`${e.inputSpecificClasses}`]: e.inputSpecificClasses !== ""
|
|
1543
1543
|
}],
|
|
1544
|
-
style:
|
|
1544
|
+
style: re(),
|
|
1545
1545
|
type: e.inputType,
|
|
1546
1546
|
disabled: e.disabled,
|
|
1547
1547
|
min: e.min,
|
|
1548
1548
|
max: e.max,
|
|
1549
|
-
minlength: a(
|
|
1550
|
-
maxlength: a(
|
|
1549
|
+
minlength: a(Ye)(e.inputType) ? e.min : 0,
|
|
1550
|
+
maxlength: a(Ye)(e.inputType) ? e.max : 0,
|
|
1551
1551
|
step: e.step,
|
|
1552
|
-
placeholder: a(
|
|
1552
|
+
placeholder: a(r),
|
|
1553
1553
|
accept: e.fileExtensions,
|
|
1554
1554
|
name: e.group,
|
|
1555
1555
|
autocomplete: e.autocomplete,
|
|
1556
1556
|
onClick: N[1] || (N[1] = (F) => pe(F)),
|
|
1557
1557
|
onFocus: N[2] || (N[2] = (F) => t("focus")),
|
|
1558
1558
|
onBlur: N[3] || (N[3] = Y((F) => {
|
|
1559
|
-
|
|
1559
|
+
ge(), $();
|
|
1560
1560
|
}, ["self"])),
|
|
1561
1561
|
onMousewheelPassive: L,
|
|
1562
1562
|
onInput: N[4] || (N[4] = (F) => {
|
|
1563
|
-
t("input", F, a(
|
|
1563
|
+
t("input", F, a(_e)(F, e.inputType));
|
|
1564
1564
|
}),
|
|
1565
|
-
onChange:
|
|
1566
|
-
}), null, 16,
|
|
1567
|
-
[
|
|
1568
|
-
]) : a(
|
|
1565
|
+
onChange: dl
|
|
1566
|
+
}), null, 16, Ot)), [
|
|
1567
|
+
[gl, a(f)]
|
|
1568
|
+
]) : a(Xe)(e.inputType) ? (s(), z(a(dt), ve({ key: 1 }, k.$attrs, {
|
|
1569
1569
|
ref_key: "inputElement",
|
|
1570
1570
|
ref: o,
|
|
1571
|
-
date: a(
|
|
1572
|
-
"onUpdate:date": N[5] || (N[5] = (F) =>
|
|
1571
|
+
date: a(d),
|
|
1572
|
+
"onUpdate:date": N[5] || (N[5] = (F) => be(d) ? d.value = F : null),
|
|
1573
1573
|
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", {
|
|
1574
1574
|
"hover:cl-border-grey-3": !e.disabled,
|
|
1575
1575
|
"!cl-border-danger-default": !V.value,
|
|
1576
1576
|
"!cl-border-primary-default": V.value && e.highlightWhenValid
|
|
1577
1577
|
}],
|
|
1578
1578
|
disabled: e.disabled,
|
|
1579
|
-
type: a(
|
|
1580
|
-
min: a(
|
|
1581
|
-
max: a(
|
|
1582
|
-
"date-placeholder": a(
|
|
1583
|
-
"date-time-placeholder": a(
|
|
1584
|
-
"time-placeholder": a(
|
|
1585
|
-
onBlur: Y(
|
|
1579
|
+
type: a(kt)(e.inputType),
|
|
1580
|
+
min: a(m),
|
|
1581
|
+
max: a(y),
|
|
1582
|
+
"date-placeholder": a(r),
|
|
1583
|
+
"date-time-placeholder": a(r),
|
|
1584
|
+
"time-placeholder": a(r),
|
|
1585
|
+
onBlur: Y(ge, ["self"]),
|
|
1586
1586
|
onValueOutOfRange: xe,
|
|
1587
1587
|
onFocus: N[6] || (N[6] = (F) => t("focus"))
|
|
1588
|
-
}), null, 16, ["date", "class", "disabled", "type", "min", "max", "date-placeholder", "date-time-placeholder", "time-placeholder", "onBlur"])) : e.inputType === "range" && typeof a(
|
|
1589
|
-
w(a(
|
|
1588
|
+
}), null, 16, ["date", "class", "disabled", "type", "min", "max", "date-placeholder", "date-time-placeholder", "time-placeholder", "onBlur"])) : e.inputType === "range" && typeof a(f) == "number" ? (s(), v("div", jt, [
|
|
1589
|
+
w(a(wt), {
|
|
1590
1590
|
ref_key: "inputElement",
|
|
1591
1591
|
ref: o,
|
|
1592
|
-
value: a(
|
|
1593
|
-
"onUpdate:value": N[7] || (N[7] = (F) =>
|
|
1594
|
-
min: a(
|
|
1595
|
-
max: a(
|
|
1592
|
+
value: a(f),
|
|
1593
|
+
"onUpdate:value": N[7] || (N[7] = (F) => be(f) ? f.value = F : null),
|
|
1594
|
+
min: a(I),
|
|
1595
|
+
max: a(S),
|
|
1596
1596
|
step: e.step,
|
|
1597
1597
|
disabled: e.disabled,
|
|
1598
1598
|
"show-numeric-input": !1,
|
|
1599
|
-
onBlur: Y(
|
|
1599
|
+
onBlur: Y(ge, ["self"]),
|
|
1600
1600
|
onFocus: N[8] || (N[8] = (F) => t("focus"))
|
|
1601
1601
|
}, null, 8, ["value", "min", "max", "step", "disabled", "onBlur"])
|
|
1602
|
-
])) :
|
|
1603
|
-
|
|
1604
|
-
e.inputType === "number" && !e.disabled && e.showArrows ? (
|
|
1602
|
+
])) : A("", !0),
|
|
1603
|
+
u("div", At, [
|
|
1604
|
+
e.inputType === "number" && !e.disabled && e.showArrows ? (s(), v("div", {
|
|
1605
1605
|
key: 0,
|
|
1606
|
-
class:
|
|
1606
|
+
class: M(["cl-absolute cl-duration-300 cl-right-1 cl-transition", {
|
|
1607
1607
|
"cl-opacity-0": !i.value
|
|
1608
1608
|
}]),
|
|
1609
1609
|
style: { bottom: "1.625rem" }
|
|
@@ -1615,10 +1615,10 @@ const $t = { class: "cl-flex cl-justify-between" }, kt = { class: "cl-w-full" },
|
|
|
1615
1615
|
onMousedown: N[9] || (N[9] = Y(() => {
|
|
1616
1616
|
}, ["prevent"]))
|
|
1617
1617
|
})
|
|
1618
|
-
], 2)) :
|
|
1619
|
-
e.inputType === "number" && !e.disabled && e.showArrows ? (
|
|
1618
|
+
], 2)) : A("", !0),
|
|
1619
|
+
e.inputType === "number" && !e.disabled && e.showArrows ? (s(), v("div", {
|
|
1620
1620
|
key: 1,
|
|
1621
|
-
class:
|
|
1621
|
+
class: M(["cl-absolute cl-bottom-2 cl-duration-300 cl-right-1 cl-transition", {
|
|
1622
1622
|
"cl-opacity-0": !i.value
|
|
1623
1623
|
}])
|
|
1624
1624
|
}, [
|
|
@@ -1629,19 +1629,19 @@ const $t = { class: "cl-flex cl-justify-between" }, kt = { class: "cl-w-full" },
|
|
|
1629
1629
|
onMousedown: N[10] || (N[10] = Y(() => {
|
|
1630
1630
|
}, ["prevent"]))
|
|
1631
1631
|
})
|
|
1632
|
-
], 2)) :
|
|
1632
|
+
], 2)) : A("", !0)
|
|
1633
1633
|
])
|
|
1634
1634
|
], 32),
|
|
1635
|
-
V.value && a(J) ? (
|
|
1636
|
-
!V.value && a(T).length > 0 ? (
|
|
1635
|
+
V.value && a(J) ? (s(), v("div", Mt, x(a(J)), 1)) : A("", !0),
|
|
1636
|
+
!V.value && a(T).length > 0 ? (s(), v("div", It, x(a(T)), 1)) : A("", !0)
|
|
1637
1637
|
]);
|
|
1638
1638
|
};
|
|
1639
1639
|
}
|
|
1640
1640
|
});
|
|
1641
|
-
const
|
|
1641
|
+
const fe = /* @__PURE__ */ he(Nt, [["__scopeId", "data-v-a655011e"]]), Dt = { class: "cl-align-items-center cl-bg-black cl-bg-opacity-40 cl-bottom-0 cl-fixed cl-flex cl-h-screen cl-justify-center cl-left-0 cl-right-0 cl-top-0 cl-w-full cl-z-40" }, qt = ["onKeypress"], Rt = { class: "cl-overflow-y-auto cl-overscroll-y-none cl-p-2 cl-w-full" }, Ut = {
|
|
1642
1642
|
inheritAttrs: !1
|
|
1643
|
-
},
|
|
1644
|
-
...
|
|
1643
|
+
}, rl = /* @__PURE__ */ D({
|
|
1644
|
+
...Ut,
|
|
1645
1645
|
__name: "cl-ui-modal",
|
|
1646
1646
|
props: {
|
|
1647
1647
|
headerColour: { default: "white" },
|
|
@@ -1659,15 +1659,15 @@ const de = /* @__PURE__ */ he(Mt, [["__scopeId", "data-v-be462351"]]), It = { cl
|
|
|
1659
1659
|
function i(c) {
|
|
1660
1660
|
c.key === "Escape" && o();
|
|
1661
1661
|
}
|
|
1662
|
-
return (c,
|
|
1663
|
-
const
|
|
1664
|
-
return
|
|
1665
|
-
|
|
1666
|
-
(
|
|
1662
|
+
return (c, b) => {
|
|
1663
|
+
const r = K("icon");
|
|
1664
|
+
return s(), v(P, null, [
|
|
1665
|
+
O(c.$slots, "trigger", oe(ie({ open: l }))),
|
|
1666
|
+
(s(), z(Fe, { to: "body" }, [
|
|
1667
1667
|
w($e, { name: "fade" }, {
|
|
1668
|
-
default:
|
|
1669
|
-
q(
|
|
1670
|
-
|
|
1668
|
+
default: B(() => [
|
|
1669
|
+
q(u("div", Dt, [
|
|
1670
|
+
u("div", ve(c.$attrs, {
|
|
1671
1671
|
class: ["cl-bg-white cl-flex cl-flex-wrap cl-mx-0 cl-my-auto cl-overflow-y-auto cl-overscroll-y-none cl-relative cl-rounded-lg cl-shadow-lg", {
|
|
1672
1672
|
"lg:cl-w-2/12 cl-w-10/12": e.size === "x-small",
|
|
1673
1673
|
"cl-w-6/12": e.size === "small",
|
|
@@ -1675,8 +1675,8 @@ const de = /* @__PURE__ */ he(Mt, [["__scopeId", "data-v-be462351"]]), It = { cl
|
|
|
1675
1675
|
"cl-w-10/12": e.size === "large"
|
|
1676
1676
|
}]
|
|
1677
1677
|
}), [
|
|
1678
|
-
q(
|
|
1679
|
-
class:
|
|
1678
|
+
q(u("div", {
|
|
1679
|
+
class: M(["cl-absolute cl-cursor-pointer cl-right-4 cl-top-4 cl-transition-colors cl-w-3", {
|
|
1680
1680
|
"cl-text-white hover:cl-text-off-white": e.headerColour === "secondary" || e.headerColour === "primary",
|
|
1681
1681
|
"cl-text-black hover:cl-text-grey-7": e.headerColour === "white"
|
|
1682
1682
|
}]),
|
|
@@ -1684,23 +1684,23 @@ const de = /* @__PURE__ */ he(Mt, [["__scopeId", "data-v-be462351"]]), It = { cl
|
|
|
1684
1684
|
onKeypress: Se(o, ["enter"]),
|
|
1685
1685
|
onClick: o
|
|
1686
1686
|
}, [
|
|
1687
|
-
w(
|
|
1688
|
-
], 42,
|
|
1687
|
+
w(r, { icon: "ph:x" })
|
|
1688
|
+
], 42, qt), [
|
|
1689
1689
|
[R, !e.preventClose]
|
|
1690
1690
|
]),
|
|
1691
|
-
|
|
1692
|
-
class:
|
|
1691
|
+
u("div", {
|
|
1692
|
+
class: M(["cl-leading-[2.75rem] cl-min-h-12 cl-overflow-hidden cl-pl-3 cl-pr-8 cl-text-2xl cl-w-full", {
|
|
1693
1693
|
"cl-border-b cl-border-grey-2": e.headerColour === "white",
|
|
1694
1694
|
"cl-bg-secondary-default cl-text-white": e.headerColour === "secondary",
|
|
1695
1695
|
"cl-bg-primary-default cl-text-white": e.headerColour === "primary"
|
|
1696
1696
|
}])
|
|
1697
1697
|
}, [
|
|
1698
|
-
|
|
1698
|
+
O(c.$slots, "title")
|
|
1699
1699
|
], 2),
|
|
1700
|
-
|
|
1701
|
-
|
|
1700
|
+
u("div", Rt, [
|
|
1701
|
+
O(c.$slots, "default", oe(ie({ close: o })))
|
|
1702
1702
|
]),
|
|
1703
|
-
|
|
1703
|
+
O(c.$slots, "footer", oe(ie({ close: o })))
|
|
1704
1704
|
], 16)
|
|
1705
1705
|
], 512), [
|
|
1706
1706
|
[R, t.value]
|
|
@@ -1712,7 +1712,7 @@ const de = /* @__PURE__ */ he(Mt, [["__scopeId", "data-v-be462351"]]), It = { cl
|
|
|
1712
1712
|
], 64);
|
|
1713
1713
|
};
|
|
1714
1714
|
}
|
|
1715
|
-
}),
|
|
1715
|
+
}), Pt = { class: "cl-bg-grey-0 cl-flex cl-p-1" }, Bt = {
|
|
1716
1716
|
key: 0,
|
|
1717
1717
|
class: "cl-w-1/2"
|
|
1718
1718
|
}, je = /* @__PURE__ */ D({
|
|
@@ -1728,15 +1728,15 @@ const de = /* @__PURE__ */ he(Mt, [["__scopeId", "data-v-be462351"]]), It = { cl
|
|
|
1728
1728
|
setup(e) {
|
|
1729
1729
|
return (n, t) => {
|
|
1730
1730
|
const l = K("icon");
|
|
1731
|
-
return
|
|
1732
|
-
e.additionalText !== "" ? (
|
|
1733
|
-
|
|
1734
|
-
class:
|
|
1731
|
+
return s(), v("div", Pt, [
|
|
1732
|
+
e.additionalText !== "" ? (s(), v("div", Bt, x(e.additionalText), 1)) : A("", !0),
|
|
1733
|
+
u("div", {
|
|
1734
|
+
class: M({
|
|
1735
1735
|
"cl-w-1/2": e.additionalText !== "",
|
|
1736
1736
|
"cl-w-full": e.additionalText === ""
|
|
1737
1737
|
})
|
|
1738
1738
|
}, x(e.text), 3),
|
|
1739
|
-
q(
|
|
1739
|
+
q(u("div", {
|
|
1740
1740
|
class: "cl-cursor-pointer cl-float-right",
|
|
1741
1741
|
onMousedown: t[0] || (t[0] = (o) => n.$emit("clear-object"))
|
|
1742
1742
|
}, [
|
|
@@ -1750,10 +1750,10 @@ const de = /* @__PURE__ */ he(Mt, [["__scopeId", "data-v-be462351"]]), It = { cl
|
|
|
1750
1750
|
]);
|
|
1751
1751
|
};
|
|
1752
1752
|
}
|
|
1753
|
-
}),
|
|
1753
|
+
}), zt = {
|
|
1754
1754
|
key: 0,
|
|
1755
1755
|
class: "cl-w-1/2"
|
|
1756
|
-
},
|
|
1756
|
+
}, Lt = { class: "cl-float-right cl-py-1" }, el = /* @__PURE__ */ D({
|
|
1757
1757
|
__name: "cl-ui-combo-box-selectable",
|
|
1758
1758
|
props: {
|
|
1759
1759
|
isCreateNewOption: { type: Boolean, default: !1 },
|
|
@@ -1768,10 +1768,10 @@ const de = /* @__PURE__ */ he(Mt, [["__scopeId", "data-v-be462351"]]), It = { cl
|
|
|
1768
1768
|
"option-highlighted": null
|
|
1769
1769
|
},
|
|
1770
1770
|
setup(e, { emit: n }) {
|
|
1771
|
-
const t = e, l =
|
|
1771
|
+
const t = e, l = E(() => {
|
|
1772
1772
|
var h;
|
|
1773
1773
|
return ((h = t.option) == null ? void 0 : h.name) ?? t.text;
|
|
1774
|
-
}), o =
|
|
1774
|
+
}), o = E(() => {
|
|
1775
1775
|
var h;
|
|
1776
1776
|
return ((h = t.option) == null ? void 0 : h.parentName) ?? "";
|
|
1777
1777
|
}), i = C(!1);
|
|
@@ -1779,35 +1779,35 @@ const de = /* @__PURE__ */ he(Mt, [["__scopeId", "data-v-be462351"]]), It = { cl
|
|
|
1779
1779
|
var h;
|
|
1780
1780
|
t.isCreateNewOption === !0 ? n("create-object") : n("select-object", (h = t.option) == null ? void 0 : h.id);
|
|
1781
1781
|
}
|
|
1782
|
-
function
|
|
1782
|
+
function b(h) {
|
|
1783
1783
|
h === !0 ? (i.value = !0, n("option-highlighted", t.index)) : t.index !== t.selectedIndex && (i.value = !1);
|
|
1784
1784
|
}
|
|
1785
|
-
function
|
|
1785
|
+
function r() {
|
|
1786
1786
|
t.selectedIndex === t.index ? i.value = !0 : i.value = !1;
|
|
1787
1787
|
}
|
|
1788
|
-
return W(() => t.selectedIndex, () =>
|
|
1789
|
-
var
|
|
1790
|
-
const
|
|
1791
|
-
return
|
|
1792
|
-
class:
|
|
1788
|
+
return W(() => t.selectedIndex, () => r()), (h, p) => {
|
|
1789
|
+
var f, d;
|
|
1790
|
+
const g = K("icon");
|
|
1791
|
+
return s(), v("div", {
|
|
1792
|
+
class: M(["cl-cursor-pointer cl-duration-75 cl-flex cl-p-1 cl-transition-colors", {
|
|
1793
1793
|
"cl-bg-white": i.value === !1,
|
|
1794
1794
|
"cl-bg-link-light cl-text-white cl-opacity-90": i.value && e.isCreateNewOption === !1,
|
|
1795
1795
|
"cl-bg-primary-default cl-text-white cl-opacity-90": i.value && e.isCreateNewOption
|
|
1796
1796
|
}]),
|
|
1797
1797
|
onMousedown: c,
|
|
1798
|
-
onMousemove:
|
|
1799
|
-
onMouseleave:
|
|
1798
|
+
onMousemove: p[0] || (p[0] = (m) => b(!0)),
|
|
1799
|
+
onMouseleave: p[1] || (p[1] = (m) => b(!1))
|
|
1800
1800
|
}, [
|
|
1801
|
-
e.option !== null && ((
|
|
1802
|
-
|
|
1803
|
-
class:
|
|
1801
|
+
e.option !== null && ((f = e.option) == null ? void 0 : f.parentId) !== 0 && ((d = e.option) == null ? void 0 : d.parentId) !== void 0 ? (s(), v("div", zt, x(a(o)), 1)) : A("", !0),
|
|
1802
|
+
u("div", {
|
|
1803
|
+
class: M({
|
|
1804
1804
|
"cl-w-1/2": a(o) !== "",
|
|
1805
1805
|
"cl-w-full": a(o) === ""
|
|
1806
1806
|
})
|
|
1807
1807
|
}, x(a(l)), 3),
|
|
1808
|
-
q(
|
|
1809
|
-
w(
|
|
1810
|
-
class:
|
|
1808
|
+
q(u("div", Lt, [
|
|
1809
|
+
w(g, {
|
|
1810
|
+
class: M(["cl-transition-colors", {
|
|
1811
1811
|
"cl-text-white": i.value,
|
|
1812
1812
|
"cl-text-black ": !i.value
|
|
1813
1813
|
}]),
|
|
@@ -1819,7 +1819,7 @@ const de = /* @__PURE__ */ he(Mt, [["__scopeId", "data-v-be462351"]]), It = { cl
|
|
|
1819
1819
|
], 34);
|
|
1820
1820
|
};
|
|
1821
1821
|
}
|
|
1822
|
-
}),
|
|
1822
|
+
}), Ft = ["onKeyup"], Vt = { class: "cl-flex" }, Gt = { key: 5 }, Ht = /* @__PURE__ */ D({
|
|
1823
1823
|
__name: "cl-ui-combo-box-search",
|
|
1824
1824
|
props: {
|
|
1825
1825
|
loading: { type: Boolean, default: !1 },
|
|
@@ -1840,40 +1840,40 @@ const de = /* @__PURE__ */ he(Mt, [["__scopeId", "data-v-be462351"]]), It = { cl
|
|
|
1840
1840
|
"hide-dropdown": null
|
|
1841
1841
|
},
|
|
1842
1842
|
setup(e, { emit: n }) {
|
|
1843
|
-
const t = e, { t: l } =
|
|
1843
|
+
const t = e, { t: l } = ae(), o = C(""), i = C(!1), c = C(-1), b = E(() => i.value ? -1 : 0), r = C();
|
|
1844
1844
|
function h(T) {
|
|
1845
1845
|
(T === void 0 || (T == null ? void 0 : T.code.startsWith("Arrow")) === !1 && (T == null ? void 0 : T.code.startsWith("Control")) === !1 && (T == null ? void 0 : T.code.startsWith("Shift")) === !1 && (T == null ? void 0 : T.code.startsWith("Tab")) === !1 && (T == null ? void 0 : T.code) !== "Enter") && (n("search", o.value), c.value = -2);
|
|
1846
1846
|
}
|
|
1847
|
-
function
|
|
1847
|
+
function p(T) {
|
|
1848
1848
|
n("select-object", T);
|
|
1849
1849
|
}
|
|
1850
|
-
function
|
|
1851
|
-
n("create-object", o.value),
|
|
1850
|
+
function g() {
|
|
1851
|
+
n("create-object", o.value), f();
|
|
1852
1852
|
}
|
|
1853
|
-
function
|
|
1853
|
+
function f() {
|
|
1854
1854
|
n("hide-dropdown");
|
|
1855
1855
|
}
|
|
1856
|
-
function
|
|
1857
|
-
c.value < t.results.length - 1 ? (c.value === -2 && o.value === "" && c.value++, c.value++) : c.value = T,
|
|
1856
|
+
function d(T) {
|
|
1857
|
+
c.value < t.results.length - 1 ? (c.value === -2 && o.value === "" && c.value++, c.value++) : c.value = T, S();
|
|
1858
1858
|
}
|
|
1859
|
-
function
|
|
1860
|
-
c.value > T ? c.value-- : c.value = t.results.length - 1,
|
|
1859
|
+
function m(T) {
|
|
1860
|
+
c.value > T ? c.value-- : c.value = t.results.length - 1, S();
|
|
1861
1861
|
}
|
|
1862
|
-
function
|
|
1863
|
-
c.value >= 0 && t.results !== void 0 ?
|
|
1862
|
+
function y() {
|
|
1863
|
+
c.value >= 0 && t.results !== void 0 ? p(t.results[c.value].id) : c.value === -1 && g();
|
|
1864
1864
|
}
|
|
1865
|
-
function
|
|
1865
|
+
function I(T) {
|
|
1866
1866
|
if (T.key === "Tab" && T.shiftKey === !0) {
|
|
1867
1867
|
const G = document.getElementsByTagName("input");
|
|
1868
1868
|
let X = -1;
|
|
1869
1869
|
for (let _ = 0; _ < G.length; _++)
|
|
1870
1870
|
G[_] === T.target && (X = _ - 1);
|
|
1871
|
-
X >= 0 && (G[X].focus(),
|
|
1871
|
+
X >= 0 && (G[X].focus(), f());
|
|
1872
1872
|
}
|
|
1873
1873
|
}
|
|
1874
|
-
function
|
|
1874
|
+
function S() {
|
|
1875
1875
|
var T;
|
|
1876
|
-
t.results && t.results.length > 1 && ((T =
|
|
1876
|
+
t.results && t.results.length > 1 && ((T = r.value) == null || T.scrollTo(0, (c.value + 1) * 34 - 34 * 2));
|
|
1877
1877
|
}
|
|
1878
1878
|
function J() {
|
|
1879
1879
|
let T = !1;
|
|
@@ -1885,86 +1885,86 @@ const de = /* @__PURE__ */ he(Mt, [["__scopeId", "data-v-be462351"]]), It = { cl
|
|
|
1885
1885
|
function ce() {
|
|
1886
1886
|
t.isVisible === !0 && (o.value = "", h(), ke(() => {
|
|
1887
1887
|
var T, G;
|
|
1888
|
-
return (G = (T =
|
|
1888
|
+
return (G = (T = r.value) == null ? void 0 : T.querySelector("input")) == null ? void 0 : G.focus();
|
|
1889
1889
|
}));
|
|
1890
1890
|
}
|
|
1891
|
-
return W(() => t.results, () => J()), W(() => t.errorMessage, () => J()), W(() => t.isVisible, () => ce()),
|
|
1891
|
+
return W(() => t.results, () => J()), W(() => t.errorMessage, () => J()), W(() => t.isVisible, () => ce()), Ee(() => {
|
|
1892
1892
|
var T;
|
|
1893
|
-
return (T =
|
|
1894
|
-
}),
|
|
1893
|
+
return (T = r.value) == null ? void 0 : T.addEventListener("keydown", I);
|
|
1894
|
+
}), Pe(() => {
|
|
1895
1895
|
var T;
|
|
1896
|
-
return (T =
|
|
1896
|
+
return (T = r.value) == null ? void 0 : T.removeEventListener("keydown", I);
|
|
1897
1897
|
}), (T, G) => {
|
|
1898
1898
|
var _;
|
|
1899
1899
|
const X = K("cl-ui-loading-spinner");
|
|
1900
|
-
return
|
|
1900
|
+
return s(), v("div", {
|
|
1901
1901
|
ref_key: "container",
|
|
1902
|
-
ref:
|
|
1902
|
+
ref: r,
|
|
1903
1903
|
class: "cl-bg-white cl-border cl-border-collapse cl-border-grey-0 cl-h-52 cl-overflow-y-auto cl-overscroll-y-none cl-p-2 cl-rounded cl-text-sm",
|
|
1904
1904
|
onKeydown: [
|
|
1905
|
-
G[2] || (G[2] = Se(Y((
|
|
1906
|
-
G[3] || (G[3] = Se(Y((
|
|
1905
|
+
G[2] || (G[2] = Se(Y((re) => m(a(b)), ["prevent", "stop"]), ["up"])),
|
|
1906
|
+
G[3] || (G[3] = Se(Y((re) => d(a(b)), ["prevent", "stop"]), ["down"]))
|
|
1907
1907
|
],
|
|
1908
|
-
onKeyup: Se(Y(
|
|
1908
|
+
onKeyup: Se(Y(y, ["prevent", "stop"]), ["enter"])
|
|
1909
1909
|
}, [
|
|
1910
|
-
|
|
1911
|
-
w(
|
|
1910
|
+
u("div", Vt, [
|
|
1911
|
+
w(fe, {
|
|
1912
1912
|
modelValue: o.value,
|
|
1913
|
-
"onUpdate:modelValue": G[0] || (G[0] = (
|
|
1913
|
+
"onUpdate:modelValue": G[0] || (G[0] = (re) => o.value = re),
|
|
1914
1914
|
class: "!cl-mr-0 cl-mb-1 cl-w-full",
|
|
1915
1915
|
"input-type": "text",
|
|
1916
1916
|
"placeholder-text": a(l)("comboBox.searchHint", { object: e.objectType }),
|
|
1917
1917
|
onKeyup: h,
|
|
1918
|
-
onBlur:
|
|
1918
|
+
onBlur: f
|
|
1919
1919
|
}, null, 8, ["modelValue", "placeholder-text"]),
|
|
1920
1920
|
q(w(X, { class: "cl-absolute cl-ml-2 cl-mt-11" }, null, 512), [
|
|
1921
1921
|
[R, e.loading]
|
|
1922
1922
|
])
|
|
1923
1923
|
]),
|
|
1924
|
-
e.currentObjectName !== "" ? (
|
|
1924
|
+
e.currentObjectName !== "" ? (s(), z(je, {
|
|
1925
1925
|
key: 0,
|
|
1926
1926
|
"show-clear-button": e.canClearSelectedObject,
|
|
1927
1927
|
text: e.currentObjectName,
|
|
1928
|
-
onClearObject: G[1] || (G[1] = (
|
|
1929
|
-
}, null, 8, ["show-clear-button", "text"])) :
|
|
1930
|
-
e.objectParentType !== "" && e.results !== void 0 && e.results.length > 0 && e.errorMessage === "" ? (
|
|
1928
|
+
onClearObject: G[1] || (G[1] = (re) => T.$emit("clear-object"))
|
|
1929
|
+
}, null, 8, ["show-clear-button", "text"])) : A("", !0),
|
|
1930
|
+
e.objectParentType !== "" && e.results !== void 0 && e.results.length > 0 && e.errorMessage === "" ? (s(), z(je, {
|
|
1931
1931
|
key: 1,
|
|
1932
1932
|
text: e.objectType,
|
|
1933
1933
|
"additional-text": e.objectParentType,
|
|
1934
1934
|
class: "cl-bg-grey-2 cl-mt-1"
|
|
1935
|
-
}, null, 8, ["text", "additional-text"])) :
|
|
1936
|
-
e.results !== null && ((_ = e.results) == null ? void 0 : _.length) === 0 && o.value.trim() !== "" && e.canCreateNewObject === !1 && e.errorMessage === "" ? (
|
|
1935
|
+
}, null, 8, ["text", "additional-text"])) : A("", !0),
|
|
1936
|
+
e.results !== null && ((_ = e.results) == null ? void 0 : _.length) === 0 && o.value.trim() !== "" && e.canCreateNewObject === !1 && e.errorMessage === "" ? (s(), z(je, {
|
|
1937
1937
|
key: 2,
|
|
1938
1938
|
text: a(l)("comboBox.noResults", { value: o.value })
|
|
1939
|
-
}, null, 8, ["text"])) :
|
|
1940
|
-
e.errorMessage !== "" ? (
|
|
1939
|
+
}, null, 8, ["text"])) : A("", !0),
|
|
1940
|
+
e.errorMessage !== "" ? (s(), z(je, {
|
|
1941
1941
|
key: 3,
|
|
1942
1942
|
class: "!cl-bg-danger-light cl-border-danger-light cl-rounded cl-text-danger-dark",
|
|
1943
1943
|
text: a(l)("comboBox.errorMessage", { error: e.errorMessage })
|
|
1944
|
-
}, null, 8, ["text"])) :
|
|
1945
|
-
i.value ? (
|
|
1944
|
+
}, null, 8, ["text"])) : A("", !0),
|
|
1945
|
+
i.value ? (s(), z(el, {
|
|
1946
1946
|
key: 4,
|
|
1947
1947
|
"is-create-new-option": !0,
|
|
1948
1948
|
text: a(l)("comboBox.addPrompt", { value: o.value, object: e.objectType }),
|
|
1949
1949
|
index: -1,
|
|
1950
1950
|
"selected-index": c.value,
|
|
1951
|
-
onCreateObject:
|
|
1951
|
+
onCreateObject: g,
|
|
1952
1952
|
onOptionHighlighted: V
|
|
1953
|
-
}, null, 8, ["text", "selected-index"])) :
|
|
1954
|
-
e.errorMessage === "" && e.results !== null ? (
|
|
1955
|
-
(
|
|
1953
|
+
}, null, 8, ["text", "selected-index"])) : A("", !0),
|
|
1954
|
+
e.errorMessage === "" && e.results !== null ? (s(), v("div", Gt, [
|
|
1955
|
+
(s(!0), v(P, null, te(e.results, (re, pe) => (s(), z(el, {
|
|
1956
1956
|
key: pe,
|
|
1957
|
-
option:
|
|
1957
|
+
option: re,
|
|
1958
1958
|
index: pe,
|
|
1959
1959
|
"selected-index": c.value,
|
|
1960
|
-
onSelectObject:
|
|
1960
|
+
onSelectObject: p,
|
|
1961
1961
|
onOptionHighlighted: V
|
|
1962
1962
|
}, null, 8, ["option", "index", "selected-index"]))), 128))
|
|
1963
|
-
])) :
|
|
1964
|
-
], 40,
|
|
1963
|
+
])) : A("", !0)
|
|
1964
|
+
], 40, Ft);
|
|
1965
1965
|
};
|
|
1966
1966
|
}
|
|
1967
|
-
}),
|
|
1967
|
+
}), Wt = { class: "cl-flex" }, Jt = { class: "cl-relative cl-right-20 cl-top-0.5" }, Kt = { class: "cl-absolute cl-flex cl-float-right cl-font-semibold cl-mt-2 cl-text-danger-default cl-text-sm" }, Zt = { class: "cl-ml-4 cl-w-11/12" }, Qt = { class: "cl-p-2 cl-text-right cl-w-full" }, Yt = /* @__PURE__ */ D({
|
|
1968
1968
|
__name: "cl-ui-combo-box",
|
|
1969
1969
|
props: {
|
|
1970
1970
|
loading: { type: Boolean, default: !1 },
|
|
@@ -1990,25 +1990,25 @@ const de = /* @__PURE__ */ he(Mt, [["__scopeId", "data-v-be462351"]]), It = { cl
|
|
|
1990
1990
|
"update:current-object": null
|
|
1991
1991
|
},
|
|
1992
1992
|
setup(e, { expose: n, emit: t }) {
|
|
1993
|
-
const l = e, { t: o } =
|
|
1993
|
+
const l = e, { t: o } = ae(), i = C(!1), c = E({
|
|
1994
1994
|
get: () => l.currentObject,
|
|
1995
1995
|
set: (j) => t("update:current-object", j)
|
|
1996
|
-
}),
|
|
1997
|
-
function
|
|
1996
|
+
}), b = C(null), r = C(null), h = E(() => re()), p = C(""), g = C(""), f = C(), d = C(!0);
|
|
1997
|
+
function m(j) {
|
|
1998
1998
|
l.disabled || (typeof j < "u" ? i.value = j : i.value = !i.value);
|
|
1999
1999
|
}
|
|
2000
|
-
function
|
|
2001
|
-
|
|
2000
|
+
function y(j) {
|
|
2001
|
+
p.value = j, t("search", j);
|
|
2002
2002
|
}
|
|
2003
|
-
function
|
|
2004
|
-
|
|
2003
|
+
function I(j) {
|
|
2004
|
+
g.value = j, t("search-parent", j);
|
|
2005
2005
|
}
|
|
2006
|
-
function
|
|
2007
|
-
c.value = null,
|
|
2006
|
+
function S() {
|
|
2007
|
+
c.value = null, m(!1);
|
|
2008
2008
|
}
|
|
2009
2009
|
function J(j) {
|
|
2010
2010
|
const U = V(j);
|
|
2011
|
-
c.value = U,
|
|
2011
|
+
c.value = U, m(!1);
|
|
2012
2012
|
}
|
|
2013
2013
|
function V(j) {
|
|
2014
2014
|
let U = null;
|
|
@@ -2023,80 +2023,80 @@ const de = /* @__PURE__ */ he(Mt, [["__scopeId", "data-v-be462351"]]), It = { cl
|
|
|
2023
2023
|
}
|
|
2024
2024
|
function ce() {
|
|
2025
2025
|
var j;
|
|
2026
|
-
|
|
2027
|
-
name:
|
|
2028
|
-
parentId: ((j =
|
|
2029
|
-
}, t("create-object",
|
|
2026
|
+
f.value = {
|
|
2027
|
+
name: p.value,
|
|
2028
|
+
parentId: ((j = r.value) == null ? void 0 : j.id) ?? 0
|
|
2029
|
+
}, t("create-object", f.value);
|
|
2030
2030
|
}
|
|
2031
2031
|
function T() {
|
|
2032
|
-
|
|
2033
|
-
name:
|
|
2032
|
+
f.value = {
|
|
2033
|
+
name: g.value,
|
|
2034
2034
|
parentId: 0
|
|
2035
|
-
}, t("create-parent-object",
|
|
2035
|
+
}, t("create-parent-object", f.value);
|
|
2036
2036
|
}
|
|
2037
2037
|
function G() {
|
|
2038
2038
|
var j, U;
|
|
2039
|
-
(j = l.objectCreatedResponse) != null && j.error ?
|
|
2040
|
-
message: o("comboBox.createFailed", { name:
|
|
2039
|
+
(j = l.objectCreatedResponse) != null && j.error ? Ke({
|
|
2040
|
+
message: o("comboBox.createFailed", { name: p.value, error: l.objectCreatedResponse.error }),
|
|
2041
2041
|
colour: "danger",
|
|
2042
2042
|
duration: 1e4
|
|
2043
2043
|
}) : (U = l.objectCreatedResponse) != null && U.id && _();
|
|
2044
2044
|
}
|
|
2045
2045
|
function X() {
|
|
2046
2046
|
var j;
|
|
2047
|
-
(j = l.parentObjectCreatedResponse) != null && j.id && (
|
|
2047
|
+
(j = l.parentObjectCreatedResponse) != null && j.id && (r.value = {
|
|
2048
2048
|
id: l.parentObjectCreatedResponse.id,
|
|
2049
2049
|
name: l.parentObjectCreatedResponse.name ?? ""
|
|
2050
2050
|
});
|
|
2051
2051
|
}
|
|
2052
2052
|
function _() {
|
|
2053
|
-
var U, Q,
|
|
2054
|
-
|
|
2053
|
+
var U, Q, ge, $, L;
|
|
2054
|
+
Ke({
|
|
2055
2055
|
message: o("comboBox.createSuccessful", { object: l.objectType, name: ((U = l.objectCreatedResponse) == null ? void 0 : U.name) ?? "" }),
|
|
2056
2056
|
colour: "primary",
|
|
2057
2057
|
duration: 1e4
|
|
2058
2058
|
});
|
|
2059
2059
|
let j = "";
|
|
2060
|
-
|
|
2061
|
-
id: ((
|
|
2060
|
+
r.value && r.value.id === ((Q = l.objectCreatedResponse) == null ? void 0 : Q.parentId) && (j = r.value.name), c.value = {
|
|
2061
|
+
id: ((ge = l.objectCreatedResponse) == null ? void 0 : ge.id) ?? 0,
|
|
2062
2062
|
name: (($ = l.objectCreatedResponse) == null ? void 0 : $.name) ?? "",
|
|
2063
2063
|
parentId: ((L = l.objectCreatedResponse) == null ? void 0 : L.parentId) ?? 0,
|
|
2064
2064
|
parentName: j
|
|
2065
2065
|
};
|
|
2066
2066
|
}
|
|
2067
|
-
function
|
|
2067
|
+
function re() {
|
|
2068
2068
|
let j = "";
|
|
2069
2069
|
return c.value && (c.value.parentName ? j = c.value.parentName + "; " + c.value.name : j = c.value.name), j;
|
|
2070
2070
|
}
|
|
2071
2071
|
function pe() {
|
|
2072
2072
|
let j = !0;
|
|
2073
|
-
|
|
2073
|
+
p.value === "" && (j = !1), l.objectParentType !== "" && r.value === null && (j = !1), d.value = j;
|
|
2074
2074
|
}
|
|
2075
|
-
return W(() => l.objectCreatedResponse, () => G()), W(() => l.parentObjectCreatedResponse, () => X()), W(() =>
|
|
2075
|
+
return W(() => l.objectCreatedResponse, () => G()), W(() => l.parentObjectCreatedResponse, () => X()), W(() => p.value, () => pe()), W(() => r.value, () => pe()), n({
|
|
2076
2076
|
focus() {
|
|
2077
2077
|
var j;
|
|
2078
|
-
(j =
|
|
2078
|
+
(j = b.value) == null || j.focus();
|
|
2079
2079
|
}
|
|
2080
2080
|
}), (j, U) => {
|
|
2081
|
-
const Q = K("icon"),
|
|
2082
|
-
return
|
|
2083
|
-
|
|
2084
|
-
w(
|
|
2081
|
+
const Q = K("icon"), ge = K("cl-ui-combo-box", !0);
|
|
2082
|
+
return s(), v("div", null, [
|
|
2083
|
+
u("div", Wt, [
|
|
2084
|
+
w(fe, {
|
|
2085
2085
|
ref_key: "inputRef",
|
|
2086
|
-
ref:
|
|
2086
|
+
ref: b,
|
|
2087
2087
|
modelValue: a(h),
|
|
2088
|
-
"onUpdate:modelValue": U[0] || (U[0] = ($) =>
|
|
2089
|
-
class:
|
|
2088
|
+
"onUpdate:modelValue": U[0] || (U[0] = ($) => be(h) ? h.value = $ : null),
|
|
2089
|
+
class: M(["!cl-bg-transparent !cl-mr-0 cl-mb-0 cl-rounded-r-none cl-w-full cl-z-10", {
|
|
2090
2090
|
"cl-cursor-pointer": e.disabled === !1
|
|
2091
2091
|
}]),
|
|
2092
2092
|
"input-type": "text",
|
|
2093
2093
|
"placeholder-text": a(o)("comboBox.emptyHintText", { object: e.objectType }),
|
|
2094
2094
|
onFocus: U[1] || (U[1] = ($) => {
|
|
2095
|
-
|
|
2095
|
+
m(!0), j.$emit("focus");
|
|
2096
2096
|
})
|
|
2097
2097
|
}, null, 8, ["modelValue", "class", "placeholder-text"]),
|
|
2098
|
-
q(
|
|
2099
|
-
|
|
2098
|
+
q(u("div", Jt, [
|
|
2099
|
+
u("div", Kt, [
|
|
2100
2100
|
le(x(a(o)("comboBox.required")) + " ", 1),
|
|
2101
2101
|
w(Q, {
|
|
2102
2102
|
class: "cl-ml-1 cl-mt-1",
|
|
@@ -2106,25 +2106,25 @@ const de = /* @__PURE__ */ he(Mt, [["__scopeId", "data-v-be462351"]]), It = { cl
|
|
|
2106
2106
|
], 512), [
|
|
2107
2107
|
[R, e.required && e.disabled === !1 && e.currentObject === null]
|
|
2108
2108
|
]),
|
|
2109
|
-
i.value ? (
|
|
2109
|
+
i.value ? (s(), v("div", {
|
|
2110
2110
|
key: 1,
|
|
2111
|
-
class:
|
|
2111
|
+
class: M(["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", {
|
|
2112
2112
|
"cl-cursor-default": e.disabled,
|
|
2113
2113
|
"cl-cursor-pointer": e.disabled === !1
|
|
2114
2114
|
}]),
|
|
2115
|
-
onClick: U[3] || (U[3] = ($) =>
|
|
2115
|
+
onClick: U[3] || (U[3] = ($) => m(!1))
|
|
2116
2116
|
}, [
|
|
2117
2117
|
w(Q, {
|
|
2118
2118
|
icon: "ph:caret-up-bold",
|
|
2119
2119
|
class: "cl-ml-[5px] cl-mt-[12px]"
|
|
2120
2120
|
})
|
|
2121
|
-
], 2)) : (
|
|
2121
|
+
], 2)) : (s(), v("div", {
|
|
2122
2122
|
key: 0,
|
|
2123
|
-
class:
|
|
2123
|
+
class: M(["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", {
|
|
2124
2124
|
"cl-cursor-default": e.disabled,
|
|
2125
2125
|
"cl-cursor-pointer": e.disabled === !1
|
|
2126
2126
|
}]),
|
|
2127
|
-
onClick: U[2] || (U[2] = ($) =>
|
|
2127
|
+
onClick: U[2] || (U[2] = ($) => m(!0))
|
|
2128
2128
|
}, [
|
|
2129
2129
|
w(Q, {
|
|
2130
2130
|
icon: "ph:caret-down-bold",
|
|
@@ -2132,12 +2132,12 @@ const de = /* @__PURE__ */ he(Mt, [["__scopeId", "data-v-be462351"]]), It = { cl
|
|
|
2132
2132
|
})
|
|
2133
2133
|
], 2))
|
|
2134
2134
|
]),
|
|
2135
|
-
w(
|
|
2136
|
-
title:
|
|
2135
|
+
w(rl, { size: "x-small" }, {
|
|
2136
|
+
title: B(() => [
|
|
2137
2137
|
le(x(a(o)("comboBox.createTitle", { object: e.objectType })), 1)
|
|
2138
2138
|
]),
|
|
2139
|
-
trigger:
|
|
2140
|
-
q(w(
|
|
2139
|
+
trigger: B(({ open: $ }) => [
|
|
2140
|
+
q(w(Ht, {
|
|
2141
2141
|
"can-create-new-object": e.canCreateNewObject,
|
|
2142
2142
|
"can-clear-selected-object": e.canClearSelectedObject,
|
|
2143
2143
|
loading: e.loading,
|
|
@@ -2149,22 +2149,22 @@ const de = /* @__PURE__ */ he(Mt, [["__scopeId", "data-v-be462351"]]), It = { cl
|
|
|
2149
2149
|
"is-visible": i.value,
|
|
2150
2150
|
onCreateObject: $,
|
|
2151
2151
|
onSelectObject: J,
|
|
2152
|
-
onClearObject:
|
|
2153
|
-
onSearch:
|
|
2154
|
-
onHideDropdown: U[4] || (U[4] = (L) =>
|
|
2152
|
+
onClearObject: S,
|
|
2153
|
+
onSearch: y,
|
|
2154
|
+
onHideDropdown: U[4] || (U[4] = (L) => m(!1))
|
|
2155
2155
|
}, null, 8, ["can-create-new-object", "can-clear-selected-object", "loading", "results", "object-type", "object-parent-type", "error-message", "current-object-name", "is-visible", "onCreateObject"]), [
|
|
2156
2156
|
[R, i.value]
|
|
2157
2157
|
])
|
|
2158
2158
|
]),
|
|
2159
|
-
footer:
|
|
2160
|
-
|
|
2159
|
+
footer: B(({ close: $ }) => [
|
|
2160
|
+
u("div", Qt, [
|
|
2161
2161
|
w(we, {
|
|
2162
2162
|
class: "cl-mr-3",
|
|
2163
2163
|
colour: "default",
|
|
2164
2164
|
size: "small",
|
|
2165
2165
|
onClick: $
|
|
2166
2166
|
}, {
|
|
2167
|
-
default:
|
|
2167
|
+
default: B(() => [
|
|
2168
2168
|
le(x(a(o)("comboBox.cancel")), 1)
|
|
2169
2169
|
]),
|
|
2170
2170
|
_: 2
|
|
@@ -2172,24 +2172,24 @@ const de = /* @__PURE__ */ he(Mt, [["__scopeId", "data-v-be462351"]]), It = { cl
|
|
|
2172
2172
|
w(we, {
|
|
2173
2173
|
colour: "primary",
|
|
2174
2174
|
size: "small",
|
|
2175
|
-
disabled: !
|
|
2175
|
+
disabled: !d.value,
|
|
2176
2176
|
onClick: (L) => {
|
|
2177
2177
|
ce(), $();
|
|
2178
2178
|
}
|
|
2179
2179
|
}, {
|
|
2180
|
-
default:
|
|
2180
|
+
default: B(() => [
|
|
2181
2181
|
le(x(a(o)("comboBox.create")), 1)
|
|
2182
2182
|
]),
|
|
2183
2183
|
_: 2
|
|
2184
2184
|
}, 1032, ["disabled", "onClick"])
|
|
2185
2185
|
])
|
|
2186
2186
|
]),
|
|
2187
|
-
default:
|
|
2188
|
-
|
|
2189
|
-
e.objectParentType ? (
|
|
2187
|
+
default: B(() => [
|
|
2188
|
+
u("div", Zt, [
|
|
2189
|
+
e.objectParentType ? (s(), z(ge, {
|
|
2190
2190
|
key: 0,
|
|
2191
|
-
"current-object":
|
|
2192
|
-
"onUpdate:current-object": U[5] || (U[5] = ($) =>
|
|
2191
|
+
"current-object": r.value,
|
|
2192
|
+
"onUpdate:current-object": U[5] || (U[5] = ($) => r.value = $),
|
|
2193
2193
|
class: "cl-mt-3",
|
|
2194
2194
|
results: e.parentResults,
|
|
2195
2195
|
loading: e.loading,
|
|
@@ -2198,12 +2198,12 @@ const de = /* @__PURE__ */ he(Mt, [["__scopeId", "data-v-be462351"]]), It = { cl
|
|
|
2198
2198
|
"can-create-new-object": e.canCreateNewObject,
|
|
2199
2199
|
"can-clear-selected-object": e.canClearSelectedObject,
|
|
2200
2200
|
"error-message": e.errorMessage,
|
|
2201
|
-
onSearch:
|
|
2201
|
+
onSearch: I,
|
|
2202
2202
|
onCreateObject: T
|
|
2203
|
-
}, null, 8, ["current-object", "results", "loading", "object-type", "object-created-response", "can-create-new-object", "can-clear-selected-object", "error-message"])) :
|
|
2204
|
-
w(
|
|
2205
|
-
modelValue:
|
|
2206
|
-
"onUpdate:modelValue": U[6] || (U[6] = ($) =>
|
|
2203
|
+
}, null, 8, ["current-object", "results", "loading", "object-type", "object-created-response", "can-create-new-object", "can-clear-selected-object", "error-message"])) : A("", !0),
|
|
2204
|
+
w(fe, {
|
|
2205
|
+
modelValue: p.value,
|
|
2206
|
+
"onUpdate:modelValue": U[6] || (U[6] = ($) => p.value = $),
|
|
2207
2207
|
label: a(o)("comboBox.createProperty"),
|
|
2208
2208
|
class: "cl-mb-2 cl-pt-3 cl-w-full",
|
|
2209
2209
|
"input-type": "text"
|
|
@@ -2216,66 +2216,66 @@ const de = /* @__PURE__ */ he(Mt, [["__scopeId", "data-v-be462351"]]), It = { cl
|
|
|
2216
2216
|
};
|
|
2217
2217
|
}
|
|
2218
2218
|
});
|
|
2219
|
-
function
|
|
2219
|
+
function Xt(e) {
|
|
2220
2220
|
return typeof e.id == "number" && typeof e.name == "string";
|
|
2221
2221
|
}
|
|
2222
|
-
function
|
|
2222
|
+
function _t(e) {
|
|
2223
2223
|
return typeof e.name == "string";
|
|
2224
2224
|
}
|
|
2225
|
-
const
|
|
2225
|
+
const en = {}, ln = { class: "cl-flex cl-flex-wrap cl-left-0 cl-mt-4 cl-w-full" }, tn = {
|
|
2226
2226
|
key: 0,
|
|
2227
2227
|
class: "cl-w-full"
|
|
2228
|
-
},
|
|
2228
|
+
}, nn = {
|
|
2229
2229
|
key: 1,
|
|
2230
2230
|
class: "cl-leading-10 cl-text-sm cl-w-full"
|
|
2231
|
-
},
|
|
2232
|
-
function
|
|
2233
|
-
return
|
|
2234
|
-
e.$slots.default ? (
|
|
2235
|
-
|
|
2236
|
-
])) :
|
|
2237
|
-
e.$slots.left || e.$slots.right ? (
|
|
2238
|
-
|
|
2239
|
-
|
|
2231
|
+
}, on = { class: "cl-float-left" }, an = { class: "cl-float-right" };
|
|
2232
|
+
function cn(e, n) {
|
|
2233
|
+
return s(), v("div", ln, [
|
|
2234
|
+
e.$slots.default ? (s(), v("div", tn, [
|
|
2235
|
+
O(e.$slots, "default")
|
|
2236
|
+
])) : A("", !0),
|
|
2237
|
+
e.$slots.left || e.$slots.right ? (s(), v("div", nn, [
|
|
2238
|
+
u("span", on, [
|
|
2239
|
+
O(e.$slots, "left")
|
|
2240
2240
|
]),
|
|
2241
|
-
|
|
2242
|
-
|
|
2241
|
+
u("span", an, [
|
|
2242
|
+
O(e.$slots, "right")
|
|
2243
2243
|
])
|
|
2244
|
-
])) :
|
|
2244
|
+
])) : A("", !0)
|
|
2245
2245
|
]);
|
|
2246
2246
|
}
|
|
2247
|
-
const
|
|
2247
|
+
const sn = /* @__PURE__ */ he(en, [["render", cn]]), rn = {
|
|
2248
2248
|
key: 0,
|
|
2249
2249
|
class: "cl-inline-block cl-whitespace-nowrap"
|
|
2250
|
-
},
|
|
2250
|
+
}, un = {
|
|
2251
2251
|
key: 1,
|
|
2252
2252
|
class: "cl-inline-block cl-whitespace-nowrap"
|
|
2253
|
-
},
|
|
2253
|
+
}, ll = /* @__PURE__ */ D({
|
|
2254
2254
|
__name: "cl-ui-grid-cell-value",
|
|
2255
2255
|
props: {
|
|
2256
2256
|
data: null,
|
|
2257
2257
|
column: null
|
|
2258
2258
|
},
|
|
2259
2259
|
setup(e) {
|
|
2260
|
-
const { d: n } =
|
|
2261
|
-
return (t, l) => e.column.type === "slot" ?
|
|
2260
|
+
const { d: n } = ae();
|
|
2261
|
+
return (t, l) => e.column.type === "slot" ? O(t.$slots, e.column.name, { key: 0 }) : e.column.type === "boolean" && e.column.field !== void 0 ? (s(), z(fe, {
|
|
2262
2262
|
key: 1,
|
|
2263
2263
|
"input-type": "checkbox",
|
|
2264
2264
|
"model-value": e.data[e.column.field],
|
|
2265
2265
|
disabled: !0
|
|
2266
|
-
}, null, 8, ["model-value"])) : (e.column.type === "date" || e.column.type === "datetime") && e.column.field !== void 0 ? (
|
|
2267
|
-
e.column.format !== void 0 ? (
|
|
2266
|
+
}, null, 8, ["model-value"])) : (e.column.type === "date" || e.column.type === "datetime") && e.column.field !== void 0 ? (s(), v(P, { key: 2 }, [
|
|
2267
|
+
e.column.format !== void 0 ? (s(), v(P, { key: 0 }, [
|
|
2268
2268
|
le(x(a(n)(new Date(e.data[e.column.field]), e.column.format)), 1)
|
|
2269
|
-
], 64)) : e.column.type === "date" ? (
|
|
2269
|
+
], 64)) : e.column.type === "date" ? (s(), v(P, { key: 1 }, [
|
|
2270
2270
|
le(x(a(n)(new Date(e.data[e.column.field]), a(H).DATE)), 1)
|
|
2271
|
-
], 64)) : (
|
|
2271
|
+
], 64)) : (s(), v(P, { key: 2 }, [
|
|
2272
2272
|
le(x(a(n)(new Date(e.data[e.column.field]), a(H).DATETIME)), 1)
|
|
2273
2273
|
], 64))
|
|
2274
|
-
], 64)) : e.column.field !== void 0 ? (
|
|
2275
|
-
e.column.maxLength !== void 0 ? (
|
|
2276
|
-
], 64)) :
|
|
2274
|
+
], 64)) : e.column.field !== void 0 ? (s(), v(P, { key: 3 }, [
|
|
2275
|
+
e.column.maxLength !== void 0 ? (s(), v("span", rn, x(e.data[e.column.field].trimToLength(e.column.maxLength, e.column.format !== void 0 ? e.column.format === "ellipsis" : !1)), 1)) : (s(), v("span", un, x(e.data[e.column.field]), 1))
|
|
2276
|
+
], 64)) : A("", !0);
|
|
2277
2277
|
}
|
|
2278
|
-
}),
|
|
2278
|
+
}), dn = { class: "cl-font-semibold lg:cl-hidden" }, fn = /* @__PURE__ */ D({
|
|
2279
2279
|
__name: "cl-ui-grid-cell",
|
|
2280
2280
|
props: {
|
|
2281
2281
|
data: null,
|
|
@@ -2284,36 +2284,46 @@ const an = /* @__PURE__ */ he(Xt, [["render", on]]), cn = {
|
|
|
2284
2284
|
},
|
|
2285
2285
|
emits: ["edit", "focus", "undo"],
|
|
2286
2286
|
setup(e, { emit: n }) {
|
|
2287
|
-
const t = e, l = C(
|
|
2288
|
-
return
|
|
2287
|
+
const t = e, l = C(me(t.data)), o = E(() => t.column.field !== void 0 && l.value[t.column.field] !== t.data[t.column.field]);
|
|
2288
|
+
return bl(() => l.value = me(t.data)), W(l, (i) => {
|
|
2289
2289
|
const c = t.column.field ?? "";
|
|
2290
2290
|
c !== "" && (i[c] !== t.data[c] ? n("edit", i[c]) : n("undo"));
|
|
2291
2291
|
}, {
|
|
2292
2292
|
deep: !0
|
|
2293
|
-
}), (i, c) => (
|
|
2294
|
-
class:
|
|
2293
|
+
}), (i, c) => (s(), v("td", {
|
|
2294
|
+
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", {
|
|
2295
2295
|
"cl-bg-link-lighter": a(o)
|
|
2296
2296
|
}])
|
|
2297
2297
|
}, [
|
|
2298
|
-
|
|
2299
|
-
e.editMode ?
|
|
2298
|
+
u("span", dn, x(e.column.caption), 1),
|
|
2299
|
+
e.editMode && e.column.editable === !0 ? O(i.$slots, `${e.column.name}Edit`, oe(ve({ key: 0 }, {
|
|
2300
2300
|
cellFocused: () => n("focus"),
|
|
2301
2301
|
column: e.column,
|
|
2302
2302
|
edited: a(o),
|
|
2303
2303
|
record: l.value
|
|
2304
2304
|
})), () => [
|
|
2305
|
-
w(
|
|
2305
|
+
w(ll, {
|
|
2306
2306
|
column: e.column,
|
|
2307
2307
|
data: e.data
|
|
2308
|
-
},
|
|
2309
|
-
|
|
2308
|
+
}, {
|
|
2309
|
+
[e.column.name]: B(() => [
|
|
2310
|
+
O(i.$slots, e.column.name, oe(ie({ column: e.column, data: e.data })))
|
|
2311
|
+
]),
|
|
2312
|
+
_: 2
|
|
2313
|
+
}, 1032, ["column", "data"])
|
|
2314
|
+
]) : (s(), z(ll, {
|
|
2310
2315
|
key: 1,
|
|
2311
2316
|
column: e.column,
|
|
2312
2317
|
data: e.data
|
|
2313
|
-
},
|
|
2318
|
+
}, {
|
|
2319
|
+
[e.column.name]: B(() => [
|
|
2320
|
+
O(i.$slots, e.column.name, oe(ie({ column: e.column, data: e.data })))
|
|
2321
|
+
]),
|
|
2322
|
+
_: 2
|
|
2323
|
+
}, 1032, ["column", "data"]))
|
|
2314
2324
|
], 2));
|
|
2315
2325
|
}
|
|
2316
|
-
}),
|
|
2326
|
+
}), mn = /* @__PURE__ */ D({
|
|
2317
2327
|
__name: "cl-ui-grid-row",
|
|
2318
2328
|
props: {
|
|
2319
2329
|
data: null,
|
|
@@ -2322,8 +2332,8 @@ const an = /* @__PURE__ */ he(Xt, [["render", on]]), cn = {
|
|
|
2322
2332
|
},
|
|
2323
2333
|
emits: ["cell-focus", "cell-edit", "cell-undo", "row-select"],
|
|
2324
2334
|
setup(e) {
|
|
2325
|
-
return (n, t) => (
|
|
2326
|
-
(
|
|
2335
|
+
return (n, t) => (s(), v("tr", null, [
|
|
2336
|
+
(s(!0), v(P, null, te(e.columns, (l, o) => (s(), z(fn, {
|
|
2327
2337
|
key: o,
|
|
2328
2338
|
data: e.data,
|
|
2329
2339
|
column: l,
|
|
@@ -2331,20 +2341,20 @@ const an = /* @__PURE__ */ he(Xt, [["render", on]]), cn = {
|
|
|
2331
2341
|
onFocus: t[0] || (t[0] = (i) => n.$emit("cell-focus")),
|
|
2332
2342
|
onEdit: (i) => n.$emit("cell-edit", { field: l.field, value: i }),
|
|
2333
2343
|
onUndo: (i) => n.$emit("cell-undo", l.field)
|
|
2334
|
-
},
|
|
2344
|
+
}, Ve({ _: 2 }, [
|
|
2335
2345
|
te(n.$slots, (i, c) => ({
|
|
2336
2346
|
name: c,
|
|
2337
|
-
fn:
|
|
2338
|
-
|
|
2347
|
+
fn: B((b) => [
|
|
2348
|
+
O(n.$slots, c, oe(ie(b)))
|
|
2339
2349
|
])
|
|
2340
2350
|
}))
|
|
2341
2351
|
]), 1032, ["data", "column", "edit-mode", "onEdit", "onUndo"]))), 128))
|
|
2342
2352
|
]));
|
|
2343
2353
|
}
|
|
2344
|
-
}),
|
|
2354
|
+
}), gn = { key: 1 }, bn = ["colspan"], vn = { class: "cl-flex cl-flex-wrap cl-justify-center cl-text-center cl-text-sm cl-w-full" }, hn = { class: "cl-mt-6 cl-w-full" }, pn = {
|
|
2345
2355
|
key: 0,
|
|
2346
2356
|
class: "cl-mt-4"
|
|
2347
|
-
},
|
|
2357
|
+
}, yn = { class: "cl-mb-2 cl-w-full" }, wn = /* @__PURE__ */ D({
|
|
2348
2358
|
__name: "cl-ui-grid-body",
|
|
2349
2359
|
props: {
|
|
2350
2360
|
columns: null,
|
|
@@ -2356,36 +2366,36 @@ const an = /* @__PURE__ */ he(Xt, [["render", on]]), cn = {
|
|
|
2356
2366
|
},
|
|
2357
2367
|
emits: ["row-select", "row-edit", "clear-filters"],
|
|
2358
2368
|
setup(e, { emit: n }) {
|
|
2359
|
-
const t = e, { t: l } =
|
|
2369
|
+
const t = e, { t: l } = ae(), o = C({
|
|
2360
2370
|
index: -1,
|
|
2361
2371
|
record: {}
|
|
2362
2372
|
});
|
|
2363
2373
|
function i() {
|
|
2364
|
-
Object.keys(o.value.record).length !== 0 && (n("row-edit",
|
|
2374
|
+
Object.keys(o.value.record).length !== 0 && (n("row-edit", me(o.value)), o.value.record = {});
|
|
2365
2375
|
}
|
|
2366
|
-
function c(
|
|
2367
|
-
o.value.index !== -1 && o.value.index !==
|
|
2376
|
+
function c(g) {
|
|
2377
|
+
o.value.index !== -1 && o.value.index !== g && i(), o.value.index = g;
|
|
2368
2378
|
}
|
|
2369
|
-
function g
|
|
2370
|
-
c(
|
|
2379
|
+
function b(g, f) {
|
|
2380
|
+
c(g), f.field !== void 0 && (o.value.record[f.field] = f.value);
|
|
2371
2381
|
}
|
|
2372
|
-
function
|
|
2373
|
-
if (
|
|
2374
|
-
const { [
|
|
2382
|
+
function r(g) {
|
|
2383
|
+
if (g !== void 0) {
|
|
2384
|
+
const { [g]: f, ...d } = o.value.record;
|
|
2375
2385
|
o.value.record = {
|
|
2376
|
-
...
|
|
2386
|
+
...d
|
|
2377
2387
|
};
|
|
2378
2388
|
}
|
|
2379
2389
|
}
|
|
2380
2390
|
const h = C({});
|
|
2381
2391
|
W(() => t.data, () => {
|
|
2382
|
-
var
|
|
2383
|
-
return h.value = Object.fromEntries(((
|
|
2384
|
-
[
|
|
2392
|
+
var g, f;
|
|
2393
|
+
return h.value = Object.fromEntries(((f = (g = t.data) == null ? void 0 : g.results) == null ? void 0 : f.map((d, m) => [
|
|
2394
|
+
[m],
|
|
2385
2395
|
{
|
|
2386
2396
|
count: 0,
|
|
2387
|
-
reset:
|
|
2388
|
-
h.value[
|
|
2397
|
+
reset: ol(() => {
|
|
2398
|
+
h.value[m].count = 0;
|
|
2389
2399
|
}, 750, { immediate: !1 })
|
|
2390
2400
|
}
|
|
2391
2401
|
])) ?? []);
|
|
@@ -2393,69 +2403,69 @@ const an = /* @__PURE__ */ he(Xt, [["render", on]]), cn = {
|
|
|
2393
2403
|
deep: !0,
|
|
2394
2404
|
immediate: !0
|
|
2395
2405
|
});
|
|
2396
|
-
function
|
|
2397
|
-
t.selectionEnabled ? n("row-select",
|
|
2406
|
+
function p(g, f) {
|
|
2407
|
+
t.selectionEnabled ? n("row-select", f) : (h.value[g].count++, h.value[g].count > 1 ? (h.value[g].reset.stop(), h.value[g].count = 0, n("row-select", f)) : h.value[g].reset.start());
|
|
2398
2408
|
}
|
|
2399
2409
|
return W(() => t.editMode, () => {
|
|
2400
2410
|
t.editMode || (i(), o.value.index = -1);
|
|
2401
|
-
}), (
|
|
2402
|
-
var
|
|
2403
|
-
return
|
|
2404
|
-
e.data && ((
|
|
2405
|
-
key:
|
|
2406
|
-
data:
|
|
2411
|
+
}), (g, f) => {
|
|
2412
|
+
var d;
|
|
2413
|
+
return s(), v("tbody", null, [
|
|
2414
|
+
e.data && ((d = e.data.results) != null && d.length) ? (s(!0), v(P, { key: 0 }, te(e.data.results, (m, y) => (s(), z(mn, {
|
|
2415
|
+
key: y,
|
|
2416
|
+
data: m,
|
|
2407
2417
|
columns: e.columns,
|
|
2408
2418
|
"edit-mode": e.editMode,
|
|
2409
|
-
class:
|
|
2410
|
-
"cl-bg-white":
|
|
2411
|
-
"cl-bg-off-white":
|
|
2419
|
+
class: M({
|
|
2420
|
+
"cl-bg-white": y % 2 === 0,
|
|
2421
|
+
"cl-bg-off-white": y % 2 === 1,
|
|
2412
2422
|
"cl-cursor-pointer hover:cl-bg-link-lighter": e.selectionEnabled && !e.editMode
|
|
2413
2423
|
}),
|
|
2414
|
-
onClick: (
|
|
2415
|
-
e.editMode || y
|
|
2424
|
+
onClick: (I) => {
|
|
2425
|
+
e.editMode || p(y, m);
|
|
2416
2426
|
},
|
|
2417
|
-
onCellFocus: (
|
|
2418
|
-
c(
|
|
2427
|
+
onCellFocus: (I) => {
|
|
2428
|
+
c(y);
|
|
2419
2429
|
},
|
|
2420
|
-
onCellEdit: (
|
|
2421
|
-
|
|
2430
|
+
onCellEdit: (I) => {
|
|
2431
|
+
b(y, I);
|
|
2422
2432
|
},
|
|
2423
|
-
onCellUndo:
|
|
2424
|
-
},
|
|
2425
|
-
te(
|
|
2426
|
-
name:
|
|
2427
|
-
fn:
|
|
2428
|
-
|
|
2433
|
+
onCellUndo: r
|
|
2434
|
+
}, Ve({ _: 2 }, [
|
|
2435
|
+
te(g.$slots, (I, S) => ({
|
|
2436
|
+
name: S,
|
|
2437
|
+
fn: B((J) => [
|
|
2438
|
+
O(g.$slots, S, oe(ie(J)))
|
|
2429
2439
|
])
|
|
2430
2440
|
}))
|
|
2431
|
-
]), 1032, ["data", "columns", "edit-mode", "class", "onClick", "onCellFocus", "onCellEdit"]))), 128)) : e.loading ?
|
|
2432
|
-
|
|
2441
|
+
]), 1032, ["data", "columns", "edit-mode", "class", "onClick", "onCellFocus", "onCellEdit"]))), 128)) : e.loading ? A("", !0) : (s(), v("tr", gn, [
|
|
2442
|
+
u("td", {
|
|
2433
2443
|
colspan: e.columns.length
|
|
2434
2444
|
}, [
|
|
2435
|
-
|
|
2436
|
-
|
|
2437
|
-
e.request.filters.length > 0 ? (
|
|
2438
|
-
|
|
2445
|
+
u("div", vn, [
|
|
2446
|
+
u("strong", hn, x(a(l)("grid.noData")), 1),
|
|
2447
|
+
e.request.filters.length > 0 ? (s(), v("div", pn, [
|
|
2448
|
+
u("div", yn, x(a(l)("grid.noDataFiltersPresent")), 1),
|
|
2439
2449
|
w(we, {
|
|
2440
2450
|
size: "small",
|
|
2441
|
-
onClick:
|
|
2451
|
+
onClick: f[0] || (f[0] = Y((m) => g.$emit("clear-filters"), ["prevent"]))
|
|
2442
2452
|
}, {
|
|
2443
|
-
default:
|
|
2453
|
+
default: B(() => [
|
|
2444
2454
|
le(x(a(l)("grid.clearFilters")), 1)
|
|
2445
2455
|
]),
|
|
2446
2456
|
_: 1
|
|
2447
2457
|
})
|
|
2448
|
-
])) :
|
|
2458
|
+
])) : A("", !0)
|
|
2449
2459
|
])
|
|
2450
|
-
], 8,
|
|
2460
|
+
], 8, bn)
|
|
2451
2461
|
]))
|
|
2452
2462
|
]);
|
|
2453
2463
|
};
|
|
2454
2464
|
}
|
|
2455
|
-
}),
|
|
2465
|
+
}), xn = {
|
|
2456
2466
|
key: 0,
|
|
2457
2467
|
class: "cl-flex cl-flex-wrap cl-justify-end cl-mt-2 cl-w-full"
|
|
2458
|
-
},
|
|
2468
|
+
}, $n = { class: "cl-bg-off-white cl-border cl-border-grey-1 cl-flex cl-items-center cl-mb-2 cl-px-3 cl-rounded cl-shadow-md cl-text-sm cl-w-full lg:cl-w-auto" }, kn = { class: "cl-text-grey-3 cl-w-max" }, Tn = { 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 cl-shadow-md cl-text-sm cl-w-full lg:cl-ml-2 lg:cl-w-auto mb:cl-flex-nowrap" }, Cn = { 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" }, Sn = { class: "cl-flex cl-flex-wrap cl-mb-2 cl-w-full lg:cl-mb-0 lg:cl-mr-2 lg:cl-w-auto" }, En = { class: "cl-text-grey-3 cl-w-full lg:cl-mr-2 lg:cl-w-auto" }, On = { class: "cl-flex cl-flex-wrap cl-text-sm mb:cl-flex-nowrap" }, jn = { class: "cl-pr-2" }, An = ["onClick"], Mn = { 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" }, In = { class: "cl-mb-2 cl-text-grey-3 cl-w-full lg:cl-mb-0 lg:cl-mr-2 lg:cl-w-auto" }, Nn = ["onClick"], Dn = { class: "cl-mb-2 cl-w-full lg:cl-p-2 md:cl-mb-0 md:cl-w-auto" }, qn = { 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" }, Rn = { class: "cl-block lg:cl-inline-block" }, Un = /* @__PURE__ */ D({
|
|
2459
2469
|
__name: "cl-ui-grid-footer",
|
|
2460
2470
|
props: {
|
|
2461
2471
|
request: null,
|
|
@@ -2465,25 +2475,25 @@ const an = /* @__PURE__ */ he(Xt, [["render", on]]), cn = {
|
|
|
2465
2475
|
"update:request": null
|
|
2466
2476
|
},
|
|
2467
2477
|
setup(e, { emit: n }) {
|
|
2468
|
-
const t = e, { n: l, t: o } =
|
|
2469
|
-
var
|
|
2470
|
-
return t.data !== null ? Math.ceil((((
|
|
2471
|
-
}), c =
|
|
2472
|
-
const
|
|
2473
|
-
let
|
|
2474
|
-
if (
|
|
2475
|
-
const
|
|
2476
|
-
|
|
2478
|
+
const t = e, { n: l, t: o } = ae(), i = E(() => {
|
|
2479
|
+
var f;
|
|
2480
|
+
return t.data !== null ? Math.ceil((((f = t.data) == null ? void 0 : f.totalRecords) ?? 0) / t.request.pageSize) : 1;
|
|
2481
|
+
}), c = E(() => {
|
|
2482
|
+
const f = Array.from(Array(i.value + 1).keys());
|
|
2483
|
+
let d = [];
|
|
2484
|
+
if (f.shift(), f.length) {
|
|
2485
|
+
const m = t.request.pageNumber === i.value || t.request.pageNumber === i.value - 1 ? i.value - 3 : t.request.pageNumber - 1;
|
|
2486
|
+
d = f.slice(m, m + 3);
|
|
2477
2487
|
}
|
|
2478
|
-
return
|
|
2488
|
+
return d;
|
|
2479
2489
|
});
|
|
2480
|
-
function
|
|
2481
|
-
const
|
|
2482
|
-
|
|
2490
|
+
function b(f) {
|
|
2491
|
+
const d = me(t.request);
|
|
2492
|
+
d.pageNumber !== f && (d.pageNumber = Math.max(Math.min(Math.trunc(f), i.value), 1), n("update:request", d));
|
|
2483
2493
|
}
|
|
2484
|
-
function
|
|
2485
|
-
const
|
|
2486
|
-
|
|
2494
|
+
function r(f) {
|
|
2495
|
+
const d = parseInt(f == null ? void 0 : f.value) || 1;
|
|
2496
|
+
b(d);
|
|
2487
2497
|
}
|
|
2488
2498
|
const h = [
|
|
2489
2499
|
10,
|
|
@@ -2492,18 +2502,18 @@ const an = /* @__PURE__ */ he(Xt, [["render", on]]), cn = {
|
|
|
2492
2502
|
100,
|
|
2493
2503
|
200
|
|
2494
2504
|
];
|
|
2495
|
-
function
|
|
2496
|
-
const
|
|
2497
|
-
|
|
2498
|
-
}
|
|
2499
|
-
const
|
|
2500
|
-
return (
|
|
2501
|
-
var
|
|
2502
|
-
const
|
|
2503
|
-
return (
|
|
2504
|
-
|
|
2505
|
-
|
|
2506
|
-
w(
|
|
2505
|
+
function p(f) {
|
|
2506
|
+
const d = me(t.request);
|
|
2507
|
+
d.pageSize = f, d.pageNumber = 1, n("update:request", d);
|
|
2508
|
+
}
|
|
2509
|
+
const g = al(r, 750);
|
|
2510
|
+
return (f, d) => {
|
|
2511
|
+
var y, I;
|
|
2512
|
+
const m = K("icon");
|
|
2513
|
+
return (I = (y = e.data) == null ? void 0 : y.results) != null && I.length && e.request ? (s(), v("div", xn, [
|
|
2514
|
+
u("div", $n, [
|
|
2515
|
+
u("span", kn, x(a(o)("grid.jumpToPage")), 1),
|
|
2516
|
+
w(fe, {
|
|
2507
2517
|
"model-value": e.request.pageNumber,
|
|
2508
2518
|
class: "cl-ml-1 cl-mt-0.5 cl-text-sm",
|
|
2509
2519
|
"input-type": "number",
|
|
@@ -2511,62 +2521,62 @@ const an = /* @__PURE__ */ he(Xt, [["render", on]]), cn = {
|
|
|
2511
2521
|
"show-label": !1,
|
|
2512
2522
|
min: "1",
|
|
2513
2523
|
max: a(i),
|
|
2514
|
-
onInput:
|
|
2524
|
+
onInput: d[0] || (d[0] = (S) => a(g)(S.target))
|
|
2515
2525
|
}, null, 8, ["model-value", "max"])
|
|
2516
2526
|
]),
|
|
2517
|
-
|
|
2518
|
-
|
|
2519
|
-
|
|
2520
|
-
|
|
2527
|
+
u("div", Tn, [
|
|
2528
|
+
u("div", Cn, [
|
|
2529
|
+
u("li", Sn, [
|
|
2530
|
+
u("span", En, x(a(o)("grid.page")), 1)
|
|
2521
2531
|
]),
|
|
2522
|
-
|
|
2523
|
-
|
|
2524
|
-
q(
|
|
2532
|
+
u("ul", On, [
|
|
2533
|
+
u("li", jn, x(a(l)(e.request.pageNumber, a(ne).INTEGER)) + " / " + x(a(l)(a(i), a(ne).INTEGER)), 1),
|
|
2534
|
+
q(u("li", {
|
|
2525
2535
|
class: "cl-cursor-pointer cl-mr-1 cl-mt-1 lg:cl-mr-2",
|
|
2526
|
-
onClick:
|
|
2536
|
+
onClick: d[1] || (d[1] = (S) => b(1))
|
|
2527
2537
|
}, [
|
|
2528
|
-
w(
|
|
2538
|
+
w(m, {
|
|
2529
2539
|
icon: "ph:caret-double-left",
|
|
2530
2540
|
size: 14
|
|
2531
2541
|
})
|
|
2532
2542
|
], 512), [
|
|
2533
2543
|
[R, e.request.pageNumber > 1]
|
|
2534
2544
|
]),
|
|
2535
|
-
q(
|
|
2545
|
+
q(u("li", {
|
|
2536
2546
|
class: "cl-cursor-pointer cl-mt-1 lg:cl-mr-2 mr-1",
|
|
2537
|
-
onClick:
|
|
2547
|
+
onClick: d[2] || (d[2] = (S) => b(e.request.pageNumber - 1))
|
|
2538
2548
|
}, [
|
|
2539
|
-
w(
|
|
2549
|
+
w(m, {
|
|
2540
2550
|
icon: "ph:caret-left",
|
|
2541
2551
|
size: 14
|
|
2542
2552
|
})
|
|
2543
2553
|
], 512), [
|
|
2544
2554
|
[R, e.request.pageNumber > 1]
|
|
2545
2555
|
]),
|
|
2546
|
-
(
|
|
2556
|
+
(s(!0), v(P, null, te(a(c), (S, J) => (s(), v("li", {
|
|
2547
2557
|
key: J,
|
|
2548
|
-
class:
|
|
2549
|
-
"cl-text-black cl-font-bold": e.request.pageNumber ===
|
|
2550
|
-
"cl-text-grey-6": e.request.pageNumber !==
|
|
2558
|
+
class: M(["cl-cursor-pointer cl-mr-1 lg:cl-mr-2", {
|
|
2559
|
+
"cl-text-black cl-font-bold": e.request.pageNumber === S,
|
|
2560
|
+
"cl-text-grey-6": e.request.pageNumber !== S
|
|
2551
2561
|
}]),
|
|
2552
|
-
onClick: (V) =>
|
|
2553
|
-
}, x(a(l)(
|
|
2554
|
-
q(
|
|
2562
|
+
onClick: (V) => b(S)
|
|
2563
|
+
}, x(a(l)(S, a(ne).INTEGER)), 11, An))), 128)),
|
|
2564
|
+
q(u("li", {
|
|
2555
2565
|
class: "cl-cursor-pointer cl-mr-1 cl-mt-1 lg:cl-mr-2",
|
|
2556
|
-
onClick:
|
|
2566
|
+
onClick: d[3] || (d[3] = (S) => b(e.request.pageNumber + 1))
|
|
2557
2567
|
}, [
|
|
2558
|
-
w(
|
|
2568
|
+
w(m, {
|
|
2559
2569
|
icon: "ph:caret-right",
|
|
2560
2570
|
size: 14
|
|
2561
2571
|
})
|
|
2562
2572
|
], 512), [
|
|
2563
2573
|
[R, e.request.pageNumber < a(i)]
|
|
2564
2574
|
]),
|
|
2565
|
-
q(
|
|
2575
|
+
q(u("li", {
|
|
2566
2576
|
class: "cl-cursor-pointer cl-mr-1 cl-mt-1 lg:cl-mr-2",
|
|
2567
|
-
onClick:
|
|
2577
|
+
onClick: d[4] || (d[4] = (S) => b(a(i)))
|
|
2568
2578
|
}, [
|
|
2569
|
-
w(
|
|
2579
|
+
w(m, {
|
|
2570
2580
|
icon: "ph:caret-double-right",
|
|
2571
2581
|
size: 14
|
|
2572
2582
|
})
|
|
@@ -2575,29 +2585,38 @@ const an = /* @__PURE__ */ he(Xt, [["render", on]]), cn = {
|
|
|
2575
2585
|
])
|
|
2576
2586
|
])
|
|
2577
2587
|
]),
|
|
2578
|
-
|
|
2579
|
-
|
|
2580
|
-
(
|
|
2588
|
+
u("ul", Mn, [
|
|
2589
|
+
u("li", In, x(a(o)("grid.pageSize")), 1),
|
|
2590
|
+
(s(), v(P, null, te(h, (S, J) => u("li", {
|
|
2581
2591
|
key: J,
|
|
2582
|
-
class:
|
|
2583
|
-
"cl-text-black cl-font-bold": e.request.pageSize ===
|
|
2584
|
-
"cl-text-grey-6": e.request.pageSize !==
|
|
2592
|
+
class: M(["cl-cursor-pointer cl-mr-1 lg:cl-mr-2", {
|
|
2593
|
+
"cl-text-black cl-font-bold": e.request.pageSize === S,
|
|
2594
|
+
"cl-text-grey-6": e.request.pageSize !== S
|
|
2585
2595
|
}]),
|
|
2586
|
-
onClick: (V) =>
|
|
2587
|
-
}, x(a(l)(
|
|
2596
|
+
onClick: (V) => p(S)
|
|
2597
|
+
}, x(a(l)(S, a(ne).INTEGER)), 11, Nn)), 64))
|
|
2588
2598
|
]),
|
|
2589
|
-
|
|
2590
|
-
|
|
2591
|
-
|
|
2599
|
+
u("ul", Dn, [
|
|
2600
|
+
u("li", qn, x(a(o)("grid.totalRecords")), 1),
|
|
2601
|
+
u("li", Rn, x(a(l)(e.data.totalRecords, a(ne).INTEGER)), 1)
|
|
2592
2602
|
])
|
|
2593
2603
|
])
|
|
2594
|
-
])) :
|
|
2604
|
+
])) : A("", !0);
|
|
2595
2605
|
};
|
|
2596
2606
|
}
|
|
2597
|
-
})
|
|
2598
|
-
|
|
2607
|
+
});
|
|
2608
|
+
function Ae(e) {
|
|
2609
|
+
const n = e.type !== "slot" || e.slotType !== void 0 && e.field !== void 0, t = e.sortable ?? !0;
|
|
2610
|
+
return n && t;
|
|
2611
|
+
}
|
|
2612
|
+
function He(e) {
|
|
2613
|
+
const n = e.type !== "slot" || e.slotType !== void 0 && e.field !== void 0, t = e.filterable ?? !0;
|
|
2614
|
+
return n && t;
|
|
2615
|
+
}
|
|
2616
|
+
const Pn = ["colspan"], Bn = { class: "cl-mb-2 cl-text-sm lg:cl-hidden" }, zn = { class: "cl-gap-1 cl-grid cl-grid-cols-2 cl-justify-end cl-mb-2 lg:cl-flex lg:cl-gap-2" }, Ln = {
|
|
2617
|
+
key: 1,
|
|
2599
2618
|
class: "cl-hidden lg:cl-block"
|
|
2600
|
-
},
|
|
2619
|
+
}, Fn = { class: "cl-block cl-col-span-2 lg:cl-hidden" }, Vn = /* @__PURE__ */ D({
|
|
2601
2620
|
__name: "cl-ui-grid-action-row",
|
|
2602
2621
|
props: {
|
|
2603
2622
|
editMode: { type: Boolean },
|
|
@@ -2607,60 +2626,61 @@ const an = /* @__PURE__ */ he(Xt, [["render", on]]), cn = {
|
|
|
2607
2626
|
},
|
|
2608
2627
|
emits: ["update:edit-mode", "update:filterPanelOpen", "clear-filters"],
|
|
2609
2628
|
setup(e) {
|
|
2610
|
-
const
|
|
2611
|
-
return (
|
|
2612
|
-
|
|
2629
|
+
const { t: n } = ae();
|
|
2630
|
+
return (t, l) => (s(), v("tr", null, [
|
|
2631
|
+
u("th", {
|
|
2613
2632
|
colspan: e.columns.length
|
|
2614
2633
|
}, [
|
|
2615
|
-
|
|
2616
|
-
|
|
2634
|
+
u("div", Bn, [
|
|
2635
|
+
u("strong", null, x(a(n)("grid.gridTools")), 1)
|
|
2617
2636
|
]),
|
|
2618
|
-
|
|
2619
|
-
|
|
2637
|
+
u("div", zn, [
|
|
2638
|
+
e.columns.some((o) => o.editable) ? (s(), z(we, {
|
|
2639
|
+
key: 0,
|
|
2620
2640
|
size: "small",
|
|
2621
2641
|
colour: "default",
|
|
2622
|
-
onClick:
|
|
2642
|
+
onClick: l[0] || (l[0] = Y((o) => t.$emit("update:edit-mode", !e.editMode), ["prevent"]))
|
|
2623
2643
|
}, {
|
|
2624
|
-
default:
|
|
2625
|
-
e.editMode ? (
|
|
2626
|
-
le(x(a(
|
|
2627
|
-
], 64)) : (
|
|
2628
|
-
le(x(a(
|
|
2644
|
+
default: B(() => [
|
|
2645
|
+
e.editMode ? (s(), v(P, { key: 0 }, [
|
|
2646
|
+
le(x(a(n)("grid.finishEditing")), 1)
|
|
2647
|
+
], 64)) : (s(), v(P, { key: 1 }, [
|
|
2648
|
+
le(x(a(n)("grid.editData")), 1)
|
|
2629
2649
|
], 64))
|
|
2630
2650
|
]),
|
|
2631
2651
|
_: 1
|
|
2632
|
-
}),
|
|
2633
|
-
e.options.hideViewManager ?
|
|
2634
|
-
|
|
2652
|
+
})) : A("", !0),
|
|
2653
|
+
e.options.hideViewManager ? A("", !0) : (s(), v("div", Ln, [
|
|
2654
|
+
O(t.$slots, "view-manager")
|
|
2635
2655
|
])),
|
|
2636
|
-
a(
|
|
2656
|
+
e.columns.some((o) => a(He)(o) || a(Ae)(o)) ? (s(), v(P, { key: 2 }, [
|
|
2637
2657
|
w(we, {
|
|
2638
2658
|
size: "small",
|
|
2639
|
-
onClick:
|
|
2659
|
+
onClick: l[1] || (l[1] = Y((o) => t.$emit("clear-filters"), ["prevent"]))
|
|
2640
2660
|
}, {
|
|
2641
|
-
default:
|
|
2642
|
-
le(x(a(
|
|
2661
|
+
default: B(() => [
|
|
2662
|
+
le(x(a(n)("grid.clearFilters")), 1)
|
|
2643
2663
|
]),
|
|
2644
2664
|
_: 1
|
|
2645
2665
|
}),
|
|
2646
|
-
|
|
2666
|
+
u("div", Fn, [
|
|
2647
2667
|
w(we, {
|
|
2648
2668
|
class: "cl-w-full",
|
|
2649
2669
|
size: "small",
|
|
2650
|
-
onClick:
|
|
2670
|
+
onClick: l[2] || (l[2] = Y((o) => t.$emit("update:filterPanelOpen", !e.filterPanelOpen), ["prevent"]))
|
|
2651
2671
|
}, {
|
|
2652
|
-
default:
|
|
2653
|
-
le(x(a(
|
|
2672
|
+
default: B(() => [
|
|
2673
|
+
le(x(a(n)("grid.modifyFilters")), 1)
|
|
2654
2674
|
]),
|
|
2655
2675
|
_: 1
|
|
2656
2676
|
})
|
|
2657
2677
|
])
|
|
2658
|
-
], 64)) :
|
|
2678
|
+
], 64)) : A("", !0)
|
|
2659
2679
|
])
|
|
2660
|
-
], 8,
|
|
2680
|
+
], 8, Pn)
|
|
2661
2681
|
]));
|
|
2662
2682
|
}
|
|
2663
|
-
}),
|
|
2683
|
+
}), Gn = [
|
|
2664
2684
|
"string",
|
|
2665
2685
|
"boolean",
|
|
2666
2686
|
"number",
|
|
@@ -2668,23 +2688,23 @@ const an = /* @__PURE__ */ he(Xt, [["render", on]]), cn = {
|
|
|
2668
2688
|
"datetime",
|
|
2669
2689
|
"slot"
|
|
2670
2690
|
];
|
|
2671
|
-
function
|
|
2691
|
+
function ul(e) {
|
|
2672
2692
|
return typeof e.caption == "string" && typeof e.name == "string" && typeof e.type == "string";
|
|
2673
2693
|
}
|
|
2674
|
-
function
|
|
2694
|
+
function Hn(e) {
|
|
2675
2695
|
let n = Array.isArray(e);
|
|
2676
2696
|
if (n) {
|
|
2677
2697
|
for (const t of e)
|
|
2678
|
-
if (!
|
|
2698
|
+
if (!ul(t)) {
|
|
2679
2699
|
n = !1;
|
|
2680
2700
|
break;
|
|
2681
2701
|
}
|
|
2682
2702
|
}
|
|
2683
2703
|
return n;
|
|
2684
2704
|
}
|
|
2685
|
-
const
|
|
2705
|
+
const Wn = ["ellipsis"];
|
|
2686
2706
|
var ye = /* @__PURE__ */ ((e) => (e[e.CONTAINS = 0] = "CONTAINS", e[e.NOT_CONTAINS = 1] = "NOT_CONTAINS", e[e.EQUAL = 2] = "EQUAL", e[e.NOT_EQUAL = 3] = "NOT_EQUAL", e[e.STARTS_WITH = 4] = "STARTS_WITH", e[e.ENDS_WITH = 5] = "ENDS_WITH", e[e.GREATER_THAN = 6] = "GREATER_THAN", e[e.LESS_THAN = 7] = "LESS_THAN", e[e.EQUAL_OR_GREATER_THAN = 8] = "EQUAL_OR_GREATER_THAN", e[e.EQUAL_OR_LESS_THAN = 9] = "EQUAL_OR_LESS_THAN", e))(ye || {});
|
|
2687
|
-
const
|
|
2707
|
+
const Jn = [
|
|
2688
2708
|
"equal",
|
|
2689
2709
|
"notequal",
|
|
2690
2710
|
"contains",
|
|
@@ -2696,24 +2716,24 @@ const Hn = [
|
|
|
2696
2716
|
"equalorlessthan",
|
|
2697
2717
|
"equalorgreaterthan"
|
|
2698
2718
|
];
|
|
2699
|
-
function
|
|
2719
|
+
function Kn(e) {
|
|
2700
2720
|
return typeof e.filterOnColumn == "string" && typeof e.filterOperation == "number" && typeof e.filterValue == "string";
|
|
2701
2721
|
}
|
|
2702
|
-
function
|
|
2722
|
+
function Zn(e) {
|
|
2703
2723
|
return e === null || typeof e.sortByAscending == "boolean" && typeof e.sortOnColumn == "string";
|
|
2704
2724
|
}
|
|
2705
|
-
function
|
|
2706
|
-
let n = typeof e.filters == "object" && Array.isArray(e.filters) && typeof e.pageNumber == "number" && typeof e.pageSize == "number" && typeof e.sort == "object" &&
|
|
2725
|
+
function Qn(e) {
|
|
2726
|
+
let n = typeof e.filters == "object" && Array.isArray(e.filters) && typeof e.pageNumber == "number" && typeof e.pageSize == "number" && typeof e.sort == "object" && Zn(e.sort);
|
|
2707
2727
|
if (n) {
|
|
2708
2728
|
for (const t of e.filters)
|
|
2709
|
-
if (!
|
|
2729
|
+
if (!Kn(t)) {
|
|
2710
2730
|
n = !1;
|
|
2711
2731
|
break;
|
|
2712
2732
|
}
|
|
2713
2733
|
}
|
|
2714
2734
|
return n;
|
|
2715
2735
|
}
|
|
2716
|
-
function
|
|
2736
|
+
function Yn(e, n) {
|
|
2717
2737
|
let t = typeof e.results == "object" && Array.isArray(e.results) && typeof e.totalRecords == "number";
|
|
2718
2738
|
if (t) {
|
|
2719
2739
|
for (const l of e.results)
|
|
@@ -2724,7 +2744,7 @@ function Zn(e, n) {
|
|
|
2724
2744
|
}
|
|
2725
2745
|
return t;
|
|
2726
2746
|
}
|
|
2727
|
-
const
|
|
2747
|
+
const Xn = {
|
|
2728
2748
|
method: "equal",
|
|
2729
2749
|
icon: "mdi:equal",
|
|
2730
2750
|
description: "Equals",
|
|
@@ -2734,12 +2754,12 @@ const Qn = {
|
|
|
2734
2754
|
"boolean",
|
|
2735
2755
|
"date"
|
|
2736
2756
|
]
|
|
2737
|
-
},
|
|
2757
|
+
}, _n = {
|
|
2738
2758
|
method: "contains",
|
|
2739
2759
|
icon: "mdi:format-letter-matches",
|
|
2740
2760
|
description: "Contains",
|
|
2741
2761
|
allowedTypes: ["string"]
|
|
2742
|
-
},
|
|
2762
|
+
}, eo = {
|
|
2743
2763
|
method: "lessthan",
|
|
2744
2764
|
icon: "mdi:less-than",
|
|
2745
2765
|
description: "Less than",
|
|
@@ -2748,8 +2768,8 @@ const Qn = {
|
|
|
2748
2768
|
"date",
|
|
2749
2769
|
"datetime"
|
|
2750
2770
|
]
|
|
2751
|
-
},
|
|
2752
|
-
|
|
2771
|
+
}, tl = [
|
|
2772
|
+
_n,
|
|
2753
2773
|
{
|
|
2754
2774
|
method: "notcontains",
|
|
2755
2775
|
icon: "mdi:format-letter-spacing-variant",
|
|
@@ -2768,7 +2788,7 @@ const Qn = {
|
|
|
2768
2788
|
description: "Ends with",
|
|
2769
2789
|
allowedTypes: ["string"]
|
|
2770
2790
|
},
|
|
2771
|
-
|
|
2791
|
+
Xn,
|
|
2772
2792
|
{
|
|
2773
2793
|
method: "notequal",
|
|
2774
2794
|
icon: "mdi:not-equal",
|
|
@@ -2780,7 +2800,7 @@ const Qn = {
|
|
|
2780
2800
|
"date"
|
|
2781
2801
|
]
|
|
2782
2802
|
},
|
|
2783
|
-
|
|
2803
|
+
eo,
|
|
2784
2804
|
{
|
|
2785
2805
|
method: "greaterthan",
|
|
2786
2806
|
icon: "mdi:greater-than",
|
|
@@ -2811,7 +2831,7 @@ const Qn = {
|
|
|
2811
2831
|
"datetime"
|
|
2812
2832
|
]
|
|
2813
2833
|
}
|
|
2814
|
-
],
|
|
2834
|
+
], lo = { class: "cl-group cl-inline cl-relative cl-w-auto" }, to = { 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" }, no = { class: "cl-p-2 cl-select-none" }, oo = ["onClick"], ao = /* @__PURE__ */ D({
|
|
2815
2835
|
__name: "cl-ui-grid-method-selector",
|
|
2816
2836
|
props: {
|
|
2817
2837
|
filter: null,
|
|
@@ -2821,78 +2841,75 @@ const Qn = {
|
|
|
2821
2841
|
},
|
|
2822
2842
|
emits: ["update:filter"],
|
|
2823
2843
|
setup(e, { emit: n }) {
|
|
2824
|
-
const t = e, { t: l } =
|
|
2825
|
-
let
|
|
2826
|
-
return t.column.type !== "slot" ?
|
|
2827
|
-
|
|
2828
|
-
}),
|
|
2829
|
-
}), i =
|
|
2830
|
-
var
|
|
2831
|
-
let
|
|
2832
|
-
return typeof
|
|
2833
|
-
var
|
|
2834
|
-
return h.method.toLowerCase() === ((
|
|
2844
|
+
const t = e, { t: l } = ae(), o = E(() => {
|
|
2845
|
+
let b = [];
|
|
2846
|
+
return t.column.type !== "slot" ? b = tl.filter((r) => r.allowedTypes.includes(t.column.type)) : typeof t.column.slotType < "u" && typeof t.column.field < "u" && (b = tl.filter((r) => r.allowedTypes.includes(t.column.slotType))), b.forEach((r) => {
|
|
2847
|
+
r.description = l(`grid.${r.method}`);
|
|
2848
|
+
}), b;
|
|
2849
|
+
}), i = E(() => {
|
|
2850
|
+
var r;
|
|
2851
|
+
let b = (r = t.filter) == null ? void 0 : r.filterMethod;
|
|
2852
|
+
return typeof b > "u" && (b = ye[t.defaultOperation]), o.value.find((h) => {
|
|
2853
|
+
var p;
|
|
2854
|
+
return h.method.toLowerCase() === ((p = b == null ? void 0 : b.removeNonAlphanumeric()) == null ? void 0 : p.toLowerCase());
|
|
2835
2855
|
});
|
|
2836
2856
|
});
|
|
2837
|
-
function c(
|
|
2838
|
-
let
|
|
2857
|
+
function c(b) {
|
|
2858
|
+
let r;
|
|
2839
2859
|
if (t.filter)
|
|
2840
|
-
|
|
2860
|
+
r = me(t.filter), r.filterOperation = ye[b.toUpperCase()], r.filterMethod = b.toUpperCase();
|
|
2841
2861
|
else if (typeof t.column.field < "u")
|
|
2842
|
-
|
|
2862
|
+
r = {
|
|
2843
2863
|
filterOnColumn: t.column.field,
|
|
2844
|
-
filterMethod:
|
|
2845
|
-
filterOperation: ye[
|
|
2864
|
+
filterMethod: b.toUpperCase(),
|
|
2865
|
+
filterOperation: ye[b.toUpperCase()],
|
|
2846
2866
|
filterValue: ""
|
|
2847
2867
|
};
|
|
2848
2868
|
else
|
|
2849
2869
|
return;
|
|
2850
|
-
n("update:filter",
|
|
2870
|
+
n("update:filter", r);
|
|
2851
2871
|
}
|
|
2852
|
-
return (
|
|
2853
|
-
var
|
|
2872
|
+
return (b, r) => {
|
|
2873
|
+
var p;
|
|
2854
2874
|
const h = K("icon");
|
|
2855
|
-
return
|
|
2856
|
-
|
|
2875
|
+
return s(), v("div", lo, [
|
|
2876
|
+
u("div", to, [
|
|
2857
2877
|
w(h, {
|
|
2858
|
-
icon: (
|
|
2878
|
+
icon: (p = a(i)) == null ? void 0 : p.icon,
|
|
2859
2879
|
class: "cl-text-grey-4 cl-text-lg"
|
|
2860
2880
|
}, null, 8, ["icon"])
|
|
2861
2881
|
]),
|
|
2862
|
-
|
|
2863
|
-
class:
|
|
2882
|
+
u("div", {
|
|
2883
|
+
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-10 cl-z-10 group-hover:cl-flex group-hover:cl-h-auto group-hover:cl-w-52", {
|
|
2864
2884
|
"cl-left-0": e.firstHalf,
|
|
2865
2885
|
"cl--left-44": !e.firstHalf
|
|
2866
2886
|
}])
|
|
2867
2887
|
}, [
|
|
2868
|
-
|
|
2869
|
-
(
|
|
2870
|
-
var
|
|
2871
|
-
return
|
|
2872
|
-
key:
|
|
2873
|
-
class:
|
|
2874
|
-
"cl-bg-off-white":
|
|
2888
|
+
u("strong", no, x(a(l)("grid.availableMethods")), 1),
|
|
2889
|
+
(s(!0), v(P, null, te(a(o), (g, f) => {
|
|
2890
|
+
var d;
|
|
2891
|
+
return s(), v("span", {
|
|
2892
|
+
key: f,
|
|
2893
|
+
class: M(["cl-cursor-pointer cl-px-4 cl-py-1 cl-transition-colors cl-w-full hover:cl-bg-grey-0", {
|
|
2894
|
+
"cl-bg-off-white": g.method === ((d = a(i)) == null ? void 0 : d.method)
|
|
2875
2895
|
}]),
|
|
2876
|
-
onClick: Y((
|
|
2896
|
+
onClick: Y((m) => c(g.method), ["prevent"])
|
|
2877
2897
|
}, [
|
|
2878
|
-
le(x(
|
|
2898
|
+
le(x(g.description) + " ", 1),
|
|
2879
2899
|
w(h, {
|
|
2880
|
-
icon:
|
|
2900
|
+
icon: g.icon,
|
|
2881
2901
|
class: "cl-float-right cl-text-grey-4 cl-text-sm"
|
|
2882
2902
|
}, null, 8, ["icon"])
|
|
2883
|
-
], 10,
|
|
2903
|
+
], 10, oo);
|
|
2884
2904
|
}), 128))
|
|
2885
2905
|
], 2)
|
|
2886
2906
|
]);
|
|
2887
2907
|
};
|
|
2888
2908
|
}
|
|
2889
|
-
}),
|
|
2909
|
+
}), co = {
|
|
2890
2910
|
key: 0,
|
|
2891
2911
|
class: "cl-border cl-border-grey-2 cl-flex cl-h-[2rem] cl-overflow-hidden cl-rounded-md lg:cl-h-[2.6rem] lg:cl-overflow-visible"
|
|
2892
|
-
},
|
|
2893
|
-
key: 1,
|
|
2894
|
-
class: "cl-flex cl-w-full"
|
|
2895
|
-
}, ro = /* @__PURE__ */ D({
|
|
2912
|
+
}, so = /* @__PURE__ */ u("option", { value: void 0 }, null, -1), io = ["selected"], ro = ["selected"], uo = /* @__PURE__ */ D({
|
|
2896
2913
|
__name: "cl-ui-grid-filter",
|
|
2897
2914
|
props: {
|
|
2898
2915
|
filter: null,
|
|
@@ -2901,29 +2918,26 @@ const Qn = {
|
|
|
2901
2918
|
},
|
|
2902
2919
|
emits: ["update:filter"],
|
|
2903
2920
|
setup(e, { emit: n }) {
|
|
2904
|
-
const t = e, { locale: l, t: o } =
|
|
2921
|
+
const t = e, { locale: l, t: o } = ae();
|
|
2905
2922
|
function i() {
|
|
2906
2923
|
return t.column.type === "string" || t.column.slotType === "string" ? ye.CONTAINS : t.column.type === "datetime" || t.column.slotType === "datetime" ? ye.LESS_THAN : ye.EQUAL;
|
|
2907
2924
|
}
|
|
2908
|
-
const c =
|
|
2925
|
+
const c = E({
|
|
2909
2926
|
get: () => t.filter,
|
|
2910
|
-
set: (
|
|
2911
|
-
}),
|
|
2912
|
-
var
|
|
2913
|
-
return ((
|
|
2914
|
-
}),
|
|
2915
|
-
|
|
2916
|
-
return s && p;
|
|
2917
|
-
});
|
|
2918
|
-
function m(s, p) {
|
|
2927
|
+
set: (m) => n("update:filter", m)
|
|
2928
|
+
}), b = E(() => {
|
|
2929
|
+
var m;
|
|
2930
|
+
return ((m = c.value) == null ? void 0 : m.filterValue) ?? "";
|
|
2931
|
+
}), r = E(() => b.value !== "" ? new Date(b.value) : null), h = E(() => Intl.NumberFormat(l.value).format(1.1).replace(/[0-9]+/g, "")), p = E(() => He(t.column));
|
|
2932
|
+
function g(m, y) {
|
|
2919
2933
|
var V;
|
|
2920
|
-
let
|
|
2921
|
-
const J = ((
|
|
2934
|
+
let I, S = !1;
|
|
2935
|
+
const J = ((m == null ? void 0 : m.value) ?? y).trim();
|
|
2922
2936
|
if (c.value)
|
|
2923
|
-
|
|
2937
|
+
S = ((V = c.value) == null ? void 0 : V.filterValue) === J, I = me(c.value), I.filterValue = J;
|
|
2924
2938
|
else if (J !== "" && typeof t.column.field < "u") {
|
|
2925
2939
|
const ce = i();
|
|
2926
|
-
|
|
2940
|
+
I = {
|
|
2927
2941
|
filterOnColumn: t.column.field,
|
|
2928
2942
|
filterMethod: ye[ce],
|
|
2929
2943
|
filterOperation: ce,
|
|
@@ -2931,67 +2945,64 @@ const Qn = {
|
|
|
2931
2945
|
};
|
|
2932
2946
|
} else
|
|
2933
2947
|
return;
|
|
2934
|
-
|
|
2948
|
+
S === !1 && (c.value = I);
|
|
2935
2949
|
}
|
|
2936
|
-
function
|
|
2937
|
-
let
|
|
2938
|
-
t.column.format === ne.INTEGER ? (typeof
|
|
2950
|
+
function f(m) {
|
|
2951
|
+
let y = "";
|
|
2952
|
+
t.column.format === ne.INTEGER ? (typeof m == "string" && (m = parseInt(m)), y = Math.round(m).toString()) : (typeof m == "string" && (m = parseFloat(m.replace(h.value, "."))), y = m.toString()), typeof y == "number" && isNaN(y) && (y = ""), g(null, y.toString());
|
|
2939
2953
|
}
|
|
2940
|
-
function
|
|
2941
|
-
|
|
2954
|
+
function d(m) {
|
|
2955
|
+
g(null, (m == null ? void 0 : m.toISOString()) ?? "");
|
|
2942
2956
|
}
|
|
2943
|
-
return (
|
|
2944
|
-
w(
|
|
2957
|
+
return (m, y) => a(p) ? (s(), v("div", co, [
|
|
2958
|
+
w(ao, {
|
|
2945
2959
|
filter: a(c),
|
|
2946
|
-
"onUpdate:filter":
|
|
2960
|
+
"onUpdate:filter": y[0] || (y[0] = (I) => be(c) ? c.value = I : null),
|
|
2947
2961
|
column: e.column,
|
|
2948
2962
|
"default-operation": i(),
|
|
2949
2963
|
"first-half": e.firstHalf
|
|
2950
2964
|
}, null, 8, ["filter", "column", "default-operation", "first-half"]),
|
|
2951
|
-
e.column.type === "boolean" || e.column.slotType === "boolean" ? (
|
|
2965
|
+
e.column.type === "boolean" || e.column.slotType === "boolean" ? (s(), v("select", {
|
|
2952
2966
|
key: 0,
|
|
2953
2967
|
class: "cl-border-none cl-w-full",
|
|
2954
|
-
onChange:
|
|
2968
|
+
onChange: y[1] || (y[1] = (I) => g(I.target))
|
|
2955
2969
|
}, [
|
|
2956
|
-
|
|
2957
|
-
|
|
2970
|
+
so,
|
|
2971
|
+
u("option", {
|
|
2958
2972
|
value: "true",
|
|
2959
|
-
selected: a(
|
|
2960
|
-
}, x(a(o)("grid.true")), 9,
|
|
2961
|
-
|
|
2973
|
+
selected: a(b) === "true"
|
|
2974
|
+
}, x(a(o)("grid.true")), 9, io),
|
|
2975
|
+
u("option", {
|
|
2962
2976
|
value: "false",
|
|
2963
|
-
selected: a(
|
|
2964
|
-
}, x(a(o)("grid.false")), 9,
|
|
2965
|
-
], 32)) : e.column.type === "date" || e.column.type === "datetime" || e.column.slotType === "date" || e.column.slotType === "datetime" ? (
|
|
2977
|
+
selected: a(b) === "false"
|
|
2978
|
+
}, x(a(o)("grid.false")), 9, ro)
|
|
2979
|
+
], 32)) : e.column.type === "date" || e.column.type === "datetime" || e.column.slotType === "date" || e.column.slotType === "datetime" ? (s(), z(fe, {
|
|
2966
2980
|
key: 1,
|
|
2967
|
-
"model-value": a(
|
|
2981
|
+
"model-value": a(r),
|
|
2968
2982
|
class: "!cl-h-[2rem] !cl-text-xs cl-border-none cl-mb-0 cl-w-full lg:!cl-h-[2.5rem] lg:!cl-text-base",
|
|
2969
2983
|
min: "1900-01-01",
|
|
2970
2984
|
max: "2999-12-31T23:59",
|
|
2971
2985
|
label: e.column.caption,
|
|
2972
2986
|
"show-label": !1,
|
|
2973
2987
|
"input-type": e.column.type,
|
|
2974
|
-
"onUpdate:modelValue":
|
|
2975
|
-
}, null, 8, ["model-value", "label", "input-type"])) : e.column.type === "number" || e.column.slotType === "number" ? (
|
|
2988
|
+
"onUpdate:modelValue": y[2] || (y[2] = (I) => d(I))
|
|
2989
|
+
}, null, 8, ["model-value", "label", "input-type"])) : e.column.type === "number" || e.column.slotType === "number" ? (s(), z(fe, {
|
|
2976
2990
|
key: 2,
|
|
2977
|
-
"model-value": a(
|
|
2991
|
+
"model-value": a(b),
|
|
2978
2992
|
class: "!cl-h-[2rem] !cl-text-xs cl-border-none cl-mb-0 cl-w-full lg:!cl-h-[2.5rem] lg:!cl-text-base",
|
|
2979
2993
|
"input-type": "number",
|
|
2980
2994
|
"show-arrows": !1,
|
|
2981
|
-
onInput:
|
|
2982
|
-
}, null, 8, ["model-value"])) : e.column.type !== "slot" || e.column.slotType === "string" ? (
|
|
2995
|
+
onInput: y[3] || (y[3] = (I, S) => f(S))
|
|
2996
|
+
}, null, 8, ["model-value"])) : e.column.type !== "slot" || e.column.slotType === "string" ? (s(), z(fe, {
|
|
2983
2997
|
key: 3,
|
|
2984
|
-
"model-value": a(
|
|
2998
|
+
"model-value": a(b),
|
|
2985
2999
|
class: "!cl-h-[2rem] !cl-text-xs cl-border-none cl-mb-0 cl-w-full lg:!cl-h-[2.5rem] lg:!cl-text-base",
|
|
2986
3000
|
"input-type": "text",
|
|
2987
|
-
onInput:
|
|
2988
|
-
}, null, 8, ["model-value"])) :
|
|
2989
|
-
])) : (
|
|
3001
|
+
onInput: y[4] || (y[4] = (I, S) => g(null, S))
|
|
3002
|
+
}, null, 8, ["model-value"])) : A("", !0)
|
|
3003
|
+
])) : A("", !0);
|
|
2990
3004
|
}
|
|
2991
|
-
}),
|
|
2992
|
-
key: 1,
|
|
2993
|
-
class: "lg:cl-hidden"
|
|
2994
|
-
}, yo = /* @__PURE__ */ D({
|
|
3005
|
+
}), fo = { class: "-cl-top-1 cl-bg-white cl-shadow-md cl-sticky cl-z-10 lg:cl-bg-transparent lg:cl-relative lg:cl-shadow-none" }, mo = { class: "cl-hidden lg:cl-table-row" }, go = ["onClick"], bo = { class: "cl-flex cl-justify-end cl-w-full lg:cl-hidden" }, vo = { class: "cl-col-span-2 lg:cl-hidden" }, ho = ["onClick"], po = { class: "cl-font-normal cl-mr-1" }, yo = /* @__PURE__ */ D({
|
|
2995
3006
|
__name: "cl-ui-grid-header",
|
|
2996
3007
|
props: {
|
|
2997
3008
|
request: null,
|
|
@@ -3001,126 +3012,127 @@ const Qn = {
|
|
|
3001
3012
|
},
|
|
3002
3013
|
emits: ["update:request", "update:edit-mode", "clear-filters"],
|
|
3003
3014
|
setup(e, { emit: n }) {
|
|
3004
|
-
const t = e, { t: l } =
|
|
3015
|
+
const t = e, { t: l } = ae(), o = C(!1), i = E({
|
|
3005
3016
|
get: () => t.request,
|
|
3006
|
-
set: (
|
|
3017
|
+
set: (p) => n("update:request", p)
|
|
3007
3018
|
});
|
|
3008
|
-
function c(
|
|
3009
|
-
var
|
|
3010
|
-
return ((
|
|
3011
|
-
}
|
|
3012
|
-
function
|
|
3013
|
-
if (typeof
|
|
3014
|
-
const
|
|
3015
|
-
|
|
3016
|
-
sortOnColumn:
|
|
3019
|
+
function c(p, g) {
|
|
3020
|
+
var f, d;
|
|
3021
|
+
return ((f = i.value.sort) == null ? void 0 : f.sortOnColumn) === p.field && ((d = i.value.sort) == null ? void 0 : d.sortByAscending) === g;
|
|
3022
|
+
}
|
|
3023
|
+
function b(p) {
|
|
3024
|
+
if (typeof p < "u") {
|
|
3025
|
+
const g = me(t.request);
|
|
3026
|
+
g.sort === null || g.sort.sortOnColumn !== p ? g.sort = {
|
|
3027
|
+
sortOnColumn: p,
|
|
3017
3028
|
sortByAscending: !0
|
|
3018
|
-
} :
|
|
3029
|
+
} : g.sort.sortOnColumn === p && g.sort.sortByAscending === !0 ? g.sort.sortByAscending = !1 : g.sort = null, i.value = g;
|
|
3019
3030
|
}
|
|
3020
3031
|
}
|
|
3021
|
-
function
|
|
3022
|
-
if (
|
|
3023
|
-
const
|
|
3024
|
-
|
|
3032
|
+
function r(p) {
|
|
3033
|
+
if (p) {
|
|
3034
|
+
const g = me(i.value), f = g.filters.findIndex((d) => d.filterOnColumn === p.filterOnColumn);
|
|
3035
|
+
f > -1 ? g.filters[f] = p : g.filters.push(p), g.pageNumber = 1, i.value = g;
|
|
3025
3036
|
}
|
|
3026
3037
|
}
|
|
3027
|
-
const h =
|
|
3038
|
+
const h = E({
|
|
3028
3039
|
get: () => t.editMode,
|
|
3029
|
-
set: (
|
|
3040
|
+
set: (p) => n("update:edit-mode", p)
|
|
3030
3041
|
});
|
|
3031
|
-
|
|
3032
|
-
const
|
|
3033
|
-
return
|
|
3034
|
-
|
|
3035
|
-
return (m, r) => {
|
|
3036
|
-
const b = K("icon");
|
|
3037
|
-
return u(), v("thead", uo, [
|
|
3038
|
-
w(Ln, {
|
|
3042
|
+
return (p, g) => {
|
|
3043
|
+
const f = K("icon");
|
|
3044
|
+
return s(), v("thead", fo, [
|
|
3045
|
+
w(Vn, {
|
|
3039
3046
|
"edit-mode": a(h),
|
|
3040
|
-
"onUpdate:edit-mode":
|
|
3047
|
+
"onUpdate:edit-mode": g[0] || (g[0] = (d) => be(h) ? h.value = d : null),
|
|
3041
3048
|
"filter-panel-open": o.value,
|
|
3042
|
-
"onUpdate:filter-panel-open":
|
|
3049
|
+
"onUpdate:filter-panel-open": g[1] || (g[1] = (d) => o.value = d),
|
|
3043
3050
|
columns: e.columns,
|
|
3044
3051
|
options: e.options,
|
|
3045
|
-
onClearFilters:
|
|
3052
|
+
onClearFilters: g[2] || (g[2] = (d) => p.$emit("clear-filters"))
|
|
3046
3053
|
}, {
|
|
3047
|
-
"view-manager":
|
|
3048
|
-
|
|
3054
|
+
"view-manager": B(() => [
|
|
3055
|
+
O(p.$slots, "view-manager")
|
|
3049
3056
|
]),
|
|
3050
3057
|
_: 3
|
|
3051
3058
|
}, 8, ["edit-mode", "filter-panel-open", "columns", "options"]),
|
|
3052
|
-
|
|
3053
|
-
(
|
|
3054
|
-
key:
|
|
3055
|
-
class: "cl-
|
|
3056
|
-
|
|
3059
|
+
u("tr", mo, [
|
|
3060
|
+
(s(!0), v(P, null, te(e.columns, (d, m) => (s(), v("th", {
|
|
3061
|
+
key: m,
|
|
3062
|
+
class: M(["cl-text-grey-3 cl-text-sm", {
|
|
3063
|
+
"cl-cursor-pointer": a(Ae)(d)
|
|
3064
|
+
}]),
|
|
3065
|
+
onClick: (y) => a(Ae)(d) ? b(d.field) : () => {
|
|
3066
|
+
}
|
|
3057
3067
|
}, [
|
|
3058
|
-
le(x(
|
|
3059
|
-
q(w(
|
|
3068
|
+
le(x(d.caption) + " ", 1),
|
|
3069
|
+
q(w(f, {
|
|
3060
3070
|
class: "cl-inline-block",
|
|
3061
3071
|
icon: "ph:caret-up"
|
|
3062
3072
|
}, null, 512), [
|
|
3063
|
-
[R, c(
|
|
3073
|
+
[R, c(d, !0)]
|
|
3064
3074
|
]),
|
|
3065
|
-
q(w(
|
|
3075
|
+
q(w(f, {
|
|
3066
3076
|
class: "cl-inline-block",
|
|
3067
3077
|
icon: "ph:caret-down"
|
|
3068
3078
|
}, null, 512), [
|
|
3069
|
-
[R, c(
|
|
3079
|
+
[R, c(d, !1)]
|
|
3070
3080
|
])
|
|
3071
|
-
],
|
|
3081
|
+
], 10, go))), 128))
|
|
3072
3082
|
]),
|
|
3073
|
-
|
|
3074
|
-
class:
|
|
3083
|
+
u("tr", {
|
|
3084
|
+
class: M(["cl-flex cl-flex-wrap lg:cl-table-row", {
|
|
3075
3085
|
"cl-hidden lg:cl-table-row": !o.value
|
|
3076
3086
|
}])
|
|
3077
3087
|
}, [
|
|
3078
|
-
|
|
3079
|
-
w(
|
|
3088
|
+
u("div", bo, [
|
|
3089
|
+
w(f, {
|
|
3080
3090
|
class: "cl-text-grey-4",
|
|
3081
3091
|
icon: "ph:x",
|
|
3082
3092
|
size: 16,
|
|
3083
|
-
onClick:
|
|
3093
|
+
onClick: g[3] || (g[3] = Y((d) => o.value = !1, ["prevent"]))
|
|
3084
3094
|
})
|
|
3085
3095
|
]),
|
|
3086
|
-
(
|
|
3087
|
-
key:
|
|
3088
|
-
class: "cl-grid cl-grid-cols-4 cl-py-1 cl-text-xs cl-w-full lg:cl-table-cell lg:cl-w-auto"
|
|
3096
|
+
(s(!0), v(P, null, te(e.columns, (d, m) => (s(), v("th", {
|
|
3097
|
+
key: m,
|
|
3098
|
+
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", {
|
|
3099
|
+
"cl-hidden lg:cl-table-cell": !a(He)(d)
|
|
3100
|
+
}])
|
|
3089
3101
|
}, [
|
|
3090
|
-
|
|
3091
|
-
|
|
3102
|
+
u("div", vo, x(d.caption), 1),
|
|
3103
|
+
a(Ae)(d) ? (s(), v("div", {
|
|
3092
3104
|
key: 0,
|
|
3093
3105
|
class: "cl-col-span-2 cl-gap-1 cl-span lg:cl-hidden",
|
|
3094
|
-
onClick: (
|
|
3106
|
+
onClick: (y) => b(d.field)
|
|
3095
3107
|
}, [
|
|
3096
|
-
|
|
3097
|
-
c(
|
|
3108
|
+
u("span", po, x(a(l)("grid.sortBy")), 1),
|
|
3109
|
+
c(d, !0) ? (s(), z(f, {
|
|
3098
3110
|
key: 0,
|
|
3099
3111
|
class: "cl-cursor-pointer cl-inline-block",
|
|
3100
3112
|
icon: "ph:caret-up"
|
|
3101
|
-
})) : c(
|
|
3113
|
+
})) : c(d, !1) ? (s(), z(f, {
|
|
3102
3114
|
key: 1,
|
|
3103
3115
|
class: "cl-cursor-pointer cl-inline-block",
|
|
3104
3116
|
icon: "ph:caret-down"
|
|
3105
|
-
})) : (
|
|
3117
|
+
})) : (s(), z(f, {
|
|
3106
3118
|
key: 2,
|
|
3107
3119
|
class: "cl-cursor-pointer cl-inline-block",
|
|
3108
3120
|
icon: "ph:minus"
|
|
3109
3121
|
}))
|
|
3110
|
-
], 8,
|
|
3111
|
-
w(
|
|
3122
|
+
], 8, ho)) : A("", !0),
|
|
3123
|
+
w(uo, {
|
|
3112
3124
|
class: "cl-col-span-4",
|
|
3113
|
-
filter: a(i).filters.find((
|
|
3114
|
-
column:
|
|
3115
|
-
"first-half":
|
|
3116
|
-
"onUpdate:filter":
|
|
3125
|
+
filter: a(i).filters.find((y) => y.filterOnColumn === d.field),
|
|
3126
|
+
column: d,
|
|
3127
|
+
"first-half": m <= e.columns.length / 2,
|
|
3128
|
+
"onUpdate:filter": r
|
|
3117
3129
|
}, null, 8, ["filter", "column", "first-half"])
|
|
3118
|
-
]))), 128))
|
|
3130
|
+
], 2))), 128))
|
|
3119
3131
|
], 2)
|
|
3120
3132
|
]);
|
|
3121
3133
|
};
|
|
3122
3134
|
}
|
|
3123
|
-
}), wo = { class: "cl-fixed cl-flex cl-h-full cl-justify-end cl-right-0 cl-shadow-lg cl-top-0 cl-z-50" }, xo = { 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" }, $o = { class: "cl-mb-4 cl-text-2xl cl-text-off-white" }, ko = { class: "cl-border-grey-3 cl-border-t cl-flex cl-flex-wrap cl-text-sm cl-w-full" }, To = { class: "cl-border-b cl-border-grey-2 cl-flex cl-py-2 cl-text-sm cl-w-full" }, Co = { class: "cl-flex-1 cl-py-2" }, So = { class: "cl-py-2 cl-w-1/4" },
|
|
3135
|
+
}), wo = { class: "cl-fixed cl-flex cl-h-full cl-justify-end cl-right-0 cl-shadow-lg cl-top-0 cl-z-50" }, xo = { 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" }, $o = { class: "cl-mb-4 cl-text-2xl cl-text-off-white" }, ko = { class: "cl-border-grey-3 cl-border-t cl-flex cl-flex-wrap cl-text-sm cl-w-full" }, To = { class: "cl-border-b cl-border-grey-2 cl-flex cl-py-2 cl-text-sm cl-w-full" }, Co = { class: "cl-flex-1 cl-py-2" }, So = { class: "cl-py-2 cl-w-1/4" }, Eo = { class: "cl-py-2 cl-w-1/5" }, Oo = { class: "cl-flex-1 cl-py-2" }, jo = { class: "cl-py-2 cl-w-1/4" }, Ao = { class: "cl-py-2 cl-text-off-white cl-w-1/5" }, Mo = { key: 1 }, Io = {
|
|
3124
3136
|
inheritAttrs: !1
|
|
3125
3137
|
}, No = /* @__PURE__ */ D({
|
|
3126
3138
|
...Io,
|
|
@@ -3130,76 +3142,76 @@ const Qn = {
|
|
|
3130
3142
|
},
|
|
3131
3143
|
emits: ["update:columns"],
|
|
3132
3144
|
setup(e, { emit: n }) {
|
|
3133
|
-
const t = e, { t: l } =
|
|
3134
|
-
function i(
|
|
3135
|
-
|
|
3136
|
-
}
|
|
3137
|
-
function c(
|
|
3138
|
-
const
|
|
3139
|
-
|
|
3140
|
-
}
|
|
3141
|
-
function
|
|
3142
|
-
const
|
|
3143
|
-
i(
|
|
3144
|
-
}
|
|
3145
|
-
return (
|
|
3146
|
-
const
|
|
3147
|
-
return
|
|
3148
|
-
w(we,
|
|
3145
|
+
const t = e, { t: l } = ae(), o = C(!1);
|
|
3146
|
+
function i(r, h, p) {
|
|
3147
|
+
p < r.length && p >= 0 && r.splice(p, 0, r.splice(h, 1)[0]);
|
|
3148
|
+
}
|
|
3149
|
+
function c(r, h) {
|
|
3150
|
+
const p = me(t.columns), g = (r == null ? void 0 : r.checked) ?? !1, f = p.findIndex((d) => d.name === h.name);
|
|
3151
|
+
f >= 0 && (p[f].visible = g), n("update:columns", p);
|
|
3152
|
+
}
|
|
3153
|
+
function b(r, h) {
|
|
3154
|
+
const p = me(t.columns), g = h === "up" ? r + 1 : r - 1;
|
|
3155
|
+
i(p, r, g), n("update:columns", p);
|
|
3156
|
+
}
|
|
3157
|
+
return (r, h) => {
|
|
3158
|
+
const p = K("icon");
|
|
3159
|
+
return s(), v(P, null, [
|
|
3160
|
+
w(we, ve(r.$attrs, {
|
|
3149
3161
|
class: "cl-w-full",
|
|
3150
3162
|
size: "small",
|
|
3151
|
-
onClick: h[0] || (h[0] = Y((
|
|
3163
|
+
onClick: h[0] || (h[0] = Y((g) => o.value = !0, ["prevent"]))
|
|
3152
3164
|
}), {
|
|
3153
|
-
default:
|
|
3165
|
+
default: B(() => [
|
|
3154
3166
|
le(x(a(l)("grid.manageView")), 1)
|
|
3155
3167
|
]),
|
|
3156
3168
|
_: 1
|
|
3157
3169
|
}, 16),
|
|
3158
|
-
(
|
|
3170
|
+
(s(), z(Fe, { to: "body" }, [
|
|
3159
3171
|
w($e, { name: "slide-left" }, {
|
|
3160
|
-
default:
|
|
3161
|
-
q(
|
|
3162
|
-
|
|
3163
|
-
w(
|
|
3172
|
+
default: B(() => [
|
|
3173
|
+
q(u("div", wo, [
|
|
3174
|
+
u("div", xo, [
|
|
3175
|
+
w(p, {
|
|
3164
3176
|
class: "cl-absolute cl-cursor-pointer cl-right-3 cl-text-off-white cl-top-3",
|
|
3165
3177
|
icon: "ph:x",
|
|
3166
3178
|
size: 16,
|
|
3167
|
-
onClick: h[1] || (h[1] = (
|
|
3179
|
+
onClick: h[1] || (h[1] = (g) => o.value = !1)
|
|
3168
3180
|
}),
|
|
3169
|
-
|
|
3170
|
-
|
|
3171
|
-
|
|
3172
|
-
|
|
3173
|
-
|
|
3174
|
-
|
|
3181
|
+
u("h3", $o, x(a(l)("grid.manageView")), 1),
|
|
3182
|
+
u("ul", ko, [
|
|
3183
|
+
u("li", To, [
|
|
3184
|
+
u("strong", Co, x(a(l)("grid.column")), 1),
|
|
3185
|
+
u("strong", So, x(a(l)("grid.visible")), 1),
|
|
3186
|
+
u("strong", Eo, x(a(l)("grid.order")), 1)
|
|
3175
3187
|
]),
|
|
3176
|
-
(
|
|
3177
|
-
key:
|
|
3188
|
+
(s(!0), v(P, null, te(e.columns, (g, f) => (s(), v("li", {
|
|
3189
|
+
key: f,
|
|
3178
3190
|
class: "cl-border-b cl-border-grey-2 cl-flex cl-py-2 cl-text-sm cl-w-full"
|
|
3179
3191
|
}, [
|
|
3180
|
-
|
|
3181
|
-
|
|
3182
|
-
w(
|
|
3183
|
-
"model-value":
|
|
3192
|
+
u("div", Oo, x(g.caption), 1),
|
|
3193
|
+
u("div", jo, [
|
|
3194
|
+
w(fe, {
|
|
3195
|
+
"model-value": g.visible === void 0 || g.visible === !0,
|
|
3184
3196
|
"input-type": "checkbox",
|
|
3185
|
-
onClick: (
|
|
3197
|
+
onClick: (d) => c(d.target, g)
|
|
3186
3198
|
}, null, 8, ["model-value", "onClick"])
|
|
3187
3199
|
]),
|
|
3188
|
-
|
|
3189
|
-
|
|
3190
|
-
|
|
3200
|
+
u("div", Ao, [
|
|
3201
|
+
g.visible === void 0 || g.visible === !0 ? (s(), v(P, { key: 0 }, [
|
|
3202
|
+
f !== 0 ? (s(), z(p, {
|
|
3191
3203
|
key: 0,
|
|
3192
3204
|
class: "cl-cursor-pointer cl-inline-block cl-mr-2",
|
|
3193
3205
|
icon: "ph:arrow-left",
|
|
3194
|
-
onClick: (
|
|
3195
|
-
}, null, 8, ["onClick"])) :
|
|
3196
|
-
|
|
3206
|
+
onClick: (d) => b(f, "down")
|
|
3207
|
+
}, null, 8, ["onClick"])) : A("", !0),
|
|
3208
|
+
f !== e.columns.length - 1 ? (s(), z(p, {
|
|
3197
3209
|
key: 1,
|
|
3198
3210
|
class: "cl-cursor-pointer cl-inline-block",
|
|
3199
3211
|
icon: "ph:arrow-right",
|
|
3200
|
-
onClick: (
|
|
3201
|
-
}, null, 8, ["onClick"])) :
|
|
3202
|
-
], 64)) : (
|
|
3212
|
+
onClick: (d) => b(f, "up")
|
|
3213
|
+
}, null, 8, ["onClick"])) : A("", !0)
|
|
3214
|
+
], 64)) : (s(), v("em", Mo, x(a(l)("grid.hidden")), 1))
|
|
3203
3215
|
])
|
|
3204
3216
|
]))), 128))
|
|
3205
3217
|
])
|
|
@@ -3214,7 +3226,7 @@ const Qn = {
|
|
|
3214
3226
|
], 64);
|
|
3215
3227
|
};
|
|
3216
3228
|
}
|
|
3217
|
-
}), Do = { class: "cl-min-h-screen cl-relative cl-w-full lg:cl-min-h-fit" }, qo = { class: "cl-absolute cl-flex cl-items-center cl-justify-center cl-min-h-full cl-w-full" }, Ro = { class: "cl-hidden lg:cl-table-column-group" }, Uo = /* @__PURE__ */ D({
|
|
3229
|
+
}), Do = { class: "cl-min-h-screen cl-relative cl-w-full lg:cl-min-h-fit" }, qo = { class: "cl-absolute cl-flex cl-items-center cl-justify-center cl-min-h-full cl-p-32 cl-w-full" }, Ro = { class: "cl-hidden lg:cl-table-column-group" }, Uo = /* @__PURE__ */ D({
|
|
3218
3230
|
__name: "cl-ui-grid",
|
|
3219
3231
|
props: {
|
|
3220
3232
|
columns: null,
|
|
@@ -3225,101 +3237,101 @@ const Qn = {
|
|
|
3225
3237
|
},
|
|
3226
3238
|
emits: ["update:columns", "update:request", "data-request", "row-edit", "edit-start", "edit-end", "row-select"],
|
|
3227
3239
|
setup(e, { emit: n }) {
|
|
3228
|
-
const t = e, l =
|
|
3240
|
+
const t = e, l = E({
|
|
3229
3241
|
get: () => t.columns,
|
|
3230
|
-
set: (
|
|
3231
|
-
}), o =
|
|
3242
|
+
set: (d) => n("update:columns", d)
|
|
3243
|
+
}), o = E(() => l.value.filter((d) => d.visible ?? !0)), i = C({});
|
|
3232
3244
|
function c() {
|
|
3233
|
-
const
|
|
3234
|
-
window.innerWidth >= 1024 && l.value.forEach((
|
|
3235
|
-
const
|
|
3236
|
-
|
|
3237
|
-
}), i.value =
|
|
3245
|
+
const d = {};
|
|
3246
|
+
window.innerWidth >= 1024 && l.value.forEach((m) => {
|
|
3247
|
+
const y = m.width ? `${m.width}px` : "";
|
|
3248
|
+
d[`${m.name}`] = `width: ${y}; min-width: ${y};`;
|
|
3249
|
+
}), i.value = d;
|
|
3238
3250
|
}
|
|
3239
|
-
function
|
|
3240
|
-
return i.value[
|
|
3251
|
+
function b(d) {
|
|
3252
|
+
return i.value[d] ?? "";
|
|
3241
3253
|
}
|
|
3242
|
-
|
|
3254
|
+
Ee(() => {
|
|
3243
3255
|
window.addEventListener("resize", c), c();
|
|
3244
|
-
}),
|
|
3245
|
-
const
|
|
3256
|
+
}), Pe(() => window.removeEventListener("resize", c));
|
|
3257
|
+
const r = E({
|
|
3246
3258
|
get: () => t.request,
|
|
3247
|
-
set: (
|
|
3259
|
+
set: (d) => n("update:request", d)
|
|
3248
3260
|
});
|
|
3249
3261
|
function h() {
|
|
3250
|
-
const
|
|
3251
|
-
|
|
3262
|
+
const d = me(r.value);
|
|
3263
|
+
d.pageNumber = 1, d.filters = [], r.value = d;
|
|
3252
3264
|
}
|
|
3253
|
-
const
|
|
3254
|
-
W(
|
|
3265
|
+
const p = al(() => n("data-request"), 750);
|
|
3266
|
+
W(r, p, {
|
|
3255
3267
|
deep: !0,
|
|
3256
3268
|
immediate: !0
|
|
3257
3269
|
});
|
|
3258
|
-
const
|
|
3259
|
-
return W(
|
|
3260
|
-
|
|
3261
|
-
}), (
|
|
3270
|
+
const g = E(() => t.data), f = C(!1);
|
|
3271
|
+
return W(f, () => {
|
|
3272
|
+
f.value ? n("edit-start") : n("edit-end");
|
|
3273
|
+
}), (d, m) => (s(), v("div", Do, [
|
|
3262
3274
|
w($e, { name: "fade" }, {
|
|
3263
|
-
default:
|
|
3264
|
-
q(
|
|
3265
|
-
w(
|
|
3275
|
+
default: B(() => [
|
|
3276
|
+
q(u("div", qo, [
|
|
3277
|
+
w(Ge)
|
|
3266
3278
|
], 512), [
|
|
3267
3279
|
[R, e.loading]
|
|
3268
3280
|
])
|
|
3269
3281
|
]),
|
|
3270
3282
|
_: 1
|
|
3271
3283
|
}),
|
|
3272
|
-
|
|
3273
|
-
class:
|
|
3284
|
+
u("table", {
|
|
3285
|
+
class: M(["cl-delay-75 cl-overflow-x-auto cl-overscroll-x-none cl-text-left cl-transition-opacity cl-w-full", {
|
|
3274
3286
|
"cl-opacity-40": e.loading
|
|
3275
3287
|
}])
|
|
3276
3288
|
}, [
|
|
3277
|
-
|
|
3278
|
-
(
|
|
3279
|
-
key:
|
|
3280
|
-
style:
|
|
3289
|
+
u("colgroup", Ro, [
|
|
3290
|
+
(s(!0), v(P, null, te(a(o), (y, I) => (s(), v("col", {
|
|
3291
|
+
key: I,
|
|
3292
|
+
style: nl(b(y.name)),
|
|
3281
3293
|
span: 1
|
|
3282
3294
|
}, null, 4))), 128))
|
|
3283
3295
|
]),
|
|
3284
3296
|
w(yo, {
|
|
3285
|
-
request: a(
|
|
3286
|
-
"onUpdate:request":
|
|
3287
|
-
"edit-mode":
|
|
3288
|
-
"onUpdate:edit-mode":
|
|
3297
|
+
request: a(r),
|
|
3298
|
+
"onUpdate:request": m[1] || (m[1] = (y) => be(r) ? r.value = y : null),
|
|
3299
|
+
"edit-mode": f.value,
|
|
3300
|
+
"onUpdate:edit-mode": m[2] || (m[2] = (y) => f.value = y),
|
|
3289
3301
|
columns: a(o),
|
|
3290
3302
|
options: e.options,
|
|
3291
3303
|
onClearFilters: h
|
|
3292
3304
|
}, {
|
|
3293
|
-
"view-manager":
|
|
3305
|
+
"view-manager": B(() => [
|
|
3294
3306
|
w(No, {
|
|
3295
3307
|
columns: a(l),
|
|
3296
|
-
"onUpdate:columns":
|
|
3308
|
+
"onUpdate:columns": m[0] || (m[0] = (y) => be(l) ? l.value = y : null)
|
|
3297
3309
|
}, null, 8, ["columns"])
|
|
3298
3310
|
]),
|
|
3299
3311
|
_: 1
|
|
3300
3312
|
}, 8, ["request", "edit-mode", "columns", "options"]),
|
|
3301
|
-
w(
|
|
3313
|
+
w(wn, {
|
|
3302
3314
|
columns: a(o),
|
|
3303
|
-
request: a(
|
|
3304
|
-
data: a(
|
|
3315
|
+
request: a(r),
|
|
3316
|
+
data: a(g),
|
|
3305
3317
|
loading: e.loading,
|
|
3306
|
-
"edit-mode":
|
|
3318
|
+
"edit-mode": f.value,
|
|
3307
3319
|
"selection-enabled": e.options.rowSelectionEnabled,
|
|
3308
3320
|
onClearFilters: h,
|
|
3309
|
-
onRowEdit:
|
|
3310
|
-
onRowSelect:
|
|
3311
|
-
},
|
|
3312
|
-
te(
|
|
3313
|
-
name:
|
|
3314
|
-
fn:
|
|
3315
|
-
|
|
3321
|
+
onRowEdit: m[3] || (m[3] = (y) => d.$emit("row-edit", y)),
|
|
3322
|
+
onRowSelect: m[4] || (m[4] = (y) => d.$emit("row-select", y))
|
|
3323
|
+
}, Ve({ _: 2 }, [
|
|
3324
|
+
te(d.$slots, (y, I) => ({
|
|
3325
|
+
name: I,
|
|
3326
|
+
fn: B((S) => [
|
|
3327
|
+
O(d.$slots, I, oe(ie(S)))
|
|
3316
3328
|
])
|
|
3317
3329
|
}))
|
|
3318
3330
|
]), 1032, ["columns", "request", "data", "loading", "edit-mode", "selection-enabled"])
|
|
3319
3331
|
], 2),
|
|
3320
|
-
w(
|
|
3321
|
-
request: a(
|
|
3322
|
-
"onUpdate:request":
|
|
3332
|
+
w(Un, {
|
|
3333
|
+
request: a(r),
|
|
3334
|
+
"onUpdate:request": m[5] || (m[5] = (y) => be(r) ? r.value = y : null),
|
|
3323
3335
|
data: e.data
|
|
3324
3336
|
}, null, 8, ["request", "data"])
|
|
3325
3337
|
]));
|
|
@@ -3328,14 +3340,14 @@ const Qn = {
|
|
|
3328
3340
|
__name: "cl-ui-header",
|
|
3329
3341
|
emits: ["open-click"],
|
|
3330
3342
|
setup(e) {
|
|
3331
|
-
return (n, t) => (
|
|
3332
|
-
|
|
3333
|
-
|
|
3343
|
+
return (n, t) => (s(), v("header", Po, [
|
|
3344
|
+
O(n.$slots, "logo"),
|
|
3345
|
+
u("div", {
|
|
3334
3346
|
class: "cl-cursor-pointer cl-flex cl-flex-nowrap",
|
|
3335
3347
|
onClick: t[0] || (t[0] = (l) => n.$emit("open-click"))
|
|
3336
3348
|
}, [
|
|
3337
|
-
|
|
3338
|
-
|
|
3349
|
+
O(n.$slots, "menu"),
|
|
3350
|
+
O(n.$slots, "icon")
|
|
3339
3351
|
])
|
|
3340
3352
|
]));
|
|
3341
3353
|
}
|
|
@@ -3356,36 +3368,36 @@ const Qn = {
|
|
|
3356
3368
|
emits: ["update:is-open"],
|
|
3357
3369
|
setup(e, { emit: n }) {
|
|
3358
3370
|
const t = e, l = C();
|
|
3359
|
-
|
|
3371
|
+
cl(l, o);
|
|
3360
3372
|
function o() {
|
|
3361
3373
|
t.isOpen === !0 && n("update:is-open", !1);
|
|
3362
3374
|
}
|
|
3363
3375
|
return (i, c) => {
|
|
3364
|
-
const
|
|
3365
|
-
return
|
|
3376
|
+
const b = K("icon");
|
|
3377
|
+
return s(), v("div", {
|
|
3366
3378
|
ref_key: "headerMenuElement",
|
|
3367
3379
|
ref: l,
|
|
3368
3380
|
class: "cl-bg-blue-light md:cl-relative"
|
|
3369
3381
|
}, [
|
|
3370
|
-
|
|
3371
|
-
e.image ? (
|
|
3382
|
+
u("div", zo, [
|
|
3383
|
+
e.image ? (s(), v("img", {
|
|
3372
3384
|
key: 0,
|
|
3373
3385
|
src: e.image,
|
|
3374
3386
|
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"
|
|
3375
|
-
}, null, 8, Lo)) : (
|
|
3387
|
+
}, null, 8, Lo)) : (s(), z(b, {
|
|
3376
3388
|
key: 1,
|
|
3377
3389
|
class: "cl-hidden cl-m-4 cl-text-white md:cl-block",
|
|
3378
3390
|
icon: "ph:user-circle",
|
|
3379
3391
|
width: "48",
|
|
3380
3392
|
height: "48"
|
|
3381
3393
|
})),
|
|
3382
|
-
|
|
3383
|
-
e.username ? (
|
|
3384
|
-
e.group ? (
|
|
3394
|
+
u("div", Fo, [
|
|
3395
|
+
e.username ? (s(), v("div", Vo, x(e.username), 1)) : A("", !0),
|
|
3396
|
+
e.group ? (s(), v("div", Go, x(e.group), 1)) : A("", !0)
|
|
3385
3397
|
]),
|
|
3386
|
-
|
|
3387
|
-
w(
|
|
3388
|
-
class:
|
|
3398
|
+
u("div", Ho, [
|
|
3399
|
+
w(b, {
|
|
3400
|
+
class: M(["cl-text-white cl-transform-gpu cl-transition-transform", {
|
|
3389
3401
|
"cl-rotate-180": e.isOpen
|
|
3390
3402
|
}]),
|
|
3391
3403
|
icon: "ph:caret-down"
|
|
@@ -3393,9 +3405,9 @@ const Qn = {
|
|
|
3393
3405
|
])
|
|
3394
3406
|
]),
|
|
3395
3407
|
w($e, { name: "fade" }, {
|
|
3396
|
-
default:
|
|
3397
|
-
q(
|
|
3398
|
-
|
|
3408
|
+
default: B(() => [
|
|
3409
|
+
q(u("div", Wo, [
|
|
3410
|
+
O(i.$slots, "default")
|
|
3399
3411
|
], 512), [
|
|
3400
3412
|
[R, e.isOpen]
|
|
3401
3413
|
])
|
|
@@ -3425,7 +3437,7 @@ const Qn = {
|
|
|
3425
3437
|
"time",
|
|
3426
3438
|
"url"
|
|
3427
3439
|
];
|
|
3428
|
-
function
|
|
3440
|
+
function Le(e) {
|
|
3429
3441
|
return /[a-z]{2}-[A-Z]{2}/gm.test(e.localeCode);
|
|
3430
3442
|
}
|
|
3431
3443
|
function Zo(e) {
|
|
@@ -3454,38 +3466,38 @@ const Yo = {
|
|
|
3454
3466
|
},
|
|
3455
3467
|
emits: ["language-select"],
|
|
3456
3468
|
setup(e, { emit: n }) {
|
|
3457
|
-
const t = e, { locale: l } =
|
|
3458
|
-
function
|
|
3469
|
+
const t = e, { locale: l } = ae(), o = C(!1), i = E(() => t.supportedLanguages.find((r) => r.localeCode === l.value) ?? t.defaultLangauge), c = E(() => t.supportedLanguages.filter((r) => Le(r)).sort((r, h) => r.nativeName > h.nativeName ? 1 : h.nativeName > r.nativeName ? -1 : 0));
|
|
3470
|
+
function b() {
|
|
3459
3471
|
t.disabled || (o.value = !o.value);
|
|
3460
3472
|
}
|
|
3461
|
-
return W(() => t.disabled, (
|
|
3462
|
-
|
|
3463
|
-
}), (
|
|
3464
|
-
|
|
3465
|
-
class:
|
|
3473
|
+
return W(() => t.disabled, (r) => {
|
|
3474
|
+
r && (o.value = !1);
|
|
3475
|
+
}), (r, h) => a(i) !== null && a(Le)(a(i)) ? (s(), v("div", Yo, [
|
|
3476
|
+
u("div", {
|
|
3477
|
+
class: M(["cl-flex cl-items-center", {
|
|
3466
3478
|
"cl-cursor-pointer": !e.disabled
|
|
3467
3479
|
}]),
|
|
3468
|
-
onClick:
|
|
3480
|
+
onClick: b
|
|
3469
3481
|
}, [
|
|
3470
|
-
|
|
3471
|
-
class:
|
|
3482
|
+
u("span", {
|
|
3483
|
+
class: M(["cl-font-semibold cl-text-xs", {
|
|
3472
3484
|
"cl-opacity-50": e.disabled
|
|
3473
3485
|
}])
|
|
3474
3486
|
}, x(a(i).nativeName), 3)
|
|
3475
3487
|
], 2),
|
|
3476
3488
|
w($e, { name: "fade" }, {
|
|
3477
|
-
default:
|
|
3478
|
-
q(
|
|
3479
|
-
(
|
|
3480
|
-
key:
|
|
3489
|
+
default: B(() => [
|
|
3490
|
+
q(u("div", Xo, [
|
|
3491
|
+
(s(!0), v(P, null, te(a(c), (p, g) => (s(), v("div", {
|
|
3492
|
+
key: g,
|
|
3481
3493
|
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",
|
|
3482
|
-
"data-localename":
|
|
3483
|
-
"data-localecode":
|
|
3484
|
-
onClick: (
|
|
3485
|
-
l.value =
|
|
3494
|
+
"data-localename": p.name,
|
|
3495
|
+
"data-localecode": p.localeCode,
|
|
3496
|
+
onClick: (f) => {
|
|
3497
|
+
l.value = p.localeCode, b(), n("language-select", p.localeCode);
|
|
3486
3498
|
}
|
|
3487
3499
|
}, [
|
|
3488
|
-
|
|
3500
|
+
u("span", ea, x(p.nativeName), 1)
|
|
3489
3501
|
], 8, _o))), 128))
|
|
3490
3502
|
], 512), [
|
|
3491
3503
|
[R, o.value]
|
|
@@ -3493,7 +3505,7 @@ const Yo = {
|
|
|
3493
3505
|
]),
|
|
3494
3506
|
_: 1
|
|
3495
3507
|
})
|
|
3496
|
-
])) :
|
|
3508
|
+
])) : A("", !0);
|
|
3497
3509
|
}
|
|
3498
3510
|
}), ta = { class: "cl-relative" }, na = { class: "cl-h-screen cl-z-0" }, oa = { 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" }, aa = { class: "cl-col-span-10 lg:cl-col-span-3" }, ca = {
|
|
3499
3511
|
key: 0,
|
|
@@ -3509,56 +3521,56 @@ const Yo = {
|
|
|
3509
3521
|
"update:errors": null
|
|
3510
3522
|
},
|
|
3511
3523
|
setup(e, { emit: n }) {
|
|
3512
|
-
const { t } =
|
|
3513
|
-
function
|
|
3514
|
-
const
|
|
3524
|
+
const { t } = ae(), l = C(""), o = C(""), i = C("password"), c = C();
|
|
3525
|
+
function b() {
|
|
3526
|
+
const g = {
|
|
3515
3527
|
username: l.value,
|
|
3516
3528
|
password: o.value
|
|
3517
3529
|
};
|
|
3518
|
-
n("login",
|
|
3530
|
+
n("login", g);
|
|
3519
3531
|
}
|
|
3520
|
-
function
|
|
3532
|
+
function r() {
|
|
3521
3533
|
n("update:errors", []);
|
|
3522
3534
|
}
|
|
3523
|
-
function h(
|
|
3524
|
-
const
|
|
3535
|
+
function h(g, f) {
|
|
3536
|
+
const d = {
|
|
3525
3537
|
valid: !0,
|
|
3526
3538
|
message: ""
|
|
3527
3539
|
};
|
|
3528
|
-
return typeof
|
|
3540
|
+
return typeof f == "string" && f.trim() === "" && (d.valid = !1), d;
|
|
3529
3541
|
}
|
|
3530
|
-
function
|
|
3531
|
-
c.value =
|
|
3542
|
+
function p(g, f) {
|
|
3543
|
+
c.value = g;
|
|
3532
3544
|
}
|
|
3533
|
-
return (
|
|
3534
|
-
const
|
|
3535
|
-
return
|
|
3536
|
-
|
|
3537
|
-
|
|
3545
|
+
return (g, f) => {
|
|
3546
|
+
const d = K("icon");
|
|
3547
|
+
return s(), v("div", ta, [
|
|
3548
|
+
u("div", na, [
|
|
3549
|
+
O(g.$slots, "background")
|
|
3538
3550
|
]),
|
|
3539
|
-
|
|
3540
|
-
|
|
3541
|
-
|
|
3551
|
+
u("form", oa, [
|
|
3552
|
+
u("div", aa, [
|
|
3553
|
+
O(g.$slots, "logo")
|
|
3542
3554
|
]),
|
|
3543
|
-
|
|
3544
|
-
|
|
3545
|
-
])) :
|
|
3546
|
-
|
|
3547
|
-
class:
|
|
3548
|
-
"cl-col-span-7": !
|
|
3549
|
-
"cl-col-span-6":
|
|
3555
|
+
g.$slots["language-switcher"] ? (s(), v("div", ca, [
|
|
3556
|
+
O(g.$slots, "language-switcher")
|
|
3557
|
+
])) : A("", !0),
|
|
3558
|
+
u("div", {
|
|
3559
|
+
class: M(["cl-gap-y-4 cl-grid cl-grid-cols-1 lg:cl-gap-x-2 lg:cl-grid-cols-8", {
|
|
3560
|
+
"cl-col-span-7": !g.$slots["language-switcher"],
|
|
3561
|
+
"cl-col-span-6": g.$slots["language-switcher"]
|
|
3550
3562
|
}])
|
|
3551
3563
|
}, [
|
|
3552
|
-
|
|
3553
|
-
|
|
3554
|
-
w(
|
|
3564
|
+
u("div", sa, [
|
|
3565
|
+
u("div", ia, [
|
|
3566
|
+
w(d, {
|
|
3555
3567
|
class: "cl-absolute cl-left-3 cl-top-2.5",
|
|
3556
3568
|
icon: "ph:user",
|
|
3557
3569
|
size: 18
|
|
3558
3570
|
}),
|
|
3559
|
-
w(
|
|
3571
|
+
w(fe, {
|
|
3560
3572
|
modelValue: l.value,
|
|
3561
|
-
"onUpdate:modelValue":
|
|
3573
|
+
"onUpdate:modelValue": f[0] || (f[0] = (m) => l.value = m),
|
|
3562
3574
|
modelModifiers: { trim: !0 },
|
|
3563
3575
|
class: "!cl-border-2 !cl-mb-1 cl-w-full",
|
|
3564
3576
|
"input-type": "email",
|
|
@@ -3571,37 +3583,37 @@ const Yo = {
|
|
|
3571
3583
|
"custom-validation-function": h,
|
|
3572
3584
|
"input-specific-classes": "!cl-pl-9",
|
|
3573
3585
|
"message-when-valid": l.value ? a(t)("login.validEmail") : "",
|
|
3574
|
-
onInput:
|
|
3575
|
-
onValidated:
|
|
3586
|
+
onInput: r,
|
|
3587
|
+
onValidated: p
|
|
3576
3588
|
}, null, 8, ["modelValue", "highlight-when-valid", "label", "placeholder-text", "message-when-valid"])
|
|
3577
3589
|
])
|
|
3578
3590
|
]),
|
|
3579
|
-
|
|
3580
|
-
|
|
3581
|
-
w(
|
|
3591
|
+
u("div", ra, [
|
|
3592
|
+
u("div", ua, [
|
|
3593
|
+
w(d, {
|
|
3582
3594
|
class: "cl-absolute cl-left-3 cl-top-2.5",
|
|
3583
3595
|
icon: "ph:lock",
|
|
3584
3596
|
size: 18
|
|
3585
3597
|
}),
|
|
3586
|
-
q(w(
|
|
3598
|
+
q(w(d, {
|
|
3587
3599
|
class: "cl-absolute cl-cursor-pointer cl-right-6 cl-top-2.5",
|
|
3588
3600
|
icon: "ph:eye",
|
|
3589
3601
|
size: 18,
|
|
3590
|
-
onClick:
|
|
3602
|
+
onClick: f[1] || (f[1] = (m) => i.value = "text")
|
|
3591
3603
|
}, null, 512), [
|
|
3592
3604
|
[R, i.value === "password"]
|
|
3593
3605
|
]),
|
|
3594
|
-
q(w(
|
|
3606
|
+
q(w(d, {
|
|
3595
3607
|
class: "cl-absolute cl-cursor-pointer cl-right-6 cl-top-2.5",
|
|
3596
3608
|
icon: "ph:eye-slash",
|
|
3597
3609
|
size: 18,
|
|
3598
|
-
onClick:
|
|
3610
|
+
onClick: f[2] || (f[2] = (m) => i.value = "password")
|
|
3599
3611
|
}, null, 512), [
|
|
3600
3612
|
[R, i.value === "text"]
|
|
3601
3613
|
]),
|
|
3602
|
-
w(
|
|
3614
|
+
w(fe, {
|
|
3603
3615
|
modelValue: o.value,
|
|
3604
|
-
"onUpdate:modelValue":
|
|
3616
|
+
"onUpdate:modelValue": f[3] || (f[3] = (m) => o.value = m),
|
|
3605
3617
|
class: "!cl-border-2 cl-w-full",
|
|
3606
3618
|
"input-type": i.value,
|
|
3607
3619
|
"highlight-when-valid": o.value !== void 0 && o.value !== "",
|
|
@@ -3612,12 +3624,12 @@ const Yo = {
|
|
|
3612
3624
|
"validate-immediately": !0,
|
|
3613
3625
|
"input-specific-classes": "!cl-pl-9 !cl-pr-9",
|
|
3614
3626
|
"custom-validation-function": h,
|
|
3615
|
-
onInput:
|
|
3627
|
+
onInput: r
|
|
3616
3628
|
}, null, 8, ["modelValue", "input-type", "highlight-when-valid", "label", "placeholder-text"])
|
|
3617
3629
|
])
|
|
3618
3630
|
]),
|
|
3619
|
-
|
|
3620
|
-
class:
|
|
3631
|
+
u("div", {
|
|
3632
|
+
class: M(["cl-col-span-2", {
|
|
3621
3633
|
"cl-mt-1.5 cl-mb-1 md:cl-mt-0.5 md:cl-mb-7 lg:cl-mb-0": e.loading
|
|
3622
3634
|
}])
|
|
3623
3635
|
}, [
|
|
@@ -3626,9 +3638,9 @@ const Yo = {
|
|
|
3626
3638
|
colour: "blue",
|
|
3627
3639
|
loading: e.loading,
|
|
3628
3640
|
disabled: !c.value || o.value === "",
|
|
3629
|
-
onClick: Y(
|
|
3641
|
+
onClick: Y(b, ["prevent"])
|
|
3630
3642
|
}, {
|
|
3631
|
-
default:
|
|
3643
|
+
default: B(() => [
|
|
3632
3644
|
le(x(a(t)("login.login")), 1)
|
|
3633
3645
|
]),
|
|
3634
3646
|
_: 1
|
|
@@ -3636,16 +3648,16 @@ const Yo = {
|
|
|
3636
3648
|
], 2)
|
|
3637
3649
|
], 2),
|
|
3638
3650
|
w($e, { name: "cl-grow-down" }, {
|
|
3639
|
-
default:
|
|
3640
|
-
var
|
|
3651
|
+
default: B(() => {
|
|
3652
|
+
var m;
|
|
3641
3653
|
return [
|
|
3642
|
-
q(
|
|
3643
|
-
(
|
|
3644
|
-
key:
|
|
3654
|
+
q(u("span", da, [
|
|
3655
|
+
(s(!0), v(P, null, te(e.errors, (y, I) => (s(), v("div", {
|
|
3656
|
+
key: I,
|
|
3645
3657
|
class: "cl-font-semibold"
|
|
3646
|
-
}, x(
|
|
3658
|
+
}, x(y), 1))), 128))
|
|
3647
3659
|
], 512), [
|
|
3648
|
-
[R, (
|
|
3660
|
+
[R, (m = e.errors) == null ? void 0 : m.length]
|
|
3649
3661
|
])
|
|
3650
3662
|
];
|
|
3651
3663
|
}),
|
|
@@ -3673,21 +3685,21 @@ const Yo = {
|
|
|
3673
3685
|
}, ha = { class: "cl-relative cl-w-full" }, pa = /* @__PURE__ */ D({
|
|
3674
3686
|
__name: "cl-ui-navigation",
|
|
3675
3687
|
setup(e) {
|
|
3676
|
-
const n = C([]), t =
|
|
3677
|
-
function l(
|
|
3678
|
-
let
|
|
3679
|
-
return
|
|
3680
|
-
id:
|
|
3688
|
+
const n = C([]), t = E(() => n.value.filter((f) => f.open === !0).length > 0);
|
|
3689
|
+
function l(f) {
|
|
3690
|
+
let d = n.value.find((m) => m.id === f);
|
|
3691
|
+
return d || (d = {
|
|
3692
|
+
id: f,
|
|
3681
3693
|
open: !1
|
|
3682
|
-
}, n.value.push(
|
|
3694
|
+
}, n.value.push(d)), d.open;
|
|
3683
3695
|
}
|
|
3684
|
-
function o(
|
|
3685
|
-
const
|
|
3686
|
-
|
|
3687
|
-
|
|
3696
|
+
function o(f) {
|
|
3697
|
+
const d = n.value.find((m) => m.id === f);
|
|
3698
|
+
d && (d.open = !d.open, n.value.forEach((m) => {
|
|
3699
|
+
m.id !== f && (m.open = !1);
|
|
3688
3700
|
}));
|
|
3689
3701
|
}
|
|
3690
|
-
const i =
|
|
3702
|
+
const i = yl();
|
|
3691
3703
|
W(
|
|
3692
3704
|
() => i,
|
|
3693
3705
|
() => {
|
|
@@ -3697,49 +3709,49 @@ const Yo = {
|
|
|
3697
3709
|
deep: !0
|
|
3698
3710
|
}
|
|
3699
3711
|
);
|
|
3700
|
-
const c = C(!1),
|
|
3712
|
+
const c = C(!1), b = C(!1), { start: r } = ol(() => b.value = !1, 100);
|
|
3701
3713
|
function h() {
|
|
3702
|
-
c.value = !c.value,
|
|
3714
|
+
c.value = !c.value, b.value = !0, r();
|
|
3703
3715
|
}
|
|
3704
|
-
const
|
|
3705
|
-
function
|
|
3706
|
-
c.value === !1 && t.value === !0 && n.value.forEach((
|
|
3707
|
-
|
|
3716
|
+
const p = C();
|
|
3717
|
+
function g() {
|
|
3718
|
+
c.value === !1 && t.value === !0 && n.value.forEach((f) => {
|
|
3719
|
+
f.open = !1;
|
|
3708
3720
|
});
|
|
3709
3721
|
}
|
|
3710
|
-
return
|
|
3711
|
-
const
|
|
3712
|
-
return
|
|
3722
|
+
return cl(p, g), (f, d) => {
|
|
3723
|
+
const m = K("icon");
|
|
3724
|
+
return s(), v("div", {
|
|
3713
3725
|
ref_key: "navElement",
|
|
3714
|
-
ref:
|
|
3726
|
+
ref: p,
|
|
3715
3727
|
class: "cl-flex cl-flex-nowrap cl-relative"
|
|
3716
3728
|
}, [
|
|
3717
|
-
|
|
3718
|
-
|
|
3729
|
+
u("div", ba, [
|
|
3730
|
+
O(f.$slots, "icon", oe(ie({ groupIsOpen: l, toggleOpen: o })), void 0, !0)
|
|
3719
3731
|
]),
|
|
3720
|
-
|
|
3732
|
+
b.value ? (s(), v("div", va)) : A("", !0),
|
|
3721
3733
|
w($e, { name: "slide-right" }, {
|
|
3722
|
-
default:
|
|
3723
|
-
q(
|
|
3724
|
-
class:
|
|
3734
|
+
default: B(() => [
|
|
3735
|
+
q(u("div", {
|
|
3736
|
+
class: M(["cl-bg-grey-0 cl-border-grey-2 cl-border-r cl-duration-75 cl-h-full cl-min-w-[260px] cl-overflow-y-auto cl-overscroll-y-none cl-p-8 cl-top-0 cl-transition-shadow cl-w-[260px] cl-z-20", {
|
|
3725
3737
|
"cl-relative": c.value,
|
|
3726
3738
|
"cl-absolute cl-left-20 cl-shadow-lg": !c.value
|
|
3727
3739
|
}])
|
|
3728
3740
|
}, [
|
|
3729
|
-
|
|
3730
|
-
|
|
3741
|
+
u("div", ha, [
|
|
3742
|
+
u("span", {
|
|
3731
3743
|
class: "cl-absolute cl-cursor-pointer cl-hidden cl-right-0 cl-top-1.5 lg:cl-block",
|
|
3732
3744
|
onClick: h
|
|
3733
3745
|
}, [
|
|
3734
|
-
c.value ? (
|
|
3746
|
+
c.value ? (s(), z(m, {
|
|
3735
3747
|
key: 1,
|
|
3736
3748
|
icon: "ph:push-pin-slash"
|
|
3737
|
-
})) : (
|
|
3749
|
+
})) : (s(), z(m, {
|
|
3738
3750
|
key: 0,
|
|
3739
3751
|
icon: "ph:push-pin"
|
|
3740
3752
|
}))
|
|
3741
3753
|
]),
|
|
3742
|
-
|
|
3754
|
+
O(f.$slots, "default", oe(ie({ groupIsOpen: l })), void 0, !0)
|
|
3743
3755
|
])
|
|
3744
3756
|
], 2), [
|
|
3745
3757
|
[R, a(t)]
|
|
@@ -3760,8 +3772,8 @@ const ya = /* @__PURE__ */ he(pa, [["__scopeId", "data-v-20b0e94d"]]), wa = /* @
|
|
|
3760
3772
|
setup(e) {
|
|
3761
3773
|
return (n, t) => {
|
|
3762
3774
|
const l = K("icon");
|
|
3763
|
-
return
|
|
3764
|
-
class:
|
|
3775
|
+
return s(), v("div", {
|
|
3776
|
+
class: M(["cl-cursor-pointer cl-flex cl-h-20 cl-items-center cl-justify-center cl-text-off-white cl-transition-colors cl-w-20 hover:cl-bg-blue-light", {
|
|
3765
3777
|
"cl-bg-blue-light": e.open
|
|
3766
3778
|
}])
|
|
3767
3779
|
}, [
|
|
@@ -3782,33 +3794,33 @@ const ya = /* @__PURE__ */ he(pa, [["__scopeId", "data-v-20b0e94d"]]), wa = /* @
|
|
|
3782
3794
|
open: { type: Boolean }
|
|
3783
3795
|
},
|
|
3784
3796
|
setup(e) {
|
|
3785
|
-
return (n, t) => e.open ? (
|
|
3786
|
-
n.$slots.title ? (
|
|
3787
|
-
|
|
3788
|
-
])) :
|
|
3789
|
-
|
|
3790
|
-
|
|
3797
|
+
return (n, t) => e.open ? (s(), v(P, { key: 0 }, [
|
|
3798
|
+
n.$slots.title ? (s(), v("div", xa, [
|
|
3799
|
+
O(n.$slots, "title")
|
|
3800
|
+
])) : A("", !0),
|
|
3801
|
+
u("div", $a, [
|
|
3802
|
+
O(n.$slots, "default")
|
|
3791
3803
|
])
|
|
3792
|
-
], 64)) :
|
|
3804
|
+
], 64)) : A("", !0);
|
|
3793
3805
|
}
|
|
3794
3806
|
}), Ta = {}, Ca = { class: "cl-w-full" }, Sa = {
|
|
3795
3807
|
key: 0,
|
|
3796
3808
|
class: "cl-font-bold cl-mb-4 cl-select-none"
|
|
3797
|
-
},
|
|
3798
|
-
function
|
|
3799
|
-
return
|
|
3800
|
-
e.$slots.title ? (
|
|
3801
|
-
|
|
3802
|
-
])) :
|
|
3803
|
-
|
|
3804
|
-
|
|
3809
|
+
}, Ea = { class: "cl-flex cl-flex-wrap cl-space-y-2" };
|
|
3810
|
+
function Oa(e, n) {
|
|
3811
|
+
return s(), v("div", Ca, [
|
|
3812
|
+
e.$slots.title ? (s(), v("div", Sa, [
|
|
3813
|
+
O(e.$slots, "title")
|
|
3814
|
+
])) : A("", !0),
|
|
3815
|
+
u("span", Ea, [
|
|
3816
|
+
O(e.$slots, "default")
|
|
3805
3817
|
])
|
|
3806
3818
|
]);
|
|
3807
3819
|
}
|
|
3808
|
-
const ja = /* @__PURE__ */ he(Ta, [["render",
|
|
3820
|
+
const ja = /* @__PURE__ */ he(Ta, [["render", Oa]]), Aa = {}, Ma = { class: "cl-cursor-pointer cl-transition-colors cl-w-full hover:cl-text-blue-light" };
|
|
3809
3821
|
function Ia(e, n) {
|
|
3810
|
-
return
|
|
3811
|
-
|
|
3822
|
+
return s(), v("div", Ma, [
|
|
3823
|
+
O(e.$slots, "default")
|
|
3812
3824
|
]);
|
|
3813
3825
|
}
|
|
3814
3826
|
const Na = /* @__PURE__ */ he(Aa, [["render", Ia]]), Da = { class: "cl-w-full" }, qa = /* @__PURE__ */ D({
|
|
@@ -3830,34 +3842,34 @@ const Na = /* @__PURE__ */ he(Aa, [["render", Ia]]), Da = { class: "cl-w-full" }
|
|
|
3830
3842
|
} else
|
|
3831
3843
|
l.value = !1, o.value = !1;
|
|
3832
3844
|
}
|
|
3833
|
-
function
|
|
3845
|
+
function b() {
|
|
3834
3846
|
c(), window.addEventListener("resize", c);
|
|
3835
3847
|
}
|
|
3836
|
-
function
|
|
3848
|
+
function r(h) {
|
|
3837
3849
|
if (t.value) {
|
|
3838
|
-
const
|
|
3839
|
-
let
|
|
3840
|
-
h === "left" && (
|
|
3850
|
+
const p = t.value.scrollWidth / 5;
|
|
3851
|
+
let g = p;
|
|
3852
|
+
h === "left" && (g = -p), t.value.scroll(t.value.scrollLeft + g, 0);
|
|
3841
3853
|
}
|
|
3842
3854
|
}
|
|
3843
|
-
return
|
|
3844
|
-
const
|
|
3845
|
-
return
|
|
3846
|
-
|
|
3847
|
-
l.value ? (
|
|
3855
|
+
return Ee(() => b()), Pe(() => window.removeEventListener("resize", c)), (h, p) => {
|
|
3856
|
+
const g = K("icon");
|
|
3857
|
+
return s(), v("div", Da, [
|
|
3858
|
+
u("div", null, [
|
|
3859
|
+
l.value ? (s(), v("div", {
|
|
3848
3860
|
key: 0,
|
|
3849
3861
|
class: "cl-bg-white cl-cursor-pointer cl-float-left cl-h-11 cl-w-4",
|
|
3850
|
-
onClick:
|
|
3862
|
+
onClick: p[0] || (p[0] = (f) => r("left"))
|
|
3851
3863
|
}, [
|
|
3852
|
-
w(
|
|
3864
|
+
w(g, {
|
|
3853
3865
|
icon: "ph:caret-left",
|
|
3854
3866
|
class: "cl-mt-4 cl-text-secondary-default"
|
|
3855
3867
|
})
|
|
3856
|
-
])) :
|
|
3857
|
-
|
|
3868
|
+
])) : A("", !0),
|
|
3869
|
+
u("div", {
|
|
3858
3870
|
ref_key: "headerContainer",
|
|
3859
3871
|
ref: t,
|
|
3860
|
-
class:
|
|
3872
|
+
class: M(["cl-flex cl-overflow-x-auto cl-overscroll-x-none", {
|
|
3861
3873
|
"cl-shadow-[inset_0_-1px_0_#eeeeee]": !e.disabled && e.colour === "default",
|
|
3862
3874
|
"cl-shadow-[inset_0_-1px_0_#9acd32]": !e.disabled && e.colour === "primary",
|
|
3863
3875
|
"cl-shadow-[inset_0_-1px_0_#30363e]": !e.disabled && e.colour === "secondary",
|
|
@@ -3868,20 +3880,20 @@ const Na = /* @__PURE__ */ he(Aa, [["render", Ia]]), Da = { class: "cl-w-full" }
|
|
|
3868
3880
|
}]),
|
|
3869
3881
|
onScrollPassive: c
|
|
3870
3882
|
}, [
|
|
3871
|
-
|
|
3883
|
+
O(h.$slots, "headings", oe(ie({ isTabOpen: i, disabled: e.disabled, colour: e.colour })))
|
|
3872
3884
|
], 34),
|
|
3873
|
-
o.value ? (
|
|
3885
|
+
o.value ? (s(), v("div", {
|
|
3874
3886
|
key: 1,
|
|
3875
3887
|
class: "cl-bg-white cl-bottom-12 cl-cursor-pointer cl-float-right cl-h-11 cl-relative cl-w-4",
|
|
3876
|
-
onClick:
|
|
3888
|
+
onClick: p[1] || (p[1] = (f) => r("right"))
|
|
3877
3889
|
}, [
|
|
3878
|
-
w(
|
|
3890
|
+
w(g, {
|
|
3879
3891
|
icon: "ph:caret-right",
|
|
3880
3892
|
class: "cl-mt-4 cl-text-secondary-default"
|
|
3881
3893
|
})
|
|
3882
|
-
])) :
|
|
3894
|
+
])) : A("", !0)
|
|
3883
3895
|
]),
|
|
3884
|
-
|
|
3896
|
+
O(h.$slots, "content", oe(ie({ isTabOpen: i, disabled: e.disabled, colour: e.colour })))
|
|
3885
3897
|
]);
|
|
3886
3898
|
};
|
|
3887
3899
|
}
|
|
@@ -3897,12 +3909,12 @@ const Na = /* @__PURE__ */ he(Aa, [["render", Ia]]), Da = { class: "cl-w-full" }
|
|
|
3897
3909
|
"update:currentTab": null
|
|
3898
3910
|
},
|
|
3899
3911
|
setup(e, { emit: n }) {
|
|
3900
|
-
const t = e, l = C(), o = C(), i =
|
|
3912
|
+
const t = e, l = C(), o = C(), i = E(() => t.id === t.currentTab);
|
|
3901
3913
|
function c() {
|
|
3902
3914
|
t.disabled || (l.value = !1, o.value = !1, n("update:currentTab", t.id));
|
|
3903
3915
|
}
|
|
3904
|
-
return (
|
|
3905
|
-
class:
|
|
3916
|
+
return (b, r) => (s(), v("div", {
|
|
3917
|
+
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", {
|
|
3906
3918
|
"!cl-cursor-default cl-text-grey-4 !cl-border-grey-2": e.disabled,
|
|
3907
3919
|
"cl-border cl-border-b-0 cl-rounded-t-md cl-shadow-[inset_0_-1px_0_#ffffff] cl-cursor-default": a(i),
|
|
3908
3920
|
"cl-border-grey-0": e.colour === "default",
|
|
@@ -3923,18 +3935,18 @@ const Na = /* @__PURE__ */ he(Aa, [["render", Ia]]), Da = { class: "cl-w-full" }
|
|
|
3923
3935
|
}]),
|
|
3924
3936
|
tabindex: "0",
|
|
3925
3937
|
onClick: c,
|
|
3926
|
-
onMouseover:
|
|
3927
|
-
onMouseout:
|
|
3928
|
-
onFocusin:
|
|
3929
|
-
onFocusout:
|
|
3938
|
+
onMouseover: r[0] || (r[0] = (h) => o.value = !0),
|
|
3939
|
+
onMouseout: r[1] || (r[1] = (h) => o.value = !1),
|
|
3940
|
+
onFocusin: r[2] || (r[2] = (h) => l.value = !0),
|
|
3941
|
+
onFocusout: r[3] || (r[3] = (h) => l.value = !1),
|
|
3930
3942
|
onKeyup: Se(Y(c, ["self"]), ["enter"])
|
|
3931
3943
|
}, [
|
|
3932
|
-
|
|
3944
|
+
O(b.$slots, "default")
|
|
3933
3945
|
], 42, Ra));
|
|
3934
3946
|
}
|
|
3935
3947
|
}), Pa = {};
|
|
3936
3948
|
function Ba(e, n) {
|
|
3937
|
-
return
|
|
3949
|
+
return O(e.$slots, "default");
|
|
3938
3950
|
}
|
|
3939
3951
|
const za = /* @__PURE__ */ he(Pa, [["render", Ba]]), La = [
|
|
3940
3952
|
"default",
|
|
@@ -3948,53 +3960,53 @@ const za = /* @__PURE__ */ he(Pa, [["render", Ba]]), La = [
|
|
|
3948
3960
|
], Va = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
3949
3961
|
__proto__: null,
|
|
3950
3962
|
FilterOperation: ye,
|
|
3951
|
-
buttonColours:
|
|
3952
|
-
buttonSizes:
|
|
3953
|
-
cardSizes:
|
|
3954
|
-
clUiAccordion:
|
|
3955
|
-
clUiAccordionHeader:
|
|
3956
|
-
clUiAccordionItem:
|
|
3957
|
-
clUiApp:
|
|
3963
|
+
buttonColours: Ll,
|
|
3964
|
+
buttonSizes: Fl,
|
|
3965
|
+
cardSizes: Hl,
|
|
3966
|
+
clUiAccordion: xl,
|
|
3967
|
+
clUiAccordionHeader: Al,
|
|
3968
|
+
clUiAccordionItem: Sl,
|
|
3969
|
+
clUiApp: ql,
|
|
3958
3970
|
clUiButton: we,
|
|
3959
|
-
clUiCard:
|
|
3960
|
-
clUiComboBox:
|
|
3961
|
-
clUiFooter:
|
|
3971
|
+
clUiCard: Gl,
|
|
3972
|
+
clUiComboBox: Yt,
|
|
3973
|
+
clUiFooter: sn,
|
|
3962
3974
|
clUiGrid: Uo,
|
|
3963
3975
|
clUiHeader: Bo,
|
|
3964
3976
|
clUiHeaderMenu: Jo,
|
|
3965
|
-
clUiInput:
|
|
3977
|
+
clUiInput: fe,
|
|
3966
3978
|
clUiLanguageSwitcher: la,
|
|
3967
|
-
clUiLoadingSpinner:
|
|
3979
|
+
clUiLoadingSpinner: Ge,
|
|
3968
3980
|
clUiLogin: fa,
|
|
3969
|
-
clUiModal:
|
|
3981
|
+
clUiModal: rl,
|
|
3970
3982
|
clUiNavigation: ya,
|
|
3971
3983
|
clUiNavigationGroup: ka,
|
|
3972
3984
|
clUiNavigationIcon: wa,
|
|
3973
3985
|
clUiNavigationItem: Na,
|
|
3974
3986
|
clUiNavigationSection: ja,
|
|
3975
|
-
clUiNotification:
|
|
3987
|
+
clUiNotification: il,
|
|
3976
3988
|
clUiTab: qa,
|
|
3977
3989
|
clUiTabContent: za,
|
|
3978
3990
|
clUiTabHeader: Ua,
|
|
3979
|
-
filterMethodTypes:
|
|
3980
|
-
gridColumnTypes:
|
|
3991
|
+
filterMethodTypes: Jn,
|
|
3992
|
+
gridColumnTypes: Gn,
|
|
3981
3993
|
inputTypes: Ko,
|
|
3982
|
-
isComboBoxCreateRequest:
|
|
3983
|
-
isComboBoxItem:
|
|
3984
|
-
isFilterRequest:
|
|
3985
|
-
isFilterResponse:
|
|
3986
|
-
isGridColumn:
|
|
3987
|
-
isGridColumnArray:
|
|
3994
|
+
isComboBoxCreateRequest: _t,
|
|
3995
|
+
isComboBoxItem: Xt,
|
|
3996
|
+
isFilterRequest: Qn,
|
|
3997
|
+
isFilterResponse: Yn,
|
|
3998
|
+
isGridColumn: ul,
|
|
3999
|
+
isGridColumnArray: Hn,
|
|
3988
4000
|
isLanguageArray: Zo,
|
|
3989
|
-
isLanguageLocaleFormat:
|
|
4001
|
+
isLanguageLocaleFormat: Le,
|
|
3990
4002
|
modalColours: ga,
|
|
3991
4003
|
modalSizes: ma,
|
|
3992
|
-
stringFormats:
|
|
4004
|
+
stringFormats: Wn,
|
|
3993
4005
|
tabColours: La,
|
|
3994
4006
|
tabScroll: Fa
|
|
3995
4007
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
3996
4008
|
const lc = (e) => {
|
|
3997
|
-
e.use(ee), e.component("Icon",
|
|
4009
|
+
e.use(ee), e.component("Icon", fl), Object.entries(Va).forEach(([
|
|
3998
4010
|
n,
|
|
3999
4011
|
t
|
|
4000
4012
|
]) => {
|
|
@@ -4005,61 +4017,61 @@ export {
|
|
|
4005
4017
|
H as DateFormat,
|
|
4006
4018
|
ye as FilterOperation,
|
|
4007
4019
|
ne as NumberFormat,
|
|
4008
|
-
|
|
4009
|
-
|
|
4010
|
-
|
|
4011
|
-
|
|
4012
|
-
|
|
4013
|
-
|
|
4014
|
-
|
|
4020
|
+
Ll as buttonColours,
|
|
4021
|
+
Fl as buttonSizes,
|
|
4022
|
+
Hl as cardSizes,
|
|
4023
|
+
xl as clUiAccordion,
|
|
4024
|
+
Al as clUiAccordionHeader,
|
|
4025
|
+
Sl as clUiAccordionItem,
|
|
4026
|
+
ql as clUiApp,
|
|
4015
4027
|
we as clUiButton,
|
|
4016
|
-
|
|
4017
|
-
|
|
4018
|
-
|
|
4028
|
+
Gl as clUiCard,
|
|
4029
|
+
Yt as clUiComboBox,
|
|
4030
|
+
sn as clUiFooter,
|
|
4019
4031
|
Uo as clUiGrid,
|
|
4020
4032
|
Bo as clUiHeader,
|
|
4021
4033
|
Jo as clUiHeaderMenu,
|
|
4022
|
-
|
|
4034
|
+
fe as clUiInput,
|
|
4023
4035
|
la as clUiLanguageSwitcher,
|
|
4024
|
-
|
|
4036
|
+
Ge as clUiLoadingSpinner,
|
|
4025
4037
|
fa as clUiLogin,
|
|
4026
|
-
|
|
4038
|
+
rl as clUiModal,
|
|
4027
4039
|
ya as clUiNavigation,
|
|
4028
4040
|
ka as clUiNavigationGroup,
|
|
4029
4041
|
wa as clUiNavigationIcon,
|
|
4030
4042
|
Na as clUiNavigationItem,
|
|
4031
4043
|
ja as clUiNavigationSection,
|
|
4032
|
-
|
|
4044
|
+
il as clUiNotification,
|
|
4033
4045
|
qa as clUiTab,
|
|
4034
4046
|
za as clUiTabContent,
|
|
4035
4047
|
Ua as clUiTabHeader,
|
|
4036
|
-
|
|
4048
|
+
Kl as datetimeFormats,
|
|
4037
4049
|
lc as default,
|
|
4038
|
-
|
|
4039
|
-
|
|
4050
|
+
Jn as filterMethodTypes,
|
|
4051
|
+
Gn as gridColumnTypes,
|
|
4040
4052
|
ee as i18n,
|
|
4041
4053
|
Ko as inputTypes,
|
|
4042
|
-
|
|
4043
|
-
|
|
4044
|
-
|
|
4045
|
-
|
|
4046
|
-
|
|
4047
|
-
|
|
4054
|
+
_t as isComboBoxCreateRequest,
|
|
4055
|
+
Xt as isComboBoxItem,
|
|
4056
|
+
Qn as isFilterRequest,
|
|
4057
|
+
Yn as isFilterResponse,
|
|
4058
|
+
ul as isGridColumn,
|
|
4059
|
+
Hn as isGridColumnArray,
|
|
4048
4060
|
Zo as isLanguageArray,
|
|
4049
|
-
|
|
4050
|
-
|
|
4061
|
+
Le as isLanguageLocaleFormat,
|
|
4062
|
+
Wl as messages,
|
|
4051
4063
|
ga as modalColours,
|
|
4052
4064
|
ma as modalSizes,
|
|
4053
|
-
|
|
4065
|
+
Jl as numberFormats,
|
|
4054
4066
|
ec as setCurrentLocale,
|
|
4055
4067
|
_a as setLocaleDateTimeFormats,
|
|
4056
4068
|
Ya as setLocaleMessages,
|
|
4057
4069
|
Xa as setLocaleNumberFormats,
|
|
4058
|
-
|
|
4059
|
-
|
|
4070
|
+
Ke as showNotification,
|
|
4071
|
+
Wn as stringFormats,
|
|
4060
4072
|
La as tabColours,
|
|
4061
4073
|
Fa as tabScroll,
|
|
4062
|
-
|
|
4063
|
-
|
|
4064
|
-
|
|
4074
|
+
Xl as validateEmail,
|
|
4075
|
+
Ql as validateMaxValue,
|
|
4076
|
+
Zl as validateMinValue
|
|
4065
4077
|
};
|