@nextui-org/theme 2.1.4 → 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.
Files changed (41) hide show
  1. package/dist/{chunk-FZZINZOQ.mjs → chunk-ER6JQ3OQ.mjs} +21 -4
  2. package/dist/components/accordion.d.ts +153 -2
  3. package/dist/components/avatar.d.ts +227 -2
  4. package/dist/components/badge.d.ts +199 -1
  5. package/dist/components/button.d.ts +155 -2
  6. package/dist/components/card.d.ts +225 -1
  7. package/dist/components/checkbox.d.ts +250 -2
  8. package/dist/components/chip.d.ts +304 -1
  9. package/dist/components/circular-progress.d.ts +171 -1
  10. package/dist/components/code.d.ts +64 -1
  11. package/dist/components/divider.d.ts +16 -1
  12. package/dist/components/drip.d.ts +1 -1
  13. package/dist/components/dropdown.d.ts +135 -4
  14. package/dist/components/image.d.ts +141 -1
  15. package/dist/components/index.js +21 -4
  16. package/dist/components/index.mjs +1 -1
  17. package/dist/components/input.d.ts +387 -1
  18. package/dist/components/kbd.d.ts +5 -1
  19. package/dist/components/link.d.ts +94 -1
  20. package/dist/components/menu.d.ts +152 -3
  21. package/dist/components/modal.d.ts +315 -1
  22. package/dist/components/navbar.d.ts +174 -1
  23. package/dist/components/pagination.d.ts +239 -1
  24. package/dist/components/pagination.js +21 -4
  25. package/dist/components/pagination.mjs +1 -1
  26. package/dist/components/popover.d.ts +276 -1
  27. package/dist/components/progress.d.ts +91 -1
  28. package/dist/components/radio.d.ts +231 -2
  29. package/dist/components/scroll-shadow.d.ts +28 -1
  30. package/dist/components/select.d.ts +388 -1
  31. package/dist/components/skeleton.d.ts +37 -1
  32. package/dist/components/snippet.d.ts +165 -1
  33. package/dist/components/spacer.d.ts +16 -1
  34. package/dist/components/spinner.d.ts +232 -1
  35. package/dist/components/table.d.ts +311 -1
  36. package/dist/components/tabs.d.ts +269 -1
  37. package/dist/components/toggle.d.ts +192 -1
  38. package/dist/components/user.d.ts +11 -1
  39. package/dist/index.js +21 -4
  40. package/dist/index.mjs +1 -1
  41. package/package.json +2 -2
