@dafaz-ui/react 4.0.19 → 7.0.0

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.ts CHANGED
@@ -1,9 +1,8 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
2
  import * as react from 'react';
3
- import { ComponentProps, ElementType, ReactNode } from 'react';
3
+ import { ComponentProps, ElementType, CSSProperties, ReactNode, ChangeEvent } 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
6
  import * as Checkbox from '@radix-ui/react-checkbox';
8
7
  import * as RadioGroup from '@radix-ui/react-radio-group';
9
8
  import * as _stitches_react_types_theme from '@stitches/react/types/theme';
@@ -12,12 +11,16 @@ import * as _stitches_react_types_stitches from '@stitches/react/types/stitches'
12
11
  import * as _stitches_react_types_util from '@stitches/react/types/util';
13
12
 
14
13
  declare const BoxUI: _stitches_react_types_styled_component.StyledComponent<"div", {
14
+ withShadow?: boolean | "true" | undefined;
15
15
  stretch?: boolean | "true" | "false" | undefined;
16
- dark?: boolean | "true" | "false" | undefined;
16
+ color?: "dark" | "primary" | "secondary" | "light" | "transparent" | undefined;
17
+ rounded?: "sm" | "md" | "px" | "full" | undefined;
18
+ direction?: "none" | "row" | "column" | undefined;
17
19
  }, {}, _stitches_react_types_css_util.CSS<{}, {
18
20
  colors: {
19
21
  white: string;
20
22
  black: string;
23
+ red: string;
21
24
  gray100: string;
22
25
  gray200: string;
23
26
  gray400: string;
@@ -36,6 +39,14 @@ declare const BoxUI: _stitches_react_types_styled_component.StyledComponent<"div
36
39
  lg: string;
37
40
  xl: string;
38
41
  '2xl': string;
42
+ '3xl': string;
43
+ '4xl': string;
44
+ '5xl': string;
45
+ '6xl': string;
46
+ '7xl': string;
47
+ '8xl': string;
48
+ '9xl': string;
49
+ '10xl': string;
39
50
  };
40
51
  fontWeights: {
41
52
  regular: string;
@@ -217,8 +228,11 @@ declare const BoxUI: _stitches_react_types_styled_component.StyledComponent<"div
217
228
  interface BoxUIProps extends ComponentProps<typeof BoxUI> {
218
229
  as?: ElementType;
219
230
  stretch?: boolean;
220
- dark?: boolean;
221
- css?: CSS;
231
+ color?: 'dark' | 'primary' | 'secondary' | 'light' | 'transparent';
232
+ rounded?: 'px' | 'sm' | 'md' | 'full';
233
+ withShadow?: boolean;
234
+ style?: CSSProperties;
235
+ direction?: 'row' | 'column' | 'none';
222
236
  }
223
237
 
224
238
  interface BoxProps {
@@ -238,6 +252,7 @@ declare const ButtonUI: _stitches_react_types_styled_component.StyledComponent<"
238
252
  colors: {
239
253
  white: string;
240
254
  black: string;
255
+ red: string;
241
256
  gray100: string;
242
257
  gray200: string;
243
258
  gray400: string;
@@ -256,6 +271,14 @@ declare const ButtonUI: _stitches_react_types_styled_component.StyledComponent<"
256
271
  lg: string;
257
272
  xl: string;
258
273
  '2xl': string;
274
+ '3xl': string;
275
+ '4xl': string;
276
+ '5xl': string;
277
+ '6xl': string;
278
+ '7xl': string;
279
+ '8xl': string;
280
+ '9xl': string;
281
+ '10xl': string;
259
282
  };
260
283
  fontWeights: {
261
284
  regular: string;
@@ -444,11 +467,12 @@ interface ButtonUIProps extends ComponentProps<typeof ButtonUI> {
444
467
  disabled?: boolean;
445
468
  variant?: 'primary' | 'secondary' | 'tertiary';
446
469
  flat?: boolean;
470
+ style?: CSSProperties;
447
471
  }
448
472
 
449
473
  interface ButtonProps {
450
474
  children: ReactNode;
451
- type: string;
475
+ type?: string;
452
476
  form?: string;
453
477
  }
454
478
  declare function Button({ children, variant, size, type, form, ...props }: ButtonUIProps & ButtonProps): react_jsx_runtime.JSX.Element;
@@ -462,6 +486,7 @@ declare const CheckBoxUI: _stitches_react_types_styled_component.StyledComponent
462
486
  colors: {
463
487
  white: string;
464
488
  black: string;
489
+ red: string;
465
490
  gray100: string;
466
491
  gray200: string;
467
492
  gray400: string;
@@ -480,6 +505,14 @@ declare const CheckBoxUI: _stitches_react_types_styled_component.StyledComponent
480
505
  lg: string;
481
506
  xl: string;
482
507
  '2xl': string;
508
+ '3xl': string;
509
+ '4xl': string;
510
+ '5xl': string;
511
+ '6xl': string;
512
+ '7xl': string;
513
+ '8xl': string;
514
+ '9xl': string;
515
+ '10xl': string;
483
516
  };
484
517
  fontWeights: {
485
518
  regular: string;
@@ -661,24 +694,23 @@ declare const CheckBoxUI: _stitches_react_types_styled_component.StyledComponent
661
694
  interface CheckboxIUProps extends ComponentProps<typeof CheckBoxUI> {
662
695
  size?: 'sm' | 'md' | 'lg';
663
696
  disabled?: boolean;
697
+ style?: CSSProperties;
664
698
  }
665
699
 
666
- interface CheckboxProps extends CheckboxIUProps {
667
- id: string;
700
+ interface CheckboxItemProps extends CheckboxIUProps {
668
701
  label: string;
669
- checked: boolean;
670
- value: string | number | readonly string[] | undefined;
671
- onCheckedChange: (checked: boolean) => void;
702
+ handleOnChange?: (checked: boolean, id?: string) => void;
672
703
  }
673
- declare const CheckBox: react.ForwardRefExoticComponent<Omit<CheckboxProps, "ref"> & react.RefAttributes<HTMLButtonElement>>;
704
+ declare const CheckBox: react.ForwardRefExoticComponent<Omit<CheckboxItemProps, "ref"> & react.RefAttributes<HTMLButtonElement>>;
674
705
 
675
706
  declare const HeadingUI: _stitches_react_types_styled_component.StyledComponent<"h2", {
676
- mode?: "white" | "default" | undefined;
677
- size?: "sm" | "md" | "lg" | "xl" | "2xl" | undefined;
707
+ size?: "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | undefined;
708
+ color?: "white" | "black" | "primary" | "lightGray" | "darkGray" | undefined;
678
709
  }, {}, _stitches_react_types_css_util.CSS<{}, {
679
710
  colors: {
680
711
  white: string;
681
712
  black: string;
713
+ red: string;
682
714
  gray100: string;
683
715
  gray200: string;
684
716
  gray400: string;
@@ -697,6 +729,14 @@ declare const HeadingUI: _stitches_react_types_styled_component.StyledComponent<
697
729
  lg: string;
698
730
  xl: string;
699
731
  '2xl': string;
732
+ '3xl': string;
733
+ '4xl': string;
734
+ '5xl': string;
735
+ '6xl': string;
736
+ '7xl': string;
737
+ '8xl': string;
738
+ '9xl': string;
739
+ '10xl': string;
700
740
  };
701
741
  fontWeights: {
702
742
  regular: string;
@@ -877,8 +917,9 @@ declare const HeadingUI: _stitches_react_types_styled_component.StyledComponent<
877
917
  }, {}>>;
878
918
  interface HeadingUIProps extends ComponentProps<typeof HeadingUI> {
879
919
  as?: ElementType;
880
- size?: 'sm' | 'md' | 'lg' | 'xl' | '2xl';
881
- mode?: 'default' | 'white';
920
+ size?: 'sm' | 'md' | 'lg' | 'xl' | '2xl' | '3xl' | '4xl' | '5xl' | '6xl';
921
+ color: 'white' | 'black' | 'primary' | 'lightGray' | 'darkGray';
922
+ style?: CSSProperties;
882
923
  }
883
924
 
884
925
  interface HeadingProps {
@@ -895,6 +936,7 @@ declare const RadioUI: _stitches_react_types_styled_component.StyledComponent<re
895
936
  colors: {
896
937
  white: string;
897
938
  black: string;
939
+ red: string;
898
940
  gray100: string;
899
941
  gray200: string;
900
942
  gray400: string;
@@ -913,6 +955,14 @@ declare const RadioUI: _stitches_react_types_styled_component.StyledComponent<re
913
955
  lg: string;
914
956
  xl: string;
915
957
  '2xl': string;
958
+ '3xl': string;
959
+ '4xl': string;
960
+ '5xl': string;
961
+ '6xl': string;
962
+ '7xl': string;
963
+ '8xl': string;
964
+ '9xl': string;
965
+ '10xl': string;
916
966
  };
917
967
  fontWeights: {
918
968
  regular: string;
@@ -1093,27 +1143,28 @@ declare const RadioUI: _stitches_react_types_styled_component.StyledComponent<re
1093
1143
  }, {}>>;
1094
1144
  interface RadioUIProps extends ComponentProps<typeof RadioUI> {
1095
1145
  size?: 'sm' | 'md' | 'lg';
1146
+ style?: CSSProperties;
1096
1147
  }
1097
1148
 
1098
- interface Item$1 {
1149
+ interface Item$2 {
1099
1150
  id: string;
1100
1151
  label: string;
1101
1152
  value: string;
1102
1153
  }
1103
1154
  interface RadioGroupProps extends RadioUIProps {
1104
- items: Item$1[];
1105
- }
1106
- declare function Radio({ items, size, disabled, ...props }: RadioGroupProps): react_jsx_runtime.JSX.Element;
1107
- declare namespace Radio {
1108
- var displayName: string;
1155
+ items: Item$2[];
1156
+ value?: string | undefined;
1157
+ onValueChange?: ((value: string) => void) | undefined;
1109
1158
  }
1159
+ declare const Radio: react.ForwardRefExoticComponent<Omit<RadioGroupProps, "ref"> & react.RefAttributes<HTMLDivElement>>;
1110
1160
 
1111
- declare const SelectUI: _stitches_react_types_styled_component.StyledComponent<"select", {
1161
+ declare const SelectUI$1: _stitches_react_types_styled_component.StyledComponent<"select", {
1112
1162
  size?: "sm" | "md" | "lg" | undefined;
1113
1163
  }, {}, _stitches_react_types_css_util.CSS<{}, {
1114
1164
  colors: {
1115
1165
  white: string;
1116
1166
  black: string;
1167
+ red: string;
1117
1168
  gray100: string;
1118
1169
  gray200: string;
1119
1170
  gray400: string;
@@ -1132,6 +1183,14 @@ declare const SelectUI: _stitches_react_types_styled_component.StyledComponent<"
1132
1183
  lg: string;
1133
1184
  xl: string;
1134
1185
  '2xl': string;
1186
+ '3xl': string;
1187
+ '4xl': string;
1188
+ '5xl': string;
1189
+ '6xl': string;
1190
+ '7xl': string;
1191
+ '8xl': string;
1192
+ '9xl': string;
1193
+ '10xl': string;
1135
1194
  };
1136
1195
  fontWeights: {
1137
1196
  regular: string;
@@ -1310,30 +1369,253 @@ declare const SelectUI: _stitches_react_types_styled_component.StyledComponent<"
1310
1369
  transition: "transitions";
1311
1370
  zIndex: "zIndices";
1312
1371
  }, {}>>;
1313
- interface SelectUIProps extends ComponentProps<typeof SelectUI> {
1372
+ interface SelectUIProps$1 extends ComponentProps<typeof SelectUI$1> {
1314
1373
  size?: 'sm' | 'md' | 'lg';
1315
1374
  }
1316
1375
 
1317
- interface Item {
1376
+ interface Item$1 {
1318
1377
  id: string;
1319
1378
  label: string;
1320
1379
  value: string;
1321
1380
  }
1322
- interface SelectProps {
1323
- items: Item[];
1381
+ interface SelectProps extends SelectUIProps$1 {
1382
+ id: string;
1383
+ items: Item$1[];
1324
1384
  placeholder?: string;
1325
1385
  }
1326
- declare function Select({ size, placeholder, items, ...props }: SelectUIProps & SelectProps): react_jsx_runtime.JSX.Element;
1327
- declare namespace Select {
1386
+ declare const Select: react.ForwardRefExoticComponent<Omit<SelectProps, "ref"> & react.RefAttributes<HTMLSelectElement>>;
1387
+
1388
+ declare const SeparatorUI: _stitches_react_types_styled_component.StyledComponent<"hr", {
1389
+ color?: "white" | "black" | "primary" | "lightGray" | "darkGray" | undefined;
1390
+ size?: "xs" | "sm" | "md" | "lg" | undefined;
1391
+ }, {}, _stitches_react_types_css_util.CSS<{}, {
1392
+ colors: {
1393
+ white: string;
1394
+ black: string;
1395
+ red: string;
1396
+ gray100: string;
1397
+ gray200: string;
1398
+ gray400: string;
1399
+ gray800: string;
1400
+ dafaz100: string;
1401
+ dafaz200: string;
1402
+ dafaz400: string;
1403
+ dafaz600: string;
1404
+ dafaz800: string;
1405
+ };
1406
+ fontSizes: {
1407
+ xxs: string;
1408
+ xs: string;
1409
+ sm: string;
1410
+ md: string;
1411
+ lg: string;
1412
+ xl: string;
1413
+ '2xl': string;
1414
+ '3xl': string;
1415
+ '4xl': string;
1416
+ '5xl': string;
1417
+ '6xl': string;
1418
+ '7xl': string;
1419
+ '8xl': string;
1420
+ '9xl': string;
1421
+ '10xl': string;
1422
+ };
1423
+ fontWeights: {
1424
+ regular: string;
1425
+ medium: string;
1426
+ bold: string;
1427
+ };
1428
+ fonts: {
1429
+ default: string;
1430
+ app: string;
1431
+ web: string;
1432
+ offer: string;
1433
+ code: string;
1434
+ };
1435
+ lineHeights: {
1436
+ shorter: string;
1437
+ short: string;
1438
+ base: string;
1439
+ tall: string;
1440
+ };
1441
+ radii: {
1442
+ px: string;
1443
+ sm: string;
1444
+ md: string;
1445
+ full: string;
1446
+ };
1447
+ space: {
1448
+ 1: string;
1449
+ 2: string;
1450
+ 3: string;
1451
+ 4: string;
1452
+ 5: string;
1453
+ 6: string;
1454
+ 7: string;
1455
+ 8: string;
1456
+ 10: string;
1457
+ 12: string;
1458
+ 16: string;
1459
+ 20: string;
1460
+ 40: string;
1461
+ 64: string;
1462
+ 80: string;
1463
+ };
1464
+ opacities: {
1465
+ opacity400: string;
1466
+ opacity600: string;
1467
+ opacity800: string;
1468
+ opacity900: string;
1469
+ };
1470
+ }, {
1471
+ height: "space";
1472
+ width: "space";
1473
+ gap: "space";
1474
+ gridGap: "space";
1475
+ columnGap: "space";
1476
+ gridColumnGap: "space";
1477
+ rowGap: "space";
1478
+ gridRowGap: "space";
1479
+ inset: "space";
1480
+ insetBlock: "space";
1481
+ insetBlockEnd: "space";
1482
+ insetBlockStart: "space";
1483
+ insetInline: "space";
1484
+ insetInlineEnd: "space";
1485
+ insetInlineStart: "space";
1486
+ margin: "space";
1487
+ marginTop: "space";
1488
+ marginRight: "space";
1489
+ marginBottom: "space";
1490
+ marginLeft: "space";
1491
+ marginBlock: "space";
1492
+ marginBlockEnd: "space";
1493
+ marginBlockStart: "space";
1494
+ marginInline: "space";
1495
+ marginInlineEnd: "space";
1496
+ marginInlineStart: "space";
1497
+ padding: "space";
1498
+ paddingTop: "space";
1499
+ paddingRight: "space";
1500
+ paddingBottom: "space";
1501
+ paddingLeft: "space";
1502
+ paddingBlock: "space";
1503
+ paddingBlockEnd: "space";
1504
+ paddingBlockStart: "space";
1505
+ paddingInline: "space";
1506
+ paddingInlineEnd: "space";
1507
+ paddingInlineStart: "space";
1508
+ scrollMargin: "space";
1509
+ scrollMarginTop: "space";
1510
+ scrollMarginRight: "space";
1511
+ scrollMarginBottom: "space";
1512
+ scrollMarginLeft: "space";
1513
+ scrollMarginBlock: "space";
1514
+ scrollMarginBlockEnd: "space";
1515
+ scrollMarginBlockStart: "space";
1516
+ scrollMarginInline: "space";
1517
+ scrollMarginInlineEnd: "space";
1518
+ scrollMarginInlineStart: "space";
1519
+ scrollPadding: "space";
1520
+ scrollPaddingTop: "space";
1521
+ scrollPaddingRight: "space";
1522
+ scrollPaddingBottom: "space";
1523
+ scrollPaddingLeft: "space";
1524
+ scrollPaddingBlock: "space";
1525
+ scrollPaddingBlockEnd: "space";
1526
+ scrollPaddingBlockStart: "space";
1527
+ scrollPaddingInline: "space";
1528
+ scrollPaddingInlineEnd: "space";
1529
+ scrollPaddingInlineStart: "space";
1530
+ top: "space";
1531
+ right: "space";
1532
+ bottom: "space";
1533
+ left: "space";
1534
+ fontSize: "fontSizes";
1535
+ background: "colors";
1536
+ backgroundColor: "colors";
1537
+ backgroundImage: "colors";
1538
+ borderImage: "colors";
1539
+ border: "colors";
1540
+ borderBlock: "colors";
1541
+ borderBlockEnd: "colors";
1542
+ borderBlockStart: "colors";
1543
+ borderBottom: "colors";
1544
+ borderBottomColor: "colors";
1545
+ borderColor: "colors";
1546
+ borderInline: "colors";
1547
+ borderInlineEnd: "colors";
1548
+ borderInlineStart: "colors";
1549
+ borderLeft: "colors";
1550
+ borderLeftColor: "colors";
1551
+ borderRight: "colors";
1552
+ borderRightColor: "colors";
1553
+ borderTop: "colors";
1554
+ borderTopColor: "colors";
1555
+ caretColor: "colors";
1556
+ color: "colors";
1557
+ columnRuleColor: "colors";
1558
+ outline: "colors";
1559
+ outlineColor: "colors";
1560
+ fill: "colors";
1561
+ stroke: "colors";
1562
+ textDecorationColor: "colors";
1563
+ fontFamily: "fonts";
1564
+ fontWeight: "fontWeights";
1565
+ lineHeight: "lineHeights";
1566
+ letterSpacing: "letterSpacings";
1567
+ blockSize: "sizes";
1568
+ minBlockSize: "sizes";
1569
+ maxBlockSize: "sizes";
1570
+ inlineSize: "sizes";
1571
+ minInlineSize: "sizes";
1572
+ maxInlineSize: "sizes";
1573
+ minWidth: "sizes";
1574
+ maxWidth: "sizes";
1575
+ minHeight: "sizes";
1576
+ maxHeight: "sizes";
1577
+ flexBasis: "sizes";
1578
+ gridTemplateColumns: "sizes";
1579
+ gridTemplateRows: "sizes";
1580
+ borderWidth: "borderWidths";
1581
+ borderTopWidth: "borderWidths";
1582
+ borderLeftWidth: "borderWidths";
1583
+ borderRightWidth: "borderWidths";
1584
+ borderBottomWidth: "borderWidths";
1585
+ borderStyle: "borderStyles";
1586
+ borderTopStyle: "borderStyles";
1587
+ borderLeftStyle: "borderStyles";
1588
+ borderRightStyle: "borderStyles";
1589
+ borderBottomStyle: "borderStyles";
1590
+ borderRadius: "radii";
1591
+ borderTopLeftRadius: "radii";
1592
+ borderTopRightRadius: "radii";
1593
+ borderBottomRightRadius: "radii";
1594
+ borderBottomLeftRadius: "radii";
1595
+ boxShadow: "shadows";
1596
+ textShadow: "shadows";
1597
+ transition: "transitions";
1598
+ zIndex: "zIndices";
1599
+ }, {}>>;
1600
+ interface SeparatorUIProps extends ComponentProps<typeof SeparatorUI> {
1601
+ size?: 'xs' | 'md' | 'sm' | 'lg';
1602
+ color?: 'primary' | 'lightGray' | 'darkGray' | 'white' | 'black';
1603
+ style?: CSSProperties;
1604
+ }
1605
+
1606
+ declare function Separator({ size, color, style, ...props }: SeparatorUIProps): react_jsx_runtime.JSX.Element;
1607
+ declare namespace Separator {
1328
1608
  var displayName: string;
1329
1609
  }
1330
1610
 
1331
1611
  declare const TextUI: _stitches_react_types_styled_component.StyledComponent<"p", {
1332
- size?: "xxs" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | undefined;
1612
+ size?: "xxs" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | undefined;
1613
+ color?: "white" | "black" | "primary" | "lightGray" | "darkGray" | undefined;
1333
1614
  }, {}, _stitches_react_types_css_util.CSS<{}, {
1334
1615
  colors: {
1335
1616
  white: string;
1336
1617
  black: string;
1618
+ red: string;
1337
1619
  gray100: string;
1338
1620
  gray200: string;
1339
1621
  gray400: string;
@@ -1352,6 +1634,14 @@ declare const TextUI: _stitches_react_types_styled_component.StyledComponent<"p"
1352
1634
  lg: string;
1353
1635
  xl: string;
1354
1636
  '2xl': string;
1637
+ '3xl': string;
1638
+ '4xl': string;
1639
+ '5xl': string;
1640
+ '6xl': string;
1641
+ '7xl': string;
1642
+ '8xl': string;
1643
+ '9xl': string;
1644
+ '10xl': string;
1355
1645
  };
1356
1646
  fontWeights: {
1357
1647
  regular: string;
@@ -1532,13 +1822,15 @@ declare const TextUI: _stitches_react_types_styled_component.StyledComponent<"p"
1532
1822
  }, {}>>;
1533
1823
  interface TextUIProps extends ComponentProps<typeof TextUI> {
1534
1824
  as?: ElementType;
1535
- size?: 'xxs' | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl';
1825
+ size?: 'xxs' | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl' | '3xl' | '4xl';
1826
+ color?: 'white' | 'black' | 'primary' | 'lightGray' | 'darkGray';
1827
+ style?: CSSProperties;
1536
1828
  }
1537
1829
 
1538
1830
  interface TextProps {
1539
1831
  children: ReactNode;
1540
1832
  }
1541
- declare function Text({ children, size, ...props }: TextUIProps & TextProps): react_jsx_runtime.JSX.Element;
1833
+ declare function Text({ children, size, color, ...props }: TextUIProps & TextProps): react_jsx_runtime.JSX.Element;
1542
1834
  declare namespace Text {
1543
1835
  var displayName: string;
1544
1836
  }
@@ -1547,6 +1839,7 @@ declare const TextAreaUI: _stitches_react_types_styled_component.StyledComponent
1547
1839
  colors: {
1548
1840
  white: string;
1549
1841
  black: string;
1842
+ red: string;
1550
1843
  gray100: string;
1551
1844
  gray200: string;
1552
1845
  gray400: string;
@@ -1565,6 +1858,14 @@ declare const TextAreaUI: _stitches_react_types_styled_component.StyledComponent
1565
1858
  lg: string;
1566
1859
  xl: string;
1567
1860
  '2xl': string;
1861
+ '3xl': string;
1862
+ '4xl': string;
1863
+ '5xl': string;
1864
+ '6xl': string;
1865
+ '7xl': string;
1866
+ '8xl': string;
1867
+ '9xl': string;
1868
+ '10xl': string;
1568
1869
  };
1569
1870
  fontWeights: {
1570
1871
  regular: string;
@@ -1744,22 +2045,24 @@ declare const TextAreaUI: _stitches_react_types_styled_component.StyledComponent
1744
2045
  zIndex: "zIndices";
1745
2046
  }, {}>>;
1746
2047
  interface TextAreaUIProps extends ComponentProps<typeof TextAreaUI> {
2048
+ style?: CSSProperties;
1747
2049
  }
1748
2050
 
1749
- interface TextAreaProps {
1750
- children?: ReactNode;
2051
+ interface TextAreaProps extends TextAreaUIProps {
2052
+ id: string;
1751
2053
  placeholder?: string;
1752
2054
  disabled?: boolean;
2055
+ children?: ReactNode;
1753
2056
  }
1754
- declare function TextArea({ children, ...props }: TextAreaUIProps & TextAreaProps): react_jsx_runtime.JSX.Element;
1755
- declare namespace TextArea {
1756
- var displayName: string;
1757
- }
2057
+ declare const TextArea: react.ForwardRefExoticComponent<Omit<TextAreaProps, "ref"> & react.RefAttributes<HTMLTextAreaElement>>;
1758
2058
 
1759
- declare const InputUI: _stitches_react_types_styled_component.StyledComponent<"input", {}, {}, _stitches_react_types_css_util.CSS<{}, {
2059
+ declare const InputUI: _stitches_react_types_styled_component.StyledComponent<"input", {
2060
+ size?: "sm" | "md" | "lg" | undefined;
2061
+ }, {}, _stitches_react_types_css_util.CSS<{}, {
1760
2062
  colors: {
1761
2063
  white: string;
1762
2064
  black: string;
2065
+ red: string;
1763
2066
  gray100: string;
1764
2067
  gray200: string;
1765
2068
  gray400: string;
@@ -1778,6 +2081,14 @@ declare const InputUI: _stitches_react_types_styled_component.StyledComponent<"i
1778
2081
  lg: string;
1779
2082
  xl: string;
1780
2083
  '2xl': string;
2084
+ '3xl': string;
2085
+ '4xl': string;
2086
+ '5xl': string;
2087
+ '6xl': string;
2088
+ '7xl': string;
2089
+ '8xl': string;
2090
+ '9xl': string;
2091
+ '10xl': string;
1781
2092
  };
1782
2093
  fontWeights: {
1783
2094
  regular: string;
@@ -1958,21 +2269,257 @@ declare const InputUI: _stitches_react_types_styled_component.StyledComponent<"i
1958
2269
  }, {}>>;
1959
2270
 
1960
2271
  interface TextInputProps extends ComponentProps<typeof InputUI> {
2272
+ size?: 'lg' | 'md' | 'sm';
1961
2273
  required?: boolean;
1962
2274
  requiredText?: string;
1963
2275
  withShadow?: boolean;
1964
2276
  placeholder?: string;
1965
- type?: string;
1966
- id: string;
2277
+ type?: React.HTMLInputTypeAttribute | undefined;
2278
+ style?: CSSProperties;
2279
+ id?: string;
1967
2280
  }
1968
2281
  declare const TextInput: react.ForwardRefExoticComponent<Omit<TextInputProps, "ref"> & react.RefAttributes<HTMLInputElement>>;
1969
2282
 
2283
+ declare const SelectUI: _stitches_react_types_styled_component.StyledComponent<"div", {
2284
+ disabled?: boolean | "true" | undefined;
2285
+ size?: "sm" | "md" | "lg" | undefined;
2286
+ }, {}, _stitches_react_types_css_util.CSS<{}, {
2287
+ colors: {
2288
+ white: string;
2289
+ black: string;
2290
+ red: string;
2291
+ gray100: string;
2292
+ gray200: string;
2293
+ gray400: string;
2294
+ gray800: string;
2295
+ dafaz100: string;
2296
+ dafaz200: string;
2297
+ dafaz400: string;
2298
+ dafaz600: string;
2299
+ dafaz800: string;
2300
+ };
2301
+ fontSizes: {
2302
+ xxs: string;
2303
+ xs: string;
2304
+ sm: string;
2305
+ md: string;
2306
+ lg: string;
2307
+ xl: string;
2308
+ '2xl': string;
2309
+ '3xl': string;
2310
+ '4xl': string;
2311
+ '5xl': string;
2312
+ '6xl': string;
2313
+ '7xl': string;
2314
+ '8xl': string;
2315
+ '9xl': string;
2316
+ '10xl': string;
2317
+ };
2318
+ fontWeights: {
2319
+ regular: string;
2320
+ medium: string;
2321
+ bold: string;
2322
+ };
2323
+ fonts: {
2324
+ default: string;
2325
+ app: string;
2326
+ web: string;
2327
+ offer: string;
2328
+ code: string;
2329
+ };
2330
+ lineHeights: {
2331
+ shorter: string;
2332
+ short: string;
2333
+ base: string;
2334
+ tall: string;
2335
+ };
2336
+ radii: {
2337
+ px: string;
2338
+ sm: string;
2339
+ md: string;
2340
+ full: string;
2341
+ };
2342
+ space: {
2343
+ 1: string;
2344
+ 2: string;
2345
+ 3: string;
2346
+ 4: string;
2347
+ 5: string;
2348
+ 6: string;
2349
+ 7: string;
2350
+ 8: string;
2351
+ 10: string;
2352
+ 12: string;
2353
+ 16: string;
2354
+ 20: string;
2355
+ 40: string;
2356
+ 64: string;
2357
+ 80: string;
2358
+ };
2359
+ opacities: {
2360
+ opacity400: string;
2361
+ opacity600: string;
2362
+ opacity800: string;
2363
+ opacity900: string;
2364
+ };
2365
+ }, {
2366
+ height: "space";
2367
+ width: "space";
2368
+ gap: "space";
2369
+ gridGap: "space";
2370
+ columnGap: "space";
2371
+ gridColumnGap: "space";
2372
+ rowGap: "space";
2373
+ gridRowGap: "space";
2374
+ inset: "space";
2375
+ insetBlock: "space";
2376
+ insetBlockEnd: "space";
2377
+ insetBlockStart: "space";
2378
+ insetInline: "space";
2379
+ insetInlineEnd: "space";
2380
+ insetInlineStart: "space";
2381
+ margin: "space";
2382
+ marginTop: "space";
2383
+ marginRight: "space";
2384
+ marginBottom: "space";
2385
+ marginLeft: "space";
2386
+ marginBlock: "space";
2387
+ marginBlockEnd: "space";
2388
+ marginBlockStart: "space";
2389
+ marginInline: "space";
2390
+ marginInlineEnd: "space";
2391
+ marginInlineStart: "space";
2392
+ padding: "space";
2393
+ paddingTop: "space";
2394
+ paddingRight: "space";
2395
+ paddingBottom: "space";
2396
+ paddingLeft: "space";
2397
+ paddingBlock: "space";
2398
+ paddingBlockEnd: "space";
2399
+ paddingBlockStart: "space";
2400
+ paddingInline: "space";
2401
+ paddingInlineEnd: "space";
2402
+ paddingInlineStart: "space";
2403
+ scrollMargin: "space";
2404
+ scrollMarginTop: "space";
2405
+ scrollMarginRight: "space";
2406
+ scrollMarginBottom: "space";
2407
+ scrollMarginLeft: "space";
2408
+ scrollMarginBlock: "space";
2409
+ scrollMarginBlockEnd: "space";
2410
+ scrollMarginBlockStart: "space";
2411
+ scrollMarginInline: "space";
2412
+ scrollMarginInlineEnd: "space";
2413
+ scrollMarginInlineStart: "space";
2414
+ scrollPadding: "space";
2415
+ scrollPaddingTop: "space";
2416
+ scrollPaddingRight: "space";
2417
+ scrollPaddingBottom: "space";
2418
+ scrollPaddingLeft: "space";
2419
+ scrollPaddingBlock: "space";
2420
+ scrollPaddingBlockEnd: "space";
2421
+ scrollPaddingBlockStart: "space";
2422
+ scrollPaddingInline: "space";
2423
+ scrollPaddingInlineEnd: "space";
2424
+ scrollPaddingInlineStart: "space";
2425
+ top: "space";
2426
+ right: "space";
2427
+ bottom: "space";
2428
+ left: "space";
2429
+ fontSize: "fontSizes";
2430
+ background: "colors";
2431
+ backgroundColor: "colors";
2432
+ backgroundImage: "colors";
2433
+ borderImage: "colors";
2434
+ border: "colors";
2435
+ borderBlock: "colors";
2436
+ borderBlockEnd: "colors";
2437
+ borderBlockStart: "colors";
2438
+ borderBottom: "colors";
2439
+ borderBottomColor: "colors";
2440
+ borderColor: "colors";
2441
+ borderInline: "colors";
2442
+ borderInlineEnd: "colors";
2443
+ borderInlineStart: "colors";
2444
+ borderLeft: "colors";
2445
+ borderLeftColor: "colors";
2446
+ borderRight: "colors";
2447
+ borderRightColor: "colors";
2448
+ borderTop: "colors";
2449
+ borderTopColor: "colors";
2450
+ caretColor: "colors";
2451
+ color: "colors";
2452
+ columnRuleColor: "colors";
2453
+ outline: "colors";
2454
+ outlineColor: "colors";
2455
+ fill: "colors";
2456
+ stroke: "colors";
2457
+ textDecorationColor: "colors";
2458
+ fontFamily: "fonts";
2459
+ fontWeight: "fontWeights";
2460
+ lineHeight: "lineHeights";
2461
+ letterSpacing: "letterSpacings";
2462
+ blockSize: "sizes";
2463
+ minBlockSize: "sizes";
2464
+ maxBlockSize: "sizes";
2465
+ inlineSize: "sizes";
2466
+ minInlineSize: "sizes";
2467
+ maxInlineSize: "sizes";
2468
+ minWidth: "sizes";
2469
+ maxWidth: "sizes";
2470
+ minHeight: "sizes";
2471
+ maxHeight: "sizes";
2472
+ flexBasis: "sizes";
2473
+ gridTemplateColumns: "sizes";
2474
+ gridTemplateRows: "sizes";
2475
+ borderWidth: "borderWidths";
2476
+ borderTopWidth: "borderWidths";
2477
+ borderLeftWidth: "borderWidths";
2478
+ borderRightWidth: "borderWidths";
2479
+ borderBottomWidth: "borderWidths";
2480
+ borderStyle: "borderStyles";
2481
+ borderTopStyle: "borderStyles";
2482
+ borderLeftStyle: "borderStyles";
2483
+ borderRightStyle: "borderStyles";
2484
+ borderBottomStyle: "borderStyles";
2485
+ borderRadius: "radii";
2486
+ borderTopLeftRadius: "radii";
2487
+ borderTopRightRadius: "radii";
2488
+ borderBottomRightRadius: "radii";
2489
+ borderBottomLeftRadius: "radii";
2490
+ boxShadow: "shadows";
2491
+ textShadow: "shadows";
2492
+ transition: "transitions";
2493
+ zIndex: "zIndices";
2494
+ }, {}>>;
2495
+ interface SelectUIProps extends ComponentProps<typeof SelectUI> {
2496
+ size?: 'sm' | 'md' | 'lg';
2497
+ disabled?: boolean;
2498
+ style?: CSSProperties;
2499
+ }
2500
+
2501
+ interface Item {
2502
+ id: string;
2503
+ label: string;
2504
+ value: string;
2505
+ }
2506
+ interface SelectContainerProps extends SelectUIProps {
2507
+ id: string;
2508
+ items: Item[];
2509
+ placeholder?: string;
2510
+ name?: string;
2511
+ value?: string[];
2512
+ onChange?: (e: ChangeEvent<HTMLInputElement>) => void;
2513
+ }
2514
+ declare const MultiSelect: react.ForwardRefExoticComponent<Omit<SelectContainerProps, "ref"> & react.RefAttributes<HTMLDivElement>>;
2515
+
1970
2516
  declare const styled: <Type extends keyof JSX.IntrinsicElements | React.ComponentType<any> | _stitches_react_types_util.Function, Composers extends (string | React.ComponentType<any> | _stitches_react_types_util.Function | {
1971
2517
  [name: string]: unknown;
1972
2518
  })[], CSS = _stitches_react_types_css_util.CSS<{}, {
1973
2519
  colors: {
1974
2520
  white: string;
1975
2521
  black: string;
2522
+ red: string;
1976
2523
  gray100: string;
1977
2524
  gray200: string;
1978
2525
  gray400: string;
@@ -1991,6 +2538,14 @@ declare const styled: <Type extends keyof JSX.IntrinsicElements | React.Componen
1991
2538
  lg: string;
1992
2539
  xl: string;
1993
2540
  '2xl': string;
2541
+ '3xl': string;
2542
+ '4xl': string;
2543
+ '5xl': string;
2544
+ '6xl': string;
2545
+ '7xl': string;
2546
+ '8xl': string;
2547
+ '9xl': string;
2548
+ '10xl': string;
1994
2549
  };
1995
2550
  fontWeights: {
1996
2551
  regular: string;
@@ -2183,6 +2738,7 @@ declare const styled: <Type extends keyof JSX.IntrinsicElements | React.Componen
2183
2738
  colors: {
2184
2739
  white: string;
2185
2740
  black: string;
2741
+ red: string;
2186
2742
  gray100: string;
2187
2743
  gray200: string;
2188
2744
  gray400: string;
@@ -2201,6 +2757,14 @@ declare const styled: <Type extends keyof JSX.IntrinsicElements | React.Componen
2201
2757
  lg: string;
2202
2758
  xl: string;
2203
2759
  '2xl': string;
2760
+ '3xl': string;
2761
+ '4xl': string;
2762
+ '5xl': string;
2763
+ '6xl': string;
2764
+ '7xl': string;
2765
+ '8xl': string;
2766
+ '9xl': string;
2767
+ '10xl': string;
2204
2768
  };
2205
2769
  fontWeights: {
2206
2770
  regular: string;
@@ -2385,6 +2949,7 @@ declare const css: <Composers extends (string | React.ExoticComponent<any> | Rea
2385
2949
  colors: {
2386
2950
  white: string;
2387
2951
  black: string;
2952
+ red: string;
2388
2953
  gray100: string;
2389
2954
  gray200: string;
2390
2955
  gray400: string;
@@ -2403,6 +2968,14 @@ declare const css: <Composers extends (string | React.ExoticComponent<any> | Rea
2403
2968
  lg: string;
2404
2969
  xl: string;
2405
2970
  '2xl': string;
2971
+ '3xl': string;
2972
+ '4xl': string;
2973
+ '5xl': string;
2974
+ '6xl': string;
2975
+ '7xl': string;
2976
+ '8xl': string;
2977
+ '9xl': string;
2978
+ '10xl': string;
2406
2979
  };
2407
2980
  fontWeights: {
2408
2981
  regular: string;
@@ -2602,6 +3175,7 @@ declare const globalCss: <Styles extends {
2602
3175
  colors: {
2603
3176
  white: string;
2604
3177
  black: string;
3178
+ red: string;
2605
3179
  gray100: string;
2606
3180
  gray200: string;
2607
3181
  gray400: string;
@@ -2620,6 +3194,14 @@ declare const globalCss: <Styles extends {
2620
3194
  lg: string;
2621
3195
  xl: string;
2622
3196
  '2xl': string;
3197
+ '3xl': string;
3198
+ '4xl': string;
3199
+ '5xl': string;
3200
+ '6xl': string;
3201
+ '7xl': string;
3202
+ '8xl': string;
3203
+ '9xl': string;
3204
+ '10xl': string;
2623
3205
  };
2624
3206
  fontWeights: {
2625
3207
  regular: string;
@@ -2802,6 +3384,7 @@ declare const globalCss: <Styles extends {
2802
3384
  colors: {
2803
3385
  white: string;
2804
3386
  black: string;
3387
+ red: string;
2805
3388
  gray100: string;
2806
3389
  gray200: string;
2807
3390
  gray400: string;
@@ -2820,6 +3403,14 @@ declare const globalCss: <Styles extends {
2820
3403
  lg: string;
2821
3404
  xl: string;
2822
3405
  '2xl': string;
3406
+ '3xl': string;
3407
+ '4xl': string;
3408
+ '5xl': string;
3409
+ '6xl': string;
3410
+ '7xl': string;
3411
+ '8xl': string;
3412
+ '9xl': string;
3413
+ '10xl': string;
2823
3414
  };
2824
3415
  fontWeights: {
2825
3416
  regular: string;
@@ -3005,6 +3596,7 @@ declare const keyframes: (style: {
3005
3596
  colors: {
3006
3597
  white: string;
3007
3598
  black: string;
3599
+ red: string;
3008
3600
  gray100: string;
3009
3601
  gray200: string;
3010
3602
  gray400: string;
@@ -3023,6 +3615,14 @@ declare const keyframes: (style: {
3023
3615
  lg: string;
3024
3616
  xl: string;
3025
3617
  '2xl': string;
3618
+ '3xl': string;
3619
+ '4xl': string;
3620
+ '5xl': string;
3621
+ '6xl': string;
3622
+ '7xl': string;
3623
+ '8xl': string;
3624
+ '9xl': string;
3625
+ '10xl': string;
3026
3626
  };
3027
3627
  fontWeights: {
3028
3628
  regular: string;
@@ -3213,6 +3813,7 @@ declare const theme: string & {
3213
3813
  colors: {
3214
3814
  white: _stitches_react_types_theme.Token<"white", string, "colors", "">;
3215
3815
  black: _stitches_react_types_theme.Token<"black", string, "colors", "">;
3816
+ red: _stitches_react_types_theme.Token<"red", string, "colors", "">;
3216
3817
  gray100: _stitches_react_types_theme.Token<"gray100", string, "colors", "">;
3217
3818
  gray200: _stitches_react_types_theme.Token<"gray200", string, "colors", "">;
3218
3819
  gray400: _stitches_react_types_theme.Token<"gray400", string, "colors", "">;
@@ -3231,6 +3832,14 @@ declare const theme: string & {
3231
3832
  lg: _stitches_react_types_theme.Token<"lg", string, "fontSizes", "">;
3232
3833
  xl: _stitches_react_types_theme.Token<"xl", string, "fontSizes", "">;
3233
3834
  '2xl': _stitches_react_types_theme.Token<"2xl", string, "fontSizes", "">;
3835
+ '3xl': _stitches_react_types_theme.Token<"3xl", string, "fontSizes", "">;
3836
+ '4xl': _stitches_react_types_theme.Token<"4xl", string, "fontSizes", "">;
3837
+ '5xl': _stitches_react_types_theme.Token<"5xl", string, "fontSizes", "">;
3838
+ '6xl': _stitches_react_types_theme.Token<"6xl", string, "fontSizes", "">;
3839
+ '7xl': _stitches_react_types_theme.Token<"7xl", string, "fontSizes", "">;
3840
+ '8xl': _stitches_react_types_theme.Token<"8xl", string, "fontSizes", "">;
3841
+ '9xl': _stitches_react_types_theme.Token<"9xl", string, "fontSizes", "">;
3842
+ '10xl': _stitches_react_types_theme.Token<"10xl", string, "fontSizes", "">;
3234
3843
  };
3235
3844
  fontWeights: {
3236
3845
  regular: _stitches_react_types_theme.Token<"regular", string, "fontWeights", "">;
@@ -3284,6 +3893,7 @@ declare const createTheme: <Argument0 extends string | ({
3284
3893
  colors?: {
3285
3894
  white?: string | number | boolean | undefined;
3286
3895
  black?: string | number | boolean | undefined;
3896
+ red?: string | number | boolean | undefined;
3287
3897
  gray100?: string | number | boolean | undefined;
3288
3898
  gray200?: string | number | boolean | undefined;
3289
3899
  gray400?: string | number | boolean | undefined;
@@ -3302,6 +3912,14 @@ declare const createTheme: <Argument0 extends string | ({
3302
3912
  lg?: string | number | boolean | undefined;
3303
3913
  xl?: string | number | boolean | undefined;
3304
3914
  '2xl'?: string | number | boolean | undefined;
3915
+ '3xl'?: string | number | boolean | undefined;
3916
+ '4xl'?: string | number | boolean | undefined;
3917
+ '5xl'?: string | number | boolean | undefined;
3918
+ '6xl'?: string | number | boolean | undefined;
3919
+ '7xl'?: string | number | boolean | undefined;
3920
+ '8xl'?: string | number | boolean | undefined;
3921
+ '9xl'?: string | number | boolean | undefined;
3922
+ '10xl'?: string | number | boolean | undefined;
3305
3923
  } | undefined;
3306
3924
  fontWeights?: {
3307
3925
  regular?: string | number | boolean | undefined;
@@ -3359,6 +3977,7 @@ declare const createTheme: <Argument0 extends string | ({
3359
3977
  colors?: {
3360
3978
  white?: string | number | boolean | undefined;
3361
3979
  black?: string | number | boolean | undefined;
3980
+ red?: string | number | boolean | undefined;
3362
3981
  gray100?: string | number | boolean | undefined;
3363
3982
  gray200?: string | number | boolean | undefined;
3364
3983
  gray400?: string | number | boolean | undefined;
@@ -3377,6 +3996,14 @@ declare const createTheme: <Argument0 extends string | ({
3377
3996
  lg?: string | number | boolean | undefined;
3378
3997
  xl?: string | number | boolean | undefined;
3379
3998
  '2xl'?: string | number | boolean | undefined;
3999
+ '3xl'?: string | number | boolean | undefined;
4000
+ '4xl'?: string | number | boolean | undefined;
4001
+ '5xl'?: string | number | boolean | undefined;
4002
+ '6xl'?: string | number | boolean | undefined;
4003
+ '7xl'?: string | number | boolean | undefined;
4004
+ '8xl'?: string | number | boolean | undefined;
4005
+ '9xl'?: string | number | boolean | undefined;
4006
+ '10xl'?: string | number | boolean | undefined;
3380
4007
  } | undefined;
3381
4008
  fontWeights?: {
3382
4009
  regular?: string | number | boolean | undefined;
@@ -3441,6 +4068,7 @@ declare const config: {
3441
4068
  colors: {
3442
4069
  white: string;
3443
4070
  black: string;
4071
+ red: string;
3444
4072
  gray100: string;
3445
4073
  gray200: string;
3446
4074
  gray400: string;
@@ -3459,6 +4087,14 @@ declare const config: {
3459
4087
  lg: string;
3460
4088
  xl: string;
3461
4089
  '2xl': string;
4090
+ '3xl': string;
4091
+ '4xl': string;
4092
+ '5xl': string;
4093
+ '6xl': string;
4094
+ '7xl': string;
4095
+ '8xl': string;
4096
+ '9xl': string;
4097
+ '10xl': string;
3462
4098
  };
3463
4099
  fontWeights: {
3464
4100
  regular: string;
@@ -3641,4 +4277,4 @@ declare const config: {
3641
4277
  utils: {};
3642
4278
  };
3643
4279
 
3644
- export { Box, Button, CheckBox, Heading, Radio, Select, Text, TextArea, TextInput, type TextInputProps, config, createTheme, css, getCssText, globalCss, keyframes, styled, theme };
4280
+ export { Box, Button, CheckBox, Heading, type HeadingProps, MultiSelect, Radio, Select, Separator, Text, TextArea, TextInput, type TextInputProps, config, createTheme, css, getCssText, globalCss, keyframes, styled, theme };