What problem does it solve?
It removes the confusion and breakage caused by TanStack Table v8-to-v9 API changes in Angular, so you can update your implementation without guessing which options and types moved where.
Core Features & Use Cases
- Mechanical v8 → v9 translation patterns for Angular including entrypoint changes from createAngularTable to injectTable.
- Required v9 configuration wiring that enables features via _features and row models via _rowModels, preventing silent non-working behavior.
- Type and naming updates such as sortFn/sortFns renames, column helper generic order changes, and sizing/resizing state splits (columnSizingInfo → columnResizing).
- Reactivity and state access guidance for Angular signals, including replacing table.getState() with table.store.state and using per-slice atoms.
Quick Start
Ask the AI to convert your current @tanstack/angular-table v8 integration to a working v9 injectTable setup by updating entrypoints, _features/_rowModels, state handling, and all renamed types and options.