@nextui-org/react 1.0.2-alpha.2 → 1.0.2-beta.1

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 (102) hide show
  1. package/README.md +1 -2
  2. package/cjs/avatar/avatar-group.styles.d.ts +66 -0
  3. package/cjs/avatar/avatar.styles.d.ts +33 -0
  4. package/cjs/backdrop/backdrop.d.ts +1 -1
  5. package/cjs/backdrop/backdrop.styles.d.ts +99 -0
  6. package/cjs/button/button-group.styles.d.ts +33 -0
  7. package/cjs/button/button-icon.d.ts +33 -0
  8. package/cjs/button/button.styles.d.ts +34 -1
  9. package/cjs/button/button.styles.js +36 -5
  10. package/cjs/card/card.styles.d.ts +132 -0
  11. package/cjs/card/card.styles.js +3 -3
  12. package/cjs/checkbox/checkbox.js +1 -1
  13. package/cjs/checkbox/checkbox.styles.d.ts +297 -0
  14. package/cjs/code/code.styles.d.ts +66 -0
  15. package/cjs/col/col.styles.d.ts +33 -0
  16. package/cjs/collapse/collapse.d.ts +3 -1
  17. package/cjs/collapse/collapse.js +2 -1
  18. package/cjs/collapse/collapse.styles.d.ts +165 -0
  19. package/cjs/collapse/collapse.styles.js +4 -2
  20. package/cjs/container/container.styles.d.ts +33 -0
  21. package/cjs/divider/divider.styles.d.ts +66 -0
  22. package/cjs/grid/grid.styles.d.ts +66 -0
  23. package/cjs/image/image.styles.d.ts +99 -0
  24. package/cjs/input/input.js +1 -0
  25. package/cjs/input/input.styles.d.ts +363 -0
  26. package/cjs/link/link.styles.d.ts +66 -0
  27. package/cjs/loading/loading.styles.d.ts +198 -0
  28. package/cjs/modal/modal.styles.d.ts +198 -0
  29. package/cjs/pagination/pagination.styles.d.ts +198 -0
  30. package/cjs/progress/progress.styles.d.ts +66 -0
  31. package/cjs/radio/radio.styles.d.ts +198 -0
  32. package/cjs/row/row.styles.d.ts +33 -0
  33. package/cjs/snippet/snippet.styles.d.ts +132 -0
  34. package/cjs/spacer/spacer.styles.d.ts +33 -0
  35. package/cjs/switch/switch.styles.d.ts +132 -0
  36. package/cjs/text/child.d.ts +2 -0
  37. package/cjs/text/text.styles.d.ts +33 -0
  38. package/cjs/theme/common.d.ts +60 -0
  39. package/cjs/theme/common.js +13 -0
  40. package/cjs/theme/stitches.config.d.ts +298 -1
  41. package/cjs/theme/stitches.config.js +3 -2
  42. package/cjs/theme/theme-provider.js +3 -7
  43. package/cjs/theme/types.d.ts +1 -0
  44. package/cjs/tooltip/tooltip.d.ts +4 -1
  45. package/cjs/tooltip/tooltip.js +4 -2
  46. package/cjs/tooltip/tooltip.styles.d.ts +132 -0
  47. package/cjs/user/user.styles.d.ts +165 -0
  48. package/cjs/utils/drip.d.ts +33 -0
  49. package/esm/avatar/avatar-group.styles.d.ts +66 -0
  50. package/esm/avatar/avatar.styles.d.ts +33 -0
  51. package/esm/backdrop/backdrop.d.ts +1 -1
  52. package/esm/backdrop/backdrop.styles.d.ts +99 -0
  53. package/esm/button/button-group.styles.d.ts +33 -0
  54. package/esm/button/button-icon.d.ts +33 -0
  55. package/esm/button/button.styles.d.ts +34 -1
  56. package/esm/button/button.styles.js +36 -5
  57. package/esm/card/card.styles.d.ts +132 -0
  58. package/esm/card/card.styles.js +3 -3
  59. package/esm/checkbox/checkbox.js +1 -1
  60. package/esm/checkbox/checkbox.styles.d.ts +297 -0
  61. package/esm/code/code.styles.d.ts +66 -0
  62. package/esm/col/col.styles.d.ts +33 -0
  63. package/esm/collapse/collapse.d.ts +3 -1
  64. package/esm/collapse/collapse.js +2 -1
  65. package/esm/collapse/collapse.styles.d.ts +165 -0
  66. package/esm/collapse/collapse.styles.js +4 -2
  67. package/esm/container/container.styles.d.ts +33 -0
  68. package/esm/divider/divider.styles.d.ts +66 -0
  69. package/esm/grid/grid.styles.d.ts +66 -0
  70. package/esm/image/image.styles.d.ts +99 -0
  71. package/esm/input/input.js +1 -0
  72. package/esm/input/input.styles.d.ts +363 -0
  73. package/esm/link/link.styles.d.ts +66 -0
  74. package/esm/loading/loading.styles.d.ts +198 -0
  75. package/esm/modal/modal.styles.d.ts +198 -0
  76. package/esm/pagination/pagination.styles.d.ts +198 -0
  77. package/esm/progress/progress.styles.d.ts +66 -0
  78. package/esm/radio/radio.styles.d.ts +198 -0
  79. package/esm/row/row.styles.d.ts +33 -0
  80. package/esm/snippet/snippet.styles.d.ts +132 -0
  81. package/esm/spacer/spacer.styles.d.ts +33 -0
  82. package/esm/switch/switch.styles.d.ts +132 -0
  83. package/esm/text/child.d.ts +2 -0
  84. package/esm/text/text.styles.d.ts +33 -0
  85. package/esm/theme/common.d.ts +60 -0
  86. package/esm/theme/common.js +13 -0
  87. package/esm/theme/stitches.config.d.ts +298 -1
  88. package/esm/theme/stitches.config.js +3 -2
  89. package/esm/theme/theme-provider.js +3 -7
  90. package/esm/theme/types.d.ts +1 -0
  91. package/esm/tooltip/tooltip.d.ts +4 -1
  92. package/esm/tooltip/tooltip.js +4 -2
  93. package/esm/tooltip/tooltip.styles.d.ts +132 -0
  94. package/esm/user/user.styles.d.ts +165 -0
  95. package/esm/utils/drip.d.ts +33 -0
  96. package/package.json +1 -1
  97. package/umd/nextui.js +92 -90
  98. package/umd/nextui.min.js +1 -1
  99. package/cjs/theme/ssr-provider.d.ts +0 -7
  100. package/cjs/theme/ssr-provider.js +0 -51
  101. package/esm/theme/ssr-provider.d.ts +0 -7
  102. package/esm/theme/ssr-provider.js +0 -51
