@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
|
@@ -839,6 +839,22 @@ export declare const StyledCheckboxLabel: import("@stitches/react/types/styled-c
|
|
|
839
839
|
readonly [$$PropertyValue]: "width";
|
|
840
840
|
};
|
|
841
841
|
};
|
|
842
|
+
minSize: (value: {
|
|
843
|
+
readonly [$$PropertyValue]: "width";
|
|
844
|
+
}) => {
|
|
845
|
+
minWidth: {
|
|
846
|
+
readonly [$$PropertyValue]: "width";
|
|
847
|
+
};
|
|
848
|
+
minHeight: {
|
|
849
|
+
readonly [$$PropertyValue]: "width";
|
|
850
|
+
};
|
|
851
|
+
width: {
|
|
852
|
+
readonly [$$PropertyValue]: "width";
|
|
853
|
+
};
|
|
854
|
+
height: {
|
|
855
|
+
readonly [$$PropertyValue]: "width";
|
|
856
|
+
};
|
|
857
|
+
};
|
|
842
858
|
sizeMin: (value: {
|
|
843
859
|
readonly [$$PropertyValue]: "width";
|
|
844
860
|
}) => {
|
|
@@ -855,6 +871,16 @@ export declare const StyledCheckboxLabel: import("@stitches/react/types/styled-c
|
|
|
855
871
|
readonly [$$PropertyValue]: "width";
|
|
856
872
|
};
|
|
857
873
|
};
|
|
874
|
+
maxSize: (value: {
|
|
875
|
+
readonly [$$PropertyValue]: "width";
|
|
876
|
+
}) => {
|
|
877
|
+
maxWidth: {
|
|
878
|
+
readonly [$$PropertyValue]: "width";
|
|
879
|
+
};
|
|
880
|
+
maxHeight: {
|
|
881
|
+
readonly [$$PropertyValue]: "width";
|
|
882
|
+
};
|
|
883
|
+
};
|
|
858
884
|
sizeMax: (value: {
|
|
859
885
|
readonly [$$PropertyValue]: "width";
|
|
860
886
|
}) => {
|
|
@@ -885,6 +911,13 @@ export declare const StyledCheckboxLabel: import("@stitches/react/types/styled-c
|
|
|
885
911
|
}) => {
|
|
886
912
|
backgroundImage: string;
|
|
887
913
|
};
|
|
914
|
+
tdl: (value: {
|
|
915
|
+
readonly [$$PropertyValue]: "textDecorationLine";
|
|
916
|
+
}) => {
|
|
917
|
+
textDecorationLine: {
|
|
918
|
+
readonly [$$PropertyValue]: "textDecorationLine";
|
|
919
|
+
};
|
|
920
|
+
};
|
|
888
921
|
textGradient: (value: {
|
|
889
922
|
readonly [$$PropertyValue]: "backgroundImage";
|
|
890
923
|
}) => {
|
|
@@ -1734,6 +1767,22 @@ export declare const StyledCheckboxContainer: import("@stitches/react/types/styl
|
|
|
1734
1767
|
readonly [$$PropertyValue]: "width";
|
|
1735
1768
|
};
|
|
1736
1769
|
};
|
|
1770
|
+
minSize: (value: {
|
|
1771
|
+
readonly [$$PropertyValue]: "width";
|
|
1772
|
+
}) => {
|
|
1773
|
+
minWidth: {
|
|
1774
|
+
readonly [$$PropertyValue]: "width";
|
|
1775
|
+
};
|
|
1776
|
+
minHeight: {
|
|
1777
|
+
readonly [$$PropertyValue]: "width";
|
|
1778
|
+
};
|
|
1779
|
+
width: {
|
|
1780
|
+
readonly [$$PropertyValue]: "width";
|
|
1781
|
+
};
|
|
1782
|
+
height: {
|
|
1783
|
+
readonly [$$PropertyValue]: "width";
|
|
1784
|
+
};
|
|
1785
|
+
};
|
|
1737
1786
|
sizeMin: (value: {
|
|
1738
1787
|
readonly [$$PropertyValue]: "width";
|
|
1739
1788
|
}) => {
|
|
@@ -1750,6 +1799,16 @@ export declare const StyledCheckboxContainer: import("@stitches/react/types/styl
|
|
|
1750
1799
|
readonly [$$PropertyValue]: "width";
|
|
1751
1800
|
};
|
|
1752
1801
|
};
|
|
1802
|
+
maxSize: (value: {
|
|
1803
|
+
readonly [$$PropertyValue]: "width";
|
|
1804
|
+
}) => {
|
|
1805
|
+
maxWidth: {
|
|
1806
|
+
readonly [$$PropertyValue]: "width";
|
|
1807
|
+
};
|
|
1808
|
+
maxHeight: {
|
|
1809
|
+
readonly [$$PropertyValue]: "width";
|
|
1810
|
+
};
|
|
1811
|
+
};
|
|
1753
1812
|
sizeMax: (value: {
|
|
1754
1813
|
readonly [$$PropertyValue]: "width";
|
|
1755
1814
|
}) => {
|
|
@@ -1780,6 +1839,13 @@ export declare const StyledCheckboxContainer: import("@stitches/react/types/styl
|
|
|
1780
1839
|
}) => {
|
|
1781
1840
|
backgroundImage: string;
|
|
1782
1841
|
};
|
|
1842
|
+
tdl: (value: {
|
|
1843
|
+
readonly [$$PropertyValue]: "textDecorationLine";
|
|
1844
|
+
}) => {
|
|
1845
|
+
textDecorationLine: {
|
|
1846
|
+
readonly [$$PropertyValue]: "textDecorationLine";
|
|
1847
|
+
};
|
|
1848
|
+
};
|
|
1783
1849
|
textGradient: (value: {
|
|
1784
1850
|
readonly [$$PropertyValue]: "backgroundImage";
|
|
1785
1851
|
}) => {
|
|
@@ -2628,6 +2694,22 @@ export declare const StyledIconCheckFirstLine: import("@stitches/react/types/sty
|
|
|
2628
2694
|
readonly [$$PropertyValue]: "width";
|
|
2629
2695
|
};
|
|
2630
2696
|
};
|
|
2697
|
+
minSize: (value: {
|
|
2698
|
+
readonly [$$PropertyValue]: "width";
|
|
2699
|
+
}) => {
|
|
2700
|
+
minWidth: {
|
|
2701
|
+
readonly [$$PropertyValue]: "width";
|
|
2702
|
+
};
|
|
2703
|
+
minHeight: {
|
|
2704
|
+
readonly [$$PropertyValue]: "width";
|
|
2705
|
+
};
|
|
2706
|
+
width: {
|
|
2707
|
+
readonly [$$PropertyValue]: "width";
|
|
2708
|
+
};
|
|
2709
|
+
height: {
|
|
2710
|
+
readonly [$$PropertyValue]: "width";
|
|
2711
|
+
};
|
|
2712
|
+
};
|
|
2631
2713
|
sizeMin: (value: {
|
|
2632
2714
|
readonly [$$PropertyValue]: "width";
|
|
2633
2715
|
}) => {
|
|
@@ -2644,6 +2726,16 @@ export declare const StyledIconCheckFirstLine: import("@stitches/react/types/sty
|
|
|
2644
2726
|
readonly [$$PropertyValue]: "width";
|
|
2645
2727
|
};
|
|
2646
2728
|
};
|
|
2729
|
+
maxSize: (value: {
|
|
2730
|
+
readonly [$$PropertyValue]: "width";
|
|
2731
|
+
}) => {
|
|
2732
|
+
maxWidth: {
|
|
2733
|
+
readonly [$$PropertyValue]: "width";
|
|
2734
|
+
};
|
|
2735
|
+
maxHeight: {
|
|
2736
|
+
readonly [$$PropertyValue]: "width";
|
|
2737
|
+
};
|
|
2738
|
+
};
|
|
2647
2739
|
sizeMax: (value: {
|
|
2648
2740
|
readonly [$$PropertyValue]: "width";
|
|
2649
2741
|
}) => {
|
|
@@ -2674,6 +2766,13 @@ export declare const StyledIconCheckFirstLine: import("@stitches/react/types/sty
|
|
|
2674
2766
|
}) => {
|
|
2675
2767
|
backgroundImage: string;
|
|
2676
2768
|
};
|
|
2769
|
+
tdl: (value: {
|
|
2770
|
+
readonly [$$PropertyValue]: "textDecorationLine";
|
|
2771
|
+
}) => {
|
|
2772
|
+
textDecorationLine: {
|
|
2773
|
+
readonly [$$PropertyValue]: "textDecorationLine";
|
|
2774
|
+
};
|
|
2775
|
+
};
|
|
2677
2776
|
textGradient: (value: {
|
|
2678
2777
|
readonly [$$PropertyValue]: "backgroundImage";
|
|
2679
2778
|
}) => {
|
|
@@ -3522,6 +3621,22 @@ export declare const StyledIconCheckSecondLine: import("@stitches/react/types/st
|
|
|
3522
3621
|
readonly [$$PropertyValue]: "width";
|
|
3523
3622
|
};
|
|
3524
3623
|
};
|
|
3624
|
+
minSize: (value: {
|
|
3625
|
+
readonly [$$PropertyValue]: "width";
|
|
3626
|
+
}) => {
|
|
3627
|
+
minWidth: {
|
|
3628
|
+
readonly [$$PropertyValue]: "width";
|
|
3629
|
+
};
|
|
3630
|
+
minHeight: {
|
|
3631
|
+
readonly [$$PropertyValue]: "width";
|
|
3632
|
+
};
|
|
3633
|
+
width: {
|
|
3634
|
+
readonly [$$PropertyValue]: "width";
|
|
3635
|
+
};
|
|
3636
|
+
height: {
|
|
3637
|
+
readonly [$$PropertyValue]: "width";
|
|
3638
|
+
};
|
|
3639
|
+
};
|
|
3525
3640
|
sizeMin: (value: {
|
|
3526
3641
|
readonly [$$PropertyValue]: "width";
|
|
3527
3642
|
}) => {
|
|
@@ -3538,6 +3653,16 @@ export declare const StyledIconCheckSecondLine: import("@stitches/react/types/st
|
|
|
3538
3653
|
readonly [$$PropertyValue]: "width";
|
|
3539
3654
|
};
|
|
3540
3655
|
};
|
|
3656
|
+
maxSize: (value: {
|
|
3657
|
+
readonly [$$PropertyValue]: "width";
|
|
3658
|
+
}) => {
|
|
3659
|
+
maxWidth: {
|
|
3660
|
+
readonly [$$PropertyValue]: "width";
|
|
3661
|
+
};
|
|
3662
|
+
maxHeight: {
|
|
3663
|
+
readonly [$$PropertyValue]: "width";
|
|
3664
|
+
};
|
|
3665
|
+
};
|
|
3541
3666
|
sizeMax: (value: {
|
|
3542
3667
|
readonly [$$PropertyValue]: "width";
|
|
3543
3668
|
}) => {
|
|
@@ -3568,6 +3693,13 @@ export declare const StyledIconCheckSecondLine: import("@stitches/react/types/st
|
|
|
3568
3693
|
}) => {
|
|
3569
3694
|
backgroundImage: string;
|
|
3570
3695
|
};
|
|
3696
|
+
tdl: (value: {
|
|
3697
|
+
readonly [$$PropertyValue]: "textDecorationLine";
|
|
3698
|
+
}) => {
|
|
3699
|
+
textDecorationLine: {
|
|
3700
|
+
readonly [$$PropertyValue]: "textDecorationLine";
|
|
3701
|
+
};
|
|
3702
|
+
};
|
|
3571
3703
|
textGradient: (value: {
|
|
3572
3704
|
readonly [$$PropertyValue]: "backgroundImage";
|
|
3573
3705
|
}) => {
|
|
@@ -4417,6 +4549,22 @@ export declare const StyledIconCheck: import("@stitches/react/types/styled-compo
|
|
|
4417
4549
|
readonly [$$PropertyValue]: "width";
|
|
4418
4550
|
};
|
|
4419
4551
|
};
|
|
4552
|
+
minSize: (value: {
|
|
4553
|
+
readonly [$$PropertyValue]: "width";
|
|
4554
|
+
}) => {
|
|
4555
|
+
minWidth: {
|
|
4556
|
+
readonly [$$PropertyValue]: "width";
|
|
4557
|
+
};
|
|
4558
|
+
minHeight: {
|
|
4559
|
+
readonly [$$PropertyValue]: "width";
|
|
4560
|
+
};
|
|
4561
|
+
width: {
|
|
4562
|
+
readonly [$$PropertyValue]: "width";
|
|
4563
|
+
};
|
|
4564
|
+
height: {
|
|
4565
|
+
readonly [$$PropertyValue]: "width";
|
|
4566
|
+
};
|
|
4567
|
+
};
|
|
4420
4568
|
sizeMin: (value: {
|
|
4421
4569
|
readonly [$$PropertyValue]: "width";
|
|
4422
4570
|
}) => {
|
|
@@ -4433,6 +4581,16 @@ export declare const StyledIconCheck: import("@stitches/react/types/styled-compo
|
|
|
4433
4581
|
readonly [$$PropertyValue]: "width";
|
|
4434
4582
|
};
|
|
4435
4583
|
};
|
|
4584
|
+
maxSize: (value: {
|
|
4585
|
+
readonly [$$PropertyValue]: "width";
|
|
4586
|
+
}) => {
|
|
4587
|
+
maxWidth: {
|
|
4588
|
+
readonly [$$PropertyValue]: "width";
|
|
4589
|
+
};
|
|
4590
|
+
maxHeight: {
|
|
4591
|
+
readonly [$$PropertyValue]: "width";
|
|
4592
|
+
};
|
|
4593
|
+
};
|
|
4436
4594
|
sizeMax: (value: {
|
|
4437
4595
|
readonly [$$PropertyValue]: "width";
|
|
4438
4596
|
}) => {
|
|
@@ -4463,6 +4621,13 @@ export declare const StyledIconCheck: import("@stitches/react/types/styled-compo
|
|
|
4463
4621
|
}) => {
|
|
4464
4622
|
backgroundImage: string;
|
|
4465
4623
|
};
|
|
4624
|
+
tdl: (value: {
|
|
4625
|
+
readonly [$$PropertyValue]: "textDecorationLine";
|
|
4626
|
+
}) => {
|
|
4627
|
+
textDecorationLine: {
|
|
4628
|
+
readonly [$$PropertyValue]: "textDecorationLine";
|
|
4629
|
+
};
|
|
4630
|
+
};
|
|
4466
4631
|
textGradient: (value: {
|
|
4467
4632
|
readonly [$$PropertyValue]: "backgroundImage";
|
|
4468
4633
|
}) => {
|
|
@@ -5310,6 +5475,22 @@ export declare const StyledCheckboxMask: import("@stitches/react/types/styled-co
|
|
|
5310
5475
|
readonly [$$PropertyValue]: "width";
|
|
5311
5476
|
};
|
|
5312
5477
|
};
|
|
5478
|
+
minSize: (value: {
|
|
5479
|
+
readonly [$$PropertyValue]: "width";
|
|
5480
|
+
}) => {
|
|
5481
|
+
minWidth: {
|
|
5482
|
+
readonly [$$PropertyValue]: "width";
|
|
5483
|
+
};
|
|
5484
|
+
minHeight: {
|
|
5485
|
+
readonly [$$PropertyValue]: "width";
|
|
5486
|
+
};
|
|
5487
|
+
width: {
|
|
5488
|
+
readonly [$$PropertyValue]: "width";
|
|
5489
|
+
};
|
|
5490
|
+
height: {
|
|
5491
|
+
readonly [$$PropertyValue]: "width";
|
|
5492
|
+
};
|
|
5493
|
+
};
|
|
5313
5494
|
sizeMin: (value: {
|
|
5314
5495
|
readonly [$$PropertyValue]: "width";
|
|
5315
5496
|
}) => {
|
|
@@ -5326,6 +5507,16 @@ export declare const StyledCheckboxMask: import("@stitches/react/types/styled-co
|
|
|
5326
5507
|
readonly [$$PropertyValue]: "width";
|
|
5327
5508
|
};
|
|
5328
5509
|
};
|
|
5510
|
+
maxSize: (value: {
|
|
5511
|
+
readonly [$$PropertyValue]: "width";
|
|
5512
|
+
}) => {
|
|
5513
|
+
maxWidth: {
|
|
5514
|
+
readonly [$$PropertyValue]: "width";
|
|
5515
|
+
};
|
|
5516
|
+
maxHeight: {
|
|
5517
|
+
readonly [$$PropertyValue]: "width";
|
|
5518
|
+
};
|
|
5519
|
+
};
|
|
5329
5520
|
sizeMax: (value: {
|
|
5330
5521
|
readonly [$$PropertyValue]: "width";
|
|
5331
5522
|
}) => {
|
|
@@ -5356,6 +5547,13 @@ export declare const StyledCheckboxMask: import("@stitches/react/types/styled-co
|
|
|
5356
5547
|
}) => {
|
|
5357
5548
|
backgroundImage: string;
|
|
5358
5549
|
};
|
|
5550
|
+
tdl: (value: {
|
|
5551
|
+
readonly [$$PropertyValue]: "textDecorationLine";
|
|
5552
|
+
}) => {
|
|
5553
|
+
textDecorationLine: {
|
|
5554
|
+
readonly [$$PropertyValue]: "textDecorationLine";
|
|
5555
|
+
};
|
|
5556
|
+
};
|
|
5359
5557
|
textGradient: (value: {
|
|
5360
5558
|
readonly [$$PropertyValue]: "backgroundImage";
|
|
5361
5559
|
}) => {
|
|
@@ -6206,6 +6404,22 @@ export declare const StyledCheckboxText: import("@stitches/react/types/styled-co
|
|
|
6206
6404
|
readonly [$$PropertyValue]: "width";
|
|
6207
6405
|
};
|
|
6208
6406
|
};
|
|
6407
|
+
minSize: (value: {
|
|
6408
|
+
readonly [$$PropertyValue]: "width";
|
|
6409
|
+
}) => {
|
|
6410
|
+
minWidth: {
|
|
6411
|
+
readonly [$$PropertyValue]: "width";
|
|
6412
|
+
};
|
|
6413
|
+
minHeight: {
|
|
6414
|
+
readonly [$$PropertyValue]: "width";
|
|
6415
|
+
};
|
|
6416
|
+
width: {
|
|
6417
|
+
readonly [$$PropertyValue]: "width";
|
|
6418
|
+
};
|
|
6419
|
+
height: {
|
|
6420
|
+
readonly [$$PropertyValue]: "width";
|
|
6421
|
+
};
|
|
6422
|
+
};
|
|
6209
6423
|
sizeMin: (value: {
|
|
6210
6424
|
readonly [$$PropertyValue]: "width";
|
|
6211
6425
|
}) => {
|
|
@@ -6222,6 +6436,16 @@ export declare const StyledCheckboxText: import("@stitches/react/types/styled-co
|
|
|
6222
6436
|
readonly [$$PropertyValue]: "width";
|
|
6223
6437
|
};
|
|
6224
6438
|
};
|
|
6439
|
+
maxSize: (value: {
|
|
6440
|
+
readonly [$$PropertyValue]: "width";
|
|
6441
|
+
}) => {
|
|
6442
|
+
maxWidth: {
|
|
6443
|
+
readonly [$$PropertyValue]: "width";
|
|
6444
|
+
};
|
|
6445
|
+
maxHeight: {
|
|
6446
|
+
readonly [$$PropertyValue]: "width";
|
|
6447
|
+
};
|
|
6448
|
+
};
|
|
6225
6449
|
sizeMax: (value: {
|
|
6226
6450
|
readonly [$$PropertyValue]: "width";
|
|
6227
6451
|
}) => {
|
|
@@ -6252,6 +6476,13 @@ export declare const StyledCheckboxText: import("@stitches/react/types/styled-co
|
|
|
6252
6476
|
}) => {
|
|
6253
6477
|
backgroundImage: string;
|
|
6254
6478
|
};
|
|
6479
|
+
tdl: (value: {
|
|
6480
|
+
readonly [$$PropertyValue]: "textDecorationLine";
|
|
6481
|
+
}) => {
|
|
6482
|
+
textDecorationLine: {
|
|
6483
|
+
readonly [$$PropertyValue]: "textDecorationLine";
|
|
6484
|
+
};
|
|
6485
|
+
};
|
|
6255
6486
|
textGradient: (value: {
|
|
6256
6487
|
readonly [$$PropertyValue]: "backgroundImage";
|
|
6257
6488
|
}) => {
|
|
@@ -7096,6 +7327,22 @@ export declare const StyledCheckboxInput: import("@stitches/react/types/styled-c
|
|
|
7096
7327
|
readonly [$$PropertyValue]: "width";
|
|
7097
7328
|
};
|
|
7098
7329
|
};
|
|
7330
|
+
minSize: (value: {
|
|
7331
|
+
readonly [$$PropertyValue]: "width";
|
|
7332
|
+
}) => {
|
|
7333
|
+
minWidth: {
|
|
7334
|
+
readonly [$$PropertyValue]: "width";
|
|
7335
|
+
};
|
|
7336
|
+
minHeight: {
|
|
7337
|
+
readonly [$$PropertyValue]: "width";
|
|
7338
|
+
};
|
|
7339
|
+
width: {
|
|
7340
|
+
readonly [$$PropertyValue]: "width";
|
|
7341
|
+
};
|
|
7342
|
+
height: {
|
|
7343
|
+
readonly [$$PropertyValue]: "width";
|
|
7344
|
+
};
|
|
7345
|
+
};
|
|
7099
7346
|
sizeMin: (value: {
|
|
7100
7347
|
readonly [$$PropertyValue]: "width";
|
|
7101
7348
|
}) => {
|
|
@@ -7112,6 +7359,16 @@ export declare const StyledCheckboxInput: import("@stitches/react/types/styled-c
|
|
|
7112
7359
|
readonly [$$PropertyValue]: "width";
|
|
7113
7360
|
};
|
|
7114
7361
|
};
|
|
7362
|
+
maxSize: (value: {
|
|
7363
|
+
readonly [$$PropertyValue]: "width";
|
|
7364
|
+
}) => {
|
|
7365
|
+
maxWidth: {
|
|
7366
|
+
readonly [$$PropertyValue]: "width";
|
|
7367
|
+
};
|
|
7368
|
+
maxHeight: {
|
|
7369
|
+
readonly [$$PropertyValue]: "width";
|
|
7370
|
+
};
|
|
7371
|
+
};
|
|
7115
7372
|
sizeMax: (value: {
|
|
7116
7373
|
readonly [$$PropertyValue]: "width";
|
|
7117
7374
|
}) => {
|
|
@@ -7142,6 +7399,13 @@ export declare const StyledCheckboxInput: import("@stitches/react/types/styled-c
|
|
|
7142
7399
|
}) => {
|
|
7143
7400
|
backgroundImage: string;
|
|
7144
7401
|
};
|
|
7402
|
+
tdl: (value: {
|
|
7403
|
+
readonly [$$PropertyValue]: "textDecorationLine";
|
|
7404
|
+
}) => {
|
|
7405
|
+
textDecorationLine: {
|
|
7406
|
+
readonly [$$PropertyValue]: "textDecorationLine";
|
|
7407
|
+
};
|
|
7408
|
+
};
|
|
7145
7409
|
textGradient: (value: {
|
|
7146
7410
|
readonly [$$PropertyValue]: "backgroundImage";
|
|
7147
7411
|
}) => {
|
|
@@ -7989,6 +8253,22 @@ export declare const StyledCheckboxGroup: import("@stitches/react/types/styled-c
|
|
|
7989
8253
|
readonly [$$PropertyValue]: "width";
|
|
7990
8254
|
};
|
|
7991
8255
|
};
|
|
8256
|
+
minSize: (value: {
|
|
8257
|
+
readonly [$$PropertyValue]: "width";
|
|
8258
|
+
}) => {
|
|
8259
|
+
minWidth: {
|
|
8260
|
+
readonly [$$PropertyValue]: "width";
|
|
8261
|
+
};
|
|
8262
|
+
minHeight: {
|
|
8263
|
+
readonly [$$PropertyValue]: "width";
|
|
8264
|
+
};
|
|
8265
|
+
width: {
|
|
8266
|
+
readonly [$$PropertyValue]: "width";
|
|
8267
|
+
};
|
|
8268
|
+
height: {
|
|
8269
|
+
readonly [$$PropertyValue]: "width";
|
|
8270
|
+
};
|
|
8271
|
+
};
|
|
7992
8272
|
sizeMin: (value: {
|
|
7993
8273
|
readonly [$$PropertyValue]: "width";
|
|
7994
8274
|
}) => {
|
|
@@ -8005,6 +8285,16 @@ export declare const StyledCheckboxGroup: import("@stitches/react/types/styled-c
|
|
|
8005
8285
|
readonly [$$PropertyValue]: "width";
|
|
8006
8286
|
};
|
|
8007
8287
|
};
|
|
8288
|
+
maxSize: (value: {
|
|
8289
|
+
readonly [$$PropertyValue]: "width";
|
|
8290
|
+
}) => {
|
|
8291
|
+
maxWidth: {
|
|
8292
|
+
readonly [$$PropertyValue]: "width";
|
|
8293
|
+
};
|
|
8294
|
+
maxHeight: {
|
|
8295
|
+
readonly [$$PropertyValue]: "width";
|
|
8296
|
+
};
|
|
8297
|
+
};
|
|
8008
8298
|
sizeMax: (value: {
|
|
8009
8299
|
readonly [$$PropertyValue]: "width";
|
|
8010
8300
|
}) => {
|
|
@@ -8035,6 +8325,13 @@ export declare const StyledCheckboxGroup: import("@stitches/react/types/styled-c
|
|
|
8035
8325
|
}) => {
|
|
8036
8326
|
backgroundImage: string;
|
|
8037
8327
|
};
|
|
8328
|
+
tdl: (value: {
|
|
8329
|
+
readonly [$$PropertyValue]: "textDecorationLine";
|
|
8330
|
+
}) => {
|
|
8331
|
+
textDecorationLine: {
|
|
8332
|
+
readonly [$$PropertyValue]: "textDecorationLine";
|
|
8333
|
+
};
|
|
8334
|
+
};
|
|
8038
8335
|
textGradient: (value: {
|
|
8039
8336
|
readonly [$$PropertyValue]: "backgroundImage";
|
|
8040
8337
|
}) => {
|
|
@@ -835,6 +835,22 @@ export declare const StyledCode: 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 StyledCode: 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 StyledCode: 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 StyledPre: import("@stitches/react/types/styled-component")
|
|
|
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 StyledPre: import("@stitches/react/types/styled-component")
|
|
|
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 StyledPre: import("@stitches/react/types/styled-component")
|
|
|
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
|
}) => {
|
package/cjs/col/col.styles.d.ts
CHANGED
|
@@ -835,6 +835,22 @@ export declare const StyledCol: 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 StyledCol: 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 StyledCol: 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
|
}) => {
|
|
@@ -36,6 +36,8 @@ export declare type CollapseProps = Props & typeof defaultProps & CollapseVarian
|
|
|
36
36
|
declare type CollapseComponent<P = {}> = React.FC<P> & {
|
|
37
37
|
Group: typeof CollapseGroup;
|
|
38
38
|
};
|
|
39
|
-
declare type ComponentProps = Partial<typeof defaultProps> & Omit<Props, keyof typeof defaultProps> & CollapseVariantsProps & NativeAttrs
|
|
39
|
+
declare type ComponentProps = Partial<typeof defaultProps> & Omit<Props, keyof typeof defaultProps> & CollapseVariantsProps & NativeAttrs & {
|
|
40
|
+
css?: CSS;
|
|
41
|
+
};
|
|
40
42
|
declare const _default: CollapseComponent<ComponentProps>;
|
|
41
43
|
export default _default;
|
package/cjs/collapse/collapse.js
CHANGED
|
@@ -150,13 +150,14 @@ const Collapse = ({
|
|
|
150
150
|
"aria-controls": ariaControlId,
|
|
151
151
|
onClick: handleChange,
|
|
152
152
|
children: /*#__PURE__*/(0, _jsxRuntime.jsxs)("div", {
|
|
153
|
-
className: (0, _clsx.default)(`${preClass}-title`),
|
|
153
|
+
className: (0, _clsx.default)(`${preClass}-title-container`),
|
|
154
154
|
children: [contentLeft && /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
155
155
|
className: `${preClass}-title-content-left`,
|
|
156
156
|
children: contentLeft
|
|
157
157
|
}), /*#__PURE__*/(0, _jsxRuntime.jsxs)("div", {
|
|
158
158
|
className: `${preClass}-title-content`,
|
|
159
159
|
children: [/*#__PURE__*/_react.default.isValidElement(title) ? title : /*#__PURE__*/(0, _jsxRuntime.jsx)("h3", {
|
|
160
|
+
className: `${preClass}-title`,
|
|
160
161
|
children: title
|
|
161
162
|
}), subtitle && /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
162
163
|
className: `${preClass}-subtitle`,
|