manolis-ui 0.6.19 → 0.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +8 -6
- package/dist/manolis-ui.css +1 -1
- package/dist/manolis-ui.js +590 -561
- package/dist/manolis-ui.umd.cjs +8 -8
- package/dist/style.css +3 -0
- package/package.json +1 -1
package/dist/manolis-ui.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { defineComponent as L, computed as E, createElementBlock as a, openBlock as n, normalizeClass as V, createCommentVNode as O, renderSlot as T, createTextVNode as ke, createElementVNode as
|
|
2
|
-
const je = {
|
|
1
|
+
import { defineComponent as L, computed as E, createElementBlock as a, openBlock as n, normalizeClass as V, createCommentVNode as O, renderSlot as T, createTextVNode as ke, createElementVNode as s, Fragment as B, renderList as A, toDisplayString as C, ref as x, h as me, onMounted as Q, watch as H, withDirectives as q, createVNode as ae, isRef as ze, vModelCheckbox as Ae, unref as F, provide as Pe, normalizeStyle as de, inject as Ee, useId as Le, defineAsyncComponent as ce, nextTick as pe, onBeforeUnmount as ge, withModifiers as ee, createBlock as ue, resolveDynamicComponent as ve, mergeProps as fe, withKeys as he, onUnmounted as $e, vModelSelect as Z, vModelText as ne, useSlots as Ue, Comment as Re, vShow as Ne } from "vue";
|
|
2
|
+
const je = ["disabled"], Fe = {
|
|
3
3
|
key: 0,
|
|
4
4
|
class: "loading loading-spinner"
|
|
5
|
-
},
|
|
5
|
+
}, fn = /* @__PURE__ */ L({
|
|
6
6
|
__name: "ButtonComponent",
|
|
7
7
|
props: {
|
|
8
8
|
outlined: { type: Boolean, default: !1 },
|
|
@@ -10,11 +10,12 @@ const je = {
|
|
|
10
10
|
loading: { type: Boolean, default: !1 },
|
|
11
11
|
type: {},
|
|
12
12
|
size: {},
|
|
13
|
-
shape: {}
|
|
13
|
+
shape: {},
|
|
14
|
+
disabled: { type: Boolean, default: !1 }
|
|
14
15
|
},
|
|
15
16
|
setup(i) {
|
|
16
|
-
const
|
|
17
|
-
switch (
|
|
17
|
+
const d = i, e = E(() => {
|
|
18
|
+
switch (d.size) {
|
|
18
19
|
case "large":
|
|
19
20
|
return "btn-lg";
|
|
20
21
|
case "small":
|
|
@@ -29,7 +30,7 @@ const je = {
|
|
|
29
30
|
return "";
|
|
30
31
|
}
|
|
31
32
|
}), t = E(() => {
|
|
32
|
-
switch (
|
|
33
|
+
switch (d.type) {
|
|
33
34
|
case "neutral":
|
|
34
35
|
return "btn-neutral";
|
|
35
36
|
case "primary":
|
|
@@ -53,8 +54,8 @@ const je = {
|
|
|
53
54
|
default:
|
|
54
55
|
return "btn-neutral";
|
|
55
56
|
}
|
|
56
|
-
}),
|
|
57
|
-
switch (
|
|
57
|
+
}), o = E(() => {
|
|
58
|
+
switch (d.shape) {
|
|
58
59
|
case "square":
|
|
59
60
|
return "btn-square";
|
|
60
61
|
case "circle":
|
|
@@ -64,18 +65,26 @@ const je = {
|
|
|
64
65
|
}
|
|
65
66
|
});
|
|
66
67
|
return (l, r) => (n(), a("button", {
|
|
67
|
-
class: V([
|
|
68
|
+
class: V([
|
|
69
|
+
"btn",
|
|
70
|
+
{ "btn-outline": d.outlined },
|
|
71
|
+
{ "btn-active": d.active },
|
|
72
|
+
t.value,
|
|
73
|
+
e.value,
|
|
74
|
+
o.value
|
|
75
|
+
]),
|
|
76
|
+
disabled: d.disabled
|
|
68
77
|
}, [
|
|
69
|
-
l.loading ? (n(), a("span",
|
|
78
|
+
l.loading ? (n(), a("span", Fe)) : O("", !0),
|
|
70
79
|
T(l.$slots, "default", {}, () => [
|
|
71
80
|
r[0] || (r[0] = ke("Submit"))
|
|
72
81
|
])
|
|
73
|
-
],
|
|
82
|
+
], 10, je));
|
|
74
83
|
}
|
|
75
|
-
}),
|
|
84
|
+
}), qe = {
|
|
76
85
|
tabindex: "0",
|
|
77
86
|
class: "z-1 bg-base-100 shadow-sm p-2 rounded-sm min-w-[inherit] md:min-w-full xl:min-w-52 dropdown-content menu"
|
|
78
|
-
},
|
|
87
|
+
}, He = ["href"], mn = /* @__PURE__ */ L({
|
|
79
88
|
__name: "dropdown",
|
|
80
89
|
props: {
|
|
81
90
|
items: {},
|
|
@@ -85,7 +94,7 @@ const je = {
|
|
|
85
94
|
forceOpen: { type: Boolean, default: !1 }
|
|
86
95
|
},
|
|
87
96
|
setup(i) {
|
|
88
|
-
const
|
|
97
|
+
const d = {
|
|
89
98
|
left: "dropdown-left",
|
|
90
99
|
right: "dropdown-right",
|
|
91
100
|
bottom: "dropdown-bottom",
|
|
@@ -94,37 +103,37 @@ const je = {
|
|
|
94
103
|
start: "",
|
|
95
104
|
end: "dropdown-end"
|
|
96
105
|
}, t = i;
|
|
97
|
-
return (
|
|
98
|
-
class: V(["dropdown",
|
|
106
|
+
return (o, l) => (n(), a("div", {
|
|
107
|
+
class: V(["dropdown", d[t.position], e[t.floatPosition], { "dropdown-open": t.forceOpen }, { "dropdown-hover": t.openOnHover }])
|
|
99
108
|
}, [
|
|
100
|
-
T(
|
|
109
|
+
T(o.$slots, "default", {
|
|
101
110
|
tabindex: "0",
|
|
102
111
|
role: "button"
|
|
103
112
|
}, () => [
|
|
104
|
-
l[0] || (l[0] =
|
|
113
|
+
l[0] || (l[0] = s("div", { class: "m-1 btn" }, "Open dropdown", -1))
|
|
105
114
|
]),
|
|
106
|
-
|
|
107
|
-
(n(!0), a(B, null, A(
|
|
108
|
-
|
|
115
|
+
s("ul", qe, [
|
|
116
|
+
(n(!0), a(B, null, A(o.items, (r) => (n(), a("li", null, [
|
|
117
|
+
s("a", {
|
|
109
118
|
href: r.link
|
|
110
|
-
}, C(r.text), 9,
|
|
119
|
+
}, C(r.text), 9, He)
|
|
111
120
|
]))), 256)),
|
|
112
|
-
T(
|
|
121
|
+
T(o.$slots, "additional")
|
|
113
122
|
])
|
|
114
123
|
], 2));
|
|
115
124
|
}
|
|
116
|
-
}),
|
|
125
|
+
}), We = { class: "modal-box" }, Ke = { class: "modal-action" }, gn = /* @__PURE__ */ L({
|
|
117
126
|
__name: "modal",
|
|
118
127
|
props: {
|
|
119
128
|
position: { default: "center" },
|
|
120
129
|
withBackdrop: { type: Boolean, default: !1 }
|
|
121
130
|
},
|
|
122
131
|
setup(i) {
|
|
123
|
-
const
|
|
132
|
+
const d = i, e = {
|
|
124
133
|
top: "modal-top",
|
|
125
134
|
bottom: "modal-bottom",
|
|
126
135
|
center: "modal-middle"
|
|
127
|
-
}, t = x(null),
|
|
136
|
+
}, t = x(null), o = () => {
|
|
128
137
|
var r;
|
|
129
138
|
(r = t.value) == null || r.showModal();
|
|
130
139
|
}, l = () => {
|
|
@@ -132,30 +141,30 @@ const je = {
|
|
|
132
141
|
(r = t.value) == null || r.close();
|
|
133
142
|
};
|
|
134
143
|
return (r, y) => (n(), a(B, null, [
|
|
135
|
-
|
|
144
|
+
s("span", {
|
|
136
145
|
class: "w-fit cursor-pointer",
|
|
137
|
-
onClick:
|
|
146
|
+
onClick: o
|
|
138
147
|
}, [
|
|
139
148
|
T(r.$slots, "trigger", { role: "button" }, () => [
|
|
140
|
-
y[0] || (y[0] =
|
|
149
|
+
y[0] || (y[0] = s("button", { class: "btn" }, "Open", -1))
|
|
141
150
|
])
|
|
142
151
|
]),
|
|
143
|
-
|
|
152
|
+
s("dialog", {
|
|
144
153
|
ref_key: "dialog",
|
|
145
154
|
ref: t,
|
|
146
|
-
class: V(["modal", e[
|
|
155
|
+
class: V(["modal", e[d.position]])
|
|
147
156
|
}, [
|
|
148
|
-
|
|
157
|
+
s("div", We, [
|
|
149
158
|
T(r.$slots, "default"),
|
|
150
|
-
|
|
159
|
+
s("div", Ke, [
|
|
151
160
|
T(r.$slots, "actions"),
|
|
152
|
-
|
|
161
|
+
s("form", {
|
|
153
162
|
method: "dialog",
|
|
154
163
|
onSubmit: l,
|
|
155
164
|
class: V(r.withBackdrop ? "modal-backdrop" : "")
|
|
156
165
|
}, [
|
|
157
166
|
T(r.$slots, "close-button", {}, () => [
|
|
158
|
-
y[1] || (y[1] =
|
|
167
|
+
y[1] || (y[1] = s("button", { class: "btn" }, "Close", -1))
|
|
159
168
|
])
|
|
160
169
|
], 34)
|
|
161
170
|
])
|
|
@@ -163,21 +172,21 @@ const je = {
|
|
|
163
172
|
], 2)
|
|
164
173
|
], 64));
|
|
165
174
|
}
|
|
166
|
-
}),
|
|
175
|
+
}), Ye = { class: "flex justify-center items-center swap-on" }, Je = { class: "flex justify-center items-center swap-off" }, hn = /* @__PURE__ */ L({
|
|
167
176
|
__name: "swap",
|
|
168
177
|
props: {
|
|
169
178
|
effect: {}
|
|
170
179
|
},
|
|
171
180
|
setup(i) {
|
|
172
|
-
const
|
|
181
|
+
const d = i;
|
|
173
182
|
return (e, t) => (n(), a("label", {
|
|
174
|
-
class: V(["swap",
|
|
183
|
+
class: V(["swap", d.effect ? `swap-${e.effect}` : ""])
|
|
175
184
|
}, [
|
|
176
|
-
t[0] || (t[0] =
|
|
177
|
-
|
|
185
|
+
t[0] || (t[0] = s("input", { type: "checkbox" }, null, -1)),
|
|
186
|
+
s("div", Ye, [
|
|
178
187
|
T(e.$slots, "on")
|
|
179
188
|
]),
|
|
180
|
-
|
|
189
|
+
s("div", Je, [
|
|
181
190
|
T(e.$slots, "off")
|
|
182
191
|
])
|
|
183
192
|
], 2));
|
|
@@ -189,7 +198,7 @@ const je = {
|
|
|
189
198
|
* This source code is licensed under the ISC license.
|
|
190
199
|
* See the LICENSE file in the root directory of this source tree.
|
|
191
200
|
*/
|
|
192
|
-
const
|
|
201
|
+
const Ge = (i) => i.replace(/([a-z0-9])([A-Z])/g, "$1-$2").toLowerCase();
|
|
193
202
|
/**
|
|
194
203
|
* @license lucide-vue-next v0.468.0 - ISC
|
|
195
204
|
*
|
|
@@ -213,18 +222,18 @@ var ie = {
|
|
|
213
222
|
* This source code is licensed under the ISC license.
|
|
214
223
|
* See the LICENSE file in the root directory of this source tree.
|
|
215
224
|
*/
|
|
216
|
-
const
|
|
225
|
+
const Xe = ({ size: i, strokeWidth: d = 2, absoluteStrokeWidth: e, color: t, iconNode: o, name: l, class: r, ...y }, { slots: p }) => me(
|
|
217
226
|
"svg",
|
|
218
227
|
{
|
|
219
228
|
...ie,
|
|
220
229
|
width: i || ie.width,
|
|
221
230
|
height: i || ie.height,
|
|
222
231
|
stroke: t || ie.stroke,
|
|
223
|
-
"stroke-width": e ? Number(
|
|
224
|
-
class: ["lucide", `lucide-${
|
|
232
|
+
"stroke-width": e ? Number(d) * 24 / Number(i) : d,
|
|
233
|
+
class: ["lucide", `lucide-${Ge(l ?? "icon")}`],
|
|
225
234
|
...y
|
|
226
235
|
},
|
|
227
|
-
[...
|
|
236
|
+
[...o.map((f) => me(...f)), ...p.default ? [p.default()] : []]
|
|
228
237
|
);
|
|
229
238
|
/**
|
|
230
239
|
* @license lucide-vue-next v0.468.0 - ISC
|
|
@@ -232,11 +241,11 @@ const Ge = ({ size: i, strokeWidth: c = 2, absoluteStrokeWidth: e, color: t, ico
|
|
|
232
241
|
* This source code is licensed under the ISC license.
|
|
233
242
|
* See the LICENSE file in the root directory of this source tree.
|
|
234
243
|
*/
|
|
235
|
-
const oe = (i,
|
|
236
|
-
|
|
244
|
+
const oe = (i, d) => (e, { slots: t }) => me(
|
|
245
|
+
Xe,
|
|
237
246
|
{
|
|
238
247
|
...e,
|
|
239
|
-
iconNode:
|
|
248
|
+
iconNode: d,
|
|
240
249
|
name: i
|
|
241
250
|
},
|
|
242
251
|
t
|
|
@@ -247,7 +256,7 @@ const oe = (i, c) => (e, { slots: t }) => me(
|
|
|
247
256
|
* This source code is licensed under the ISC license.
|
|
248
257
|
* See the LICENSE file in the root directory of this source tree.
|
|
249
258
|
*/
|
|
250
|
-
const
|
|
259
|
+
const Ze = oe("CalendarIcon", [
|
|
251
260
|
["path", { d: "M8 2v4", key: "1cmpym" }],
|
|
252
261
|
["path", { d: "M16 2v4", key: "4m81vk" }],
|
|
253
262
|
["rect", { width: "18", height: "18", x: "3", y: "4", rx: "2", key: "1hopcy" }],
|
|
@@ -259,7 +268,7 @@ const Xe = oe("CalendarIcon", [
|
|
|
259
268
|
* This source code is licensed under the ISC license.
|
|
260
269
|
* See the LICENSE file in the root directory of this source tree.
|
|
261
270
|
*/
|
|
262
|
-
const
|
|
271
|
+
const Qe = oe("ChevronDownIcon", [
|
|
263
272
|
["path", { d: "m6 9 6 6 6-6", key: "qrunsl" }]
|
|
264
273
|
]);
|
|
265
274
|
/**
|
|
@@ -268,7 +277,7 @@ const Ze = oe("ChevronDownIcon", [
|
|
|
268
277
|
* This source code is licensed under the ISC license.
|
|
269
278
|
* See the LICENSE file in the root directory of this source tree.
|
|
270
279
|
*/
|
|
271
|
-
const
|
|
280
|
+
const et = oe("MoonIcon", [
|
|
272
281
|
["path", { d: "M12 3a6 6 0 0 0 9 9 9 9 0 1 1-9-9Z", key: "a7tn18" }]
|
|
273
282
|
]);
|
|
274
283
|
/**
|
|
@@ -287,7 +296,7 @@ const we = oe("SearchIcon", [
|
|
|
287
296
|
* This source code is licensed under the ISC license.
|
|
288
297
|
* See the LICENSE file in the root directory of this source tree.
|
|
289
298
|
*/
|
|
290
|
-
const
|
|
299
|
+
const tt = oe("SunIcon", [
|
|
291
300
|
["circle", { cx: "12", cy: "12", r: "4", key: "4exip2" }],
|
|
292
301
|
["path", { d: "M12 2v2", key: "tus03m" }],
|
|
293
302
|
["path", { d: "M12 20v2", key: "1lh1kg" }],
|
|
@@ -297,44 +306,44 @@ const et = oe("SunIcon", [
|
|
|
297
306
|
["path", { d: "M20 12h2", key: "1q8mjw" }],
|
|
298
307
|
["path", { d: "m6.34 17.66-1.41 1.41", key: "1m8zz5" }],
|
|
299
308
|
["path", { d: "m19.07 4.93-1.41 1.41", key: "1shlcs" }]
|
|
300
|
-
]),
|
|
309
|
+
]), lt = (i, d) => {
|
|
301
310
|
const e = x(null);
|
|
302
311
|
return Q(() => {
|
|
303
312
|
if (typeof window < "u") {
|
|
304
313
|
const t = window.localStorage.getItem(i);
|
|
305
|
-
e.value = t ? JSON.parse(t) :
|
|
314
|
+
e.value = t ? JSON.parse(t) : d;
|
|
306
315
|
}
|
|
307
316
|
}), H(e, (t) => {
|
|
308
317
|
typeof window < "u" && window.localStorage.setItem(i, JSON.stringify(t));
|
|
309
318
|
}), e;
|
|
310
|
-
},
|
|
319
|
+
}, nt = { class: "swap-rotate swap" }, at = ["true-value", "false-value"], bn = /* @__PURE__ */ L({
|
|
311
320
|
__name: "theme-controller",
|
|
312
321
|
props: {
|
|
313
322
|
lightTheme: { default: "light" },
|
|
314
323
|
darkTheme: { default: "dark" }
|
|
315
324
|
},
|
|
316
325
|
setup(i) {
|
|
317
|
-
const
|
|
318
|
-
function t(
|
|
319
|
-
typeof window < "u" && window.document && document.documentElement.setAttribute("data-theme",
|
|
326
|
+
const d = i, e = lt("theme", d.lightTheme);
|
|
327
|
+
function t(o) {
|
|
328
|
+
typeof window < "u" && window.document && document.documentElement.setAttribute("data-theme", o);
|
|
320
329
|
}
|
|
321
|
-
return Q(() => t(e.value ? e.value : "")), H(e, (
|
|
322
|
-
t(
|
|
323
|
-
}), (
|
|
324
|
-
q(
|
|
330
|
+
return Q(() => t(e.value ? e.value : "")), H(e, (o) => {
|
|
331
|
+
t(o);
|
|
332
|
+
}), (o, l) => (n(), a("label", nt, [
|
|
333
|
+
q(s("input", {
|
|
325
334
|
type: "checkbox",
|
|
326
335
|
class: "theme-controller",
|
|
327
336
|
"onUpdate:modelValue": l[0] || (l[0] = (r) => ze(e) ? e.value = r : null),
|
|
328
|
-
"true-value":
|
|
329
|
-
"false-value":
|
|
330
|
-
}, null, 8,
|
|
337
|
+
"true-value": d.lightTheme,
|
|
338
|
+
"false-value": d.darkTheme
|
|
339
|
+
}, null, 8, at), [
|
|
331
340
|
[Ae, F(e)]
|
|
332
341
|
]),
|
|
333
|
-
ae(F(
|
|
334
|
-
ae(F(
|
|
342
|
+
ae(F(tt), { class: "swap-off fill-current" }),
|
|
343
|
+
ae(F(et), { class: "swap-on fill-current" })
|
|
335
344
|
]));
|
|
336
345
|
}
|
|
337
|
-
}),
|
|
346
|
+
}), ot = ["name"], st = { class: "collapse-title font-bold text-2xl lg:text-4xl" }, rt = { class: "collapse-content" }, it = ["innerHTML"], yn = /* @__PURE__ */ L({
|
|
338
347
|
__name: "accordion",
|
|
339
348
|
props: {
|
|
340
349
|
name: {},
|
|
@@ -343,25 +352,25 @@ const et = oe("SunIcon", [
|
|
|
343
352
|
icon: {}
|
|
344
353
|
},
|
|
345
354
|
setup(i) {
|
|
346
|
-
const
|
|
347
|
-
return (e, t) => (n(!0), a(B, null, A(
|
|
355
|
+
const d = i;
|
|
356
|
+
return (e, t) => (n(!0), a(B, null, A(d.items, (o, l) => (n(), a("div", {
|
|
348
357
|
class: V(["collapse border border-base-300", [e.icon ? `collapse-${e.icon}` : "", { "join-item": e.joinItems }]]),
|
|
349
358
|
key: l
|
|
350
359
|
}, [
|
|
351
|
-
|
|
360
|
+
s("input", {
|
|
352
361
|
type: "radio",
|
|
353
362
|
name: e.name,
|
|
354
363
|
value: "true"
|
|
355
|
-
}, null, 8,
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
innerHTML:
|
|
360
|
-
}, null, 8,
|
|
364
|
+
}, null, 8, ot),
|
|
365
|
+
s("div", st, C(o.title), 1),
|
|
366
|
+
s("div", rt, [
|
|
367
|
+
s("span", {
|
|
368
|
+
innerHTML: o.content
|
|
369
|
+
}, null, 8, it)
|
|
361
370
|
])
|
|
362
371
|
], 2))), 128));
|
|
363
372
|
}
|
|
364
|
-
}),
|
|
373
|
+
}), ut = ["src"], dt = { class: "text-xl" }, wn = /* @__PURE__ */ L({
|
|
365
374
|
__name: "avatar",
|
|
366
375
|
props: {
|
|
367
376
|
image: {},
|
|
@@ -370,32 +379,32 @@ const et = oe("SunIcon", [
|
|
|
370
379
|
fullyRounded: { type: Boolean, default: !1 }
|
|
371
380
|
},
|
|
372
381
|
setup(i) {
|
|
373
|
-
const
|
|
382
|
+
const d = i, e = x(d.onlineStatus);
|
|
374
383
|
return H(
|
|
375
|
-
() =>
|
|
384
|
+
() => d.onlineStatus,
|
|
376
385
|
(t) => {
|
|
377
386
|
t && (e.value = t);
|
|
378
387
|
}
|
|
379
|
-
), (t,
|
|
388
|
+
), (t, o) => (n(), a("div", {
|
|
380
389
|
class: V(["avatar", [{ "avatar-online": e.value === "online" }, { "avatar-offline": e.value === "offline" }]])
|
|
381
390
|
}, [
|
|
382
391
|
t.image ? (n(), a("div", {
|
|
383
392
|
key: 0,
|
|
384
393
|
class: V(["rounded", [{ "rounded-full": t.fullyRounded }, { rounded: !t.fullyRounded }]])
|
|
385
394
|
}, [
|
|
386
|
-
|
|
395
|
+
s("img", {
|
|
387
396
|
src: t.image,
|
|
388
397
|
class: "w-full h-full"
|
|
389
|
-
}, null, 8,
|
|
398
|
+
}, null, 8, ut)
|
|
390
399
|
], 2)) : (n(), a("div", {
|
|
391
400
|
key: 1,
|
|
392
401
|
class: V(["flex justify-center bg-neutral p-[25%] rounded w-16 text-neutral-content text-center", [{ "rounded-full": t.fullyRounded }, { rounded: !t.fullyRounded }]])
|
|
393
402
|
}, [
|
|
394
|
-
|
|
403
|
+
s("p", dt, C(t.initials), 1)
|
|
395
404
|
], 2))
|
|
396
405
|
], 2));
|
|
397
406
|
}
|
|
398
|
-
}),
|
|
407
|
+
}), kn = /* @__PURE__ */ L({
|
|
399
408
|
__name: "badge",
|
|
400
409
|
props: {
|
|
401
410
|
color: { default: "neutral" },
|
|
@@ -403,7 +412,7 @@ const et = oe("SunIcon", [
|
|
|
403
412
|
size: { default: "medium" }
|
|
404
413
|
},
|
|
405
414
|
setup(i) {
|
|
406
|
-
const
|
|
415
|
+
const d = i, e = {
|
|
407
416
|
"extra small": "badge-xs",
|
|
408
417
|
small: "badge-sm",
|
|
409
418
|
medium: "badge-md",
|
|
@@ -419,25 +428,25 @@ const et = oe("SunIcon", [
|
|
|
419
428
|
warning: "badge-warning",
|
|
420
429
|
error: "badge-error"
|
|
421
430
|
};
|
|
422
|
-
return (
|
|
423
|
-
class: V(["badge", e[
|
|
431
|
+
return (o, l) => (n(), a("span", {
|
|
432
|
+
class: V(["badge", e[d.size], t[d.color], { "badge-outline": d.outline }])
|
|
424
433
|
}, [
|
|
425
|
-
T(
|
|
434
|
+
T(o.$slots, "default")
|
|
426
435
|
], 2));
|
|
427
436
|
}
|
|
428
|
-
}),
|
|
437
|
+
}), ct = ["src", "alt"], pt = {
|
|
429
438
|
key: 0,
|
|
430
439
|
class: "card-body"
|
|
431
|
-
},
|
|
440
|
+
}, vt = {
|
|
432
441
|
key: 0,
|
|
433
442
|
class: "group-hover:text-primary text-lg text-left cursor-pointer card-title"
|
|
434
|
-
},
|
|
443
|
+
}, ft = {
|
|
435
444
|
key: 1,
|
|
436
445
|
class: "text-left"
|
|
437
|
-
},
|
|
446
|
+
}, mt = { class: "flex-col flex-nowrap mt-auto card-actions" }, gt = {
|
|
438
447
|
key: 1,
|
|
439
448
|
class: "card-body"
|
|
440
|
-
},
|
|
449
|
+
}, $n = /* @__PURE__ */ L({
|
|
441
450
|
__name: "card",
|
|
442
451
|
props: {
|
|
443
452
|
imgUrl: { default: "" },
|
|
@@ -452,16 +461,16 @@ const et = oe("SunIcon", [
|
|
|
452
461
|
imgHeight: { default: "h-44" }
|
|
453
462
|
},
|
|
454
463
|
setup(i) {
|
|
455
|
-
const
|
|
464
|
+
const d = i, e = x(d.outlined);
|
|
456
465
|
return H(
|
|
457
|
-
() =>
|
|
466
|
+
() => d.outlined,
|
|
458
467
|
(t) => {
|
|
459
468
|
e.value = t;
|
|
460
469
|
}
|
|
461
|
-
), (t,
|
|
470
|
+
), (t, o) => (n(), a("div", {
|
|
462
471
|
class: V(["group bg-base-100 shadow-xl rounded-sm min-w-64 max-w-full h-full card card-compact", [{ "border-4 border-primary": e.value }, t.color ?? "", t.background]])
|
|
463
472
|
}, [
|
|
464
|
-
|
|
473
|
+
s("figure", null, [
|
|
465
474
|
t.imgUrl || t.imgUrl && !t.loading ? (n(), a("img", {
|
|
466
475
|
key: 0,
|
|
467
476
|
src: t.imgUrl,
|
|
@@ -472,36 +481,36 @@ const et = oe("SunIcon", [
|
|
|
472
481
|
},
|
|
473
482
|
t.imgHeight
|
|
474
483
|
]])
|
|
475
|
-
}, null, 10,
|
|
484
|
+
}, null, 10, ct)) : O("", !0),
|
|
476
485
|
t.loading && t.imgUrl ? (n(), a("div", {
|
|
477
486
|
key: 1,
|
|
478
487
|
class: V(["w-full skeleton", t.imgHeight])
|
|
479
488
|
}, null, 2)) : O("", !0)
|
|
480
489
|
]),
|
|
481
|
-
t.loading ? O("", !0) : (n(), a("div",
|
|
482
|
-
t.title ? (n(), a("h2",
|
|
490
|
+
t.loading ? O("", !0) : (n(), a("div", pt, [
|
|
491
|
+
t.title ? (n(), a("h2", vt, C(t.title), 1)) : O("", !0),
|
|
483
492
|
T(t.$slots, "details"),
|
|
484
|
-
t.description ? (n(), a("p",
|
|
485
|
-
|
|
493
|
+
t.description ? (n(), a("p", ft, C(t.description), 1)) : O("", !0),
|
|
494
|
+
s("div", mt, [
|
|
486
495
|
T(t.$slots, "actions")
|
|
487
496
|
])
|
|
488
497
|
])),
|
|
489
|
-
t.loading ? (n(), a("div",
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
498
|
+
t.loading ? (n(), a("div", gt, o[0] || (o[0] = [
|
|
499
|
+
s("div", { class: "flex flex-col gap-4 w-52" }, [
|
|
500
|
+
s("div", { class: "w-28 h-4 skeleton" }),
|
|
501
|
+
s("div", { class: "w-full h-4 skeleton" }),
|
|
502
|
+
s("div", { class: "w-full h-4 skeleton" })
|
|
494
503
|
], -1)
|
|
495
504
|
]))) : O("", !0)
|
|
496
505
|
], 2));
|
|
497
506
|
}
|
|
498
|
-
}), _e = Symbol("CarouselItemStyle"),
|
|
507
|
+
}), _e = Symbol("CarouselItemStyle"), ht = { class: "relative h-full" }, bt = {
|
|
499
508
|
key: 0,
|
|
500
509
|
class: "top-1/2 right-5 left-5 z-10 absolute flex justify-between -translate-y-1/2 transform"
|
|
501
|
-
},
|
|
510
|
+
}, yt = {
|
|
502
511
|
key: 1,
|
|
503
512
|
class: "bottom-5 z-10 absolute flex justify-center gap-2 py-2 w-full"
|
|
504
|
-
},
|
|
513
|
+
}, wt = ["onClick", "aria-label"], kt = /* @__PURE__ */ L({
|
|
505
514
|
__name: "carousel",
|
|
506
515
|
props: {
|
|
507
516
|
showIndicators: {
|
|
@@ -538,27 +547,27 @@ const et = oe("SunIcon", [
|
|
|
538
547
|
validator: (i) => i >= 0
|
|
539
548
|
}
|
|
540
549
|
},
|
|
541
|
-
setup(i, { expose:
|
|
542
|
-
const e = i, t = x(e.initialSlide),
|
|
550
|
+
setup(i, { expose: d }) {
|
|
551
|
+
const e = i, t = x(e.initialSlide), o = x(null), l = x(!1), r = x(0), y = E(() => ({
|
|
543
552
|
width: `calc((100% - ${e.slidesPerView > 1 ? (e.slidesPerView - 1) * e.gap : 0}px) / ${e.slidesPerView})`
|
|
544
553
|
}));
|
|
545
554
|
Pe(_e, y);
|
|
546
555
|
const p = () => {
|
|
547
|
-
|
|
556
|
+
o.value ? r.value = o.value.children.length : r.value = 0;
|
|
548
557
|
}, f = async (k) => {
|
|
549
|
-
if (!
|
|
550
|
-
const _ = (k % r.value + r.value) % r.value, M =
|
|
558
|
+
if (!o.value || e.slidesPerView <= 0 || l.value || (p(), r.value === 0)) return;
|
|
559
|
+
const _ = (k % r.value + r.value) % r.value, M = o.value, z = e.sliderOrientation === "vertical" ? (M.offsetHeight - (e.slidesPerView - 1) * e.gap) / e.slidesPerView : (M.offsetWidth - (e.slidesPerView - 1) * e.gap) / e.slidesPerView;
|
|
551
560
|
if (z <= 0) return;
|
|
552
|
-
const N = z + e.gap, K = _ * N, W = e.sliderOrientation === "vertical" ? M.scrollHeight - M.offsetHeight : M.scrollWidth - M.offsetWidth,
|
|
561
|
+
const N = z + e.gap, K = _ * N, W = e.sliderOrientation === "vertical" ? M.scrollHeight - M.offsetHeight : M.scrollWidth - M.offsetWidth, c = Math.max(0, Math.min(K, W + 0.5));
|
|
553
562
|
l.value = !0, M.style.scrollBehavior = "auto";
|
|
554
|
-
const w = e.sliderOrientation === "vertical" ? M.scrollTop : M.scrollLeft, S =
|
|
563
|
+
const w = e.sliderOrientation === "vertical" ? M.scrollTop : M.scrollLeft, S = c - w;
|
|
555
564
|
if (Math.abs(S) < 1) {
|
|
556
565
|
l.value = !1, t.value = _;
|
|
557
566
|
return;
|
|
558
567
|
}
|
|
559
|
-
const
|
|
560
|
-
const D = I -
|
|
561
|
-
e.sliderOrientation === "vertical" ? M.scrollTop = J : M.scrollLeft = J, P < 1 ? requestAnimationFrame(g) : (e.sliderOrientation === "vertical" ? M.scrollTop =
|
|
568
|
+
const b = performance.now(), g = (I) => {
|
|
569
|
+
const D = I - b, P = Math.min(1, D / e.slideDuration), Y = P < 0.5 ? 4 * P * P * P : 1 - Math.pow(-2 * P + 2, 3) / 2, J = w + S * Y;
|
|
570
|
+
e.sliderOrientation === "vertical" ? M.scrollTop = J : M.scrollLeft = J, P < 1 ? requestAnimationFrame(g) : (e.sliderOrientation === "vertical" ? M.scrollTop = c : M.scrollLeft = c, t.value = _, l.value = !1);
|
|
562
571
|
};
|
|
563
572
|
requestAnimationFrame(g);
|
|
564
573
|
}, $ = () => {
|
|
@@ -568,10 +577,10 @@ const et = oe("SunIcon", [
|
|
|
568
577
|
}, R = (k) => {
|
|
569
578
|
f(k);
|
|
570
579
|
}, v = () => {
|
|
571
|
-
if (!
|
|
572
|
-
const k =
|
|
580
|
+
if (!o.value || e.slidesPerView <= 0 || (p(), r.value === 0)) return;
|
|
581
|
+
const k = o.value, _ = e.sliderOrientation === "vertical" ? k.offsetHeight : k.offsetWidth, M = e.slidesPerView > 1 ? (e.slidesPerView - 1) * e.gap : 0, z = (_ - M) / e.slidesPerView;
|
|
573
582
|
if (z <= 0) return;
|
|
574
|
-
const N = Math.max(0, r.value - e.slidesPerView), K = Math.min(Math.max(0, e.initialSlide), N), W = K * (z + e.gap),
|
|
583
|
+
const N = Math.max(0, r.value - e.slidesPerView), K = Math.min(Math.max(0, e.initialSlide), N), W = K * (z + e.gap), c = e.sliderOrientation === "vertical" ? k.scrollHeight - k.offsetHeight : k.scrollWidth - k.offsetWidth, w = Math.max(0, Math.min(W, c + 0.5));
|
|
575
584
|
e.sliderOrientation === "vertical" ? k.scrollTo({ top: w, behavior: "auto" }) : k.scrollTo({ left: w, behavior: "auto" }), t.value = K;
|
|
576
585
|
};
|
|
577
586
|
return Q(() => {
|
|
@@ -588,86 +597,86 @@ const et = oe("SunIcon", [
|
|
|
588
597
|
e.slideDuration = 0, f(_), e.slideDuration = M;
|
|
589
598
|
});
|
|
590
599
|
});
|
|
591
|
-
}),
|
|
592
|
-
|
|
600
|
+
}), d({ scrollToSlide: f }), (k, _) => (n(), a("div", ht, [
|
|
601
|
+
s("div", {
|
|
593
602
|
ref_key: "carouselContainer",
|
|
594
|
-
ref:
|
|
603
|
+
ref: o,
|
|
595
604
|
class: V(["rounded w-full h-full overflow-x-scroll scroll-smooth carousel", [{ "carousel-horizontal md:snap-none": i.sliderOrientation == "horizontal" }, { "carousel-vertical": i.sliderOrientation == "vertical" }]]),
|
|
596
605
|
style: de({ gap: `${i.gap}px` })
|
|
597
606
|
}, [
|
|
598
607
|
T(k.$slots, "default", {}, void 0, !0)
|
|
599
608
|
], 6),
|
|
600
|
-
i.showNavigationButtons ? (n(), a("div",
|
|
601
|
-
|
|
609
|
+
i.showNavigationButtons ? (n(), a("div", bt, [
|
|
610
|
+
s("div", {
|
|
602
611
|
onClick: U,
|
|
603
612
|
role: "button",
|
|
604
613
|
"aria-label": "Previous Slide"
|
|
605
614
|
}, [
|
|
606
615
|
T(k.$slots, "prevButton", {}, () => [
|
|
607
|
-
_[0] || (_[0] =
|
|
616
|
+
_[0] || (_[0] = s("button", {
|
|
608
617
|
class: "btn btn-circle",
|
|
609
618
|
tabindex: "-1"
|
|
610
619
|
}, "❮", -1))
|
|
611
620
|
], !0)
|
|
612
621
|
]),
|
|
613
|
-
|
|
622
|
+
s("div", {
|
|
614
623
|
onClick: $,
|
|
615
624
|
role: "button",
|
|
616
625
|
"aria-label": "Next Slide"
|
|
617
626
|
}, [
|
|
618
627
|
T(k.$slots, "nextButton", {}, () => [
|
|
619
|
-
_[1] || (_[1] =
|
|
628
|
+
_[1] || (_[1] = s("button", {
|
|
620
629
|
class: "btn btn-circle",
|
|
621
630
|
tabindex: "-1"
|
|
622
631
|
}, "❯", -1))
|
|
623
632
|
], !0)
|
|
624
633
|
])
|
|
625
634
|
])) : O("", !0),
|
|
626
|
-
i.showIndicators ? (n(), a("div",
|
|
635
|
+
i.showIndicators ? (n(), a("div", yt, [
|
|
627
636
|
(n(!0), a(B, null, A(r.value, (M, z) => (n(), a("button", {
|
|
628
637
|
key: `dot-${z}`,
|
|
629
638
|
onClick: (N) => R(z),
|
|
630
639
|
class: V(["btn btn-circle btn-xs", { "btn-active": z === t.value }]),
|
|
631
640
|
"aria-label": `Go to slide ${z + 1}`
|
|
632
|
-
}, null, 10,
|
|
641
|
+
}, null, 10, wt))), 128))
|
|
633
642
|
])) : O("", !0)
|
|
634
643
|
]));
|
|
635
644
|
}
|
|
636
|
-
}), te = (i,
|
|
645
|
+
}), te = (i, d) => {
|
|
637
646
|
const e = i.__vccOpts || i;
|
|
638
|
-
for (const [t,
|
|
639
|
-
e[t] =
|
|
647
|
+
for (const [t, o] of d)
|
|
648
|
+
e[t] = o;
|
|
640
649
|
return e;
|
|
641
|
-
},
|
|
650
|
+
}, _n = /* @__PURE__ */ te(kt, [["__scopeId", "data-v-db55a6a5"]]), $t = /* @__PURE__ */ L({
|
|
642
651
|
__name: "carouselItem",
|
|
643
652
|
setup(i) {
|
|
644
|
-
const
|
|
653
|
+
const d = Ee(_e, x({}));
|
|
645
654
|
return (e, t) => (n(), a("div", {
|
|
646
655
|
class: "w-full h-full carousel-item",
|
|
647
|
-
style: de(F(
|
|
656
|
+
style: de(F(d))
|
|
648
657
|
}, [
|
|
649
658
|
T(e.$slots, "default", {}, void 0, !0)
|
|
650
659
|
], 4));
|
|
651
660
|
}
|
|
652
|
-
}),
|
|
661
|
+
}), Sn = /* @__PURE__ */ te($t, [["__scopeId", "data-v-507384bc"]]), _t = { class: "flex gap-4 bg-base-100 w-full tabs tabs-boxed" }, St = ["onClick"], xt = {
|
|
653
662
|
key: 0,
|
|
654
663
|
class: "inline-component-wrapper flex flex-grow justify-center items-center w-full h-full"
|
|
655
|
-
},
|
|
664
|
+
}, Ct = {
|
|
656
665
|
key: 1,
|
|
657
666
|
class: "flex flex-col"
|
|
658
|
-
},
|
|
667
|
+
}, Dt = { class: "text-sm" }, Mt = {
|
|
659
668
|
key: 0,
|
|
660
669
|
class: "opacity-75 overflow-hidden text-xs truncate ..."
|
|
661
|
-
},
|
|
670
|
+
}, It = {
|
|
662
671
|
key: 1,
|
|
663
672
|
class: "hidden md:block opacity-35 overflow-hidden text-xs truncate ..."
|
|
664
|
-
},
|
|
673
|
+
}, Tt = { class: "hidden" }, Vt = ["id"], Bt = { class: "modal-box" }, Ot = { class: "font-bold text-lg" }, zt = ["name", "checked"], At = { class: "collapse-title flex justify-between items-center pr-4 w-full font-medium text-xl" }, Pt = {
|
|
665
674
|
key: 0,
|
|
666
675
|
class: "opacity-75 overflow-hidden text-sm truncate ..."
|
|
667
|
-
},
|
|
676
|
+
}, Et = {
|
|
668
677
|
key: 1,
|
|
669
678
|
class: "opacity-35 text-sm"
|
|
670
|
-
},
|
|
679
|
+
}, Lt = { class: "collapse-content flex place-content-center p-0" }, Ut = /* @__PURE__ */ L({
|
|
671
680
|
__name: "advancedSearch",
|
|
672
681
|
props: {
|
|
673
682
|
searchOptions: {},
|
|
@@ -676,9 +685,9 @@ const et = oe("SunIcon", [
|
|
|
676
685
|
value: {}
|
|
677
686
|
},
|
|
678
687
|
emits: ["search", "update:search-data"],
|
|
679
|
-
setup(i, { emit:
|
|
680
|
-
const e = i, t =
|
|
681
|
-
datetime: ce(() => Promise.resolve().then(() =>
|
|
688
|
+
setup(i, { emit: d }) {
|
|
689
|
+
const e = i, t = d, o = e.id ?? `advancedSearch-${Le()}`, l = x(null), r = x(null), y = {
|
|
690
|
+
datetime: ce(() => Promise.resolve().then(() => cl)),
|
|
682
691
|
"standard-select": ce(() => import("./select-Cz4vf_YE.js")),
|
|
683
692
|
// Add other components here when you create them:
|
|
684
693
|
// 'custom-range': defineAsyncComponent(() => import('./CustomRange.vue')),
|
|
@@ -689,53 +698,53 @@ const et = oe("SunIcon", [
|
|
|
689
698
|
left: "0px",
|
|
690
699
|
top: "0px",
|
|
691
700
|
transform: "translateX(0%)"
|
|
692
|
-
}), $ = x(null), U = (
|
|
701
|
+
}), $ = x(null), U = (c) => {
|
|
693
702
|
var w;
|
|
694
|
-
if (
|
|
703
|
+
if (c.value === void 0 || c.value === null || c.value === "")
|
|
695
704
|
return "";
|
|
696
|
-
switch (
|
|
705
|
+
switch (c.type) {
|
|
697
706
|
case "datetime":
|
|
698
|
-
if (typeof
|
|
707
|
+
if (typeof c.value == "string")
|
|
699
708
|
try {
|
|
700
|
-
const S = new Date(
|
|
709
|
+
const S = new Date(c.value);
|
|
701
710
|
if (!isNaN(S.getTime()))
|
|
702
711
|
return S.toLocaleString();
|
|
703
712
|
} catch {
|
|
704
713
|
}
|
|
705
|
-
else if (
|
|
714
|
+
else if (c.range && typeof c.value == "object" && c.value !== null && "start" in c.value && "end" in c.value)
|
|
706
715
|
try {
|
|
707
|
-
const S = new Date(
|
|
708
|
-
if (!isNaN(S.getTime()) && !isNaN(
|
|
709
|
-
return `${S.toLocaleDateString()} - ${
|
|
716
|
+
const S = new Date(c.value.start), b = new Date(c.value.end);
|
|
717
|
+
if (!isNaN(S.getTime()) && !isNaN(b.getTime()))
|
|
718
|
+
return `${S.toLocaleDateString()} - ${b.toLocaleDateString()}`;
|
|
710
719
|
} catch {
|
|
711
720
|
}
|
|
712
721
|
break;
|
|
713
722
|
case "custom-range":
|
|
714
|
-
if (typeof
|
|
715
|
-
return `${
|
|
723
|
+
if (typeof c.value == "object" && c.value !== null && "start" in c.value && "end" in c.value)
|
|
724
|
+
return `${c.value.start} - ${c.value.end}`;
|
|
716
725
|
break;
|
|
717
726
|
case "custom-number":
|
|
718
|
-
if (typeof
|
|
719
|
-
return
|
|
727
|
+
if (typeof c.value == "number")
|
|
728
|
+
return c.value.toString();
|
|
720
729
|
break;
|
|
721
730
|
case "standard-select":
|
|
722
731
|
case "custom-select":
|
|
723
|
-
if ((w =
|
|
724
|
-
const S =
|
|
725
|
-
(
|
|
732
|
+
if ((w = c.props) != null && w.options && Array.isArray(c.props.options)) {
|
|
733
|
+
const S = c.props.options.find(
|
|
734
|
+
(b) => b.value === c.value
|
|
726
735
|
);
|
|
727
736
|
if (S)
|
|
728
737
|
return S.text;
|
|
729
738
|
}
|
|
730
|
-
return String(
|
|
739
|
+
return String(c.value);
|
|
731
740
|
case "custom-text":
|
|
732
|
-
if (typeof
|
|
733
|
-
return
|
|
741
|
+
if (typeof c.value == "string")
|
|
742
|
+
return c.value;
|
|
734
743
|
break;
|
|
735
744
|
}
|
|
736
|
-
return String(
|
|
745
|
+
return String(c.value);
|
|
737
746
|
};
|
|
738
|
-
function R(
|
|
747
|
+
function R(c) {
|
|
739
748
|
var g, I;
|
|
740
749
|
const w = (g = l.value) == null ? void 0 : g.name;
|
|
741
750
|
if (!w) {
|
|
@@ -744,48 +753,48 @@ const et = oe("SunIcon", [
|
|
|
744
753
|
}
|
|
745
754
|
const S = (I = e.searchOptions.find(
|
|
746
755
|
(D) => (D == null ? void 0 : D.category) === e.currentCategory
|
|
747
|
-
)) == null ? void 0 : I.tabs,
|
|
756
|
+
)) == null ? void 0 : I.tabs, b = S == null ? void 0 : S.find(
|
|
748
757
|
(D) => D.name === w
|
|
749
758
|
);
|
|
750
|
-
|
|
751
|
-
tab:
|
|
752
|
-
data:
|
|
759
|
+
b ? (b.value = c, t("update:search-data", {
|
|
760
|
+
tab: b.name,
|
|
761
|
+
data: c
|
|
753
762
|
})) : console.error(
|
|
754
763
|
`Tab with name "${w}" not found in current category.`
|
|
755
764
|
);
|
|
756
765
|
}
|
|
757
|
-
function v(
|
|
758
|
-
R(
|
|
766
|
+
function v(c) {
|
|
767
|
+
R(c);
|
|
759
768
|
}
|
|
760
769
|
function k() {
|
|
761
770
|
t("search");
|
|
762
771
|
}
|
|
763
|
-
async function _(
|
|
764
|
-
var
|
|
765
|
-
const w = document.getElementById(`advancedSearchMobile-${
|
|
766
|
-
((
|
|
772
|
+
async function _(c) {
|
|
773
|
+
var b;
|
|
774
|
+
const w = document.getElementById(`advancedSearchMobile-${o}`), S = w && w.contains(c.target);
|
|
775
|
+
((b = l.value) == null ? void 0 : b.displayMode) === "popup" && $.value && !$.value.contains(c.target) && !S && (await pe(), l.value = null);
|
|
767
776
|
}
|
|
768
777
|
async function M() {
|
|
769
778
|
if (typeof window < "u" && window.innerWidth <= 768) {
|
|
770
|
-
const
|
|
771
|
-
`advancedSearchMobile-${
|
|
779
|
+
const c = document.getElementById(
|
|
780
|
+
`advancedSearchMobile-${o}`
|
|
772
781
|
);
|
|
773
|
-
|
|
774
|
-
`Mobile modal element not found. Ensure it exists with id="advancedSearchMobile-${
|
|
782
|
+
c ? (l.value = null, c.showModal()) : console.warn(
|
|
783
|
+
`Mobile modal element not found. Ensure it exists with id="advancedSearchMobile-${o}".`
|
|
775
784
|
);
|
|
776
785
|
}
|
|
777
786
|
}
|
|
778
|
-
async function z(
|
|
779
|
-
var S,
|
|
787
|
+
async function z(c) {
|
|
788
|
+
var S, b, g;
|
|
780
789
|
if (typeof window < "u" && window.innerWidth <= 768) {
|
|
781
790
|
M();
|
|
782
791
|
return;
|
|
783
792
|
}
|
|
784
|
-
const w =
|
|
785
|
-
if (((S = l.value) == null ? void 0 : S.name) ===
|
|
793
|
+
const w = c.displayMode ?? "popup";
|
|
794
|
+
if (((S = l.value) == null ? void 0 : S.name) === c.name && ((b = l.value) == null ? void 0 : b.displayMode) === w)
|
|
786
795
|
l.value = null;
|
|
787
|
-
else if (l.value = { ...
|
|
788
|
-
const I = p.value[
|
|
796
|
+
else if (l.value = { ...c, displayMode: w }, await pe(), ((g = l.value) == null ? void 0 : g.displayMode) === "popup") {
|
|
797
|
+
const I = p.value[c.name];
|
|
789
798
|
if (I && $.value) {
|
|
790
799
|
const D = I.getBoundingClientRect(), P = $.value.getBoundingClientRect(), Y = D.bottom - P.top, J = D.left + D.width / 2 - P.left;
|
|
791
800
|
f.value = {
|
|
@@ -798,12 +807,12 @@ const et = oe("SunIcon", [
|
|
|
798
807
|
} else
|
|
799
808
|
console.error(
|
|
800
809
|
"Tab element or search container not found for positioning:",
|
|
801
|
-
|
|
810
|
+
c.name
|
|
802
811
|
);
|
|
803
812
|
}
|
|
804
813
|
}
|
|
805
|
-
const N = (
|
|
806
|
-
const w =
|
|
814
|
+
const N = (c) => {
|
|
815
|
+
const w = c.relatedTarget;
|
|
807
816
|
setTimeout(() => {
|
|
808
817
|
var S;
|
|
809
818
|
((S = l.value) == null ? void 0 : S.displayMode) === "inline" && $.value && (!w || !$.value.contains(w)) ? (console.log("Blur detected outside container, closing inline view."), l.value = null) : console.log(
|
|
@@ -813,27 +822,27 @@ const et = oe("SunIcon", [
|
|
|
813
822
|
}, K = () => {
|
|
814
823
|
console.log("Enter key pressed on inline component, closing inline view."), l.value = null;
|
|
815
824
|
};
|
|
816
|
-
H(r, (
|
|
825
|
+
H(r, (c) => {
|
|
817
826
|
var w;
|
|
818
827
|
console.log(
|
|
819
828
|
"advanced-search: inlineComponentRef changed. New Value:",
|
|
820
|
-
|
|
821
|
-
), console.log("advanced-search: activeTab.value:", l.value),
|
|
829
|
+
c
|
|
830
|
+
), console.log("advanced-search: activeTab.value:", l.value), c && ((w = l.value) == null ? void 0 : w.displayMode) === "inline" ? (console.log(
|
|
822
831
|
"advanced-search: Inline component ref is available and active tab is inline. Attempting to focus child input..."
|
|
823
832
|
), pe(() => {
|
|
824
833
|
console.log(
|
|
825
834
|
"advanced-search: Inside nextTick. Attempting to call child's focus method..."
|
|
826
|
-
), console.log("advanced-search: Type of newValue:", typeof
|
|
835
|
+
), console.log("advanced-search: Type of newValue:", typeof c), console.log(
|
|
827
836
|
"advanced-search: Does newValue have focusInput?",
|
|
828
|
-
typeof
|
|
829
|
-
),
|
|
837
|
+
typeof c.focusInput == "function"
|
|
838
|
+
), c && typeof c.focusInput == "function" ? (console.log(
|
|
830
839
|
"advanced-search: Calling exposed focusInput() method on child instance."
|
|
831
|
-
),
|
|
840
|
+
), c.focusInput()) : console.warn(
|
|
832
841
|
'advanced-search: Child inline component instance does not expose a "focusInput" method or is not ready.',
|
|
833
|
-
|
|
842
|
+
c
|
|
834
843
|
);
|
|
835
844
|
})) : console.log(
|
|
836
|
-
|
|
845
|
+
c ? "advanced-search: inlineComponentRef available, but active tab is not inline." : "advanced-search: inlineComponentRef is now null (component likely unmounted)."
|
|
837
846
|
);
|
|
838
847
|
}), Q(() => {
|
|
839
848
|
document.addEventListener("click", _), window.addEventListener("resize", W);
|
|
@@ -841,31 +850,31 @@ const et = oe("SunIcon", [
|
|
|
841
850
|
document.removeEventListener("click", _), window.removeEventListener("resize", W);
|
|
842
851
|
});
|
|
843
852
|
const W = () => {
|
|
844
|
-
var
|
|
853
|
+
var c, w;
|
|
845
854
|
if (typeof window < "u") {
|
|
846
|
-
const S = window.innerWidth <= 768,
|
|
847
|
-
!S && (((
|
|
855
|
+
const S = window.innerWidth <= 768, b = l.value !== null && (l.value.displayMode === "popup" || l.value.displayMode === "inline") && window.innerWidth > 768;
|
|
856
|
+
!S && (((c = l.value) == null ? void 0 : c.displayMode) === "popup" || ((w = l.value) == null ? void 0 : w.displayMode) === "inline") && window.innerWidth <= 768 && (console.log("Resizing to mobile, closing active tab."), l.value = null), S && !b && l.value !== null && (console.log(
|
|
848
857
|
"Resizing to desktop from potential mobile active state, closing active tab."
|
|
849
858
|
), l.value = null);
|
|
850
859
|
const g = document.getElementById(
|
|
851
|
-
`advancedSearchMobile-${
|
|
860
|
+
`advancedSearchMobile-${o}`
|
|
852
861
|
);
|
|
853
862
|
g != null && g.open && !S && (console.log("Modal is open on desktop, closing modal and active tab."), g.close(), l.value = null);
|
|
854
863
|
}
|
|
855
864
|
};
|
|
856
|
-
return (
|
|
857
|
-
var S,
|
|
865
|
+
return (c, w) => {
|
|
866
|
+
var S, b;
|
|
858
867
|
return n(), a(B, null, [
|
|
859
|
-
|
|
868
|
+
s("div", {
|
|
860
869
|
ref_key: "searchContainer",
|
|
861
870
|
ref: $,
|
|
862
871
|
class: "w-full"
|
|
863
872
|
}, [
|
|
864
|
-
|
|
873
|
+
s("div", {
|
|
865
874
|
class: "group/search relative flex place-items-center shadow-md p-2 border-2 border-base-300/25 rounded-sm w-full transition-all cursor-pointer md:cursor-auto",
|
|
866
875
|
onClick: M
|
|
867
876
|
}, [
|
|
868
|
-
|
|
877
|
+
s("div", _t, [
|
|
869
878
|
(n(!0), a(B, null, A(((S = e.searchOptions.find(
|
|
870
879
|
(g) => g.category === e.currentCategory
|
|
871
880
|
)) == null ? void 0 : S.tabs) || [], (g, I) => {
|
|
@@ -881,7 +890,7 @@ const et = oe("SunIcon", [
|
|
|
881
890
|
ref_for: !0,
|
|
882
891
|
ref: (G) => p.value[g.name] = G
|
|
883
892
|
}, [
|
|
884
|
-
((J = l.value) == null ? void 0 : J.name) === g.name && ((se = l.value) == null ? void 0 : se.displayMode) === "inline" ? (n(), a("div",
|
|
893
|
+
((J = l.value) == null ? void 0 : J.name) === g.name && ((se = l.value) == null ? void 0 : se.displayMode) === "inline" ? (n(), a("div", xt, [
|
|
885
894
|
(n(), ue(ve(y[l.value.type]), fe({ ref_for: !0 }, l.value.props || {}, {
|
|
886
895
|
modelValue: l.value.value,
|
|
887
896
|
onUpdated: w[0] || (w[0] = (G) => v(G)),
|
|
@@ -892,11 +901,11 @@ const et = oe("SunIcon", [
|
|
|
892
901
|
ref_key: "inlineComponentRef",
|
|
893
902
|
ref: r
|
|
894
903
|
}), null, 16, ["modelValue", "onKeydown"]))
|
|
895
|
-
])) : (n(), a("div",
|
|
896
|
-
|
|
897
|
-
g.value !== void 0 && g.value !== null && g.value !== "" ? (n(), a("p",
|
|
904
|
+
])) : (n(), a("div", Ct, [
|
|
905
|
+
s("p", Dt, C(g.name), 1),
|
|
906
|
+
g.value !== void 0 && g.value !== null && g.value !== "" ? (n(), a("p", Mt, C(U(g)), 1)) : (n(), a("p", It, C(g.description), 1))
|
|
898
907
|
]))
|
|
899
|
-
], 10,
|
|
908
|
+
], 10, St);
|
|
900
909
|
}), 128))
|
|
901
910
|
]),
|
|
902
911
|
l.value && l.value.displayMode === "popup" ? (n(), a("div", {
|
|
@@ -910,7 +919,7 @@ const et = oe("SunIcon", [
|
|
|
910
919
|
"onUpdate:modelValue": w[3] || (w[3] = (g) => R(g))
|
|
911
920
|
}), null, 16, ["modelValue"]))
|
|
912
921
|
], 4)) : O("", !0),
|
|
913
|
-
|
|
922
|
+
s("button", {
|
|
914
923
|
title: "search",
|
|
915
924
|
type: "submit",
|
|
916
925
|
class: "ml-1 btn btn-primary btn-square",
|
|
@@ -922,8 +931,8 @@ const et = oe("SunIcon", [
|
|
|
922
931
|
})
|
|
923
932
|
])
|
|
924
933
|
]),
|
|
925
|
-
|
|
926
|
-
|
|
934
|
+
s("div", Tt, [
|
|
935
|
+
s("button", {
|
|
927
936
|
title: "search",
|
|
928
937
|
onClick: w[4] || (w[4] = () => {
|
|
929
938
|
})
|
|
@@ -935,31 +944,31 @@ const et = oe("SunIcon", [
|
|
|
935
944
|
])
|
|
936
945
|
])
|
|
937
946
|
], 512),
|
|
938
|
-
|
|
939
|
-
id: `advancedSearchMobile-${F(
|
|
947
|
+
s("dialog", {
|
|
948
|
+
id: `advancedSearchMobile-${F(o)}`,
|
|
940
949
|
class: "modal"
|
|
941
950
|
}, [
|
|
942
|
-
|
|
943
|
-
T(
|
|
944
|
-
|
|
951
|
+
s("div", Bt, [
|
|
952
|
+
T(c.$slots, "additionalForMobile", {}, () => [
|
|
953
|
+
s("h3", Ot, C(c.currentCategory), 1)
|
|
945
954
|
], !0),
|
|
946
|
-
(n(!0), a(B, null, A(((
|
|
955
|
+
(n(!0), a(B, null, A(((b = e.searchOptions.find(
|
|
947
956
|
(g) => g.category === e.currentCategory
|
|
948
|
-
)) == null ? void 0 :
|
|
957
|
+
)) == null ? void 0 : b.tabs) || [], (g, I) => (n(), a("div", {
|
|
949
958
|
class: "collapse bg-base-200 my-4",
|
|
950
959
|
key: g.name
|
|
951
960
|
}, [
|
|
952
|
-
|
|
961
|
+
s("input", {
|
|
953
962
|
type: "radio",
|
|
954
|
-
name: `accordion-${F(
|
|
963
|
+
name: `accordion-${F(o)}`,
|
|
955
964
|
checked: I === 0
|
|
956
|
-
}, null, 8,
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
g.value !== void 0 && g.value !== null && g.value !== "" ? (n(), a("div",
|
|
965
|
+
}, null, 8, zt),
|
|
966
|
+
s("div", At, [
|
|
967
|
+
s("div", null, C(g.name), 1),
|
|
968
|
+
g.value !== void 0 && g.value !== null && g.value !== "" ? (n(), a("div", Pt, C(U(g)), 1)) : (n(), a("div", Et, C(g.description), 1))
|
|
960
969
|
]),
|
|
961
|
-
|
|
962
|
-
w[7] || (w[7] =
|
|
970
|
+
s("div", Lt, [
|
|
971
|
+
w[7] || (w[7] = s("br", null, null, -1)),
|
|
963
972
|
(n(), ue(ve(y[g.type]), fe({ ref_for: !0 }, g.props || {}, {
|
|
964
973
|
modelValue: g.value,
|
|
965
974
|
onUpdated: w[5] || (w[5] = (D) => R(D)),
|
|
@@ -967,44 +976,44 @@ const et = oe("SunIcon", [
|
|
|
967
976
|
}), null, 16, ["modelValue"]))
|
|
968
977
|
])
|
|
969
978
|
]))), 128)),
|
|
970
|
-
|
|
971
|
-
|
|
972
|
-
|
|
979
|
+
s("div", { class: "modal-action" }, [
|
|
980
|
+
s("form", { method: "dialog" }, [
|
|
981
|
+
s("button", {
|
|
973
982
|
class: "btn btn-primary",
|
|
974
983
|
onClick: k
|
|
975
984
|
}, " Close and Search ")
|
|
976
985
|
])
|
|
977
986
|
])
|
|
978
987
|
])
|
|
979
|
-
], 8,
|
|
988
|
+
], 8, Vt)
|
|
980
989
|
], 64);
|
|
981
990
|
};
|
|
982
991
|
}
|
|
983
|
-
}),
|
|
992
|
+
}), xn = /* @__PURE__ */ te(Ut, [["__scopeId", "data-v-2a095d4c"]]), Rt = ["placeholder", "value", "id", "disabled"], Nt = ["disabled"], jt = ["id"], Ft = {
|
|
984
993
|
key: 0,
|
|
985
994
|
class: "flex justify-between items-center place-content-center mb-4"
|
|
986
|
-
},
|
|
995
|
+
}, qt = ["disabled"], Ht = ["value"], Wt = ["value"], Kt = {
|
|
987
996
|
key: 1,
|
|
988
997
|
class: "gap-2 grid grid-cols-7"
|
|
989
|
-
},
|
|
998
|
+
}, Yt = ["onClick"], Jt = {
|
|
990
999
|
key: 2,
|
|
991
1000
|
class: "mt-4 lg:w-80"
|
|
992
|
-
},
|
|
1001
|
+
}, Gt = {
|
|
993
1002
|
key: 0,
|
|
994
1003
|
class: "mb-2 font-bold text-lg"
|
|
995
|
-
},
|
|
1004
|
+
}, Xt = { key: 1 }, Zt = {
|
|
996
1005
|
key: 1,
|
|
997
1006
|
class: "flex gap-4"
|
|
998
|
-
},
|
|
1007
|
+
}, Qt = ["value"], el = ["value"], tl = {
|
|
999
1008
|
key: 2,
|
|
1000
1009
|
class: "flex flex-col gap-4"
|
|
1001
|
-
},
|
|
1010
|
+
}, ll = {
|
|
1002
1011
|
key: 1,
|
|
1003
1012
|
class: "flex gap-2"
|
|
1004
|
-
},
|
|
1013
|
+
}, nl = ["value"], al = ["value"], ol = {
|
|
1005
1014
|
key: 1,
|
|
1006
1015
|
class: "flex gap-2"
|
|
1007
|
-
},
|
|
1016
|
+
}, sl = ["value"], rl = ["value"], il = { class: "flex gap-2 mt-4" }, ul = {
|
|
1008
1017
|
__name: "datetimePicker",
|
|
1009
1018
|
props: {
|
|
1010
1019
|
mode: {
|
|
@@ -1032,10 +1041,14 @@ const et = oe("SunIcon", [
|
|
|
1032
1041
|
initialDate: {
|
|
1033
1042
|
type: Object,
|
|
1034
1043
|
default: () => null
|
|
1044
|
+
},
|
|
1045
|
+
disabled: {
|
|
1046
|
+
type: Boolean,
|
|
1047
|
+
default: !1
|
|
1035
1048
|
}
|
|
1036
1049
|
},
|
|
1037
1050
|
emits: ["updated"],
|
|
1038
|
-
setup(i, { emit:
|
|
1051
|
+
setup(i, { emit: d }) {
|
|
1039
1052
|
const e = i;
|
|
1040
1053
|
H(
|
|
1041
1054
|
() => e.range,
|
|
@@ -1043,7 +1056,7 @@ const et = oe("SunIcon", [
|
|
|
1043
1056
|
m ? (l.value = { start: null, end: null }, r.value = { start: null, end: null }) : (l.value = null, r.value = null);
|
|
1044
1057
|
}
|
|
1045
1058
|
);
|
|
1046
|
-
const t =
|
|
1059
|
+
const t = d, o = x(!1), l = x(e.range ? { start: null, end: null } : null), r = x(e.range ? { start: null, end: null } : null), y = x(
|
|
1047
1060
|
(/* @__PURE__ */ new Date()).toLocaleString("default", { month: "long" })
|
|
1048
1061
|
), p = x((/* @__PURE__ */ new Date()).getFullYear()), f = x(e.range ? { start: 0, end: 0 } : 0), $ = x(e.range ? { start: 0, end: 0 } : 0), U = x(null), R = E(() => `${e.id}-input`), v = E(() => `${e.id}-popup`), k = E(
|
|
1049
1062
|
() => e.mode === "date" || e.mode === "datetime"
|
|
@@ -1053,21 +1066,21 @@ const et = oe("SunIcon", [
|
|
|
1053
1066
|
E(
|
|
1054
1067
|
() => new Date(p.value, M.value)
|
|
1055
1068
|
);
|
|
1056
|
-
const M = E(() =>
|
|
1069
|
+
const M = E(() => b.indexOf(y.value)), z = ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"], N = E(
|
|
1057
1070
|
() => new Date(p.value, M.value).getDay()
|
|
1058
1071
|
), K = E(() => {
|
|
1059
1072
|
const m = new Date(p.value, M.value + 1, 0).getDate();
|
|
1060
1073
|
return Array.from(
|
|
1061
1074
|
{ length: m },
|
|
1062
|
-
(
|
|
1075
|
+
(h, u) => new Date(p.value, M.value, u + 1)
|
|
1063
1076
|
);
|
|
1064
1077
|
}), W = E(
|
|
1065
|
-
() => Array.from({ length: N.value }, (m,
|
|
1066
|
-
),
|
|
1078
|
+
() => Array.from({ length: N.value }, (m, h) => h)
|
|
1079
|
+
), c = Array.from({ length: 24 }, (m, h) => h), w = Array.from({ length: 60 }, (m, h) => h), S = E(
|
|
1067
1080
|
() => typeof navigator < "u" && /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(
|
|
1068
1081
|
navigator.userAgent
|
|
1069
1082
|
)
|
|
1070
|
-
),
|
|
1083
|
+
), b = [
|
|
1071
1084
|
"January",
|
|
1072
1085
|
"February",
|
|
1073
1086
|
"March",
|
|
@@ -1082,65 +1095,65 @@ const et = oe("SunIcon", [
|
|
|
1082
1095
|
"December"
|
|
1083
1096
|
], g = E(() => {
|
|
1084
1097
|
const m = (/* @__PURE__ */ new Date()).getFullYear();
|
|
1085
|
-
return Array.from({ length: 100 }, (
|
|
1098
|
+
return Array.from({ length: 100 }, (h, u) => m - 50 + u);
|
|
1086
1099
|
}), I = E(() => {
|
|
1087
1100
|
if (!k.value || !l.value) return "";
|
|
1088
1101
|
if (e.range && l.value.start && l.value.end) {
|
|
1089
|
-
const m = l.value.start.toLocaleDateString("en-US"),
|
|
1090
|
-
return `${m} - ${
|
|
1102
|
+
const m = l.value.start.toLocaleDateString("en-US"), h = l.value.end.toLocaleDateString("en-US");
|
|
1103
|
+
return `${m} - ${h}`;
|
|
1091
1104
|
}
|
|
1092
1105
|
return !e.range && l.value ? l.value.toLocaleDateString("en-US") : "";
|
|
1093
1106
|
}), D = (m) => m instanceof Date ? m : new Date(m), P = (m) => m instanceof Date && !isNaN(m), Y = E(() => {
|
|
1094
1107
|
if (!_.value) return "";
|
|
1095
|
-
const m = (
|
|
1108
|
+
const m = (h) => {
|
|
1096
1109
|
var re, le, ye;
|
|
1097
|
-
const u = ((re = f.value) == null ? void 0 : re[
|
|
1098
|
-
return S.value ? ((ye = r.value) == null ? void 0 : ye[
|
|
1110
|
+
const u = ((re = f.value) == null ? void 0 : re[h]) ?? f.value, X = ((le = $.value) == null ? void 0 : le[h]) ?? $.value;
|
|
1111
|
+
return S.value ? ((ye = r.value) == null ? void 0 : ye[h]) ?? r.value : `${u.toString().padStart(2, "0")}:${X.toString().padStart(2, "0")}`;
|
|
1099
1112
|
};
|
|
1100
1113
|
return e.range ? `${m("start")} - ${m("end")}` : m();
|
|
1101
1114
|
}), J = E(() => {
|
|
1102
|
-
const m = I.value,
|
|
1103
|
-
return `${m} ${
|
|
1104
|
-
}), se = () =>
|
|
1115
|
+
const m = I.value, h = Y.value;
|
|
1116
|
+
return `${m} ${h}`.trim();
|
|
1117
|
+
}), se = () => o.value = !o.value, G = () => {
|
|
1105
1118
|
j(), Se();
|
|
1106
|
-
}, Se = () =>
|
|
1119
|
+
}, Se = () => o.value = !1, xe = () => {
|
|
1107
1120
|
l.value = e.range ? { start: null, end: null } : null, r.value = e.range ? { start: null, end: null } : null, j();
|
|
1108
1121
|
}, Ce = (m) => {
|
|
1109
1122
|
e.range ? l.value.start && l.value.end ? l.value = { start: m, end: null } : l.value.start ? l.value.end = m : l.value.start = m : l.value = m, j();
|
|
1110
1123
|
}, De = (m) => (m = D(m), e.range ? l.value.start && P(l.value.start) && m.getTime() === l.value.start.getTime() || l.value.end && P(l.value.end) && m.getTime() === l.value.end.getTime() : P(l.value) && m.getTime() === l.value.getTime()), Me = (m) => {
|
|
1111
1124
|
m = D(m);
|
|
1112
|
-
const
|
|
1113
|
-
return m.getDate() ===
|
|
1125
|
+
const h = /* @__PURE__ */ new Date();
|
|
1126
|
+
return m.getDate() === h.getDate() && m.getMonth() === h.getMonth() && m.getFullYear() === h.getFullYear();
|
|
1114
1127
|
}, Ie = (m) => (m = D(m), e.range && P(l.value.start) && m.getTime() === l.value.start.getTime()), Te = (m) => (m = D(m), e.range && P(l.value.end) && m.getTime() === l.value.end.getTime()), Ve = (m) => {
|
|
1115
1128
|
if (m = D(m), e.range && P(l.value.start) && P(l.value.end)) {
|
|
1116
|
-
const
|
|
1117
|
-
return X >
|
|
1129
|
+
const h = l.value.start.getTime(), u = l.value.end.getTime(), X = m.getTime();
|
|
1130
|
+
return X > h && X < u;
|
|
1118
1131
|
}
|
|
1119
1132
|
return !1;
|
|
1120
1133
|
}, Be = () => {
|
|
1121
1134
|
let m = M.value - 1;
|
|
1122
|
-
m < 0 && (m = 11, p.value--), y.value =
|
|
1135
|
+
m < 0 && (m = 11, p.value--), y.value = b[m], j();
|
|
1123
1136
|
}, Oe = () => {
|
|
1124
1137
|
let m = M.value + 1;
|
|
1125
|
-
m > 11 && (m = 0, p.value++), y.value =
|
|
1138
|
+
m > 11 && (m = 0, p.value++), y.value = b[m], j();
|
|
1126
1139
|
}, be = (m) => {
|
|
1127
|
-
U.value && !U.value.contains(m.target) &&
|
|
1140
|
+
U.value && !U.value.contains(m.target) && o.value == !0 && G();
|
|
1128
1141
|
}, j = () => {
|
|
1129
1142
|
let m = {};
|
|
1130
|
-
const
|
|
1143
|
+
const h = (u, X, re) => {
|
|
1131
1144
|
u instanceof Date && !isNaN(u) || (u = /* @__PURE__ */ new Date());
|
|
1132
1145
|
const le = new Date(u);
|
|
1133
1146
|
return le.setUTCHours(X, re, 0, 0), le.toISOString();
|
|
1134
1147
|
};
|
|
1135
|
-
e.range ? (m.from =
|
|
1148
|
+
e.range ? (m.from = h(
|
|
1136
1149
|
l.value.start,
|
|
1137
1150
|
f.value.start,
|
|
1138
1151
|
$.value.start
|
|
1139
|
-
), m.to =
|
|
1152
|
+
), m.to = h(
|
|
1140
1153
|
l.value.end,
|
|
1141
1154
|
f.value.end,
|
|
1142
1155
|
$.value.end
|
|
1143
|
-
)) : m =
|
|
1156
|
+
)) : m = h(
|
|
1144
1157
|
l.value,
|
|
1145
1158
|
f.value,
|
|
1146
1159
|
$.value
|
|
@@ -1151,90 +1164,95 @@ const et = oe("SunIcon", [
|
|
|
1151
1164
|
start: new Date(e.initialDate.start),
|
|
1152
1165
|
end: new Date(e.initialDate.end)
|
|
1153
1166
|
} : e.initialDate.start && (l.value = { start: new Date(e.initialDate.start) })), e.range ? (f.value.start = f.value.start ?? (/* @__PURE__ */ new Date()).getHours(), f.value.end = f.value.end ?? (/* @__PURE__ */ new Date()).getHours(), $.value.start = $.value.start ?? (/* @__PURE__ */ new Date()).getMinutes(), $.value.end = $.value.end ?? (/* @__PURE__ */ new Date()).getMinutes()) : (f.value = f.value ?? (/* @__PURE__ */ new Date()).getHours(), $.value = $.value ?? (/* @__PURE__ */ new Date()).getMinutes());
|
|
1154
|
-
}), e.popup && Q(() => document.addEventListener("click", be)), $e(() => document.removeEventListener("click", be)), (m,
|
|
1167
|
+
}), e.popup && Q(() => document.addEventListener("click", be)), $e(() => document.removeEventListener("click", be)), (m, h) => (n(), a("div", {
|
|
1155
1168
|
class: "inline-block relative w-full lg:w-[360px]",
|
|
1156
1169
|
ref_key: "pickerContainer",
|
|
1157
1170
|
ref: U
|
|
1158
1171
|
}, [
|
|
1159
|
-
|
|
1172
|
+
s("div", {
|
|
1160
1173
|
class: "flex items-center gap-2 cursor-pointer",
|
|
1161
|
-
onClick: se
|
|
1174
|
+
onClick: h[0] || (h[0] = (u) => e.disabled ? null : se())
|
|
1162
1175
|
}, [
|
|
1163
1176
|
i.popup ? T(m.$slots, "default", { key: 0 }, () => [
|
|
1164
|
-
|
|
1177
|
+
s("input", {
|
|
1165
1178
|
type: "text",
|
|
1166
1179
|
class: "input-bordered w-full cursor-pointer input",
|
|
1167
1180
|
placeholder: i.placeholder,
|
|
1168
1181
|
value: J.value,
|
|
1169
1182
|
readonly: "",
|
|
1170
|
-
id: R.value
|
|
1171
|
-
|
|
1172
|
-
|
|
1173
|
-
|
|
1174
|
-
|
|
1183
|
+
id: R.value,
|
|
1184
|
+
disabled: e.disabled
|
|
1185
|
+
}, null, 8, Rt),
|
|
1186
|
+
s("button", {
|
|
1187
|
+
class: "btn btn-ghost",
|
|
1188
|
+
disabled: e.disabled
|
|
1189
|
+
}, [
|
|
1190
|
+
ae(F(Ze))
|
|
1191
|
+
], 8, Nt)
|
|
1175
1192
|
], !0) : O("", !0)
|
|
1176
1193
|
]),
|
|
1177
|
-
|
|
1194
|
+
o.value || !i.popup ? (n(), a("div", {
|
|
1178
1195
|
key: 0,
|
|
1179
1196
|
class: V(["z-50 bg-base-100 md:mt-2 md:p-4 px-4 rounded-md w-full", [{ absolute: i.popup }]]),
|
|
1180
1197
|
id: v.value
|
|
1181
1198
|
}, [
|
|
1182
|
-
k.value ? (n(), a("div",
|
|
1183
|
-
|
|
1199
|
+
k.value ? (n(), a("div", Ft, [
|
|
1200
|
+
s("button", {
|
|
1184
1201
|
class: "hidden md:block btn-outline btn btn-primary md:btn-sm",
|
|
1185
|
-
onClick: Be
|
|
1186
|
-
|
|
1187
|
-
|
|
1202
|
+
onClick: Be,
|
|
1203
|
+
disabled: e.disabled
|
|
1204
|
+
}, h[12] || (h[12] = [
|
|
1205
|
+
s("svg", {
|
|
1188
1206
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1189
1207
|
class: "w-4 h-4",
|
|
1190
1208
|
fill: "none",
|
|
1191
1209
|
viewBox: "0 0 24 24",
|
|
1192
1210
|
stroke: "currentColor"
|
|
1193
1211
|
}, [
|
|
1194
|
-
|
|
1212
|
+
s("path", {
|
|
1195
1213
|
"stroke-linecap": "round",
|
|
1196
1214
|
"stroke-linejoin": "round",
|
|
1197
1215
|
"stroke-width": "2",
|
|
1198
1216
|
d: "M15 19l-7-7 7-7"
|
|
1199
1217
|
})
|
|
1200
1218
|
], -1)
|
|
1201
|
-
])),
|
|
1202
|
-
q(
|
|
1219
|
+
]), 8, qt),
|
|
1220
|
+
q(s("select", {
|
|
1203
1221
|
class: "border-none w-fit select",
|
|
1204
|
-
"onUpdate:modelValue":
|
|
1222
|
+
"onUpdate:modelValue": h[1] || (h[1] = (u) => y.value = u),
|
|
1205
1223
|
onChange: j
|
|
1206
1224
|
}, [
|
|
1207
|
-
(n(), a(B, null, A(
|
|
1225
|
+
(n(), a(B, null, A(b, (u, X) => s("option", {
|
|
1208
1226
|
key: X,
|
|
1209
1227
|
value: u
|
|
1210
|
-
}, C(u), 9,
|
|
1228
|
+
}, C(u), 9, Ht)), 64))
|
|
1211
1229
|
], 544), [
|
|
1212
1230
|
[Z, y.value]
|
|
1213
1231
|
]),
|
|
1214
|
-
q(
|
|
1232
|
+
q(s("select", {
|
|
1215
1233
|
class: "border-none w-24 select",
|
|
1216
|
-
"onUpdate:modelValue":
|
|
1234
|
+
"onUpdate:modelValue": h[2] || (h[2] = (u) => p.value = u),
|
|
1217
1235
|
onChange: j
|
|
1218
1236
|
}, [
|
|
1219
1237
|
(n(!0), a(B, null, A(g.value, (u) => (n(), a("option", {
|
|
1220
1238
|
key: u,
|
|
1221
1239
|
value: u
|
|
1222
|
-
}, C(u), 9,
|
|
1240
|
+
}, C(u), 9, Wt))), 128))
|
|
1223
1241
|
], 544), [
|
|
1224
1242
|
[Z, p.value]
|
|
1225
1243
|
]),
|
|
1226
|
-
|
|
1244
|
+
s("button", {
|
|
1227
1245
|
class: "hidden md:block btn-outline btn btn-primary md:btn-sm",
|
|
1228
1246
|
onClick: Oe
|
|
1229
|
-
},
|
|
1230
|
-
|
|
1247
|
+
}, h[13] || (h[13] = [
|
|
1248
|
+
s("svg", {
|
|
1231
1249
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1232
1250
|
class: "w-4 h-4",
|
|
1233
1251
|
fill: "none",
|
|
1234
1252
|
viewBox: "0 0 24 24",
|
|
1235
1253
|
stroke: "currentColor"
|
|
1236
1254
|
}, [
|
|
1237
|
-
|
|
1255
|
+
s("path", {
|
|
1238
1256
|
"stroke-linecap": "round",
|
|
1239
1257
|
"stroke-linejoin": "round",
|
|
1240
1258
|
"stroke-width": "2",
|
|
@@ -1243,8 +1261,8 @@ const et = oe("SunIcon", [
|
|
|
1243
1261
|
], -1)
|
|
1244
1262
|
]))
|
|
1245
1263
|
])) : O("", !0),
|
|
1246
|
-
k.value ? (n(), a("div",
|
|
1247
|
-
(n(), a(B, null, A(z, (u) =>
|
|
1264
|
+
k.value ? (n(), a("div", Kt, [
|
|
1265
|
+
(n(), a(B, null, A(z, (u) => s("div", {
|
|
1248
1266
|
key: u,
|
|
1249
1267
|
class: "text-center"
|
|
1250
1268
|
}, C(u), 1)), 64)),
|
|
@@ -1262,31 +1280,31 @@ const et = oe("SunIcon", [
|
|
|
1262
1280
|
"in-range bg-primary/20 hover:bg-primary/10": Ve(u)
|
|
1263
1281
|
}]),
|
|
1264
1282
|
onClick: (X) => Ce(u)
|
|
1265
|
-
}, C(u.getDate()), 11,
|
|
1283
|
+
}, C(u.getDate()), 11, Yt))), 128))
|
|
1266
1284
|
])) : O("", !0),
|
|
1267
|
-
_.value ? (n(), a("div",
|
|
1268
|
-
e.range ? O("", !0) : (n(), a("h3",
|
|
1269
|
-
e.range ? (n(), a("div",
|
|
1270
|
-
|
|
1271
|
-
|
|
1285
|
+
_.value ? (n(), a("div", Jt, [
|
|
1286
|
+
e.range ? O("", !0) : (n(), a("h3", Gt, "Select Time")),
|
|
1287
|
+
e.range ? (n(), a("div", tl, [
|
|
1288
|
+
s("div", null, [
|
|
1289
|
+
h[14] || (h[14] = s("p", { class: "font-bold" }, "Start Time", -1)),
|
|
1272
1290
|
S.value ? q((n(), a("input", {
|
|
1273
1291
|
key: 0,
|
|
1274
1292
|
type: "time",
|
|
1275
1293
|
class: "input-bordered w-full input",
|
|
1276
|
-
"onUpdate:modelValue":
|
|
1294
|
+
"onUpdate:modelValue": h[6] || (h[6] = (u) => r.value.start = u),
|
|
1277
1295
|
onChange: j
|
|
1278
1296
|
}, null, 544)), [
|
|
1279
1297
|
[ne, r.value.start]
|
|
1280
|
-
]) : (n(), a("div",
|
|
1281
|
-
q(
|
|
1298
|
+
]) : (n(), a("div", ll, [
|
|
1299
|
+
q(s("select", {
|
|
1282
1300
|
class: "w-full select-bordered select",
|
|
1283
|
-
"onUpdate:modelValue":
|
|
1301
|
+
"onUpdate:modelValue": h[7] || (h[7] = (u) => f.value.start = u),
|
|
1284
1302
|
onChange: j
|
|
1285
1303
|
}, [
|
|
1286
|
-
(n(!0), a(B, null, A(F(
|
|
1304
|
+
(n(!0), a(B, null, A(F(c), (u) => (n(), a("option", {
|
|
1287
1305
|
key: u,
|
|
1288
1306
|
value: u
|
|
1289
|
-
}, C(u.toString().padStart(2, "0")), 9,
|
|
1307
|
+
}, C(u.toString().padStart(2, "0")), 9, nl))), 128))
|
|
1290
1308
|
], 544), [
|
|
1291
1309
|
[
|
|
1292
1310
|
Z,
|
|
@@ -1295,15 +1313,15 @@ const et = oe("SunIcon", [
|
|
|
1295
1313
|
{ number: !0 }
|
|
1296
1314
|
]
|
|
1297
1315
|
]),
|
|
1298
|
-
q(
|
|
1316
|
+
q(s("select", {
|
|
1299
1317
|
class: "w-full select-bordered select",
|
|
1300
|
-
"onUpdate:modelValue":
|
|
1318
|
+
"onUpdate:modelValue": h[8] || (h[8] = (u) => $.value.start = u),
|
|
1301
1319
|
onChange: j
|
|
1302
1320
|
}, [
|
|
1303
1321
|
(n(!0), a(B, null, A(F(w), (u) => (n(), a("option", {
|
|
1304
1322
|
key: u,
|
|
1305
1323
|
value: u
|
|
1306
|
-
}, C(u.toString().padStart(2, "0")), 9,
|
|
1324
|
+
}, C(u.toString().padStart(2, "0")), 9, al))), 128))
|
|
1307
1325
|
], 544), [
|
|
1308
1326
|
[
|
|
1309
1327
|
Z,
|
|
@@ -1314,26 +1332,26 @@ const et = oe("SunIcon", [
|
|
|
1314
1332
|
])
|
|
1315
1333
|
]))
|
|
1316
1334
|
]),
|
|
1317
|
-
|
|
1318
|
-
|
|
1335
|
+
s("div", null, [
|
|
1336
|
+
h[15] || (h[15] = s("p", { class: "font-bold" }, "End Time", -1)),
|
|
1319
1337
|
S.value ? q((n(), a("input", {
|
|
1320
1338
|
key: 0,
|
|
1321
1339
|
type: "time",
|
|
1322
1340
|
class: "input-bordered w-full input",
|
|
1323
|
-
"onUpdate:modelValue":
|
|
1341
|
+
"onUpdate:modelValue": h[9] || (h[9] = (u) => r.value.end = u),
|
|
1324
1342
|
onChange: j
|
|
1325
1343
|
}, null, 544)), [
|
|
1326
1344
|
[ne, r.value.end]
|
|
1327
|
-
]) : (n(), a("div",
|
|
1328
|
-
q(
|
|
1345
|
+
]) : (n(), a("div", ol, [
|
|
1346
|
+
q(s("select", {
|
|
1329
1347
|
class: "w-full select-bordered select",
|
|
1330
|
-
"onUpdate:modelValue":
|
|
1348
|
+
"onUpdate:modelValue": h[10] || (h[10] = (u) => f.value.end = u),
|
|
1331
1349
|
onChange: j
|
|
1332
1350
|
}, [
|
|
1333
|
-
(n(!0), a(B, null, A(F(
|
|
1351
|
+
(n(!0), a(B, null, A(F(c), (u) => (n(), a("option", {
|
|
1334
1352
|
key: u,
|
|
1335
1353
|
value: u
|
|
1336
|
-
}, C(u.toString().padStart(2, "0")), 9,
|
|
1354
|
+
}, C(u.toString().padStart(2, "0")), 9, sl))), 128))
|
|
1337
1355
|
], 544), [
|
|
1338
1356
|
[
|
|
1339
1357
|
Z,
|
|
@@ -1342,15 +1360,15 @@ const et = oe("SunIcon", [
|
|
|
1342
1360
|
{ number: !0 }
|
|
1343
1361
|
]
|
|
1344
1362
|
]),
|
|
1345
|
-
q(
|
|
1363
|
+
q(s("select", {
|
|
1346
1364
|
class: "w-full select-bordered select",
|
|
1347
|
-
"onUpdate:modelValue":
|
|
1365
|
+
"onUpdate:modelValue": h[11] || (h[11] = (u) => $.value.end = u),
|
|
1348
1366
|
onChange: j
|
|
1349
1367
|
}, [
|
|
1350
1368
|
(n(!0), a(B, null, A(F(w), (u) => (n(), a("option", {
|
|
1351
1369
|
key: u,
|
|
1352
1370
|
value: u
|
|
1353
|
-
}, C(u.toString().padStart(2, "0")), 9,
|
|
1371
|
+
}, C(u.toString().padStart(2, "0")), 9, rl))), 128))
|
|
1354
1372
|
], 544), [
|
|
1355
1373
|
[
|
|
1356
1374
|
Z,
|
|
@@ -1361,25 +1379,25 @@ const et = oe("SunIcon", [
|
|
|
1361
1379
|
])
|
|
1362
1380
|
]))
|
|
1363
1381
|
])
|
|
1364
|
-
])) : (n(), a("div",
|
|
1382
|
+
])) : (n(), a("div", Xt, [
|
|
1365
1383
|
S.value ? q((n(), a("input", {
|
|
1366
1384
|
key: 0,
|
|
1367
1385
|
type: "time",
|
|
1368
1386
|
class: "input-bordered w-full input",
|
|
1369
|
-
"onUpdate:modelValue":
|
|
1387
|
+
"onUpdate:modelValue": h[3] || (h[3] = (u) => r.value = u),
|
|
1370
1388
|
onChange: j
|
|
1371
1389
|
}, null, 544)), [
|
|
1372
1390
|
[ne, r.value]
|
|
1373
|
-
]) : (n(), a("div",
|
|
1374
|
-
q(
|
|
1391
|
+
]) : (n(), a("div", Zt, [
|
|
1392
|
+
q(s("select", {
|
|
1375
1393
|
class: "w-full select-bordered select",
|
|
1376
|
-
"onUpdate:modelValue":
|
|
1394
|
+
"onUpdate:modelValue": h[4] || (h[4] = (u) => f.value = u),
|
|
1377
1395
|
onChange: j
|
|
1378
1396
|
}, [
|
|
1379
|
-
(n(!0), a(B, null, A(F(
|
|
1397
|
+
(n(!0), a(B, null, A(F(c), (u) => (n(), a("option", {
|
|
1380
1398
|
key: u,
|
|
1381
1399
|
value: u
|
|
1382
|
-
}, C(u.toString().padStart(2, "0")), 9,
|
|
1400
|
+
}, C(u.toString().padStart(2, "0")), 9, Qt))), 128))
|
|
1383
1401
|
], 544), [
|
|
1384
1402
|
[
|
|
1385
1403
|
Z,
|
|
@@ -1388,15 +1406,15 @@ const et = oe("SunIcon", [
|
|
|
1388
1406
|
{ number: !0 }
|
|
1389
1407
|
]
|
|
1390
1408
|
]),
|
|
1391
|
-
q(
|
|
1409
|
+
q(s("select", {
|
|
1392
1410
|
class: "w-full select-bordered select",
|
|
1393
|
-
"onUpdate:modelValue":
|
|
1411
|
+
"onUpdate:modelValue": h[5] || (h[5] = (u) => $.value = u),
|
|
1394
1412
|
onChange: j
|
|
1395
1413
|
}, [
|
|
1396
1414
|
(n(!0), a(B, null, A(F(w), (u) => (n(), a("option", {
|
|
1397
1415
|
key: u,
|
|
1398
1416
|
value: u
|
|
1399
|
-
}, C(u.toString().padStart(2, "0")), 9,
|
|
1417
|
+
}, C(u.toString().padStart(2, "0")), 9, el))), 128))
|
|
1400
1418
|
], 544), [
|
|
1401
1419
|
[
|
|
1402
1420
|
Z,
|
|
@@ -1408,8 +1426,8 @@ const et = oe("SunIcon", [
|
|
|
1408
1426
|
]))
|
|
1409
1427
|
]))
|
|
1410
1428
|
])) : O("", !0),
|
|
1411
|
-
|
|
1412
|
-
|
|
1429
|
+
s("div", il, [
|
|
1430
|
+
s("button", {
|
|
1413
1431
|
class: V(["btn btn-secondary", i.popup ? "w-fit" : "w-full"]),
|
|
1414
1432
|
onClick: xe
|
|
1415
1433
|
}, " Clear ", 2),
|
|
@@ -1419,13 +1437,13 @@ const et = oe("SunIcon", [
|
|
|
1419
1437
|
onClick: G
|
|
1420
1438
|
}, " Close ")) : O("", !0)
|
|
1421
1439
|
])
|
|
1422
|
-
], 10,
|
|
1440
|
+
], 10, jt)) : O("", !0)
|
|
1423
1441
|
], 512));
|
|
1424
1442
|
}
|
|
1425
|
-
},
|
|
1443
|
+
}, dl = /* @__PURE__ */ te(ul, [["__scopeId", "data-v-bab9b3c1"]]), cl = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
1426
1444
|
__proto__: null,
|
|
1427
|
-
default:
|
|
1428
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
1445
|
+
default: dl
|
|
1446
|
+
}, Symbol.toStringTag, { value: "Module" })), pl = ["value", "checked", "onChange", "disabled"], Cn = /* @__PURE__ */ L({
|
|
1429
1447
|
__name: "rating",
|
|
1430
1448
|
props: {
|
|
1431
1449
|
initialRating: { default: 0 },
|
|
@@ -1438,56 +1456,60 @@ const et = oe("SunIcon", [
|
|
|
1438
1456
|
gap: { default: 0 }
|
|
1439
1457
|
},
|
|
1440
1458
|
setup(i) {
|
|
1441
|
-
const
|
|
1459
|
+
const d = i, e = x(d.initialRating);
|
|
1442
1460
|
H(
|
|
1443
|
-
() =>
|
|
1444
|
-
(
|
|
1445
|
-
e.value =
|
|
1461
|
+
() => d.initialRating,
|
|
1462
|
+
(o) => {
|
|
1463
|
+
e.value = o;
|
|
1446
1464
|
}
|
|
1447
1465
|
);
|
|
1448
|
-
const t = (
|
|
1449
|
-
e.value =
|
|
1466
|
+
const t = (o) => {
|
|
1467
|
+
e.value = o;
|
|
1450
1468
|
};
|
|
1451
|
-
return (
|
|
1452
|
-
class: V(["rating", [
|
|
1469
|
+
return (o, l) => (n(), a("div", {
|
|
1470
|
+
class: V(["rating", [
|
|
1471
|
+
`rating-${d.size}`,
|
|
1472
|
+
{ "rating-half": o.halfStars },
|
|
1473
|
+
{ "pointer-events-none": !o.isInteractive }
|
|
1474
|
+
]])
|
|
1453
1475
|
}, [
|
|
1454
|
-
(n(!0), a(B, null, A(
|
|
1476
|
+
(n(!0), a(B, null, A(o.numberOfStars * (o.halfStars ? 2 : 1), (r) => (n(), a("input", {
|
|
1455
1477
|
key: r,
|
|
1456
1478
|
type: "radio",
|
|
1457
|
-
value:
|
|
1458
|
-
checked: e.value === (
|
|
1459
|
-
onChange: (y) =>
|
|
1479
|
+
value: o.halfStars ? r * 0.5 : r,
|
|
1480
|
+
checked: e.value === (o.halfStars ? r * 0.5 : r),
|
|
1481
|
+
onChange: (y) => o.isInteractive ? t(o.halfStars ? r * 0.5 : r) : null,
|
|
1460
1482
|
class: V(["mask", [
|
|
1461
1483
|
{
|
|
1462
1484
|
// 'bg-yellow-400': rating >= (halfStars ? i * 0.5 : i),
|
|
1463
|
-
"mask-half-1":
|
|
1464
|
-
"mask-half-2":
|
|
1465
|
-
"cursor-pointer":
|
|
1466
|
-
"cursor-default": !
|
|
1467
|
-
"mask-star":
|
|
1468
|
-
"mask-star-2":
|
|
1469
|
-
"mask-heart":
|
|
1470
|
-
"mask-hexagon":
|
|
1471
|
-
"mask-hexagon-2":
|
|
1472
|
-
"mask-decagon":
|
|
1473
|
-
"mask-pentagon":
|
|
1474
|
-
"mask-diamond":
|
|
1475
|
-
"mask-square":
|
|
1476
|
-
"mask-triangle":
|
|
1477
|
-
"mask-triangle-2":
|
|
1478
|
-
"mask-triangle-3":
|
|
1479
|
-
"mask-triangle-4":
|
|
1485
|
+
"mask-half-1": o.halfStars && r % 2 !== 0,
|
|
1486
|
+
"mask-half-2": o.halfStars && r % 2 === 0,
|
|
1487
|
+
"cursor-pointer": o.isInteractive,
|
|
1488
|
+
"cursor-default": !o.isInteractive,
|
|
1489
|
+
"mask-star": o.shape === "star",
|
|
1490
|
+
"mask-star-2": o.shape === "star-bold",
|
|
1491
|
+
"mask-heart": o.shape === "heart",
|
|
1492
|
+
"mask-hexagon": o.shape === "hexagon-vertical",
|
|
1493
|
+
"mask-hexagon-2": o.shape === "hexagon-horizontal",
|
|
1494
|
+
"mask-decagon": o.shape === "decagon",
|
|
1495
|
+
"mask-pentagon": o.shape === "pentagon",
|
|
1496
|
+
"mask-diamond": o.shape === "diamond",
|
|
1497
|
+
"mask-square": o.shape === "square",
|
|
1498
|
+
"mask-triangle": o.shape === "triangle-top",
|
|
1499
|
+
"mask-triangle-2": o.shape === "triangle-bottom",
|
|
1500
|
+
"mask-triangle-3": o.shape === "triangle-left",
|
|
1501
|
+
"mask-triangle-4": o.shape === "triangle-right"
|
|
1480
1502
|
},
|
|
1481
|
-
e.value >= (
|
|
1503
|
+
e.value >= (o.halfStars ? r * 0.5 : r) ? d.color : ""
|
|
1482
1504
|
]]),
|
|
1483
1505
|
style: de({
|
|
1484
|
-
marginRight:
|
|
1506
|
+
marginRight: o.halfStars && r % 2 === 0 ? `${d.gap}px` : o.halfStars ? "0" : `${d.gap}px`
|
|
1485
1507
|
}),
|
|
1486
|
-
disabled: !
|
|
1487
|
-
}, null, 46,
|
|
1508
|
+
disabled: !o.isInteractive
|
|
1509
|
+
}, null, 46, pl))), 128))
|
|
1488
1510
|
], 2));
|
|
1489
1511
|
}
|
|
1490
|
-
}),
|
|
1512
|
+
}), vl = { class: "badge" }, fl = ["onClick"], ml = { class: "opacity-75" }, gl = ["placeholder"], Dn = /* @__PURE__ */ L({
|
|
1491
1513
|
__name: "taginput",
|
|
1492
1514
|
props: {
|
|
1493
1515
|
modelValue: {},
|
|
@@ -1496,33 +1518,33 @@ const et = oe("SunIcon", [
|
|
|
1496
1518
|
class: {}
|
|
1497
1519
|
},
|
|
1498
1520
|
emits: ["update:modelValue"],
|
|
1499
|
-
setup(i, { emit:
|
|
1500
|
-
const e = i, t =
|
|
1521
|
+
setup(i, { emit: d }) {
|
|
1522
|
+
const e = i, t = d, o = x([...e.modelValue]), l = e.maxTagAmount === void 0 ? -1 : e.maxTagAmount, r = x(null), y = x(""), p = E(() => l < 0 || o.value.length < l), f = () => {
|
|
1501
1523
|
const v = y.value.trim();
|
|
1502
|
-
v && !
|
|
1524
|
+
v && !o.value.includes(v) && (o.value.push(v), t("update:modelValue", o.value), y.value = "");
|
|
1503
1525
|
}, $ = (v) => {
|
|
1504
|
-
|
|
1526
|
+
o.value = o.value.filter((k) => k !== v), t("update:modelValue", o.value);
|
|
1505
1527
|
}, U = () => {
|
|
1506
|
-
y.value === "" && (
|
|
1528
|
+
y.value === "" && (o.value.pop(), t("update:modelValue", o.value));
|
|
1507
1529
|
}, R = (v) => {
|
|
1508
1530
|
v.key === "Enter" ? f() : v.key === "Backspace" && y.value === "" && U();
|
|
1509
1531
|
};
|
|
1510
1532
|
return H(() => e.modelValue, (v) => {
|
|
1511
|
-
|
|
1533
|
+
o.value = [...v];
|
|
1512
1534
|
}), (v, k) => (n(), a("div", {
|
|
1513
1535
|
class: V(["flex flex-wrap gap-2 bg-base-100 shadow px-4 py-6 border border-base-content/20 rounded", v.$props.class])
|
|
1514
1536
|
}, [
|
|
1515
|
-
(n(!0), a(B, null, A(
|
|
1537
|
+
(n(!0), a(B, null, A(o.value, (_) => T(v.$slots, "tag", {
|
|
1516
1538
|
key: _,
|
|
1517
1539
|
tag: _
|
|
1518
1540
|
}, () => [
|
|
1519
|
-
|
|
1520
|
-
|
|
1541
|
+
s("div", vl, [
|
|
1542
|
+
s("button", {
|
|
1521
1543
|
class: "!px-1 !py-0 h-fit font-bold cursor-pointer",
|
|
1522
1544
|
onClick: (M) => $(_),
|
|
1523
1545
|
"aria-label": "Remove tag"
|
|
1524
|
-
}, "X", 8,
|
|
1525
|
-
|
|
1546
|
+
}, "X", 8, fl),
|
|
1547
|
+
s("span", ml, C(_), 1)
|
|
1526
1548
|
])
|
|
1527
1549
|
])), 128)),
|
|
1528
1550
|
T(v.$slots, "input", { showInput: p.value }, () => [
|
|
@@ -1536,21 +1558,21 @@ const et = oe("SunIcon", [
|
|
|
1536
1558
|
class: "h-full input input-ghost",
|
|
1537
1559
|
onKeydown: R,
|
|
1538
1560
|
"aria-label": "Add tags"
|
|
1539
|
-
}, null, 40,
|
|
1561
|
+
}, null, 40, gl)), [
|
|
1540
1562
|
[ne, y.value]
|
|
1541
1563
|
]) : O("", !0)
|
|
1542
1564
|
])
|
|
1543
1565
|
], 2));
|
|
1544
1566
|
}
|
|
1545
|
-
}),
|
|
1567
|
+
}), hl = { class: "w-full max-w-xs form-control" }, bl = {
|
|
1546
1568
|
key: 0,
|
|
1547
1569
|
class: "label"
|
|
1548
|
-
},
|
|
1570
|
+
}, yl = { class: "label-text" }, wl = ["value"], kl = {
|
|
1549
1571
|
key: 0,
|
|
1550
1572
|
value: "",
|
|
1551
1573
|
disabled: "",
|
|
1552
1574
|
selected: ""
|
|
1553
|
-
},
|
|
1575
|
+
}, $l = ["value"], Mn = /* @__PURE__ */ L({
|
|
1554
1576
|
__name: "select",
|
|
1555
1577
|
props: {
|
|
1556
1578
|
options: {},
|
|
@@ -1559,45 +1581,45 @@ const et = oe("SunIcon", [
|
|
|
1559
1581
|
modelValue: {}
|
|
1560
1582
|
},
|
|
1561
1583
|
emits: ["update:modelValue"],
|
|
1562
|
-
setup(i, { expose:
|
|
1584
|
+
setup(i, { expose: d, emit: e }) {
|
|
1563
1585
|
console.log(i.placeholder);
|
|
1564
|
-
const
|
|
1586
|
+
const o = e, l = x(null), r = (p) => {
|
|
1565
1587
|
const f = p.target;
|
|
1566
|
-
|
|
1588
|
+
o("update:modelValue", f.value);
|
|
1567
1589
|
};
|
|
1568
|
-
return
|
|
1590
|
+
return d({
|
|
1569
1591
|
focusInput: () => {
|
|
1570
1592
|
var p;
|
|
1571
1593
|
console.log("select.vue: focusInput method called."), (p = l.value) == null || p.focus();
|
|
1572
1594
|
}
|
|
1573
1595
|
// You can expose other properties or methods here if needed by the parent
|
|
1574
1596
|
// e.g., the current value: modelValue
|
|
1575
|
-
}), (p, f) => (n(), a("div",
|
|
1576
|
-
p.label ? (n(), a("label",
|
|
1577
|
-
|
|
1597
|
+
}), (p, f) => (n(), a("div", hl, [
|
|
1598
|
+
p.label ? (n(), a("label", bl, [
|
|
1599
|
+
s("span", yl, C(p.label), 1)
|
|
1578
1600
|
])) : O("", !0),
|
|
1579
|
-
|
|
1601
|
+
s("select", {
|
|
1580
1602
|
ref_key: "selectElement",
|
|
1581
1603
|
ref: l,
|
|
1582
1604
|
class: "rounded-md w-full select-bordered select",
|
|
1583
1605
|
value: p.modelValue,
|
|
1584
1606
|
onChange: r
|
|
1585
1607
|
}, [
|
|
1586
|
-
p.placeholder ? (n(), a("option",
|
|
1608
|
+
p.placeholder ? (n(), a("option", kl, C(p.placeholder), 1)) : O("", !0),
|
|
1587
1609
|
(n(!0), a(B, null, A(p.options, ($) => (n(), a("option", {
|
|
1588
1610
|
key: $.value,
|
|
1589
1611
|
value: $.value
|
|
1590
|
-
}, C($.text), 9,
|
|
1591
|
-
], 40,
|
|
1612
|
+
}, C($.text), 9, $l))), 128))
|
|
1613
|
+
], 40, wl)
|
|
1592
1614
|
]));
|
|
1593
1615
|
}
|
|
1594
|
-
}),
|
|
1616
|
+
}), _l = {
|
|
1595
1617
|
key: 0,
|
|
1596
1618
|
class: "label"
|
|
1597
|
-
},
|
|
1619
|
+
}, Sl = { class: "label-text" }, xl = ["onKeydown", "aria-expanded", "aria-activedescendant"], Cl = ["placeholder", "disabled"], Dl = {
|
|
1598
1620
|
class: "top-full z-10 absolute bg-base-100 shadow-lg mt-1 rounded-md w-full dropdown-content",
|
|
1599
1621
|
role: "listbox"
|
|
1600
|
-
},
|
|
1622
|
+
}, Ml = { class: "flex-nowrap p-0 w-[inherit] max-h-60 overflow-y-auto menu" }, Il = ["onMousedown", "id", "aria-selected"], In = {
|
|
1601
1623
|
__name: "filterableSelect",
|
|
1602
1624
|
props: {
|
|
1603
1625
|
// Array of options: [{ value: any, text: string }, ...]
|
|
@@ -1620,11 +1642,15 @@ const et = oe("SunIcon", [
|
|
|
1620
1642
|
modelValue: {
|
|
1621
1643
|
type: [String, Number, Object, null],
|
|
1622
1644
|
default: null
|
|
1645
|
+
},
|
|
1646
|
+
disabled: {
|
|
1647
|
+
type: Boolean,
|
|
1648
|
+
default: !1
|
|
1623
1649
|
}
|
|
1624
1650
|
},
|
|
1625
1651
|
emits: ["update:modelValue", "select"],
|
|
1626
|
-
setup(i, { expose:
|
|
1627
|
-
const t = i,
|
|
1652
|
+
setup(i, { expose: d, emit: e }) {
|
|
1653
|
+
const t = i, o = e, l = Ue(), r = E(() => {
|
|
1628
1654
|
const g = (l.default ? l.default() : []).filter((I) => I.type !== Re);
|
|
1629
1655
|
return console.log("hasDefaultSlotContent computed:", g.length > 0), g.length > 0;
|
|
1630
1656
|
}), y = x(""), p = x(null), f = x(!1), $ = x(null), U = x(null), R = x(null), v = x(null), k = () => {
|
|
@@ -1634,63 +1660,63 @@ const et = oe("SunIcon", [
|
|
|
1634
1660
|
}, M = () => {
|
|
1635
1661
|
f.value ? _() : k();
|
|
1636
1662
|
}, z = E(() => {
|
|
1637
|
-
const
|
|
1638
|
-
return
|
|
1639
|
-
(I) => I.text.toLowerCase().includes(
|
|
1663
|
+
const b = y.value.toLowerCase();
|
|
1664
|
+
return b === "" && !f.value ? [] : t.options.filter(
|
|
1665
|
+
(I) => I.text.toLowerCase().includes(b)
|
|
1640
1666
|
);
|
|
1641
1667
|
});
|
|
1642
1668
|
H(
|
|
1643
1669
|
() => t.modelValue,
|
|
1644
|
-
(
|
|
1645
|
-
if (
|
|
1670
|
+
(b, g) => {
|
|
1671
|
+
if (b !== g && _(), b == null)
|
|
1646
1672
|
p.value = null, !f.value && !r.value && (y.value = "");
|
|
1647
1673
|
else {
|
|
1648
|
-
const I = t.options.find((D) => D.value ===
|
|
1674
|
+
const I = t.options.find((D) => D.value === b);
|
|
1649
1675
|
I ? (p.value = I, !f.value && !r.value && (y.value = I.text)) : (p.value = null, !f.value && !r.value && (y.value = ""));
|
|
1650
1676
|
}
|
|
1651
1677
|
},
|
|
1652
1678
|
{ immediate: !0 }
|
|
1653
1679
|
// Run immediately on component mount
|
|
1654
1680
|
);
|
|
1655
|
-
const N = (
|
|
1656
|
-
U.value && !U.value.contains(
|
|
1681
|
+
const N = (b) => {
|
|
1682
|
+
U.value && !U.value.contains(b.target) && _();
|
|
1657
1683
|
}, K = () => {
|
|
1658
1684
|
setTimeout(() => {
|
|
1659
1685
|
U.value && !U.value.contains(document.activeElement) && _();
|
|
1660
1686
|
}, 100);
|
|
1661
1687
|
};
|
|
1662
|
-
H(f, (
|
|
1663
|
-
|
|
1688
|
+
H(f, (b) => {
|
|
1689
|
+
b ? setTimeout(() => {
|
|
1664
1690
|
document.addEventListener("click", N);
|
|
1665
1691
|
}, 0) : document.removeEventListener("click", N);
|
|
1666
1692
|
}), ge(() => {
|
|
1667
1693
|
document.removeEventListener("click", N), window.removeEventListener("keydown", S);
|
|
1668
1694
|
});
|
|
1669
|
-
const W = (
|
|
1670
|
-
p.value =
|
|
1671
|
-
},
|
|
1695
|
+
const W = (b) => {
|
|
1696
|
+
p.value = b, r.value || (y.value = b.text), o("update:modelValue", b.value), o("select", b), _(), console.log("user selected an option");
|
|
1697
|
+
}, c = () => {
|
|
1672
1698
|
z.value.length > 0 && W(z.value[0]);
|
|
1673
1699
|
}, w = () => {
|
|
1674
1700
|
f.value || k();
|
|
1675
|
-
}, S = (
|
|
1701
|
+
}, S = (b) => {
|
|
1676
1702
|
if (!f.value || z.value.length === 0) return;
|
|
1677
1703
|
const g = z.value.findIndex(
|
|
1678
1704
|
(D, P) => "option-" + P === v.value
|
|
1679
1705
|
);
|
|
1680
1706
|
let I = -1;
|
|
1681
|
-
if (
|
|
1682
|
-
|
|
1683
|
-
else if (
|
|
1684
|
-
|
|
1685
|
-
else if (
|
|
1686
|
-
|
|
1707
|
+
if (b.key === "ArrowDown")
|
|
1708
|
+
b.preventDefault(), I = (g + 1) % z.value.length;
|
|
1709
|
+
else if (b.key === "ArrowUp")
|
|
1710
|
+
b.preventDefault(), I = (g - 1 + z.value.length) % z.value.length;
|
|
1711
|
+
else if (b.key === "Enter" && v.value) {
|
|
1712
|
+
b.preventDefault();
|
|
1687
1713
|
const D = z.value.find(
|
|
1688
1714
|
(P, Y) => "option-" + Y === v.value
|
|
1689
1715
|
);
|
|
1690
1716
|
D && W(D);
|
|
1691
1717
|
return;
|
|
1692
|
-
} else if (
|
|
1693
|
-
|
|
1718
|
+
} else if (b.key === "Escape") {
|
|
1719
|
+
b.preventDefault(), _(), R.value && R.value.focus();
|
|
1694
1720
|
return;
|
|
1695
1721
|
} else if (r.value)
|
|
1696
1722
|
return;
|
|
@@ -1702,11 +1728,11 @@ const et = oe("SunIcon", [
|
|
|
1702
1728
|
});
|
|
1703
1729
|
}
|
|
1704
1730
|
};
|
|
1705
|
-
return H(f, (
|
|
1706
|
-
|
|
1731
|
+
return H(f, (b) => {
|
|
1732
|
+
b ? (window.addEventListener("keydown", S), !r.value && !y.value && p.value && (y.value = p.value.text)) : (console.log("Removing window keydown listener"), window.removeEventListener("keydown", S));
|
|
1707
1733
|
}), ge(() => {
|
|
1708
1734
|
document.removeEventListener("click", N), window.removeEventListener("keydown", S);
|
|
1709
|
-
}),
|
|
1735
|
+
}), d({
|
|
1710
1736
|
isDropdownOpen: f,
|
|
1711
1737
|
// Expose state
|
|
1712
1738
|
selectedItem: p,
|
|
@@ -1723,21 +1749,21 @@ const et = oe("SunIcon", [
|
|
|
1723
1749
|
// Expose filter text (useful if parent controls filtering)
|
|
1724
1750
|
hasDefaultSlotContent: r
|
|
1725
1751
|
// Expose to know if the default slot is used
|
|
1726
|
-
}), (
|
|
1752
|
+
}), (b, g) => (n(), a("div", {
|
|
1727
1753
|
class: "relative w-full max-w-xs form-control",
|
|
1728
1754
|
ref_key: "componentRoot",
|
|
1729
1755
|
ref: U
|
|
1730
1756
|
}, [
|
|
1731
|
-
i.label ? (n(), a("label",
|
|
1732
|
-
|
|
1757
|
+
i.label ? (n(), a("label", _l, [
|
|
1758
|
+
s("span", Sl, C(i.label), 1)
|
|
1733
1759
|
])) : O("", !0),
|
|
1734
|
-
|
|
1760
|
+
s("div", {
|
|
1735
1761
|
class: V(["flex items-center input-bordered rounded-md w-fit cursor-pointer", { input: !r.value, select: !r.value }]),
|
|
1736
1762
|
tabindex: "0",
|
|
1737
|
-
onClick: k,
|
|
1763
|
+
onClick: g[1] || (g[1] = (I) => t.disabled ? null : k),
|
|
1738
1764
|
onKeydown: [
|
|
1739
|
-
he(ee(
|
|
1740
|
-
he(ee(
|
|
1765
|
+
he(ee(c, ["prevent"]), ["enter"]),
|
|
1766
|
+
he(ee(c, ["prevent"]), ["space"])
|
|
1741
1767
|
],
|
|
1742
1768
|
onBlur: K,
|
|
1743
1769
|
role: "combobox",
|
|
@@ -1748,7 +1774,7 @@ const et = oe("SunIcon", [
|
|
|
1748
1774
|
ref_key: "activatorWrapper",
|
|
1749
1775
|
ref: R
|
|
1750
1776
|
}, [
|
|
1751
|
-
T(
|
|
1777
|
+
T(b.$slots, "default", {}, () => [
|
|
1752
1778
|
r.value ? O("", !0) : q((n(), a("input", {
|
|
1753
1779
|
key: 0,
|
|
1754
1780
|
type: "text",
|
|
@@ -1759,19 +1785,20 @@ const et = oe("SunIcon", [
|
|
|
1759
1785
|
ref: $,
|
|
1760
1786
|
onFocus: k,
|
|
1761
1787
|
onInput: w,
|
|
1762
|
-
tabindex: "-1"
|
|
1763
|
-
|
|
1788
|
+
tabindex: "-1",
|
|
1789
|
+
disabled: t.disabled
|
|
1790
|
+
}, null, 40, Cl)), [
|
|
1764
1791
|
[ne, y.value]
|
|
1765
1792
|
])
|
|
1766
1793
|
]),
|
|
1767
|
-
r.value ? (n(), ue(F(
|
|
1794
|
+
r.value ? (n(), ue(F(Qe), {
|
|
1768
1795
|
key: 0,
|
|
1769
1796
|
class: V({ "rotate-180": f.value }),
|
|
1770
1797
|
size: 20
|
|
1771
1798
|
}, null, 8, ["class"])) : O("", !0)
|
|
1772
|
-
], 42,
|
|
1773
|
-
q(
|
|
1774
|
-
|
|
1799
|
+
], 42, xl),
|
|
1800
|
+
q(s("div", Dl, [
|
|
1801
|
+
s("ul", Ml, [
|
|
1775
1802
|
(n(!0), a(B, null, A(z.value, (I, D) => (n(), a("li", {
|
|
1776
1803
|
key: I.value,
|
|
1777
1804
|
onMousedown: ee((P) => W(I), ["prevent"]),
|
|
@@ -1780,24 +1807,24 @@ const et = oe("SunIcon", [
|
|
|
1780
1807
|
role: "option",
|
|
1781
1808
|
"aria-selected": p.value && p.value.value === I.value
|
|
1782
1809
|
}, [
|
|
1783
|
-
|
|
1784
|
-
], 40,
|
|
1810
|
+
s("a", null, C(I.text), 1)
|
|
1811
|
+
], 40, Il))), 128))
|
|
1785
1812
|
])
|
|
1786
1813
|
], 512), [
|
|
1787
1814
|
[Ne, f.value && z.value.length > 0]
|
|
1788
1815
|
])
|
|
1789
1816
|
], 512));
|
|
1790
1817
|
}
|
|
1791
|
-
},
|
|
1818
|
+
}, Tl = { class: "w-full max-w-xs form-control" }, Vl = {
|
|
1792
1819
|
key: 0,
|
|
1793
1820
|
class: "label"
|
|
1794
|
-
},
|
|
1821
|
+
}, Bl = { class: "label-text" }, Ol = ["type", "placeholder", "disabled", "value"], zl = {
|
|
1795
1822
|
key: 1,
|
|
1796
1823
|
class: "label"
|
|
1797
|
-
},
|
|
1824
|
+
}, Al = { class: "label-text-alt text-error validator-hint" }, Pl = {
|
|
1798
1825
|
key: 2,
|
|
1799
1826
|
class: "label"
|
|
1800
|
-
},
|
|
1827
|
+
}, El = { class: "label-text-alt text-success validator-hint" }, Tn = /* @__PURE__ */ L({
|
|
1801
1828
|
__name: "inputField",
|
|
1802
1829
|
props: {
|
|
1803
1830
|
modelValue: { default: "" },
|
|
@@ -1805,22 +1832,23 @@ const et = oe("SunIcon", [
|
|
|
1805
1832
|
placeholder: { default: "" },
|
|
1806
1833
|
type: { default: "text" },
|
|
1807
1834
|
rules: { default: () => ({}) },
|
|
1808
|
-
needsValidation: {},
|
|
1835
|
+
needsValidation: { type: Boolean, default: !1 },
|
|
1809
1836
|
successMessage: { default: "" },
|
|
1810
1837
|
size: { default: "md" },
|
|
1811
1838
|
color: { default: "" },
|
|
1812
|
-
style: { default: "" }
|
|
1839
|
+
style: { default: "" },
|
|
1840
|
+
disabled: { type: Boolean, default: !1 }
|
|
1813
1841
|
},
|
|
1814
1842
|
emits: ["update:modelValue", "validate"],
|
|
1815
|
-
setup(i, { expose:
|
|
1816
|
-
const t = i,
|
|
1843
|
+
setup(i, { expose: d, emit: e }) {
|
|
1844
|
+
const t = i, o = e, l = x(null), r = x(!1), y = x(""), p = E(() => {
|
|
1817
1845
|
var M, z, N, K;
|
|
1818
1846
|
let v = !0, k = "";
|
|
1819
1847
|
const _ = t.modelValue;
|
|
1820
|
-
return (M = t.rules) != null && M.required && (_ == null || _ === "") && (v = !1, k = "This field is required."), v && ((z = t.rules) == null ? void 0 : z.minLength) !== void 0 && typeof _ == "string" && _.length < t.rules.minLength && (v = !1, k = `Must be at least ${t.rules.minLength} characters.`), v && ((N = t.rules) == null ? void 0 : N.maxLength) !== void 0 && typeof _ == "string" && _.length > t.rules.maxLength && (v = !1, k = `Cannot exceed ${t.rules.maxLength} characters.`), v && ((K = t.rules) != null && K.email) && typeof _ == "string" && _ && (/^[^\s@]+@[^\s@]+\.[^\s@]+$/.test(_) || (v = !1, k = "Please enter a valid email address.")), y.value = k,
|
|
1848
|
+
return (M = t.rules) != null && M.required && (_ == null || _ === "") && (v = !1, k = "This field is required."), v && ((z = t.rules) == null ? void 0 : z.minLength) !== void 0 && typeof _ == "string" && _.length < t.rules.minLength && (v = !1, k = `Must be at least ${t.rules.minLength} characters.`), v && ((N = t.rules) == null ? void 0 : N.maxLength) !== void 0 && typeof _ == "string" && _.length > t.rules.maxLength && (v = !1, k = `Cannot exceed ${t.rules.maxLength} characters.`), v && ((K = t.rules) != null && K.email) && typeof _ == "string" && _ && (/^[^\s@]+@[^\s@]+\.[^\s@]+$/.test(_) || (v = !1, k = "Please enter a valid email address.")), y.value = k, o("validate", v), v;
|
|
1821
1849
|
}), f = E(() => r.value && !p.value), $ = (v) => {
|
|
1822
1850
|
const k = v.target;
|
|
1823
|
-
|
|
1851
|
+
o("update:modelValue", k.value), r.value && p.value;
|
|
1824
1852
|
}, U = () => {
|
|
1825
1853
|
r.value = !0, p.value;
|
|
1826
1854
|
};
|
|
@@ -1829,7 +1857,7 @@ const et = oe("SunIcon", [
|
|
|
1829
1857
|
() => {
|
|
1830
1858
|
r.value && p.value;
|
|
1831
1859
|
}
|
|
1832
|
-
),
|
|
1860
|
+
), d({
|
|
1833
1861
|
focusInput: () => {
|
|
1834
1862
|
var v;
|
|
1835
1863
|
console.log("inputField.vue: focusInput method called."), (v = l.value) == null || v.focus();
|
|
@@ -1837,16 +1865,17 @@ const et = oe("SunIcon", [
|
|
|
1837
1865
|
isValid: p,
|
|
1838
1866
|
isTouched: r,
|
|
1839
1867
|
errorMessage: y
|
|
1840
|
-
}), (v, k) => (n(), a("div",
|
|
1841
|
-
v.label ? (n(), a("label",
|
|
1842
|
-
|
|
1868
|
+
}), (v, k) => (n(), a("div", Tl, [
|
|
1869
|
+
v.label ? (n(), a("label", Vl, [
|
|
1870
|
+
s("span", Bl, C(v.label), 1)
|
|
1843
1871
|
])) : O("", !0),
|
|
1844
1872
|
T(v.$slots, "default"),
|
|
1845
|
-
|
|
1873
|
+
s("input", {
|
|
1846
1874
|
ref_key: "inputElement",
|
|
1847
1875
|
ref: l,
|
|
1848
1876
|
type: v.type,
|
|
1849
1877
|
placeholder: v.placeholder,
|
|
1878
|
+
disabled: t.disabled,
|
|
1850
1879
|
class: V(["input-bordered rounded-md w-full input validator", [
|
|
1851
1880
|
{
|
|
1852
1881
|
// Size classes - Apply based on size prop
|
|
@@ -1877,15 +1906,15 @@ const et = oe("SunIcon", [
|
|
|
1877
1906
|
value: v.modelValue,
|
|
1878
1907
|
onInput: $,
|
|
1879
1908
|
onBlur: U
|
|
1880
|
-
}, null, 42,
|
|
1881
|
-
f.value ? (n(), a("div",
|
|
1882
|
-
|
|
1883
|
-
])) : p.value && r.value && v.successMessage ? (n(), a("div",
|
|
1884
|
-
|
|
1909
|
+
}, null, 42, Ol),
|
|
1910
|
+
f.value ? (n(), a("div", zl, [
|
|
1911
|
+
s("span", Al, C(y.value), 1)
|
|
1912
|
+
])) : p.value && r.value && v.successMessage ? (n(), a("div", Pl, [
|
|
1913
|
+
s("span", El, C(v.successMessage), 1)
|
|
1885
1914
|
])) : O("", !0)
|
|
1886
1915
|
]));
|
|
1887
1916
|
}
|
|
1888
|
-
}),
|
|
1917
|
+
}), Vn = /* @__PURE__ */ L({
|
|
1889
1918
|
__name: "loader",
|
|
1890
1919
|
props: {
|
|
1891
1920
|
loading: { type: Boolean, default: !0 },
|
|
@@ -1894,13 +1923,13 @@ const et = oe("SunIcon", [
|
|
|
1894
1923
|
color: { default: "primary" }
|
|
1895
1924
|
},
|
|
1896
1925
|
setup(i) {
|
|
1897
|
-
const
|
|
1926
|
+
const d = i, e = x(d.loading);
|
|
1898
1927
|
return H(
|
|
1899
|
-
() =>
|
|
1928
|
+
() => d.loading,
|
|
1900
1929
|
(t) => {
|
|
1901
1930
|
e.value = t;
|
|
1902
1931
|
}
|
|
1903
|
-
), (t,
|
|
1932
|
+
), (t, o) => e.value ? (n(), a("span", {
|
|
1904
1933
|
key: 0,
|
|
1905
1934
|
class: V(["loading", [
|
|
1906
1935
|
{ "loading-xs": t.size === "xs" },
|
|
@@ -1927,13 +1956,13 @@ const et = oe("SunIcon", [
|
|
|
1927
1956
|
]])
|
|
1928
1957
|
}, null, 2)) : O("", !0);
|
|
1929
1958
|
}
|
|
1930
|
-
}),
|
|
1959
|
+
}), Ll = { class: "footer sm:footer-horizontal container" }, Ul = { class: "footer-title" }, Rl = ["href"], Nl = {
|
|
1931
1960
|
key: 0,
|
|
1932
1961
|
class: "sm:hidden w-full"
|
|
1933
|
-
},
|
|
1962
|
+
}, jl = { class: "border-b-2 border-base-100 last:border-b-0 w-full" }, Fl = {
|
|
1934
1963
|
tabindex: "0",
|
|
1935
1964
|
class: "collapse collapse-plus w-full"
|
|
1936
|
-
},
|
|
1965
|
+
}, ql = { class: "collapse-title font-bold text-lg collapsible-footer-title" }, Hl = { class: "collapse-content flex w-full text-sm" }, Wl = { class: "flex flex-col gap-2.5" }, Kl = { class: "w-full" }, Yl = ["href"], Jl = { class: "w-full" }, Bn = /* @__PURE__ */ L({
|
|
1937
1966
|
__name: "footer",
|
|
1938
1967
|
props: {
|
|
1939
1968
|
items: {},
|
|
@@ -1942,118 +1971,118 @@ const et = oe("SunIcon", [
|
|
|
1942
1971
|
collapseOnMobile: { type: Boolean, default: !1 }
|
|
1943
1972
|
},
|
|
1944
1973
|
setup(i) {
|
|
1945
|
-
const
|
|
1974
|
+
const d = i;
|
|
1946
1975
|
return (e, t) => (n(), a("div", {
|
|
1947
1976
|
class: V(["mx-auto md:px-10 py-10 text-base-content", [e.background ?? "bg-base-200", e.color ?? "text-base-content"]])
|
|
1948
1977
|
}, [
|
|
1949
|
-
|
|
1950
|
-
(n(!0), a(B, null, A(
|
|
1978
|
+
s("footer", Ll, [
|
|
1979
|
+
(n(!0), a(B, null, A(d.items, (o) => (n(), a("nav", {
|
|
1951
1980
|
class: V([{ "hidden sm:grid": e.collapseOnMobile }])
|
|
1952
1981
|
}, [
|
|
1953
|
-
|
|
1954
|
-
(n(!0), a(B, null, A(
|
|
1982
|
+
s("h6", Ul, C(o.title), 1),
|
|
1983
|
+
(n(!0), a(B, null, A(o.items, (l) => (n(), a("a", {
|
|
1955
1984
|
class: "link link-hover",
|
|
1956
1985
|
href: l.link
|
|
1957
|
-
}, C(l.text), 9,
|
|
1986
|
+
}, C(l.text), 9, Rl))), 256))
|
|
1958
1987
|
], 2))), 256)),
|
|
1959
|
-
e.collapseOnMobile ? (n(), a("nav",
|
|
1960
|
-
(n(!0), a(B, null, A(
|
|
1961
|
-
|
|
1962
|
-
|
|
1963
|
-
|
|
1964
|
-
|
|
1965
|
-
(n(!0), a(B, null, A(
|
|
1966
|
-
|
|
1988
|
+
e.collapseOnMobile ? (n(), a("nav", Nl, [
|
|
1989
|
+
(n(!0), a(B, null, A(d.items, (o) => (n(), a("ul", jl, [
|
|
1990
|
+
s("div", Fl, [
|
|
1991
|
+
s("div", ql, C(o.title), 1),
|
|
1992
|
+
s("div", Hl, [
|
|
1993
|
+
s("ul", Wl, [
|
|
1994
|
+
(n(!0), a(B, null, A(o.items, (l) => (n(), a("li", Kl, [
|
|
1995
|
+
s("a", {
|
|
1967
1996
|
class: "w-full font-medium link link-hover",
|
|
1968
1997
|
href: l.link
|
|
1969
|
-
}, C(l.text), 9,
|
|
1998
|
+
}, C(l.text), 9, Yl)
|
|
1970
1999
|
]))), 256))
|
|
1971
2000
|
])
|
|
1972
2001
|
])
|
|
1973
2002
|
])
|
|
1974
2003
|
]))), 256))
|
|
1975
2004
|
])) : O("", !0),
|
|
1976
|
-
|
|
2005
|
+
s("aside", Jl, [
|
|
1977
2006
|
T(e.$slots, "default")
|
|
1978
2007
|
])
|
|
1979
2008
|
])
|
|
1980
2009
|
], 2));
|
|
1981
2010
|
}
|
|
1982
|
-
}),
|
|
1983
|
-
function
|
|
1984
|
-
return n(), a("div",
|
|
1985
|
-
|
|
1986
|
-
|
|
1987
|
-
|
|
2011
|
+
}), Gl = {}, Xl = { class: "min-h-40 container hero" }, Zl = { class: "px-0! text-center hero-content" }, Ql = { class: "mt-9 text-4xl" };
|
|
2012
|
+
function en(i, d) {
|
|
2013
|
+
return n(), a("div", Xl, [
|
|
2014
|
+
s("div", Zl, [
|
|
2015
|
+
s("div", null, [
|
|
2016
|
+
s("h1", Ql, [
|
|
1988
2017
|
T(i.$slots, "title", {}, () => [
|
|
1989
|
-
|
|
2018
|
+
d[0] || (d[0] = ke("hero title"))
|
|
1990
2019
|
])
|
|
1991
2020
|
]),
|
|
1992
|
-
|
|
2021
|
+
s("p", null, [
|
|
1993
2022
|
T(i.$slots, "description", { class: "py-9" })
|
|
1994
2023
|
]),
|
|
1995
2024
|
T(i.$slots, "call-to-action-block", { class: "max-w-full" }, () => [
|
|
1996
|
-
|
|
2025
|
+
d[1] || (d[1] = s("button", { class: "btn btn-primary" }, "Call to action", -1))
|
|
1997
2026
|
])
|
|
1998
2027
|
])
|
|
1999
2028
|
])
|
|
2000
2029
|
]);
|
|
2001
2030
|
}
|
|
2002
|
-
const
|
|
2031
|
+
const On = /* @__PURE__ */ te(Gl, [["render", en]]), tn = { class: "flex flex-row place-content-center gap-4 categories" }, ln = ["onClick"], zn = /* @__PURE__ */ L({
|
|
2003
2032
|
__name: "categoryNavigation",
|
|
2004
2033
|
props: {
|
|
2005
2034
|
searchOptions: {},
|
|
2006
2035
|
currentCategory: {}
|
|
2007
2036
|
},
|
|
2008
2037
|
emits: ["update:currentCategory"],
|
|
2009
|
-
setup(i, { emit:
|
|
2010
|
-
const e = i, t =
|
|
2011
|
-
function
|
|
2038
|
+
setup(i, { emit: d }) {
|
|
2039
|
+
const e = i, t = d;
|
|
2040
|
+
function o(l) {
|
|
2012
2041
|
t("update:currentCategory", l);
|
|
2013
2042
|
}
|
|
2014
|
-
return (l, r) => (n(), a("div",
|
|
2043
|
+
return (l, r) => (n(), a("div", tn, [
|
|
2015
2044
|
(n(!0), a(B, null, A(e.searchOptions, (y) => (n(), a("div", {
|
|
2016
2045
|
key: y.category
|
|
2017
2046
|
}, [
|
|
2018
|
-
|
|
2019
|
-
onClick: (p) =>
|
|
2047
|
+
s("button", {
|
|
2048
|
+
onClick: (p) => o(y.category),
|
|
2020
2049
|
class: V(["truncate btn btn-ghost", { "font-semibold": e.currentCategory === y.category }])
|
|
2021
|
-
}, C(y.category), 11,
|
|
2050
|
+
}, C(y.category), 11, ln)
|
|
2022
2051
|
]))), 128))
|
|
2023
2052
|
]));
|
|
2024
2053
|
}
|
|
2025
|
-
}),
|
|
2054
|
+
}), nn = { class: "md:flex hidden navbar-start" }, an = { class: "md:flex justify-center items-center hidden navbar-center" }, on = { class: "md:flex hidden navbar-end" }, sn = { class: "navbar-bottom md:flex hidden" }, rn = /* @__PURE__ */ L({
|
|
2026
2055
|
__name: "navigationBar",
|
|
2027
2056
|
props: {
|
|
2028
2057
|
isCollapsed: { type: Boolean, default: !0 }
|
|
2029
2058
|
},
|
|
2030
2059
|
setup(i) {
|
|
2031
|
-
const
|
|
2060
|
+
const d = i;
|
|
2032
2061
|
return (e, t) => (n(), a("nav", {
|
|
2033
|
-
class: V(["place-items-start border-primary bg-base-100 px-5 py-5 border-b-4 transition-all navbar navigationbar",
|
|
2062
|
+
class: V(["place-items-start border-primary bg-base-100 px-5 py-5 border-b-4 transition-all navbar navigationbar", d.isCollapsed ? "collapsed" : ""])
|
|
2034
2063
|
}, [
|
|
2035
|
-
|
|
2064
|
+
s("div", nn, [
|
|
2036
2065
|
T(e.$slots, "start", {}, void 0, !0)
|
|
2037
2066
|
]),
|
|
2038
|
-
|
|
2067
|
+
s("div", an, [
|
|
2039
2068
|
T(e.$slots, "center", {}, void 0, !0)
|
|
2040
2069
|
]),
|
|
2041
|
-
|
|
2070
|
+
s("div", on, [
|
|
2042
2071
|
T(e.$slots, "end", {}, void 0, !0)
|
|
2043
2072
|
]),
|
|
2044
|
-
|
|
2073
|
+
s("div", sn, [
|
|
2045
2074
|
T(e.$slots, "bottom", {}, void 0, !0)
|
|
2046
2075
|
])
|
|
2047
2076
|
], 2));
|
|
2048
2077
|
}
|
|
2049
|
-
}),
|
|
2078
|
+
}), An = /* @__PURE__ */ te(rn, [["__scopeId", "data-v-8ddb2b45"]]), un = {
|
|
2050
2079
|
key: 0,
|
|
2051
2080
|
class: "hidden top-4 right-0 absolute md:flex gap-4"
|
|
2052
|
-
},
|
|
2081
|
+
}, dn = ["onClick", "aria-selected"], cn = {
|
|
2053
2082
|
key: 0,
|
|
2054
2083
|
role: "tabpanel",
|
|
2055
2084
|
class: "p-6 border-x-0 border-t-2 border-b-0 border-base-300 max-w-full overflow-x-auto tab-content"
|
|
2056
|
-
},
|
|
2085
|
+
}, pn = { class: "p-6 border-x-0 border-t-2 border-b-0 border-base-300 max-w-full" }, Pn = /* @__PURE__ */ L({
|
|
2057
2086
|
__name: "tab",
|
|
2058
2087
|
props: {
|
|
2059
2088
|
items: {},
|
|
@@ -2062,10 +2091,10 @@ const Vn = /* @__PURE__ */ te(Yl, [["render", Zl]]), Ql = { class: "flex flex-ro
|
|
|
2062
2091
|
buttonOnlyMode: { type: Boolean, default: !1 }
|
|
2063
2092
|
},
|
|
2064
2093
|
emits: ["tab-changed"],
|
|
2065
|
-
setup(i, { emit:
|
|
2066
|
-
const e = i, t = x(e.items[0]),
|
|
2094
|
+
setup(i, { emit: d }) {
|
|
2095
|
+
const e = i, t = x(e.items[0]), o = d;
|
|
2067
2096
|
function l(p) {
|
|
2068
|
-
t.value = p,
|
|
2097
|
+
t.value = p, o("tab-changed", p);
|
|
2069
2098
|
}
|
|
2070
2099
|
function r() {
|
|
2071
2100
|
const f = (e.items.indexOf(t.value) + 1) % e.items.length;
|
|
@@ -2082,62 +2111,62 @@ const Vn = /* @__PURE__ */ te(Yl, [["render", Zl]]), Ql = { class: "flex flex-ro
|
|
|
2082
2111
|
r();
|
|
2083
2112
|
}, e.rotateTabsAfter * 1e3);
|
|
2084
2113
|
}), (p, f) => (n(), a(B, null, [
|
|
2085
|
-
|
|
2114
|
+
s("div", {
|
|
2086
2115
|
role: "tablist",
|
|
2087
2116
|
class: V(["relative tabs-bordered w-full tabs tabs-lg", { "flex-nowrap overflow-x-auto": p.buttonOnlyMode }])
|
|
2088
2117
|
}, [
|
|
2089
|
-
p.withControlls ? (n(), a("div",
|
|
2090
|
-
|
|
2118
|
+
p.withControlls ? (n(), a("div", un, [
|
|
2119
|
+
s("button", {
|
|
2091
2120
|
onClick: f[0] || (f[0] = ($) => y()),
|
|
2092
2121
|
class: "cursor-pointer"
|
|
2093
2122
|
}, "Previous"),
|
|
2094
|
-
|
|
2123
|
+
s("button", {
|
|
2095
2124
|
onClick: f[1] || (f[1] = ($) => r()),
|
|
2096
2125
|
class: "text-primary cursor-pointer"
|
|
2097
2126
|
}, "Next")
|
|
2098
2127
|
])) : O("", !0),
|
|
2099
2128
|
(n(!0), a(B, null, A(p.items, ($) => (n(), a(B, null, [
|
|
2100
|
-
|
|
2129
|
+
s("a", {
|
|
2101
2130
|
type: "button",
|
|
2102
2131
|
role: "tab",
|
|
2103
2132
|
class: V(["min-w-max tab", $ === t.value ? "bg-primary text-base-100" : ""]),
|
|
2104
2133
|
onClick: (U) => l($),
|
|
2105
2134
|
"aria-selected": t.value == $
|
|
2106
|
-
}, C($), 11,
|
|
2107
|
-
p.buttonOnlyMode ? O("", !0) : (n(), a("div",
|
|
2135
|
+
}, C($), 11, dn),
|
|
2136
|
+
p.buttonOnlyMode ? O("", !0) : (n(), a("div", cn, [
|
|
2108
2137
|
T(p.$slots, `${$}-tab`)
|
|
2109
2138
|
]))
|
|
2110
2139
|
], 64))), 256))
|
|
2111
2140
|
], 2),
|
|
2112
|
-
|
|
2141
|
+
s("div", pn, [
|
|
2113
2142
|
T(p.$slots, "default")
|
|
2114
2143
|
])
|
|
2115
2144
|
], 64));
|
|
2116
2145
|
}
|
|
2117
2146
|
});
|
|
2118
2147
|
export {
|
|
2119
|
-
|
|
2120
|
-
|
|
2121
|
-
|
|
2122
|
-
|
|
2123
|
-
|
|
2124
|
-
|
|
2125
|
-
|
|
2126
|
-
|
|
2127
|
-
|
|
2128
|
-
|
|
2129
|
-
|
|
2130
|
-
|
|
2131
|
-
|
|
2132
|
-
|
|
2133
|
-
|
|
2134
|
-
|
|
2135
|
-
|
|
2136
|
-
|
|
2137
|
-
|
|
2138
|
-
|
|
2139
|
-
|
|
2140
|
-
|
|
2141
|
-
|
|
2142
|
-
|
|
2148
|
+
yn as Accordion,
|
|
2149
|
+
xn as AdvancedSearch,
|
|
2150
|
+
wn as Avatar,
|
|
2151
|
+
kn as Badge,
|
|
2152
|
+
fn as ButtonComponent,
|
|
2153
|
+
$n as Card,
|
|
2154
|
+
_n as Carousel,
|
|
2155
|
+
Sn as CarouselItem,
|
|
2156
|
+
zn as CategoryNavigation,
|
|
2157
|
+
dl as DatetimePicker,
|
|
2158
|
+
mn as Dropdown,
|
|
2159
|
+
In as FilterableSelect,
|
|
2160
|
+
Bn as Footer,
|
|
2161
|
+
On as Hero,
|
|
2162
|
+
Tn as InputField,
|
|
2163
|
+
Vn as Loader,
|
|
2164
|
+
gn as Modal,
|
|
2165
|
+
An as NavigationBar,
|
|
2166
|
+
Cn as Rating,
|
|
2167
|
+
Mn as Selector,
|
|
2168
|
+
hn as Swap,
|
|
2169
|
+
Pn as Tab,
|
|
2170
|
+
Dn as TagInput,
|
|
2171
|
+
bn as ThemeController
|
|
2143
2172
|
};
|