@@ -838,6 +838,22 @@ export declare const StyledLoadingContainer: import("@stitches/react/types/style
838
838
  readonly [$$PropertyValue]: "width";
839
839
  };
840
840
  };
841
+ minSize: (value: {
842
+ readonly [$$PropertyValue]: "width";
843
+ }) => {
844
+ minWidth: {
845
+ readonly [$$PropertyValue]: "width";
846
+ };
847
+ minHeight: {
848
+ readonly [$$PropertyValue]: "width";
849
+ };
850
+ width: {
851
+ readonly [$$PropertyValue]: "width";
852
+ };
853
+ height: {
854
+ readonly [$$PropertyValue]: "width";
855
+ };
856
+ };
841
857
  sizeMin: (value: {
842
858
  readonly [$$PropertyValue]: "width";
843
859
  }) => {
@@ -854,6 +870,16 @@ export declare const StyledLoadingContainer: import("@stitches/react/types/style
854
870
  readonly [$$PropertyValue]: "width";
855
871
  };
856
872
  };
873
+ maxSize: (value: {
874
+ readonly [$$PropertyValue]: "width";
875
+ }) => {
876
+ maxWidth: {
877
+ readonly [$$PropertyValue]: "width";
878
+ };
879
+ maxHeight: {
880
+ readonly [$$PropertyValue]: "width";
881
+ };
882
+ };
857
883
  sizeMax: (value: {
858
884
  readonly [$$PropertyValue]: "width";
859
885
  }) => {
@@ -884,6 +910,13 @@ export declare const StyledLoadingContainer: import("@stitches/react/types/style
884
910
  }) => {
885
911
  backgroundImage: string;
886
912
  };
