@nextui-org/theme 2.1.4 → 2.1.6

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.
Files changed (34) hide show
  1. package/dist/components/accordion.d.ts +153 -2
  2. package/dist/components/avatar.d.ts +227 -2
  3. package/dist/components/badge.d.ts +199 -1
  4. package/dist/components/button.d.ts +155 -2
  5. package/dist/components/card.d.ts +225 -1
  6. package/dist/components/checkbox.d.ts +250 -2
  7. package/dist/components/chip.d.ts +304 -1
  8. package/dist/components/circular-progress.d.ts +171 -1
  9. package/dist/components/code.d.ts +64 -1
  10. package/dist/components/divider.d.ts +16 -1
  11. package/dist/components/drip.d.ts +1 -1
  12. package/dist/components/dropdown.d.ts +135 -4
  13. package/dist/components/image.d.ts +141 -1
  14. package/dist/components/input.d.ts +387 -1
  15. package/dist/components/kbd.d.ts +5 -1
  16. package/dist/components/link.d.ts +94 -1
  17. package/dist/components/menu.d.ts +152 -3
  18. package/dist/components/modal.d.ts +315 -1
  19. package/dist/components/navbar.d.ts +174 -1
  20. package/dist/components/pagination.d.ts +239 -1
  21. package/dist/components/popover.d.ts +276 -1
  22. package/dist/components/progress.d.ts +91 -1
  23. package/dist/components/radio.d.ts +231 -2
  24. package/dist/components/scroll-shadow.d.ts +28 -1
  25. package/dist/components/select.d.ts +388 -1
  26. package/dist/components/skeleton.d.ts +37 -1
  27. package/dist/components/snippet.d.ts +165 -1
  28. package/dist/components/spacer.d.ts +16 -1
  29. package/dist/components/spinner.d.ts +232 -1
  30. package/dist/components/table.d.ts +311 -1
  31. package/dist/components/tabs.d.ts +269 -1
  32. package/dist/components/toggle.d.ts +192 -1
  33. package/dist/components/user.d.ts +11 -1
  34. package/package.json +2 -2
@@ -197,7 +197,97 @@ declare const progress: tailwind_variants.TVReturnType<{
197
197
  value: string;
198
198
  track: string;
199
199
  indicator: string;
200
- }>;
200
+ }, tailwind_variants.TVReturnType<{
201
+ color: {
202
+ default: {
203
+ indicator: string;
204
+ };
205
+ primary: {
206
+ indicator: string;
207
+ };
208
+ secondary: {
209
+ indicator: string;
210
+ };
211
+ success: {
212
+ indicator: string;
213
+ };
214
+ warning: {
215
+ indicator: string;
216
+ };
217
+ danger: {
218
+ indicator: string;
219
+ };
220
+ };
221
+ size: {
222
+ sm: {
223
+ label: string;
224
+ value: string;
225
+ track: string;
226
+ };
227
+ md: {
228
+ label: string;
229
+ value: string;
230
+ track: string;
231
+ };
232
+ lg: {
233
+ label: string;
234
+ value: string;
235
+ track: string;
236
+ };
237
+ };
238
+ radius: {
239
+ none: {
240
+ track: string;
241
+ indicator: string;
242
+ };
243
+ sm: {
244
+ track: string;
245
+ indicator: string;
246
+ };
247
+ md: {
248
+ track: string;
249
+ indicator: string;
250
+ };
251
+ lg: {
252
+ track: string;
253
+ indicator: string;
254
+ };
255
+ full: {
256
+ track: string;
257
+ indicator: string;
258
+ };
259
+ };
260
+ isStriped: {
261
+ true: {
262
+ indicator: string;
263
+ };
264
+ };
265
+ isIndeterminate: {
266
+ true: {
267
+ indicator: string[];
268
+ };
269
+ };
270
+ isDisabled: {
271
+ true: {
272
+ base: string;
273
+ };
274
+ };
275
+ disableAnimation: {
276
+ true: {};
277
+ false: {
278
+ indicator: string;
279
+ };
280
+ };
281
+ }, {
282
+ base: string;
283
+ label: string;
284
+ labelWrapper: string;
285
+ value: string;
286
+ track: string;
287
+ indicator: string;
288
+ }, undefined, {
289
+ twMerge: false;
290
+ }, unknown, unknown, undefined>>;
201
291
  type ProgressVariantProps = VariantProps<typeof progress>;
