table
table copied to clipboard
🤖 Headless UI for building powerful tables & datagrids for TS/JS - React-Table, Vue-Table, Solid-Table, Svelte-Table
Little confusion in the docs **next section** should be **previous section** ## Summary by CodeRabbit * **Documentation** * Corrected a cross-reference in the Defining Columns section to point to the...
Fixes #6093 ## Summary by CodeRabbit - **Bug Fixes** - Fixed an issue with grouped tables where leaf rows were not correctly identified, leading to incorrect or missing aggregated values....
### TanStack Table version 8.21.3 ### Framework/Library version React v19.0 ### Describe the bug and the steps to reproduce it See the implementation here: https://github.com/TanStack/table/blob/9c62cf2024b86c419f7015f963248739bab1b0e7/packages/table-core/src/utils/getGroupedRowModel.ts#L75 ``` // Flatten the leaf...
### TanStack Table version v8.21.3 ### Framework/Library version React 18 ### Describe the bug and the steps to reproduce it By going through the repo, it seems like pivoting used...
Update [TableMeta module declaration](https://tanstack.com/table/v8/docs/api/core/table#meta) with the import statement to match [ColumnMeta module declaration](https://tanstack.com/table/v8/docs/api/core/column-def#meta). For reference, see [#4157](https://github.com/TanStack/table/discussions/4157#discussioncomment-3208313) and [#4104](https://github.com/TanStack/table/discussions/4104#discussioncomment-3208323). ## Summary by CodeRabbit * Documentation * Added a TypeScript example...
This commit addresses https://github.com/TanStack/table/issues/5026/, where react-table is performing a state update on an unmounted component. To address this, we add a useEffect to track whether the component on which the...
### TanStack Table version 8.20.6 ### Framework/Library version 18.3.0 ### Describe the bug and the steps to reproduce it I'd like to implement filters with different operators for columns (e.g.,...
### TanStack Table version v8.21.3 ### Framework/Library version react: v18.2.0 ### Describe the bug and the steps to reproduce it The row selection behavior for parent rows with subRows is...
A new sortEmpty option has been introduced to handle all types of empty values, including null, undefined, and empty strings. The previous sortUndefined option was limited to undefined values and...
Add comprehensive guide for Excel-like sorting behavior Include complete working example with TypeScript Reference community solution from issue #6061 Update API docs to clarify sortUndefined limitations Refs: #6061 ## Summary...