@dafaz-ui/react 2.2.2 → 3.0.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/dist/index.d.mts CHANGED
@@ -3,6 +3,9 @@ import * as react from 'react';
3
3
  import { ComponentProps, ElementType, ReactNode } from 'react';
4
4
  import * as _stitches_react_types_styled_component from '@stitches/react/types/styled-component';
5
5
  import * as _stitches_react_types_css_util from '@stitches/react/types/css-util';
6
+ import { CSS } from '@stitches/react';
7
+ import * as Checkbox from '@radix-ui/react-checkbox';
8
+ import * as RadioGroup from '@radix-ui/react-radio-group';
6
9
  import * as _stitches_react_types_theme from '@stitches/react/types/theme';
7
10
  import * as _stitches_react_types_css from '@stitches/react/types/css';
8
11
  import * as _stitches_react_types_stitches from '@stitches/react/types/stitches';
@@ -215,12 +218,16 @@ interface BoxUIProps extends ComponentProps<typeof BoxUI> {
215
218
  as?: ElementType;
216
219
  stretch?: boolean;
217
220
  dark?: boolean;
221
+ css?: CSS;
218
222
  }
219
223
 
220
224
  interface BoxProps {
221
225
  children: ReactNode;
222
226
  }
223
227
  declare function Box({ children, ...props }: BoxUIProps & BoxProps): react_jsx_runtime.JSX.Element;
228
+ declare namespace Box {
229
+ var displayName: string;
230
+ }
224
231
 
225
232
  /** Primary UI component for user interaction */
