@vitality-ds/components 5.7.0-alpha.1 → 5.7.0-alpha.3
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/AuditTrail/components/AuditItem/index.spec.js +14 -13
- package/dist/AuditTrail/components/IconAvatar/index.js +3 -4
- package/dist/AuditTrail/constants.js +21 -20
- package/dist/Breadcrumbs/components/Breadcrumb/index.js +3 -3
- package/dist/Button/components/ButtonIcon/styles/BaseButtonIcon.styles.js +27 -30
- package/dist/Button/primitives/styles/BaseContentContainer.styles.js +1 -1
- package/dist/Callout/constants.js +19 -17
- package/dist/Callout/hooks/useCalloutContent.js +1 -1
- package/dist/Callout/index.js +10 -14
- package/dist/Callout/styles/BaseCalloutIconContainer.styles.js +12 -2
- package/dist/Chip/components/Checkbox/constants.js +4 -4
- package/dist/Chip/components/ChipIcon/index.js +2 -2
- package/dist/Chip/components/RemoveButton/index.js +4 -4
- package/dist/Chip/components/RemoveButton/styles/BaseRemoveButtonButton.styles.js +4 -1
- package/dist/Chip/styles/BaseChip.styles.js +1 -1
- package/dist/ComboButton/index.js +2 -2
- package/dist/Dialog/components/DialogHeader/index.js +5 -4
- package/dist/Dialog/constants.js +3 -3
- package/dist/DropdownMenu/components/Content/index.js +5 -6
- package/dist/DropdownMenu/components/IconContainer/index.js +1 -2
- package/dist/DropdownMenu/styles/Content.styles.js +4 -1
- package/dist/Form/FormField/index.js +4 -4
- package/dist/Form/HelperMessage/index.js +4 -4
- package/dist/IconButton/index.js +2 -2
- package/dist/IconButton/styles/BaseIconButton.styles.js +6 -3
- package/dist/Input/DatePicker/components/Calendar/index.js +3 -3
- package/dist/Input/DatePicker/index.js +2 -2
- package/dist/Input/DateRangePicker/index.js +4 -6
- package/dist/Input/DateRangePicker/styles/ExtrasContainers.js +7 -2
- package/dist/Input/PasswordInput/constants.js +3 -3
- package/dist/Input/SearchInput/index.js +2 -2
- package/dist/Input/Select/SearchSelectInput/index.js +2 -2
- package/dist/Input/Select/components/Chip/MultiValueRemove/index.js +4 -4
- package/dist/Input/Select/components/ClearButton/index.js +4 -4
- package/dist/Input/Select/components/DropdownIndicator/index.js +7 -7
- package/dist/Input/TextInput/components/IconAdornment/index.js +1 -2
- package/dist/Input/TextInput/components/IconAdornment/styles/BaseIconWrapper.styles.js +6 -2
- package/dist/Input/TextInput/components/IconButtonAdornment/index.js +1 -4
- package/dist/Input/TextInput/components/IconButtonAdornment/styles/BaseIconButtonWrapper.styles.js +1 -6
- package/dist/Input/TextInput/components/SpinnerAdornment/index.js +1 -1
- package/dist/Input/TextInput/components/SpinnerAdornment/styles/BaseSpinnerWrapper.styles.js +1 -1
- package/dist/LucideProvider/index.js +18 -0
- package/dist/LucideProvider/types.js +1 -0
- package/dist/Provider/index.js +3 -1
- package/dist/Sidebar/components/SidebarCloseButton/index.js +2 -2
- package/dist/StatusBadge/components/StatusBadgeIcon/styles/BaseStatusBadge.styles.js +1 -1
- package/dist/StatusBadge/constants.js +9 -6
- package/dist/StatusBadge/logic.spec.js +13 -6
- package/dist/StatusBadge/styles/BaseStatusBadge.styles.js +27 -1
- package/dist/Switch/index.js +4 -4
- package/dist/Table/components/Cells/RowActions/constants.js +5 -5
- package/dist/Table/components/Cells/SortableHeader/components/SortableIcon/index.js +3 -4
- package/dist/Table/components/Cells/SortableHeader/components/SortableIcon/styles/BaseSortableIconContainer.styles.js +3 -1
- package/dist/Table/components/Cells/SortableHeader/components/SortedIcon/index.js +4 -4
- package/dist/Table/components/Cells/SortableHeader/components/SortedIcon/styles/BaseSortedIconContainer.js +4 -2
- package/dist/Table/components/MemoizedCell/constants.js +4 -1
- package/dist/Table/components/MemoizedCell/logic.js +6 -5
- package/dist/Table/components/MemoizedCell/logic.spec.js +24 -0
- package/dist/Table/components/Pagination/index.js +3 -3
- package/dist/Table/components/States/Error/index.js +5 -4
- package/dist/Toaster/components/CloseIconButton/index.js +4 -4
- package/dist/Toaster/components/Toast/constants.js +6 -6
- package/dist/Toaster/components/Toast/helpers/getVariantsByColorScale.js +2 -4
- package/dist/Toaster/components/Toast/index.js +1 -1
- package/dist/Toaster/components/Toast/logic.spec.js +6 -6
- package/dist/Toaster/components/Toast/styles/BaseToast.styles.js +3 -0
- package/dist/Typography/styles/BaseTypography.styles.js +128 -127
- package/dist/components/src/AuditTrail/components/IconAvatar/types.d.ts +2 -3
- package/dist/components/src/AuditTrail/logic.d.ts +2 -2
- package/dist/components/src/AuditTrail/types.d.ts +2 -3
- package/dist/components/src/Button/components/ButtonIcon/styled.d.ts +2 -45
- package/dist/components/src/Button/components/ButtonIcon/styles/BaseButtonIcon.styles.d.ts +2 -45
- package/dist/components/src/Callout/styled.d.ts +408 -1
- package/dist/components/src/Callout/styles/BaseCalloutIconContainer.styles.d.ts +14 -1
- package/dist/components/src/Callout/types.d.ts +4 -4
- package/dist/components/src/Chip/components/ChipIcon/types.d.ts +2 -3
- package/dist/components/src/Chip/types.d.ts +3 -4
- package/dist/components/src/Dialog/types.d.ts +4 -4
- package/dist/components/src/DropdownMenu/components/DropdownMenuItem/types.d.ts +2 -3
- package/dist/components/src/Form/FormField/constants.d.ts +2 -2
- package/dist/components/src/IconButton/styled.d.ts +10 -4
- package/dist/components/src/IconButton/styles/BaseIconButton.styles.d.ts +5 -2
- package/dist/components/src/IconButton/types.d.ts +3 -4
- package/dist/components/src/Input/PasswordInput/types.d.ts +3 -2
- package/dist/components/src/Input/SearchInput/types.d.ts +2 -3
- package/dist/components/src/Input/Select/AsyncSelect/index.d.ts +1 -1
- package/dist/components/src/Input/Select/SearchSelectInput/index.d.ts +1 -1
- package/dist/components/src/Input/Select/types.d.ts +2 -2
- package/dist/components/src/Input/TextInput/components/IconAdornment/types.d.ts +3 -7
- package/dist/components/src/Link/styled.d.ts +3 -259
- package/dist/components/src/LucideProvider/index.d.ts +4 -0
- package/dist/components/src/LucideProvider/types.d.ts +7 -0
- package/dist/components/src/Provider/types.d.ts +10 -1
- package/dist/components/src/StatusBadge/styled.d.ts +6 -0
- package/dist/components/src/StatusBadge/styles/BaseStatusBadge.styles.d.ts +2 -0
- package/dist/components/src/StatusBadge/types.d.ts +1 -1
- package/dist/components/src/Table/components/Cells/Icon/types.d.ts +3 -4
- package/dist/components/src/Table/components/Cells/RowActions/constants.d.ts +4 -5
- package/dist/components/src/Table/components/Cells/SortableHeader/components/SortedIcon/styled.d.ts +2 -0
- package/dist/components/src/Table/components/Cells/SortableHeader/components/SortedIcon/styles/BaseSortedIconContainer.d.ts +2 -0
- package/dist/components/src/Table/components/MemoizedCell/constants.d.ts +1 -0
- package/dist/components/src/Toaster/components/Toast/constants.d.ts +5 -6
- package/dist/components/src/Toaster/components/Toast/helpers/getVariantsByColorScale.d.ts +2 -4
- package/dist/components/src/Toaster/components/Toast/styled.d.ts +13 -20
- package/dist/components/src/Toaster/components/Toast/styles/BaseToast.styles.d.ts +13 -20
- package/dist/components/src/Typography/styled.d.ts +3 -259
- package/dist/components/src/Typography/styles/BaseTypography.styles.d.ts +3 -313
- package/dist/esm/AuditTrail/components/AuditItem/index.spec.js +15 -14
- package/dist/esm/AuditTrail/components/IconAvatar/index.js +3 -4
- package/dist/esm/AuditTrail/constants.js +22 -21
- package/dist/esm/Breadcrumbs/components/Breadcrumb/index.js +2 -2
- package/dist/esm/Button/components/ButtonIcon/styles/BaseButtonIcon.styles.js +27 -29
- package/dist/esm/Button/primitives/styles/BaseContentContainer.styles.js +1 -1
- package/dist/esm/Callout/constants.js +14 -13
- package/dist/esm/Callout/hooks/useCalloutContent.js +1 -1
- package/dist/esm/Callout/index.js +10 -14
- package/dist/esm/Callout/styles/BaseCalloutIconContainer.styles.js +12 -2
- package/dist/esm/Chip/components/Checkbox/constants.js +4 -4
- package/dist/esm/Chip/components/ChipIcon/index.js +2 -2
- package/dist/esm/Chip/components/RemoveButton/index.js +4 -4
- package/dist/esm/Chip/components/RemoveButton/styles/BaseRemoveButtonButton.styles.js +4 -1
- package/dist/esm/Chip/styles/BaseChip.styles.js +1 -1
- package/dist/esm/ComboButton/index.js +2 -2
- package/dist/esm/Dialog/components/DialogHeader/index.js +5 -4
- package/dist/esm/Dialog/constants.js +3 -3
- package/dist/esm/DropdownMenu/components/Content/index.js +4 -5
- package/dist/esm/DropdownMenu/components/IconContainer/index.js +1 -2
- package/dist/esm/DropdownMenu/styles/Content.styles.js +4 -1
- package/dist/esm/Form/FormField/index.js +3 -3
- package/dist/esm/Form/HelperMessage/index.js +4 -4
- package/dist/esm/IconButton/index.js +2 -2
- package/dist/esm/IconButton/styles/BaseIconButton.styles.js +6 -3
- package/dist/esm/Input/DatePicker/components/Calendar/index.js +1 -1
- package/dist/esm/Input/DatePicker/index.js +2 -2
- package/dist/esm/Input/DateRangePicker/index.js +4 -6
- package/dist/esm/Input/DateRangePicker/styles/ExtrasContainers.js +6 -2
- package/dist/esm/Input/PasswordInput/constants.js +3 -3
- package/dist/esm/Input/SearchInput/index.js +1 -1
- package/dist/esm/Input/Select/SearchSelectInput/index.js +1 -1
- package/dist/esm/Input/Select/components/Chip/MultiValueRemove/index.js +4 -4
- package/dist/esm/Input/Select/components/ClearButton/index.js +4 -4
- package/dist/esm/Input/Select/components/DropdownIndicator/index.js +7 -7
- package/dist/esm/Input/TextInput/components/IconAdornment/index.js +1 -2
- package/dist/esm/Input/TextInput/components/IconAdornment/styles/BaseIconWrapper.styles.js +6 -3
- package/dist/esm/Input/TextInput/components/IconButtonAdornment/index.js +1 -4
- package/dist/esm/Input/TextInput/components/IconButtonAdornment/styles/BaseIconButtonWrapper.styles.js +1 -6
- package/dist/esm/Input/TextInput/components/SpinnerAdornment/index.js +1 -1
- package/dist/esm/Input/TextInput/components/SpinnerAdornment/styles/BaseSpinnerWrapper.styles.js +1 -1
- package/dist/esm/LucideProvider/index.js +11 -0
- package/dist/esm/LucideProvider/types.js +1 -0
- package/dist/esm/Provider/index.js +3 -1
- package/dist/esm/Sidebar/components/SidebarCloseButton/index.js +2 -2
- package/dist/esm/StatusBadge/components/StatusBadgeIcon/styles/BaseStatusBadge.styles.js +1 -1
- package/dist/esm/StatusBadge/constants.js +8 -5
- package/dist/esm/StatusBadge/logic.spec.js +11 -4
- package/dist/esm/StatusBadge/styles/BaseStatusBadge.styles.js +27 -1
- package/dist/esm/Switch/index.js +4 -4
- package/dist/esm/Table/components/Cells/RowActions/constants.js +4 -4
- package/dist/esm/Table/components/Cells/SortableHeader/components/SortableIcon/index.js +3 -4
- package/dist/esm/Table/components/Cells/SortableHeader/components/SortableIcon/styles/BaseSortableIconContainer.styles.js +3 -1
- package/dist/esm/Table/components/Cells/SortableHeader/components/SortedIcon/index.js +4 -4
- package/dist/esm/Table/components/Cells/SortableHeader/components/SortedIcon/styles/BaseSortedIconContainer.js +4 -2
- package/dist/esm/Table/components/MemoizedCell/constants.js +3 -0
- package/dist/esm/Table/components/MemoizedCell/logic.js +7 -6
- package/dist/esm/Table/components/MemoizedCell/logic.spec.js +24 -0
- package/dist/esm/Table/components/Pagination/index.js +1 -1
- package/dist/esm/Table/components/States/Error/index.js +5 -4
- package/dist/esm/Toaster/components/CloseIconButton/index.js +4 -4
- package/dist/esm/Toaster/components/Toast/constants.js +4 -4
- package/dist/esm/Toaster/components/Toast/helpers/getVariantsByColorScale.js +2 -4
- package/dist/esm/Toaster/components/Toast/index.js +1 -1
- package/dist/esm/Toaster/components/Toast/logic.spec.js +4 -4
- package/dist/esm/Toaster/components/Toast/styles/BaseToast.styles.js +3 -0
- package/dist/esm/Typography/styles/BaseTypography.styles.js +128 -127
- package/dist/esm/helpers/logic/get-component-from-lookup.spec.js +3 -3
- package/dist/helpers/logic/get-component-from-lookup.spec.js +3 -3
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +5 -4
|
@@ -1628,7 +1628,414 @@ export declare const BaseCalloutActions: import("@stitches/react/types/styled-co
|
|
|
1628
1628
|
portalElement: number;
|
|
1629
1629
|
};
|
|
1630
1630
|
}, import("@stitches/react/types/config").DefaultThemeMap, {}>>;
|
|
1631
|
-
export declare const BaseCalloutIconContainer: import("@stitches/react/types/styled-component").StyledComponent<"div",
|
|
1631
|
+
export declare const BaseCalloutIconContainer: import("@stitches/react/types/styled-component").StyledComponent<"div", import("@stitches/react/types/styled-component").StyledComponentProps<[import("@stitches/react/types/styled-component").CssComponent<never, import("@stitches/react/types/styled-component").StyledComponentProps<[{
|
|
1632
|
+
display: string;
|
|
1633
|
+
variants: {
|
|
1634
|
+
topNudge: {
|
|
1635
|
+
default: {
|
|
1636
|
+
marginTop: string;
|
|
1637
|
+
};
|
|
1638
|
+
blockCompact: {
|
|
1639
|
+
marginTop: string;
|
|
1640
|
+
};
|
|
1641
|
+
compact: {};
|
|
1642
|
+
};
|
|
1643
|
+
};
|
|
1644
|
+
}]>, {
|
|
1645
|
+
bp1: "(min-width: 48rem)";
|
|
1646
|
+
bp2: "(min-width: 69rem)";
|
|
1647
|
+
bp3: "(min-width: 85rem)";
|
|
1648
|
+
}, import("@stitches/react/types/css-util").CSS<{
|
|
1649
|
+
bp1: "(min-width: 48rem)";
|
|
1650
|
+
bp2: "(min-width: 69rem)";
|
|
1651
|
+
bp3: "(min-width: 85rem)";
|
|
1652
|
+
}, {
|
|
1653
|
+
colors: {
|
|
1654
|
+
blue2: string;
|
|
1655
|
+
cyan2: string;
|
|
1656
|
+
green2: string;
|
|
1657
|
+
grey2: string;
|
|
1658
|
+
greyA2: string;
|
|
1659
|
+
orange2: string;
|
|
1660
|
+
pink2: string;
|
|
1661
|
+
red2: string;
|
|
1662
|
+
violet2: string;
|
|
1663
|
+
yellow2: string;
|
|
1664
|
+
blue1: string;
|
|
1665
|
+
cyan1: string;
|
|
1666
|
+
green1: string;
|
|
1667
|
+
grey1: string;
|
|
1668
|
+
greyA1: string;
|
|
1669
|
+
orange1: string;
|
|
1670
|
+
pink1: string;
|
|
1671
|
+
red1: string;
|
|
1672
|
+
violet1: string;
|
|
1673
|
+
yellow1: string;
|
|
1674
|
+
blue7: string;
|
|
1675
|
+
cyan7: string;
|
|
1676
|
+
green7: string;
|
|
1677
|
+
grey7: string;
|
|
1678
|
+
greyA7: string;
|
|
1679
|
+
orange7: string;
|
|
1680
|
+
pink7: string;
|
|
1681
|
+
red7: string;
|
|
1682
|
+
violet7: string;
|
|
1683
|
+
yellow7: string;
|
|
1684
|
+
blue12: string;
|
|
1685
|
+
cyan12: string;
|
|
1686
|
+
green12: string;
|
|
1687
|
+
grey12: string;
|
|
1688
|
+
greyA12: string;
|
|
1689
|
+
orange12: string;
|
|
1690
|
+
pink12: string;
|
|
1691
|
+
red12: string;
|
|
1692
|
+
violet12: string;
|
|
1693
|
+
yellow12: string;
|
|
1694
|
+
blue14: string;
|
|
1695
|
+
cyan14: string;
|
|
1696
|
+
green14: string;
|
|
1697
|
+
grey14: string;
|
|
1698
|
+
greyA14: string;
|
|
1699
|
+
orange14: string;
|
|
1700
|
+
pink14: string;
|
|
1701
|
+
red14: string;
|
|
1702
|
+
violet14: string;
|
|
1703
|
+
yellow14: string;
|
|
1704
|
+
blue3: string;
|
|
1705
|
+
cyan3: string;
|
|
1706
|
+
green3: string;
|
|
1707
|
+
grey3: string;
|
|
1708
|
+
greyA3: string;
|
|
1709
|
+
orange3: string;
|
|
1710
|
+
pink3: string;
|
|
1711
|
+
red3: string;
|
|
1712
|
+
violet3: string;
|
|
1713
|
+
yellow3: string;
|
|
1714
|
+
blue4: string;
|
|
1715
|
+
cyan4: string;
|
|
1716
|
+
green4: string;
|
|
1717
|
+
grey4: string;
|
|
1718
|
+
greyA4: string;
|
|
1719
|
+
orange4: string;
|
|
1720
|
+
pink4: string;
|
|
1721
|
+
red4: string;
|
|
1722
|
+
violet4: string;
|
|
1723
|
+
yellow4: string;
|
|
1724
|
+
blue5: string;
|
|
1725
|
+
cyan5: string;
|
|
1726
|
+
green5: string;
|
|
1727
|
+
grey5: string;
|
|
1728
|
+
greyA5: string;
|
|
1729
|
+
orange5: string;
|
|
1730
|
+
pink5: string;
|
|
1731
|
+
red5: string;
|
|
1732
|
+
violet5: string;
|
|
1733
|
+
yellow5: string;
|
|
1734
|
+
blue10: string;
|
|
1735
|
+
cyan10: string;
|
|
1736
|
+
green10: string;
|
|
1737
|
+
grey10: string;
|
|
1738
|
+
greyA10: string;
|
|
1739
|
+
orange10: string;
|
|
1740
|
+
pink10: string;
|
|
1741
|
+
red10: string;
|
|
1742
|
+
violet10: string;
|
|
1743
|
+
yellow10: string;
|
|
1744
|
+
blue9: string;
|
|
1745
|
+
cyan9: string;
|
|
1746
|
+
green9: string;
|
|
1747
|
+
grey9: string;
|
|
1748
|
+
greyA9: string;
|
|
1749
|
+
orange9: string;
|
|
1750
|
+
pink9: string;
|
|
1751
|
+
red9: string;
|
|
1752
|
+
violet9: string;
|
|
1753
|
+
yellow9: string;
|
|
1754
|
+
blue11: string;
|
|
1755
|
+
cyan11: string;
|
|
1756
|
+
green11: string;
|
|
1757
|
+
grey11: string;
|
|
1758
|
+
greyA11: string;
|
|
1759
|
+
orange11: string;
|
|
1760
|
+
pink11: string;
|
|
1761
|
+
red11: string;
|
|
1762
|
+
violet11: string;
|
|
1763
|
+
yellow11: string;
|
|
1764
|
+
blue6: string;
|
|
1765
|
+
cyan6: string;
|
|
1766
|
+
green6: string;
|
|
1767
|
+
grey6: string;
|
|
1768
|
+
greyA6: string;
|
|
1769
|
+
orange6: string;
|
|
1770
|
+
pink6: string;
|
|
1771
|
+
red6: string;
|
|
1772
|
+
violet6: string;
|
|
1773
|
+
yellow6: string;
|
|
1774
|
+
blue8: string;
|
|
1775
|
+
cyan8: string;
|
|
1776
|
+
green8: string;
|
|
1777
|
+
grey8: string;
|
|
1778
|
+
greyA8: string;
|
|
1779
|
+
orange8: string;
|
|
1780
|
+
pink8: string;
|
|
1781
|
+
red8: string;
|
|
1782
|
+
violet8: string;
|
|
1783
|
+
yellow8: string;
|
|
1784
|
+
blue13: string;
|
|
1785
|
+
cyan13: string;
|
|
1786
|
+
green13: string;
|
|
1787
|
+
grey13: string;
|
|
1788
|
+
greyA13: string;
|
|
1789
|
+
orange13: string;
|
|
1790
|
+
pink13: string;
|
|
1791
|
+
red13: string;
|
|
1792
|
+
violet13: string;
|
|
1793
|
+
yellow13: string;
|
|
1794
|
+
neutral2: string;
|
|
1795
|
+
neutralA2: string;
|
|
1796
|
+
primary2: string;
|
|
1797
|
+
accent2: string;
|
|
1798
|
+
success2: string;
|
|
1799
|
+
info2: string;
|
|
1800
|
+
warning2: string;
|
|
1801
|
+
critical2: string;
|
|
1802
|
+
brand2: string;
|
|
1803
|
+
neutral1: string;
|
|
1804
|
+
neutralA1: string;
|
|
1805
|
+
primary1: string;
|
|
1806
|
+
accent1: string;
|
|
1807
|
+
success1: string;
|
|
1808
|
+
info1: string;
|
|
1809
|
+
warning1: string;
|
|
1810
|
+
critical1: string;
|
|
1811
|
+
brand1: string;
|
|
1812
|
+
neutral7: string;
|
|
1813
|
+
neutralA7: string;
|
|
1814
|
+
primary7: string;
|
|
1815
|
+
accent7: string;
|
|
1816
|
+
success7: string;
|
|
1817
|
+
info7: string;
|
|
1818
|
+
warning7: string;
|
|
1819
|
+
critical7: string;
|
|
1820
|
+
brand7: string;
|
|
1821
|
+
neutral12: string;
|
|
1822
|
+
neutralA12: string;
|
|
1823
|
+
primary12: string;
|
|
1824
|
+
accent12: string;
|
|
1825
|
+
success12: string;
|
|
1826
|
+
info12: string;
|
|
1827
|
+
warning12: string;
|
|
1828
|
+
critical12: string;
|
|
1829
|
+
brand12: string;
|
|
1830
|
+
neutral14: string;
|
|
1831
|
+
neutralA14: string;
|
|
1832
|
+
primary14: string;
|
|
1833
|
+
accent14: string;
|
|
1834
|
+
success14: string;
|
|
1835
|
+
info14: string;
|
|
1836
|
+
warning14: string;
|
|
1837
|
+
critical14: string;
|
|
1838
|
+
brand14: string;
|
|
1839
|
+
neutral3: string;
|
|
1840
|
+
neutralA3: string;
|
|
1841
|
+
primary3: string;
|
|
1842
|
+
accent3: string;
|
|
1843
|
+
success3: string;
|
|
1844
|
+
info3: string;
|
|
1845
|
+
warning3: string;
|
|
1846
|
+
critical3: string;
|
|
1847
|
+
brand3: string;
|
|
1848
|
+
neutral4: string;
|
|
1849
|
+
neutralA4: string;
|
|
1850
|
+
primary4: string;
|
|
1851
|
+
accent4: string;
|
|
1852
|
+
success4: string;
|
|
1853
|
+
info4: string;
|
|
1854
|
+
warning4: string;
|
|
1855
|
+
critical4: string;
|
|
1856
|
+
brand4: string;
|
|
1857
|
+
neutral5: string;
|
|
1858
|
+
neutralA5: string;
|
|
1859
|
+
primary5: string;
|
|
1860
|
+
accent5: string;
|
|
1861
|
+
success5: string;
|
|
1862
|
+
info5: string;
|
|
1863
|
+
warning5: string;
|
|
1864
|
+
critical5: string;
|
|
1865
|
+
brand5: string;
|
|
1866
|
+
neutral10: string;
|
|
1867
|
+
neutralA10: string;
|
|
1868
|
+
primary10: string;
|
|
1869
|
+
accent10: string;
|
|
1870
|
+
success10: string;
|
|
1871
|
+
info10: string;
|
|
1872
|
+
warning10: string;
|
|
1873
|
+
critical10: string;
|
|
1874
|
+
brand10: string;
|
|
1875
|
+
neutral9: string;
|
|
1876
|
+
neutralA9: string;
|
|
1877
|
+
primary9: string;
|
|
1878
|
+
accent9: string;
|
|
1879
|
+
success9: string;
|
|
1880
|
+
info9: string;
|
|
1881
|
+
warning9: string;
|
|
1882
|
+
critical9: string;
|
|
1883
|
+
brand9: string;
|
|
1884
|
+
neutral11: string;
|
|
1885
|
+
neutralA11: string;
|
|
1886
|
+
primary11: string;
|
|
1887
|
+
accent11: string;
|
|
1888
|
+
success11: string;
|
|
1889
|
+
info11: string;
|
|
1890
|
+
warning11: string;
|
|
1891
|
+
critical11: string;
|
|
1892
|
+
brand11: string;
|
|
1893
|
+
neutral6: string;
|
|
1894
|
+
neutralA6: string;
|
|
1895
|
+
primary6: string;
|
|
1896
|
+
accent6: string;
|
|
1897
|
+
success6: string;
|
|
1898
|
+
info6: string;
|
|
1899
|
+
warning6: string;
|
|
1900
|
+
critical6: string;
|
|
1901
|
+
brand6: string;
|
|
1902
|
+
neutral8: string;
|
|
1903
|
+
neutralA8: string;
|
|
1904
|
+
primary8: string;
|
|
1905
|
+
accent8: string;
|
|
1906
|
+
success8: string;
|
|
1907
|
+
info8: string;
|
|
1908
|
+
warning8: string;
|
|
1909
|
+
critical8: string;
|
|
1910
|
+
brand8: string;
|
|
1911
|
+
neutral13: string;
|
|
1912
|
+
neutralA13: string;
|
|
1913
|
+
primary13: string;
|
|
1914
|
+
accent13: string;
|
|
1915
|
+
success13: string;
|
|
1916
|
+
info13: string;
|
|
1917
|
+
warning13: string;
|
|
1918
|
+
critical13: string;
|
|
1919
|
+
brand13: string;
|
|
1920
|
+
};
|
|
1921
|
+
fonts: {
|
|
1922
|
+
display100: any;
|
|
1923
|
+
display200: any;
|
|
1924
|
+
display300: any;
|
|
1925
|
+
display400: any;
|
|
1926
|
+
display500: any;
|
|
1927
|
+
display600: any;
|
|
1928
|
+
display700: any;
|
|
1929
|
+
display800: any;
|
|
1930
|
+
display900: any;
|
|
1931
|
+
body: any;
|
|
1932
|
+
caption: any;
|
|
1933
|
+
pageTitle: any;
|
|
1934
|
+
sectionTitle: any;
|
|
1935
|
+
sectionSubtitle: any;
|
|
1936
|
+
button: any;
|
|
1937
|
+
textInput: any;
|
|
1938
|
+
default: any;
|
|
1939
|
+
};
|
|
1940
|
+
fontSizes: {
|
|
1941
|
+
display100: any;
|
|
1942
|
+
display200: any;
|
|
1943
|
+
display300: any;
|
|
1944
|
+
display400: any;
|
|
1945
|
+
display500: any;
|
|
1946
|
+
display600: any;
|
|
1947
|
+
display700: any;
|
|
1948
|
+
display800: any;
|
|
1949
|
+
display900: any;
|
|
1950
|
+
body: any;
|
|
1951
|
+
caption: any;
|
|
1952
|
+
pageTitle: any;
|
|
1953
|
+
sectionTitle: any;
|
|
1954
|
+
sectionSubtitle: any;
|
|
1955
|
+
button: any;
|
|
1956
|
+
textInput: any;
|
|
1957
|
+
};
|
|
1958
|
+
fontWeights: {
|
|
1959
|
+
display100: any;
|
|
1960
|
+
display200: any;
|
|
1961
|
+
display300: any;
|
|
1962
|
+
display400: any;
|
|
1963
|
+
display500: any;
|
|
1964
|
+
display600: any;
|
|
1965
|
+
display700: any;
|
|
1966
|
+
display800: any;
|
|
1967
|
+
display900: any;
|
|
1968
|
+
body: any;
|
|
1969
|
+
caption: any;
|
|
1970
|
+
pageTitle: any;
|
|
1971
|
+
sectionTitle: any;
|
|
1972
|
+
sectionSubtitle: any;
|
|
1973
|
+
button: any;
|
|
1974
|
+
textInput: any;
|
|
1975
|
+
};
|
|
1976
|
+
letterSpacings: {
|
|
1977
|
+
display100: any;
|
|
1978
|
+
display200: any;
|
|
1979
|
+
display300: any;
|
|
1980
|
+
display400: any;
|
|
1981
|
+
display500: any;
|
|
1982
|
+
display600: any;
|
|
1983
|
+
display700: any;
|
|
1984
|
+
display800: any;
|
|
1985
|
+
display900: any;
|
|
1986
|
+
body: any;
|
|
1987
|
+
caption: any;
|
|
1988
|
+
pageTitle: any;
|
|
1989
|
+
sectionTitle: any;
|
|
1990
|
+
sectionSubtitle: any;
|
|
1991
|
+
button: any;
|
|
1992
|
+
textInput: any;
|
|
1993
|
+
};
|
|
1994
|
+
lineHeights: {
|
|
1995
|
+
display100: any;
|
|
1996
|
+
display200: any;
|
|
1997
|
+
display300: any;
|
|
1998
|
+
display400: any;
|
|
1999
|
+
display500: any;
|
|
2000
|
+
display600: any;
|
|
2001
|
+
display700: any;
|
|
2002
|
+
display800: any;
|
|
2003
|
+
display900: any;
|
|
2004
|
+
body: any;
|
|
2005
|
+
caption: any;
|
|
2006
|
+
pageTitle: any;
|
|
2007
|
+
sectionTitle: any;
|
|
2008
|
+
sectionSubtitle: any;
|
|
2009
|
+
button: any;
|
|
2010
|
+
textInput: any;
|
|
2011
|
+
};
|
|
2012
|
+
radii: {
|
|
2013
|
+
default: any;
|
|
2014
|
+
large: any;
|
|
2015
|
+
rounded: any;
|
|
2016
|
+
};
|
|
2017
|
+
shadows: {
|
|
2018
|
+
sm: any;
|
|
2019
|
+
md: any;
|
|
2020
|
+
lg: any;
|
|
2021
|
+
};
|
|
2022
|
+
space: {
|
|
2023
|
+
sm: any;
|
|
2024
|
+
md: any;
|
|
2025
|
+
lg: any;
|
|
2026
|
+
xs: any;
|
|
2027
|
+
xl: any;
|
|
2028
|
+
xxl: any;
|
|
2029
|
+
};
|
|
2030
|
+
zIndices: {
|
|
2031
|
+
floatingElements: number;
|
|
2032
|
+
blanket: number;
|
|
2033
|
+
dialog: number;
|
|
2034
|
+
toast: number;
|
|
2035
|
+
tooltip: number;
|
|
2036
|
+
portalElement: number;
|
|
2037
|
+
};
|
|
2038
|
+
}, import("@stitches/react/types/config").DefaultThemeMap, {}>>]>, {
|
|
1632
2039
|
bp1: "(min-width: 48rem)";
|
|
1633
2040
|
bp2: "(min-width: 69rem)";
|
|
1634
2041
|
bp3: "(min-width: 85rem)";
|
|
@@ -1,4 +1,17 @@
|
|
|
1
|
-
declare const _default: import("@stitches/react/types/styled-component").CssComponent<never, {
|
|
1
|
+
declare const _default: import("@stitches/react/types/styled-component").CssComponent<never, import("@stitches/react/types/styled-component").StyledComponentProps<[{
|
|
2
|
+
display: string;
|
|
3
|
+
variants: {
|
|
4
|
+
topNudge: {
|
|
5
|
+
default: {
|
|
6
|
+
marginTop: string;
|
|
7
|
+
};
|
|
8
|
+
blockCompact: {
|
|
9
|
+
marginTop: string;
|
|
10
|
+
};
|
|
11
|
+
compact: {};
|
|
12
|
+
};
|
|
13
|
+
};
|
|
14
|
+
}]>, {
|
|
2
15
|
bp1: "(min-width: 48rem)";
|
|
3
16
|
bp2: "(min-width: 69rem)";
|
|
4
17
|
bp3: "(min-width: 85rem)";
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { IconType } from "@vitality-ds/icons/src/Icon/types";
|
|
2
1
|
import { ComponentProps, ExcludedProps, VariantProps } from "@vitality-ds/system";
|
|
2
|
+
import { LucideIcon } from "lucide-react";
|
|
3
3
|
import React from "react";
|
|
4
4
|
import { ButtonPrimitiveProps } from "../Button/primitives/types";
|
|
5
5
|
import { ButtonProps } from "../Button/types";
|
|
@@ -19,9 +19,9 @@ export declare type SeverityKeys = valueof<RemoveBreakPointVariants<SeverityVari
|
|
|
19
19
|
export declare type DefaultContent = {
|
|
20
20
|
title: string;
|
|
21
21
|
titleColor: TypographyProps["color"];
|
|
22
|
-
icon:
|
|
22
|
+
icon: LucideIcon;
|
|
23
23
|
spinnerColor: ButtonPrimitiveProps["spinnerColor"];
|
|
24
|
-
iconColor:
|
|
24
|
+
iconColor: string;
|
|
25
25
|
};
|
|
26
26
|
export declare type DefaultContentOptions = {
|
|
27
27
|
[K in SeverityKeys]: DefaultContent;
|
|
@@ -32,7 +32,7 @@ export declare type CalloutContentHookType = {
|
|
|
32
32
|
iconToDisplay: CalloutProps["icon"];
|
|
33
33
|
iconColor: DefaultContent["iconColor"];
|
|
34
34
|
spinnerColor: DefaultContent["spinnerColor"];
|
|
35
|
-
iconSize: "
|
|
35
|
+
iconSize: "1rem";
|
|
36
36
|
isCompactLayout: boolean;
|
|
37
37
|
};
|
|
38
38
|
export declare type CommonCalloutButtonProps = {
|
|
@@ -1,11 +1,10 @@
|
|
|
1
|
-
|
|
2
|
-
import { IconType } from "@vitality-ds/icons/src/Icon/types";
|
|
1
|
+
import type { LucideIcon } from "lucide-react";
|
|
3
2
|
import { TooltipProps } from "../../../Tooltip/types";
|
|
4
3
|
export declare type ChipIconType = {
|
|
5
4
|
/**
|
|
6
5
|
* The icon to display in the Chip
|
|
7
6
|
*/
|
|
8
|
-
icon:
|
|
7
|
+
icon: LucideIcon;
|
|
9
8
|
/**
|
|
10
9
|
* Tooltip content to describe what the Chip's icon represents
|
|
11
10
|
*/
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
import { IconType } from "@vitality-ds/icons/src/Icon/types";
|
|
3
1
|
import { ExcludedProps, VariantProps } from "@vitality-ds/system";
|
|
2
|
+
import type { LucideIcon } from "lucide-react";
|
|
4
3
|
import { TooltipProps } from "../Tooltip/types";
|
|
5
4
|
import { ChipCheckboxType } from "./components/Checkbox/types";
|
|
6
5
|
import { MetaLabelProps } from "./components/MetaLabel/types";
|
|
@@ -8,9 +7,9 @@ import { RemoveButtonType } from "./components/RemoveButton/types";
|
|
|
8
7
|
import { BaseChip } from "./styled";
|
|
9
8
|
declare type IconProps = {
|
|
10
9
|
/**
|
|
11
|
-
* Set the icon to be displayed before the label. Generally should be a
|
|
10
|
+
* Set the icon to be displayed before the label. Generally should be a Lucide icon.
|
|
12
11
|
*/
|
|
13
|
-
icon:
|
|
12
|
+
icon: LucideIcon;
|
|
14
13
|
/**
|
|
15
14
|
* Text to display in the icon's tooltip when hovered.
|
|
16
15
|
*/
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
|
|
1
|
+
/// <reference types="react" />
|
|
2
2
|
import { ExcludedProps } from "@vitality-ds/system";
|
|
3
|
-
import
|
|
3
|
+
import type { LucideIcon } from "lucide-react";
|
|
4
4
|
import { ButtonProps } from "../Button/types";
|
|
5
5
|
import { valueof } from "../helpers/logic/type-helpers";
|
|
6
6
|
declare type AllowedVariantKeys = "custom" | "transactional" | "passive" | "warning" | "destructive" | "acknowledgement";
|
|
7
7
|
declare type VariantOptionType = {
|
|
8
8
|
titleIcon: boolean;
|
|
9
|
-
forcedIcon:
|
|
9
|
+
forcedIcon: LucideIcon | null;
|
|
10
10
|
actionsAllowed: boolean;
|
|
11
11
|
primaryActionVariant: valueof<Pick<ButtonProps, "appearance">>;
|
|
12
12
|
primaryActionText: string | boolean;
|
|
@@ -32,7 +32,7 @@ export declare type HeaderPropsType = {
|
|
|
32
32
|
/**
|
|
33
33
|
* The icon shown to the left of the title. title and subtitle pushed against left padding if not provided.
|
|
34
34
|
*/
|
|
35
|
-
icon?:
|
|
35
|
+
icon?: LucideIcon;
|
|
36
36
|
/**
|
|
37
37
|
* The function run when the close button is pressed. By passing this function to this prop the close button is rendered, otherwise the button is not rendered.
|
|
38
38
|
*/
|
|
@@ -1,10 +1,9 @@
|
|
|
1
|
-
import { IconType } from "@vitality-ds/icons/src/Icon/types";
|
|
2
1
|
import { ComponentProps, ExcludedProps, VariantProps } from "@vitality-ds/system";
|
|
3
|
-
import
|
|
2
|
+
import type { LucideIcon } from "lucide-react";
|
|
4
3
|
import { ShortcutsProps } from "../../../Shortcuts/types";
|
|
5
4
|
import { BaseDropdownMenuItem } from "./styled";
|
|
6
5
|
export declare type ItemIconType = {
|
|
7
|
-
type:
|
|
6
|
+
type: LucideIcon;
|
|
8
7
|
};
|
|
9
8
|
export declare type DropdownMenuItem = VariantProps<typeof BaseDropdownMenuItem> & ExcludedProps & {
|
|
10
9
|
/**
|
|
@@ -49,7 +49,7 @@ export declare const INPUT_MAPPINGS: {
|
|
|
49
49
|
openMenuOnClick?: boolean;
|
|
50
50
|
blurInputOnSelect?: boolean;
|
|
51
51
|
components?: Pick<Partial<import("react-select/dist/declarations/src/components").SelectComponents<unknown, boolean, import("react-select").GroupBase<unknown>>>, "Control" | "ClearIndicator" | "DropdownIndicator" | "LoadingIndicator">;
|
|
52
|
-
leftAdornmentIcon?: import("
|
|
52
|
+
leftAdornmentIcon?: import("lucide-react").LucideIcon;
|
|
53
53
|
controlShouldRenderValue?: boolean;
|
|
54
54
|
} & import("react").RefAttributes<import("react-select/dist/declarations/src/Select").default<unknown, boolean, import("react-select").GroupBase<unknown>>>>;
|
|
55
55
|
};
|
|
@@ -62,7 +62,7 @@ export declare const INPUT_MAPPINGS: {
|
|
|
62
62
|
as?: never;
|
|
63
63
|
asChild?: never;
|
|
64
64
|
} & Omit<import("../../Input/Select/AsyncSelect/types").AsyncSelectProps, "leftAdornmentIcon"> & {
|
|
65
|
-
icon?: import("
|
|
65
|
+
icon?: import("lucide-react").LucideIcon;
|
|
66
66
|
} & import("react").RefAttributes<import("react-select/dist/declarations/src/Select").default<unknown, boolean, import("react-select").GroupBase<unknown>>>>;
|
|
67
67
|
};
|
|
68
68
|
timePicker: {
|
|
@@ -10,9 +10,12 @@ export declare const BaseIconButton: import("@stitches/react/types/styled-compon
|
|
|
10
10
|
alignSelf: string;
|
|
11
11
|
svg: {
|
|
12
12
|
pointerEvents: string;
|
|
13
|
+
verticalAlign: string;
|
|
14
|
+
width: string;
|
|
15
|
+
height: string;
|
|
13
16
|
marginTop: number;
|
|
14
|
-
"altGlyph, circle, ellipse, path, polygon, polyline, rect, text, textPath, tref, tspan,": {
|
|
15
|
-
|
|
17
|
+
"altGlyph, circle, ellipse, line, path, polygon, polyline, rect, text, textPath, tref, tspan,": {
|
|
18
|
+
stroke: string;
|
|
16
19
|
};
|
|
17
20
|
};
|
|
18
21
|
"&:hover": {
|
|
@@ -863,9 +866,12 @@ export declare const BaseIconButtonLink: import("@stitches/react/types/styled-co
|
|
|
863
866
|
alignSelf: string;
|
|
864
867
|
svg: {
|
|
865
868
|
pointerEvents: string;
|
|
869
|
+
verticalAlign: string;
|
|
870
|
+
width: string;
|
|
871
|
+
height: string;
|
|
866
872
|
marginTop: number;
|
|
867
|
-
"altGlyph, circle, ellipse, path, polygon, polyline, rect, text, textPath, tref, tspan,": {
|
|
868
|
-
|
|
873
|
+
"altGlyph, circle, ellipse, line, path, polygon, polyline, rect, text, textPath, tref, tspan,": {
|
|
874
|
+
stroke: string;
|
|
869
875
|
};
|
|
870
876
|
};
|
|
871
877
|
"&:hover": {
|
|
@@ -10,9 +10,12 @@ declare const _default: import("@stitches/react/types/styled-component").CssComp
|
|
|
10
10
|
alignSelf: string;
|
|
11
11
|
svg: {
|
|
12
12
|
pointerEvents: string;
|
|
13
|
+
verticalAlign: string;
|
|
14
|
+
width: string;
|
|
15
|
+
height: string;
|
|
13
16
|
marginTop: number;
|
|
14
|
-
"altGlyph, circle, ellipse, path, polygon, polyline, rect, text, textPath, tref, tspan,": {
|
|
15
|
-
|
|
17
|
+
"altGlyph, circle, ellipse, line, path, polygon, polyline, rect, text, textPath, tref, tspan,": {
|
|
18
|
+
stroke: string;
|
|
16
19
|
};
|
|
17
20
|
};
|
|
18
21
|
"&:hover": {
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { IconType } from "@vitality-ds/icons/src/Icon/types";
|
|
2
1
|
import { ComponentProps, ExcludedProps, VariantProps } from "@vitality-ds/system";
|
|
3
|
-
import React from "react";
|
|
2
|
+
import type React from "react";
|
|
4
3
|
import { BaseIconButton, BaseIconButtonLink } from "./styled";
|
|
5
4
|
declare type BaseIconButtonProps = VariantProps<typeof BaseIconButton> & ComponentProps<typeof BaseIconButton>;
|
|
6
5
|
declare type BaseIconButtonLinkProps = VariantProps<typeof BaseIconButtonLink> & ComponentProps<typeof BaseIconButtonLink>;
|
|
@@ -10,9 +9,9 @@ declare type BaseIconButtonLinkProps = VariantProps<typeof BaseIconButtonLink> &
|
|
|
10
9
|
export declare type BaseIconButtonComponentProps = React.FC<BaseIconButtonProps> | React.FC<BaseIconButtonLinkProps>;
|
|
11
10
|
export declare type IconButtonProps = ExcludedProps & VariantProps<typeof BaseIconButton> & ComponentProps<typeof BaseIconButton> & ComponentProps<typeof BaseIconButtonLink> & {
|
|
12
11
|
/**
|
|
13
|
-
* Pass in
|
|
12
|
+
* Pass in icon content that describes the action to be performed.
|
|
14
13
|
*/
|
|
15
|
-
icon:
|
|
14
|
+
icon: React.ReactElement;
|
|
16
15
|
/**
|
|
17
16
|
* For toggle states. State should be handled outside the component and passed in.
|
|
18
17
|
*/
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { LucideProps } from "lucide-react";
|
|
2
|
+
import React from "react";
|
|
2
3
|
import { valueof } from "../../helpers/logic/type-helpers";
|
|
3
4
|
import { TooltipProps } from "../../Tooltip/types";
|
|
4
5
|
import { TextInputProps } from "../TextInput/types";
|
|
@@ -8,7 +9,7 @@ export declare type PasswordProps = Omit<TextInputProps, "adornEnd" | "type"> &
|
|
|
8
9
|
export declare type PasswordInputProps = {
|
|
9
10
|
[K in "true" | "false"]: {
|
|
10
11
|
tooltipContent: valueof<Pick<TooltipProps, "content">>;
|
|
11
|
-
icon:
|
|
12
|
+
icon: React.ReactElement<LucideProps>;
|
|
12
13
|
type: "text" | "password";
|
|
13
14
|
};
|
|
14
15
|
};
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
import { IconType } from "@vitality-ds/icons/src/Icon/types";
|
|
3
1
|
import { ExcludedProps } from "@vitality-ds/system";
|
|
2
|
+
import type { LucideIcon } from "lucide-react";
|
|
4
3
|
import { TextInputProps } from "../TextInput/types";
|
|
5
4
|
export declare type SearchInputProps = ExcludedProps & Omit<TextInputProps, "adornStart" | "adornEnd"> & {
|
|
6
5
|
/**
|
|
@@ -10,5 +9,5 @@ export declare type SearchInputProps = ExcludedProps & Omit<TextInputProps, "ado
|
|
|
10
9
|
/**
|
|
11
10
|
* Replaces the default icon with another.
|
|
12
11
|
*/
|
|
13
|
-
icon?:
|
|
12
|
+
icon?: LucideIcon;
|
|
14
13
|
};
|
|
@@ -20,7 +20,7 @@ declare const AsyncSelect: React.ForwardRefExoticComponent<{
|
|
|
20
20
|
openMenuOnClick?: boolean;
|
|
21
21
|
blurInputOnSelect?: boolean;
|
|
22
22
|
components?: Pick<Partial<import("react-select/dist/declarations/src/components").SelectComponents<unknown, boolean, import("react-select").GroupBase<unknown>>>, "Control" | "ClearIndicator" | "DropdownIndicator" | "LoadingIndicator">;
|
|
23
|
-
leftAdornmentIcon?: import("
|
|
23
|
+
leftAdornmentIcon?: import("lucide-react").LucideIcon;
|
|
24
24
|
controlShouldRenderValue?: boolean;
|
|
25
25
|
} & React.RefAttributes<import("react-select/dist/declarations/src/Select").default<unknown, boolean, import("react-select").GroupBase<unknown>>>>;
|
|
26
26
|
export default AsyncSelect;
|
|
@@ -7,6 +7,6 @@ declare const SearchSelectInput: React.ForwardRefExoticComponent<{
|
|
|
7
7
|
as?: never;
|
|
8
8
|
asChild?: never;
|
|
9
9
|
} & Omit<import("../AsyncSelect/types").AsyncSelectProps, "leftAdornmentIcon"> & {
|
|
10
|
-
icon?: import("
|
|
10
|
+
icon?: import("lucide-react").LucideIcon;
|
|
11
11
|
} & React.RefAttributes<import("react-select/dist/declarations/src/Select").default<unknown, boolean, import("react-select").GroupBase<unknown>>>>;
|
|
12
12
|
export default SearchSelectInput;
|