@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
@@ -528,7 +528,394 @@ declare const select: tailwind_variants.TVReturnType<{
528
528
  helperWrapper: string;
529
529
  description: string;
530
530
  errorMessage: string;
531
- }>;
531
+ }, tailwind_variants.TVReturnType<{
532
+ variant: {
533
+ flat: {
534
+ trigger: string[];
535
+ };
536
+ faded: {
537
+ trigger: string[];
538
+ };
539
+ bordered: {
540
+ trigger: string[];
541
+ };
542
+ underlined: {
543
+ trigger: string[];
544
+ };
545
+ };
546
+ color: {
547
+ default: {};
548
+ primary: {};
549
+ secondary: {};
550
+ success: {};
551
+ warning: {};
552
+ danger: {};
553
+ };
554
+ size: {
555
+ sm: {
556
+ label: string;
557
+ trigger: string;
558
+ value: string;
559
+ };
560
+ md: {
561
+ trigger: string;
562
+ value: string;
563
+ };
564
+ lg: {
565
+ trigger: string;
566
+ value: string;
567
+ };
568
+ };
569
+ radius: {
570
+ none: {
571
+ trigger: string;
572
+ };
573
+ sm: {
574
+ trigger: string;
575
+ };
576
+ md: {
577
+ trigger: string;
578
+ };
579
+ lg: {
580
+ trigger: string;
581
+ };
582
+ full: {
583
+ trigger: string;
584
+ };
585
+ };
586
+ labelPlacement: {
587
+ outside: {
588
+ base: string;
589
+ label: string;
590
+ };
591
+ "outside-left": {
592
+ base: string;
593
+ label: string;
594
+ };
595
+ inside: {
596
+ label: string;
597
+ trigger: string;
598
+ };
599
+ };
600
+ fullWidth: {
601
+ true: {
602
+ base: string;
603
+ };
604
+ };
605
+ isLabelPlaceholder: {
606
+ true: {
607
+ label: string;
608
+ };
609
+ };
610
+ isDisabled: {
611
+ true: {
612
+ base: string;
613
+ trigger: string;
614
+ };
615
+ };
616
+ isInvalid: {
617
+ true: {
618
+ label: string;
619
+ value: string;
620
+ selectorIcon: string;
621
+ };
622
+ };
623
+ isRequired: {
624
+ true: {
625
+ label: string;
626
+ };
627
+ };
628
+ isMultiline: {
629
+ true: {
630
+ trigger: string;
631
+ };
632
+ false: {
633
+ value: string;
634
+ };
635
+ };
636
+ disableAnimation: {
637
+ true: {
638
+ trigger: string;
639
+ base: string;
640
+ label: string;
641
+ selectorIcon: string;
642
+ };
643
+ false: {
644
+ base: string;
645
+ label: string[];
646
+ selectorIcon: string;
647
+ };
648
+ };
649
+ disableSelectorIconRotation: {
650
+ true: {};
651
+ false: {
652
+ selectorIcon: string;
653
+ };
654
+ };
655
+ }, {
656
+ base: string;
657
+ label: string;
658
+ mainWrapper: string;
659
+ trigger: string;
660
+ innerWrapper: string;
661
+ selectorIcon: string;
662
+ spinner: string;
663
+ value: string;
664
+ listboxWrapper: string;
665
+ listbox: string;
666
+ popover: string;
667
+ helperWrapper: string;
668
+ description: string;
669
+ errorMessage: string;
670
+ }, undefined, tailwind_variants_dist_config.TVConfig<{
671
+ variant: {
672
+ flat: {
673
+ trigger: string[];
674
+ };
675
+ faded: {
676
+ trigger: string[];
677
+ };
678
+ bordered: {
679
+ trigger: string[];
680
+ };
681
+ underlined: {
682
+ trigger: string[];
683
+ };
684
+ };
685
+ color: {
686
+ default: {};
687
+ primary: {};
688
+ secondary: {};
689
+ success: {};
690
+ warning: {};
691
+ danger: {};
692
+ };
693
+ size: {
694
+ sm: {
695
+ label: string;
696
+ trigger: string;
697
+ value: string;
698
+ };
699
+ md: {
700
+ trigger: string;
701
+ value: string;
702
+ };
703
+ lg: {
704
+ trigger: string;
705
+ value: string;
706
+ };
707
+ };
708
+ radius: {
709
+ none: {
710
+ trigger: string;
711
+ };
712
+ sm: {
713
+ trigger: string;
714
+ };
715
+ md: {
716
+ trigger: string;
717
+ };
718
+ lg: {
719
+ trigger: string;
720
+ };
721
+ full: {
722
+ trigger: string;
723
+ };
724
+ };
725
+ labelPlacement: {
726
+ outside: {
727
+ base: string;
728
+ label: string;
729
+ };
730
+ "outside-left": {
731
+ base: string;
732
+ label: string;
733
+ };
734
+ inside: {
735
+ label: string;
736
+ trigger: string;
737
+ };
738
+ };
739
+ fullWidth: {
740
+ true: {
741
+ base: string;
742
+ };
743
+ };
744
+ isLabelPlaceholder: {
745
+ true: {
746
+ label: string;
747
+ };
748
+ };
749
+ isDisabled: {
750
+ true: {
751
+ base: string;
752
+ trigger: string;
753
+ };
754
+ };
755
+ isInvalid: {
756
+ true: {
757
+ label: string;
758
+ value: string;
759
+ selectorIcon: string;
760
+ };
761
+ };
762
+ isRequired: {
763
+ true: {
764
+ label: string;
765
+ };
766
+ };
767
+ isMultiline: {
768
+ true: {
769
+ trigger: string;
770
+ };
771
+ false: {
772
+ value: string;
773
+ };
774
+ };
775
+ disableAnimation: {
776
+ true: {
777
+ trigger: string;
778
+ base: string;
779
+ label: string;
780
+ selectorIcon: string;
781
+ };
782
+ false: {
783
+ base: string;
784
+ label: string[];
785
+ selectorIcon: string;
786
+ };
787
+ };
788
+ disableSelectorIconRotation: {
789
+ true: {};
790
+ false: {
791
+ selectorIcon: string;
792
+ };
793
+ };
794
+ }, {
795
+ variant: {
796
+ flat: {
797
+ trigger: string[];
798
+ };
799
+ faded: {
800
+ trigger: string[];
801
+ };
802
+ bordered: {
803
+ trigger: string[];
804
+ };
805
+ underlined: {
806
+ trigger: string[];
807
+ };
808
+ };
809
+ color: {
810
+ default: {};
811
+ primary: {};
812
+ secondary: {};
813
+ success: {};
814
+ warning: {};
815
+ danger: {};
816
+ };
817
+ size: {
818
+ sm: {
819
+ label: string;
820
+ trigger: string;
821
+ value: string;
822
+ };
823
+ md: {
824
+ trigger: string;
825
+ value: string;
826
+ };
827
+ lg: {
828
+ trigger: string;
829
+ value: string;
830
+ };
831
+ };
832
+ radius: {
833
+ none: {
834
+ trigger: string;
835
+ };
836
+ sm: {
837
+ trigger: string;
838
+ };
839
+ md: {
840
+ trigger: string;
841
+ };
842
+ lg: {
843
+ trigger: string;
844
+ };
845
+ full: {
846
+ trigger: string;
847
+ };
848
+ };
849
+ labelPlacement: {
850
+ outside: {
851
+ base: string;
852
+ label: string;
853
+ };
854
+ "outside-left": {
855
+ base: string;
856
+ label: string;
857
+ };
858
+ inside: {
859
+ label: string;
860
+ trigger: string;
861
+ };
862
+ };
863
+ fullWidth: {
864
+ true: {
865
+ base: string;
866
+ };
867
+ };
868
+ isLabelPlaceholder: {
869
+ true: {
870
+ label: string;
871
+ };
872
+ };
873
+ isDisabled: {
874
+ true: {
875
+ base: string;
876
+ trigger: string;
877
+ };
878
+ };
879
+ isInvalid: {
880
+ true: {
881
+ label: string;
882
+ value: string;
883
+ selectorIcon: string;
884
+ };
885
+ };
886
+ isRequired: {
887
+ true: {
888
+ label: string;
889
+ };
890
+ };
891
+ isMultiline: {
892
+ true: {
893
+ trigger: string;
894
+ };
895
+ false: {
896
+ value: string;
897
+ };
898
+ };
899
+ disableAnimation: {
900
+ true: {
901
+ trigger: string;
902
+ base: string;
903
+ label: string;
904
+ selectorIcon: string;
905
+ };
906
+ false: {
907
+ base: string;
908
+ label: string[];
909
+ selectorIcon: string;
910
+ };
911
+ };
912
+ disableSelectorIconRotation: {
913
+ true: {};
914
+ false: {
915
+ selectorIcon: string;
916
+ };
917
+ };
918
+ }>, unknown, unknown, undefined>>;
532
919
  type SelectVariantProps = VariantProps<typeof select>;
