All Versions
54
Latest Version
Avg Release Cycle
13 days
Latest Release
-

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
    • Optional Column props can now also be null in addition to undefined. (PR)
  • 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 access isRowSelected and onRowSelectionChange. (PR)
    • HeaderRendererProps.allRowsSelected tweaks, affecting the SelectColumn: (PR)
      • It will now be false when rows.length === 0 instead of true.
      • selectedRows must contain all the row keys for allRowsSelected to be true, instead of naively comparing the size and length.
    • Optional props on <DataGrid /> can now also be null in addition to undefined. (PR)
  • 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.44 Changes

    • ๐Ÿ’… Use aria-selected to style selected cell/rows (PR)
    • โž• Add support for variable row heights (PR)
  • v7.0.0-canary.43 Changes

    • ๐Ÿ›  Fix aria-readonly (PR)
  • v7.0.0-canary.42 Changes

    • โž• Add missing aria-colspan (PR)
    • โž• Add aria-readonly to readonly cells (PR)
  • v7.0.0-canary.41 Changes

    • ๐Ÿ›  Fix summary row colSpan (PR)
    • HeaderCell: Add missing event parameter to onPointerUp, fix #2305 (PR)
  • v7.0.0-canary.40 Changes

    • โž• Add column.colSpan prop to merge cells (PR)
    • โœ‚ Removed prefixed css properties from the generated style file (PR)
  • v7.0.0-canary.39 Changes

    • โž• Add enableVirtualization prop (PR). Grid renders all the rows/columns when it is set to false.