202
292
  type ProgressSlots = keyof ReturnType<typeof progress>;
203
293
 
@@ -318,7 +318,224 @@ declare const radio: tailwind_variants.TVReturnType<{
318
318
  control: string[];
319
319
  label: string;
320
320
  description: string;
321
- }>;
321
+ }, tailwind_variants.TVReturnType<{
322
+ color: {
323
+ default: {
324
+ control: string;
325
+ wrapper: string;
326
+ };
327
+ primary: {
328
+ control: string;
329
+ wrapper: string;
330
+ };
331
+ secondary: {
332
+ control: string;
333
+ wrapper: string;
334
+ };
335
+ success: {
336
+ control: string;
337
+ wrapper: string;
338
+ };
339
+ warning: {
340
+ control: string;
341
+ wrapper: string;
342
+ };
343
+ danger: {
344
+ control: string;
345
+ wrapper: string;
346
+ };
347
+ };
348
+ size: {
349
+ sm: {
350
+ wrapper: string;
351
+ control: string;
352
+ labelWrapper: string;
353
+ label: string;
354
+ description: string;
355
+ };
356
+ md: {
357
+ wrapper: string;
358
+ control: string;
359
+ labelWrapper: string;
360
+ label: string;
361
+ description: string;
362
+ };
363
+ lg: {
364
+ wrapper: string;
365
+ control: string;
366
+ labelWrapper: string;
367
+ label: string;
368
+ description: string;
369
+ };
370
+ };
371
+ isDisabled: {
372
+ true: {
373
+ base: string;
374
+ };
375
+ };
376
+ isInvalid: {
377
+ true: {
378
+ control: string;
379
+ wrapper: string;
380
+ label: string;
381
+ description: string;
382
+ };
383
+ };
384
+ disableAnimation: {
385
+ true: {};
386
+ false: {
387
+ wrapper: string[];
388
+ control: string;
389
+ };
390
+ };
391
+ }, {
392
+ base: string;
393
+ wrapper: string[];
394
+ labelWrapper: string;
395
+ control: string[];
396
+ label: string;
397
+ description: string;
398
+ }, undefined, tailwind_variants_dist_config.TVConfig<{
399
+ color: {
400
+ default: {
401
+ control: string;
402
+ wrapper: string;
403
+ };
404
+ primary: {
405
+ control: string;
406
+ wrapper: string;
407
+ };
408
+ secondary: {
409
+ control: string;
410
+ wrapper: string;
411
+ };
412
+ success: {
413
+ control: string;
414
+ wrapper: string;
415
+ };
416
+ warning: {
417
+ control: string;
418
+ wrapper: string;
419
+ };
420
+ danger: {
421
+ control: string;
422
+ wrapper: string;
423
+ };
424
+ };
425
+ size: {
426
+ sm: {
427
+ wrapper: string;
428
+ control: string;
429
+ labelWrapper: string;
430
+ label: string;
431
+ description: string;
432
+ };
433
+ md: {
434
+ wrapper: string;
435
+ control: string;
436
+ labelWrapper: string;
437
+ label: string;
438
+ description: string;
439
+ };
440
+ lg: {
441
+ wrapper: string;
442
+ control: string;
443
+ labelWrapper: string;
444
+ label: string;
445
+ description: string;
446
+ };
447
+ };
448
+ isDisabled: {
449
+ true: {
450
+ base: string;
451
+ };
452
+ };
453
+ isInvalid: {
454
+ true: {
455
+ control: string;
456
+ wrapper: string;
457
+ label: string;
458
+ description: string;
459
+ };
460
+ };
461
+ disableAnimation: {
462
+ true: {};
463
+ false: {
464
+ wrapper: string[];
465
+ control: string;
466
+ };
467
+ };
468
+ }, {
469
+ color: {
470
+ default: {
471
+ control: string;
472
+ wrapper: string;
473
+ };
474
+ primary: {
475
+ control: string;
476
+ wrapper: string;
477
+ };
478
+ secondary: {
479
+ control: string;
480
+ wrapper: string;
481
+ };
482
+ success: {
483
+ control: string;
484
+ wrapper: string;
485
+ };
486
+ warning: {
487
+ control: string;
488
+ wrapper: string;
489
+ };
490
+ danger: {
491
+ control: string;
492
+ wrapper: string;
493
+ };
494
+ };
495
+ size: {
496
+ sm: {
497
+ wrapper: string;
498
+ control: string;
499
+ labelWrapper: string;
500
+ label: string;
501
+ description: string;
502
+ };
503
+ md: {
504
+ wrapper: string;
505
+ control: string;
506
+ labelWrapper: string;
507
+ label: string;
508
+ description: string;
509
+ };
510
+ lg: {
511
+ wrapper: string;
512
+ control: string;
513
+ labelWrapper: string;
514
+ label: string;
515
+ description: string;
516
+ };
517
+ };
518
+ isDisabled: {
519
+ true: {
520
+ base: string;
521
+ };
522
+ };
523
+ isInvalid: {
524
+ true: {
525
+ control: string;
526
+ wrapper: string;
527
+ label: string;
528
+ description: string;
529
+ };
530
+ };
531
+ disableAnimation: {
532
+ true: {};
533
+ false: {
534
+ wrapper: string[];
535
+ control: string;
536
+ };
537
+ };
538
+ }>, unknown, unknown, undefined>>;
322
539
  /**
323
540
  * RadioGroup wrapper **Tailwind Variants** component
324
541
  *
@@ -372,7 +589,19 @@ declare const radioGroup: tailwind_variants.TVReturnType<tailwind_variants.TVVar
372
589
  wrapper: string;
373
590
  description: string;
374
591
  errorMessage: string;
375
- }>;
592
+ }, tailwind_variants.TVReturnType<unknown, {
593
+ base: string;
594
+ label: string;
595
+ wrapper: string;
596
+ description: string;
597
+ errorMessage: string;
598
+ }, undefined, tailwind_variants_dist_config.TVConfig<unknown, tailwind_variants.TVVariantsDefault<{
599
+ base: string;
600
+ label: string;
601
+ wrapper: string;
602
+ description: string;
603
+ errorMessage: string;
604
+ }, undefined> | {}>, unknown, unknown, undefined>>;
376
605
  type RadioGroupSlots = keyof ReturnType<typeof radioGroup>;
377
606
  type RadioVariantProps = VariantProps<typeof radio>;
378
607
  type RadioSlots = keyof ReturnType<typeof radio>;
@@ -49,7 +49,34 @@ declare const scrollShadow: tailwind_variants.TVReturnType<{
49
49
  true: "scrollbar-hide";
50
50
  false: "";
51
51
  };
52
- }, undefined>;
52
+ }, undefined, tailwind_variants.TVReturnType<{
53
+ orientation: {
54
+ vertical: string[];
55
+ horizontal: string[];
56
+ };
57
+ hideScrollBar: {
58
+ true: "scrollbar-hide";
59
+ false: "";
60
+ };
61
+ }, undefined, never[], tailwind_variants_dist_config.TVConfig<{
62
+ orientation: {
63
+ vertical: string[];
64
+ horizontal: string[];
65
+ };
66
+ hideScrollBar: {
67
+ true: "scrollbar-hide";
68
+ false: "";
69
+ };
70
+ }, {
71
+ orientation: {
72
+ vertical: string[];
73
+ horizontal: string[];
74
+ };
75
+ hideScrollBar: {
76
+ true: "scrollbar-hide";
77
+ false: "";
78
+ };
79
+ }>, unknown, unknown, undefined>>;
53
80
  type ScrollShadowVariantProps = VariantProps<typeof scrollShadow>;
54
81
 
55
82
  export { ScrollShadowVariantProps, scrollShadow };