Barrel export file for the **deprecated `table` module**, re-exporting all table-related components, utilities, and TypeScript types. Use `data-table` instead. > ⚠️ **Deprecated:** This module is deprecated. Migrate to the `data-table` module. ## Key Components | Export | Type | Description | |--------|------|-------------| | `Table` | Component | Root table container | | `TableCell` | Component | Individual cell renderer | | `TableRow` | Component | Table row wrapper | | `TableHeader` | Component | Column header row | | `TableDescriptionCell` | Component | Cell with descriptive text layout | | `TableTimestampCell` | Component | Cell formatted for timestamps | | `TableEmptyState` | Component | Empty state placeholder | | `TableColumnFilterDropdown` | Component | Column filter dropdown UI | | `TableCardSkeleton` | Component | Loading skeleton for table cards | | `ROW_HEIGHT_DESKTOP` / `ROW_HEIGHT_MOBILE` | Constant | Row height tokens per breakpoint | | `getHideClasses` / `isHiddenOnMobile` | Utility | Tailwind responsive visibility helpers | ## Key Types `TableProps`, `TableColumn`, `TableCellProps`, `TableRowProps`, `TableHeaderProps`, `BulkAction`, `RowAction`, `FilterOption`, `FilterSection`, `TableFilters`, `CursorPagination`, `PagePagination`, `InfiniteScrollConfig`, `TableEmptyStateProps`, `TableCardSkeletonProps`, `TailwindBreakpoint` ## Usage Example ```typescript // ⚠️ Deprecated — prefer `data-table` import { Table, TableRow, TableCell, TableHeader, TableEmptyState, type TableProps, type TableColumn, } from './table' const columns: TableColumn[] = [ { key: 'name', label: 'Name' }, { key: 'status', label: 'Status' }, ] ```