@nextui-org/react 1.0.5-beta.5 → 1.0.8-beta.5

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.
Files changed (99) hide show
  1. package/cjs/avatar/avatar.styles.js +1 -1
  2. package/cjs/backdrop/backdrop.js +1 -1
  3. package/cjs/backdrop/backdrop.styles.js +1 -1
  4. package/cjs/button/button.js +1 -1
  5. package/cjs/button/button.styles.js +1 -1
  6. package/cjs/button/utils.js +1 -1
  7. package/cjs/card/card.styles.js +1 -1
  8. package/cjs/checkbox/checkbox-context.js +1 -1
  9. package/cjs/checkbox/checkbox-group.js +1 -1
  10. package/cjs/checkbox/checkbox.js +1 -1
  11. package/cjs/checkbox/checkbox.styles.js +1 -1
  12. package/cjs/checkbox/index.js +1 -1
  13. package/cjs/checkbox/utils.js +1 -0
  14. package/cjs/input/input.js +1 -1
  15. package/cjs/link/link.styles.js +1 -1
  16. package/cjs/loading/loading.js +1 -1
  17. package/cjs/loading/loading.styles.js +1 -1
  18. package/cjs/pagination/pagination.styles.js +1 -1
  19. package/cjs/table/table-checkbox-cell.js +1 -1
  20. package/cjs/table/table-select-all-checkbox.js +1 -1
  21. package/cjs/table/table.styles.js +1 -1
  22. package/cjs/table/utils.js +1 -1
  23. package/cjs/theme/common.js +1 -1
  24. package/cjs/theme/stitches.config.js +1 -1
  25. package/cjs/utils/dom.js +1 -1
  26. package/esm/avatar/avatar.styles.js +1 -1
  27. package/esm/backdrop/backdrop.js +1 -1
  28. package/esm/backdrop/backdrop.styles.js +1 -1
  29. package/esm/button/button.js +1 -1
  30. package/esm/button/button.styles.js +1 -1
  31. package/esm/button/utils.js +1 -1
  32. package/esm/card/card.styles.js +1 -1
  33. package/esm/checkbox/checkbox-context.js +1 -1
  34. package/esm/checkbox/checkbox-group.js +1 -1
  35. package/esm/checkbox/checkbox.js +1 -1
  36. package/esm/checkbox/checkbox.styles.js +1 -1
  37. package/esm/checkbox/index.js +1 -1
  38. package/esm/checkbox/utils.js +1 -0
  39. package/esm/input/input.js +1 -1
  40. package/esm/link/link.styles.js +1 -1
  41. package/esm/loading/loading.js +1 -1
  42. package/esm/loading/loading.styles.js +1 -1
  43. package/esm/pagination/pagination.styles.js +1 -1
  44. package/esm/table/table-checkbox-cell.js +1 -1
  45. package/esm/table/table-select-all-checkbox.js +1 -1
  46. package/esm/table/table.styles.js +1 -1
  47. package/esm/table/utils.js +1 -1
  48. package/esm/theme/common.js +1 -1
  49. package/esm/theme/stitches.config.js +1 -1
  50. package/esm/utils/dom.js +1 -1
  51. package/package.json +5 -1
  52. package/types/avatar/avatar-group.styles.d.ts +6 -0
  53. package/types/avatar/avatar.styles.d.ts +4 -1
  54. package/types/backdrop/backdrop.styles.d.ts +12 -1
  55. package/types/button/button-group.styles.d.ts +3 -0
  56. package/types/button/button-icon.d.ts +3 -0
  57. package/types/button/button.d.ts +6 -5
  58. package/types/button/button.styles.d.ts +130 -174
  59. package/types/button/utils.d.ts +23 -0
  60. package/types/card/card.styles.d.ts +12 -0
  61. package/types/checkbox/checkbox-context.d.ts +4 -6
  62. package/types/checkbox/checkbox-group.d.ts +13 -12
  63. package/types/checkbox/checkbox.d.ts +13 -20
  64. package/types/checkbox/checkbox.styles.d.ts +1080 -86
  65. package/types/checkbox/index.d.ts +2 -2
  66. package/types/checkbox/utils.d.ts +288 -0
  67. package/types/code/code.styles.d.ts +6 -0
  68. package/types/col/col.styles.d.ts +3 -0
  69. package/types/collapse/collapse.styles.d.ts +18 -0
  70. package/types/container/container.styles.d.ts +3 -0
  71. package/types/divider/divider.styles.d.ts +6 -0
  72. package/types/grid/grid.styles.d.ts +6 -0
  73. package/types/image/image.styles.d.ts +9 -0
  74. package/types/input/input.styles.d.ts +33 -0
  75. package/types/link/link.styles.d.ts +6 -0
  76. package/types/loading/loading.styles.d.ts +19 -1
  77. package/types/modal/modal.d.ts +2 -4
  78. package/types/modal/modal.styles.d.ts +18 -0
  79. package/types/pagination/pagination.styles.d.ts +18 -0
  80. package/types/progress/progress.styles.d.ts +6 -0
  81. package/types/radio/radio.styles.d.ts +18 -0
  82. package/types/row/row.styles.d.ts +3 -0
  83. package/types/snippet/snippet.styles.d.ts +12 -0
  84. package/types/spacer/spacer.styles.d.ts +3 -0
  85. package/types/switch/switch.styles.d.ts +12 -0
  86. package/types/table/table-column-header.d.ts +3 -1
  87. package/types/table/table-sort-icon.d.ts +3 -0
  88. package/types/table/table.styles.d.ts +51 -3
  89. package/types/table/utils.d.ts +29 -0
  90. package/types/text/text.styles.d.ts +3 -0
  91. package/types/theme/common.d.ts +6 -0
  92. package/types/theme/stitches.config.d.ts +39 -0
  93. package/types/tooltip/tooltip.styles.d.ts +12 -0
  94. package/types/use-drip/use-drip.d.ts +2 -1
  95. package/types/user/user.styles.d.ts +15 -0
  96. package/types/utils/dom.d.ts +18 -0
  97. package/types/utils/drip.d.ts +3 -0
  98. package/umd/nextui.js +17985 -15315
  99. package/umd/nextui.min.js +1 -1