913
+ tdl: (value: {
914
+ readonly [$$PropertyValue]: "textDecorationLine";
915
+ }) => {
916
+ textDecorationLine: {
917
+ readonly [$$PropertyValue]: "textDecorationLine";
918
+ };
919
+ };
887
920
  textGradient: (value: {
888
921
  readonly [$$PropertyValue]: "backgroundImage";
889
922
  }) => {
@@ -1728,6 +1761,22 @@ export declare const StyledSpinnerContainer: import("@stitches/react/types/style
1728
1761
  readonly [$$PropertyValue]: "width";
1729
1762
  };
1730
1763
  };
1764
+ minSize: (value: {
1765
+ readonly [$$PropertyValue]: "width";
1766
+ }) => {
1767
+ minWidth: {
1768
+ readonly [$$PropertyValue]: "width";
1769
+ };
1770
+ minHeight: {
1771
+ readonly [$$PropertyValue]: "width";
1772
+ };
1773
+ width: {
1774
+ readonly [$$PropertyValue]: "width";
1775
+ };
1776
+ height: {
1777
+ readonly [$$PropertyValue]: "width";
1778
+ };
1779
+ };
1731
1780
  sizeMin: (value: {
1732
1781
  readonly [$$PropertyValue]: "width";
1733
1782
  }) => {
@@ -1744,6 +1793,16 @@ export declare const StyledSpinnerContainer: import("@stitches/react/types/style
1744
1793
  readonly [$$PropertyValue]: "width";
1745
1794
  };
1746
1795
  };
1796
+ maxSize: (value: {
1797
+ readonly [$$PropertyValue]: "width";
1798
+ }) => {
1799
+ maxWidth: {
1800
+ readonly [$$PropertyValue]: "width";
1801
+ };
1802
+ maxHeight: {
1803
+ readonly [$$PropertyValue]: "width";
1804
+ };
1805
+ };
1747
1806
  sizeMax: (value: {
1748
1807
  readonly [$$PropertyValue]: "width";
1749
1808
  }) => {
@@ -1774,6 +1833,13 @@ export declare const StyledSpinnerContainer: import("@stitches/react/types/style
1774
1833
  }) => {
1775
1834
  backgroundImage: string;
1776
1835
  };
1836
+ tdl: (value: {
1837
+ readonly [$$PropertyValue]: "textDecorationLine";
1838
+ }) => {
1839
+ textDecorationLine: {
1840
+ readonly [$$PropertyValue]: "textDecorationLine";
1841
+ };
1842
+ };
1777
1843
  textGradient: (value: {
1778
1844
  readonly [$$PropertyValue]: "backgroundImage";
1779
1845
  }) => {
@@ -2620,6 +2686,22 @@ export declare const StyledSpinner: import("@stitches/react/types/styled-compone
2620
2686
  readonly [$$PropertyValue]: "width";
2621
2687
  };
2622
2688
  };
2689
+ minSize: (value: {
2690
+ readonly [$$PropertyValue]: "width";
2691
+ }) => {
2692
+ minWidth: {
2693
+ readonly [$$PropertyValue]: "width";
2694
+ };
2695
+ minHeight: {
2696
+ readonly [$$PropertyValue]: "width";
2697
+ };
2698
+ width: {
2699
+ readonly [$$PropertyValue]: "width";
2700
+ };
2701
+ height: {
2702
+ readonly [$$PropertyValue]: "width";
2703
+ };
2704
+ };
2623
2705
  sizeMin: (value: {
2624
2706
  readonly [$$PropertyValue]: "width";
2625
2707
  }) => {
@@ -2636,6 +2718,16 @@ export declare const StyledSpinner: import("@stitches/react/types/styled-compone
2636
2718
  readonly [$$PropertyValue]: "width";
2637
2719
  };
2638
2720
  };
