@nextui-org/theme 2.3.0-beta.0 → 2.3.0-beta.10
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/{chunk-HZ7J23VD.mjs → chunk-3ANIDDEW.mjs} +8 -10
- package/dist/chunk-MO6TCUI5.mjs +334 -0
- package/dist/{chunk-TNFNBUPA.mjs → chunk-MXL6JCUG.mjs} +12 -12
- package/dist/components/alert.d.ts +97 -17
- package/dist/components/alert.js +150 -32
- package/dist/components/alert.mjs +1 -1
- package/dist/components/index.js +170 -54
- package/dist/components/index.mjs +3 -3
- package/dist/components/input.js +12 -12
- package/dist/components/input.mjs +1 -1
- package/dist/components/select.js +8 -10
- package/dist/components/select.mjs +1 -1
- package/dist/index.js +170 -54
- package/dist/index.mjs +3 -3
- package/package.json +2 -2
- package/dist/chunk-3XDFZGUJ.mjs +0 -216
|
@@ -38,17 +38,16 @@ var select = tv({
|
|
|
38
38
|
flat: {
|
|
39
39
|
trigger: [
|
|
40
40
|
"bg-default-100",
|
|
41
|
-
"data-[hover=true]:bg-default-
|
|
42
|
-
"group-data-[focus=true]:bg-default-
|
|
41
|
+
"data-[hover=true]:bg-default-50",
|
|
42
|
+
"group-data-[focus=true]:bg-default-50"
|
|
43
43
|
]
|
|
44
44
|
},
|
|
45
45
|
faded: {
|
|
46
46
|
trigger: [
|
|
47
47
|
"bg-default-100",
|
|
48
|
-
"data-[hover=true]:bg-default-200",
|
|
49
48
|
"border-medium",
|
|
50
49
|
"border-default-200",
|
|
51
|
-
"data-[hover=true]:border-default-400"
|
|
50
|
+
"data-[hover=true]:border-default-400 data-[focus=true]:border-default-400 data-[open=true]:border-default-400"
|
|
52
51
|
],
|
|
53
52
|
value: "group-data-[has-value=true]:text-default-foreground"
|
|
54
53
|
},
|
|
@@ -58,7 +57,6 @@ var select = tv({
|
|
|
58
57
|
"border-default-200",
|
|
59
58
|
"data-[hover=true]:border-default-400",
|
|
60
59
|
"data-[open=true]:border-default-foreground",
|
|
61
|
-
"data-[focus=true]:border-default-foreground",
|
|
62
60
|
"data-[focus=true]:border-default-foreground"
|
|
63
61
|
],
|
|
64
62
|
value: "group-data-[has-value=true]:text-default-foreground"
|
|
@@ -302,7 +300,7 @@ var select = tv({
|
|
|
302
300
|
variant: "faded",
|
|
303
301
|
color: "primary",
|
|
304
302
|
class: {
|
|
305
|
-
trigger: "data-[hover=true]:border-primary",
|
|
303
|
+
trigger: "data-[hover=true]:border-primary data-[focus=true]:border-primary data-[open=true]:border-primary",
|
|
306
304
|
label: "text-primary"
|
|
307
305
|
}
|
|
308
306
|
},
|
|
@@ -310,7 +308,7 @@ var select = tv({
|
|
|
310
308
|
variant: "faded",
|
|
311
309
|
color: "secondary",
|
|
312
310
|
class: {
|
|
313
|
-
trigger: "data-[hover=true]:border-secondary",
|
|
311
|
+
trigger: "data-[hover=true]:border-secondary data-[focus=true]:border-secondary data-[open=true]:border-secondary",
|
|
314
312
|
label: "text-secondary"
|
|
315
313
|
}
|
|
316
314
|
},
|
|
@@ -318,7 +316,7 @@ var select = tv({
|
|
|
318
316
|
variant: "faded",
|
|
319
317
|
color: "success",
|
|
320
318
|
class: {
|
|
321
|
-
trigger: "data-[hover=true]:border-success",
|
|
319
|
+
trigger: "data-[hover=true]:border-success data-[focus=true]:border-success data-[open=true]:border-success",
|
|
322
320
|
label: "text-success"
|
|
323
321
|
}
|
|
324
322
|
},
|
|
@@ -326,7 +324,7 @@ var select = tv({
|
|
|
326
324
|
variant: "faded",
|
|
327
325
|
color: "warning",
|
|
328
326
|
class: {
|
|
329
|
-
trigger: "data-[hover=true]:border-warning",
|
|
327
|
+
trigger: "data-[hover=true]:border-warning data-[focus=true]:border-warning data-[open=true]:border-warning",
|
|
330
328
|
label: "text-warning"
|
|
331
329
|
}
|
|
332
330
|
},
|
|
@@ -334,7 +332,7 @@ var select = tv({
|
|
|
334
332
|
variant: "faded",
|
|
335
333
|
color: "danger",
|
|
336
334
|
class: {
|
|
337
|
-
trigger: "data-[hover=true]:border-danger",
|
|
335
|
+
trigger: "data-[hover=true]:border-danger data-[focus=true]:border-danger data-[open=true]:border-danger",
|
|
338
336
|
label: "text-danger"
|
|
339
337
|
}
|
|
340
338
|
},
|
|
@@ -0,0 +1,334 @@
|
|
|
1
|
+
import {
|
|
2
|
+
colorVariants
|
|
3
|
+
} from "./chunk-GQT3YUX3.mjs";
|
|
4
|
+
import {
|
|
5
|
+
tv
|
|
6
|
+
} from "./chunk-UWE6H66T.mjs";
|
|
7
|
+
|
|
8
|
+
// src/components/alert.ts
|
|
9
|
+
var alert = tv({
|
|
10
|
+
slots: {
|
|
11
|
+
base: "flex flex-grow flex-row w-full items-start py-3 px-4 gap-x-1",
|
|
12
|
+
mainWrapper: "h-full flex-grow min-h-10 ms-2 flex flex-col box-border items-start text-inherit",
|
|
13
|
+
title: "text-small w-full font-medium block text-inherit leading-5",
|
|
14
|
+
description: "pl-[1px] text-small font-normal text-inherit",
|
|
15
|
+
closeButton: "relative text-inherit translate-x-1 -translate-y-1",
|
|
16
|
+
iconWrapper: "flex-none relative w-9 h-9 rounded-full",
|
|
17
|
+
alertIcon: "fill-current w-6 absolute top-1/2 left-1/2 -translate-x-1/2 -translate-y-1/2"
|
|
18
|
+
},
|
|
19
|
+
variants: {
|
|
20
|
+
color: {
|
|
21
|
+
default: {},
|
|
22
|
+
primary: {},
|
|
23
|
+
secondary: {},
|
|
24
|
+
success: {},
|
|
25
|
+
warning: {},
|
|
26
|
+
danger: {}
|
|
27
|
+
},
|
|
28
|
+
variant: {
|
|
29
|
+
solid: {},
|
|
30
|
+
flat: {},
|
|
31
|
+
faded: {
|
|
32
|
+
base: "border-small"
|
|
33
|
+
},
|
|
34
|
+
bordered: {
|
|
35
|
+
base: "border-small bg-transparent"
|
|
36
|
+
}
|
|
37
|
+
},
|
|
38
|
+
radius: {
|
|
39
|
+
none: {
|
|
40
|
+
base: "rounded-none"
|
|
41
|
+
},
|
|
42
|
+
sm: {
|
|
43
|
+
base: "rounded-small"
|
|
44
|
+
},
|
|
45
|
+
md: {
|
|
46
|
+
base: "rounded-medium"
|
|
47
|
+
},
|
|
48
|
+
lg: {
|
|
49
|
+
base: "rounded-large"
|
|
50
|
+
},
|
|
51
|
+
full: {
|
|
52
|
+
base: "rounded-full"
|
|
53
|
+
}
|
|
54
|
+
},
|
|
55
|
+
hideIcon: {
|
|
56
|
+
true: {
|
|
57
|
+
iconWrapper: "hidden"
|
|
58
|
+
}
|
|
59
|
+
},
|
|
60
|
+
hideIconWrapper: {
|
|
61
|
+
true: {
|
|
62
|
+
base: "gap-x-0",
|
|
63
|
+
iconWrapper: "!bg-transparent !shadow-none"
|
|
64
|
+
}
|
|
65
|
+
},
|
|
66
|
+
hasDescription: {
|
|
67
|
+
false: {
|
|
68
|
+
base: "items-start",
|
|
69
|
+
mainWrapper: "justify-center"
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
},
|
|
73
|
+
defaultVariants: {
|
|
74
|
+
color: "default",
|
|
75
|
+
variant: "flat",
|
|
76
|
+
radius: "md",
|
|
77
|
+
hideIcon: false,
|
|
78
|
+
hideIconWrapper: false
|
|
79
|
+
},
|
|
80
|
+
compoundVariants: [
|
|
81
|
+
{
|
|
82
|
+
variant: "solid",
|
|
83
|
+
color: "default",
|
|
84
|
+
class: {
|
|
85
|
+
base: colorVariants.solid.default,
|
|
86
|
+
closeButton: "data-[hover]:bg-default-100",
|
|
87
|
+
alertIcon: "text-default-foreground"
|
|
88
|
+
}
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
variant: "solid",
|
|
92
|
+
color: "primary",
|
|
93
|
+
class: {
|
|
94
|
+
base: colorVariants.solid.primary
|
|
95
|
+
}
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
variant: "solid",
|
|
99
|
+
color: "secondary",
|
|
100
|
+
class: {
|
|
101
|
+
base: colorVariants.solid.secondary
|
|
102
|
+
}
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
variant: "solid",
|
|
106
|
+
color: "success",
|
|
107
|
+
class: {
|
|
108
|
+
base: colorVariants.solid.success
|
|
109
|
+
}
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
variant: "solid",
|
|
113
|
+
color: "warning",
|
|
114
|
+
class: {
|
|
115
|
+
base: colorVariants.solid.warning
|
|
116
|
+
}
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
variant: "solid",
|
|
120
|
+
color: "danger",
|
|
121
|
+
class: {
|
|
122
|
+
base: colorVariants.solid.danger
|
|
123
|
+
}
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
variant: ["flat", "faded"],
|
|
127
|
+
color: "default",
|
|
128
|
+
class: {
|
|
129
|
+
base: [
|
|
130
|
+
colorVariants.flat.default,
|
|
131
|
+
"bg-default-100 dark:bg-default-50/50",
|
|
132
|
+
"text-default-foreground"
|
|
133
|
+
],
|
|
134
|
+
description: "text-default-600",
|
|
135
|
+
closeButton: "text-default-400",
|
|
136
|
+
iconWrapper: "bg-default-50 dark:bg-default-100 border-default-200"
|
|
137
|
+
}
|
|
138
|
+
},
|
|
139
|
+
{
|
|
140
|
+
variant: ["flat", "faded"],
|
|
141
|
+
color: "primary",
|
|
142
|
+
class: {
|
|
143
|
+
base: [colorVariants.flat.primary, "bg-primary-50 dark:bg-primary-50/50"],
|
|
144
|
+
closeButton: "text-primary-500 data-[hover]:bg-primary-200",
|
|
145
|
+
iconWrapper: "bg-primary-50 dark:bg-primary-100 border-primary-100"
|
|
146
|
+
}
|
|
147
|
+
},
|
|
148
|
+
{
|
|
149
|
+
variant: ["flat", "faded"],
|
|
150
|
+
color: "secondary",
|
|
151
|
+
class: {
|
|
152
|
+
base: [colorVariants.flat.secondary, "bg-secondary-50 dark:bg-secondary-50/50"],
|
|
153
|
+
closeButton: "text-secondary-500 data-[hover]:bg-secondary-200",
|
|
154
|
+
iconWrapper: "bg-secondary-50 dark:bg-secondary-100 border-secondary-100"
|
|
155
|
+
}
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
variant: ["flat", "faded"],
|
|
159
|
+
color: "success",
|
|
160
|
+
class: {
|
|
161
|
+
base: [colorVariants.flat.success, "bg-success-50 dark:bg-success-50/50"],
|
|
162
|
+
closeButton: "text-success-500 data-[hover]:bg-success-200",
|
|
163
|
+
iconWrapper: "bg-success-50 dark:bg-success-100 border-success-100"
|
|
164
|
+
}
|
|
165
|
+
},
|
|
166
|
+
{
|
|
167
|
+
variant: ["flat", "faded"],
|
|
168
|
+
color: "warning",
|
|
169
|
+
class: {
|
|
170
|
+
base: [colorVariants.flat.warning, "bg-warning-50 dark:bg-warning-50/50"],
|
|
171
|
+
closeButton: "text-warning-500 data-[hover]:bg-warning-200",
|
|
172
|
+
iconWrapper: "bg-warning-50 dark:bg-warning-100 border-warning-100"
|
|
173
|
+
}
|
|
174
|
+
},
|
|
175
|
+
{
|
|
176
|
+
variant: ["flat", "faded"],
|
|
177
|
+
color: "danger",
|
|
178
|
+
class: {
|
|
179
|
+
base: [colorVariants.flat.danger, "bg-danger-50 dark:bg-danger-50/50"],
|
|
180
|
+
closeButton: "text-danger-500 data-[hover]:bg-danger-200",
|
|
181
|
+
iconWrapper: "bg-danger-50 dark:bg-danger-100 border-danger-100"
|
|
182
|
+
}
|
|
183
|
+
},
|
|
184
|
+
{
|
|
185
|
+
variant: "faded",
|
|
186
|
+
color: "default",
|
|
187
|
+
class: {
|
|
188
|
+
base: "border-default-300 dark:border-default-200"
|
|
189
|
+
}
|
|
190
|
+
},
|
|
191
|
+
{
|
|
192
|
+
variant: "faded",
|
|
193
|
+
color: "primary",
|
|
194
|
+
class: {
|
|
195
|
+
base: "border-primary-200 dark:border-primary-100"
|
|
196
|
+
}
|
|
197
|
+
},
|
|
198
|
+
{
|
|
199
|
+
variant: "faded",
|
|
200
|
+
color: "secondary",
|
|
201
|
+
class: {
|
|
202
|
+
base: "border-secondary-200"
|
|
203
|
+
}
|
|
204
|
+
},
|
|
205
|
+
{
|
|
206
|
+
variant: "faded",
|
|
207
|
+
color: "success",
|
|
208
|
+
class: {
|
|
209
|
+
base: "border-success-300 dark:border-success-100"
|
|
210
|
+
}
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
variant: "faded",
|
|
214
|
+
color: "warning",
|
|
215
|
+
class: {
|
|
216
|
+
base: "border-warning-300 dark:border-warning-100"
|
|
217
|
+
}
|
|
218
|
+
},
|
|
219
|
+
{
|
|
220
|
+
variant: "faded",
|
|
221
|
+
color: "danger",
|
|
222
|
+
class: {
|
|
223
|
+
base: "border-danger-200 dark:border-danger-100"
|
|
224
|
+
}
|
|
225
|
+
},
|
|
226
|
+
{
|
|
227
|
+
variant: "bordered",
|
|
228
|
+
color: "default",
|
|
229
|
+
class: {
|
|
230
|
+
base: [colorVariants.bordered.default],
|
|
231
|
+
description: "text-default-600",
|
|
232
|
+
closeButton: "text-default-400"
|
|
233
|
+
}
|
|
234
|
+
},
|
|
235
|
+
{
|
|
236
|
+
variant: "bordered",
|
|
237
|
+
color: "primary",
|
|
238
|
+
class: {
|
|
239
|
+
base: [colorVariants.bordered.primary],
|
|
240
|
+
closeButton: "data-[hover]:bg-primary-50"
|
|
241
|
+
}
|
|
242
|
+
},
|
|
243
|
+
{
|
|
244
|
+
variant: "bordered",
|
|
245
|
+
color: "secondary",
|
|
246
|
+
class: {
|
|
247
|
+
base: [colorVariants.bordered.secondary],
|
|
248
|
+
closeButton: "data-[hover]:bg-secondary-50"
|
|
249
|
+
}
|
|
250
|
+
},
|
|
251
|
+
{
|
|
252
|
+
variant: "bordered",
|
|
253
|
+
color: "success",
|
|
254
|
+
class: {
|
|
255
|
+
base: [colorVariants.bordered.success],
|
|
256
|
+
closeButton: "data-[hover]:bg-success-50"
|
|
257
|
+
}
|
|
258
|
+
},
|
|
259
|
+
{
|
|
260
|
+
variant: "bordered",
|
|
261
|
+
color: "warning",
|
|
262
|
+
class: {
|
|
263
|
+
base: [colorVariants.bordered.warning],
|
|
264
|
+
closeButton: "data-[hover]:bg-warning-100"
|
|
265
|
+
}
|
|
266
|
+
},
|
|
267
|
+
{
|
|
268
|
+
variant: "bordered",
|
|
269
|
+
color: "danger",
|
|
270
|
+
class: {
|
|
271
|
+
base: [colorVariants.bordered.danger],
|
|
272
|
+
closeButton: "data-[hover]:bg-danger-50"
|
|
273
|
+
}
|
|
274
|
+
},
|
|
275
|
+
{
|
|
276
|
+
variant: ["flat", "bordered", "faded"],
|
|
277
|
+
class: {
|
|
278
|
+
iconWrapper: "shadow-small"
|
|
279
|
+
}
|
|
280
|
+
},
|
|
281
|
+
{
|
|
282
|
+
variant: ["flat", "faded"],
|
|
283
|
+
class: {
|
|
284
|
+
iconWrapper: "shadow-small border-1"
|
|
285
|
+
}
|
|
286
|
+
},
|
|
287
|
+
{
|
|
288
|
+
variant: "bordered",
|
|
289
|
+
color: "default",
|
|
290
|
+
class: {
|
|
291
|
+
iconWrapper: "bg-default-200 dark:bg-default-100"
|
|
292
|
+
}
|
|
293
|
+
},
|
|
294
|
+
{
|
|
295
|
+
variant: "bordered",
|
|
296
|
+
color: "primary",
|
|
297
|
+
class: {
|
|
298
|
+
iconWrapper: "bg-primary-100 dark:bg-primary-50"
|
|
299
|
+
}
|
|
300
|
+
},
|
|
301
|
+
{
|
|
302
|
+
variant: "bordered",
|
|
303
|
+
color: "secondary",
|
|
304
|
+
class: {
|
|
305
|
+
iconWrapper: "bg-secondary-100 dark:bg-secondary-50"
|
|
306
|
+
}
|
|
307
|
+
},
|
|
308
|
+
{
|
|
309
|
+
variant: "bordered",
|
|
310
|
+
color: "success",
|
|
311
|
+
class: {
|
|
312
|
+
iconWrapper: "bg-success-100 dark:bg-success-50"
|
|
313
|
+
}
|
|
314
|
+
},
|
|
315
|
+
{
|
|
316
|
+
variant: "bordered",
|
|
317
|
+
color: "warning",
|
|
318
|
+
class: {
|
|
319
|
+
iconWrapper: "bg-warning-100 dark:bg-warning-50"
|
|
320
|
+
}
|
|
321
|
+
},
|
|
322
|
+
{
|
|
323
|
+
variant: "bordered",
|
|
324
|
+
color: "danger",
|
|
325
|
+
class: {
|
|
326
|
+
iconWrapper: "bg-danger-100 dark:bg-danger-50"
|
|
327
|
+
}
|
|
328
|
+
}
|
|
329
|
+
]
|
|
330
|
+
});
|
|
331
|
+
|
|
332
|
+
export {
|
|
333
|
+
alert
|
|
334
|
+
};
|
|
@@ -58,7 +58,7 @@ var input = tv({
|
|
|
58
58
|
flat: {
|
|
59
59
|
inputWrapper: [
|
|
60
60
|
"bg-default-100",
|
|
61
|
-
"data-[hover=true]:bg-default-
|
|
61
|
+
"data-[hover=true]:bg-default-50",
|
|
62
62
|
"group-data-[focus=true]:bg-default-100"
|
|
63
63
|
]
|
|
64
64
|
},
|
|
@@ -67,7 +67,7 @@ var input = tv({
|
|
|
67
67
|
"bg-default-100",
|
|
68
68
|
"border-medium",
|
|
69
69
|
"border-default-200",
|
|
70
|
-
"data-[hover=true]:border-default-400"
|
|
70
|
+
"data-[hover=true]:border-default-400 focus-within:border-default-400"
|
|
71
71
|
],
|
|
72
72
|
value: "group-data-[has-value=true]:text-default-foreground"
|
|
73
73
|
},
|
|
@@ -244,8 +244,8 @@ var input = tv({
|
|
|
244
244
|
color: "primary",
|
|
245
245
|
class: {
|
|
246
246
|
inputWrapper: [
|
|
247
|
-
"bg-primary-
|
|
248
|
-
"data-[hover=true]:bg-primary-
|
|
247
|
+
"bg-primary-100",
|
|
248
|
+
"data-[hover=true]:bg-primary-50",
|
|
249
249
|
"text-primary",
|
|
250
250
|
"group-data-[focus=true]:bg-primary-50",
|
|
251
251
|
"placeholder:text-primary"
|
|
@@ -259,9 +259,9 @@ var input = tv({
|
|
|
259
259
|
color: "secondary",
|
|
260
260
|
class: {
|
|
261
261
|
inputWrapper: [
|
|
262
|
-
"bg-secondary-
|
|
262
|
+
"bg-secondary-100",
|
|
263
263
|
"text-secondary",
|
|
264
|
-
"data-[hover=true]:bg-secondary-
|
|
264
|
+
"data-[hover=true]:bg-secondary-50",
|
|
265
265
|
"group-data-[focus=true]:bg-secondary-50",
|
|
266
266
|
"placeholder:text-secondary"
|
|
267
267
|
],
|
|
@@ -274,12 +274,12 @@ var input = tv({
|
|
|
274
274
|
color: "success",
|
|
275
275
|
class: {
|
|
276
276
|
inputWrapper: [
|
|
277
|
-
"bg-success-
|
|
277
|
+
"bg-success-100",
|
|
278
278
|
"text-success-600",
|
|
279
279
|
"dark:text-success",
|
|
280
280
|
"placeholder:text-success-600",
|
|
281
281
|
"dark:placeholder:text-success",
|
|
282
|
-
"data-[hover=true]:bg-success-
|
|
282
|
+
"data-[hover=true]:bg-success-50",
|
|
283
283
|
"group-data-[focus=true]:bg-success-50"
|
|
284
284
|
],
|
|
285
285
|
input: "placeholder:text-success-600 dark:placeholder:text-success",
|
|
@@ -291,12 +291,12 @@ var input = tv({
|
|
|
291
291
|
color: "warning",
|
|
292
292
|
class: {
|
|
293
293
|
inputWrapper: [
|
|
294
|
-
"bg-warning-
|
|
294
|
+
"bg-warning-100",
|
|
295
295
|
"text-warning-600",
|
|
296
296
|
"dark:text-warning",
|
|
297
297
|
"placeholder:text-warning-600",
|
|
298
298
|
"dark:placeholder:text-warning",
|
|
299
|
-
"data-[hover=true]:bg-warning-
|
|
299
|
+
"data-[hover=true]:bg-warning-50",
|
|
300
300
|
"group-data-[focus=true]:bg-warning-50"
|
|
301
301
|
],
|
|
302
302
|
input: "placeholder:text-warning-600 dark:placeholder:text-warning",
|
|
@@ -308,12 +308,12 @@ var input = tv({
|
|
|
308
308
|
color: "danger",
|
|
309
309
|
class: {
|
|
310
310
|
inputWrapper: [
|
|
311
|
-
"bg-danger-
|
|
311
|
+
"bg-danger-100",
|
|
312
312
|
"text-danger",
|
|
313
313
|
"dark:text-danger-500",
|
|
314
314
|
"placeholder:text-danger",
|
|
315
315
|
"dark:placeholder:text-danger-500",
|
|
316
|
-
"data-[hover=true]:bg-danger-
|
|
316
|
+
"data-[hover=true]:bg-danger-50",
|
|
317
317
|
"group-data-[focus=true]:bg-danger-50"
|
|
318
318
|
],
|
|
319
319
|
input: "placeholder:text-danger dark:placeholder:text-danger-500",
|