@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
package/cjs/input/input.js
CHANGED
|
@@ -270,6 +270,7 @@ const Input = /*#__PURE__*/_react.default.forwardRef(({
|
|
|
270
270
|
"aria-multiline": isTextarea,
|
|
271
271
|
...inputProps
|
|
272
272
|
}), clearable && /*#__PURE__*/(0, _jsxRuntime.jsx)(_input.StyledInputClearButton, {
|
|
273
|
+
type: "button",
|
|
273
274
|
className: `${preClass}-clear-button`,
|
|
274
275
|
animated: animated,
|
|
275
276
|
underlined: underlined,
|
|
@@ -843,6 +843,22 @@ export declare const StyledInputMainContainer: import("@stitches/react/types/sty
|
|
|
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 StyledInputMainContainer: import("@stitches/react/types/sty
|
|
|
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 StyledInputMainContainer: import("@stitches/react/types/sty
|
|
|
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
|
}) => {
|
|
@@ -1739,6 +1772,22 @@ export declare const StyledInputContainer: import("@stitches/react/types/styled-
|
|
|
1739
1772
|
readonly [$$PropertyValue]: "width";
|
|
1740
1773
|
};
|
|
1741
1774
|
};
|
|
1775
|
+
minSize: (value: {
|
|
1776
|
+
readonly [$$PropertyValue]: "width";
|
|
1777
|
+
}) => {
|
|
1778
|
+
minWidth: {
|
|
1779
|
+
readonly [$$PropertyValue]: "width";
|
|
1780
|
+
};
|
|
1781
|
+
minHeight: {
|
|
1782
|
+
readonly [$$PropertyValue]: "width";
|
|
1783
|
+
};
|
|
1784
|
+
width: {
|
|
1785
|
+
readonly [$$PropertyValue]: "width";
|
|
1786
|
+
};
|
|
1787
|
+
height: {
|
|
1788
|
+
readonly [$$PropertyValue]: "width";
|
|
1789
|
+
};
|
|
1790
|
+
};
|
|
1742
1791
|
sizeMin: (value: {
|
|
1743
1792
|
readonly [$$PropertyValue]: "width";
|
|
1744
1793
|
}) => {
|
|
@@ -1755,6 +1804,16 @@ export declare const StyledInputContainer: import("@stitches/react/types/styled-
|
|
|
1755
1804
|
readonly [$$PropertyValue]: "width";
|
|
1756
1805
|
};
|
|
1757
1806
|
};
|
|
1807
|
+
maxSize: (value: {
|
|
1808
|
+
readonly [$$PropertyValue]: "width";
|
|
1809
|
+
}) => {
|
|
1810
|
+
maxWidth: {
|
|
1811
|
+
readonly [$$PropertyValue]: "width";
|
|
1812
|
+
};
|
|
1813
|
+
maxHeight: {
|
|
1814
|
+
readonly [$$PropertyValue]: "width";
|
|
1815
|
+
};
|
|
1816
|
+
};
|
|
1758
1817
|
sizeMax: (value: {
|
|
1759
1818
|
readonly [$$PropertyValue]: "width";
|
|
1760
1819
|
}) => {
|
|
@@ -1785,6 +1844,13 @@ export declare const StyledInputContainer: import("@stitches/react/types/styled-
|
|
|
1785
1844
|
}) => {
|
|
1786
1845
|
backgroundImage: string;
|
|
1787
1846
|
};
|
|
1847
|
+
tdl: (value: {
|
|
1848
|
+
readonly [$$PropertyValue]: "textDecorationLine";
|
|
1849
|
+
}) => {
|
|
1850
|
+
textDecorationLine: {
|
|
1851
|
+
readonly [$$PropertyValue]: "textDecorationLine";
|
|
1852
|
+
};
|
|
1853
|
+
};
|
|
1788
1854
|
textGradient: (value: {
|
|
1789
1855
|
readonly [$$PropertyValue]: "backgroundImage";
|
|
1790
1856
|
}) => {
|
|
@@ -2637,6 +2703,22 @@ export declare const StyledInput: import("@stitches/react/types/styled-component
|
|
|
2637
2703
|
readonly [$$PropertyValue]: "width";
|
|
2638
2704
|
};
|
|
2639
2705
|
};
|
|
2706
|
+
minSize: (value: {
|
|
2707
|
+
readonly [$$PropertyValue]: "width";
|
|
2708
|
+
}) => {
|
|
2709
|
+
minWidth: {
|
|
2710
|
+
readonly [$$PropertyValue]: "width";
|
|
2711
|
+
};
|
|
2712
|
+
minHeight: {
|
|
2713
|
+
readonly [$$PropertyValue]: "width";
|
|
2714
|
+
};
|
|
2715
|
+
width: {
|
|
2716
|
+
readonly [$$PropertyValue]: "width";
|
|
2717
|
+
};
|
|
2718
|
+
height: {
|
|
2719
|
+
readonly [$$PropertyValue]: "width";
|
|
2720
|
+
};
|
|
2721
|
+
};
|
|
2640
2722
|
sizeMin: (value: {
|
|
2641
2723
|
readonly [$$PropertyValue]: "width";
|
|
2642
2724
|
}) => {
|
|
@@ -2653,6 +2735,16 @@ export declare const StyledInput: import("@stitches/react/types/styled-component
|
|
|
2653
2735
|
readonly [$$PropertyValue]: "width";
|
|
2654
2736
|
};
|
|
2655
2737
|
};
|
|
2738
|
+
maxSize: (value: {
|
|
2739
|
+
readonly [$$PropertyValue]: "width";
|
|
2740
|
+
}) => {
|
|
2741
|
+
maxWidth: {
|
|
2742
|
+
readonly [$$PropertyValue]: "width";
|
|
2743
|
+
};
|
|
2744
|
+
maxHeight: {
|
|
2745
|
+
readonly [$$PropertyValue]: "width";
|
|
2746
|
+
};
|
|
2747
|
+
};
|
|
2656
2748
|
sizeMax: (value: {
|
|
2657
2749
|
readonly [$$PropertyValue]: "width";
|
|
2658
2750
|
}) => {
|
|
@@ -2683,6 +2775,13 @@ export declare const StyledInput: import("@stitches/react/types/styled-component
|
|
|
2683
2775
|
}) => {
|
|
2684
2776
|
backgroundImage: string;
|
|
2685
2777
|
};
|
|
2778
|
+
tdl: (value: {
|
|
2779
|
+
readonly [$$PropertyValue]: "textDecorationLine";
|
|
2780
|
+
}) => {
|
|
2781
|
+
textDecorationLine: {
|
|
2782
|
+
readonly [$$PropertyValue]: "textDecorationLine";
|
|
2783
|
+
};
|
|
2784
|
+
};
|
|
2686
2785
|
textGradient: (value: {
|
|
2687
2786
|
readonly [$$PropertyValue]: "backgroundImage";
|
|
2688
2787
|
}) => {
|
|
@@ -3536,6 +3635,22 @@ export declare const StyledInputWrapper: import("@stitches/react/types/styled-co
|
|
|
3536
3635
|
readonly [$$PropertyValue]: "width";
|
|
3537
3636
|
};
|
|
3538
3637
|
};
|
|
3638
|
+
minSize: (value: {
|
|
3639
|
+
readonly [$$PropertyValue]: "width";
|
|
3640
|
+
}) => {
|
|
3641
|
+
minWidth: {
|
|
3642
|
+
readonly [$$PropertyValue]: "width";
|
|
3643
|
+
};
|
|
3644
|
+
minHeight: {
|
|
3645
|
+
readonly [$$PropertyValue]: "width";
|
|
3646
|
+
};
|
|
3647
|
+
width: {
|
|
3648
|
+
readonly [$$PropertyValue]: "width";
|
|
3649
|
+
};
|
|
3650
|
+
height: {
|
|
3651
|
+
readonly [$$PropertyValue]: "width";
|
|
3652
|
+
};
|
|
3653
|
+
};
|
|
3539
3654
|
sizeMin: (value: {
|
|
3540
3655
|
readonly [$$PropertyValue]: "width";
|
|
3541
3656
|
}) => {
|
|
@@ -3552,6 +3667,16 @@ export declare const StyledInputWrapper: import("@stitches/react/types/styled-co
|
|
|
3552
3667
|
readonly [$$PropertyValue]: "width";
|
|
3553
3668
|
};
|
|
3554
3669
|
};
|
|
3670
|
+
maxSize: (value: {
|
|
3671
|
+
readonly [$$PropertyValue]: "width";
|
|
3672
|
+
}) => {
|
|
3673
|
+
maxWidth: {
|
|
3674
|
+
readonly [$$PropertyValue]: "width";
|
|
3675
|
+
};
|
|
3676
|
+
maxHeight: {
|
|
3677
|
+
readonly [$$PropertyValue]: "width";
|
|
3678
|
+
};
|
|
3679
|
+
};
|
|
3555
3680
|
sizeMax: (value: {
|
|
3556
3681
|
readonly [$$PropertyValue]: "width";
|
|
3557
3682
|
}) => {
|
|
@@ -3582,6 +3707,13 @@ export declare const StyledInputWrapper: import("@stitches/react/types/styled-co
|
|
|
3582
3707
|
}) => {
|
|
3583
3708
|
backgroundImage: string;
|
|
3584
3709
|
};
|
|
3710
|
+
tdl: (value: {
|
|
3711
|
+
readonly [$$PropertyValue]: "textDecorationLine";
|
|
3712
|
+
}) => {
|
|
3713
|
+
textDecorationLine: {
|
|
3714
|
+
readonly [$$PropertyValue]: "textDecorationLine";
|
|
3715
|
+
};
|
|
3716
|
+
};
|
|
3585
3717
|
textGradient: (value: {
|
|
3586
3718
|
readonly [$$PropertyValue]: "backgroundImage";
|
|
3587
3719
|
}) => {
|
|
@@ -4429,6 +4561,22 @@ export declare const StyledHelperTextContainer: import("@stitches/react/types/st
|
|
|
4429
4561
|
readonly [$$PropertyValue]: "width";
|
|
4430
4562
|
};
|
|
4431
4563
|
};
|
|
4564
|
+
minSize: (value: {
|
|
4565
|
+
readonly [$$PropertyValue]: "width";
|
|
4566
|
+
}) => {
|
|
4567
|
+
minWidth: {
|
|
4568
|
+
readonly [$$PropertyValue]: "width";
|
|
4569
|
+
};
|
|
4570
|
+
minHeight: {
|
|
4571
|
+
readonly [$$PropertyValue]: "width";
|
|
4572
|
+
};
|
|
4573
|
+
width: {
|
|
4574
|
+
readonly [$$PropertyValue]: "width";
|
|
4575
|
+
};
|
|
4576
|
+
height: {
|
|
4577
|
+
readonly [$$PropertyValue]: "width";
|
|
4578
|
+
};
|
|
4579
|
+
};
|
|
4432
4580
|
sizeMin: (value: {
|
|
4433
4581
|
readonly [$$PropertyValue]: "width";
|
|
4434
4582
|
}) => {
|
|
@@ -4445,6 +4593,16 @@ export declare const StyledHelperTextContainer: import("@stitches/react/types/st
|
|
|
4445
4593
|
readonly [$$PropertyValue]: "width";
|
|
4446
4594
|
};
|
|
4447
4595
|
};
|
|
4596
|
+
maxSize: (value: {
|
|
4597
|
+
readonly [$$PropertyValue]: "width";
|
|
4598
|
+
}) => {
|
|
4599
|
+
maxWidth: {
|
|
4600
|
+
readonly [$$PropertyValue]: "width";
|
|
4601
|
+
};
|
|
4602
|
+
maxHeight: {
|
|
4603
|
+
readonly [$$PropertyValue]: "width";
|
|
4604
|
+
};
|
|
4605
|
+
};
|
|
4448
4606
|
sizeMax: (value: {
|
|
4449
4607
|
readonly [$$PropertyValue]: "width";
|
|
4450
4608
|
}) => {
|
|
@@ -4475,6 +4633,13 @@ export declare const StyledHelperTextContainer: import("@stitches/react/types/st
|
|
|
4475
4633
|
}) => {
|
|
4476
4634
|
backgroundImage: string;
|
|
4477
4635
|
};
|
|
4636
|
+
tdl: (value: {
|
|
4637
|
+
readonly [$$PropertyValue]: "textDecorationLine";
|
|
4638
|
+
}) => {
|
|
4639
|
+
textDecorationLine: {
|
|
4640
|
+
readonly [$$PropertyValue]: "textDecorationLine";
|
|
4641
|
+
};
|
|
4642
|
+
};
|
|
4478
4643
|
textGradient: (value: {
|
|
4479
4644
|
readonly [$$PropertyValue]: "backgroundImage";
|
|
4480
4645
|
}) => {
|
|
@@ -5319,6 +5484,22 @@ export declare const StyledHelperText: import("@stitches/react/types/styled-comp
|
|
|
5319
5484
|
readonly [$$PropertyValue]: "width";
|
|
5320
5485
|
};
|
|
5321
5486
|
};
|
|
5487
|
+
minSize: (value: {
|
|
5488
|
+
readonly [$$PropertyValue]: "width";
|
|
5489
|
+
}) => {
|
|
5490
|
+
minWidth: {
|
|
5491
|
+
readonly [$$PropertyValue]: "width";
|
|
5492
|
+
};
|
|
5493
|
+
minHeight: {
|
|
5494
|
+
readonly [$$PropertyValue]: "width";
|
|
5495
|
+
};
|
|
5496
|
+
width: {
|
|
5497
|
+
readonly [$$PropertyValue]: "width";
|
|
5498
|
+
};
|
|
5499
|
+
height: {
|
|
5500
|
+
readonly [$$PropertyValue]: "width";
|
|
5501
|
+
};
|
|
5502
|
+
};
|
|
5322
5503
|
sizeMin: (value: {
|
|
5323
5504
|
readonly [$$PropertyValue]: "width";
|
|
5324
5505
|
}) => {
|
|
@@ -5335,6 +5516,16 @@ export declare const StyledHelperText: import("@stitches/react/types/styled-comp
|
|
|
5335
5516
|
readonly [$$PropertyValue]: "width";
|
|
5336
5517
|
};
|
|
5337
5518
|
};
|
|
5519
|
+
maxSize: (value: {
|
|
5520
|
+
readonly [$$PropertyValue]: "width";
|
|
5521
|
+
}) => {
|
|
5522
|
+
maxWidth: {
|
|
5523
|
+
readonly [$$PropertyValue]: "width";
|
|
5524
|
+
};
|
|
5525
|
+
maxHeight: {
|
|
5526
|
+
readonly [$$PropertyValue]: "width";
|
|
5527
|
+
};
|
|
5528
|
+
};
|
|
5338
5529
|
sizeMax: (value: {
|
|
5339
5530
|
readonly [$$PropertyValue]: "width";
|
|
5340
5531
|
}) => {
|
|
@@ -5365,6 +5556,13 @@ export declare const StyledHelperText: import("@stitches/react/types/styled-comp
|
|
|
5365
5556
|
}) => {
|
|
5366
5557
|
backgroundImage: string;
|
|
5367
5558
|
};
|
|
5559
|
+
tdl: (value: {
|
|
5560
|
+
readonly [$$PropertyValue]: "textDecorationLine";
|
|
5561
|
+
}) => {
|
|
5562
|
+
textDecorationLine: {
|
|
5563
|
+
readonly [$$PropertyValue]: "textDecorationLine";
|
|
5564
|
+
};
|
|
5565
|
+
};
|
|
5368
5566
|
textGradient: (value: {
|
|
5369
5567
|
readonly [$$PropertyValue]: "backgroundImage";
|
|
5370
5568
|
}) => {
|
|
@@ -6209,6 +6407,22 @@ export declare const StyledInputPlaceholder: import("@stitches/react/types/style
|
|
|
6209
6407
|
readonly [$$PropertyValue]: "width";
|
|
6210
6408
|
};
|
|
6211
6409
|
};
|
|
6410
|
+
minSize: (value: {
|
|
6411
|
+
readonly [$$PropertyValue]: "width";
|
|
6412
|
+
}) => {
|
|
6413
|
+
minWidth: {
|
|
6414
|
+
readonly [$$PropertyValue]: "width";
|
|
6415
|
+
};
|
|
6416
|
+
minHeight: {
|
|
6417
|
+
readonly [$$PropertyValue]: "width";
|
|
6418
|
+
};
|
|
6419
|
+
width: {
|
|
6420
|
+
readonly [$$PropertyValue]: "width";
|
|
6421
|
+
};
|
|
6422
|
+
height: {
|
|
6423
|
+
readonly [$$PropertyValue]: "width";
|
|
6424
|
+
};
|
|
6425
|
+
};
|
|
6212
6426
|
sizeMin: (value: {
|
|
6213
6427
|
readonly [$$PropertyValue]: "width";
|
|
6214
6428
|
}) => {
|
|
@@ -6225,6 +6439,16 @@ export declare const StyledInputPlaceholder: import("@stitches/react/types/style
|
|
|
6225
6439
|
readonly [$$PropertyValue]: "width";
|
|
6226
6440
|
};
|
|
6227
6441
|
};
|
|
6442
|
+
maxSize: (value: {
|
|
6443
|
+
readonly [$$PropertyValue]: "width";
|
|
6444
|
+
}) => {
|
|
6445
|
+
maxWidth: {
|
|
6446
|
+
readonly [$$PropertyValue]: "width";
|
|
6447
|
+
};
|
|
6448
|
+
maxHeight: {
|
|
6449
|
+
readonly [$$PropertyValue]: "width";
|
|
6450
|
+
};
|
|
6451
|
+
};
|
|
6228
6452
|
sizeMax: (value: {
|
|
6229
6453
|
readonly [$$PropertyValue]: "width";
|
|
6230
6454
|
}) => {
|
|
@@ -6255,6 +6479,13 @@ export declare const StyledInputPlaceholder: import("@stitches/react/types/style
|
|
|
6255
6479
|
}) => {
|
|
6256
6480
|
backgroundImage: string;
|
|
6257
6481
|
};
|
|
6482
|
+
tdl: (value: {
|
|
6483
|
+
readonly [$$PropertyValue]: "textDecorationLine";
|
|
6484
|
+
}) => {
|
|
6485
|
+
textDecorationLine: {
|
|
6486
|
+
readonly [$$PropertyValue]: "textDecorationLine";
|
|
6487
|
+
};
|
|
6488
|
+
};
|
|
6258
6489
|
textGradient: (value: {
|
|
6259
6490
|
readonly [$$PropertyValue]: "backgroundImage";
|
|
6260
6491
|
}) => {
|
|
@@ -7109,6 +7340,22 @@ export declare const StyledInputBlockLabel: import("@stitches/react/types/styled
|
|
|
7109
7340
|
readonly [$$PropertyValue]: "width";
|
|
7110
7341
|
};
|
|
7111
7342
|
};
|
|
7343
|
+
minSize: (value: {
|
|
7344
|
+
readonly [$$PropertyValue]: "width";
|
|
7345
|
+
}) => {
|
|
7346
|
+
minWidth: {
|
|
7347
|
+
readonly [$$PropertyValue]: "width";
|
|
7348
|
+
};
|
|
7349
|
+
minHeight: {
|
|
7350
|
+
readonly [$$PropertyValue]: "width";
|
|
7351
|
+
};
|
|
7352
|
+
width: {
|
|
7353
|
+
readonly [$$PropertyValue]: "width";
|
|
7354
|
+
};
|
|
7355
|
+
height: {
|
|
7356
|
+
readonly [$$PropertyValue]: "width";
|
|
7357
|
+
};
|
|
7358
|
+
};
|
|
7112
7359
|
sizeMin: (value: {
|
|
7113
7360
|
readonly [$$PropertyValue]: "width";
|
|
7114
7361
|
}) => {
|
|
@@ -7125,6 +7372,16 @@ export declare const StyledInputBlockLabel: import("@stitches/react/types/styled
|
|
|
7125
7372
|
readonly [$$PropertyValue]: "width";
|
|
7126
7373
|
};
|
|
7127
7374
|
};
|
|
7375
|
+
maxSize: (value: {
|
|
7376
|
+
readonly [$$PropertyValue]: "width";
|
|
7377
|
+
}) => {
|
|
7378
|
+
maxWidth: {
|
|
7379
|
+
readonly [$$PropertyValue]: "width";
|
|
7380
|
+
};
|
|
7381
|
+
maxHeight: {
|
|
7382
|
+
readonly [$$PropertyValue]: "width";
|
|
7383
|
+
};
|
|
7384
|
+
};
|
|
7128
7385
|
sizeMax: (value: {
|
|
7129
7386
|
readonly [$$PropertyValue]: "width";
|
|
7130
7387
|
}) => {
|
|
@@ -7155,6 +7412,13 @@ export declare const StyledInputBlockLabel: import("@stitches/react/types/styled
|
|
|
7155
7412
|
}) => {
|
|
7156
7413
|
backgroundImage: string;
|
|
7157
7414
|
};
|
|
7415
|
+
tdl: (value: {
|
|
7416
|
+
readonly [$$PropertyValue]: "textDecorationLine";
|
|
7417
|
+
}) => {
|
|
7418
|
+
textDecorationLine: {
|
|
7419
|
+
readonly [$$PropertyValue]: "textDecorationLine";
|
|
7420
|
+
};
|
|
7421
|
+
};
|
|
7158
7422
|
textGradient: (value: {
|
|
7159
7423
|
readonly [$$PropertyValue]: "backgroundImage";
|
|
7160
7424
|
}) => {
|
|
@@ -8005,6 +8269,22 @@ export declare const StyledInputLabel: import("@stitches/react/types/styled-comp
|
|
|
8005
8269
|
readonly [$$PropertyValue]: "width";
|
|
8006
8270
|
};
|
|
8007
8271
|
};
|
|
8272
|
+
minSize: (value: {
|
|
8273
|
+
readonly [$$PropertyValue]: "width";
|
|
8274
|
+
}) => {
|
|
8275
|
+
minWidth: {
|
|
8276
|
+
readonly [$$PropertyValue]: "width";
|
|
8277
|
+
};
|
|
8278
|
+
minHeight: {
|
|
8279
|
+
readonly [$$PropertyValue]: "width";
|
|
8280
|
+
};
|
|
8281
|
+
width: {
|
|
8282
|
+
readonly [$$PropertyValue]: "width";
|
|
8283
|
+
};
|
|
8284
|
+
height: {
|
|
8285
|
+
readonly [$$PropertyValue]: "width";
|
|
8286
|
+
};
|
|
8287
|
+
};
|
|
8008
8288
|
sizeMin: (value: {
|
|
8009
8289
|
readonly [$$PropertyValue]: "width";
|
|
8010
8290
|
}) => {
|
|
@@ -8021,6 +8301,16 @@ export declare const StyledInputLabel: import("@stitches/react/types/styled-comp
|
|
|
8021
8301
|
readonly [$$PropertyValue]: "width";
|
|
8022
8302
|
};
|
|
8023
8303
|
};
|
|
8304
|
+
maxSize: (value: {
|
|
8305
|
+
readonly [$$PropertyValue]: "width";
|
|
8306
|
+
}) => {
|
|
8307
|
+
maxWidth: {
|
|
8308
|
+
readonly [$$PropertyValue]: "width";
|
|
8309
|
+
};
|
|
8310
|
+
maxHeight: {
|
|
8311
|
+
readonly [$$PropertyValue]: "width";
|
|
8312
|
+
};
|
|
8313
|
+
};
|
|
8024
8314
|
sizeMax: (value: {
|
|
8025
8315
|
readonly [$$PropertyValue]: "width";
|
|
8026
8316
|
}) => {
|
|
@@ -8051,6 +8341,13 @@ export declare const StyledInputLabel: import("@stitches/react/types/styled-comp
|
|
|
8051
8341
|
}) => {
|
|
8052
8342
|
backgroundImage: string;
|
|
8053
8343
|
};
|
|
8344
|
+
tdl: (value: {
|
|
8345
|
+
readonly [$$PropertyValue]: "textDecorationLine";
|
|
8346
|
+
}) => {
|
|
8347
|
+
textDecorationLine: {
|
|
8348
|
+
readonly [$$PropertyValue]: "textDecorationLine";
|
|
8349
|
+
};
|
|
8350
|
+
};
|
|
8054
8351
|
textGradient: (value: {
|
|
8055
8352
|
readonly [$$PropertyValue]: "backgroundImage";
|
|
8056
8353
|
}) => {
|
|
@@ -8898,6 +9195,22 @@ export declare const StyledInputContent: import("@stitches/react/types/styled-co
|
|
|
8898
9195
|
readonly [$$PropertyValue]: "width";
|
|
8899
9196
|
};
|
|
8900
9197
|
};
|
|
9198
|
+
minSize: (value: {
|
|
9199
|
+
readonly [$$PropertyValue]: "width";
|
|
9200
|
+
}) => {
|
|
9201
|
+
minWidth: {
|
|
9202
|
+
readonly [$$PropertyValue]: "width";
|
|
9203
|
+
};
|
|
9204
|
+
minHeight: {
|
|
9205
|
+
readonly [$$PropertyValue]: "width";
|
|
9206
|
+
};
|
|
9207
|
+
width: {
|
|
9208
|
+
readonly [$$PropertyValue]: "width";
|
|
9209
|
+
};
|
|
9210
|
+
height: {
|
|
9211
|
+
readonly [$$PropertyValue]: "width";
|
|
9212
|
+
};
|
|
9213
|
+
};
|
|
8901
9214
|
sizeMin: (value: {
|
|
8902
9215
|
readonly [$$PropertyValue]: "width";
|
|
8903
9216
|
}) => {
|
|
@@ -8914,6 +9227,16 @@ export declare const StyledInputContent: import("@stitches/react/types/styled-co
|
|
|
8914
9227
|
readonly [$$PropertyValue]: "width";
|
|
8915
9228
|
};
|
|
8916
9229
|
};
|
|
9230
|
+
maxSize: (value: {
|
|
9231
|
+
readonly [$$PropertyValue]: "width";
|
|
9232
|
+
}) => {
|
|
9233
|
+
maxWidth: {
|
|
9234
|
+
readonly [$$PropertyValue]: "width";
|
|
9235
|
+
};
|
|
9236
|
+
maxHeight: {
|
|
9237
|
+
readonly [$$PropertyValue]: "width";
|
|
9238
|
+
};
|
|
9239
|
+
};
|
|
8917
9240
|
sizeMax: (value: {
|
|
8918
9241
|
readonly [$$PropertyValue]: "width";
|
|
8919
9242
|
}) => {
|
|
@@ -8944,6 +9267,13 @@ export declare const StyledInputContent: import("@stitches/react/types/styled-co
|
|
|
8944
9267
|
}) => {
|
|
8945
9268
|
backgroundImage: string;
|
|
8946
9269
|
};
|
|
9270
|
+
tdl: (value: {
|
|
9271
|
+
readonly [$$PropertyValue]: "textDecorationLine";
|
|
9272
|
+
}) => {
|
|
9273
|
+
textDecorationLine: {
|
|
9274
|
+
readonly [$$PropertyValue]: "textDecorationLine";
|
|
9275
|
+
};
|
|
9276
|
+
};
|
|
8947
9277
|
textGradient: (value: {
|
|
8948
9278
|
readonly [$$PropertyValue]: "backgroundImage";
|
|
8949
9279
|
}) => {
|
|
@@ -9794,6 +10124,22 @@ export declare const StyledInputClearButton: import("@stitches/react/types/style
|
|
|
9794
10124
|
readonly [$$PropertyValue]: "width";
|
|
9795
10125
|
};
|
|
9796
10126
|
};
|
|
10127
|
+
minSize: (value: {
|
|
10128
|
+
readonly [$$PropertyValue]: "width";
|
|
10129
|
+
}) => {
|
|
10130
|
+
minWidth: {
|
|
10131
|
+
readonly [$$PropertyValue]: "width";
|
|
10132
|
+
};
|
|
10133
|
+
minHeight: {
|
|
10134
|
+
readonly [$$PropertyValue]: "width";
|
|
10135
|
+
};
|
|
10136
|
+
width: {
|
|
10137
|
+
readonly [$$PropertyValue]: "width";
|
|
10138
|
+
};
|
|
10139
|
+
height: {
|
|
10140
|
+
readonly [$$PropertyValue]: "width";
|
|
10141
|
+
};
|
|
10142
|
+
};
|
|
9797
10143
|
sizeMin: (value: {
|
|
9798
10144
|
readonly [$$PropertyValue]: "width";
|
|
9799
10145
|
}) => {
|
|
@@ -9810,6 +10156,16 @@ export declare const StyledInputClearButton: import("@stitches/react/types/style
|
|
|
9810
10156
|
readonly [$$PropertyValue]: "width";
|
|
9811
10157
|
};
|
|
9812
10158
|
};
|
|
10159
|
+
maxSize: (value: {
|
|
10160
|
+
readonly [$$PropertyValue]: "width";
|
|
10161
|
+
}) => {
|
|
10162
|
+
maxWidth: {
|
|
10163
|
+
readonly [$$PropertyValue]: "width";
|
|
10164
|
+
};
|
|
10165
|
+
maxHeight: {
|
|
10166
|
+
readonly [$$PropertyValue]: "width";
|
|
10167
|
+
};
|
|
10168
|
+
};
|
|
9813
10169
|
sizeMax: (value: {
|
|
9814
10170
|
readonly [$$PropertyValue]: "width";
|
|
9815
10171
|
}) => {
|
|
@@ -9840,6 +10196,13 @@ export declare const StyledInputClearButton: import("@stitches/react/types/style
|
|
|
9840
10196
|
}) => {
|
|
9841
10197
|
backgroundImage: string;
|
|
9842
10198
|
};
|
|
10199
|
+
tdl: (value: {
|
|
10200
|
+
readonly [$$PropertyValue]: "textDecorationLine";
|
|
10201
|
+
}) => {
|
|
10202
|
+
textDecorationLine: {
|
|
10203
|
+
readonly [$$PropertyValue]: "textDecorationLine";
|
|
10204
|
+
};
|
|
10205
|
+
};
|
|
9843
10206
|
textGradient: (value: {
|
|
9844
10207
|
readonly [$$PropertyValue]: "backgroundImage";
|
|
9845
10208
|
}) => {
|
|
@@ -835,6 +835,22 @@ export declare const StyledLinkIcon: import("@stitches/react/types/styled-compon
|
|
|
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 StyledLinkIcon: import("@stitches/react/types/styled-compon
|
|
|
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 StyledLinkIcon: import("@stitches/react/types/styled-compon
|
|
|
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
|
}) => {
|
|
@@ -1730,6 +1763,22 @@ export declare const StyledLink: import("@stitches/react/types/styled-component"
|
|
|
1730
1763
|
readonly [$$PropertyValue]: "width";
|
|
1731
1764
|
};
|
|
1732
1765
|
};
|
|
1766
|
+
minSize: (value: {
|
|
1767
|
+
readonly [$$PropertyValue]: "width";
|
|
1768
|
+
}) => {
|
|
1769
|
+
minWidth: {
|
|
1770
|
+
readonly [$$PropertyValue]: "width";
|
|
1771
|
+
};
|
|
1772
|
+
minHeight: {
|
|
1773
|
+
readonly [$$PropertyValue]: "width";
|
|
1774
|
+
};
|
|
1775
|
+
width: {
|
|
1776
|
+
readonly [$$PropertyValue]: "width";
|
|
1777
|
+
};
|
|
1778
|
+
height: {
|
|
1779
|
+
readonly [$$PropertyValue]: "width";
|
|
1780
|
+
};
|
|
1781
|
+
};
|
|
1733
1782
|
sizeMin: (value: {
|
|
1734
1783
|
readonly [$$PropertyValue]: "width";
|
|
1735
1784
|
}) => {
|
|
@@ -1746,6 +1795,16 @@ export declare const StyledLink: import("@stitches/react/types/styled-component"
|
|
|
1746
1795
|
readonly [$$PropertyValue]: "width";
|
|
1747
1796
|
};
|
|
1748
1797
|
};
|
|
1798
|
+
maxSize: (value: {
|
|
1799
|
+
readonly [$$PropertyValue]: "width";
|
|
1800
|
+
}) => {
|
|
1801
|
+
maxWidth: {
|
|
1802
|
+
readonly [$$PropertyValue]: "width";
|
|
1803
|
+
};
|
|
1804
|
+
maxHeight: {
|
|
1805
|
+
readonly [$$PropertyValue]: "width";
|
|
1806
|
+
};
|
|
1807
|
+
};
|
|
1749
1808
|
sizeMax: (value: {
|
|
1750
1809
|
readonly [$$PropertyValue]: "width";
|
|
1751
1810
|
}) => {
|
|
@@ -1776,6 +1835,13 @@ export declare const StyledLink: import("@stitches/react/types/styled-component"
|
|
|
1776
1835
|
}) => {
|
|
1777
1836
|
backgroundImage: string;
|
|
1778
1837
|
};
|
|
1838
|
+
tdl: (value: {
|
|
1839
|
+
readonly [$$PropertyValue]: "textDecorationLine";
|
|
1840
|
+
}) => {
|
|
1841
|
+
textDecorationLine: {
|
|
1842
|
+
readonly [$$PropertyValue]: "textDecorationLine";
|
|
1843
|
+
};
|
|
1844
|
+
};
|
|
1779
1845
|
textGradient: (value: {
|
|
1780
1846
|
readonly [$$PropertyValue]: "backgroundImage";
|
|
1781
1847
|
}) => {
|