Skip to content

v7.0.0-beta.7

Pre-release
Pre-release
Compare
Choose a tag to compare
@alexfauquette alexfauquette released this 14 Mar 15:05
· 36 commits to next since this release
e5e95f3

We'd like to offer a big thanks to the 11 contributors who made this release possible. Here are some highlights ✨:

  • 🦥 The Lazy loading feature is now stable and the lazyLoading feature flag was removed from the experimentalFeatures prop.
  • 🌍 Improve Japanese (ja-JP) locale for the Data Grid
  • 🐞 Bugfixes
  • 📚 Documentation improvements

Data Grid

Breaking changes

  • The columnHeader--showColumnBorder class was replaced by columnHeader--withLeftBorder and columnHeader--withRightBorder.
  • The columnHeadersInner, columnHeadersInner--scrollable, and columnHeaderDropZone classes were removed since the inner wrapper was removed in our effort to simplify the DOM structure and improve accessibility.
  • The pinnedColumnHeaders, pinnedColumnHeaders--left, and pinnedColumnHeaders--right classes were removed along with the element they were applied to.
    The pinned column headers now use position: 'sticky' and are rendered in the same row element as the regular column headers.

@mui/x-data-grid@7.0.0-beta.7

@mui/x-data-grid-pro@7.0.0-beta.7 pro

Same changes as in @mui/x-data-grid@7.0.0-beta.7, plus:

  • [DataGridPro] Add inputRef to the props passed to colDef.renderHeaderFilter (#12328) @vovarudomanenko
  • [DataGridPro] Fix filler rendered for no reason when there are pinned columns (#12440) @cherniavskii
  • [DataGridPro] Make lazy loading feature stable (#12421) @cherniavskii
  • [DataGridPro] Render pinned and non-pinned column headers in one row (#12376) @cherniavskii

@mui/x-data-grid-premium@7.0.0-beta.7 premium

Same changes as in @mui/x-data-grid-pro@7.0.0-beta.7, plus:

  • [DataGridPremium] Fix auto-scroll not working when selecting cell range (#12267) @cherniavskii

Date and Time Pickers

@mui/x-date-pickers@7.0.0-beta.7

@mui/x-date-pickers-pro@7.0.0-beta.7 pro

Same changes as in @mui/x-date-pickers@7.0.0-beta.7.

Charts

@mui/x-charts@7.0.0-beta.7

Tree View

Breaking changes

The onNodeFocus callback has been renamed to onItemFocus for consistency:

 <SimpleTreeView
-  onNodeFocus={onNodeFocus}
+  onItemFocus={onItemFocus}
 />

@mui/x-tree-view@7.0.0-beta.7

Docs

Core