2721
+ maxSize: (value: {
2722
+ readonly [$$PropertyValue]: "width";
2723
+ }) => {
2724
+ maxWidth: {
2725
+ readonly [$$PropertyValue]: "width";
2726
+ };
2727
+ maxHeight: {
2728
+ readonly [$$PropertyValue]: "width";
2729
+ };
2730
+ };
2639
2731
  sizeMax: (value: {
2640
2732
  readonly [$$PropertyValue]: "width";
2641
2733
  }) => {
@@ -2666,6 +2758,13 @@ export declare const StyledSpinner: import("@stitches/react/types/styled-compone
2666
2758
  }) => {
2667
2759
  backgroundImage: string;
2668
2760
  };
2761
+ tdl: (value: {
2762
+ readonly [$$PropertyValue]: "textDecorationLine";
2763
+ }) => {
2764
+ textDecorationLine: {
2765
+ readonly [$$PropertyValue]: "textDecorationLine";
2766
+ };
2767
+ };
2669
2768
  textGradient: (value: {
2670
2769
  readonly [$$PropertyValue]: "backgroundImage";
2671
2770
  }) => {
@@ -3510,6 +3609,22 @@ export declare const StyledSpinnerSpan: import("@stitches/react/types/styled-com
3510
3609
  readonly [$$PropertyValue]: "width";
3511
3610
  };
3512
3611
  };
3612
+ minSize: (value: {
3613
+ readonly [$$PropertyValue]: "width";
3614
+ }) => {
3615
+ minWidth: {
3616
+ readonly [$$PropertyValue]: "width";
3617
+ };
3618
+ minHeight: {
3619
+ readonly [$$PropertyValue]: "width";
3620
+ };
3621
+ width: {
3622
+ readonly [$$PropertyValue]: "width";
3623
+ };
3624
+ height: {
3625
+ readonly [$$PropertyValue]: "width";
3626
+ };
3627
+ };
3513
3628
  sizeMin: (value: {
3514
3629
  readonly [$$PropertyValue]: "width";
3515
3630
  }) => {
@@ -3526,6 +3641,16 @@ export declare const StyledSpinnerSpan: import("@stitches/react/types/styled-com
3526
3641
  readonly [$$PropertyValue]: "width";
3527
3642
  };
3528
3643
  };
3644
+ maxSize: (value: {
3645
+ readonly [$$PropertyValue]: "width";
3646
+ }) => {
3647
+ maxWidth: {
3648
+ readonly [$$PropertyValue]: "width";
3649
+ };
3650
+ maxHeight: {
3651
+ readonly [$$PropertyValue]: "width";
3652
+ };
3653
+ };
3529
3654
  sizeMax: (value: {
3530
3655
  readonly [$$PropertyValue]: "width";
3531
3656
  }) => {
@@ -3556,6 +3681,13 @@ export declare const StyledSpinnerSpan: import("@stitches/react/types/styled-com
3556
3681
  }) => {
3557
3682
  backgroundImage: string;
3558
3683
  };
3684
+ tdl: (value: {
3685
+ readonly [$$PropertyValue]: "textDecorationLine";
3686
+ }) => {
3687
+ textDecorationLine: {
3688
+ readonly [$$PropertyValue]: "textDecorationLine";
3689
+ };
3690
+ };
3559
3691
  textGradient: (value: {
3560
3692
  readonly [$$PropertyValue]: "backgroundImage";
3561
3693
  }) => {
@@ -4403,6 +4535,22 @@ export declare const StyledLoading: import("@stitches/react/types/styled-compone
4403
4535
  readonly [$$PropertyValue]: "width";
4404
4536
  };
4405
4537
  };
4538
+ minSize: (value: {
4539
+ readonly [$$PropertyValue]: "width";
4540
+ }) => {
4541
+ minWidth: {
4542
+ readonly [$$PropertyValue]: "width";
4543
+ };
4544
+ minHeight: {
4545
+ readonly [$$PropertyValue]: "width";
4546
+ };
4547
+ width: {
4548
+ readonly [$$PropertyValue]: "width";
4549
+ };
4550
+ height: {
4551
+ readonly [$$PropertyValue]: "width";
4552
+ };
4553
+ };
4406
4554
  sizeMin: (value: {
4407
4555
  readonly [$$PropertyValue]: "width";
4408
4556
  }) => {
@@ -4419,6 +4567,16 @@ export declare const StyledLoading: import("@stitches/react/types/styled-compone
4419
4567
  readonly [$$PropertyValue]: "width";
4420
4568
  };
4421
4569
  };
