-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.ts
44 lines (44 loc) · 1.85 KB
/
index.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
// Exportando tipos
export type { BulkActionsDropdownProps } from './src/components/baseComponents/bulkActionsDropdown/types';
export type { IButton as ButtonProps } from './src/components/baseComponents/button/types';
export type { IInputField as InputFieldProps } from './src/components/baseComponents/inputField/types';
export type { IBox as SelectComponentProps } from './src/components/baseComponents/selectComponent/types';
export type { DynamicTableProps, ColumnsType } from './src/components/baseLayouts/dynamicTable/types';
export type { ModalProps } from './src/components/baseLayouts/modals/types';
export type { MultiModalProps } from './src/components/baseLayouts/modals/types';
export type { DownloadScreenLoadingProps } from './src/components/layout/downloadScreenLoading/types';
export type { HeaderPageProps } from './src/components/layout/headerPage/types';
export type { LayoutProps as ScreenLayoutProps } from './src/components/layout/screenLayout/types';
export type { SidebarMenuProps as SidebarProps, MenuItem as SidebarItem, SubMenuItem as SidebarSubItem, FontAwesomeIconType } from './src/components/layout/sidebar/types';
// Exportando componentes
export {
Grid,
Modal,
MultiModal,
DownloadModuleScreenWL,
HeaderPage,
ScreenLayout,
Sidebar,
WarningPageScreenSize,
BulkActionsDropdown,
Button,
InputField,
Select
} from './src/components';
// Exportando traduções
export {
ptBR,
enUS
} from './src/i18n';
// Exportando funções
export {
checkGetRequest,
getService,
postService,
putService,
deleteService,
} from './src/infra/requests';
export { validFields } from './src/helpers/validFields';
export { useHandleErrorMessage } from './src/helpers/handleError';
export { validateCNPJ, validateCPF } from './src/helpers/utils';
export { importCSS } from './src/assets/styles/cssImports';