https://github.com/xebec19/tanstack-table
learning tanstack table library
https://github.com/xebec19/tanstack-table
Last synced: 4 months ago
JSON representation
learning tanstack table library
- Host: GitHub
- URL: https://github.com/xebec19/tanstack-table
- Owner: Xebec19
- Created: 2023-08-17T15:10:54.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-12-13T06:31:21.000Z (over 1 year ago)
- Last Synced: 2025-01-08T04:37:00.952Z (5 months ago)
- Language: TypeScript
- Size: 56.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### Comman components
The table core uses the following abstractions, commonly exposed by adapters:
- Column Defs
Objects used to configure a column and its data model, display templates, and more
- Table
The core table object containing both state and API
- Table Data
The core data array you provide the table
- Columns
Each column mirrors its respective column def and also provides column-specific APIs
- Rows
Each row mirrors its respective row data and provides row-specific APIs
- Header Groups
Header groups are computed slices of nested header levels, each containing a group of headers
- Headers
Each header is either directly associated with or derived from its column def and provides header-specific APIs
- Cells
Each cell mirrors its respective row-column intersection and provides cell-specific APIs