226
233
  declare const ButtonUI: _stitches_react_types_styled_component.StyledComponent<"button", {
@@ -444,8 +451,8 @@ interface ButtonProps {
444
451
  }
445
452
  declare function Button({ children, variant, size, ...props }: ButtonUIProps & ButtonProps): react_jsx_runtime.JSX.Element;
446
453
 
447
- declare const TextUI: _stitches_react_types_styled_component.StyledComponent<"p", {
448
- size?: "xxs" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | undefined;
454
+ declare const CheckBoxUI: _stitches_react_types_styled_component.StyledComponent<react.ForwardRefExoticComponent<Checkbox.CheckboxProps & react.RefAttributes<HTMLButtonElement>>, {
455
+ size?: "sm" | "md" | "lg" | undefined;
449
456
  }, {}, _stitches_react_types_css_util.CSS<{}, {
450
457
  colors: {
451
458
  white: string;
@@ -646,18 +653,15 @@ declare const TextUI: _stitches_react_types_styled_component.StyledComponent<"p"
646
653
  transition: "transitions";
647
654
  zIndex: "zIndices";
648
655
  }, {}>>;
649
- interface TextUIProps extends ComponentProps<typeof TextUI> {
650
- as?: ElementType;
651
- size?: 'xxs' | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl';
656
+ interface CheckboxIUProps extends ComponentProps<typeof CheckBoxUI> {
657
+ size?: 'sm' | 'md' | 'lg';
652
658
  }
653
659
 
654
- interface TextProps {
655
- children: ReactNode;
656
- }
657
- declare function Text({ children, size, ...props }: TextUIProps & TextProps): react_jsx_runtime.JSX.Element;
658
- declare namespace Text {
659
- var displayName: string;
660
+ interface CheckboxProps {
661
+ id: string;
662
+ label: string;
660
663
  }
664
+ declare function CheckBox({ id, label, size, ...props }: CheckboxIUProps & CheckboxProps): react_jsx_runtime.JSX.Element;
661
665
 
662
666
  declare const HeadingUI: _stitches_react_types_styled_component.StyledComponent<"h2", {
663
667
  mode?: "white" | "default" | undefined;
@@ -872,9 +876,644 @@ interface HeadingProps {
872
876
  children: ReactNode;
873
877
  }
874
878
  declare function Heading({ children, ...props }: HeadingUIProps & HeadingProps): react_jsx_runtime.JSX.Element;
875
- declare namespace Heading {
876
- var displayName: string;
879
+
880
+ declare const RadioUI: _stitches_react_types_styled_component.StyledComponent<react.ForwardRefExoticComponent<RadioGroup.RadioGroupProps & react.RefAttributes<HTMLDivElement>>, {
881
+ size?: "sm" | "md" | "lg" | undefined;
882
+ }, {}, _stitches_react_types_css_util.CSS<{}, {
883
+ colors: {
884
+ white: string;
885
+ black: string;
886
+ gray100: string;
887
+ gray200: string;
888
+ gray400: string;
889
+ gray800: string;
890
+ dafaz100: string;
891
+ dafaz200: string;
892
+ dafaz400: string;
893
+ dafaz600: string;
894
+ dafaz800: string;
895
+ };
896
+ fontSizes: {
897
+ xxs: string;
898
+ xs: string;
899
+ sm: string;
900
+ md: string;
901
+ lg: string;
902
+ xl: string;
903
+ '2xl': string;
904
+ };
905
+ fontWeights: {
906
+ regular: string;
907
+ medium: string;
908
+ bold: string;
909
+ };
910
+ fonts: {
911
+ default: string;
912
+ app: string;
913
+ web: string;
914
+ offer: string;
915
+ code: string;
916
+ };
917
+ lineHeights: {
918
+ shorter: string;
919
+ short: string;
920
+ base: string;
921
+ tall: string;
922
+ };
923
+ radii: {
924
+ px: string;
925
+ sm: string;
926
+ md: string;
927
+ full: string;
928
+ };
929
+ space: {
930
+ 1: string;
931
+ 2: string;
932
+ 3: string;
933
+ 4: string;
934
+ 5: string;
935
+ 6: string;
936
+ 7: string;
937
+ 8: string;
938
+ 10: string;
939
+ 12: string;
940
+ 16: string;
941
+ 20: string;
942
+ 40: string;
943
+ 64: string;
944
+ 80: string;
945
+ };
946
+ opacities: {
947
+ opacity400: string;
948
+ opacity600: string;
949
+ opacity800: string;
950
+ opacity900: string;
951
+ };
952
+ }, {
953
+ height: "space";
954
+ width: "space";
955
+ gap: "space";
956
+ gridGap: "space";
957
+ columnGap: "space";
958
+ gridColumnGap: "space";
959
+ rowGap: "space";
960
+ gridRowGap: "space";
961
+ inset: "space";
962
+ insetBlock: "space";
963
+ insetBlockEnd: "space";
964
+ insetBlockStart: "space";
965
+ insetInline: "space";
966
+ insetInlineEnd: "space";
967
+ insetInlineStart: "space";
968
+ margin: "space";
969
+ marginTop: "space";
970
+ marginRight: "space";
971
+ marginBottom: "space";
972
+ marginLeft: "space";
973
+ marginBlock: "space";
974
+ marginBlockEnd: "space";
975
+ marginBlockStart: "space";
976
+ marginInline: "space";
977
+ marginInlineEnd: "space";
978
+ marginInlineStart: "space";
979
+ padding: "space";
980
+ paddingTop: "space";
981
+ paddingRight: "space";
982
+ paddingBottom: "space";
983
+ paddingLeft: "space";
984
+ paddingBlock: "space";
985
+ paddingBlockEnd: "space";
986
+ paddingBlockStart: "space";
987
+ paddingInline: "space";
988
+ paddingInlineEnd: "space";
989
+ paddingInlineStart: "space";
990
+ scrollMargin: "space";
991
+ scrollMarginTop: "space";
992
+ scrollMarginRight: "space";
993
+ scrollMarginBottom: "space";
994
+ scrollMarginLeft: "space";
995
+ scrollMarginBlock: "space";
996
+ scrollMarginBlockEnd: "space";
997
+ scrollMarginBlockStart: "space";
998
+ scrollMarginInline: "space";
999
+ scrollMarginInlineEnd: "space";
1000
+ scrollMarginInlineStart: "space";
1001
+ scrollPadding: "space";
1002
+ scrollPaddingTop: "space";
1003
+ scrollPaddingRight: "space";
1004
+ scrollPaddingBottom: "space";
1005
+ scrollPaddingLeft: "space";
1006
+ scrollPaddingBlock: "space";
1007
+ scrollPaddingBlockEnd: "space";
1008
+ scrollPaddingBlockStart: "space";
1009
+ scrollPaddingInline: "space";
1010
+ scrollPaddingInlineEnd: "space";
1011
+ scrollPaddingInlineStart: "space";
1012
+ top: "space";
1013
+ right: "space";
1014
+ bottom: "space";
1015
+ left: "space";
1016
+ fontSize: "fontSizes";
1017
+ background: "colors";
1018
+ backgroundColor: "colors";
1019
+ backgroundImage: "colors";
1020
+ borderImage: "colors";
1021
+ border: "colors";
1022
+ borderBlock: "colors";
1023
+ borderBlockEnd: "colors";
1024
+ borderBlockStart: "colors";
1025
+ borderBottom: "colors";
1026
+ borderBottomColor: "colors";
1027
+ borderColor: "colors";
1028
+ borderInline: "colors";
1029
+ borderInlineEnd: "colors";
1030
+ borderInlineStart: "colors";
1031
+ borderLeft: "colors";
1032
+ borderLeftColor: "colors";
1033
+ borderRight: "colors";
1034
+ borderRightColor: "colors";
1035
+ borderTop: "colors";
1036
+ borderTopColor: "colors";
1037
+ caretColor: "colors";
1038
+ color: "colors";
1039
+ columnRuleColor: "colors";
1040
+ outline: "colors";
1041
+ outlineColor: "colors";
1042
+ fill: "colors";
1043
+ stroke: "colors";
1044
+ textDecorationColor: "colors";
1045
+ fontFamily: "fonts";
1046
+ fontWeight: "fontWeights";
1047
+ lineHeight: "lineHeights";
1048
+ letterSpacing: "letterSpacings";
1049
+ blockSize: "sizes";
1050
+ minBlockSize: "sizes";
1051
+ maxBlockSize: "sizes";
1052
+ inlineSize: "sizes";
1053
+ minInlineSize: "sizes";
1054
+ maxInlineSize: "sizes";
1055
+ minWidth: "sizes";
1056
+ maxWidth: "sizes";
1057
+ minHeight: "sizes";
1058
+ maxHeight: "sizes";
1059
+ flexBasis: "sizes";
1060
+ gridTemplateColumns: "sizes";
1061
+ gridTemplateRows: "sizes";
1062
+ borderWidth: "borderWidths";
1063
+ borderTopWidth: "borderWidths";
1064
+ borderLeftWidth: "borderWidths";
1065
+ borderRightWidth: "borderWidths";
1066
+ borderBottomWidth: "borderWidths";
1067
+ borderStyle: "borderStyles";
1068
+ borderTopStyle: "borderStyles";
1069
+ borderLeftStyle: "borderStyles";
1070
+ borderRightStyle: "borderStyles";
1071
+ borderBottomStyle: "borderStyles";
1072
+ borderRadius: "radii";
1073
+ borderTopLeftRadius: "radii";
1074
+ borderTopRightRadius: "radii";
1075
+ borderBottomRightRadius: "radii";
1076
+ borderBottomLeftRadius: "radii";
1077
+ boxShadow: "shadows";
1078
+ textShadow: "shadows";
1079
+ transition: "transitions";
1080
+ zIndex: "zIndices";
1081
+ }, {}>>;
1082
+ interface RadioUIProps extends ComponentProps<typeof RadioUI> {
1083
+ size?: 'sm' | 'md' | 'lg';
1084
+ }
1085
+
1086
+ interface Item {
1087
+ id: string;
1088
+ label: string;
1089
+ value: string;
1090
+ }
1091
+ interface RadioGroupProps extends RadioUIProps {
1092
+ items: Item[];
1093
+ }
1094
+ declare function Radio({ items, size, ...props }: RadioGroupProps): react_jsx_runtime.JSX.Element;
1095
+
1096
+ declare const TextUI: _stitches_react_types_styled_component.StyledComponent<"p", {
1097
+ size?: "xxs" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | undefined;
1098
+ }, {}, _stitches_react_types_css_util.CSS<{}, {
1099
+ colors: {
1100
+ white: string;
1101
+ black: string;
1102
+ gray100: string;
1103
+ gray200: string;
1104
+ gray400: string;
1105
+ gray800: string;
1106
+ dafaz100: string;
1107
+ dafaz200: string;
1108
+ dafaz400: string;
1109
+ dafaz600: string;
1110
+ dafaz800: string;
1111
+ };
1112
+ fontSizes: {
1113
+ xxs: string;
1114
+ xs: string;
1115
+ sm: string;
1116
+ md: string;
1117
+ lg: string;
1118
+ xl: string;
1119
+ '2xl': string;
1120
+ };
1121
+ fontWeights: {
1122
+ regular: string;
1123
+ medium: string;
1124
+ bold: string;
1125
+ };
1126
+ fonts: {
1127
+ default: string;
1128
+ app: string;
1129
+ web: string;
1130
+ offer: string;
1131
+ code: string;
1132
+ };
1133
+ lineHeights: {
1134
+ shorter: string;
1135
+ short: string;
1136
+ base: string;
1137
+ tall: string;
1138
+ };
1139
+ radii: {
1140
+ px: string;
1141
+ sm: string;
1142
+ md: string;
1143
+ full: string;
1144
+ };
1145
+ space: {
1146
+ 1: string;
1147
+ 2: string;
1148
+ 3: string;
1149
+ 4: string;
1150
+ 5: string;
1151
+ 6: string;
1152
+ 7: string;
1153
+ 8: string;
1154
+ 10: string;
1155
+ 12: string;
1156
+ 16: string;
1157
+ 20: string;
1158
+ 40: string;
1159
+ 64: string;
1160
+ 80: string;
1161
+ };
1162
+ opacities: {
1163
+ opacity400: string;
1164
+ opacity600: string;
1165
+ opacity800: string;
1166
+ opacity900: string;
1167
+ };
1168
+ }, {
1169
+ height: "space";
1170
+ width: "space";
1171
+ gap: "space";
1172
+ gridGap: "space";
1173
+ columnGap: "space";
1174
+ gridColumnGap: "space";
1175
+ rowGap: "space";
1176
+ gridRowGap: "space";
1177
+ inset: "space";
1178
+ insetBlock: "space";
1179
+ insetBlockEnd: "space";
1180
+ insetBlockStart: "space";
1181
+ insetInline: "space";
1182
+ insetInlineEnd: "space";
1183
+ insetInlineStart: "space";
1184
+ margin: "space";
1185
+ marginTop: "space";
1186
+ marginRight: "space";
1187
+ marginBottom: "space";
1188
+ marginLeft: "space";
1189
+ marginBlock: "space";
1190
+ marginBlockEnd: "space";
1191
+ marginBlockStart: "space";
1192
+ marginInline: "space";
1193
+ marginInlineEnd: "space";
1194
+ marginInlineStart: "space";
1195
+ padding: "space";
1196
+ paddingTop: "space";
1197
+ paddingRight: "space";
1198
+ paddingBottom: "space";
1199
+ paddingLeft: "space";
1200
+ paddingBlock: "space";
1201
+ paddingBlockEnd: "space";
1202
+ paddingBlockStart: "space";
1203
+ paddingInline: "space";
1204
+ paddingInlineEnd: "space";
1205
+ paddingInlineStart: "space";
1206
+ scrollMargin: "space";
1207
+ scrollMarginTop: "space";
1208
+ scrollMarginRight: "space";
1209
+ scrollMarginBottom: "space";
1210
+ scrollMarginLeft: "space";
1211
+ scrollMarginBlock: "space";
1212
+ scrollMarginBlockEnd: "space";
1213
+ scrollMarginBlockStart: "space";
1214
+ scrollMarginInline: "space";
1215
+ scrollMarginInlineEnd: "space";
1216
+ scrollMarginInlineStart: "space";
1217
+ scrollPadding: "space";
1218
+ scrollPaddingTop: "space";
1219
+ scrollPaddingRight: "space";
1220
+ scrollPaddingBottom: "space";
1221
+ scrollPaddingLeft: "space";
1222
+ scrollPaddingBlock: "space";
1223
+ scrollPaddingBlockEnd: "space";
1224
+ scrollPaddingBlockStart: "space";
1225
+ scrollPaddingInline: "space";
1226
+ scrollPaddingInlineEnd: "space";
1227
+ scrollPaddingInlineStart: "space";
1228
+ top: "space";
1229
+ right: "space";
1230
+ bottom: "space";
1231
+ left: "space";
1232
+ fontSize: "fontSizes";
1233
+ background: "colors";
1234
+ backgroundColor: "colors";
1235
+ backgroundImage: "colors";
1236
+ borderImage: "colors";
1237
+ border: "colors";
1238
+ borderBlock: "colors";
1239
+ borderBlockEnd: "colors";
1240
+ borderBlockStart: "colors";
1241
+ borderBottom: "colors";
1242
+ borderBottomColor: "colors";
1243
+ borderColor: "colors";
1244
+ borderInline: "colors";
1245
+ borderInlineEnd: "colors";
1246
+ borderInlineStart: "colors";
1247
+ borderLeft: "colors";
1248
+ borderLeftColor: "colors";
1249
+ borderRight: "colors";
1250
+ borderRightColor: "colors";
1251
+ borderTop: "colors";
1252
+ borderTopColor: "colors";
1253
+ caretColor: "colors";
1254
+ color: "colors";
1255
+ columnRuleColor: "colors";
1256
+ outline: "colors";
1257
+ outlineColor: "colors";
1258
+ fill: "colors";
1259
+ stroke: "colors";
1260
+ textDecorationColor: "colors";
1261
+ fontFamily: "fonts";
1262
+ fontWeight: "fontWeights";
1263
+ lineHeight: "lineHeights";
1264
+ letterSpacing: "letterSpacings";
1265
+ blockSize: "sizes";
1266
+ minBlockSize: "sizes";
1267
+ maxBlockSize: "sizes";
1268
+ inlineSize: "sizes";
1269
+ minInlineSize: "sizes";
1270
+ maxInlineSize: "sizes";
1271
+ minWidth: "sizes";
1272
+ maxWidth: "sizes";
1273
+ minHeight: "sizes";
1274
+ maxHeight: "sizes";
1275
+ flexBasis: "sizes";
1276
+ gridTemplateColumns: "sizes";
1277
+ gridTemplateRows: "sizes";
1278
+ borderWidth: "borderWidths";
1279
+ borderTopWidth: "borderWidths";
1280
+ borderLeftWidth: "borderWidths";
1281
+ borderRightWidth: "borderWidths";
1282
+ borderBottomWidth: "borderWidths";
1283
+ borderStyle: "borderStyles";
1284
+ borderTopStyle: "borderStyles";
1285
+ borderLeftStyle: "borderStyles";
1286
+ borderRightStyle: "borderStyles";
1287
+ borderBottomStyle: "borderStyles";
1288
+ borderRadius: "radii";
1289
+ borderTopLeftRadius: "radii";
1290
+ borderTopRightRadius: "radii";
1291
+ borderBottomRightRadius: "radii";
1292
+ borderBottomLeftRadius: "radii";
1293
+ boxShadow: "shadows";
1294
+ textShadow: "shadows";
1295
+ transition: "transitions";
1296
+ zIndex: "zIndices";
1297
+ }, {}>>;
1298
+ interface TextUIProps extends ComponentProps<typeof TextUI> {
1299
+ as?: ElementType;
1300
+ size?: 'xxs' | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl';
1301
+ }
1302
+
1303
+ interface TextProps {
1304
+ children: ReactNode;
1305
+ }
1306
+ declare function Text({ children, size, ...props }: TextUIProps & TextProps): react_jsx_runtime.JSX.Element;
1307
+
1308
+ declare const TextAreaUI: _stitches_react_types_styled_component.StyledComponent<"textarea", {}, {}, _stitches_react_types_css_util.CSS<{}, {
1309
+ colors: {
1310
+ white: string;
1311
+ black: string;
1312
+ gray100: string;
1313
+ gray200: string;
1314
+ gray400: string;
1315
+ gray800: string;
1316
+ dafaz100: string;
1317
+ dafaz200: string;
1318
+ dafaz400: string;
1319
+ dafaz600: string;
1320
+ dafaz800: string;
1321
+ };
1322
+ fontSizes: {
1323
+ xxs: string;
1324
+ xs: string;
1325
+ sm: string;
1326
+ md: string;
1327
+ lg: string;
1328
+ xl: string;
1329
+ '2xl': string;
1330
+ };
1331
+ fontWeights: {
1332
+ regular: string;
1333
+ medium: string;
1334
+ bold: string;
1335
+ };
1336
+ fonts: {
1337
+ default: string;
1338
+ app: string;
1339
+ web: string;
1340
+ offer: string;
1341
+ code: string;
1342
+ };
1343
+ lineHeights: {
1344
+ shorter: string;
1345
+ short: string;
1346
+ base: string;
1347
+ tall: string;
1348
+ };
1349
+ radii: {
1350
+ px: string;
1351
+ sm: string;
1352
+ md: string;
1353
+ full: string;
1354
+ };
1355
+ space: {
1356
+ 1: string;
1357
+ 2: string;
1358
+ 3: string;
1359
+ 4: string;
1360
+ 5: string;
1361
+ 6: string;
1362
+ 7: string;
1363
+ 8: string;
1364
+ 10: string;
1365
+ 12: string;
1366
+ 16: string;
1367
+ 20: string;
1368
+ 40: string;
1369
+ 64: string;
1370
+ 80: string;
1371
+ };
1372
+ opacities: {
1373
+ opacity400: string;
1374
+ opacity600: string;
1375
+ opacity800: string;
1376
+ opacity900: string;
1377
+ };
1378
+ }, {
1379
+ height: "space";
1380
+ width: "space";
1381
+ gap: "space";
1382
+ gridGap: "space";
1383
+ columnGap: "space";
1384
+ gridColumnGap: "space";
1385
+ rowGap: "space";
1386
+ gridRowGap: "space";
1387
+ inset: "space";
1388
+ insetBlock: "space";
1389
+ insetBlockEnd: "space";
1390
+ insetBlockStart: "space";
1391
+ insetInline: "space";
1392
+ insetInlineEnd: "space";
1393
+ insetInlineStart: "space";
1394
+ margin: "space";
1395
+ marginTop: "space";
1396
+ marginRight: "space";
1397
+ marginBottom: "space";
1398
+ marginLeft: "space";
1399
+ marginBlock: "space";
1400
+ marginBlockEnd: "space";
1401
+ marginBlockStart: "space";
1402
+ marginInline: "space";
1403
+ marginInlineEnd: "space";
1404
+ marginInlineStart: "space";
1405
+ padding: "space";
1406
+ paddingTop: "space";
1407
+ paddingRight: "space";
1408
+ paddingBottom: "space";
1409
+ paddingLeft: "space";
1410
+ paddingBlock: "space";
1411
+ paddingBlockEnd: "space";
1412
+ paddingBlockStart: "space";
1413
+ paddingInline: "space";
1414
+ paddingInlineEnd: "space";
1415
+ paddingInlineStart: "space";
1416
+ scrollMargin: "space";
1417
+ scrollMarginTop: "space";
1418
+ scrollMarginRight: "space";
1419
+ scrollMarginBottom: "space";
1420
+ scrollMarginLeft: "space";
1421
+ scrollMarginBlock: "space";
1422
+ scrollMarginBlockEnd: "space";
1423
+ scrollMarginBlockStart: "space";
1424
+ scrollMarginInline: "space";
1425
+ scrollMarginInlineEnd: "space";
1426
+ scrollMarginInlineStart: "space";
1427
+ scrollPadding: "space";
1428
+ scrollPaddingTop: "space";
1429
+ scrollPaddingRight: "space";
1430
+ scrollPaddingBottom: "space";
1431
+ scrollPaddingLeft: "space";
1432
+ scrollPaddingBlock: "space";
1433
+ scrollPaddingBlockEnd: "space";
1434
+ scrollPaddingBlockStart: "space";
1435
+ scrollPaddingInline: "space";
1436
+ scrollPaddingInlineEnd: "space";
1437
+ scrollPaddingInlineStart: "space";
1438
+ top: "space";
1439
+ right: "space";
1440
+ bottom: "space";
1441
+ left: "space";
1442
+ fontSize: "fontSizes";
1443
+ background: "colors";
1444
+ backgroundColor: "colors";
1445
+ backgroundImage: "colors";
1446
+ borderImage: "colors";
1447
+ border: "colors";
1448
+ borderBlock: "colors";
1449
+ borderBlockEnd: "colors";
1450
+ borderBlockStart: "colors";
1451
+ borderBottom: "colors";
1452
+ borderBottomColor: "colors";
1453
+ borderColor: "colors";
1454
+ borderInline: "colors";
1455
+ borderInlineEnd: "colors";
1456
+ borderInlineStart: "colors";
1457
+ borderLeft: "colors";
1458
+ borderLeftColor: "colors";
1459
+ borderRight: "colors";
1460
+ borderRightColor: "colors";
1461
+ borderTop: "colors";
1462
+ borderTopColor: "colors";
1463
+ caretColor: "colors";
1464
+ color: "colors";
1465
+ columnRuleColor: "colors";
1466
+ outline: "colors";
1467
+ outlineColor: "colors";
1468
+ fill: "colors";
1469
+ stroke: "colors";
1470
+ textDecorationColor: "colors";
1471
+ fontFamily: "fonts";
1472
+ fontWeight: "fontWeights";
1473
+ lineHeight: "lineHeights";
1474
+ letterSpacing: "letterSpacings";
1475
+ blockSize: "sizes";
1476
+ minBlockSize: "sizes";
1477
+ maxBlockSize: "sizes";
1478
+ inlineSize: "sizes";
1479
+ minInlineSize: "sizes";
1480
+ maxInlineSize: "sizes";
1481
+ minWidth: "sizes";
1482
+ maxWidth: "sizes";
1483
+ minHeight: "sizes";
1484
+ maxHeight: "sizes";
1485
+ flexBasis: "sizes";
1486
+ gridTemplateColumns: "sizes";
1487
+ gridTemplateRows: "sizes";
1488
+ borderWidth: "borderWidths";
1489
+ borderTopWidth: "borderWidths";
1490
+ borderLeftWidth: "borderWidths";
1491
+ borderRightWidth: "borderWidths";
1492
+ borderBottomWidth: "borderWidths";
1493
+ borderStyle: "borderStyles";
1494
+ borderTopStyle: "borderStyles";
1495
+ borderLeftStyle: "borderStyles";
1496
+ borderRightStyle: "borderStyles";
1497
+ borderBottomStyle: "borderStyles";
1498
+ borderRadius: "radii";
1499
+ borderTopLeftRadius: "radii";
1500
+ borderTopRightRadius: "radii";
1501
+ borderBottomRightRadius: "radii";
1502
+ borderBottomLeftRadius: "radii";
1503
+ boxShadow: "shadows";
1504
+ textShadow: "shadows";
1505
+ transition: "transitions";
1506
+ zIndex: "zIndices";
1507
+ }, {}>>;
1508
+ interface TextAreaUIProps extends ComponentProps<typeof TextAreaUI> {
1509
+ }
1510
+
1511
+ interface TextAreaProps {
1512
+ children?: ReactNode;
1513
+ placeholder?: string;
1514
+ disabled?: boolean;
877
1515
  }
1516
+ declare function TextArea({ children, ...props }: TextAreaUIProps & TextAreaProps): react_jsx_runtime.JSX.Element;
878
1517
 
879
1518
  declare const InputUI: _stitches_react_types_styled_component.StyledComponent<"input", {}, {}, _stitches_react_types_css_util.CSS<{}, {
880
1519
  colors: {
@@ -2760,4 +3399,4 @@ declare const config: {
2760
3399
  utils: {};
2761
3400
  };
2762
3401
 
2763
- export { Box, Button, Heading, Text, TextInput, type TextInputProps, config, createTheme, css, getCssText, globalCss, keyframes, styled, theme };
3402
+ export { Box, Button, CheckBox, Heading, Radio, Text, TextArea, TextInput, type TextInputProps, config, createTheme, css, getCssText, globalCss, keyframes, styled, theme };