@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.
- package/README.md +1 -2
- package/cjs/avatar/avatar-group.styles.d.ts +66 -0
- package/cjs/avatar/avatar.styles.d.ts +33 -0
- package/cjs/backdrop/backdrop.d.ts +1 -1
- package/cjs/backdrop/backdrop.styles.d.ts +99 -0
- package/cjs/button/button-group.styles.d.ts +33 -0
- package/cjs/button/button-icon.d.ts +33 -0
- package/cjs/button/button.styles.d.ts +34 -1
- package/cjs/button/button.styles.js +36 -5
- package/cjs/card/card.styles.d.ts +132 -0
- package/cjs/card/card.styles.js +3 -3
- package/cjs/checkbox/checkbox.js +1 -1
- package/cjs/checkbox/checkbox.styles.d.ts +297 -0
- package/cjs/code/code.styles.d.ts +66 -0
- package/cjs/col/col.styles.d.ts +33 -0
- package/cjs/collapse/collapse.d.ts +3 -1
- package/cjs/collapse/collapse.js +2 -1
- package/cjs/collapse/collapse.styles.d.ts +165 -0
- package/cjs/collapse/collapse.styles.js +4 -2
- package/cjs/container/container.styles.d.ts +33 -0
- package/cjs/divider/divider.styles.d.ts +66 -0
- package/cjs/grid/grid.styles.d.ts +66 -0
- package/cjs/image/image.styles.d.ts +99 -0
- package/cjs/input/input.js +1 -0
- package/cjs/input/input.styles.d.ts +363 -0
- package/cjs/link/link.styles.d.ts +66 -0
- package/cjs/loading/loading.styles.d.ts +198 -0
- package/cjs/modal/modal.styles.d.ts +198 -0
- package/cjs/pagination/pagination.styles.d.ts +198 -0
- package/cjs/progress/progress.styles.d.ts +66 -0
- package/cjs/radio/radio.styles.d.ts +198 -0
- package/cjs/row/row.styles.d.ts +33 -0
- package/cjs/snippet/snippet.styles.d.ts +132 -0
- package/cjs/spacer/spacer.styles.d.ts +33 -0
- package/cjs/switch/switch.styles.d.ts +132 -0
- package/cjs/text/child.d.ts +2 -0
- package/cjs/text/text.styles.d.ts +33 -0
- package/cjs/theme/common.d.ts +60 -0
- package/cjs/theme/common.js +13 -0
- package/cjs/theme/stitches.config.d.ts +298 -1
- package/cjs/theme/stitches.config.js +3 -2
- package/cjs/theme/theme-provider.js +3 -7
- package/cjs/theme/types.d.ts +1 -0
- package/cjs/tooltip/tooltip.d.ts +4 -1
- package/cjs/tooltip/tooltip.js +4 -2
- package/cjs/tooltip/tooltip.styles.d.ts +132 -0
- package/cjs/user/user.styles.d.ts +165 -0
- package/cjs/utils/drip.d.ts +33 -0
- package/esm/avatar/avatar-group.styles.d.ts +66 -0
- package/esm/avatar/avatar.styles.d.ts +33 -0
- package/esm/backdrop/backdrop.d.ts +1 -1
- package/esm/backdrop/backdrop.styles.d.ts +99 -0
- package/esm/button/button-group.styles.d.ts +33 -0
- package/esm/button/button-icon.d.ts +33 -0
- package/esm/button/button.styles.d.ts +34 -1
- package/esm/button/button.styles.js +36 -5
- package/esm/card/card.styles.d.ts +132 -0
- package/esm/card/card.styles.js +3 -3
- package/esm/checkbox/checkbox.js +1 -1
- package/esm/checkbox/checkbox.styles.d.ts +297 -0
- package/esm/code/code.styles.d.ts +66 -0
- package/esm/col/col.styles.d.ts +33 -0
- package/esm/collapse/collapse.d.ts +3 -1
- package/esm/collapse/collapse.js +2 -1
- package/esm/collapse/collapse.styles.d.ts +165 -0
- package/esm/collapse/collapse.styles.js +4 -2
- package/esm/container/container.styles.d.ts +33 -0
- package/esm/divider/divider.styles.d.ts +66 -0
- package/esm/grid/grid.styles.d.ts +66 -0
- package/esm/image/image.styles.d.ts +99 -0
- package/esm/input/input.js +1 -0
- package/esm/input/input.styles.d.ts +363 -0
- package/esm/link/link.styles.d.ts +66 -0
- package/esm/loading/loading.styles.d.ts +198 -0
- package/esm/modal/modal.styles.d.ts +198 -0
- package/esm/pagination/pagination.styles.d.ts +198 -0
- package/esm/progress/progress.styles.d.ts +66 -0
- package/esm/radio/radio.styles.d.ts +198 -0
- package/esm/row/row.styles.d.ts +33 -0
- package/esm/snippet/snippet.styles.d.ts +132 -0
- package/esm/spacer/spacer.styles.d.ts +33 -0
- package/esm/switch/switch.styles.d.ts +132 -0
- package/esm/text/child.d.ts +2 -0
- package/esm/text/text.styles.d.ts +33 -0
- package/esm/theme/common.d.ts +60 -0
- package/esm/theme/common.js +13 -0
- package/esm/theme/stitches.config.d.ts +298 -1
- package/esm/theme/stitches.config.js +3 -2
- package/esm/theme/theme-provider.js +3 -7
- package/esm/theme/types.d.ts +1 -0
- package/esm/tooltip/tooltip.d.ts +4 -1
- package/esm/tooltip/tooltip.js +4 -2
- package/esm/tooltip/tooltip.styles.d.ts +132 -0
- package/esm/user/user.styles.d.ts +165 -0
- package/esm/utils/drip.d.ts +33 -0
- package/package.json +1 -1
- package/umd/nextui.js +92 -90
- package/umd/nextui.min.js +1 -1
- package/cjs/theme/ssr-provider.d.ts +0 -7
- package/cjs/theme/ssr-provider.js +0 -51
- package/esm/theme/ssr-provider.d.ts +0 -7
- package/esm/theme/ssr-provider.js +0 -51
|
@@ -843,6 +843,22 @@ export declare const StyledCollapse: import("@stitches/react/types/styled-compon
|
|
|
843
843
|
readonly [$$PropertyValue]: "width";
|
|
844
844
|
};
|
|
845
845
|
};
|
|
846
|
+
minSize: (value: {
|
|
847
|
+
readonly [$$PropertyValue]: "width";
|
|
848
|
+
}) => {
|
|
849
|
+
minWidth: {
|
|
850
|
+
readonly [$$PropertyValue]: "width";
|
|
851
|
+
};
|
|
852
|
+
minHeight: {
|
|
853
|
+
readonly [$$PropertyValue]: "width";
|
|
854
|
+
};
|
|
855
|
+
width: {
|
|
856
|
+
readonly [$$PropertyValue]: "width";
|
|
857
|
+
};
|
|
858
|
+
height: {
|
|
859
|
+
readonly [$$PropertyValue]: "width";
|
|
860
|
+
};
|
|
861
|
+
};
|
|
846
862
|
sizeMin: (value: {
|
|
847
863
|
readonly [$$PropertyValue]: "width";
|
|
848
864
|
}) => {
|
|
@@ -859,6 +875,16 @@ export declare const StyledCollapse: import("@stitches/react/types/styled-compon
|
|
|
859
875
|
readonly [$$PropertyValue]: "width";
|
|
860
876
|
};
|
|
861
877
|
};
|
|
878
|
+
maxSize: (value: {
|
|
879
|
+
readonly [$$PropertyValue]: "width";
|
|
880
|
+
}) => {
|
|
881
|
+
maxWidth: {
|
|
882
|
+
readonly [$$PropertyValue]: "width";
|
|
883
|
+
};
|
|
884
|
+
maxHeight: {
|
|
885
|
+
readonly [$$PropertyValue]: "width";
|
|
886
|
+
};
|
|
887
|
+
};
|
|
862
888
|
sizeMax: (value: {
|
|
863
889
|
readonly [$$PropertyValue]: "width";
|
|
864
890
|
}) => {
|
|
@@ -889,6 +915,13 @@ export declare const StyledCollapse: import("@stitches/react/types/styled-compon
|
|
|
889
915
|
}) => {
|
|
890
916
|
backgroundImage: string;
|
|
891
917
|
};
|
|
918
|
+
tdl: (value: {
|
|
919
|
+
readonly [$$PropertyValue]: "textDecorationLine";
|
|
920
|
+
}) => {
|
|
921
|
+
textDecorationLine: {
|
|
922
|
+
readonly [$$PropertyValue]: "textDecorationLine";
|
|
923
|
+
};
|
|
924
|
+
};
|
|
892
925
|
textGradient: (value: {
|
|
893
926
|
readonly [$$PropertyValue]: "backgroundImage";
|
|
894
927
|
}) => {
|
|
@@ -1735,6 +1768,22 @@ export declare const StyledCollapseView: import("@stitches/react/types/styled-co
|
|
|
1735
1768
|
readonly [$$PropertyValue]: "width";
|
|
1736
1769
|
};
|
|
1737
1770
|
};
|
|
1771
|
+
minSize: (value: {
|
|
1772
|
+
readonly [$$PropertyValue]: "width";
|
|
1773
|
+
}) => {
|
|
1774
|
+
minWidth: {
|
|
1775
|
+
readonly [$$PropertyValue]: "width";
|
|
1776
|
+
};
|
|
1777
|
+
minHeight: {
|
|
1778
|
+
readonly [$$PropertyValue]: "width";
|
|
1779
|
+
};
|
|
1780
|
+
width: {
|
|
1781
|
+
readonly [$$PropertyValue]: "width";
|
|
1782
|
+
};
|
|
1783
|
+
height: {
|
|
1784
|
+
readonly [$$PropertyValue]: "width";
|
|
1785
|
+
};
|
|
1786
|
+
};
|
|
1738
1787
|
sizeMin: (value: {
|
|
1739
1788
|
readonly [$$PropertyValue]: "width";
|
|
1740
1789
|
}) => {
|
|
@@ -1751,6 +1800,16 @@ export declare const StyledCollapseView: import("@stitches/react/types/styled-co
|
|
|
1751
1800
|
readonly [$$PropertyValue]: "width";
|
|
1752
1801
|
};
|
|
1753
1802
|
};
|
|
1803
|
+
maxSize: (value: {
|
|
1804
|
+
readonly [$$PropertyValue]: "width";
|
|
1805
|
+
}) => {
|
|
1806
|
+
maxWidth: {
|
|
1807
|
+
readonly [$$PropertyValue]: "width";
|
|
1808
|
+
};
|
|
1809
|
+
maxHeight: {
|
|
1810
|
+
readonly [$$PropertyValue]: "width";
|
|
1811
|
+
};
|
|
1812
|
+
};
|
|
1754
1813
|
sizeMax: (value: {
|
|
1755
1814
|
readonly [$$PropertyValue]: "width";
|
|
1756
1815
|
}) => {
|
|
@@ -1781,6 +1840,13 @@ export declare const StyledCollapseView: import("@stitches/react/types/styled-co
|
|
|
1781
1840
|
}) => {
|
|
1782
1841
|
backgroundImage: string;
|
|
1783
1842
|
};
|
|
1843
|
+
tdl: (value: {
|
|
1844
|
+
readonly [$$PropertyValue]: "textDecorationLine";
|
|
1845
|
+
}) => {
|
|
1846
|
+
textDecorationLine: {
|
|
1847
|
+
readonly [$$PropertyValue]: "textDecorationLine";
|
|
1848
|
+
};
|
|
1849
|
+
};
|
|
1784
1850
|
textGradient: (value: {
|
|
1785
1851
|
readonly [$$PropertyValue]: "backgroundImage";
|
|
1786
1852
|
}) => {
|
|
@@ -2625,6 +2691,22 @@ export declare const StyledCollapseContent: import("@stitches/react/types/styled
|
|
|
2625
2691
|
readonly [$$PropertyValue]: "width";
|
|
2626
2692
|
};
|
|
2627
2693
|
};
|
|
2694
|
+
minSize: (value: {
|
|
2695
|
+
readonly [$$PropertyValue]: "width";
|
|
2696
|
+
}) => {
|
|
2697
|
+
minWidth: {
|
|
2698
|
+
readonly [$$PropertyValue]: "width";
|
|
2699
|
+
};
|
|
2700
|
+
minHeight: {
|
|
2701
|
+
readonly [$$PropertyValue]: "width";
|
|
2702
|
+
};
|
|
2703
|
+
width: {
|
|
2704
|
+
readonly [$$PropertyValue]: "width";
|
|
2705
|
+
};
|
|
2706
|
+
height: {
|
|
2707
|
+
readonly [$$PropertyValue]: "width";
|
|
2708
|
+
};
|
|
2709
|
+
};
|
|
2628
2710
|
sizeMin: (value: {
|
|
2629
2711
|
readonly [$$PropertyValue]: "width";
|
|
2630
2712
|
}) => {
|
|
@@ -2641,6 +2723,16 @@ export declare const StyledCollapseContent: import("@stitches/react/types/styled
|
|
|
2641
2723
|
readonly [$$PropertyValue]: "width";
|
|
2642
2724
|
};
|
|
2643
2725
|
};
|
|
2726
|
+
maxSize: (value: {
|
|
2727
|
+
readonly [$$PropertyValue]: "width";
|
|
2728
|
+
}) => {
|
|
2729
|
+
maxWidth: {
|
|
2730
|
+
readonly [$$PropertyValue]: "width";
|
|
2731
|
+
};
|
|
2732
|
+
maxHeight: {
|
|
2733
|
+
readonly [$$PropertyValue]: "width";
|
|
2734
|
+
};
|
|
2735
|
+
};
|
|
2644
2736
|
sizeMax: (value: {
|
|
2645
2737
|
readonly [$$PropertyValue]: "width";
|
|
2646
2738
|
}) => {
|
|
@@ -2671,6 +2763,13 @@ export declare const StyledCollapseContent: import("@stitches/react/types/styled
|
|
|
2671
2763
|
}) => {
|
|
2672
2764
|
backgroundImage: string;
|
|
2673
2765
|
};
|
|
2766
|
+
tdl: (value: {
|
|
2767
|
+
readonly [$$PropertyValue]: "textDecorationLine";
|
|
2768
|
+
}) => {
|
|
2769
|
+
textDecorationLine: {
|
|
2770
|
+
readonly [$$PropertyValue]: "textDecorationLine";
|
|
2771
|
+
};
|
|
2772
|
+
};
|
|
2674
2773
|
textGradient: (value: {
|
|
2675
2774
|
readonly [$$PropertyValue]: "backgroundImage";
|
|
2676
2775
|
}) => {
|
|
@@ -3515,6 +3614,22 @@ export declare const StyledCollapseIcon: import("@stitches/react/types/styled-co
|
|
|
3515
3614
|
readonly [$$PropertyValue]: "width";
|
|
3516
3615
|
};
|
|
3517
3616
|
};
|
|
3617
|
+
minSize: (value: {
|
|
3618
|
+
readonly [$$PropertyValue]: "width";
|
|
3619
|
+
}) => {
|
|
3620
|
+
minWidth: {
|
|
3621
|
+
readonly [$$PropertyValue]: "width";
|
|
3622
|
+
};
|
|
3623
|
+
minHeight: {
|
|
3624
|
+
readonly [$$PropertyValue]: "width";
|
|
3625
|
+
};
|
|
3626
|
+
width: {
|
|
3627
|
+
readonly [$$PropertyValue]: "width";
|
|
3628
|
+
};
|
|
3629
|
+
height: {
|
|
3630
|
+
readonly [$$PropertyValue]: "width";
|
|
3631
|
+
};
|
|
3632
|
+
};
|
|
3518
3633
|
sizeMin: (value: {
|
|
3519
3634
|
readonly [$$PropertyValue]: "width";
|
|
3520
3635
|
}) => {
|
|
@@ -3531,6 +3646,16 @@ export declare const StyledCollapseIcon: import("@stitches/react/types/styled-co
|
|
|
3531
3646
|
readonly [$$PropertyValue]: "width";
|
|
3532
3647
|
};
|
|
3533
3648
|
};
|
|
3649
|
+
maxSize: (value: {
|
|
3650
|
+
readonly [$$PropertyValue]: "width";
|
|
3651
|
+
}) => {
|
|
3652
|
+
maxWidth: {
|
|
3653
|
+
readonly [$$PropertyValue]: "width";
|
|
3654
|
+
};
|
|
3655
|
+
maxHeight: {
|
|
3656
|
+
readonly [$$PropertyValue]: "width";
|
|
3657
|
+
};
|
|
3658
|
+
};
|
|
3534
3659
|
sizeMax: (value: {
|
|
3535
3660
|
readonly [$$PropertyValue]: "width";
|
|
3536
3661
|
}) => {
|
|
@@ -3561,6 +3686,13 @@ export declare const StyledCollapseIcon: import("@stitches/react/types/styled-co
|
|
|
3561
3686
|
}) => {
|
|
3562
3687
|
backgroundImage: string;
|
|
3563
3688
|
};
|
|
3689
|
+
tdl: (value: {
|
|
3690
|
+
readonly [$$PropertyValue]: "textDecorationLine";
|
|
3691
|
+
}) => {
|
|
3692
|
+
textDecorationLine: {
|
|
3693
|
+
readonly [$$PropertyValue]: "textDecorationLine";
|
|
3694
|
+
};
|
|
3695
|
+
};
|
|
3564
3696
|
textGradient: (value: {
|
|
3565
3697
|
readonly [$$PropertyValue]: "backgroundImage";
|
|
3566
3698
|
}) => {
|
|
@@ -4411,6 +4543,22 @@ export declare const StyledCollapseGroup: import("@stitches/react/types/styled-c
|
|
|
4411
4543
|
readonly [$$PropertyValue]: "width";
|
|
4412
4544
|
};
|
|
4413
4545
|
};
|
|
4546
|
+
minSize: (value: {
|
|
4547
|
+
readonly [$$PropertyValue]: "width";
|
|
4548
|
+
}) => {
|
|
4549
|
+
minWidth: {
|
|
4550
|
+
readonly [$$PropertyValue]: "width";
|
|
4551
|
+
};
|
|
4552
|
+
minHeight: {
|
|
4553
|
+
readonly [$$PropertyValue]: "width";
|
|
4554
|
+
};
|
|
4555
|
+
width: {
|
|
4556
|
+
readonly [$$PropertyValue]: "width";
|
|
4557
|
+
};
|
|
4558
|
+
height: {
|
|
4559
|
+
readonly [$$PropertyValue]: "width";
|
|
4560
|
+
};
|
|
4561
|
+
};
|
|
4414
4562
|
sizeMin: (value: {
|
|
4415
4563
|
readonly [$$PropertyValue]: "width";
|
|
4416
4564
|
}) => {
|
|
@@ -4427,6 +4575,16 @@ export declare const StyledCollapseGroup: import("@stitches/react/types/styled-c
|
|
|
4427
4575
|
readonly [$$PropertyValue]: "width";
|
|
4428
4576
|
};
|
|
4429
4577
|
};
|
|
4578
|
+
maxSize: (value: {
|
|
4579
|
+
readonly [$$PropertyValue]: "width";
|
|
4580
|
+
}) => {
|
|
4581
|
+
maxWidth: {
|
|
4582
|
+
readonly [$$PropertyValue]: "width";
|
|
4583
|
+
};
|
|
4584
|
+
maxHeight: {
|
|
4585
|
+
readonly [$$PropertyValue]: "width";
|
|
4586
|
+
};
|
|
4587
|
+
};
|
|
4430
4588
|
sizeMax: (value: {
|
|
4431
4589
|
readonly [$$PropertyValue]: "width";
|
|
4432
4590
|
}) => {
|
|
@@ -4457,6 +4615,13 @@ export declare const StyledCollapseGroup: import("@stitches/react/types/styled-c
|
|
|
4457
4615
|
}) => {
|
|
4458
4616
|
backgroundImage: string;
|
|
4459
4617
|
};
|
|
4618
|
+
tdl: (value: {
|
|
4619
|
+
readonly [$$PropertyValue]: "textDecorationLine";
|
|
4620
|
+
}) => {
|
|
4621
|
+
textDecorationLine: {
|
|
4622
|
+
readonly [$$PropertyValue]: "textDecorationLine";
|
|
4623
|
+
};
|
|
4624
|
+
};
|
|
4460
4625
|
textGradient: (value: {
|
|
4461
4626
|
readonly [$$PropertyValue]: "backgroundImage";
|
|
4462
4627
|
}) => {
|
|
@@ -13,10 +13,12 @@ const StyledCollapse = (0, _stitches.styled)('div', {
|
|
|
13
13
|
margin: 0
|
|
14
14
|
}
|
|
15
15
|
},
|
|
16
|
-
'.nextui-collapse-title': {
|
|
16
|
+
'.nextui-collapse-title-container': {
|
|
17
17
|
d: 'flex',
|
|
18
18
|
jc: 'space-between',
|
|
19
|
-
ai: 'center'
|
|
19
|
+
ai: 'center'
|
|
20
|
+
},
|
|
21
|
+
'.nextui-collapse-title': {
|
|
20
22
|
color: '$foreground'
|
|
21
23
|
},
|
|
22
24
|
'.nextui-collapse-subtitle': {
|
|
@@ -838,6 +838,22 @@ export declare const StyledContainer: import("@stitches/react/types/styled-compo
|
|
|
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 StyledContainer: import("@stitches/react/types/styled-compo
|
|
|
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 StyledContainer: import("@stitches/react/types/styled-compo
|
|
|
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
|
}) => {
|
|
@@ -837,6 +837,22 @@ export declare const StyledDivider: import("@stitches/react/types/styled-compone
|
|
|
837
837
|
readonly [$$PropertyValue]: "width";
|
|
838
838
|
};
|
|
839
839
|
};
|
|
840
|
+
minSize: (value: {
|
|
841
|
+
readonly [$$PropertyValue]: "width";
|
|
842
|
+
}) => {
|
|
843
|
+
minWidth: {
|
|
844
|
+
readonly [$$PropertyValue]: "width";
|
|
845
|
+
};
|
|
846
|
+
minHeight: {
|
|
847
|
+
readonly [$$PropertyValue]: "width";
|
|
848
|
+
};
|
|
849
|
+
width: {
|
|
850
|
+
readonly [$$PropertyValue]: "width";
|
|
851
|
+
};
|
|
852
|
+
height: {
|
|
853
|
+
readonly [$$PropertyValue]: "width";
|
|
854
|
+
};
|
|
855
|
+
};
|
|
840
856
|
sizeMin: (value: {
|
|
841
857
|
readonly [$$PropertyValue]: "width";
|
|
842
858
|
}) => {
|
|
@@ -853,6 +869,16 @@ export declare const StyledDivider: import("@stitches/react/types/styled-compone
|
|
|
853
869
|
readonly [$$PropertyValue]: "width";
|
|
854
870
|
};
|
|
855
871
|
};
|
|
872
|
+
maxSize: (value: {
|
|
873
|
+
readonly [$$PropertyValue]: "width";
|
|
874
|
+
}) => {
|
|
875
|
+
maxWidth: {
|
|
876
|
+
readonly [$$PropertyValue]: "width";
|
|
877
|
+
};
|
|
878
|
+
maxHeight: {
|
|
879
|
+
readonly [$$PropertyValue]: "width";
|
|
880
|
+
};
|
|
881
|
+
};
|
|
856
882
|
sizeMax: (value: {
|
|
857
883
|
readonly [$$PropertyValue]: "width";
|
|
858
884
|
}) => {
|
|
@@ -883,6 +909,13 @@ export declare const StyledDivider: import("@stitches/react/types/styled-compone
|
|
|
883
909
|
}) => {
|
|
884
910
|
backgroundImage: string;
|
|
885
911
|
};
|
|
912
|
+
tdl: (value: {
|
|
913
|
+
readonly [$$PropertyValue]: "textDecorationLine";
|
|
914
|
+
}) => {
|
|
915
|
+
textDecorationLine: {
|
|
916
|
+
readonly [$$PropertyValue]: "textDecorationLine";
|
|
917
|
+
};
|
|
918
|
+
};
|
|
886
919
|
textGradient: (value: {
|
|
887
920
|
readonly [$$PropertyValue]: "backgroundImage";
|
|
888
921
|
}) => {
|
|
@@ -1729,6 +1762,22 @@ export declare const StyledDividerText: import("@stitches/react/types/styled-com
|
|
|
1729
1762
|
readonly [$$PropertyValue]: "width";
|
|
1730
1763
|
};
|
|
1731
1764
|
};
|
|
1765
|
+
minSize: (value: {
|
|
1766
|
+
readonly [$$PropertyValue]: "width";
|
|
1767
|
+
}) => {
|
|
1768
|
+
minWidth: {
|
|
1769
|
+
readonly [$$PropertyValue]: "width";
|
|
1770
|
+
};
|
|
1771
|
+
minHeight: {
|
|
1772
|
+
readonly [$$PropertyValue]: "width";
|
|
1773
|
+
};
|
|
1774
|
+
width: {
|
|
1775
|
+
readonly [$$PropertyValue]: "width";
|
|
1776
|
+
};
|
|
1777
|
+
height: {
|
|
1778
|
+
readonly [$$PropertyValue]: "width";
|
|
1779
|
+
};
|
|
1780
|
+
};
|
|
1732
1781
|
sizeMin: (value: {
|
|
1733
1782
|
readonly [$$PropertyValue]: "width";
|
|
1734
1783
|
}) => {
|
|
@@ -1745,6 +1794,16 @@ export declare const StyledDividerText: import("@stitches/react/types/styled-com
|
|
|
1745
1794
|
readonly [$$PropertyValue]: "width";
|
|
1746
1795
|
};
|
|
1747
1796
|
};
|
|
1797
|
+
maxSize: (value: {
|
|
1798
|
+
readonly [$$PropertyValue]: "width";
|
|
1799
|
+
}) => {
|
|
1800
|
+
maxWidth: {
|
|
1801
|
+
readonly [$$PropertyValue]: "width";
|
|
1802
|
+
};
|
|
1803
|
+
maxHeight: {
|
|
1804
|
+
readonly [$$PropertyValue]: "width";
|
|
1805
|
+
};
|
|
1806
|
+
};
|
|
1748
1807
|
sizeMax: (value: {
|
|
1749
1808
|
readonly [$$PropertyValue]: "width";
|
|
1750
1809
|
}) => {
|
|
@@ -1775,6 +1834,13 @@ export declare const StyledDividerText: import("@stitches/react/types/styled-com
|
|
|
1775
1834
|
}) => {
|
|
1776
1835
|
backgroundImage: string;
|
|
1777
1836
|
};
|
|
1837
|
+
tdl: (value: {
|
|
1838
|
+
readonly [$$PropertyValue]: "textDecorationLine";
|
|
1839
|
+
}) => {
|
|
1840
|
+
textDecorationLine: {
|
|
1841
|
+
readonly [$$PropertyValue]: "textDecorationLine";
|
|
1842
|
+
};
|
|
1843
|
+
};
|
|
1778
1844
|
textGradient: (value: {
|
|
1779
1845
|
readonly [$$PropertyValue]: "backgroundImage";
|
|
1780
1846
|
}) => {
|
|
@@ -835,6 +835,22 @@ export declare const StyledGridContainer: import("@stitches/react/types/styled-c
|
|
|
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 StyledGridContainer: import("@stitches/react/types/styled-c
|
|
|
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 StyledGridContainer: import("@stitches/react/types/styled-c
|
|
|
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
|
}) => {
|
|
@@ -1725,6 +1758,22 @@ export declare const StyledGridItem: import("@stitches/react/types/styled-compon
|
|
|
1725
1758
|
readonly [$$PropertyValue]: "width";
|
|
1726
1759
|
};
|
|
1727
1760
|
};
|
|
1761
|
+
minSize: (value: {
|
|
1762
|
+
readonly [$$PropertyValue]: "width";
|
|
1763
|
+
}) => {
|
|
1764
|
+
minWidth: {
|
|
1765
|
+
readonly [$$PropertyValue]: "width";
|
|
1766
|
+
};
|
|
1767
|
+
minHeight: {
|
|
1768
|
+
readonly [$$PropertyValue]: "width";
|
|
1769
|
+
};
|
|
1770
|
+
width: {
|
|
1771
|
+
readonly [$$PropertyValue]: "width";
|
|
1772
|
+
};
|
|
1773
|
+
height: {
|
|
1774
|
+
readonly [$$PropertyValue]: "width";
|
|
1775
|
+
};
|
|
1776
|
+
};
|
|
1728
1777
|
sizeMin: (value: {
|
|
1729
1778
|
readonly [$$PropertyValue]: "width";
|
|
1730
1779
|
}) => {
|
|
@@ -1741,6 +1790,16 @@ export declare const StyledGridItem: import("@stitches/react/types/styled-compon
|
|
|
1741
1790
|
readonly [$$PropertyValue]: "width";
|
|
1742
1791
|
};
|
|
1743
1792
|
};
|
|
1793
|
+
maxSize: (value: {
|
|
1794
|
+
readonly [$$PropertyValue]: "width";
|
|
1795
|
+
}) => {
|
|
1796
|
+
maxWidth: {
|
|
1797
|
+
readonly [$$PropertyValue]: "width";
|
|
1798
|
+
};
|
|
1799
|
+
maxHeight: {
|
|
1800
|
+
readonly [$$PropertyValue]: "width";
|
|
1801
|
+
};
|
|
1802
|
+
};
|
|
1744
1803
|
sizeMax: (value: {
|
|
1745
1804
|
readonly [$$PropertyValue]: "width";
|
|
1746
1805
|
}) => {
|
|
@@ -1771,6 +1830,13 @@ export declare const StyledGridItem: import("@stitches/react/types/styled-compon
|
|
|
1771
1830
|
}) => {
|
|
1772
1831
|
backgroundImage: string;
|
|
1773
1832
|
};
|
|
1833
|
+
tdl: (value: {
|
|
1834
|
+
readonly [$$PropertyValue]: "textDecorationLine";
|
|
1835
|
+
}) => {
|
|
1836
|
+
textDecorationLine: {
|
|
1837
|
+
readonly [$$PropertyValue]: "textDecorationLine";
|
|
1838
|
+
};
|
|
1839
|
+
};
|
|
1774
1840
|
textGradient: (value: {
|
|
1775
1841
|
readonly [$$PropertyValue]: "backgroundImage";
|
|
1776
1842
|
}) => {
|
|
@@ -837,6 +837,22 @@ export declare const StyledImageContainer: import("@stitches/react/types/styled-
|
|
|
837
837
|
readonly [$$PropertyValue]: "width";
|
|
838
838
|
};
|
|
839
839
|
};
|
|
840
|
+
minSize: (value: {
|
|
841
|
+
readonly [$$PropertyValue]: "width";
|
|
842
|
+
}) => {
|
|
843
|
+
minWidth: {
|
|
844
|
+
readonly [$$PropertyValue]: "width";
|
|
845
|
+
};
|
|
846
|
+
minHeight: {
|
|
847
|
+
readonly [$$PropertyValue]: "width";
|
|
848
|
+
};
|
|
849
|
+
width: {
|
|
850
|
+
readonly [$$PropertyValue]: "width";
|
|
851
|
+
};
|
|
852
|
+
height: {
|
|
853
|
+
readonly [$$PropertyValue]: "width";
|
|
854
|
+
};
|
|
855
|
+
};
|
|
840
856
|
sizeMin: (value: {
|
|
841
857
|
readonly [$$PropertyValue]: "width";
|
|
842
858
|
}) => {
|
|
@@ -853,6 +869,16 @@ export declare const StyledImageContainer: import("@stitches/react/types/styled-
|
|
|
853
869
|
readonly [$$PropertyValue]: "width";
|
|
854
870
|
};
|
|
855
871
|
};
|
|
872
|
+
maxSize: (value: {
|
|
873
|
+
readonly [$$PropertyValue]: "width";
|
|
874
|
+
}) => {
|
|
875
|
+
maxWidth: {
|
|
876
|
+
readonly [$$PropertyValue]: "width";
|
|
877
|
+
};
|
|
878
|
+
maxHeight: {
|
|
879
|
+
readonly [$$PropertyValue]: "width";
|
|
880
|
+
};
|
|
881
|
+
};
|
|
856
882
|
sizeMax: (value: {
|
|
857
883
|
readonly [$$PropertyValue]: "width";
|
|
858
884
|
}) => {
|
|
@@ -883,6 +909,13 @@ export declare const StyledImageContainer: import("@stitches/react/types/styled-
|
|
|
883
909
|
}) => {
|
|
884
910
|
backgroundImage: string;
|
|
885
911
|
};
|
|
912
|
+
tdl: (value: {
|
|
913
|
+
readonly [$$PropertyValue]: "textDecorationLine";
|
|
914
|
+
}) => {
|
|
915
|
+
textDecorationLine: {
|
|
916
|
+
readonly [$$PropertyValue]: "textDecorationLine";
|
|
917
|
+
};
|
|
918
|
+
};
|
|
886
919
|
textGradient: (value: {
|
|
887
920
|
readonly [$$PropertyValue]: "backgroundImage";
|
|
888
921
|
}) => {
|
|
@@ -1727,6 +1760,22 @@ export declare const StyledImage: import("@stitches/react/types/styled-component
|
|
|
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 StyledImage: import("@stitches/react/types/styled-component
|
|
|
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 StyledImage: import("@stitches/react/types/styled-component
|
|
|
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
|
}) => {
|
|
@@ -2617,6 +2683,22 @@ export declare const StyledImageSkeleton: import("@stitches/react/types/styled-c
|
|
|
2617
2683
|
readonly [$$PropertyValue]: "width";
|
|
2618
2684
|
};
|
|
2619
2685
|
};
|
|
2686
|
+
minSize: (value: {
|
|
2687
|
+
readonly [$$PropertyValue]: "width";
|
|
2688
|
+
}) => {
|
|
2689
|
+
minWidth: {
|
|
2690
|
+
readonly [$$PropertyValue]: "width";
|
|
2691
|
+
};
|
|
2692
|
+
minHeight: {
|
|
2693
|
+
readonly [$$PropertyValue]: "width";
|
|
2694
|
+
};
|
|
2695
|
+
width: {
|
|
2696
|
+
readonly [$$PropertyValue]: "width";
|
|
2697
|
+
};
|
|
2698
|
+
height: {
|
|
2699
|
+
readonly [$$PropertyValue]: "width";
|
|
2700
|
+
};
|
|
2701
|
+
};
|
|
2620
2702
|
sizeMin: (value: {
|
|
2621
2703
|
readonly [$$PropertyValue]: "width";
|
|
2622
2704
|
}) => {
|
|
@@ -2633,6 +2715,16 @@ export declare const StyledImageSkeleton: import("@stitches/react/types/styled-c
|
|
|
2633
2715
|
readonly [$$PropertyValue]: "width";
|
|
2634
2716
|
};
|
|
2635
2717
|
};
|
|
2718
|
+
maxSize: (value: {
|
|
2719
|
+
readonly [$$PropertyValue]: "width";
|
|
2720
|
+
}) => {
|
|
2721
|
+
maxWidth: {
|
|
2722
|
+
readonly [$$PropertyValue]: "width";
|
|
2723
|
+
};
|
|
2724
|
+
maxHeight: {
|
|
2725
|
+
readonly [$$PropertyValue]: "width";
|
|
2726
|
+
};
|
|
2727
|
+
};
|
|
2636
2728
|
sizeMax: (value: {
|
|
2637
2729
|
readonly [$$PropertyValue]: "width";
|
|
2638
2730
|
}) => {
|
|
@@ -2663,6 +2755,13 @@ export declare const StyledImageSkeleton: import("@stitches/react/types/styled-c
|
|
|
2663
2755
|
}) => {
|
|
2664
2756
|
backgroundImage: string;
|
|
2665
2757
|
};
|
|
2758
|
+
tdl: (value: {
|
|
2759
|
+
readonly [$$PropertyValue]: "textDecorationLine";
|
|
2760
|
+
}) => {
|
|
2761
|
+
textDecorationLine: {
|
|
2762
|
+
readonly [$$PropertyValue]: "textDecorationLine";
|
|
2763
|
+
};
|
|
2764
|
+
};
|
|
2666
2765
|
textGradient: (value: {
|
|
2667
2766
|
readonly [$$PropertyValue]: "backgroundImage";
|
|
2668
2767
|
}) => {
|