Skip to content

Commit

Permalink
fix(component): add missing export for TextArea (#56)
Browse files Browse the repository at this point in the history
  • Loading branch information
danielsimao committed Feb 5, 2024
1 parent b39287a commit 6371a9c
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 38 deletions.
5 changes: 5 additions & 0 deletions .changeset/wet-apricots-lick.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@interlay/ui': patch
---

fix(components): add missing export for TextArea
78 changes: 40 additions & 38 deletions packages/components/src/index.ts
Original file line number Diff line number Diff line change
@@ -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,
Expand All @@ -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';

0 comments on commit 6371a9c

Please sign in to comment.