@citruslime/ui 2.0.2-beta.10 → 2.0.2-beta.12
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.
|
@@ -1,35 +1,35 @@
|
|
|
1
|
-
import { Icon as
|
|
2
|
-
import { defineComponent as H, ref as
|
|
3
|
-
import { generateStringId as
|
|
4
|
-
import { createI18n as
|
|
5
|
-
import
|
|
6
|
-
import { useDebouncer as
|
|
7
|
-
import { onClickOutside as
|
|
8
|
-
const
|
|
1
|
+
import { Icon as rl } from "@iconify/vue";
|
|
2
|
+
import { defineComponent as H, ref as j, openBlock as i, createElementBlock as d, renderSlot as D, normalizeProps as re, guardReactiveProps as we, resolveComponent as _, Fragment as z, createElementVNode as s, normalizeClass as U, createVNode as $, Transition as Te, withCtx as Z, withDirectives as L, vShow as F, createBlock as J, Teleport as He, renderList as ce, unref as o, mergeProps as me, toDisplayString as k, createCommentVNode as N, nextTick as Ce, computed as M, watch as ee, onMounted as je, onUnmounted as De, isRef as ve, normalizeStyle as Oe, vModelText as ul, withModifiers as ae, vModelDynamic as dl, withKeys as Ae, createTextVNode as Y, watchEffect as fl, createSlots as ml } from "vue";
|
|
3
|
+
import { generateStringId as gl } from "@citruslime/utils";
|
|
4
|
+
import { createI18n as bl, useI18n as ue } from "vue-i18n";
|
|
5
|
+
import We from "flatpickr";
|
|
6
|
+
import { useDebouncer as Ge, copy as he } from "@citruslime/vue-utils";
|
|
7
|
+
import { onClickOutside as nl } from "@vueuse/core";
|
|
8
|
+
const vl = { class: "cl-overflow-hidden" }, hl = /* @__PURE__ */ H({
|
|
9
9
|
__name: "cl-ui-accordion",
|
|
10
10
|
props: {
|
|
11
11
|
exclusive: { type: Boolean, default: !1 }
|
|
12
12
|
},
|
|
13
13
|
setup(e) {
|
|
14
|
-
const n = e, t =
|
|
14
|
+
const n = e, t = j([]);
|
|
15
15
|
function l(f) {
|
|
16
|
-
let r = t.value.find((
|
|
16
|
+
let r = t.value.find((b) => b.id === f);
|
|
17
17
|
return r || (r = {
|
|
18
18
|
id: f,
|
|
19
19
|
open: !1
|
|
20
20
|
}, t.value.push(r)), r.open;
|
|
21
21
|
}
|
|
22
22
|
function c(f) {
|
|
23
|
-
const r = t.value.find((
|
|
24
|
-
r && (n.exclusive && t.value.forEach((
|
|
25
|
-
|
|
23
|
+
const r = t.value.find((b) => b.id === f);
|
|
24
|
+
r && (n.exclusive && t.value.forEach((b) => {
|
|
25
|
+
b.id !== f && (b.open = !1);
|
|
26
26
|
}), r.open = !r.open);
|
|
27
27
|
}
|
|
28
|
-
return (f, r) => (i(), d("div",
|
|
29
|
-
|
|
28
|
+
return (f, r) => (i(), d("div", vl, [
|
|
29
|
+
D(f.$slots, "default", re(we({ isItemOpen: l, toggleItem: c })))
|
|
30
30
|
]));
|
|
31
31
|
}
|
|
32
|
-
}),
|
|
32
|
+
}), pl = { class: "cl-absolute cl-left-5 cl-top-5" }, yl = { class: "cl-font-semibold cl-ml-10 cl-p-4 cl-select-none cl-text-grey-5" }, wl = { class: "cl-overflow-hidden" }, xl = { class: "cl-ml-10 cl-p-4" }, kl = /* @__PURE__ */ H({
|
|
33
33
|
__name: "cl-ui-accordion-item",
|
|
34
34
|
props: {
|
|
35
35
|
open: { type: Boolean },
|
|
@@ -53,8 +53,8 @@ const fl = { class: "cl-overflow-hidden" }, ml = /* @__PURE__ */ H({
|
|
|
53
53
|
}]),
|
|
54
54
|
onClick: l
|
|
55
55
|
}, [
|
|
56
|
-
s("div",
|
|
57
|
-
|
|
56
|
+
s("div", pl, [
|
|
57
|
+
$(r, {
|
|
58
58
|
class: U(["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
|
}]),
|
|
@@ -62,17 +62,17 @@ const fl = { class: "cl-overflow-hidden" }, ml = /* @__PURE__ */ H({
|
|
|
62
62
|
width: "20"
|
|
63
63
|
}, null, 8, ["class"])
|
|
64
64
|
]),
|
|
65
|
-
s("div",
|
|
66
|
-
|
|
65
|
+
s("div", yl, [
|
|
66
|
+
D(c.$slots, "title")
|
|
67
67
|
])
|
|
68
68
|
], 2),
|
|
69
|
-
s("div",
|
|
70
|
-
|
|
71
|
-
default:
|
|
72
|
-
L(s("div",
|
|
73
|
-
|
|
69
|
+
s("div", wl, [
|
|
70
|
+
$(Te, { name: "grow-down" }, {
|
|
71
|
+
default: Z(() => [
|
|
72
|
+
L(s("div", xl, [
|
|
73
|
+
D(c.$slots, "default")
|
|
74
74
|
], 512), [
|
|
75
|
-
[
|
|
75
|
+
[F, e.open]
|
|
76
76
|
])
|
|
77
77
|
]),
|
|
78
78
|
_: 3
|
|
@@ -81,32 +81,32 @@ const fl = { class: "cl-overflow-hidden" }, ml = /* @__PURE__ */ H({
|
|
|
81
81
|
], 64);
|
|
82
82
|
};
|
|
83
83
|
}
|
|
84
|
-
}),
|
|
84
|
+
}), pe = (e, n) => {
|
|
85
85
|
const t = e.__vccOpts || e;
|
|
86
86
|
for (const [l, c] of n)
|
|
87
87
|
t[l] = c;
|
|
88
88
|
return t;
|
|
89
|
-
},
|
|
90
|
-
function
|
|
91
|
-
return i(), d("div",
|
|
92
|
-
|
|
89
|
+
}, $l = {}, Tl = { 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 Cl(e, n) {
|
|
91
|
+
return i(), d("div", Tl, [
|
|
92
|
+
D(e.$slots, "default")
|
|
93
93
|
]);
|
|
94
94
|
}
|
|
95
|
-
const
|
|
96
|
-
function
|
|
95
|
+
const Sl = /* @__PURE__ */ pe($l, [["render", Cl]]), qe = j([]);
|
|
96
|
+
function Je(e) {
|
|
97
97
|
const n = {
|
|
98
|
-
id:
|
|
98
|
+
id: gl(),
|
|
99
99
|
...e
|
|
100
100
|
};
|
|
101
|
-
|
|
101
|
+
qe.value.push(n), setTimeout(() => ol(n), e.duration);
|
|
102
102
|
}
|
|
103
|
-
function
|
|
104
|
-
|
|
103
|
+
function ol(e) {
|
|
104
|
+
qe.value = qe.value.filter((n) => n.id !== e.id);
|
|
105
105
|
}
|
|
106
|
-
const
|
|
106
|
+
const Ol = ["onClick"], El = { class: "cl-flex-1 cl-select-none cl-text-ellipsis cl-w-64" }, Al = {
|
|
107
107
|
inheritAttrs: !1
|
|
108
|
-
},
|
|
109
|
-
...
|
|
108
|
+
}, cl = /* @__PURE__ */ H({
|
|
109
|
+
...Al,
|
|
110
110
|
__name: "cl-ui-notification",
|
|
111
111
|
props: {
|
|
112
112
|
container: { default: "body" },
|
|
@@ -115,7 +115,7 @@ const $l = ["onClick"], Tl = { class: "cl-flex-1 cl-select-none cl-text-ellipsis
|
|
|
115
115
|
setup(e) {
|
|
116
116
|
return (n, t) => {
|
|
117
117
|
const l = _("icon");
|
|
118
|
-
return i(),
|
|
118
|
+
return i(), J(He, { to: e.container }, [
|
|
119
119
|
s("div", {
|
|
120
120
|
class: U(["cl-fixed cl-w-80 cl-z-40", {
|
|
121
121
|
"cl-top-5 cl-left-5": e.position === "top-left",
|
|
@@ -126,7 +126,7 @@ const $l = ["onClick"], Tl = { 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
|
-
(i(!0), d(z, null, ce(o(
|
|
129
|
+
(i(!0), d(z, null, ce(o(qe), (c, f) => (i(), d("div", me(n.$attrs, {
|
|
130
130
|
key: f,
|
|
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": c.colour === "default",
|
|
@@ -135,56 +135,56 @@ const $l = ["onClick"], Tl = { class: "cl-flex-1 cl-select-none cl-text-ellipsis
|
|
|
135
135
|
"cl-bg-danger-default": c.colour === "danger",
|
|
136
136
|
"cl-bg-warning-default": c.colour === "warning"
|
|
137
137
|
}],
|
|
138
|
-
onClick: (r) => o(
|
|
138
|
+
onClick: (r) => o(ol)(c)
|
|
139
139
|
}), [
|
|
140
|
-
s("span",
|
|
141
|
-
|
|
140
|
+
s("span", El, k(c.message), 1),
|
|
141
|
+
$(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, Ol))), 128))
|
|
148
148
|
], 2)
|
|
149
149
|
], 8, ["to"]);
|
|
150
150
|
};
|
|
151
151
|
}
|
|
152
|
-
}),
|
|
152
|
+
}), jl = { 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" }, Ml = /* @__PURE__ */ H({
|
|
153
153
|
__name: "cl-ui-app",
|
|
154
154
|
props: {
|
|
155
155
|
removePadding: { type: Boolean, default: !1 }
|
|
156
156
|
},
|
|
157
157
|
setup(e) {
|
|
158
158
|
return (n, t) => (i(), d(z, null, [
|
|
159
|
-
|
|
160
|
-
s("div",
|
|
161
|
-
|
|
159
|
+
$(cl),
|
|
160
|
+
s("div", jl, [
|
|
161
|
+
D(n.$slots, "header"),
|
|
162
162
|
s("div", {
|
|
163
163
|
class: U(["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
|
-
|
|
167
|
+
D(n.$slots, "navigation"),
|
|
168
168
|
s("div", {
|
|
169
169
|
class: U(["cl-grow cl-max-h-full cl-overflow-x-hidden cl-overflow-y-auto cl-w-auto", {
|
|
170
170
|
"md:cl-p-8 cl-p-2": !e.removePadding
|
|
171
171
|
}])
|
|
172
172
|
}, [
|
|
173
|
-
|
|
173
|
+
D(n.$slots, "default")
|
|
174
174
|
], 2)
|
|
175
175
|
], 2)
|
|
176
176
|
])
|
|
177
177
|
], 64));
|
|
178
178
|
}
|
|
179
179
|
});
|
|
180
|
-
const
|
|
181
|
-
function
|
|
182
|
-
return i(), d("div",
|
|
180
|
+
const Il = {}, Nl = { class: "loading-spinner" };
|
|
181
|
+
function ql(e, n) {
|
|
182
|
+
return i(), d("div", Nl);
|
|
183
183
|
}
|
|
184
|
-
const
|
|
184
|
+
const al = /* @__PURE__ */ pe(Il, [["render", ql], ["__scopeId", "data-v-a21dc5d2"]]), Dl = ["disabled"], Rl = {
|
|
185
185
|
inheritAttrs: !1
|
|
186
|
-
},
|
|
187
|
-
...
|
|
186
|
+
}, $e = /* @__PURE__ */ H({
|
|
187
|
+
...Rl,
|
|
188
188
|
__name: "cl-ui-button",
|
|
189
189
|
props: {
|
|
190
190
|
colour: { default: "default" },
|
|
@@ -193,16 +193,16 @@ const tl = /* @__PURE__ */ he(Ol, [["render", jl], ["__scopeId", "data-v-a21dc5d
|
|
|
193
193
|
disabled: { type: Boolean, default: !1 }
|
|
194
194
|
},
|
|
195
195
|
setup(e, { expose: n }) {
|
|
196
|
-
const t =
|
|
196
|
+
const t = j(null);
|
|
197
197
|
return n({
|
|
198
198
|
focus() {
|
|
199
199
|
t.value && t.value.focus();
|
|
200
200
|
}
|
|
201
201
|
}), (l, c) => (i(), d(z, null, [
|
|
202
|
-
L(
|
|
203
|
-
[
|
|
202
|
+
L($(al, null, null, 512), [
|
|
203
|
+
[F, e.loading]
|
|
204
204
|
]),
|
|
205
|
-
L(s("button",
|
|
205
|
+
L(s("button", me(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,23 +218,23 @@ const tl = /* @__PURE__ */ he(Ol, [["render", jl], ["__scopeId", "data-v-a21dc5d
|
|
|
218
218
|
}],
|
|
219
219
|
disabled: e.disabled
|
|
220
220
|
}), [
|
|
221
|
-
|
|
222
|
-
], 16,
|
|
223
|
-
[
|
|
221
|
+
D(l.$slots, "default")
|
|
222
|
+
], 16, Dl), [
|
|
223
|
+
[F, !e.loading]
|
|
224
224
|
])
|
|
225
225
|
], 64));
|
|
226
226
|
}
|
|
227
|
-
}),
|
|
227
|
+
}), Ul = [
|
|
228
228
|
"default",
|
|
229
229
|
"primary",
|
|
230
230
|
"secondary",
|
|
231
231
|
"danger",
|
|
232
232
|
"blue"
|
|
233
|
-
],
|
|
233
|
+
], zl = [
|
|
234
234
|
"small",
|
|
235
235
|
"medium",
|
|
236
236
|
"large"
|
|
237
|
-
],
|
|
237
|
+
], Bl = { key: 0 }, Ll = /* @__PURE__ */ H({
|
|
238
238
|
__name: "cl-ui-card",
|
|
239
239
|
props: {
|
|
240
240
|
size: { default: "medium" },
|
|
@@ -246,8 +246,8 @@ const tl = /* @__PURE__ */ he(Ol, [["render", jl], ["__scopeId", "data-v-a21dc5d
|
|
|
246
246
|
"cl-cursor-pointer hover:cl-shadow-xl hover:cl-border-grey-0": e.hover
|
|
247
247
|
}])
|
|
248
248
|
}, [
|
|
249
|
-
n.$slots.image ? (i(), d("div",
|
|
250
|
-
|
|
249
|
+
n.$slots.image ? (i(), d("div", Bl, [
|
|
250
|
+
D(n.$slots, "image")
|
|
251
251
|
])) : N("", !0),
|
|
252
252
|
n.$slots.title ? (i(), d("div", {
|
|
253
253
|
key: 1,
|
|
@@ -258,7 +258,7 @@ const tl = /* @__PURE__ */ he(Ol, [["render", jl], ["__scopeId", "data-v-a21dc5d
|
|
|
258
258
|
"cl-border-t": n.$slots.image
|
|
259
259
|
}])
|
|
260
260
|
}, [
|
|
261
|
-
|
|
261
|
+
D(n.$slots, "title")
|
|
262
262
|
], 2)) : N("", !0),
|
|
263
263
|
s("div", {
|
|
264
264
|
class: U(["cl-border-grey-2", {
|
|
@@ -268,7 +268,7 @@ const tl = /* @__PURE__ */ he(Ol, [["render", jl], ["__scopeId", "data-v-a21dc5d
|
|
|
268
268
|
"cl-border-t": n.$slots.image || n.$slots.title
|
|
269
269
|
}])
|
|
270
270
|
}, [
|
|
271
|
-
|
|
271
|
+
D(n.$slots, "default")
|
|
272
272
|
], 2),
|
|
273
273
|
n.$slots.footer ? (i(), d("div", {
|
|
274
274
|
key: 2,
|
|
@@ -278,17 +278,17 @@ const tl = /* @__PURE__ */ he(Ol, [["render", jl], ["__scopeId", "data-v-a21dc5d
|
|
|
278
278
|
"cl-p-6": e.size === "large"
|
|
279
279
|
}])
|
|
280
280
|
}, [
|
|
281
|
-
|
|
281
|
+
D(n.$slots, "footer")
|
|
282
282
|
], 2)) : N("", !0)
|
|
283
283
|
], 2));
|
|
284
284
|
}
|
|
285
|
-
}),
|
|
285
|
+
}), Pl = [
|
|
286
286
|
"small",
|
|
287
287
|
"medium",
|
|
288
288
|
"large"
|
|
289
289
|
];
|
|
290
|
-
var ne = /* @__PURE__ */ ((e) => (e.CURRENCY = "currency", e.PERCENTAGE = "percentage", e.INTEGER = "integer", e.DECIMAL = "decimal", e.MULTIPLIER = "multiplier", e))(ne || {}),
|
|
291
|
-
const
|
|
290
|
+
var ne = /* @__PURE__ */ ((e) => (e.CURRENCY = "currency", e.PERCENTAGE = "percentage", e.INTEGER = "integer", e.DECIMAL = "decimal", e.MULTIPLIER = "multiplier", e))(ne || {}), K = /* @__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))(K || {});
|
|
291
|
+
const Fl = {
|
|
292
292
|
"en-GB": {
|
|
293
293
|
comboBox: {
|
|
294
294
|
emptyHintText: "Choose a {object}",
|
|
@@ -369,7 +369,7 @@ const zl = {
|
|
|
369
369
|
timePlaceholder: "Select time"
|
|
370
370
|
}
|
|
371
371
|
}
|
|
372
|
-
},
|
|
372
|
+
}, Vl = {
|
|
373
373
|
"en-GB": {
|
|
374
374
|
[ne.PERCENTAGE]: {
|
|
375
375
|
style: "percent"
|
|
@@ -386,81 +386,81 @@ const zl = {
|
|
|
386
386
|
currencyDisplay: "symbol"
|
|
387
387
|
}
|
|
388
388
|
}
|
|
389
|
-
},
|
|
389
|
+
}, Hl = {
|
|
390
390
|
"en-GB": {
|
|
391
|
-
[
|
|
391
|
+
[K.SHORT_DATE]: {
|
|
392
392
|
day: "numeric",
|
|
393
393
|
month: "numeric",
|
|
394
394
|
year: "2-digit"
|
|
395
395
|
},
|
|
396
|
-
[
|
|
396
|
+
[K.SHORT_DATETIME]: {
|
|
397
397
|
day: "numeric",
|
|
398
398
|
month: "numeric",
|
|
399
399
|
year: "2-digit",
|
|
400
400
|
hour: "numeric",
|
|
401
401
|
minute: "numeric"
|
|
402
402
|
},
|
|
403
|
-
[
|
|
403
|
+
[K.DATE]: {
|
|
404
404
|
day: "numeric",
|
|
405
405
|
month: "numeric",
|
|
406
406
|
year: "numeric"
|
|
407
407
|
},
|
|
408
|
-
[
|
|
408
|
+
[K.DATETIME]: {
|
|
409
409
|
day: "numeric",
|
|
410
410
|
month: "numeric",
|
|
411
411
|
year: "numeric",
|
|
412
412
|
hour: "numeric",
|
|
413
413
|
minute: "numeric"
|
|
414
414
|
},
|
|
415
|
-
[
|
|
415
|
+
[K.LONG_DATE]: {
|
|
416
416
|
day: "numeric",
|
|
417
417
|
month: "long",
|
|
418
418
|
year: "numeric"
|
|
419
419
|
},
|
|
420
|
-
[
|
|
420
|
+
[K.LONG_DATETIME]: {
|
|
421
421
|
day: "numeric",
|
|
422
422
|
month: "long",
|
|
423
423
|
year: "numeric",
|
|
424
424
|
hour: "numeric",
|
|
425
425
|
minute: "numeric"
|
|
426
426
|
},
|
|
427
|
-
[
|
|
427
|
+
[K.TIME]: {
|
|
428
428
|
hour: "numeric",
|
|
429
429
|
minute: "numeric"
|
|
430
430
|
},
|
|
431
|
-
[
|
|
431
|
+
[K.MONTH_YEAR]: {
|
|
432
432
|
month: "long",
|
|
433
433
|
year: "numeric"
|
|
434
434
|
}
|
|
435
435
|
}
|
|
436
|
-
}, oe =
|
|
436
|
+
}, oe = bl({
|
|
437
437
|
locale: "en-GB",
|
|
438
438
|
fallbackLocale: "en-GB",
|
|
439
|
-
messages:
|
|
440
|
-
numberFormats:
|
|
441
|
-
datetimeFormats:
|
|
439
|
+
messages: Fl,
|
|
440
|
+
numberFormats: Vl,
|
|
441
|
+
datetimeFormats: Hl,
|
|
442
442
|
useScope: "global",
|
|
443
443
|
missingWarn: !1,
|
|
444
444
|
fallbackWarn: !1,
|
|
445
445
|
warnHtmlMessage: !1
|
|
446
446
|
});
|
|
447
|
-
function
|
|
448
|
-
return oe.global.mergeLocaleMessage(e, n),
|
|
447
|
+
function Zc(e, n) {
|
|
448
|
+
return oe.global.mergeLocaleMessage(e, n), Ce();
|
|
449
449
|
}
|
|
450
|
-
function
|
|
451
|
-
return oe.global.mergeNumberFormat(e, n),
|
|
450
|
+
function Qc(e, n) {
|
|
451
|
+
return oe.global.mergeNumberFormat(e, n), Ce();
|
|
452
452
|
}
|
|
453
|
-
function
|
|
454
|
-
return oe.global.mergeDateTimeFormat(e, n),
|
|
453
|
+
function Yc(e, n) {
|
|
454
|
+
return oe.global.mergeDateTimeFormat(e, n), Ce();
|
|
455
455
|
}
|
|
456
|
-
function
|
|
457
|
-
return oe.global.locale.value = e,
|
|
456
|
+
function Xc(e) {
|
|
457
|
+
return oe.global.locale.value = e, Ce();
|
|
458
458
|
}
|
|
459
|
-
const { t:
|
|
460
|
-
function
|
|
459
|
+
const { t: de } = oe.global;
|
|
460
|
+
function Gl(e, n, t, l) {
|
|
461
461
|
const c = oe.global.locale.value;
|
|
462
462
|
return l instanceof Date && (l = l.getTime()), new Promise((f) => {
|
|
463
|
-
var
|
|
463
|
+
var b;
|
|
464
464
|
let r = {
|
|
465
465
|
valid: !1,
|
|
466
466
|
message: ""
|
|
@@ -474,20 +474,20 @@ function Pl(e, n, t, l) {
|
|
|
474
474
|
case "tel":
|
|
475
475
|
case "text":
|
|
476
476
|
case "url":
|
|
477
|
-
a = ((
|
|
477
|
+
a = ((b = l == null ? void 0 : l.length) != null ? b : 0) >= e, r = fe(a, de("input.greaterOrEqualToCharacters", { label: t, min: e.toString() }));
|
|
478
478
|
break;
|
|
479
479
|
case "number":
|
|
480
480
|
case "range":
|
|
481
|
-
a = l >= e, r =
|
|
481
|
+
a = l >= e, r = fe(a, de("input.greaterOrEqualToValue", { label: t, min: e.toString() }));
|
|
482
482
|
break;
|
|
483
483
|
case "date":
|
|
484
|
-
a = l >= new Date(e).getTime(), r =
|
|
484
|
+
a = l >= new Date(e).getTime(), r = fe(a, de("input.afterOrEqualToValue", { label: t, min: new Date(e).toLocaleDateString(c) }));
|
|
485
485
|
break;
|
|
486
486
|
case "datetime":
|
|
487
|
-
a = l >= new Date(e).getTime(), r =
|
|
487
|
+
a = l >= new Date(e).getTime(), r = fe(a, de("input.afterOrEqualToValue", { label: t, min: oe.global.d(new Date(e), K.DATETIME, c != null ? c : oe.global.locale.value) }));
|
|
488
488
|
break;
|
|
489
489
|
case "time":
|
|
490
|
-
u = e.toDateFromTime(), a = l >= u, r =
|
|
490
|
+
u = e.toDateFromTime(), a = l >= u, r = fe(a, de("input.afterOrEqualToValue", { label: t, min: oe.global.d(new Date(u), K.TIME, c != null ? c : oe.global.locale.value) }));
|
|
491
491
|
break;
|
|
492
492
|
default:
|
|
493
493
|
r.valid = !0;
|
|
@@ -497,10 +497,10 @@ function Pl(e, n, t, l) {
|
|
|
497
497
|
f(r);
|
|
498
498
|
});
|
|
499
499
|
}
|
|
500
|
-
function
|
|
500
|
+
function Wl(e, n, t, l) {
|
|
501
501
|
const c = oe.global.locale.value;
|
|
502
502
|
return l instanceof Date && (l = l.getTime()), new Promise((f) => {
|
|
503
|
-
var
|
|
503
|
+
var b;
|
|
504
504
|
let r = {
|
|
505
505
|
valid: !1,
|
|
506
506
|
message: ""
|
|
@@ -514,20 +514,20 @@ function Vl(e, n, t, l) {
|
|
|
514
514
|
case "tel":
|
|
515
515
|
case "text":
|
|
516
516
|
case "url":
|
|
517
|
-
a = ((
|
|
517
|
+
a = ((b = l == null ? void 0 : l.length) != null ? b : 0) <= e, r = fe(a, de("input.lessOrEqualToCharacters", { label: t, max: e.toString() }));
|
|
518
518
|
break;
|
|
519
519
|
case "number":
|
|
520
520
|
case "range":
|
|
521
|
-
a = l <= e, r =
|
|
521
|
+
a = l <= e, r = fe(a, de("input.lessOrEqualToValue", { label: t, max: e.toString() }));
|
|
522
522
|
break;
|
|
523
523
|
case "date":
|
|
524
|
-
a = l <= new Date(e).getTime(), r =
|
|
524
|
+
a = l <= new Date(e).getTime(), r = fe(a, de("input.beforeOrEqualToValue", { label: t, max: new Date(e).toLocaleDateString(c) }));
|
|
525
525
|
break;
|
|
526
526
|
case "datetime":
|
|
527
|
-
a = l <= new Date(e).getTime(), r =
|
|
527
|
+
a = l <= new Date(e).getTime(), r = fe(a, de("input.afterOrEqualToValue", { label: t, min: oe.global.d(new Date(e), K.DATETIME, c != null ? c : oe.global.locale.value) }));
|
|
528
528
|
break;
|
|
529
529
|
case "time":
|
|
530
|
-
u = e.toDateFromTime(), a = l <= u, r =
|
|
530
|
+
u = e.toDateFromTime(), a = l <= u, r = fe(a, de("input.afterOrEqualToValue", { label: t, min: oe.global.d(new Date(u), K.TIME, c != null ? c : oe.global.locale.value) }));
|
|
531
531
|
break;
|
|
532
532
|
default:
|
|
533
533
|
r.valid = !0;
|
|
@@ -537,29 +537,29 @@ function Vl(e, n, t, l) {
|
|
|
537
537
|
f(r);
|
|
538
538
|
});
|
|
539
539
|
}
|
|
540
|
-
function
|
|
540
|
+
function Jl(e, n) {
|
|
541
541
|
return new Promise((t) => {
|
|
542
|
-
const l = n != null && n !== "" && n.toString().trim() !== "", c =
|
|
542
|
+
const l = n != null && n !== "" && n.toString().trim() !== "", c = fe(l, de("input.valueIsRequired", { label: e }));
|
|
543
543
|
t(c);
|
|
544
544
|
});
|
|
545
545
|
}
|
|
546
|
-
function
|
|
546
|
+
function Kl(e, n) {
|
|
547
547
|
return new Promise((t) => {
|
|
548
|
-
const c = 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, f =
|
|
548
|
+
const c = 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, f = fe(c, de("input.valueNotValidEmail", { label: e }));
|
|
549
549
|
t(f);
|
|
550
550
|
});
|
|
551
551
|
}
|
|
552
|
-
function
|
|
552
|
+
function fe(e, n) {
|
|
553
553
|
return {
|
|
554
554
|
valid: e,
|
|
555
555
|
message: e ? "" : n
|
|
556
556
|
};
|
|
557
557
|
}
|
|
558
|
-
var
|
|
558
|
+
var Se = typeof globalThis < "u" ? globalThis : typeof window < "u" ? window : typeof global < "u" ? global : typeof self < "u" ? self : {}, Ue = { exports: {} };
|
|
559
559
|
(function(e, n) {
|
|
560
560
|
(function(t, l) {
|
|
561
561
|
l(n);
|
|
562
|
-
})(
|
|
562
|
+
})(Se, function(t) {
|
|
563
563
|
var l = typeof window < "u" && window.flatpickr !== void 0 ? window.flatpickr : {
|
|
564
564
|
l10ns: {}
|
|
565
565
|
}, c = {
|
|
@@ -616,12 +616,12 @@ var Te = typeof globalThis < "u" ? globalThis : typeof window < "u" ? window : t
|
|
|
616
616
|
var f = l.l10ns;
|
|
617
617
|
t.German = c, t.default = f, Object.defineProperty(t, "__esModule", { value: !0 });
|
|
618
618
|
});
|
|
619
|
-
})(
|
|
620
|
-
var
|
|
619
|
+
})(Ue, Ue.exports);
|
|
620
|
+
var ze = { exports: {} };
|
|
621
621
|
(function(e, n) {
|
|
622
622
|
(function(t, l) {
|
|
623
623
|
l(n);
|
|
624
|
-
})(
|
|
624
|
+
})(Se, function(t) {
|
|
625
625
|
var l = {
|
|
626
626
|
weekdays: {
|
|
627
627
|
shorthand: ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"],
|
|
@@ -695,12 +695,12 @@ var De = { exports: {} };
|
|
|
695
695
|
};
|
|
696
696
|
t.default = l, t.english = l, Object.defineProperty(t, "__esModule", { value: !0 });
|
|
697
697
|
});
|
|
698
|
-
})(
|
|
699
|
-
var
|
|
698
|
+
})(ze, ze.exports);
|
|
699
|
+
var Be = { exports: {} };
|
|
700
700
|
(function(e, n) {
|
|
701
701
|
(function(t, l) {
|
|
702
702
|
l(n);
|
|
703
|
-
})(
|
|
703
|
+
})(Se, function(t) {
|
|
704
704
|
var l = typeof window < "u" && window.flatpickr !== void 0 ? window.flatpickr : {
|
|
705
705
|
l10ns: {}
|
|
706
706
|
}, c = {
|
|
@@ -757,12 +757,12 @@ var Re = { exports: {} };
|
|
|
757
757
|
var f = l.l10ns;
|
|
758
758
|
t.Spanish = c, t.default = f, Object.defineProperty(t, "__esModule", { value: !0 });
|
|
759
759
|
});
|
|
760
|
-
})(
|
|
761
|
-
var
|
|
760
|
+
})(Be, Be.exports);
|
|
761
|
+
var Le = { exports: {} };
|
|
762
762
|
(function(e, n) {
|
|
763
763
|
(function(t, l) {
|
|
764
764
|
l(n);
|
|
765
|
-
})(
|
|
765
|
+
})(Se, function(t) {
|
|
766
766
|
var l = typeof window < "u" && window.flatpickr !== void 0 ? window.flatpickr : {
|
|
767
767
|
l10ns: {}
|
|
768
768
|
}, c = {
|
|
@@ -822,12 +822,12 @@ var Ue = { exports: {} };
|
|
|
822
822
|
var f = l.l10ns;
|
|
823
823
|
t.French = c, t.default = f, Object.defineProperty(t, "__esModule", { value: !0 });
|
|
824
824
|
});
|
|
825
|
-
})(
|
|
826
|
-
var
|
|
825
|
+
})(Le, Le.exports);
|
|
826
|
+
var Pe = { exports: {} };
|
|
827
827
|
(function(e, n) {
|
|
828
828
|
(function(t, l) {
|
|
829
829
|
l(n);
|
|
830
|
-
})(
|
|
830
|
+
})(Se, function(t) {
|
|
831
831
|
var l = typeof window < "u" && window.flatpickr !== void 0 ? window.flatpickr : {
|
|
832
832
|
l10ns: {}
|
|
833
833
|
}, c = {
|
|
@@ -887,12 +887,12 @@ var ze = { exports: {} };
|
|
|
887
887
|
var f = l.l10ns;
|
|
888
888
|
t.Italian = c, t.default = f, Object.defineProperty(t, "__esModule", { value: !0 });
|
|
889
889
|
});
|
|
890
|
-
})(
|
|
891
|
-
var
|
|
890
|
+
})(Pe, Pe.exports);
|
|
891
|
+
var Fe = { exports: {} };
|
|
892
892
|
(function(e, n) {
|
|
893
893
|
(function(t, l) {
|
|
894
894
|
l(n);
|
|
895
|
-
})(
|
|
895
|
+
})(Se, function(t) {
|
|
896
896
|
var l = typeof window < "u" && window.flatpickr !== void 0 ? window.flatpickr : {
|
|
897
897
|
l10ns: {}
|
|
898
898
|
}, c = {
|
|
@@ -952,38 +952,38 @@ var Be = { exports: {} };
|
|
|
952
952
|
var f = l.l10ns;
|
|
953
953
|
t.Dutch = c, t.default = f, Object.defineProperty(t, "__esModule", { value: !0 });
|
|
954
954
|
});
|
|
955
|
-
})(
|
|
956
|
-
function
|
|
955
|
+
})(Fe, Fe.exports);
|
|
956
|
+
function Zl() {
|
|
957
957
|
return new Date("1990-01-02T12:05");
|
|
958
958
|
}
|
|
959
|
-
function
|
|
959
|
+
function Ql(e, n, t) {
|
|
960
960
|
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");
|
|
961
961
|
}
|
|
962
|
-
function
|
|
962
|
+
function Yl(e) {
|
|
963
963
|
let n;
|
|
964
964
|
switch (e) {
|
|
965
965
|
case "de-DE":
|
|
966
|
-
n =
|
|
966
|
+
n = Ue.exports.German;
|
|
967
967
|
break;
|
|
968
968
|
case "fr-FR":
|
|
969
|
-
n =
|
|
969
|
+
n = Le.exports.French;
|
|
970
970
|
break;
|
|
971
971
|
case "nl-NL":
|
|
972
|
-
n =
|
|
972
|
+
n = Fe.exports.Dutch;
|
|
973
973
|
break;
|
|
974
974
|
case "it-IT":
|
|
975
|
-
n =
|
|
975
|
+
n = Pe.exports.Italian;
|
|
976
976
|
break;
|
|
977
977
|
case "es-ES":
|
|
978
|
-
n =
|
|
978
|
+
n = Be.exports.Spanish;
|
|
979
979
|
break;
|
|
980
980
|
default:
|
|
981
|
-
n =
|
|
981
|
+
n = ze.exports.english;
|
|
982
982
|
break;
|
|
983
983
|
}
|
|
984
984
|
return n;
|
|
985
985
|
}
|
|
986
|
-
function
|
|
986
|
+
function Ke(e, n) {
|
|
987
987
|
let t;
|
|
988
988
|
if (e.indexOf("/") > -1 || e.indexOf("-") > -1) {
|
|
989
989
|
const l = new Date(e).toLocaleString(n), c = l.indexOf(",");
|
|
@@ -991,7 +991,7 @@ function Ge(e, n) {
|
|
|
991
991
|
}
|
|
992
992
|
return t;
|
|
993
993
|
}
|
|
994
|
-
function
|
|
994
|
+
function Ze(e) {
|
|
995
995
|
let n;
|
|
996
996
|
if (/([0-9]{2}:[0-9]{2})/.exec(e) !== null) {
|
|
997
997
|
const l = e.indexOf("T");
|
|
@@ -999,7 +999,7 @@ function We(e) {
|
|
|
999
999
|
}
|
|
1000
1000
|
return n;
|
|
1001
1001
|
}
|
|
1002
|
-
const
|
|
1002
|
+
const Xl = ["placeholder", "disabled"], _l = { class: "cl-absolute cl-bg-white cl-flex cl-right-2 cl-text-grey-4 cl-top-3.5" }, et = /* @__PURE__ */ H({
|
|
1003
1003
|
__name: "cl-ui-calendar",
|
|
1004
1004
|
props: {
|
|
1005
1005
|
date: { default: null },
|
|
@@ -1016,53 +1016,53 @@ const Kl = ["placeholder", "disabled"], Zl = { class: "cl-absolute cl-bg-white c
|
|
|
1016
1016
|
valueOutOfRange: null
|
|
1017
1017
|
},
|
|
1018
1018
|
setup(e, { expose: n, emit: t }) {
|
|
1019
|
-
const l = e, { d: c, getDateTimeFormat: f, locale: r, t:
|
|
1020
|
-
var
|
|
1021
|
-
let
|
|
1022
|
-
return ((
|
|
1023
|
-
}),
|
|
1024
|
-
var
|
|
1025
|
-
const
|
|
1026
|
-
...
|
|
1019
|
+
const l = e, { d: c, getDateTimeFormat: f, locale: r, t: b } = ue(), a = j(null), u = j(null), g = M(() => c(Zl(), l.type)), p = M(() => f(r.value)[l.type]), w = M(() => A()), O = M(() => P()), v = M(() => se()), B = M(() => Ke(l.min, r.value)), V = M(() => Ke(l.max, r.value)), q = j(!1), Q = M(() => {
|
|
1020
|
+
var te, be;
|
|
1021
|
+
let T = "H", G = "Y";
|
|
1022
|
+
return ((te = p.value) == null ? void 0 : te.hour12) === !0 && (T = "h"), ((be = p.value) == null ? void 0 : be.year) === "2-digit" && (G = "y"), Ql(g.value, T, G);
|
|
1023
|
+
}), C = M(() => {
|
|
1024
|
+
var G, te;
|
|
1025
|
+
const T = {
|
|
1026
|
+
...We.defaultConfig,
|
|
1027
1027
|
allowInput: !0,
|
|
1028
|
-
dateFormat:
|
|
1028
|
+
dateFormat: Q.value,
|
|
1029
1029
|
disableMobile: !0,
|
|
1030
|
-
enableTime: l.type ===
|
|
1031
|
-
locale:
|
|
1032
|
-
maxDate:
|
|
1030
|
+
enableTime: l.type === K.DATETIME || l.type === K.TIME,
|
|
1031
|
+
locale: Yl(r.value),
|
|
1032
|
+
maxDate: V.value,
|
|
1033
1033
|
maxTime: v.value,
|
|
1034
1034
|
minDate: B.value,
|
|
1035
|
-
minTime:
|
|
1035
|
+
minTime: O.value,
|
|
1036
1036
|
minuteIncrement: 1,
|
|
1037
1037
|
monthSelectorType: "static",
|
|
1038
|
-
noCalendar: l.type ===
|
|
1039
|
-
time_24hr: typeof ((
|
|
1038
|
+
noCalendar: l.type === K.TIME,
|
|
1039
|
+
time_24hr: typeof ((G = p.value) == null ? void 0 : G.hour12) > "u" || ((te = p.value) == null ? void 0 : te.hour12) === !1
|
|
1040
1040
|
};
|
|
1041
|
-
return l.date !== null && (
|
|
1041
|
+
return l.date !== null && (T.defaultDate = l.date), T;
|
|
1042
1042
|
});
|
|
1043
|
-
function
|
|
1044
|
-
const
|
|
1045
|
-
|
|
1043
|
+
function E(T, G, te) {
|
|
1044
|
+
const be = T.length > 0 ? T[0] : null;
|
|
1045
|
+
be !== l.date && !q.value && (t("update:date", be), be === null && t("valueOutOfRange")), q.value = !1;
|
|
1046
1046
|
}
|
|
1047
1047
|
function y() {
|
|
1048
|
-
|
|
1048
|
+
q.value = !0, t("update:date", null);
|
|
1049
1049
|
}
|
|
1050
|
-
function
|
|
1050
|
+
function h() {
|
|
1051
1051
|
if (a.value !== null) {
|
|
1052
|
-
let
|
|
1053
|
-
|
|
1054
|
-
let
|
|
1055
|
-
l.type === "time" ?
|
|
1052
|
+
let T = new Date();
|
|
1053
|
+
T.setHours(12, 0, 0, 0);
|
|
1054
|
+
let G;
|
|
1055
|
+
l.type === "time" ? G = l.min.toDateFromTime() : G = new Date(l.min), G > T && (T = G), q.value = !0, t("update:date", T);
|
|
1056
1056
|
}
|
|
1057
1057
|
}
|
|
1058
|
-
function
|
|
1059
|
-
a.value === null && u.value !== null && (a.value =
|
|
1058
|
+
function x() {
|
|
1059
|
+
a.value === null && u.value !== null && (a.value = We(u.value, C.value), a.value.config.onChange.push(E));
|
|
1060
1060
|
}
|
|
1061
|
-
function
|
|
1062
|
-
a.value !== null && (a.value.set(
|
|
1061
|
+
function I() {
|
|
1062
|
+
a.value !== null && (a.value.set(C.value), a.value.config.onChange.push(E));
|
|
1063
1063
|
}
|
|
1064
|
-
function X(
|
|
1065
|
-
a.value !== null && a.value.setDate(
|
|
1064
|
+
function X(T) {
|
|
1065
|
+
a.value !== null && a.value.setDate(T, !0);
|
|
1066
1066
|
}
|
|
1067
1067
|
function le() {
|
|
1068
1068
|
a.value !== null && a.value.clear();
|
|
@@ -1071,59 +1071,59 @@ const Kl = ["placeholder", "disabled"], Zl = { class: "cl-absolute cl-bg-white c
|
|
|
1071
1071
|
a.value !== null && (a.value.destroy(), a.value = null);
|
|
1072
1072
|
}
|
|
1073
1073
|
function A() {
|
|
1074
|
-
let
|
|
1074
|
+
let T = l.dateTimePlaceholder;
|
|
1075
1075
|
switch (l.type) {
|
|
1076
1076
|
case "date":
|
|
1077
|
-
|
|
1077
|
+
T = l.datePlaceholder === null ? b("calendar.datePlaceholder") : l.datePlaceholder;
|
|
1078
1078
|
break;
|
|
1079
1079
|
case "datetime":
|
|
1080
|
-
|
|
1080
|
+
T = l.dateTimePlaceholder === null ? b("calendar.dateTimePlaceholder") : l.dateTimePlaceholder;
|
|
1081
1081
|
break;
|
|
1082
1082
|
case "time":
|
|
1083
|
-
|
|
1083
|
+
T = l.timePlaceholder === null ? b("calendar.timePlaceholder") : l.timePlaceholder;
|
|
1084
1084
|
break;
|
|
1085
1085
|
default:
|
|
1086
|
-
|
|
1086
|
+
T = l.dateTimePlaceholder === null ? b("calendar.dateTimePlaceholder") : l.dateTimePlaceholder;
|
|
1087
1087
|
break;
|
|
1088
1088
|
}
|
|
1089
|
-
return
|
|
1089
|
+
return T;
|
|
1090
1090
|
}
|
|
1091
1091
|
function P() {
|
|
1092
|
-
let
|
|
1093
|
-
return (l.type ===
|
|
1092
|
+
let T;
|
|
1093
|
+
return (l.type === K.TIME || l.type === K.DATETIME) && (T = Ze(l.min)), T;
|
|
1094
1094
|
}
|
|
1095
|
-
function
|
|
1096
|
-
let
|
|
1097
|
-
return (l.type ===
|
|
1095
|
+
function se() {
|
|
1096
|
+
let T;
|
|
1097
|
+
return (l.type === K.TIME || l.type === K.DATETIME) && (T = Ze(l.max)), T;
|
|
1098
1098
|
}
|
|
1099
|
-
return ee(() => l.date, (
|
|
1100
|
-
|
|
1099
|
+
return ee(() => l.date, (T, G) => {
|
|
1100
|
+
T !== null && G !== null ? T.getTime() !== G.getTime() && X(T) : T === null && G !== null && le();
|
|
1101
1101
|
}, {
|
|
1102
1102
|
deep: !0
|
|
1103
|
-
}), ee(() =>
|
|
1103
|
+
}), ee(() => C.value, I, {
|
|
1104
1104
|
deep: !0
|
|
1105
1105
|
}), ee(() => l.type, () => {
|
|
1106
|
-
m(),
|
|
1106
|
+
m(), Ce(() => x());
|
|
1107
1107
|
}, {
|
|
1108
1108
|
immediate: !1
|
|
1109
|
-
}),
|
|
1109
|
+
}), je(() => x()), De(() => m()), n({
|
|
1110
1110
|
focus() {
|
|
1111
|
-
var
|
|
1112
|
-
(
|
|
1111
|
+
var T;
|
|
1112
|
+
(T = u.value) == null || T.focus();
|
|
1113
1113
|
}
|
|
1114
|
-
}), (
|
|
1115
|
-
const
|
|
1116
|
-
return i(), d("div",
|
|
1117
|
-
s("input",
|
|
1114
|
+
}), (T, G) => {
|
|
1115
|
+
const te = _("icon");
|
|
1116
|
+
return i(), d("div", me(T.$attrs, { class: "cl-relative" }), [
|
|
1117
|
+
s("input", me({
|
|
1118
1118
|
ref_key: "element",
|
|
1119
1119
|
ref: u
|
|
1120
|
-
},
|
|
1120
|
+
}, T.$attrs, {
|
|
1121
1121
|
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 }],
|
|
1122
1122
|
type: "text",
|
|
1123
|
-
placeholder: o(
|
|
1123
|
+
placeholder: o(w),
|
|
1124
1124
|
disabled: e.disabled
|
|
1125
|
-
}), null, 16,
|
|
1126
|
-
L(
|
|
1125
|
+
}), null, 16, Xl),
|
|
1126
|
+
L($(te, {
|
|
1127
1127
|
class: U(["cl-absolute cl-bg-white cl-right-2 cl-text-grey-4 cl-top-3.5", {
|
|
1128
1128
|
"!cl-bg-off-white": e.disabled
|
|
1129
1129
|
}]),
|
|
@@ -1131,9 +1131,9 @@ const Kl = ["placeholder", "disabled"], Zl = { class: "cl-absolute cl-bg-white c
|
|
|
1131
1131
|
weight: "light",
|
|
1132
1132
|
size: 18
|
|
1133
1133
|
}, null, 8, ["class"]), [
|
|
1134
|
-
[
|
|
1134
|
+
[F, (e.date === null || e.disabled) && e.type !== "time"]
|
|
1135
1135
|
]),
|
|
1136
|
-
L(
|
|
1136
|
+
L($(te, {
|
|
1137
1137
|
class: U(["cl-absolute cl-bg-white cl-right-2 cl-text-grey-4 cl-top-3.5", {
|
|
1138
1138
|
"!cl-bg-off-white": e.disabled
|
|
1139
1139
|
}]),
|
|
@@ -1141,35 +1141,39 @@ const Kl = ["placeholder", "disabled"], Zl = { class: "cl-absolute cl-bg-white c
|
|
|
1141
1141
|
weight: "light",
|
|
1142
1142
|
size: 18
|
|
1143
1143
|
}, null, 8, ["class"]), [
|
|
1144
|
-
[
|
|
1144
|
+
[F, (e.date === null || e.disabled) && e.type === "time"]
|
|
1145
1145
|
]),
|
|
1146
|
-
L(s("div",
|
|
1147
|
-
|
|
1146
|
+
L(s("div", _l, [
|
|
1147
|
+
$(te, {
|
|
1148
1148
|
class: "cl-cursor-pointer cl-mr-0.5 md:cl-mr-1",
|
|
1149
1149
|
icon: "ph:arrow-counter-clockwise",
|
|
1150
1150
|
size: 16,
|
|
1151
|
-
onClick:
|
|
1151
|
+
onClick: h
|
|
1152
1152
|
}),
|
|
1153
|
-
|
|
1153
|
+
$(te, {
|
|
1154
1154
|
class: "cl-cursor-pointer",
|
|
1155
1155
|
icon: "ph:x",
|
|
1156
1156
|
size: 16,
|
|
1157
1157
|
onClick: y
|
|
1158
1158
|
})
|
|
1159
1159
|
], 512), [
|
|
1160
|
-
[
|
|
1160
|
+
[F, e.date !== null && !e.disabled]
|
|
1161
1161
|
])
|
|
1162
1162
|
], 16);
|
|
1163
1163
|
};
|
|
1164
1164
|
}
|
|
1165
1165
|
});
|
|
1166
|
-
const
|
|
1166
|
+
const lt = /* @__PURE__ */ pe(et, [["__scopeId", "data-v-d60f7772"]]), Re = [
|
|
1167
|
+
"date",
|
|
1168
|
+
"datetime",
|
|
1169
|
+
"time"
|
|
1170
|
+
], tt = { class: "cl-flex cl-flex-wrap cl-items-center" }, nt = { class: "cl-flex cl-flex-1 cl-flex-wrap cl-items-center cl-mb-2 cl-mt-3 cl-relative md:cl-mt-0" }, ot = { 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" }, ct = {
|
|
1167
1171
|
key: 0,
|
|
1168
1172
|
class: "cl-w-full"
|
|
1169
|
-
},
|
|
1173
|
+
}, at = ["min", "max", "step", "disabled"], it = { 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" }, st = {
|
|
1170
1174
|
key: 1,
|
|
1171
1175
|
class: "emphasis-danger text-sm w-full"
|
|
1172
|
-
},
|
|
1176
|
+
}, rt = /* @__PURE__ */ H({
|
|
1173
1177
|
__name: "cl-ui-slider",
|
|
1174
1178
|
props: {
|
|
1175
1179
|
value: null,
|
|
@@ -1184,81 +1188,77 @@ const Yl = /* @__PURE__ */ he(Ql, [["__scopeId", "data-v-d60f7772"]]), Xl = { cl
|
|
|
1184
1188
|
"update:value": null
|
|
1185
1189
|
},
|
|
1186
1190
|
setup(e, { expose: n, emit: t }) {
|
|
1187
|
-
const l = e, { n: c, t: f } =
|
|
1191
|
+
const l = e, { n: c, t: f } = ue(), { debounce: r } = Ge(), b = j(l.value), a = j(), u = M({
|
|
1188
1192
|
get: () => l.value,
|
|
1189
1193
|
set: (v) => t("update:value", v)
|
|
1190
|
-
}), g =
|
|
1194
|
+
}), g = M(() => l.disabled ? "rgba(153, 153, 153, 0.8)" : "#9acd32"), p = M(() => {
|
|
1191
1195
|
let v = (u.value - l.min) / (l.max - l.min) * 100;
|
|
1192
1196
|
return v < 35 && v > 0 ? v < 20 ? v += 0.5 : v += 0.25 : v > 65 && v < 100 && (v > 80 ? v -= 0.5 : v -= 0.25), v;
|
|
1193
|
-
}),
|
|
1194
|
-
function
|
|
1195
|
-
var
|
|
1196
|
-
const
|
|
1197
|
-
u.value = l.enforceStep ? Math.ceil(
|
|
1197
|
+
}), w = M(() => l.min <= l.max && l.step > 0);
|
|
1198
|
+
function O(v, B) {
|
|
1199
|
+
var Q;
|
|
1200
|
+
const V = (Q = v == null ? void 0 : v.value) != null ? Q : "", q = Math.max(Math.min(parseFloat(V) || l.min, l.max), l.min);
|
|
1201
|
+
u.value = l.enforceStep ? Math.ceil(q / l.step) * l.step : q, Ce(() => B());
|
|
1198
1202
|
}
|
|
1199
|
-
return ee(() => l.value, () =>
|
|
1203
|
+
return ee(() => l.value, () => b.value = l.value), n({
|
|
1200
1204
|
focus() {
|
|
1201
1205
|
var v;
|
|
1202
1206
|
(v = a.value) == null || v.focus();
|
|
1203
1207
|
}
|
|
1204
1208
|
}), (v, B) => {
|
|
1205
|
-
const
|
|
1206
|
-
return o(
|
|
1209
|
+
const V = _("cl-ui-input");
|
|
1210
|
+
return o(w) ? (i(), d("div", re(me({ key: 0 }, v.$attrs)), [
|
|
1207
1211
|
L(s("div", { class: "cl-bg-transparent cl-relative cl-text-center cl-text-sm" }, k(o(u)), 513), [
|
|
1208
|
-
[
|
|
1212
|
+
[F, !e.showNumericInput]
|
|
1209
1213
|
]),
|
|
1210
|
-
s("div",
|
|
1211
|
-
L(
|
|
1212
|
-
modelValue:
|
|
1213
|
-
"onUpdate:modelValue": B[0] || (B[0] = (
|
|
1214
|
+
s("div", tt, [
|
|
1215
|
+
L($(V, {
|
|
1216
|
+
modelValue: b.value,
|
|
1217
|
+
"onUpdate:modelValue": B[0] || (B[0] = (q) => b.value = q),
|
|
1214
1218
|
class: "!cl-text-sm md:!cl-w-auto",
|
|
1215
1219
|
"input-type": "number",
|
|
1216
1220
|
min: e.min,
|
|
1217
1221
|
max: e.max,
|
|
1218
1222
|
step: e.step,
|
|
1219
1223
|
disabled: e.disabled,
|
|
1220
|
-
onInput: B[1] || (B[1] = (
|
|
1224
|
+
onInput: B[1] || (B[1] = (q) => o(r)(O, q.target, v.$forceUpdate))
|
|
1221
1225
|
}, null, 8, ["modelValue", "min", "max", "step", "disabled"]), [
|
|
1222
|
-
[
|
|
1226
|
+
[F, e.showNumericInput]
|
|
1223
1227
|
]),
|
|
1224
|
-
s("div",
|
|
1225
|
-
s("span",
|
|
1226
|
-
typeof o(u) == "number" ? (i(), d("div",
|
|
1228
|
+
s("div", nt, [
|
|
1229
|
+
s("span", ot, k(o(c)(e.min, Number.isInteger(e.min) ? o(ne).INTEGER : o(ne).DECIMAL)), 1),
|
|
1230
|
+
typeof o(u) == "number" ? (i(), d("div", ct, [
|
|
1227
1231
|
L(s("input", {
|
|
1228
1232
|
ref_key: "sliderRef",
|
|
1229
1233
|
ref: a,
|
|
1230
|
-
"onUpdate:modelValue": B[2] || (B[2] = (
|
|
1234
|
+
"onUpdate:modelValue": B[2] || (B[2] = (q) => ve(u) ? u.value = q : null),
|
|
1231
1235
|
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",
|
|
1232
|
-
style:
|
|
1233
|
-
background: `linear-gradient(to right, ${o(g)} 0%, ${o(g)} ${o(
|
|
1236
|
+
style: Oe({
|
|
1237
|
+
background: `linear-gradient(to right, ${o(g)} 0%, ${o(g)} ${o(p)}%, white ${o(p)}%, white 100%)`
|
|
1234
1238
|
}),
|
|
1235
1239
|
type: "range",
|
|
1236
1240
|
min: e.min,
|
|
1237
1241
|
max: e.max,
|
|
1238
1242
|
step: e.step,
|
|
1239
1243
|
disabled: e.disabled
|
|
1240
|
-
}, null, 12,
|
|
1244
|
+
}, null, 12, at), [
|
|
1241
1245
|
[
|
|
1242
|
-
|
|
1246
|
+
ul,
|
|
1243
1247
|
o(u),
|
|
1244
1248
|
void 0,
|
|
1245
1249
|
{ number: !0 }
|
|
1246
1250
|
]
|
|
1247
1251
|
])
|
|
1248
1252
|
])) : N("", !0),
|
|
1249
|
-
s("span",
|
|
1253
|
+
s("span", it, k(o(c)(e.max, Number.isInteger(e.max) ? o(ne).INTEGER : o(ne).DECIMAL)), 1)
|
|
1250
1254
|
])
|
|
1251
1255
|
])
|
|
1252
|
-
], 16)) : (i(), d("div",
|
|
1256
|
+
], 16)) : (i(), d("div", st, k(o(f)("slider.invalidProps")), 1));
|
|
1253
1257
|
};
|
|
1254
1258
|
}
|
|
1255
1259
|
});
|
|
1256
|
-
const
|
|
1257
|
-
|
|
1258
|
-
"datetime",
|
|
1259
|
-
"time"
|
|
1260
|
-
];
|
|
1261
|
-
function Je(e) {
|
|
1260
|
+
const ut = /* @__PURE__ */ pe(rt, [["__scopeId", "data-v-47d8e44f"]]);
|
|
1261
|
+
function Qe(e) {
|
|
1262
1262
|
let n = !1;
|
|
1263
1263
|
switch (e) {
|
|
1264
1264
|
case "email":
|
|
@@ -1275,7 +1275,10 @@ function Je(e) {
|
|
|
1275
1275
|
}
|
|
1276
1276
|
return n;
|
|
1277
1277
|
}
|
|
1278
|
-
function
|
|
1278
|
+
function dt(e) {
|
|
1279
|
+
return e === "number" || e === "range";
|
|
1280
|
+
}
|
|
1281
|
+
function Ye(e) {
|
|
1279
1282
|
let n = !1;
|
|
1280
1283
|
switch (e) {
|
|
1281
1284
|
case "date":
|
|
@@ -1289,41 +1292,59 @@ function Ke(e) {
|
|
|
1289
1292
|
}
|
|
1290
1293
|
return n;
|
|
1291
1294
|
}
|
|
1292
|
-
function
|
|
1295
|
+
function ft(e) {
|
|
1296
|
+
let n = !1;
|
|
1297
|
+
switch (e) {
|
|
1298
|
+
case "date":
|
|
1299
|
+
case "datetime":
|
|
1300
|
+
case "time":
|
|
1301
|
+
n = !0;
|
|
1302
|
+
break;
|
|
1303
|
+
default:
|
|
1304
|
+
n = !1;
|
|
1305
|
+
break;
|
|
1306
|
+
}
|
|
1307
|
+
return n;
|
|
1308
|
+
}
|
|
1309
|
+
function Ee(e) {
|
|
1293
1310
|
return e === "button" || e === "submit" || e === "reset";
|
|
1294
1311
|
}
|
|
1295
|
-
function
|
|
1312
|
+
function mt(e) {
|
|
1296
1313
|
let n;
|
|
1297
1314
|
switch (e) {
|
|
1298
1315
|
case "datetime":
|
|
1299
|
-
n =
|
|
1316
|
+
n = Re[1];
|
|
1300
1317
|
break;
|
|
1301
1318
|
case "time":
|
|
1302
|
-
n =
|
|
1319
|
+
n = Re[2];
|
|
1303
1320
|
break;
|
|
1304
1321
|
case "date":
|
|
1305
1322
|
default:
|
|
1306
|
-
n =
|
|
1323
|
+
n = Re[0];
|
|
1307
1324
|
break;
|
|
1308
1325
|
}
|
|
1309
1326
|
return n;
|
|
1310
1327
|
}
|
|
1311
|
-
|
|
1328
|
+
function Xe(e, n) {
|
|
1329
|
+
const t = e.target;
|
|
1330
|
+
return dt(n) ? t.valueAsNumber : ft(n) ? t.valueAsDate : Ee(n) ? t.checked : t.value;
|
|
1331
|
+
}
|
|
1332
|
+
const gt = { class: "cl-flex cl-justify-between" }, bt = { class: "cl-w-full" }, vt = {
|
|
1312
1333
|
key: 0,
|
|
1313
1334
|
class: "cl-block cl-left-auto cl-relative cl-text-danger-default"
|
|
1314
|
-
},
|
|
1335
|
+
}, ht = {
|
|
1315
1336
|
key: 1,
|
|
1316
1337
|
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"
|
|
1317
|
-
},
|
|
1338
|
+
}, pt = ["type", "disabled", "min", "max", "minlength", "maxlength", "step", "placeholder", "accept", "name", "autocomplete"], yt = {
|
|
1318
1339
|
key: 2,
|
|
1319
1340
|
class: "cl-h-[5.78rem] cl-pb-2 md:cl-h-20"
|
|
1320
|
-
},
|
|
1341
|
+
}, wt = { class: "cl-relative" }, xt = {
|
|
1321
1342
|
key: 0,
|
|
1322
1343
|
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"
|
|
1323
|
-
},
|
|
1344
|
+
}, kt = {
|
|
1324
1345
|
key: 1,
|
|
1325
1346
|
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"
|
|
1326
|
-
},
|
|
1347
|
+
}, $t = /* @__PURE__ */ H({
|
|
1327
1348
|
__name: "cl-ui-input",
|
|
1328
1349
|
props: {
|
|
1329
1350
|
inputType: { default: "text" },
|
|
@@ -1336,6 +1357,7 @@ const st = { class: "cl-align-top cl-border-none cl-inline-block cl-text-left" }
|
|
|
1336
1357
|
max: { default: 1e11 },
|
|
1337
1358
|
step: { default: 1 },
|
|
1338
1359
|
validateImmediately: { type: Boolean, default: !1 },
|
|
1360
|
+
validateOn: { default: "input" },
|
|
1339
1361
|
externalErrors: { default: () => [] },
|
|
1340
1362
|
disabled: { type: Boolean, default: !1 },
|
|
1341
1363
|
requiredText: { default: "" },
|
|
@@ -1349,196 +1371,205 @@ const st = { class: "cl-align-top cl-border-none cl-inline-block cl-text-left" }
|
|
|
1349
1371
|
messageWhenValid: { default: "" },
|
|
1350
1372
|
inputSpecificClasses: { default: "" }
|
|
1351
1373
|
},
|
|
1352
|
-
emits:
|
|
1353
|
-
"update:modelValue": null,
|
|
1354
|
-
click: null,
|
|
1355
|
-
focus: null,
|
|
1356
|
-
input: null,
|
|
1357
|
-
validated: null
|
|
1358
|
-
},
|
|
1374
|
+
emits: ["update:model-value", "click", "focus", "input", "change", "validated"],
|
|
1359
1375
|
setup(e, { expose: n, emit: t }) {
|
|
1360
|
-
const l = e, c =
|
|
1376
|
+
const l = e, c = j(null), f = j(!1), r = j(!1), b = M(te), a = M(() => l.placeholderText.trim() !== "" ? l.placeholderText : l.label), u = j(!1), { t: g } = ue(), p = j(0), w = M({
|
|
1361
1377
|
get: () => l.modelValue,
|
|
1362
|
-
set: (
|
|
1363
|
-
}),
|
|
1378
|
+
set: (S) => x(S, !1)
|
|
1379
|
+
}), O = M({
|
|
1364
1380
|
get: () => l.modelValue,
|
|
1365
|
-
set: (
|
|
1366
|
-
}),
|
|
1367
|
-
var
|
|
1381
|
+
set: (S) => h(S)
|
|
1382
|
+
}), v = M(() => typeof l.min == "number" ? l.min.toString() : l.min), B = M(() => typeof l.max == "number" ? l.max.toString() : l.max), V = M(() => typeof l.min == "number" ? l.min : parseFloat(l.min)), q = M(() => typeof l.max == "number" ? l.max : parseFloat(l.max)), Q = M(() => l.messageWhenValid.trim() !== "" ? l.messageWhenValid : ""), C = j(!0), E = j([]), y = M(() => {
|
|
1383
|
+
var S, R, ie, W;
|
|
1368
1384
|
return [
|
|
1369
|
-
...(
|
|
1370
|
-
var
|
|
1371
|
-
return ((
|
|
1372
|
-
})) != null ?
|
|
1373
|
-
...(W = (
|
|
1374
|
-
var
|
|
1375
|
-
return ((
|
|
1385
|
+
...(R = (S = E.value) == null ? void 0 : S.filter((ye) => {
|
|
1386
|
+
var xe;
|
|
1387
|
+
return ((xe = ye == null ? void 0 : ye.length) != null ? xe : 0) > 0;
|
|
1388
|
+
})) != null ? R : [],
|
|
1389
|
+
...(W = (ie = l.externalErrors) == null ? void 0 : ie.filter((ye) => {
|
|
1390
|
+
var xe;
|
|
1391
|
+
return ((xe = ye == null ? void 0 : ye.length) != null ? xe : 0) > 0;
|
|
1376
1392
|
})) != null ? W : []
|
|
1377
1393
|
].join(`
|
|
1378
1394
|
`);
|
|
1379
1395
|
});
|
|
1380
|
-
function
|
|
1381
|
-
|
|
1396
|
+
async function h(S) {
|
|
1397
|
+
l.validateOn === "input" && await I(S), t("update:model-value", S), u.value = !1;
|
|
1382
1398
|
}
|
|
1383
|
-
function
|
|
1384
|
-
l.onInputFunction !== void 0 && (
|
|
1399
|
+
async function x(S, R) {
|
|
1400
|
+
l.onInputFunction !== void 0 && (S = l.onInputFunction(S)), (R || l.validateOn === "input") && await I(S), t("update:model-value", S);
|
|
1385
1401
|
}
|
|
1386
|
-
function
|
|
1387
|
-
const
|
|
1402
|
+
function I(S) {
|
|
1403
|
+
const R = {
|
|
1388
1404
|
message: "",
|
|
1389
1405
|
valid: !0
|
|
1390
|
-
},
|
|
1406
|
+
}, ie = [
|
|
1391
1407
|
l.customValidationFunction === null || l.customValidationFunction === void 0 ? new Promise((W) => {
|
|
1392
|
-
W(
|
|
1408
|
+
W(R);
|
|
1393
1409
|
}) : new Promise((W) => {
|
|
1394
|
-
W(l.customValidationFunction(l.label,
|
|
1410
|
+
W(l.customValidationFunction(l.label, S));
|
|
1395
1411
|
})
|
|
1396
1412
|
];
|
|
1397
|
-
(typeof
|
|
1398
|
-
const
|
|
1399
|
-
let
|
|
1400
|
-
u.value && (
|
|
1413
|
+
return (typeof S == "string" || typeof S == "number" || S instanceof Date) && (ie.push(Gl(l.min, l.inputType, l.label, S)), ie.push(Wl(l.max, l.inputType, l.label, S))), l.isRequired && ie.push(Jl(l.label, S)), l.inputType === "email" && typeof S == "string" && ie.push(Kl(l.label, S)), Promise.all(ie).then((W) => {
|
|
1414
|
+
const ye = [...W.map((Ie) => Ie.message)];
|
|
1415
|
+
let xe = W.some((Ie) => Ie.message.length > 0 && Ie.valid === !1) || l.externalErrors.length > 0;
|
|
1416
|
+
u.value && (ye.push(g("input.dateOutOfRange")), xe = !0), xe ? (E.value = ye, t("validated", !1, S)) : (E.value = [], t("validated", !0, S)), C.value = !xe;
|
|
1401
1417
|
});
|
|
1402
1418
|
}
|
|
1403
|
-
function
|
|
1404
|
-
let
|
|
1405
|
-
return l.inputType === "color" &&
|
|
1419
|
+
function X() {
|
|
1420
|
+
let S = "";
|
|
1421
|
+
return l.inputType === "color" && w.value && (l.disabled ? S = "background: #999999" : S = `background: ${w.value};`), S;
|
|
1406
1422
|
}
|
|
1407
|
-
function
|
|
1408
|
-
|
|
1423
|
+
function le(S) {
|
|
1424
|
+
Ee(l.inputType) ? (S.preventDefault(), t("click", S)) : l.inputType === "checkbox" && t("click", S);
|
|
1409
1425
|
}
|
|
1410
|
-
function
|
|
1426
|
+
function m() {
|
|
1411
1427
|
if (c.value) {
|
|
1412
|
-
c.value.stepUp(), c.value.focus(),
|
|
1413
|
-
const
|
|
1428
|
+
c.value.stepUp(), c.value.focus(), x(c.value.valueAsNumber, !1);
|
|
1429
|
+
const S = {
|
|
1414
1430
|
target: c.value
|
|
1415
1431
|
};
|
|
1416
|
-
t("input",
|
|
1432
|
+
t("input", S, c.value.valueAsNumber);
|
|
1417
1433
|
}
|
|
1418
1434
|
}
|
|
1419
|
-
function
|
|
1435
|
+
function A() {
|
|
1420
1436
|
if (c.value) {
|
|
1421
|
-
c.value.stepDown(), c.value.focus(),
|
|
1422
|
-
const
|
|
1437
|
+
c.value.stepDown(), c.value.focus(), x(c.value.valueAsNumber, !1);
|
|
1438
|
+
const S = {
|
|
1423
1439
|
target: c.value
|
|
1424
1440
|
};
|
|
1425
|
-
t("input",
|
|
1441
|
+
t("input", S, c.value.valueAsNumber);
|
|
1426
1442
|
}
|
|
1427
1443
|
}
|
|
1428
|
-
function
|
|
1429
|
-
f.value =
|
|
1444
|
+
function P(S) {
|
|
1445
|
+
f.value = S;
|
|
1430
1446
|
}
|
|
1431
|
-
function
|
|
1432
|
-
r.value = !0,
|
|
1447
|
+
function se() {
|
|
1448
|
+
r.value = !0, P(!1);
|
|
1449
|
+
}
|
|
1450
|
+
function T() {
|
|
1451
|
+
p.value++;
|
|
1433
1452
|
}
|
|
1434
|
-
function
|
|
1435
|
-
|
|
1453
|
+
function G(S) {
|
|
1454
|
+
S.target.blur();
|
|
1436
1455
|
}
|
|
1437
|
-
function
|
|
1438
|
-
var
|
|
1439
|
-
let
|
|
1440
|
-
const
|
|
1441
|
-
return f.value ?
|
|
1456
|
+
function te() {
|
|
1457
|
+
var ie;
|
|
1458
|
+
let S = !0;
|
|
1459
|
+
const R = b.value;
|
|
1460
|
+
return f.value ? S = R : r.value && ((ie = w.value) == null ? void 0 : ie.toString().trim()) === "" && (S = !1), S;
|
|
1442
1461
|
}
|
|
1443
|
-
function
|
|
1462
|
+
function be() {
|
|
1444
1463
|
u.value = !0;
|
|
1445
1464
|
}
|
|
1446
|
-
|
|
1447
|
-
|
|
1448
|
-
|
|
1465
|
+
async function Me(S) {
|
|
1466
|
+
const R = Xe(S, l.inputType);
|
|
1467
|
+
l.validateOn === "change" && await I(R), t("change", S, R);
|
|
1468
|
+
}
|
|
1469
|
+
return je(() => {
|
|
1470
|
+
l.validateImmediately && x(l.modelValue, !0);
|
|
1471
|
+
}), ee(() => l.isRequired, () => x(l.modelValue, !0)), ee(() => l.externalErrors, async () => {
|
|
1472
|
+
await I(w.value), t("update:model-value", w.value);
|
|
1473
|
+
}), n({
|
|
1449
1474
|
focus() {
|
|
1450
|
-
var
|
|
1451
|
-
(
|
|
1475
|
+
var S;
|
|
1476
|
+
(S = c.value) == null || S.focus();
|
|
1452
1477
|
}
|
|
1453
|
-
}), (
|
|
1454
|
-
const
|
|
1455
|
-
return i(), d("div",
|
|
1478
|
+
}), (S, R) => {
|
|
1479
|
+
const ie = _("icon");
|
|
1480
|
+
return i(), d("div", {
|
|
1481
|
+
key: p.value,
|
|
1482
|
+
class: "cl-align-top cl-border-none cl-inline-block cl-text-left"
|
|
1483
|
+
}, [
|
|
1456
1484
|
s("div", {
|
|
1457
|
-
onMouseenter:
|
|
1458
|
-
onMouseleave:
|
|
1485
|
+
onMouseenter: R[11] || (R[11] = (W) => P(!0)),
|
|
1486
|
+
onMouseleave: R[12] || (R[12] = (W) => P(!1))
|
|
1459
1487
|
}, [
|
|
1460
|
-
s("div",
|
|
1461
|
-
s("div",
|
|
1488
|
+
s("div", gt, [
|
|
1489
|
+
s("div", bt, [
|
|
1462
1490
|
L(s("label", { class: "cl-block cl-mb-1 cl-text-gray-400 cl-text-xs cl-tracking-widest" }, k(e.label), 513), [
|
|
1463
|
-
[
|
|
1491
|
+
[F, e.showLabel && e.label !== ""]
|
|
1464
1492
|
])
|
|
1465
1493
|
]),
|
|
1466
|
-
e.isRequired && o(
|
|
1467
|
-
e.isRequired && !o(
|
|
1494
|
+
e.isRequired && o(b) ? (i(), d("label", vt, " * ")) : N("", !0),
|
|
1495
|
+
e.isRequired && !o(b) ? (i(), d("label", ht, k(e.requiredText), 1)) : N("", !0)
|
|
1468
1496
|
]),
|
|
1469
|
-
e.inputType !== "range" && !o(
|
|
1497
|
+
e.inputType !== "range" && !o(Ye)(e.inputType) ? L((i(), d("input", me({
|
|
1470
1498
|
key: 0,
|
|
1471
1499
|
ref_key: "inputElement",
|
|
1472
1500
|
ref: c,
|
|
1473
|
-
"onUpdate:modelValue":
|
|
1474
|
-
},
|
|
1501
|
+
"onUpdate:modelValue": R[0] || (R[0] = (W) => ve(w) ? w.value = W : null)
|
|
1502
|
+
}, S.$attrs, {
|
|
1475
1503
|
class: ["cl-block cl-border cl-duration-300 cl-h-full cl-mb-1 cl-transition cl-w-full focus:cl-outline-none", {
|
|
1476
|
-
"hover:!cl-border-grey-3": e.disabled === !1 && !o(
|
|
1504
|
+
"hover:!cl-border-grey-3": e.disabled === !1 && !o(Ee)(e.inputType),
|
|
1477
1505
|
"!cl-cursor-default": e.disabled,
|
|
1478
|
-
"!cl-border-danger-default": !
|
|
1479
|
-
"!cl-border-primary-default":
|
|
1480
|
-
"cl-border-grey-0 focus:cl-border-blue-light":
|
|
1506
|
+
"!cl-border-danger-default": !C.value,
|
|
1507
|
+
"!cl-border-primary-default": C.value && e.highlightWhenValid,
|
|
1508
|
+
"cl-border-grey-0 focus:cl-border-blue-light": C.value && !o(Ee)(e.inputType),
|
|
1481
1509
|
"!cl-p-2": e.inputType === "checkbox" || e.inputType === "radio",
|
|
1482
|
-
"cl-p-3 cl-rounded-lg": !o(
|
|
1510
|
+
"cl-p-3 cl-rounded-lg": !o(Ee)(e.inputType),
|
|
1483
1511
|
[`${e.inputSpecificClasses}`]: e.inputSpecificClasses !== ""
|
|
1484
1512
|
}],
|
|
1485
|
-
style:
|
|
1513
|
+
style: X(),
|
|
1486
1514
|
type: e.inputType,
|
|
1487
1515
|
disabled: e.disabled,
|
|
1488
1516
|
min: e.min,
|
|
1489
1517
|
max: e.max,
|
|
1490
|
-
minlength: o(
|
|
1491
|
-
maxlength: o(
|
|
1518
|
+
minlength: o(Qe)(e.inputType) ? e.min : 0,
|
|
1519
|
+
maxlength: o(Qe)(e.inputType) ? e.max : 0,
|
|
1492
1520
|
step: e.step,
|
|
1493
1521
|
placeholder: o(a),
|
|
1494
1522
|
accept: e.fileExtensions,
|
|
1495
1523
|
name: e.group,
|
|
1496
1524
|
autocomplete: e.autocomplete,
|
|
1497
|
-
onClick:
|
|
1498
|
-
onFocus:
|
|
1499
|
-
onBlur:
|
|
1500
|
-
|
|
1501
|
-
|
|
1502
|
-
|
|
1503
|
-
|
|
1504
|
-
|
|
1505
|
-
|
|
1506
|
-
|
|
1525
|
+
onClick: R[1] || (R[1] = (W) => le(W)),
|
|
1526
|
+
onFocus: R[2] || (R[2] = (W) => t("focus")),
|
|
1527
|
+
onBlur: R[3] || (R[3] = ae((W) => {
|
|
1528
|
+
se(), T();
|
|
1529
|
+
}, ["self"])),
|
|
1530
|
+
onMousewheelPassive: G,
|
|
1531
|
+
onInput: R[4] || (R[4] = (W) => {
|
|
1532
|
+
t("input", W, o(Xe)(W, e.inputType));
|
|
1533
|
+
}),
|
|
1534
|
+
onChange: Me
|
|
1535
|
+
}), null, 16, pt)), [
|
|
1536
|
+
[dl, o(w)]
|
|
1537
|
+
]) : o(Ye)(e.inputType) ? (i(), J(o(lt), me({ key: 1 }, S.$attrs, {
|
|
1507
1538
|
ref_key: "inputElement",
|
|
1508
1539
|
ref: c,
|
|
1509
|
-
date: o(
|
|
1510
|
-
"onUpdate:date":
|
|
1540
|
+
date: o(O),
|
|
1541
|
+
"onUpdate:date": R[5] || (R[5] = (W) => ve(O) ? O.value = W : null),
|
|
1511
1542
|
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", {
|
|
1512
1543
|
"hover:cl-border-grey-3": !e.disabled,
|
|
1513
|
-
"!cl-border-danger-default": !
|
|
1514
|
-
"!cl-border-primary-default":
|
|
1544
|
+
"!cl-border-danger-default": !C.value,
|
|
1545
|
+
"!cl-border-primary-default": C.value && e.highlightWhenValid
|
|
1515
1546
|
}],
|
|
1516
1547
|
disabled: e.disabled,
|
|
1517
|
-
type: o(
|
|
1518
|
-
min: o(
|
|
1519
|
-
max: o(
|
|
1548
|
+
type: o(mt)(e.inputType),
|
|
1549
|
+
min: o(v),
|
|
1550
|
+
max: o(B),
|
|
1520
1551
|
"date-placeholder": o(a),
|
|
1521
1552
|
"date-time-placeholder": o(a),
|
|
1522
1553
|
"time-placeholder": o(a),
|
|
1523
|
-
onBlur: ae(
|
|
1524
|
-
onValueOutOfRange:
|
|
1525
|
-
onFocus:
|
|
1526
|
-
}), null, 16, ["date", "class", "disabled", "type", "min", "max", "date-placeholder", "date-time-placeholder", "time-placeholder", "onBlur"])) : e.inputType === "range" && typeof o(
|
|
1527
|
-
|
|
1554
|
+
onBlur: ae(se, ["self"]),
|
|
1555
|
+
onValueOutOfRange: be,
|
|
1556
|
+
onFocus: R[6] || (R[6] = (W) => t("focus"))
|
|
1557
|
+
}), null, 16, ["date", "class", "disabled", "type", "min", "max", "date-placeholder", "date-time-placeholder", "time-placeholder", "onBlur"])) : e.inputType === "range" && typeof o(w) == "number" ? (i(), d("div", yt, [
|
|
1558
|
+
$(o(ut), {
|
|
1528
1559
|
ref_key: "inputElement",
|
|
1529
1560
|
ref: c,
|
|
1530
|
-
value: o(
|
|
1531
|
-
"onUpdate:value":
|
|
1532
|
-
min: o(
|
|
1533
|
-
max: o(
|
|
1561
|
+
value: o(w),
|
|
1562
|
+
"onUpdate:value": R[7] || (R[7] = (W) => ve(w) ? w.value = W : null),
|
|
1563
|
+
min: o(V),
|
|
1564
|
+
max: o(q),
|
|
1534
1565
|
step: e.step,
|
|
1535
1566
|
disabled: e.disabled,
|
|
1536
1567
|
"show-numeric-input": !1,
|
|
1537
|
-
onBlur: ae(
|
|
1538
|
-
onFocus:
|
|
1568
|
+
onBlur: ae(se, ["self"]),
|
|
1569
|
+
onFocus: R[8] || (R[8] = (W) => t("focus"))
|
|
1539
1570
|
}, null, 8, ["value", "min", "max", "step", "disabled", "onBlur"])
|
|
1540
1571
|
])) : N("", !0),
|
|
1541
|
-
s("div",
|
|
1572
|
+
s("div", wt, [
|
|
1542
1573
|
e.inputType === "number" && !e.disabled && e.showArrows ? (i(), d("div", {
|
|
1543
1574
|
key: 0,
|
|
1544
1575
|
class: U(["cl-absolute cl-duration-300 cl-right-1 cl-transition", {
|
|
@@ -1546,11 +1577,11 @@ const st = { class: "cl-align-top cl-border-none cl-inline-block cl-text-left" }
|
|
|
1546
1577
|
}]),
|
|
1547
1578
|
style: { bottom: "1.625rem" }
|
|
1548
1579
|
}, [
|
|
1549
|
-
|
|
1580
|
+
$(ie, {
|
|
1550
1581
|
icon: "ph:caret-up-bold",
|
|
1551
1582
|
class: "cl-bg-link-default cl-rounded-md cl-text-sm cl-text-white hover:cl-bg-link-light hover:cl-cursor-pointer",
|
|
1552
|
-
onClick:
|
|
1553
|
-
onMousedown:
|
|
1583
|
+
onClick: m,
|
|
1584
|
+
onMousedown: R[9] || (R[9] = ae(() => {
|
|
1554
1585
|
}, ["prevent"]))
|
|
1555
1586
|
})
|
|
1556
1587
|
], 2)) : N("", !0),
|
|
@@ -1560,26 +1591,26 @@ const st = { class: "cl-align-top cl-border-none cl-inline-block cl-text-left" }
|
|
|
1560
1591
|
"cl-opacity-0": !f.value
|
|
1561
1592
|
}])
|
|
1562
1593
|
}, [
|
|
1563
|
-
|
|
1594
|
+
$(ie, {
|
|
1564
1595
|
icon: "ph:caret-down-bold",
|
|
1565
1596
|
class: "cl-bg-link-default cl-rounded-md cl-text-sm cl-text-white hover:cl-bg-link-light hover:cl-cursor-pointer",
|
|
1566
|
-
onClick:
|
|
1567
|
-
onMousedown:
|
|
1597
|
+
onClick: A,
|
|
1598
|
+
onMousedown: R[10] || (R[10] = ae(() => {
|
|
1568
1599
|
}, ["prevent"]))
|
|
1569
1600
|
})
|
|
1570
1601
|
], 2)) : N("", !0)
|
|
1571
1602
|
])
|
|
1572
1603
|
], 32),
|
|
1573
|
-
|
|
1574
|
-
!
|
|
1604
|
+
C.value && o(Q) ? (i(), d("div", xt, k(o(Q)), 1)) : N("", !0),
|
|
1605
|
+
!C.value && o(y).length > 0 ? (i(), d("div", kt, k(o(y)), 1)) : N("", !0)
|
|
1575
1606
|
]);
|
|
1576
1607
|
};
|
|
1577
1608
|
}
|
|
1578
1609
|
});
|
|
1579
|
-
const
|
|
1610
|
+
const ge = /* @__PURE__ */ pe($t, [["__scopeId", "data-v-5ed70f91"]]), Tt = { 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" }, Ct = ["onKeypress"], St = { class: "cl-overflow-y-auto cl-p-2 cl-w-full" }, Ot = {
|
|
1580
1611
|
inheritAttrs: !1
|
|
1581
|
-
},
|
|
1582
|
-
...
|
|
1612
|
+
}, il = /* @__PURE__ */ H({
|
|
1613
|
+
...Ot,
|
|
1583
1614
|
__name: "cl-ui-modal",
|
|
1584
1615
|
props: {
|
|
1585
1616
|
headerColour: { default: "white" },
|
|
@@ -1587,7 +1618,7 @@ const fe = /* @__PURE__ */ he(pt, [["__scopeId", "data-v-4d513eb1"]]), yt = { cl
|
|
|
1587
1618
|
size: { default: "medium" }
|
|
1588
1619
|
},
|
|
1589
1620
|
setup(e) {
|
|
1590
|
-
const n = e, t =
|
|
1621
|
+
const n = e, t = j(!1);
|
|
1591
1622
|
function l() {
|
|
1592
1623
|
t.value = !0, document.addEventListener("keydown", f);
|
|
1593
1624
|
}
|
|
@@ -1597,15 +1628,15 @@ const fe = /* @__PURE__ */ he(pt, [["__scopeId", "data-v-4d513eb1"]]), yt = { cl
|
|
|
1597
1628
|
function f(r) {
|
|
1598
1629
|
r.key === "Escape" && c();
|
|
1599
1630
|
}
|
|
1600
|
-
return (r,
|
|
1631
|
+
return (r, b) => {
|
|
1601
1632
|
const a = _("icon");
|
|
1602
1633
|
return i(), d(z, null, [
|
|
1603
|
-
|
|
1604
|
-
(i(),
|
|
1605
|
-
|
|
1606
|
-
default:
|
|
1607
|
-
L(s("div",
|
|
1608
|
-
s("div",
|
|
1634
|
+
D(r.$slots, "trigger", re(we({ open: l }))),
|
|
1635
|
+
(i(), J(He, { to: "body" }, [
|
|
1636
|
+
$(Te, { name: "fade" }, {
|
|
1637
|
+
default: Z(() => [
|
|
1638
|
+
L(s("div", Tt, [
|
|
1639
|
+
s("div", me(r.$attrs, {
|
|
1609
1640
|
class: ["cl-bg-white cl-flex cl-flex-wrap cl-mx-0 cl-my-auto cl-overflow-y-auto cl-relative cl-rounded-lg cl-shadow-lg", {
|
|
1610
1641
|
"lg:cl-w-2/12 cl-w-10/12": e.size === "x-small",
|
|
1611
1642
|
"cl-w-6/12": e.size === "small",
|
|
@@ -1619,12 +1650,12 @@ const fe = /* @__PURE__ */ he(pt, [["__scopeId", "data-v-4d513eb1"]]), yt = { cl
|
|
|
1619
1650
|
"cl-text-black hover:cl-text-grey-7": e.headerColour === "white"
|
|
1620
1651
|
}]),
|
|
1621
1652
|
tabindex: 0,
|
|
1622
|
-
onKeypress:
|
|
1653
|
+
onKeypress: Ae(c, ["enter"]),
|
|
1623
1654
|
onClick: c
|
|
1624
1655
|
}, [
|
|
1625
|
-
|
|
1626
|
-
], 42,
|
|
1627
|
-
[
|
|
1656
|
+
$(a, { icon: "ph:x" })
|
|
1657
|
+
], 42, Ct), [
|
|
1658
|
+
[F, !e.preventClose]
|
|
1628
1659
|
]),
|
|
1629
1660
|
s("div", {
|
|
1630
1661
|
class: U(["cl-leading-[2.75rem] cl-min-h-12 cl-overflow-hidden cl-pl-3 cl-pr-8 cl-text-2xl cl-w-full", {
|
|
@@ -1633,15 +1664,15 @@ const fe = /* @__PURE__ */ he(pt, [["__scopeId", "data-v-4d513eb1"]]), yt = { cl
|
|
|
1633
1664
|
"cl-bg-primary-default cl-text-white": e.headerColour === "primary"
|
|
1634
1665
|
}])
|
|
1635
1666
|
}, [
|
|
1636
|
-
|
|
1667
|
+
D(r.$slots, "title")
|
|
1637
1668
|
], 2),
|
|
1638
|
-
s("div",
|
|
1639
|
-
|
|
1669
|
+
s("div", St, [
|
|
1670
|
+
D(r.$slots, "default", re(we({ close: c })))
|
|
1640
1671
|
]),
|
|
1641
|
-
|
|
1672
|
+
D(r.$slots, "footer", re(we({ close: c })))
|
|
1642
1673
|
], 16)
|
|
1643
1674
|
], 512), [
|
|
1644
|
-
[
|
|
1675
|
+
[F, t.value]
|
|
1645
1676
|
])
|
|
1646
1677
|
]),
|
|
1647
1678
|
_: 3
|
|
@@ -1650,10 +1681,10 @@ const fe = /* @__PURE__ */ he(pt, [["__scopeId", "data-v-4d513eb1"]]), yt = { cl
|
|
|
1650
1681
|
], 64);
|
|
1651
1682
|
};
|
|
1652
1683
|
}
|
|
1653
|
-
}),
|
|
1684
|
+
}), Et = { class: "cl-bg-grey-0 cl-flex cl-p-1" }, At = {
|
|
1654
1685
|
key: 0,
|
|
1655
1686
|
class: "cl-w-1/2"
|
|
1656
|
-
},
|
|
1687
|
+
}, Ne = /* @__PURE__ */ H({
|
|
1657
1688
|
__name: "cl-ui-combo-box-header",
|
|
1658
1689
|
props: {
|
|
1659
1690
|
showClearButton: { type: Boolean, default: !1 },
|
|
@@ -1666,8 +1697,8 @@ const fe = /* @__PURE__ */ he(pt, [["__scopeId", "data-v-4d513eb1"]]), yt = { cl
|
|
|
1666
1697
|
setup(e) {
|
|
1667
1698
|
return (n, t) => {
|
|
1668
1699
|
const l = _("icon");
|
|
1669
|
-
return i(), d("div",
|
|
1670
|
-
e.additionalText !== "" ? (i(), d("div",
|
|
1700
|
+
return i(), d("div", Et, [
|
|
1701
|
+
e.additionalText !== "" ? (i(), d("div", At, k(e.additionalText), 1)) : N("", !0),
|
|
1671
1702
|
s("div", {
|
|
1672
1703
|
class: U({
|
|
1673
1704
|
"cl-w-1/2": e.additionalText !== "",
|
|
@@ -1678,20 +1709,20 @@ const fe = /* @__PURE__ */ he(pt, [["__scopeId", "data-v-4d513eb1"]]), yt = { cl
|
|
|
1678
1709
|
class: "cl-cursor-pointer cl-float-right",
|
|
1679
1710
|
onMousedown: t[0] || (t[0] = (c) => n.$emit("clear-object"))
|
|
1680
1711
|
}, [
|
|
1681
|
-
|
|
1712
|
+
$(l, {
|
|
1682
1713
|
class: "cl-mt-1 cl-transition-colors hover:cl-text-link-default",
|
|
1683
1714
|
icon: "ph:x"
|
|
1684
1715
|
})
|
|
1685
1716
|
], 544), [
|
|
1686
|
-
[
|
|
1717
|
+
[F, e.showClearButton]
|
|
1687
1718
|
])
|
|
1688
1719
|
]);
|
|
1689
1720
|
};
|
|
1690
1721
|
}
|
|
1691
|
-
}),
|
|
1722
|
+
}), jt = {
|
|
1692
1723
|
key: 0,
|
|
1693
1724
|
class: "cl-w-1/2"
|
|
1694
|
-
},
|
|
1725
|
+
}, Mt = { class: "cl-float-right cl-py-1" }, _e = /* @__PURE__ */ H({
|
|
1695
1726
|
__name: "cl-ui-combo-box-selectable",
|
|
1696
1727
|
props: {
|
|
1697
1728
|
isCreateNewOption: { type: Boolean, default: !1 },
|
|
@@ -1706,26 +1737,26 @@ const fe = /* @__PURE__ */ he(pt, [["__scopeId", "data-v-4d513eb1"]]), yt = { cl
|
|
|
1706
1737
|
"option-highlighted": null
|
|
1707
1738
|
},
|
|
1708
1739
|
setup(e, { emit: n }) {
|
|
1709
|
-
const t = e, l =
|
|
1740
|
+
const t = e, l = M(() => {
|
|
1710
1741
|
var u, g;
|
|
1711
1742
|
return (g = (u = t.option) == null ? void 0 : u.name) != null ? g : t.text;
|
|
1712
|
-
}), c =
|
|
1743
|
+
}), c = M(() => {
|
|
1713
1744
|
var u, g;
|
|
1714
1745
|
return (g = (u = t.option) == null ? void 0 : u.parentName) != null ? g : "";
|
|
1715
|
-
}), f =
|
|
1746
|
+
}), f = j(!1);
|
|
1716
1747
|
function r() {
|
|
1717
1748
|
var u;
|
|
1718
1749
|
t.isCreateNewOption === !0 ? n("create-object") : n("select-object", (u = t.option) == null ? void 0 : u.id);
|
|
1719
1750
|
}
|
|
1720
|
-
function
|
|
1751
|
+
function b(u) {
|
|
1721
1752
|
u === !0 ? (f.value = !0, n("option-highlighted", t.index)) : t.index !== t.selectedIndex && (f.value = !1);
|
|
1722
1753
|
}
|
|
1723
1754
|
function a() {
|
|
1724
1755
|
t.selectedIndex === t.index ? f.value = !0 : f.value = !1;
|
|
1725
1756
|
}
|
|
1726
1757
|
return ee(() => t.selectedIndex, () => a()), (u, g) => {
|
|
1727
|
-
var
|
|
1728
|
-
const
|
|
1758
|
+
var w, O;
|
|
1759
|
+
const p = _("icon");
|
|
1729
1760
|
return i(), d("div", {
|
|
1730
1761
|
class: U(["cl-cursor-pointer cl-duration-75 cl-flex cl-p-1 cl-transition-colors", {
|
|
1731
1762
|
"cl-bg-white": f.value === !1,
|
|
@@ -1733,18 +1764,18 @@ const fe = /* @__PURE__ */ he(pt, [["__scopeId", "data-v-4d513eb1"]]), yt = { cl
|
|
|
1733
1764
|
"cl-bg-primary-default cl-text-white cl-opacity-90": f.value && e.isCreateNewOption
|
|
1734
1765
|
}]),
|
|
1735
1766
|
onMousedown: r,
|
|
1736
|
-
onMousemove: g[0] || (g[0] = (v) =>
|
|
1737
|
-
onMouseleave: g[1] || (g[1] = (v) =>
|
|
1767
|
+
onMousemove: g[0] || (g[0] = (v) => b(!0)),
|
|
1768
|
+
onMouseleave: g[1] || (g[1] = (v) => b(!1))
|
|
1738
1769
|
}, [
|
|
1739
|
-
e.option !== null && ((
|
|
1770
|
+
e.option !== null && ((w = e.option) == null ? void 0 : w.parentId) !== 0 && ((O = e.option) == null ? void 0 : O.parentId) !== void 0 ? (i(), d("div", jt, k(o(c)), 1)) : N("", !0),
|
|
1740
1771
|
s("div", {
|
|
1741
1772
|
class: U({
|
|
1742
1773
|
"cl-w-1/2": o(c) !== "",
|
|
1743
1774
|
"cl-w-full": o(c) === ""
|
|
1744
1775
|
})
|
|
1745
1776
|
}, k(o(l)), 3),
|
|
1746
|
-
L(s("div",
|
|
1747
|
-
|
|
1777
|
+
L(s("div", Mt, [
|
|
1778
|
+
$(p, {
|
|
1748
1779
|
class: U(["cl-transition-colors", {
|
|
1749
1780
|
"cl-text-white": f.value,
|
|
1750
1781
|
"cl-text-black ": !f.value
|
|
@@ -1752,12 +1783,12 @@ const fe = /* @__PURE__ */ he(pt, [["__scopeId", "data-v-4d513eb1"]]), yt = { cl
|
|
|
1752
1783
|
icon: "ph:plus"
|
|
1753
1784
|
}, null, 8, ["class"])
|
|
1754
1785
|
], 512), [
|
|
1755
|
-
[
|
|
1786
|
+
[F, e.isCreateNewOption]
|
|
1756
1787
|
])
|
|
1757
1788
|
], 34);
|
|
1758
1789
|
};
|
|
1759
1790
|
}
|
|
1760
|
-
}),
|
|
1791
|
+
}), It = ["onKeyup"], Nt = { class: "cl-flex" }, qt = { key: 5 }, Dt = /* @__PURE__ */ H({
|
|
1761
1792
|
__name: "cl-ui-combo-box-search",
|
|
1762
1793
|
props: {
|
|
1763
1794
|
loading: { type: Boolean, default: !1 },
|
|
@@ -1778,131 +1809,131 @@ const fe = /* @__PURE__ */ he(pt, [["__scopeId", "data-v-4d513eb1"]]), yt = { cl
|
|
|
1778
1809
|
"hide-dropdown": null
|
|
1779
1810
|
},
|
|
1780
1811
|
setup(e, { emit: n }) {
|
|
1781
|
-
const t = e, { t: l } =
|
|
1812
|
+
const t = e, { t: l } = ue(), c = j(""), f = j(!1), r = j(-1), b = M(() => f.value ? -1 : 0), a = j();
|
|
1782
1813
|
function u(y) {
|
|
1783
1814
|
(y === void 0 || (y == null ? void 0 : y.code.startsWith("Arrow")) === !1 && (y == null ? void 0 : y.code.startsWith("Control")) === !1 && (y == null ? void 0 : y.code.startsWith("Shift")) === !1 && (y == null ? void 0 : y.code.startsWith("Tab")) === !1 && (y == null ? void 0 : y.code) !== "Enter") && (n("search", c.value), r.value = -2);
|
|
1784
1815
|
}
|
|
1785
1816
|
function g(y) {
|
|
1786
1817
|
n("select-object", y);
|
|
1787
1818
|
}
|
|
1788
|
-
function
|
|
1789
|
-
n("create-object", c.value),
|
|
1819
|
+
function p() {
|
|
1820
|
+
n("create-object", c.value), w();
|
|
1790
1821
|
}
|
|
1791
|
-
function
|
|
1822
|
+
function w() {
|
|
1792
1823
|
n("hide-dropdown");
|
|
1793
1824
|
}
|
|
1794
|
-
function
|
|
1795
|
-
r.value < t.results.length - 1 ? (r.value === -2 && c.value === "" && r.value++, r.value++) : r.value = y,
|
|
1825
|
+
function O(y) {
|
|
1826
|
+
r.value < t.results.length - 1 ? (r.value === -2 && c.value === "" && r.value++, r.value++) : r.value = y, q();
|
|
1796
1827
|
}
|
|
1797
1828
|
function v(y) {
|
|
1798
|
-
r.value > y ? r.value-- : r.value = t.results.length - 1,
|
|
1829
|
+
r.value > y ? r.value-- : r.value = t.results.length - 1, q();
|
|
1799
1830
|
}
|
|
1800
1831
|
function B() {
|
|
1801
|
-
r.value >= 0 && t.results !== void 0 ? g(t.results[r.value].id) : r.value === -1 &&
|
|
1832
|
+
r.value >= 0 && t.results !== void 0 ? g(t.results[r.value].id) : r.value === -1 && p();
|
|
1802
1833
|
}
|
|
1803
|
-
function
|
|
1834
|
+
function V(y) {
|
|
1804
1835
|
if (y.key === "Tab" && y.shiftKey === !0) {
|
|
1805
|
-
const
|
|
1806
|
-
let
|
|
1807
|
-
for (let
|
|
1808
|
-
|
|
1809
|
-
|
|
1836
|
+
const h = document.getElementsByTagName("input");
|
|
1837
|
+
let x = -1;
|
|
1838
|
+
for (let I = 0; I < h.length; I++)
|
|
1839
|
+
h[I] === y.target && (x = I - 1);
|
|
1840
|
+
x >= 0 && (h[x].focus(), w());
|
|
1810
1841
|
}
|
|
1811
1842
|
}
|
|
1812
|
-
function
|
|
1843
|
+
function q() {
|
|
1813
1844
|
var y;
|
|
1814
1845
|
t.results && t.results.length > 1 && ((y = a.value) == null || y.scrollTo(0, (r.value + 1) * 34 - 34 * 2));
|
|
1815
1846
|
}
|
|
1816
|
-
function
|
|
1847
|
+
function Q() {
|
|
1817
1848
|
let y = !1;
|
|
1818
1849
|
t.results !== null && t.results.length === 1 && (y = c.value.toUpperCase().trim() === t.results[0].name.toUpperCase().trim()), f.value = t.canCreateNewObject === !0 && t.errorMessage === "" && c.value.trim() !== "" && y === !1;
|
|
1819
1850
|
}
|
|
1820
|
-
function
|
|
1851
|
+
function C(y) {
|
|
1821
1852
|
r.value = y;
|
|
1822
1853
|
}
|
|
1823
|
-
function
|
|
1824
|
-
t.isVisible === !0 && (c.value = "", u(),
|
|
1825
|
-
var y,
|
|
1826
|
-
return (
|
|
1854
|
+
function E() {
|
|
1855
|
+
t.isVisible === !0 && (c.value = "", u(), Ce(() => {
|
|
1856
|
+
var y, h;
|
|
1857
|
+
return (h = (y = a.value) == null ? void 0 : y.querySelector("input")) == null ? void 0 : h.focus();
|
|
1827
1858
|
}));
|
|
1828
1859
|
}
|
|
1829
|
-
return ee(() => t.results, () =>
|
|
1860
|
+
return ee(() => t.results, () => Q()), ee(() => t.errorMessage, () => Q()), ee(() => t.isVisible, () => E()), je(() => {
|
|
1830
1861
|
var y;
|
|
1831
|
-
return (y = a.value) == null ? void 0 : y.addEventListener("keydown",
|
|
1832
|
-
}),
|
|
1862
|
+
return (y = a.value) == null ? void 0 : y.addEventListener("keydown", V);
|
|
1863
|
+
}), De(() => {
|
|
1833
1864
|
var y;
|
|
1834
|
-
return (y = a.value) == null ? void 0 : y.removeEventListener("keydown",
|
|
1835
|
-
}), (y,
|
|
1836
|
-
var
|
|
1837
|
-
const
|
|
1865
|
+
return (y = a.value) == null ? void 0 : y.removeEventListener("keydown", V);
|
|
1866
|
+
}), (y, h) => {
|
|
1867
|
+
var I;
|
|
1868
|
+
const x = _("cl-ui-loading-spinner");
|
|
1838
1869
|
return i(), d("div", {
|
|
1839
1870
|
ref_key: "container",
|
|
1840
1871
|
ref: a,
|
|
1841
1872
|
class: "cl-bg-white cl-border cl-border-collapse cl-border-grey-0 cl-h-52 cl-overflow-y-auto cl-p-2 cl-rounded cl-text-sm",
|
|
1842
1873
|
onKeydown: [
|
|
1843
|
-
|
|
1844
|
-
|
|
1874
|
+
h[2] || (h[2] = Ae(ae((X) => v(o(b)), ["prevent", "stop"]), ["up"])),
|
|
1875
|
+
h[3] || (h[3] = Ae(ae((X) => O(o(b)), ["prevent", "stop"]), ["down"]))
|
|
1845
1876
|
],
|
|
1846
|
-
onKeyup:
|
|
1877
|
+
onKeyup: Ae(ae(B, ["prevent", "stop"]), ["enter"])
|
|
1847
1878
|
}, [
|
|
1848
|
-
s("div",
|
|
1849
|
-
|
|
1879
|
+
s("div", Nt, [
|
|
1880
|
+
$(ge, {
|
|
1850
1881
|
modelValue: c.value,
|
|
1851
|
-
"onUpdate:modelValue":
|
|
1882
|
+
"onUpdate:modelValue": h[0] || (h[0] = (X) => c.value = X),
|
|
1852
1883
|
class: "!cl-mr-0 cl-mb-1 cl-w-full",
|
|
1853
1884
|
"input-type": "text",
|
|
1854
1885
|
"placeholder-text": o(l)("comboBox.searchHint", { object: e.objectType }),
|
|
1855
1886
|
onKeyup: u,
|
|
1856
|
-
onBlur:
|
|
1887
|
+
onBlur: w
|
|
1857
1888
|
}, null, 8, ["modelValue", "placeholder-text"]),
|
|
1858
|
-
L(
|
|
1859
|
-
[
|
|
1889
|
+
L($(x, { class: "cl-absolute cl-ml-2 cl-mt-11" }, null, 512), [
|
|
1890
|
+
[F, e.loading]
|
|
1860
1891
|
])
|
|
1861
1892
|
]),
|
|
1862
|
-
e.currentObjectName !== "" ? (i(),
|
|
1893
|
+
e.currentObjectName !== "" ? (i(), J(Ne, {
|
|
1863
1894
|
key: 0,
|
|
1864
1895
|
"show-clear-button": e.canClearSelectedObject,
|
|
1865
1896
|
text: e.currentObjectName,
|
|
1866
|
-
onClearObject:
|
|
1897
|
+
onClearObject: h[1] || (h[1] = (X) => y.$emit("clear-object"))
|
|
1867
1898
|
}, null, 8, ["show-clear-button", "text"])) : N("", !0),
|
|
1868
|
-
e.objectParentType !== "" && e.results !== void 0 && e.results.length > 0 && e.errorMessage === "" ? (i(),
|
|
1899
|
+
e.objectParentType !== "" && e.results !== void 0 && e.results.length > 0 && e.errorMessage === "" ? (i(), J(Ne, {
|
|
1869
1900
|
key: 1,
|
|
1870
1901
|
text: e.objectType,
|
|
1871
1902
|
"additional-text": e.objectParentType,
|
|
1872
1903
|
class: "cl-bg-grey-2 cl-mt-1"
|
|
1873
1904
|
}, null, 8, ["text", "additional-text"])) : N("", !0),
|
|
1874
|
-
e.results !== null && ((
|
|
1905
|
+
e.results !== null && ((I = e.results) == null ? void 0 : I.length) === 0 && c.value.trim() !== "" && e.canCreateNewObject === !1 && e.errorMessage === "" ? (i(), J(Ne, {
|
|
1875
1906
|
key: 2,
|
|
1876
1907
|
text: o(l)("comboBox.noResults", { value: c.value })
|
|
1877
1908
|
}, null, 8, ["text"])) : N("", !0),
|
|
1878
|
-
e.errorMessage !== "" ? (i(),
|
|
1909
|
+
e.errorMessage !== "" ? (i(), J(Ne, {
|
|
1879
1910
|
key: 3,
|
|
1880
1911
|
class: "!cl-bg-danger-light cl-border-danger-light cl-rounded cl-text-danger-dark",
|
|
1881
1912
|
text: o(l)("comboBox.errorMessage", { error: e.errorMessage })
|
|
1882
1913
|
}, null, 8, ["text"])) : N("", !0),
|
|
1883
|
-
f.value ? (i(),
|
|
1914
|
+
f.value ? (i(), J(_e, {
|
|
1884
1915
|
key: 4,
|
|
1885
1916
|
"is-create-new-option": !0,
|
|
1886
1917
|
text: o(l)("comboBox.addPrompt", { value: c.value, object: e.objectType }),
|
|
1887
1918
|
index: -1,
|
|
1888
1919
|
"selected-index": r.value,
|
|
1889
|
-
onCreateObject:
|
|
1890
|
-
onOptionHighlighted:
|
|
1920
|
+
onCreateObject: p,
|
|
1921
|
+
onOptionHighlighted: C
|
|
1891
1922
|
}, null, 8, ["text", "selected-index"])) : N("", !0),
|
|
1892
|
-
e.errorMessage === "" && e.results !== null ? (i(), d("div",
|
|
1893
|
-
(i(!0), d(z, null, ce(e.results, (X, le) => (i(),
|
|
1923
|
+
e.errorMessage === "" && e.results !== null ? (i(), d("div", qt, [
|
|
1924
|
+
(i(!0), d(z, null, ce(e.results, (X, le) => (i(), J(_e, {
|
|
1894
1925
|
key: le,
|
|
1895
1926
|
option: X,
|
|
1896
1927
|
index: le,
|
|
1897
1928
|
"selected-index": r.value,
|
|
1898
1929
|
onSelectObject: g,
|
|
1899
|
-
onOptionHighlighted:
|
|
1930
|
+
onOptionHighlighted: C
|
|
1900
1931
|
}, null, 8, ["option", "index", "selected-index"]))), 128))
|
|
1901
1932
|
])) : N("", !0)
|
|
1902
|
-
], 40,
|
|
1933
|
+
], 40, It);
|
|
1903
1934
|
};
|
|
1904
1935
|
}
|
|
1905
|
-
}),
|
|
1936
|
+
}), Rt = { class: "cl-flex" }, Ut = { class: "cl-relative cl-right-20 cl-top-0.5" }, zt = { class: "cl-absolute cl-flex cl-float-right cl-font-semibold cl-mt-2 cl-text-danger-default cl-text-sm" }, Bt = { class: "cl-ml-4 cl-w-11/12" }, Lt = { class: "cl-p-2 cl-text-right cl-w-full" }, Pt = /* @__PURE__ */ H({
|
|
1906
1937
|
__name: "cl-ui-combo-box",
|
|
1907
1938
|
props: {
|
|
1908
1939
|
loading: { type: Boolean, default: !1 },
|
|
@@ -1928,27 +1959,27 @@ const fe = /* @__PURE__ */ he(pt, [["__scopeId", "data-v-4d513eb1"]]), yt = { cl
|
|
|
1928
1959
|
"update:current-object": null
|
|
1929
1960
|
},
|
|
1930
1961
|
setup(e, { expose: n, emit: t }) {
|
|
1931
|
-
const l = e, { t: c } =
|
|
1962
|
+
const l = e, { t: c } = ue(), f = j(!1), r = M({
|
|
1932
1963
|
get: () => l.currentObject,
|
|
1933
1964
|
set: (m) => t("update:current-object", m)
|
|
1934
|
-
}),
|
|
1965
|
+
}), b = j(null), a = j(null), u = M(() => X()), g = j(""), p = j(""), w = j(), O = j(!0);
|
|
1935
1966
|
function v(m) {
|
|
1936
1967
|
l.disabled || (typeof m < "u" ? f.value = m : f.value = !f.value);
|
|
1937
1968
|
}
|
|
1938
1969
|
function B(m) {
|
|
1939
1970
|
g.value = m, t("search", m);
|
|
1940
1971
|
}
|
|
1941
|
-
function
|
|
1942
|
-
|
|
1972
|
+
function V(m) {
|
|
1973
|
+
p.value = m, t("search-parent", m);
|
|
1943
1974
|
}
|
|
1944
|
-
function
|
|
1975
|
+
function q() {
|
|
1945
1976
|
r.value = null, v(!1);
|
|
1946
1977
|
}
|
|
1947
|
-
function
|
|
1948
|
-
const A =
|
|
1978
|
+
function Q(m) {
|
|
1979
|
+
const A = C(m);
|
|
1949
1980
|
r.value = A, v(!1);
|
|
1950
1981
|
}
|
|
1951
|
-
function
|
|
1982
|
+
function C(m) {
|
|
1952
1983
|
let A = null;
|
|
1953
1984
|
if (l.results !== null) {
|
|
1954
1985
|
for (let P = 0; P < l.results.length; P++)
|
|
@@ -1959,46 +1990,46 @@ const fe = /* @__PURE__ */ he(pt, [["__scopeId", "data-v-4d513eb1"]]), yt = { cl
|
|
|
1959
1990
|
}
|
|
1960
1991
|
return A;
|
|
1961
1992
|
}
|
|
1962
|
-
function
|
|
1993
|
+
function E() {
|
|
1963
1994
|
var m, A;
|
|
1964
|
-
|
|
1995
|
+
w.value = {
|
|
1965
1996
|
name: g.value,
|
|
1966
1997
|
parentId: (A = (m = a.value) == null ? void 0 : m.id) != null ? A : 0
|
|
1967
|
-
}, t("create-object",
|
|
1998
|
+
}, t("create-object", w.value);
|
|
1968
1999
|
}
|
|
1969
2000
|
function y() {
|
|
1970
|
-
|
|
1971
|
-
name:
|
|
2001
|
+
w.value = {
|
|
2002
|
+
name: p.value,
|
|
1972
2003
|
parentId: 0
|
|
1973
|
-
}, t("create-parent-object",
|
|
2004
|
+
}, t("create-parent-object", w.value);
|
|
1974
2005
|
}
|
|
1975
|
-
function
|
|
2006
|
+
function h() {
|
|
1976
2007
|
var m, A;
|
|
1977
|
-
(m = l.objectCreatedResponse) != null && m.error ?
|
|
2008
|
+
(m = l.objectCreatedResponse) != null && m.error ? Je({
|
|
1978
2009
|
message: c("comboBox.createFailed", { name: g.value, error: l.objectCreatedResponse.error }),
|
|
1979
2010
|
colour: "danger",
|
|
1980
2011
|
duration: 1e4
|
|
1981
|
-
}) : (A = l.objectCreatedResponse) != null && A.id &&
|
|
2012
|
+
}) : (A = l.objectCreatedResponse) != null && A.id && I();
|
|
1982
2013
|
}
|
|
1983
|
-
function
|
|
2014
|
+
function x() {
|
|
1984
2015
|
var m, A;
|
|
1985
2016
|
(m = l.parentObjectCreatedResponse) != null && m.id && (a.value = {
|
|
1986
2017
|
id: l.parentObjectCreatedResponse.id,
|
|
1987
2018
|
name: (A = l.parentObjectCreatedResponse.name) != null ? A : ""
|
|
1988
2019
|
});
|
|
1989
2020
|
}
|
|
1990
|
-
function
|
|
1991
|
-
var A, P,
|
|
1992
|
-
|
|
2021
|
+
function I() {
|
|
2022
|
+
var A, P, se, T, G, te, be, Me, S;
|
|
2023
|
+
Je({
|
|
1993
2024
|
message: c("comboBox.createSuccessful", { object: l.objectType, name: (P = (A = l.objectCreatedResponse) == null ? void 0 : A.name) != null ? P : "" }),
|
|
1994
2025
|
colour: "primary",
|
|
1995
2026
|
duration: 1e4
|
|
1996
2027
|
});
|
|
1997
2028
|
let m = "";
|
|
1998
|
-
a.value && a.value.id === ((
|
|
1999
|
-
id: (
|
|
2000
|
-
name: (
|
|
2001
|
-
parentId: (
|
|
2029
|
+
a.value && a.value.id === ((se = l.objectCreatedResponse) == null ? void 0 : se.parentId) && (m = a.value.name), r.value = {
|
|
2030
|
+
id: (G = (T = l.objectCreatedResponse) == null ? void 0 : T.id) != null ? G : 0,
|
|
2031
|
+
name: (be = (te = l.objectCreatedResponse) == null ? void 0 : te.name) != null ? be : "",
|
|
2032
|
+
parentId: (S = (Me = l.objectCreatedResponse) == null ? void 0 : Me.parentId) != null ? S : 0,
|
|
2002
2033
|
parentName: m
|
|
2003
2034
|
};
|
|
2004
2035
|
}
|
|
@@ -2008,41 +2039,41 @@ const fe = /* @__PURE__ */ he(pt, [["__scopeId", "data-v-4d513eb1"]]), yt = { cl
|
|
|
2008
2039
|
}
|
|
2009
2040
|
function le() {
|
|
2010
2041
|
let m = !0;
|
|
2011
|
-
g.value === "" && (m = !1), l.objectParentType !== "" && a.value === null && (m = !1),
|
|
2042
|
+
g.value === "" && (m = !1), l.objectParentType !== "" && a.value === null && (m = !1), O.value = m;
|
|
2012
2043
|
}
|
|
2013
|
-
return ee(() => l.objectCreatedResponse, () =>
|
|
2044
|
+
return ee(() => l.objectCreatedResponse, () => h()), ee(() => l.parentObjectCreatedResponse, () => x()), ee(() => g.value, () => le()), ee(() => a.value, () => le()), n({
|
|
2014
2045
|
focus() {
|
|
2015
2046
|
var m;
|
|
2016
|
-
(m =
|
|
2047
|
+
(m = b.value) == null || m.focus();
|
|
2017
2048
|
}
|
|
2018
2049
|
}), (m, A) => {
|
|
2019
|
-
const P = _("icon"),
|
|
2050
|
+
const P = _("icon"), se = _("cl-ui-combo-box", !0);
|
|
2020
2051
|
return i(), d("div", null, [
|
|
2021
|
-
s("div",
|
|
2022
|
-
|
|
2052
|
+
s("div", Rt, [
|
|
2053
|
+
$(ge, {
|
|
2023
2054
|
ref_key: "inputRef",
|
|
2024
|
-
ref:
|
|
2055
|
+
ref: b,
|
|
2025
2056
|
modelValue: o(u),
|
|
2026
|
-
"onUpdate:modelValue": A[0] || (A[0] = (
|
|
2057
|
+
"onUpdate:modelValue": A[0] || (A[0] = (T) => ve(u) ? u.value = T : null),
|
|
2027
2058
|
class: U(["!cl-bg-transparent !cl-mr-0 cl-mb-0 cl-rounded-r-none cl-w-full cl-z-10", {
|
|
2028
2059
|
"cl-cursor-pointer": e.disabled === !1
|
|
2029
2060
|
}]),
|
|
2030
2061
|
"input-type": "text",
|
|
2031
2062
|
"placeholder-text": o(c)("comboBox.emptyHintText", { object: e.objectType }),
|
|
2032
|
-
onFocus: A[1] || (A[1] = (
|
|
2063
|
+
onFocus: A[1] || (A[1] = (T) => {
|
|
2033
2064
|
v(!0), m.$emit("focus");
|
|
2034
2065
|
})
|
|
2035
2066
|
}, null, 8, ["modelValue", "class", "placeholder-text"]),
|
|
2036
|
-
L(s("div",
|
|
2037
|
-
s("div",
|
|
2067
|
+
L(s("div", Ut, [
|
|
2068
|
+
s("div", zt, [
|
|
2038
2069
|
Y(k(o(c)("comboBox.required")) + " ", 1),
|
|
2039
|
-
|
|
2070
|
+
$(P, {
|
|
2040
2071
|
class: "cl-ml-1 cl-mt-1",
|
|
2041
2072
|
icon: "ph:warning"
|
|
2042
2073
|
})
|
|
2043
2074
|
])
|
|
2044
2075
|
], 512), [
|
|
2045
|
-
[
|
|
2076
|
+
[F, e.required && e.disabled === !1 && e.currentObject === null]
|
|
2046
2077
|
]),
|
|
2047
2078
|
f.value ? (i(), d("div", {
|
|
2048
2079
|
key: 1,
|
|
@@ -2050,9 +2081,9 @@ const fe = /* @__PURE__ */ he(pt, [["__scopeId", "data-v-4d513eb1"]]), yt = { cl
|
|
|
2050
2081
|
"cl-cursor-default": e.disabled,
|
|
2051
2082
|
"cl-cursor-pointer": e.disabled === !1
|
|
2052
2083
|
}]),
|
|
2053
|
-
onClick: A[3] || (A[3] = (
|
|
2084
|
+
onClick: A[3] || (A[3] = (T) => v(!1))
|
|
2054
2085
|
}, [
|
|
2055
|
-
|
|
2086
|
+
$(P, {
|
|
2056
2087
|
icon: "ph:caret-up-bold",
|
|
2057
2088
|
class: "cl-ml-[5px] cl-mt-[12px]"
|
|
2058
2089
|
})
|
|
@@ -2062,20 +2093,20 @@ const fe = /* @__PURE__ */ he(pt, [["__scopeId", "data-v-4d513eb1"]]), yt = { cl
|
|
|
2062
2093
|
"cl-cursor-default": e.disabled,
|
|
2063
2094
|
"cl-cursor-pointer": e.disabled === !1
|
|
2064
2095
|
}]),
|
|
2065
|
-
onClick: A[2] || (A[2] = (
|
|
2096
|
+
onClick: A[2] || (A[2] = (T) => v(!0))
|
|
2066
2097
|
}, [
|
|
2067
|
-
|
|
2098
|
+
$(P, {
|
|
2068
2099
|
icon: "ph:caret-down-bold",
|
|
2069
2100
|
class: "cl-ml-[5px] cl-mt-[12px]"
|
|
2070
2101
|
})
|
|
2071
2102
|
], 2))
|
|
2072
2103
|
]),
|
|
2073
|
-
|
|
2074
|
-
title:
|
|
2104
|
+
$(il, { size: "x-small" }, {
|
|
2105
|
+
title: Z(() => [
|
|
2075
2106
|
Y(k(o(c)("comboBox.createTitle", { object: e.objectType })), 1)
|
|
2076
2107
|
]),
|
|
2077
|
-
trigger:
|
|
2078
|
-
L(
|
|
2108
|
+
trigger: Z(({ open: T }) => [
|
|
2109
|
+
L($(Dt, {
|
|
2079
2110
|
"can-create-new-object": e.canCreateNewObject,
|
|
2080
2111
|
"can-clear-selected-object": e.canClearSelectedObject,
|
|
2081
2112
|
loading: e.loading,
|
|
@@ -2085,49 +2116,49 @@ const fe = /* @__PURE__ */ he(pt, [["__scopeId", "data-v-4d513eb1"]]), yt = { cl
|
|
|
2085
2116
|
"error-message": e.errorMessage,
|
|
2086
2117
|
"current-object-name": o(u),
|
|
2087
2118
|
"is-visible": f.value,
|
|
2088
|
-
onCreateObject:
|
|
2089
|
-
onSelectObject:
|
|
2090
|
-
onClearObject:
|
|
2119
|
+
onCreateObject: T,
|
|
2120
|
+
onSelectObject: Q,
|
|
2121
|
+
onClearObject: q,
|
|
2091
2122
|
onSearch: B,
|
|
2092
|
-
onHideDropdown: A[4] || (A[4] = (
|
|
2123
|
+
onHideDropdown: A[4] || (A[4] = (G) => v(!1))
|
|
2093
2124
|
}, 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"]), [
|
|
2094
|
-
[
|
|
2125
|
+
[F, f.value]
|
|
2095
2126
|
])
|
|
2096
2127
|
]),
|
|
2097
|
-
footer:
|
|
2098
|
-
s("div",
|
|
2099
|
-
|
|
2128
|
+
footer: Z(({ close: T }) => [
|
|
2129
|
+
s("div", Lt, [
|
|
2130
|
+
$($e, {
|
|
2100
2131
|
class: "cl-mr-3",
|
|
2101
2132
|
colour: "default",
|
|
2102
2133
|
size: "small",
|
|
2103
|
-
onClick:
|
|
2134
|
+
onClick: T
|
|
2104
2135
|
}, {
|
|
2105
|
-
default:
|
|
2136
|
+
default: Z(() => [
|
|
2106
2137
|
Y(k(o(c)("comboBox.cancel")), 1)
|
|
2107
2138
|
]),
|
|
2108
2139
|
_: 2
|
|
2109
2140
|
}, 1032, ["onClick"]),
|
|
2110
|
-
|
|
2141
|
+
$($e, {
|
|
2111
2142
|
colour: "primary",
|
|
2112
2143
|
size: "small",
|
|
2113
|
-
disabled: !
|
|
2114
|
-
onClick: (
|
|
2115
|
-
|
|
2144
|
+
disabled: !O.value,
|
|
2145
|
+
onClick: (G) => {
|
|
2146
|
+
E(), T();
|
|
2116
2147
|
}
|
|
2117
2148
|
}, {
|
|
2118
|
-
default:
|
|
2149
|
+
default: Z(() => [
|
|
2119
2150
|
Y(k(o(c)("comboBox.create")), 1)
|
|
2120
2151
|
]),
|
|
2121
2152
|
_: 2
|
|
2122
2153
|
}, 1032, ["disabled", "onClick"])
|
|
2123
2154
|
])
|
|
2124
2155
|
]),
|
|
2125
|
-
default:
|
|
2126
|
-
s("div",
|
|
2127
|
-
e.objectParentType ? (i(),
|
|
2156
|
+
default: Z(() => [
|
|
2157
|
+
s("div", Bt, [
|
|
2158
|
+
e.objectParentType ? (i(), J(se, {
|
|
2128
2159
|
key: 0,
|
|
2129
2160
|
"current-object": a.value,
|
|
2130
|
-
"onUpdate:current-object": A[5] || (A[5] = (
|
|
2161
|
+
"onUpdate:current-object": A[5] || (A[5] = (T) => a.value = T),
|
|
2131
2162
|
class: "cl-mt-3",
|
|
2132
2163
|
results: e.parentResults,
|
|
2133
2164
|
loading: e.loading,
|
|
@@ -2136,12 +2167,12 @@ const fe = /* @__PURE__ */ he(pt, [["__scopeId", "data-v-4d513eb1"]]), yt = { cl
|
|
|
2136
2167
|
"can-create-new-object": e.canCreateNewObject,
|
|
2137
2168
|
"can-clear-selected-object": e.canClearSelectedObject,
|
|
2138
2169
|
"error-message": e.errorMessage,
|
|
2139
|
-
onSearch:
|
|
2170
|
+
onSearch: V,
|
|
2140
2171
|
onCreateObject: y
|
|
2141
2172
|
}, null, 8, ["current-object", "results", "loading", "object-type", "object-created-response", "can-create-new-object", "can-clear-selected-object", "error-message"])) : N("", !0),
|
|
2142
|
-
|
|
2173
|
+
$(ge, {
|
|
2143
2174
|
modelValue: g.value,
|
|
2144
|
-
"onUpdate:modelValue": A[6] || (A[6] = (
|
|
2175
|
+
"onUpdate:modelValue": A[6] || (A[6] = (T) => g.value = T),
|
|
2145
2176
|
label: o(c)("comboBox.createProperty"),
|
|
2146
2177
|
class: "cl-mb-2 cl-pt-3 cl-w-full",
|
|
2147
2178
|
"input-type": "text"
|
|
@@ -2154,44 +2185,44 @@ const fe = /* @__PURE__ */ he(pt, [["__scopeId", "data-v-4d513eb1"]]), yt = { cl
|
|
|
2154
2185
|
};
|
|
2155
2186
|
}
|
|
2156
2187
|
});
|
|
2157
|
-
function
|
|
2188
|
+
function Ft(e) {
|
|
2158
2189
|
return typeof e.id == "number" && typeof e.name == "string";
|
|
2159
2190
|
}
|
|
2160
|
-
function
|
|
2191
|
+
function Vt(e) {
|
|
2161
2192
|
return typeof e.name == "string";
|
|
2162
2193
|
}
|
|
2163
|
-
const
|
|
2194
|
+
const Ht = {}, Gt = { class: "cl-flex cl-flex-wrap cl-left-0 cl-mt-4 cl-w-full" }, Wt = {
|
|
2164
2195
|
key: 0,
|
|
2165
2196
|
class: "cl-w-full"
|
|
2166
|
-
},
|
|
2197
|
+
}, Jt = {
|
|
2167
2198
|
key: 1,
|
|
2168
2199
|
class: "cl-leading-10 cl-text-sm cl-w-full"
|
|
2169
|
-
},
|
|
2170
|
-
function
|
|
2171
|
-
return i(), d("div",
|
|
2172
|
-
e.$slots.default ? (i(), d("div",
|
|
2173
|
-
|
|
2200
|
+
}, Kt = { class: "cl-float-left" }, Zt = { class: "cl-float-right" };
|
|
2201
|
+
function Qt(e, n) {
|
|
2202
|
+
return i(), d("div", Gt, [
|
|
2203
|
+
e.$slots.default ? (i(), d("div", Wt, [
|
|
2204
|
+
D(e.$slots, "default")
|
|
2174
2205
|
])) : N("", !0),
|
|
2175
|
-
e.$slots.left || e.$slots.right ? (i(), d("div",
|
|
2176
|
-
s("span",
|
|
2177
|
-
|
|
2206
|
+
e.$slots.left || e.$slots.right ? (i(), d("div", Jt, [
|
|
2207
|
+
s("span", Kt, [
|
|
2208
|
+
D(e.$slots, "left")
|
|
2178
2209
|
]),
|
|
2179
|
-
s("span",
|
|
2180
|
-
|
|
2210
|
+
s("span", Zt, [
|
|
2211
|
+
D(e.$slots, "right")
|
|
2181
2212
|
])
|
|
2182
2213
|
])) : N("", !0)
|
|
2183
2214
|
]);
|
|
2184
2215
|
}
|
|
2185
|
-
const
|
|
2216
|
+
const Yt = /* @__PURE__ */ pe(Ht, [["render", Qt]]), Xt = { class: "cl-mr-2 lg:cl-hidden" }, _t = { class: "cl-mr-2 lg:cl-hidden" }, en = {
|
|
2186
2217
|
key: 0,
|
|
2187
2218
|
class: "cl-inline-block cl-whitespace-nowrap"
|
|
2188
|
-
},
|
|
2219
|
+
}, ln = {
|
|
2189
2220
|
key: 1,
|
|
2190
2221
|
class: "cl-inline-block cl-whitespace-nowrap"
|
|
2191
|
-
},
|
|
2222
|
+
}, tn = {
|
|
2192
2223
|
inheritAttrs: !1
|
|
2193
|
-
},
|
|
2194
|
-
...
|
|
2224
|
+
}, nn = /* @__PURE__ */ H({
|
|
2225
|
+
...tn,
|
|
2195
2226
|
__name: "cl-ui-grid-cell",
|
|
2196
2227
|
props: {
|
|
2197
2228
|
column: null,
|
|
@@ -2204,54 +2235,54 @@ const Wt = /* @__PURE__ */ he(Bt, [["render", Gt]]), Jt = { class: "cl-mr-2 lg:c
|
|
|
2204
2235
|
"undo-edit": null
|
|
2205
2236
|
},
|
|
2206
2237
|
setup(e, { emit: n }) {
|
|
2207
|
-
const t = e, { d: l, n: c } =
|
|
2208
|
-
var
|
|
2209
|
-
return f.value[(
|
|
2238
|
+
const t = e, { d: l, n: c } = ue(), f = j(he(t.record)), r = M(() => {
|
|
2239
|
+
var p, w;
|
|
2240
|
+
return f.value[(p = t.column.field) != null ? p : ""] !== t.record[(w = t.column.field) != null ? w : ""];
|
|
2210
2241
|
});
|
|
2211
|
-
function
|
|
2212
|
-
return
|
|
2242
|
+
function b(p, w) {
|
|
2243
|
+
return p[w];
|
|
2213
2244
|
}
|
|
2214
|
-
function a(
|
|
2215
|
-
return
|
|
2245
|
+
function a(p, w) {
|
|
2246
|
+
return p[w];
|
|
2216
2247
|
}
|
|
2217
|
-
function u(
|
|
2218
|
-
return
|
|
2248
|
+
function u(p, w) {
|
|
2249
|
+
return p[w];
|
|
2219
2250
|
}
|
|
2220
2251
|
function g() {
|
|
2221
2252
|
n("focus");
|
|
2222
2253
|
}
|
|
2223
|
-
return
|
|
2224
|
-
var
|
|
2225
|
-
const
|
|
2226
|
-
|
|
2254
|
+
return fl(() => f.value = he(t.record)), ee(f, (p) => {
|
|
2255
|
+
var O;
|
|
2256
|
+
const w = (O = t.column.field) != null ? O : "";
|
|
2257
|
+
w !== "" && (p[w] !== t.record[w] ? n("edit", p[w]) : n("undo-edit"));
|
|
2227
2258
|
}, {
|
|
2228
2259
|
deep: !0
|
|
2229
|
-
}), (
|
|
2260
|
+
}), (p, w) => e.editMode && e.column.field && e.column.editable ? (i(), d("td", me({ key: 0 }, p.$attrs, {
|
|
2230
2261
|
class: ["cl-transition-colours", {
|
|
2231
2262
|
"cl-bg-link-lighter": o(r)
|
|
2232
2263
|
}]
|
|
2233
2264
|
}), [
|
|
2234
|
-
s("strong",
|
|
2235
|
-
|
|
2265
|
+
s("strong", Xt, k(e.column.caption), 1),
|
|
2266
|
+
D(p.$slots, `${e.column.name}Edit`, re(we({
|
|
2236
2267
|
cellFocused: g,
|
|
2237
2268
|
column: e.column,
|
|
2238
2269
|
edited: o(r),
|
|
2239
2270
|
record: f.value
|
|
2240
2271
|
})))
|
|
2241
|
-
], 16)) : (i(), d("td",
|
|
2242
|
-
s("strong",
|
|
2243
|
-
e.column.type === "slot" ?
|
|
2272
|
+
], 16)) : (i(), d("td", re(me({ key: 1 }, p.$attrs)), [
|
|
2273
|
+
s("strong", _t, k(e.column.caption), 1),
|
|
2274
|
+
e.column.type === "slot" ? D(p.$slots, e.column.name, re(me({ key: 0 }, { column: e.column, record: e.record }))) : e.column.type === "boolean" && e.column.field !== void 0 ? (i(), J(ge, {
|
|
2244
2275
|
key: 1,
|
|
2245
2276
|
"input-type": "checkbox",
|
|
2246
2277
|
"model-value": u(e.record, e.column.field),
|
|
2247
2278
|
disabled: !0
|
|
2248
2279
|
}, null, 8, ["model-value"])) : (e.column.type === "date" || e.column.type === "datetime") && e.column.field !== void 0 ? (i(), d(z, { key: 2 }, [
|
|
2249
2280
|
e.column.format !== void 0 ? (i(), d(z, { key: 0 }, [
|
|
2250
|
-
Y(k(o(l)(new Date(
|
|
2281
|
+
Y(k(o(l)(new Date(b(e.record, e.column.field)), e.column.format)), 1)
|
|
2251
2282
|
], 64)) : e.column.type === "date" ? (i(), d(z, { key: 1 }, [
|
|
2252
|
-
Y(k(o(l)(new Date(
|
|
2283
|
+
Y(k(o(l)(new Date(b(e.record, e.column.field)), o(K).DATE)), 1)
|
|
2253
2284
|
], 64)) : (i(), d(z, { key: 2 }, [
|
|
2254
|
-
Y(k(o(l)(new Date(
|
|
2285
|
+
Y(k(o(l)(new Date(b(e.record, e.column.field)), o(K).DATETIME)), 1)
|
|
2255
2286
|
], 64))
|
|
2256
2287
|
], 64)) : e.column.type === "number" && e.column.field ? (i(), d(z, { key: 3 }, [
|
|
2257
2288
|
e.column.format === o(ne).MULTIPLIER ? (i(), d(z, { key: 0 }, [
|
|
@@ -2262,11 +2293,11 @@ const Wt = /* @__PURE__ */ he(Bt, [["render", Gt]]), Jt = { class: "cl-mr-2 lg:c
|
|
|
2262
2293
|
Y(k(a(e.record, e.column.field)), 1)
|
|
2263
2294
|
], 64))
|
|
2264
2295
|
], 64)) : e.column.field !== void 0 ? (i(), d(z, { key: 4 }, [
|
|
2265
|
-
e.column.maxLength !== void 0 ? (i(), d("span",
|
|
2296
|
+
e.column.maxLength !== void 0 ? (i(), d("span", en, k(b(e.record, e.column.field).trimToLength(e.column.maxLength, e.column.format !== void 0 ? e.column.format === "ellipsis" : !1)), 1)) : (i(), d("span", ln, k(b(e.record, e.column.field)), 1))
|
|
2266
2297
|
], 64)) : N("", !0)
|
|
2267
2298
|
], 16));
|
|
2268
2299
|
}
|
|
2269
|
-
}),
|
|
2300
|
+
}), on = [
|
|
2270
2301
|
"string",
|
|
2271
2302
|
"boolean",
|
|
2272
2303
|
"number",
|
|
@@ -2274,23 +2305,23 @@ const Wt = /* @__PURE__ */ he(Bt, [["render", Gt]]), Jt = { class: "cl-mr-2 lg:c
|
|
|
2274
2305
|
"datetime",
|
|
2275
2306
|
"slot"
|
|
2276
2307
|
];
|
|
2277
|
-
function
|
|
2308
|
+
function sl(e) {
|
|
2278
2309
|
return typeof e.caption == "string" && typeof e.name == "string" && typeof e.type == "string";
|
|
2279
2310
|
}
|
|
2280
|
-
function
|
|
2311
|
+
function cn(e) {
|
|
2281
2312
|
let n = Array.isArray(e);
|
|
2282
2313
|
if (n) {
|
|
2283
2314
|
for (const t of e)
|
|
2284
|
-
if (!
|
|
2315
|
+
if (!sl(t)) {
|
|
2285
2316
|
n = !1;
|
|
2286
2317
|
break;
|
|
2287
2318
|
}
|
|
2288
2319
|
}
|
|
2289
2320
|
return n;
|
|
2290
2321
|
}
|
|
2291
|
-
const
|
|
2292
|
-
var
|
|
2293
|
-
const
|
|
2322
|
+
const an = ["ellipsis"];
|
|
2323
|
+
var ke = /* @__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))(ke || {});
|
|
2324
|
+
const sn = [
|
|
2294
2325
|
"equal",
|
|
2295
2326
|
"notequal",
|
|
2296
2327
|
"contains",
|
|
@@ -2302,24 +2333,24 @@ const tn = [
|
|
|
2302
2333
|
"equalorlessthan",
|
|
2303
2334
|
"equalorgreaterthan"
|
|
2304
2335
|
];
|
|
2305
|
-
function
|
|
2336
|
+
function rn(e) {
|
|
2306
2337
|
return typeof e.filterOnColumn == "string" && typeof e.filterOperation == "number" && typeof e.filterValue == "string";
|
|
2307
2338
|
}
|
|
2308
|
-
function
|
|
2339
|
+
function un(e) {
|
|
2309
2340
|
return e === null || typeof e.sortByAscending == "boolean" && typeof e.sortOnColumn == "string";
|
|
2310
2341
|
}
|
|
2311
|
-
function
|
|
2312
|
-
let n = typeof e.filters == "object" && Array.isArray(e.filters) && typeof e.pageNumber == "number" && typeof e.pageSize == "number" && typeof e.sort == "object" &&
|
|
2342
|
+
function dn(e) {
|
|
2343
|
+
let n = typeof e.filters == "object" && Array.isArray(e.filters) && typeof e.pageNumber == "number" && typeof e.pageSize == "number" && typeof e.sort == "object" && un(e.sort);
|
|
2313
2344
|
if (n) {
|
|
2314
2345
|
for (const t of e.filters)
|
|
2315
|
-
if (!
|
|
2346
|
+
if (!rn(t)) {
|
|
2316
2347
|
n = !1;
|
|
2317
2348
|
break;
|
|
2318
2349
|
}
|
|
2319
2350
|
}
|
|
2320
2351
|
return n;
|
|
2321
2352
|
}
|
|
2322
|
-
function
|
|
2353
|
+
function fn(e, n) {
|
|
2323
2354
|
let t = typeof e.results == "object" && Array.isArray(e.results) && typeof e.totalRecords == "number";
|
|
2324
2355
|
if (t) {
|
|
2325
2356
|
for (const l of e.results)
|
|
@@ -2330,7 +2361,7 @@ function an(e, n) {
|
|
|
2330
2361
|
}
|
|
2331
2362
|
return t;
|
|
2332
2363
|
}
|
|
2333
|
-
const
|
|
2364
|
+
const mn = {
|
|
2334
2365
|
method: "equal",
|
|
2335
2366
|
icon: "=",
|
|
2336
2367
|
description: "Equals",
|
|
@@ -2340,12 +2371,12 @@ const sn = {
|
|
|
2340
2371
|
"boolean",
|
|
2341
2372
|
"date"
|
|
2342
2373
|
]
|
|
2343
|
-
},
|
|
2374
|
+
}, gn = {
|
|
2344
2375
|
method: "contains",
|
|
2345
2376
|
icon: "⊂",
|
|
2346
2377
|
description: "Contains",
|
|
2347
2378
|
allowedTypes: ["string"]
|
|
2348
|
-
},
|
|
2379
|
+
}, bn = {
|
|
2349
2380
|
method: "lessthan",
|
|
2350
2381
|
icon: "<",
|
|
2351
2382
|
description: "Less than",
|
|
@@ -2354,8 +2385,8 @@ const sn = {
|
|
|
2354
2385
|
"date",
|
|
2355
2386
|
"datetime"
|
|
2356
2387
|
]
|
|
2357
|
-
},
|
|
2358
|
-
|
|
2388
|
+
}, el = [
|
|
2389
|
+
gn,
|
|
2359
2390
|
{
|
|
2360
2391
|
method: "notcontains",
|
|
2361
2392
|
icon: "⊄",
|
|
@@ -2374,7 +2405,7 @@ const sn = {
|
|
|
2374
2405
|
description: "Ends with",
|
|
2375
2406
|
allowedTypes: ["string"]
|
|
2376
2407
|
},
|
|
2377
|
-
|
|
2408
|
+
mn,
|
|
2378
2409
|
{
|
|
2379
2410
|
method: "notequal",
|
|
2380
2411
|
icon: "≠",
|
|
@@ -2386,7 +2417,7 @@ const sn = {
|
|
|
2386
2417
|
"date"
|
|
2387
2418
|
]
|
|
2388
2419
|
},
|
|
2389
|
-
|
|
2420
|
+
bn,
|
|
2390
2421
|
{
|
|
2391
2422
|
method: "greaterthan",
|
|
2392
2423
|
icon: ">",
|
|
@@ -2417,13 +2448,13 @@ const sn = {
|
|
|
2417
2448
|
"datetime"
|
|
2418
2449
|
]
|
|
2419
2450
|
}
|
|
2420
|
-
],
|
|
2451
|
+
], vn = {
|
|
2421
2452
|
key: 0,
|
|
2422
2453
|
class: "cl-border-grey-2 cl-border-r cl-capitalize cl-group cl-inline cl-relative cl-w-auto"
|
|
2423
|
-
},
|
|
2454
|
+
}, hn = { class: "cl-bg-off-white cl-flex cl-h-full cl-items-center cl-justify-center cl-w-10" }, pn = { class: "cl-p-3" }, yn = { class: "cl-px-4 cl-py-1 cl-w-full" }, wn = ["innerHTML"], xn = { class: "cl-p-3" }, kn = ["onClick"], $n = ["innerHTML"], Tn = /* @__PURE__ */ s("option", { value: void 0 }, null, -1), Cn = ["selected"], Sn = ["selected"], On = {
|
|
2424
2455
|
key: 1,
|
|
2425
2456
|
class: "cl-flex cl-w-full"
|
|
2426
|
-
},
|
|
2457
|
+
}, ll = /* @__PURE__ */ H({
|
|
2427
2458
|
__name: "cl-ui-grid-filter",
|
|
2428
2459
|
props: {
|
|
2429
2460
|
request: null,
|
|
@@ -2434,69 +2465,69 @@ const sn = {
|
|
|
2434
2465
|
"update:request": null
|
|
2435
2466
|
},
|
|
2436
2467
|
setup(e, { emit: n }) {
|
|
2437
|
-
const t = e, { locale: l, t: c } =
|
|
2438
|
-
const
|
|
2439
|
-
return
|
|
2440
|
-
|
|
2441
|
-
}),
|
|
2442
|
-
}),
|
|
2443
|
-
var
|
|
2444
|
-
let
|
|
2445
|
-
return typeof
|
|
2446
|
-
var
|
|
2447
|
-
return y.method.toLowerCase() === ((
|
|
2468
|
+
const t = e, { locale: l, t: c } = ue(), { debounce: f } = Ge(750), r = M(() => {
|
|
2469
|
+
const C = v();
|
|
2470
|
+
return C.forEach((E) => {
|
|
2471
|
+
E.description = c(`grid.${E.method}`);
|
|
2472
|
+
}), C;
|
|
2473
|
+
}), b = M(() => {
|
|
2474
|
+
var E;
|
|
2475
|
+
let C = (E = t.request.filters.find((y) => y.filterOnColumn === t.column.field)) == null ? void 0 : E.filterMethod;
|
|
2476
|
+
return typeof C > "u" && (C = ke[O()]), r.value.find((y) => {
|
|
2477
|
+
var h;
|
|
2478
|
+
return y.method.toLowerCase() === ((h = C == null ? void 0 : C.removeNonAlphanumeric()) == null ? void 0 : h.toLowerCase());
|
|
2448
2479
|
});
|
|
2449
|
-
}), a =
|
|
2450
|
-
var
|
|
2451
|
-
return (
|
|
2452
|
-
}), u =
|
|
2453
|
-
let
|
|
2454
|
-
return t.column.slotType === "date" || t.column.type === "date" ?
|
|
2480
|
+
}), a = M(() => {
|
|
2481
|
+
var C, E;
|
|
2482
|
+
return (E = (C = t.request.filters.find((y) => y.filterOnColumn === t.column.field)) == null ? void 0 : C.filterValue) != null ? E : "";
|
|
2483
|
+
}), u = M(() => a.value !== "" ? new Date(a.value) : null), g = j(a.value), p = M(() => Intl.NumberFormat(l.value).format(1.1).replace(/[0-9]+/g, "")), w = M(() => {
|
|
2484
|
+
let C = "text";
|
|
2485
|
+
return t.column.slotType === "date" || t.column.type === "date" ? C = "date" : (t.column.slotType === "datetime" || t.column.type === "datetime") && (C = "datetime"), C;
|
|
2455
2486
|
});
|
|
2456
|
-
function
|
|
2457
|
-
return t.column.type === "string" || t.column.slotType === "string" ?
|
|
2487
|
+
function O() {
|
|
2488
|
+
return t.column.type === "string" || t.column.slotType === "string" ? ke.CONTAINS : t.column.type === "datetime" || t.column.slotType === "datetime" ? ke.LESS_THAN : ke.EQUAL;
|
|
2458
2489
|
}
|
|
2459
2490
|
function v() {
|
|
2460
|
-
let
|
|
2461
|
-
return t.column.type !== "slot" ?
|
|
2491
|
+
let C = [];
|
|
2492
|
+
return t.column.type !== "slot" ? C = el.filter((E) => E.allowedTypes.includes(t.column.type)) : typeof t.column.slotType < "u" && typeof t.column.field < "u" && (C = el.filter((E) => E.allowedTypes.includes(t.column.slotType))), C;
|
|
2462
2493
|
}
|
|
2463
|
-
function B(
|
|
2464
|
-
const
|
|
2465
|
-
y >= 0 ? (
|
|
2494
|
+
function B(C) {
|
|
2495
|
+
const E = he(t.request), y = E.filters.findIndex((h) => h.filterOnColumn === t.column.field);
|
|
2496
|
+
y >= 0 ? (E.filters[y].filterOperation = ke[C.toUpperCase()], E.filters[y].filterMethod = C.toUpperCase()) : typeof t.column.field < "u" && E.filters.push({
|
|
2466
2497
|
filterOnColumn: t.column.field,
|
|
2467
|
-
filterMethod:
|
|
2468
|
-
filterOperation:
|
|
2498
|
+
filterMethod: C.toUpperCase(),
|
|
2499
|
+
filterOperation: ke[C.toUpperCase()],
|
|
2469
2500
|
filterValue: ""
|
|
2470
|
-
}), n("update:request",
|
|
2501
|
+
}), n("update:request", E);
|
|
2471
2502
|
}
|
|
2472
|
-
function
|
|
2503
|
+
function V(C, E) {
|
|
2473
2504
|
var X;
|
|
2474
|
-
const y = ((X =
|
|
2475
|
-
let
|
|
2476
|
-
if (
|
|
2477
|
-
|
|
2505
|
+
const y = ((X = C == null ? void 0 : C.value) != null ? X : E).trim(), h = he(t.request), x = h.filters.findIndex((le) => le.filterOnColumn === t.column.field);
|
|
2506
|
+
let I = !1;
|
|
2507
|
+
if (h.pageNumber = 1, x >= 0)
|
|
2508
|
+
I = h.filters[x].filterValue === y, h.filters[x].filterValue = y;
|
|
2478
2509
|
else if (y !== "" && typeof t.column.field < "u") {
|
|
2479
|
-
const le =
|
|
2480
|
-
|
|
2510
|
+
const le = O();
|
|
2511
|
+
h.filters.push({
|
|
2481
2512
|
filterOnColumn: t.column.field,
|
|
2482
|
-
filterMethod:
|
|
2513
|
+
filterMethod: ke[le],
|
|
2483
2514
|
filterOperation: le,
|
|
2484
2515
|
filterValue: y
|
|
2485
2516
|
});
|
|
2486
2517
|
}
|
|
2487
|
-
|
|
2518
|
+
I === !1 && n("update:request", h);
|
|
2488
2519
|
}
|
|
2489
|
-
function
|
|
2490
|
-
var
|
|
2491
|
-
let
|
|
2492
|
-
t.column.format === ne.INTEGER ? y = parseInt(
|
|
2520
|
+
function q(C) {
|
|
2521
|
+
var h, x;
|
|
2522
|
+
let E = (x = (h = C == null ? void 0 : C.value) == null ? void 0 : h.replace(new RegExp(`[^0-9\\${p.value}]`, "g"), "")) != null ? x : "", y = "";
|
|
2523
|
+
t.column.format === ne.INTEGER ? y = parseInt(E) : (E = E.replace(p.value, "."), y = parseFloat(E)), typeof y == "number" && isNaN(y) && (y = ""), V(null, y.toString());
|
|
2493
2524
|
}
|
|
2494
|
-
function
|
|
2495
|
-
var
|
|
2496
|
-
|
|
2525
|
+
function Q(C) {
|
|
2526
|
+
var E;
|
|
2527
|
+
V(null, (E = C == null ? void 0 : C.toISOString()) != null ? E : "");
|
|
2497
2528
|
}
|
|
2498
|
-
return (
|
|
2499
|
-
var
|
|
2529
|
+
return (C, E) => {
|
|
2530
|
+
var h, x;
|
|
2500
2531
|
const y = _("icon");
|
|
2501
2532
|
return e.column.filterable === void 0 || e.column.filterable === !0 ? (i(), d("div", {
|
|
2502
2533
|
key: 0,
|
|
@@ -2505,9 +2536,9 @@ const sn = {
|
|
|
2505
2536
|
"cl-border": e.column.type !== "slot" || e.column.slotType !== void 0 && e.column.field !== void 0
|
|
2506
2537
|
}])
|
|
2507
2538
|
}, [
|
|
2508
|
-
e.column.type !== "slot" || e.column.slotType !== void 0 && e.column.field !== void 0 ? (i(), d("div",
|
|
2509
|
-
s("div",
|
|
2510
|
-
|
|
2539
|
+
e.column.type !== "slot" || e.column.slotType !== void 0 && e.column.field !== void 0 ? (i(), d("div", vn, [
|
|
2540
|
+
s("div", hn, [
|
|
2541
|
+
$(y, {
|
|
2511
2542
|
icon: "ph:sliders-horizontal",
|
|
2512
2543
|
size: 20
|
|
2513
2544
|
})
|
|
@@ -2518,43 +2549,43 @@ const sn = {
|
|
|
2518
2549
|
"cl--left-44": !e.firstHalf
|
|
2519
2550
|
}])
|
|
2520
2551
|
}, [
|
|
2521
|
-
s("strong",
|
|
2522
|
-
s("span",
|
|
2523
|
-
Y(k((
|
|
2552
|
+
s("strong", pn, k(o(c)("grid.currentMethod")), 1),
|
|
2553
|
+
s("span", yn, [
|
|
2554
|
+
Y(k((h = o(b)) == null ? void 0 : h.description) + " ", 1),
|
|
2524
2555
|
s("span", {
|
|
2525
2556
|
class: "cl-float-right",
|
|
2526
|
-
innerHTML: (
|
|
2527
|
-
}, null, 8,
|
|
2557
|
+
innerHTML: (x = o(b)) == null ? void 0 : x.icon
|
|
2558
|
+
}, null, 8, wn)
|
|
2528
2559
|
]),
|
|
2529
|
-
s("strong",
|
|
2530
|
-
(i(!0), d(z, null, ce(o(r), (
|
|
2560
|
+
s("strong", xn, k(o(c)("grid.availableMethods")), 1),
|
|
2561
|
+
(i(!0), d(z, null, ce(o(r), (I, X) => (i(), d("span", {
|
|
2531
2562
|
key: X,
|
|
2532
2563
|
class: "cl-cursor-pointer cl-px-4 cl-py-1 cl-transition-colors cl-w-full hover:cl-bg-off-white",
|
|
2533
|
-
onClick: ae((le) => B(
|
|
2564
|
+
onClick: ae((le) => B(I.method), ["prevent"])
|
|
2534
2565
|
}, [
|
|
2535
|
-
Y(k(
|
|
2566
|
+
Y(k(I.description) + " ", 1),
|
|
2536
2567
|
s("span", {
|
|
2537
2568
|
class: "cl-float-right",
|
|
2538
|
-
innerHTML:
|
|
2539
|
-
}, null, 8,
|
|
2540
|
-
], 8,
|
|
2569
|
+
innerHTML: I.icon
|
|
2570
|
+
}, null, 8, $n)
|
|
2571
|
+
], 8, kn))), 128))
|
|
2541
2572
|
], 2)
|
|
2542
2573
|
])) : N("", !0),
|
|
2543
2574
|
e.column.type === "boolean" || e.column.slotType === "boolean" && typeof e.column.field < "u" ? (i(), d("select", {
|
|
2544
2575
|
key: 1,
|
|
2545
2576
|
class: "cl-border-none cl-w-full",
|
|
2546
|
-
onChange:
|
|
2577
|
+
onChange: E[0] || (E[0] = (I) => V(I.target))
|
|
2547
2578
|
}, [
|
|
2548
|
-
|
|
2579
|
+
Tn,
|
|
2549
2580
|
s("option", {
|
|
2550
2581
|
value: "true",
|
|
2551
2582
|
selected: o(a) === "true"
|
|
2552
|
-
}, k(o(c)("grid.true")), 9,
|
|
2583
|
+
}, k(o(c)("grid.true")), 9, Cn),
|
|
2553
2584
|
s("option", {
|
|
2554
2585
|
value: "false",
|
|
2555
2586
|
selected: o(a) === "false"
|
|
2556
|
-
}, k(o(c)("grid.false")), 9,
|
|
2557
|
-
], 32)) : e.column.type === "date" || e.column.type === "datetime" || (e.column.slotType === "date" || e.column.slotType === "datetime") && typeof e.column.field < "u" ? (i(),
|
|
2587
|
+
}, k(o(c)("grid.false")), 9, Sn)
|
|
2588
|
+
], 32)) : e.column.type === "date" || e.column.type === "datetime" || (e.column.slotType === "date" || e.column.slotType === "datetime") && typeof e.column.field < "u" ? (i(), J(ge, {
|
|
2558
2589
|
key: 2,
|
|
2559
2590
|
"model-value": o(u),
|
|
2560
2591
|
class: "!cl-border-none !cl-mb-0 !cl-mr-0 cl-w-full",
|
|
@@ -2562,31 +2593,31 @@ const sn = {
|
|
|
2562
2593
|
max: "2999-12-31T23:59",
|
|
2563
2594
|
label: e.column.name,
|
|
2564
2595
|
"show-label": !1,
|
|
2565
|
-
"input-type": o(
|
|
2566
|
-
"onUpdate:modelValue":
|
|
2567
|
-
}, null, 8, ["model-value", "label", "input-type"])) : e.column.type === "number" || e.column.slotType === "number" && typeof e.column.field < "u" ? (i(),
|
|
2596
|
+
"input-type": o(w),
|
|
2597
|
+
"onUpdate:modelValue": E[1] || (E[1] = (I) => Q(I))
|
|
2598
|
+
}, null, 8, ["model-value", "label", "input-type"])) : e.column.type === "number" || e.column.slotType === "number" && typeof e.column.field < "u" ? (i(), J(ge, {
|
|
2568
2599
|
key: 3,
|
|
2569
2600
|
modelValue: g.value,
|
|
2570
|
-
"onUpdate:modelValue":
|
|
2601
|
+
"onUpdate:modelValue": E[2] || (E[2] = (I) => g.value = I),
|
|
2571
2602
|
class: "cl-border-none cl-mb-0 cl-w-full",
|
|
2572
2603
|
"input-type": "number",
|
|
2573
2604
|
"show-arrows": !1,
|
|
2574
|
-
onInput:
|
|
2575
|
-
}, null, 8, ["modelValue"])) : e.column.type !== "slot" || e.column.slotType === "string" && typeof e.column.field < "u" ? (i(),
|
|
2605
|
+
onInput: E[3] || (E[3] = (I) => o(f)(q, I.target))
|
|
2606
|
+
}, null, 8, ["modelValue"])) : e.column.type !== "slot" || e.column.slotType === "string" && typeof e.column.field < "u" ? (i(), J(ge, {
|
|
2576
2607
|
key: 4,
|
|
2577
2608
|
modelValue: g.value,
|
|
2578
|
-
"onUpdate:modelValue":
|
|
2609
|
+
"onUpdate:modelValue": E[4] || (E[4] = (I) => g.value = I),
|
|
2579
2610
|
class: "cl-border-none cl-mb-0 cl-w-full",
|
|
2580
2611
|
"input-type": "text",
|
|
2581
|
-
onInput:
|
|
2612
|
+
onInput: E[5] || (E[5] = (I) => o(f)(V, I.target))
|
|
2582
2613
|
}, null, 8, ["modelValue"])) : N("", !0)
|
|
2583
|
-
], 2)) : (i(), d("div",
|
|
2614
|
+
], 2)) : (i(), d("div", On, " \xA0 "));
|
|
2584
2615
|
};
|
|
2585
2616
|
}
|
|
2586
|
-
}),
|
|
2617
|
+
}), En = {
|
|
2587
2618
|
key: 0,
|
|
2588
2619
|
class: "cl-flex cl-flex-wrap cl-justify-end cl-mt-4 cl-w-full"
|
|
2589
|
-
},
|
|
2620
|
+
}, An = { class: "cl-bg-off-white cl-border cl-border-grey-0 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" }, jn = { class: "cl-text-grey-3 cl-w-max" }, Mn = { class: "cl-bg-off-white cl-border cl-border-grey-0 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" }, In = { 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" }, Nn = { class: "cl-flex cl-flex-wrap cl-mb-2 cl-w-full lg:cl-mb-0 lg:cl-mr-2 lg:cl-w-auto" }, qn = { class: "cl-text-grey-3 cl-w-full lg:cl-mr-2 lg:cl-w-auto" }, Dn = { class: "cl-flex cl-flex-wrap cl-text-sm mb:cl-flex-nowrap" }, Rn = { class: "cl-pr-2" }, Un = ["onClick"], zn = { 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" }, Bn = { class: "cl-mb-2 cl-text-grey-3 cl-w-full lg:cl-mb-0 lg:cl-mr-2 lg:cl-w-auto" }, Ln = ["onClick"], Pn = { class: "cl-mb-2 cl-w-full lg:cl-p-2 md:cl-mb-0 md:cl-w-auto" }, Fn = { 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" }, Vn = { class: "cl-block lg:cl-inline-block" }, Hn = /* @__PURE__ */ H({
|
|
2590
2621
|
__name: "cl-ui-grid-footer",
|
|
2591
2622
|
props: {
|
|
2592
2623
|
request: null,
|
|
@@ -2602,132 +2633,132 @@ const sn = {
|
|
|
2602
2633
|
50,
|
|
2603
2634
|
100,
|
|
2604
2635
|
200
|
|
2605
|
-
], { n: c, t: f } =
|
|
2606
|
-
var
|
|
2607
|
-
return t.data !== null ? Math.ceil(((v = (
|
|
2608
|
-
}), u =
|
|
2609
|
-
const
|
|
2636
|
+
], { n: c, t: f } = ue(), { debounce: r } = Ge(), b = j(t.request.pageNumber), a = M(() => {
|
|
2637
|
+
var O, v;
|
|
2638
|
+
return t.data !== null ? Math.ceil(((v = (O = t.data) == null ? void 0 : O.totalRecords) != null ? v : 0) / t.request.pageSize) : 1;
|
|
2639
|
+
}), u = M(() => {
|
|
2640
|
+
const O = Array.from(Array(a.value + 1).keys());
|
|
2610
2641
|
let v = [];
|
|
2611
|
-
if (
|
|
2612
|
-
const B = t.request.pageNumber === a.value || t.request.pageNumber === a.value - 1 ? a.value - 3 : t.request.pageNumber - 1,
|
|
2613
|
-
v =
|
|
2642
|
+
if (O.shift(), O.length) {
|
|
2643
|
+
const B = t.request.pageNumber === a.value || t.request.pageNumber === a.value - 1 ? a.value - 3 : t.request.pageNumber - 1, V = B + 3;
|
|
2644
|
+
v = O.slice(B, V);
|
|
2614
2645
|
}
|
|
2615
2646
|
return v;
|
|
2616
2647
|
});
|
|
2617
|
-
function g(
|
|
2618
|
-
const v =
|
|
2619
|
-
v.pageNumber !==
|
|
2648
|
+
function g(O) {
|
|
2649
|
+
const v = he(t.request);
|
|
2650
|
+
v.pageNumber !== O && (v.pageNumber = Math.max(Math.min(Math.trunc(O), a.value), 1), n("update:request", v));
|
|
2620
2651
|
}
|
|
2621
|
-
function
|
|
2622
|
-
const v = parseInt(
|
|
2652
|
+
function p(O) {
|
|
2653
|
+
const v = parseInt(O == null ? void 0 : O.value) || 1;
|
|
2623
2654
|
g(v);
|
|
2624
2655
|
}
|
|
2625
|
-
function
|
|
2626
|
-
const v =
|
|
2627
|
-
v.pageSize =
|
|
2656
|
+
function w(O) {
|
|
2657
|
+
const v = he(t.request);
|
|
2658
|
+
v.pageSize = O, v.pageNumber = 1, n("update:request", v);
|
|
2628
2659
|
}
|
|
2629
|
-
return ee(() => t.request.pageNumber, () =>
|
|
2630
|
-
var
|
|
2660
|
+
return ee(() => t.request.pageNumber, () => b.value = t.request.pageNumber), (O, v) => {
|
|
2661
|
+
var V;
|
|
2631
2662
|
const B = _("icon");
|
|
2632
|
-
return e.data && ((
|
|
2633
|
-
s("div",
|
|
2634
|
-
s("span",
|
|
2635
|
-
|
|
2636
|
-
modelValue:
|
|
2637
|
-
"onUpdate:modelValue": v[0] || (v[0] = (
|
|
2663
|
+
return e.data && ((V = e.data.results) == null ? void 0 : V.length) && e.request ? (i(), d("div", En, [
|
|
2664
|
+
s("div", An, [
|
|
2665
|
+
s("span", jn, k(o(f)("grid.jumpToPage")), 1),
|
|
2666
|
+
$(ge, {
|
|
2667
|
+
modelValue: b.value,
|
|
2668
|
+
"onUpdate:modelValue": v[0] || (v[0] = (q) => b.value = q),
|
|
2638
2669
|
class: "cl-ml-1 cl-mt-0.5 cl-text-sm",
|
|
2639
2670
|
"input-type": "number",
|
|
2640
2671
|
label: "Page",
|
|
2641
2672
|
"show-label": !1,
|
|
2642
2673
|
min: "1",
|
|
2643
2674
|
max: o(a),
|
|
2644
|
-
onInput: v[1] || (v[1] = (
|
|
2675
|
+
onInput: v[1] || (v[1] = (q) => o(r)(p, q.target))
|
|
2645
2676
|
}, null, 8, ["modelValue", "max"])
|
|
2646
2677
|
]),
|
|
2647
|
-
s("div",
|
|
2648
|
-
s("div",
|
|
2649
|
-
s("li",
|
|
2650
|
-
s("span",
|
|
2678
|
+
s("div", Mn, [
|
|
2679
|
+
s("div", In, [
|
|
2680
|
+
s("li", Nn, [
|
|
2681
|
+
s("span", qn, k(o(f)("grid.page")), 1)
|
|
2651
2682
|
]),
|
|
2652
|
-
s("ul",
|
|
2653
|
-
s("li",
|
|
2683
|
+
s("ul", Dn, [
|
|
2684
|
+
s("li", Rn, k(o(c)(e.request.pageNumber, o(ne).INTEGER)) + " / " + k(o(c)(o(a), o(ne).INTEGER)), 1),
|
|
2654
2685
|
L(s("li", {
|
|
2655
2686
|
class: "cl-cursor-pointer cl-mr-1 cl-mt-1 lg:cl-mr-2",
|
|
2656
|
-
onClick: v[2] || (v[2] = (
|
|
2687
|
+
onClick: v[2] || (v[2] = (q) => g(1))
|
|
2657
2688
|
}, [
|
|
2658
|
-
|
|
2689
|
+
$(B, {
|
|
2659
2690
|
icon: "ph:caret-double-left",
|
|
2660
2691
|
size: 14
|
|
2661
2692
|
})
|
|
2662
2693
|
], 512), [
|
|
2663
|
-
[
|
|
2694
|
+
[F, e.request.pageNumber > 1]
|
|
2664
2695
|
]),
|
|
2665
2696
|
L(s("li", {
|
|
2666
2697
|
class: "cl-cursor-pointer cl-mt-1 lg:cl-mr-2 mr-1",
|
|
2667
|
-
onClick: v[3] || (v[3] = (
|
|
2698
|
+
onClick: v[3] || (v[3] = (q) => g(e.request.pageNumber - 1))
|
|
2668
2699
|
}, [
|
|
2669
|
-
|
|
2700
|
+
$(B, {
|
|
2670
2701
|
icon: "ph:caret-left",
|
|
2671
2702
|
size: 14
|
|
2672
2703
|
})
|
|
2673
2704
|
], 512), [
|
|
2674
|
-
[
|
|
2705
|
+
[F, e.request.pageNumber > 1]
|
|
2675
2706
|
]),
|
|
2676
|
-
(i(!0), d(z, null, ce(o(u), (
|
|
2677
|
-
key:
|
|
2707
|
+
(i(!0), d(z, null, ce(o(u), (q, Q) => (i(), d("li", {
|
|
2708
|
+
key: Q,
|
|
2678
2709
|
class: U(["cl-cursor-pointer cl-mr-1 lg:cl-mr-2", {
|
|
2679
|
-
"cl-text-black cl-font-bold": e.request.pageNumber ===
|
|
2680
|
-
"cl-text-grey-6": e.request.pageNumber !==
|
|
2710
|
+
"cl-text-black cl-font-bold": e.request.pageNumber === q,
|
|
2711
|
+
"cl-text-grey-6": e.request.pageNumber !== q
|
|
2681
2712
|
}]),
|
|
2682
|
-
onClick: (
|
|
2683
|
-
}, k(o(c)(
|
|
2713
|
+
onClick: (C) => g(q)
|
|
2714
|
+
}, k(o(c)(q, o(ne).INTEGER)), 11, Un))), 128)),
|
|
2684
2715
|
L(s("li", {
|
|
2685
2716
|
class: "cl-cursor-pointer cl-mr-1 cl-mt-1 lg:cl-mr-2",
|
|
2686
|
-
onClick: v[4] || (v[4] = (
|
|
2717
|
+
onClick: v[4] || (v[4] = (q) => g(e.request.pageNumber + 1))
|
|
2687
2718
|
}, [
|
|
2688
|
-
|
|
2719
|
+
$(B, {
|
|
2689
2720
|
icon: "ph:caret-right",
|
|
2690
2721
|
size: 14
|
|
2691
2722
|
})
|
|
2692
2723
|
], 512), [
|
|
2693
|
-
[
|
|
2724
|
+
[F, e.request.pageNumber < o(a)]
|
|
2694
2725
|
]),
|
|
2695
2726
|
L(s("li", {
|
|
2696
2727
|
class: "cl-cursor-pointer cl-mr-1 cl-mt-1 lg:cl-mr-2",
|
|
2697
|
-
onClick: v[5] || (v[5] = (
|
|
2728
|
+
onClick: v[5] || (v[5] = (q) => g(o(a)))
|
|
2698
2729
|
}, [
|
|
2699
|
-
|
|
2730
|
+
$(B, {
|
|
2700
2731
|
icon: "ph:caret-double-right",
|
|
2701
2732
|
size: 14
|
|
2702
2733
|
})
|
|
2703
2734
|
], 512), [
|
|
2704
|
-
[
|
|
2735
|
+
[F, e.request.pageNumber < o(a)]
|
|
2705
2736
|
])
|
|
2706
2737
|
])
|
|
2707
2738
|
]),
|
|
2708
|
-
s("ul",
|
|
2709
|
-
s("li",
|
|
2710
|
-
(i(), d(z, null, ce(l, (
|
|
2711
|
-
key:
|
|
2739
|
+
s("ul", zn, [
|
|
2740
|
+
s("li", Bn, k(o(f)("grid.pageSize")), 1),
|
|
2741
|
+
(i(), d(z, null, ce(l, (q, Q) => s("li", {
|
|
2742
|
+
key: Q,
|
|
2712
2743
|
class: U(["cl-cursor-pointer cl-mr-1 lg:cl-mr-2", {
|
|
2713
|
-
"cl-text-black cl-font-bold": e.request.pageSize ===
|
|
2714
|
-
"cl-text-grey-6": e.request.pageSize !==
|
|
2744
|
+
"cl-text-black cl-font-bold": e.request.pageSize === q,
|
|
2745
|
+
"cl-text-grey-6": e.request.pageSize !== q
|
|
2715
2746
|
}]),
|
|
2716
|
-
onClick: (
|
|
2717
|
-
}, k(o(c)(
|
|
2747
|
+
onClick: (C) => w(q)
|
|
2748
|
+
}, k(o(c)(q, o(ne).INTEGER)), 11, Ln)), 64))
|
|
2718
2749
|
]),
|
|
2719
|
-
s("ul",
|
|
2720
|
-
s("li",
|
|
2721
|
-
s("li",
|
|
2750
|
+
s("ul", Pn, [
|
|
2751
|
+
s("li", Fn, k(o(f)("grid.totalRecords")), 1),
|
|
2752
|
+
s("li", Vn, k(o(c)(e.data.totalRecords, o(ne).INTEGER)), 1)
|
|
2722
2753
|
])
|
|
2723
2754
|
])
|
|
2724
2755
|
])) : N("", !0);
|
|
2725
2756
|
};
|
|
2726
2757
|
}
|
|
2727
|
-
}),
|
|
2758
|
+
}), Gn = { class: "cl-fixed cl-flex cl-h-full cl-justify-end cl-right-0 cl-shadow-lg cl-top-0 cl-z-50" }, Wn = { class: "cl-bg-secondary-default cl-h-full cl-overflow-y-auto cl-px-10 cl-py-20 cl-relative cl-text-grey-2 cl-w-80" }, Jn = { class: "cl-mb-4 cl-text-2xl cl-text-off-white" }, Kn = { class: "cl-border-grey-3 cl-border-t cl-flex cl-flex-wrap cl-text-sm cl-w-full" }, Zn = { class: "cl-border-b cl-border-grey-2 cl-flex cl-py-2 cl-text-sm cl-w-full" }, Qn = { class: "cl-flex-1 cl-py-2" }, Yn = { class: "cl-py-2 cl-w-1/4" }, Xn = { class: "cl-py-2 cl-w-1/5" }, _n = { class: "cl-flex-1 cl-py-2" }, eo = { class: "cl-py-2 cl-w-1/4" }, lo = { class: "cl-py-2 cl-text-off-white cl-w-1/5" }, to = { key: 1 }, no = {
|
|
2728
2759
|
inheritAttrs: !1
|
|
2729
|
-
},
|
|
2730
|
-
...
|
|
2760
|
+
}, oo = /* @__PURE__ */ H({
|
|
2761
|
+
...no,
|
|
2731
2762
|
__name: "cl-ui-grid-view-manager",
|
|
2732
2763
|
props: {
|
|
2733
2764
|
columns: null
|
|
@@ -2736,83 +2767,83 @@ const sn = {
|
|
|
2736
2767
|
"update:columns": null
|
|
2737
2768
|
},
|
|
2738
2769
|
setup(e, { emit: n }) {
|
|
2739
|
-
const t = e, { t: l } =
|
|
2770
|
+
const t = e, { t: l } = ue(), c = j(!1);
|
|
2740
2771
|
function f(a, u, g) {
|
|
2741
2772
|
g < a.length && g >= 0 && a.splice(g, 0, a.splice(u, 1)[0]);
|
|
2742
2773
|
}
|
|
2743
2774
|
function r(a, u) {
|
|
2744
|
-
var
|
|
2745
|
-
const g =
|
|
2746
|
-
|
|
2775
|
+
var O;
|
|
2776
|
+
const g = he(t.columns), p = (O = a == null ? void 0 : a.checked) != null ? O : !1, w = g.findIndex((v) => v.name === u.name);
|
|
2777
|
+
w >= 0 && (g[w].visible = p), n("update:columns", g);
|
|
2747
2778
|
}
|
|
2748
|
-
function
|
|
2749
|
-
const g =
|
|
2750
|
-
f(g, a,
|
|
2779
|
+
function b(a, u) {
|
|
2780
|
+
const g = he(t.columns), p = u === "up" ? a + 1 : a - 1;
|
|
2781
|
+
f(g, a, p), n("update:columns", g);
|
|
2751
2782
|
}
|
|
2752
2783
|
return (a, u) => {
|
|
2753
2784
|
const g = _("icon");
|
|
2754
2785
|
return i(), d(z, null, [
|
|
2755
|
-
|
|
2786
|
+
$($e, me(a.$attrs, {
|
|
2756
2787
|
class: "cl-w-full",
|
|
2757
2788
|
size: "small",
|
|
2758
|
-
onClick: u[0] || (u[0] = ae((
|
|
2789
|
+
onClick: u[0] || (u[0] = ae((p) => c.value = !0, ["prevent"]))
|
|
2759
2790
|
}), {
|
|
2760
|
-
default:
|
|
2791
|
+
default: Z(() => [
|
|
2761
2792
|
Y(k(o(l)("grid.manageView")), 1)
|
|
2762
2793
|
]),
|
|
2763
2794
|
_: 1
|
|
2764
2795
|
}, 16),
|
|
2765
|
-
(i(),
|
|
2766
|
-
|
|
2767
|
-
default:
|
|
2768
|
-
L(s("div",
|
|
2769
|
-
s("div",
|
|
2770
|
-
|
|
2796
|
+
(i(), J(He, { to: "body" }, [
|
|
2797
|
+
$(Te, { name: "slide-left" }, {
|
|
2798
|
+
default: Z(() => [
|
|
2799
|
+
L(s("div", Gn, [
|
|
2800
|
+
s("div", Wn, [
|
|
2801
|
+
$(g, {
|
|
2771
2802
|
class: "cl-absolute cl-cursor-pointer cl-right-3 cl-text-off-white cl-top-3",
|
|
2772
2803
|
icon: "ph:x",
|
|
2773
2804
|
size: 16,
|
|
2774
|
-
onClick: u[1] || (u[1] = (
|
|
2805
|
+
onClick: u[1] || (u[1] = (p) => c.value = !1)
|
|
2775
2806
|
}),
|
|
2776
|
-
s("h3",
|
|
2777
|
-
s("ul",
|
|
2778
|
-
s("li",
|
|
2779
|
-
s("strong",
|
|
2780
|
-
s("strong",
|
|
2781
|
-
s("strong",
|
|
2807
|
+
s("h3", Jn, k(o(l)("grid.manageView")), 1),
|
|
2808
|
+
s("ul", Kn, [
|
|
2809
|
+
s("li", Zn, [
|
|
2810
|
+
s("strong", Qn, k(o(l)("grid.column")), 1),
|
|
2811
|
+
s("strong", Yn, k(o(l)("grid.visible")), 1),
|
|
2812
|
+
s("strong", Xn, k(o(l)("grid.order")), 1)
|
|
2782
2813
|
]),
|
|
2783
|
-
(i(!0), d(z, null, ce(e.columns, (
|
|
2784
|
-
key:
|
|
2814
|
+
(i(!0), d(z, null, ce(e.columns, (p, w) => (i(), d("li", {
|
|
2815
|
+
key: w,
|
|
2785
2816
|
class: "cl-border-b cl-border-grey-2 cl-flex cl-py-2 cl-text-sm cl-w-full"
|
|
2786
2817
|
}, [
|
|
2787
|
-
s("div",
|
|
2788
|
-
s("div",
|
|
2789
|
-
|
|
2790
|
-
"model-value":
|
|
2818
|
+
s("div", _n, k(p.caption), 1),
|
|
2819
|
+
s("div", eo, [
|
|
2820
|
+
$(ge, {
|
|
2821
|
+
"model-value": p.visible === void 0 || p.visible === !0,
|
|
2791
2822
|
"input-type": "checkbox",
|
|
2792
|
-
onClick: (
|
|
2823
|
+
onClick: (O) => r(O.target, p)
|
|
2793
2824
|
}, null, 8, ["model-value", "onClick"])
|
|
2794
2825
|
]),
|
|
2795
|
-
s("div",
|
|
2796
|
-
|
|
2797
|
-
|
|
2826
|
+
s("div", lo, [
|
|
2827
|
+
p.visible === void 0 || p.visible === !0 ? (i(), d(z, { key: 0 }, [
|
|
2828
|
+
w !== 0 ? (i(), J(g, {
|
|
2798
2829
|
key: 0,
|
|
2799
2830
|
class: "cl-cursor-pointer cl-inline-block cl-mr-2",
|
|
2800
2831
|
icon: "ph:arrow-left",
|
|
2801
|
-
onClick: (
|
|
2832
|
+
onClick: (O) => b(w, "down")
|
|
2802
2833
|
}, null, 8, ["onClick"])) : N("", !0),
|
|
2803
|
-
|
|
2834
|
+
w !== e.columns.length - 1 ? (i(), J(g, {
|
|
2804
2835
|
key: 1,
|
|
2805
2836
|
class: "cl-cursor-pointer cl-inline-block",
|
|
2806
2837
|
icon: "ph:arrow-right",
|
|
2807
|
-
onClick: (
|
|
2838
|
+
onClick: (O) => b(w, "up")
|
|
2808
2839
|
}, null, 8, ["onClick"])) : N("", !0)
|
|
2809
|
-
], 64)) : (i(), d("em",
|
|
2840
|
+
], 64)) : (i(), d("em", to, k(o(l)("grid.hidden")), 1))
|
|
2810
2841
|
])
|
|
2811
2842
|
]))), 128))
|
|
2812
2843
|
])
|
|
2813
2844
|
])
|
|
2814
2845
|
], 512), [
|
|
2815
|
-
[
|
|
2846
|
+
[F, c.value]
|
|
2816
2847
|
])
|
|
2817
2848
|
]),
|
|
2818
2849
|
_: 1
|
|
@@ -2821,16 +2852,16 @@ const sn = {
|
|
|
2821
2852
|
], 64);
|
|
2822
2853
|
};
|
|
2823
2854
|
}
|
|
2824
|
-
}),
|
|
2855
|
+
}), co = {
|
|
2825
2856
|
key: 0,
|
|
2826
2857
|
class: "cl-pb-2 cl-pr-2 cl-w-1/2 lg:cl-pb-0 lg:cl-w-auto"
|
|
2827
|
-
},
|
|
2858
|
+
}, ao = { class: "cl-hidden cl-pr-2 lg:cl-inline-block" }, io = {
|
|
2828
2859
|
key: 1,
|
|
2829
2860
|
class: "cl-pb-2 cl-pr-2 cl-w-1/2 lg:cl-pb-0 lg:cl-pr-0 lg:cl-w-auto"
|
|
2830
|
-
},
|
|
2861
|
+
}, so = {
|
|
2831
2862
|
key: 2,
|
|
2832
2863
|
class: "cl-pr-2 cl-w-full lg:cl-hidden md:cl-w-1/2"
|
|
2833
|
-
},
|
|
2864
|
+
}, tl = /* @__PURE__ */ H({
|
|
2834
2865
|
__name: "cl-ui-grid-header",
|
|
2835
2866
|
props: {
|
|
2836
2867
|
columns: null,
|
|
@@ -2845,24 +2876,24 @@ const sn = {
|
|
|
2845
2876
|
"update:filter-panel-open": null
|
|
2846
2877
|
},
|
|
2847
2878
|
setup(e, { emit: n }) {
|
|
2848
|
-
const t = e, { t: l } =
|
|
2879
|
+
const t = e, { t: l } = ue(), c = M(() => {
|
|
2849
2880
|
let r = !1;
|
|
2850
|
-
return t.columns.forEach((
|
|
2851
|
-
(
|
|
2881
|
+
return t.columns.forEach((b) => {
|
|
2882
|
+
(b.filterable === !0 || b.filterable === void 0 || b.sortable === !0 || b.sortable === void 0) && (r = !0);
|
|
2852
2883
|
}), r;
|
|
2853
|
-
}), f =
|
|
2884
|
+
}), f = M({
|
|
2854
2885
|
get: () => t.columns,
|
|
2855
2886
|
set: (r) => n("update:columns", r)
|
|
2856
2887
|
});
|
|
2857
|
-
return (r,
|
|
2858
|
-
e.editEnabled ? (i(), d("span",
|
|
2859
|
-
|
|
2888
|
+
return (r, b) => (i(), d(z, null, [
|
|
2889
|
+
e.editEnabled ? (i(), d("span", co, [
|
|
2890
|
+
$($e, {
|
|
2860
2891
|
class: "cl-w-full lg:cl-w-auto",
|
|
2861
2892
|
size: "small",
|
|
2862
2893
|
colour: "default",
|
|
2863
|
-
onClick:
|
|
2894
|
+
onClick: b[0] || (b[0] = (a) => r.$emit("update:edit-mode", !e.editMode))
|
|
2864
2895
|
}, {
|
|
2865
|
-
default:
|
|
2896
|
+
default: Z(() => [
|
|
2866
2897
|
e.editMode ? (i(), d(z, { key: 0 }, [
|
|
2867
2898
|
Y(k(o(l)("grid.finishEditing")), 1)
|
|
2868
2899
|
], 64)) : (i(), d(z, { key: 1 }, [
|
|
@@ -2872,32 +2903,32 @@ const sn = {
|
|
|
2872
2903
|
_: 1
|
|
2873
2904
|
})
|
|
2874
2905
|
])) : N("", !0),
|
|
2875
|
-
s("span",
|
|
2876
|
-
|
|
2906
|
+
s("span", ao, [
|
|
2907
|
+
$(oo, {
|
|
2877
2908
|
columns: o(f),
|
|
2878
|
-
"onUpdate:columns":
|
|
2909
|
+
"onUpdate:columns": b[1] || (b[1] = (a) => ve(f) ? f.value = a : null)
|
|
2879
2910
|
}, null, 8, ["columns"])
|
|
2880
2911
|
]),
|
|
2881
|
-
o(c) ? (i(), d("span",
|
|
2882
|
-
|
|
2912
|
+
o(c) ? (i(), d("span", io, [
|
|
2913
|
+
$($e, {
|
|
2883
2914
|
class: "cl-w-full lg:cl-w-auto",
|
|
2884
2915
|
size: "small",
|
|
2885
|
-
onClick:
|
|
2916
|
+
onClick: b[2] || (b[2] = ae((a) => r.$emit("reset-filters"), ["prevent"]))
|
|
2886
2917
|
}, {
|
|
2887
|
-
default:
|
|
2918
|
+
default: Z(() => [
|
|
2888
2919
|
Y(k(o(l)("grid.clearFilters")), 1)
|
|
2889
2920
|
]),
|
|
2890
2921
|
_: 1
|
|
2891
2922
|
})
|
|
2892
2923
|
])) : N("", !0),
|
|
2893
|
-
o(c) ? (i(), d("span",
|
|
2894
|
-
|
|
2924
|
+
o(c) ? (i(), d("span", so, [
|
|
2925
|
+
$($e, {
|
|
2895
2926
|
class: "cl-w-full",
|
|
2896
2927
|
colour: "blue",
|
|
2897
2928
|
size: "small",
|
|
2898
|
-
onClick:
|
|
2929
|
+
onClick: b[3] || (b[3] = ae((a) => r.$emit("update:filter-panel-open", !0), ["prevent"]))
|
|
2899
2930
|
}, {
|
|
2900
|
-
default:
|
|
2931
|
+
default: Z(() => [
|
|
2901
2932
|
Y(k(o(l)("grid.modifyFilters")), 1)
|
|
2902
2933
|
]),
|
|
2903
2934
|
_: 1
|
|
@@ -2905,13 +2936,13 @@ const sn = {
|
|
|
2905
2936
|
])) : N("", !0)
|
|
2906
2937
|
], 64));
|
|
2907
2938
|
}
|
|
2908
|
-
}),
|
|
2939
|
+
}), ro = { class: "cl-hidden cl-mb-4 cl-w-full lg:cl-block lg:cl-text-right" }, uo = ["data-loading"], fo = { class: "cl-absolute cl-bg-white cl-h-full cl-opacity-40 cl-w-full cl-z-20" }, mo = { class: "cl-bg-white cl-flex cl-flex-wrap cl-sticky cl-top-0 cl-w-full lg:cl-hidden" }, go = { class: "cl-border-b cl-border-grey-2 cl-flex cl-flex-wrap cl-px-2 cl-py-4 cl-w-full" }, bo = { class: "cl-mb-4 cl-text-sm cl-w-full" }, vo = { class: "cl-flex cl-flex-wrap cl-w-full" }, ho = { class: "!cl-bg-white cl-absolute cl-h-screen cl-overflow-x-auto cl-p-4 cl-text-sm cl-w-full cl-z-10" }, po = { class: "cl-border-b cl-border-grey-2 cl-mb-2 cl-pb-2 cl-text-right cl-w-full" }, yo = { key: 0 }, wo = { key: 1 }, xo = { class: "cl-self-center" }, ko = { key: 1 }, $o = {
|
|
2909
2940
|
key: 3,
|
|
2910
2941
|
class: "cl-ml-2"
|
|
2911
|
-
},
|
|
2942
|
+
}, To = { class: "cl-overflow-auto cl-w-full" }, Co = { class: "cl-min-w-full cl-table-fixed" }, So = { class: "cl-hidden lg:cl-table-column-group" }, Oo = { class: "cl-hidden lg:cl-table-header-group" }, Eo = ["onClick"], Ao = { key: 1 }, jo = { key: 0 }, Mo = { key: 1 }, Io = ["colspan"], No = { class: "cl-my-10 cl-py-1 cl-text-center cl-text-sm cl-w-full" }, qo = {
|
|
2912
2943
|
key: 0,
|
|
2913
2944
|
class: "cl-w-full"
|
|
2914
|
-
},
|
|
2945
|
+
}, Do = /* @__PURE__ */ H({
|
|
2915
2946
|
__name: "cl-ui-grid",
|
|
2916
2947
|
props: {
|
|
2917
2948
|
columns: null,
|
|
@@ -2928,228 +2959,228 @@ const sn = {
|
|
|
2928
2959
|
"edit-end": null
|
|
2929
2960
|
},
|
|
2930
2961
|
setup(e, { emit: n }) {
|
|
2931
|
-
const t = e, { t: l } =
|
|
2962
|
+
const t = e, { t: l } = ue(), c = j({}), f = j(!1), r = j({
|
|
2932
2963
|
index: -1,
|
|
2933
2964
|
record: {}
|
|
2934
|
-
}),
|
|
2965
|
+
}), b = j(!1), a = M({
|
|
2935
2966
|
get: () => t.columns,
|
|
2936
|
-
set: (
|
|
2937
|
-
}), u =
|
|
2967
|
+
set: (h) => n("update:columns", h)
|
|
2968
|
+
}), u = M({
|
|
2938
2969
|
get: () => t.request,
|
|
2939
|
-
set: (
|
|
2940
|
-
}), g =
|
|
2941
|
-
let
|
|
2942
|
-
return g.value.forEach((
|
|
2943
|
-
(
|
|
2944
|
-
}),
|
|
2945
|
-
}),
|
|
2946
|
-
let
|
|
2947
|
-
return g.value.forEach((
|
|
2948
|
-
(
|
|
2949
|
-
}),
|
|
2950
|
-
}),
|
|
2970
|
+
set: (h) => n("update:request", h)
|
|
2971
|
+
}), g = M(() => a.value.filter((h) => typeof h.visible > "u" || h.visible !== !1)), p = M(() => {
|
|
2972
|
+
let h = !1;
|
|
2973
|
+
return g.value.forEach((x) => {
|
|
2974
|
+
(x.sortable || x.sortable === void 0) && (h = !0);
|
|
2975
|
+
}), h;
|
|
2976
|
+
}), w = M(() => {
|
|
2977
|
+
let h = !1;
|
|
2978
|
+
return g.value.forEach((x) => {
|
|
2979
|
+
(x.filterable || x.filterable === void 0) && (h = !0);
|
|
2980
|
+
}), h;
|
|
2981
|
+
}), O = M(() => t.columns.find((h) => h.editable === !0) !== void 0);
|
|
2951
2982
|
function v() {
|
|
2952
|
-
const
|
|
2953
|
-
window.innerWidth >= 1024 && a.value.forEach((
|
|
2954
|
-
const
|
|
2955
|
-
|
|
2956
|
-
}), c.value =
|
|
2957
|
-
}
|
|
2958
|
-
function B(
|
|
2959
|
-
var
|
|
2960
|
-
return (
|
|
2961
|
-
}
|
|
2962
|
-
function
|
|
2963
|
-
if (typeof
|
|
2964
|
-
const
|
|
2965
|
-
|
|
2966
|
-
sortOnColumn:
|
|
2983
|
+
const h = {};
|
|
2984
|
+
window.innerWidth >= 1024 && a.value.forEach((x) => {
|
|
2985
|
+
const I = x.width ? `${x.width}px` : "";
|
|
2986
|
+
h[`${x.name}`] = `width: ${I}; min-width: ${I};`;
|
|
2987
|
+
}), c.value = h;
|
|
2988
|
+
}
|
|
2989
|
+
function B(h) {
|
|
2990
|
+
var x;
|
|
2991
|
+
return (x = c.value[h]) != null ? x : "";
|
|
2992
|
+
}
|
|
2993
|
+
function V(h) {
|
|
2994
|
+
if (typeof h < "u") {
|
|
2995
|
+
const x = he(t.request);
|
|
2996
|
+
x.sort === null || x.sort.sortOnColumn !== h ? x.sort = {
|
|
2997
|
+
sortOnColumn: h,
|
|
2967
2998
|
sortByAscending: !0
|
|
2968
|
-
} :
|
|
2999
|
+
} : x.sort.sortOnColumn === h && x.sort.sortByAscending === !0 ? x.sort.sortByAscending = !1 : x.sort = null, u.value = x;
|
|
2969
3000
|
}
|
|
2970
3001
|
}
|
|
2971
|
-
function
|
|
2972
|
-
const
|
|
2973
|
-
|
|
3002
|
+
function q() {
|
|
3003
|
+
const h = he(u.value);
|
|
3004
|
+
h.pageNumber = 1, h.filters = [], u.value = h;
|
|
2974
3005
|
}
|
|
2975
|
-
function
|
|
2976
|
-
r.value.index !== -1 && r.value.index !==
|
|
3006
|
+
function Q(h) {
|
|
3007
|
+
r.value.index !== -1 && r.value.index !== h && y(), r.value.index = h;
|
|
2977
3008
|
}
|
|
2978
|
-
function
|
|
2979
|
-
|
|
3009
|
+
function C(h, x) {
|
|
3010
|
+
x !== void 0 && (r.value.record[x] = h);
|
|
2980
3011
|
}
|
|
2981
|
-
function
|
|
2982
|
-
if (
|
|
2983
|
-
const { [
|
|
3012
|
+
function E(h) {
|
|
3013
|
+
if (h !== void 0) {
|
|
3014
|
+
const { [h]: x, ...I } = r.value.record;
|
|
2984
3015
|
r.value.record = {
|
|
2985
|
-
...
|
|
3016
|
+
...I
|
|
2986
3017
|
};
|
|
2987
3018
|
}
|
|
2988
3019
|
}
|
|
2989
3020
|
function y() {
|
|
2990
|
-
Object.keys(r.value.record).length !== 0 && (n("row-edit",
|
|
3021
|
+
Object.keys(r.value.record).length !== 0 && (n("row-edit", he(r.value)), r.value.record = {});
|
|
2991
3022
|
}
|
|
2992
|
-
return
|
|
3023
|
+
return je(() => {
|
|
2993
3024
|
window.addEventListener("resize", v), v();
|
|
2994
|
-
}),
|
|
3025
|
+
}), De(() => window.removeEventListener("resize", v)), ee(() => t.request, () => n("data-request"), {
|
|
2995
3026
|
deep: !0,
|
|
2996
3027
|
immediate: !0
|
|
2997
3028
|
}), ee(() => f.value, () => {
|
|
2998
3029
|
f.value ? n("edit-start") : (y(), n("edit-end"), r.value.index = -1);
|
|
2999
|
-
}), (
|
|
3030
|
+
}), (h, x) => {
|
|
3000
3031
|
var X, le;
|
|
3001
|
-
const
|
|
3032
|
+
const I = _("icon");
|
|
3002
3033
|
return i(), d(z, null, [
|
|
3003
|
-
s("div",
|
|
3004
|
-
|
|
3034
|
+
s("div", ro, [
|
|
3035
|
+
$(tl, {
|
|
3005
3036
|
columns: o(a),
|
|
3006
|
-
"onUpdate:columns":
|
|
3037
|
+
"onUpdate:columns": x[0] || (x[0] = (m) => ve(a) ? a.value = m : null),
|
|
3007
3038
|
"edit-mode": f.value,
|
|
3008
|
-
"onUpdate:edit-mode":
|
|
3009
|
-
"edit-enabled": o(
|
|
3010
|
-
onResetFilters:
|
|
3039
|
+
"onUpdate:edit-mode": x[1] || (x[1] = (m) => f.value = m),
|
|
3040
|
+
"edit-enabled": o(O),
|
|
3041
|
+
onResetFilters: q
|
|
3011
3042
|
}, null, 8, ["columns", "edit-mode", "edit-enabled"])
|
|
3012
3043
|
]),
|
|
3013
3044
|
s("div", {
|
|
3014
3045
|
class: "cl-relative cl-w-full grid-wrapper",
|
|
3015
3046
|
"data-loading": e.loading
|
|
3016
3047
|
}, [
|
|
3017
|
-
|
|
3018
|
-
default:
|
|
3019
|
-
L(s("div",
|
|
3020
|
-
[
|
|
3048
|
+
$(Te, { name: "fade" }, {
|
|
3049
|
+
default: Z(() => [
|
|
3050
|
+
L(s("div", fo, null, 512), [
|
|
3051
|
+
[F, e.loading]
|
|
3021
3052
|
])
|
|
3022
3053
|
]),
|
|
3023
3054
|
_: 1
|
|
3024
3055
|
}),
|
|
3025
|
-
s("div",
|
|
3026
|
-
s("div",
|
|
3027
|
-
s("strong",
|
|
3028
|
-
s("div",
|
|
3029
|
-
|
|
3056
|
+
s("div", mo, [
|
|
3057
|
+
s("div", go, [
|
|
3058
|
+
s("strong", bo, k(o(l)("grid.gridTools")), 1),
|
|
3059
|
+
s("div", vo, [
|
|
3060
|
+
$(tl, {
|
|
3030
3061
|
columns: o(a),
|
|
3031
|
-
"onUpdate:columns":
|
|
3062
|
+
"onUpdate:columns": x[2] || (x[2] = (m) => ve(a) ? a.value = m : null),
|
|
3032
3063
|
"edit-mode": f.value,
|
|
3033
|
-
"onUpdate:edit-mode":
|
|
3034
|
-
"filter-panel-open":
|
|
3035
|
-
"onUpdate:filter-panel-open":
|
|
3036
|
-
"edit-enabled": o(
|
|
3037
|
-
onResetFilters:
|
|
3064
|
+
"onUpdate:edit-mode": x[3] || (x[3] = (m) => f.value = m),
|
|
3065
|
+
"filter-panel-open": b.value,
|
|
3066
|
+
"onUpdate:filter-panel-open": x[4] || (x[4] = (m) => b.value = m),
|
|
3067
|
+
"edit-enabled": o(O),
|
|
3068
|
+
onResetFilters: q
|
|
3038
3069
|
}, null, 8, ["columns", "edit-mode", "filter-panel-open", "edit-enabled"])
|
|
3039
3070
|
])
|
|
3040
3071
|
]),
|
|
3041
|
-
|
|
3042
|
-
default:
|
|
3043
|
-
L(s("div",
|
|
3044
|
-
s("div",
|
|
3045
|
-
|
|
3072
|
+
$(Te, { name: "grow-down" }, {
|
|
3073
|
+
default: Z(() => [
|
|
3074
|
+
L(s("div", ho, [
|
|
3075
|
+
s("div", po, [
|
|
3076
|
+
$(I, {
|
|
3046
3077
|
class: "cl--mt-1 cl-inline-block cl-text-grey-5",
|
|
3047
3078
|
icon: "ph:x",
|
|
3048
3079
|
size: 16,
|
|
3049
|
-
onClick:
|
|
3050
|
-
|
|
3080
|
+
onClick: x[5] || (x[5] = (m) => {
|
|
3081
|
+
b.value = !1;
|
|
3051
3082
|
})
|
|
3052
3083
|
})
|
|
3053
3084
|
]),
|
|
3054
3085
|
s("div", {
|
|
3055
3086
|
class: U(["cl-font-semibold cl-grid cl-grid-cols-3 cl-mb-2", {
|
|
3056
|
-
"cl-grid-cols-2": !o(
|
|
3057
|
-
"cl-grid-cols-3": o(
|
|
3087
|
+
"cl-grid-cols-2": !o(w) || !o(p),
|
|
3088
|
+
"cl-grid-cols-3": o(w) && o(p)
|
|
3058
3089
|
}])
|
|
3059
3090
|
}, [
|
|
3060
3091
|
s("div", null, k(o(l)("grid.field")), 1),
|
|
3061
|
-
o(
|
|
3062
|
-
o(
|
|
3092
|
+
o(w) ? (i(), d("div", yo, k(o(l)("grid.filter")), 1)) : N("", !0),
|
|
3093
|
+
o(p) ? (i(), d("div", wo, k(o(l)("grid.sortBy")), 1)) : N("", !0)
|
|
3063
3094
|
], 2),
|
|
3064
3095
|
(i(!0), d(z, null, ce(o(g).filter((m) => m.filterable || m.filterable === void 0 || m.sortable || m.sortable === void 0), (m, A) => (i(), d("div", {
|
|
3065
3096
|
key: A,
|
|
3066
3097
|
class: "cl-grid cl-grid-cols-3 cl-mb-4 cl-w-full"
|
|
3067
3098
|
}, [
|
|
3068
|
-
s("div",
|
|
3069
|
-
m.filterable || m.filterable === void 0 ? (i(),
|
|
3099
|
+
s("div", xo, k(m.caption), 1),
|
|
3100
|
+
m.filterable || m.filterable === void 0 ? (i(), J(ll, {
|
|
3070
3101
|
key: 0,
|
|
3071
3102
|
request: o(u),
|
|
3072
|
-
"onUpdate:request":
|
|
3103
|
+
"onUpdate:request": x[6] || (x[6] = (P) => ve(u) ? u.value = P : null),
|
|
3073
3104
|
column: m,
|
|
3074
3105
|
class: U({
|
|
3075
|
-
"cl-col-span-2": !o(
|
|
3106
|
+
"cl-col-span-2": !o(p)
|
|
3076
3107
|
})
|
|
3077
|
-
}, null, 8, ["request", "column", "class"])) : o(
|
|
3108
|
+
}, null, 8, ["request", "column", "class"])) : o(w) ? (i(), d("div", ko)) : N("", !0),
|
|
3078
3109
|
(m.type !== "slot" || m.slotType !== void 0 && m.field !== void 0) && (m.sortable === void 0 || m.sortable === !0) ? (i(), d(z, { key: 2 }, [
|
|
3079
|
-
o(u).sort === null || o(u).sort.sortOnColumn !== m.field ? (i(),
|
|
3110
|
+
o(u).sort === null || o(u).sort.sortOnColumn !== m.field ? (i(), J(I, {
|
|
3080
3111
|
key: 0,
|
|
3081
3112
|
class: "cl-cursor-pointer cl-ml-2 cl-self-center",
|
|
3082
3113
|
icon: "ph:minus",
|
|
3083
|
-
onClick: (P) =>
|
|
3084
|
-
}, null, 8, ["onClick"])) : o(u).sort.sortByAscending === !1 ? (i(),
|
|
3114
|
+
onClick: (P) => V(m.field)
|
|
3115
|
+
}, null, 8, ["onClick"])) : o(u).sort.sortByAscending === !1 ? (i(), J(I, {
|
|
3085
3116
|
key: 1,
|
|
3086
3117
|
class: "cl-cursor-pointer cl-ml-2 cl-self-center",
|
|
3087
3118
|
icon: "ph:caret-down",
|
|
3088
|
-
onClick: (P) =>
|
|
3089
|
-
}, null, 8, ["onClick"])) : (i(),
|
|
3119
|
+
onClick: (P) => V(m.field)
|
|
3120
|
+
}, null, 8, ["onClick"])) : (i(), J(I, {
|
|
3090
3121
|
key: 2,
|
|
3091
3122
|
class: "cl-cursor-pointer cl-ml-2 cl-self-center",
|
|
3092
3123
|
icon: "ph:caret-up",
|
|
3093
|
-
onClick: (P) =>
|
|
3124
|
+
onClick: (P) => V(m.field)
|
|
3094
3125
|
}, null, 8, ["onClick"]))
|
|
3095
|
-
], 64)) : (i(), d("div",
|
|
3126
|
+
], 64)) : (i(), d("div", $o, " \xA0 "))
|
|
3096
3127
|
]))), 128))
|
|
3097
3128
|
], 512), [
|
|
3098
|
-
[
|
|
3129
|
+
[F, b.value]
|
|
3099
3130
|
])
|
|
3100
3131
|
]),
|
|
3101
3132
|
_: 1
|
|
3102
3133
|
})
|
|
3103
3134
|
]),
|
|
3104
|
-
s("div",
|
|
3105
|
-
s("table",
|
|
3106
|
-
s("colgroup",
|
|
3135
|
+
s("div", To, [
|
|
3136
|
+
s("table", Co, [
|
|
3137
|
+
s("colgroup", So, [
|
|
3107
3138
|
(i(!0), d(z, null, ce(o(g), (m, A) => (i(), d("col", {
|
|
3108
3139
|
key: A,
|
|
3109
|
-
style:
|
|
3140
|
+
style: Oe(B(m.name)),
|
|
3110
3141
|
span: 1
|
|
3111
3142
|
}, null, 4))), 128))
|
|
3112
3143
|
]),
|
|
3113
|
-
s("thead",
|
|
3144
|
+
s("thead", Oo, [
|
|
3114
3145
|
s("tr", null, [
|
|
3115
3146
|
(i(!0), d(z, null, ce(o(g), (m, A) => {
|
|
3116
3147
|
var P;
|
|
3117
3148
|
return i(), d("th", {
|
|
3118
3149
|
key: A,
|
|
3119
3150
|
class: "cl-border-b cl-border-grey-2 cl-font-semibold cl-p-1 cl-text-grey-3 cl-text-left cl-text-sm",
|
|
3120
|
-
style:
|
|
3151
|
+
style: Oe(B(m.name))
|
|
3121
3152
|
}, [
|
|
3122
3153
|
e.data && ((P = e.data.results) == null ? void 0 : P.length) && (m.type !== "slot" || m.slotType !== void 0 && m.field !== void 0) && (m.sortable === void 0 || m.sortable === !0) ? (i(), d("span", {
|
|
3123
3154
|
key: 0,
|
|
3124
3155
|
class: "cl-cursor-pointer",
|
|
3125
|
-
onClick: (
|
|
3156
|
+
onClick: (se) => V(m.field)
|
|
3126
3157
|
}, [
|
|
3127
3158
|
Y(k(m.caption) + " ", 1),
|
|
3128
|
-
L(
|
|
3159
|
+
L($(I, {
|
|
3129
3160
|
class: "cl--mt-1 cl-inline-block",
|
|
3130
3161
|
icon: "ph:caret-up"
|
|
3131
3162
|
}, null, 512), [
|
|
3132
|
-
[
|
|
3163
|
+
[F, o(u).sort !== null && o(u).sort.sortOnColumn === m.field && o(u).sort.sortByAscending === !0]
|
|
3133
3164
|
]),
|
|
3134
|
-
L(
|
|
3165
|
+
L($(I, {
|
|
3135
3166
|
class: "cl--mt-1 cl-inline-block",
|
|
3136
3167
|
icon: "ph:caret-down"
|
|
3137
3168
|
}, null, 512), [
|
|
3138
|
-
[
|
|
3169
|
+
[F, o(u).sort !== null && o(u).sort.sortOnColumn === m.field && o(u).sort.sortByAscending === !1]
|
|
3139
3170
|
])
|
|
3140
|
-
], 8,
|
|
3171
|
+
], 8, Eo)) : (i(), d("span", Ao, k(m.caption), 1))
|
|
3141
3172
|
], 4);
|
|
3142
3173
|
}), 128))
|
|
3143
3174
|
]),
|
|
3144
|
-
e.data && ((X = e.data.results) == null ? void 0 : X.length) || o(u).filters.length > 0 ? (i(), d("tr",
|
|
3175
|
+
e.data && ((X = e.data.results) == null ? void 0 : X.length) || o(u).filters.length > 0 ? (i(), d("tr", jo, [
|
|
3145
3176
|
(i(!0), d(z, null, ce(o(g), (m, A) => (i(), d("th", {
|
|
3146
3177
|
key: A,
|
|
3147
3178
|
class: "cl-p-1",
|
|
3148
|
-
style:
|
|
3179
|
+
style: Oe(B(m.name))
|
|
3149
3180
|
}, [
|
|
3150
|
-
|
|
3181
|
+
$(ll, {
|
|
3151
3182
|
request: o(u),
|
|
3152
|
-
"onUpdate:request":
|
|
3183
|
+
"onUpdate:request": x[7] || (x[7] = (P) => ve(u) ? u.value = P : null),
|
|
3153
3184
|
column: m,
|
|
3154
3185
|
"first-half": A <= o(g).length / 2
|
|
3155
3186
|
}, null, 8, ["request", "column", "first-half"])
|
|
@@ -3164,82 +3195,82 @@ const sn = {
|
|
|
3164
3195
|
"cl-bg-off-white": A % 2 === 1
|
|
3165
3196
|
})
|
|
3166
3197
|
}, [
|
|
3167
|
-
(i(!0), d(z, null, ce(o(g), (P,
|
|
3168
|
-
key:
|
|
3198
|
+
(i(!0), d(z, null, ce(o(g), (P, se) => (i(), J(nn, {
|
|
3199
|
+
key: se,
|
|
3169
3200
|
class: "cl-p-2 cl-rounded cl-whitespace-nowrap",
|
|
3170
|
-
style:
|
|
3201
|
+
style: Oe(B(P.name)),
|
|
3171
3202
|
column: P,
|
|
3172
3203
|
record: m,
|
|
3173
3204
|
"edit-mode": f.value,
|
|
3174
|
-
onFocus: (
|
|
3175
|
-
onEdit: (
|
|
3176
|
-
|
|
3205
|
+
onFocus: (T) => Q(A),
|
|
3206
|
+
onEdit: (T) => {
|
|
3207
|
+
Q(A), C(T, P.field);
|
|
3177
3208
|
},
|
|
3178
|
-
onUndoEdit: (
|
|
3179
|
-
},
|
|
3180
|
-
ce(
|
|
3181
|
-
name:
|
|
3182
|
-
fn:
|
|
3183
|
-
|
|
3209
|
+
onUndoEdit: (T) => E(P.field)
|
|
3210
|
+
}, ml({ _: 2 }, [
|
|
3211
|
+
ce(h.$slots, (T, G) => ({
|
|
3212
|
+
name: G,
|
|
3213
|
+
fn: Z((te) => [
|
|
3214
|
+
D(h.$slots, G, re(we(te)), void 0, !0)
|
|
3184
3215
|
])
|
|
3185
3216
|
}))
|
|
3186
3217
|
]), 1032, ["style", "column", "record", "edit-mode", "onFocus", "onEdit", "onUndoEdit"]))), 128))
|
|
3187
|
-
], 2))), 128)) : (i(), d("tr",
|
|
3218
|
+
], 2))), 128)) : (i(), d("tr", Mo, [
|
|
3188
3219
|
s("td", {
|
|
3189
3220
|
colspan: o(g).length
|
|
3190
3221
|
}, [
|
|
3191
|
-
s("div",
|
|
3222
|
+
s("div", No, [
|
|
3192
3223
|
s("strong", null, k(o(l)("grid.noData")), 1),
|
|
3193
|
-
o(u).filters.length > 0 ? (i(), d("div",
|
|
3224
|
+
o(u).filters.length > 0 ? (i(), d("div", qo, [
|
|
3194
3225
|
Y(k(o(l)("grid.noDataFiltersPresent")) + " ", 1),
|
|
3195
|
-
|
|
3226
|
+
$($e, {
|
|
3196
3227
|
size: "small",
|
|
3197
|
-
onClick: ae(
|
|
3228
|
+
onClick: ae(q, ["prevent"])
|
|
3198
3229
|
}, {
|
|
3199
|
-
default:
|
|
3230
|
+
default: Z(() => [
|
|
3200
3231
|
Y(k(o(l)("grid.clearFilters")), 1)
|
|
3201
3232
|
]),
|
|
3202
3233
|
_: 1
|
|
3203
3234
|
}, 8, ["onClick"])
|
|
3204
3235
|
])) : N("", !0)
|
|
3205
3236
|
])
|
|
3206
|
-
], 8,
|
|
3237
|
+
], 8, Io)
|
|
3207
3238
|
]))
|
|
3208
3239
|
])
|
|
3209
3240
|
])
|
|
3210
3241
|
]),
|
|
3211
|
-
|
|
3242
|
+
$(Hn, {
|
|
3212
3243
|
request: o(u),
|
|
3213
|
-
"onUpdate:request":
|
|
3244
|
+
"onUpdate:request": x[8] || (x[8] = (m) => ve(u) ? u.value = m : null),
|
|
3214
3245
|
data: e.data
|
|
3215
3246
|
}, null, 8, ["request", "data"])
|
|
3216
|
-
], 8,
|
|
3247
|
+
], 8, uo)
|
|
3217
3248
|
], 64);
|
|
3218
3249
|
};
|
|
3219
3250
|
}
|
|
3220
3251
|
});
|
|
3221
|
-
const
|
|
3252
|
+
const Ro = /* @__PURE__ */ pe(Do, [["__scopeId", "data-v-fd5a46a8"]]), Uo = { class: "cl-absolute cl-bg-secondary-default cl-flex cl-h-20 cl-items-center cl-justify-between cl-left-0 cl-top-0 cl-w-full cl-z-40" }, zo = /* @__PURE__ */ H({
|
|
3222
3253
|
__name: "cl-ui-header",
|
|
3223
3254
|
emits: ["open-click"],
|
|
3224
3255
|
setup(e) {
|
|
3225
|
-
return (n, t) => (i(), d("header",
|
|
3226
|
-
|
|
3256
|
+
return (n, t) => (i(), d("header", Uo, [
|
|
3257
|
+
D(n.$slots, "logo"),
|
|
3227
3258
|
s("div", {
|
|
3228
3259
|
class: "cl-cursor-pointer cl-flex cl-flex-nowrap",
|
|
3229
3260
|
onClick: t[0] || (t[0] = (l) => n.$emit("open-click"))
|
|
3230
3261
|
}, [
|
|
3231
|
-
|
|
3232
|
-
|
|
3262
|
+
D(n.$slots, "menu"),
|
|
3263
|
+
D(n.$slots, "icon")
|
|
3233
3264
|
])
|
|
3234
3265
|
]));
|
|
3235
3266
|
}
|
|
3236
|
-
}),
|
|
3267
|
+
}), Bo = { class: "cl-bg-transparent cl-flex cl-items-center cl-select-none hover:cl-bg-opacity-10 hover:cl-bg-white md:cl-min-w-[320px]" }, Lo = ["src"], Po = { class: "cl-grow cl-hidden cl-my-4 cl-text-white md:cl-block" }, Fo = {
|
|
3237
3268
|
key: 0,
|
|
3238
3269
|
class: "cl-text-ellipsis cl-whitespace-nowrap"
|
|
3239
|
-
},
|
|
3270
|
+
}, Vo = {
|
|
3240
3271
|
key: 1,
|
|
3241
3272
|
class: "cl-text-ellipsis cl-text-xs cl-whitespace-nowrap"
|
|
3242
|
-
},
|
|
3273
|
+
}, Ho = { class: "cl-content-center cl-flex cl-h-20 cl-items-center cl-justify-center cl-justify-items-center cl-transition-all cl-w-10 md:cl-ml-4 md:cl-w-20" }, Go = { class: "cl-absolute cl-bg-white cl-right-0 cl-shadow-2xl cl-top-20 cl-w-full cl-z-20" }, Wo = /* @__PURE__ */ H({
|
|
3243
3274
|
__name: "cl-ui-header-menu",
|
|
3244
3275
|
props: {
|
|
3245
3276
|
username: { default: "" },
|
|
@@ -3249,36 +3280,36 @@ const Mo = /* @__PURE__ */ he(jo, [["__scopeId", "data-v-fd5a46a8"]]), Io = { cl
|
|
|
3249
3280
|
},
|
|
3250
3281
|
emits: ["update:is-open"],
|
|
3251
3282
|
setup(e, { emit: n }) {
|
|
3252
|
-
const t = e, l =
|
|
3253
|
-
|
|
3283
|
+
const t = e, l = j();
|
|
3284
|
+
nl(l, c);
|
|
3254
3285
|
function c() {
|
|
3255
3286
|
t.isOpen === !0 && n("update:is-open", !1);
|
|
3256
3287
|
}
|
|
3257
3288
|
return (f, r) => {
|
|
3258
|
-
const
|
|
3289
|
+
const b = _("icon");
|
|
3259
3290
|
return i(), d("div", {
|
|
3260
3291
|
ref_key: "headerMenuElement",
|
|
3261
3292
|
ref: l,
|
|
3262
3293
|
class: "cl-bg-blue-light md:cl-relative"
|
|
3263
3294
|
}, [
|
|
3264
|
-
s("div",
|
|
3295
|
+
s("div", Bo, [
|
|
3265
3296
|
e.image ? (i(), d("img", {
|
|
3266
3297
|
key: 0,
|
|
3267
3298
|
src: e.image,
|
|
3268
3299
|
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"
|
|
3269
|
-
}, null, 8,
|
|
3300
|
+
}, null, 8, Lo)) : (i(), J(b, {
|
|
3270
3301
|
key: 1,
|
|
3271
3302
|
class: "cl-hidden cl-m-4 cl-text-white md:cl-block",
|
|
3272
3303
|
icon: "ph:user-circle",
|
|
3273
3304
|
width: "48",
|
|
3274
3305
|
height: "48"
|
|
3275
3306
|
})),
|
|
3276
|
-
s("div",
|
|
3277
|
-
e.username ? (i(), d("div",
|
|
3278
|
-
e.group ? (i(), d("div",
|
|
3307
|
+
s("div", Po, [
|
|
3308
|
+
e.username ? (i(), d("div", Fo, k(e.username), 1)) : N("", !0),
|
|
3309
|
+
e.group ? (i(), d("div", Vo, k(e.group), 1)) : N("", !0)
|
|
3279
3310
|
]),
|
|
3280
|
-
s("div",
|
|
3281
|
-
|
|
3311
|
+
s("div", Ho, [
|
|
3312
|
+
$(b, {
|
|
3282
3313
|
class: U(["cl-text-white cl-transform-gpu cl-transition-transform", {
|
|
3283
3314
|
"cl-rotate-180": e.isOpen
|
|
3284
3315
|
}]),
|
|
@@ -3286,12 +3317,12 @@ const Mo = /* @__PURE__ */ he(jo, [["__scopeId", "data-v-fd5a46a8"]]), Io = { cl
|
|
|
3286
3317
|
}, null, 8, ["class"])
|
|
3287
3318
|
])
|
|
3288
3319
|
]),
|
|
3289
|
-
|
|
3290
|
-
default:
|
|
3291
|
-
L(s("div",
|
|
3292
|
-
|
|
3320
|
+
$(Te, { name: "fade" }, {
|
|
3321
|
+
default: Z(() => [
|
|
3322
|
+
L(s("div", Go, [
|
|
3323
|
+
D(f.$slots, "default")
|
|
3293
3324
|
], 512), [
|
|
3294
|
-
[
|
|
3325
|
+
[F, e.isOpen]
|
|
3295
3326
|
])
|
|
3296
3327
|
]),
|
|
3297
3328
|
_: 3
|
|
@@ -3299,7 +3330,7 @@ const Mo = /* @__PURE__ */ he(jo, [["__scopeId", "data-v-fd5a46a8"]]), Io = { cl
|
|
|
3299
3330
|
], 512);
|
|
3300
3331
|
};
|
|
3301
3332
|
}
|
|
3302
|
-
}),
|
|
3333
|
+
}), Jo = [
|
|
3303
3334
|
"button",
|
|
3304
3335
|
"checkbox",
|
|
3305
3336
|
"color",
|
|
@@ -3319,27 +3350,27 @@ const Mo = /* @__PURE__ */ he(jo, [["__scopeId", "data-v-fd5a46a8"]]), Io = { cl
|
|
|
3319
3350
|
"time",
|
|
3320
3351
|
"url"
|
|
3321
3352
|
];
|
|
3322
|
-
function
|
|
3353
|
+
function Ve(e) {
|
|
3323
3354
|
return /[a-z]{2}-[A-Z]{2}/gm.test(e.localeCode);
|
|
3324
3355
|
}
|
|
3325
|
-
function
|
|
3356
|
+
function Ko(e) {
|
|
3326
3357
|
let n = Array.isArray(e);
|
|
3327
3358
|
if (n) {
|
|
3328
3359
|
for (const t of e)
|
|
3329
|
-
if (!
|
|
3360
|
+
if (!Zo(t)) {
|
|
3330
3361
|
n = !1;
|
|
3331
3362
|
break;
|
|
3332
3363
|
}
|
|
3333
3364
|
}
|
|
3334
3365
|
return n;
|
|
3335
3366
|
}
|
|
3336
|
-
function
|
|
3367
|
+
function Zo(e) {
|
|
3337
3368
|
return typeof e.name == "string" && typeof e.nativeName == "string" && typeof e.localeCode == "string";
|
|
3338
3369
|
}
|
|
3339
|
-
const
|
|
3370
|
+
const Qo = {
|
|
3340
3371
|
key: 0,
|
|
3341
3372
|
class: "cl-flex cl-relative cl-select-none cl-w-auto cl-z-30"
|
|
3342
|
-
},
|
|
3373
|
+
}, Yo = { class: "cl-absolute cl-bg-white cl-border cl-border-grey-0 cl-overflow-hidden cl-right-0 cl-rounded cl-shadow-xl cl-text-black cl-top-6 cl-z-3" }, Xo = ["data-localename", "data-localecode", "onClick"], _o = { class: "cl-text-xs" }, ec = /* @__PURE__ */ H({
|
|
3343
3374
|
__name: "cl-ui-language-switcher",
|
|
3344
3375
|
props: {
|
|
3345
3376
|
supportedLanguages: null,
|
|
@@ -3347,21 +3378,21 @@ const Go = {
|
|
|
3347
3378
|
},
|
|
3348
3379
|
emits: ["language-select"],
|
|
3349
3380
|
setup(e, { emit: n }) {
|
|
3350
|
-
const t = e, { locale: l } =
|
|
3381
|
+
const t = e, { locale: l } = ue(), c = j(!1), f = M(() => {
|
|
3351
3382
|
var a;
|
|
3352
3383
|
return (a = t.supportedLanguages.find((u) => u.localeCode === l.value)) != null ? a : null;
|
|
3353
|
-
}), r =
|
|
3354
|
-
function
|
|
3384
|
+
}), r = M(() => t.supportedLanguages.filter((a) => Ve(a)).sort((a, u) => a.nativeName > u.nativeName ? 1 : u.nativeName > a.nativeName ? -1 : 0));
|
|
3385
|
+
function b() {
|
|
3355
3386
|
t.disabled || (c.value = !c.value);
|
|
3356
3387
|
}
|
|
3357
3388
|
return ee(() => t.disabled, (a) => {
|
|
3358
3389
|
a && (c.value = !1);
|
|
3359
|
-
}), (a, u) => o(f) !== null && o(
|
|
3390
|
+
}), (a, u) => o(f) !== null && o(Ve)(o(f)) ? (i(), d("div", Qo, [
|
|
3360
3391
|
s("div", {
|
|
3361
3392
|
class: U(["cl-flex cl-items-center", {
|
|
3362
3393
|
"cl-cursor-pointer": !e.disabled
|
|
3363
3394
|
}]),
|
|
3364
|
-
onClick:
|
|
3395
|
+
onClick: b
|
|
3365
3396
|
}, [
|
|
3366
3397
|
s("span", {
|
|
3367
3398
|
class: U(["cl-font-semibold cl-text-xs", {
|
|
@@ -3369,32 +3400,32 @@ const Go = {
|
|
|
3369
3400
|
}])
|
|
3370
3401
|
}, k(o(f).nativeName), 3)
|
|
3371
3402
|
], 2),
|
|
3372
|
-
|
|
3373
|
-
default:
|
|
3374
|
-
L(s("div",
|
|
3375
|
-
(i(!0), d(z, null, ce(o(r), (g,
|
|
3376
|
-
key:
|
|
3403
|
+
$(Te, { name: "fade" }, {
|
|
3404
|
+
default: Z(() => [
|
|
3405
|
+
L(s("div", Yo, [
|
|
3406
|
+
(i(!0), d(z, null, ce(o(r), (g, p) => (i(), d("div", {
|
|
3407
|
+
key: p,
|
|
3377
3408
|
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",
|
|
3378
3409
|
"data-localename": g.name,
|
|
3379
3410
|
"data-localecode": g.localeCode,
|
|
3380
|
-
onClick: (
|
|
3381
|
-
l.value = g.localeCode,
|
|
3411
|
+
onClick: (w) => {
|
|
3412
|
+
l.value = g.localeCode, b(), n("language-select", g.localeCode);
|
|
3382
3413
|
}
|
|
3383
3414
|
}, [
|
|
3384
|
-
s("span",
|
|
3385
|
-
], 8,
|
|
3415
|
+
s("span", _o, k(g.nativeName), 1)
|
|
3416
|
+
], 8, Xo))), 128))
|
|
3386
3417
|
], 512), [
|
|
3387
|
-
[
|
|
3418
|
+
[F, c.value]
|
|
3388
3419
|
])
|
|
3389
3420
|
]),
|
|
3390
3421
|
_: 1
|
|
3391
3422
|
})
|
|
3392
3423
|
])) : N("", !0);
|
|
3393
3424
|
}
|
|
3394
|
-
}),
|
|
3425
|
+
}), lc = { class: "cl-relative" }, tc = { class: "cl-h-screen cl-z-0" }, nc = { 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" }, oc = { class: "cl-col-span-10 lg:cl-col-span-3" }, cc = {
|
|
3395
3426
|
key: 0,
|
|
3396
3427
|
class: "cl-col-span-10 cl-flex cl-items-start cl-justify-end cl-text-white lg:cl-col-span-1 lg:cl-p-2"
|
|
3397
|
-
},
|
|
3428
|
+
}, ac = { class: "cl-col-span-3" }, ic = { class: "cl-inline cl-relative cl-text-grey-4" }, sc = { class: "cl-col-span-3" }, rc = { class: "cl-inline cl-relative cl-text-grey-4" }, uc = { class: "cl-col-span-10 cl-emphasis-danger cl-mt-10 cl-p-3 cl-rounded-md cl-text-sm md:cl-mt-3" }, dc = /* @__PURE__ */ H({
|
|
3398
3429
|
__name: "cl-ui-login",
|
|
3399
3430
|
props: {
|
|
3400
3431
|
errors: { default: () => [] },
|
|
@@ -3405,56 +3436,56 @@ const Go = {
|
|
|
3405
3436
|
"update:errors": null
|
|
3406
3437
|
},
|
|
3407
3438
|
setup(e, { emit: n }) {
|
|
3408
|
-
const { t } =
|
|
3409
|
-
function
|
|
3410
|
-
const
|
|
3439
|
+
const { t } = ue(), l = j(""), c = j(""), f = j("password"), r = j();
|
|
3440
|
+
function b() {
|
|
3441
|
+
const p = {
|
|
3411
3442
|
username: l.value,
|
|
3412
3443
|
password: c.value
|
|
3413
3444
|
};
|
|
3414
|
-
n("login",
|
|
3445
|
+
n("login", p);
|
|
3415
3446
|
}
|
|
3416
3447
|
function a() {
|
|
3417
3448
|
n("update:errors", []);
|
|
3418
3449
|
}
|
|
3419
|
-
function u(
|
|
3420
|
-
const
|
|
3450
|
+
function u(p, w) {
|
|
3451
|
+
const O = {
|
|
3421
3452
|
valid: !0,
|
|
3422
3453
|
message: ""
|
|
3423
3454
|
};
|
|
3424
|
-
return typeof
|
|
3455
|
+
return typeof w == "string" && w.trim() === "" && (O.valid = !1), O;
|
|
3425
3456
|
}
|
|
3426
|
-
function g(
|
|
3427
|
-
r.value =
|
|
3457
|
+
function g(p, w) {
|
|
3458
|
+
r.value = p;
|
|
3428
3459
|
}
|
|
3429
|
-
return (
|
|
3430
|
-
const
|
|
3431
|
-
return i(), d("div",
|
|
3432
|
-
s("div",
|
|
3433
|
-
|
|
3460
|
+
return (p, w) => {
|
|
3461
|
+
const O = _("icon");
|
|
3462
|
+
return i(), d("div", lc, [
|
|
3463
|
+
s("div", tc, [
|
|
3464
|
+
D(p.$slots, "background")
|
|
3434
3465
|
]),
|
|
3435
|
-
s("form",
|
|
3436
|
-
s("div",
|
|
3437
|
-
|
|
3466
|
+
s("form", nc, [
|
|
3467
|
+
s("div", oc, [
|
|
3468
|
+
D(p.$slots, "logo")
|
|
3438
3469
|
]),
|
|
3439
|
-
|
|
3440
|
-
|
|
3470
|
+
p.$slots["language-switcher"] ? (i(), d("div", cc, [
|
|
3471
|
+
D(p.$slots, "language-switcher")
|
|
3441
3472
|
])) : N("", !0),
|
|
3442
3473
|
s("div", {
|
|
3443
3474
|
class: U(["cl-gap-y-4 cl-grid cl-grid-cols-1 lg:cl-gap-x-2 lg:cl-grid-cols-8", {
|
|
3444
|
-
"cl-col-span-7": !
|
|
3445
|
-
"cl-col-span-6":
|
|
3475
|
+
"cl-col-span-7": !p.$slots["language-switcher"],
|
|
3476
|
+
"cl-col-span-6": p.$slots["language-switcher"]
|
|
3446
3477
|
}])
|
|
3447
3478
|
}, [
|
|
3448
|
-
s("div",
|
|
3449
|
-
s("div",
|
|
3450
|
-
|
|
3479
|
+
s("div", ac, [
|
|
3480
|
+
s("div", ic, [
|
|
3481
|
+
$(O, {
|
|
3451
3482
|
class: "cl-absolute cl-left-3 cl-top-2.5",
|
|
3452
3483
|
icon: "ph:user",
|
|
3453
3484
|
size: 18
|
|
3454
3485
|
}),
|
|
3455
|
-
|
|
3486
|
+
$(ge, {
|
|
3456
3487
|
modelValue: l.value,
|
|
3457
|
-
"onUpdate:modelValue":
|
|
3488
|
+
"onUpdate:modelValue": w[0] || (w[0] = (v) => l.value = v),
|
|
3458
3489
|
modelModifiers: { trim: !0 },
|
|
3459
3490
|
class: "!cl-border-2 !cl-mb-1 cl-w-full",
|
|
3460
3491
|
"input-type": "email",
|
|
@@ -3472,32 +3503,32 @@ const Go = {
|
|
|
3472
3503
|
}, null, 8, ["modelValue", "highlight-when-valid", "label", "placeholder-text", "message-when-valid"])
|
|
3473
3504
|
])
|
|
3474
3505
|
]),
|
|
3475
|
-
s("div",
|
|
3476
|
-
s("div",
|
|
3477
|
-
|
|
3506
|
+
s("div", sc, [
|
|
3507
|
+
s("div", rc, [
|
|
3508
|
+
$(O, {
|
|
3478
3509
|
class: "cl-absolute cl-left-3 cl-top-2.5",
|
|
3479
3510
|
icon: "ph:lock",
|
|
3480
3511
|
size: 18
|
|
3481
3512
|
}),
|
|
3482
|
-
L(
|
|
3513
|
+
L($(O, {
|
|
3483
3514
|
class: "cl-absolute cl-cursor-pointer cl-right-6 cl-top-2.5",
|
|
3484
3515
|
icon: "ph:eye",
|
|
3485
3516
|
size: 18,
|
|
3486
|
-
onClick:
|
|
3517
|
+
onClick: w[1] || (w[1] = (v) => f.value = "text")
|
|
3487
3518
|
}, null, 512), [
|
|
3488
|
-
[
|
|
3519
|
+
[F, f.value === "password"]
|
|
3489
3520
|
]),
|
|
3490
|
-
L(
|
|
3521
|
+
L($(O, {
|
|
3491
3522
|
class: "cl-absolute cl-cursor-pointer cl-right-6 cl-top-2.5",
|
|
3492
3523
|
icon: "ph:eye-slash",
|
|
3493
3524
|
size: 18,
|
|
3494
|
-
onClick:
|
|
3525
|
+
onClick: w[2] || (w[2] = (v) => f.value = "password")
|
|
3495
3526
|
}, null, 512), [
|
|
3496
|
-
[
|
|
3527
|
+
[F, f.value === "text"]
|
|
3497
3528
|
]),
|
|
3498
|
-
|
|
3529
|
+
$(ge, {
|
|
3499
3530
|
modelValue: c.value,
|
|
3500
|
-
"onUpdate:modelValue":
|
|
3531
|
+
"onUpdate:modelValue": w[3] || (w[3] = (v) => c.value = v),
|
|
3501
3532
|
class: "!cl-border-2 cl-w-full",
|
|
3502
3533
|
"input-type": f.value,
|
|
3503
3534
|
"highlight-when-valid": c.value !== void 0 && c.value !== "",
|
|
@@ -3517,31 +3548,31 @@ const Go = {
|
|
|
3517
3548
|
"cl-mt-1.5 cl-mb-1 md:cl-mt-0.5 md:cl-mb-7 lg:cl-mb-0": e.loading
|
|
3518
3549
|
}])
|
|
3519
3550
|
}, [
|
|
3520
|
-
|
|
3551
|
+
$($e, {
|
|
3521
3552
|
class: "!cl-leading-9 cl-w-full",
|
|
3522
3553
|
colour: "blue",
|
|
3523
3554
|
loading: e.loading,
|
|
3524
3555
|
disabled: !r.value || c.value === "",
|
|
3525
|
-
onClick: ae(
|
|
3556
|
+
onClick: ae(b, ["prevent"])
|
|
3526
3557
|
}, {
|
|
3527
|
-
default:
|
|
3558
|
+
default: Z(() => [
|
|
3528
3559
|
Y(k(o(t)("login.login")), 1)
|
|
3529
3560
|
]),
|
|
3530
3561
|
_: 1
|
|
3531
3562
|
}, 8, ["loading", "disabled", "onClick"])
|
|
3532
3563
|
], 2)
|
|
3533
3564
|
], 2),
|
|
3534
|
-
|
|
3535
|
-
default:
|
|
3565
|
+
$(Te, { name: "cl-grow-down" }, {
|
|
3566
|
+
default: Z(() => {
|
|
3536
3567
|
var v;
|
|
3537
3568
|
return [
|
|
3538
|
-
L(s("span",
|
|
3539
|
-
(i(!0), d(z, null, ce(e.errors, (B,
|
|
3540
|
-
key:
|
|
3569
|
+
L(s("span", uc, [
|
|
3570
|
+
(i(!0), d(z, null, ce(e.errors, (B, V) => (i(), d("div", {
|
|
3571
|
+
key: V,
|
|
3541
3572
|
class: "cl-font-semibold"
|
|
3542
3573
|
}, k(B), 1))), 128))
|
|
3543
3574
|
], 512), [
|
|
3544
|
-
[
|
|
3575
|
+
[F, (v = e.errors) == null ? void 0 : v.length]
|
|
3545
3576
|
])
|
|
3546
3577
|
];
|
|
3547
3578
|
}),
|
|
@@ -3551,22 +3582,22 @@ const Go = {
|
|
|
3551
3582
|
]);
|
|
3552
3583
|
};
|
|
3553
3584
|
}
|
|
3554
|
-
}),
|
|
3585
|
+
}), fc = [
|
|
3555
3586
|
"x-small",
|
|
3556
3587
|
"small",
|
|
3557
3588
|
"medium",
|
|
3558
3589
|
"large"
|
|
3559
|
-
],
|
|
3590
|
+
], mc = [
|
|
3560
3591
|
"primary",
|
|
3561
3592
|
"secondary",
|
|
3562
3593
|
"white"
|
|
3563
|
-
],
|
|
3594
|
+
], gc = {
|
|
3564
3595
|
id: "group-container",
|
|
3565
3596
|
class: "cl-bg-blue-default cl-h-full cl-left-0 cl-max-h-full cl-min-h-full cl-min-w-20 cl-overflow-y-auto cl-self-start cl-sticky cl-w-20 cl-z-30"
|
|
3566
|
-
},
|
|
3597
|
+
}, bc = { class: "cl-relative cl-w-full" }, vc = /* @__PURE__ */ H({
|
|
3567
3598
|
__name: "cl-ui-navigation",
|
|
3568
3599
|
setup(e) {
|
|
3569
|
-
const n =
|
|
3600
|
+
const n = M(() => t.value.filter((a) => a.open === !0).length > 0), t = j([]), l = j(!1);
|
|
3570
3601
|
function c(a) {
|
|
3571
3602
|
let u = t.value.find((g) => g.id === a);
|
|
3572
3603
|
return u || (u = {
|
|
@@ -3580,9 +3611,9 @@ const Go = {
|
|
|
3580
3611
|
g.id !== a && (g.open = !1);
|
|
3581
3612
|
}));
|
|
3582
3613
|
}
|
|
3583
|
-
const r =
|
|
3584
|
-
|
|
3585
|
-
function
|
|
3614
|
+
const r = j();
|
|
3615
|
+
nl(r, b);
|
|
3616
|
+
function b() {
|
|
3586
3617
|
l.value === !1 && n.value === !0 && t.value.forEach((a) => {
|
|
3587
3618
|
a.open = !1;
|
|
3588
3619
|
});
|
|
@@ -3594,36 +3625,36 @@ const Go = {
|
|
|
3594
3625
|
ref: r,
|
|
3595
3626
|
class: "cl-flex cl-flex-nowrap cl-h-full cl-max-h-full cl-min-h-full cl-min-w-20 cl-relative cl-self-start cl-w-auto"
|
|
3596
3627
|
}, [
|
|
3597
|
-
s("div",
|
|
3598
|
-
|
|
3628
|
+
s("div", gc, [
|
|
3629
|
+
D(a.$slots, "icon", re(we({ groupIsOpen: c, toggleOpen: f })), void 0, !0)
|
|
3599
3630
|
]),
|
|
3600
|
-
|
|
3601
|
-
default:
|
|
3631
|
+
$(Te, { name: "slide-right" }, {
|
|
3632
|
+
default: Z(() => [
|
|
3602
3633
|
L(s("div", {
|
|
3603
3634
|
class: U(["cl-bg-grey-0 cl-border-grey-2 cl-border-r cl-max-h-full cl-min-h-full cl-min-w-[260px] cl-overflow-y-auto cl-p-8 cl-self-start cl-top-0 cl-w-[260px] cl-z-20", {
|
|
3604
3635
|
"cl-relative": l.value,
|
|
3605
3636
|
"cl-absolute cl-left-20 cl-shadow-lg": !l.value
|
|
3606
3637
|
}])
|
|
3607
3638
|
}, [
|
|
3608
|
-
s("div",
|
|
3639
|
+
s("div", bc, [
|
|
3609
3640
|
s("span", {
|
|
3610
3641
|
class: "cl-absolute cl-cursor-pointer cl-h-8 cl-hidden cl-leading-8 cl-right-0 cl-text-center cl-top-0 cl-w-8 md:cl-inline-block",
|
|
3611
|
-
onClick: u[0] || (u[0] = (
|
|
3642
|
+
onClick: u[0] || (u[0] = (p) => l.value = !l.value)
|
|
3612
3643
|
}, [
|
|
3613
|
-
l.value ? (i(),
|
|
3644
|
+
l.value ? (i(), J(g, {
|
|
3614
3645
|
key: 1,
|
|
3615
3646
|
class: "cl-inline-block",
|
|
3616
3647
|
icon: "ph:push-pin-slash"
|
|
3617
|
-
})) : (i(),
|
|
3648
|
+
})) : (i(), J(g, {
|
|
3618
3649
|
key: 0,
|
|
3619
3650
|
class: "cl-inline-block",
|
|
3620
3651
|
icon: "ph:push-pin"
|
|
3621
3652
|
}))
|
|
3622
3653
|
]),
|
|
3623
|
-
|
|
3654
|
+
D(a.$slots, "default", re(we({ groupIsOpen: c })), void 0, !0)
|
|
3624
3655
|
])
|
|
3625
3656
|
], 2), [
|
|
3626
|
-
[
|
|
3657
|
+
[F, o(n)]
|
|
3627
3658
|
])
|
|
3628
3659
|
]),
|
|
3629
3660
|
_: 3
|
|
@@ -3632,7 +3663,7 @@ const Go = {
|
|
|
3632
3663
|
};
|
|
3633
3664
|
}
|
|
3634
3665
|
});
|
|
3635
|
-
const
|
|
3666
|
+
const hc = /* @__PURE__ */ pe(vc, [["__scopeId", "data-v-7ce52ad5"]]), pc = /* @__PURE__ */ H({
|
|
3636
3667
|
__name: "cl-ui-navigation-icon",
|
|
3637
3668
|
props: {
|
|
3638
3669
|
icon: null,
|
|
@@ -3646,7 +3677,7 @@ const fc = /* @__PURE__ */ he(dc, [["__scopeId", "data-v-7ce52ad5"]]), mc = /* @
|
|
|
3646
3677
|
"cl-bg-blue-light": e.open
|
|
3647
3678
|
}])
|
|
3648
3679
|
}, [
|
|
3649
|
-
|
|
3680
|
+
$(l, {
|
|
3650
3681
|
class: "cl-block",
|
|
3651
3682
|
icon: e.icon,
|
|
3652
3683
|
width: "24"
|
|
@@ -3654,45 +3685,45 @@ const fc = /* @__PURE__ */ he(dc, [["__scopeId", "data-v-7ce52ad5"]]), mc = /* @
|
|
|
3654
3685
|
], 2);
|
|
3655
3686
|
};
|
|
3656
3687
|
}
|
|
3657
|
-
}),
|
|
3688
|
+
}), yc = {
|
|
3658
3689
|
key: 0,
|
|
3659
3690
|
class: "cl-font-bold cl-leading-8 cl-mb-8 cl-pr-8 cl-select-none cl-text-blue-light cl-text-lg"
|
|
3660
|
-
},
|
|
3691
|
+
}, wc = { class: "cl-flex cl-flex-wrap cl-space-y-8 cl-text-sm cl-w-full" }, xc = /* @__PURE__ */ H({
|
|
3661
3692
|
__name: "cl-ui-navigation-group",
|
|
3662
3693
|
props: {
|
|
3663
3694
|
open: { type: Boolean }
|
|
3664
3695
|
},
|
|
3665
3696
|
setup(e) {
|
|
3666
3697
|
return (n, t) => e.open ? (i(), d(z, { key: 0 }, [
|
|
3667
|
-
n.$slots.title ? (i(), d("div",
|
|
3668
|
-
|
|
3698
|
+
n.$slots.title ? (i(), d("div", yc, [
|
|
3699
|
+
D(n.$slots, "title")
|
|
3669
3700
|
])) : N("", !0),
|
|
3670
|
-
s("div",
|
|
3671
|
-
|
|
3701
|
+
s("div", wc, [
|
|
3702
|
+
D(n.$slots, "default")
|
|
3672
3703
|
])
|
|
3673
3704
|
], 64)) : N("", !0);
|
|
3674
3705
|
}
|
|
3675
|
-
}),
|
|
3706
|
+
}), kc = {}, $c = { class: "cl-w-full" }, Tc = {
|
|
3676
3707
|
key: 0,
|
|
3677
3708
|
class: "cl-font-bold cl-mb-4 cl-select-none"
|
|
3678
|
-
},
|
|
3679
|
-
function
|
|
3680
|
-
return i(), d("div",
|
|
3681
|
-
e.$slots.title ? (i(), d("div",
|
|
3682
|
-
|
|
3709
|
+
}, Cc = { class: "cl-flex cl-flex-wrap cl-space-y-2" };
|
|
3710
|
+
function Sc(e, n) {
|
|
3711
|
+
return i(), d("div", $c, [
|
|
3712
|
+
e.$slots.title ? (i(), d("div", Tc, [
|
|
3713
|
+
D(e.$slots, "title")
|
|
3683
3714
|
])) : N("", !0),
|
|
3684
|
-
s("span",
|
|
3685
|
-
|
|
3715
|
+
s("span", Cc, [
|
|
3716
|
+
D(e.$slots, "default")
|
|
3686
3717
|
])
|
|
3687
3718
|
]);
|
|
3688
3719
|
}
|
|
3689
|
-
const
|
|
3690
|
-
function
|
|
3691
|
-
return i(), d("div",
|
|
3692
|
-
|
|
3720
|
+
const Oc = /* @__PURE__ */ pe(kc, [["render", Sc]]), Ec = {}, Ac = { class: "cl-cursor-pointer cl-transition-colors cl-w-full hover:cl-text-blue-light" };
|
|
3721
|
+
function jc(e, n) {
|
|
3722
|
+
return i(), d("div", Ac, [
|
|
3723
|
+
D(e.$slots, "default")
|
|
3693
3724
|
]);
|
|
3694
3725
|
}
|
|
3695
|
-
const
|
|
3726
|
+
const Mc = /* @__PURE__ */ pe(Ec, [["render", jc]]), Ic = { class: "cl-w-full" }, Nc = /* @__PURE__ */ H({
|
|
3696
3727
|
__name: "cl-ui-tab",
|
|
3697
3728
|
props: {
|
|
3698
3729
|
currentTab: { default: 0 },
|
|
@@ -3700,7 +3731,7 @@ const Sc = /* @__PURE__ */ he($c, [["render", Cc]]), Ec = { class: "cl-w-full" }
|
|
|
3700
3731
|
colour: { default: "default" }
|
|
3701
3732
|
},
|
|
3702
3733
|
setup(e) {
|
|
3703
|
-
const n = e, t =
|
|
3734
|
+
const n = e, t = j(), l = j(!1), c = j(!1);
|
|
3704
3735
|
function f(u) {
|
|
3705
3736
|
return u === n.currentTab;
|
|
3706
3737
|
}
|
|
@@ -3711,26 +3742,26 @@ const Sc = /* @__PURE__ */ he($c, [["render", Cc]]), Ec = { class: "cl-w-full" }
|
|
|
3711
3742
|
} else
|
|
3712
3743
|
l.value = !1, c.value = !1;
|
|
3713
3744
|
}
|
|
3714
|
-
function
|
|
3745
|
+
function b() {
|
|
3715
3746
|
r(), window.addEventListener("resize", r);
|
|
3716
3747
|
}
|
|
3717
3748
|
function a(u) {
|
|
3718
3749
|
if (t.value) {
|
|
3719
3750
|
const g = t.value.scrollWidth / 5;
|
|
3720
|
-
let
|
|
3721
|
-
u === "left" && (
|
|
3751
|
+
let p = g;
|
|
3752
|
+
u === "left" && (p = -g), t.value.scroll(t.value.scrollLeft + p, 0);
|
|
3722
3753
|
}
|
|
3723
3754
|
}
|
|
3724
|
-
return
|
|
3725
|
-
const
|
|
3726
|
-
return i(), d("div",
|
|
3755
|
+
return je(() => b()), De(() => window.removeEventListener("resize", r)), (u, g) => {
|
|
3756
|
+
const p = _("icon");
|
|
3757
|
+
return i(), d("div", Ic, [
|
|
3727
3758
|
s("div", null, [
|
|
3728
3759
|
l.value ? (i(), d("div", {
|
|
3729
3760
|
key: 0,
|
|
3730
3761
|
class: "cl-bg-white cl-cursor-pointer cl-float-left cl-h-11 cl-w-4",
|
|
3731
|
-
onClick: g[0] || (g[0] = (
|
|
3762
|
+
onClick: g[0] || (g[0] = (w) => a("left"))
|
|
3732
3763
|
}, [
|
|
3733
|
-
|
|
3764
|
+
$(p, {
|
|
3734
3765
|
icon: "ph:caret-left",
|
|
3735
3766
|
class: "cl-mt-4 cl-text-secondary-default"
|
|
3736
3767
|
})
|
|
@@ -3749,24 +3780,24 @@ const Sc = /* @__PURE__ */ he($c, [["render", Cc]]), Ec = { class: "cl-w-full" }
|
|
|
3749
3780
|
}]),
|
|
3750
3781
|
onScrollPassive: r
|
|
3751
3782
|
}, [
|
|
3752
|
-
|
|
3783
|
+
D(u.$slots, "headings", re(we({ isTabOpen: f, disabled: e.disabled, colour: e.colour })))
|
|
3753
3784
|
], 34),
|
|
3754
3785
|
c.value ? (i(), d("div", {
|
|
3755
3786
|
key: 1,
|
|
3756
3787
|
class: "cl-bg-white cl-bottom-12 cl-cursor-pointer cl-float-right cl-h-11 cl-relative cl-w-4",
|
|
3757
|
-
onClick: g[1] || (g[1] = (
|
|
3788
|
+
onClick: g[1] || (g[1] = (w) => a("right"))
|
|
3758
3789
|
}, [
|
|
3759
|
-
|
|
3790
|
+
$(p, {
|
|
3760
3791
|
icon: "ph:caret-right",
|
|
3761
3792
|
class: "cl-mt-4 cl-text-secondary-default"
|
|
3762
3793
|
})
|
|
3763
3794
|
])) : N("", !0)
|
|
3764
3795
|
]),
|
|
3765
|
-
|
|
3796
|
+
D(u.$slots, "content", re(we({ isTabOpen: f, disabled: e.disabled, colour: e.colour })))
|
|
3766
3797
|
]);
|
|
3767
3798
|
};
|
|
3768
3799
|
}
|
|
3769
|
-
}),
|
|
3800
|
+
}), qc = ["onKeyup"], Dc = /* @__PURE__ */ H({
|
|
3770
3801
|
__name: "cl-ui-tab-header",
|
|
3771
3802
|
props: {
|
|
3772
3803
|
id: null,
|
|
@@ -3778,11 +3809,11 @@ const Sc = /* @__PURE__ */ he($c, [["render", Cc]]), Ec = { class: "cl-w-full" }
|
|
|
3778
3809
|
"update:currentTab": null
|
|
3779
3810
|
},
|
|
3780
3811
|
setup(e, { emit: n }) {
|
|
3781
|
-
const t = e, l =
|
|
3812
|
+
const t = e, l = j(), c = j(), f = M(() => t.id === t.currentTab);
|
|
3782
3813
|
function r() {
|
|
3783
3814
|
t.disabled || (l.value = !1, c.value = !1, n("update:currentTab", t.id));
|
|
3784
3815
|
}
|
|
3785
|
-
return (
|
|
3816
|
+
return (b, a) => (i(), d("div", {
|
|
3786
3817
|
class: U(["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", {
|
|
3787
3818
|
"!cl-cursor-default cl-text-grey-4 !cl-border-grey-2": e.disabled,
|
|
3788
3819
|
"cl-border cl-border-b-0 cl-rounded-t-md cl-shadow-[inset_0_-1px_0_#ffffff] cl-cursor-default": o(f),
|
|
@@ -3808,74 +3839,74 @@ const Sc = /* @__PURE__ */ he($c, [["render", Cc]]), Ec = { class: "cl-w-full" }
|
|
|
3808
3839
|
onMouseout: a[1] || (a[1] = (u) => c.value = !1),
|
|
3809
3840
|
onFocusin: a[2] || (a[2] = (u) => l.value = !0),
|
|
3810
3841
|
onFocusout: a[3] || (a[3] = (u) => l.value = !1),
|
|
3811
|
-
onKeyup:
|
|
3842
|
+
onKeyup: Ae(ae(r, ["self"]), ["enter"])
|
|
3812
3843
|
}, [
|
|
3813
|
-
|
|
3814
|
-
], 42,
|
|
3844
|
+
D(b.$slots, "default")
|
|
3845
|
+
], 42, qc));
|
|
3815
3846
|
}
|
|
3816
|
-
}),
|
|
3817
|
-
function
|
|
3818
|
-
return
|
|
3847
|
+
}), Rc = {};
|
|
3848
|
+
function Uc(e, n) {
|
|
3849
|
+
return D(e.$slots, "default");
|
|
3819
3850
|
}
|
|
3820
|
-
const
|
|
3851
|
+
const zc = /* @__PURE__ */ pe(Rc, [["render", Uc]]), Bc = [
|
|
3821
3852
|
"default",
|
|
3822
3853
|
"primary",
|
|
3823
3854
|
"secondary",
|
|
3824
3855
|
"danger",
|
|
3825
3856
|
"blue"
|
|
3826
|
-
],
|
|
3857
|
+
], Lc = [
|
|
3827
3858
|
"left",
|
|
3828
3859
|
"right"
|
|
3829
|
-
],
|
|
3860
|
+
], Pc = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
3830
3861
|
__proto__: null,
|
|
3831
|
-
clUiAccordion:
|
|
3832
|
-
clUiAccordionItem:
|
|
3833
|
-
clUiAccordionHeader:
|
|
3834
|
-
clUiApp:
|
|
3835
|
-
clUiButton:
|
|
3836
|
-
buttonColours:
|
|
3837
|
-
buttonSizes:
|
|
3838
|
-
clUiCard:
|
|
3839
|
-
cardSizes:
|
|
3840
|
-
clUiComboBox:
|
|
3841
|
-
isComboBoxItem:
|
|
3842
|
-
isComboBoxCreateRequest:
|
|
3843
|
-
clUiFooter:
|
|
3844
|
-
clUiGrid:
|
|
3845
|
-
gridColumnTypes:
|
|
3846
|
-
isGridColumn:
|
|
3847
|
-
isGridColumnArray:
|
|
3848
|
-
stringFormats:
|
|
3849
|
-
FilterOperation:
|
|
3850
|
-
filterMethodTypes:
|
|
3851
|
-
isFilterRequest:
|
|
3852
|
-
isFilterResponse:
|
|
3853
|
-
clUiHeader:
|
|
3854
|
-
clUiHeaderMenu:
|
|
3855
|
-
clUiInput:
|
|
3856
|
-
inputTypes:
|
|
3857
|
-
clUiLanguageSwitcher:
|
|
3858
|
-
isLanguageLocaleFormat:
|
|
3859
|
-
isLanguageArray:
|
|
3860
|
-
clUiLoadingSpinner:
|
|
3861
|
-
clUiLogin:
|
|
3862
|
-
clUiModal:
|
|
3863
|
-
modalSizes:
|
|
3864
|
-
modalColours:
|
|
3865
|
-
clUiNavigation:
|
|
3866
|
-
clUiNavigationIcon:
|
|
3867
|
-
clUiNavigationGroup:
|
|
3868
|
-
clUiNavigationSection:
|
|
3869
|
-
clUiNavigationItem:
|
|
3870
|
-
clUiNotification:
|
|
3871
|
-
clUiTab:
|
|
3872
|
-
clUiTabHeader:
|
|
3873
|
-
clUiTabContent:
|
|
3874
|
-
tabColours:
|
|
3875
|
-
tabScroll:
|
|
3862
|
+
clUiAccordion: hl,
|
|
3863
|
+
clUiAccordionItem: kl,
|
|
3864
|
+
clUiAccordionHeader: Sl,
|
|
3865
|
+
clUiApp: Ml,
|
|
3866
|
+
clUiButton: $e,
|
|
3867
|
+
buttonColours: Ul,
|
|
3868
|
+
buttonSizes: zl,
|
|
3869
|
+
clUiCard: Ll,
|
|
3870
|
+
cardSizes: Pl,
|
|
3871
|
+
clUiComboBox: Pt,
|
|
3872
|
+
isComboBoxItem: Ft,
|
|
3873
|
+
isComboBoxCreateRequest: Vt,
|
|
3874
|
+
clUiFooter: Yt,
|
|
3875
|
+
clUiGrid: Ro,
|
|
3876
|
+
gridColumnTypes: on,
|
|
3877
|
+
isGridColumn: sl,
|
|
3878
|
+
isGridColumnArray: cn,
|
|
3879
|
+
stringFormats: an,
|
|
3880
|
+
FilterOperation: ke,
|
|
3881
|
+
filterMethodTypes: sn,
|
|
3882
|
+
isFilterRequest: dn,
|
|
3883
|
+
isFilterResponse: fn,
|
|
3884
|
+
clUiHeader: zo,
|
|
3885
|
+
clUiHeaderMenu: Wo,
|
|
3886
|
+
clUiInput: ge,
|
|
3887
|
+
inputTypes: Jo,
|
|
3888
|
+
clUiLanguageSwitcher: ec,
|
|
3889
|
+
isLanguageLocaleFormat: Ve,
|
|
3890
|
+
isLanguageArray: Ko,
|
|
3891
|
+
clUiLoadingSpinner: al,
|
|
3892
|
+
clUiLogin: dc,
|
|
3893
|
+
clUiModal: il,
|
|
3894
|
+
modalSizes: fc,
|
|
3895
|
+
modalColours: mc,
|
|
3896
|
+
clUiNavigation: hc,
|
|
3897
|
+
clUiNavigationIcon: pc,
|
|
3898
|
+
clUiNavigationGroup: xc,
|
|
3899
|
+
clUiNavigationSection: Oc,
|
|
3900
|
+
clUiNavigationItem: Mc,
|
|
3901
|
+
clUiNotification: cl,
|
|
3902
|
+
clUiTab: Nc,
|
|
3903
|
+
clUiTabHeader: Dc,
|
|
3904
|
+
clUiTabContent: zc,
|
|
3905
|
+
tabColours: Bc,
|
|
3906
|
+
tabScroll: Lc
|
|
3876
3907
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
3877
|
-
const
|
|
3878
|
-
e.use(oe), e.component("Icon",
|
|
3908
|
+
const _c = (e) => {
|
|
3909
|
+
e.use(oe), e.component("Icon", rl), Object.entries(Pc).forEach(([
|
|
3879
3910
|
n,
|
|
3880
3911
|
t
|
|
3881
3912
|
]) => {
|
|
@@ -3883,64 +3914,64 @@ const Kc = (e) => {
|
|
|
3883
3914
|
});
|
|
3884
3915
|
};
|
|
3885
3916
|
export {
|
|
3886
|
-
|
|
3887
|
-
|
|
3917
|
+
K as DateFormat,
|
|
3918
|
+
ke as FilterOperation,
|
|
3888
3919
|
ne as NumberFormat,
|
|
3889
|
-
|
|
3890
|
-
|
|
3891
|
-
|
|
3892
|
-
|
|
3893
|
-
|
|
3894
|
-
|
|
3895
|
-
|
|
3896
|
-
|
|
3897
|
-
|
|
3898
|
-
|
|
3899
|
-
|
|
3900
|
-
|
|
3901
|
-
|
|
3902
|
-
|
|
3903
|
-
|
|
3904
|
-
|
|
3905
|
-
|
|
3906
|
-
|
|
3907
|
-
|
|
3908
|
-
|
|
3909
|
-
|
|
3910
|
-
|
|
3911
|
-
|
|
3912
|
-
|
|
3913
|
-
|
|
3914
|
-
|
|
3915
|
-
|
|
3916
|
-
|
|
3917
|
-
|
|
3918
|
-
|
|
3919
|
-
|
|
3920
|
-
|
|
3920
|
+
Ul as buttonColours,
|
|
3921
|
+
zl as buttonSizes,
|
|
3922
|
+
Pl as cardSizes,
|
|
3923
|
+
hl as clUiAccordion,
|
|
3924
|
+
Sl as clUiAccordionHeader,
|
|
3925
|
+
kl as clUiAccordionItem,
|
|
3926
|
+
Ml as clUiApp,
|
|
3927
|
+
$e as clUiButton,
|
|
3928
|
+
Ll as clUiCard,
|
|
3929
|
+
Pt as clUiComboBox,
|
|
3930
|
+
Yt as clUiFooter,
|
|
3931
|
+
Ro as clUiGrid,
|
|
3932
|
+
zo as clUiHeader,
|
|
3933
|
+
Wo as clUiHeaderMenu,
|
|
3934
|
+
ge as clUiInput,
|
|
3935
|
+
ec as clUiLanguageSwitcher,
|
|
3936
|
+
al as clUiLoadingSpinner,
|
|
3937
|
+
dc as clUiLogin,
|
|
3938
|
+
il as clUiModal,
|
|
3939
|
+
hc as clUiNavigation,
|
|
3940
|
+
xc as clUiNavigationGroup,
|
|
3941
|
+
pc as clUiNavigationIcon,
|
|
3942
|
+
Mc as clUiNavigationItem,
|
|
3943
|
+
Oc as clUiNavigationSection,
|
|
3944
|
+
cl as clUiNotification,
|
|
3945
|
+
Nc as clUiTab,
|
|
3946
|
+
zc as clUiTabContent,
|
|
3947
|
+
Dc as clUiTabHeader,
|
|
3948
|
+
Hl as datetimeFormats,
|
|
3949
|
+
_c as default,
|
|
3950
|
+
sn as filterMethodTypes,
|
|
3951
|
+
on as gridColumnTypes,
|
|
3921
3952
|
oe as i18n,
|
|
3922
|
-
|
|
3923
|
-
|
|
3924
|
-
|
|
3925
|
-
|
|
3926
|
-
|
|
3927
|
-
|
|
3928
|
-
|
|
3929
|
-
|
|
3930
|
-
|
|
3931
|
-
|
|
3932
|
-
|
|
3933
|
-
|
|
3934
|
-
|
|
3935
|
-
|
|
3936
|
-
|
|
3937
|
-
|
|
3938
|
-
|
|
3939
|
-
|
|
3940
|
-
|
|
3941
|
-
|
|
3942
|
-
|
|
3943
|
-
|
|
3944
|
-
|
|
3945
|
-
|
|
3953
|
+
Jo as inputTypes,
|
|
3954
|
+
Vt as isComboBoxCreateRequest,
|
|
3955
|
+
Ft as isComboBoxItem,
|
|
3956
|
+
dn as isFilterRequest,
|
|
3957
|
+
fn as isFilterResponse,
|
|
3958
|
+
sl as isGridColumn,
|
|
3959
|
+
cn as isGridColumnArray,
|
|
3960
|
+
Ko as isLanguageArray,
|
|
3961
|
+
Ve as isLanguageLocaleFormat,
|
|
3962
|
+
Fl as messages,
|
|
3963
|
+
mc as modalColours,
|
|
3964
|
+
fc as modalSizes,
|
|
3965
|
+
Vl as numberFormats,
|
|
3966
|
+
Xc as setCurrentLocale,
|
|
3967
|
+
Yc as setLocaleDateTimeFormats,
|
|
3968
|
+
Zc as setLocaleMessages,
|
|
3969
|
+
Qc as setLocaleNumberFormats,
|
|
3970
|
+
Je as showNotification,
|
|
3971
|
+
an as stringFormats,
|
|
3972
|
+
Bc as tabColours,
|
|
3973
|
+
Lc as tabScroll,
|
|
3974
|
+
Kl as validateEmail,
|
|
3975
|
+
Wl as validateMaxValue,
|
|
3976
|
+
Gl as validateMinValue
|
|
3946
3977
|
};
|