tailwind-ux-kit 1.0.56 → 1.0.57
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/lib/components/Dropdown.d.ts +2 -1
- package/lib/tailwind-ux-kit.es.js +281 -277
- package/lib/tailwind-ux-kit.umd.js +8 -8
- package/package.json +1 -1
|
@@ -5,6 +5,7 @@ type DropdownItem<T = any> = {
|
|
|
5
5
|
};
|
|
6
6
|
type DropdownProps<T = any> = {
|
|
7
7
|
label: ReactNode;
|
|
8
|
+
header?: ReactNode;
|
|
8
9
|
items?: DropdownItem<T>[];
|
|
9
10
|
onSelect?: (value: T) => void;
|
|
10
11
|
renderItem?: (item: DropdownItem<T>, handleSelect: () => void) => ReactNode;
|
|
@@ -16,5 +17,5 @@ type DropdownProps<T = any> = {
|
|
|
16
17
|
transition?: boolean;
|
|
17
18
|
ariaLabel?: string;
|
|
18
19
|
} & HTMLAttributes<HTMLDivElement>;
|
|
19
|
-
declare const Dropdown: <T>({ label, items, onSelect, renderItem, position, className, menuClassName, width, closeOnSelect, transition, ariaLabel, ...rest }: DropdownProps<T>) => import("react/jsx-runtime").JSX.Element;
|
|
20
|
+
declare const Dropdown: <T>({ label, header, items, onSelect, renderItem, position, className, menuClassName, width, closeOnSelect, transition, ariaLabel, ...rest }: DropdownProps<T>) => import("react/jsx-runtime").JSX.Element;
|
|
20
21
|
export default Dropdown;
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
import { jsxs as
|
|
3
|
-
import
|
|
4
|
-
const
|
|
2
|
+
import { jsxs as w, jsx as i } from "react/jsx-runtime";
|
|
3
|
+
import z, { forwardRef as X, useState as I, useMemo as P, useId as se, useRef as _, useCallback as j, useEffect as T, createContext as Y, useContext as J } from "react";
|
|
4
|
+
const W = {
|
|
5
5
|
xs: "text-xs px-2 py-1",
|
|
6
6
|
sm: "text-sm px-3 py-1.5",
|
|
7
7
|
md: "text-sm px-3 py-3",
|
|
8
8
|
lg: "text-lg px-5 py-3"
|
|
9
|
-
},
|
|
9
|
+
}, K = {
|
|
10
10
|
flat: "rounded-none",
|
|
11
11
|
rounded: "rounded-sm",
|
|
12
12
|
pill: "rounded-full"
|
|
@@ -33,84 +33,84 @@ const G = {
|
|
|
33
33
|
default:
|
|
34
34
|
return "border-gray-300 focus:ring-blue-500";
|
|
35
35
|
}
|
|
36
|
-
}, ce =
|
|
36
|
+
}, ce = X((e, n) => {
|
|
37
37
|
const {
|
|
38
38
|
label: t,
|
|
39
39
|
id: r,
|
|
40
40
|
inputSize: s = "md",
|
|
41
|
-
shape:
|
|
42
|
-
validate:
|
|
43
|
-
onValidatedChange:
|
|
44
|
-
className:
|
|
41
|
+
shape: u = "rounded",
|
|
42
|
+
validate: c,
|
|
43
|
+
onValidatedChange: d,
|
|
44
|
+
className: l = "",
|
|
45
45
|
icon: a,
|
|
46
46
|
iconPosition: o = "left",
|
|
47
|
-
floatingLabelStyle:
|
|
47
|
+
floatingLabelStyle: f,
|
|
48
48
|
onChange: p,
|
|
49
49
|
isValid: b,
|
|
50
50
|
isInvalid: g,
|
|
51
51
|
feedback: m,
|
|
52
|
-
feedbackType:
|
|
53
|
-
...
|
|
54
|
-
} = e, [
|
|
55
|
-
(
|
|
56
|
-
const
|
|
57
|
-
|
|
52
|
+
feedbackType: v = "invalid",
|
|
53
|
+
...h
|
|
54
|
+
} = e, [N, k] = I("default"), C = z.useCallback(
|
|
55
|
+
(M) => {
|
|
56
|
+
const D = M.target.value, A = (c == null ? void 0 : c(D)) ?? "default";
|
|
57
|
+
k(A), d == null || d(M, A), p == null || p(M);
|
|
58
58
|
},
|
|
59
|
-
[
|
|
60
|
-
),
|
|
61
|
-
() => ie(
|
|
62
|
-
[
|
|
63
|
-
), L =
|
|
64
|
-
return /* @__PURE__ */
|
|
59
|
+
[c, d, p]
|
|
60
|
+
), S = P(() => r || (typeof t == "string" ? `input-${t.toLowerCase().replace(/\s+/g, "-")}` : `input-${Math.random().toString(36).slice(2)}`), [r, t]), x = !!f, $ = W[s] || W.md, E = K[u] || K.flat, y = P(
|
|
61
|
+
() => ie(N, b, g),
|
|
62
|
+
[N, b, g]
|
|
63
|
+
), L = P(() => o === "start" || o === "left" ? "left-0 ps-3.5" : "right-0 pe-3.5", [o]), O = P(() => a ? o === "start" || o === "left" ? "ps-10" : "pe-10" : "", [a, o]);
|
|
64
|
+
return /* @__PURE__ */ w(
|
|
65
65
|
"div",
|
|
66
66
|
{
|
|
67
67
|
className: `w-full relative ${x ? "z-0" : ""} tailwind-ux-input`,
|
|
68
68
|
children: [
|
|
69
|
-
!x && t && /* @__PURE__ */
|
|
69
|
+
!x && t && /* @__PURE__ */ i(
|
|
70
70
|
"label",
|
|
71
71
|
{
|
|
72
|
-
htmlFor:
|
|
72
|
+
htmlFor: S,
|
|
73
73
|
className: `block mb-1 text-sm ${b ? "text-green-700 dark:text-green-500" : g ? "text-red-700 dark:text-red-500" : "text-gray-700"}`,
|
|
74
74
|
children: t
|
|
75
75
|
}
|
|
76
76
|
),
|
|
77
|
-
/* @__PURE__ */
|
|
78
|
-
a && /* @__PURE__ */
|
|
77
|
+
/* @__PURE__ */ w("div", { className: "relative w-full", children: [
|
|
78
|
+
a && /* @__PURE__ */ i(
|
|
79
79
|
"div",
|
|
80
80
|
{
|
|
81
81
|
className: `absolute inset-y-0 flex items-center ${L}`,
|
|
82
82
|
"aria-hidden": "true",
|
|
83
|
-
children: /* @__PURE__ */
|
|
83
|
+
children: /* @__PURE__ */ i("span", { className: "text-gray-500", children: a })
|
|
84
84
|
}
|
|
85
85
|
),
|
|
86
|
-
/* @__PURE__ */
|
|
86
|
+
/* @__PURE__ */ i(
|
|
87
87
|
"input",
|
|
88
88
|
{
|
|
89
|
-
...
|
|
90
|
-
id:
|
|
89
|
+
...h,
|
|
90
|
+
id: S,
|
|
91
91
|
ref: n,
|
|
92
|
-
placeholder: x ? " " :
|
|
93
|
-
onChange:
|
|
92
|
+
placeholder: x ? " " : h.placeholder,
|
|
93
|
+
onChange: C,
|
|
94
94
|
className: `border peer w-full block font-normal appearance-none focus:outline-none focus:ring-0 transition text-gray-900 placeholder-gray-600 border-gray-400
|
|
95
|
-
${
|
|
96
|
-
${x &&
|
|
97
|
-
${
|
|
95
|
+
${$}
|
|
96
|
+
${x && f && ae[f]}
|
|
97
|
+
${O} ${E} ${y} ${l}`
|
|
98
98
|
}
|
|
99
99
|
),
|
|
100
|
-
x && t &&
|
|
100
|
+
x && t && f && /* @__PURE__ */ i(
|
|
101
101
|
"label",
|
|
102
102
|
{
|
|
103
|
-
htmlFor:
|
|
104
|
-
className: `ms-1 ${le[
|
|
103
|
+
htmlFor: S,
|
|
104
|
+
className: `ms-1 ${le[f]} ${l}`,
|
|
105
105
|
children: t
|
|
106
106
|
}
|
|
107
107
|
)
|
|
108
108
|
] }),
|
|
109
|
-
m && /* @__PURE__ */
|
|
109
|
+
m && /* @__PURE__ */ i(
|
|
110
110
|
"p",
|
|
111
111
|
{
|
|
112
|
-
className: `mt-1 text-xs ${
|
|
113
|
-
role:
|
|
112
|
+
className: `mt-1 text-xs ${v === "invalid" ? "text-red-600 dark:text-red-500" : "text-green-600 dark:text-green-500"}`,
|
|
113
|
+
role: v === "invalid" ? "alert" : void 0,
|
|
114
114
|
children: m
|
|
115
115
|
}
|
|
116
116
|
)
|
|
@@ -152,31 +152,31 @@ const de = {
|
|
|
152
152
|
default:
|
|
153
153
|
return "border-gray-300 focus:ring-blue-500";
|
|
154
154
|
}
|
|
155
|
-
}, be =
|
|
155
|
+
}, be = X((e, n) => {
|
|
156
156
|
const {
|
|
157
157
|
label: t,
|
|
158
158
|
id: r,
|
|
159
159
|
inputSize: s = "md",
|
|
160
|
-
shape:
|
|
161
|
-
validate:
|
|
162
|
-
onValidatedChange:
|
|
163
|
-
className:
|
|
160
|
+
shape: u = "rounded",
|
|
161
|
+
validate: c,
|
|
162
|
+
onValidatedChange: d,
|
|
163
|
+
className: l = "",
|
|
164
164
|
icon: a,
|
|
165
165
|
iconPosition: o = "left",
|
|
166
|
-
floatingLabelStyle:
|
|
166
|
+
floatingLabelStyle: f,
|
|
167
167
|
onChange: p,
|
|
168
168
|
isValid: b,
|
|
169
169
|
isInvalid: g,
|
|
170
170
|
feedback: m,
|
|
171
|
-
feedbackType:
|
|
172
|
-
children:
|
|
173
|
-
...
|
|
174
|
-
} = e, [
|
|
175
|
-
const
|
|
176
|
-
|
|
177
|
-
},
|
|
178
|
-
return /* @__PURE__ */
|
|
179
|
-
!
|
|
171
|
+
feedbackType: v = "invalid",
|
|
172
|
+
children: h,
|
|
173
|
+
...N
|
|
174
|
+
} = e, [k, C] = I("default"), S = se(), x = P(() => r || (typeof t == "string" ? `select-${t.toLowerCase().replace(/\s+/g, "-")}` : S), [r, t, S]), $ = (A) => {
|
|
175
|
+
const R = A.target.value, G = (c == null ? void 0 : c(R)) ?? "default";
|
|
176
|
+
C(G), d == null || d(A, G), p == null || p(A);
|
|
177
|
+
}, E = !!f, y = de[s], L = ue[u], O = ge(k, b, g);
|
|
178
|
+
return /* @__PURE__ */ w("div", { className: `w-full relative ${E ? "z-0" : ""}`, children: [
|
|
179
|
+
!E && t && /* @__PURE__ */ i(
|
|
180
180
|
"label",
|
|
181
181
|
{
|
|
182
182
|
htmlFor: x,
|
|
@@ -184,41 +184,41 @@ const de = {
|
|
|
184
184
|
children: t
|
|
185
185
|
}
|
|
186
186
|
),
|
|
187
|
-
/* @__PURE__ */
|
|
188
|
-
a && /* @__PURE__ */
|
|
187
|
+
/* @__PURE__ */ w("div", { className: "relative w-full", children: [
|
|
188
|
+
a && /* @__PURE__ */ i(
|
|
189
189
|
"div",
|
|
190
190
|
{
|
|
191
191
|
className: `absolute inset-y-0 flex items-center ${o === "start" || o === "left" ? "left-0 ps-3.5" : "right-0 pe-3.5"}`,
|
|
192
|
-
children: /* @__PURE__ */
|
|
192
|
+
children: /* @__PURE__ */ i("span", { className: "text-gray-500", children: a })
|
|
193
193
|
}
|
|
194
194
|
),
|
|
195
|
-
/* @__PURE__ */
|
|
195
|
+
/* @__PURE__ */ i(
|
|
196
196
|
"select",
|
|
197
197
|
{
|
|
198
|
-
...
|
|
198
|
+
...N,
|
|
199
199
|
id: x,
|
|
200
200
|
ref: n,
|
|
201
|
-
onChange:
|
|
201
|
+
onChange: $,
|
|
202
202
|
className: `border peer w-full block font-normal appearance-none focus:outline-none focus:ring-0 transition text-gray-600 placeholder-[#798ba5] border-gray-400
|
|
203
|
-
${
|
|
204
|
-
${
|
|
205
|
-
${L} ${
|
|
206
|
-
children:
|
|
203
|
+
${y} ${a && (o === "start" || o === "left") ? "ps-10" : a ? "pe-10" : ""}
|
|
204
|
+
${E && f && fe[f]}
|
|
205
|
+
${L} ${O} ${l}`,
|
|
206
|
+
children: h
|
|
207
207
|
}
|
|
208
208
|
),
|
|
209
|
-
|
|
209
|
+
E && t && f && /* @__PURE__ */ i(
|
|
210
210
|
"label",
|
|
211
211
|
{
|
|
212
212
|
htmlFor: x,
|
|
213
|
-
className: `ms-1 ${pe[
|
|
213
|
+
className: `ms-1 ${pe[f]} ${l}`,
|
|
214
214
|
children: t
|
|
215
215
|
}
|
|
216
216
|
)
|
|
217
217
|
] }),
|
|
218
|
-
m && /* @__PURE__ */
|
|
218
|
+
m && /* @__PURE__ */ i(
|
|
219
219
|
"p",
|
|
220
220
|
{
|
|
221
|
-
className: `mt-1 text-xs ${
|
|
221
|
+
className: `mt-1 text-xs ${v === "invalid" ? "text-red-600" : "text-green-600"}`,
|
|
222
222
|
children: m
|
|
223
223
|
}
|
|
224
224
|
)
|
|
@@ -268,22 +268,22 @@ const me = {
|
|
|
268
268
|
size: t = "md",
|
|
269
269
|
type: r = "button",
|
|
270
270
|
shape: s = "rounded",
|
|
271
|
-
className:
|
|
272
|
-
isLoading:
|
|
273
|
-
disabled:
|
|
274
|
-
...
|
|
271
|
+
className: u = "",
|
|
272
|
+
isLoading: c = !1,
|
|
273
|
+
disabled: d = !1,
|
|
274
|
+
...l
|
|
275
275
|
}) => {
|
|
276
|
-
const a =
|
|
276
|
+
const a = d || c, o = [
|
|
277
277
|
"inline-flex items-center justify-center font-normal transition duration-150",
|
|
278
278
|
me[n],
|
|
279
279
|
xe[t],
|
|
280
280
|
he[s],
|
|
281
281
|
s === "flat" ? "shadow-none" : "shadow-sm",
|
|
282
282
|
a ? "opacity-50 cursor-not-allowed" : "cursor-pointer",
|
|
283
|
-
|
|
283
|
+
u
|
|
284
284
|
].filter(Boolean).join(" ");
|
|
285
|
-
return /* @__PURE__ */
|
|
286
|
-
|
|
285
|
+
return /* @__PURE__ */ w("button", { type: r, className: o, disabled: a, ...l, children: [
|
|
286
|
+
c && /* @__PURE__ */ w(
|
|
287
287
|
"svg",
|
|
288
288
|
{
|
|
289
289
|
"aria-hidden": "true",
|
|
@@ -293,14 +293,14 @@ const me = {
|
|
|
293
293
|
fill: "none",
|
|
294
294
|
xmlns: "http://www.w3.org/2000/svg",
|
|
295
295
|
children: [
|
|
296
|
-
/* @__PURE__ */
|
|
296
|
+
/* @__PURE__ */ i(
|
|
297
297
|
"path",
|
|
298
298
|
{
|
|
299
299
|
d: "M100 50.5908C100 78.2051 77.6142 100.591 50 100.591C22.3858 100.591 0 78.2051 0 50.5908C0 22.9766 22.3858 0.59082 50 0.59082C77.6142 0.59082 100 22.9766 100 50.5908ZM9.08144 50.5908C9.08144 73.1895 27.4013 91.5094 50 91.5094C72.5987 91.5094 90.9186 73.1895 90.9186 50.5908C90.9186 27.9921 72.5987 9.67226 50 9.67226C27.4013 9.67226 9.08144 27.9921 9.08144 50.5908Z",
|
|
300
300
|
fill: "currentColor"
|
|
301
301
|
}
|
|
302
302
|
),
|
|
303
|
-
/* @__PURE__ */
|
|
303
|
+
/* @__PURE__ */ i(
|
|
304
304
|
"path",
|
|
305
305
|
{
|
|
306
306
|
d: "M93.9676 39.0409C96.393 38.4038 97.8624 35.9116 97.0079 33.5539C95.2932 28.8227 92.871 24.3692 89.8167 20.348C85.8452 15.1192 80.8826 10.7238 75.2124 7.41289C69.5422 4.10194 63.2754 1.94025 56.7698 1.05124C51.7666 0.367541 46.6976 0.446843 41.7345 1.27873C39.2613 1.69328 37.813 4.19778 38.4501 6.62326C39.0873 9.04874 41.5694 10.4717 44.0505 10.1071C47.8511 9.54855 51.7191 9.52689 55.5402 10.0491C60.8642 10.7766 65.9928 12.5457 70.6331 15.2552C75.2735 17.9648 79.3347 21.5619 82.5849 25.841C84.9175 28.9121 86.7997 32.2913 88.1811 35.8758C89.083 38.2158 91.5421 39.6781 93.9676 39.0409Z",
|
|
@@ -314,75 +314,79 @@ const me = {
|
|
|
314
314
|
] });
|
|
315
315
|
}, _e = ({
|
|
316
316
|
label: e,
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
317
|
+
header: n,
|
|
318
|
+
items: t = [],
|
|
319
|
+
onSelect: r,
|
|
320
|
+
renderItem: s,
|
|
321
|
+
position: u = "right",
|
|
322
|
+
className: c = "",
|
|
323
|
+
menuClassName: d = "",
|
|
324
|
+
width: l = "w-48",
|
|
325
|
+
closeOnSelect: a = !1,
|
|
326
|
+
transition: o = !0,
|
|
327
|
+
ariaLabel: f = "Dropdown menu",
|
|
328
|
+
...p
|
|
328
329
|
}) => {
|
|
329
|
-
const [
|
|
330
|
+
const [b, g] = I(!1), [m, v] = I(!1), h = _(null), N = _(null), k = P(() => ({
|
|
330
331
|
left: "left-0",
|
|
331
332
|
center: "left-1/2 transform -translate-x-1/2",
|
|
332
333
|
right: "right-0"
|
|
333
|
-
})[
|
|
334
|
-
const
|
|
335
|
-
if (!
|
|
336
|
-
const { top:
|
|
337
|
-
|
|
338
|
-
}, []),
|
|
339
|
-
var
|
|
340
|
-
!((
|
|
341
|
-
}, []),
|
|
342
|
-
|
|
343
|
-
if (
|
|
344
|
-
return
|
|
345
|
-
window.removeEventListener("resize",
|
|
334
|
+
})[u], [u]), C = j(() => {
|
|
335
|
+
const y = N.current, L = h.current;
|
|
336
|
+
if (!y || !L) return;
|
|
337
|
+
const { top: O, bottom: M } = y.getBoundingClientRect(), D = L.offsetHeight, A = window.innerHeight - M, R = O;
|
|
338
|
+
v(A < D && R > D);
|
|
339
|
+
}, []), S = j((y) => {
|
|
340
|
+
var L, O;
|
|
341
|
+
!((L = h.current) != null && L.contains(y.target)) && !((O = N.current) != null && O.contains(y.target)) && g(!1);
|
|
342
|
+
}, []), x = j(() => g((y) => !y), []), $ = j(() => g(!1), []);
|
|
343
|
+
T(() => {
|
|
344
|
+
if (b)
|
|
345
|
+
return C(), window.addEventListener("resize", C), window.addEventListener("scroll", C, !0), () => {
|
|
346
|
+
window.removeEventListener("resize", C), window.removeEventListener("scroll", C, !0);
|
|
346
347
|
};
|
|
347
|
-
}, [
|
|
348
|
-
const E =
|
|
348
|
+
}, [b, C]), T(() => (document.addEventListener("mousedown", S), () => document.removeEventListener("mousedown", S)), [S]);
|
|
349
|
+
const E = P(
|
|
349
350
|
() => [
|
|
350
351
|
"absolute z-50 bg-white rounded shadow-lg overflow-hidden",
|
|
351
|
-
|
|
352
|
+
m ? "bottom-full mb-2" : "top-full mt-2",
|
|
352
353
|
k,
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
354
|
+
l,
|
|
355
|
+
o && "transition-all duration-200 ease-out",
|
|
356
|
+
d
|
|
356
357
|
].filter(Boolean).join(" "),
|
|
357
|
-
[
|
|
358
|
+
[m, k, l, o, d]
|
|
358
359
|
);
|
|
359
|
-
return /* @__PURE__ */
|
|
360
|
-
/* @__PURE__ */
|
|
360
|
+
return /* @__PURE__ */ w("div", { className: `relative inline-block ${c}`, ...p, children: [
|
|
361
|
+
/* @__PURE__ */ i(
|
|
361
362
|
"button",
|
|
362
363
|
{
|
|
363
|
-
ref:
|
|
364
|
-
onClick:
|
|
364
|
+
ref: N,
|
|
365
|
+
onClick: x,
|
|
365
366
|
"aria-haspopup": "true",
|
|
366
|
-
"aria-expanded":
|
|
367
|
-
"aria-label":
|
|
367
|
+
"aria-expanded": b,
|
|
368
|
+
"aria-label": f,
|
|
368
369
|
className: "focus:outline-none",
|
|
369
370
|
children: e
|
|
370
371
|
}
|
|
371
372
|
),
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
{
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
373
|
+
b && /* @__PURE__ */ w("div", { ref: h, role: "menu", className: E, children: [
|
|
374
|
+
n && n,
|
|
375
|
+
t.map((y, L) => {
|
|
376
|
+
const O = () => {
|
|
377
|
+
r && r(y.value), a && $();
|
|
378
|
+
};
|
|
379
|
+
return /* @__PURE__ */ i("div", { children: s ? s(y, O) : /* @__PURE__ */ i(
|
|
380
|
+
"div",
|
|
381
|
+
{
|
|
382
|
+
onClick: O,
|
|
383
|
+
className: "px-4 py-2 text-sm text-gray-800 hover:bg-gray-100 cursor-pointer",
|
|
384
|
+
role: "menuitem",
|
|
385
|
+
children: y.label
|
|
386
|
+
}
|
|
387
|
+
) }, L);
|
|
388
|
+
})
|
|
389
|
+
] })
|
|
386
390
|
] });
|
|
387
391
|
}, Be = ({
|
|
388
392
|
children: e,
|
|
@@ -390,22 +394,22 @@ const me = {
|
|
|
390
394
|
position: t = "top",
|
|
391
395
|
className: r = "",
|
|
392
396
|
tooltipClass: s = "",
|
|
393
|
-
tooltipStyle:
|
|
397
|
+
tooltipStyle: u = {}
|
|
394
398
|
}) => {
|
|
395
|
-
const
|
|
396
|
-
|
|
397
|
-
const a =
|
|
399
|
+
const c = _(null), d = _(null);
|
|
400
|
+
T(() => {
|
|
401
|
+
const a = c.current, o = d.current;
|
|
398
402
|
if (!a || !o) return;
|
|
399
|
-
const
|
|
403
|
+
const f = () => {
|
|
400
404
|
o.style.opacity = "1", o.style.visibility = "visible";
|
|
401
405
|
}, p = () => {
|
|
402
406
|
o.style.opacity = "0", o.style.visibility = "hidden";
|
|
403
407
|
};
|
|
404
|
-
return a.addEventListener("mouseenter",
|
|
405
|
-
a.removeEventListener("mouseenter",
|
|
408
|
+
return a.addEventListener("mouseenter", f), a.addEventListener("mouseleave", p), () => {
|
|
409
|
+
a.removeEventListener("mouseenter", f), a.removeEventListener("mouseleave", p);
|
|
406
410
|
};
|
|
407
411
|
}, []);
|
|
408
|
-
const
|
|
412
|
+
const l = (a) => {
|
|
409
413
|
const o = {
|
|
410
414
|
position: "absolute",
|
|
411
415
|
opacity: 0,
|
|
@@ -460,17 +464,17 @@ const me = {
|
|
|
460
464
|
return o;
|
|
461
465
|
}
|
|
462
466
|
};
|
|
463
|
-
return /* @__PURE__ */
|
|
467
|
+
return /* @__PURE__ */ w("div", { ref: c, className: `relative inline-block ${r}`, children: [
|
|
464
468
|
e,
|
|
465
|
-
/* @__PURE__ */
|
|
469
|
+
/* @__PURE__ */ i(
|
|
466
470
|
"div",
|
|
467
471
|
{
|
|
468
|
-
ref:
|
|
472
|
+
ref: d,
|
|
469
473
|
role: "tooltip",
|
|
470
474
|
className: s,
|
|
471
475
|
style: {
|
|
472
|
-
...
|
|
473
|
-
...
|
|
476
|
+
...l(t),
|
|
477
|
+
...u
|
|
474
478
|
},
|
|
475
479
|
children: n
|
|
476
480
|
}
|
|
@@ -511,40 +515,40 @@ const me = {
|
|
|
511
515
|
size: t = "sm",
|
|
512
516
|
shape: r = "rounded",
|
|
513
517
|
icon: s,
|
|
514
|
-
dismissible:
|
|
515
|
-
onDismiss:
|
|
516
|
-
className:
|
|
517
|
-
...
|
|
518
|
+
dismissible: u,
|
|
519
|
+
onDismiss: c,
|
|
520
|
+
className: d = "",
|
|
521
|
+
...l
|
|
518
522
|
}) => {
|
|
519
|
-
const a = !e && !!s, o = `inline-flex items-center font-medium ${ye[n] || ""} ${we[t] || ""} ${ve[r] || ""} ${a ? "justify-center p-2 w-8 h-8" : ""} ` +
|
|
520
|
-
return /* @__PURE__ */
|
|
521
|
-
s && /* @__PURE__ */
|
|
523
|
+
const a = !e && !!s, o = `inline-flex items-center font-medium ${ye[n] || ""} ${we[t] || ""} ${ve[r] || ""} ${a ? "justify-center p-2 w-8 h-8" : ""} ` + d;
|
|
524
|
+
return /* @__PURE__ */ w("span", { className: o.trim(), ...l, children: [
|
|
525
|
+
s && /* @__PURE__ */ i("span", { className: e ? "mr-1" : "", children: s }),
|
|
522
526
|
e,
|
|
523
|
-
|
|
527
|
+
u && /* @__PURE__ */ i(
|
|
524
528
|
"button",
|
|
525
529
|
{
|
|
526
530
|
type: "button",
|
|
527
|
-
onClick:
|
|
531
|
+
onClick: c,
|
|
528
532
|
className: "ml-2 text-xs font-bold leading-none focus:outline-none",
|
|
529
533
|
children: "×"
|
|
530
534
|
}
|
|
531
535
|
)
|
|
532
536
|
] });
|
|
533
537
|
};
|
|
534
|
-
var
|
|
538
|
+
var Q = {
|
|
535
539
|
color: void 0,
|
|
536
540
|
size: void 0,
|
|
537
541
|
className: void 0,
|
|
538
542
|
style: void 0,
|
|
539
543
|
attr: void 0
|
|
540
|
-
},
|
|
544
|
+
}, U = z.createContext && /* @__PURE__ */ z.createContext(Q), Ce = ["attr", "size", "title"];
|
|
541
545
|
function Se(e, n) {
|
|
542
546
|
if (e == null) return {};
|
|
543
547
|
var t = Ne(e, n), r, s;
|
|
544
548
|
if (Object.getOwnPropertySymbols) {
|
|
545
|
-
var
|
|
546
|
-
for (s = 0; s <
|
|
547
|
-
r =
|
|
549
|
+
var u = Object.getOwnPropertySymbols(e);
|
|
550
|
+
for (s = 0; s < u.length; s++)
|
|
551
|
+
r = u[s], !(n.indexOf(r) >= 0) && Object.prototype.propertyIsEnumerable.call(e, r) && (t[r] = e[r]);
|
|
548
552
|
}
|
|
549
553
|
return t;
|
|
550
554
|
}
|
|
@@ -568,7 +572,7 @@ function B() {
|
|
|
568
572
|
return e;
|
|
569
573
|
}, B.apply(this, arguments);
|
|
570
574
|
}
|
|
571
|
-
function
|
|
575
|
+
function q(e, n) {
|
|
572
576
|
var t = Object.keys(e);
|
|
573
577
|
if (Object.getOwnPropertySymbols) {
|
|
574
578
|
var r = Object.getOwnPropertySymbols(e);
|
|
@@ -581,9 +585,9 @@ function U(e, n) {
|
|
|
581
585
|
function F(e) {
|
|
582
586
|
for (var n = 1; n < arguments.length; n++) {
|
|
583
587
|
var t = arguments[n] != null ? arguments[n] : {};
|
|
584
|
-
n % 2 ?
|
|
588
|
+
n % 2 ? q(Object(t), !0).forEach(function(r) {
|
|
585
589
|
ke(e, r, t[r]);
|
|
586
|
-
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) :
|
|
590
|
+
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : q(Object(t)).forEach(function(r) {
|
|
587
591
|
Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r));
|
|
588
592
|
});
|
|
589
593
|
}
|
|
@@ -606,41 +610,41 @@ function Ee(e, n) {
|
|
|
606
610
|
}
|
|
607
611
|
return (n === "string" ? String : Number)(e);
|
|
608
612
|
}
|
|
609
|
-
function
|
|
610
|
-
return e && e.map((n, t) => /* @__PURE__ */
|
|
613
|
+
function V(e) {
|
|
614
|
+
return e && e.map((n, t) => /* @__PURE__ */ z.createElement(n.tag, F({
|
|
611
615
|
key: t
|
|
612
|
-
}, n.attr),
|
|
616
|
+
}, n.attr), V(n.child)));
|
|
613
617
|
}
|
|
614
|
-
function
|
|
615
|
-
return (n) => /* @__PURE__ */
|
|
618
|
+
function ee(e) {
|
|
619
|
+
return (n) => /* @__PURE__ */ z.createElement(Le, B({
|
|
616
620
|
attr: F({}, e.attr)
|
|
617
|
-
}, n),
|
|
621
|
+
}, n), V(e.child));
|
|
618
622
|
}
|
|
619
623
|
function Le(e) {
|
|
620
624
|
var n = (t) => {
|
|
621
625
|
var {
|
|
622
626
|
attr: r,
|
|
623
627
|
size: s,
|
|
624
|
-
title:
|
|
625
|
-
} = e,
|
|
626
|
-
return t.className && (
|
|
628
|
+
title: u
|
|
629
|
+
} = e, c = Se(e, Ce), d = s || t.size || "1em", l;
|
|
630
|
+
return t.className && (l = t.className), e.className && (l = (l ? l + " " : "") + e.className), /* @__PURE__ */ z.createElement("svg", B({
|
|
627
631
|
stroke: "currentColor",
|
|
628
632
|
fill: "currentColor",
|
|
629
633
|
strokeWidth: "0"
|
|
630
|
-
}, t.attr, r,
|
|
631
|
-
className:
|
|
634
|
+
}, t.attr, r, c, {
|
|
635
|
+
className: l,
|
|
632
636
|
style: F(F({
|
|
633
637
|
color: e.color || t.color
|
|
634
638
|
}, t.style), e.style),
|
|
635
|
-
height:
|
|
636
|
-
width:
|
|
639
|
+
height: d,
|
|
640
|
+
width: d,
|
|
637
641
|
xmlns: "http://www.w3.org/2000/svg"
|
|
638
|
-
}),
|
|
642
|
+
}), u && /* @__PURE__ */ z.createElement("title", null, u), e.children);
|
|
639
643
|
};
|
|
640
|
-
return
|
|
644
|
+
return U !== void 0 ? /* @__PURE__ */ z.createElement(U.Consumer, null, (t) => n(t)) : n(Q);
|
|
641
645
|
}
|
|
642
646
|
function Oe(e) {
|
|
643
|
-
return
|
|
647
|
+
return ee({ attr: { viewBox: "0 0 512 512" }, child: [{ tag: "path", attr: { d: "M256 294.1L383 167c9.4-9.4 24.6-9.4 33.9 0s9.3 24.6 0 34L273 345c-9.1 9.1-23.7 9.3-33.1.7L95 201.1c-4.7-4.7-7-10.9-7-17s2.3-12.3 7-17c9.4-9.4 24.6-9.4 33.9 0l127.1 127z" }, child: [] }] })(e);
|
|
644
648
|
}
|
|
645
649
|
const Re = ({
|
|
646
650
|
items: e,
|
|
@@ -648,56 +652,56 @@ const Re = ({
|
|
|
648
652
|
className: t = "",
|
|
649
653
|
tileClasses: r = "",
|
|
650
654
|
open: s,
|
|
651
|
-
onChange:
|
|
652
|
-
renderTitle:
|
|
653
|
-
renderContent:
|
|
654
|
-
showArrowIcon:
|
|
655
|
+
onChange: u,
|
|
656
|
+
renderTitle: c,
|
|
657
|
+
renderContent: d,
|
|
658
|
+
showArrowIcon: l = !0,
|
|
655
659
|
panelClasses: a = ""
|
|
656
660
|
}) => {
|
|
657
|
-
const [o,
|
|
661
|
+
const [o, f] = I(/* @__PURE__ */ new Set()), p = P(() => s ? new Set(s) : o, [s, o]), b = j(
|
|
658
662
|
(g) => {
|
|
659
663
|
const m = new Set(p);
|
|
660
|
-
m.has(g) ? m.delete(g) : (n || m.clear(), m.add(g)), s &&
|
|
664
|
+
m.has(g) ? m.delete(g) : (n || m.clear(), m.add(g)), s && u ? u(Array.from(m)) : f(m);
|
|
661
665
|
},
|
|
662
|
-
[p, s,
|
|
666
|
+
[p, s, u, n]
|
|
663
667
|
);
|
|
664
|
-
return /* @__PURE__ */
|
|
668
|
+
return /* @__PURE__ */ i(
|
|
665
669
|
"div",
|
|
666
670
|
{
|
|
667
671
|
className: "accordion",
|
|
668
672
|
role: "region",
|
|
669
673
|
"aria-multiselectable": n,
|
|
670
674
|
children: e.map((g) => {
|
|
671
|
-
const m = p.has(g.id),
|
|
672
|
-
return /* @__PURE__ */
|
|
675
|
+
const m = p.has(g.id), v = `accordion-heading-${g.id}`, h = `accordion-panel-${g.id}`;
|
|
676
|
+
return /* @__PURE__ */ w(
|
|
673
677
|
"div",
|
|
674
678
|
{
|
|
675
679
|
className: `accordion-item border rounded border-gray-300 dark:border-gray-700 ${t}`,
|
|
676
680
|
children: [
|
|
677
|
-
/* @__PURE__ */
|
|
681
|
+
/* @__PURE__ */ w(
|
|
678
682
|
"button",
|
|
679
683
|
{
|
|
680
|
-
id:
|
|
684
|
+
id: v,
|
|
681
685
|
type: "button",
|
|
682
686
|
"aria-expanded": m,
|
|
683
|
-
"aria-controls":
|
|
687
|
+
"aria-controls": h,
|
|
684
688
|
onClick: () => b(g.id),
|
|
685
689
|
className: `flex justify-between items-center w-full p-1.5 text-left text-gray-700 dark:text-gray-300 hover:bg-gray-100 dark:hover:bg-gray-800 focus:outline-none gap-3 ${r}`,
|
|
686
690
|
children: [
|
|
687
|
-
|
|
688
|
-
|
|
691
|
+
c ? c(g, m) : g.title,
|
|
692
|
+
l ? /* @__PURE__ */ i(Oe, {}) : null
|
|
689
693
|
]
|
|
690
694
|
}
|
|
691
695
|
),
|
|
692
|
-
/* @__PURE__ */
|
|
696
|
+
/* @__PURE__ */ i(
|
|
693
697
|
"div",
|
|
694
698
|
{
|
|
695
|
-
id:
|
|
699
|
+
id: h,
|
|
696
700
|
role: "region",
|
|
697
|
-
"aria-labelledby":
|
|
701
|
+
"aria-labelledby": v,
|
|
698
702
|
hidden: !m,
|
|
699
703
|
className: `p-4 border-t border-gray-200 dark:border-gray-700 text-gray-600 dark:text-gray-400 ${a}`,
|
|
700
|
-
children:
|
|
704
|
+
children: d ? d(g, m) : g.content
|
|
701
705
|
}
|
|
702
706
|
)
|
|
703
707
|
]
|
|
@@ -707,74 +711,74 @@ const Re = ({
|
|
|
707
711
|
})
|
|
708
712
|
}
|
|
709
713
|
);
|
|
710
|
-
},
|
|
711
|
-
const e =
|
|
714
|
+
}, te = Y(null), re = () => {
|
|
715
|
+
const e = J(te);
|
|
712
716
|
if (!e)
|
|
713
717
|
throw new Error(
|
|
714
718
|
"useModalActions must be used within a ModalActionProvider"
|
|
715
719
|
);
|
|
716
720
|
return e;
|
|
717
|
-
},
|
|
721
|
+
}, ne = Y(null), oe = () => J(ne);
|
|
718
722
|
function He({
|
|
719
723
|
id: e,
|
|
720
724
|
title: n,
|
|
721
725
|
children: t,
|
|
722
726
|
standalone: r = !1,
|
|
723
727
|
showFloatingClose: s = !1,
|
|
724
|
-
containerClasses:
|
|
725
|
-
onClose:
|
|
726
|
-
disableEscapeClose:
|
|
728
|
+
containerClasses: u = "",
|
|
729
|
+
onClose: c,
|
|
730
|
+
disableEscapeClose: d = !1
|
|
727
731
|
}) {
|
|
728
|
-
const
|
|
729
|
-
o ? a.closeModal(e) : p(!1),
|
|
730
|
-
}, [o, a, e,
|
|
731
|
-
return
|
|
732
|
-
const
|
|
732
|
+
const l = oe(), a = re(), o = !r && !!l && !!a, [f, p] = I(!1), b = o ? l.isOpen(e) : f, g = o ? l.getModalData(e) : null, m = j(() => {
|
|
733
|
+
o ? a.closeModal(e) : p(!1), c == null || c();
|
|
734
|
+
}, [o, a, e, c]);
|
|
735
|
+
return T(() => {
|
|
736
|
+
const v = document.activeElement;
|
|
733
737
|
console.log(e);
|
|
734
|
-
const
|
|
735
|
-
console.log("modalEl=",
|
|
736
|
-
const
|
|
738
|
+
const h = document.getElementById(e);
|
|
739
|
+
console.log("modalEl=", h);
|
|
740
|
+
const N = [
|
|
737
741
|
"a[href]",
|
|
738
742
|
"button:not([disabled])",
|
|
739
743
|
"textarea:not([disabled])",
|
|
740
744
|
"input:not([disabled])",
|
|
741
745
|
"select:not([disabled])",
|
|
742
746
|
'[tabindex]:not([tabindex="-1"])'
|
|
743
|
-
],
|
|
744
|
-
if (!
|
|
745
|
-
const x =
|
|
746
|
-
|
|
747
|
+
], k = () => {
|
|
748
|
+
if (!h) return [];
|
|
749
|
+
const x = h.querySelectorAll(
|
|
750
|
+
N.join(",")
|
|
747
751
|
);
|
|
748
|
-
return Array.from(x).filter((
|
|
749
|
-
},
|
|
752
|
+
return Array.from(x).filter(($) => $.offsetParent !== null);
|
|
753
|
+
}, C = (x) => {
|
|
750
754
|
if (x.key === "Tab") {
|
|
751
|
-
const
|
|
752
|
-
if (
|
|
753
|
-
const
|
|
754
|
-
x.shiftKey ? document.activeElement ===
|
|
755
|
+
const $ = k();
|
|
756
|
+
if ($.length === 0) return;
|
|
757
|
+
const E = $[0], y = $[$.length - 1];
|
|
758
|
+
x.shiftKey ? document.activeElement === E && (x.preventDefault(), y.focus()) : document.activeElement === y && (x.preventDefault(), E.focus());
|
|
755
759
|
}
|
|
756
|
-
},
|
|
757
|
-
x.key === "Escape" && !
|
|
760
|
+
}, S = (x) => {
|
|
761
|
+
x.key === "Escape" && !d && m(), C(x);
|
|
758
762
|
};
|
|
759
763
|
return b && (document.body.style.overflow = "hidden", setTimeout(() => {
|
|
760
|
-
const x =
|
|
764
|
+
const x = k();
|
|
761
765
|
x.length && x[0].focus();
|
|
762
|
-
}, 0), window.addEventListener("keydown",
|
|
763
|
-
document.body.style.overflow = "",
|
|
766
|
+
}, 0), window.addEventListener("keydown", S)), () => {
|
|
767
|
+
document.body.style.overflow = "", v && v.focus(), window.removeEventListener("keydown", S);
|
|
764
768
|
};
|
|
765
|
-
}, [b,
|
|
769
|
+
}, [b, d, m, e]), b ? /* @__PURE__ */ i(
|
|
766
770
|
"div",
|
|
767
771
|
{
|
|
768
772
|
className: "fixed inset-0 z-50 flex items-center justify-center bg-black/60 backdrop-blur-[2px]",
|
|
769
773
|
id: e,
|
|
770
|
-
children: /* @__PURE__ */
|
|
774
|
+
children: /* @__PURE__ */ w(
|
|
771
775
|
"div",
|
|
772
776
|
{
|
|
773
|
-
className: `bg-white rounded-lg shadow-lg w-full max-w-md p-4 transform transition-all duration-300 scale-100 ${
|
|
777
|
+
className: `bg-white rounded-lg shadow-lg w-full max-w-md p-4 transform transition-all duration-300 scale-100 ${u}`,
|
|
774
778
|
children: [
|
|
775
|
-
/* @__PURE__ */
|
|
776
|
-
n && /* @__PURE__ */
|
|
777
|
-
s && /* @__PURE__ */
|
|
779
|
+
/* @__PURE__ */ w("div", { className: "flex justify-between items-center relative", children: [
|
|
780
|
+
n && /* @__PURE__ */ i("h2", { className: "text-lg font-semibold", children: n }),
|
|
781
|
+
s && /* @__PURE__ */ i(
|
|
778
782
|
"button",
|
|
779
783
|
{
|
|
780
784
|
onClick: m,
|
|
@@ -784,7 +788,7 @@ function He({
|
|
|
784
788
|
}
|
|
785
789
|
)
|
|
786
790
|
] }),
|
|
787
|
-
/* @__PURE__ */
|
|
791
|
+
/* @__PURE__ */ i("div", { className: "mt-3 text-sm text-gray-700", children: typeof t == "function" ? t({ modalData: g }) : t })
|
|
788
792
|
]
|
|
789
793
|
}
|
|
790
794
|
)
|
|
@@ -794,85 +798,85 @@ function He({
|
|
|
794
798
|
function Ze({
|
|
795
799
|
children: e
|
|
796
800
|
}) {
|
|
797
|
-
const [n, t] =
|
|
798
|
-
t((b) => ({ ...b, [
|
|
799
|
-
}, []),
|
|
800
|
-
t((p) => ({ ...p, [
|
|
801
|
+
const [n, t] = I({}), [r, s] = I({}), u = j((f, p) => {
|
|
802
|
+
t((b) => ({ ...b, [f]: !0 })), p && s((b) => ({ ...b, [f]: p }));
|
|
803
|
+
}, []), c = j((f) => {
|
|
804
|
+
t((p) => ({ ...p, [f]: !1 })), s((p) => {
|
|
801
805
|
const b = { ...p };
|
|
802
|
-
return delete b[
|
|
806
|
+
return delete b[f], b;
|
|
803
807
|
});
|
|
804
|
-
}, []),
|
|
805
|
-
(
|
|
808
|
+
}, []), d = j((f) => !!n[f], [n]), l = j(
|
|
809
|
+
(f) => r[f],
|
|
806
810
|
[r]
|
|
807
|
-
), a =
|
|
808
|
-
() => ({ openModal:
|
|
809
|
-
[
|
|
810
|
-
), o =
|
|
811
|
-
() => ({ isOpen:
|
|
812
|
-
[
|
|
811
|
+
), a = P(
|
|
812
|
+
() => ({ openModal: u, closeModal: c }),
|
|
813
|
+
[u, c]
|
|
814
|
+
), o = P(
|
|
815
|
+
() => ({ isOpen: d, getModalData: l }),
|
|
816
|
+
[d, l]
|
|
813
817
|
);
|
|
814
|
-
return /* @__PURE__ */
|
|
818
|
+
return /* @__PURE__ */ i(te.Provider, { value: a, children: /* @__PURE__ */ i(ne.Provider, { value: o, children: e }) });
|
|
815
819
|
}
|
|
816
820
|
function Ge(e) {
|
|
817
|
-
const { openModal: n, closeModal: t } =
|
|
821
|
+
const { openModal: n, closeModal: t } = re(), { isOpen: r, getModalData: s } = oe();
|
|
818
822
|
return {
|
|
819
|
-
open: (
|
|
823
|
+
open: (u) => n(e, u),
|
|
820
824
|
close: () => t(e),
|
|
821
825
|
isOpen: r(e),
|
|
822
826
|
data: s(e)
|
|
823
827
|
};
|
|
824
828
|
}
|
|
825
|
-
let
|
|
829
|
+
let H = null, Z = {};
|
|
826
830
|
function Pe(e) {
|
|
827
|
-
|
|
831
|
+
H = e;
|
|
828
832
|
}
|
|
829
833
|
function We(e) {
|
|
830
|
-
|
|
834
|
+
Z = { ...Z, ...e };
|
|
831
835
|
}
|
|
832
836
|
function je() {
|
|
833
|
-
return
|
|
837
|
+
return Z;
|
|
834
838
|
}
|
|
835
839
|
function Ke(e, n, t = 3e3, r) {
|
|
836
|
-
|
|
840
|
+
H ? H(e, n, t, r) : console.warn("Toast system is not mounted");
|
|
837
841
|
}
|
|
838
842
|
function Ie(e) {
|
|
839
|
-
return
|
|
843
|
+
return ee({ attr: { viewBox: "0 0 15 15", fill: "none" }, child: [{ tag: "path", attr: { fillRule: "evenodd", clipRule: "evenodd", d: "M11.7816 4.03157C12.0062 3.80702 12.0062 3.44295 11.7816 3.2184C11.5571 2.99385 11.193 2.99385 10.9685 3.2184L7.50005 6.68682L4.03164 3.2184C3.80708 2.99385 3.44301 2.99385 3.21846 3.2184C2.99391 3.44295 2.99391 3.80702 3.21846 4.03157L6.68688 7.49999L3.21846 10.9684C2.99391 11.193 2.99391 11.557 3.21846 11.7816C3.44301 12.0061 3.80708 12.0061 4.03164 11.7816L7.50005 8.31316L10.9685 11.7816C11.193 12.0061 11.5571 12.0061 11.7816 11.7816C12.0062 11.557 12.0062 11.193 11.7816 10.9684L8.31322 7.49999L11.7816 4.03157Z", fill: "currentColor" }, child: [] }] })(e);
|
|
840
844
|
}
|
|
841
845
|
const Ae = () => "xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(/[xy]/g, function(e) {
|
|
842
846
|
const n = Math.random() * 16 | 0;
|
|
843
847
|
return (e === "x" ? n : n & 3 | 8).toString(16);
|
|
844
848
|
}), Ue = () => {
|
|
845
|
-
const [e, n] =
|
|
846
|
-
|
|
847
|
-
Pe((r, s,
|
|
848
|
-
const
|
|
849
|
-
n((
|
|
850
|
-
n((
|
|
851
|
-
},
|
|
849
|
+
const [e, n] = I([]);
|
|
850
|
+
T(() => {
|
|
851
|
+
Pe((r, s, u, c) => {
|
|
852
|
+
const d = Ae();
|
|
853
|
+
n((l) => [...l, { id: d, type: r, message: s, config: c }]), setTimeout(() => {
|
|
854
|
+
n((l) => l.filter((a) => a.id !== d));
|
|
855
|
+
}, u);
|
|
852
856
|
});
|
|
853
857
|
}, []);
|
|
854
858
|
const t = je();
|
|
855
|
-
return /* @__PURE__ */
|
|
856
|
-
var
|
|
857
|
-
const s = ((
|
|
858
|
-
return /* @__PURE__ */
|
|
859
|
+
return /* @__PURE__ */ i("div", { className: "fixed top-5 right-5 z-[9999] flex flex-col gap-2", children: e.map((r) => {
|
|
860
|
+
var l, a, o, f, p, b, g, m, v, h, N, k, C;
|
|
861
|
+
const s = ((l = r.config) == null ? void 0 : l.icon) || ((a = t.icons) == null ? void 0 : a[r.type]) || ze(r.type), u = ((o = r.config) == null ? void 0 : o.bgColor) || ((p = (f = t.colors) == null ? void 0 : f[r.type]) == null ? void 0 : p.bg) || "bg-white dark:bg-gray-800", c = ((b = r.config) == null ? void 0 : b.textColor) || ((m = (g = t.colors) == null ? void 0 : g[r.type]) == null ? void 0 : m.text) || "text-gray-700 dark:text-gray-300", d = ((v = r.config) == null ? void 0 : v.iconContainerClass) || "w-8 h-8 mr-3 text-xl flex items-center justify-center";
|
|
862
|
+
return /* @__PURE__ */ w(
|
|
859
863
|
"div",
|
|
860
864
|
{
|
|
861
|
-
className: `flex items-center w-full max-w-xs p-4 text-sm rounded-lg shadow ${
|
|
865
|
+
className: `flex items-center w-full max-w-xs p-4 text-sm rounded-lg shadow ${u} ${c}`,
|
|
862
866
|
children: [
|
|
863
|
-
/* @__PURE__ */
|
|
864
|
-
/* @__PURE__ */
|
|
865
|
-
((
|
|
866
|
-
((
|
|
867
|
-
!((
|
|
867
|
+
/* @__PURE__ */ i("div", { className: d, children: s }),
|
|
868
|
+
/* @__PURE__ */ w("div", { className: "flex-1 me-3", children: [
|
|
869
|
+
((h = r.config) == null ? void 0 : h.title) && /* @__PURE__ */ i("div", { className: "font-semibold text-black", children: r.config.title }),
|
|
870
|
+
((N = r.config) == null ? void 0 : N.description) && /* @__PURE__ */ i("div", { className: "text-sm text-gray-500", children: r.config.description }),
|
|
871
|
+
!((k = r.config) != null && k.title) && !((C = r.config) != null && C.description) && /* @__PURE__ */ i("div", { className: "text-sm", children: r.message })
|
|
868
872
|
] }),
|
|
869
|
-
/* @__PURE__ */
|
|
873
|
+
/* @__PURE__ */ i(
|
|
870
874
|
"button",
|
|
871
875
|
{
|
|
872
|
-
onClick: () => n((
|
|
876
|
+
onClick: () => n((S) => S.filter((x) => x.id !== r.id)),
|
|
873
877
|
className: "ml-auto text-gray-400 hover:text-gray-700 dark:text-gray-500 dark:hover:text-white",
|
|
874
878
|
"aria-label": "Close",
|
|
875
|
-
children: /* @__PURE__ */
|
|
879
|
+
children: /* @__PURE__ */ i(Ie, { size: 18 })
|
|
876
880
|
}
|
|
877
881
|
)
|
|
878
882
|
]
|
|
@@ -906,7 +910,7 @@ export {
|
|
|
906
910
|
Be as Tooltip,
|
|
907
911
|
We as setToastDefaults,
|
|
908
912
|
Ke as showToast,
|
|
909
|
-
|
|
913
|
+
re as useModalActions,
|
|
910
914
|
Ge as useModalInstance,
|
|
911
|
-
|
|
915
|
+
oe as useModalState
|
|
912
916
|
};
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
(function(w,n){typeof exports=="object"&&typeof module<"u"?n(exports,require("react/jsx-runtime"),require("react")):typeof define=="function"&&define.amd?define(["exports","react/jsx-runtime","react"],n):(w=typeof globalThis<"u"?globalThis:w||self,n(w.TailwindUiKit={},w.jsxRuntime,w.React))})(this,function(w,n,l){"use strict";"use client";var
|
|
2
|
-
/*$vite$:1*/`,document.head.appendChild(
|
|
3
|
-
${
|
|
4
|
-
${y&&
|
|
5
|
-
${
|
|
6
|
-
${
|
|
7
|
-
${
|
|
8
|
-
${O} ${P} ${u}`,children:m}),x&&r&&f&&n.jsx("label",{htmlFor:y,className:`ms-1 ${le[f]} ${u}`,children:r})]}),v&&n.jsx("p",{className:`mt-1 text-xs ${k==="invalid"?"text-red-600":"text-green-600"}`,children:v})]})});q.displayName="Select";const se={primary:"btn-primary",secondary:"btn-secondary",success:"btn-success",danger:"btn-danger",warning:"btn-warning",info:"btn-info",dark:"btn-dark",light:"btn-light",link:"btn-link","outline-primary":"btn-outline-primary","outline-secondary":"btn-outline-secondary","outline-success":"btn-outline-success","outline-danger":"btn-outline-danger","outline-warning":"btn-outline-warning","outline-info":"btn-outline-info","outline-dark":"btn-outline-dark","outline-light":"btn-outline-light","soft-primary":"btn-soft-primary","soft-secondary":"btn-soft-secondary","soft-success":"btn-soft-success","soft-danger":"btn-soft-danger","soft-warning":"btn-soft-warning","soft-info":"btn-soft-info","soft-dark":"btn-soft-dark","soft-light":"btn-soft-light"},ce={xs:"px-3 py-2 text-xs",sm:"px-3 py-2 text-sm",md:"px-5 py-2.5 text-sm",lg:"px-5 py-3 text-base",xl:"px-6 py-3.5 text-base"},ie={flat:"shadow-none",rounded:"rounded-sm",pill:"rounded-full",circle:"rounded-full w-10 h-10 p-0 flex items-center justify-center"},de=({children:e,variant:t="primary",size:r="md",type:o="button",shape:s="rounded",className:b="",isLoading:i=!1,disabled:d=!1,...u})=>{const c=d||i,a=["inline-flex items-center justify-center font-normal transition duration-150",se[t],ce[r],ie[s],s==="flat"?"shadow-none":"shadow-sm",c?"opacity-50 cursor-not-allowed":"cursor-pointer",b].filter(Boolean).join(" ");return n.jsxs("button",{type:o,className:a,disabled:c,...u,children:[i&&n.jsxs("svg",{"aria-hidden":"true",role:"status",className:"inline w-4 h-4 me-3 text-gray-200 animate-spin dark:text-gray-600",viewBox:"0 0 100 101",fill:"none",xmlns:"http://www.w3.org/2000/svg",children:[n.jsx("path",{d:"M100 50.5908C100 78.2051 77.6142 100.591 50 100.591C22.3858 100.591 0 78.2051 0 50.5908C0 22.9766 22.3858 0.59082 50 0.59082C77.6142 0.59082 100 22.9766 100 50.5908ZM9.08144 50.5908C9.08144 73.1895 27.4013 91.5094 50 91.5094C72.5987 91.5094 90.9186 73.1895 90.9186 50.5908C90.9186 27.9921 72.5987 9.67226 50 9.67226C27.4013 9.67226 9.08144 27.9921 9.08144 50.5908Z",fill:"currentColor"}),n.jsx("path",{d:"M93.9676 39.0409C96.393 38.4038 97.8624 35.9116 97.0079 33.5539C95.2932 28.8227 92.871 24.3692 89.8167 20.348C85.8452 15.1192 80.8826 10.7238 75.2124 7.41289C69.5422 4.10194 63.2754 1.94025 56.7698 1.05124C51.7666 0.367541 46.6976 0.446843 41.7345 1.27873C39.2613 1.69328 37.813 4.19778 38.4501 6.62326C39.0873 9.04874 41.5694 10.4717 44.0505 10.1071C47.8511 9.54855 51.7191 9.52689 55.5402 10.0491C60.8642 10.7766 65.9928 12.5457 70.6331 15.2552C75.2735 17.9648 79.3347 21.5619 82.5849 25.841C84.9175 28.9121 86.7997 32.2913 88.1811 35.8758C89.083 38.2158 91.5421 39.6781 93.9676 39.0409Z",fill:"#1C64F2"})]}),e]})},ue=({label:e,items:t=[],onSelect:r,renderItem:o,position:s="right",className:b="",menuClassName:i="",width:d="w-48",closeOnSelect:u=!1,transition:c=!0,ariaLabel:a="Dropdown menu",...f})=>{const[h,p]=l.useState(!1),[g,v]=l.useState(!1),k=l.useRef(null),m=l.useRef(null),E=l.useMemo(()=>({left:"left-0",center:"left-1/2 transform -translate-x-1/2",right:"right-0"})[s],[s]),C=l.useCallback(()=>{const x=m.current,S=k.current;if(!x||!S)return;const{top:O,bottom:P}=x.getBoundingClientRect(),M=S.offsetHeight,I=window.innerHeight-P,j=O;v(I<M&&j>M)},[]),$=l.useCallback(x=>{var S,O;!((S=k.current)!=null&&S.contains(x.target))&&!((O=m.current)!=null&&O.contains(x.target))&&p(!1)},[]),N=l.useCallback(()=>p(x=>!x),[]),y=l.useCallback(()=>p(!1),[]);l.useEffect(()=>{if(h)return C(),window.addEventListener("resize",C),window.addEventListener("scroll",C,!0),()=>{window.removeEventListener("resize",C),window.removeEventListener("scroll",C,!0)}},[h,C]),l.useEffect(()=>(document.addEventListener("mousedown",$),()=>document.removeEventListener("mousedown",$)),[$]);const L=l.useMemo(()=>["absolute z-50 bg-white rounded shadow-lg overflow-hidden",g?"bottom-full mb-2":"top-full mt-2",E,d,c&&"transition-all duration-200 ease-out",i].filter(Boolean).join(" "),[g,E,d,c,i]);return n.jsxs("div",{className:`relative inline-block ${b}`,...f,children:[n.jsx("button",{ref:m,onClick:N,"aria-haspopup":"true","aria-expanded":h,"aria-label":a,className:"focus:outline-none",children:e}),h&&n.jsx("div",{ref:k,role:"menu",className:L,children:t.map((x,S)=>{const O=()=>{r&&r(x.value),u&&y()};return n.jsx("div",{children:o?o(x,O):n.jsx("div",{onClick:O,className:"px-4 py-2 text-sm text-gray-800 hover:bg-gray-100 cursor-pointer",role:"menuitem",children:x.label})},S)})})]})},fe=({children:e,content:t,position:r="top",className:o="",tooltipClass:s="",tooltipStyle:b={}})=>{const i=l.useRef(null),d=l.useRef(null);l.useEffect(()=>{const c=i.current,a=d.current;if(!c||!a)return;const f=()=>{a.style.opacity="1",a.style.visibility="visible"},h=()=>{a.style.opacity="0",a.style.visibility="hidden"};return c.addEventListener("mouseenter",f),c.addEventListener("mouseleave",h),()=>{c.removeEventListener("mouseenter",f),c.removeEventListener("mouseleave",h)}},[]);const u=c=>{const a={position:"absolute",opacity:0,visibility:"hidden",transition:"opacity 0.2s ease",maxWidth:"240px",whiteSpace:"normal",wordBreak:"break-word",padding:"8px 12px",fontSize:"0.875rem",backgroundColor:"black",color:"white",borderRadius:"4px",boxShadow:"0px 4px 12px rgba(0, 0, 0, 0.15)",zIndex:9999,width:"max-content"};switch(c){case"top":return{...a,bottom:"100%",left:"50%",transform:"translateX(-50%)",marginBottom:"8px"};case"bottom":return{...a,top:"100%",left:"50%",transform:"translateX(-50%)",marginTop:"8px"};case"left":return{...a,right:"100%",top:"50%",transform:"translateY(-50%)",marginRight:"8px"};case"right":return{...a,left:"100%",top:"50%",transform:"translateY(-50%)",marginLeft:"8px"};default:return a}};return n.jsxs("div",{ref:i,className:`relative inline-block ${o}`,children:[e,n.jsx("div",{ref:d,role:"tooltip",className:s,style:{...u(r),...b},children:t})]})},be={primary:"bg-blue-500 text-white",secondary:"bg-gray-500 text-white",success:"bg-green-500 text-white",danger:"bg-red-500 text-white",warning:"bg-yellow-400 text-black",info:"bg-cyan-500 text-white",dark:"bg-black text-white",light:"bg-gray-100 text-gray-800",link:"bg-transparent text-blue-500 underline","outline-primary":"border border-blue-500 text-blue-500 bg-transparent","outline-secondary":"border border-gray-500 text-gray-500 bg-transparent","outline-success":"border border-green-500 text-green-500 bg-transparent","outline-danger":"border border-red-500 text-red-500 bg-transparent","outline-warning":"border border-yellow-400 text-yellow-500 bg-transparent","outline-info":"border border-cyan-500 text-cyan-500 bg-transparent","outline-dark":"border border-black text-black bg-transparent","outline-light":"border border-gray-100 text-gray-800 bg-transparent"},he={xs:"text-xs px-2 py-0.5",sm:"text-sm px-2.5 py-0.5",md:"text-base px-3 py-1",lg:"text-lg px-3.5 py-1.5",xl:"text-xl px-4 py-2"},ge={flat:"rounded-none",rounded:"rounded-sm",pill:"rounded-full",circle:"rounded-full p-2 w-8 h-8 justify-center"},pe=({label:e,variant:t="primary",size:r="sm",shape:o="rounded",icon:s,dismissible:b,onDismiss:i,className:d="",...u})=>{const c=!e&&!!s,a=`inline-flex items-center font-medium ${be[t]||""} ${he[r]||""} ${ge[o]||""} ${c?"justify-center p-2 w-8 h-8":""} `+d;return n.jsxs("span",{className:a.trim(),...u,children:[s&&n.jsx("span",{className:e?"mr-1":"",children:s}),e,b&&n.jsx("button",{type:"button",onClick:i,className:"ml-2 text-xs font-bold leading-none focus:outline-none",children:"×"})]})};var K={color:void 0,size:void 0,className:void 0,style:void 0,attr:void 0},U=l.createContext&&l.createContext(K),ve=["attr","size","title"];function ye(e,t){if(e==null)return{};var r=we(e,t),o,s;if(Object.getOwnPropertySymbols){var b=Object.getOwnPropertySymbols(e);for(s=0;s<b.length;s++)o=b[s],!(t.indexOf(o)>=0)&&Object.prototype.propertyIsEnumerable.call(e,o)&&(r[o]=e[o])}return r}function we(e,t){if(e==null)return{};var r={};for(var o in e)if(Object.prototype.hasOwnProperty.call(e,o)){if(t.indexOf(o)>=0)continue;r[o]=e[o]}return r}function T(){return T=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var o in r)Object.prototype.hasOwnProperty.call(r,o)&&(e[o]=r[o])}return e},T.apply(this,arguments)}function W(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);t&&(o=o.filter(function(s){return Object.getOwnPropertyDescriptor(e,s).enumerable})),r.push.apply(r,o)}return r}function A(e){for(var t=1;t<arguments.length;t++){var r=arguments[t]!=null?arguments[t]:{};t%2?W(Object(r),!0).forEach(function(o){xe(e,o,r[o])}):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(r)):W(Object(r)).forEach(function(o){Object.defineProperty(e,o,Object.getOwnPropertyDescriptor(r,o))})}return e}function xe(e,t,r){return t=me(t),t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function me(e){var t=ke(e,"string");return typeof t=="symbol"?t:t+""}function ke(e,t){if(typeof e!="object"||!e)return e;var r=e[Symbol.toPrimitive];if(r!==void 0){var o=r.call(e,t);if(typeof o!="object")return o;throw new TypeError("@@toPrimitive must return a primitive value.")}return(t==="string"?String:Number)(e)}function X(e){return e&&e.map((t,r)=>l.createElement(t.tag,A({key:r},t.attr),X(t.child)))}function Y(e){return t=>l.createElement(Ce,T({attr:A({},e.attr)},t),X(e.child))}function Ce(e){var t=r=>{var{attr:o,size:s,title:b}=e,i=ye(e,ve),d=s||r.size||"1em",u;return r.className&&(u=r.className),e.className&&(u=(u?u+" ":"")+e.className),l.createElement("svg",T({stroke:"currentColor",fill:"currentColor",strokeWidth:"0"},r.attr,o,i,{className:u,style:A(A({color:e.color||r.color},r.style),e.style),height:d,width:d,xmlns:"http://www.w3.org/2000/svg"}),b&&l.createElement("title",null,b),e.children)};return U!==void 0?l.createElement(U.Consumer,null,r=>t(r)):t(K)}function Se(e){return Y({attr:{viewBox:"0 0 512 512"},child:[{tag:"path",attr:{d:"M256 294.1L383 167c9.4-9.4 24.6-9.4 33.9 0s9.3 24.6 0 34L273 345c-9.1 9.1-23.7 9.3-33.1.7L95 201.1c-4.7-4.7-7-10.9-7-17s2.3-12.3 7-17c9.4-9.4 24.6-9.4 33.9 0l127.1 127z"},child:[]}]})(e)}const Ne=({items:e,allowMultipleOpen:t=!1,className:r="",tileClasses:o="",open:s,onChange:b,renderTitle:i,renderContent:d,showArrowIcon:u=!0,panelClasses:c=""})=>{const[a,f]=l.useState(new Set),h=l.useMemo(()=>s?new Set(s):a,[s,a]),p=l.useCallback(g=>{const v=new Set(h);v.has(g)?v.delete(g):(t||v.clear(),v.add(g)),s&&b?b(Array.from(v)):f(v)},[h,s,b,t]);return n.jsx("div",{className:"accordion",role:"region","aria-multiselectable":t,children:e.map(g=>{const v=h.has(g.id),k=`accordion-heading-${g.id}`,m=`accordion-panel-${g.id}`;return n.jsxs("div",{className:`accordion-item border rounded border-gray-300 dark:border-gray-700 ${r}`,children:[n.jsxs("button",{id:k,type:"button","aria-expanded":v,"aria-controls":m,onClick:()=>p(g.id),className:`flex justify-between items-center w-full p-1.5 text-left text-gray-700 dark:text-gray-300 hover:bg-gray-100 dark:hover:bg-gray-800 focus:outline-none gap-3 ${o}`,children:[i?i(g,v):g.title,u?n.jsx(Se,{}):null]}),n.jsx("div",{id:m,role:"region","aria-labelledby":k,hidden:!v,className:`p-4 border-t border-gray-200 dark:border-gray-700 text-gray-600 dark:text-gray-400 ${c}`,children:d?d(g,v):g.content})]},g.id)})})},J=l.createContext(null),z=()=>{const e=l.useContext(J);if(!e)throw new Error("useModalActions must be used within a ModalActionProvider");return e},Q=l.createContext(null),D=()=>l.useContext(Q);function Ee({id:e,title:t,children:r,standalone:o=!1,showFloatingClose:s=!1,containerClasses:b="",onClose:i,disableEscapeClose:d=!1}){const u=D(),c=z(),a=!o&&!!u&&!!c,[f,h]=l.useState(!1),p=a?u.isOpen(e):f,g=a?u.getModalData(e):null,v=l.useCallback(()=>{a?c.closeModal(e):h(!1),i==null||i()},[a,c,e,i]);return l.useEffect(()=>{const k=document.activeElement;console.log(e);const m=document.getElementById(e);console.log("modalEl=",m);const E=["a[href]","button:not([disabled])","textarea:not([disabled])","input:not([disabled])","select:not([disabled])",'[tabindex]:not([tabindex="-1"])'],C=()=>{if(!m)return[];const y=m.querySelectorAll(E.join(","));return Array.from(y).filter(L=>L.offsetParent!==null)},$=y=>{if(y.key==="Tab"){const L=C();if(L.length===0)return;const x=L[0],S=L[L.length-1];y.shiftKey?document.activeElement===x&&(y.preventDefault(),S.focus()):document.activeElement===S&&(y.preventDefault(),x.focus())}},N=y=>{y.key==="Escape"&&!d&&v(),$(y)};return p&&(document.body.style.overflow="hidden",setTimeout(()=>{const y=C();y.length&&y[0].focus()},0),window.addEventListener("keydown",N)),()=>{document.body.style.overflow="",k&&k.focus(),window.removeEventListener("keydown",N)}},[p,d,v,e]),p?n.jsx("div",{className:"fixed inset-0 z-50 flex items-center justify-center bg-black/60 backdrop-blur-[2px]",id:e,children:n.jsxs("div",{className:`bg-white rounded-lg shadow-lg w-full max-w-md p-4 transform transition-all duration-300 scale-100 ${b}`,children:[n.jsxs("div",{className:"flex justify-between items-center relative",children:[t&&n.jsx("h2",{className:"text-lg font-semibold",children:t}),s&&n.jsx("button",{onClick:v,className:"text-gray-500 hover:text-black absolute top-2 right-3 hover:bg-gray-200 rounded-full aspect-square w-8","aria-label":"Close modal",children:"✕"})]}),n.jsx("div",{className:"mt-3 text-sm text-gray-700",children:typeof r=="function"?r({modalData:g}):r})]})}):null}function $e({children:e}){const[t,r]=l.useState({}),[o,s]=l.useState({}),b=l.useCallback((f,h)=>{r(p=>({...p,[f]:!0})),h&&s(p=>({...p,[f]:h}))},[]),i=l.useCallback(f=>{r(h=>({...h,[f]:!1})),s(h=>{const p={...h};return delete p[f],p})},[]),d=l.useCallback(f=>!!t[f],[t]),u=l.useCallback(f=>o[f],[o]),c=l.useMemo(()=>({openModal:b,closeModal:i}),[b,i]),a=l.useMemo(()=>({isOpen:d,getModalData:u}),[d,u]);return n.jsx(J.Provider,{value:c,children:n.jsx(Q.Provider,{value:a,children:e})})}function Le(e){const{openModal:t,closeModal:r}=z(),{isOpen:o,getModalData:s}=D();return{open:b=>t(e,b),close:()=>r(e),isOpen:o(e),data:s(e)}}let _=null,B={};function Oe(e){_=e}function Me(e){B={...B,...e}}function je(){return B}function Pe(e,t,r=3e3,o){_?_(e,t,r,o):console.warn("Toast system is not mounted")}function Ie(e){return Y({attr:{viewBox:"0 0 15 15",fill:"none"},child:[{tag:"path",attr:{fillRule:"evenodd",clipRule:"evenodd",d:"M11.7816 4.03157C12.0062 3.80702 12.0062 3.44295 11.7816 3.2184C11.5571 2.99385 11.193 2.99385 10.9685 3.2184L7.50005 6.68682L4.03164 3.2184C3.80708 2.99385 3.44301 2.99385 3.21846 3.2184C2.99391 3.44295 2.99391 3.80702 3.21846 4.03157L6.68688 7.49999L3.21846 10.9684C2.99391 11.193 2.99391 11.557 3.21846 11.7816C3.44301 12.0061 3.80708 12.0061 4.03164 11.7816L7.50005 8.31316L10.9685 11.7816C11.193 12.0061 11.5571 12.0061 11.7816 11.7816C12.0062 11.557 12.0062 11.193 11.7816 10.9684L8.31322 7.49999L11.7816 4.03157Z",fill:"currentColor"},child:[]}]})(e)}const Te=()=>"xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(/[xy]/g,function(e){const t=Math.random()*16|0;return(e==="x"?t:t&3|8).toString(16)}),Ae=()=>{const[e,t]=l.useState([]);l.useEffect(()=>{Oe((o,s,b,i)=>{const d=Te();t(u=>[...u,{id:d,type:o,message:s,config:i}]),setTimeout(()=>{t(u=>u.filter(c=>c.id!==d))},b)})},[]);const r=je();return n.jsx("div",{className:"fixed top-5 right-5 z-[9999] flex flex-col gap-2",children:e.map(o=>{var u,c,a,f,h,p,g,v,k,m,E,C,$;const s=((u=o.config)==null?void 0:u.icon)||((c=r.icons)==null?void 0:c[o.type])||ze(o.type),b=((a=o.config)==null?void 0:a.bgColor)||((h=(f=r.colors)==null?void 0:f[o.type])==null?void 0:h.bg)||"bg-white dark:bg-gray-800",i=((p=o.config)==null?void 0:p.textColor)||((v=(g=r.colors)==null?void 0:g[o.type])==null?void 0:v.text)||"text-gray-700 dark:text-gray-300",d=((k=o.config)==null?void 0:k.iconContainerClass)||"w-8 h-8 mr-3 text-xl flex items-center justify-center";return n.jsxs("div",{className:`flex items-center w-full max-w-xs p-4 text-sm rounded-lg shadow ${b} ${i}`,children:[n.jsx("div",{className:d,children:s}),n.jsxs("div",{className:"flex-1 me-3",children:[((m=o.config)==null?void 0:m.title)&&n.jsx("div",{className:"font-semibold text-black",children:o.config.title}),((E=o.config)==null?void 0:E.description)&&n.jsx("div",{className:"text-sm text-gray-500",children:o.config.description}),!((C=o.config)!=null&&C.title)&&!(($=o.config)!=null&&$.description)&&n.jsx("div",{className:"text-sm",children:o.message})]}),n.jsx("button",{onClick:()=>t(N=>N.filter(y=>y.id!==o.id)),className:"ml-auto text-gray-400 hover:text-gray-700 dark:text-gray-500 dark:hover:text-white","aria-label":"Close",children:n.jsx(Ie,{size:18})})]},o.id)})})};function ze(e){switch(e){case"success":return"✅";case"error":return"❌";case"warning":return"⚠️";case"info":return"ℹ️"}}w.Accordion=Ne,w.Badge=pe,w.Button=de,w.Dropdown=ue,w.Input=G,w.Modal=Ee,w.ModalProvider=$e,w.Select=q,w.Toast=Ae,w.Tooltip=fe,w.setToastDefaults=Me,w.showToast=Pe,w.useModalActions=z,w.useModalInstance=Le,w.useModalState=D,Object.defineProperty(w,Symbol.toStringTag,{value:"Module"})});
|
|
1
|
+
(function(w,n){typeof exports=="object"&&typeof module<"u"?n(exports,require("react/jsx-runtime"),require("react")):typeof define=="function"&&define.amd?define(["exports","react/jsx-runtime","react"],n):(w=typeof globalThis<"u"?globalThis:w||self,n(w.TailwindUiKit={},w.jsxRuntime,w.React))})(this,function(w,n,l){"use strict";"use client";var H=document.createElement("style");H.textContent=`/*! tailwindcss v4.1.10 | MIT License | https://tailwindcss.com */@layer properties{@supports (((-webkit-hyphens:none)) and (not (margin-trim:inline))) or ((-moz-orient:inline) and (not (color:rgb(from red r g b)))){*,:before,:after,::backdrop{--tw-border-style:solid;--tw-shadow:0 0 #0000;--tw-shadow-color:initial;--tw-shadow-alpha:100%;--tw-inset-shadow:0 0 #0000;--tw-inset-shadow-color:initial;--tw-inset-shadow-alpha:100%;--tw-ring-color:initial;--tw-ring-shadow:0 0 #0000;--tw-inset-ring-color:initial;--tw-inset-ring-shadow:0 0 #0000;--tw-ring-inset:initial;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-offset-shadow:0 0 #0000}}}.btn-primary{background-color:var(--color-blue-600,oklch(54.6% .245 262.881));color:var(--color-white,#fff)}@media (hover:hover){.btn-primary:hover{background-color:var(--color-blue-700,oklch(48.8% .243 264.376))}}.btn-outline-primary{border-style:var(--tw-border-style);border-width:1px;border-color:var(--color-blue-600,oklch(54.6% .245 262.881));color:var(--color-blue-600,oklch(54.6% .245 262.881))}@media (hover:hover){.btn-outline-primary:hover{background-color:var(--color-blue-50,oklch(97% .014 254.604))}}.btn-soft-primary{background-color:var(--color-blue-100,oklch(93.2% .032 255.585));color:var(--color-blue-700,oklch(48.8% .243 264.376))}@media (hover:hover){.btn-soft-primary:hover{background-color:var(--color-blue-200,oklch(88.2% .059 254.128))}}.btn-secondary{background-color:var(--color-gray-600,oklch(44.6% .03 256.802));color:var(--color-white,#fff)}@media (hover:hover){.btn-secondary:hover{background-color:var(--color-gray-700,oklch(37.3% .034 259.733))}}.btn-outline-secondary{border-style:var(--tw-border-style);border-width:1px;border-color:var(--color-gray-600,oklch(44.6% .03 256.802));color:var(--color-gray-600,oklch(44.6% .03 256.802))}@media (hover:hover){.btn-outline-secondary:hover{background-color:var(--color-gray-50,oklch(98.5% .002 247.839))}}.btn-soft-secondary{background-color:var(--color-gray-100,oklch(96.7% .003 264.542));color:var(--color-gray-700,oklch(37.3% .034 259.733))}@media (hover:hover){.btn-soft-secondary:hover{background-color:var(--color-gray-200,oklch(92.8% .006 264.531))}}.btn-success{background-color:var(--color-green-600,oklch(62.7% .194 149.214));color:var(--color-white,#fff)}@media (hover:hover){.btn-success:hover{background-color:var(--color-green-700,oklch(52.7% .154 150.069))}}.btn-outline-success{border-style:var(--tw-border-style);border-width:1px;border-color:var(--color-green-600,oklch(62.7% .194 149.214));color:var(--color-green-600,oklch(62.7% .194 149.214))}@media (hover:hover){.btn-outline-success:hover{background-color:var(--color-green-50,oklch(98.2% .018 155.826))}}.btn-soft-success{background-color:var(--color-green-100,oklch(96.2% .044 156.743));color:var(--color-green-700,oklch(52.7% .154 150.069))}@media (hover:hover){.btn-soft-success:hover{background-color:var(--color-green-200,oklch(92.5% .084 155.995))}}.btn-danger{background-color:var(--color-red-600,oklch(57.7% .245 27.325));color:var(--color-white,#fff)}@media (hover:hover){.btn-danger:hover{background-color:var(--color-red-700,oklch(50.5% .213 27.518))}}.btn-outline-danger{border-style:var(--tw-border-style);border-width:1px;border-color:var(--color-red-600,oklch(57.7% .245 27.325));color:var(--color-red-600,oklch(57.7% .245 27.325))}@media (hover:hover){.btn-outline-danger:hover{background-color:var(--color-red-50,oklch(97.1% .013 17.38))}}.btn-soft-danger{background-color:var(--color-red-100,oklch(93.6% .032 17.717));color:var(--color-red-700,oklch(50.5% .213 27.518))}@media (hover:hover){.btn-soft-danger:hover{background-color:var(--color-red-200,oklch(88.5% .062 18.334))}}.btn-warning{background-color:var(--color-yellow-500,oklch(79.5% .184 86.047));color:var(--color-white,#fff)}@media (hover:hover){.btn-warning:hover{background-color:var(--color-yellow-600,oklch(68.1% .162 75.834))}}.btn-outline-warning{border-style:var(--tw-border-style);border-width:1px;border-color:var(--color-yellow-500,oklch(79.5% .184 86.047));color:var(--color-yellow-600,oklch(68.1% .162 75.834))}@media (hover:hover){.btn-outline-warning:hover{background-color:var(--color-yellow-50,oklch(98.7% .026 102.212))}}.btn-soft-warning{background-color:var(--color-yellow-100,oklch(97.3% .071 103.193));color:var(--color-yellow-700,oklch(55.4% .135 66.442))}@media (hover:hover){.btn-soft-warning:hover{background-color:var(--color-yellow-200,oklch(94.5% .129 101.54))}}.btn-info{background-color:var(--color-cyan-600,oklch(60.9% .126 221.723));color:var(--color-white,#fff)}@media (hover:hover){.btn-info:hover{background-color:var(--color-cyan-700,oklch(52% .105 223.128))}}.btn-outline-info{border-style:var(--tw-border-style);border-width:1px;border-color:var(--color-cyan-600,oklch(60.9% .126 221.723));color:var(--color-cyan-600,oklch(60.9% .126 221.723))}@media (hover:hover){.btn-outline-info:hover{background-color:var(--color-cyan-50,oklch(98.4% .019 200.873))}}.btn-soft-info{background-color:var(--color-cyan-100,oklch(95.6% .045 203.388));color:var(--color-cyan-700,oklch(52% .105 223.128))}@media (hover:hover){.btn-soft-info:hover{background-color:var(--color-cyan-200,oklch(91.7% .08 205.041))}}.btn-dark{background-color:var(--color-gray-900,oklch(21% .034 264.665));color:var(--color-white,#fff)}@media (hover:hover){.btn-dark:hover{background-color:var(--color-black,#000)}}.btn-outline-dark{border-style:var(--tw-border-style);border-width:1px;border-color:var(--color-gray-900,oklch(21% .034 264.665));color:var(--color-gray-900,oklch(21% .034 264.665))}@media (hover:hover){.btn-outline-dark:hover{background-color:var(--color-gray-100,oklch(96.7% .003 264.542))}}.btn-soft-dark{background-color:var(--color-gray-200,oklch(92.8% .006 264.531));color:var(--color-gray-900,oklch(21% .034 264.665))}@media (hover:hover){.btn-soft-dark:hover{background-color:var(--color-gray-300,oklch(87.2% .01 258.338))}}.btn-light{background-color:var(--color-gray-100,oklch(96.7% .003 264.542));color:var(--color-gray-800,oklch(27.8% .033 256.848))}@media (hover:hover){.btn-light:hover{background-color:var(--color-gray-200,oklch(92.8% .006 264.531))}}.btn-outline-light{border-style:var(--tw-border-style);border-width:1px;border-color:var(--color-gray-100,oklch(96.7% .003 264.542));color:var(--color-gray-600,oklch(44.6% .03 256.802))}@media (hover:hover){.btn-outline-light:hover{background-color:var(--color-gray-50,oklch(98.5% .002 247.839))}}.btn-soft-light{background-color:var(--color-gray-50,oklch(98.5% .002 247.839));color:var(--color-gray-700,oklch(37.3% .034 259.733))}@media (hover:hover){.btn-soft-light:hover{background-color:var(--color-gray-100,oklch(96.7% .003 264.542))}}.btn-link{padding:calc(var(--spacing,.25rem)*0);color:var(--color-blue-600,oklch(54.6% .245 262.881));--tw-shadow:0 0 #0000;box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);background-color:#0000}@media (hover:hover){.btn-link:hover{text-decoration-line:underline}}@property --tw-border-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-shadow-color{syntax:"*";inherits:false}@property --tw-shadow-alpha{syntax:"<percentage>";inherits:false;initial-value:100%}@property --tw-inset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-shadow-color{syntax:"*";inherits:false}@property --tw-inset-shadow-alpha{syntax:"<percentage>";inherits:false;initial-value:100%}@property --tw-ring-color{syntax:"*";inherits:false}@property --tw-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-ring-color{syntax:"*";inherits:false}@property --tw-inset-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-ring-inset{syntax:"*";inherits:false}@property --tw-ring-offset-width{syntax:"<length>";inherits:false;initial-value:0}@property --tw-ring-offset-color{syntax:"*";inherits:false;initial-value:#fff}@property --tw-ring-offset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}
|
|
2
|
+
/*$vite$:1*/`,document.head.appendChild(H);const Z={xs:"text-xs px-2 py-1",sm:"text-sm px-3 py-1.5",md:"text-sm px-3 py-3",lg:"text-lg px-5 py-3"},G={flat:"rounded-none",rounded:"rounded-sm",pill:"rounded-full"},ee={filled:"rounded-t-lg px-2.5 pb-2.5 pt-5 bg-gray-50 border-b-2",outlined:"rounded-lg px-2.5 pb-2.5 pt-4 bg-transparent border",standard:"px-0 py-2.5 bg-transparent border-0 border-b-2"},re={filled:"absolute duration-300 transform -translate-y-4 scale-75 top-4 z-10 origin-[0] start-2.5 peer-placeholder-shown:translate-y-0 peer-placeholder-shown:scale-100 peer-focus:scale-75 peer-focus:-translate-y-4 peer-focus:text-blue-600",outlined:"absolute duration-300 transform -translate-y-4 scale-75 top-2 z-10 origin-[0] bg-white px-2 peer-placeholder-shown:scale-100 peer-placeholder-shown:top-1/2 peer-placeholder-shown:-translate-y-1/2 peer-focus:top-2 peer-focus:scale-75 peer-focus:-translate-y-4 peer-focus:text-blue-600",standard:"absolute duration-300 transform -translate-y-6 scale-75 top-3 origin-[0] peer-placeholder-shown:scale-100 peer-placeholder-shown:translate-y-0 peer-focus:scale-75 peer-focus:-translate-y-6 peer-focus:text-blue-600"},oe=(e,t,r)=>{if(r)return"border-red-500 bg-red-50 text-red-900 placeholder-red-700 focus:ring-red-500 focus:border-red-500";if(t)return"border-green-500 bg-green-50 text-green-900 placeholder-green-700 focus:ring-green-500 focus:border-green-500";switch(e){case"error":return"border-red-500 bg-red-50 focus:ring-red-500";case"warning":return"border-yellow-500 bg-yellow-50 focus:ring-yellow-500";case"success":return"border-green-500 bg-green-50 focus:ring-green-500";default:return"border-gray-300 focus:ring-blue-500"}},q=l.forwardRef((e,t)=>{const{label:r,id:o,inputSize:s="md",shape:f="rounded",validate:d,onValidatedChange:u,className:i="",icon:c,iconPosition:a="left",floatingLabelStyle:b,onChange:h,isValid:p,isInvalid:g,feedback:v,feedbackType:k="invalid",...x}=e,[N,E]=l.useState("default"),C=l.useCallback(P=>{const I=P.target.value,j=(d==null?void 0:d(I))??"default";E(j),u==null||u(P,j),h==null||h(P)},[d,u,h]),S=l.useMemo(()=>o||(typeof r=="string"?`input-${r.toLowerCase().replace(/\s+/g,"-")}`:`input-${Math.random().toString(36).slice(2)}`),[o,r]),y=!!b,$=Z[s]||Z.md,L=G[f]||G.flat,m=l.useMemo(()=>oe(N,p,g),[N,p,g]),O=l.useMemo(()=>a==="start"||a==="left"?"left-0 ps-3.5":"right-0 pe-3.5",[a]),M=l.useMemo(()=>c?a==="start"||a==="left"?"ps-10":"pe-10":"",[c,a]);return n.jsxs("div",{className:`w-full relative ${y?"z-0":""} tailwind-ux-input`,children:[!y&&r&&n.jsx("label",{htmlFor:S,className:`block mb-1 text-sm ${p?"text-green-700 dark:text-green-500":g?"text-red-700 dark:text-red-500":"text-gray-700"}`,children:r}),n.jsxs("div",{className:"relative w-full",children:[c&&n.jsx("div",{className:`absolute inset-y-0 flex items-center ${O}`,"aria-hidden":"true",children:n.jsx("span",{className:"text-gray-500",children:c})}),n.jsx("input",{...x,id:S,ref:t,placeholder:y?" ":x.placeholder,onChange:C,className:`border peer w-full block font-normal appearance-none focus:outline-none focus:ring-0 transition text-gray-900 placeholder-gray-600 border-gray-400
|
|
3
|
+
${$}
|
|
4
|
+
${y&&b&&ee[b]}
|
|
5
|
+
${M} ${L} ${m} ${i}`}),y&&r&&b&&n.jsx("label",{htmlFor:S,className:`ms-1 ${re[b]} ${i}`,children:r})]}),v&&n.jsx("p",{className:`mt-1 text-xs ${k==="invalid"?"text-red-600 dark:text-red-500":"text-green-600 dark:text-green-500"}`,role:k==="invalid"?"alert":void 0,children:v})]})});q.displayName="Input";const te={xs:"text-xs px-2 py-1",sm:"text-sm px-3 py-1.5",md:"text-sm px-3 py-3",lg:"text-lg px-5 py-3"},ne={flat:"rounded-none",rounded:"rounded-sm",pill:"rounded-full"},le={filled:"rounded-t-lg px-2.5 pb-2.5 pt-5 bg-gray-50 border-b-2",outlined:"rounded-lg px-2.5 pb-2.5 pt-4 bg-transparent border",standard:"px-0 py-2.5 bg-transparent border-0 border-b-2"},ae={filled:"absolute duration-300 transform -translate-y-4 scale-75 top-4 z-10 origin-[0] start-2.5 peer-placeholder-shown:translate-y-0 peer-placeholder-shown:scale-100 peer-focus:scale-75 peer-focus:-translate-y-4 peer-focus:text-blue-600",outlined:"absolute duration-300 transform -translate-y-4 scale-75 top-2 z-10 origin-[0] bg-white px-2 peer-placeholder-shown:scale-100 peer-placeholder-shown:top-1/2 peer-placeholder-shown:-translate-y-1/2 peer-focus:top-2 peer-focus:scale-75 peer-focus:-translate-y-4 peer-focus:text-blue-600",standard:"absolute duration-300 transform -translate-y-6 scale-75 top-3 origin-[0] peer-placeholder-shown:scale-100 peer-placeholder-shown:translate-y-0 peer-focus:scale-75 peer-focus:-translate-y-6 peer-focus:text-blue-600"},se=(e,t,r)=>{if(r)return"border-red-500 bg-red-50 text-red-900 focus:ring-red-500 focus:border-red-500";if(t)return"border-green-500 bg-green-50 text-green-900 focus:ring-green-500 focus:border-green-500";const o="focus:ring focus:border";switch(e){case"error":return`${o}-red-500 border-red-500 bg-red-50`;case"warning":return`${o}-yellow-500 border-yellow-500 bg-yellow-50`;case"success":return`${o}-green-500 border-green-500 bg-green-50`;default:return"border-gray-300 focus:ring-blue-500"}},K=l.forwardRef((e,t)=>{const{label:r,id:o,inputSize:s="md",shape:f="rounded",validate:d,onValidatedChange:u,className:i="",icon:c,iconPosition:a="left",floatingLabelStyle:b,onChange:h,isValid:p,isInvalid:g,feedback:v,feedbackType:k="invalid",children:x,...N}=e,[E,C]=l.useState("default"),S=l.useId(),y=l.useMemo(()=>o||(typeof r=="string"?`select-${r.toLowerCase().replace(/\s+/g,"-")}`:S),[o,r,S]),$=j=>{const F=j.target.value,R=(d==null?void 0:d(F))??"default";C(R),u==null||u(j,R),h==null||h(j)},L=!!b,m=te[s],O=ne[f],M=se(E,p,g),P=c&&(a==="start"||a==="left")?"ps-10":c?"pe-10":"",I=a==="start"||a==="left"?"left-0 ps-3.5":"right-0 pe-3.5";return n.jsxs("div",{className:`w-full relative ${L?"z-0":""}`,children:[!L&&r&&n.jsx("label",{htmlFor:y,className:`block mb-1 text-sm ${p?"text-green-700":g?"text-red-700":"text-gray-700"}`,children:r}),n.jsxs("div",{className:"relative w-full",children:[c&&n.jsx("div",{className:`absolute inset-y-0 flex items-center ${I}`,children:n.jsx("span",{className:"text-gray-500",children:c})}),n.jsx("select",{...N,id:y,ref:t,onChange:$,className:`border peer w-full block font-normal appearance-none focus:outline-none focus:ring-0 transition text-gray-600 placeholder-[#798ba5] border-gray-400
|
|
6
|
+
${m} ${P}
|
|
7
|
+
${L&&b&&le[b]}
|
|
8
|
+
${O} ${M} ${i}`,children:x}),L&&r&&b&&n.jsx("label",{htmlFor:y,className:`ms-1 ${ae[b]} ${i}`,children:r})]}),v&&n.jsx("p",{className:`mt-1 text-xs ${k==="invalid"?"text-red-600":"text-green-600"}`,children:v})]})});K.displayName="Select";const ce={primary:"btn-primary",secondary:"btn-secondary",success:"btn-success",danger:"btn-danger",warning:"btn-warning",info:"btn-info",dark:"btn-dark",light:"btn-light",link:"btn-link","outline-primary":"btn-outline-primary","outline-secondary":"btn-outline-secondary","outline-success":"btn-outline-success","outline-danger":"btn-outline-danger","outline-warning":"btn-outline-warning","outline-info":"btn-outline-info","outline-dark":"btn-outline-dark","outline-light":"btn-outline-light","soft-primary":"btn-soft-primary","soft-secondary":"btn-soft-secondary","soft-success":"btn-soft-success","soft-danger":"btn-soft-danger","soft-warning":"btn-soft-warning","soft-info":"btn-soft-info","soft-dark":"btn-soft-dark","soft-light":"btn-soft-light"},ie={xs:"px-3 py-2 text-xs",sm:"px-3 py-2 text-sm",md:"px-5 py-2.5 text-sm",lg:"px-5 py-3 text-base",xl:"px-6 py-3.5 text-base"},de={flat:"shadow-none",rounded:"rounded-sm",pill:"rounded-full",circle:"rounded-full w-10 h-10 p-0 flex items-center justify-center"},ue=({children:e,variant:t="primary",size:r="md",type:o="button",shape:s="rounded",className:f="",isLoading:d=!1,disabled:u=!1,...i})=>{const c=u||d,a=["inline-flex items-center justify-center font-normal transition duration-150",ce[t],ie[r],de[s],s==="flat"?"shadow-none":"shadow-sm",c?"opacity-50 cursor-not-allowed":"cursor-pointer",f].filter(Boolean).join(" ");return n.jsxs("button",{type:o,className:a,disabled:c,...i,children:[d&&n.jsxs("svg",{"aria-hidden":"true",role:"status",className:"inline w-4 h-4 me-3 text-gray-200 animate-spin dark:text-gray-600",viewBox:"0 0 100 101",fill:"none",xmlns:"http://www.w3.org/2000/svg",children:[n.jsx("path",{d:"M100 50.5908C100 78.2051 77.6142 100.591 50 100.591C22.3858 100.591 0 78.2051 0 50.5908C0 22.9766 22.3858 0.59082 50 0.59082C77.6142 0.59082 100 22.9766 100 50.5908ZM9.08144 50.5908C9.08144 73.1895 27.4013 91.5094 50 91.5094C72.5987 91.5094 90.9186 73.1895 90.9186 50.5908C90.9186 27.9921 72.5987 9.67226 50 9.67226C27.4013 9.67226 9.08144 27.9921 9.08144 50.5908Z",fill:"currentColor"}),n.jsx("path",{d:"M93.9676 39.0409C96.393 38.4038 97.8624 35.9116 97.0079 33.5539C95.2932 28.8227 92.871 24.3692 89.8167 20.348C85.8452 15.1192 80.8826 10.7238 75.2124 7.41289C69.5422 4.10194 63.2754 1.94025 56.7698 1.05124C51.7666 0.367541 46.6976 0.446843 41.7345 1.27873C39.2613 1.69328 37.813 4.19778 38.4501 6.62326C39.0873 9.04874 41.5694 10.4717 44.0505 10.1071C47.8511 9.54855 51.7191 9.52689 55.5402 10.0491C60.8642 10.7766 65.9928 12.5457 70.6331 15.2552C75.2735 17.9648 79.3347 21.5619 82.5849 25.841C84.9175 28.9121 86.7997 32.2913 88.1811 35.8758C89.083 38.2158 91.5421 39.6781 93.9676 39.0409Z",fill:"#1C64F2"})]}),e]})},fe=({label:e,header:t,items:r=[],onSelect:o,renderItem:s,position:f="right",className:d="",menuClassName:u="",width:i="w-48",closeOnSelect:c=!1,transition:a=!0,ariaLabel:b="Dropdown menu",...h})=>{const[p,g]=l.useState(!1),[v,k]=l.useState(!1),x=l.useRef(null),N=l.useRef(null),E=l.useMemo(()=>({left:"left-0",center:"left-1/2 transform -translate-x-1/2",right:"right-0"})[f],[f]),C=l.useCallback(()=>{const m=N.current,O=x.current;if(!m||!O)return;const{top:M,bottom:P}=m.getBoundingClientRect(),I=O.offsetHeight,j=window.innerHeight-P,F=M;k(j<I&&F>I)},[]),S=l.useCallback(m=>{var O,M;!((O=x.current)!=null&&O.contains(m.target))&&!((M=N.current)!=null&&M.contains(m.target))&&g(!1)},[]),y=l.useCallback(()=>g(m=>!m),[]),$=l.useCallback(()=>g(!1),[]);l.useEffect(()=>{if(p)return C(),window.addEventListener("resize",C),window.addEventListener("scroll",C,!0),()=>{window.removeEventListener("resize",C),window.removeEventListener("scroll",C,!0)}},[p,C]),l.useEffect(()=>(document.addEventListener("mousedown",S),()=>document.removeEventListener("mousedown",S)),[S]);const L=l.useMemo(()=>["absolute z-50 bg-white rounded shadow-lg overflow-hidden",v?"bottom-full mb-2":"top-full mt-2",E,i,a&&"transition-all duration-200 ease-out",u].filter(Boolean).join(" "),[v,E,i,a,u]);return n.jsxs("div",{className:`relative inline-block ${d}`,...h,children:[n.jsx("button",{ref:N,onClick:y,"aria-haspopup":"true","aria-expanded":p,"aria-label":b,className:"focus:outline-none",children:e}),p&&n.jsxs("div",{ref:x,role:"menu",className:L,children:[t&&t,r.map((m,O)=>{const M=()=>{o&&o(m.value),c&&$()};return n.jsx("div",{children:s?s(m,M):n.jsx("div",{onClick:M,className:"px-4 py-2 text-sm text-gray-800 hover:bg-gray-100 cursor-pointer",role:"menuitem",children:m.label})},O)})]})]})},be=({children:e,content:t,position:r="top",className:o="",tooltipClass:s="",tooltipStyle:f={}})=>{const d=l.useRef(null),u=l.useRef(null);l.useEffect(()=>{const c=d.current,a=u.current;if(!c||!a)return;const b=()=>{a.style.opacity="1",a.style.visibility="visible"},h=()=>{a.style.opacity="0",a.style.visibility="hidden"};return c.addEventListener("mouseenter",b),c.addEventListener("mouseleave",h),()=>{c.removeEventListener("mouseenter",b),c.removeEventListener("mouseleave",h)}},[]);const i=c=>{const a={position:"absolute",opacity:0,visibility:"hidden",transition:"opacity 0.2s ease",maxWidth:"240px",whiteSpace:"normal",wordBreak:"break-word",padding:"8px 12px",fontSize:"0.875rem",backgroundColor:"black",color:"white",borderRadius:"4px",boxShadow:"0px 4px 12px rgba(0, 0, 0, 0.15)",zIndex:9999,width:"max-content"};switch(c){case"top":return{...a,bottom:"100%",left:"50%",transform:"translateX(-50%)",marginBottom:"8px"};case"bottom":return{...a,top:"100%",left:"50%",transform:"translateX(-50%)",marginTop:"8px"};case"left":return{...a,right:"100%",top:"50%",transform:"translateY(-50%)",marginRight:"8px"};case"right":return{...a,left:"100%",top:"50%",transform:"translateY(-50%)",marginLeft:"8px"};default:return a}};return n.jsxs("div",{ref:d,className:`relative inline-block ${o}`,children:[e,n.jsx("div",{ref:u,role:"tooltip",className:s,style:{...i(r),...f},children:t})]})},he={primary:"bg-blue-500 text-white",secondary:"bg-gray-500 text-white",success:"bg-green-500 text-white",danger:"bg-red-500 text-white",warning:"bg-yellow-400 text-black",info:"bg-cyan-500 text-white",dark:"bg-black text-white",light:"bg-gray-100 text-gray-800",link:"bg-transparent text-blue-500 underline","outline-primary":"border border-blue-500 text-blue-500 bg-transparent","outline-secondary":"border border-gray-500 text-gray-500 bg-transparent","outline-success":"border border-green-500 text-green-500 bg-transparent","outline-danger":"border border-red-500 text-red-500 bg-transparent","outline-warning":"border border-yellow-400 text-yellow-500 bg-transparent","outline-info":"border border-cyan-500 text-cyan-500 bg-transparent","outline-dark":"border border-black text-black bg-transparent","outline-light":"border border-gray-100 text-gray-800 bg-transparent"},ge={xs:"text-xs px-2 py-0.5",sm:"text-sm px-2.5 py-0.5",md:"text-base px-3 py-1",lg:"text-lg px-3.5 py-1.5",xl:"text-xl px-4 py-2"},pe={flat:"rounded-none",rounded:"rounded-sm",pill:"rounded-full",circle:"rounded-full p-2 w-8 h-8 justify-center"},ve=({label:e,variant:t="primary",size:r="sm",shape:o="rounded",icon:s,dismissible:f,onDismiss:d,className:u="",...i})=>{const c=!e&&!!s,a=`inline-flex items-center font-medium ${he[t]||""} ${ge[r]||""} ${pe[o]||""} ${c?"justify-center p-2 w-8 h-8":""} `+u;return n.jsxs("span",{className:a.trim(),...i,children:[s&&n.jsx("span",{className:e?"mr-1":"",children:s}),e,f&&n.jsx("button",{type:"button",onClick:d,className:"ml-2 text-xs font-bold leading-none focus:outline-none",children:"×"})]})};var U={color:void 0,size:void 0,className:void 0,style:void 0,attr:void 0},W=l.createContext&&l.createContext(U),ye=["attr","size","title"];function we(e,t){if(e==null)return{};var r=xe(e,t),o,s;if(Object.getOwnPropertySymbols){var f=Object.getOwnPropertySymbols(e);for(s=0;s<f.length;s++)o=f[s],!(t.indexOf(o)>=0)&&Object.prototype.propertyIsEnumerable.call(e,o)&&(r[o]=e[o])}return r}function xe(e,t){if(e==null)return{};var r={};for(var o in e)if(Object.prototype.hasOwnProperty.call(e,o)){if(t.indexOf(o)>=0)continue;r[o]=e[o]}return r}function T(){return T=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var o in r)Object.prototype.hasOwnProperty.call(r,o)&&(e[o]=r[o])}return e},T.apply(this,arguments)}function X(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);t&&(o=o.filter(function(s){return Object.getOwnPropertyDescriptor(e,s).enumerable})),r.push.apply(r,o)}return r}function A(e){for(var t=1;t<arguments.length;t++){var r=arguments[t]!=null?arguments[t]:{};t%2?X(Object(r),!0).forEach(function(o){me(e,o,r[o])}):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(r)):X(Object(r)).forEach(function(o){Object.defineProperty(e,o,Object.getOwnPropertyDescriptor(r,o))})}return e}function me(e,t,r){return t=ke(t),t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function ke(e){var t=Ce(e,"string");return typeof t=="symbol"?t:t+""}function Ce(e,t){if(typeof e!="object"||!e)return e;var r=e[Symbol.toPrimitive];if(r!==void 0){var o=r.call(e,t);if(typeof o!="object")return o;throw new TypeError("@@toPrimitive must return a primitive value.")}return(t==="string"?String:Number)(e)}function Y(e){return e&&e.map((t,r)=>l.createElement(t.tag,A({key:r},t.attr),Y(t.child)))}function J(e){return t=>l.createElement(Se,T({attr:A({},e.attr)},t),Y(e.child))}function Se(e){var t=r=>{var{attr:o,size:s,title:f}=e,d=we(e,ye),u=s||r.size||"1em",i;return r.className&&(i=r.className),e.className&&(i=(i?i+" ":"")+e.className),l.createElement("svg",T({stroke:"currentColor",fill:"currentColor",strokeWidth:"0"},r.attr,o,d,{className:i,style:A(A({color:e.color||r.color},r.style),e.style),height:u,width:u,xmlns:"http://www.w3.org/2000/svg"}),f&&l.createElement("title",null,f),e.children)};return W!==void 0?l.createElement(W.Consumer,null,r=>t(r)):t(U)}function Ne(e){return J({attr:{viewBox:"0 0 512 512"},child:[{tag:"path",attr:{d:"M256 294.1L383 167c9.4-9.4 24.6-9.4 33.9 0s9.3 24.6 0 34L273 345c-9.1 9.1-23.7 9.3-33.1.7L95 201.1c-4.7-4.7-7-10.9-7-17s2.3-12.3 7-17c9.4-9.4 24.6-9.4 33.9 0l127.1 127z"},child:[]}]})(e)}const Ee=({items:e,allowMultipleOpen:t=!1,className:r="",tileClasses:o="",open:s,onChange:f,renderTitle:d,renderContent:u,showArrowIcon:i=!0,panelClasses:c=""})=>{const[a,b]=l.useState(new Set),h=l.useMemo(()=>s?new Set(s):a,[s,a]),p=l.useCallback(g=>{const v=new Set(h);v.has(g)?v.delete(g):(t||v.clear(),v.add(g)),s&&f?f(Array.from(v)):b(v)},[h,s,f,t]);return n.jsx("div",{className:"accordion",role:"region","aria-multiselectable":t,children:e.map(g=>{const v=h.has(g.id),k=`accordion-heading-${g.id}`,x=`accordion-panel-${g.id}`;return n.jsxs("div",{className:`accordion-item border rounded border-gray-300 dark:border-gray-700 ${r}`,children:[n.jsxs("button",{id:k,type:"button","aria-expanded":v,"aria-controls":x,onClick:()=>p(g.id),className:`flex justify-between items-center w-full p-1.5 text-left text-gray-700 dark:text-gray-300 hover:bg-gray-100 dark:hover:bg-gray-800 focus:outline-none gap-3 ${o}`,children:[d?d(g,v):g.title,i?n.jsx(Ne,{}):null]}),n.jsx("div",{id:x,role:"region","aria-labelledby":k,hidden:!v,className:`p-4 border-t border-gray-200 dark:border-gray-700 text-gray-600 dark:text-gray-400 ${c}`,children:u?u(g,v):g.content})]},g.id)})})},Q=l.createContext(null),z=()=>{const e=l.useContext(Q);if(!e)throw new Error("useModalActions must be used within a ModalActionProvider");return e},V=l.createContext(null),D=()=>l.useContext(V);function $e({id:e,title:t,children:r,standalone:o=!1,showFloatingClose:s=!1,containerClasses:f="",onClose:d,disableEscapeClose:u=!1}){const i=D(),c=z(),a=!o&&!!i&&!!c,[b,h]=l.useState(!1),p=a?i.isOpen(e):b,g=a?i.getModalData(e):null,v=l.useCallback(()=>{a?c.closeModal(e):h(!1),d==null||d()},[a,c,e,d]);return l.useEffect(()=>{const k=document.activeElement;console.log(e);const x=document.getElementById(e);console.log("modalEl=",x);const N=["a[href]","button:not([disabled])","textarea:not([disabled])","input:not([disabled])","select:not([disabled])",'[tabindex]:not([tabindex="-1"])'],E=()=>{if(!x)return[];const y=x.querySelectorAll(N.join(","));return Array.from(y).filter($=>$.offsetParent!==null)},C=y=>{if(y.key==="Tab"){const $=E();if($.length===0)return;const L=$[0],m=$[$.length-1];y.shiftKey?document.activeElement===L&&(y.preventDefault(),m.focus()):document.activeElement===m&&(y.preventDefault(),L.focus())}},S=y=>{y.key==="Escape"&&!u&&v(),C(y)};return p&&(document.body.style.overflow="hidden",setTimeout(()=>{const y=E();y.length&&y[0].focus()},0),window.addEventListener("keydown",S)),()=>{document.body.style.overflow="",k&&k.focus(),window.removeEventListener("keydown",S)}},[p,u,v,e]),p?n.jsx("div",{className:"fixed inset-0 z-50 flex items-center justify-center bg-black/60 backdrop-blur-[2px]",id:e,children:n.jsxs("div",{className:`bg-white rounded-lg shadow-lg w-full max-w-md p-4 transform transition-all duration-300 scale-100 ${f}`,children:[n.jsxs("div",{className:"flex justify-between items-center relative",children:[t&&n.jsx("h2",{className:"text-lg font-semibold",children:t}),s&&n.jsx("button",{onClick:v,className:"text-gray-500 hover:text-black absolute top-2 right-3 hover:bg-gray-200 rounded-full aspect-square w-8","aria-label":"Close modal",children:"✕"})]}),n.jsx("div",{className:"mt-3 text-sm text-gray-700",children:typeof r=="function"?r({modalData:g}):r})]})}):null}function Le({children:e}){const[t,r]=l.useState({}),[o,s]=l.useState({}),f=l.useCallback((b,h)=>{r(p=>({...p,[b]:!0})),h&&s(p=>({...p,[b]:h}))},[]),d=l.useCallback(b=>{r(h=>({...h,[b]:!1})),s(h=>{const p={...h};return delete p[b],p})},[]),u=l.useCallback(b=>!!t[b],[t]),i=l.useCallback(b=>o[b],[o]),c=l.useMemo(()=>({openModal:f,closeModal:d}),[f,d]),a=l.useMemo(()=>({isOpen:u,getModalData:i}),[u,i]);return n.jsx(Q.Provider,{value:c,children:n.jsx(V.Provider,{value:a,children:e})})}function Oe(e){const{openModal:t,closeModal:r}=z(),{isOpen:o,getModalData:s}=D();return{open:f=>t(e,f),close:()=>r(e),isOpen:o(e),data:s(e)}}let _=null,B={};function Me(e){_=e}function je(e){B={...B,...e}}function Pe(){return B}function Ie(e,t,r=3e3,o){_?_(e,t,r,o):console.warn("Toast system is not mounted")}function Te(e){return J({attr:{viewBox:"0 0 15 15",fill:"none"},child:[{tag:"path",attr:{fillRule:"evenodd",clipRule:"evenodd",d:"M11.7816 4.03157C12.0062 3.80702 12.0062 3.44295 11.7816 3.2184C11.5571 2.99385 11.193 2.99385 10.9685 3.2184L7.50005 6.68682L4.03164 3.2184C3.80708 2.99385 3.44301 2.99385 3.21846 3.2184C2.99391 3.44295 2.99391 3.80702 3.21846 4.03157L6.68688 7.49999L3.21846 10.9684C2.99391 11.193 2.99391 11.557 3.21846 11.7816C3.44301 12.0061 3.80708 12.0061 4.03164 11.7816L7.50005 8.31316L10.9685 11.7816C11.193 12.0061 11.5571 12.0061 11.7816 11.7816C12.0062 11.557 12.0062 11.193 11.7816 10.9684L8.31322 7.49999L11.7816 4.03157Z",fill:"currentColor"},child:[]}]})(e)}const Ae=()=>"xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(/[xy]/g,function(e){const t=Math.random()*16|0;return(e==="x"?t:t&3|8).toString(16)}),ze=()=>{const[e,t]=l.useState([]);l.useEffect(()=>{Me((o,s,f,d)=>{const u=Ae();t(i=>[...i,{id:u,type:o,message:s,config:d}]),setTimeout(()=>{t(i=>i.filter(c=>c.id!==u))},f)})},[]);const r=Pe();return n.jsx("div",{className:"fixed top-5 right-5 z-[9999] flex flex-col gap-2",children:e.map(o=>{var i,c,a,b,h,p,g,v,k,x,N,E,C;const s=((i=o.config)==null?void 0:i.icon)||((c=r.icons)==null?void 0:c[o.type])||De(o.type),f=((a=o.config)==null?void 0:a.bgColor)||((h=(b=r.colors)==null?void 0:b[o.type])==null?void 0:h.bg)||"bg-white dark:bg-gray-800",d=((p=o.config)==null?void 0:p.textColor)||((v=(g=r.colors)==null?void 0:g[o.type])==null?void 0:v.text)||"text-gray-700 dark:text-gray-300",u=((k=o.config)==null?void 0:k.iconContainerClass)||"w-8 h-8 mr-3 text-xl flex items-center justify-center";return n.jsxs("div",{className:`flex items-center w-full max-w-xs p-4 text-sm rounded-lg shadow ${f} ${d}`,children:[n.jsx("div",{className:u,children:s}),n.jsxs("div",{className:"flex-1 me-3",children:[((x=o.config)==null?void 0:x.title)&&n.jsx("div",{className:"font-semibold text-black",children:o.config.title}),((N=o.config)==null?void 0:N.description)&&n.jsx("div",{className:"text-sm text-gray-500",children:o.config.description}),!((E=o.config)!=null&&E.title)&&!((C=o.config)!=null&&C.description)&&n.jsx("div",{className:"text-sm",children:o.message})]}),n.jsx("button",{onClick:()=>t(S=>S.filter(y=>y.id!==o.id)),className:"ml-auto text-gray-400 hover:text-gray-700 dark:text-gray-500 dark:hover:text-white","aria-label":"Close",children:n.jsx(Te,{size:18})})]},o.id)})})};function De(e){switch(e){case"success":return"✅";case"error":return"❌";case"warning":return"⚠️";case"info":return"ℹ️"}}w.Accordion=Ee,w.Badge=ve,w.Button=ue,w.Dropdown=fe,w.Input=q,w.Modal=$e,w.ModalProvider=Le,w.Select=K,w.Toast=ze,w.Tooltip=be,w.setToastDefaults=je,w.showToast=Ie,w.useModalActions=z,w.useModalInstance=Oe,w.useModalState=D,Object.defineProperty(w,Symbol.toStringTag,{value:"Module"})});
|