@@ -2,6 +2,7 @@ import { VariantProps } from '../theme/stitches.config';
2
2
  export declare const StyledCheckboxLabel: import("@stitches/react/types/styled-component").StyledComponent<"label", {
3
3
  size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
4
4
  disabled?: boolean | "true" | undefined;
5
+ isHovered?: boolean | "true" | undefined;
5
6
  animated?: boolean | "false" | undefined;
6
7
  }, {
7
8
  xs: string;
@@ -268,6 +269,9 @@ export declare const StyledCheckboxLabel: import("@stitches/react/types/styled-c
268
269
  transitions: {
269
270
  default: string;
270
271
  button: string;
272
+ avatar: string;
273
+ link: string;
274
+ card: string;
271
275
  };
272
276
  breakpoints: {
273
277
  xs: string;
@@ -935,69 +939,10 @@ export declare const StyledCheckboxLabel: import("@stitches/react/types/styled-c
935
939
  };
936
940
  };
937
941
  }>>;
938
- export declare const StyledCheckboxContainer: import("@stitches/react/types/styled-component").StyledComponent<"div", import("@stitches/react/types/styled-component").StyledComponentProps<[{
939
- br: string;
940
- position: string;
941
- sizeMin: string;
942
- opacity: number;
943
- transition: string;
944
- zIndex: string;
945
- '@motion': {
946
- transition: string;
947
- };
948
- variants: {
949
- color: {
950
- default: {
951
- $$checkboxColor: string;
952
- $$checkboxColorHover: string;
953
- };
954
- primary: {
955
- $$checkboxColor: string;
956
- $$checkboxColorHover: string;
957
- };
958
- secondary: {
959
- $$checkboxColor: string;
960
- $$checkboxColorHover: string;
961
- };
962
- success: {
963
- $$checkboxColor: string;
964
- $$checkboxColorHover: string;
965
- };
966
- warning: {
967
- $$checkboxColor: string;
968
- $$checkboxColorHover: string;
969
- };
970
- error: {
971
- $$checkboxColor: string;
972
- $$checkboxColorHover: string;
973
- };
974
- gradient: {
975
- $$checkboxColor: string;
976
- $$checkboxColorHover: string;
977
- };
978
- };
979
- rounded: {
980
- true: {
981
- br: string;
982
- };
983
- };
984
- disabled: {
985
- true: {
986
- opacity: number;
987
- cursor: string;
988
- };
989
- };
990
- animated: {
991
- false: {
992
- transition: string;
993
- };
994
- };
995
- };
996
- defaultVariants: {
997
- color: "default";
998
- };
999
- }, import("@stitches/react/types/styled-component").CssComponent<never, {
1000
- isFocusVisible?: boolean | "true" | "false" | undefined;
942
+ export declare const StyledIconCheckFirstLine: import("@stitches/react/types/styled-component").StyledComponent<"div", {
943
+ indeterminate?: boolean | "true" | undefined;
944
+ checked?: boolean | "true" | undefined;
945
+ animated?: boolean | "false" | undefined;
1001
946
  }, {
1002
947
  xs: string;
1003
948
  sm: string;
@@ -1263,6 +1208,9 @@ export declare const StyledCheckboxContainer: import("@stitches/react/types/styl
1263
1208
  transitions: {
1264
1209
  default: string;
1265
1210
  button: string;
1211
+ avatar: string;
1212
+ link: string;
1213
+ card: string;
1266
1214
  };
1267
1215
  breakpoints: {
1268
1216
  xs: string;
@@ -1929,7 +1877,12 @@ export declare const StyledCheckboxContainer: import("@stitches/react/types/styl
1929
1877
  WebkitTextFillColor: string;
1930
1878
  };
1931
1879
  };
1932
- }>>]>, {
1880
+ }>>;
1881
+ export declare const StyledIconCheckSecondLine: import("@stitches/react/types/styled-component").StyledComponent<"div", {
1882
+ indeterminate?: boolean | "true" | undefined;
1883
+ checked?: boolean | "true" | undefined;
1884
+ animated?: boolean | "false" | undefined;
1885
+ }, {
1933
1886
  xs: string;
1934
1887
  sm: string;
1935
1888
  md: string;
@@ -2194,6 +2147,9 @@ export declare const StyledCheckboxContainer: import("@stitches/react/types/styl
2194
2147
  transitions: {
2195
2148
  default: string;
2196
2149
  button: string;
2150
+ avatar: string;
2151
+ link: string;
2152
+ card: string;
2197
2153
  };
2198
2154
  breakpoints: {
2199
2155
  xs: string;
@@ -2861,8 +2817,9 @@ export declare const StyledCheckboxContainer: import("@stitches/react/types/styl
2861
2817
  };
2862
2818
  };
2863
2819
  }>>;
2864
- export declare const StyledIconCheckFirstLine: import("@stitches/react/types/styled-component").StyledComponent<"div", {
2865
- indeterminate?: boolean | "true" | undefined;
2820
+ export declare const StyledIconCheck: import("@stitches/react/types/styled-component").StyledComponent<"i", {
2821
+ indeterminate?: boolean | "true" | "false" | undefined;
2822
+ size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2866
2823
  checked?: boolean | "true" | undefined;
2867
2824
  animated?: boolean | "false" | undefined;
2868
2825
  }, {
@@ -3130,6 +3087,9 @@ export declare const StyledIconCheckFirstLine: import("@stitches/react/types/sty
3130
3087
  transitions: {
3131
3088
  default: string;
3132
3089
  button: string;
3090
+ avatar: string;
3091
+ link: string;
3092
+ card: string;
3133
3093
  };
3134
3094
  breakpoints: {
3135
3095
  xs: string;
@@ -3797,9 +3757,9 @@ export declare const StyledIconCheckFirstLine: import("@stitches/react/types/sty
3797
3757
  };
3798
3758
  };
3799
3759
  }>>;
3800
- export declare const StyledIconCheckSecondLine: import("@stitches/react/types/styled-component").StyledComponent<"div", {
3801
- indeterminate?: boolean | "true" | undefined;
3760
+ export declare const StyledCheckboxMask: import("@stitches/react/types/styled-component").StyledComponent<"div", {
3802
3761
  checked?: boolean | "true" | undefined;
3762
+ indeterminate?: boolean | "true" | undefined;
3803
3763
  animated?: boolean | "false" | undefined;
3804
3764
  }, {
3805
3765
  xs: string;
@@ -4066,6 +4026,9 @@ export declare const StyledIconCheckSecondLine: import("@stitches/react/types/st
4066
4026
  transitions: {
4067
4027
  default: string;
4068
4028
  button: string;
4029
+ avatar: string;
4030
+ link: string;
4031
+ card: string;
4069
4032
  };
4070
4033
  breakpoints: {
4071
4034
  xs: string;
@@ -4733,10 +4696,11 @@ export declare const StyledIconCheckSecondLine: import("@stitches/react/types/st
4733
4696
  };
4734
4697
  };
4735
4698
  }>>;
4736
- export declare const StyledIconCheck: import("@stitches/react/types/styled-component").StyledComponent<"i", {
4737
- indeterminate?: boolean | "true" | "false" | undefined;
4738
- size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
4699
+ export declare const StyledCheckboxText: import("@stitches/react/types/styled-component").StyledComponent<"span", {
4700
+ color?: "default" | "primary" | "secondary" | "success" | "warning" | "error" | undefined;
4701
+ line?: boolean | "true" | undefined;
4739
4702
  checked?: boolean | "true" | undefined;
4703
+ disabled?: boolean | "true" | undefined;
4740
4704
  animated?: boolean | "false" | undefined;
4741
4705
  }, {
4742
4706
  xs: string;
@@ -5003,6 +4967,9 @@ export declare const StyledIconCheck: import("@stitches/react/types/styled-compo
5003
4967
  transitions: {
5004
4968
  default: string;
5005
4969
  button: string;
4970
+ avatar: string;
4971
+ link: string;
4972
+ card: string;
5006
4973
  };
5007
4974
  breakpoints: {
5008
4975
  xs: string;
@@ -5670,9 +5637,94 @@ export declare const StyledIconCheck: import("@stitches/react/types/styled-compo
5670
5637
  };
5671
5638
  };
5672
5639
  }>>;
5673
- export declare const StyledCheckboxMask: import("@stitches/react/types/styled-component").StyledComponent<"div", {
5674
- checked?: boolean | "true" | undefined;
5675
- animated?: boolean | "false" | undefined;
5640
+ export declare const StyledCheckboxContainer: import("@stitches/react/types/styled-component").StyledComponent<"div", import("@stitches/react/types/styled-component").StyledComponentProps<[{
5641
+ br: string;
5642
+ position: string;
5643
+ sizeMin: string;
5644
+ transition: string;
5645
+ zIndex: string;
5646
+ '.nextui-checkbox-input': {
5647
+ position: string;
5648
+ width: string;
5649
+ height: string;
5650
+ top: string;
5651
+ left: string;
5652
+ margin: string;
5653
+ padding: string;
5654
+ opacity: number;
5655
+ zIndex: string;
5656
+ cursor: string;
5657
+ '&:disabled': {
5658
+ cursor: string;
5659
+ };
5660
+ };
5661
+ '@motion': {
5662
+ transition: string;
5663
+ };
5664
+ variants: {
5665
+ color: {
5666
+ default: {
5667
+ $$checkboxColor: string;
5668
+ $$checkboxColorHover: string;
5669
+ };
5670
+ primary: {
5671
+ $$checkboxColor: string;
5672
+ $$checkboxColorHover: string;
5673
+ };
5674
+ secondary: {
5675
+ $$checkboxColor: string;
5676
+ $$checkboxColorHover: string;
5677
+ };
5678
+ success: {
5679
+ $$checkboxColor: string;
5680
+ $$checkboxColorHover: string;
5681
+ };
5682
+ warning: {
5683
+ $$checkboxColor: string;
5684
+ $$checkboxColorHover: string;
5685
+ };
5686
+ error: {
5687
+ $$checkboxColor: string;
5688
+ $$checkboxColorHover: string;
5689
+ };
5690
+ gradient: {
5691
+ $$checkboxColor: string;
5692
+ $$checkboxColorHover: string;
5693
+ };
5694
+ };
5695
+ rounded: {
5696
+ true: {
5697
+ br: string;
5698
+ };
5699
+ };
5700
+ disabled: {
5701
+ true: {
5702
+ opacity: number;
5703
+ cursor: string;
5704
+ };
5705
+ };
5706
+ animated: {
5707
+ false: {
5708
+ transition: string;
5709
+ };
5710
+ };
5711
+ isHovered: {
5712
+ true: {
5713
+ [x: string]: {
5714
+ bg: string;
5715
+ border: string;
5716
+ } | {
5717
+ bg: string;
5718
+ border?: undefined;
5719
+ };
5720
+ };
5721
+ };
5722
+ };
5723
+ defaultVariants: {
5724
+ color: "default";
5725
+ };
5726
+ }, import("@stitches/react/types/styled-component").CssComponent<never, {
5727
+ isFocusVisible?: boolean | "true" | "false" | undefined;
5676
5728
  }, {
5677
5729
  xs: string;
5678
5730
  sm: string;
@@ -5938,6 +5990,9 @@ export declare const StyledCheckboxMask: import("@stitches/react/types/styled-co
5938
5990
  transitions: {
5939
5991
  default: string;
5940
5992
  button: string;
5993
+ avatar: string;
5994
+ link: string;
5995
+ card: string;
5941
5996
  };
5942
5997
  breakpoints: {
5943
5998
  xs: string;
@@ -6604,14 +6659,7 @@ export declare const StyledCheckboxMask: import("@stitches/react/types/styled-co
6604
6659
  WebkitTextFillColor: string;
6605
6660
  };
6606
6661
  };
6607
- }>>;
6608
- export declare const StyledCheckboxText: import("@stitches/react/types/styled-component").StyledComponent<"span", {
6609
- color?: "default" | "primary" | "secondary" | "success" | "warning" | "error" | undefined;
6610
- line?: boolean | "true" | undefined;
6611
- checked?: boolean | "true" | undefined;
6612
- disabled?: boolean | "true" | undefined;
6613
- animated?: boolean | "false" | undefined;
6614
- }, {
6662
+ }>>]>, {
6615
6663
  xs: string;
6616
6664
  sm: string;
6617
6665
  md: string;
@@ -6876,6 +6924,9 @@ export declare const StyledCheckboxText: import("@stitches/react/types/styled-co
6876
6924
  transitions: {
6877
6925
  default: string;
6878
6926
  button: string;
6927
+ avatar: string;
6928
+ link: string;
6929
+ card: string;
6879
6930
  };
6880
6931
  breakpoints: {
6881
6932
  xs: string;
@@ -7543,7 +7594,9 @@ export declare const StyledCheckboxText: import("@stitches/react/types/styled-co
7543
7594
  };
7544
7595
  };
7545
7596
  }>>;
7546
- export declare const StyledCheckboxInput: import("@stitches/react/types/styled-component").StyledComponent<"input", {}, {
7597
+ export declare const StyledCheckboxGroup: import("@stitches/react/types/styled-component").StyledComponent<"div", {
7598
+ size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
7599
+ }, {
7547
7600
  xs: string;
7548
7601
  sm: string;
7549
7602
  md: string;
@@ -7808,6 +7861,9 @@ export declare const StyledCheckboxInput: import("@stitches/react/types/styled-c
7808
7861
  transitions: {
7809
7862
  default: string;
7810
7863
  button: string;
7864
+ avatar: string;
7865
+ link: string;
7866
+ card: string;
7811
7867
  };
7812
7868
  breakpoints: {
7813
7869
  xs: string;
@@ -8475,8 +8531,7 @@ export declare const StyledCheckboxInput: import("@stitches/react/types/styled-c
8475
8531
  };
8476
8532
  };
8477
8533
  }>>;
8478
- export declare const StyledCheckboxGroup: import("@stitches/react/types/styled-component").StyledComponent<"div", {
8479
- size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
8534
+ export declare const StyledCheckboxGroupContainer: import("@stitches/react/types/styled-component").StyledComponent<"div", {
8480
8535
  row?: boolean | "true" | "false" | undefined;
8481
8536
  }, {
8482
8537
  xs: string;
@@ -8743,6 +8798,946 @@ export declare const StyledCheckboxGroup: import("@stitches/react/types/styled-c
8743
8798
  transitions: {
8744
8799
  default: string;
8745
8800
  button: string;
8801
+ avatar: string;
8802
+ link: string;
8803
+ card: string;
8804
+ };
8805
+ breakpoints: {
8806
+ xs: string;
8807
+ sm: string;
8808
+ md: string;
8809
+ lg: string;
8810
+ xl: string;
8811
+ };
8812
+ }, {
8813
+ width: string;
8814
+ height: string;
8815
+ minWidth: string;
8816
+ maxWidth: string;
8817
+ minHeight: string;
8818
+ maxHeight: string;
8819
+ flexBasis: string;
8820
+ gridTemplateColumns: string;
8821
+ gridTemplateRows: string;
8822
+ blockSize: string;
8823
+ minBlockSize: string;
8824
+ maxBlockSize: string;
8825
+ inlineSize: string;
8826
+ minInlineSize: string;
8827
+ maxInlineSize: string;
8828
+ borderWidth: string;
8829
+ gap: "space";
8830
+ gridGap: "space";
8831
+ columnGap: "space";
8832
+ gridColumnGap: "space";
8833
+ rowGap: "space";
8834
+ gridRowGap: "space";
8835
+ inset: "space";
8836
+ insetBlock: "space";
8837
+ insetBlockEnd: "space";
8838
+ insetBlockStart: "space";
8839
+ insetInline: "space";
8840
+ insetInlineEnd: "space";
8841
+ insetInlineStart: "space";
8842
+ margin: "space";
8843
+ marginTop: "space";
8844
+ marginRight: "space";
8845
+ marginBottom: "space";
8846
+ marginLeft: "space";
8847
+ marginBlock: "space";
8848
+ marginBlockEnd: "space";
8849
+ marginBlockStart: "space";
8850
+ marginInline: "space";
8851
+ marginInlineEnd: "space";
8852
+ marginInlineStart: "space";
8853
+ padding: "space";
8854
+ paddingTop: "space";
8855
+ paddingRight: "space";
8856
+ paddingBottom: "space";
8857
+ paddingLeft: "space";
8858
+ paddingBlock: "space";
8859
+ paddingBlockEnd: "space";
8860
+ paddingBlockStart: "space";
8861
+ paddingInline: "space";
8862
+ paddingInlineEnd: "space";
8863
+ paddingInlineStart: "space";
8864
+ scrollMargin: "space";
8865
+ scrollMarginTop: "space";
8866
+ scrollMarginRight: "space";
8867
+ scrollMarginBottom: "space";
8868
+ scrollMarginLeft: "space";
8869
+ scrollMarginBlock: "space";
8870
+ scrollMarginBlockEnd: "space";
8871
+ scrollMarginBlockStart: "space";
8872
+ scrollMarginInline: "space";
8873
+ scrollMarginInlineEnd: "space";
8874
+ scrollMarginInlineStart: "space";
8875
+ scrollPadding: "space";
8876
+ scrollPaddingTop: "space";
8877
+ scrollPaddingRight: "space";
8878
+ scrollPaddingBottom: "space";
8879
+ scrollPaddingLeft: "space";
8880
+ scrollPaddingBlock: "space";
8881
+ scrollPaddingBlockEnd: "space";
8882
+ scrollPaddingBlockStart: "space";
8883
+ scrollPaddingInline: "space";
8884
+ scrollPaddingInlineEnd: "space";
8885
+ scrollPaddingInlineStart: "space";
8886
+ top: "space";
8887
+ right: "space";
8888
+ bottom: "space";
8889
+ left: "space";
8890
+ fontSize: "fontSizes";
8891
+ background: "colors";
8892
+ backgroundColor: "colors";
8893
+ backgroundImage: "colors";
8894
+ borderImage: "colors";
8895
+ border: "colors";
8896
+ borderBlock: "colors";
8897
+ borderBlockEnd: "colors";
8898
+ borderBlockStart: "colors";
8899
+ borderBottom: "colors";
8900
+ borderBottomColor: "colors";
8901
+ borderColor: "colors";
8902
+ borderInline: "colors";
8903
+ borderInlineEnd: "colors";
8904
+ borderInlineStart: "colors";
8905
+ borderLeft: "colors";
8906
+ borderLeftColor: "colors";
8907
+ borderRight: "colors";
8908
+ borderRightColor: "colors";
8909
+ borderTop: "colors";
8910
+ borderTopColor: "colors";
8911
+ caretColor: "colors";
8912
+ color: "colors";
8913
+ columnRuleColor: "colors";
8914
+ outline: "colors";
8915
+ outlineColor: "colors";
8916
+ fill: "colors";
8917
+ stroke: "colors";
8918
+ textDecorationColor: "colors";
8919
+ fontFamily: "fonts";
8920
+ fontWeight: "fontWeights";
8921
+ lineHeight: "lineHeights";
8922
+ letterSpacing: "letterSpacings";
8923
+ borderTopWidth: "borderWidths";
8924
+ borderLeftWidth: "borderWidths";
8925
+ borderRightWidth: "borderWidths";
8926
+ borderBottomWidth: "borderWidths";
8927
+ borderStyle: "borderStyles";
8928
+ borderTopStyle: "borderStyles";
8929
+ borderLeftStyle: "borderStyles";
8930
+ borderRightStyle: "borderStyles";
8931
+ borderBottomStyle: "borderStyles";
8932
+ borderRadius: "radii";
8933
+ borderTopLeftRadius: "radii";
8934
+ borderTopRightRadius: "radii";
8935
+ borderBottomRightRadius: "radii";
8936
+ borderBottomLeftRadius: "radii";
8937
+ boxShadow: "shadows";
8938
+ textShadow: "shadows";
8939
+ transition: "transitions";
8940
+ zIndex: "zIndices";
8941
+ }, {
8942
+ p: (value: {
8943
+ readonly [$$PropertyValue]: "padding";
8944
+ }) => {
8945
+ padding: {
8946
+ readonly [$$PropertyValue]: "padding";
8947
+ };
8948
+ };
8949
+ pt: (value: {
8950
+ readonly [$$PropertyValue]: "paddingTop";
8951
+ }) => {
8952
+ paddingTop: {
8953
+ readonly [$$PropertyValue]: "paddingTop";
8954
+ };
8955
+ };
8956
+ pr: (value: {
8957
+ readonly [$$PropertyValue]: "paddingRight";
8958
+ }) => {
8959
+ paddingRight: {
8960
+ readonly [$$PropertyValue]: "paddingRight";
8961
+ };
8962
+ };
8963
+ pb: (value: {
8964
+ readonly [$$PropertyValue]: "paddingBottom";
8965
+ }) => {
8966
+ paddingBottom: {
8967
+ readonly [$$PropertyValue]: "paddingBottom";
8968
+ };
8969
+ };
8970
+ pl: (value: {
8971
+ readonly [$$PropertyValue]: "paddingLeft";
8972
+ }) => {
8973
+ paddingLeft: {
8974
+ readonly [$$PropertyValue]: "paddingLeft";
8975
+ };
8976
+ };
8977
+ px: (value: {
8978
+ readonly [$$PropertyValue]: "paddingLeft";
8979
+ }) => {
8980
+ paddingLeft: {
8981
+ readonly [$$PropertyValue]: "paddingLeft";
8982
+ };
8983
+ paddingRight: {
8984
+ readonly [$$PropertyValue]: "paddingLeft";
8985
+ };
8986
+ };
8987
+ py: (value: {
8988
+ readonly [$$PropertyValue]: "paddingTop";
8989
+ }) => {
8990
+ paddingTop: {
8991
+ readonly [$$PropertyValue]: "paddingTop";
8992
+ };
8993
+ paddingBottom: {
8994
+ readonly [$$PropertyValue]: "paddingTop";
8995
+ };
8996
+ };
8997
+ m: (value: {
8998
+ readonly [$$PropertyValue]: "margin";
8999
+ }) => {
9000
+ margin: {
9001
+ readonly [$$PropertyValue]: "margin";
9002
+ };
9003
+ };
9004
+ mt: (value: {
9005
+ readonly [$$PropertyValue]: "marginTop";
9006
+ }) => {
9007
+ marginTop: {
9008
+ readonly [$$PropertyValue]: "marginTop";
9009
+ };
9010
+ };
9011
+ mr: (value: {
9012
+ readonly [$$PropertyValue]: "marginRight";
9013
+ }) => {
9014
+ marginRight: {
9015
+ readonly [$$PropertyValue]: "marginRight";
9016
+ };
9017
+ };
9018
+ mb: (value: {
9019
+ readonly [$$PropertyValue]: "marginBottom";
9020
+ }) => {
9021
+ marginBottom: {
9022
+ readonly [$$PropertyValue]: "marginBottom";
9023
+ };
9024
+ };
9025
+ ml: (value: {
9026
+ readonly [$$PropertyValue]: "marginLeft";
9027
+ }) => {
9028
+ marginLeft: {
9029
+ readonly [$$PropertyValue]: "marginLeft";
9030
+ };
9031
+ };
9032
+ mx: (value: {
9033
+ readonly [$$PropertyValue]: "marginLeft";
9034
+ }) => {
9035
+ marginLeft: {
9036
+ readonly [$$PropertyValue]: "marginLeft";
9037
+ };
9038
+ marginRight: {
9039
+ readonly [$$PropertyValue]: "marginLeft";
9040
+ };
9041
+ };
9042
+ my: (value: {
9043
+ readonly [$$PropertyValue]: "marginTop";
9044
+ }) => {
9045
+ marginTop: {
9046
+ readonly [$$PropertyValue]: "marginTop";
9047
+ };
9048
+ marginBottom: {
9049
+ readonly [$$PropertyValue]: "marginTop";
9050
+ };
9051
+ };
9052
+ ta: (value: {
9053
+ readonly [$$PropertyValue]: "textAlign";
9054
+ }) => {
9055
+ textAlign: {
9056
+ readonly [$$PropertyValue]: "textAlign";
9057
+ };
9058
+ };
9059
+ tt: (value: {
9060
+ readonly [$$PropertyValue]: "textTransform";
9061
+ }) => {
9062
+ textTransform: {
9063
+ readonly [$$PropertyValue]: "textTransform";
9064
+ };
9065
+ };
9066
+ to: (value: {
9067
+ readonly [$$PropertyValue]: "textOverflow";
9068
+ }) => {
9069
+ textOverflow: {
9070
+ readonly [$$PropertyValue]: "textOverflow";
9071
+ };
9072
+ };
9073
+ d: (value: {
9074
+ readonly [$$PropertyValue]: "display";
9075
+ }) => {
9076
+ display: {
9077
+ readonly [$$PropertyValue]: "display";
9078
+ };
9079
+ };
9080
+ dflex: (value: {
9081
+ readonly [$$PropertyValue]: "alignItems";
9082
+ }) => {
9083
+ display: string;
9084
+ alignItems: {
9085
+ readonly [$$PropertyValue]: "alignItems";
9086
+ };
9087
+ justifyContent: {
9088
+ readonly [$$PropertyValue]: "alignItems";
9089
+ };
9090
+ };
9091
+ fd: (value: {
9092
+ readonly [$$PropertyValue]: "flexDirection";
9093
+ }) => {
9094
+ flexDirection: {
9095
+ readonly [$$PropertyValue]: "flexDirection";
9096
+ };
9097
+ };
9098
+ fw: (value: {
9099
+ readonly [$$PropertyValue]: "flexWrap";
9100
+ }) => {
9101
+ flexWrap: {
9102
+ readonly [$$PropertyValue]: "flexWrap";
9103
+ };
9104
+ };
9105
+ ai: (value: {
9106
+ readonly [$$PropertyValue]: "alignItems";
9107
+ }) => {
9108
+ alignItems: {
9109
+ readonly [$$PropertyValue]: "alignItems";
9110
+ };
9111
+ };
9112
+ ac: (value: {
9113
+ readonly [$$PropertyValue]: "alignContent";
9114
+ }) => {
9115
+ alignContent: {
9116
+ readonly [$$PropertyValue]: "alignContent";
9117
+ };
9118
+ };
9119
+ jc: (value: {
9120
+ readonly [$$PropertyValue]: "justifyContent";
9121
+ }) => {
9122
+ justifyContent: {
9123
+ readonly [$$PropertyValue]: "justifyContent";
9124
+ };
9125
+ };
9126
+ as: (value: {
9127
+ readonly [$$PropertyValue]: "alignSelf";
9128
+ }) => {
9129
+ alignSelf: {
9130
+ readonly [$$PropertyValue]: "alignSelf";
9131
+ };
9132
+ };
9133
+ fg: (value: {
9134
+ readonly [$$PropertyValue]: "flexGrow";
9135
+ }) => {
9136
+ flexGrow: {
9137
+ readonly [$$PropertyValue]: "flexGrow";
9138
+ };
9139
+ };
9140
+ fs: (value: {
9141
+ readonly [$$PropertyValue]: "fontSize";
9142
+ }) => {
9143
+ fontSize: {
9144
+ readonly [$$PropertyValue]: "fontSize";
9145
+ };
9146
+ };
9147
+ fb: (value: {
9148
+ readonly [$$PropertyValue]: "flexBasis";
9149
+ }) => {
9150
+ flexBasis: {
9151
+ readonly [$$PropertyValue]: "flexBasis";
9152
+ };
9153
+ };
9154
+ bc: (value: {
9155
+ readonly [$$PropertyValue]: "backgroundColor";
9156
+ }) => {
9157
+ backgroundColor: {
9158
+ readonly [$$PropertyValue]: "backgroundColor";
9159
+ };
9160
+ };
9161
+ bf: (value: {
9162
+ readonly [$$PropertyValue]: "backdropFilter";
9163
+ }) => {
9164
+ backdropFilter: {
9165
+ readonly [$$PropertyValue]: "backdropFilter";
9166
+ };
9167
+ };
9168
+ bg: (value: {
9169
+ readonly [$$PropertyValue]: "backgroundColor";
9170
+ }) => {
9171
+ background: {
9172
+ readonly [$$PropertyValue]: "backgroundColor";
9173
+ };
9174
+ };
9175
+ bgBlur: (value: {
9176
+ readonly [$$PropertyValue]: "backgroundColor";
9177
+ }) => {
9178
+ bf: string;
9179
+ bg: string;
9180
+ };
9181
+ bgColor: (value: {
9182
+ readonly [$$PropertyValue]: "backgroundColor";
9183
+ }) => {
9184
+ backgroundColor: {
9185
+ readonly [$$PropertyValue]: "backgroundColor";
9186
+ };
9187
+ };
9188
+ backgroundClip: (value: {
9189
+ readonly [$$PropertyValue]: "backgroundClip";
9190
+ }) => {
9191
+ WebkitBackgroundClip: {
9192
+ readonly [$$PropertyValue]: "backgroundClip";
9193
+ };
9194
+ backgroundClip: {
9195
+ readonly [$$PropertyValue]: "backgroundClip";
9196
+ };
9197
+ };
9198
+ bgClip: (value: {
9199
+ readonly [$$PropertyValue]: "backgroundClip";
9200
+ }) => {
9201
+ WebkitBackgroundClip: {
9202
+ readonly [$$PropertyValue]: "backgroundClip";
9203
+ };
9204
+ backgroundClip: {
9205
+ readonly [$$PropertyValue]: "backgroundClip";
9206
+ };
9207
+ };
9208
+ br: (value: {
9209
+ readonly [$$PropertyValue]: "borderRadius";
9210
+ }) => {
9211
+ borderRadius: {
9212
+ readonly [$$PropertyValue]: "borderRadius";
9213
+ };
9214
+ };
9215
+ bw: (value: {
9216
+ readonly [$$PropertyValue]: "borderWidth";
9217
+ }) => {
9218
+ borderWidth: {
9219
+ readonly [$$PropertyValue]: "borderWidth";
9220
+ };
9221
+ };
9222
+ btrr: (value: {
9223
+ readonly [$$PropertyValue]: "borderTopRightRadius";
9224
+ }) => {
9225
+ borderTopRightRadius: {
9226
+ readonly [$$PropertyValue]: "borderTopRightRadius";
9227
+ };
9228
+ };
9229
+ bbrr: (value: {
9230
+ readonly [$$PropertyValue]: "borderBottomRightRadius";
9231
+ }) => {
9232
+ borderBottomRightRadius: {
9233
+ readonly [$$PropertyValue]: "borderBottomRightRadius";
9234
+ };
9235
+ };
9236
+ bblr: (value: {
9237
+ readonly [$$PropertyValue]: "borderBottomLeftRadius";
9238
+ }) => {
9239
+ borderBottomLeftRadius: {
9240
+ readonly [$$PropertyValue]: "borderBottomLeftRadius";
9241
+ };
9242
+ };
9243
+ btlr: (value: {
9244
+ readonly [$$PropertyValue]: "borderTopLeftRadius";
9245
+ }) => {
9246
+ borderTopLeftRadius: {
9247
+ readonly [$$PropertyValue]: "borderTopLeftRadius";
9248
+ };
9249
+ };
9250
+ bs: (value: {
9251
+ readonly [$$PropertyValue]: "boxShadow";
9252
+ }) => {
9253
+ boxShadow: {
9254
+ readonly [$$PropertyValue]: "boxShadow";
9255
+ };
9256
+ };
9257
+ normalShadow: (value: {
9258
+ readonly [$$PropertyValue]: "backgroundColor";
9259
+ }) => {
9260
+ boxShadow: string;
9261
+ };
9262
+ normalShadowVar: (value: {
9263
+ readonly [$$PropertyValue]: "backgroundColor";
9264
+ }) => {
9265
+ boxShadow: string;
9266
+ };
9267
+ lh: (value: {
9268
+ readonly [$$PropertyValue]: "lineHeight";
9269
+ }) => {
9270
+ lineHeight: {
9271
+ readonly [$$PropertyValue]: "lineHeight";
9272
+ };
9273
+ };
9274
+ ov: (value: {
9275
+ readonly [$$PropertyValue]: "overflow";
9276
+ }) => {
9277
+ overflow: {
9278
+ readonly [$$PropertyValue]: "overflow";
9279
+ };
9280
+ };
9281
+ ox: (value: {
9282
+ readonly [$$PropertyValue]: "overflowX";
9283
+ }) => {
9284
+ overflowX: {
9285
+ readonly [$$PropertyValue]: "overflowX";
9286
+ };
9287
+ };
9288
+ oy: (value: {
9289
+ readonly [$$PropertyValue]: "overflowY";
9290
+ }) => {
9291
+ overflowY: {
9292
+ readonly [$$PropertyValue]: "overflowY";
9293
+ };
9294
+ };
9295
+ pe: (value: {
9296
+ readonly [$$PropertyValue]: "pointerEvents";
9297
+ }) => {
9298
+ pointerEvents: {
9299
+ readonly [$$PropertyValue]: "pointerEvents";
9300
+ };
9301
+ };
9302
+ events: (value: {
9303
+ readonly [$$PropertyValue]: "pointerEvents";
9304
+ }) => {
9305
+ pointerEvents: {
9306
+ readonly [$$PropertyValue]: "pointerEvents";
9307
+ };
9308
+ };
9309
+ us: (value: {
9310
+ readonly [$$PropertyValue]: "userSelect";
9311
+ }) => {
9312
+ WebkitUserSelect: {
9313
+ readonly [$$PropertyValue]: "userSelect";
9314
+ };
9315
+ userSelect: {
9316
+ readonly [$$PropertyValue]: "userSelect";
9317
+ };
9318
+ };
9319
+ userSelect: (value: {
9320
+ readonly [$$PropertyValue]: "userSelect";
9321
+ }) => {
9322
+ WebkitUserSelect: {
9323
+ readonly [$$PropertyValue]: "userSelect";
9324
+ };
9325
+ userSelect: {
9326
+ readonly [$$PropertyValue]: "userSelect";
9327
+ };
9328
+ };
9329
+ w: (value: {
9330
+ readonly [$$PropertyValue]: "width";
9331
+ }) => {
9332
+ width: {
9333
+ readonly [$$PropertyValue]: "width";
9334
+ };
9335
+ };
9336
+ h: (value: {
9337
+ readonly [$$PropertyValue]: "height";
9338
+ }) => {
9339
+ height: {
9340
+ readonly [$$PropertyValue]: "height";
9341
+ };
9342
+ };
9343
+ mw: (value: {
9344
+ readonly [$$PropertyValue]: "maxWidth";
9345
+ }) => {
9346
+ maxWidth: {
9347
+ readonly [$$PropertyValue]: "maxWidth";
9348
+ };
9349
+ };
9350
+ maxW: (value: {
9351
+ readonly [$$PropertyValue]: "maxWidth";
9352
+ }) => {
9353
+ maxWidth: {
9354
+ readonly [$$PropertyValue]: "maxWidth";
9355
+ };
9356
+ };
9357
+ mh: (value: {
9358
+ readonly [$$PropertyValue]: "maxHeight";
9359
+ }) => {
9360
+ maxHeight: {
9361
+ readonly [$$PropertyValue]: "maxHeight";
9362
+ };
9363
+ };
9364
+ maxH: (value: {
9365
+ readonly [$$PropertyValue]: "maxHeight";
9366
+ }) => {
9367
+ maxHeight: {
9368
+ readonly [$$PropertyValue]: "maxHeight";
9369
+ };
9370
+ };
9371
+ size: (value: {
9372
+ readonly [$$PropertyValue]: "width";
9373
+ }) => {
9374
+ width: {
9375
+ readonly [$$PropertyValue]: "width";
9376
+ };
9377
+ height: {
9378
+ readonly [$$PropertyValue]: "width";
9379
+ };
9380
+ };
9381
+ minSize: (value: {
9382
+ readonly [$$PropertyValue]: "width";
9383
+ }) => {
9384
+ minWidth: {
9385
+ readonly [$$PropertyValue]: "width";
9386
+ };
9387
+ minHeight: {
9388
+ readonly [$$PropertyValue]: "width";
9389
+ };
9390
+ width: {
9391
+ readonly [$$PropertyValue]: "width";
9392
+ };
9393
+ height: {
9394
+ readonly [$$PropertyValue]: "width";
9395
+ };
9396
+ };
9397
+ sizeMin: (value: {
9398
+ readonly [$$PropertyValue]: "width";
9399
+ }) => {
9400
+ minWidth: {
9401
+ readonly [$$PropertyValue]: "width";
9402
+ };
9403
+ minHeight: {
9404
+ readonly [$$PropertyValue]: "width";
9405
+ };
9406
+ width: {
9407
+ readonly [$$PropertyValue]: "width";
9408
+ };
9409
+ height: {
9410
+ readonly [$$PropertyValue]: "width";
9411
+ };
9412
+ };
9413
+ maxSize: (value: {
9414
+ readonly [$$PropertyValue]: "width";
9415
+ }) => {
9416
+ maxWidth: {
9417
+ readonly [$$PropertyValue]: "width";
9418
+ };
9419
+ maxHeight: {
9420
+ readonly [$$PropertyValue]: "width";
9421
+ };
9422
+ };
9423
+ sizeMax: (value: {
9424
+ readonly [$$PropertyValue]: "width";
9425
+ }) => {
9426
+ maxWidth: {
9427
+ readonly [$$PropertyValue]: "width";
9428
+ };
9429
+ maxHeight: {
9430
+ readonly [$$PropertyValue]: "width";
9431
+ };
9432
+ };
9433
+ appearance: (value: {
9434
+ readonly [$$PropertyValue]: "appearance";
9435
+ }) => {
9436
+ WebkitAppearance: {
9437
+ readonly [$$PropertyValue]: "appearance";
9438
+ };
9439
+ appearance: {
9440
+ readonly [$$PropertyValue]: "appearance";
9441
+ };
9442
+ };
9443
+ scale: (value: {
9444
+ readonly [$$PropertyValue]: "scale";
9445
+ }) => {
9446
+ transform: string;
9447
+ };
9448
+ linearGradient: (value: {
9449
+ readonly [$$PropertyValue]: "backgroundImage";
9450
+ }) => {
9451
+ backgroundImage: string;
9452
+ };
9453
+ tdl: (value: {
9454
+ readonly [$$PropertyValue]: "textDecorationLine";
9455
+ }) => {
9456
+ textDecorationLine: {
9457
+ readonly [$$PropertyValue]: "textDecorationLine";
9458
+ };
9459
+ };
9460
+ textGradient: (value: {
9461
+ readonly [$$PropertyValue]: "backgroundImage";
9462
+ }) => {
9463
+ backgroundImage: string;
9464
+ WebkitBackgroundClip: string;
9465
+ WebkitTextFillColor: string;
9466
+ '&::selection': {
9467
+ WebkitTextFillColor: string;
9468
+ };
9469
+ };
9470
+ }>>;
9471
+ export declare const StyledCheckboxGroupLabel: import("@stitches/react/types/styled-component").StyledComponent<"label", {
9472
+ disabled?: boolean | "true" | undefined;
9473
+ }, {
9474
+ xs: string;
9475
+ sm: string;
9476
+ md: string;
9477
+ lg: string;
9478
+ xl: string;
9479
+ xsMax: string;
9480
+ smMax: string;
9481
+ mdMax: string;
9482
+ lgMax: string;
9483
+ xlMax: string;
9484
+ motion: string;
9485
+ safari: string;
9486
+ hover: string;
9487
+ dark: string;
9488
+ light: string;
9489
+ }, import("@stitches/react/types/css-util").CSS<{
9490
+ xs: string;
9491
+ sm: string;
9492
+ md: string;
9493
+ lg: string;
9494
+ xl: string;
9495
+ xsMax: string;
9496
+ smMax: string;
9497
+ mdMax: string;
9498
+ lgMax: string;
9499
+ xlMax: string;
9500
+ motion: string;
9501
+ safari: string;
9502
+ hover: string;
9503
+ dark: string;
9504
+ light: string;
9505
+ }, {
9506
+ shadows: {
9507
+ xs: string;
9508
+ sm: string;
9509
+ md: string;
9510
+ lg: string;
9511
+ xl: string;
9512
+ };
9513
+ colors: {
9514
+ accents1: string;
9515
+ accents2: string;
9516
+ accents3: string;
9517
+ accents4: string;
9518
+ accents5: string;
9519
+ accents6: string;
9520
+ accents7: string;
9521
+ accents8: string;
9522
+ accents9: string;
9523
+ text: string;
9524
+ background: string;
9525
+ foreground: string;
9526
+ codeLight: string;
9527
+ code: string;
9528
+ border: string;
9529
+ selection: string;
9530
+ white: string;
9531
+ black: string;
9532
+ blue100: string;
9533
+ blue200: string;
9534
+ blue300: string;
9535
+ blue400: string;
9536
+ blue500: string;
9537
+ blue600: string;
9538
+ blue700: string;
9539
+ blue800: string;
9540
+ blue900: string;
9541
+ purple100: string;
9542
+ purple200: string;
9543
+ purple300: string;
9544
+ purple400: string;
9545
+ purple500: string;
9546
+ purple600: string;
9547
+ purple700: string;
9548
+ purple800: string;
9549
+ purple900: string;
9550
+ green100: string;
9551
+ green200: string;
9552
+ green300: string;
9553
+ green400: string;
9554
+ green500: string;
9555
+ green600: string;
9556
+ green700: string;
9557
+ green800: string;
9558
+ green900: string;
9559
+ yellow100: string;
9560
+ yellow200: string;
9561
+ yellow300: string;
9562
+ yellow400: string;
9563
+ yellow500: string;
9564
+ yellow600: string;
9565
+ yellow700: string;
9566
+ yellow800: string;
9567
+ yellow900: string;
9568
+ red100: string;
9569
+ red200: string;
9570
+ red300: string;
9571
+ red400: string;
9572
+ red500: string;
9573
+ red600: string;
9574
+ red700: string;
9575
+ red800: string;
9576
+ red900: string;
9577
+ cyan100: string;
9578
+ cyan200: string;
9579
+ cyan300: string;
9580
+ cyan400: string;
9581
+ cyan500: string;
9582
+ cyan600: string;
9583
+ cyan700: string;
9584
+ cyan800: string;
9585
+ cyan900: string;
9586
+ pink100: string;
9587
+ pink200: string;
9588
+ pink300: string;
9589
+ pink400: string;
9590
+ pink500: string;
9591
+ pink600: string;
9592
+ pink700: string;
9593
+ pink800: string;
9594
+ pink900: string;
9595
+ gray100: string;
9596
+ gray200: string;
9597
+ gray300: string;
9598
+ gray400: string;
9599
+ gray500: string;
9600
+ gray600: string;
9601
+ gray700: string;
9602
+ gray800: string;
9603
+ gray900: string;
9604
+ primaryLight: string;
9605
+ primary: string;
9606
+ primaryDark: string;
9607
+ primaryShadow: string;
9608
+ secondaryLight: string;
9609
+ secondary: string;
9610
+ secondaryDark: string;
9611
+ secondaryShadow: string;
9612
+ successLight: string;
9613
+ success: string;
9614
+ successDark: string;
9615
+ successShadow: string;
9616
+ warningLight: string;
9617
+ warning: string;
9618
+ warningDark: string;
9619
+ warningShadow: string;
9620
+ errorLight: string;
9621
+ error: string;
9622
+ errorDark: string;
9623
+ errorShadow: string;
9624
+ gradient: string;
9625
+ link: string;
9626
+ };
9627
+ fonts: {
9628
+ sans: string;
9629
+ mono: string;
9630
+ };
9631
+ fontSizes: {
9632
+ tiny: string;
9633
+ xs: string;
9634
+ base: string;
9635
+ sm: string;
9636
+ md: string;
9637
+ lg: string;
9638
+ xl: string;
9639
+ };
9640
+ fontWeights: {
9641
+ hairline: number;
9642
+ thin: number;
9643
+ light: number;
9644
+ normal: number;
9645
+ medium: number;
9646
+ semibold: number;
9647
+ bold: number;
9648
+ extrabold: number;
9649
+ black: number;
9650
+ };
9651
+ lineHeights: {
9652
+ xs: number;
9653
+ sm: number;
9654
+ md: number;
9655
+ lg: number;
9656
+ xl: number;
9657
+ };
9658
+ letterSpacings: {
9659
+ tighter: string;
9660
+ tight: string;
9661
+ normal: string;
9662
+ wide: string;
9663
+ wider: string;
9664
+ widest: string;
9665
+ };
9666
+ space: {
9667
+ 0: string;
9668
+ xs: string;
9669
+ sm: string;
9670
+ md: string;
9671
+ lg: string;
9672
+ xl: string;
9673
+ px: string;
9674
+ 1: string;
9675
+ 2: string;
9676
+ 3: string;
9677
+ 4: string;
9678
+ 5: string;
9679
+ 6: string;
9680
+ 7: string;
9681
+ 8: string;
9682
+ 9: string;
9683
+ 10: string;
9684
+ 11: string;
9685
+ 12: string;
9686
+ 13: string;
9687
+ 14: string;
9688
+ 15: string;
9689
+ 16: string;
9690
+ 17: string;
9691
+ 18: string;
9692
+ 20: string;
9693
+ 24: string;
9694
+ 28: string;
9695
+ 32: string;
9696
+ 36: string;
9697
+ 40: string;
9698
+ 44: string;
9699
+ 48: string;
9700
+ 52: string;
9701
+ 56: string;
9702
+ 60: string;
9703
+ 64: string;
9704
+ 72: string;
9705
+ 80: string;
9706
+ 96: string;
9707
+ };
9708
+ radii: {
9709
+ xs: string;
9710
+ sm: string;
9711
+ md: string;
9712
+ base: string;
9713
+ lg: string;
9714
+ xl: string;
9715
+ squared: string;
9716
+ rounded: string;
9717
+ pill: string;
9718
+ };
9719
+ zIndices: {
9720
+ 1: string;
9721
+ 2: string;
9722
+ 3: string;
9723
+ 4: string;
9724
+ 5: string;
9725
+ 10: string;
9726
+ max: string;
9727
+ };
9728
+ borderWeights: {
9729
+ light: string;
9730
+ normal: string;
9731
+ bold: string;
9732
+ extrabold: string;
9733
+ black: string;
9734
+ };
9735
+ transitions: {
9736
+ default: string;
9737
+ button: string;
9738
+ avatar: string;
9739
+ link: string;
9740
+ card: string;
8746
9741
  };
8747
9742
  breakpoints: {
8748
9743
  xs: string;
@@ -9410,7 +10405,6 @@ export declare const StyledCheckboxGroup: import("@stitches/react/types/styled-c
9410
10405
  };
9411
10406
  };
9412
10407
  }>>;
9413
- export declare type CheckboxVariantsProps = VariantProps<typeof StyledCheckboxInput>;
9414
10408
  export declare type CheckboxGroupVariantsProps = VariantProps<typeof StyledCheckboxGroup>;
9415
10409
  export declare type CheckboxTextVariantsProps = VariantProps<typeof StyledCheckboxText>;
9416
10410
  export declare type CheckboxMaskVariantsProps = VariantProps<typeof StyledCheckboxMask>;