@nextui-org/theme 2.1.3 → 2.1.5
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-FZZINZOQ.mjs → chunk-ER6JQ3OQ.mjs} +21 -4
- package/dist/{chunk-PBGVMEDL.mjs → chunk-PJV3MWBL.mjs} +24 -8
- package/dist/{chunk-NVPBHMUQ.mjs → chunk-X3O5NF4F.mjs} +4 -7
- package/dist/components/accordion.d.ts +153 -2
- package/dist/components/avatar.d.ts +227 -2
- package/dist/components/badge.d.ts +199 -1
- package/dist/components/button.d.ts +155 -2
- package/dist/components/card.d.ts +225 -1
- package/dist/components/checkbox.d.ts +250 -2
- package/dist/components/chip.d.ts +304 -1
- package/dist/components/circular-progress.d.ts +171 -1
- package/dist/components/code.d.ts +64 -1
- package/dist/components/divider.d.ts +16 -1
- package/dist/components/drip.d.ts +1 -1
- package/dist/components/dropdown.d.ts +135 -4
- package/dist/components/image.d.ts +141 -1
- package/dist/components/index.js +49 -19
- package/dist/components/index.mjs +3 -3
- package/dist/components/input.d.ts +386 -20
- package/dist/components/input.js +24 -8
- package/dist/components/input.mjs +1 -1
- package/dist/components/kbd.d.ts +5 -1
- package/dist/components/link.d.ts +94 -1
- package/dist/components/menu.d.ts +152 -3
- package/dist/components/modal.d.ts +315 -1
- package/dist/components/navbar.d.ts +174 -1
- package/dist/components/pagination.d.ts +239 -1
- package/dist/components/pagination.js +21 -4
- package/dist/components/pagination.mjs +1 -1
- package/dist/components/popover.d.ts +276 -1
- package/dist/components/progress.d.ts +91 -1
- package/dist/components/radio.d.ts +231 -2
- package/dist/components/scroll-shadow.d.ts +28 -1
- package/dist/components/select.d.ts +390 -17
- package/dist/components/select.js +4 -7
- package/dist/components/select.mjs +1 -1
- package/dist/components/skeleton.d.ts +37 -1
- package/dist/components/snippet.d.ts +165 -1
- package/dist/components/spacer.d.ts +16 -1
- package/dist/components/spinner.d.ts +232 -1
- package/dist/components/table.d.ts +311 -1
- package/dist/components/tabs.d.ts +269 -1
- package/dist/components/toggle.d.ts +192 -1
- package/dist/components/user.d.ts +11 -1
- package/dist/index.js +49 -19
- package/dist/index.mjs +3 -3
- package/dist/types.d.ts +1 -1
- package/package.json +2 -2
|
@@ -253,7 +253,177 @@ declare const circularProgress: tailwind_variants.TVReturnType<{
|
|
|
253
253
|
track: string;
|
|
254
254
|
indicator: string;
|
|
255
255
|
value: string;
|
|
256
|
-
}
|
|
256
|
+
}, tailwind_variants.TVReturnType<{
|
|
257
|
+
color: {
|
|
258
|
+
default: {
|
|
259
|
+
svg: string;
|
|
260
|
+
};
|
|
261
|
+
primary: {
|
|
262
|
+
svg: string;
|
|
263
|
+
};
|
|
264
|
+
secondary: {
|
|
265
|
+
svg: string;
|
|
266
|
+
};
|
|
267
|
+
success: {
|
|
268
|
+
svg: string;
|
|
269
|
+
};
|
|
270
|
+
warning: {
|
|
271
|
+
svg: string;
|
|
272
|
+
};
|
|
273
|
+
danger: {
|
|
274
|
+
svg: string;
|
|
275
|
+
};
|
|
276
|
+
};
|
|
277
|
+
size: {
|
|
278
|
+
sm: {
|
|
279
|
+
svg: string;
|
|
280
|
+
label: string;
|
|
281
|
+
value: string;
|
|
282
|
+
};
|
|
283
|
+
md: {
|
|
284
|
+
svg: string;
|
|
285
|
+
label: string;
|
|
286
|
+
value: string;
|
|
287
|
+
};
|
|
288
|
+
lg: {
|
|
289
|
+
svg: string;
|
|
290
|
+
label: string;
|
|
291
|
+
value: string;
|
|
292
|
+
};
|
|
293
|
+
};
|
|
294
|
+
isIndeterminate: {
|
|
295
|
+
true: {
|
|
296
|
+
svg: string;
|
|
297
|
+
};
|
|
298
|
+
};
|
|
299
|
+
isDisabled: {
|
|
300
|
+
true: {
|
|
301
|
+
base: string;
|
|
302
|
+
};
|
|
303
|
+
};
|
|
304
|
+
disableAnimation: {
|
|
305
|
+
true: {};
|
|
306
|
+
false: {
|
|
307
|
+
indicator: string;
|
|
308
|
+
};
|
|
309
|
+
};
|
|
310
|
+
}, {
|
|
311
|
+
base: string;
|
|
312
|
+
label: string;
|
|
313
|
+
svgWrapper: string;
|
|
314
|
+
svg: string;
|
|
315
|
+
track: string;
|
|
316
|
+
indicator: string;
|
|
317
|
+
value: string;
|
|
318
|
+
}, undefined, tailwind_variants_dist_config.TVConfig<{
|
|
319
|
+
color: {
|
|
320
|
+
default: {
|
|
321
|
+
svg: string;
|
|
322
|
+
};
|
|
323
|
+
primary: {
|
|
324
|
+
svg: string;
|
|
325
|
+
};
|
|
326
|
+
secondary: {
|
|
327
|
+
svg: string;
|
|
328
|
+
};
|
|
329
|
+
success: {
|
|
330
|
+
svg: string;
|
|
331
|
+
};
|
|
332
|
+
warning: {
|
|
333
|
+
svg: string;
|
|
334
|
+
};
|
|
335
|
+
danger: {
|
|
336
|
+
svg: string;
|
|
337
|
+
};
|
|
338
|
+
};
|
|
339
|
+
size: {
|
|
340
|
+
sm: {
|
|
341
|
+
svg: string;
|
|
342
|
+
label: string;
|
|
343
|
+
value: string;
|
|
344
|
+
};
|
|
345
|
+
md: {
|
|
346
|
+
svg: string;
|
|
347
|
+
label: string;
|
|
348
|
+
value: string;
|
|
349
|
+
};
|
|
350
|
+
lg: {
|
|
351
|
+
svg: string;
|
|
352
|
+
label: string;
|
|
353
|
+
value: string;
|
|
354
|
+
};
|
|
355
|
+
};
|
|
356
|
+
isIndeterminate: {
|
|
357
|
+
true: {
|
|
358
|
+
svg: string;
|
|
359
|
+
};
|
|
360
|
+
};
|
|
361
|
+
isDisabled: {
|
|
362
|
+
true: {
|
|
363
|
+
base: string;
|
|
364
|
+
};
|
|
365
|
+
};
|
|
366
|
+
disableAnimation: {
|
|
367
|
+
true: {};
|
|
368
|
+
false: {
|
|
369
|
+
indicator: string;
|
|
370
|
+
};
|
|
371
|
+
};
|
|
372
|
+
}, {
|
|
373
|
+
color: {
|
|
374
|
+
default: {
|
|
375
|
+
svg: string;
|
|
376
|
+
};
|
|
377
|
+
primary: {
|
|
378
|
+
svg: string;
|
|
379
|
+
};
|
|
380
|
+
secondary: {
|
|
381
|
+
svg: string;
|
|
382
|
+
};
|
|
383
|
+
success: {
|
|
384
|
+
svg: string;
|
|
385
|
+
};
|
|
386
|
+
warning: {
|
|
387
|
+
svg: string;
|
|
388
|
+
};
|
|
389
|
+
danger: {
|
|
390
|
+
svg: string;
|
|
391
|
+
};
|
|
392
|
+
};
|
|
393
|
+
size: {
|
|
394
|
+
sm: {
|
|
395
|
+
svg: string;
|
|
396
|
+
label: string;
|
|
397
|
+
value: string;
|
|
398
|
+
};
|
|
399
|
+
md: {
|
|
400
|
+
svg: string;
|
|
401
|
+
label: string;
|
|
402
|
+
value: string;
|
|
403
|
+
};
|
|
404
|
+
lg: {
|
|
405
|
+
svg: string;
|
|
406
|
+
label: string;
|
|
407
|
+
value: string;
|
|
408
|
+
};
|
|
409
|
+
};
|
|
410
|
+
isIndeterminate: {
|
|
411
|
+
true: {
|
|
412
|
+
svg: string;
|
|
413
|
+
};
|
|
414
|
+
};
|
|
415
|
+
isDisabled: {
|
|
416
|
+
true: {
|
|
417
|
+
base: string;
|
|
418
|
+
};
|
|
419
|
+
};
|
|
420
|
+
disableAnimation: {
|
|
421
|
+
true: {};
|
|
422
|
+
false: {
|
|
423
|
+
indicator: string;
|
|
424
|
+
};
|
|
425
|
+
};
|
|
426
|
+
}>, unknown, unknown, undefined>>;
|
|
257
427
|
type CircularProgressVariantProps = VariantProps<typeof circularProgress>;
|
|
258
428
|
type CircularProgressSlots = keyof ReturnType<typeof circularProgress>;
|
|
259
429
|
|
|
@@ -96,7 +96,70 @@ declare const code: tailwind_variants.TVReturnType<{
|
|
|
96
96
|
lg: "rounded-large";
|
|
97
97
|
full: "rounded-full";
|
|
98
98
|
};
|
|
99
|
-
}, undefined
|
|
99
|
+
}, undefined, tailwind_variants.TVReturnType<{
|
|
100
|
+
color: {
|
|
101
|
+
default: string;
|
|
102
|
+
primary: string;
|
|
103
|
+
secondary: string;
|
|
104
|
+
success: string;
|
|
105
|
+
warning: string;
|
|
106
|
+
danger: string;
|
|
107
|
+
};
|
|
108
|
+
size: {
|
|
109
|
+
sm: "text-small";
|
|
110
|
+
md: "text-medium";
|
|
111
|
+
lg: "text-large";
|
|
112
|
+
};
|
|
113
|
+
radius: {
|
|
114
|
+
none: "rounded-none";
|
|
115
|
+
sm: "rounded-small";
|
|
116
|
+
md: "rounded-medium";
|
|
117
|
+
lg: "rounded-large";
|
|
118
|
+
full: "rounded-full";
|
|
119
|
+
};
|
|
120
|
+
}, undefined, string[], tailwind_variants_dist_config.TVConfig<{
|
|
121
|
+
color: {
|
|
122
|
+
default: string;
|
|
123
|
+
primary: string;
|
|
124
|
+
secondary: string;
|
|
125
|
+
success: string;
|
|
126
|
+
warning: string;
|
|
127
|
+
danger: string;
|
|
128
|
+
};
|
|
129
|
+
size: {
|
|
130
|
+
sm: "text-small";
|
|
131
|
+
md: "text-medium";
|
|
132
|
+
lg: "text-large";
|
|
133
|
+
};
|
|
134
|
+
radius: {
|
|
135
|
+
none: "rounded-none";
|
|
136
|
+
sm: "rounded-small";
|
|
137
|
+
md: "rounded-medium";
|
|
138
|
+
lg: "rounded-large";
|
|
139
|
+
full: "rounded-full";
|
|
140
|
+
};
|
|
141
|
+
}, {
|
|
142
|
+
color: {
|
|
143
|
+
default: string;
|
|
144
|
+
primary: string;
|
|
145
|
+
secondary: string;
|
|
146
|
+
success: string;
|
|
147
|
+
warning: string;
|
|
148
|
+
danger: string;
|
|
149
|
+
};
|
|
150
|
+
size: {
|
|
151
|
+
sm: "text-small";
|
|
152
|
+
md: "text-medium";
|
|
153
|
+
lg: "text-large";
|
|
154
|
+
};
|
|
155
|
+
radius: {
|
|
156
|
+
none: "rounded-none";
|
|
157
|
+
sm: "rounded-small";
|
|
158
|
+
md: "rounded-medium";
|
|
159
|
+
lg: "rounded-large";
|
|
160
|
+
full: "rounded-full";
|
|
161
|
+
};
|
|
162
|
+
}>, unknown, unknown, undefined>>;
|
|
100
163
|
type CodeVariantProps = VariantProps<typeof code>;
|
|
101
164
|
|
|
102
165
|
export { CodeVariantProps, code };
|
|
@@ -31,7 +31,22 @@ declare const divider: tailwind_variants.TVReturnType<{
|
|
|
31
31
|
horizontal: "w-full h-divider";
|
|
32
32
|
vertical: "h-full w-divider";
|
|
33
33
|
};
|
|
34
|
-
}, undefined
|
|
34
|
+
}, undefined, tailwind_variants.TVReturnType<{
|
|
35
|
+
orientation: {
|
|
36
|
+
horizontal: "w-full h-divider";
|
|
37
|
+
vertical: "h-full w-divider";
|
|
38
|
+
};
|
|
39
|
+
}, undefined, "shrink-0 bg-divider border-none", tailwind_variants_dist_config.TVConfig<{
|
|
40
|
+
orientation: {
|
|
41
|
+
horizontal: "w-full h-divider";
|
|
42
|
+
vertical: "h-full w-divider";
|
|
43
|
+
};
|
|
44
|
+
}, {
|
|
45
|
+
orientation: {
|
|
46
|
+
horizontal: "w-full h-divider";
|
|
47
|
+
vertical: "h-full w-divider";
|
|
48
|
+
};
|
|
49
|
+
}>, unknown, unknown, undefined>>;
|
|
35
50
|
type DividerVariantProps = VariantProps<typeof divider>;
|
|
36
51
|
|
|
37
52
|
export { DividerVariantProps, divider };
|
|
@@ -13,6 +13,6 @@ declare const drip: tailwind_variants.TVReturnType<tailwind_variants.TVVariantsD
|
|
|
13
13
|
[x: string]: {
|
|
14
14
|
[x: string]: tailwind_variants.ClassValue | tailwind_variants.SlotsClassValue<undefined, string[]>;
|
|
15
15
|
} | undefined;
|
|
16
|
-
} | {}, undefined, string[], tailwind_variants_dist_config.TVConfig<unknown, tailwind_variants.TVVariantsDefault<undefined, string[]> | {}>, tailwind_variants.TVVariantsDefault<undefined, string[]> | {}, undefined
|
|
16
|
+
} | {}, undefined, string[], tailwind_variants_dist_config.TVConfig<unknown, tailwind_variants.TVVariantsDefault<undefined, string[]> | {}>, tailwind_variants.TVVariantsDefault<undefined, string[]> | {}, undefined, tailwind_variants.TVReturnType<unknown, undefined, string[], tailwind_variants_dist_config.TVConfig<unknown, tailwind_variants.TVVariantsDefault<undefined, string[]> | {}>, unknown, unknown, undefined>>;
|
|
17
17
|
|
|
18
18
|
export { drip };
|
|
@@ -20,7 +20,7 @@ declare const dropdown: tailwind_variants.TVReturnType<tailwind_variants.TVVaria
|
|
|
20
20
|
[x: string]: {
|
|
21
21
|
[x: string]: tailwind_variants.ClassValue | tailwind_variants.SlotsClassValue<undefined, string[]>;
|
|
22
22
|
} | undefined;
|
|
23
|
-
} | {}, undefined, string[], tailwind_variants_dist_config.TVConfig<unknown, tailwind_variants.TVVariantsDefault<undefined, string[]> | {}>, tailwind_variants.TVVariantsDefault<undefined, string[]> | {}, undefined
|
|
23
|
+
} | {}, undefined, string[], tailwind_variants_dist_config.TVConfig<unknown, tailwind_variants.TVVariantsDefault<undefined, string[]> | {}>, tailwind_variants.TVVariantsDefault<undefined, string[]> | {}, undefined, tailwind_variants.TVReturnType<unknown, undefined, string[], tailwind_variants_dist_config.TVConfig<unknown, tailwind_variants.TVVariantsDefault<undefined, string[]> | {}>, unknown, unknown, undefined>>;
|
|
24
24
|
/**
|
|
25
25
|
* DropdownItem wrapper **Tailwind Variants** component
|
|
26
26
|
*
|
|
@@ -209,7 +209,128 @@ declare const dropdownItem: tailwind_variants.TVReturnType<{
|
|
|
209
209
|
description: string[];
|
|
210
210
|
selectedIcon: string[];
|
|
211
211
|
shortcut: string[];
|
|
212
|
-
}
|
|
212
|
+
}, tailwind_variants.TVReturnType<{
|
|
213
|
+
variant: {
|
|
214
|
+
solid: {
|
|
215
|
+
base: string;
|
|
216
|
+
};
|
|
217
|
+
bordered: {
|
|
218
|
+
base: string;
|
|
219
|
+
};
|
|
220
|
+
light: {
|
|
221
|
+
base: string;
|
|
222
|
+
};
|
|
223
|
+
faded: {
|
|
224
|
+
base: string;
|
|
225
|
+
};
|
|
226
|
+
flat: {
|
|
227
|
+
base: string;
|
|
228
|
+
};
|
|
229
|
+
shadow: {
|
|
230
|
+
base: string;
|
|
231
|
+
};
|
|
232
|
+
};
|
|
233
|
+
color: {
|
|
234
|
+
default: {};
|
|
235
|
+
primary: {};
|
|
236
|
+
secondary: {};
|
|
237
|
+
success: {};
|
|
238
|
+
warning: {};
|
|
239
|
+
danger: {};
|
|
240
|
+
};
|
|
241
|
+
isDisabled: {
|
|
242
|
+
true: {
|
|
243
|
+
base: string;
|
|
244
|
+
};
|
|
245
|
+
};
|
|
246
|
+
disableAnimation: {
|
|
247
|
+
true: {};
|
|
248
|
+
false: {};
|
|
249
|
+
};
|
|
250
|
+
}, {
|
|
251
|
+
base: string[];
|
|
252
|
+
wrapper: string;
|
|
253
|
+
title: string;
|
|
254
|
+
description: string[];
|
|
255
|
+
selectedIcon: string[];
|
|
256
|
+
shortcut: string[];
|
|
257
|
+
}, undefined, tailwind_variants_dist_config.TVConfig<{
|
|
258
|
+
variant: {
|
|
259
|
+
solid: {
|
|
260
|
+
base: string;
|
|
261
|
+
};
|
|
262
|
+
bordered: {
|
|
263
|
+
base: string;
|
|
264
|
+
};
|
|
265
|
+
light: {
|
|
266
|
+
base: string;
|
|
267
|
+
};
|
|
268
|
+
faded: {
|
|
269
|
+
base: string;
|
|
270
|
+
};
|
|
271
|
+
flat: {
|
|
272
|
+
base: string;
|
|
273
|
+
};
|
|
274
|
+
shadow: {
|
|
275
|
+
base: string;
|
|
276
|
+
};
|
|
277
|
+
};
|
|
278
|
+
color: {
|
|
279
|
+
default: {};
|
|
280
|
+
primary: {};
|
|
281
|
+
secondary: {};
|
|
282
|
+
success: {};
|
|
283
|
+
warning: {};
|
|
284
|
+
danger: {};
|
|
285
|
+
};
|
|
286
|
+
isDisabled: {
|
|
287
|
+
true: {
|
|
288
|
+
base: string;
|
|
289
|
+
};
|
|
290
|
+
};
|
|
291
|
+
disableAnimation: {
|
|
292
|
+
true: {};
|
|
293
|
+
false: {};
|
|
294
|
+
};
|
|
295
|
+
}, {
|
|
296
|
+
variant: {
|
|
297
|
+
solid: {
|
|
298
|
+
base: string;
|
|
299
|
+
};
|
|
300
|
+
bordered: {
|
|
301
|
+
base: string;
|
|
302
|
+
};
|
|
303
|
+
light: {
|
|
304
|
+
base: string;
|
|
305
|
+
};
|
|
306
|
+
faded: {
|
|
307
|
+
base: string;
|
|
308
|
+
};
|
|
309
|
+
flat: {
|
|
310
|
+
base: string;
|
|
311
|
+
};
|
|
312
|
+
shadow: {
|
|
313
|
+
base: string;
|
|
314
|
+
};
|
|
315
|
+
};
|
|
316
|
+
color: {
|
|
317
|
+
default: {};
|
|
318
|
+
primary: {};
|
|
319
|
+
secondary: {};
|
|
320
|
+
success: {};
|
|
321
|
+
warning: {};
|
|
322
|
+
danger: {};
|
|
323
|
+
};
|
|
324
|
+
isDisabled: {
|
|
325
|
+
true: {
|
|
326
|
+
base: string;
|
|
327
|
+
};
|
|
328
|
+
};
|
|
329
|
+
disableAnimation: {
|
|
330
|
+
true: {};
|
|
331
|
+
false: {};
|
|
332
|
+
};
|
|
333
|
+
}>, unknown, unknown, undefined>>;
|
|
213
334
|
/**
|
|
214
335
|
* Dropdown wrapper **Tailwind Variants** component
|
|
215
336
|
*
|
|
@@ -258,7 +379,17 @@ declare const dropdownSection: tailwind_variants.TVReturnType<tailwind_variants.
|
|
|
258
379
|
heading: string;
|
|
259
380
|
group: string;
|
|
260
381
|
divider: string;
|
|
261
|
-
}
|
|
382
|
+
}, tailwind_variants.TVReturnType<unknown, {
|
|
383
|
+
base: string;
|
|
384
|
+
heading: string;
|
|
385
|
+
group: string;
|
|
386
|
+
divider: string;
|
|
387
|
+
}, undefined, tailwind_variants_dist_config.TVConfig<unknown, tailwind_variants.TVVariantsDefault<{
|
|
388
|
+
base: string;
|
|
389
|
+
heading: string;
|
|
390
|
+
group: string;
|
|
391
|
+
divider: string;
|
|
392
|
+
}, undefined> | {}>, unknown, unknown, undefined>>;
|
|
262
393
|
/**
|
|
263
394
|
* Dropdown Menu wrapper **Tailwind Variants** component
|
|
264
395
|
*
|
|
@@ -269,7 +400,7 @@ declare const dropdownMenu: tailwind_variants.TVReturnType<tailwind_variants.TVV
|
|
|
269
400
|
[x: string]: {
|
|
270
401
|
[x: string]: tailwind_variants.ClassValue | tailwind_variants.SlotsClassValue<undefined, "w-full flex flex-col gap-0.5 p-1">;
|
|
271
402
|
} | undefined;
|
|
272
|
-
} | {}, undefined, "w-full flex flex-col gap-0.5 p-1", tailwind_variants_dist_config.TVConfig<unknown, tailwind_variants.TVVariantsDefault<undefined, "w-full flex flex-col gap-0.5 p-1"> | {}>, tailwind_variants.TVVariantsDefault<undefined, "w-full flex flex-col gap-0.5 p-1"> | {}, undefined
|
|
403
|
+
} | {}, undefined, "w-full flex flex-col gap-0.5 p-1", tailwind_variants_dist_config.TVConfig<unknown, tailwind_variants.TVVariantsDefault<undefined, "w-full flex flex-col gap-0.5 p-1"> | {}>, tailwind_variants.TVVariantsDefault<undefined, "w-full flex flex-col gap-0.5 p-1"> | {}, undefined, tailwind_variants.TVReturnType<unknown, undefined, "w-full flex flex-col gap-0.5 p-1", tailwind_variants_dist_config.TVConfig<unknown, tailwind_variants.TVVariantsDefault<undefined, "w-full flex flex-col gap-0.5 p-1"> | {}>, unknown, unknown, undefined>>;
|
|
273
404
|
type DropdownSectionVariantProps = VariantProps<typeof dropdownSection>;
|
|
274
405
|
type DropdownSectionSlots = keyof ReturnType<typeof dropdownSection>;
|
|
275
406
|
type DropdownItemVariantProps = VariantProps<typeof dropdownItem>;
|
|
@@ -208,7 +208,147 @@ declare const image: tailwind_variants.TVReturnType<{
|
|
|
208
208
|
zoomedWrapper: string;
|
|
209
209
|
img: string;
|
|
210
210
|
blurredImg: string[];
|
|
211
|
-
}
|
|
211
|
+
}, tailwind_variants.TVReturnType<{
|
|
212
|
+
radius: {
|
|
213
|
+
none: {};
|
|
214
|
+
sm: {};
|
|
215
|
+
md: {};
|
|
216
|
+
lg: {};
|
|
217
|
+
full: {};
|
|
218
|
+
};
|
|
219
|
+
shadow: {
|
|
220
|
+
none: {
|
|
221
|
+
wrapper: string;
|
|
222
|
+
img: string;
|
|
223
|
+
};
|
|
224
|
+
sm: {
|
|
225
|
+
wrapper: string;
|
|
226
|
+
img: string;
|
|
227
|
+
};
|
|
228
|
+
md: {
|
|
229
|
+
wrapper: string;
|
|
230
|
+
img: string;
|
|
231
|
+
};
|
|
232
|
+
lg: {
|
|
233
|
+
wrapper: string;
|
|
234
|
+
img: string;
|
|
235
|
+
};
|
|
236
|
+
};
|
|
237
|
+
isZoomed: {
|
|
238
|
+
true: {
|
|
239
|
+
img: string[];
|
|
240
|
+
};
|
|
241
|
+
};
|
|
242
|
+
showSkeleton: {
|
|
243
|
+
true: {
|
|
244
|
+
wrapper: string[];
|
|
245
|
+
img: string;
|
|
246
|
+
};
|
|
247
|
+
};
|
|
248
|
+
disableAnimation: {
|
|
249
|
+
true: {
|
|
250
|
+
img: string;
|
|
251
|
+
};
|
|
252
|
+
false: {
|
|
253
|
+
img: string;
|
|
254
|
+
};
|
|
255
|
+
};
|
|
256
|
+
}, {
|
|
257
|
+
wrapper: string;
|
|
258
|
+
zoomedWrapper: string;
|
|
259
|
+
img: string;
|
|
260
|
+
blurredImg: string[];
|
|
261
|
+
}, undefined, tailwind_variants_dist_config.TVConfig<{
|
|
262
|
+
radius: {
|
|
263
|
+
none: {};
|
|
264
|
+
sm: {};
|
|
265
|
+
md: {};
|
|
266
|
+
lg: {};
|
|
267
|
+
full: {};
|
|
268
|
+
};
|
|
269
|
+
shadow: {
|
|
270
|
+
none: {
|
|
271
|
+
wrapper: string;
|
|
272
|
+
img: string;
|
|
273
|
+
};
|
|
274
|
+
sm: {
|
|
275
|
+
wrapper: string;
|
|
276
|
+
img: string;
|
|
277
|
+
};
|
|
278
|
+
md: {
|
|
279
|
+
wrapper: string;
|
|
280
|
+
img: string;
|
|
281
|
+
};
|
|
282
|
+
lg: {
|
|
283
|
+
wrapper: string;
|
|
284
|
+
img: string;
|
|
285
|
+
};
|
|
286
|
+
};
|
|
287
|
+
isZoomed: {
|
|
288
|
+
true: {
|
|
289
|
+
img: string[];
|
|
290
|
+
};
|
|
291
|
+
};
|
|
292
|
+
showSkeleton: {
|
|
293
|
+
true: {
|
|
294
|
+
wrapper: string[];
|
|
295
|
+
img: string;
|
|
296
|
+
};
|
|
297
|
+
};
|
|
298
|
+
disableAnimation: {
|
|
299
|
+
true: {
|
|
300
|
+
img: string;
|
|
301
|
+
};
|
|
302
|
+
false: {
|
|
303
|
+
img: string;
|
|
304
|
+
};
|
|
305
|
+
};
|
|
306
|
+
}, {
|
|
307
|
+
radius: {
|
|
308
|
+
none: {};
|
|
309
|
+
sm: {};
|
|
310
|
+
md: {};
|
|
311
|
+
lg: {};
|
|
312
|
+
full: {};
|
|
313
|
+
};
|
|
314
|
+
shadow: {
|
|
315
|
+
none: {
|
|
316
|
+
wrapper: string;
|
|
317
|
+
img: string;
|
|
318
|
+
};
|
|
319
|
+
sm: {
|
|
320
|
+
wrapper: string;
|
|
321
|
+
img: string;
|
|
322
|
+
};
|
|
323
|
+
md: {
|
|
324
|
+
wrapper: string;
|
|
325
|
+
img: string;
|
|
326
|
+
};
|
|
327
|
+
lg: {
|
|
328
|
+
wrapper: string;
|
|
329
|
+
img: string;
|
|
330
|
+
};
|
|
331
|
+
};
|
|
332
|
+
isZoomed: {
|
|
333
|
+
true: {
|
|
334
|
+
img: string[];
|
|
335
|
+
};
|
|
336
|
+
};
|
|
337
|
+
showSkeleton: {
|
|
338
|
+
true: {
|
|
339
|
+
wrapper: string[];
|
|
340
|
+
img: string;
|
|
341
|
+
};
|
|
342
|
+
};
|
|
343
|
+
disableAnimation: {
|
|
344
|
+
true: {
|
|
345
|
+
img: string;
|
|
346
|
+
};
|
|
347
|
+
false: {
|
|
348
|
+
img: string;
|
|
349
|
+
};
|
|
350
|
+
};
|
|
351
|
+
}>, unknown, unknown, undefined>>;
|
|
212
352
|
type ImageVariantProps = VariantProps<typeof image>;
|
|
213
353
|
type ImageSlots = keyof ReturnType<typeof image>;
|
|
214
354
|
|