Skip to content

Commit

Permalink
fix(Table): export actions types (#75)
Browse files Browse the repository at this point in the history
Co-authored-by: alx-chernigin <[email protected]>
  • Loading branch information
kvestus and alx-chernigin authored Oct 23, 2024
1 parent 7fa0c29 commit 88ec66d
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,15 @@ export type {
TableSettingsProps,
} from './components';

export {dragHandleColumn, selectionColumn, getSettingsColumn} from './constants';
export {
dragHandleColumn,
selectionColumn,
getSettingsColumn,
ACTIONS_COLUMN_ID,
getActionsColumn,
SETTINGS_WITH_ACTIONS_COLUMN_ID,
getSettingsWithActionsColumn,
} from './constants';

export {
useDraggableRowDepth,
Expand All @@ -27,3 +35,12 @@ export type {
} from './hooks';

export {getVirtualRowRangeExtractor} from './utils';

export type {
TableAction,
TableActionGroup,
TableActionConfig,
TableRowActionsSize,
RenderRowActionsProps,
TableActionsSettings,
} from './types/RowActions';

0 comments on commit 88ec66d

Please sign in to comment.