am-shared-assets 1.0.6 → 1.0.8
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/components/Autocomplete.d.ts +4 -6
- package/dist/components/Input.d.ts +2 -1
- package/dist/components/index.d.ts +1 -0
- package/dist/components.js +408 -311
- package/dist/styles.css +1 -1
- package/package.json +1 -1
|
@@ -5,18 +5,16 @@ interface IAutocompleteProps {
|
|
|
5
5
|
inputIcon?: ReactNode;
|
|
6
6
|
inputEndIcon?: ReactNode;
|
|
7
7
|
value: string;
|
|
8
|
-
|
|
8
|
+
onInputChange?: (value: string) => void;
|
|
9
|
+
onChange?: (value: any) => void;
|
|
9
10
|
size?: "sm" | "lg";
|
|
10
11
|
variant?: "flat" | "faded" | "bordered";
|
|
11
12
|
options: {
|
|
12
|
-
|
|
13
|
-
}[];
|
|
14
|
-
optionsUI: {
|
|
15
|
-
id: number;
|
|
13
|
+
data: any;
|
|
16
14
|
element: ReactNode;
|
|
17
15
|
}[];
|
|
18
16
|
iconOnClick?: () => void;
|
|
19
17
|
endIconOnClick?: () => void;
|
|
20
18
|
}
|
|
21
|
-
export declare const Autocomplete: ({ label, placeHolder, inputIcon, inputEndIcon, value, onChange, size, variant, options,
|
|
19
|
+
export declare const Autocomplete: ({ label, placeHolder, inputIcon, inputEndIcon, value, onInputChange, onChange, size, variant, options, iconOnClick, endIconOnClick, }: IAutocompleteProps) => import("react/jsx-runtime").JSX.Element;
|
|
22
20
|
export {};
|
|
@@ -7,6 +7,7 @@ interface IInputProps {
|
|
|
7
7
|
name?: string;
|
|
8
8
|
value?: string;
|
|
9
9
|
onChange?: (value: string) => void;
|
|
10
|
+
isFocused?: boolean;
|
|
10
11
|
placeHolder?: string;
|
|
11
12
|
variant?: "flat" | "bordered" | "faded";
|
|
12
13
|
color?: "default" | "primary" | "success" | "warning" | "danger";
|
|
@@ -18,5 +19,5 @@ interface IInputProps {
|
|
|
18
19
|
errorMsg?: string;
|
|
19
20
|
hasError?: boolean;
|
|
20
21
|
}
|
|
21
|
-
export declare const Input: ({ id, label, required, register, name, value, onChange, placeHolder, variant, color, size, rounded, description, icon, endIcon, errorMsg, hasError, }: IInputProps) => import("react/jsx-runtime").JSX.Element;
|
|
22
|
+
export declare const Input: ({ id, label, required, register, name, value, onChange, isFocused, placeHolder, variant, color, size, rounded, description, icon, endIcon, errorMsg, hasError, }: IInputProps) => import("react/jsx-runtime").JSX.Element;
|
|
22
23
|
export {};
|
package/dist/components.js
CHANGED
|
@@ -1,68 +1,70 @@
|
|
|
1
|
-
import { jsxs as
|
|
2
|
-
import { I as
|
|
3
|
-
import { Slider as
|
|
4
|
-
import
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
1
|
+
import { jsxs as b, jsx as a, Fragment as W } from "react/jsx-runtime";
|
|
2
|
+
import { I as S, b as z, a as q, W as V, T as Y, C as G } from "./ChevronBottomIcon-BM6pUrh1.js";
|
|
3
|
+
import { Slider as J, MenuItem as K } from "@mui/material";
|
|
4
|
+
import Q from "@mui/material/Select";
|
|
5
|
+
import U from "@mui/material/Autocomplete";
|
|
6
|
+
import "react";
|
|
7
|
+
function T(t) {
|
|
8
|
+
var r, s, e = "";
|
|
9
|
+
if (typeof t == "string" || typeof t == "number") e += t;
|
|
10
|
+
else if (typeof t == "object") if (Array.isArray(t)) {
|
|
11
|
+
var n = t.length;
|
|
12
|
+
for (r = 0; r < n; r++) t[r] && (s = T(t[r])) && (e && (e += " "), e += s);
|
|
13
|
+
} else for (s in t) t[s] && (e && (e += " "), e += s);
|
|
14
|
+
return e;
|
|
13
15
|
}
|
|
14
|
-
function
|
|
15
|
-
for (var
|
|
16
|
-
return
|
|
16
|
+
function f() {
|
|
17
|
+
for (var t, r, s = 0, e = "", n = arguments.length; s < n; s++) (t = arguments[s]) && (r = T(t)) && (e && (e += " "), e += r);
|
|
18
|
+
return e;
|
|
17
19
|
}
|
|
18
|
-
const
|
|
20
|
+
const X = {
|
|
19
21
|
sm: "text-xs",
|
|
20
22
|
md: "text-sm"
|
|
21
|
-
},
|
|
23
|
+
}, Z = {
|
|
22
24
|
default: "w-[342px] min-w-[342px]",
|
|
23
25
|
full: "w-full"
|
|
24
|
-
},
|
|
26
|
+
}, H = {
|
|
25
27
|
default: "bg-default-100",
|
|
26
28
|
primary: "bg-primary-50",
|
|
27
29
|
secondary: "bg-secondary-50",
|
|
28
30
|
success: "bg-success-50",
|
|
29
31
|
warning: "bg-warning-50",
|
|
30
32
|
danger: "bg-danger-50"
|
|
31
|
-
},
|
|
33
|
+
}, ee = {
|
|
32
34
|
default: "text-default-900",
|
|
33
35
|
primary: "text-base-primary",
|
|
34
36
|
secondary: "text-base-secondary",
|
|
35
37
|
success: "text-base-success",
|
|
36
38
|
warning: "text-default-900",
|
|
37
39
|
danger: "text-base-danger"
|
|
38
|
-
},
|
|
40
|
+
}, re = {
|
|
39
41
|
default: "text-default-600",
|
|
40
42
|
primary: "text-base-primary",
|
|
41
43
|
secondary: "text-base-secondary",
|
|
42
44
|
success: "text-base-success",
|
|
43
45
|
warning: "text-default-600",
|
|
44
46
|
danger: "text-base-danger"
|
|
45
|
-
},
|
|
47
|
+
}, se = {
|
|
46
48
|
default: "bg-default-300",
|
|
47
49
|
primary: "bg-base-primary",
|
|
48
50
|
secondary: "bg-base-secondary",
|
|
49
51
|
success: "bg-base-success",
|
|
50
52
|
warning: "bg-base-warning",
|
|
51
53
|
danger: "bg-base-danger"
|
|
52
|
-
},
|
|
54
|
+
}, te = {
|
|
53
55
|
white: "text-white",
|
|
54
56
|
black: "text-default-900"
|
|
55
|
-
},
|
|
57
|
+
}, A = {
|
|
56
58
|
default: "#a1a1aa",
|
|
57
59
|
primary: "#A9BCE3",
|
|
58
60
|
secondary: "#E2CDA6",
|
|
59
61
|
success: "#a2e9c1",
|
|
60
62
|
warning: "#fbdba7",
|
|
61
63
|
danger: "#faa0bf"
|
|
62
|
-
},
|
|
64
|
+
}, M = {
|
|
63
65
|
start: "items-start",
|
|
64
66
|
center: "items-center"
|
|
65
|
-
},
|
|
67
|
+
}, I = {
|
|
66
68
|
default: "#000",
|
|
67
69
|
primary: "#112E62",
|
|
68
70
|
secondary: "#C59C4E",
|
|
@@ -70,115 +72,115 @@ const Q = {
|
|
|
70
72
|
warning: "#f5a524",
|
|
71
73
|
danger: "#f31260"
|
|
72
74
|
}, $ = {
|
|
73
|
-
success: /* @__PURE__ */
|
|
74
|
-
warning: /* @__PURE__ */
|
|
75
|
-
danger: /* @__PURE__ */
|
|
76
|
-
},
|
|
75
|
+
success: /* @__PURE__ */ a(Y, { color: "#17C964", size: 24 }),
|
|
76
|
+
warning: /* @__PURE__ */ a(V, { color: "#F5A524", size: 24 }),
|
|
77
|
+
danger: /* @__PURE__ */ a(q, { color: "#F31260", size: 24 })
|
|
78
|
+
}, ae = {
|
|
77
79
|
none: "rounded-none",
|
|
78
80
|
sm: "rounded-md",
|
|
79
81
|
md: "rounded-xl",
|
|
80
82
|
lg: "rounded-[22px]",
|
|
81
83
|
full: "rounded-full"
|
|
82
|
-
},
|
|
83
|
-
title:
|
|
84
|
-
description:
|
|
84
|
+
}, Ve = ({
|
|
85
|
+
title: t,
|
|
86
|
+
description: r,
|
|
85
87
|
color: s = "default",
|
|
86
|
-
size:
|
|
88
|
+
size: e = "md",
|
|
87
89
|
width: n = "default",
|
|
88
|
-
rounded:
|
|
89
|
-
infoIconAlignment:
|
|
90
|
+
rounded: d = "none",
|
|
91
|
+
infoIconAlignment: o,
|
|
90
92
|
isInfoIcon: c = !0,
|
|
91
93
|
hasCloseButton: i = !0,
|
|
92
|
-
hasButton:
|
|
93
|
-
buttonTitle:
|
|
94
|
-
buttonTextColor:
|
|
95
|
-
buttonClickHandler:
|
|
96
|
-
closeAlertHandler:
|
|
97
|
-
children:
|
|
94
|
+
hasButton: l = !1,
|
|
95
|
+
buttonTitle: p,
|
|
96
|
+
buttonTextColor: m = "black",
|
|
97
|
+
buttonClickHandler: x,
|
|
98
|
+
closeAlertHandler: h,
|
|
99
|
+
children: u
|
|
98
100
|
}) => {
|
|
99
|
-
const
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
101
|
+
const g = f(
|
|
102
|
+
Z[n],
|
|
103
|
+
X[e],
|
|
104
|
+
ae[d],
|
|
105
|
+
H[s]
|
|
104
106
|
);
|
|
105
|
-
return
|
|
107
|
+
return u ? /* @__PURE__ */ b(
|
|
106
108
|
"div",
|
|
107
109
|
{
|
|
108
|
-
className: `flex p-3 ${
|
|
110
|
+
className: `flex p-3 ${g} ${o && M[o]}`,
|
|
109
111
|
children: [
|
|
110
|
-
/* @__PURE__ */
|
|
111
|
-
|
|
112
|
+
/* @__PURE__ */ a("div", { className: "mt-[1px]", children: c || !$[s] ? /* @__PURE__ */ a(S, { color: I[s] }) : $[s] }),
|
|
113
|
+
u
|
|
112
114
|
]
|
|
113
115
|
}
|
|
114
|
-
) : /* @__PURE__ */
|
|
115
|
-
/* @__PURE__ */
|
|
116
|
+
) : /* @__PURE__ */ b("div", { className: `relative flex justify-between p-3 ${g}`, children: [
|
|
117
|
+
/* @__PURE__ */ b(
|
|
116
118
|
"div",
|
|
117
119
|
{
|
|
118
|
-
className: `flex ${
|
|
120
|
+
className: `flex ${o ? M[o] : l ? "items-center" : t && r ? "items-start" : "items-center"} gap-3`,
|
|
119
121
|
children: [
|
|
120
|
-
/* @__PURE__ */
|
|
121
|
-
/* @__PURE__ */
|
|
122
|
-
|
|
123
|
-
|
|
122
|
+
/* @__PURE__ */ a("div", { className: "mt-[1px]", children: c || !$[s] ? /* @__PURE__ */ a(S, { color: I[s] }) : $[s] }),
|
|
123
|
+
/* @__PURE__ */ b("div", { children: [
|
|
124
|
+
t && /* @__PURE__ */ a("h2", { className: `font-semibold ${ee[s]}`, children: t }),
|
|
125
|
+
r && /* @__PURE__ */ a("p", { className: re[s], children: r })
|
|
124
126
|
] })
|
|
125
127
|
]
|
|
126
128
|
}
|
|
127
129
|
),
|
|
128
|
-
|
|
129
|
-
/* @__PURE__ */
|
|
130
|
+
l ? /* @__PURE__ */ b("div", { className: "flex items-center", children: [
|
|
131
|
+
/* @__PURE__ */ a(
|
|
130
132
|
"button",
|
|
131
133
|
{
|
|
132
|
-
onClick:
|
|
133
|
-
className: `h-8 px-3 rounded-md ${
|
|
134
|
-
children:
|
|
134
|
+
onClick: x,
|
|
135
|
+
className: `h-8 px-3 rounded-md ${se[s]} ${te[m]}`,
|
|
136
|
+
children: p
|
|
135
137
|
}
|
|
136
138
|
),
|
|
137
|
-
i && /* @__PURE__ */
|
|
139
|
+
i && /* @__PURE__ */ a(
|
|
138
140
|
"button",
|
|
139
141
|
{
|
|
140
|
-
onClick:
|
|
142
|
+
onClick: h,
|
|
141
143
|
className: "absolute -top-1 -left-1 border border-default-300 bg-default-100 rounded-full",
|
|
142
|
-
children: /* @__PURE__ */
|
|
144
|
+
children: /* @__PURE__ */ a(z, { color: A.default, size: 14 })
|
|
143
145
|
}
|
|
144
146
|
)
|
|
145
|
-
] }) : i && /* @__PURE__ */
|
|
147
|
+
] }) : i && /* @__PURE__ */ a("div", { children: /* @__PURE__ */ a("button", { onClick: h, children: /* @__PURE__ */ a(z, { color: A[s] }) }) })
|
|
146
148
|
] });
|
|
147
|
-
},
|
|
149
|
+
}, ne = {
|
|
148
150
|
sm: "h-5 text-xs px-2",
|
|
149
151
|
md: "h-6 text-sm px-2.5",
|
|
150
152
|
lg: "h-7 text-sm px-3"
|
|
151
|
-
},
|
|
153
|
+
}, oe = {
|
|
152
154
|
neutral: "bg-default-500",
|
|
153
155
|
default: "bg-default-200",
|
|
154
156
|
primary: "bg-layout-focus",
|
|
155
157
|
danger: "bg-base-danger",
|
|
156
158
|
success: "bg-base-success"
|
|
157
|
-
},
|
|
159
|
+
}, de = {
|
|
158
160
|
white: "text-content-1",
|
|
159
161
|
black: "text-layout-fg"
|
|
160
|
-
},
|
|
162
|
+
}, ce = {
|
|
161
163
|
pill: "rounded-full",
|
|
162
164
|
Rectangle: "rounded-xxs"
|
|
163
|
-
},
|
|
164
|
-
label:
|
|
165
|
-
color:
|
|
165
|
+
}, Ye = ({
|
|
166
|
+
label: t,
|
|
167
|
+
color: r = "default",
|
|
166
168
|
type: s = "pill",
|
|
167
|
-
size:
|
|
169
|
+
size: e = "md",
|
|
168
170
|
textColor: n = "black"
|
|
169
171
|
}) => {
|
|
170
|
-
const
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
172
|
+
const d = f(
|
|
173
|
+
oe[r],
|
|
174
|
+
de[n],
|
|
175
|
+
ne[e],
|
|
176
|
+
ce[s]
|
|
175
177
|
);
|
|
176
|
-
return /* @__PURE__ */
|
|
177
|
-
},
|
|
178
|
+
return /* @__PURE__ */ a("div", { className: `flex justify-center items-center ${d}`, children: t });
|
|
179
|
+
}, ie = {
|
|
178
180
|
sm: "h-8 text-xs px-3",
|
|
179
181
|
md: "h-10 text-sm px-4",
|
|
180
182
|
lg: "h-12 text-base px-6"
|
|
181
|
-
},
|
|
183
|
+
}, y = {
|
|
182
184
|
white: "text-white",
|
|
183
185
|
black: "text-default-900",
|
|
184
186
|
default: "text-default-900",
|
|
@@ -194,101 +196,101 @@ const Q = {
|
|
|
194
196
|
success: "bg-base-success",
|
|
195
197
|
warning: "bg-base-warning",
|
|
196
198
|
danger: "bg-base-danger"
|
|
197
|
-
},
|
|
199
|
+
}, P = {
|
|
198
200
|
default: "border-default-300",
|
|
199
201
|
primary: "border-base-primary",
|
|
200
202
|
secondary: "border-base-secondary",
|
|
201
203
|
success: "border-base-success",
|
|
202
204
|
warning: "border-base-warning",
|
|
203
205
|
danger: "border-base-danger"
|
|
204
|
-
},
|
|
206
|
+
}, j = {
|
|
205
207
|
default: "bg-default-100",
|
|
206
208
|
primary: "bg-primary-100",
|
|
207
209
|
secondary: "bg-secondary-100",
|
|
208
210
|
success: "bg-success-100",
|
|
209
211
|
warning: "bg-warning-100",
|
|
210
212
|
danger: "bg-danger-100"
|
|
211
|
-
},
|
|
213
|
+
}, le = {
|
|
212
214
|
none: "rounded-none",
|
|
213
215
|
sm: "rounded-sm",
|
|
214
216
|
md: "rounded-md",
|
|
215
217
|
lg: "rounded-lg",
|
|
216
218
|
full: "rounded-full"
|
|
217
|
-
},
|
|
218
|
-
let
|
|
219
|
-
switch (
|
|
219
|
+
}, ue = (t, r, s) => {
|
|
220
|
+
let e = "";
|
|
221
|
+
switch (t) {
|
|
220
222
|
case "solid":
|
|
221
|
-
|
|
223
|
+
e = `${B[r]} ${y[s]}`;
|
|
222
224
|
break;
|
|
223
225
|
case "bordered":
|
|
224
|
-
|
|
226
|
+
e = `border-2 ${P[r]} ${y[r]}`;
|
|
225
227
|
break;
|
|
226
228
|
case "light":
|
|
227
|
-
|
|
229
|
+
e = y[r];
|
|
228
230
|
break;
|
|
229
231
|
case "flat":
|
|
230
|
-
|
|
232
|
+
e = `${j[r]} ${y[r]}`;
|
|
231
233
|
break;
|
|
232
234
|
case "faded":
|
|
233
|
-
|
|
235
|
+
e = `border-2 ${P.default} ${j.default} ${y[r]}`;
|
|
234
236
|
break;
|
|
235
237
|
case "shadow":
|
|
236
|
-
|
|
238
|
+
e = `shadow-lg ${B[r]} ${y[s]}`;
|
|
237
239
|
break;
|
|
238
240
|
}
|
|
239
|
-
return
|
|
240
|
-
},
|
|
241
|
-
type:
|
|
242
|
-
variant:
|
|
241
|
+
return e;
|
|
242
|
+
}, Ge = ({
|
|
243
|
+
type: t = "button",
|
|
244
|
+
variant: r = "solid",
|
|
243
245
|
color: s = "default",
|
|
244
|
-
textColor:
|
|
246
|
+
textColor: e = "black",
|
|
245
247
|
size: n = "md",
|
|
246
|
-
rounded:
|
|
247
|
-
label:
|
|
248
|
+
rounded: d = "none",
|
|
249
|
+
label: o,
|
|
248
250
|
icon: c,
|
|
249
251
|
iconPosition: i = "left",
|
|
250
|
-
width:
|
|
251
|
-
disabled:
|
|
252
|
-
onClick:
|
|
252
|
+
width: l = "auto",
|
|
253
|
+
disabled: p = !1,
|
|
254
|
+
onClick: m
|
|
253
255
|
}) => {
|
|
254
|
-
const
|
|
255
|
-
|
|
256
|
+
const x = f(
|
|
257
|
+
l === "full" ? "w-full" : "w-auto",
|
|
256
258
|
i === "right" ? "flex-row" : "flex-row-reverse",
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
259
|
+
le[d],
|
|
260
|
+
ie[n],
|
|
261
|
+
ue(r, s, e)
|
|
260
262
|
);
|
|
261
|
-
return /* @__PURE__ */
|
|
263
|
+
return /* @__PURE__ */ b(
|
|
262
264
|
"button",
|
|
263
265
|
{
|
|
264
|
-
type:
|
|
265
|
-
className: "flex items-center justify-center gap-2 font-semibold transition-all duration-300 " +
|
|
266
|
-
onClick:
|
|
267
|
-
disabled:
|
|
266
|
+
type: t,
|
|
267
|
+
className: "flex items-center justify-center gap-2 font-semibold transition-all duration-300 " + x,
|
|
268
|
+
onClick: m,
|
|
269
|
+
disabled: p,
|
|
268
270
|
children: [
|
|
269
271
|
c,
|
|
270
|
-
|
|
272
|
+
o && /* @__PURE__ */ a("p", { children: o })
|
|
271
273
|
]
|
|
272
274
|
}
|
|
273
275
|
);
|
|
274
|
-
},
|
|
276
|
+
}, be = {
|
|
275
277
|
sm: "h-6 text-xs",
|
|
276
278
|
md: "h-7 text-sm",
|
|
277
279
|
lg: "h-8 text-base"
|
|
278
|
-
},
|
|
280
|
+
}, ge = {
|
|
279
281
|
none: "rounded-none",
|
|
280
282
|
sm: "rounded-sm",
|
|
281
283
|
md: "rounded-md",
|
|
282
284
|
lg: "rounded-lg",
|
|
283
285
|
full: "rounded-full"
|
|
284
|
-
},
|
|
286
|
+
}, D = {
|
|
285
287
|
default: "bg-default-200",
|
|
286
288
|
primary: "bg-base-primary",
|
|
287
289
|
secondary: "bg-base-secondary",
|
|
288
290
|
success: "bg-base-success",
|
|
289
291
|
warning: "bg-base-warning",
|
|
290
292
|
danger: "bg-base-danger"
|
|
291
|
-
},
|
|
293
|
+
}, w = {
|
|
292
294
|
white: "text-content-1",
|
|
293
295
|
black: "text-layout-fg",
|
|
294
296
|
default: "text-layout-fg",
|
|
@@ -297,273 +299,276 @@ const Q = {
|
|
|
297
299
|
success: "text-base-success",
|
|
298
300
|
warning: "text-base-warning",
|
|
299
301
|
danger: "text-base-danger"
|
|
300
|
-
},
|
|
302
|
+
}, C = {
|
|
301
303
|
default: "border-default-200",
|
|
302
304
|
primary: "border-base-primary",
|
|
303
305
|
secondary: "border-base-secondary",
|
|
304
306
|
success: "border-base-success",
|
|
305
307
|
warning: "border-base-warning",
|
|
306
308
|
danger: "border-base-danger"
|
|
307
|
-
},
|
|
309
|
+
}, pe = {
|
|
308
310
|
default: "bg-default-200",
|
|
309
311
|
primary: "bg-primary-100",
|
|
310
312
|
secondary: "bg-secondary-100",
|
|
311
313
|
success: "bg-success-100",
|
|
312
314
|
warning: "bg-warning-100",
|
|
313
315
|
danger: "bg-danger-100"
|
|
314
|
-
},
|
|
316
|
+
}, fe = {
|
|
315
317
|
default: "bg-default-400",
|
|
316
318
|
primary: "bg-base-primary",
|
|
317
319
|
secondary: "bg-base-secondary",
|
|
318
320
|
success: "bg-base-success",
|
|
319
321
|
warning: "bg-base-warning",
|
|
320
322
|
danger: "bg-base-danger"
|
|
321
|
-
},
|
|
322
|
-
let
|
|
323
|
-
switch (
|
|
323
|
+
}, me = (t, r, s) => {
|
|
324
|
+
let e = "";
|
|
325
|
+
switch (t) {
|
|
324
326
|
case "solid":
|
|
325
|
-
|
|
327
|
+
e = `${D[r]} ${w[s]}`;
|
|
326
328
|
break;
|
|
327
329
|
case "bordered":
|
|
328
|
-
|
|
330
|
+
e = `border-2 ${C[r]} ${w[r]}`;
|
|
329
331
|
break;
|
|
330
332
|
case "light":
|
|
331
|
-
|
|
333
|
+
e = w[r];
|
|
332
334
|
break;
|
|
333
335
|
case "flat":
|
|
334
|
-
|
|
336
|
+
e = `${pe[r]} ${w[r]}`;
|
|
335
337
|
break;
|
|
336
338
|
case "faded":
|
|
337
|
-
|
|
339
|
+
e = `border-2 ${C.default} bg-default-100 ${w[r]}`;
|
|
338
340
|
break;
|
|
339
341
|
case "shadow":
|
|
340
|
-
|
|
342
|
+
e = `shadow-lg ${D[r]} ${w[s]}`;
|
|
341
343
|
break;
|
|
342
344
|
case "dot":
|
|
343
|
-
|
|
345
|
+
e = `border-2 ${C.default} ${w.black}`;
|
|
344
346
|
break;
|
|
345
347
|
}
|
|
346
|
-
return
|
|
347
|
-
},
|
|
348
|
-
variant:
|
|
349
|
-
color:
|
|
348
|
+
return e;
|
|
349
|
+
}, Je = ({
|
|
350
|
+
variant: t = "solid",
|
|
351
|
+
color: r = "default",
|
|
350
352
|
textColor: s = "black",
|
|
351
|
-
label:
|
|
353
|
+
label: e,
|
|
352
354
|
size: n = "md",
|
|
353
|
-
rounded:
|
|
354
|
-
children:
|
|
355
|
+
rounded: d = "none",
|
|
356
|
+
children: o
|
|
355
357
|
}) => {
|
|
356
|
-
const c =
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
358
|
+
const c = f(
|
|
359
|
+
ge[d],
|
|
360
|
+
be[n],
|
|
361
|
+
me(t, r, s)
|
|
360
362
|
);
|
|
361
|
-
return /* @__PURE__ */
|
|
362
|
-
/* @__PURE__ */
|
|
363
|
-
|
|
363
|
+
return /* @__PURE__ */ a("div", { className: `w-fit flex items-center justify-center gap-1 px-2 ${c}`, children: o || /* @__PURE__ */ b(W, { children: [
|
|
364
|
+
/* @__PURE__ */ a("p", { children: e }),
|
|
365
|
+
t === "dot" && /* @__PURE__ */ a("div", { className: `size-2 rounded-full ${fe[r]}` })
|
|
364
366
|
] }) });
|
|
365
|
-
},
|
|
367
|
+
}, xe = {
|
|
366
368
|
sm: "h-8 py-1",
|
|
367
369
|
lg: "h-10 py-2"
|
|
368
|
-
},
|
|
370
|
+
}, he = {
|
|
369
371
|
default: "text-default-600",
|
|
370
372
|
primary: "text-base-primary",
|
|
371
373
|
success: "text-base-success",
|
|
372
374
|
warning: "text-base-warning",
|
|
373
375
|
danger: "text-base-danger"
|
|
374
|
-
},
|
|
376
|
+
}, we = {
|
|
375
377
|
primary: "text-base-primary hover:text-base-primary",
|
|
376
378
|
success: "text-base-success hover:text-base-success",
|
|
377
379
|
warning: "text-base-warning hover:text-base-warning"
|
|
378
|
-
},
|
|
380
|
+
}, ye = {
|
|
379
381
|
default: "bg-default-100 hover:bg-default-200 focus-within:hover:bg-transparent",
|
|
380
382
|
primary: "bg-primary-100 hover:bg-primary-50 focus-within:hover:bg-transparent",
|
|
381
383
|
success: "bg-success-100 hover:bg-success-50 focus-within:hover:bg-transparent",
|
|
382
384
|
warning: "bg-warning-100 hover:bg-warning-50 focus-within:hover:bg-transparent",
|
|
383
385
|
danger: "bg-danger-100 hover:bg-danger-50 focus-within:hover:bg-transparent"
|
|
384
|
-
},
|
|
386
|
+
}, k = {
|
|
385
387
|
default: "focus-within:bg-transparent focus-within:border focus-within:border-layout-fg focus-within:hover:border-layout-fg focus-within:hover:bg-transparent",
|
|
386
388
|
primary: "focus-within:bg-transparent focus-within:border focus-within:border-base-primary focus-within:hover:border-base-primary focus-within:hover:bg-transparent",
|
|
387
389
|
success: "focus-within:bg-transparent focus-within:border focus-within:border-base-success focus-within:hover:border-base-success focus-within:hover:bg-transparent",
|
|
388
390
|
warning: "focus-within:bg-transparent focus-within:border focus-within:border-base-warning focus-within:hover:border-base-warning focus-within:hover:bg-transparent",
|
|
389
391
|
danger: "focus-within:bg-transparent focus-within:border focus-within:border-base-danger focus-within:hover:border-base-danger focus-within:hover:bg-transparent"
|
|
390
|
-
},
|
|
392
|
+
}, ve = {
|
|
391
393
|
default: "hover:border-default-400",
|
|
392
394
|
primary: "hover:border-base-primary",
|
|
393
395
|
success: "hover:border-base-success",
|
|
394
396
|
warning: "hover:border-base-warning",
|
|
395
397
|
danger: "hover:border-base-danger"
|
|
396
|
-
},
|
|
398
|
+
}, $e = {
|
|
397
399
|
sm: "rounded-sm",
|
|
398
400
|
full: "rounded-full"
|
|
399
|
-
},
|
|
400
|
-
let
|
|
401
|
+
}, Ce = (t, r, s) => {
|
|
402
|
+
let e = "";
|
|
401
403
|
if (s)
|
|
402
|
-
return
|
|
403
|
-
switch (
|
|
404
|
+
return e = "bg-danger-100 hover:bg-danger-50 focus-within:hover:bg-transparent focus-within:bg-transparent focus-within:border focus-within:border-base-danger";
|
|
405
|
+
switch (t) {
|
|
404
406
|
case "flat":
|
|
405
|
-
|
|
407
|
+
e = `${ye[r]} ${k[r]} ${we[r]} focus-within:text-layout-fg`;
|
|
406
408
|
break;
|
|
407
409
|
case "bordered":
|
|
408
|
-
|
|
410
|
+
e = `bg-transparent border border-default-200 hover:border-default-400 ${k[r]}`;
|
|
409
411
|
break;
|
|
410
412
|
case "faded":
|
|
411
|
-
|
|
413
|
+
e = `border border-default-200 bg-default-100 hover:bg-default-200 ${ve[r]} ${k[r]}`;
|
|
412
414
|
break;
|
|
413
415
|
}
|
|
414
|
-
return
|
|
415
|
-
},
|
|
416
|
-
id:
|
|
417
|
-
label:
|
|
416
|
+
return e;
|
|
417
|
+
}, Ke = ({
|
|
418
|
+
id: t,
|
|
419
|
+
label: r,
|
|
418
420
|
required: s = !1,
|
|
419
|
-
register:
|
|
421
|
+
register: e,
|
|
420
422
|
name: n,
|
|
421
|
-
value:
|
|
422
|
-
onChange:
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
423
|
+
value: d,
|
|
424
|
+
onChange: o,
|
|
425
|
+
isFocused: c = !1,
|
|
426
|
+
placeHolder: i,
|
|
427
|
+
variant: l = "flat",
|
|
428
|
+
color: p = "default",
|
|
429
|
+
size: m = "sm",
|
|
430
|
+
rounded: x = "sm",
|
|
431
|
+
description: h = "",
|
|
432
|
+
icon: u,
|
|
433
|
+
endIcon: g,
|
|
434
|
+
errorMsg: v = "",
|
|
432
435
|
hasError: _ = !1
|
|
433
436
|
}) => {
|
|
434
|
-
const L =
|
|
435
|
-
return /* @__PURE__ */
|
|
436
|
-
|
|
437
|
+
const L = f($e[x], Ce(l, p, _)), F = f(xe[m]);
|
|
438
|
+
return /* @__PURE__ */ b("label", { className: "flex flex-col w-full", children: [
|
|
439
|
+
r && /* @__PURE__ */ b(
|
|
437
440
|
"div",
|
|
438
441
|
{
|
|
439
|
-
className: `h-4 text-xs mb-2 ${_ ? "text-base-danger" :
|
|
442
|
+
className: `h-4 text-xs mb-2 ${_ ? "text-base-danger" : he[p]}`,
|
|
440
443
|
children: [
|
|
441
|
-
|
|
442
|
-
s && /* @__PURE__ */
|
|
444
|
+
r,
|
|
445
|
+
s && /* @__PURE__ */ a("span", { className: "text-base-danger text-sm", children: "*" })
|
|
443
446
|
]
|
|
444
447
|
}
|
|
445
448
|
),
|
|
446
|
-
/* @__PURE__ */
|
|
449
|
+
/* @__PURE__ */ b(
|
|
447
450
|
"div",
|
|
448
451
|
{
|
|
449
452
|
className: `${L} flex items-center px-1.5 transition-all duration-200`,
|
|
450
453
|
children: [
|
|
451
|
-
|
|
452
|
-
|
|
454
|
+
u,
|
|
455
|
+
e ? /* @__PURE__ */ a(
|
|
453
456
|
"input",
|
|
454
457
|
{
|
|
455
|
-
id: `${
|
|
458
|
+
id: `${t}`,
|
|
456
459
|
type: "text",
|
|
457
|
-
...
|
|
458
|
-
placeholder:
|
|
459
|
-
className: `${
|
|
460
|
+
...e(n),
|
|
461
|
+
placeholder: i,
|
|
462
|
+
className: `${F} bg-transparent w-full px-1.5 text-sm outline-none`,
|
|
463
|
+
autoFocus: c
|
|
460
464
|
}
|
|
461
|
-
) : /* @__PURE__ */
|
|
465
|
+
) : /* @__PURE__ */ a(
|
|
462
466
|
"input",
|
|
463
467
|
{
|
|
464
|
-
id: `${
|
|
468
|
+
id: `${t}`,
|
|
465
469
|
type: "text",
|
|
466
|
-
value:
|
|
467
|
-
onChange: (
|
|
468
|
-
placeholder:
|
|
469
|
-
className: `${
|
|
470
|
+
value: d,
|
|
471
|
+
onChange: (O) => o && o(O.target.value),
|
|
472
|
+
placeholder: i,
|
|
473
|
+
className: `${F} bg-transparent w-full px-1.5 text-sm outline-none`,
|
|
474
|
+
autoFocus: c
|
|
470
475
|
}
|
|
471
476
|
),
|
|
472
|
-
|
|
477
|
+
g
|
|
473
478
|
]
|
|
474
479
|
}
|
|
475
480
|
),
|
|
476
|
-
|
|
477
|
-
|
|
481
|
+
h && !v && /* @__PURE__ */ a("p", { className: "mt-1 text-xs text-default-400", children: h }),
|
|
482
|
+
v && /* @__PURE__ */ a("p", { className: "mt-1 mr-1 text-xs text-base-danger", children: v })
|
|
478
483
|
] });
|
|
479
|
-
},
|
|
484
|
+
}, ke = {
|
|
480
485
|
sm: "size-4 min-w-4 p-[3px]",
|
|
481
486
|
md: "size-5 min-w-5 p-1",
|
|
482
487
|
lg: "size-6 min-w-6 p-[5px]"
|
|
483
|
-
},
|
|
488
|
+
}, Ne = {
|
|
484
489
|
primary: "border-base-primary",
|
|
485
490
|
secondary: "border-base-secondary",
|
|
486
491
|
success: "border-base-success",
|
|
487
492
|
warning: "border-base-warning",
|
|
488
493
|
danger: "border-base-danger",
|
|
489
494
|
neutral: "border-default-500"
|
|
490
|
-
},
|
|
495
|
+
}, _e = {
|
|
491
496
|
primary: "bg-base-primary",
|
|
492
497
|
secondary: "bg-base-secondary",
|
|
493
498
|
success: "bg-base-success",
|
|
494
499
|
warning: "bg-base-warning",
|
|
495
500
|
danger: "bg-base-danger",
|
|
496
501
|
neutral: "bg-default-500"
|
|
497
|
-
},
|
|
498
|
-
name:
|
|
499
|
-
value:
|
|
502
|
+
}, Qe = ({
|
|
503
|
+
name: t,
|
|
504
|
+
value: r,
|
|
500
505
|
checked: s,
|
|
501
|
-
disabled:
|
|
506
|
+
disabled: e = !1,
|
|
502
507
|
onChange: n,
|
|
503
|
-
size:
|
|
504
|
-
color:
|
|
508
|
+
size: d = "md",
|
|
509
|
+
color: o = "primary",
|
|
505
510
|
children: c
|
|
506
511
|
}) => {
|
|
507
|
-
const i =
|
|
508
|
-
|
|
509
|
-
s ?
|
|
512
|
+
const i = f(
|
|
513
|
+
ke[d],
|
|
514
|
+
s ? Ne[o] : "border-base-default hover:bg-default-100 transition-all duration-200"
|
|
510
515
|
);
|
|
511
|
-
return /* @__PURE__ */
|
|
516
|
+
return /* @__PURE__ */ b(
|
|
512
517
|
"label",
|
|
513
518
|
{
|
|
514
|
-
className: `flex items-center gap-2 ${
|
|
519
|
+
className: `flex items-center gap-2 ${e ? "opacity-50" : "cursor-pointer"}`,
|
|
515
520
|
children: [
|
|
516
|
-
/* @__PURE__ */
|
|
521
|
+
/* @__PURE__ */ a(
|
|
517
522
|
"input",
|
|
518
523
|
{
|
|
519
|
-
name:
|
|
524
|
+
name: t,
|
|
520
525
|
type: "radio",
|
|
521
|
-
value:
|
|
526
|
+
value: r,
|
|
522
527
|
checked: s,
|
|
523
|
-
onChange: (
|
|
524
|
-
disabled:
|
|
528
|
+
onChange: (l) => n && n(l.target.value),
|
|
529
|
+
disabled: e,
|
|
525
530
|
style: { display: "none" }
|
|
526
531
|
}
|
|
527
532
|
),
|
|
528
|
-
/* @__PURE__ */
|
|
533
|
+
/* @__PURE__ */ a(
|
|
529
534
|
"div",
|
|
530
535
|
{
|
|
531
536
|
className: `flex justify-center items-center rounded-full border-2 ${i}`,
|
|
532
|
-
children: s && /* @__PURE__ */
|
|
537
|
+
children: s && /* @__PURE__ */ a(
|
|
533
538
|
"span",
|
|
534
539
|
{
|
|
535
|
-
className: `block w-full h-full rounded-full ${
|
|
540
|
+
className: `block w-full h-full rounded-full ${_e[o]}`
|
|
536
541
|
}
|
|
537
542
|
)
|
|
538
543
|
}
|
|
539
544
|
),
|
|
540
|
-
/* @__PURE__ */
|
|
545
|
+
/* @__PURE__ */ a("div", { children: c })
|
|
541
546
|
]
|
|
542
547
|
}
|
|
543
548
|
);
|
|
544
|
-
},
|
|
549
|
+
}, Fe = {
|
|
545
550
|
sm: "min-h-6 text-xs",
|
|
546
551
|
md: "min-h-7 text-sm",
|
|
547
552
|
lg: "min-h-8 text-base"
|
|
548
|
-
},
|
|
553
|
+
}, R = {
|
|
549
554
|
default: "bg-content-1",
|
|
550
555
|
primary: "bg-layout-focus",
|
|
551
556
|
secondary: "bg-base-secondary",
|
|
552
557
|
success: "bg-base-success",
|
|
553
558
|
warning: "bg-base-warning",
|
|
554
559
|
danger: "bg-base-danger"
|
|
555
|
-
},
|
|
560
|
+
}, Se = {
|
|
556
561
|
white: "text-content-1",
|
|
557
562
|
black: "text-default-900"
|
|
558
|
-
},
|
|
563
|
+
}, ze = {
|
|
559
564
|
none: "rounded-none",
|
|
560
565
|
sm: "rounded-sm",
|
|
561
566
|
md: "rounded-md",
|
|
562
567
|
lg: "rounded-lg",
|
|
563
568
|
full: "rounded-full"
|
|
564
|
-
},
|
|
569
|
+
}, Ae = (t, r) => {
|
|
565
570
|
let s = "";
|
|
566
|
-
const
|
|
571
|
+
const e = {
|
|
567
572
|
start: "left-4",
|
|
568
573
|
center: "left-1/2 -translate-x-1/2",
|
|
569
574
|
end: "right-4"
|
|
@@ -572,90 +577,90 @@ const Q = {
|
|
|
572
577
|
center: "top-1/2 -translate-y-1/2",
|
|
573
578
|
end: "bottom-[5px]"
|
|
574
579
|
};
|
|
575
|
-
switch (
|
|
580
|
+
switch (t) {
|
|
576
581
|
case "top":
|
|
577
|
-
s = "top-[-3px] " + r
|
|
582
|
+
s = "top-[-3px] " + e[r];
|
|
578
583
|
break;
|
|
579
584
|
case "right":
|
|
580
|
-
s = "right-[-3px] " + n[
|
|
585
|
+
s = "right-[-3px] " + n[r];
|
|
581
586
|
break;
|
|
582
587
|
case "bottom":
|
|
583
|
-
s = "bottom-[-3px] " + r
|
|
588
|
+
s = "bottom-[-3px] " + e[r];
|
|
584
589
|
break;
|
|
585
590
|
case "left":
|
|
586
|
-
s = "left-[-3px] " + n[
|
|
591
|
+
s = "left-[-3px] " + n[r];
|
|
587
592
|
break;
|
|
588
593
|
}
|
|
589
594
|
return s;
|
|
590
|
-
},
|
|
591
|
-
label:
|
|
592
|
-
color:
|
|
595
|
+
}, Me = ({
|
|
596
|
+
label: t,
|
|
597
|
+
color: r = "default",
|
|
593
598
|
textColor: s = "black",
|
|
594
|
-
size:
|
|
599
|
+
size: e = "md",
|
|
595
600
|
rounded: n = "md",
|
|
596
|
-
direction:
|
|
597
|
-
position:
|
|
601
|
+
direction: d = "bottom",
|
|
602
|
+
position: o = "center"
|
|
598
603
|
}) => {
|
|
599
|
-
const c =
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
+
const c = f(
|
|
605
|
+
Fe[e],
|
|
606
|
+
R[r],
|
|
607
|
+
Se[s],
|
|
608
|
+
ze[n]
|
|
604
609
|
);
|
|
605
|
-
return /* @__PURE__ */
|
|
606
|
-
/* @__PURE__ */
|
|
610
|
+
return /* @__PURE__ */ b("div", { className: "relative", children: [
|
|
611
|
+
/* @__PURE__ */ a(
|
|
607
612
|
"div",
|
|
608
613
|
{
|
|
609
614
|
className: `max-w-[180px] relative z-10 py-1 px-3 shadow-[0px_1px_2px_0px_#0000000F,0px_1px_3px_0px_#0000001A] ${c}`,
|
|
610
|
-
children: /* @__PURE__ */
|
|
615
|
+
children: /* @__PURE__ */ a("p", { children: t })
|
|
611
616
|
}
|
|
612
617
|
),
|
|
613
|
-
/* @__PURE__ */
|
|
618
|
+
/* @__PURE__ */ a(
|
|
614
619
|
"div",
|
|
615
620
|
{
|
|
616
|
-
className: `absolute size-2.5 rotate-45 rounded-[2px] shadow-[0px_0px_1px_0px_#0000004D,0px_2px_10px_0px_#0000000F,0px_0px_5px_0px_#00000005] ${
|
|
621
|
+
className: `absolute size-2.5 rotate-45 rounded-[2px] shadow-[0px_0px_1px_0px_#0000004D,0px_2px_10px_0px_#0000000F,0px_0px_5px_0px_#00000005] ${Ae(d, o)} ${R[r]}`
|
|
617
622
|
}
|
|
618
623
|
)
|
|
619
624
|
] });
|
|
620
|
-
},
|
|
625
|
+
}, E = {
|
|
621
626
|
foreground: "#000000",
|
|
622
627
|
primary: "#112E62",
|
|
623
628
|
secondary: "#C59C4E",
|
|
624
629
|
success: "#17C964",
|
|
625
630
|
warning: "#F5A524",
|
|
626
631
|
danger: "#F31260"
|
|
627
|
-
},
|
|
632
|
+
}, N = {
|
|
628
633
|
foreground: "#A1A1AA",
|
|
629
634
|
primary: "#D6E0F3",
|
|
630
635
|
secondary: "#EEE1C9",
|
|
631
636
|
success: "#d1f4e0",
|
|
632
637
|
warning: "#fdedd3",
|
|
633
638
|
danger: "#fdd0df"
|
|
634
|
-
},
|
|
635
|
-
value:
|
|
636
|
-
setValue:
|
|
639
|
+
}, Ue = ({
|
|
640
|
+
value: t,
|
|
641
|
+
setValue: r,
|
|
637
642
|
min: s = 0,
|
|
638
|
-
max:
|
|
643
|
+
max: e = 100,
|
|
639
644
|
step: n = 1,
|
|
640
|
-
color:
|
|
641
|
-
tooltipColor:
|
|
645
|
+
color: d = "primary",
|
|
646
|
+
tooltipColor: o = "primary",
|
|
642
647
|
tooltipTextColor: c = "white"
|
|
643
|
-
}) => /* @__PURE__ */
|
|
644
|
-
|
|
648
|
+
}) => /* @__PURE__ */ a(
|
|
649
|
+
J,
|
|
645
650
|
{
|
|
646
|
-
value:
|
|
651
|
+
value: t,
|
|
647
652
|
min: s,
|
|
648
|
-
max:
|
|
653
|
+
max: e,
|
|
649
654
|
step: n,
|
|
650
|
-
onChange: (i,
|
|
651
|
-
|
|
655
|
+
onChange: (i, l) => {
|
|
656
|
+
r(l);
|
|
652
657
|
},
|
|
653
658
|
onChangeCommitted: (i) => {
|
|
654
659
|
},
|
|
655
|
-
valueLabelFormat: (i) => /* @__PURE__ */
|
|
656
|
-
|
|
660
|
+
valueLabelFormat: (i) => /* @__PURE__ */ a(
|
|
661
|
+
Me,
|
|
657
662
|
{
|
|
658
|
-
color:
|
|
663
|
+
color: o,
|
|
659
664
|
textColor: c,
|
|
660
665
|
label: `${i.toLocaleString()}`
|
|
661
666
|
}
|
|
@@ -670,28 +675,28 @@ const Q = {
|
|
|
670
675
|
width: "16px",
|
|
671
676
|
height: "16px",
|
|
672
677
|
border: "2px solid",
|
|
673
|
-
borderColor:
|
|
678
|
+
borderColor: E[d],
|
|
674
679
|
color: "#fff"
|
|
675
680
|
},
|
|
676
681
|
"& .MuiSlider-thumb.Mui-focusVisible": {
|
|
677
|
-
boxShadow: `0 0 0 4px ${
|
|
682
|
+
boxShadow: `0 0 0 4px ${N[d]}`
|
|
678
683
|
},
|
|
679
684
|
"& .MuiSlider-thumb.Mui-active": {
|
|
680
|
-
boxShadow: `0 0 0 4px ${
|
|
685
|
+
boxShadow: `0 0 0 4px ${N[d]}`
|
|
681
686
|
},
|
|
682
687
|
"& .MuiSlider-thumb:hover": {
|
|
683
|
-
boxShadow: `0 0 0 4px ${
|
|
688
|
+
boxShadow: `0 0 0 4px ${N[d]}`
|
|
684
689
|
},
|
|
685
690
|
"& .MuiSlider-track": {
|
|
686
|
-
color:
|
|
691
|
+
color: E[d]
|
|
687
692
|
},
|
|
688
693
|
"& .MuiSlider-valueLabel": {
|
|
689
694
|
backgroundColor: "transparent"
|
|
690
695
|
}
|
|
691
696
|
}
|
|
692
697
|
}
|
|
693
|
-
),
|
|
694
|
-
|
|
698
|
+
), Ie = () => /* @__PURE__ */ a("div", { className: "custom-select-icon", children: /* @__PURE__ */ a(G, {}) }), Xe = ({ options: t, value: r, onChange: s }) => /* @__PURE__ */ a(
|
|
699
|
+
Q,
|
|
695
700
|
{
|
|
696
701
|
MenuProps: {
|
|
697
702
|
sx: {
|
|
@@ -710,7 +715,7 @@ const Q = {
|
|
|
710
715
|
}
|
|
711
716
|
}
|
|
712
717
|
},
|
|
713
|
-
IconComponent:
|
|
718
|
+
IconComponent: Ie,
|
|
714
719
|
sx: {
|
|
715
720
|
width: "100%",
|
|
716
721
|
height: 34,
|
|
@@ -736,10 +741,10 @@ const Q = {
|
|
|
736
741
|
transform: "rotate(180deg)"
|
|
737
742
|
}
|
|
738
743
|
},
|
|
739
|
-
value:
|
|
740
|
-
onChange: (
|
|
741
|
-
children:
|
|
742
|
-
|
|
744
|
+
value: r,
|
|
745
|
+
onChange: (e) => s(e.target.value),
|
|
746
|
+
children: t.map(({ title: e, value: n }, d) => /* @__PURE__ */ a(
|
|
747
|
+
K,
|
|
743
748
|
{
|
|
744
749
|
sx: {
|
|
745
750
|
fontFamily: "YekanBakh",
|
|
@@ -762,70 +767,162 @@ const Q = {
|
|
|
762
767
|
}
|
|
763
768
|
},
|
|
764
769
|
value: n,
|
|
765
|
-
children:
|
|
770
|
+
children: e
|
|
766
771
|
},
|
|
767
|
-
|
|
772
|
+
d
|
|
768
773
|
))
|
|
769
774
|
}
|
|
770
|
-
),
|
|
775
|
+
), Be = {
|
|
771
776
|
sm: "min-w-10 min-h-6",
|
|
772
777
|
md: "min-w-12 min-h-7",
|
|
773
778
|
lg: "min-w-14 min-h-8"
|
|
774
|
-
},
|
|
779
|
+
}, Pe = {
|
|
775
780
|
default: "bg-default-400",
|
|
776
781
|
primary: "bg-layout-focus",
|
|
777
782
|
secondary: "bg-base-secondary",
|
|
778
783
|
success: "bg-base-success",
|
|
779
784
|
warning: "bg-base-warning",
|
|
780
785
|
danger: "bg-base-danger"
|
|
781
|
-
},
|
|
782
|
-
enabled:
|
|
783
|
-
onChange:
|
|
786
|
+
}, Ze = ({
|
|
787
|
+
enabled: t,
|
|
788
|
+
onChange: r,
|
|
784
789
|
label: s,
|
|
785
|
-
labelPosition:
|
|
790
|
+
labelPosition: e = "left",
|
|
786
791
|
size: n = "md",
|
|
787
|
-
color:
|
|
788
|
-
disabled:
|
|
792
|
+
color: d = "default",
|
|
793
|
+
disabled: o = !1
|
|
789
794
|
}) => {
|
|
790
|
-
const c =
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
), i =
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
795
|
+
const c = f(
|
|
796
|
+
e === "left" ? "flex-row" : "flex-row-reverse",
|
|
797
|
+
o && "opacity-50"
|
|
798
|
+
), i = f(
|
|
799
|
+
Be[n],
|
|
800
|
+
t ? Pe[d] : "bg-default-700",
|
|
801
|
+
o && "cursor-auto"
|
|
797
802
|
);
|
|
798
|
-
return /* @__PURE__ */
|
|
799
|
-
/* @__PURE__ */
|
|
803
|
+
return /* @__PURE__ */ b("div", { className: `flex items-center gap-2 ${c}`, children: [
|
|
804
|
+
/* @__PURE__ */ a(
|
|
800
805
|
"button",
|
|
801
806
|
{
|
|
802
|
-
onClick:
|
|
807
|
+
onClick: r,
|
|
803
808
|
className: `relative rounded-full transition-colors duration-300 p-1 ${i}`,
|
|
804
|
-
disabled:
|
|
805
|
-
children: /* @__PURE__ */
|
|
809
|
+
disabled: o,
|
|
810
|
+
children: /* @__PURE__ */ a(
|
|
806
811
|
"span",
|
|
807
812
|
{
|
|
808
813
|
className: `
|
|
809
814
|
block h-[calc(100%-8px)] aspect-square rounded-full bg-content-1
|
|
810
815
|
transition-all duration-300 shadow-[0px_0px_1px_0px_#0000004D,0px_2px_10px_0px_#0000000F,0px_0px_5px_0px_#00000005]
|
|
811
|
-
absolute top-1 left-1 ${
|
|
816
|
+
absolute top-1 left-1 ${t && "translate-x-full"}
|
|
812
817
|
`
|
|
813
818
|
}
|
|
814
819
|
)
|
|
815
820
|
}
|
|
816
821
|
),
|
|
817
|
-
s && /* @__PURE__ */
|
|
822
|
+
s && /* @__PURE__ */ a("p", { className: `text-default-600 ${n === "sm" && "text-sm"}`, children: s })
|
|
818
823
|
] });
|
|
824
|
+
}, je = {
|
|
825
|
+
sm: "h-8 py-1",
|
|
826
|
+
lg: "h-10 py-2"
|
|
827
|
+
}, De = {
|
|
828
|
+
flat: "bg-default-100 hover:bg-default-200 focus:bg-transparent focus:border-2 border-[#11181C]",
|
|
829
|
+
faded: "bg-default-100 hover:bg-default-200 focus:bg-transparent border-2 border-default-200 hover:border-default-400 focus:border-[#11181C]",
|
|
830
|
+
bordered: "bg-transparent border-2 border-default-200 hover:border-default-400 focus:border-[#11181C]"
|
|
831
|
+
}, Re = ({
|
|
832
|
+
value: t,
|
|
833
|
+
onInputChange: r,
|
|
834
|
+
placeHolder: s,
|
|
835
|
+
inputIcon: e,
|
|
836
|
+
inputEndIcon: n,
|
|
837
|
+
inputProps: d,
|
|
838
|
+
inputRef: o,
|
|
839
|
+
size: c,
|
|
840
|
+
variant: i,
|
|
841
|
+
iconOnClick: l,
|
|
842
|
+
endIconOnClick: p
|
|
843
|
+
}) => /* @__PURE__ */ b("div", { ref: o, className: "relative", children: [
|
|
844
|
+
e && /* @__PURE__ */ a(
|
|
845
|
+
"button",
|
|
846
|
+
{
|
|
847
|
+
onClick: l,
|
|
848
|
+
className: "absolute top-1/2 -translate-y-1/2 right-2",
|
|
849
|
+
children: e
|
|
850
|
+
}
|
|
851
|
+
),
|
|
852
|
+
/* @__PURE__ */ a(
|
|
853
|
+
"input",
|
|
854
|
+
{
|
|
855
|
+
...d,
|
|
856
|
+
type: "text",
|
|
857
|
+
value: t,
|
|
858
|
+
onChange: (m) => r && r(m.target.value),
|
|
859
|
+
placeholder: s,
|
|
860
|
+
className: `${De[i]} ${je[c]} transition-all duration-300 w-full px-3 text-sm outline-none rounded-sm ${n && "pl-[30px]"} ${e && "pr-[30px]"}`
|
|
861
|
+
}
|
|
862
|
+
),
|
|
863
|
+
n && /* @__PURE__ */ a(
|
|
864
|
+
"button",
|
|
865
|
+
{
|
|
866
|
+
onClick: p,
|
|
867
|
+
className: "absolute top-1/2 -translate-y-1/2 left-2",
|
|
868
|
+
children: n
|
|
869
|
+
}
|
|
870
|
+
)
|
|
871
|
+
] }), He = ({
|
|
872
|
+
label: t,
|
|
873
|
+
placeHolder: r,
|
|
874
|
+
inputIcon: s,
|
|
875
|
+
inputEndIcon: e,
|
|
876
|
+
value: n,
|
|
877
|
+
onInputChange: d,
|
|
878
|
+
onChange: o,
|
|
879
|
+
size: c = "sm",
|
|
880
|
+
variant: i = "flat",
|
|
881
|
+
options: l,
|
|
882
|
+
iconOnClick: p,
|
|
883
|
+
endIconOnClick: m
|
|
884
|
+
}) => {
|
|
885
|
+
const x = l.map((u, g) => ({ ...u, optionIndex: g })), h = l.map((u, g) => (delete u.element, { ...u, optionIndex: g }));
|
|
886
|
+
return /* @__PURE__ */ a(
|
|
887
|
+
U,
|
|
888
|
+
{
|
|
889
|
+
disablePortal: !0,
|
|
890
|
+
options: h,
|
|
891
|
+
sx: { width: "100%" },
|
|
892
|
+
onChange: (u, g) => o && o(g),
|
|
893
|
+
renderOption: (u, g) => /* @__PURE__ */ a("li", { ...u, children: x.find(({ optionIndex: v }) => v === g.optionIndex)?.element }),
|
|
894
|
+
renderInput: (u) => /* @__PURE__ */ b("div", { children: [
|
|
895
|
+
t && /* @__PURE__ */ a("div", { className: "h-4 text-xs mb-2 text-default-600", children: t }),
|
|
896
|
+
/* @__PURE__ */ a(
|
|
897
|
+
Re,
|
|
898
|
+
{
|
|
899
|
+
value: n,
|
|
900
|
+
onInputChange: d,
|
|
901
|
+
placeHolder: r,
|
|
902
|
+
inputIcon: s,
|
|
903
|
+
inputEndIcon: e,
|
|
904
|
+
inputProps: u.slotProps.htmlInput,
|
|
905
|
+
inputRef: u.slotProps.input.ref,
|
|
906
|
+
size: c,
|
|
907
|
+
variant: i,
|
|
908
|
+
iconOnClick: p,
|
|
909
|
+
endIconOnClick: m
|
|
910
|
+
}
|
|
911
|
+
)
|
|
912
|
+
] })
|
|
913
|
+
}
|
|
914
|
+
);
|
|
819
915
|
};
|
|
820
916
|
export {
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
917
|
+
Ve as Alert,
|
|
918
|
+
He as Autocomplete,
|
|
919
|
+
Ye as Badge,
|
|
920
|
+
Ge as Button,
|
|
921
|
+
Je as Chip,
|
|
922
|
+
Ke as Input,
|
|
923
|
+
Qe as Radio,
|
|
924
|
+
Ue as RangeSlider,
|
|
925
|
+
Xe as Select,
|
|
926
|
+
Ze as Switch,
|
|
927
|
+
Me as Tooltip
|
|
831
928
|
};
|
package/dist/styles.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
*,:after,:before{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }::backdrop{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }/*! tailwindcss v3.4.14 | MIT License | https://tailwindcss.com*/*,:after,:before{box-sizing:border-box;border:0 solid #e5e7eb}:after,:before{--tw-content:""}:host,html{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;-o-tab-size:4;tab-size:4;font-family:ui-sans-serif,system-ui,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;font-feature-settings:normal;font-variation-settings:normal;-webkit-tap-highlight-color:transparent}body{margin:0;line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-feature-settings:normal;font-variation-settings:normal;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}button,input,optgroup,select,textarea{font-family:inherit;font-feature-settings:inherit;font-variation-settings:inherit;font-size:100%;font-weight:inherit;line-height:inherit;letter-spacing:inherit;color:inherit;margin:0;padding:0}button,select{text-transform:none}button,input:where([type=button]),input:where([type=reset]),input:where([type=submit]){-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0}fieldset,legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}dialog{padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{opacity:1;color:#9ca3af}input::placeholder,textarea::placeholder{opacity:1;color:#9ca3af}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}[hidden]:where(:not([hidden=until-found])){display:none}.absolute{position:absolute}.relative{position:relative}.-left-1{left:-.25rem}.-top-1{top:-.25rem}.bottom-\[-3px\]{bottom:-3px}.bottom-\[5px\]{bottom:5px}.left-1{left:.25rem}.left-1\/2{left:50%}.left-2{left:.5rem}.left-4{left:1rem}.left-\[-3px\]{left:-3px}.right-2{right:.5rem}.right-4{right:1rem}.right-\[-3px\]{right:-3px}.top-1{top:.25rem}.top-1\/2{top:50%}.top-\[-3px\]{top:-3px}.top-\[5px\]{top:5px}.z-10{z-index:10}.mb-2{margin-bottom:.5rem}.mb-4{margin-bottom:1rem}.mb-8{margin-bottom:2rem}.mr-1{margin-right:.25rem}.mt-1{margin-top:.25rem}.mt-2{margin-top:.5rem}.mt-52{margin-top:13rem}.mt-\[1px\]{margin-top:1px}.block{display:block}.flex{display:flex}.aspect-square{aspect-ratio:1/1}.size-2{width:.5rem;height:.5rem}.size-2\.5{width:.625rem;height:.625rem}.size-4{width:1rem;height:1rem}.size-5{width:1.25rem;height:1.25rem}.size-6{width:1.5rem;height:1.5rem}.h-10{height:2.5rem}.h-12{height:3rem}.h-20{height:5rem}.h-4{height:1rem}.h-5{height:1.25rem}.h-6{height:1.5rem}.h-7{height:1.75rem}.h-8{height:2rem}.h-\[calc\(100\%-8px\)\]{height:calc(100% - 8px)}.h-full{height:100%}.min-h-6{min-height:1.5rem}.min-h-7{min-height:1.75rem}.min-h-8{min-height:2rem}.w-20{width:5rem}.w-24{width:6rem}.w-60{width:15rem}.w-96{width:24rem}.w-\[342px\]{width:342px}.w-auto{width:auto}.w-fit{width:-moz-fit-content;width:fit-content}.w-full{width:100%}.min-w-10{min-width:2.5rem}.min-w-12{min-width:3rem}.min-w-14{min-width:3.5rem}.min-w-4{min-width:1rem}.min-w-5{min-width:1.25rem}.min-w-6{min-width:1.5rem}.min-w-\[342px\]{min-width:342px}.max-w-24{max-width:6rem}.max-w-\[180px\]{max-width:180px}.-translate-x-1\/2{--tw-translate-x:-50%}.-translate-x-1\/2,.-translate-y-1\/2{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.-translate-y-1\/2{--tw-translate-y:-50%}.translate-x-full{--tw-translate-x:100%}.rotate-45,.translate-x-full{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.rotate-45{--tw-rotate:45deg}.transform{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.cursor-auto{cursor:auto}.cursor-pointer{cursor:pointer}.flex-row{flex-direction:row}.flex-row-reverse{flex-direction:row-reverse}.flex-col{flex-direction:column}.items-start{align-items:flex-start}.items-center{align-items:center}.justify-center{justify-content:center}.justify-between{justify-content:space-between}.gap-1{gap:.25rem}.gap-2{gap:.5rem}.gap-3{gap:.75rem}.rounded{border-radius:.25rem}.rounded-\[22px\]{border-radius:22px}.rounded-\[2px\]{border-radius:2px}.rounded-full{border-radius:9999px}.rounded-lg{border-radius:14px}.rounded-md{border-radius:12px}.rounded-none{border-radius:0}.rounded-sm{border-radius:8px}.rounded-xl{border-radius:16px}.rounded-xxs{border-radius:4px}.border{border-width:1px}.border-2{border-width:2px}.border-b-2{border-bottom-width:2px}.border-\[\#11181C\]{--tw-border-opacity:1;border-color:rgb(17 24 28/var(--tw-border-opacity))}.border-base-danger{--tw-border-opacity:1;border-color:rgb(243 18 96/var(--tw-border-opacity))}.border-base-default{--tw-border-opacity:1;border-color:rgb(212 212 216/var(--tw-border-opacity))}.border-base-primary{--tw-border-opacity:1;border-color:rgb(17 46 98/var(--tw-border-opacity))}.border-base-secondary{--tw-border-opacity:1;border-color:rgb(197 156 78/var(--tw-border-opacity))}.border-base-success{--tw-border-opacity:1;border-color:rgb(23 201 100/var(--tw-border-opacity))}.border-base-warning{--tw-border-opacity:1;border-color:rgb(245 165 36/var(--tw-border-opacity))}.border-default-200{--tw-border-opacity:1;border-color:rgb(228 228 231/var(--tw-border-opacity))}.border-default-300{--tw-border-opacity:1;border-color:rgb(212 212 216/var(--tw-border-opacity))}.border-default-500{--tw-border-opacity:1;border-color:rgb(113 113 122/var(--tw-border-opacity))}.border-primary-300{--tw-border-opacity:1;border-color:rgb(17 46 98/var(--tw-border-opacity))}.bg-base-danger{--tw-bg-opacity:1;background-color:rgb(243 18 96/var(--tw-bg-opacity))}.bg-base-primary{--tw-bg-opacity:1;background-color:rgb(17 46 98/var(--tw-bg-opacity))}.bg-base-secondary{--tw-bg-opacity:1;background-color:rgb(197 156 78/var(--tw-bg-opacity))}.bg-base-success{--tw-bg-opacity:1;background-color:rgb(23 201 100/var(--tw-bg-opacity))}.bg-base-warning{--tw-bg-opacity:1;background-color:rgb(245 165 36/var(--tw-bg-opacity))}.bg-content-1{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity))}.bg-danger-100{--tw-bg-opacity:1;background-color:rgb(253 208 223/var(--tw-bg-opacity))}.bg-danger-50{--tw-bg-opacity:1;background-color:rgb(254 231 239/var(--tw-bg-opacity))}.bg-default-100{--tw-bg-opacity:1;background-color:rgb(244 244 245/var(--tw-bg-opacity))}.bg-default-200{--tw-bg-opacity:1;background-color:rgb(228 228 231/var(--tw-bg-opacity))}.bg-default-300{--tw-bg-opacity:1;background-color:rgb(212 212 216/var(--tw-bg-opacity))}.bg-default-400{--tw-bg-opacity:1;background-color:rgb(161 161 170/var(--tw-bg-opacity))}.bg-default-500{--tw-bg-opacity:1;background-color:rgb(113 113 122/var(--tw-bg-opacity))}.bg-default-700{--tw-bg-opacity:1;background-color:rgb(63 63 70/var(--tw-bg-opacity))}.bg-layout-focus{--tw-bg-opacity:1;background-color:rgb(17 46 98/var(--tw-bg-opacity))}.bg-primary-100{--tw-bg-opacity:1;background-color:rgb(214 224 243/var(--tw-bg-opacity))}.bg-primary-50{--tw-bg-opacity:1;background-color:rgb(238 242 250/var(--tw-bg-opacity))}.bg-secondary-100{--tw-bg-opacity:1;background-color:rgb(238 225 201/var(--tw-bg-opacity))}.bg-secondary-50{--tw-bg-opacity:1;background-color:rgb(249 244 236/var(--tw-bg-opacity))}.bg-success-100{--tw-bg-opacity:1;background-color:rgb(209 244 224/var(--tw-bg-opacity))}.bg-success-50{--tw-bg-opacity:1;background-color:rgb(232 250 240/var(--tw-bg-opacity))}.bg-success-800{--tw-bg-opacity:1;background-color:rgb(9 80 40/var(--tw-bg-opacity))}.bg-transparent{background-color:transparent}.bg-warning-100{--tw-bg-opacity:1;background-color:rgb(253 237 211/var(--tw-bg-opacity))}.bg-warning-50{--tw-bg-opacity:1;background-color:rgb(254 252 232/var(--tw-bg-opacity))}.p-1{padding:.25rem}.p-3{padding:.75rem}.p-\[3px\]{padding:3px}.p-\[5px\]{padding:5px}.px-1\.5{padding-left:.375rem;padding-right:.375rem}.px-2{padding-left:.5rem;padding-right:.5rem}.px-2\.5{padding-left:.625rem;padding-right:.625rem}.px-3{padding-left:.75rem;padding-right:.75rem}.px-4{padding-left:1rem;padding-right:1rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.py-1{padding-top:.25rem;padding-bottom:.25rem}.py-2{padding-top:.5rem;padding-bottom:.5rem}.pb-10{padding-bottom:2.5rem}.pb-2{padding-bottom:.5rem}.pl-\[30px\]{padding-left:30px}.pr-\[30px\]{padding-right:30px}.text-2xl{font-size:24px}.text-base{font-size:16px}.text-sm{font-size:14px}.text-xs{font-size:12px}.font-semibold{font-weight:600}.text-base-danger{--tw-text-opacity:1;color:rgb(243 18 96/var(--tw-text-opacity))}.text-base-primary{--tw-text-opacity:1;color:rgb(17 46 98/var(--tw-text-opacity))}.text-base-secondary{--tw-text-opacity:1;color:rgb(197 156 78/var(--tw-text-opacity))}.text-base-success{--tw-text-opacity:1;color:rgb(23 201 100/var(--tw-text-opacity))}.text-base-warning{--tw-text-opacity:1;color:rgb(245 165 36/var(--tw-text-opacity))}.text-content-1{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.text-default-400{--tw-text-opacity:1;color:rgb(161 161 170/var(--tw-text-opacity))}.text-default-500{--tw-text-opacity:1;color:rgb(113 113 122/var(--tw-text-opacity))}.text-default-600{--tw-text-opacity:1;color:rgb(82 82 91/var(--tw-text-opacity))}.text-default-900{--tw-text-opacity:1;color:rgb(0 0 0/var(--tw-text-opacity))}.text-layout-fg{--tw-text-opacity:1;color:rgb(17 24 28/var(--tw-text-opacity))}.text-primary-300{--tw-text-opacity:1;color:rgb(17 46 98/var(--tw-text-opacity))}.text-white{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.text-zinc-400{--tw-text-opacity:1;color:rgb(161 161 170/var(--tw-text-opacity))}.opacity-50{opacity:.5}.shadow{--tw-shadow:0px 1px 2px 0px rgba(0,0,0,.06),0px 1px 3px 0px rgba(0,0,0,.1);--tw-shadow-colored:0px 1px 2px 0px var(--tw-shadow-color),0px 1px 3px 0px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.shadow-\[0px_0px_1px_0px_\#0000004D\2c 0px_2px_10px_0px_\#0000000F\2c 0px_0px_5px_0px_\#00000005\]{--tw-shadow:0px 0px 1px 0px #0000004d,0px 2px 10px 0px #0000000f,0px 0px 5px 0px #00000005;--tw-shadow-colored:0px 0px 1px 0px var(--tw-shadow-color),0px 2px 10px 0px var(--tw-shadow-color),0px 0px 5px 0px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.shadow-\[0px_1px_2px_0px_\#0000000F\2c 0px_1px_3px_0px_\#0000001A\]{--tw-shadow:0px 1px 2px 0px #0000000f,0px 1px 3px 0px #0000001a;--tw-shadow-colored:0px 1px 2px 0px var(--tw-shadow-color),0px 1px 3px 0px var(--tw-shadow-color)}.shadow-\[0px_1px_2px_0px_\#0000000F\2c 0px_1px_3px_0px_\#0000001A\],.shadow-lg{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.shadow-lg{--tw-shadow:0px 4px 6px -2px rgba(0,0,0,.05),0px 10px 15px -3px rgba(0,0,0,.1);--tw-shadow-colored:0px 4px 6px -2px var(--tw-shadow-color),0px 10px 15px -3px var(--tw-shadow-color)}.outline-none{outline:2px solid transparent;outline-offset:2px}.filter{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.transition{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-all{transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-colors{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.duration-200{transition-duration:.2s}.duration-300{transition-duration:.3s}.focus-within\:border:focus-within{border-width:1px}.focus-within\:border-base-danger:focus-within{--tw-border-opacity:1;border-color:rgb(243 18 96/var(--tw-border-opacity))}.focus-within\:border-base-primary:focus-within{--tw-border-opacity:1;border-color:rgb(17 46 98/var(--tw-border-opacity))}.focus-within\:border-base-success:focus-within{--tw-border-opacity:1;border-color:rgb(23 201 100/var(--tw-border-opacity))}.focus-within\:border-base-warning:focus-within{--tw-border-opacity:1;border-color:rgb(245 165 36/var(--tw-border-opacity))}.focus-within\:border-layout-fg:focus-within{--tw-border-opacity:1;border-color:rgb(17 24 28/var(--tw-border-opacity))}.focus-within\:bg-transparent:focus-within{background-color:transparent}.focus-within\:text-layout-fg:focus-within{--tw-text-opacity:1;color:rgb(17 24 28/var(--tw-text-opacity))}.hover\:border-base-danger:hover{--tw-border-opacity:1;border-color:rgb(243 18 96/var(--tw-border-opacity))}.hover\:border-base-primary:hover{--tw-border-opacity:1;border-color:rgb(17 46 98/var(--tw-border-opacity))}.hover\:border-base-success:hover{--tw-border-opacity:1;border-color:rgb(23 201 100/var(--tw-border-opacity))}.hover\:border-base-warning:hover{--tw-border-opacity:1;border-color:rgb(245 165 36/var(--tw-border-opacity))}.hover\:border-default-400:hover{--tw-border-opacity:1;border-color:rgb(161 161 170/var(--tw-border-opacity))}.hover\:bg-danger-50:hover{--tw-bg-opacity:1;background-color:rgb(254 231 239/var(--tw-bg-opacity))}.hover\:bg-default-100:hover{--tw-bg-opacity:1;background-color:rgb(244 244 245/var(--tw-bg-opacity))}.hover\:bg-default-200:hover{--tw-bg-opacity:1;background-color:rgb(228 228 231/var(--tw-bg-opacity))}.hover\:bg-primary-50:hover{--tw-bg-opacity:1;background-color:rgb(238 242 250/var(--tw-bg-opacity))}.hover\:bg-success-50:hover{--tw-bg-opacity:1;background-color:rgb(232 250 240/var(--tw-bg-opacity))}.hover\:bg-warning-50:hover{--tw-bg-opacity:1;background-color:rgb(254 252 232/var(--tw-bg-opacity))}.hover\:bg-zinc-100:hover{--tw-bg-opacity:1;background-color:rgb(244 244 245/var(--tw-bg-opacity))}.hover\:text-base-primary:hover{--tw-text-opacity:1;color:rgb(17 46 98/var(--tw-text-opacity))}.hover\:text-base-success:hover{--tw-text-opacity:1;color:rgb(23 201 100/var(--tw-text-opacity))}.hover\:text-base-warning:hover{--tw-text-opacity:1;color:rgb(245 165 36/var(--tw-text-opacity))}.focus-within\:hover\:border-base-danger:hover:focus-within{--tw-border-opacity:1;border-color:rgb(243 18 96/var(--tw-border-opacity))}.focus-within\:hover\:border-base-primary:hover:focus-within{--tw-border-opacity:1;border-color:rgb(17 46 98/var(--tw-border-opacity))}.focus-within\:hover\:border-base-success:hover:focus-within{--tw-border-opacity:1;border-color:rgb(23 201 100/var(--tw-border-opacity))}.focus-within\:hover\:border-base-warning:hover:focus-within{--tw-border-opacity:1;border-color:rgb(245 165 36/var(--tw-border-opacity))}.focus-within\:hover\:border-layout-fg:hover:focus-within{--tw-border-opacity:1;border-color:rgb(17 24 28/var(--tw-border-opacity))}.focus-within\:hover\:bg-transparent:hover:focus-within{background-color:transparent}.focus\:border-2:focus{border-width:2px}.focus\:border-\[\#11181C\]:focus{--tw-border-opacity:1;border-color:rgb(17 24 28/var(--tw-border-opacity))}.focus\:bg-transparent:focus{background-color:transparent}
|
|
1
|
+
*,:after,:before{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }::backdrop{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }/*! tailwindcss v3.4.14 | MIT License | https://tailwindcss.com*/*,:after,:before{box-sizing:border-box;border:0 solid #e5e7eb}:after,:before{--tw-content:""}:host,html{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;-o-tab-size:4;tab-size:4;font-family:ui-sans-serif,system-ui,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;font-feature-settings:normal;font-variation-settings:normal;-webkit-tap-highlight-color:transparent}body{margin:0;line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-feature-settings:normal;font-variation-settings:normal;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}button,input,optgroup,select,textarea{font-family:inherit;font-feature-settings:inherit;font-variation-settings:inherit;font-size:100%;font-weight:inherit;line-height:inherit;letter-spacing:inherit;color:inherit;margin:0;padding:0}button,select{text-transform:none}button,input:where([type=button]),input:where([type=reset]),input:where([type=submit]){-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0}fieldset,legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}dialog{padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{opacity:1;color:#9ca3af}input::placeholder,textarea::placeholder{opacity:1;color:#9ca3af}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}[hidden]:where(:not([hidden=until-found])){display:none}.absolute{position:absolute}.relative{position:relative}.-left-1{left:-.25rem}.-top-1{top:-.25rem}.bottom-\[-3px\]{bottom:-3px}.bottom-\[5px\]{bottom:5px}.left-1{left:.25rem}.left-1\/2{left:50%}.left-2{left:.5rem}.left-4{left:1rem}.left-\[-3px\]{left:-3px}.right-2{right:.5rem}.right-4{right:1rem}.right-\[-3px\]{right:-3px}.top-1{top:.25rem}.top-1\/2{top:50%}.top-\[-3px\]{top:-3px}.top-\[5px\]{top:5px}.z-10{z-index:10}.mb-2{margin-bottom:.5rem}.mb-4{margin-bottom:1rem}.mb-8{margin-bottom:2rem}.mr-1{margin-right:.25rem}.mt-1{margin-top:.25rem}.mt-2{margin-top:.5rem}.mt-52{margin-top:13rem}.mt-\[1px\]{margin-top:1px}.block{display:block}.flex{display:flex}.aspect-square{aspect-ratio:1/1}.size-2{width:.5rem;height:.5rem}.size-2\.5{width:.625rem;height:.625rem}.size-4{width:1rem;height:1rem}.size-5{width:1.25rem;height:1.25rem}.size-6{width:1.5rem;height:1.5rem}.h-10{height:2.5rem}.h-12{height:3rem}.h-20{height:5rem}.h-4{height:1rem}.h-5{height:1.25rem}.h-6{height:1.5rem}.h-60{height:15rem}.h-7{height:1.75rem}.h-8{height:2rem}.h-\[calc\(100\%-8px\)\]{height:calc(100% - 8px)}.h-full{height:100%}.min-h-6{min-height:1.5rem}.min-h-7{min-height:1.75rem}.min-h-8{min-height:2rem}.w-20{width:5rem}.w-24{width:6rem}.w-60{width:15rem}.w-96{width:24rem}.w-\[342px\]{width:342px}.w-auto{width:auto}.w-fit{width:-moz-fit-content;width:fit-content}.w-full{width:100%}.min-w-10{min-width:2.5rem}.min-w-12{min-width:3rem}.min-w-14{min-width:3.5rem}.min-w-4{min-width:1rem}.min-w-5{min-width:1.25rem}.min-w-6{min-width:1.5rem}.min-w-\[342px\]{min-width:342px}.max-w-24{max-width:6rem}.max-w-\[180px\]{max-width:180px}.-translate-x-1\/2{--tw-translate-x:-50%}.-translate-x-1\/2,.-translate-y-1\/2{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.-translate-y-1\/2{--tw-translate-y:-50%}.translate-x-full{--tw-translate-x:100%}.rotate-45,.translate-x-full{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.rotate-45{--tw-rotate:45deg}.transform{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.cursor-auto{cursor:auto}.cursor-pointer{cursor:pointer}.flex-row{flex-direction:row}.flex-row-reverse{flex-direction:row-reverse}.flex-col{flex-direction:column}.items-start{align-items:flex-start}.items-center{align-items:center}.justify-center{justify-content:center}.justify-between{justify-content:space-between}.gap-1{gap:.25rem}.gap-2{gap:.5rem}.gap-3{gap:.75rem}.rounded{border-radius:.25rem}.rounded-\[22px\]{border-radius:22px}.rounded-\[2px\]{border-radius:2px}.rounded-full{border-radius:9999px}.rounded-lg{border-radius:14px}.rounded-md{border-radius:12px}.rounded-none{border-radius:0}.rounded-sm{border-radius:8px}.rounded-xl{border-radius:16px}.rounded-xxs{border-radius:4px}.border{border-width:1px}.border-2{border-width:2px}.border-b-2{border-bottom-width:2px}.border-\[\#11181C\]{--tw-border-opacity:1;border-color:rgb(17 24 28/var(--tw-border-opacity))}.border-base-danger{--tw-border-opacity:1;border-color:rgb(243 18 96/var(--tw-border-opacity))}.border-base-default{--tw-border-opacity:1;border-color:rgb(212 212 216/var(--tw-border-opacity))}.border-base-primary{--tw-border-opacity:1;border-color:rgb(17 46 98/var(--tw-border-opacity))}.border-base-secondary{--tw-border-opacity:1;border-color:rgb(197 156 78/var(--tw-border-opacity))}.border-base-success{--tw-border-opacity:1;border-color:rgb(23 201 100/var(--tw-border-opacity))}.border-base-warning{--tw-border-opacity:1;border-color:rgb(245 165 36/var(--tw-border-opacity))}.border-default-200{--tw-border-opacity:1;border-color:rgb(228 228 231/var(--tw-border-opacity))}.border-default-300{--tw-border-opacity:1;border-color:rgb(212 212 216/var(--tw-border-opacity))}.border-default-500{--tw-border-opacity:1;border-color:rgb(113 113 122/var(--tw-border-opacity))}.border-primary-300{--tw-border-opacity:1;border-color:rgb(17 46 98/var(--tw-border-opacity))}.bg-base-danger{--tw-bg-opacity:1;background-color:rgb(243 18 96/var(--tw-bg-opacity))}.bg-base-primary{--tw-bg-opacity:1;background-color:rgb(17 46 98/var(--tw-bg-opacity))}.bg-base-secondary{--tw-bg-opacity:1;background-color:rgb(197 156 78/var(--tw-bg-opacity))}.bg-base-success{--tw-bg-opacity:1;background-color:rgb(23 201 100/var(--tw-bg-opacity))}.bg-base-warning{--tw-bg-opacity:1;background-color:rgb(245 165 36/var(--tw-bg-opacity))}.bg-content-1{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity))}.bg-danger-100{--tw-bg-opacity:1;background-color:rgb(253 208 223/var(--tw-bg-opacity))}.bg-danger-50{--tw-bg-opacity:1;background-color:rgb(254 231 239/var(--tw-bg-opacity))}.bg-default-100{--tw-bg-opacity:1;background-color:rgb(244 244 245/var(--tw-bg-opacity))}.bg-default-200{--tw-bg-opacity:1;background-color:rgb(228 228 231/var(--tw-bg-opacity))}.bg-default-300{--tw-bg-opacity:1;background-color:rgb(212 212 216/var(--tw-bg-opacity))}.bg-default-400{--tw-bg-opacity:1;background-color:rgb(161 161 170/var(--tw-bg-opacity))}.bg-default-500{--tw-bg-opacity:1;background-color:rgb(113 113 122/var(--tw-bg-opacity))}.bg-default-700{--tw-bg-opacity:1;background-color:rgb(63 63 70/var(--tw-bg-opacity))}.bg-layout-focus{--tw-bg-opacity:1;background-color:rgb(17 46 98/var(--tw-bg-opacity))}.bg-primary-100{--tw-bg-opacity:1;background-color:rgb(214 224 243/var(--tw-bg-opacity))}.bg-primary-50{--tw-bg-opacity:1;background-color:rgb(238 242 250/var(--tw-bg-opacity))}.bg-secondary-100{--tw-bg-opacity:1;background-color:rgb(238 225 201/var(--tw-bg-opacity))}.bg-secondary-50{--tw-bg-opacity:1;background-color:rgb(249 244 236/var(--tw-bg-opacity))}.bg-success-100{--tw-bg-opacity:1;background-color:rgb(209 244 224/var(--tw-bg-opacity))}.bg-success-50{--tw-bg-opacity:1;background-color:rgb(232 250 240/var(--tw-bg-opacity))}.bg-success-800{--tw-bg-opacity:1;background-color:rgb(9 80 40/var(--tw-bg-opacity))}.bg-transparent{background-color:transparent}.bg-warning-100{--tw-bg-opacity:1;background-color:rgb(253 237 211/var(--tw-bg-opacity))}.bg-warning-50{--tw-bg-opacity:1;background-color:rgb(254 252 232/var(--tw-bg-opacity))}.p-1{padding:.25rem}.p-3{padding:.75rem}.p-\[3px\]{padding:3px}.p-\[5px\]{padding:5px}.px-1\.5{padding-left:.375rem;padding-right:.375rem}.px-2{padding-left:.5rem;padding-right:.5rem}.px-2\.5{padding-left:.625rem;padding-right:.625rem}.px-3{padding-left:.75rem;padding-right:.75rem}.px-4{padding-left:1rem;padding-right:1rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.py-1{padding-top:.25rem;padding-bottom:.25rem}.py-2{padding-top:.5rem;padding-bottom:.5rem}.pb-10{padding-bottom:2.5rem}.pb-2{padding-bottom:.5rem}.pl-\[30px\]{padding-left:30px}.pr-\[30px\]{padding-right:30px}.text-2xl{font-size:24px}.text-base{font-size:16px}.text-sm{font-size:14px}.text-xs{font-size:12px}.font-semibold{font-weight:600}.text-base-danger{--tw-text-opacity:1;color:rgb(243 18 96/var(--tw-text-opacity))}.text-base-primary{--tw-text-opacity:1;color:rgb(17 46 98/var(--tw-text-opacity))}.text-base-secondary{--tw-text-opacity:1;color:rgb(197 156 78/var(--tw-text-opacity))}.text-base-success{--tw-text-opacity:1;color:rgb(23 201 100/var(--tw-text-opacity))}.text-base-warning{--tw-text-opacity:1;color:rgb(245 165 36/var(--tw-text-opacity))}.text-content-1{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.text-default-400{--tw-text-opacity:1;color:rgb(161 161 170/var(--tw-text-opacity))}.text-default-500{--tw-text-opacity:1;color:rgb(113 113 122/var(--tw-text-opacity))}.text-default-600{--tw-text-opacity:1;color:rgb(82 82 91/var(--tw-text-opacity))}.text-default-900{--tw-text-opacity:1;color:rgb(0 0 0/var(--tw-text-opacity))}.text-layout-fg{--tw-text-opacity:1;color:rgb(17 24 28/var(--tw-text-opacity))}.text-primary-300{--tw-text-opacity:1;color:rgb(17 46 98/var(--tw-text-opacity))}.text-white{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.text-zinc-400{--tw-text-opacity:1;color:rgb(161 161 170/var(--tw-text-opacity))}.opacity-50{opacity:.5}.shadow{--tw-shadow:0px 1px 2px 0px rgba(0,0,0,.06),0px 1px 3px 0px rgba(0,0,0,.1);--tw-shadow-colored:0px 1px 2px 0px var(--tw-shadow-color),0px 1px 3px 0px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.shadow-\[0px_0px_1px_0px_\#0000004D\2c 0px_2px_10px_0px_\#0000000F\2c 0px_0px_5px_0px_\#00000005\]{--tw-shadow:0px 0px 1px 0px #0000004d,0px 2px 10px 0px #0000000f,0px 0px 5px 0px #00000005;--tw-shadow-colored:0px 0px 1px 0px var(--tw-shadow-color),0px 2px 10px 0px var(--tw-shadow-color),0px 0px 5px 0px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.shadow-\[0px_1px_2px_0px_\#0000000F\2c 0px_1px_3px_0px_\#0000001A\]{--tw-shadow:0px 1px 2px 0px #0000000f,0px 1px 3px 0px #0000001a;--tw-shadow-colored:0px 1px 2px 0px var(--tw-shadow-color),0px 1px 3px 0px var(--tw-shadow-color)}.shadow-\[0px_1px_2px_0px_\#0000000F\2c 0px_1px_3px_0px_\#0000001A\],.shadow-lg{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.shadow-lg{--tw-shadow:0px 4px 6px -2px rgba(0,0,0,.05),0px 10px 15px -3px rgba(0,0,0,.1);--tw-shadow-colored:0px 4px 6px -2px var(--tw-shadow-color),0px 10px 15px -3px var(--tw-shadow-color)}.outline-none{outline:2px solid transparent;outline-offset:2px}.filter{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.transition{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-all{transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-colors{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.duration-200{transition-duration:.2s}.duration-300{transition-duration:.3s}.focus-within\:border:focus-within{border-width:1px}.focus-within\:border-base-danger:focus-within{--tw-border-opacity:1;border-color:rgb(243 18 96/var(--tw-border-opacity))}.focus-within\:border-base-primary:focus-within{--tw-border-opacity:1;border-color:rgb(17 46 98/var(--tw-border-opacity))}.focus-within\:border-base-success:focus-within{--tw-border-opacity:1;border-color:rgb(23 201 100/var(--tw-border-opacity))}.focus-within\:border-base-warning:focus-within{--tw-border-opacity:1;border-color:rgb(245 165 36/var(--tw-border-opacity))}.focus-within\:border-layout-fg:focus-within{--tw-border-opacity:1;border-color:rgb(17 24 28/var(--tw-border-opacity))}.focus-within\:bg-transparent:focus-within{background-color:transparent}.focus-within\:text-layout-fg:focus-within{--tw-text-opacity:1;color:rgb(17 24 28/var(--tw-text-opacity))}.hover\:border-base-danger:hover{--tw-border-opacity:1;border-color:rgb(243 18 96/var(--tw-border-opacity))}.hover\:border-base-primary:hover{--tw-border-opacity:1;border-color:rgb(17 46 98/var(--tw-border-opacity))}.hover\:border-base-success:hover{--tw-border-opacity:1;border-color:rgb(23 201 100/var(--tw-border-opacity))}.hover\:border-base-warning:hover{--tw-border-opacity:1;border-color:rgb(245 165 36/var(--tw-border-opacity))}.hover\:border-default-400:hover{--tw-border-opacity:1;border-color:rgb(161 161 170/var(--tw-border-opacity))}.hover\:bg-danger-50:hover{--tw-bg-opacity:1;background-color:rgb(254 231 239/var(--tw-bg-opacity))}.hover\:bg-default-100:hover{--tw-bg-opacity:1;background-color:rgb(244 244 245/var(--tw-bg-opacity))}.hover\:bg-default-200:hover{--tw-bg-opacity:1;background-color:rgb(228 228 231/var(--tw-bg-opacity))}.hover\:bg-primary-50:hover{--tw-bg-opacity:1;background-color:rgb(238 242 250/var(--tw-bg-opacity))}.hover\:bg-success-50:hover{--tw-bg-opacity:1;background-color:rgb(232 250 240/var(--tw-bg-opacity))}.hover\:bg-warning-50:hover{--tw-bg-opacity:1;background-color:rgb(254 252 232/var(--tw-bg-opacity))}.hover\:bg-zinc-100:hover{--tw-bg-opacity:1;background-color:rgb(244 244 245/var(--tw-bg-opacity))}.hover\:text-base-primary:hover{--tw-text-opacity:1;color:rgb(17 46 98/var(--tw-text-opacity))}.hover\:text-base-success:hover{--tw-text-opacity:1;color:rgb(23 201 100/var(--tw-text-opacity))}.hover\:text-base-warning:hover{--tw-text-opacity:1;color:rgb(245 165 36/var(--tw-text-opacity))}.focus-within\:hover\:border-base-danger:hover:focus-within{--tw-border-opacity:1;border-color:rgb(243 18 96/var(--tw-border-opacity))}.focus-within\:hover\:border-base-primary:hover:focus-within{--tw-border-opacity:1;border-color:rgb(17 46 98/var(--tw-border-opacity))}.focus-within\:hover\:border-base-success:hover:focus-within{--tw-border-opacity:1;border-color:rgb(23 201 100/var(--tw-border-opacity))}.focus-within\:hover\:border-base-warning:hover:focus-within{--tw-border-opacity:1;border-color:rgb(245 165 36/var(--tw-border-opacity))}.focus-within\:hover\:border-layout-fg:hover:focus-within{--tw-border-opacity:1;border-color:rgb(17 24 28/var(--tw-border-opacity))}.focus-within\:hover\:bg-transparent:hover:focus-within{background-color:transparent}.focus\:border-2:focus{border-width:2px}.focus\:border-\[\#11181C\]:focus{--tw-border-opacity:1;border-color:rgb(17 24 28/var(--tw-border-opacity))}.focus\:bg-transparent:focus{background-color:transparent}
|