4570
+ maxSize: (value: {
4571
+ readonly [$$PropertyValue]: "width";
4572
+ }) => {
4573
+ maxWidth: {
4574
+ readonly [$$PropertyValue]: "width";
4575
+ };
4576
+ maxHeight: {
4577
+ readonly [$$PropertyValue]: "width";
4578
+ };
4579
+ };
4422
4580
  sizeMax: (value: {
4423
4581
  readonly [$$PropertyValue]: "width";
4424
4582
  }) => {
@@ -4449,6 +4607,13 @@ export declare const StyledLoading: import("@stitches/react/types/styled-compone
4449
4607
  }) => {
4450
4608
  backgroundImage: string;
4451
4609
  };
4610
+ tdl: (value: {
4611
+ readonly [$$PropertyValue]: "textDecorationLine";
4612
+ }) => {
4613
+ textDecorationLine: {
4614
+ readonly [$$PropertyValue]: "textDecorationLine";
4615
+ };
4616
+ };
4452
4617
  textGradient: (value: {
4453
4618
  readonly [$$PropertyValue]: "backgroundImage";
4454
4619
  }) => {
@@ -5295,6 +5460,22 @@ export declare const StyledLoadingLabel: import("@stitches/react/types/styled-co
5295
5460
  readonly [$$PropertyValue]: "width";
5296
5461
  };
5297
5462
  };
5463
+ minSize: (value: {
5464
+ readonly [$$PropertyValue]: "width";
5465
+ }) => {
5466
+ minWidth: {
5467
+ readonly [$$PropertyValue]: "width";
5468
+ };
5469
+ minHeight: {
5470
+ readonly [$$PropertyValue]: "width";
5471
+ };
5472
+ width: {
5473
+ readonly [$$PropertyValue]: "width";
5474
+ };
5475
+ height: {
5476
+ readonly [$$PropertyValue]: "width";
5477
+ };
5478
+ };
5298
5479
  sizeMin: (value: {
5299
5480
  readonly [$$PropertyValue]: "width";
5300
5481
  }) => {
@@ -5311,6 +5492,16 @@ export declare const StyledLoadingLabel: import("@stitches/react/types/styled-co
5311
5492
  readonly [$$PropertyValue]: "width";
5312
5493
  };
5313
5494
  };
5495
+ maxSize: (value: {
5496
+ readonly [$$PropertyValue]: "width";
5497
+ }) => {
5498
+ maxWidth: {
5499
+ readonly [$$PropertyValue]: "width";
5500
+ };
5501
+ maxHeight: {
5502
+ readonly [$$PropertyValue]: "width";
5503
+ };
5504
+ };
5314
5505
  sizeMax: (value: {
5315
5506
  readonly [$$PropertyValue]: "width";
5316
5507
  }) => {
@@ -5341,6 +5532,13 @@ export declare const StyledLoadingLabel: import("@stitches/react/types/styled-co
5341
5532
  }) => {
5342
5533
  backgroundImage: string;
5343
5534
  };
5535
+ tdl: (value: {
5536
+ readonly [$$PropertyValue]: "textDecorationLine";
5537
+ }) => {
5538
+ textDecorationLine: {
5539
+ readonly [$$PropertyValue]: "textDecorationLine";
5540
+ };
5541
+ };
5344
5542
  textGradient: (value: {
5345
5543
  readonly [$$PropertyValue]: "backgroundImage";
5346
5544
  }) => {
@@ -835,6 +835,22 @@ export declare const StyledModalHideTab: import("@stitches/react/types/styled-co
835
835
  readonly [$$PropertyValue]: "width";
836
836
  };
837
837
  };
838
+ minSize: (value: {
839
+ readonly [$$PropertyValue]: "width";
840
+ }) => {
841
+ minWidth: {
842
+ readonly [$$PropertyValue]: "width";
843
+ };
844
+ minHeight: {
845
+ readonly [$$PropertyValue]: "width";
846
+ };
847
+ width: {
848
+ readonly [$$PropertyValue]: "width";
849
+ };
850
+ height: {
851
+ readonly [$$PropertyValue]: "width";
852
+ };
853
+ };
838
854
  sizeMin: (value: {
839
855
  readonly [$$PropertyValue]: "width";
840
856
  }) => {
@@ -851,6 +867,16 @@ export declare const StyledModalHideTab: import("@stitches/react/types/styled-co
851
867
  readonly [$$PropertyValue]: "width";
852
868
  };
853
869
  };
