What problem does it solve?
It solves the confusion of how to correctly set up a working v9 TanStack Table in Solid, including the required v9 registration of features and row-model factories so the API and types line up.
Core Features & Use Cases
- Typed v9 feature registration: Define
_features via tableFeatures() so only the APIs/state slices you need exist and tree-shaking works as expected.
- Row-model factory wiring: Register the matching factories in
_rowModels (e.g., pagination, sorting, filtering) using the appropriate registries.
- Type-safe column definitions: Create a column helper with the required generic order
typeof _features first, then TData, and build columns with accessor helpers.
- Reactive data + rendering: Use reactive getters for options like
data and render headers/rows with FlexRender to get a complete working table.
Quick Start
Ask the AI to generate a complete Solid v9 table example using tableFeatures(), matching _rowModels, createColumnHelper<typeof _features, TData>(), createTable({ get data() {...} }), and FlexRender for header and cell rendering.