react-table-library icon indicating copy to clipboard operation
react-table-library copied to clipboard

:bento: React Table Library

Results 50 react-table-library issues
Sort by recently updated
recently updated
newest added

## Description Followed the installation steps and tried the basic example from the [Getting Started](https://react-table-library.com/?path=/story/getting-started-installation--page) page on a [Remix](https://remix.run/) application and got this importing issue upon start: ``` Error: Directory...

It seems like the types (presumably generated by rollup) in `@table-library/react-table-library/table/Table/index.d.ts` have broken references to modules within this monorepo: ```ts declare const Table: React.ForwardRefExoticComponent & React.RefAttributes>; ``` [unpkg link](https://www.unpkg.com/browse/@table-library/[email protected]/table/Table/index.d.ts) The...

Hi there, I'm following this example in order to delete a column instead of a row. https://react-table-library.com/?path=/docs/crud--delete For some reason, I'm getting a weird table style after removing one column....

This one line fix to the getting started section of the docs would have saved me an hour: The working code follows, where `forecasts` is an array of data items...

`Row` component accepts `disabled` prop which makes the Row disabled and you can't click on it. However, calling `select.fns.onToggleAll()` , it selects the disabled row as well. Shouldn't it skip...

Added the declarations for the functions to the "state and getters" object in the [following lines](https://github.com/table-library/react-table-library/blob/3b0ddab82cf7c633731087ba9534020ec9099db2/src/pagination/usePagination.ts#L136C1-L141C5) ```src/pagination/usePagination.ts // src/pagination/usePagination.ts const stateAndGetters = { ...state, getTotalPages, getPages, getPageBoundaries, }; ``` So...

I'm creating a table (with product names) in my desktop application using React. To create the table I use the React Table Library (https://react-table-library.com/?path=/story/getting-started-installation--page). I have already customized some settings...

Hello, Great library! Is there a way to support collaborative editing? Thanks.

Hello, I'm trying this library for my table needs and works good so far, I was playing with the `Select` option and was wondering if we could control the select...

I found that when I want to mix the Select feature and FixedColumn feature, the `` and `` components are not working as expected. When I tried add `pinLeft /...