870
+ maxSize: (value: {
871
+ readonly [$$PropertyValue]: "width";
872
+ }) => {
873
+ maxWidth: {
874
+ readonly [$$PropertyValue]: "width";
875
+ };
876
+ maxHeight: {
877
+ readonly [$$PropertyValue]: "width";
878
+ };
879
+ };
854
880
  sizeMax: (value: {
855
881
  readonly [$$PropertyValue]: "width";
856
882
  }) => {
@@ -881,6 +907,13 @@ export declare const StyledModalHideTab: import("@stitches/react/types/styled-co
881
907
  }) => {
882
908
  backgroundImage: string;
883
909
  };
910
+ tdl: (value: {
911
+ readonly [$$PropertyValue]: "textDecorationLine";
912
+ }) => {
913
+ textDecorationLine: {
914
+ readonly [$$PropertyValue]: "textDecorationLine";
915
+ };
916
+ };
884
917
  textGradient: (value: {
885
918
  readonly [$$PropertyValue]: "backgroundImage";
886
919
  }) => {
@@ -1727,6 +1760,22 @@ export declare const StyledModalCloseButton: import("@stitches/react/types/style
1727
1760
  readonly [$$PropertyValue]: "width";
1728
1761
  };
1729
1762
  };
1763
+ minSize: (value: {
1764
+ readonly [$$PropertyValue]: "width";
1765
+ }) => {
1766
+ minWidth: {
1767
+ readonly [$$PropertyValue]: "width";
1768
+ };
1769
+ minHeight: {
1770
+ readonly [$$PropertyValue]: "width";
1771
+ };
1772
+ width: {
1773
+ readonly [$$PropertyValue]: "width";
1774
+ };
1775
+ height: {
1776
+ readonly [$$PropertyValue]: "width";
1777
+ };
1778
+ };
1730
1779
  sizeMin: (value: {
1731
1780
  readonly [$$PropertyValue]: "width";
1732
1781
  }) => {
@@ -1743,6 +1792,16 @@ export declare const StyledModalCloseButton: import("@stitches/react/types/style
1743
1792
  readonly [$$PropertyValue]: "width";
1744
1793
  };
1745
1794
  };
1795
+ maxSize: (value: {
1796
+ readonly [$$PropertyValue]: "width";
1797
+ }) => {
1798
+ maxWidth: {
1799
+ readonly [$$PropertyValue]: "width";
1800
+ };
1801
+ maxHeight: {
1802
+ readonly [$$PropertyValue]: "width";
1803
+ };
1804
+ };
1746
1805
  sizeMax: (value: {
1747
1806
  readonly [$$PropertyValue]: "width";
1748
1807
  }) => {
@@ -1773,6 +1832,13 @@ export declare const StyledModalCloseButton: import("@stitches/react/types/style
1773
1832
  }) => {
1774
1833
  backgroundImage: string;
1775
1834
  };
1835
+ tdl: (value: {
1836
+ readonly [$$PropertyValue]: "textDecorationLine";
1837
+ }) => {
1838
+ textDecorationLine: {
1839
+ readonly [$$PropertyValue]: "textDecorationLine";
1840
+ };
1841
+ };
1776
1842
  textGradient: (value: {
1777
1843
  readonly [$$PropertyValue]: "backgroundImage";
1778
1844
  }) => {
@@ -2620,6 +2686,22 @@ export declare const StyledModalHeader: import("@stitches/react/types/styled-com
2620
2686
  readonly [$$PropertyValue]: "width";
2621
2687
  };
2622
2688
  };