533
920
  type SelectSlots = keyof ReturnType<typeof select>;
534
921
 
@@ -62,7 +62,43 @@ declare const skeleton: tailwind_variants.TVReturnType<{
62
62
  }, {
63
63
  base: string[];
64
64
  content: string[];
65
- }>;
65
+ }, tailwind_variants.TVReturnType<{
66
+ disableAnimation: {
67
+ true: {
68
+ base: string;
69
+ content: string;
70
+ };
71
+ false: {
72
+ base: string;
73
+ content: string;
74
+ };
75
+ };
76
+ }, {
77
+ base: string[];
78
+ content: string[];
79
+ }, undefined, tailwind_variants_dist_config.TVConfig<{
80
+ disableAnimation: {
81
+ true: {
82
+ base: string;
83
+ content: string;
84
+ };
85
+ false: {
86
+ base: string;
87
+ content: string;
88
+ };
89
+ };
90
+ }, {
91
+ disableAnimation: {
92
+ true: {
93
+ base: string;
94
+ content: string;
95
+ };
96
+ false: {
97
+ base: string;
98
+ content: string;
99
+ };
100
+ };
101
+ }>, unknown, unknown, undefined>>;
66
102
  type SkeletonVariantProps = VariantProps<typeof skeleton>;
67
103
  type SkeletonSlots = keyof ReturnType<typeof skeleton>;
