@ackplus/react-tanstack-data-table
Version:
A powerful React data table component built with MUI and TanStack Table
16 lines • 642 B
TypeScript
import { ToolbarProps, SxProps } from '@mui/material';
import { ReactNode, ReactElement } from 'react';
import { SelectionState } from '../../features';
export interface BulkActionsToolbarProps extends ToolbarProps {
selectionState: SelectionState;
selectedRowCount: number;
bulkActions?: (selectionState: SelectionState) => ReactNode;
chipProps?: any;
containerSx?: SxProps;
leftSectionSx?: SxProps;
rightSectionSx?: SxProps;
fadeProps?: any;
[key: string]: any;
}
export declare function BulkActionsToolbar(props: BulkActionsToolbarProps): ReactElement;
//# sourceMappingURL=bulk-actions-toolbar.d.ts.map