2689
+ minSize: (value: {
2690
+ readonly [$$PropertyValue]: "width";
2691
+ }) => {
2692
+ minWidth: {
2693
+ readonly [$$PropertyValue]: "width";
2694
+ };
2695
+ minHeight: {
2696
+ readonly [$$PropertyValue]: "width";
2697
+ };
2698
+ width: {
2699
+ readonly [$$PropertyValue]: "width";
2700
+ };
2701
+ height: {
2702
+ readonly [$$PropertyValue]: "width";
2703
+ };
2704
+ };
2623
2705
  sizeMin: (value: {
2624
2706
  readonly [$$PropertyValue]: "width";
2625
2707
  }) => {
@@ -2636,6 +2718,16 @@ export declare const StyledModalHeader: import("@stitches/react/types/styled-com
2636
2718
  readonly [$$PropertyValue]: "width";
2637
2719
  };
2638
2720
  };
2721
+ maxSize: (value: {
2722
+ readonly [$$PropertyValue]: "width";
2723
+ }) => {
2724
+ maxWidth: {
2725
+ readonly [$$PropertyValue]: "width";
2726
+ };
2727
+ maxHeight: {
2728
+ readonly [$$PropertyValue]: "width";
2729
+ };
2730
+ };
2639
2731
  sizeMax: (value: {
2640
2732
  readonly [$$PropertyValue]: "width";
2641
2733
  }) => {
@@ -2666,6 +2758,13 @@ export declare const StyledModalHeader: import("@stitches/react/types/styled-com
2666
2758
  }) => {
2667
2759
  backgroundImage: string;
2668
2760
  };
2761
+ tdl: (value: {
2762
+ readonly [$$PropertyValue]: "textDecorationLine";
2763
+ }) => {
2764
+ textDecorationLine: {
2765
+ readonly [$$PropertyValue]: "textDecorationLine";
2766
+ };
2767
+ };
2669
2768
  textGradient: (value: {
2670
2769
  readonly [$$PropertyValue]: "backgroundImage";
2671
2770
  }) => {
@@ -3513,6 +3612,22 @@ export declare const StyledModalBody: import("@stitches/react/types/styled-compo
3513
3612
  readonly [$$PropertyValue]: "width";
3514
3613
  };
3515
3614
  };
3615
+ minSize: (value: {
3616
+ readonly [$$PropertyValue]: "width";
3617
+ }) => {
3618
+ minWidth: {
3619
+ readonly [$$PropertyValue]: "width";
3620
+ };
3621
+ minHeight: {
3622
+ readonly [$$PropertyValue]: "width";
3623
+ };
3624
+ width: {
3625
+ readonly [$$PropertyValue]: "width";
3626
+ };
3627
+ height: {
3628
+ readonly [$$PropertyValue]: "width";
3629
+ };
3630
+ };
3516
3631
  sizeMin: (value: {
3517
3632
  readonly [$$PropertyValue]: "width";
3518
3633
  }) => {
@@ -3529,6 +3644,16 @@ export declare const StyledModalBody: import("@stitches/react/types/styled-compo
3529
3644
  readonly [$$PropertyValue]: "width";
3530
3645
  };
3531
3646
  };
3647
+ maxSize: (value: {
3648
+ readonly [$$PropertyValue]: "width";
3649
+ }) => {
3650
+ maxWidth: {
3651
+ readonly [$$PropertyValue]: "width";
3652
+ };
3653
+ maxHeight: {
3654
+ readonly [$$PropertyValue]: "width";
3655
+ };
3656
+ };
3532
3657
  sizeMax: (value: {
3533
3658
  readonly [$$PropertyValue]: "width";
3534
3659
  }) => {
@@ -3559,6 +3684,13 @@ export declare const StyledModalBody: import("@stitches/react/types/styled-compo
3559
3684
  }) => {
3560
3685
  backgroundImage: string;
3561
3686
  };
3687
+ tdl: (value: {
3688
+ readonly [$$PropertyValue]: "textDecorationLine";
3689
+ }) => {
3690
+ textDecorationLine: {
3691
+ readonly [$$PropertyValue]: "textDecorationLine";
3692
+ };
3693
+ };
3562
3694
  textGradient: (value: {
3563
3695
  readonly [$$PropertyValue]: "backgroundImage";
3564
3696
  }) => {
@@ -4406,6 +4538,22 @@ export declare const StyledModalFooter: import("@stitches/react/types/styled-com
4406
4538
  readonly [$$PropertyValue]: "width";
4407
4539
  };
4408
4540
  };
