@lets-events/react 11.1.0 → 11.3.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/.eslintrc.json +2 -2
- package/.turbo/turbo-build.log +20 -18
- package/CHANGELOG.md +12 -0
- package/dist/index.d.mts +902 -137
- package/dist/index.d.ts +902 -137
- package/dist/index.js +294 -145
- package/dist/index.mjs +273 -124
- package/package.json +1 -1
- package/src/components/Alert.tsx +303 -303
- package/src/components/Avatar.tsx +55 -55
- package/src/components/Badge.tsx +128 -128
- package/src/components/Box.tsx +3 -3
- package/src/components/Button/index.tsx +16 -13
- package/src/components/Button/styledComponents.ts +287 -276
- package/src/components/ButtonGroup.tsx +484 -484
- package/src/components/Calendar/index.tsx +136 -136
- package/src/components/Calendar/styledComponents.ts +209 -209
- package/src/components/Card.tsx +48 -48
- package/src/components/CheckboxGroup.tsx +214 -214
- package/src/components/Container.tsx +39 -39
- package/src/components/Drawer/index.tsx +48 -0
- package/src/components/Drawer/styledComponents.ts +46 -0
- package/src/components/Dropdown.tsx +167 -167
- package/src/components/Filter.tsx +164 -164
- package/src/components/Flex.tsx +118 -118
- package/src/components/FormFields/ErrorFormMessage.tsx +36 -36
- package/src/components/FormFields/Form.tsx +25 -0
- package/src/components/FormFields/FormLabel.tsx +29 -29
- package/src/components/FormFields/TextAreaFormField.tsx +46 -46
- package/src/components/FormFields/TextFormField.tsx +46 -46
- package/src/components/Grid.tsx +137 -137
- package/src/components/Icon.tsx +47 -47
- package/src/components/MenuDropdown/index.tsx +30 -0
- package/src/components/MenuDropdown/styledComponents.ts +31 -0
- package/src/components/Modal.tsx +90 -90
- package/src/components/RadioGroup.tsx +210 -210
- package/src/components/Section.tsx +33 -33
- package/src/components/Step.tsx +164 -164
- package/src/components/Switch.tsx +108 -108
- package/src/components/Text.tsx +39 -39
- package/src/components/TextField.tsx +315 -315
- package/src/components/TextareaField.tsx +128 -128
- package/src/components/TimePicker.tsx +298 -298
- package/src/components/Toast/components/ToastItem.tsx +41 -41
- package/src/components/Toast/components/ToastProvider.tsx +63 -63
- package/src/components/Toast/hooks/useToast.ts +12 -12
- package/src/components/Toast/index.tsx +5 -5
- package/src/components/Toast/styles/index.ts +135 -135
- package/src/components/Toast/types/index.ts +46 -46
- package/src/components/Tooltip/index.tsx +66 -66
- package/src/components/Tooltip/styles.ts +77 -77
- package/src/hooks/useOnClickOutside.tsx +20 -20
- package/src/index.tsx +42 -40
- package/src/styles/index.ts +38 -38
- package/src/types/typographyValues.ts +178 -178
- package/tsconfig.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -5,14 +5,15 @@ import PropTypes from 'prop-types';
|
|
|
5
5
|
import * as _stitches_react_types_styled_component from '@stitches/react/types/styled-component';
|
|
6
6
|
import * as _stitches_react_types_css_util from '@stitches/react/types/css-util';
|
|
7
7
|
import * as react from 'react';
|
|
8
|
-
import react__default, { ComponentProps, ElementType, ReactNode } from 'react';
|
|
8
|
+
import react__default, { ComponentProps, ElementType, ReactNode, JSX } from 'react';
|
|
9
9
|
import * as _radix_ui_themes from '@radix-ui/themes';
|
|
10
10
|
import { TextField as TextField$1, RadioGroup as RadioGroup$1, CheckboxGroup as CheckboxGroup$1, DropdownMenu as DropdownMenu$1, AlertDialog, Switch as Switch$1 } from '@radix-ui/themes';
|
|
11
11
|
import { Colors } from '@lets-events/tokens';
|
|
12
|
+
import { VariantProps } from '@stitches/react';
|
|
12
13
|
import { MaskOptions, format, unformat } from '@react-input/mask';
|
|
13
14
|
import { Dialog } from 'radix-ui';
|
|
14
15
|
import * as TooltipPrimitive from '@radix-ui/react-tooltip';
|
|
15
|
-
import { FieldError, Merge, FieldErrorsImpl } from 'react-hook-form';
|
|
16
|
+
import { FieldError, Merge, FieldErrorsImpl, UseFormProps, SubmitHandler, FieldValues } from 'react-hook-form';
|
|
16
17
|
|
|
17
18
|
interface IconProps extends Omit<FontAwesomeIconProps, "icon" | "size"> {
|
|
18
19
|
name: IconName;
|
|
@@ -413,7 +414,7 @@ declare function Text({ color, ...props }: TextProps): react_jsx_runtime.JSX.Ele
|
|
|
413
414
|
declare const ButtonStyled: _stitches_react_types_styled_component.StyledComponent<react.ForwardRefExoticComponent<_radix_ui_themes.ButtonProps & react.RefAttributes<HTMLButtonElement>>, {
|
|
414
415
|
color?: "info" | "warning" | "purple" | "white" | "brand" | "error" | "success" | "neutral" | undefined;
|
|
415
416
|
size?: "medium" | "small" | "large" | "extraSmall" | undefined;
|
|
416
|
-
variant?: "text" | "contained" | "outlined" | undefined;
|
|
417
|
+
variant?: "text" | "contained" | "outlined" | "menuDropdownItem" | undefined;
|
|
417
418
|
fontWeight?: "bold" | "medium" | "regular" | "semibold" | undefined;
|
|
418
419
|
outlinedBgColor?: "transparent" | "neutral" | undefined;
|
|
419
420
|
radii?: "full" | undefined;
|
|
@@ -788,7 +789,8 @@ declare const ButtonStyled: _stitches_react_types_styled_component.StyledCompone
|
|
|
788
789
|
zIndex: "zIndices";
|
|
789
790
|
}, {}>>;
|
|
790
791
|
|
|
791
|
-
|
|
792
|
+
type ButtonVariantProps = VariantProps<typeof ButtonStyled>;
|
|
793
|
+
interface ButtonProps extends ComponentProps<typeof ButtonStyled>, ButtonVariantProps {
|
|
792
794
|
asChild?: boolean;
|
|
793
795
|
}
|
|
794
796
|
declare function Button({ asChild, ...props }: ButtonProps): react_jsx_runtime.JSX.Element;
|
|
@@ -1540,16 +1542,773 @@ declare const ButtonGroupStyled: _stitches_react_types_styled_component.StyledCo
|
|
|
1540
1542
|
transition: "transitions";
|
|
1541
1543
|
zIndex: "zIndices";
|
|
1542
1544
|
}, {}>>;
|
|
1543
|
-
interface ButtonItemProps extends ComponentProps<typeof ButtonItemStyled> {
|
|
1544
|
-
}
|
|
1545
|
-
type ButtonGroupProps = ComponentProps<typeof ButtonGroupStyled>;
|
|
1546
|
-
declare function ButtonItem({ children, active, ...props }: ButtonItemProps): react_jsx_runtime.JSX.Element;
|
|
1547
|
-
declare function ButtonGroup({ children, ...props }: ButtonGroupProps): react_jsx_runtime.JSX.Element;
|
|
1548
|
-
|
|
1549
|
-
declare const AvatarStyled: _stitches_react_types_styled_component.StyledComponent<react.ForwardRefExoticComponent<_radix_ui_themes.AvatarProps & react.RefAttributes<HTMLImageElement>>, {
|
|
1550
|
-
size?: "xs" | "sm" | "md" | "xl" | "lg" | undefined;
|
|
1551
|
-
radii?: "full" | undefined;
|
|
1552
|
-
variant?: "without-image" | "with-image" | undefined;
|
|
1545
|
+
interface ButtonItemProps extends ComponentProps<typeof ButtonItemStyled> {
|
|
1546
|
+
}
|
|
1547
|
+
type ButtonGroupProps = ComponentProps<typeof ButtonGroupStyled>;
|
|
1548
|
+
declare function ButtonItem({ children, active, ...props }: ButtonItemProps): react_jsx_runtime.JSX.Element;
|
|
1549
|
+
declare function ButtonGroup({ children, ...props }: ButtonGroupProps): react_jsx_runtime.JSX.Element;
|
|
1550
|
+
|
|
1551
|
+
declare const AvatarStyled: _stitches_react_types_styled_component.StyledComponent<react.ForwardRefExoticComponent<_radix_ui_themes.AvatarProps & react.RefAttributes<HTMLImageElement>>, {
|
|
1552
|
+
size?: "xs" | "sm" | "md" | "xl" | "lg" | undefined;
|
|
1553
|
+
radii?: "full" | undefined;
|
|
1554
|
+
variant?: "without-image" | "with-image" | undefined;
|
|
1555
|
+
}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
1556
|
+
colors: {
|
|
1557
|
+
brand50: string;
|
|
1558
|
+
brand100: string;
|
|
1559
|
+
brand200: string;
|
|
1560
|
+
brand300: string;
|
|
1561
|
+
brand400: string;
|
|
1562
|
+
brand500: string;
|
|
1563
|
+
brand600: string;
|
|
1564
|
+
brand700: string;
|
|
1565
|
+
brand800: string;
|
|
1566
|
+
brand900: string;
|
|
1567
|
+
brand950: string;
|
|
1568
|
+
blue50: string;
|
|
1569
|
+
blue100: string;
|
|
1570
|
+
blue200: string;
|
|
1571
|
+
blue300: string;
|
|
1572
|
+
blue400: string;
|
|
1573
|
+
blue500: string;
|
|
1574
|
+
blue600: string;
|
|
1575
|
+
blue700: string;
|
|
1576
|
+
blue800: string;
|
|
1577
|
+
blue900: string;
|
|
1578
|
+
blue950: string;
|
|
1579
|
+
red50: string;
|
|
1580
|
+
red100: string;
|
|
1581
|
+
red200: string;
|
|
1582
|
+
red300: string;
|
|
1583
|
+
red400: string;
|
|
1584
|
+
red500: string;
|
|
1585
|
+
red600: string;
|
|
1586
|
+
red700: string;
|
|
1587
|
+
red800: string;
|
|
1588
|
+
red900: string;
|
|
1589
|
+
red950: string;
|
|
1590
|
+
purple50: string;
|
|
1591
|
+
purple100: string;
|
|
1592
|
+
purple200: string;
|
|
1593
|
+
purple300: string;
|
|
1594
|
+
purple400: string;
|
|
1595
|
+
purple500: string;
|
|
1596
|
+
purple600: string;
|
|
1597
|
+
purple700: string;
|
|
1598
|
+
purple800: string;
|
|
1599
|
+
purple900: string;
|
|
1600
|
+
purple950: string;
|
|
1601
|
+
yellow50: string;
|
|
1602
|
+
yellow100: string;
|
|
1603
|
+
yellow200: string;
|
|
1604
|
+
yellow300: string;
|
|
1605
|
+
yellow400: string;
|
|
1606
|
+
yellow500: string;
|
|
1607
|
+
yellow600: string;
|
|
1608
|
+
yellow700: string;
|
|
1609
|
+
yellow800: string;
|
|
1610
|
+
yellow900: string;
|
|
1611
|
+
yellow950: string;
|
|
1612
|
+
dark50: string;
|
|
1613
|
+
dark100: string;
|
|
1614
|
+
dark200: string;
|
|
1615
|
+
dark300: string;
|
|
1616
|
+
dark400: string;
|
|
1617
|
+
dark500: string;
|
|
1618
|
+
dark600: string;
|
|
1619
|
+
dark700: string;
|
|
1620
|
+
dark800: string;
|
|
1621
|
+
dark900: string;
|
|
1622
|
+
dark950: string;
|
|
1623
|
+
neutral50: string;
|
|
1624
|
+
neutral100: string;
|
|
1625
|
+
neutral200: string;
|
|
1626
|
+
neutral300: string;
|
|
1627
|
+
neutral400: string;
|
|
1628
|
+
neutral500: string;
|
|
1629
|
+
neutral600: string;
|
|
1630
|
+
neutral700: string;
|
|
1631
|
+
neutral800: string;
|
|
1632
|
+
neutral900: string;
|
|
1633
|
+
neutral950: string;
|
|
1634
|
+
green50: string;
|
|
1635
|
+
green100: string;
|
|
1636
|
+
green200: string;
|
|
1637
|
+
green300: string;
|
|
1638
|
+
green400: string;
|
|
1639
|
+
green500: string;
|
|
1640
|
+
green600: string;
|
|
1641
|
+
green700: string;
|
|
1642
|
+
green800: string;
|
|
1643
|
+
green900: string;
|
|
1644
|
+
green950: string;
|
|
1645
|
+
grey50: string;
|
|
1646
|
+
grey100: string;
|
|
1647
|
+
grey200: string;
|
|
1648
|
+
grey300: string;
|
|
1649
|
+
grey400: string;
|
|
1650
|
+
grey500: string;
|
|
1651
|
+
grey600: string;
|
|
1652
|
+
grey700: string;
|
|
1653
|
+
grey800: string;
|
|
1654
|
+
grey900: string;
|
|
1655
|
+
grey950: string;
|
|
1656
|
+
error50: string;
|
|
1657
|
+
error100: string;
|
|
1658
|
+
error200: string;
|
|
1659
|
+
error300: string;
|
|
1660
|
+
error400: string;
|
|
1661
|
+
error500: string;
|
|
1662
|
+
error600: string;
|
|
1663
|
+
error700: string;
|
|
1664
|
+
error800: string;
|
|
1665
|
+
error900: string;
|
|
1666
|
+
error950: string;
|
|
1667
|
+
success50: string;
|
|
1668
|
+
success100: string;
|
|
1669
|
+
success200: string;
|
|
1670
|
+
success300: string;
|
|
1671
|
+
success400: string;
|
|
1672
|
+
success500: string;
|
|
1673
|
+
success600: string;
|
|
1674
|
+
success700: string;
|
|
1675
|
+
success800: string;
|
|
1676
|
+
success900: string;
|
|
1677
|
+
success950: string;
|
|
1678
|
+
warning50: string;
|
|
1679
|
+
warning100: string;
|
|
1680
|
+
warning200: string;
|
|
1681
|
+
warning300: string;
|
|
1682
|
+
warning400: string;
|
|
1683
|
+
warning500: string;
|
|
1684
|
+
warning600: string;
|
|
1685
|
+
warning700: string;
|
|
1686
|
+
warning800: string;
|
|
1687
|
+
warning900: string;
|
|
1688
|
+
warning950: string;
|
|
1689
|
+
info50: string;
|
|
1690
|
+
info100: string;
|
|
1691
|
+
info200: string;
|
|
1692
|
+
info300: string;
|
|
1693
|
+
info400: string;
|
|
1694
|
+
info500: string;
|
|
1695
|
+
info600: string;
|
|
1696
|
+
info700: string;
|
|
1697
|
+
info800: string;
|
|
1698
|
+
info900: string;
|
|
1699
|
+
info950: string;
|
|
1700
|
+
};
|
|
1701
|
+
fontSizes: {
|
|
1702
|
+
2: string;
|
|
1703
|
+
4: string;
|
|
1704
|
+
6: string;
|
|
1705
|
+
8: string;
|
|
1706
|
+
10: string;
|
|
1707
|
+
12: string;
|
|
1708
|
+
13: string;
|
|
1709
|
+
14: string;
|
|
1710
|
+
16: string;
|
|
1711
|
+
18: string;
|
|
1712
|
+
20: string;
|
|
1713
|
+
22: string;
|
|
1714
|
+
24: string;
|
|
1715
|
+
32: string;
|
|
1716
|
+
36: string;
|
|
1717
|
+
40: string;
|
|
1718
|
+
48: string;
|
|
1719
|
+
56: string;
|
|
1720
|
+
64: string;
|
|
1721
|
+
72: string;
|
|
1722
|
+
80: string;
|
|
1723
|
+
xs: string;
|
|
1724
|
+
sm: string;
|
|
1725
|
+
md: string;
|
|
1726
|
+
lg: string;
|
|
1727
|
+
'2xl': string;
|
|
1728
|
+
'3xl': string;
|
|
1729
|
+
'4xl': string;
|
|
1730
|
+
full: string;
|
|
1731
|
+
};
|
|
1732
|
+
fonts: {
|
|
1733
|
+
default: string;
|
|
1734
|
+
};
|
|
1735
|
+
fontWeights: {
|
|
1736
|
+
regular: string;
|
|
1737
|
+
medium: string;
|
|
1738
|
+
semibold: string;
|
|
1739
|
+
bold: string;
|
|
1740
|
+
};
|
|
1741
|
+
lineHeights: {
|
|
1742
|
+
smaller: string;
|
|
1743
|
+
shorter: string;
|
|
1744
|
+
short: string;
|
|
1745
|
+
base: string;
|
|
1746
|
+
tall: string;
|
|
1747
|
+
};
|
|
1748
|
+
radii: {
|
|
1749
|
+
'3xs': string;
|
|
1750
|
+
'2xs': string;
|
|
1751
|
+
xs: string;
|
|
1752
|
+
sm: string;
|
|
1753
|
+
md: string;
|
|
1754
|
+
lg: string;
|
|
1755
|
+
xl: string;
|
|
1756
|
+
'2xl': string;
|
|
1757
|
+
'3xl': string;
|
|
1758
|
+
'4xl': string;
|
|
1759
|
+
'5xl': string;
|
|
1760
|
+
'6xl': string;
|
|
1761
|
+
'7xl': string;
|
|
1762
|
+
'8xl': string;
|
|
1763
|
+
'9xl': string;
|
|
1764
|
+
'10xl': string;
|
|
1765
|
+
'11xl': string;
|
|
1766
|
+
'12xl': string;
|
|
1767
|
+
'13xl': string;
|
|
1768
|
+
'14xl': string;
|
|
1769
|
+
full: string;
|
|
1770
|
+
};
|
|
1771
|
+
space: {
|
|
1772
|
+
2: string;
|
|
1773
|
+
4: string;
|
|
1774
|
+
6: string;
|
|
1775
|
+
8: string;
|
|
1776
|
+
10: string;
|
|
1777
|
+
12: string;
|
|
1778
|
+
13: string;
|
|
1779
|
+
14: string;
|
|
1780
|
+
16: string;
|
|
1781
|
+
18: string;
|
|
1782
|
+
20: string;
|
|
1783
|
+
22: string;
|
|
1784
|
+
24: string;
|
|
1785
|
+
32: string;
|
|
1786
|
+
36: string;
|
|
1787
|
+
40: string;
|
|
1788
|
+
48: string;
|
|
1789
|
+
56: string;
|
|
1790
|
+
64: string;
|
|
1791
|
+
72: string;
|
|
1792
|
+
80: string;
|
|
1793
|
+
full: string;
|
|
1794
|
+
};
|
|
1795
|
+
}, {
|
|
1796
|
+
height: "space";
|
|
1797
|
+
width: "space";
|
|
1798
|
+
gap: "space";
|
|
1799
|
+
gridGap: "space";
|
|
1800
|
+
columnGap: "space";
|
|
1801
|
+
gridColumnGap: "space";
|
|
1802
|
+
rowGap: "space";
|
|
1803
|
+
gridRowGap: "space";
|
|
1804
|
+
inset: "space";
|
|
1805
|
+
insetBlock: "space";
|
|
1806
|
+
insetBlockEnd: "space";
|
|
1807
|
+
insetBlockStart: "space";
|
|
1808
|
+
insetInline: "space";
|
|
1809
|
+
insetInlineEnd: "space";
|
|
1810
|
+
insetInlineStart: "space";
|
|
1811
|
+
margin: "space";
|
|
1812
|
+
marginTop: "space";
|
|
1813
|
+
marginRight: "space";
|
|
1814
|
+
marginBottom: "space";
|
|
1815
|
+
marginLeft: "space";
|
|
1816
|
+
marginBlock: "space";
|
|
1817
|
+
marginBlockEnd: "space";
|
|
1818
|
+
marginBlockStart: "space";
|
|
1819
|
+
marginInline: "space";
|
|
1820
|
+
marginInlineEnd: "space";
|
|
1821
|
+
marginInlineStart: "space";
|
|
1822
|
+
padding: "space";
|
|
1823
|
+
paddingTop: "space";
|
|
1824
|
+
paddingRight: "space";
|
|
1825
|
+
paddingBottom: "space";
|
|
1826
|
+
paddingLeft: "space";
|
|
1827
|
+
paddingBlock: "space";
|
|
1828
|
+
paddingBlockEnd: "space";
|
|
1829
|
+
paddingBlockStart: "space";
|
|
1830
|
+
paddingInline: "space";
|
|
1831
|
+
paddingInlineEnd: "space";
|
|
1832
|
+
paddingInlineStart: "space";
|
|
1833
|
+
scrollMargin: "space";
|
|
1834
|
+
scrollMarginTop: "space";
|
|
1835
|
+
scrollMarginRight: "space";
|
|
1836
|
+
scrollMarginBottom: "space";
|
|
1837
|
+
scrollMarginLeft: "space";
|
|
1838
|
+
scrollMarginBlock: "space";
|
|
1839
|
+
scrollMarginBlockEnd: "space";
|
|
1840
|
+
scrollMarginBlockStart: "space";
|
|
1841
|
+
scrollMarginInline: "space";
|
|
1842
|
+
scrollMarginInlineEnd: "space";
|
|
1843
|
+
scrollMarginInlineStart: "space";
|
|
1844
|
+
scrollPadding: "space";
|
|
1845
|
+
scrollPaddingTop: "space";
|
|
1846
|
+
scrollPaddingRight: "space";
|
|
1847
|
+
scrollPaddingBottom: "space";
|
|
1848
|
+
scrollPaddingLeft: "space";
|
|
1849
|
+
scrollPaddingBlock: "space";
|
|
1850
|
+
scrollPaddingBlockEnd: "space";
|
|
1851
|
+
scrollPaddingBlockStart: "space";
|
|
1852
|
+
scrollPaddingInline: "space";
|
|
1853
|
+
scrollPaddingInlineEnd: "space";
|
|
1854
|
+
scrollPaddingInlineStart: "space";
|
|
1855
|
+
top: "space";
|
|
1856
|
+
right: "space";
|
|
1857
|
+
bottom: "space";
|
|
1858
|
+
left: "space";
|
|
1859
|
+
fontSize: "fontSizes";
|
|
1860
|
+
background: "colors";
|
|
1861
|
+
backgroundColor: "colors";
|
|
1862
|
+
backgroundImage: "colors";
|
|
1863
|
+
borderImage: "colors";
|
|
1864
|
+
border: "colors";
|
|
1865
|
+
borderBlock: "colors";
|
|
1866
|
+
borderBlockEnd: "colors";
|
|
1867
|
+
borderBlockStart: "colors";
|
|
1868
|
+
borderBottom: "colors";
|
|
1869
|
+
borderBottomColor: "colors";
|
|
1870
|
+
borderColor: "colors";
|
|
1871
|
+
borderInline: "colors";
|
|
1872
|
+
borderInlineEnd: "colors";
|
|
1873
|
+
borderInlineStart: "colors";
|
|
1874
|
+
borderLeft: "colors";
|
|
1875
|
+
borderLeftColor: "colors";
|
|
1876
|
+
borderRight: "colors";
|
|
1877
|
+
borderRightColor: "colors";
|
|
1878
|
+
borderTop: "colors";
|
|
1879
|
+
borderTopColor: "colors";
|
|
1880
|
+
caretColor: "colors";
|
|
1881
|
+
color: "colors";
|
|
1882
|
+
columnRuleColor: "colors";
|
|
1883
|
+
outline: "colors";
|
|
1884
|
+
outlineColor: "colors";
|
|
1885
|
+
fill: "colors";
|
|
1886
|
+
stroke: "colors";
|
|
1887
|
+
textDecorationColor: "colors";
|
|
1888
|
+
fontFamily: "fonts";
|
|
1889
|
+
fontWeight: "fontWeights";
|
|
1890
|
+
lineHeight: "lineHeights";
|
|
1891
|
+
letterSpacing: "letterSpacings";
|
|
1892
|
+
blockSize: "sizes";
|
|
1893
|
+
minBlockSize: "sizes";
|
|
1894
|
+
maxBlockSize: "sizes";
|
|
1895
|
+
inlineSize: "sizes";
|
|
1896
|
+
minInlineSize: "sizes";
|
|
1897
|
+
maxInlineSize: "sizes";
|
|
1898
|
+
minWidth: "sizes";
|
|
1899
|
+
maxWidth: "sizes";
|
|
1900
|
+
minHeight: "sizes";
|
|
1901
|
+
maxHeight: "sizes";
|
|
1902
|
+
flexBasis: "sizes";
|
|
1903
|
+
gridTemplateColumns: "sizes";
|
|
1904
|
+
gridTemplateRows: "sizes";
|
|
1905
|
+
borderWidth: "borderWidths";
|
|
1906
|
+
borderTopWidth: "borderWidths";
|
|
1907
|
+
borderLeftWidth: "borderWidths";
|
|
1908
|
+
borderRightWidth: "borderWidths";
|
|
1909
|
+
borderBottomWidth: "borderWidths";
|
|
1910
|
+
borderStyle: "borderStyles";
|
|
1911
|
+
borderTopStyle: "borderStyles";
|
|
1912
|
+
borderLeftStyle: "borderStyles";
|
|
1913
|
+
borderRightStyle: "borderStyles";
|
|
1914
|
+
borderBottomStyle: "borderStyles";
|
|
1915
|
+
borderRadius: "radii";
|
|
1916
|
+
borderTopLeftRadius: "radii";
|
|
1917
|
+
borderTopRightRadius: "radii";
|
|
1918
|
+
borderBottomRightRadius: "radii";
|
|
1919
|
+
borderBottomLeftRadius: "radii";
|
|
1920
|
+
boxShadow: "shadows";
|
|
1921
|
+
textShadow: "shadows";
|
|
1922
|
+
transition: "transitions";
|
|
1923
|
+
zIndex: "zIndices";
|
|
1924
|
+
}, {}>>;
|
|
1925
|
+
type AvatarProps = ComponentProps<typeof AvatarStyled> & {
|
|
1926
|
+
as?: ElementType;
|
|
1927
|
+
fallback?: string;
|
|
1928
|
+
src?: string;
|
|
1929
|
+
};
|
|
1930
|
+
declare function Avatar({ asChild, ...props }: AvatarProps): react_jsx_runtime.JSX.Element;
|
|
1931
|
+
|
|
1932
|
+
declare const TextFieldStyled: _stitches_react_types_styled_component.StyledComponent<react__default.ForwardRefExoticComponent<TextField$1.RootProps & react__default.RefAttributes<HTMLInputElement>>, {
|
|
1933
|
+
color?: "default" | "error" | undefined;
|
|
1934
|
+
typography?: "tooltip" | "displayLarge" | "displayMedium" | "displaySmall" | "headline1" | "headline2" | "headline3" | "headline4" | "headline5" | "headline6" | "headline7" | "headline8" | "bodyXL" | "bodyL" | "bodyM" | "bodyS" | "bodyXS" | "bodyXXS" | "badgeLarge" | "badgeMedium" | "badgeSmall" | "badgeExtraSmall" | "popoversRegular" | "captionLarge" | "captionMedium" | "captionSmall" | "buttonLarge" | "buttonMedium" | "buttonSmall" | "buttonExtraSmall" | "labelLarge" | "labelMedium" | "labelSmall" | "labelExtraSmall" | undefined;
|
|
1935
|
+
fontWeight?: "bold" | "medium" | "regular" | "semibold" | undefined;
|
|
1936
|
+
textAlign?: "left" | "right" | "center" | undefined;
|
|
1937
|
+
isValid?: boolean | "false" | "true" | undefined;
|
|
1938
|
+
}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
1939
|
+
colors: {
|
|
1940
|
+
brand50: string;
|
|
1941
|
+
brand100: string;
|
|
1942
|
+
brand200: string;
|
|
1943
|
+
brand300: string;
|
|
1944
|
+
brand400: string;
|
|
1945
|
+
brand500: string;
|
|
1946
|
+
brand600: string;
|
|
1947
|
+
brand700: string;
|
|
1948
|
+
brand800: string;
|
|
1949
|
+
brand900: string;
|
|
1950
|
+
brand950: string;
|
|
1951
|
+
blue50: string;
|
|
1952
|
+
blue100: string;
|
|
1953
|
+
blue200: string;
|
|
1954
|
+
blue300: string;
|
|
1955
|
+
blue400: string;
|
|
1956
|
+
blue500: string;
|
|
1957
|
+
blue600: string;
|
|
1958
|
+
blue700: string;
|
|
1959
|
+
blue800: string;
|
|
1960
|
+
blue900: string;
|
|
1961
|
+
blue950: string;
|
|
1962
|
+
red50: string;
|
|
1963
|
+
red100: string;
|
|
1964
|
+
red200: string;
|
|
1965
|
+
red300: string;
|
|
1966
|
+
red400: string;
|
|
1967
|
+
red500: string;
|
|
1968
|
+
red600: string;
|
|
1969
|
+
red700: string;
|
|
1970
|
+
red800: string;
|
|
1971
|
+
red900: string;
|
|
1972
|
+
red950: string;
|
|
1973
|
+
purple50: string;
|
|
1974
|
+
purple100: string;
|
|
1975
|
+
purple200: string;
|
|
1976
|
+
purple300: string;
|
|
1977
|
+
purple400: string;
|
|
1978
|
+
purple500: string;
|
|
1979
|
+
purple600: string;
|
|
1980
|
+
purple700: string;
|
|
1981
|
+
purple800: string;
|
|
1982
|
+
purple900: string;
|
|
1983
|
+
purple950: string;
|
|
1984
|
+
yellow50: string;
|
|
1985
|
+
yellow100: string;
|
|
1986
|
+
yellow200: string;
|
|
1987
|
+
yellow300: string;
|
|
1988
|
+
yellow400: string;
|
|
1989
|
+
yellow500: string;
|
|
1990
|
+
yellow600: string;
|
|
1991
|
+
yellow700: string;
|
|
1992
|
+
yellow800: string;
|
|
1993
|
+
yellow900: string;
|
|
1994
|
+
yellow950: string;
|
|
1995
|
+
dark50: string;
|
|
1996
|
+
dark100: string;
|
|
1997
|
+
dark200: string;
|
|
1998
|
+
dark300: string;
|
|
1999
|
+
dark400: string;
|
|
2000
|
+
dark500: string;
|
|
2001
|
+
dark600: string;
|
|
2002
|
+
dark700: string;
|
|
2003
|
+
dark800: string;
|
|
2004
|
+
dark900: string;
|
|
2005
|
+
dark950: string;
|
|
2006
|
+
neutral50: string;
|
|
2007
|
+
neutral100: string;
|
|
2008
|
+
neutral200: string;
|
|
2009
|
+
neutral300: string;
|
|
2010
|
+
neutral400: string;
|
|
2011
|
+
neutral500: string;
|
|
2012
|
+
neutral600: string;
|
|
2013
|
+
neutral700: string;
|
|
2014
|
+
neutral800: string;
|
|
2015
|
+
neutral900: string;
|
|
2016
|
+
neutral950: string;
|
|
2017
|
+
green50: string;
|
|
2018
|
+
green100: string;
|
|
2019
|
+
green200: string;
|
|
2020
|
+
green300: string;
|
|
2021
|
+
green400: string;
|
|
2022
|
+
green500: string;
|
|
2023
|
+
green600: string;
|
|
2024
|
+
green700: string;
|
|
2025
|
+
green800: string;
|
|
2026
|
+
green900: string;
|
|
2027
|
+
green950: string;
|
|
2028
|
+
grey50: string;
|
|
2029
|
+
grey100: string;
|
|
2030
|
+
grey200: string;
|
|
2031
|
+
grey300: string;
|
|
2032
|
+
grey400: string;
|
|
2033
|
+
grey500: string;
|
|
2034
|
+
grey600: string;
|
|
2035
|
+
grey700: string;
|
|
2036
|
+
grey800: string;
|
|
2037
|
+
grey900: string;
|
|
2038
|
+
grey950: string;
|
|
2039
|
+
error50: string;
|
|
2040
|
+
error100: string;
|
|
2041
|
+
error200: string;
|
|
2042
|
+
error300: string;
|
|
2043
|
+
error400: string;
|
|
2044
|
+
error500: string;
|
|
2045
|
+
error600: string;
|
|
2046
|
+
error700: string;
|
|
2047
|
+
error800: string;
|
|
2048
|
+
error900: string;
|
|
2049
|
+
error950: string;
|
|
2050
|
+
success50: string;
|
|
2051
|
+
success100: string;
|
|
2052
|
+
success200: string;
|
|
2053
|
+
success300: string;
|
|
2054
|
+
success400: string;
|
|
2055
|
+
success500: string;
|
|
2056
|
+
success600: string;
|
|
2057
|
+
success700: string;
|
|
2058
|
+
success800: string;
|
|
2059
|
+
success900: string;
|
|
2060
|
+
success950: string;
|
|
2061
|
+
warning50: string;
|
|
2062
|
+
warning100: string;
|
|
2063
|
+
warning200: string;
|
|
2064
|
+
warning300: string;
|
|
2065
|
+
warning400: string;
|
|
2066
|
+
warning500: string;
|
|
2067
|
+
warning600: string;
|
|
2068
|
+
warning700: string;
|
|
2069
|
+
warning800: string;
|
|
2070
|
+
warning900: string;
|
|
2071
|
+
warning950: string;
|
|
2072
|
+
info50: string;
|
|
2073
|
+
info100: string;
|
|
2074
|
+
info200: string;
|
|
2075
|
+
info300: string;
|
|
2076
|
+
info400: string;
|
|
2077
|
+
info500: string;
|
|
2078
|
+
info600: string;
|
|
2079
|
+
info700: string;
|
|
2080
|
+
info800: string;
|
|
2081
|
+
info900: string;
|
|
2082
|
+
info950: string;
|
|
2083
|
+
};
|
|
2084
|
+
fontSizes: {
|
|
2085
|
+
2: string;
|
|
2086
|
+
4: string;
|
|
2087
|
+
6: string;
|
|
2088
|
+
8: string;
|
|
2089
|
+
10: string;
|
|
2090
|
+
12: string;
|
|
2091
|
+
13: string;
|
|
2092
|
+
14: string;
|
|
2093
|
+
16: string;
|
|
2094
|
+
18: string;
|
|
2095
|
+
20: string;
|
|
2096
|
+
22: string;
|
|
2097
|
+
24: string;
|
|
2098
|
+
32: string;
|
|
2099
|
+
36: string;
|
|
2100
|
+
40: string;
|
|
2101
|
+
48: string;
|
|
2102
|
+
56: string;
|
|
2103
|
+
64: string;
|
|
2104
|
+
72: string;
|
|
2105
|
+
80: string;
|
|
2106
|
+
xs: string;
|
|
2107
|
+
sm: string;
|
|
2108
|
+
md: string;
|
|
2109
|
+
lg: string;
|
|
2110
|
+
'2xl': string;
|
|
2111
|
+
'3xl': string;
|
|
2112
|
+
'4xl': string;
|
|
2113
|
+
full: string;
|
|
2114
|
+
};
|
|
2115
|
+
fonts: {
|
|
2116
|
+
default: string;
|
|
2117
|
+
};
|
|
2118
|
+
fontWeights: {
|
|
2119
|
+
regular: string;
|
|
2120
|
+
medium: string;
|
|
2121
|
+
semibold: string;
|
|
2122
|
+
bold: string;
|
|
2123
|
+
};
|
|
2124
|
+
lineHeights: {
|
|
2125
|
+
smaller: string;
|
|
2126
|
+
shorter: string;
|
|
2127
|
+
short: string;
|
|
2128
|
+
base: string;
|
|
2129
|
+
tall: string;
|
|
2130
|
+
};
|
|
2131
|
+
radii: {
|
|
2132
|
+
'3xs': string;
|
|
2133
|
+
'2xs': string;
|
|
2134
|
+
xs: string;
|
|
2135
|
+
sm: string;
|
|
2136
|
+
md: string;
|
|
2137
|
+
lg: string;
|
|
2138
|
+
xl: string;
|
|
2139
|
+
'2xl': string;
|
|
2140
|
+
'3xl': string;
|
|
2141
|
+
'4xl': string;
|
|
2142
|
+
'5xl': string;
|
|
2143
|
+
'6xl': string;
|
|
2144
|
+
'7xl': string;
|
|
2145
|
+
'8xl': string;
|
|
2146
|
+
'9xl': string;
|
|
2147
|
+
'10xl': string;
|
|
2148
|
+
'11xl': string;
|
|
2149
|
+
'12xl': string;
|
|
2150
|
+
'13xl': string;
|
|
2151
|
+
'14xl': string;
|
|
2152
|
+
full: string;
|
|
2153
|
+
};
|
|
2154
|
+
space: {
|
|
2155
|
+
2: string;
|
|
2156
|
+
4: string;
|
|
2157
|
+
6: string;
|
|
2158
|
+
8: string;
|
|
2159
|
+
10: string;
|
|
2160
|
+
12: string;
|
|
2161
|
+
13: string;
|
|
2162
|
+
14: string;
|
|
2163
|
+
16: string;
|
|
2164
|
+
18: string;
|
|
2165
|
+
20: string;
|
|
2166
|
+
22: string;
|
|
2167
|
+
24: string;
|
|
2168
|
+
32: string;
|
|
2169
|
+
36: string;
|
|
2170
|
+
40: string;
|
|
2171
|
+
48: string;
|
|
2172
|
+
56: string;
|
|
2173
|
+
64: string;
|
|
2174
|
+
72: string;
|
|
2175
|
+
80: string;
|
|
2176
|
+
full: string;
|
|
2177
|
+
};
|
|
2178
|
+
}, {
|
|
2179
|
+
height: "space";
|
|
2180
|
+
width: "space";
|
|
2181
|
+
gap: "space";
|
|
2182
|
+
gridGap: "space";
|
|
2183
|
+
columnGap: "space";
|
|
2184
|
+
gridColumnGap: "space";
|
|
2185
|
+
rowGap: "space";
|
|
2186
|
+
gridRowGap: "space";
|
|
2187
|
+
inset: "space";
|
|
2188
|
+
insetBlock: "space";
|
|
2189
|
+
insetBlockEnd: "space";
|
|
2190
|
+
insetBlockStart: "space";
|
|
2191
|
+
insetInline: "space";
|
|
2192
|
+
insetInlineEnd: "space";
|
|
2193
|
+
insetInlineStart: "space";
|
|
2194
|
+
margin: "space";
|
|
2195
|
+
marginTop: "space";
|
|
2196
|
+
marginRight: "space";
|
|
2197
|
+
marginBottom: "space";
|
|
2198
|
+
marginLeft: "space";
|
|
2199
|
+
marginBlock: "space";
|
|
2200
|
+
marginBlockEnd: "space";
|
|
2201
|
+
marginBlockStart: "space";
|
|
2202
|
+
marginInline: "space";
|
|
2203
|
+
marginInlineEnd: "space";
|
|
2204
|
+
marginInlineStart: "space";
|
|
2205
|
+
padding: "space";
|
|
2206
|
+
paddingTop: "space";
|
|
2207
|
+
paddingRight: "space";
|
|
2208
|
+
paddingBottom: "space";
|
|
2209
|
+
paddingLeft: "space";
|
|
2210
|
+
paddingBlock: "space";
|
|
2211
|
+
paddingBlockEnd: "space";
|
|
2212
|
+
paddingBlockStart: "space";
|
|
2213
|
+
paddingInline: "space";
|
|
2214
|
+
paddingInlineEnd: "space";
|
|
2215
|
+
paddingInlineStart: "space";
|
|
2216
|
+
scrollMargin: "space";
|
|
2217
|
+
scrollMarginTop: "space";
|
|
2218
|
+
scrollMarginRight: "space";
|
|
2219
|
+
scrollMarginBottom: "space";
|
|
2220
|
+
scrollMarginLeft: "space";
|
|
2221
|
+
scrollMarginBlock: "space";
|
|
2222
|
+
scrollMarginBlockEnd: "space";
|
|
2223
|
+
scrollMarginBlockStart: "space";
|
|
2224
|
+
scrollMarginInline: "space";
|
|
2225
|
+
scrollMarginInlineEnd: "space";
|
|
2226
|
+
scrollMarginInlineStart: "space";
|
|
2227
|
+
scrollPadding: "space";
|
|
2228
|
+
scrollPaddingTop: "space";
|
|
2229
|
+
scrollPaddingRight: "space";
|
|
2230
|
+
scrollPaddingBottom: "space";
|
|
2231
|
+
scrollPaddingLeft: "space";
|
|
2232
|
+
scrollPaddingBlock: "space";
|
|
2233
|
+
scrollPaddingBlockEnd: "space";
|
|
2234
|
+
scrollPaddingBlockStart: "space";
|
|
2235
|
+
scrollPaddingInline: "space";
|
|
2236
|
+
scrollPaddingInlineEnd: "space";
|
|
2237
|
+
scrollPaddingInlineStart: "space";
|
|
2238
|
+
top: "space";
|
|
2239
|
+
right: "space";
|
|
2240
|
+
bottom: "space";
|
|
2241
|
+
left: "space";
|
|
2242
|
+
fontSize: "fontSizes";
|
|
2243
|
+
background: "colors";
|
|
2244
|
+
backgroundColor: "colors";
|
|
2245
|
+
backgroundImage: "colors";
|
|
2246
|
+
borderImage: "colors";
|
|
2247
|
+
border: "colors";
|
|
2248
|
+
borderBlock: "colors";
|
|
2249
|
+
borderBlockEnd: "colors";
|
|
2250
|
+
borderBlockStart: "colors";
|
|
2251
|
+
borderBottom: "colors";
|
|
2252
|
+
borderBottomColor: "colors";
|
|
2253
|
+
borderColor: "colors";
|
|
2254
|
+
borderInline: "colors";
|
|
2255
|
+
borderInlineEnd: "colors";
|
|
2256
|
+
borderInlineStart: "colors";
|
|
2257
|
+
borderLeft: "colors";
|
|
2258
|
+
borderLeftColor: "colors";
|
|
2259
|
+
borderRight: "colors";
|
|
2260
|
+
borderRightColor: "colors";
|
|
2261
|
+
borderTop: "colors";
|
|
2262
|
+
borderTopColor: "colors";
|
|
2263
|
+
caretColor: "colors";
|
|
2264
|
+
color: "colors";
|
|
2265
|
+
columnRuleColor: "colors";
|
|
2266
|
+
outline: "colors";
|
|
2267
|
+
outlineColor: "colors";
|
|
2268
|
+
fill: "colors";
|
|
2269
|
+
stroke: "colors";
|
|
2270
|
+
textDecorationColor: "colors";
|
|
2271
|
+
fontFamily: "fonts";
|
|
2272
|
+
fontWeight: "fontWeights";
|
|
2273
|
+
lineHeight: "lineHeights";
|
|
2274
|
+
letterSpacing: "letterSpacings";
|
|
2275
|
+
blockSize: "sizes";
|
|
2276
|
+
minBlockSize: "sizes";
|
|
2277
|
+
maxBlockSize: "sizes";
|
|
2278
|
+
inlineSize: "sizes";
|
|
2279
|
+
minInlineSize: "sizes";
|
|
2280
|
+
maxInlineSize: "sizes";
|
|
2281
|
+
minWidth: "sizes";
|
|
2282
|
+
maxWidth: "sizes";
|
|
2283
|
+
minHeight: "sizes";
|
|
2284
|
+
maxHeight: "sizes";
|
|
2285
|
+
flexBasis: "sizes";
|
|
2286
|
+
gridTemplateColumns: "sizes";
|
|
2287
|
+
gridTemplateRows: "sizes";
|
|
2288
|
+
borderWidth: "borderWidths";
|
|
2289
|
+
borderTopWidth: "borderWidths";
|
|
2290
|
+
borderLeftWidth: "borderWidths";
|
|
2291
|
+
borderRightWidth: "borderWidths";
|
|
2292
|
+
borderBottomWidth: "borderWidths";
|
|
2293
|
+
borderStyle: "borderStyles";
|
|
2294
|
+
borderTopStyle: "borderStyles";
|
|
2295
|
+
borderLeftStyle: "borderStyles";
|
|
2296
|
+
borderRightStyle: "borderStyles";
|
|
2297
|
+
borderBottomStyle: "borderStyles";
|
|
2298
|
+
borderRadius: "radii";
|
|
2299
|
+
borderTopLeftRadius: "radii";
|
|
2300
|
+
borderTopRightRadius: "radii";
|
|
2301
|
+
borderBottomRightRadius: "radii";
|
|
2302
|
+
borderBottomLeftRadius: "radii";
|
|
2303
|
+
boxShadow: "shadows";
|
|
2304
|
+
textShadow: "shadows";
|
|
2305
|
+
transition: "transitions";
|
|
2306
|
+
zIndex: "zIndices";
|
|
2307
|
+
}, {}>>;
|
|
2308
|
+
declare const TextFieldSlotStyled: _stitches_react_types_styled_component.StyledComponent<react__default.ForwardRefExoticComponent<TextField$1.SlotProps & react__default.RefAttributes<HTMLDivElement>>, {
|
|
2309
|
+
typography?: "tooltip" | "displayLarge" | "displayMedium" | "displaySmall" | "headline1" | "headline2" | "headline3" | "headline4" | "headline5" | "headline6" | "headline7" | "headline8" | "bodyXL" | "bodyL" | "bodyM" | "bodyS" | "bodyXS" | "bodyXXS" | "badgeLarge" | "badgeMedium" | "badgeSmall" | "badgeExtraSmall" | "popoversRegular" | "captionLarge" | "captionMedium" | "captionSmall" | "buttonLarge" | "buttonMedium" | "buttonSmall" | "buttonExtraSmall" | "labelLarge" | "labelMedium" | "labelSmall" | "labelExtraSmall" | undefined;
|
|
2310
|
+
fontWeight?: "bold" | "medium" | "regular" | "semibold" | undefined;
|
|
2311
|
+
textAlign?: "left" | "right" | "center" | undefined;
|
|
1553
2312
|
}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
1554
2313
|
colors: {
|
|
1555
2314
|
brand50: string;
|
|
@@ -1920,19 +2679,37 @@ declare const AvatarStyled: _stitches_react_types_styled_component.StyledCompone
|
|
|
1920
2679
|
transition: "transitions";
|
|
1921
2680
|
zIndex: "zIndices";
|
|
1922
2681
|
}, {}>>;
|
|
1923
|
-
type
|
|
1924
|
-
|
|
1925
|
-
|
|
1926
|
-
|
|
2682
|
+
type TextFieldProps = ComponentProps<typeof TextFieldStyled> & {
|
|
2683
|
+
addon?: ReactNode;
|
|
2684
|
+
placeholder?: string;
|
|
2685
|
+
children?: react__default.ReactNode;
|
|
2686
|
+
isValid?: boolean;
|
|
2687
|
+
name?: string;
|
|
2688
|
+
typography?: string;
|
|
2689
|
+
fontWeight?: "regular" | "medium" | "semibold" | "bold";
|
|
2690
|
+
textAlign?: "left" | "right" | "center";
|
|
2691
|
+
mask?: MaskOptions;
|
|
1927
2692
|
};
|
|
1928
|
-
|
|
2693
|
+
type TextFieldSlotProps = Omit<ComponentProps<typeof TextFieldStyled>, "color"> & {
|
|
2694
|
+
placeholder?: string;
|
|
2695
|
+
children?: react__default.ReactNode;
|
|
2696
|
+
position?: "flex-start" | "flex-end";
|
|
2697
|
+
onClick?: () => void;
|
|
2698
|
+
color?: "error" | "success" | undefined;
|
|
2699
|
+
typography?: string;
|
|
2700
|
+
fontWeight?: "regular" | "medium" | "semibold" | "bold";
|
|
2701
|
+
textAlign?: "left" | "right" | "center";
|
|
2702
|
+
};
|
|
2703
|
+
declare const maskFormat: typeof format;
|
|
2704
|
+
declare const maskUnformat: typeof unformat;
|
|
2705
|
+
declare const TextField: react__default.ForwardRefExoticComponent<Omit<TextFieldProps, "ref"> & react__default.RefAttributes<HTMLInputElement>>;
|
|
2706
|
+
declare function TextFieldSlot({ children, position, onClick, typography, fontWeight, textAlign, ...props }: TextFieldSlotProps): react_jsx_runtime.JSX.Element;
|
|
1929
2707
|
|
|
1930
|
-
declare const
|
|
1931
|
-
color?: "
|
|
1932
|
-
|
|
2708
|
+
declare const RadioGroupStyled: _stitches_react_types_styled_component.StyledComponent<react.ForwardRefExoticComponent<RadioGroup$1.RootProps & react.RefAttributes<HTMLDivElement>>, {
|
|
2709
|
+
color?: "blue" | "error" | "success" | undefined;
|
|
2710
|
+
disabled?: boolean | "false" | "true" | undefined;
|
|
2711
|
+
typography?: "labelLarge" | "labelMedium" | "labelSmall" | "labelExtraSmall" | undefined;
|
|
1933
2712
|
fontWeight?: "bold" | "medium" | "regular" | "semibold" | undefined;
|
|
1934
|
-
textAlign?: "left" | "right" | "center" | undefined;
|
|
1935
|
-
isValid?: boolean | "false" | "true" | undefined;
|
|
1936
2713
|
}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
1937
2714
|
colors: {
|
|
1938
2715
|
brand50: string;
|
|
@@ -2303,10 +3080,26 @@ declare const TextFieldStyled: _stitches_react_types_styled_component.StyledComp
|
|
|
2303
3080
|
transition: "transitions";
|
|
2304
3081
|
zIndex: "zIndices";
|
|
2305
3082
|
}, {}>>;
|
|
2306
|
-
|
|
2307
|
-
|
|
3083
|
+
type RadioGroupProps = ComponentProps<typeof RadioGroupStyled> & {
|
|
3084
|
+
placeholder?: string;
|
|
3085
|
+
children?: React.ReactNode;
|
|
3086
|
+
color?: string;
|
|
3087
|
+
disabled?: boolean;
|
|
3088
|
+
typography?: string;
|
|
3089
|
+
fontWeight?: 'regular' | 'medium' | 'semibold' | 'bold';
|
|
3090
|
+
};
|
|
3091
|
+
type RadioItemProps = {
|
|
3092
|
+
children?: React.ReactNode;
|
|
3093
|
+
value: string;
|
|
3094
|
+
};
|
|
3095
|
+
declare function RadioGroup({ children, disabled, ...props }: RadioGroupProps): react_jsx_runtime.JSX.Element;
|
|
3096
|
+
declare function RadioItem({ children, ...props }: RadioItemProps): react_jsx_runtime.JSX.Element;
|
|
3097
|
+
|
|
3098
|
+
declare const CheckboxGroupStyled: _stitches_react_types_styled_component.StyledComponent<react.ForwardRefExoticComponent<CheckboxGroup$1.RootProps & react.RefAttributes<HTMLDivElement>>, {
|
|
3099
|
+
color?: "blue" | "error" | "success" | undefined;
|
|
3100
|
+
disabled?: boolean | "false" | "true" | undefined;
|
|
3101
|
+
typography?: "labelLarge" | "labelMedium" | "labelSmall" | "labelExtraSmall" | undefined;
|
|
2308
3102
|
fontWeight?: "bold" | "medium" | "regular" | "semibold" | undefined;
|
|
2309
|
-
textAlign?: "left" | "right" | "center" | undefined;
|
|
2310
3103
|
}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
2311
3104
|
colors: {
|
|
2312
3105
|
brand50: string;
|
|
@@ -2677,35 +3470,36 @@ declare const TextFieldSlotStyled: _stitches_react_types_styled_component.Styled
|
|
|
2677
3470
|
transition: "transitions";
|
|
2678
3471
|
zIndex: "zIndices";
|
|
2679
3472
|
}, {}>>;
|
|
2680
|
-
type
|
|
2681
|
-
addon?: ReactNode;
|
|
3473
|
+
type CheckboxGroupProps = ComponentProps<typeof CheckboxGroupStyled> & {
|
|
2682
3474
|
placeholder?: string;
|
|
2683
|
-
children?:
|
|
2684
|
-
|
|
2685
|
-
|
|
2686
|
-
typography?: string;
|
|
2687
|
-
fontWeight?: "regular" | "medium" | "semibold" | "bold";
|
|
2688
|
-
textAlign?: "left" | "right" | "center";
|
|
2689
|
-
mask?: MaskOptions;
|
|
3475
|
+
children?: React.ReactNode;
|
|
3476
|
+
color?: string;
|
|
3477
|
+
disabled?: boolean;
|
|
2690
3478
|
};
|
|
2691
|
-
type
|
|
3479
|
+
type CheckboxItemProps = {
|
|
3480
|
+
children?: React.ReactNode;
|
|
3481
|
+
value: string;
|
|
3482
|
+
style?: React.CSSProperties;
|
|
3483
|
+
};
|
|
3484
|
+
declare function CheckboxGroup({ children, ...props }: CheckboxGroupProps): react_jsx_runtime.JSX.Element;
|
|
3485
|
+
declare function CheckboxItem({ children, ...props }: CheckboxItemProps): react_jsx_runtime.JSX.Element;
|
|
3486
|
+
|
|
3487
|
+
type FilterProps = ComponentProps<typeof DropdownMenu$1.Root> & {
|
|
3488
|
+
as?: ElementType;
|
|
2692
3489
|
placeholder?: string;
|
|
2693
|
-
|
|
2694
|
-
|
|
2695
|
-
onClick?: () => void;
|
|
2696
|
-
color?: "error" | "success" | undefined;
|
|
2697
|
-
typography?: string;
|
|
2698
|
-
fontWeight?: "regular" | "medium" | "semibold" | "bold";
|
|
2699
|
-
textAlign?: "left" | "right" | "center";
|
|
3490
|
+
fontWeight: 'regular' | 'medium' | 'semibold' | 'bold';
|
|
3491
|
+
typography: 'labelExtraSmall' | 'labelSmall' | 'labelMedium' | 'labelLarge';
|
|
2700
3492
|
};
|
|
2701
|
-
|
|
2702
|
-
|
|
2703
|
-
|
|
2704
|
-
|
|
3493
|
+
type FilterItemProps = ComponentProps<typeof CheckboxItem> & {
|
|
3494
|
+
as?: ElementType;
|
|
3495
|
+
value: string;
|
|
3496
|
+
typography: FilterProps['typography'];
|
|
3497
|
+
fontWeight: FilterProps['fontWeight'];
|
|
3498
|
+
};
|
|
3499
|
+
declare function Filter({ children, placeholder, typography, fontWeight, ...props }: FilterProps): react_jsx_runtime.JSX.Element;
|
|
3500
|
+
declare function FilterItem({ children, ...props }: FilterItemProps): react_jsx_runtime.JSX.Element;
|
|
2705
3501
|
|
|
2706
|
-
declare const
|
|
2707
|
-
color?: "blue" | "error" | "success" | undefined;
|
|
2708
|
-
disabled?: boolean | "false" | "true" | undefined;
|
|
3502
|
+
declare const DropdownMenuItemStyled: _stitches_react_types_styled_component.StyledComponent<react.ForwardRefExoticComponent<DropdownMenu$1.ItemProps & react.RefAttributes<HTMLDivElement>>, {
|
|
2709
3503
|
typography?: "labelLarge" | "labelMedium" | "labelSmall" | "labelExtraSmall" | undefined;
|
|
2710
3504
|
fontWeight?: "bold" | "medium" | "regular" | "semibold" | undefined;
|
|
2711
3505
|
}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
@@ -3078,26 +3872,27 @@ declare const RadioGroupStyled: _stitches_react_types_styled_component.StyledCom
|
|
|
3078
3872
|
transition: "transitions";
|
|
3079
3873
|
zIndex: "zIndices";
|
|
3080
3874
|
}, {}>>;
|
|
3081
|
-
type
|
|
3875
|
+
type DropdownMenuProps = ComponentProps<typeof DropdownMenu$1.Root> & {
|
|
3876
|
+
as?: ElementType;
|
|
3082
3877
|
placeholder?: string;
|
|
3083
|
-
|
|
3084
|
-
|
|
3085
|
-
|
|
3086
|
-
typography?: string;
|
|
3087
|
-
fontWeight?: 'regular' | 'medium' | 'semibold' | 'bold';
|
|
3878
|
+
fontWeight: 'regular' | 'medium' | 'semibold' | 'bold';
|
|
3879
|
+
typography: 'labelExtraSmall' | 'labelSmall' | 'labelMedium' | 'labelLarge';
|
|
3880
|
+
children: React.ReactNode;
|
|
3088
3881
|
};
|
|
3089
|
-
type
|
|
3090
|
-
|
|
3882
|
+
type DropdownMenuItemProps = ComponentProps<typeof DropdownMenuItemStyled> & {
|
|
3883
|
+
as?: ElementType;
|
|
3091
3884
|
value: string;
|
|
3885
|
+
typography: DropdownMenuProps['typography'];
|
|
3886
|
+
fontWeight: DropdownMenuProps['fontWeight'];
|
|
3092
3887
|
};
|
|
3093
|
-
declare function
|
|
3094
|
-
declare function
|
|
3888
|
+
declare function DropdownMenu({ children, placeholder, typography, fontWeight, ...props }: DropdownMenuProps): react_jsx_runtime.JSX.Element;
|
|
3889
|
+
declare function DropdownMenuItem({ children, typography, fontWeight, ...props }: DropdownMenuItemProps): react_jsx_runtime.JSX.Element;
|
|
3095
3890
|
|
|
3096
|
-
declare const
|
|
3097
|
-
color?: "blue" | "
|
|
3098
|
-
|
|
3099
|
-
typography?: "labelLarge" | "labelMedium" | "labelSmall" | "labelExtraSmall" | undefined;
|
|
3891
|
+
declare const BadgeStyled: _stitches_react_types_styled_component.StyledComponent<react__default.ForwardRefExoticComponent<_radix_ui_themes.BadgeProps & react__default.RefAttributes<HTMLSpanElement>>, {
|
|
3892
|
+
color?: "blue" | "green" | "grey" | "orange" | "pink" | "purple" | "red" | "yellow" | "dark" | "light" | "primary" | "disable" | undefined;
|
|
3893
|
+
size?: "xs" | "sm" | "md" | "xl" | undefined;
|
|
3100
3894
|
fontWeight?: "bold" | "medium" | "regular" | "semibold" | undefined;
|
|
3895
|
+
radii?: "full" | undefined;
|
|
3101
3896
|
}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
3102
3897
|
colors: {
|
|
3103
3898
|
brand50: string;
|
|
@@ -3468,39 +4263,22 @@ declare const CheckboxGroupStyled: _stitches_react_types_styled_component.Styled
|
|
|
3468
4263
|
transition: "transitions";
|
|
3469
4264
|
zIndex: "zIndices";
|
|
3470
4265
|
}, {}>>;
|
|
3471
|
-
type
|
|
3472
|
-
placeholder?: string;
|
|
3473
|
-
children?: React.ReactNode;
|
|
3474
|
-
color?: string;
|
|
3475
|
-
disabled?: boolean;
|
|
3476
|
-
};
|
|
3477
|
-
type CheckboxItemProps = {
|
|
3478
|
-
children?: React.ReactNode;
|
|
3479
|
-
value: string;
|
|
3480
|
-
style?: React.CSSProperties;
|
|
3481
|
-
};
|
|
3482
|
-
declare function CheckboxGroup({ children, ...props }: CheckboxGroupProps): react_jsx_runtime.JSX.Element;
|
|
3483
|
-
declare function CheckboxItem({ children, ...props }: CheckboxItemProps): react_jsx_runtime.JSX.Element;
|
|
3484
|
-
|
|
3485
|
-
type FilterProps = ComponentProps<typeof DropdownMenu$1.Root> & {
|
|
4266
|
+
type BadgeProps = ComponentProps<typeof BadgeStyled> & {
|
|
3486
4267
|
as?: ElementType;
|
|
3487
|
-
|
|
3488
|
-
|
|
3489
|
-
|
|
4268
|
+
icon?: boolean;
|
|
4269
|
+
size: 'md';
|
|
4270
|
+
children: react__default.ReactNode;
|
|
3490
4271
|
};
|
|
3491
|
-
|
|
3492
|
-
|
|
3493
|
-
|
|
3494
|
-
|
|
3495
|
-
|
|
4272
|
+
declare function Badge({ asChild, children, ...props }: BadgeProps): react_jsx_runtime.JSX.Element;
|
|
4273
|
+
|
|
4274
|
+
type ModalProps = ComponentProps<typeof Dialog.Root> & {
|
|
4275
|
+
trigger?: React.ReactNode;
|
|
4276
|
+
title?: string;
|
|
4277
|
+
children: React.ReactNode;
|
|
3496
4278
|
};
|
|
3497
|
-
declare function
|
|
3498
|
-
declare function FilterItem({ children, ...props }: FilterItemProps): react_jsx_runtime.JSX.Element;
|
|
4279
|
+
declare function Modal({ children, title, trigger, ...props }: ModalProps): react_jsx_runtime.JSX.Element;
|
|
3499
4280
|
|
|
3500
|
-
declare const
|
|
3501
|
-
typography?: "labelLarge" | "labelMedium" | "labelSmall" | "labelExtraSmall" | undefined;
|
|
3502
|
-
fontWeight?: "bold" | "medium" | "regular" | "semibold" | undefined;
|
|
3503
|
-
}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
4281
|
+
declare const MenuDropdownContainerStyled: _stitches_react_types_styled_component.StyledComponent<"div", {}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
3504
4282
|
colors: {
|
|
3505
4283
|
brand50: string;
|
|
3506
4284
|
brand100: string;
|
|
@@ -3870,28 +4648,13 @@ declare const DropdownMenuItemStyled: _stitches_react_types_styled_component.Sty
|
|
|
3870
4648
|
transition: "transitions";
|
|
3871
4649
|
zIndex: "zIndices";
|
|
3872
4650
|
}, {}>>;
|
|
3873
|
-
|
|
3874
|
-
|
|
3875
|
-
|
|
3876
|
-
fontWeight: 'regular' | 'medium' | 'semibold' | 'bold';
|
|
3877
|
-
typography: 'labelExtraSmall' | 'labelSmall' | 'labelMedium' | 'labelLarge';
|
|
3878
|
-
children: React.ReactNode;
|
|
3879
|
-
};
|
|
3880
|
-
type DropdownMenuItemProps = ComponentProps<typeof DropdownMenuItemStyled> & {
|
|
3881
|
-
as?: ElementType;
|
|
3882
|
-
value: string;
|
|
3883
|
-
typography: DropdownMenuProps['typography'];
|
|
3884
|
-
fontWeight: DropdownMenuProps['fontWeight'];
|
|
4651
|
+
|
|
4652
|
+
type MenuDropdownProps = ComponentProps<typeof MenuDropdownContainerStyled> & {
|
|
4653
|
+
children: ReactNode;
|
|
3885
4654
|
};
|
|
3886
|
-
declare function
|
|
3887
|
-
declare function DropdownMenuItem({ children, typography, fontWeight, ...props }: DropdownMenuItemProps): react_jsx_runtime.JSX.Element;
|
|
4655
|
+
declare function MenuDropdown({ children }: MenuDropdownProps): react_jsx_runtime.JSX.Element;
|
|
3888
4656
|
|
|
3889
|
-
declare const
|
|
3890
|
-
color?: "blue" | "green" | "grey" | "orange" | "pink" | "purple" | "red" | "yellow" | "dark" | "light" | "primary" | "disable" | undefined;
|
|
3891
|
-
size?: "xs" | "sm" | "md" | "xl" | undefined;
|
|
3892
|
-
fontWeight?: "bold" | "medium" | "regular" | "semibold" | undefined;
|
|
3893
|
-
radii?: "full" | undefined;
|
|
3894
|
-
}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
4657
|
+
declare const CalendarStyled: _stitches_react_types_styled_component.StyledComponent<"div", {}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
3895
4658
|
colors: {
|
|
3896
4659
|
brand50: string;
|
|
3897
4660
|
brand100: string;
|
|
@@ -4261,22 +5024,18 @@ declare const BadgeStyled: _stitches_react_types_styled_component.StyledComponen
|
|
|
4261
5024
|
transition: "transitions";
|
|
4262
5025
|
zIndex: "zIndices";
|
|
4263
5026
|
}, {}>>;
|
|
4264
|
-
type BadgeProps = ComponentProps<typeof BadgeStyled> & {
|
|
4265
|
-
as?: ElementType;
|
|
4266
|
-
icon?: boolean;
|
|
4267
|
-
size: 'md';
|
|
4268
|
-
children: react__default.ReactNode;
|
|
4269
|
-
};
|
|
4270
|
-
declare function Badge({ asChild, children, ...props }: BadgeProps): react_jsx_runtime.JSX.Element;
|
|
4271
5027
|
|
|
4272
|
-
type
|
|
4273
|
-
|
|
4274
|
-
|
|
4275
|
-
|
|
5028
|
+
type CalendarProps = ComponentProps<typeof CalendarStyled> & {
|
|
5029
|
+
calendarLayout?: "label" | "dropdown" | "dropdown-months" | "dropdown-years";
|
|
5030
|
+
selected: Date | undefined;
|
|
5031
|
+
setSelected: react__default.Dispatch<react__default.SetStateAction<Date | undefined>>;
|
|
5032
|
+
position?: "top" | "bottom";
|
|
5033
|
+
action?: boolean;
|
|
5034
|
+
actionText?: string;
|
|
4276
5035
|
};
|
|
4277
|
-
declare function
|
|
5036
|
+
declare function Calendar({ action, actionText, calendarLayout, selected, setSelected, position, ...props }: CalendarProps): react_jsx_runtime.JSX.Element;
|
|
4278
5037
|
|
|
4279
|
-
declare const
|
|
5038
|
+
declare const DrawerOverlayStyled: _stitches_react_types_styled_component.StyledComponent<"div", {}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
4280
5039
|
colors: {
|
|
4281
5040
|
brand50: string;
|
|
4282
5041
|
brand100: string;
|
|
@@ -4647,15 +5406,15 @@ declare const CalendarStyled: _stitches_react_types_styled_component.StyledCompo
|
|
|
4647
5406
|
zIndex: "zIndices";
|
|
4648
5407
|
}, {}>>;
|
|
4649
5408
|
|
|
4650
|
-
type
|
|
4651
|
-
|
|
4652
|
-
|
|
4653
|
-
|
|
4654
|
-
|
|
4655
|
-
|
|
4656
|
-
|
|
5409
|
+
type DrawerProps = ComponentProps<typeof DrawerOverlayStyled> & {
|
|
5410
|
+
isOpen: boolean;
|
|
5411
|
+
onClose: () => void;
|
|
5412
|
+
width?: string;
|
|
5413
|
+
backgroundColor?: keyof Colors;
|
|
5414
|
+
title: string;
|
|
5415
|
+
children?: ReactNode;
|
|
4657
5416
|
};
|
|
4658
|
-
declare function
|
|
5417
|
+
declare function Drawer({ isOpen, onClose, width, backgroundColor, title, children, }: DrawerProps): react_jsx_runtime.JSX.Element | null;
|
|
4659
5418
|
|
|
4660
5419
|
declare const TimePickerStyled: _stitches_react_types_styled_component.StyledComponent<"div", {}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
4661
5420
|
colors: {
|
|
@@ -13354,7 +14113,7 @@ declare function Section({ children, ...props }: SectionProps): react_jsx_runtim
|
|
|
13354
14113
|
type ErrorFormMessageProps = {
|
|
13355
14114
|
message?: string | FieldError | Merge<FieldError, FieldErrorsImpl<any>> | undefined;
|
|
13356
14115
|
};
|
|
13357
|
-
declare const ErrorFormMessage: ({ message }: ErrorFormMessageProps) => react_jsx_runtime.JSX.Element | null
|
|
14116
|
+
declare const ErrorFormMessage: ({ message }: ErrorFormMessageProps) => react_jsx_runtime.JSX.Element | null;
|
|
13358
14117
|
|
|
13359
14118
|
type FormLabelProps = {
|
|
13360
14119
|
name: string;
|
|
@@ -13380,4 +14139,10 @@ type TextFormFieldProps = {
|
|
|
13380
14139
|
};
|
|
13381
14140
|
declare const TextFormField: ({ name, label, required, placeholder, }: TextFormFieldProps) => react_jsx_runtime.JSX.Element;
|
|
13382
14141
|
|
|
13383
|
-
|
|
14142
|
+
type FormProps = UseFormProps & {
|
|
14143
|
+
onSubmit: SubmitHandler<FieldValues>;
|
|
14144
|
+
children: JSX.Element;
|
|
14145
|
+
};
|
|
14146
|
+
declare const Form: ({ onSubmit, children, ...props }: FormProps) => react_jsx_runtime.JSX.Element;
|
|
14147
|
+
|
|
14148
|
+
export { Alert, AlertDialogCompleteStyled, AlertDialogDescriptionStyled, AlertDialogRowStyled, AlertDialogSimpleStyled, AlertDialogSubtitleStyled, AlertDialogTitleStyled, AlertDialoghrStyled, type AlertProps, Avatar, type AvatarProps, AvatarStyled, Badge, type BadgeProps, BadgeStyled, Box, Button, ButtonGroup, type ButtonGroupProps, ButtonGroupStyled, ButtonItem, type ButtonItemProps, ButtonItemStyled, type ButtonProps, Calendar, type CalendarProps, Card, type CardProps, CardStyled, CheckboxGroup, type CheckboxGroupProps, CheckboxGroupStyled, CheckboxItem, type CheckboxItemProps, Container, type ContainerProps, ContainerStyled, Drawer, type DrawerProps, DropdownMenu, DropdownMenuItem, type DropdownMenuItemProps, type DropdownMenuProps, ErrorFormMessage, type ErrorFormMessageProps, Filter, FilterItem, type FilterItemProps, type FilterProps, Flex, type FlexProps, FlexStyled, Form, FormLabel, type FormLabelProps, type FormProps, Grid, type GridProps, GridStyled, Icon, InputStyled, MenuDropdown, type MenuDropdownProps, Modal, type ModalProps, RadioGroup, type RadioGroupProps, RadioGroupStyled, RadioItem, type RadioItemProps, Section, type SectionProps, SectionStyled, Step, StepContent, StepList, type StepProps, StepStyled, StepTrigger, StepWrapper, Switch, type SwitchProps, SwitchStyled, Text, TextAreaFormField, type TextAreaFormFieldProps, TextField, type TextFieldProps, TextFieldSlot, type TextFieldSlotProps, TextFieldSlotStyled, TextFieldStyled, TextFormField, type TextFormFieldProps, type TextProps, TextStyle, TextareaField, type TextareaFieldProps, TextareaFieldStyle, TimePicker, TimePickerButtonStyled, TimePickerDropdownStyled, TimePickerFooterStyled, type TimePickerProps, TimePickerStyled, TimerPickerContentStyled, type Toast, type ToastComponentProps, type ToastConfig, type ToastContextType, ToastItem, type ToastOptions, ToastProvider, type ToastProviderProps, type ToastType, type ToasterShowOptions, Tooltip, TooltipContent, type TooltipProps, TooltipProvider, TooltipRoot, TooltipTrigger, maskFormat, maskUnformat, useToast };
|