68
104
 
@@ -244,7 +244,171 @@ declare const snippet: tailwind_variants.TVReturnType<{
244
244
  copyButton: string[];
245
245
  copyIcon: string[];
246
246
  checkIcon: string[];
247
- }>;
247
+ }, tailwind_variants.TVReturnType<{
248
+ variant: {
249
+ flat: "";
250
+ solid: "";
251
+ bordered: "border-medium bg-transparent";
252
+ shadow: "";
253
+ };
254
+ color: {
255
+ default: {};
256
+ primary: {};
257
+ secondary: {};
258
+ success: {};
259
+ warning: {};
260
+ danger: {};
261
+ };
262
+ size: {
263
+ sm: {
264
+ base: string;
265
+ };
266
+ md: {
267
+ base: string;
268
+ };
269
+ lg: {
270
+ base: string;
271
+ };
272
+ };
273
+ radius: {
274
+ none: {
275
+ base: string;
276
+ };
277
+ sm: {
278
+ base: string;
279
+ };
280
+ md: {
281
+ base: string;
282
+ };
283
+ lg: {
284
+ base: string;
285
+ };
286
+ };
287
+ fullWidth: {
288
+ true: {
289
+ base: string;
290
+ };
291
+ };
292
+ disableAnimation: {
293
+ true: {};
294
+ false: {
295
+ copyIcon: string;
296
+ checkIcon: string;
297
+ };
298
+ };
299
+ }, {
300
+ base: string;
301
+ pre: string;
302
+ content: string;
303
+ symbol: string;
304
+ copyButton: string[];
305
+ copyIcon: string[];
306
+ checkIcon: string[];
307
+ }, undefined, tailwind_variants_dist_config.TVConfig<{
308
+ variant: {
309
+ flat: "";
310
+ solid: "";
311
+ bordered: "border-medium bg-transparent";
312
+ shadow: "";
313
+ };
314
+ color: {
315
+ default: {};
316
+ primary: {};
317
+ secondary: {};
318
+ success: {};
319
+ warning: {};
320
+ danger: {};
321
+ };
322
+ size: {
323
+ sm: {
324
+ base: string;
325
+ };
326
+ md: {
327
+ base: string;
328
+ };
329
+ lg: {
330
+ base: string;
331
+ };
332
+ };
333
+ radius: {
334
+ none: {
335
+ base: string;
336
+ };
337
+ sm: {
338
+ base: string;
339
+ };
340
+ md: {
341
+ base: string;
342
+ };
343
+ lg: {
344
+ base: string;
345
+ };
346
+ };
347
+ fullWidth: {
348
+ true: {
349
+ base: string;
350
+ };
351
+ };
352
+ disableAnimation: {
353
+ true: {};
354
+ false: {
355
+ copyIcon: string;
356
+ checkIcon: string;
357
+ };
358
+ };
359
+ }, {
360
+ variant: {
361
+ flat: "";
362
+ solid: "";
363
+ bordered: "border-medium bg-transparent";
364
+ shadow: "";
365
+ };
366
+ color: {
367
+ default: {};
368
+ primary: {};
369
+ secondary: {};
370
+ success: {};
371
+ warning: {};
372
+ danger: {};
373
+ };
374
+ size: {
375
+ sm: {
376
+ base: string;
377
+ };
378
+ md: {
379
+ base: string;
380
+ };
381
+ lg: {
382
+ base: string;
383
+ };
384
+ };
385
+ radius: {
386
+ none: {
387
+ base: string;
388
+ };
389
+ sm: {
390
+ base: string;
391
+ };
392
+ md: {
393
+ base: string;
394
+ };
395
+ lg: {
396
+ base: string;
397
+ };
398
+ };
399
+ fullWidth: {
400
+ true: {
401
+ base: string;
402
+ };
403
+ };
404
+ disableAnimation: {
405
+ true: {};
406
+ false: {
407
+ copyIcon: string;
408
+ checkIcon: string;
409
+ };
410
+ };
411
+ }>, unknown, unknown, undefined>>;
248
412
  type SnippetVariantProps = VariantProps<typeof snippet>;
249
413
  type SnippetSlots = keyof ReturnType<typeof snippet>;
250
414
 
@@ -31,7 +31,22 @@ declare const spacer: tailwind_variants.TVReturnType<{
31
31
  true: "inline-block";
32
32
  false: "block";
33
33
  };
34
- }, undefined>;
34
+ }, undefined, tailwind_variants.TVReturnType<{
35
+ isInline: {
36
+ true: "inline-block";
37
+ false: "block";
38
+ };
39
+ }, undefined, "w-px h-px inline-block", tailwind_variants_dist_config.TVConfig<{
40
+ isInline: {
41
+ true: "inline-block";
42
+ false: "block";
43
+ };
44
+ }, {
45
+ isInline: {
46
+ true: "inline-block";
47
+ false: "block";
48
+ };
49
+ }>, unknown, unknown, undefined>>;
35
50
  type SpacerVariantProps = VariantProps<typeof spacer>;
36
51
 
37
52
  export { SpacerVariantProps, spacer };