@nextui-org/react 1.0.6-beta.5 → 1.0.7-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 (74) hide show
  1. package/cjs/avatar/avatar.styles.js +1 -1
  2. package/cjs/card/card.styles.js +1 -1
  3. package/cjs/checkbox/checkbox-context.js +1 -1
  4. package/cjs/checkbox/checkbox-group.js +1 -1
  5. package/cjs/checkbox/checkbox.js +1 -1
  6. package/cjs/checkbox/checkbox.styles.js +1 -1
  7. package/cjs/checkbox/index.js +1 -1
  8. package/cjs/checkbox/utils.js +1 -0
  9. package/cjs/link/link.styles.js +1 -1
  10. package/cjs/table/table-checkbox-cell.js +1 -1
  11. package/cjs/table/table-select-all-checkbox.js +1 -1
  12. package/cjs/table/table.styles.js +1 -1
  13. package/cjs/table/utils.js +1 -1
  14. package/cjs/theme/common.js +1 -1
  15. package/cjs/utils/dom.js +1 -1
  16. package/esm/avatar/avatar.styles.js +1 -1
  17. package/esm/card/card.styles.js +1 -1
  18. package/esm/checkbox/checkbox-context.js +1 -1
  19. package/esm/checkbox/checkbox-group.js +1 -1
  20. package/esm/checkbox/checkbox.js +1 -1
  21. package/esm/checkbox/checkbox.styles.js +1 -1
  22. package/esm/checkbox/index.js +1 -1
  23. package/esm/checkbox/utils.js +1 -0
  24. package/esm/link/link.styles.js +1 -1
  25. package/esm/table/table-checkbox-cell.js +1 -1
  26. package/esm/table/table-select-all-checkbox.js +1 -1
  27. package/esm/table/table.styles.js +1 -1
  28. package/esm/table/utils.js +1 -1
  29. package/esm/theme/common.js +1 -1
  30. package/esm/utils/dom.js +1 -1
  31. package/package.json +2 -1
  32. package/types/avatar/avatar-group.styles.d.ts +6 -0
  33. package/types/avatar/avatar.styles.d.ts +4 -1
  34. package/types/backdrop/backdrop.styles.d.ts +9 -0
  35. package/types/button/button-group.styles.d.ts +3 -0
  36. package/types/button/button-icon.d.ts +3 -0
  37. package/types/button/button.styles.d.ts +6 -0
  38. package/types/card/card.styles.d.ts +12 -0
  39. package/types/checkbox/checkbox-context.d.ts +4 -6
  40. package/types/checkbox/checkbox-group.d.ts +13 -12
  41. package/types/checkbox/checkbox.d.ts +13 -20
  42. package/types/checkbox/checkbox.styles.d.ts +1080 -86
  43. package/types/checkbox/index.d.ts +2 -2
  44. package/types/checkbox/utils.d.ts +288 -0
  45. package/types/code/code.styles.d.ts +6 -0
  46. package/types/col/col.styles.d.ts +3 -0
  47. package/types/collapse/collapse.styles.d.ts +18 -0
  48. package/types/container/container.styles.d.ts +3 -0
  49. package/types/divider/divider.styles.d.ts +6 -0
  50. package/types/grid/grid.styles.d.ts +6 -0
  51. package/types/image/image.styles.d.ts +9 -0
  52. package/types/input/input.styles.d.ts +33 -0
  53. package/types/link/link.styles.d.ts +6 -0
  54. package/types/loading/loading.styles.d.ts +18 -0
  55. package/types/modal/modal.styles.d.ts +18 -0
  56. package/types/pagination/pagination.styles.d.ts +18 -0
  57. package/types/progress/progress.styles.d.ts +6 -0
  58. package/types/radio/radio.styles.d.ts +18 -0
  59. package/types/row/row.styles.d.ts +3 -0
  60. package/types/snippet/snippet.styles.d.ts +12 -0
  61. package/types/spacer/spacer.styles.d.ts +3 -0
  62. package/types/switch/switch.styles.d.ts +12 -0
  63. package/types/table/table-column-header.d.ts +3 -1
  64. package/types/table/table-sort-icon.d.ts +3 -0
  65. package/types/table/table.styles.d.ts +51 -3
  66. package/types/table/utils.d.ts +29 -0
  67. package/types/text/text.styles.d.ts +3 -0
  68. package/types/theme/common.d.ts +6 -0
  69. package/types/theme/stitches.config.d.ts +39 -0
  70. package/types/tooltip/tooltip.styles.d.ts +12 -0
  71. package/types/user/user.styles.d.ts +15 -0
  72. package/types/utils/drip.d.ts +3 -0
  73. package/umd/nextui.js +718 -691
  74. package/umd/nextui.min.js +1 -1
