UNPKG

@devfamily/admiral

Version:

Admiral is a frontend framework for creating back office using React. It provides out-of-the-box components and tools that make developing an admin interface easy and fast.

40 lines (39 loc) 2.35 kB
export * from './ui'; export type { BadgeProps, BadgeSizeType, BadgeViewType, BadgeStatusType, } from './ui/Badge/interfaces'; export type { ButtonSizeType, ButtonViewType, ButtonProps } from './ui/Button/interfaces'; export type { CheckboxProps } from './ui/Checkbox/interfaces'; export type { ChoiceChangeEvent, ChoiceProps } from './ui/Choice/interfaces'; export * from './ui/ColorPicker/interfaces'; export type { TimePickerLocale, PickerLocale, PickerDateProps, PickerRangeProps, PickerProps, PickerRangeValue, } from './ui/DatePicker/generatePicker/interfaces'; export type { DrawerProps } from './ui/Drawer/interfaces'; export type { InputProps, InputSizeType } from './ui/Input/interfaces'; export * from './ui/Menu/interfaces'; export type { LogoComponentType, LogoType } from './ui/Layout/LayoutHeader'; export type { PaginationProps } from './ui/Pagination/interfaces'; export type { SelectProps, SelectSizeType, SelectValue, OptionProps } from './ui/Select/interfaces'; export type { SpinProps, SpinSizeType } from './ui/Spin/interfaces'; export type { SwitchProps, SwitchSizeType } from './ui/Switch/interfaces'; export type { TablePaginationConfig, TableProps, TableRowSelection, ColumnsType as TableColumnsType, ColumnType as TableColumnType, SortOrder, } from './ui/Table/interfaces'; export * from './ui/Tabs/interfaces'; export type { TextareaSizeType, TextareaProps } from './ui/Textarea/interfaces'; export type { TooltipProps } from './ui/Tooltip/interfaces'; export type { UploadProps, UploadFile, UploadLocale, UploadType, ShowUploadListInterface, UploadListType, } from './ui/Upload/interfaces'; export * from './form'; export * from './dataTable/fields'; export * from './dataTable/actions'; export * as filtersLocale from './filters/locale'; export * from './actions'; export * from './admin'; export { useDataProvider } from './dataProvider'; export { useNav } from './navigation/NavContext'; export * from './dataProvider/interfaces'; export { useGetIdentity } from './auth'; export * from './auth/interfaces'; export * from './crud'; export * from './crud/interfaces'; export * from './utils/hooks'; export { TopToolbar } from './layout'; export { createRoutesFrom } from './router'; export { useTheme, useThemeVars } from './theme'; export type { ThemeName, ThemePreset } from './theme/interfaces'; export * from './locale';