@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 StyledRadioInput: import("@stitches/react/types/styled-comp
|
|
|
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 StyledRadioInput: import("@stitches/react/types/styled-comp
|
|
|
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 StyledRadioInput: import("@stitches/react/types/styled-comp
|
|
|
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
|
}) => {
|
|
@@ -1728,6 +1761,22 @@ export declare const StyledRadioLabel: import("@stitches/react/types/styled-comp
|
|
|
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 StyledRadioLabel: import("@stitches/react/types/styled-comp
|
|
|
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 StyledRadioLabel: import("@stitches/react/types/styled-comp
|
|
|
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
|
}) => {
|
|
@@ -2618,6 +2684,22 @@ export declare const StyledRadioPoint: import("@stitches/react/types/styled-comp
|
|
|
2618
2684
|
readonly [$$PropertyValue]: "width";
|
|
2619
2685
|
};
|
|
2620
2686
|
};
|
|
2687
|
+
minSize: (value: {
|
|
2688
|
+
readonly [$$PropertyValue]: "width";
|
|
2689
|
+
}) => {
|
|
2690
|
+
minWidth: {
|
|
2691
|
+
readonly [$$PropertyValue]: "width";
|
|
2692
|
+
};
|
|
2693
|
+
minHeight: {
|
|
2694
|
+
readonly [$$PropertyValue]: "width";
|
|
2695
|
+
};
|
|
2696
|
+
width: {
|
|
2697
|
+
readonly [$$PropertyValue]: "width";
|
|
2698
|
+
};
|
|
2699
|
+
height: {
|
|
2700
|
+
readonly [$$PropertyValue]: "width";
|
|
2701
|
+
};
|
|
2702
|
+
};
|
|
2621
2703
|
sizeMin: (value: {
|
|
2622
2704
|
readonly [$$PropertyValue]: "width";
|
|
2623
2705
|
}) => {
|
|
@@ -2634,6 +2716,16 @@ export declare const StyledRadioPoint: import("@stitches/react/types/styled-comp
|
|
|
2634
2716
|
readonly [$$PropertyValue]: "width";
|
|
2635
2717
|
};
|
|
2636
2718
|
};
|
|
2719
|
+
maxSize: (value: {
|
|
2720
|
+
readonly [$$PropertyValue]: "width";
|
|
2721
|
+
}) => {
|
|
2722
|
+
maxWidth: {
|
|
2723
|
+
readonly [$$PropertyValue]: "width";
|
|
2724
|
+
};
|
|
2725
|
+
maxHeight: {
|
|
2726
|
+
readonly [$$PropertyValue]: "width";
|
|
2727
|
+
};
|
|
2728
|
+
};
|
|
2637
2729
|
sizeMax: (value: {
|
|
2638
2730
|
readonly [$$PropertyValue]: "width";
|
|
2639
2731
|
}) => {
|
|
@@ -2664,6 +2756,13 @@ export declare const StyledRadioPoint: import("@stitches/react/types/styled-comp
|
|
|
2664
2756
|
}) => {
|
|
2665
2757
|
backgroundImage: string;
|
|
2666
2758
|
};
|
|
2759
|
+
tdl: (value: {
|
|
2760
|
+
readonly [$$PropertyValue]: "textDecorationLine";
|
|
2761
|
+
}) => {
|
|
2762
|
+
textDecorationLine: {
|
|
2763
|
+
readonly [$$PropertyValue]: "textDecorationLine";
|
|
2764
|
+
};
|
|
2765
|
+
};
|
|
2667
2766
|
textGradient: (value: {
|
|
2668
2767
|
readonly [$$PropertyValue]: "backgroundImage";
|
|
2669
2768
|
}) => {
|
|
@@ -3515,6 +3614,22 @@ export declare const StyledRadio: import("@stitches/react/types/styled-component
|
|
|
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 StyledRadio: import("@stitches/react/types/styled-component
|
|
|
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 StyledRadio: import("@stitches/react/types/styled-component
|
|
|
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
|
}) => {
|
|
@@ -4408,6 +4540,22 @@ export declare const StyledRadioGroup: import("@stitches/react/types/styled-comp
|
|
|
4408
4540
|
readonly [$$PropertyValue]: "width";
|
|
4409
4541
|
};
|
|
4410
4542
|
};
|
|
4543
|
+
minSize: (value: {
|
|
4544
|
+
readonly [$$PropertyValue]: "width";
|
|
4545
|
+
}) => {
|
|
4546
|
+
minWidth: {
|
|
4547
|
+
readonly [$$PropertyValue]: "width";
|
|
4548
|
+
};
|
|
4549
|
+
minHeight: {
|
|
4550
|
+
readonly [$$PropertyValue]: "width";
|
|
4551
|
+
};
|
|
4552
|
+
width: {
|
|
4553
|
+
readonly [$$PropertyValue]: "width";
|
|
4554
|
+
};
|
|
4555
|
+
height: {
|
|
4556
|
+
readonly [$$PropertyValue]: "width";
|
|
4557
|
+
};
|
|
4558
|
+
};
|
|
4411
4559
|
sizeMin: (value: {
|
|
4412
4560
|
readonly [$$PropertyValue]: "width";
|
|
4413
4561
|
}) => {
|
|
@@ -4424,6 +4572,16 @@ export declare const StyledRadioGroup: import("@stitches/react/types/styled-comp
|
|
|
4424
4572
|
readonly [$$PropertyValue]: "width";
|
|
4425
4573
|
};
|
|
4426
4574
|
};
|
|
4575
|
+
maxSize: (value: {
|
|
4576
|
+
readonly [$$PropertyValue]: "width";
|
|
4577
|
+
}) => {
|
|
4578
|
+
maxWidth: {
|
|
4579
|
+
readonly [$$PropertyValue]: "width";
|
|
4580
|
+
};
|
|
4581
|
+
maxHeight: {
|
|
4582
|
+
readonly [$$PropertyValue]: "width";
|
|
4583
|
+
};
|
|
4584
|
+
};
|
|
4427
4585
|
sizeMax: (value: {
|
|
4428
4586
|
readonly [$$PropertyValue]: "width";
|
|
4429
4587
|
}) => {
|
|
@@ -4454,6 +4612,13 @@ export declare const StyledRadioGroup: import("@stitches/react/types/styled-comp
|
|
|
4454
4612
|
}) => {
|
|
4455
4613
|
backgroundImage: string;
|
|
4456
4614
|
};
|
|
4615
|
+
tdl: (value: {
|
|
4616
|
+
readonly [$$PropertyValue]: "textDecorationLine";
|
|
4617
|
+
}) => {
|
|
4618
|
+
textDecorationLine: {
|
|
4619
|
+
readonly [$$PropertyValue]: "textDecorationLine";
|
|
4620
|
+
};
|
|
4621
|
+
};
|
|
4457
4622
|
textGradient: (value: {
|
|
4458
4623
|
readonly [$$PropertyValue]: "backgroundImage";
|
|
4459
4624
|
}) => {
|
|
@@ -5298,6 +5463,22 @@ export declare const StyledRadioDescription: import("@stitches/react/types/style
|
|
|
5298
5463
|
readonly [$$PropertyValue]: "width";
|
|
5299
5464
|
};
|
|
5300
5465
|
};
|
|
5466
|
+
minSize: (value: {
|
|
5467
|
+
readonly [$$PropertyValue]: "width";
|
|
5468
|
+
}) => {
|
|
5469
|
+
minWidth: {
|
|
5470
|
+
readonly [$$PropertyValue]: "width";
|
|
5471
|
+
};
|
|
5472
|
+
minHeight: {
|
|
5473
|
+
readonly [$$PropertyValue]: "width";
|
|
5474
|
+
};
|
|
5475
|
+
width: {
|
|
5476
|
+
readonly [$$PropertyValue]: "width";
|
|
5477
|
+
};
|
|
5478
|
+
height: {
|
|
5479
|
+
readonly [$$PropertyValue]: "width";
|
|
5480
|
+
};
|
|
5481
|
+
};
|
|
5301
5482
|
sizeMin: (value: {
|
|
5302
5483
|
readonly [$$PropertyValue]: "width";
|
|
5303
5484
|
}) => {
|
|
@@ -5314,6 +5495,16 @@ export declare const StyledRadioDescription: import("@stitches/react/types/style
|
|
|
5314
5495
|
readonly [$$PropertyValue]: "width";
|
|
5315
5496
|
};
|
|
5316
5497
|
};
|
|
5498
|
+
maxSize: (value: {
|
|
5499
|
+
readonly [$$PropertyValue]: "width";
|
|
5500
|
+
}) => {
|
|
5501
|
+
maxWidth: {
|
|
5502
|
+
readonly [$$PropertyValue]: "width";
|
|
5503
|
+
};
|
|
5504
|
+
maxHeight: {
|
|
5505
|
+
readonly [$$PropertyValue]: "width";
|
|
5506
|
+
};
|
|
5507
|
+
};
|
|
5317
5508
|
sizeMax: (value: {
|
|
5318
5509
|
readonly [$$PropertyValue]: "width";
|
|
5319
5510
|
}) => {
|
|
@@ -5344,6 +5535,13 @@ export declare const StyledRadioDescription: import("@stitches/react/types/style
|
|
|
5344
5535
|
}) => {
|
|
5345
5536
|
backgroundImage: string;
|
|
5346
5537
|
};
|
|
5538
|
+
tdl: (value: {
|
|
5539
|
+
readonly [$$PropertyValue]: "textDecorationLine";
|
|
5540
|
+
}) => {
|
|
5541
|
+
textDecorationLine: {
|
|
5542
|
+
readonly [$$PropertyValue]: "textDecorationLine";
|
|
5543
|
+
};
|
|
5544
|
+
};
|
|
5347
5545
|
textGradient: (value: {
|
|
5348
5546
|
readonly [$$PropertyValue]: "backgroundImage";
|
|
5349
5547
|
}) => {
|
package/cjs/row/row.styles.d.ts
CHANGED
|
@@ -837,6 +837,22 @@ export declare const StyledRow: import("@stitches/react/types/styled-component")
|
|
|
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 StyledRow: import("@stitches/react/types/styled-component")
|
|
|
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 StyledRow: import("@stitches/react/types/styled-component")
|
|
|
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
|
}) => {
|
|
@@ -840,6 +840,22 @@ export declare const StyledSnippet: import("@stitches/react/types/styled-compone
|
|
|
840
840
|
readonly [$$PropertyValue]: "width";
|
|
841
841
|
};
|
|
842
842
|
};
|
|
843
|
+
minSize: (value: {
|
|
844
|
+
readonly [$$PropertyValue]: "width";
|
|
845
|
+
}) => {
|
|
846
|
+
minWidth: {
|
|
847
|
+
readonly [$$PropertyValue]: "width";
|
|
848
|
+
};
|
|
849
|
+
minHeight: {
|
|
850
|
+
readonly [$$PropertyValue]: "width";
|
|
851
|
+
};
|
|
852
|
+
width: {
|
|
853
|
+
readonly [$$PropertyValue]: "width";
|
|
854
|
+
};
|
|
855
|
+
height: {
|
|
856
|
+
readonly [$$PropertyValue]: "width";
|
|
857
|
+
};
|
|
858
|
+
};
|
|
843
859
|
sizeMin: (value: {
|
|
844
860
|
readonly [$$PropertyValue]: "width";
|
|
845
861
|
}) => {
|
|
@@ -856,6 +872,16 @@ export declare const StyledSnippet: import("@stitches/react/types/styled-compone
|
|
|
856
872
|
readonly [$$PropertyValue]: "width";
|
|
857
873
|
};
|
|
858
874
|
};
|
|
875
|
+
maxSize: (value: {
|
|
876
|
+
readonly [$$PropertyValue]: "width";
|
|
877
|
+
}) => {
|
|
878
|
+
maxWidth: {
|
|
879
|
+
readonly [$$PropertyValue]: "width";
|
|
880
|
+
};
|
|
881
|
+
maxHeight: {
|
|
882
|
+
readonly [$$PropertyValue]: "width";
|
|
883
|
+
};
|
|
884
|
+
};
|
|
859
885
|
sizeMax: (value: {
|
|
860
886
|
readonly [$$PropertyValue]: "width";
|
|
861
887
|
}) => {
|
|
@@ -886,6 +912,13 @@ export declare const StyledSnippet: import("@stitches/react/types/styled-compone
|
|
|
886
912
|
}) => {
|
|
887
913
|
backgroundImage: string;
|
|
888
914
|
};
|
|
915
|
+
tdl: (value: {
|
|
916
|
+
readonly [$$PropertyValue]: "textDecorationLine";
|
|
917
|
+
}) => {
|
|
918
|
+
textDecorationLine: {
|
|
919
|
+
readonly [$$PropertyValue]: "textDecorationLine";
|
|
920
|
+
};
|
|
921
|
+
};
|
|
889
922
|
textGradient: (value: {
|
|
890
923
|
readonly [$$PropertyValue]: "backgroundImage";
|
|
891
924
|
}) => {
|
|
@@ -1732,6 +1765,22 @@ export declare const StyledSnippetPre: import("@stitches/react/types/styled-comp
|
|
|
1732
1765
|
readonly [$$PropertyValue]: "width";
|
|
1733
1766
|
};
|
|
1734
1767
|
};
|
|
1768
|
+
minSize: (value: {
|
|
1769
|
+
readonly [$$PropertyValue]: "width";
|
|
1770
|
+
}) => {
|
|
1771
|
+
minWidth: {
|
|
1772
|
+
readonly [$$PropertyValue]: "width";
|
|
1773
|
+
};
|
|
1774
|
+
minHeight: {
|
|
1775
|
+
readonly [$$PropertyValue]: "width";
|
|
1776
|
+
};
|
|
1777
|
+
width: {
|
|
1778
|
+
readonly [$$PropertyValue]: "width";
|
|
1779
|
+
};
|
|
1780
|
+
height: {
|
|
1781
|
+
readonly [$$PropertyValue]: "width";
|
|
1782
|
+
};
|
|
1783
|
+
};
|
|
1735
1784
|
sizeMin: (value: {
|
|
1736
1785
|
readonly [$$PropertyValue]: "width";
|
|
1737
1786
|
}) => {
|
|
@@ -1748,6 +1797,16 @@ export declare const StyledSnippetPre: import("@stitches/react/types/styled-comp
|
|
|
1748
1797
|
readonly [$$PropertyValue]: "width";
|
|
1749
1798
|
};
|
|
1750
1799
|
};
|
|
1800
|
+
maxSize: (value: {
|
|
1801
|
+
readonly [$$PropertyValue]: "width";
|
|
1802
|
+
}) => {
|
|
1803
|
+
maxWidth: {
|
|
1804
|
+
readonly [$$PropertyValue]: "width";
|
|
1805
|
+
};
|
|
1806
|
+
maxHeight: {
|
|
1807
|
+
readonly [$$PropertyValue]: "width";
|
|
1808
|
+
};
|
|
1809
|
+
};
|
|
1751
1810
|
sizeMax: (value: {
|
|
1752
1811
|
readonly [$$PropertyValue]: "width";
|
|
1753
1812
|
}) => {
|
|
@@ -1778,6 +1837,13 @@ export declare const StyledSnippetPre: import("@stitches/react/types/styled-comp
|
|
|
1778
1837
|
}) => {
|
|
1779
1838
|
backgroundImage: string;
|
|
1780
1839
|
};
|
|
1840
|
+
tdl: (value: {
|
|
1841
|
+
readonly [$$PropertyValue]: "textDecorationLine";
|
|
1842
|
+
}) => {
|
|
1843
|
+
textDecorationLine: {
|
|
1844
|
+
readonly [$$PropertyValue]: "textDecorationLine";
|
|
1845
|
+
};
|
|
1846
|
+
};
|
|
1781
1847
|
textGradient: (value: {
|
|
1782
1848
|
readonly [$$PropertyValue]: "backgroundImage";
|
|
1783
1849
|
}) => {
|
|
@@ -2622,6 +2688,22 @@ export declare const StyledSnippetCopyButtonIcon: import("@stitches/react/types/
|
|
|
2622
2688
|
readonly [$$PropertyValue]: "width";
|
|
2623
2689
|
};
|
|
2624
2690
|
};
|
|
2691
|
+
minSize: (value: {
|
|
2692
|
+
readonly [$$PropertyValue]: "width";
|
|
2693
|
+
}) => {
|
|
2694
|
+
minWidth: {
|
|
2695
|
+
readonly [$$PropertyValue]: "width";
|
|
2696
|
+
};
|
|
2697
|
+
minHeight: {
|
|
2698
|
+
readonly [$$PropertyValue]: "width";
|
|
2699
|
+
};
|
|
2700
|
+
width: {
|
|
2701
|
+
readonly [$$PropertyValue]: "width";
|
|
2702
|
+
};
|
|
2703
|
+
height: {
|
|
2704
|
+
readonly [$$PropertyValue]: "width";
|
|
2705
|
+
};
|
|
2706
|
+
};
|
|
2625
2707
|
sizeMin: (value: {
|
|
2626
2708
|
readonly [$$PropertyValue]: "width";
|
|
2627
2709
|
}) => {
|
|
@@ -2638,6 +2720,16 @@ export declare const StyledSnippetCopyButtonIcon: import("@stitches/react/types/
|
|
|
2638
2720
|
readonly [$$PropertyValue]: "width";
|
|
2639
2721
|
};
|
|
2640
2722
|
};
|
|
2723
|
+
maxSize: (value: {
|
|
2724
|
+
readonly [$$PropertyValue]: "width";
|
|
2725
|
+
}) => {
|
|
2726
|
+
maxWidth: {
|
|
2727
|
+
readonly [$$PropertyValue]: "width";
|
|
2728
|
+
};
|
|
2729
|
+
maxHeight: {
|
|
2730
|
+
readonly [$$PropertyValue]: "width";
|
|
2731
|
+
};
|
|
2732
|
+
};
|
|
2641
2733
|
sizeMax: (value: {
|
|
2642
2734
|
readonly [$$PropertyValue]: "width";
|
|
2643
2735
|
}) => {
|
|
@@ -2668,6 +2760,13 @@ export declare const StyledSnippetCopyButtonIcon: import("@stitches/react/types/
|
|
|
2668
2760
|
}) => {
|
|
2669
2761
|
backgroundImage: string;
|
|
2670
2762
|
};
|
|
2763
|
+
tdl: (value: {
|
|
2764
|
+
readonly [$$PropertyValue]: "textDecorationLine";
|
|
2765
|
+
}) => {
|
|
2766
|
+
textDecorationLine: {
|
|
2767
|
+
readonly [$$PropertyValue]: "textDecorationLine";
|
|
2768
|
+
};
|
|
2769
|
+
};
|
|
2671
2770
|
textGradient: (value: {
|
|
2672
2771
|
readonly [$$PropertyValue]: "backgroundImage";
|
|
2673
2772
|
}) => {
|
|
@@ -3512,6 +3611,22 @@ export declare const StyledSnippetCopyButton: import("@stitches/react/types/styl
|
|
|
3512
3611
|
readonly [$$PropertyValue]: "width";
|
|
3513
3612
|
};
|
|
3514
3613
|
};
|
|
3614
|
+
minSize: (value: {
|
|
3615
|
+
readonly [$$PropertyValue]: "width";
|
|
3616
|
+
}) => {
|
|
3617
|
+
minWidth: {
|
|
3618
|
+
readonly [$$PropertyValue]: "width";
|
|
3619
|
+
};
|
|
3620
|
+
minHeight: {
|
|
3621
|
+
readonly [$$PropertyValue]: "width";
|
|
3622
|
+
};
|
|
3623
|
+
width: {
|
|
3624
|
+
readonly [$$PropertyValue]: "width";
|
|
3625
|
+
};
|
|
3626
|
+
height: {
|
|
3627
|
+
readonly [$$PropertyValue]: "width";
|
|
3628
|
+
};
|
|
3629
|
+
};
|
|
3515
3630
|
sizeMin: (value: {
|
|
3516
3631
|
readonly [$$PropertyValue]: "width";
|
|
3517
3632
|
}) => {
|
|
@@ -3528,6 +3643,16 @@ export declare const StyledSnippetCopyButton: import("@stitches/react/types/styl
|
|
|
3528
3643
|
readonly [$$PropertyValue]: "width";
|
|
3529
3644
|
};
|
|
3530
3645
|
};
|
|
3646
|
+
maxSize: (value: {
|
|
3647
|
+
readonly [$$PropertyValue]: "width";
|
|
3648
|
+
}) => {
|
|
3649
|
+
maxWidth: {
|
|
3650
|
+
readonly [$$PropertyValue]: "width";
|
|
3651
|
+
};
|
|
3652
|
+
maxHeight: {
|
|
3653
|
+
readonly [$$PropertyValue]: "width";
|
|
3654
|
+
};
|
|
3655
|
+
};
|
|
3531
3656
|
sizeMax: (value: {
|
|
3532
3657
|
readonly [$$PropertyValue]: "width";
|
|
3533
3658
|
}) => {
|
|
@@ -3558,6 +3683,13 @@ export declare const StyledSnippetCopyButton: import("@stitches/react/types/styl
|
|
|
3558
3683
|
}) => {
|
|
3559
3684
|
backgroundImage: string;
|
|
3560
3685
|
};
|
|
3686
|
+
tdl: (value: {
|
|
3687
|
+
readonly [$$PropertyValue]: "textDecorationLine";
|
|
3688
|
+
}) => {
|
|
3689
|
+
textDecorationLine: {
|
|
3690
|
+
readonly [$$PropertyValue]: "textDecorationLine";
|
|
3691
|
+
};
|
|
3692
|
+
};
|
|
3561
3693
|
textGradient: (value: {
|
|
3562
3694
|
readonly [$$PropertyValue]: "backgroundImage";
|
|
3563
3695
|
}) => {
|
|
@@ -837,6 +837,22 @@ export declare const StyledSpacer: import("@stitches/react/types/styled-componen
|
|
|
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 StyledSpacer: import("@stitches/react/types/styled-componen
|
|
|
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 StyledSpacer: import("@stitches/react/types/styled-componen
|
|
|
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
|
}) => {
|