@@ -444,7 +444,321 @@ declare const modal: tailwind_variants.TVReturnType<{
444
444
  body: string;
445
445
  footer: string;
446
446
  closeButton: string[];
447
- }>;
447
+ }, tailwind_variants.TVReturnType<{
448
+ size: {
449
+ xs: {
450
+ base: string;
451
+ };
452
+ sm: {
453
+ base: string;
454
+ };
455
+ md: {
456
+ base: string;
457
+ };
458
+ lg: {
459
+ base: string;
460
+ };
461
+ xl: {
462
+ base: string;
463
+ };
464
+ "2xl": {
465
+ base: string;
466
+ };
467
+ "3xl": {
468
+ base: string;
469
+ };
470
+ "4xl": {
471
+ base: string;
472
+ };
473
+ "5xl": {
474
+ base: string;
475
+ };
476
+ full: {
477
+ base: string;
478
+ };
479
+ };
480
+ radius: {
481
+ none: {
482
+ base: string;
483
+ };
484
+ sm: {
485
+ base: string;
486
+ };
487
+ md: {
488
+ base: string;
489
+ };
490
+ lg: {
491
+ base: string;
492
+ };
493
+ };
494
+ placement: {
495
+ auto: {
496
+ wrapper: string;
497
+ };
498
+ center: {
499
+ wrapper: string;
500
+ };
501
+ top: {
502
+ wrapper: string;
503
+ };
504
+ "top-center": {
505
+ wrapper: string;
506
+ };
507
+ bottom: {
508
+ wrapper: string;
509
+ };
510
+ "bottom-center": {
511
+ wrapper: string;
512
+ };
513
+ };
514
+ shadow: {
515
+ sm: {
516
+ base: string;
517
+ };
518
+ md: {
519
+ base: string;
520
+ };
521
+ lg: {
522
+ base: string;
523
+ };
524
+ };
525
+ backdrop: {
526
+ transparent: {
527
+ backdrop: string;
528
+ };
529
+ opaque: {
530
+ backdrop: string;
531
+ };
532
+ blur: {
533
+ backdrop: string;
534
+ };
535
+ };
536
+ scrollBehavior: {
537
+ normal: {
538
+ base: string;
539
+ };
540
+ inside: {
541
+ base: string;
542
+ body: string;
543
+ };
544
+ outside: {
545
+ wrapper: string;
546
+ base: string;
547
+ };
548
+ };
549
+ }, {
550
+ wrapper: string[];
551
+ base: string[];
552
+ backdrop: string;
553
+ header: string;
554
+ body: string;
555
+ footer: string;
556
+ closeButton: string[];
557
+ }, undefined, tailwind_variants_dist_config.TVConfig<{
558
+ size: {
559
+ xs: {
560
+ base: string;
561
+ };
562
+ sm: {
563
+ base: string;
564
+ };
565
+ md: {
566
+ base: string;
567
+ };
568
+ lg: {
569
+ base: string;
570
+ };
571
+ xl: {
572
+ base: string;
573
+ };
574
+ "2xl": {
575
+ base: string;
576
+ };
577
+ "3xl": {
578
+ base: string;
579
+ };
580
+ "4xl": {
581
+ base: string;
582
+ };
583
+ "5xl": {
584
+ base: string;
585
+ };
586
+ full: {
587
+ base: string;
588
+ };
589
+ };
590
+ radius: {
591
+ none: {
592
+ base: string;
593
+ };
594
+ sm: {
595
+ base: string;
596
+ };
597
+ md: {
598
+ base: string;
599
+ };
600
+ lg: {
601
+ base: string;
602
+ };
603
+ };
604
+ placement: {
605
+ auto: {
606
+ wrapper: string;
607
+ };
608
+ center: {
609
+ wrapper: string;
610
+ };
611
+ top: {
612
+ wrapper: string;
613
+ };
614
+ "top-center": {
615
+ wrapper: string;
616
+ };
617
+ bottom: {
618
+ wrapper: string;
619
+ };
620
+ "bottom-center": {
621
+ wrapper: string;
622
+ };
623
+ };
624
+ shadow: {
625
+ sm: {
626
+ base: string;
627
+ };
628
+ md: {
629
+ base: string;
630
+ };
631
+ lg: {
632
+ base: string;
633
+ };
634
+ };
635
+ backdrop: {
636
+ transparent: {
637
+ backdrop: string;
638
+ };
639
+ opaque: {
640
+ backdrop: string;
641
+ };
642
+ blur: {
643
+ backdrop: string;
644
+ };
645
+ };
646
+ scrollBehavior: {
647
+ normal: {
648
+ base: string;
649
+ };
650
+ inside: {
651
+ base: string;
652
+ body: string;
653
+ };
654
+ outside: {
655
+ wrapper: string;
656
+ base: string;
657
+ };
658
+ };
659
+ }, {
660
+ size: {
661
+ xs: {
662
+ base: string;
663
+ };
664
+ sm: {
665
+ base: string;
666
+ };
667
+ md: {
668
+ base: string;
669
+ };
670
+ lg: {
671
+ base: string;
672
+ };
673
+ xl: {
674
+ base: string;
675
+ };
676
+ "2xl": {
677
+ base: string;
678
+ };
679
+ "3xl": {
680
+ base: string;
681
+ };
682
+ "4xl": {
683
+ base: string;
684
+ };
685
+ "5xl": {
686
+ base: string;
687
+ };
688
+ full: {
689
+ base: string;
690
+ };
691
+ };
692
+ radius: {
693
+ none: {
694
+ base: string;
695
+ };
696
+ sm: {
697
+ base: string;
698
+ };
699
+ md: {
700
+ base: string;
701
+ };
702
+ lg: {
703
+ base: string;
704
+ };
705
+ };
706
+ placement: {
707
+ auto: {
708
+ wrapper: string;
709
+ };
710
+ center: {
711
+ wrapper: string;
712
+ };
713
+ top: {
714
+ wrapper: string;
715
+ };
716
+ "top-center": {
717
+ wrapper: string;
718
+ };
719
+ bottom: {
720
+ wrapper: string;
721
+ };
722
+ "bottom-center": {
723
+ wrapper: string;
724
+ };
725
+ };
726
+ shadow: {
727
+ sm: {
728
+ base: string;
729
+ };
730
+ md: {
731
+ base: string;
732
+ };
733
+ lg: {
734
+ base: string;
735
+ };
736
+ };
737
+ backdrop: {
738
+ transparent: {
739
+ backdrop: string;
740
+ };
741
+ opaque: {
742
+ backdrop: string;
743
+ };
744
+ blur: {
745
+ backdrop: string;
746
+ };
747
+ };
748
+ scrollBehavior: {
749
+ normal: {
750
+ base: string;
751
+ };
752
+ inside: {
753
+ base: string;
754
+ body: string;
755
+ };
756
+ outside: {
757
+ wrapper: string;
758
+ base: string;
759
+ };
760
+ };
761
+ }>, unknown, unknown, undefined>>;
448
762
  type ModalVariantProps = VariantProps<typeof modal>;