@@ -264,6 +264,9 @@ export declare const StyledModalHideTab: import("@stitches/react/types/styled-co
264
264
  transitions: {
265
265
  default: string;
266
266
  button: string;
267
+ avatar: string;
268
+ link: string;
269
+ card: string;
267
270
  };
268
271
  breakpoints: {
269
272
  xs: string;
@@ -1198,6 +1201,9 @@ export declare const StyledModalCloseButton: import("@stitches/react/types/style
1198
1201
  transitions: {
1199
1202
  default: string;
1200
1203
  button: string;
1204
+ avatar: string;
1205
+ link: string;
1206
+ card: string;
1201
1207
  };
1202
1208
  breakpoints: {
1203
1209
  xs: string;
@@ -2133,6 +2139,9 @@ export declare const StyledModalHeader: import("@stitches/react/types/styled-com
2133
2139
  transitions: {
2134
2140
  default: string;
2135
2141
  button: string;
2142
+ avatar: string;
2143
+ link: string;
2144
+ card: string;
2136
2145
  };
2137
2146
  breakpoints: {
2138
2147
  xs: string;
@@ -3068,6 +3077,9 @@ export declare const StyledModalBody: import("@stitches/react/types/styled-compo
3068
3077
  transitions: {
3069
3078
  default: string;
3070
3079
  button: string;
3080
+ avatar: string;
3081
+ link: string;
3082
+ card: string;
3071
3083
  };
3072
3084
  breakpoints: {
3073
3085
  xs: string;
@@ -4003,6 +4015,9 @@ export declare const StyledModalFooter: import("@stitches/react/types/styled-com
4003
4015
  transitions: {
4004
4016
  default: string;
4005
4017
  button: string;
4018
+ avatar: string;
4019
+ link: string;
4020
+ card: string;
4006
4021
  };
4007
4022
  breakpoints: {
4008
4023
  xs: string;
@@ -4940,6 +4955,9 @@ export declare const StyledModal: import("@stitches/react/types/styled-component
4940
4955
  transitions: {
4941
4956
  default: string;
4942
4957
  button: string;
4958
+ avatar: string;
4959
+ link: string;
4960
+ card: string;
4943
4961
  };
4944
4962
  breakpoints: {
4945
4963
  xs: string;
@@ -267,6 +267,9 @@ export declare const StyledPaginationEllipsis: import("@stitches/react/types/sty
267
267
  transitions: {
268
268
  default: string;
269
269
  button: string;
270
+ avatar: string;
271
+ link: string;
272
+ card: string;
270
273
  };
271
274
  breakpoints: {
272
275
  xs: string;
@@ -1201,6 +1204,9 @@ export declare const StyledPaginationIcon: import("@stitches/react/types/styled-
1201
1204
  transitions: {
1202
1205
  default: string;
1203
1206
  button: string;
1207
+ avatar: string;
1208
+ link: string;
1209
+ card: string;
1204
1210
  };
1205
1211
  breakpoints: {
1206
1212
  xs: string;
@@ -2133,6 +2139,9 @@ export declare const StyledPaginationItemContent: import("@stitches/react/types/
2133
2139
  transitions: {
2134
2140
  default: string;
2135
2141
  button: string;
2142
+ avatar: string;
2143
+ link: string;
2144
+ card: string;
2136
2145
  };
2137
2146
  breakpoints: {
2138
2147
  xs: string;
@@ -3072,6 +3081,9 @@ export declare const StyledPaginationItem: import("@stitches/react/types/styled-
3072
3081
  transitions: {
3073
3082
  default: string;
3074
3083
  button: string;
3084
+ avatar: string;
3085
+ link: string;
3086
+ card: string;
3075
3087
  };
3076
3088
  breakpoints: {
3077
3089
  xs: string;
@@ -4009,6 +4021,9 @@ export declare const StyledPaginationHighlight: import("@stitches/react/types/st
4009
4021
  transitions: {
4010
4022
  default: string;
4011
4023
  button: string;
4024
+ avatar: string;
4025
+ link: string;
4026
+ card: string;
4012
4027
  };
4013
4028
  breakpoints: {
4014
4029
  xs: string;
@@ -4949,6 +4964,9 @@ export declare const StyledPagination: import("@stitches/react/types/styled-comp
4949
4964
  transitions: {
4950
4965
  default: string;
4951
4966
  button: string;
4967
+ avatar: string;
4968
+ link: string;
4969
+ card: string;
4952
4970
  };
4953
4971
  breakpoints: {
4954
4972
  xs: string;
@@ -270,6 +270,9 @@ export declare const StyledProgress: import("@stitches/react/types/styled-compon
270
270
  transitions: {
271
271
  default: string;
272
272
  button: string;
273
+ avatar: string;
274
+ link: string;
275
+ card: string;
273
276
  };
274
277
  breakpoints: {
275
278
  xs: string;
@@ -1207,6 +1210,9 @@ export declare const StyledProgressBar: import("@stitches/react/types/styled-com
1207
1210
  transitions: {
1208
1211
  default: string;
1209
1212
  button: string;
1213
+ avatar: string;
1214
+ link: string;
1215
+ card: string;
1210
1216
  };
1211
1217
  breakpoints: {
1212
1218
  xs: string;
@@ -264,6 +264,9 @@ export declare const StyledRadioInput: import("@stitches/react/types/styled-comp
264
264
  transitions: {
265
265
  default: string;
266
266
  button: string;
267
+ avatar: string;
268
+ link: string;
269
+ card: string;
267
270
  };
268
271
  breakpoints: {
269
272
  xs: string;
@@ -1199,6 +1202,9 @@ export declare const StyledRadioLabel: import("@stitches/react/types/styled-comp
1199
1202
  transitions: {
1200
1203
  default: string;
1201
1204
  button: string;
1205
+ avatar: string;
1206
+ link: string;
1207
+ card: string;
1202
1208
  };
1203
1209
  breakpoints: {
1204
1210
  xs: string;
@@ -2131,6 +2137,9 @@ export declare const StyledRadioPoint: import("@stitches/react/types/styled-comp
2131
2137
  transitions: {
2132
2138
  default: string;
2133
2139
  button: string;
2140
+ avatar: string;
2141
+ link: string;
2142
+ card: string;
2134
2143
  };
2135
2144
  breakpoints: {
2136
2145
  xs: string;
@@ -3070,6 +3079,9 @@ export declare const StyledRadio: import("@stitches/react/types/styled-component
3070
3079
  transitions: {
3071
3080
  default: string;
3072
3081
  button: string;
3082
+ avatar: string;
3083
+ link: string;
3084
+ card: string;
3073
3085
  };
3074
3086
  breakpoints: {
3075
3087
  xs: string;
@@ -4005,6 +4017,9 @@ export declare const StyledRadioGroup: import("@stitches/react/types/styled-comp
4005
4017
  transitions: {
4006
4018
  default: string;
4007
4019
  button: string;
4020
+ avatar: string;
4021
+ link: string;
4022
+ card: string;
4008
4023
  };
4009
4024
  breakpoints: {
4010
4025
  xs: string;
@@ -4937,6 +4952,9 @@ export declare const StyledRadioDescription: import("@stitches/react/types/style
4937
4952
  transitions: {
4938
4953
  default: string;
4939
4954
  button: string;
4955
+ avatar: string;
4956
+ link: string;
4957
+ card: string;
4940
4958
  };
4941
4959
  breakpoints: {
4942
4960
  xs: string;
@@ -266,6 +266,9 @@ export declare const StyledRow: import("@stitches/react/types/styled-component")
266
266
  transitions: {
267
267
  default: string;
268
268
  button: string;
269
+ avatar: string;
270
+ link: string;
271
+ card: string;
269
272
  };
270
273
  breakpoints: {
271
274
  xs: string;
@@ -269,6 +269,9 @@ export declare const StyledSnippet: import("@stitches/react/types/styled-compone
269
269
  transitions: {
270
270
  default: string;
271
271
  button: string;
272
+ avatar: string;
273
+ link: string;
274
+ card: string;
272
275
  };
273
276
  breakpoints: {
274
277
  xs: string;
@@ -1203,6 +1206,9 @@ export declare const StyledSnippetPre: import("@stitches/react/types/styled-comp
1203
1206
  transitions: {
1204
1207
  default: string;
1205
1208
  button: string;
1209
+ avatar: string;
1210
+ link: string;
1211
+ card: string;
1206
1212
  };
1207
1213
  breakpoints: {
1208
1214
  xs: string;
@@ -2135,6 +2141,9 @@ export declare const StyledSnippetCopyButtonIcon: import("@stitches/react/types/
2135
2141
  transitions: {
2136
2142
  default: string;
2137
2143
  button: string;
2144
+ avatar: string;
2145
+ link: string;
2146
+ card: string;
2138
2147
  };
2139
2148
  breakpoints: {
2140
2149
  xs: string;
@@ -3067,6 +3076,9 @@ export declare const StyledSnippetCopyButton: import("@stitches/react/types/styl
3067
3076
  transitions: {
3068
3077
  default: string;
3069
3078
  button: string;
3079
+ avatar: string;
3080
+ link: string;
3081
+ card: string;
3070
3082
  };
3071
3083
  breakpoints: {
3072
3084
  xs: string;
@@ -266,6 +266,9 @@ export declare const StyledSpacer: import("@stitches/react/types/styled-componen
266
266
  transitions: {
267
267
  default: string;
268
268
  button: string;
269
+ avatar: string;
270
+ link: string;
271
+ card: string;
269
272
  };
270
273
  breakpoints: {
271
274
  xs: string;
@@ -270,6 +270,9 @@ export declare const StyledSwitchContainer: import("@stitches/react/types/styled
270
270
  transitions: {
271
271
  default: string;
272
272
  button: string;
273
+ avatar: string;
274
+ link: string;
275
+ card: string;
273
276
  };
274
277
  breakpoints: {
275
278
  xs: string;
@@ -1202,6 +1205,9 @@ export declare const StyledSwitchInput: import("@stitches/react/types/styled-com
1202
1205
  transitions: {
1203
1206
  default: string;
1204
1207
  button: string;
1208
+ avatar: string;
1209
+ link: string;
1210
+ card: string;
1205
1211
  };
1206
1212
  breakpoints: {
1207
1213
  xs: string;
@@ -2134,6 +2140,9 @@ export declare const StyledSwitchCircle: import("@stitches/react/types/styled-co
2134
2140
  transitions: {
2135
2141
  default: string;
2136
2142
  button: string;
2143
+ avatar: string;
2144
+ link: string;
2145
+ card: string;
2137
2146
  };
2138
2147
  breakpoints: {
2139
2148
  xs: string;
@@ -3073,6 +3082,9 @@ export declare const StyledSwitch: import("@stitches/react/types/styled-componen
3073
3082
  transitions: {
3074
3083
  default: string;
3075
3084
  button: string;
3085
+ avatar: string;
3086
+ link: string;
3087
+ card: string;
3076
3088
  };
3077
3089
  breakpoints: {
3078
3090
  xs: string;
@@ -19,7 +19,6 @@ declare const TableColumnHeader: React.ForwardRefExoticComponent<Props<unknown>
19
19
  color: string;
20
20
  fontSize: string;
21
21
  textAlign: string;
22
- transition: string;
23
22
  position: string;
24
23
  '@motion': {
25
24
  transition: string;
@@ -341,6 +340,9 @@ declare const TableColumnHeader: React.ForwardRefExoticComponent<Props<unknown>
341
340
  transitions: {
342
341
  default: string;
343
342
  button: string;
343
+ avatar: string;
344
+ link: string;
345
+ card: string;
344
346
  };
345
347
  breakpoints: {
346
348
  xs: string;
@@ -268,6 +268,9 @@ declare const StyledSortIcon: import("@stitches/react/types/styled-component").S
268
268
  transitions: {
269
269
  default: string;
270
270
  button: string;
271
+ avatar: string;
272
+ link: string;
273
+ card: string;
271
274
  };
272
275
  breakpoints: {
273
276
  xs: string;
@@ -264,6 +264,9 @@ export declare const StyledTableHeaderRow: import("@stitches/react/types/styled-
264
264
  transitions: {
265
265
  default: string;
266
266
  button: string;
267
+ avatar: string;
268
+ link: string;
269
+ card: string;
267
270
  };
268
271
  breakpoints: {
269
272
  xs: string;
@@ -938,7 +941,6 @@ export declare const StyledTableColumnHeader: import("@stitches/react/types/styl
938
941
  color: string;
939
942
  fontSize: string;
940
943
  textAlign: string;
941
- transition: string;
942
944
  position: string;
943
945
  '@motion': {
944
946
  transition: string;
@@ -1260,6 +1262,9 @@ export declare const StyledTableColumnHeader: import("@stitches/react/types/styl
1260
1262
  transitions: {
1261
1263
  default: string;
1262
1264
  button: string;
1265
+ avatar: string;
1266
+ link: string;
1267
+ card: string;
1263
1268
  };
1264
1269
  breakpoints: {
1265
1270
  xs: string;
@@ -2191,6 +2196,9 @@ export declare const StyledTableColumnHeader: import("@stitches/react/types/styl
2191
2196
  transitions: {
2192
2197
  default: string;
2193
2198
  button: string;
2199
+ avatar: string;
2200
+ link: string;
2201
+ card: string;
2194
2202
  };
2195
2203
  breakpoints: {
2196
2204
  xs: string;
@@ -2865,7 +2873,6 @@ export declare const StyledTableHeaderCell: import("@stitches/react/types/styled
2865
2873
  color: string;
2866
2874
  fontSize: string;
2867
2875
  textAlign: string;
2868
- transition: string;
2869
2876
  position: string;
2870
2877
  '@motion': {
2871
2878
  transition: string;
@@ -3187,6 +3194,9 @@ export declare const StyledTableHeaderCell: import("@stitches/react/types/styled
3187
3194
  transitions: {
3188
3195
  default: string;
3189
3196
  button: string;
3197
+ avatar: string;
3198
+ link: string;
3199
+ card: string;
3190
3200
  };
3191
3201
  breakpoints: {
3192
3202
  xs: string;
@@ -4118,6 +4128,9 @@ export declare const StyledTableHeaderCell: import("@stitches/react/types/styled
4118
4128
  transitions: {
4119
4129
  default: string;
4120
4130
  button: string;
4131
+ avatar: string;
4132
+ link: string;
4133
+ card: string;
4121
4134
  };
4122
4135
  breakpoints: {
4123
4136
  xs: string;
@@ -5051,6 +5064,9 @@ export declare const StyledTableHeaderCell: import("@stitches/react/types/styled
5051
5064
  transitions: {
5052
5065
  default: string;
5053
5066
  button: string;
5067
+ avatar: string;
5068
+ link: string;
5069
+ card: string;
5054
5070
  };
5055
5071
  breakpoints: {
5056
5072
  xs: string;
@@ -5985,6 +6001,9 @@ export declare const StyledTableFooter: import("@stitches/react/types/styled-com
5985
6001
  transitions: {
5986
6002
  default: string;
5987
6003
  button: string;
6004
+ avatar: string;
6005
+ link: string;
6006
+ card: string;
5988
6007
  };
5989
6008
  breakpoints: {
5990
6009
  xs: string;
@@ -6917,6 +6936,9 @@ export declare const StyledBaseTableCell: import("@stitches/react/types/styled-c
6917
6936
  transitions: {
6918
6937
  default: string;
6919
6938
  button: string;
6939
+ avatar: string;
6940
+ link: string;
6941
+ card: string;
6920
6942
  };
6921
6943
  breakpoints: {
6922
6944
  xs: string;
@@ -7849,6 +7871,9 @@ export declare const StyledTableCell: import("@stitches/react/types/styled-compo
7849
7871
  transitions: {
7850
7872
  default: string;
7851
7873
  button: string;
7874
+ avatar: string;
7875
+ link: string;
7876
+ card: string;
7852
7877
  };
7853
7878
  breakpoints: {
7854
7879
  xs: string;
@@ -8520,7 +8545,6 @@ export declare const StyledTableCell: import("@stitches/react/types/styled-compo
8520
8545
  userSelect: string;
8521
8546
  py: string;
8522
8547
  zIndex: string;
8523
- transition: string;
8524
8548
  ov: string;
8525
8549
  whiteSpace: string;
8526
8550
  textOverflow: string;
@@ -8820,6 +8844,9 @@ export declare const StyledTableCell: import("@stitches/react/types/styled-compo
8820
8844
  transitions: {
8821
8845
  default: string;
8822
8846
  button: string;
8847
+ avatar: string;
8848
+ link: string;
8849
+ card: string;
8823
8850
  };
8824
8851
  breakpoints: {
8825
8852
  xs: string;
@@ -9751,6 +9778,9 @@ export declare const StyledTableCell: import("@stitches/react/types/styled-compo
9751
9778
  transitions: {
9752
9779
  default: string;
9753
9780
  button: string;
9781
+ avatar: string;
9782
+ link: string;
9783
+ card: string;
9754
9784
  };
9755
9785
  breakpoints: {
9756
9786
  xs: string;
@@ -10706,6 +10736,9 @@ export declare const StyledTableRow: import("@stitches/react/types/styled-compon
10706
10736
  transitions: {
10707
10737
  default: string;
10708
10738
  button: string;
10739
+ avatar: string;
10740
+ link: string;
10741
+ card: string;
10709
10742
  };
10710
10743
  breakpoints: {
10711
10744
  xs: string;
@@ -11637,6 +11670,9 @@ export declare const StyledTableRow: import("@stitches/react/types/styled-compon
11637
11670
  transitions: {
11638
11671
  default: string;
11639
11672
  button: string;
11673
+ avatar: string;
11674
+ link: string;
11675
+ card: string;
11640
11676
  };
11641
11677
  breakpoints: {
11642
11678
  xs: string;
@@ -12572,6 +12608,9 @@ export declare const StyledTableRowGroup: import("@stitches/react/types/styled-c
12572
12608
  transitions: {
12573
12609
  default: string;
12574
12610
  button: string;
12611
+ avatar: string;
12612
+ link: string;
12613
+ card: string;
12575
12614
  };
12576
12615
  breakpoints: {
12577
12616
  xs: string;
@@ -13507,6 +13546,9 @@ export declare const StyledTableLoadingRow: import("@stitches/react/types/styled
13507
13546
  transitions: {
13508
13547
  default: string;
13509
13548
  button: string;
13549
+ avatar: string;
13550
+ link: string;
13551
+ card: string;
13510
13552
  };
13511
13553
  breakpoints: {
13512
13554
  xs: string;
@@ -14453,6 +14495,9 @@ export declare const StyledTable: import("@stitches/react/types/styled-component
14453
14495
  transitions: {
14454
14496
  default: string;
14455
14497
  button: string;
14498
+ avatar: string;
14499
+ link: string;
14500
+ card: string;
14456
14501
  };
14457
14502
  breakpoints: {
14458
14503
  xs: string;
@@ -15389,6 +15434,9 @@ export declare const StyledTableContainer: import("@stitches/react/types/styled-
15389
15434
  transitions: {
15390
15435
  default: string;
15391
15436
  button: string;
15437
+ avatar: string;
15438
+ link: string;
15439
+ card: string;
15392
15440
  };
15393
15441
  breakpoints: {
15394
15442
  xs: string;
@@ -1,2 +1,31 @@
1
+ /// <reference types="react" />
2
+ import { AriaCheckboxProps } from '@react-types/checkbox';
1
3
  import { TableCollection } from '@react-types/table';
2
4
  export declare const isInfinityScroll: (collection: TableCollection<unknown>) => boolean;
5
+ export declare const mapPropsToCheckboxAttr: (ariaProps: AriaCheckboxProps) => {
6
+ children?: import("react").ReactNode;
7
+ onChange?: ((isSelected: boolean) => void) | undefined;
8
+ value?: string | undefined;
9
+ name?: string | undefined;
10
+ isDisabled?: boolean | undefined;
11
+ validationState?: import("@react-types/shared/src/inputs").ValidationState | undefined;
12
+ autoFocus?: boolean | undefined;
13
+ onFocus?: ((e: import("react").FocusEvent<Element, Element>) => void) | undefined;
14
+ onBlur?: ((e: import("react").FocusEvent<Element, Element>) => void) | undefined;
15
+ onFocusChange?: ((isFocused: boolean) => void) | undefined;
16
+ onKeyDown?: ((e: import("@react-types/shared/src/events").KeyboardEvent) => void) | undefined;
17
+ onKeyUp?: ((e: import("@react-types/shared/src/events").KeyboardEvent) => void) | undefined;
18
+ 'aria-controls'?: string | undefined;
19
+ excludeFromTabOrder?: boolean | undefined;
20
+ id?: string | undefined;
21
+ 'aria-label'?: string | undefined;
22
+ 'aria-labelledby'?: string | undefined;
23
+ 'aria-describedby'?: string | undefined;
24
+ 'aria-details'?: string | undefined;
25
+ 'aria-errormessage'?: string | undefined;
26
+ checked: boolean | undefined;
27
+ initialChecked: boolean | undefined;
28
+ indeterminate: boolean | undefined;
29
+ readOnly: boolean | undefined;
30
+ required: boolean | undefined;
31
+ };
@@ -266,6 +266,9 @@ export declare const StyledText: import("@stitches/react/types/styled-component"
266
266
  transitions: {
267
267
  default: string;
268
268
  button: string;
269
+ avatar: string;
270
+ link: string;
271
+ card: string;
269
272
  };
270
273
  breakpoints: {
271
274
  xs: string;
@@ -111,6 +111,9 @@ export declare const defaultTokens: {
111
111
  transitions: {
112
112
  default: string;
113
113
  button: string;
114
+ avatar: string;
115
+ link: string;
116
+ card: string;
114
117
  };
115
118
  breakpoints: {
116
119
  xs: string;
@@ -972,6 +975,9 @@ declare const _default: {
972
975
  transitions: {
973
976
  default: string;
974
977
  button: string;
978
+ avatar: string;
979
+ link: string;
980
+ card: string;
975
981
  };
976
982
  breakpoints: {
977
983
  xs: string;