@ackplus/react-tanstack-data-table
Version:
A powerful React data table component built with MUI and TanStack Table
20 lines (19 loc) • 1.27 kB
TypeScript
export { DataTable } from './lib/components/table';
export type { DataTableProps } from './lib/components/table';
export * from './lib/components/headers';
export * from './lib/components/rows';
export * from './lib/components/filters';
export * from './lib/components/pagination';
export * from './lib/components/droupdown/menu-dropdown';
export { ColumnVisibilityControl, ColumnPinningControl, ColumnResetControl, TableExportControl, TableSizeControl, BulkActionsToolbar, DataTableToolbar, } from './lib/components/toolbar';
export type { BulkActionsToolbarProps } from './lib/components/toolbar';
export * from './lib/utils/styling-helpers';
export * from './lib/utils/column-helpers';
export * from './lib/utils/table-helpers';
export * from './lib/hooks';
export * from './lib/types';
export type { Column, ColumnDef, Row, Table, Header, Cell, SortingState, ColumnFiltersState, VisibilityState, ColumnOrderState, ColumnPinningState, PaginationState, } from '@tanstack/react-table';
export * from './lib/features';
export { CustomColumnFilterExample } from './lib/examples/custom-column-filter-example';
export { SimpleLocalExample } from './lib/examples/simple-local-example';
export { AdvancedFeaturesExample } from './lib/examples/advanced-features-example';