Skip to content

Commit

Permalink
fix: exporting types
Browse files Browse the repository at this point in the history
  • Loading branch information
lukewalczak committed Aug 11, 2022
1 parent 3d9d132 commit 4adda35
Showing 1 changed file with 79 additions and 79 deletions.
158 changes: 79 additions & 79 deletions src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,85 +64,85 @@ export {
export { default as Text } from './components/Typography/Text';

// Types
export { Props as ActivityIndicatorProps } from './components/ActivityIndicator';
export { Props as AnimatedFABProps } from './components/FAB/AnimatedFAB';
export { Props as AppbarProps } from './components/Appbar/Appbar';
export { Props as AppbarActionProps } from './components/Appbar/AppbarAction';
export { Props as AppbarBackActionProps } from './components/Appbar/AppbarBackAction';
export { Props as AppbarContentProps } from './components/Appbar/AppbarContent';
export { Props as AppbarHeaderProps } from './components/Appbar/AppbarHeader';
export { Props as AvatarIconProps } from './components/Avatar/AvatarIcon';
export { Props as AvatarImageProps } from './components/Avatar/AvatarImage';
export { Props as AvatarTextProps } from './components/Avatar/AvatarText';
export { Props as BadgeProps } from './components/Badge';
export { Props as BannerProps } from './components/Banner';
export { Props as BottomNavigationProps } from './components/BottomNavigation/BottomNavigation';
export { Props as ButtonProps } from './components/Button/Button';
export { Props as CardProps } from './components/Card/Card';
export { Props as CardActionsProps } from './components/Card/CardActions';
export { Props as CardContentProps } from './components/Card/CardContent';
export { Props as CardCoverProps } from './components/Card/CardCover';
export { Props as CardTitleProps } from './components/Card/CardTitle';
export { Props as CheckboxProps } from './components/Checkbox/Checkbox';
export { Props as CheckboxAndroidProps } from './components/Checkbox/CheckboxAndroid';
export { Props as CheckboxIOSProps } from './components/Checkbox/CheckboxIOS';
export { Props as CheckboxItemProps } from './components/Checkbox/CheckboxItem';
export { Props as ChipProps } from './components/Chip/Chip';
export { Props as DataTableProps } from './components/DataTable/DataTable';
export { Props as DataTableCellProps } from './components/DataTable/DataTableCell';
export { Props as DataTableHeaderProps } from './components/DataTable/DataTableHeader';
export { Props as DataTablePaginationProps } from './components/DataTable/DataTablePagination';
export { Props as DataTableRowProps } from './components/DataTable/DataTableRow';
export { Props as DataTableTitleProps } from './components/DataTable/DataTableTitle';
export { Props as DialogProps } from './components/Dialog/Dialog';
export { Props as DialogActionsProps } from './components/Dialog/DialogActions';
export { Props as DialogContentProps } from './components/Dialog/DialogContent';
export { Props as DialogIconProps } from './components/Dialog/DialogIcon';
export { Props as DialogScrollAreaProps } from './components/Dialog/DialogScrollArea';
export { Props as DialogTitleProps } from './components/Dialog/DialogTitle';
export { Props as DividerProps } from './components/Divider';
export { Props as DrawerCollapsedItemProps } from './components/Drawer/DrawerCollapsedItem';
export { Props as DrawerItemProps } from './components/Drawer/DrawerItem';
export { Props as DrawerSectionProps } from './components/Drawer/DrawerSection';
export { Props as FABProps } from './components/FAB/FAB';
export { Props as FABGroupProps } from './components/FAB/FABGroup';
export { Props as HelperTextProps } from './components/HelperText';
export { Props as IconButtonProps } from './components/IconButton/IconButton';
export { Props as ListAccordionProps } from './components/List/ListAccordion';
export { Props as ListAccordionGroupProps } from './components/List/ListAccordionGroup';
export { Props as ListIconProps } from './components/List/ListIcon';
export { Props as ListItemProps } from './components/List/ListItem';
export { Props as ListSectionProps } from './components/List/ListSection';
export { Props as ListSubheaderProps } from './components/List/ListSubheader';
export { Props as MenuProps } from './components/Menu/Menu';
export { Props as MenuItemProps } from './components/Menu/MenuItem';
export { Props as ModalProps } from './components/Modal';
export { Props as PortalProps } from './components/Portal/Portal';
export { Props as PortalHostProps } from './components/Portal/PortalHost';
export { Props as ProgressBarProps } from './components/ProgressBar';
export { Props as ProviderProps } from './core/Provider';
export { Props as RadioButtonProps } from './components/RadioButton/RadioButton';
export { Props as RadioButtonAndroidProps } from './components/RadioButton/RadioButtonAndroid';
export { Props as RadioButtonGroupProps } from './components/RadioButton/RadioButtonGroup';
export { Props as RadioButtonIOSProps } from './components/RadioButton/RadioButtonIOS';
export { Props as RadioButtonItemProps } from './components/RadioButton/RadioButtonItem';
export { Props as SearchbarProps } from './components/Searchbar';
export { Props as SnackbarProps } from './components/Snackbar';
export { Props as SurfaceProps } from './components/Surface';
export { Props as SwichProps } from './components/Switch/Switch';
export { Props as TextInputProps } from './components/TextInput/TextInput';
export { Props as TextInputAffixProps } from './components/TextInput/Adornment/TextInputAffix';
export { Props as TextInputIconProps } from './components/TextInput/Adornment/TextInputIcon';
export { Props as ToggleButtonProps } from './components/ToggleButton/ToggleButton';
export { Props as ToggleButtonGroupProps } from './components/ToggleButton/ToggleButtonGroup';
export { Props as ToggleButtonRowProps } from './components/ToggleButton/ToggleButtonRow';
export { Props as TouchableRippleProps } from './components/TouchableRipple/TouchableRipple';
export { Props as CaptionProps } from './components/Typography/v2/Caption';
export { Props as HeadlineProps } from './components/Typography/v2/Headline';
export { Props as ParagraphProps } from './components/Typography/v2/Paragraph';
export { Props as SubheadingProps } from './components/Typography/v2/Subheading';
export { Props as TitleProps } from './components/Typography/v2/Title';
export { Props as TextProps } from './components/Typography/Text';
export type { Props as ActivityIndicatorProps } from './components/ActivityIndicator';
export type { Props as AnimatedFABProps } from './components/FAB/AnimatedFAB';
export type { Props as AppbarProps } from './components/Appbar/Appbar';
export type { Props as AppbarActionProps } from './components/Appbar/AppbarAction';
export type { Props as AppbarBackActionProps } from './components/Appbar/AppbarBackAction';
export type { Props as AppbarContentProps } from './components/Appbar/AppbarContent';
export type { Props as AppbarHeaderProps } from './components/Appbar/AppbarHeader';
export type { Props as AvatarIconProps } from './components/Avatar/AvatarIcon';
export type { Props as AvatarImageProps } from './components/Avatar/AvatarImage';
export type { Props as AvatarTextProps } from './components/Avatar/AvatarText';
export type { Props as BadgeProps } from './components/Badge';
export type { Props as BannerProps } from './components/Banner';
export type { Props as BottomNavigationProps } from './components/BottomNavigation/BottomNavigation';
export type { Props as ButtonProps } from './components/Button/Button';
export type { Props as CardProps } from './components/Card/Card';
export type { Props as CardActionsProps } from './components/Card/CardActions';
export type { Props as CardContentProps } from './components/Card/CardContent';
export type { Props as CardCoverProps } from './components/Card/CardCover';
export type { Props as CardTitleProps } from './components/Card/CardTitle';
export type { Props as CheckboxProps } from './components/Checkbox/Checkbox';
export type { Props as CheckboxAndroidProps } from './components/Checkbox/CheckboxAndroid';
export type { Props as CheckboxIOSProps } from './components/Checkbox/CheckboxIOS';
export type { Props as CheckboxItemProps } from './components/Checkbox/CheckboxItem';
export type { Props as ChipProps } from './components/Chip/Chip';
export type { Props as DataTableProps } from './components/DataTable/DataTable';
export type { Props as DataTableCellProps } from './components/DataTable/DataTableCell';
export type { Props as DataTableHeaderProps } from './components/DataTable/DataTableHeader';
export type { Props as DataTablePaginationProps } from './components/DataTable/DataTablePagination';
export type { Props as DataTableRowProps } from './components/DataTable/DataTableRow';
export type { Props as DataTableTitleProps } from './components/DataTable/DataTableTitle';
export type { Props as DialogProps } from './components/Dialog/Dialog';
export type { Props as DialogActionsProps } from './components/Dialog/DialogActions';
export type { Props as DialogContentProps } from './components/Dialog/DialogContent';
export type { Props as DialogIconProps } from './components/Dialog/DialogIcon';
export type { Props as DialogScrollAreaProps } from './components/Dialog/DialogScrollArea';
export type { Props as DialogTitleProps } from './components/Dialog/DialogTitle';
export type { Props as DividerProps } from './components/Divider';
export type { Props as DrawerCollapsedItemProps } from './components/Drawer/DrawerCollapsedItem';
export type { Props as DrawerItemProps } from './components/Drawer/DrawerItem';
export type { Props as DrawerSectionProps } from './components/Drawer/DrawerSection';
export type { Props as FABProps } from './components/FAB/FAB';
export type { Props as FABGroupProps } from './components/FAB/FABGroup';
export type { Props as HelperTextProps } from './components/HelperText';
export type { Props as IconButtonProps } from './components/IconButton/IconButton';
export type { Props as ListAccordionProps } from './components/List/ListAccordion';
export type { Props as ListAccordionGroupProps } from './components/List/ListAccordionGroup';
export type { Props as ListIconProps } from './components/List/ListIcon';
export type { Props as ListItemProps } from './components/List/ListItem';
export type { Props as ListSectionProps } from './components/List/ListSection';
export type { Props as ListSubheaderProps } from './components/List/ListSubheader';
export type { Props as MenuProps } from './components/Menu/Menu';
export type { Props as MenuItemProps } from './components/Menu/MenuItem';
export type { Props as ModalProps } from './components/Modal';
export type { Props as PortalProps } from './components/Portal/Portal';
export type { Props as PortalHostProps } from './components/Portal/PortalHost';
export type { Props as ProgressBarProps } from './components/ProgressBar';
export type { Props as ProviderProps } from './core/Provider';
export type { Props as RadioButtonProps } from './components/RadioButton/RadioButton';
export type { Props as RadioButtonAndroidProps } from './components/RadioButton/RadioButtonAndroid';
export type { Props as RadioButtonGroupProps } from './components/RadioButton/RadioButtonGroup';
export type { Props as RadioButtonIOSProps } from './components/RadioButton/RadioButtonIOS';
export type { Props as RadioButtonItemProps } from './components/RadioButton/RadioButtonItem';
export type { Props as SearchbarProps } from './components/Searchbar';
export type { Props as SnackbarProps } from './components/Snackbar';
export type { Props as SurfaceProps } from './components/Surface';
export type { Props as SwichProps } from './components/Switch/Switch';
export type { Props as TextInputProps } from './components/TextInput/TextInput';
export type { Props as TextInputAffixProps } from './components/TextInput/Adornment/TextInputAffix';
export type { Props as TextInputIconProps } from './components/TextInput/Adornment/TextInputIcon';
export type { Props as ToggleButtonProps } from './components/ToggleButton/ToggleButton';
export type { Props as ToggleButtonGroupProps } from './components/ToggleButton/ToggleButtonGroup';
export type { Props as ToggleButtonRowProps } from './components/ToggleButton/ToggleButtonRow';
export type { Props as TouchableRippleProps } from './components/TouchableRipple/TouchableRipple';
export type { Props as CaptionProps } from './components/Typography/v2/Caption';
export type { Props as HeadlineProps } from './components/Typography/v2/Headline';
export type { Props as ParagraphProps } from './components/Typography/v2/Paragraph';
export type { Props as SubheadingProps } from './components/Typography/v2/Subheading';
export type { Props as TitleProps } from './components/Typography/v2/Title';
export type { Props as TextProps } from './components/Typography/Text';

export type {
MD2Theme,
Expand Down

0 comments on commit 4adda35

Please sign in to comment.