🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
DemoInstallSign in
Socket

@tanstack/table-core

Package Overview
Dependencies
Maintainers
1
Versions
197
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@tanstack/table-core

Headless UI for building powerful tables & datagrids for TS/JS.

8.0.0-beta.3
Source
npm
Version published
Weekly downloads
3.7M
-4.91%
Maintainers
1
Weekly downloads
 
Created

What is @tanstack/table-core?

The @tanstack/table-core npm package is a headless utility for building powerful tables and datagrid experiences. It provides the core logic needed to manage the state and features of a table without enforcing any rendering or styling, allowing developers to build fully customized tables.

What are @tanstack/table-core's main functionalities?

Column Ordering

This feature allows users to define the order of columns in their table. The code sample demonstrates how to use the useTable hook to create a table instance and render the headers based on the defined column order.

{"useTable": ("hooks, columns, data") => {"const instance = useTable({"columns, data"});"return instance.getHeaderGroups().map(headerGroup => headerGroup.headers.map(column => column.render('Header')));"}}

Row Selection

This feature enables row selection within a table. The code sample shows how to use the useRow hook to get the props necessary for toggling row selection and how to apply them to a row component.

{"useTable": ("hooks, columns, data") => {"const {"getToggleRowSelectedProps"} = useRow();"return data.map(row => {"const rowProps = row.getToggleRowSelectedProps();"return <div {...rowProps}>{row.values.name}</div>;"});"}}

Sorting

This feature allows users to sort data in the table by one or more columns. The code sample illustrates how to initialize a table with sorting on the 'name' column and how to get the props needed to toggle sorting on a header component.

{"useTable": ("hooks, columns, data") => {"const {"headers"} = useTable({"columns, data, initialState: {"sortBy: [{"id": 'name', "desc": false}]"}});"return headers.map(column => column.getSortByToggleProps());"}}

Other packages similar to @tanstack/table-core

Keywords

react

FAQs

Package last updated on 29 May 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts