From 48017f2a08d21a3eb355043d7c0046a53a4e090e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rui=20Sim=C3=A3o?= Date: Mon, 5 Feb 2024 14:42:34 +0000 Subject: [PATCH] fix(component): add missing export for TextArea --- .changeset/wet-apricots-lick.md | 5 ++ packages/components/src/index.ts | 78 ++++++++++++++++---------------- 2 files changed, 45 insertions(+), 38 deletions(-) create mode 100644 .changeset/wet-apricots-lick.md diff --git a/.changeset/wet-apricots-lick.md b/.changeset/wet-apricots-lick.md new file mode 100644 index 000000000..9da72a8e4 --- /dev/null +++ b/.changeset/wet-apricots-lick.md @@ -0,0 +1,5 @@ +--- +'@interlay/ui': patch +--- + +fix(components): add missing export for TextArea diff --git a/packages/components/src/index.ts b/packages/components/src/index.ts index 8abfaa974..c16d0f679 100644 --- a/packages/components/src/index.ts +++ b/packages/components/src/index.ts @@ -1,37 +1,40 @@ -export type { AccordionItemProps, AccordionProps } from './Accordion'; +export * from '@interlay/system'; export { Accordion, AccordionItem } from './Accordion'; -export type { AlertProps } from './Alert'; +export type { AccordionItemProps, AccordionProps } from './Accordion'; export { Alert } from './Alert'; -export type { BreadcrumbItemProps, BreadcrumbsProps } from './Breadcrumbs'; +export type { AlertProps } from './Alert'; export { BreadcrumbItem, Breadcrumbs } from './Breadcrumbs'; -export type { CardProps } from './Card'; +export type { BreadcrumbItemProps, BreadcrumbsProps } from './Breadcrumbs'; +export { CSSReset } from './CSSReset'; +export { CTA, CTALink } from './CTA'; +export type { CTALinkProps, CTAProps } from './CTA'; export { Card } from './Card'; -export type { CoinIconProps } from './CoinIcon'; +export type { CardProps } from './Card'; export { CoinIcon } from './CoinIcon'; -export type { CTALinkProps, CTAProps } from './CTA'; -export { CTA, CTALink } from './CTA'; -export type { DividerProps } from './Divider'; +export type { CoinIconProps } from './CoinIcon'; export { Divider } from './Divider'; -export type { FieldProps } from './Field'; +export type { DividerProps } from './Divider'; +export { Drawer } from './Drawer'; +export type { DrawerProps } from './Drawer'; export { Field, useFieldProps } from './Field'; -export type { FlexProps } from './Flex'; +export type { FieldProps } from './Field'; export { Flex } from './Flex'; -export type { GridItemProps, GridProps } from './Grid'; +export type { FlexProps } from './Flex'; export { Grid, GridItem } from './Grid'; -export type { InputProps } from './Input'; +export type { GridItemProps, GridProps } from './Grid'; export { Input } from './Input'; -export type { LabelProps } from './Label'; +export type { InputProps } from './Input'; export { Label } from './Label'; -export type { ListItemProps, ListProps, Selection } from './List'; +export type { LabelProps } from './Label'; export { List, ListItem } from './List'; -export type { SpinnerProps } from './Spinner'; -export { Spinner } from './Spinner'; -export type { MeterProps, MeterRanges, UseMeterProps } from './Meter'; +export type { ListItemProps, ListProps, Selection } from './List'; export { Meter, useMeter } from './Meter'; -export type { ModalBodyProps, ModalDividerProps, ModalFooterProps, ModalHeaderProps, ModalProps } from './Modal'; +export type { MeterProps, MeterRanges, UseMeterProps } from './Meter'; export { Modal, ModalBody, ModalDivider, ModalFooter, ModalHeader } from './Modal'; -export type { NumberInputProps } from './NumberInput'; +export type { ModalBodyProps, ModalDividerProps, ModalFooterProps, ModalHeaderProps, ModalProps } from './Modal'; export { NumberInput } from './NumberInput'; +export type { NumberInputProps } from './NumberInput'; +export { Popover, PopoverBody, PopoverContent, PopoverFooter, PopoverHeader, PopoverTrigger } from './Popover'; export type { PopoverBodyProps, PopoverContentProps, @@ -40,34 +43,33 @@ export type { PopoverProps, PopoverTriggerProps } from './Popover'; -export { Popover, PopoverBody, PopoverContent, PopoverFooter, PopoverHeader, PopoverTrigger } from './Popover'; -export type { ProgressBarProps } from './ProgressBar'; export { ProgressBar } from './ProgressBar'; -export type { SelectProps } from './Select'; +export type { ProgressBarProps } from './ProgressBar'; +export { Radio, RadioGroup } from './Radio'; +export type { RadioGroupProps, RadioProps } from './Radio'; export { Item, Select } from './Select'; -export type { SliderProps } from './Slider'; +export type { SelectProps } from './Select'; export { Slider } from './Slider'; -export type { DrawerProps } from './Drawer'; -export { Drawer } from './Drawer'; -export type { StackProps } from './Stack'; +export type { SliderProps } from './Slider'; +export { Spinner } from './Spinner'; +export type { SpinnerProps } from './Spinner'; export { Stack } from './Stack'; -export type { SwitchProps } from './Switch'; +export type { StackProps } from './Stack'; export { Switch } from './Switch'; -export type { ColumnProps, RowProps, TableProps } from './Table'; +export type { SwitchProps } from './Switch'; export { Table } from './Table'; -export type { TabsItemProps, TabsProps } from './Tabs'; +export type { ColumnProps, RowProps, TableProps } from './Table'; export { Tabs, TabsItem } from './Tabs'; -export type { DdProps, DlGroupProps, DlProps, DtProps, TextProps } from './Text'; +export type { TabsItemProps, TabsProps } from './Tabs'; export { Dd, Dl, DlGroup, Dt, Em, H1, H2, H3, H4, H5, H6, P, Span, Strong } from './Text'; -export type { TextLinkProps } from './TextLink'; +export type { DdProps, DlGroupProps, DlProps, DtProps, TextProps } from './Text'; +export { TextArea } from './TextArea'; +export type { TextAreaProps } from './TextArea'; export { TextLink } from './TextLink'; -export type { TokenData, TokenInputProps, TokenListItemProps, TokenSelectProps } from './TokenInput'; +export type { TextLinkProps } from './TextLink'; export { TokenInput, TokenListItem } from './TokenInput'; -export type { TokenStackProps } from './TokenStack'; +export type { TokenData, TokenInputProps, TokenListItemProps, TokenSelectProps } from './TokenInput'; export { TokenStack } from './TokenStack'; -export type { TooltipProps } from './Tooltip'; +export type { TokenStackProps } from './TokenStack'; export { Tooltip } from './Tooltip'; -export * from '@interlay/system'; -export { CSSReset } from './CSSReset'; -export type { RadioGroupProps, RadioProps } from './Radio'; -export { RadioGroup, Radio } from './Radio'; +export type { TooltipProps } from './Tooltip';