@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
|
@@ -835,6 +835,22 @@ export declare const StyledTooltipTrigger: import("@stitches/react/types/styled-
|
|
|
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 StyledTooltipTrigger: import("@stitches/react/types/styled-
|
|
|
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 StyledTooltipTrigger: import("@stitches/react/types/styled-
|
|
|
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 StyledTooltipArrow: import("@stitches/react/types/styled-co
|
|
|
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 StyledTooltipArrow: import("@stitches/react/types/styled-co
|
|
|
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 StyledTooltipArrow: import("@stitches/react/types/styled-co
|
|
|
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
|
}) => {
|
|
@@ -2617,6 +2683,22 @@ export declare const StyledTooltip: import("@stitches/react/types/styled-compone
|
|
|
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 StyledTooltip: import("@stitches/react/types/styled-compone
|
|
|
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 StyledTooltip: import("@stitches/react/types/styled-compone
|
|
|
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
|
}) => {
|
|
@@ -3513,6 +3612,22 @@ export declare const StyledTooltipContent: import("@stitches/react/types/styled-
|
|
|
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 StyledTooltipContent: import("@stitches/react/types/styled-
|
|
|
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 StyledTooltipContent: import("@stitches/react/types/styled-
|
|
|
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
|
}) => {
|
|
@@ -835,6 +835,22 @@ export declare const StyledUser: import("@stitches/react/types/styled-component"
|
|
|
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 StyledUser: import("@stitches/react/types/styled-component"
|
|
|
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 StyledUser: import("@stitches/react/types/styled-component"
|
|
|
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 StyledUserInfo: 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 StyledUserInfo: 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 StyledUserInfo: 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
|
}) => {
|
|
@@ -2615,6 +2681,22 @@ export declare const StyledUserName: import("@stitches/react/types/styled-compon
|
|
|
2615
2681
|
readonly [$$PropertyValue]: "width";
|
|
2616
2682
|
};
|
|
2617
2683
|
};
|
|
2684
|
+
minSize: (value: {
|
|
2685
|
+
readonly [$$PropertyValue]: "width";
|
|
2686
|
+
}) => {
|
|
2687
|
+
minWidth: {
|
|
2688
|
+
readonly [$$PropertyValue]: "width";
|
|
2689
|
+
};
|
|
2690
|
+
minHeight: {
|
|
2691
|
+
readonly [$$PropertyValue]: "width";
|
|
2692
|
+
};
|
|
2693
|
+
width: {
|
|
2694
|
+
readonly [$$PropertyValue]: "width";
|
|
2695
|
+
};
|
|
2696
|
+
height: {
|
|
2697
|
+
readonly [$$PropertyValue]: "width";
|
|
2698
|
+
};
|
|
2699
|
+
};
|
|
2618
2700
|
sizeMin: (value: {
|
|
2619
2701
|
readonly [$$PropertyValue]: "width";
|
|
2620
2702
|
}) => {
|
|
@@ -2631,6 +2713,16 @@ export declare const StyledUserName: import("@stitches/react/types/styled-compon
|
|
|
2631
2713
|
readonly [$$PropertyValue]: "width";
|
|
2632
2714
|
};
|
|
2633
2715
|
};
|
|
2716
|
+
maxSize: (value: {
|
|
2717
|
+
readonly [$$PropertyValue]: "width";
|
|
2718
|
+
}) => {
|
|
2719
|
+
maxWidth: {
|
|
2720
|
+
readonly [$$PropertyValue]: "width";
|
|
2721
|
+
};
|
|
2722
|
+
maxHeight: {
|
|
2723
|
+
readonly [$$PropertyValue]: "width";
|
|
2724
|
+
};
|
|
2725
|
+
};
|
|
2634
2726
|
sizeMax: (value: {
|
|
2635
2727
|
readonly [$$PropertyValue]: "width";
|
|
2636
2728
|
}) => {
|
|
@@ -2661,6 +2753,13 @@ export declare const StyledUserName: import("@stitches/react/types/styled-compon
|
|
|
2661
2753
|
}) => {
|
|
2662
2754
|
backgroundImage: string;
|
|
2663
2755
|
};
|
|
2756
|
+
tdl: (value: {
|
|
2757
|
+
readonly [$$PropertyValue]: "textDecorationLine";
|
|
2758
|
+
}) => {
|
|
2759
|
+
textDecorationLine: {
|
|
2760
|
+
readonly [$$PropertyValue]: "textDecorationLine";
|
|
2761
|
+
};
|
|
2762
|
+
};
|
|
2664
2763
|
textGradient: (value: {
|
|
2665
2764
|
readonly [$$PropertyValue]: "backgroundImage";
|
|
2666
2765
|
}) => {
|
|
@@ -3505,6 +3604,22 @@ export declare const StyledUserSocial: import("@stitches/react/types/styled-comp
|
|
|
3505
3604
|
readonly [$$PropertyValue]: "width";
|
|
3506
3605
|
};
|
|
3507
3606
|
};
|
|
3607
|
+
minSize: (value: {
|
|
3608
|
+
readonly [$$PropertyValue]: "width";
|
|
3609
|
+
}) => {
|
|
3610
|
+
minWidth: {
|
|
3611
|
+
readonly [$$PropertyValue]: "width";
|
|
3612
|
+
};
|
|
3613
|
+
minHeight: {
|
|
3614
|
+
readonly [$$PropertyValue]: "width";
|
|
3615
|
+
};
|
|
3616
|
+
width: {
|
|
3617
|
+
readonly [$$PropertyValue]: "width";
|
|
3618
|
+
};
|
|
3619
|
+
height: {
|
|
3620
|
+
readonly [$$PropertyValue]: "width";
|
|
3621
|
+
};
|
|
3622
|
+
};
|
|
3508
3623
|
sizeMin: (value: {
|
|
3509
3624
|
readonly [$$PropertyValue]: "width";
|
|
3510
3625
|
}) => {
|
|
@@ -3521,6 +3636,16 @@ export declare const StyledUserSocial: import("@stitches/react/types/styled-comp
|
|
|
3521
3636
|
readonly [$$PropertyValue]: "width";
|
|
3522
3637
|
};
|
|
3523
3638
|
};
|
|
3639
|
+
maxSize: (value: {
|
|
3640
|
+
readonly [$$PropertyValue]: "width";
|
|
3641
|
+
}) => {
|
|
3642
|
+
maxWidth: {
|
|
3643
|
+
readonly [$$PropertyValue]: "width";
|
|
3644
|
+
};
|
|
3645
|
+
maxHeight: {
|
|
3646
|
+
readonly [$$PropertyValue]: "width";
|
|
3647
|
+
};
|
|
3648
|
+
};
|
|
3524
3649
|
sizeMax: (value: {
|
|
3525
3650
|
readonly [$$PropertyValue]: "width";
|
|
3526
3651
|
}) => {
|
|
@@ -3551,6 +3676,13 @@ export declare const StyledUserSocial: import("@stitches/react/types/styled-comp
|
|
|
3551
3676
|
}) => {
|
|
3552
3677
|
backgroundImage: string;
|
|
3553
3678
|
};
|
|
3679
|
+
tdl: (value: {
|
|
3680
|
+
readonly [$$PropertyValue]: "textDecorationLine";
|
|
3681
|
+
}) => {
|
|
3682
|
+
textDecorationLine: {
|
|
3683
|
+
readonly [$$PropertyValue]: "textDecorationLine";
|
|
3684
|
+
};
|
|
3685
|
+
};
|
|
3554
3686
|
textGradient: (value: {
|
|
3555
3687
|
readonly [$$PropertyValue]: "backgroundImage";
|
|
3556
3688
|
}) => {
|
|
@@ -4395,6 +4527,22 @@ export declare const StyledUserLink: import("@stitches/react/types/styled-compon
|
|
|
4395
4527
|
readonly [$$PropertyValue]: "width";
|
|
4396
4528
|
};
|
|
4397
4529
|
};
|
|
4530
|
+
minSize: (value: {
|
|
4531
|
+
readonly [$$PropertyValue]: "width";
|
|
4532
|
+
}) => {
|
|
4533
|
+
minWidth: {
|
|
4534
|
+
readonly [$$PropertyValue]: "width";
|
|
4535
|
+
};
|
|
4536
|
+
minHeight: {
|
|
4537
|
+
readonly [$$PropertyValue]: "width";
|
|
4538
|
+
};
|
|
4539
|
+
width: {
|
|
4540
|
+
readonly [$$PropertyValue]: "width";
|
|
4541
|
+
};
|
|
4542
|
+
height: {
|
|
4543
|
+
readonly [$$PropertyValue]: "width";
|
|
4544
|
+
};
|
|
4545
|
+
};
|
|
4398
4546
|
sizeMin: (value: {
|
|
4399
4547
|
readonly [$$PropertyValue]: "width";
|
|
4400
4548
|
}) => {
|
|
@@ -4411,6 +4559,16 @@ export declare const StyledUserLink: import("@stitches/react/types/styled-compon
|
|
|
4411
4559
|
readonly [$$PropertyValue]: "width";
|
|
4412
4560
|
};
|
|
4413
4561
|
};
|
|
4562
|
+
maxSize: (value: {
|
|
4563
|
+
readonly [$$PropertyValue]: "width";
|
|
4564
|
+
}) => {
|
|
4565
|
+
maxWidth: {
|
|
4566
|
+
readonly [$$PropertyValue]: "width";
|
|
4567
|
+
};
|
|
4568
|
+
maxHeight: {
|
|
4569
|
+
readonly [$$PropertyValue]: "width";
|
|
4570
|
+
};
|
|
4571
|
+
};
|
|
4414
4572
|
sizeMax: (value: {
|
|
4415
4573
|
readonly [$$PropertyValue]: "width";
|
|
4416
4574
|
}) => {
|
|
@@ -4441,6 +4599,13 @@ export declare const StyledUserLink: import("@stitches/react/types/styled-compon
|
|
|
4441
4599
|
}) => {
|
|
4442
4600
|
backgroundImage: string;
|
|
4443
4601
|
};
|
|
4602
|
+
tdl: (value: {
|
|
4603
|
+
readonly [$$PropertyValue]: "textDecorationLine";
|
|
4604
|
+
}) => {
|
|
4605
|
+
textDecorationLine: {
|
|
4606
|
+
readonly [$$PropertyValue]: "textDecorationLine";
|
|
4607
|
+
};
|
|
4608
|
+
};
|
|
4444
4609
|
textGradient: (value: {
|
|
4445
4610
|
readonly [$$PropertyValue]: "backgroundImage";
|
|
4446
4611
|
}) => {
|
package/esm/utils/drip.d.ts
CHANGED
|
@@ -850,6 +850,22 @@ export declare const StyledDrip: import("@stitches/react/types/styled-component"
|
|
|
850
850
|
readonly [$$PropertyValue]: "width";
|
|
851
851
|
};
|
|
852
852
|
};
|
|
853
|
+
minSize: (value: {
|
|
854
|
+
readonly [$$PropertyValue]: "width";
|
|
855
|
+
}) => {
|
|
856
|
+
minWidth: {
|
|
857
|
+
readonly [$$PropertyValue]: "width";
|
|
858
|
+
};
|
|
859
|
+
minHeight: {
|
|
860
|
+
readonly [$$PropertyValue]: "width";
|
|
861
|
+
};
|
|
862
|
+
width: {
|
|
863
|
+
readonly [$$PropertyValue]: "width";
|
|
864
|
+
};
|
|
865
|
+
height: {
|
|
866
|
+
readonly [$$PropertyValue]: "width";
|
|
867
|
+
};
|
|
868
|
+
};
|
|
853
869
|
sizeMin: (value: {
|
|
854
870
|
readonly [$$PropertyValue]: "width";
|
|
855
871
|
}) => {
|
|
@@ -866,6 +882,16 @@ export declare const StyledDrip: import("@stitches/react/types/styled-component"
|
|
|
866
882
|
readonly [$$PropertyValue]: "width";
|
|
867
883
|
};
|
|
868
884
|
};
|
|
885
|
+
maxSize: (value: {
|
|
886
|
+
readonly [$$PropertyValue]: "width";
|
|
887
|
+
}) => {
|
|
888
|
+
maxWidth: {
|
|
889
|
+
readonly [$$PropertyValue]: "width";
|
|
890
|
+
};
|
|
891
|
+
maxHeight: {
|
|
892
|
+
readonly [$$PropertyValue]: "width";
|
|
893
|
+
};
|
|
894
|
+
};
|
|
869
895
|
sizeMax: (value: {
|
|
870
896
|
readonly [$$PropertyValue]: "width";
|
|
871
897
|
}) => {
|
|
@@ -896,6 +922,13 @@ export declare const StyledDrip: import("@stitches/react/types/styled-component"
|
|
|
896
922
|
}) => {
|
|
897
923
|
backgroundImage: string;
|
|
898
924
|
};
|
|
925
|
+
tdl: (value: {
|
|
926
|
+
readonly [$$PropertyValue]: "textDecorationLine";
|
|
927
|
+
}) => {
|
|
928
|
+
textDecorationLine: {
|
|
929
|
+
readonly [$$PropertyValue]: "textDecorationLine";
|
|
930
|
+
};
|
|
931
|
+
};
|
|
899
932
|
textGradient: (value: {
|
|
900
933
|
readonly [$$PropertyValue]: "backgroundImage";
|
|
901
934
|
}) => {
|