449
763
  type ModalSlots = keyof ReturnType<typeof modal>;
450
764
 
@@ -283,7 +283,180 @@ declare const navbar: tailwind_variants.TVReturnType<{
283
283
  item: string[];
284
284
  menu: string[];
285
285
  menuItem: string[];
286
- }>;
286
+ }, tailwind_variants.TVReturnType<{
287
+ position: {
288
+ static: {
289
+ base: string;
290
+ };
291
+ sticky: {
292
+ base: string;
293
+ };
294
+ };
295
+ maxWidth: {
296
+ sm: {
297
+ wrapper: string;
298
+ };
299
+ md: {
300
+ wrapper: string;
301
+ };
302
+ lg: {
303
+ wrapper: string;
304
+ };
305
+ xl: {
306
+ wrapper: string;
307
+ };
308
+ "2xl": {
309
+ wrapper: string;
310
+ };
311
+ full: {
312
+ wrapper: string;
313
+ };
314
+ };
315
+ hideOnScroll: {
316
+ true: {
317
+ base: string[];
318
+ };
319
+ };
320
+ isBordered: {
321
+ true: {
322
+ base: string[];
323
+ };
324
+ };
325
+ isBlurred: {
326
+ false: {
327
+ base: string;
328
+ menu: string;
329
+ };
330
+ true: {
331
+ base: string[];
332
+ menu: string[];
333
+ };
334
+ };
335
+ disableAnimation: {
336
+ true: {
337
+ menu: string[];
338
+ };
339
+ };
340
+ }, {
341
+ base: string[];
342
+ wrapper: string[];
343
+ toggle: string[];
344
+ srOnly: string[];
345
+ toggleIcon: string[];
346
+ brand: string[];
347
+ content: string[];
348
+ item: string[];
349
+ menu: string[];
350
+ menuItem: string[];
351
+ }, undefined, tailwind_variants_dist_config.TVConfig<{
352
+ position: {
353
+ static: {
354
+ base: string;
355
+ };
356
+ sticky: {
357
+ base: string;
358
+ };
359
+ };
360
+ maxWidth: {
361
+ sm: {
362
+ wrapper: string;
363
+ };
364
+ md: {
365
+ wrapper: string;
366
+ };
367
+ lg: {
368
+ wrapper: string;
369
+ };
370
+ xl: {
371
+ wrapper: string;
372
+ };
373
+ "2xl": {
374
+ wrapper: string;
375
+ };
376
+ full: {
377
+ wrapper: string;
378
+ };
379
+ };
380
+ hideOnScroll: {
381
+ true: {
382
+ base: string[];
383
+ };
384
+ };
385
+ isBordered: {
386
+ true: {
387
+ base: string[];
388
+ };
389
+ };
390
+ isBlurred: {
391
+ false: {
392
+ base: string;
393
+ menu: string;
394
+ };
395
+ true: {
396
+ base: string[];
397
+ menu: string[];
398
+ };
399
+ };
400
+ disableAnimation: {
401
+ true: {
402
+ menu: string[];
403
+ };
404
+ };
405
+ }, {
406
+ position: {
407
+ static: {
408
+ base: string;
409
+ };
410
+ sticky: {
411
+ base: string;
412
+ };
413
+ };
414
+ maxWidth: {
415
+ sm: {
416
+ wrapper: string;
417
+ };
418
+ md: {
419
+ wrapper: string;
420
+ };
421
+ lg: {
422
+ wrapper: string;
423
+ };
424
+ xl: {
425
+ wrapper: string;
426
+ };
427
+ "2xl": {
428
+ wrapper: string;
429
+ };
430
+ full: {
431
+ wrapper: string;
432
+ };
433
+ };
434
+ hideOnScroll: {
435
+ true: {
436
+ base: string[];
437
+ };
438
+ };
439
+ isBordered: {
440
+ true: {
441
+ base: string[];
442
+ };
443
+ };
444
+ isBlurred: {
445
+ false: {
446
+ base: string;
447
+ menu: string;
448
+ };
449
+ true: {
450
+ base: string[];
451
+ menu: string[];
452
+ };
453
+ };
454
+ disableAnimation: {
455
+ true: {
456
+ menu: string[];
457
+ };
458
+ };
459
+ }>, unknown, unknown, undefined>>;
287
460
  type NavbarVariantProps = VariantProps<typeof navbar>;
288
461
  type NavbarSlots = keyof ReturnType<typeof navbar>;
289
462