Releases: NadavShaar/react-grid-table
Releases · NadavShaar/react-grid-table
V.1.1.2
V1.1.0
- support for react 17.0.1 or newer as a peer dependency.
- Fixed issues: #91 #93.
- Added: rowsApi.originalRows - the rows data untouched (in sync mode - the rows data before the search filter)
- Added: searchApi.validSearchText - is an empty string if the searched text did not pass the
minSearchChars
, if it does pass, it will be equal tosearchText
- asyncApi.resetRows - Will now also reset the selected rows and edit row
- paginationApi - Added logic to automatically set the page to be within the range of possible pages
- tableManager - Added logic to filter out selected rows that do not exist in the data anymore
- tableManager - Added logic to reset the edit row if it does no exist in the data anymore
- UI - Replaced the clear selection icon in the footer.
V1.0.2
Fixing onRowsRequest
triggering twice on mount.
v1.0.0
First stable release 🎈
no changes
v0.3.1
- Code formatting using ESlint and prettier.
- Row index bugfix (thanks to divyeshdixitb2 for the fix)
- Minor performance improvements.
v0.3.0
- Major: Removed react-sortable-hoc as a dependency.
- Removed depricated findDOMNode calls.
- Fixed search from breaking when getting a null value.
v0.2.2
- Fixing build issue from
v0.2.1
. this means that the fixes inv0.2.1
will be available only from this version.
v0.2.1
- Adding a unique
id
for the table. this will also fix the issue of row hover triggered in all tables when using multiple tables in the same view. - Fixed issue in Async modes that search is triggering
onRowsRequest
while searching and the search is less thanminSearchChars
. - Fixed issue in Async modes that table will display a loader instead of no results.
v0.2.0
- Major: Fixed regex error in Safari
- Removing indexes from
key
s - Added live CodeSandBox examples to docs
- Added "MIT" license in package.json
v0.1.2
- Docs update: uploaded new demo gif.