react-table-library
react-table-library copied to clipboard
:bento: React Table Library
Would be good to be able to style the CellTree component a bit more. My specific use case is to move the icon to the end, not the start, of...
Title. I guess it happens because of modifying the state with handleUpdate. If i remove `virtualizedOptions` from the table it keeps the focus as normal. Is this issue known?is there...
As far as I can tell, a tree data object must use the convention that child nodes are all in the `nodes` key. My API uses a different key. It...
Sir can we provide a style props for CellTree typescript interface ?
I am getting this error in Jest when testing a react component that uses react-table-library SyntaxError: Cannot use import statement outside a module 1 | import React from 'react'; >...
I'm trying to figure out how to keep rows selected in a table even after the data refreshes every 10 minutes. Here’s what I’ve got so far: function onSelectChange(action, state)...
Currently useRowSelect's `state` prop behaves as an uncontrolled state only. We had a requirement where we wanted to support controlled selection for the Table selections. Example: ```tsx const [selectedRows, setSelectedRows]...
it seems no data table libraries support resize on mobile devices
Tried using: ``` js const libTheme = getTheme(DEFAULT_OPTIONS); const customTheme = useTheme({ Table: ` --data-table-library_grid-template-columns: 50% 50px 50px; `, }); const theme = useTheme([libTheme, customTheme]); ``` Already tried changing the...