All Versions
54
Latest Version
Avg Release Cycle
13 days
Latest Release
-
Changelog History
Page 1
Changelog History
Page 1
-
v7.0.0-canary.48 Changes
- ๐ Fixed an edge case where clicking outside the grid wouldn't close and commit an open editor quickly enough, resulting in the previous rows state being used by parent components in
click
handlers. (PR) - ๐ Support for filters has been removed, along with: (PR)
- The
<DataGrid />
props:headerFiltersHeight
,filters
,onFiltersChange
,enableFilterRow
Column.filterRenderer
- The exports:
FilterRendererProps
,Filters
- The
- Optional
Column
props can now also benull
in addition toundefined
. (PR)
- ๐ Fixed an edge case where clicking outside the grid wouldn't close and commit an open editor quickly enough, resulting in the previous rows state being used by parent components in
-
v7.0.0-canary.47 Changes
- โ Added a third, optional generic on
<DataGrid />
to specify the row key type. (PR) - โ Added the
useRowSelection
hook for custom cell renderers to accessisRowSelected
andonRowSelectionChange
. (PR) HeaderRendererProps.allRowsSelected
tweaks, affecting theSelectColumn
: (PR)- It will now be
false
whenrows.length === 0
instead oftrue
. selectedRows
must contain all the row keys forallRowsSelected
to betrue
, instead of naively comparing thesize
andlength
.
- It will now be
- Optional props on
<DataGrid />
can now also benull
in addition toundefined
. (PR)
- โ Added a third, optional generic on
-
v7.0.0-canary.46 Changes
- โก๏ธ Optimize onRowsChange: only update changed rows (PR)
-
v7.0.0-canary.45 Changes
- ๐ Fixed issue where the scrollbars would flicker in edge cases (PR)
-
v7.0.0-canary.43 Changes
- ๐ Fix
aria-readonly
(PR)
- ๐ Fix
-
v7.0.0-canary.39 Changes
- โ Add
enableVirtualization
prop (PR). Grid renders all the rows/columns when it is set to false.
- โ Add