@vygruppen/spor-react 13.1.4 → 13.2.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/.turbo/turbo-build.log +12 -12
- package/.turbo/turbo-postinstall.log +2 -2
- package/CHANGELOG.md +6 -0
- package/dist/index.cjs +351 -67
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +248 -38
- package/dist/index.d.ts +248 -38
- package/dist/index.mjs +349 -68
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -3
- package/src/input/ChoiceChip.tsx +133 -71
- package/src/input/FilterChip.tsx +85 -0
- package/src/input/index.ts +1 -0
- package/src/theme/slot-recipes/anatomy.ts +1 -0
- package/src/theme/slot-recipes/choice-chip.ts +77 -49
- package/src/theme/slot-recipes/filter-chip.ts +197 -0
- package/src/theme/slot-recipes/index.ts +3 -1
package/dist/index.d.cts
CHANGED
|
@@ -2,7 +2,7 @@ import * as React$1 from 'react';
|
|
|
2
2
|
import React__default, { PropsWithChildren, ReactNode, ComponentProps, Ref } from 'react';
|
|
3
3
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
4
4
|
import * as _chakra_ui_react from '@chakra-ui/react';
|
|
5
|
-
import { AccordionRootProps, RecipeVariantProps, Accordion as Accordion$1, Alert as Alert$1, ConditionalValue, BreadcrumbRootProps, ButtonProps as ButtonProps$1, GroupProps, Clipboard as Clipboard$1, IconButtonProps as IconButtonProps$1, BoxProps, SystemStyleObject, RadioCard as RadioCard$1, SeparatorProps, Field as Field$1, PopoverRootProps, Dialog, Drawer as Drawer$1, Box, ComboboxRootProps, Combobox as Combobox$1, ComboboxItemProps, Checkbox as Checkbox$1, CheckboxGroup as CheckboxGroup$1,
|
|
5
|
+
import { AccordionRootProps, RecipeVariantProps, Accordion as Accordion$1, Alert as Alert$1, ConditionalValue, BreadcrumbRootProps, ButtonProps as ButtonProps$1, GroupProps, Clipboard as Clipboard$1, IconButtonProps as IconButtonProps$1, BoxProps, SystemStyleObject, RadioCard as RadioCard$1, SeparatorProps, Field as Field$1, PopoverRootProps, Dialog, Drawer as Drawer$1, Box, ComboboxRootProps, Combobox as Combobox$1, ComboboxItemProps, Checkbox as Checkbox$1, CheckboxGroup as CheckboxGroup$1, Fieldset as Fieldset$1, CheckboxCardRootProps, Input as Input$1, TagRootProps, ListRootProps, MenuRootProps, MenuContentProps, MenuItemProps as MenuItemProps$1, MenuTriggerItemProps as MenuTriggerItemProps$1, MenuRadioItemGroupProps, MenuRadioItemProps, MenuItemGroupProps as MenuItemGroupProps$1, MenuCheckboxItemProps, MenuSeparatorProps, NativeSelectFieldProps, RadioGroup as RadioGroup$1, SelectRootProps, SelectLabelProps, Select as Select$1, CollectionItem, Switch as Switch$1, TextareaProps as TextareaProps$1, LinkProps as LinkProps$1, List as List$1, UseProgressProps, SkeletonProps as SkeletonProps$1, CircleProps, Popover as Popover$1, Pagination as Pagination$1, ChakraProviderProps, SystemContext, TabsRootProps, Tabs as Tabs$1, TableRootProps, TableColumnHeaderProps as TableColumnHeaderProps$1, TableBodyProps as TableBodyProps$1, Tooltip as Tooltip$1, BadgeProps as BadgeProps$1, CodeProps, HeadingProps as HeadingProps$1, TextProps as TextProps$1 } from '@chakra-ui/react';
|
|
6
6
|
export { AspectRatio, Box, BoxProps, BreadcrumbCurrentLink, BreadcrumbEllipsis, BreadcrumbLink, Center, CenterProps, ClientOnly, Collapsible, CollapsibleRootProps, Container, ContainerProps, Em, Flex, FlexProps, For, FormatByte, FormatNumber, Grid, GridItem, GridItemProps, GridProps, HStack, Icon, Image, ImageProps, Kbd, LocaleProvider, Portal, PortalProps, Show, SimpleGrid, SimpleGridProps, Spacer, SpacerProps, Span, Stack, SystemConfig, TableCaption, TableCaptionProps, TableCell, TableCellProps, TableColumn, TableColumnGroup, TableColumnProps, TableFooter, TableFooterProps, TableHeader, TableHeaderProps, TableRoot, TableRootProps, TableRow, TableRowProps, UseDisclosureProps, VStack, VisuallyHidden, Wrap, createIcon, createListCollection, createSystem, defineConfig, defineRecipe, defineSlotRecipe, defineStyle, mergeConfigs, chakra as spor, useBreakpointValue, useCheckbox, useClipboard, useControllableProp, useDisclosure, useMediaQuery, useRecipe, useSlotRecipe, useToken } from '@chakra-ui/react';
|
|
7
7
|
import { IconComponent } from '@vygruppen/spor-icon-react';
|
|
8
8
|
import { CalendarDate, DateDuration, DateValue as DateValue$1 } from '@internationalized/date';
|
|
@@ -924,7 +924,7 @@ declare const PressableCard: ({ ref, ...props }: PressableCardProps & {
|
|
|
924
924
|
ref?: React.Ref<HTMLButtonElement>;
|
|
925
925
|
}) => react_jsx_runtime.JSX.Element;
|
|
926
926
|
|
|
927
|
-
declare const radioCardSlotRecipe: _chakra_ui_react.SlotRecipeDefinition<"root" | "item" | "itemContent" | "label" | "itemText" | "itemDescription", {
|
|
927
|
+
declare const radioCardSlotRecipe: _chakra_ui_react.SlotRecipeDefinition<"root" | "item" | "itemContent" | "label" | "itemText" | "itemDescription" | "itemControl", {
|
|
928
928
|
variant: {
|
|
929
929
|
core: {
|
|
930
930
|
item: {
|
|
@@ -1002,21 +1002,21 @@ declare const radioCardSlotRecipe: _chakra_ui_react.SlotRecipeDefinition<"root"
|
|
|
1002
1002
|
*
|
|
1003
1003
|
* @see Docs https://spor.vy.no/components/radiocard
|
|
1004
1004
|
*/
|
|
1005
|
-
type RadioCardVariantProps = RecipeVariantProps<typeof radioCardSlotRecipe>;
|
|
1006
|
-
type RadioCardItemProps = Exclude<RadioCard$1.ItemProps, "colorPalette" | "indicator" | "variant" | "size" | "addon"> & RadioCardVariantProps & {
|
|
1005
|
+
type RadioCardVariantProps$1 = RecipeVariantProps<typeof radioCardSlotRecipe>;
|
|
1006
|
+
type RadioCardItemProps$1 = Exclude<RadioCard$1.ItemProps, "colorPalette" | "indicator" | "variant" | "size" | "addon"> & RadioCardVariantProps$1 & {
|
|
1007
1007
|
inputProps?: React__default.InputHTMLAttributes<HTMLInputElement>;
|
|
1008
1008
|
ariaLabel?: string;
|
|
1009
1009
|
};
|
|
1010
|
-
declare const RadioCard: ({ ref, ...props }: RadioCardItemProps & {
|
|
1010
|
+
declare const RadioCard: ({ ref, ...props }: RadioCardItemProps$1 & {
|
|
1011
1011
|
ref?: React__default.Ref<HTMLInputElement>;
|
|
1012
1012
|
}) => react_jsx_runtime.JSX.Element;
|
|
1013
|
-
type RadioCardRootProps = RadioCardVariantProps & Exclude<RadioCard$1.RootProps, "variant"> & {
|
|
1013
|
+
type RadioCardRootProps$1 = RadioCardVariantProps$1 & Exclude<RadioCard$1.RootProps, "variant"> & {
|
|
1014
1014
|
children: React__default.ReactNode;
|
|
1015
1015
|
gap?: string | number;
|
|
1016
1016
|
direction?: "row" | "column";
|
|
1017
1017
|
display?: string;
|
|
1018
1018
|
};
|
|
1019
|
-
declare const RadioCardGroup: ({ ref, ...props }: RadioCardRootProps & {
|
|
1019
|
+
declare const RadioCardGroup: ({ ref, ...props }: RadioCardRootProps$1 & {
|
|
1020
1020
|
ref?: React__default.Ref<HTMLDivElement>;
|
|
1021
1021
|
}) => react_jsx_runtime.JSX.Element;
|
|
1022
1022
|
declare const RadioCardLabel: React__default.ForwardRefExoticComponent<RadioCard$1.LabelProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
@@ -1775,49 +1775,222 @@ type CheckboxGroupProps = React__default.ComponentProps<typeof CheckboxGroup$1>
|
|
|
1775
1775
|
*/
|
|
1776
1776
|
declare const CheckboxGroup: (props: CheckboxGroupProps) => react_jsx_runtime.JSX.Element;
|
|
1777
1777
|
|
|
1778
|
-
|
|
1779
|
-
|
|
1780
|
-
|
|
1781
|
-
|
|
1782
|
-
|
|
1783
|
-
|
|
1784
|
-
|
|
1785
|
-
|
|
1786
|
-
};
|
|
1778
|
+
declare const choiceChipSlotRecipe: _chakra_ui_react.SlotRecipeDefinition<"root" | "item" | "itemContent" | "label" | "itemText" | "itemDescription" | "itemControl", {
|
|
1779
|
+
size: {
|
|
1780
|
+
xs: {
|
|
1781
|
+
item: {
|
|
1782
|
+
borderRadius: "xl";
|
|
1783
|
+
_checked: {
|
|
1784
|
+
borderRadius: "9px";
|
|
1785
|
+
};
|
|
1786
|
+
};
|
|
1787
|
+
itemControl: {
|
|
1788
|
+
height: number;
|
|
1789
|
+
paddingX: number;
|
|
1790
|
+
};
|
|
1791
|
+
label: {
|
|
1792
|
+
fontSize: {
|
|
1793
|
+
base: "mobile.sm";
|
|
1794
|
+
sm: "desktop.sm";
|
|
1795
|
+
};
|
|
1796
|
+
fontWeight: "regular";
|
|
1797
|
+
};
|
|
1798
|
+
};
|
|
1799
|
+
sm: {
|
|
1800
|
+
item: {
|
|
1801
|
+
borderRadius: "xl";
|
|
1802
|
+
_checked: {
|
|
1803
|
+
borderRadius: "sm";
|
|
1804
|
+
};
|
|
1805
|
+
};
|
|
1806
|
+
itemControl: {
|
|
1807
|
+
height: number;
|
|
1808
|
+
paddingX: number;
|
|
1809
|
+
};
|
|
1810
|
+
label: {
|
|
1811
|
+
fontSize: {
|
|
1812
|
+
base: "mobile.sm";
|
|
1813
|
+
sm: "desktop.sm";
|
|
1814
|
+
};
|
|
1815
|
+
fontWeight: "bold";
|
|
1816
|
+
};
|
|
1817
|
+
};
|
|
1818
|
+
md: {
|
|
1819
|
+
item: {
|
|
1820
|
+
borderRadius: "xl";
|
|
1821
|
+
_checked: {
|
|
1822
|
+
borderRadius: "sm";
|
|
1823
|
+
};
|
|
1824
|
+
};
|
|
1825
|
+
itemControl: {
|
|
1826
|
+
height: number;
|
|
1827
|
+
paddingX: number;
|
|
1828
|
+
};
|
|
1829
|
+
label: {
|
|
1830
|
+
fontSize: {
|
|
1831
|
+
base: "mobile.md";
|
|
1832
|
+
sm: "desktop.md";
|
|
1833
|
+
};
|
|
1834
|
+
fontWeight: "bold";
|
|
1835
|
+
};
|
|
1836
|
+
};
|
|
1837
|
+
lg: {
|
|
1838
|
+
item: {
|
|
1839
|
+
borderRadius: "xl";
|
|
1840
|
+
_checked: {
|
|
1841
|
+
borderRadius: "md";
|
|
1842
|
+
};
|
|
1843
|
+
};
|
|
1844
|
+
itemControl: {
|
|
1845
|
+
height: number;
|
|
1846
|
+
paddingX: number;
|
|
1847
|
+
};
|
|
1848
|
+
label: {
|
|
1849
|
+
fontSize: {
|
|
1850
|
+
base: "mobile.md";
|
|
1851
|
+
sm: "desktop.md";
|
|
1852
|
+
};
|
|
1853
|
+
fontWeight: "bold";
|
|
1854
|
+
};
|
|
1855
|
+
};
|
|
1856
|
+
};
|
|
1857
|
+
variant: {
|
|
1858
|
+
core: {
|
|
1859
|
+
itemControl: {
|
|
1860
|
+
_checked: {
|
|
1861
|
+
backgroundColor: "surface.brand";
|
|
1862
|
+
color: "text.brand";
|
|
1863
|
+
outline: "none";
|
|
1864
|
+
_hover: {
|
|
1865
|
+
backgroundColor: "surface.brand.hover";
|
|
1866
|
+
_active: {
|
|
1867
|
+
backgroundColor: "surface.brand.active";
|
|
1868
|
+
};
|
|
1869
|
+
};
|
|
1870
|
+
};
|
|
1871
|
+
_hover: {
|
|
1872
|
+
outline: "2px solid";
|
|
1873
|
+
outlineColor: "outline.core.hover";
|
|
1874
|
+
_active: {
|
|
1875
|
+
outline: "1px solid";
|
|
1876
|
+
outlineColor: "outline.core";
|
|
1877
|
+
backgroundColor: "surface.core.active";
|
|
1878
|
+
};
|
|
1879
|
+
};
|
|
1880
|
+
};
|
|
1881
|
+
};
|
|
1882
|
+
accent: {
|
|
1883
|
+
itemControl: {
|
|
1884
|
+
backgroundColor: "surface.accent";
|
|
1885
|
+
color: "text.accent";
|
|
1886
|
+
outline: "none";
|
|
1887
|
+
border: "none";
|
|
1888
|
+
_checked: {
|
|
1889
|
+
backgroundColor: "surface.brand";
|
|
1890
|
+
color: "text.brand";
|
|
1891
|
+
outline: "none";
|
|
1892
|
+
_hover: {
|
|
1893
|
+
backgroundColor: "surface.brand.hover";
|
|
1894
|
+
_active: {
|
|
1895
|
+
backgroundColor: "surface.brand.active";
|
|
1896
|
+
};
|
|
1897
|
+
};
|
|
1898
|
+
};
|
|
1899
|
+
_hover: {
|
|
1900
|
+
backgroundColor: "surface.accent.hover";
|
|
1901
|
+
_active: {
|
|
1902
|
+
backgroundColor: "surface.accent.active";
|
|
1903
|
+
};
|
|
1904
|
+
};
|
|
1905
|
+
};
|
|
1906
|
+
};
|
|
1907
|
+
floating: {
|
|
1908
|
+
itemControl: {
|
|
1909
|
+
backgroundColor: "surface.floating";
|
|
1910
|
+
outline: "1px solid";
|
|
1911
|
+
outlineColor: "outline.floating";
|
|
1912
|
+
color: "text.floating";
|
|
1913
|
+
boxShadow: "sm";
|
|
1914
|
+
_checked: {
|
|
1915
|
+
backgroundColor: "surface.brand";
|
|
1916
|
+
color: "text.brand";
|
|
1917
|
+
outline: "none";
|
|
1918
|
+
_hover: {
|
|
1919
|
+
backgroundColor: "surface.brand.hover";
|
|
1920
|
+
_active: {
|
|
1921
|
+
backgroundColor: "surface.brand.active";
|
|
1922
|
+
};
|
|
1923
|
+
};
|
|
1924
|
+
};
|
|
1925
|
+
_hover: {
|
|
1926
|
+
backgroundColor: "surface.floating.hover";
|
|
1927
|
+
outline: "1px solid";
|
|
1928
|
+
outlineColor: "outline.floating.hover";
|
|
1929
|
+
_active: {
|
|
1930
|
+
backgroundColor: "surface.floating.active";
|
|
1931
|
+
outline: "1px solid";
|
|
1932
|
+
outlineColor: "outline.floating";
|
|
1933
|
+
};
|
|
1934
|
+
};
|
|
1935
|
+
};
|
|
1936
|
+
};
|
|
1937
|
+
};
|
|
1938
|
+
}>;
|
|
1939
|
+
|
|
1787
1940
|
/**
|
|
1788
|
-
* Choice chips are
|
|
1941
|
+
* Choice chips are radio buttons that look like selectable buttons, allowing only one selection at a time.
|
|
1789
1942
|
*
|
|
1790
1943
|
* Choice chips are available in four different sizes - `xs`, `sm`, `md` and `lg`.
|
|
1791
1944
|
*
|
|
1792
1945
|
* ```tsx
|
|
1793
|
-
* <
|
|
1794
|
-
*
|
|
1795
|
-
*
|
|
1796
|
-
* </
|
|
1946
|
+
* <ChoiceChipGroup defaultValue="economy">
|
|
1947
|
+
* <ChoiceChip value="economy">Economy</ChoiceChip>
|
|
1948
|
+
* <ChoiceChip value="business">Business</ChoiceChip>
|
|
1949
|
+
* <ChoiceChip value="first-class">First Class</ChoiceChip>
|
|
1950
|
+
* </ChoiceChipGroup>
|
|
1797
1951
|
* ```
|
|
1798
1952
|
*
|
|
1799
|
-
* There are also three different chipType - `icon`, `choice` and `filter`.
|
|
1800
|
-
*
|
|
1801
|
-
* ```tsx
|
|
1802
|
-
* <Stack flexDirection="row">
|
|
1803
|
-
* <ChoiceChip chipType="icon" icon={<Bus24Icon />}>Bus</ChoiceChip>
|
|
1804
|
-
* <ChoiceChip chipType="choice" icon={<Bus24Icon />}>Bus</ChoiceChip>
|
|
1805
|
-
* <ChoiceChip chipType="filter" icon={<Bus24Icon />}>Bus</ChoiceChip>
|
|
1806
|
-
* </Stack>
|
|
1807
|
-
*
|
|
1808
1953
|
* There are also three different variants - `core`, `accent` and `floating`.
|
|
1809
1954
|
*
|
|
1810
1955
|
* ```tsx
|
|
1811
|
-
*
|
|
1812
|
-
*
|
|
1813
|
-
* <ChoiceChip
|
|
1814
|
-
*
|
|
1815
|
-
*
|
|
1956
|
+
* <>
|
|
1957
|
+
* <ChoiceChipGroup defaultValue="bus" variant="core">
|
|
1958
|
+
* <ChoiceChip value="bus">Bus</ChoiceChip>
|
|
1959
|
+
* </ChoiceChipGroup>
|
|
1960
|
+
* <ChoiceChipGroup defaultValue="bus" variant="accent">
|
|
1961
|
+
* <ChoiceChip value="bus">Bus</ChoiceChip>
|
|
1962
|
+
* </ChoiceChipGroup>
|
|
1963
|
+
* <ChoiceChipGroup defaultValue="bus" variant="floating">
|
|
1964
|
+
* <ChoiceChip value="bus">Bus</ChoiceChip>
|
|
1965
|
+
* </ChoiceChipGroup>
|
|
1966
|
+
* </>
|
|
1816
1967
|
* ```
|
|
1968
|
+
*
|
|
1969
|
+
* @see https://spor.vy.no/components/choice-chip
|
|
1817
1970
|
*/
|
|
1818
|
-
|
|
1819
|
-
|
|
1971
|
+
type RadioCardVariantProps = RecipeVariantProps<typeof choiceChipSlotRecipe>;
|
|
1972
|
+
type CheckBoxIcon$1 = {
|
|
1973
|
+
default: React.ReactNode;
|
|
1974
|
+
checked: React.ReactNode;
|
|
1975
|
+
};
|
|
1976
|
+
type RadioCardItemProps = Exclude<RadioCard$1.ItemProps, "colorPalette" | "indicator" | "variant" | "size" | "addon"> & RadioCardVariantProps & {
|
|
1977
|
+
inputProps?: React.InputHTMLAttributes<HTMLInputElement>;
|
|
1978
|
+
ariaLabel?: string;
|
|
1979
|
+
icon?: CheckBoxIcon$1;
|
|
1980
|
+
};
|
|
1981
|
+
declare const ChoiceChip: ({ ref, ...props }: RadioCardItemProps & {
|
|
1982
|
+
ref?: React.Ref<HTMLInputElement>;
|
|
1820
1983
|
}) => react_jsx_runtime.JSX.Element;
|
|
1984
|
+
type RadioCardRootProps = Exclude<RadioCard$1.RootProps, "variant" | "size"> & RadioCardVariantProps & {
|
|
1985
|
+
children: React.ReactNode;
|
|
1986
|
+
gap?: string | number;
|
|
1987
|
+
direction?: "row" | "column";
|
|
1988
|
+
display?: string;
|
|
1989
|
+
};
|
|
1990
|
+
declare const ChoiceChipGroup: ({ ref, ...props }: RadioCardRootProps & {
|
|
1991
|
+
ref?: React.Ref<HTMLDivElement>;
|
|
1992
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
1993
|
+
declare const ChoiceChipLabel: React$1.ForwardRefExoticComponent<RadioCard$1.LabelProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
1821
1994
|
|
|
1822
1995
|
type ComboboxProps<T> = Exclude<InputProps, "variant" | "colorPalette" | "size"> & AriaComboBoxProps<T> & {
|
|
1823
1996
|
/** The label of the combobox */
|
|
@@ -1865,6 +2038,43 @@ declare const FieldsetContent: React$1.ForwardRefExoticComponent<Fieldset$1.Cont
|
|
|
1865
2038
|
declare const FieldsetHelperText: React$1.ForwardRefExoticComponent<Fieldset$1.HelperTextProps & React$1.RefAttributes<HTMLSpanElement>>;
|
|
1866
2039
|
declare const FieldsetErrorText: React$1.ForwardRefExoticComponent<Fieldset$1.ErrorTextProps & React$1.RefAttributes<HTMLSpanElement>>;
|
|
1867
2040
|
|
|
2041
|
+
type CheckBoxIcon = {
|
|
2042
|
+
default: React__default.ReactNode;
|
|
2043
|
+
checked: React__default.ReactNode;
|
|
2044
|
+
};
|
|
2045
|
+
type FilterChipProps = Omit<CheckboxCardRootProps, "onCheckedChange" | "checked"> & {
|
|
2046
|
+
icon?: CheckBoxIcon;
|
|
2047
|
+
onCheckedChange?: (checked: boolean) => void;
|
|
2048
|
+
checked?: boolean;
|
|
2049
|
+
};
|
|
2050
|
+
/**
|
|
2051
|
+
* Filter chips are checkboxes that look like selectable buttons.
|
|
2052
|
+
*
|
|
2053
|
+
* Filter chips are available in four different sizes - `xs`, `sm`, `md` and `lg`.
|
|
2054
|
+
*
|
|
2055
|
+
* ```tsx
|
|
2056
|
+
* <Stack flexDirection="row">
|
|
2057
|
+
* <FilterChip size="lg">Bus</FilterChip>
|
|
2058
|
+
* <FilterChip size="lg">Train</FilterChip>
|
|
2059
|
+
* </Stack>
|
|
2060
|
+
* ```
|
|
2061
|
+
*
|
|
2062
|
+
* There are also three different variants - `core`, `accent` and `floating`.
|
|
2063
|
+
*
|
|
2064
|
+
* ```tsx
|
|
2065
|
+
* <Stack flexDirection="row">
|
|
2066
|
+
* <FilterChip variant="core">Bus</FilterChip>
|
|
2067
|
+
* <FilterChip variant="accent">Boat</FilterChip>
|
|
2068
|
+
* <FilterChip variant="floating">Train</FilterChip>
|
|
2069
|
+
* </Stack>
|
|
2070
|
+
* ```
|
|
2071
|
+
*
|
|
2072
|
+
* @see https://spor.vy.no/components/filter-chip
|
|
2073
|
+
*/
|
|
2074
|
+
declare const FilterChip: ({ ref, children, icon, onCheckedChange, ...rootProps }: FilterChipProps & {
|
|
2075
|
+
ref?: React__default.Ref<HTMLInputElement>;
|
|
2076
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
2077
|
+
|
|
1868
2078
|
type ChakraInputProps = ComponentProps<typeof Input$1>;
|
|
1869
2079
|
|
|
1870
2080
|
type InputProps = FieldProps & Exclude<ChakraInputProps, "size" | "label" | "colorPalette" | "placeholder"> & {
|
|
@@ -4118,4 +4328,4 @@ declare const Text: ({ ref, ...props }: TextProps & {
|
|
|
4118
4328
|
**/
|
|
4119
4329
|
declare function slugify(text: string | string[], maxLength?: number): string;
|
|
4120
4330
|
|
|
4121
|
-
export { Accordion, AccordionItem, AccordionItemContent, AccordionItemTrigger, Alert, type AlertProps, AttachedInputs, type AttachedInputsProps, Autocomplete, AutocompleteItem, AutocompleteItemGroup, AutocompleteItemGroupLabel, Badge, type BadgeProps, Brand, Breadcrumb, Button, ButtonGroup, type ButtonGroupProps, type ButtonProps, type ButtonVariantProps, Calendar, CalendarCell, CalendarGrid, CalendarHeader, type CalendarMode, CalendarProvider, type CalendarValue, CardSelect, CardSelectContent, CardSelectTrigger, type CardSelectTriggerProps, CargonetLogo, type CargonetLogoProps, Checkbox, CheckboxGroup, type CheckboxGroupProps, ChoiceChip,
|
|
4331
|
+
export { Accordion, AccordionItem, AccordionItemContent, AccordionItemTrigger, Alert, type AlertProps, AttachedInputs, type AttachedInputsProps, Autocomplete, AutocompleteItem, AutocompleteItemGroup, AutocompleteItemGroupLabel, Badge, type BadgeProps, Brand, Breadcrumb, Button, ButtonGroup, type ButtonGroupProps, type ButtonProps, type ButtonVariantProps, Calendar, CalendarCell, CalendarGrid, CalendarHeader, type CalendarMode, CalendarProvider, type CalendarValue, CardSelect, CardSelectContent, CardSelectTrigger, type CardSelectTriggerProps, CargonetLogo, type CargonetLogoProps, Checkbox, CheckboxGroup, type CheckboxGroupProps, ChoiceChip, ChoiceChipGroup, ChoiceChipLabel, Clipboard, ClipboardButton, CloseButton, type CloseButtonProps, CloseDrawerLine, Code, ColorInlineLoader, type ColorInlineLoaderProps, type ColorMode, ColorModeButton, ColorModeIcon, ColorModeProvider, type ColorModeProviderProps, ColorSpinner, type ColorSpinnerProps, Combobox, type ComboboxProps, ContentLoader, type ContentLoaderProps, type CountryCodeAndPhoneNumber, DarkFullScreenLoader, DarkInlineLoader, type DarkInlineLoaderProps, DarkSpinner, type DarkSpinnerProps, DatePicker, type DatePickerVariantProps, DateRangePicker, DialogActionTrigger, DialogBackdrop, DialogBody, DialogCloseTrigger, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogRoot, DialogTitle, DialogTrigger, Drawer, DrawerActionTrigger, DrawerBackTrigger, DrawerBackdrop, DrawerBody, DrawerCloseTrigger, DrawerContent, DrawerFooter, DrawerFullScreenHeader, DrawerHeader, DrawerTitle, DrawerTrigger, Expandable, ExpandableAlert, ExpandableItem, Field, type FieldBaseProps, FieldErrorText, FieldLabel, type FieldProps, Fieldset, FieldsetContent, FieldsetErrorText, FieldsetHelperText, FieldsetLegend, FilterChip, type FilterChipProps, FloatingActionButton, type GroupVariantProps, Heading, type HeadingProps, IconButton, type IconButtonProps, InfoTag, type InfoTagProps, Input, InputChip, type InputChipProps, type InputProps, ItemDescription, ItemLabel, JumpButton, Language, LanguageProvider, LightFullScreenLoader, LightInlineLoader, type LightInlineLoaderProps, LightSpinner, type LightSpinnerProps, LineIcon, type LineIconProps, type LinkProps, List, ListBox, ListIndicator, ListItem, type MediaControllerVariantProps, Menu, MenuCheckboxItem, MenuContent, MenuItem, MenuItemGroup, type MenuItemGroupProps, type MenuItemProps, MenuRadioItem, MenuRadioItemGroup, MenuSeparator, MenuTrigger, MenuTriggerItem, type MenuTriggerItemProps, type MenuTriggerProps, NativeSelect, type NativeSelectdProps, Nudge, NudgeActions, NudgeCloseTrigger, NudgeContent, type NudgeProps, NudgeTrigger, NudgeWizardStep, NumericStepper, type NumericStepperProps, Pagination, PaginationEllipsis, PaginationItem, PaginationItems, PaginationNextTrigger, PaginationPrevTrigger, PasswordInput, type PasswordInputProps, type PasswordVisibilityProps, PhoneNumberInput, PlayPauseButton, Popover, PopoverContent, type PopoverProps, PopoverTrigger, PressableCard, ProgressBar, type ProgressBarProps, ProgressIndicator, type ProgressIndicatorProps, type ProgressIndicatorVariantProps, ProgressLoader, type ProgressLoaderProps, type ProgressLoaderVariantProps, Radio, RadioCard, RadioCardGroup, RadioCardLabel, RadioGroup, type RadioProps, RangeCalendar, ScrollCalendar, SearchInput, type SearchInputProps, Select, SelectContent, SelectItem, SelectItemGroup, SelectItemText, SelectLabel, type SelectProps, SelectRoot, SelectTrigger, SelectValueText, Separator, ServiceAlert, Skeleton, SkeletonCircle, type SkeletonCircleProps, type SkeletonProps, SkeletonText, type SkeletonTextProps, SkipButton, type SpinnerProps, SporProvider, StaticCard, type StaticCardProps, Stepper, StepperStep, type StepperVariantProps, SvgBox, Switch, type SwitchProps, Table, TableBody, type TableBodyProps, TableColumnHeader, type TableColumnHeaderProps, type TableProps, Tabs, TabsContent, TabsIndicator, TabsList, type TabsProps, TabsTrigger, Text, TextLink, type TextProps, Textarea, type TextareaProps, TimePicker, Tooltip, TooltipContent, type TooltipProps, TooltipTrigger, type TranslationObject, type Translations, TravelTag, type TravelTagProps, type UseColorModeReturn, VyLogo, VyLogoPride, createTexts, createToast, fontFaces, slugify, system, themes, useCalendar, useColorMode, useColorModeValue, useMenuContext, useTableSort, useTranslation };
|