4541
+ minSize: (value: {
4542
+ readonly [$$PropertyValue]: "width";
4543
+ }) => {
4544
+ minWidth: {
4545
+ readonly [$$PropertyValue]: "width";
4546
+ };
4547
+ minHeight: {
4548
+ readonly [$$PropertyValue]: "width";
4549
+ };
4550
+ width: {
4551
+ readonly [$$PropertyValue]: "width";
4552
+ };
4553
+ height: {
4554
+ readonly [$$PropertyValue]: "width";
4555
+ };
4556
+ };
4409
4557
  sizeMin: (value: {
4410
4558
  readonly [$$PropertyValue]: "width";
4411
4559
  }) => {
@@ -4422,6 +4570,16 @@ export declare const StyledModalFooter: import("@stitches/react/types/styled-com
4422
4570
  readonly [$$PropertyValue]: "width";
4423
4571
  };
4424
4572
  };
4573
+ maxSize: (value: {
4574
+ readonly [$$PropertyValue]: "width";
4575
+ }) => {
4576
+ maxWidth: {
4577
+ readonly [$$PropertyValue]: "width";
4578
+ };
4579
+ maxHeight: {
4580
+ readonly [$$PropertyValue]: "width";
4581
+ };
4582
+ };
4425
4583
  sizeMax: (value: {
4426
4584
  readonly [$$PropertyValue]: "width";
4427
4585
  }) => {
@@ -4452,6 +4610,13 @@ export declare const StyledModalFooter: import("@stitches/react/types/styled-com
4452
4610
  }) => {
4453
4611
  backgroundImage: string;
4454
4612
  };
4613
+ tdl: (value: {
4614
+ readonly [$$PropertyValue]: "textDecorationLine";
4615
+ }) => {
4616
+ textDecorationLine: {
4617
+ readonly [$$PropertyValue]: "textDecorationLine";
4618
+ };
4619
+ };
4455
4620
  textGradient: (value: {
4456
4621
  readonly [$$PropertyValue]: "backgroundImage";
4457
4622
  }) => {
@@ -5301,6 +5466,22 @@ export declare const StyledModal: import("@stitches/react/types/styled-component
5301
5466
  readonly [$$PropertyValue]: "width";
5302
5467
  };
5303
5468
  };
5469
+ minSize: (value: {
5470
+ readonly [$$PropertyValue]: "width";
5471
+ }) => {
5472
+ minWidth: {
5473
+ readonly [$$PropertyValue]: "width";
5474
+ };
5475
+ minHeight: {
5476
+ readonly [$$PropertyValue]: "width";
5477
+ };
5478
+ width: {
5479
+ readonly [$$PropertyValue]: "width";
5480
+ };
5481
+ height: {
5482
+ readonly [$$PropertyValue]: "width";
5483
+ };
5484
+ };
5304
5485
  sizeMin: (value: {
5305
5486
  readonly [$$PropertyValue]: "width";
5306
5487
  }) => {
@@ -5317,6 +5498,16 @@ export declare const StyledModal: import("@stitches/react/types/styled-component
5317
5498
  readonly [$$PropertyValue]: "width";
5318
5499
  };
5319
5500
  };
5501
+ maxSize: (value: {
5502
+ readonly [$$PropertyValue]: "width";
5503
+ }) => {
5504
+ maxWidth: {
5505
+ readonly [$$PropertyValue]: "width";
5506
+ };
5507
+ maxHeight: {
5508
+ readonly [$$PropertyValue]: "width";
5509
+ };
5510
+ };
5320
5511
  sizeMax: (value: {
5321
5512
  readonly [$$PropertyValue]: "width";
5322
5513
  }) => {
@@ -5347,6 +5538,13 @@ export declare const StyledModal: import("@stitches/react/types/styled-component
5347
5538
  }) => {
5348
5539
  backgroundImage: string;
5349
5540
  };
5541
+ tdl: (value: {
5542
+ readonly [$$PropertyValue]: "textDecorationLine";
5543
+ }) => {
5544
+ textDecorationLine: {
5545
+ readonly [$$PropertyValue]: "textDecorationLine";
5546
+ };
5547
+ };
5350
5548
  textGradient: (value: {
5351
5549
  readonly [$$PropertyValue]: "backgroundImage";
5352
5550
  }) => {