Skip to content

Commit

Permalink
Utilizacao: ajustando utilizacao de modulos
Browse files Browse the repository at this point in the history
Utilizacao: ajustando utilizacao de modulos da lib
  • Loading branch information
fonteeboa committed May 15, 2024
1 parent 38fc63e commit d1efcdd
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ export type { BulkActionsDropdownProps } from './src/components/baseComponents/b
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 } from './src/components/baseLayouts/dynamicTable/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 } from './src/components/layout/sidebar/types';
export type { SidebarMenuProps as SidebarProps, MenuItem as SidebarItem, SubMenuItem as SidebarSubItem, FontAwesomeIconType } from './src/components/layout/sidebar/types';
// Exportando componentes
export {
Grid,
Expand Down
1 change: 1 addition & 0 deletions src/components/baseLayouts/dynamicTable/types/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import type { ColumnsType } from 'antd/es/table';
import { Action } from '../../../baseComponents/bulkActionsDropdown/types';
export { ColumnsType };

export interface DynamicTableProps<T> {
dataSource: T[];
Expand Down
2 changes: 1 addition & 1 deletion src/components/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export type { IBox as SelectComponentProps } from './baseComponents/selectCompon

// Exportando layouts base e seus tipos, se houver
export { default as Grid } from './baseLayouts/dynamicTable';
export type { DynamicTableProps } from './baseLayouts/dynamicTable/types';
export type { DynamicTableProps, ColumnsType } from './baseLayouts/dynamicTable/types';
export { ModalFormHandler as Modal } from './baseLayouts/modals/modalFormHandler';
export type { ModalProps } from './baseLayouts/modals/types';
export { MultiModalFormHandler as MultiModal } from './baseLayouts/modals/multiModalFormHandler';
Expand Down

0 comments on commit d1efcdd

Please sign in to comment.