@mui/x-data-grid-premium 8.0.0-alpha.1 → 8.0.0-alpha.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (119) hide show
  1. package/CHANGELOG.md +1903 -231
  2. package/DataGridPremium/DataGridPremium.js +40 -40
  3. package/DataGridPremium/useDataGridPremiumComponent.d.ts +2 -2
  4. package/DataGridPremium/useDataGridPremiumComponent.js +4 -2
  5. package/DataGridPremium/useDataGridPremiumProps.js +5 -3
  6. package/README.md +1 -1
  7. package/components/GridAggregationHeader.js +6 -1
  8. package/components/GridColumnMenuAggregationItem.js +77 -49
  9. package/components/GridColumnMenuRowGroupItem.js +5 -11
  10. package/components/GridColumnMenuRowUngroupItem.js +10 -19
  11. package/components/GridDataSourceGroupingCriteriaCell.js +1 -2
  12. package/components/GridPremiumColumnMenu.d.ts +1 -1
  13. package/components/GridPremiumColumnMenu.js +5 -5
  14. package/components/promptControl/GridToolbarPromptControl.js +47 -36
  15. package/esm/DataGridPremium/DataGridPremium.js +42 -42
  16. package/esm/DataGridPremium/useDataGridPremiumComponent.js +5 -3
  17. package/esm/DataGridPremium/useDataGridPremiumProps.js +6 -4
  18. package/esm/components/GridAggregationHeader.js +6 -1
  19. package/esm/components/GridColumnMenuAggregationItem.js +75 -47
  20. package/esm/components/GridColumnMenuRowGroupItem.js +6 -11
  21. package/esm/components/GridColumnMenuRowUngroupItem.js +11 -19
  22. package/esm/components/GridDataSourceGroupingCriteriaCell.js +1 -2
  23. package/esm/components/GridPremiumColumnMenu.js +5 -5
  24. package/esm/components/promptControl/GridToolbarPromptControl.js +47 -36
  25. package/esm/hooks/features/aggregation/createAggregationLookup.js +52 -55
  26. package/esm/hooks/features/aggregation/gridAggregationUtils.js +17 -13
  27. package/esm/hooks/features/aggregation/index.js +0 -1
  28. package/esm/hooks/features/aggregation/useGridAggregation.js +22 -10
  29. package/esm/hooks/features/aggregation/useGridAggregationPreProcessors.js +8 -14
  30. package/esm/hooks/features/cellSelection/useGridCellSelection.js +5 -6
  31. package/esm/hooks/features/clipboard/useGridClipboardImport.js +1 -1
  32. package/esm/hooks/features/dataSource/cache.js +3 -0
  33. package/esm/hooks/features/dataSource/models.js +1 -0
  34. package/esm/hooks/features/dataSource/useGridDataSourcePremium.js +53 -0
  35. package/esm/hooks/features/rowGrouping/createGroupingColDef.js +5 -1
  36. package/esm/hooks/features/rowGrouping/gridRowGroupingUtils.js +2 -2
  37. package/esm/hooks/features/rowGrouping/useGridRowGrouping.js +2 -2
  38. package/esm/hooks/features/rowGrouping/useGridRowGroupingPreProcessors.js +9 -4
  39. package/esm/hooks/utils/useGridAriaAttributes.js +1 -3
  40. package/esm/hooks/utils/useKeepGroupedColumnsHidden.js +2 -2
  41. package/esm/utils/releaseInfo.js +1 -1
  42. package/hooks/features/aggregation/createAggregationLookup.d.ts +7 -6
  43. package/hooks/features/aggregation/createAggregationLookup.js +52 -55
  44. package/hooks/features/aggregation/gridAggregationInterfaces.d.ts +18 -5
  45. package/hooks/features/aggregation/gridAggregationSelectors.d.ts +2 -2
  46. package/hooks/features/aggregation/gridAggregationUtils.d.ts +12 -13
  47. package/hooks/features/aggregation/gridAggregationUtils.js +17 -13
  48. package/hooks/features/aggregation/index.d.ts +1 -1
  49. package/hooks/features/aggregation/index.js +0 -12
  50. package/hooks/features/aggregation/useGridAggregation.d.ts +2 -2
  51. package/hooks/features/aggregation/useGridAggregation.js +22 -10
  52. package/hooks/features/aggregation/useGridAggregationPreProcessors.d.ts +2 -2
  53. package/hooks/features/aggregation/useGridAggregationPreProcessors.js +8 -14
  54. package/hooks/features/aggregation/wrapColumnWithAggregation.d.ts +3 -2
  55. package/hooks/features/cellSelection/gridCellSelectionInterfaces.d.ts +3 -3
  56. package/hooks/features/cellSelection/useGridCellSelection.d.ts +2 -2
  57. package/hooks/features/cellSelection/useGridCellSelection.js +4 -5
  58. package/hooks/features/clipboard/useGridClipboardImport.d.ts +2 -2
  59. package/hooks/features/clipboard/useGridClipboardImport.js +1 -1
  60. package/hooks/features/dataSource/cache.d.ts +2 -0
  61. package/hooks/features/dataSource/cache.js +9 -0
  62. package/hooks/features/dataSource/models.d.ts +47 -0
  63. package/hooks/features/dataSource/models.js +5 -0
  64. package/hooks/features/dataSource/useGridDataSourcePremium.d.ts +4 -0
  65. package/hooks/features/dataSource/useGridDataSourcePremium.js +62 -0
  66. package/hooks/features/export/serializer/excelSerializer.d.ts +3 -2
  67. package/hooks/features/export/useGridExcelExport.d.ts +2 -2
  68. package/hooks/features/rowGrouping/createGroupingColDef.d.ts +2 -2
  69. package/hooks/features/rowGrouping/createGroupingColDef.js +5 -1
  70. package/hooks/features/rowGrouping/gridRowGroupingSelector.d.ts +2 -2
  71. package/hooks/features/rowGrouping/gridRowGroupingUtils.d.ts +4 -4
  72. package/hooks/features/rowGrouping/gridRowGroupingUtils.js +1 -1
  73. package/hooks/features/rowGrouping/useGridDataSourceRowGroupingPreProcessors.d.ts +2 -2
  74. package/hooks/features/rowGrouping/useGridRowGrouping.d.ts +2 -2
  75. package/hooks/features/rowGrouping/useGridRowGrouping.js +1 -1
  76. package/hooks/features/rowGrouping/useGridRowGroupingPreProcessors.d.ts +2 -2
  77. package/hooks/features/rowGrouping/useGridRowGroupingPreProcessors.js +9 -4
  78. package/hooks/utils/useGridApiContext.d.ts +1 -1
  79. package/hooks/utils/useGridApiRef.d.ts +3 -1
  80. package/hooks/utils/useGridAriaAttributes.js +1 -3
  81. package/hooks/utils/useGridPrivateApiContext.d.ts +1 -1
  82. package/hooks/utils/useKeepGroupedColumnsHidden.d.ts +2 -2
  83. package/hooks/utils/useKeepGroupedColumnsHidden.js +2 -2
  84. package/index.d.ts +2 -0
  85. package/index.js +1 -1
  86. package/models/dataGridPremiumProps.d.ts +8 -12
  87. package/models/gridApiPremium.d.ts +5 -3
  88. package/models/gridGroupingValueGetter.d.ts +2 -1
  89. package/models/gridPastedValueParser.d.ts +2 -1
  90. package/modern/DataGridPremium/DataGridPremium.js +42 -42
  91. package/modern/DataGridPremium/useDataGridPremiumComponent.js +5 -3
  92. package/modern/DataGridPremium/useDataGridPremiumProps.js +6 -4
  93. package/modern/components/GridAggregationHeader.js +6 -1
  94. package/modern/components/GridColumnMenuAggregationItem.js +75 -47
  95. package/modern/components/GridColumnMenuRowGroupItem.js +6 -11
  96. package/modern/components/GridColumnMenuRowUngroupItem.js +11 -19
  97. package/modern/components/GridDataSourceGroupingCriteriaCell.js +1 -2
  98. package/modern/components/GridPremiumColumnMenu.js +5 -5
  99. package/modern/components/promptControl/GridToolbarPromptControl.js +47 -36
  100. package/modern/hooks/features/aggregation/createAggregationLookup.js +52 -55
  101. package/modern/hooks/features/aggregation/gridAggregationUtils.js +17 -13
  102. package/modern/hooks/features/aggregation/index.js +0 -1
  103. package/modern/hooks/features/aggregation/useGridAggregation.js +22 -10
  104. package/modern/hooks/features/aggregation/useGridAggregationPreProcessors.js +8 -14
  105. package/modern/hooks/features/cellSelection/useGridCellSelection.js +5 -6
  106. package/modern/hooks/features/clipboard/useGridClipboardImport.js +1 -1
  107. package/modern/hooks/features/dataSource/cache.js +3 -0
  108. package/modern/hooks/features/dataSource/models.js +1 -0
  109. package/modern/hooks/features/dataSource/useGridDataSourcePremium.js +53 -0
  110. package/modern/hooks/features/rowGrouping/createGroupingColDef.js +5 -1
  111. package/modern/hooks/features/rowGrouping/gridRowGroupingUtils.js +2 -2
  112. package/modern/hooks/features/rowGrouping/useGridRowGrouping.js +2 -2
  113. package/modern/hooks/features/rowGrouping/useGridRowGroupingPreProcessors.js +9 -4
  114. package/modern/hooks/utils/useGridAriaAttributes.js +1 -3
  115. package/modern/hooks/utils/useKeepGroupedColumnsHidden.js +2 -2
  116. package/modern/index.js +1 -1
  117. package/modern/utils/releaseInfo.js +1 -1
  118. package/package.json +6 -6
  119. package/utils/releaseInfo.js +1 -1
package/CHANGELOG.md CHANGED
@@ -5,340 +5,2012 @@
5
5
  All notable changes to this project will be documented in this file.
6
6
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
7
7
 
8
- ## v8.0.0-alpha.1
8
+ ## 8.0.0-alpha.10
9
9
 
10
- _Nov 22, 2024_
10
+ _Jan 30, 2025_
11
11
 
12
- We'd like to offer a big thanks to the 16 contributors who made this release possible. Here are some highlights ✨:
12
+ We'd like to offer a big thanks to the 10 contributors who made this release possible. Here are some highlights ✨:
13
13
 
14
- - 🔧 Refactor Tooltip customisation for charts [Learn more](https://next.mui.com/x/react-charts/tooltip/#overriding-content).
15
- - ⚛️ React 19 support
16
- - 🌍 Improve Chinese, Spanish, and Swedish locale on the Data Grid component
17
- - 🐞 Bugfixes
14
+ - 🎨 Data Grid theming improvements and default background color
18
15
  - 📚 Documentation improvements
19
-
20
- ### Breaking change
16
+ - 🐞 Bugfixes
21
17
 
22
18
  Special thanks go out to the community contributors who have helped make this release possible:
23
- @CarlosLopezLg, @headironc, @hendrikpeilke, @k-rajat19, @lhilgert9, @viktormelin.
19
+ @k-rajat19, @lauri865, @mateuseap.
24
20
  Following are all team members who have contributed to this release:
25
- @alexfauquette, @arthurbalduini, @cherniavskii, @flaviendelangle, @JCQuintas, @LukasTy, @MBilalShafi, @oliviertassinari, @KenanYusuf, @arminmeh.
21
+ @alexfauquette, @flaviendelangle, @JCQuintas, @KenanYusuf, @MBilalShafi, @romgrk, @arminmeh.
26
22
 
27
23
  <!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
28
24
 
29
25
  ### Data Grid
30
26
 
31
- #### `@mui/x-data-grid@v8.0.0-alpha.1`
27
+ ### Breaking changes
32
28
 
33
- - [DataGrid] React 19 support (#15342) @arminmeh
34
- - [DataGrid] Add prop to override search input props in `GridColumnsManagement` (#15347) @k-rajat19
35
- - [DataGrid] Add test coverage for issues fixed in #15184 (#15282) @MBilalShafi
36
- - [DataGrid] Change default loading overlay variants (#15504) @KenanYusuf
37
- - [DataGrid] Fix last separator not being hidden when grid is scrollable (#15543) @KenanYusuf
38
- - [DataGrid] Fix right column group header border with virtualization (#15470) @hendrikpeilke
39
- - [DataGrid] Fix row-spanning in combination with column-pinning (#15368) @lhilgert9
40
- - [l10n] Improve Chinese (zh-CN) locale (#15365) @headironc
41
- - [l10n] Improve Spanish (es-ES) locale (#15369) @CarlosLopezLg
42
- - [l10n] Improve Swedish (sv-SE) locale (#15371) @viktormelin
29
+ - `viewportInnerSize.width` now includes pinned columns' widths (fixes recursive loops in updating dimensions <-> columns)
30
+ - The Data Grid now has a default background color, and its customization has moved from `theme.mixins.MuiDataGrid` to `theme.palette.DataGrid` with the following properties:
43
31
 
44
- #### `@mui/x-data-grid-pro@v8.0.0-alpha.1` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
32
+ - `bg`: Sets the background color of the entire grid (new property)
33
+ - `headerBg`: Sets the background color of the header (previously named `containerBackground`)
34
+ - `pinnedBg`: Sets the background color of pinned rows and columns (previously named `pinnedBackground`)
45
35
 
46
- Same changes as in `@mui/x-data-grid@v8.0.0-alpha.1`.
36
+ ```diff
37
+ const theme = createTheme({
38
+ - mixins: {
39
+ - MuiDataGrid: {
40
+ - containerBackground: '#f8fafc',
41
+ - pinnedBackground: '#f1f5f9',
42
+ - },
43
+ - },
44
+ + palette: {
45
+ + DataGrid: {
46
+ + bg: '#f8fafc',
47
+ + headerBg: '#e2e8f0',
48
+ + pinnedBg: '#f1f5f9',
49
+ + },
50
+ + },
51
+ });
52
+ ```
53
+ - The `detailPanels`, `pinnedColumns`, and `pinnedRowsRenderZone` classes have been removed.
54
+ - Return type of the `useGridApiRef()` hook and the type of `apiRef` prop are updated to explicitly include the possibilty of `null`. In addition to this, `useGridApiRef()` returns a reference that is initialized with `null` instead of `{}`.
47
55
 
48
- #### `@mui/x-data-grid-premium@v8.0.0-alpha.1` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
56
+ Only the initial value and the type are updated. Logic that initializes the API and its availability remained the same, which means that if you could access API in a particular line of your code before, you are able to access it as well after this change.
49
57
 
50
- Same changes as in `@mui/x-data-grid-pro@v8.0.0-alpha.1`, plus:
58
+ Depending on the context in which the API is being used, you can decide what is the best way to deal with `null` value. Some options are:
51
59
 
52
- - [DataGridPremium] Prompt input control (#15401) @arminmeh
60
+ - Use optional chaining
61
+ - Use non-null assertion operator if you are sure your code is always executed when the `apiRef` is not `null`
62
+ - Return early if `apiRef` is `null`
63
+ - Throw an error if `apiRef` is `null`
53
64
 
54
- ### Date and Time Pickers
65
+ #### `@mui/x-data-grid@8.0.0-alpha.10`
55
66
 
56
- #### Breaking change
67
+ - [DataGrid] Fix `renderContext` calculation with scroll bounce / over-scroll (#16297) @lauri865
68
+ - [DataGrid] Remove unused classes from `gridClasses` (#16256) @mateuseap
69
+ - [DataGrid] Add default background color to grid (#16066) @KenanYusuf
70
+ - [DataGrid] Add missing style overrides (#16272) @KenanYusuf
71
+ - [DataGrid] Add possibility of `null` in the return type of the `useGridApiRef()` hook (#16353) @arminmeh
72
+ - [DataGrid] Fix header filters keyboard navigation when there are no rows (#16126) @k-rajat19
73
+ - [DataGrid] Fix order of `onClick` prop on toolbar buttons (#16356) @KenanYusuf
74
+ - [DataGrid] Refactor row state propagation (#15627) @lauri865
75
+ - [DataGrid] Refactor: create TextField props (#16174) @romgrk
76
+ - [DataGrid] Remove outdated warning (#16360) @MBilalShafi
77
+ - [DataGrid] Respect width of `iconContainer` during autosizing (#16399) @michelengelen
57
78
 
58
- - The `FieldValueType` type has been renamed to `PickerValueType` — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#renamed-variables).
59
- - The `toolbar` and `layout` slots no longer receive the `disabled` and `readOnly` props — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#slots-breaking-changes).
79
+ #### `@mui/x-data-grid-pro@8.0.0-alpha.10` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
60
80
 
61
- #### `@mui/x-date-pickers@v8.0.0-alpha.1`
81
+ Same changes as in `@mui/x-data-grid@8.0.0-alpha.10`, plus:
62
82
 
63
- - [fields] Fix focus management with new DOM structure (#15475) @flaviendelangle
64
- - [pickers] React 19 support (#15342) @arminmeh
65
- - [pickers] Add new properties to `PickerOwnerState` and `PickerContextValue` (#15415) @flaviendelangle
66
- - [pickers] Always use `props.value` when it changes (#15490) @flaviendelangle
67
- - [pickers] Ensure internal value timezone is updated (#15435) @LukasTy
68
- - [pickers] Fix unused code in `<PickersToolbar />` component (#15515) @LukasTy
69
- - [pickers] Remove `FieldValueType` in favor of `PickerValueType` (#15259) @arthurbalduini
70
- - [pickers] Remove the form props from the layout and the toolbar slots (#15492) @flaviendelangle
71
- - [pickers] Use `props.referenceDate` timezone when `props.value` and `props.defaultValue` are not defined (#15532) @flaviendelangle
72
- - [TimePicker] Prevent mouse events after `touchend` event (#15346) @arthurbalduini
83
+ - [DataGridPro] Fetch new rows only once when multiple models are changed in one cycle (#16101) @arminmeh
84
+ - [DataGridPro] Fix the return type of `useGridApiRef` for Pro and Premium packages on React < 19 (#16328) @arminmeh
73
85
 
74
- #### `@mui/x-date-pickers-pro@v8.0.0-alpha.1` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
86
+ #### `@mui/x-data-grid-premium@8.0.0-alpha.10` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
75
87
 
76
- Same changes as in `@mui/x-date-pickers@v8.0.0-alpha.1`, plus:
88
+ Same changes as in `@mui/x-data-grid-pro@8.0.0-alpha.10`.
77
89
 
78
- - [DateTimeRangePicker] Use time in `referenceDate` when selecting date (#15429) @LukasTy
90
+ ### Date and Time Pickers
79
91
 
80
- ### Charts
92
+ #### Breaking changes
81
93
 
82
- #### Breaking change
94
+ - The component passed to the `field` slot no longer receives the `ref`, `disabled`, `className`, `sx`, `label`, `name`, `formatDensity`, `enableAccessibleFieldDOMStructure`, `selectedSections`, `onSelectedSectionsChange` and `inputRef` props — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#slot-field)
95
+ - The `MuiPickersPopper` theme entry have been renamed `MuiPickerPopper` and some of its props have been removed — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#muipickerspopper)
83
96
 
84
- - The DX of the Tooltip customization has been refactored
85
- - The `tooltip` prop has been removed in favor of `slotProps.tooltip` for consistency.
86
- - The `popper`, `axisContent`, and `itemContent` slots have been removed in favor of the `tooltip` slot which overrides the entire tooltip.
87
- - To override the tooltip content, use the `useItemTooltip` or `useAxisTooltip` hook to get the data, and wrap your component in `ChartsTooltipContainer` to follow the pointer position.
88
- - To override the tooltip placement, use the `ChartsItemTooltipContent` or `ChartsItemTooltipContent` to get default data and place them in your custom tooltip.
97
+ #### `@mui/x-date-pickers@8.0.0-alpha.10`
89
98
 
90
- - The library now uses the SVG `filter` attribute instead of `d3-color` for color manipulation.
91
- - This modification impacts the `LinePlot`, `AreaPlot`, and `BarPlot` components.
92
- If you've customized the `fill` of those elements, you might need to override it by using the CSS `filter`.
93
- - The `theme.styleOverride` is removed for `MuiLineElement`, `MuiAreaElement`, and `MuiBarElement` to improve performance.
94
- You can still target those elements by using the `MuiLinePlot`, `MuiAreaPlot`, and `MuiBarPlot` and target the appropriate classes `lineElementClasses.root`, `areaElementClasses.root`, `barElementClasses.root`
99
+ - [pickers] Clean the internals and the public API of `<PickersPopper />` (#16319) @flaviendelangle
100
+ - [pickers] Improve the JSDoc of the `PickerContextValue` properties (#16327) @flaviendelangle
101
+ - [pickers] Move more field props to the context (#16278) @flaviendelangle
102
+ - [pickers] Do not close the picker when doing keyboard editing (#16402) @flaviendelangle
95
103
 
96
- - Removed the `resolveSizeBeforeRender` prop from all chart components — [Learn more](https://next.mui.com/x/migration/migration-charts-v7/#remove-resolvesizebeforerender-prop).
97
- - Removed `width` and `height` props from the `ChartsSurface` component.
98
- - Removed the `viewport` prop from all charts.
104
+ #### `@mui/x-date-pickers-pro@8.0.0-alpha.10` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
99
105
 
100
- #### `@mui/x-charts@v8.0.0-alpha.1`
106
+ Same changes as in `@mui/x-date-pickers@8.0.0-alpha.10`.
101
107
 
102
- - [charts] React 19 support (#15342) @arminmeh
103
- - [charts] Decouple `<ChartDataProvider />` and `<ChartsSurface />` (#15375) @JCQuintas
104
- - [charts] Fix Scatter Chart tooltip wrong defaults (#15537) @JCQuintas
105
- - [charts] Fix key generation for the `<ChartsGrid />` component (#15463) @alexfauquette
106
- - [charts] Improve `<SvgRefProvider />` to split the received ref (#15424) @JCQuintas
107
- - [charts] Move interaction state in store (#15426) @alexfauquette
108
- - [charts] Refactor Tooltip customisation (#15154) @alexfauquette
109
- - [charts] Remove intrinsic size requirement (#15471) @JCQuintas
110
- - [charts] Replace `d3-color` with CSS filter for highlight (#15084) @alexfauquette
111
- - [charts] Split `<DrawingProvider />` into `<DrawingAreaProvider />` and `<SvgRefProvider />` (#15417) @JCQuintas
108
+ ### Charts
112
109
 
113
- #### `@mui/x-charts-pro@v8.0.0-alpha.1` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
110
+ #### Breaking changes
114
111
 
115
- Same changes as in `@mui/x-charts@v8.0.0-alpha.1`.
112
+ - Replace `legend.position.horizontal` from `"left" | "middle" | "right"` to `"start" | "center" | "end"`.
113
+ This is to align with the CSS values and reflect the RTL ability of the legend component.
114
+ - The default colors have changed. To keep using the old palette. It is possible to import `blueberryTwilightPalette` from `@mui/x-charts/colorPalettes` and set it on the `colors` property of charts.
115
+ - The `id` property is now optional on the `Pie` and `Scatter` data types.
116
+
117
+ #### `@mui/x-charts@8.0.0-alpha.10`
118
+
119
+ - [charts] Add new `bumpX` and `bumpY` curve options (#16318) @JCQuintas
120
+ - [charts] Move `tooltipGetter` to `seriesConfig` (#16331) @JCQuintas
121
+ - [charts] Move item highligh feature to plugin system (#16211) @alexfauquette
122
+ - [charts] Replace `legend.position.horizontal` from `"left" | "middle" | "right"` to `"start" | "center" | "end"` (#16315) @JCQuintas
123
+ - [charts] New default colors (#16373) @JCQuintas
124
+ - [charts] Make `id` optional on `PieValueType` and `ScatterValueType` (#16389) @JCQuintas
125
+
126
+ #### `@mui/x-charts-pro@8.0.0-alpha.10` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
127
+
128
+ Same changes as in `@mui/x-charts@8.0.0-alpha.10`.
116
129
 
117
130
  ### Tree View
118
131
 
119
- #### Breaking changes
132
+ #### `@mui/x-tree-view@8.0.0-alpha.10`
120
133
 
121
- - The Tree Item component can no longer use `publicAPI` methods in the `render` because they are now memoized — [Learn more](https://next.mui.com/x/migration/migration-tree-view-v7/#stop-using-publicapi-methods-in-the-render).
134
+ Internal changes.
122
135
 
123
- #### `@mui/x-tree-view@v8.0.0-alpha.1`
136
+ #### `@mui/x-tree-view-pro@8.0.0-alpha.10` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
124
137
 
125
- - [TreeView] React 19 support (#15342) @arminmeh
126
- - [TreeView] Do not re-render every Tree Item when the Rich Tree View re-renders (introduce selectors) (#14210) @flaviendelangle
127
- - [TreeView] Remove `treeId` from the item context (#15542) @flaviendelangle
128
- - [TreeView] Remove state mutation in `moveItemInTree()` (#15539) @flaviendelangle
129
- - [TreeItem] Correct the typing of `slotProps.groupTransition` (#15534) @flaviendelangle
138
+ Same changes as in `@mui/x-tree-view@8.0.0-alpha.10`.
130
139
 
131
140
  ### Docs
132
141
 
133
- - [docs] Fix some migration typos (#15422) @LukasTy
134
- - [docs] Fix typo in migration guide (#15508) @flaviendelangle
135
- - [docs] Fix 301 redirection in docs @oliviertassinari
136
- - [docs] Polish Server-side data section (#15330) @oliviertassinari
137
- - [docs] Use loading state in the demos (#15512) @cherniavskii
142
+ - [docs] Improve release documentation (#16321) @MBilalShafi
138
143
 
139
144
  ### Core
140
145
 
141
- - [core] Keep OpenSSF badge up-to-date @oliviertassinari
142
- - [code-infra] Add `'DensitySelectorGrid'` to time-sensitive argos tests (#15425) @JCQuintas
143
- - [code-infra] Add documentation to internal types (#15540) @JCQuintas
144
- - [code-infra] Prevent relative imports across packages (#15437) @JCQuintas
145
- - [code-infra] Update renovate config to merge `action` pins (#15462) @LukasTy
146
- - [docs-infra] Fix version tooltip (#15468) @alexfauquette
147
- - [docs-infra] Transpile `.ts` demo files (#15345) @KenanYusuf
148
- - [infra] Remove cherry-pick issue write permission (#15456) @oliviertassinari
149
-
150
- ## 8.0.0-alpha.0
146
+ - [core] Reduce chart perf benchmark weight (#16374) @alexfauquette
147
+ - [test] Fix console warnings while executing tests with React 18 (#16386) @arminmeh
148
+ - [test] Fix flaky data source tests in DataGrid (#16395) @lauri865
151
149
 
152
- <img width="100%" alt="MUI X v8 Alpha is live" src="https://github.com/user-attachments/assets/114cf615-b617-435f-8499-76ac3c26c57b">
150
+ ## 8.0.0-alpha.9
153
151
 
154
- _Nov 14, 2024_
152
+ _Jan 24, 2025_
155
153
 
156
- We'd like to offer a big thanks to the 22 contributors who made this release possible. Here are some highlights ✨:
154
+ We'd like to offer a big thanks to the 10 contributors who made this release possible. Here are some highlights ✨:
157
155
 
158
- - 🔁 Support [automatic parents and children selection](https://next.mui.com/x/react-tree-view/rich-tree-view/selection/#automatic-parents-and-children-selection) for the Rich Tree View components.
159
- - 🌍 Improve Greek (el-GR) locale on the Date and Time Pickers components
160
- - 🌍 Improve Polish (pl-PL) locale on the Data Grid component
161
- - 🐞 Bugfixes
156
+ - 🌍 Improve Persian (fa-IR) and Urdu (ur-PK) locales on the Data Grid
162
157
  - 📚 Documentation improvements
158
+ - 🐞 Bugfixes
163
159
 
164
- Special thanks go out to the community contributors who have helped make this release possible:
165
- @belkocik, @GeorgiosDrivas, @k-rajat19, @kalyan90, @DungTiger, @fxnoob, @GuillaumeMeheut
166
- Following are all team members who have contributed to this release:
167
- @alexfauquette, @arminmeh, @arthurbalduini, @cherniavskii, @flaviendelangle, @JCQuintas, @KenanYusuf, @LukasTy, @MBilalShafi, @michelengelen, @noraleonte, @oliviertassinari, @romgrk, @samuelsycamore, @joserodolfofreitas.
160
+ Special thanks go out to the community contributors who have helped make this release possible:
161
+ @AxharKhan, @lauri865, @mapache-salvaje, @mostafaRoosta74.
168
162
 
169
- <!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
163
+ Following are all team members who have contributed to this release:
164
+ @alexfauquette, @cherniavskii, @Janpot, @JCQuintas, @LukasTy, @arminmeh.
170
165
 
171
166
  ### Data Grid
172
167
 
173
- #### `@mui/x-data-grid@8.0.0-alpha.0`
168
+ #### `@mui/x-data-grid@v8.0.0-alpha.9`
174
169
 
175
- - [DataGrid] Fix grid overlay aligment with scroll for rtl (#15072) @kalyan90
176
- - [DataGrid] Fix resizing right pinned column (#15107) @KenanYusuf
177
- - [DataGrid] Pass the reason to the `onPaginationModelChange` callback (#13959) @DungTiger
178
- - [DataGrid] Set default overlay height in flex parent layout (#15202) @cherniavskii
179
- - [DataGrid] Refactor `baseMenuList` and `baseMenuItem` (#15049) @romgrk
180
- - [DataGrid] Remove more material imports (#15063) @romgrk
181
- - [l10n] Improve Polish (pl-PL) locale (#15227) @belkocik
170
+ - [DataGrid] Fix toggling preference panel from toolbar (#16274) @lauri865
171
+ - [DataGrid] Only try to mount filter button if there are filters present (#16267) @lauri865
172
+ - [DataGrid] Revert `apiRef` to be `MutableRefObject` for React versions < 19 (#16279) @arminmeh
173
+ - [l10n] Improve Persian (fa-IR) locale (#16312) @mostafaRoosta74
174
+ - [l10n] Improve Urdu (ur-PK) locale (#16295) @AxharKhan
182
175
 
183
- #### `@mui/x-data-grid-pro@8.0.0-alpha.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
176
+ #### `@mui/x-data-grid-pro@v8.0.0-alpha.9` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
184
177
 
185
- Same changes as in `@mui/x-data-grid@8.0.0-alpha.0`, plus:
178
+ Same changes as in `@mui/x-data-grid@v8.0.0-alpha.9`.
186
179
 
187
- - [DataGridPro] Fix column pinning layout (#14966) @cherniavskii
180
+ #### `@mui/x-data-grid-premium@v8.0.0-alpha.9` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
188
181
 
189
- #### `@mui/x-data-grid-premium@8.0.0-alpha.0` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
182
+ Same changes as in `@mui/x-data-grid-pro@v8.0.0-alpha.9`.
190
183
 
191
- Same changes as in `@mui/x-data-grid-pro@8.0.0-alpha.0`, plus:
184
+ ### Date and Time Pickers
192
185
 
193
- - [DataGridPremium] Server-side data source with row grouping (#13826) @MBilalShafi
186
+ #### `@mui/x-date-pickers@v8.0.0-alpha.9`
194
187
 
195
- ### Date and Time Pickers
188
+ - [fields] Reset `all` selected state on section edit (#16223) @LukasTy
196
189
 
197
- #### Breaking changes
190
+ #### `@mui/x-date-pickers-pro@v8.0.0-alpha.9` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
198
191
 
199
- - The default DOM structure of the field has changed [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#new-dom-structure-for-the-field).
192
+ Same changes as in `@mui/x-date-pickers@v8.0.0-alpha.9`.
200
193
 
201
- - Before version `v8.x`, the fields' DOM structure consisted of an `<input />`, which held the whole value for the component, but unfortunately presents a few limitations in terms of accessibility when managing multiple section values.
202
- - Starting with version `v8.x`, all the field and picker components come with a new DOM structure that allows the field component to set aria attributes on individual sections, providing a far better experience with screen readers.
194
+ ### Charts
203
195
 
204
- - Some translation keys no longer require `utils` and the date object as parameters, but only the formatted value as a string. The keys affected by this changes are: `clockLabelText`, `openDatePickerDialogue` and `openTimePickerDialogue` — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#stop-passing-utils-and-the-date-object-to-some-translation-keys).
196
+ #### Breaking Changes
205
197
 
206
- - The following types are no longer exported by `@mui/x-date-pickers` and `@mui/x-date-pickers-pro` — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#removed-types).
198
+ The `experimentalMarkRendering` prop has been removed from the `LineChart` component.
199
+ The line mark are now `<circle />` element by default.
200
+ And you can chose another shape by adding a `shape` property to your line series.
207
201
 
208
- - `UseDateFieldComponentProps`
209
- - `UseTimeFieldComponentProps`
210
- - `UseDateTimeFieldComponentProps`
211
- - `BaseSingleInputFieldProps`
212
- - `BaseMultiInputFieldProps`
213
- - `BasePickersTextFieldProps`
202
+ The codemod only removes the `experimentalMarkRendering` prop.
203
+ If you relied on the fact that marks were `path` elements, you need to update your logic.
214
204
 
215
- - The `TDate` generic has been removed from all the types, interfaces, and variables of the `@mui/x-date-pickers` and `@mui/x-date-pickers-pro` packages — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#remove-tdate-generic).
205
+ #### `@mui/x-charts@v8.0.0-alpha.9`
216
206
 
217
- - Renamed `usePickersTranslations` and `usePickersContext` hooks to have a coherent `Picker` prefix instead of `Pickers` — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#renamed-variables).
207
+ - [charts] Expand line with step interpolation (#16229) @alexfauquette
208
+ - [charts] Fix hydration mismatch (#16261) @alexfauquette
209
+ - [charts] Fix zoom option reactivity (#16262) @alexfauquette
210
+ - [charts] Move legend getter to series config (#16307) @alexfauquette
211
+ - [charts] Use `<circle />` instead of `<path />` for line marks by default (#15220) @alexfauquette
218
212
 
219
- - The `LicenseInfo` object is no longer exported from the `@mui/x-date-pickers-pro` package — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#stop-using-licenseinfo-from-mui-x-date-pickers-pro).
213
+ #### `@mui/x-charts-pro@v8.0.0-alpha.9` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
220
214
 
221
- #### `@mui/x-date-pickers@8.0.0-alpha.0`
215
+ Same changes as in `@mui/x-charts@v8.0.0-alpha.9`, plus:
222
216
 
223
- - [fields] Enable the new field DOM structure by default (#14651) @flaviendelangle
224
- - [fields] Remove `UseDateFieldComponentProps` and equivalent interfaces (#15053) @flaviendelangle
225
- - [fields] Remove clear button from the tab sequence (#14616) @k-rajat19
226
- - [l10n] Improve Greek (el-GR) locale (#15250) @GeorgiosDrivas
227
- - [pickers] Clean definition of validation props (#15198) @flaviendelangle
228
- - [pickers] Clean the new `ownerState` object (#15056) @flaviendelangle
229
- - [pickers] Correctly type the `ownerState` of the `field` and `actionBar` slots when resolved in a picker component (#15162) @flaviendelangle
230
- - [pickers] Fix `DateCalendar` timezone management (#12321) @LukasTy
231
- - [pickers] Fix `DateTimeRangePicker` error when using format without time (#14917) @fxnoob
232
- - [pickers] Fix `DigitalClock` time options on a `DST` switch day (#10793) @LukasTy
233
- - [pickers] Remove `TDate` generics in favor of `PickerValidDate` direct usage (#15001) @flaviendelangle
234
- - [pickers] Remove `utils` and `value` params from translations (#14986) @arthurbalduini
235
- - [pickers] Remove plural in "Pickers" on recently introduced APIs (#15297) @flaviendelangle
236
- - [pickers] Remove the re-export from `@mui/x-license` (#14487) @k-rajat19
237
- - [pickers] Strictly type the props a picker passes to its field, and migrate all the custom field demos accordingly (#15197) @flaviendelangle
238
- - [pickers] Unify JSDoc for all the `disabled` and `readOnly` props (#15304) @flaviendelangle
239
- - [pickers] Use the new `ownerState` in `DateCalendar`, `DateRangeCalendar`, `MonthCalendar` and `YearCalendar` (#15171) @flaviendelangle
240
- - [pickers] Use the new `ownerState` in `usePickersLayout` and `useXXXPicker` (#14994) @flaviendelangle
217
+ - [charts-pro] Fix `pro` components watermark (#16222) @JCQuintas
241
218
 
242
- #### `@mui/x-date-pickers-pro@8.0.0-alpha.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
219
+ ### Tree View
243
220
 
244
- Same changes as in `@mui/x-date-pickers@8.0.0-alpha.0`.
221
+ #### `@mui/x-tree-view@v8.0.0-alpha.9`
245
222
 
246
- ### Charts
223
+ Internal changes.
247
224
 
248
- #### Breaking changes
225
+ #### `@mui/x-tree-view-pro@v8.0.0-alpha.9` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
249
226
 
250
- - The `legend` prop has been removed. To pass props to the legend, use `slotProps={{ legend: { ... } }}` instead. This can be automatically done with the codemod as long as the `legend` prop does not come from a destructured object — [Learn more](https://next.mui.com/x/migration/migration-charts-v7/#legend-props-propagation-✅).
227
+ Same changes as in `@mui/x-tree-view@v8.0.0-alpha.9`.
251
228
 
252
- - The `slots.legend` does not receive the `drawingArea` prop. You can still access your custom legend with the `useDrawingArea()` hook if your custom legend needs it.
229
+ ### Docs
253
230
 
254
- - Removed or renamed multiple props from Series — [Learn more](https://next.mui.com/x/migration/migration-charts-v7/#series-properties-renaming).
231
+ - [docs] Fix `domainLimit` definition (#16270) @alexfauquette
232
+ - [docs] Fix tiny line chart breaking change (#16268) @alexfauquette
233
+ - [docs] Revise planned feature callouts and descriptions (#16290) @mapache-salvaje
234
+ - [docs] Copyedit the Aggregation doc (#16200) @mapache-salvaje
235
+ - [docs] Revise the Data Grid getting started docs (#15757) @mapache-salvaje
236
+ - [code-infra] Add 'use client' directive (#16273) @Janpot
237
+ - [code-infra] Allow dispatch of manual cherry-pick workflow (#16299) @JCQuintas
238
+ - [code-infra] Update changelog script (#16218) @cherniavskii
239
+ - [test] Fix flaky column pinning tests (#16219) @cherniavskii
240
+ - [test] Fix flaky tests (#16257) @lauri865
255
241
 
256
- - The `highlighted` and `faded` properties of highlightScope have been deprecated in favor of `highlight` and `fade`.
257
- The deprecated ones are now removed.
258
- - The `xAxisKey`, `yAxisKey`, and `zAxisKey` properties have been deprecated in favor of `xAxisId`, `yAxisId`, and `zAxisId`.
242
+ ## 8.0.0-alpha.8
259
243
 
260
- - The Pie Chart lost all props and renderer linked to axes because pie chart does not need cartesian axes. If you used it, you can still add them back with composition. Please consider opening an issue to share your use case with us — [Learn more](https://next.mui.com/x/migration/migration-charts-v7/#remove-pie-chart-axes).
244
+ _Jan 16, 2025_
261
245
 
262
- #### `@mui/x-charts@8.0.0-alpha.0`
246
+ We'd like to offer a big thanks to the 11 contributors who made this release possible. Here are some highlights ✨:
263
247
 
264
- - [charts] Introduce `hideLegend` prop (#15277) @alexfauquette
265
- - [charts] Filter items outside the drawing area for performance (#14281) @alexfauquette
266
- - [charts] Fix log scale with `null` data (#15337) @alexfauquette
267
- - [charts] Fix tooltip follow mouse (#15189) @alexfauquette
268
- - [charts] Remove `xAxisKey`, `yAxisKey`, and `zAxisKey` series keys (#15192) @alexfauquette
269
- - [charts] Remove axis from the pie chart (#15187) @alexfauquette
270
- - [charts] Remove deprecated `legend` props (#15081) @alexfauquette
271
- - [charts] Remove deprecated highlight properties (#15191) @alexfauquette
272
- - [charts] Update Popper position outside of React (#15003) @alexfauquette
273
- - [charts] Improve the performance of the `getSymbol` method (#15233) @romgrk
248
+ - 🍬 Improved design for Data Grid [Header filters](https://next.mui.com/x/react-data-grid/filtering/header-filters/)
274
249
 
275
- #### `@mui/x-charts-pro@8.0.0-alpha.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
250
+ <img width="100%" alt="Data Grid Header filters" src="https://github.com/user-attachments/assets/74a50cd9-7a55-41fc-a2b8-f8a0d5b9120e" />
276
251
 
277
- Same changes as in `@mui/x-charts@8.0.0-alpha.0`.
252
+ - 🔄 Data Grid [Scroll restoration](https://next.mui.com/x/react-data-grid/scrolling/#scroll-restoration)
253
+ - 📊 Charts support server-side rendering under [some conditions](https://next.mui.com/x/react-charts/getting-started/#server-side-rendering)
254
+ - 🐞 Bugfixes
278
255
 
279
- ### Tree View
256
+ Special thanks go out to the community contributors who have helped make this release possible:
257
+ @lauri865.
258
+ Following are all team members who have contributed to this release:
259
+ @arminmeh, @romgrk, @samuelsycamore, @alexfauquette, @cherniavskii, @flaviendelangle, @JCQuintas, @KenanYusuf, @LukasTy, @michelengelen.
260
+
261
+ <!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
262
+
263
+ ### Data Grid
280
264
 
281
265
  #### Breaking changes
282
266
 
283
- - The `ContentComponent` or `ContentProps` props of the `<TreeItem />` component have been removed in favor of the new `slots`, `slotProps` props and of the `useTreeItem` hook [Learn more](https://next.mui.com/x/migration/migration-tree-view-v7/#new-api-to-customize-the-tree-item).
267
+ - The clear button in header filter cells has been moved to the header filter menu. Use `slotProps={{ headerFilterCell: { showClearIcon: true } }}` to restore the clear button in the cell.
284
268
 
285
- - The `onClick` and `onMouseDown` callbacks of the Tree Item component are now passed to the root element instead of the content — [Learn more](https://next.mui.com/x/migration/migration-tree-view-v7/#behavior-change-on-the-onclick-and-onmousedown-props-of-treeitem).
269
+ #### `@mui/x-data-grid@8.0.0-alpha.8`
286
270
 
287
- - Rename the `<TreeItem2 />` component (and related utils) — [Learn more](https://next.mui.com/x/migration/migration-tree-view-v7/#✅-rename-the-treeitem2-and-related-utils).
271
+ - [DataGrid] Improve scrollbar deadzone with overlay scrollbars (#15961) @lauri865
272
+ - [DataGrid] Header filter design improvements (#15991) @KenanYusuf
273
+ - [DataGrid] Scroll restoration (#15623) @lauri865
274
+ - [DataGrid] Fix row, cell and header memoizations (#15666) @lauri865
288
275
 
289
- - The `<TreeView />` component has been renamed `<SimpleTreeView />` which has exactly the same API — [Learn more](https://next.mui.com/x/migration/migration-tree-view-v7/#✅-use-simple-tree-view-instead-of-tree-view).
276
+ #### `@mui/x-data-grid-pro@8.0.0-alpha.8` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
290
277
 
291
- - The indentation of nested Tree Items is now applied on the content of the element — [Learn more](https://next.mui.com/x/migration/migration-tree-view-v7/#apply-the-indentation-on-the-item-content-instead-of-its-parents-group).
278
+ Same changes as in `@mui/x-data-grid@8.0.0-alpha.8`, plus:
292
279
 
293
- #### `@mui/x-tree-view@8.0.0-alpha.0`
280
+ - [DataGridPro] Add test for column pinning with disabled column virtualization (#16176) @cherniavskii
281
+ - [DataGridPro] Fix width of right-pinned column group during resize (#16199) @cherniavskii
294
282
 
295
- - [TreeView] Always apply the indentation on the item content instead of its parent's group (#15089) @flaviendelangle
296
- - [TreeView] Automatic parents and children selection (#14899) @flaviendelangle
297
- - [TreeView] Remove deprecated `TreeView` component (#15093) @flaviendelangle
298
- - [TreeView] Replace `<TreeItem />` with `<TreeItem2 />` and migrate all the components and utils (#14913) @flaviendelangle
283
+ #### `@mui/x-data-grid-premium@8.0.0-alpha.8` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
299
284
 
300
- ### Docs
285
+ Same changes as in `@mui/x-data-grid-pro@8.0.0-alpha.8`.
301
286
 
302
- - [docs] Add docs for rounded symbol (#15324) @GuillaumeMeheut
303
- - [docs] Add migration guide for the removal of `LicenseInfo` from `@mui/x-date-pickers-pro` (#15321) @flaviendelangle
304
- - [docs] Add migration guide for the first breaking changes of charts (#15276) @alexfauquette
305
- - [docs] Add `PickersPopper` component to the Date Picker customization playground (#15305) @LukasTy
306
- - [docs] Add v8 to supported releases table (#15384) @joserodolfofreitas
307
- - [docs] Apply the new DX to the Button Field demos (#14860) @flaviendelangle
308
- - [docs] Apply the new DX to the `Autocomplete` Field demo (#15165) @flaviendelangle
309
- - [docs] Cleanup the pickers migration guide (#15310) @flaviendelangle
310
- - [docs] Copyedit the Charts Getting Started sequence (#14962) @samuelsycamore
311
- - [docs] Create Pickers masked field recipe (#13515) @flaviendelangle
312
- - [docs] Fix `applyDomain` docs for the charts (#15332) @JCQuintas
313
- - [docs] Fix link to private notion page (#15396) @michelengelen
314
- - [docs] Fix missing punctuation on descriptions (#15229) @oliviertassinari
315
- - [docs] Fix peer dependency range (#15281) @oliviertassinari
316
- - [docs] Fix small Tree View typo (#15390) @oliviertassinari
317
- - [docs] Fix the `AdapterMomentHijri` doc section (#15312) @flaviendelangle
318
- - [docs] Replace the Tree Item anatomy images (#15066) @noraleonte
319
- - [docs] Start v8 migration guides (#15096) @MBilalShafi
320
- - [docs] Subdivide and reorganize navigation bar (#15014) @samuelsycamore
321
- - [docs] Use `PickersTextField` in the customization playground (#15288) @LukasTy
322
- - [docs] Use `next` instead of `^8.0.0` in the migration guides (#15091) @flaviendelangle
287
+ ### Date and Time Pickers
323
288
 
324
- ### Core
289
+ #### Breaking changes
325
290
 
326
- - [core] Adjust the `cherry-pick` GitHub actions (#15099) @LukasTy
327
- - [core] Add `()` at the name of function name in the doc (#15075) @oliviertassinari
328
- - [core] Clarify release version bump strategy (#15219) @cherniavskii
329
- - [core] Fix CodeSandbox and StackBlitz for next doc-infra sync @oliviertassinari
330
- - [core] Fix Vale error on `master` @oliviertassinari
331
- - [core] Fix changelog reference to VoiceOver @oliviertassinari
332
- - [core] Fix `tools-public.mui.com` redirection @oliviertassinari
333
- - [core] Fix webpack capitalization (#15353) @oliviertassinari
334
- - [core] Move `helpers` to `@mui/x-internals` package (#15188) @LukasTy
335
- - [code-infra] Set renovate to automerge devDependencies (#13463) @JCQuintas
336
- - [infra] Reintroduce the cherry pick workflow (#15293) @michelengelen
337
- - [core] Remove duplicate title header (#15389) @oliviertassinari
338
- - [release] v8 preparation (#15054) @michelengelen
339
- - [test] Fix advanced list view regression test snapshot (#15260) @KenanYusuf
291
+ - The field is now editable if rendered inside a mobile Picker — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#field-editing-on-mobile-pickers)
292
+ - The `useMultiInputDateRangeField`, `useMultiInputTimeRangeField`, and `useMultiInputDateTimeRangeField` hooks have been removed in favor of the new `useMultiInputRangeField` hook — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#usemultiinputdaterangefield)
293
+ - The component passed to the `field` slot no longer receives the `value`, `onChange`, `timezone`, `format`, `disabled`, `formatDensity`, `enableAccessibleFieldDOMStructure`, `selectedSections` and `onSelectedSectionsChange` props — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#slot-field)
294
+
295
+ #### `@mui/x-date-pickers@8.0.0-alpha.8`
296
+
297
+ - [pickers] Let the field components handle their opening UI, and allow field editing on mobile pickers (#15671) @flaviendelangle
298
+ - [pickers] Remove code duplication for the multi input range fields (#15505) @flaviendelangle
299
+ - [pickers] Rename `onRangePositionChange` into `setRangePosition` in `usePickerRangePositionContext` (#16189) @flaviendelangle
300
+ - [pickers] Use context to pass props from the picker to the field (#16042) @flaviendelangle
301
+
302
+ #### `@mui/x-date-pickers-pro@8.0.0-alpha.8` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
303
+
304
+ Same changes as in `@mui/x-date-pickers@8.0.0-alpha.8`.
305
+
306
+ ### Charts
307
+
308
+ #### Breaking changes
309
+
310
+ - Charts tooltip markers now have different styles for each chart type. The tooltip and legend marks are now the same.
311
+ - Duplicate axis id's across `x` and `y` axis now log a warning in dev mode. Axis ids should be unique to prevent internal issues.
312
+
313
+ #### `@mui/x-charts@8.0.0-alpha.8`
314
+
315
+ - [charts] Fix flaky charts tests (#16180) @JCQuintas
316
+ - [charts] Handle case where gradient stop `offset` could be `Infinite` (#16131) @JCQuintas
317
+ - [charts] Make `useChartGradientId` public (#16106) @JCQuintas
318
+ - [charts] Move z-axis to plugin (#16130) @alexfauquette
319
+ - [charts] Plot data at first render if `skipAnimation` is set to `true` (#16166) @alexfauquette
320
+ - [charts] Replace tooltip mark with style (#16117) @JCQuintas
321
+ - [charts] Support `rtl` for gradient legend (#16115) @JCQuintas
322
+ - [charts] Use plugin system for series and axes (#15865) @alexfauquette
323
+
324
+ #### `@mui/x-charts-pro@8.0.0-alpha.8` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
325
+
326
+ Same changes as in `@mui/x-charts@8.0.0-alpha.8`.
327
+
328
+ ### Tree View
329
+
330
+ #### `@mui/x-tree-view@8.0.0-alpha.8`
331
+
332
+ No changes since `@mui/x-tree-view-pro@v8.0.0-alpha.7`.
333
+
334
+ #### `@mui/x-tree-view-pro@8.0.0-alpha.8` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
335
+
336
+ Same changes as in `@mui/x-tree-view@8.0.0-alpha.8`.
337
+
338
+ ### Docs
339
+
340
+ - [docs] Add example for custom legend (#16169) @alexfauquette
341
+ - [docs] Add full custom field creation example (#15194) @flaviendelangle
342
+ - [docs] Copyedit the Data Grid cell selection page (#16099) @samuelsycamore
343
+ - [docs] Fix demo rendering issue on Codesandbox (#16118) @arminmeh
344
+ - [docs] Remove broken links (#16167) @alexfauquette
345
+ - [docs] Split the Data Grid editing page (#14931) @MBilalShafi
346
+ - [docs] Fix wrong props warnings (#16119) @JCQuintas
347
+
348
+ ### Core
349
+
350
+ - [core] Type all references as `RefObject` (#16124) @arminmeh
351
+ - [code-infra] Refactor `react` and `react-dom` definitions to simplify dep resolving (#16160) @LukasTy
352
+ - [code-infra] Stop renovate from updating `date-fns-v2` (#16158) @LukasTy
353
+ - [infra] Improve cherry-pick action target list (#16184) @michelengelen
354
+ - [test] Fix flaky column pinning unit test (#16202) @cherniavskii
355
+ - [test] Fix flaky screenshot (#16182) @cherniavskii
356
+
357
+ ## 8.0.0-alpha.7
358
+
359
+ _Jan 9, 2025_
360
+
361
+ We'd like to offer a big thanks to the 13 contributors who made this release possible. Here are some highlights ✨:
362
+
363
+ - 📊 Charts legend is now an HTML element which can be styled more easily
364
+ - 💫 Support [aggregation with server-side data](/x/react-data-grid/server-side-data/aggregation/)
365
+ - 🏎️ Improve Data Grid aggregation performance
366
+ - 🌍 Add Chinese (Taiwan) (zh-TW) locale on the Date and Time Pickers
367
+ - 🌍 Improve Norwegian (nb-NO) locale on the Date and Time Pickers
368
+ - 🐞 Bugfixes
369
+
370
+ Special thanks go out to the community contributors who have helped make this release possible:
371
+ @derek-0000, @josteinjhauge, @k-rajat19, @nusr, @tomashauser.
372
+ Following are all team members who have contributed to this release:
373
+ @cherniavskii, @flaviendelangle, @JCQuintas, @LukasTy, @MBilalShafi, @arminmeh, @romgrk, @oliviertassinari.
374
+
375
+ <!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
376
+
377
+ ### Data Grid
378
+
379
+ #### `@mui/x-data-grid@8.0.0-alpha.7`
380
+
381
+ - [DataGrid] Improve React 19 support (#15769) @LukasTy
382
+ - [DataGrid] Add `name` attribute to the checkbox selection column (#15178) @derek-0000
383
+ - [DataGrid] Fix number filter field formatting values while typing (#16062) @arminmeh
384
+ - [DataGrid] Fix select all checkbox state reset with server side data (#16034) @MBilalShafi
385
+ - [DataGrid] Refactor: create base button props (#15930) @romgrk
386
+ - [DataGrid] Refactor: create tooltip props (#16086) @romgrk
387
+ - [DataGrid] Fix TS error (#16046) @cherniavskii
388
+
389
+ #### `@mui/x-data-grid-pro@8.0.0-alpha.7` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
390
+
391
+ Same changes as in `@mui/x-data-grid@8.0.0-alpha.7`.
392
+
393
+ #### `@mui/x-data-grid-premium@8.0.0-alpha.7` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
394
+
395
+ Same changes as in `@mui/x-data-grid-pro@8.0.0-alpha.7`, plus:
396
+
397
+ - [DataGridPremium] Improve aggregation performance for multiple columns (#16097) @cherniavskii
398
+ - [DataGridPremium] Make Aggregation keyboard accessible in the column menu (#15934) @k-rajat19
399
+ - [DataGridPremium] Server-side aggregation with data source (#15741) @MBilalShafi
400
+
401
+ ### Date and Time Pickers
402
+
403
+ #### Breaking changes
404
+
405
+ - The `date-fns` and `date-fns-jalali` date library adapters have been renamed to better align with the current stable major versions — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#✅-rename-date-fns-adapter-imports)
406
+ - Update default `closeOnSelect` and Action Bar `actions` values - [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#update-default-closeonselect-and-action-bar-actions-values)
407
+ - The component passed to the `layout` slot no longer receives the `value`, `onChange` and `onSelectShortcut` props — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#slot-layout).
408
+ - The component passed to the `toolbar` slot no longer receives the `value`, `onChange` and `isLandscape` props — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#slot-toolbar).
409
+ - The component passed to the `shortcuts` slot no longer receives the `onChange`, `isValid` and `isLandscape` props — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#slot-shortcuts).
410
+ - The `PickerShortcutChangeImportance` type has been renamed `PickerChangeImportance` — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#renamed-variables-and-types).
411
+ - The component passed to the `layout` slot no longer receives the `rangePosition` and `onRangePositionChange` on range pickers — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#slot-layout).
412
+ - The component passed to the `toolbar` slot no longer receives the `rangePosition` and `onRangePositionChange` on range pickers — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#slot-toolbar).
413
+ - The component passed to the `tabs` slot no longer receives the `rangePosition` and `onRangePositionChange` on range pickers — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#slot-tabs).
414
+
415
+ #### `@mui/x-date-pickers@8.0.0-alpha.7`
416
+
417
+ - [fields] Handle focusing container with `inputRef.current.focus` on `accessibleFieldDOMStructure` (#15985) @LukasTy
418
+ - [pickers] Always use `setValue` internally to update the picker value (#16056) @flaviendelangle
419
+ - [pickers] Create a new context to pass the range position props to the layout components and to the views (#15846) @flaviendelangle
420
+ - [pickers] Introduce a new concept of `manager` (#15339) @flaviendelangle
421
+ - [pickers] Improve React 19 support (#15769) @LukasTy
422
+ - [pickers] Memoize `<PickersActionBar />` (#16071) @LukasTy
423
+ - [pickers] Remove `NonEmptyDateRange` type (#16035) @flaviendelangle
424
+ - [pickers] Rename `AdapterDateFns` into `AdapterDateFnsV2` and `AdapterDateFnsV3` into `AdapterDateFns` (#16082) @LukasTy
425
+ - [pickers] Rename `ctx.onViewChange` to `ctx.setView` and add it to the actions context (#16044) @flaviendelangle
426
+ - [pickers] Support `date-fns-jalali` v4 (#16011) @LukasTy
427
+ - [pickers] Update `closeOnSelect` and `actionBar.actions` default values (#15944) @LukasTy
428
+ - [pickers] Use `usePickerContext()` and `usePickerActionsContext()` instead of passing props to the `shortcuts` and `toolbar` slots (#15948) @flaviendelangle
429
+ - [l10n] Add Chinese (Taiwan) (zh-TW) locale (#16033) @nusr
430
+ - [l10n] Improve Norwegian (nb-NO) locale (#16089) @josteinjhauge
431
+
432
+ #### `@mui/x-date-pickers-pro@8.0.0-alpha.7` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
433
+
434
+ Same changes as in `@mui/x-date-pickers@8.0.0-alpha.7`.
435
+
436
+ ### Charts
437
+
438
+ #### Breaking changes
439
+
440
+ - Removed `DefaultChartsLegend` component, since it is now easier to create custom legends — [Learn more](https://next.mui.com/x/react-charts/components/#html-components).
441
+ - The default legend is now an HTML element and can be styled more easily.
442
+ - The `width` and `height` properties of the charts now only apply to the `svg` element, and not their wrappers, this might cause some layout shifts.
443
+ - `slotProps.legend.direction` now accepts `'horizontal' | 'vertical'` instead of `'row' | 'column'` — [Learn more](https://next.mui.com/x/migration/migration-charts-v7/#legend-direction-value-change-✅).
444
+ - The `getSeriesToDisplay` function was removed in favor of the `useLegend` hook. — [Learn more](https://next.mui.com/x/migration/migration-charts-v7/#the-getseriestodisplay-function-was-removed).
445
+
446
+ #### `@mui/x-charts@8.0.0-alpha.7`
447
+
448
+ - [charts] New HTML legend & styles (#15733) @JCQuintas
449
+ - [charts] Improve React 19 support (#15769) @LukasTy
450
+ - [charts] Fix 301 redirection in the API documentation @oliviertassinari
451
+
452
+ #### `@mui/x-charts-pro@8.0.0-alpha.7` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
453
+
454
+ Same changes as in `@mui/x-charts@8.0.0-alpha.7`.
455
+
456
+ ### Tree View
457
+
458
+ #### `@mui/x-tree-view@8.0.0-alpha.7`
459
+
460
+ - [TreeView] Improve React 19 support (#15769) @LukasTy
461
+
462
+ #### `@mui/x-tree-view-pro@8.0.0-alpha.7` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
463
+
464
+ Same changes as in `@mui/x-tree-view@8.0.0-alpha.7`.
465
+
466
+ ### Docs
467
+
468
+ - [docs] Fix `EditingWithDatePickers` demo (#15967) @k-rajat19
469
+ - [docs] Fix inconsistent multi input range field separators (#16043) @flaviendelangle
470
+ - [docs] Fix non-existing "adapter" property of `LocalizationProvider` (#16084) @tomashauser
471
+ - [docs] Refactor Data Grid with Date Pickers example (#15992) @LukasTy
472
+ - [docs] Unify the wording of the pickers slots breaking changes (#16036) @flaviendelangle
473
+
474
+ ### Core
475
+
476
+ - [core] Clarify the release strategy (#16014) @MBilalShafi
477
+ - [core] Small fixes on docs @oliviertassinari
478
+ - [core] Sync with other repos @oliviertassinari
479
+ - [core] Update the `release:version` docs (#16038) @cherniavskii
480
+ - [code-infra] Add `testSkipIf` and `describeSkipIf` (#16049) @JCQuintas
481
+ - [test] Stabilize flaky Data Grid tests (#16053) @LukasTy
482
+
483
+ ## 8.0.0-alpha.6
484
+
485
+ _Dec 26, 2024_
486
+
487
+ We'd like to offer a big thanks to the 8 contributors who made this release possible. Here are some highlights ✨:
488
+
489
+ - 🏎️ Improve Data Grid scrolling performance
490
+ - 🌍 Improve Dutch (nl-NL) locale on the Data Grid
491
+ - 🐞 Bugfixes
492
+
493
+ Special thanks go out to the community contributors who have helped make this release possible:
494
+ @JoepVerkoelen, @k-rajat19, @lauri865.
495
+ Following are all team members who have contributed to this release:
496
+ @flaviendelangle, @JCQuintas, @LukasTy, @MBilalShafi, @romgrk.
497
+
498
+ <!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
499
+
500
+ ### Data Grid
501
+
502
+ #### Breaking changes
503
+
504
+ - The `sanitizeFilterItemValue()` utility is not exported anymore.
505
+
506
+ #### `@mui/x-data-grid@8.0.0-alpha.6`
507
+
508
+ - [DataGrid] Avoid subscribing to `renderContext` state in grid root for better scroll performance (#15986) @lauri865
509
+ - [DataGrid] Fix header filters showing clear button while empty (#15829) @k-rajat19
510
+ - [DataGrid] Improve test coverage of server side data source (#15942) @MBilalShafi
511
+ - [DataGrid] Move progress components to leaf import (#15914) @romgrk
512
+ - [DataGrid] Move skeleton to leaf import (#15931) @romgrk
513
+ - [DataGrid] Replace `forwardRef` with a shim for forward compatibility (#15955) @lauri865
514
+ - [l10n] Improve Dutch (nl-NL) locale (#15994) @JoepVerkoelen
515
+
516
+ #### `@mui/x-data-grid-pro@8.0.0-alpha.6` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
517
+
518
+ Same changes as in `@mui/x-data-grid@8.0.0-alpha.6`.
519
+
520
+ #### `@mui/x-data-grid-premium@8.0.0-alpha.6` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
521
+
522
+ Same changes as in `@mui/x-data-grid-pro@8.0.0-alpha.6`, plus:
523
+
524
+ - [DataGridPremium] Fix column unpinning with row grouping (#15908) @k-rajat19
525
+
526
+ ### Date and Time Pickers
527
+
528
+ #### `@mui/x-date-pickers@8.0.0-alpha.6`
529
+
530
+ - [pickers] Use `usePickerContext()` and `usePickerActionsContext()` to get the actions in the `actionBar` slot and in internal components (#15843) @flaviendelangle
531
+ - [pickers] Use `usePickerContext()` to get the view-related props in the layout, toolbar and tabs slots (#15606) @flaviendelangle
532
+
533
+ #### `@mui/x-date-pickers-pro@8.0.0-alpha.6` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
534
+
535
+ Same changes as in `@mui/x-date-pickers@8.0.0-alpha.6`.
536
+
537
+ ### Charts
538
+
539
+ #### `@mui/x-charts@8.0.0-alpha.6`
540
+
541
+ No changes since `@mui/x-charts@v8.0.0-alpha.5`.
542
+
543
+ #### `@mui/x-charts-pro@8.0.0-alpha.6` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
544
+
545
+ Same changes as in `@mui/x-charts@8.0.0-alpha.6`.
546
+
547
+ ### Tree View
548
+
549
+ #### `@mui/x-tree-view@8.0.0-alpha.6`
550
+
551
+ No changes since `@mui/x-tree-view-pro@v8.0.0-alpha.5`.
552
+
553
+ #### `@mui/x-tree-view-pro@8.0.0-alpha.6` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
554
+
555
+ Same changes as in `@mui/x-tree-view@8.0.0-alpha.6`.
556
+
557
+ ### Docs
558
+
559
+ - [docs] Remove production profiler from docs build (#15959) @lauri865
560
+ - [code-infra] Add new `next-env.d.ts` changes (#15947) @JCQuintas
561
+
562
+ ## 8.0.0-alpha.5
563
+
564
+ _Dec 19, 2024_
565
+
566
+ We'd like to offer a big thanks to the 9 contributors who made this release possible. Here are some highlights ✨:
567
+
568
+ - 🌍 Improve Korean (ko-KR) locale on the Data Grid
569
+ - 🐞 Bugfixes
570
+
571
+ Special thanks go out to the community contributors who have helped make this release possible:
572
+ @good-jinu, @k-rajat19.
573
+ Following are all team members who have contributed to this release:
574
+ @alexfauquette, @cherniavskii, @flaviendelangle, @KenanYusuf, @LukasTy, @MBilalShafi, @romgrk.
575
+
576
+ <!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
577
+
578
+ ### Data Grid
579
+
580
+ #### Breaking changes
581
+
582
+ - Passing additional props (like `data-*`, `aria-*`) directly on the Data Grid component is no longer supported. To pass the props, use `slotProps`:
583
+
584
+ - For `.root` element, use `slotProps.root`.
585
+ - For `.main` element (the one with `role="grid"`), use `slotProps.main`.
586
+
587
+ - `detailPanelExpandedRowIds` and `onDetailPanelExpandedRowIdsChange` props use a [`Set`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Set) instead of an array:
588
+
589
+ ```diff
590
+ -detailPanelExpandedRowIds?: GridRowId[];
591
+ +detailPanelExpandedRowIds?: Set<GridRowId>;
592
+
593
+ -onDetailPanelExpandedRowIdsChange?: (ids: GridRowId[], details: GridCallbackDetails) => void;
594
+ +onDetailPanelExpandedRowIdsChange?: (ids: Set<GridRowId>, details: GridCallbackDetails) => void;
595
+ ```
596
+
597
+ - `apiRef.current.getExpandedDetailPanels` and `apiRef.current.setExpandedDetailPanels` methods receive and return a [`Set`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Set) instead of an array.
598
+ - `gridDetailPanelExpandedRowIdsSelector` returns a [`Set`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Set) instead of an array.
599
+ - `gridDetailPanelExpandedRowsHeightCacheSelector` was removed.
600
+
601
+ #### `@mui/x-data-grid@8.0.0-alpha.5`
602
+
603
+ - [DataGrid] Consider `columnGroupHeaderHeight` prop in `getTotalHeaderHeight` method (#15915) @k-rajat19
604
+ - [DataGrid] Fix autosizing with virtualized columns (#15116) @k-rajat19
605
+ - [DataGrid] Move `<Badge />` to leaf import (#15879) @romgrk
606
+ - [DataGrid] Move `<ListItemText />` and `<ListItemIcon />` to leaf import (#15869) @romgrk
607
+ - [DataGrid] Remove the Joy UI demo (#15913) @romgrk
608
+ - [DataGrid] Update quick filter input variant (#15909) @KenanYusuf
609
+ - [DataGrid] Use `slotProps` to forward props to `.main` and `.root` elements (#15870) @MBilalShafi
610
+ - [l10n] Improve Korean(ko-KR) locale (#15878) @good-jinu
611
+
612
+ #### `@mui/x-data-grid-pro@8.0.0-alpha.5` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
613
+
614
+ Same changes as in `@mui/x-data-grid@8.0.0-alpha.5`, plus:
615
+
616
+ - [DataGridPro] Use `Set` for `detailPanelExpandedRowIds` (#15835) @cherniavskii
617
+
618
+ #### `@mui/x-data-grid-premium@8.0.0-alpha.5` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
619
+
620
+ Same changes as in `@mui/x-data-grid-pro@8.0.0-alpha.5`.
621
+
622
+ ### Date and Time Pickers
623
+
624
+ #### Breaking changes
625
+
626
+ - The `<PickersMonth />` component has been moved inside the Month Calendar component — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#month-calendar).
627
+
628
+ - The `<PickersYear />` component has been moved inside the Year Calendar component — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#year-calendar).
629
+
630
+ #### `@mui/x-date-pickers@8.0.0-alpha.5`
631
+
632
+ - [pickers] Add verification to disable skipped hours in spring forward DST (#15849) @flaviendelangle
633
+ - [pickers] Remove `PickersMonth` and `PickersYear` from the theme and remove the `div` wrapping each button (#15806) @flaviendelangle
634
+ - [pickers] Use the new `ownerState` object on the `<PickersTextField />` component (#15863) @flaviendelangle
635
+
636
+ #### `@mui/x-date-pickers-pro@8.0.0-alpha.5` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
637
+
638
+ Same changes as in `@mui/x-date-pickers@8.0.0-alpha.5`.
639
+
640
+ ### Charts
641
+
642
+ #### `@mui/x-charts@8.0.0-alpha.5`
643
+
644
+ - [charts] Fix `<ScatterChart />` value type if `null` (#15917) @alexfauquette
645
+
646
+ #### `@mui/x-charts-pro@8.0.0-alpha.5` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
647
+
648
+ Same changes as in `@mui/x-charts@8.0.0-alpha.5`.
649
+
650
+ ### Tree View
651
+
652
+ #### `@mui/x-tree-view@8.0.0-alpha.5`
653
+
654
+ No changes since `@mui/x-tree-view-pro@v8.0.0-alpha.4`.
655
+
656
+ #### `@mui/x-tree-view-pro@8.0.0-alpha.5` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
657
+
658
+ Same changes as in `@mui/x-tree-view@8.0.0-alpha.5`.
659
+
660
+ ### Core
661
+
662
+ - [code-infra] Remove `@mui/material-nextjs` dependency (#15925) @LukasTy
663
+
664
+ ## 8.0.0-alpha.4
665
+
666
+ _Dec 13, 2024_
667
+
668
+ We'd like to offer a big thanks to the 11 contributors who made this release possible. Here are some highlights ✨:
669
+
670
+ - 🌍 Improve Romanian locale on the Data Grid and Pickers
671
+ - 📚 Documentation improvements
672
+ - 🐞 Bugfixes
673
+
674
+ Special thanks go out to the community contributors who have helped make this release possible:
675
+ @k-rajat19, @nusr, @rares985, @zivl.
676
+ Following are all team members who have contributed to this release:
677
+ @alexfauquette, @arminmeh, @flaviendelangle, @JCQuintas, @KenanYusuf, @LukasTy, @MBilalShafi.
678
+
679
+ <!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
680
+
681
+ ### Data Grid
682
+
683
+ #### Breaking changes
684
+
685
+ - The selectors signature has been updated due to the support of arguments in the selectors. Pass `undefined` as `arguments` if the selector doesn't use any arguments.
686
+
687
+ ```diff
688
+ -mySelector(state, instanceId)
689
+ +mySelector(state, arguments, instanceId)
690
+ ```
691
+
692
+ - The `useGridSelector` signature has been updated due to the introduction of arguments parameter in the selectors. Pass `undefined` as `arguments` if the selector doesn't use any arguments.
693
+
694
+ ```diff
695
+ -const output = useGridSelector(apiRef, selector, equals)
696
+ +const output = useGridSelector(apiRef, selector, arguments, equals)
697
+ ```
698
+
699
+ - The default variant for text fields and selects in the filter panel has been changed to `outlined`.
700
+ - The "row spanning" feature is now stable.
701
+ ```diff
702
+ <DataGrid
703
+ - unstable_rowSpanning
704
+ + rowSpanning
705
+ />
706
+ ```
707
+ - Selected row is now deselected when clicked again.
708
+
709
+ #### `@mui/x-data-grid@8.0.0-alpha.4`
710
+
711
+ - [DataGrid] Deselect selected row on click (#15509) @k-rajat19
712
+ - [DataGrid] Fix "No rows" displaying when all rows are pinned (#15335) @nusr
713
+ - [DataGrid] Make row spanning feature stable (#15742) @MBilalShafi
714
+ - [DataGrid] Round dimensions to avoid subpixel rendering error (#15850) @KenanYusuf
715
+ - [DataGrid] Toggle menu on click in `<GridActionsCell />` (#15867) @k-rajat19
716
+ - [DataGrid] Trigger row spanning computation on rows update (#15858) @MBilalShafi
717
+ - [DataGrid] Update filter panel input variant (#15807) @KenanYusuf
718
+ - [DataGrid] Use `columnsManagement` slot (#15817) @k-rajat19
719
+ - [DataGrid] Use new selector signature (#15200) @MBilalShafi
720
+ - [l10n] Improve Romanian (ro-RO) locale (#15745) @rares985
721
+
722
+ #### `@mui/x-data-grid-pro@8.0.0-alpha.4` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
723
+
724
+ Same changes as in `@mui/x-data-grid@8.0.0-alpha.4`, plus:
725
+
726
+ - [DataGridPro] Make row reordering work with pagination (#15355) @k-rajat19
727
+
728
+ #### `@mui/x-data-grid-premium@8.0.0-alpha.4` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
729
+
730
+ Same changes as in `@mui/x-data-grid-pro@8.0.0-alpha.4`, plus:
731
+
732
+ - [DataGridPremium] Fix group column ignoring `valueOptions` for `singleSelect` column type (#15739) @arminmeh
733
+
734
+ ### Date and Time Pickers
735
+
736
+ #### `@mui/x-date-pickers@8.0.0-alpha.4`
737
+
738
+ - [l10n] Improve Romanian (ro-RO) locale (#15745) @rares985
739
+ - [pickers] Clean `usePicker` logic (#15763) @flaviendelangle
740
+ - [pickers] Rename layout `ownerState` property from `isRtl` to `layoutDirection` (#15803) @flaviendelangle
741
+ - [pickers] Use the new `ownerState` in `useClearableField` (#15776) @flaviendelangle
742
+ - [pickers] Use the new `ownerState` in the toolbar components (#15777) @flaviendelangle
743
+ - [pickers] Use the new `ownerState` object for the clock components and the desktop / mobile wrappers (#15669) @flaviendelangle
744
+
745
+ #### `@mui/x-date-pickers-pro@8.0.0-alpha.4` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
746
+
747
+ Same changes as in `@mui/x-date-pickers@8.0.0-alpha.4`.
748
+
749
+ ### Charts
750
+
751
+ #### Breaking changes
752
+
753
+ - The default styling of the charts tooltip has been updated.
754
+
755
+ #### `@mui/x-charts@8.0.0-alpha.4`
756
+
757
+ - [charts] Fix hydration missmatch (#15647) @alexfauquette
758
+ - [charts] Fix internal spelling typo (#15805) @zivl
759
+ - [charts] Fix scatter dataset with missing data (#15802) @alexfauquette
760
+ - [charts] HTML Labels (#15813) @JCQuintas
761
+ - [charts] Only access store values by using hooks (#15764) @alexfauquette
762
+ - [charts] Update Tooltip style (#15630) @alexfauquette
763
+
764
+ #### `@mui/x-charts-pro@8.0.0-alpha.4` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
765
+
766
+ Same changes as in `@mui/x-charts@8.0.0-alpha.4`.
767
+
768
+ ### Tree View
769
+
770
+ #### `@mui/x-tree-view@8.0.0-alpha.4`
771
+
772
+ No changes, releasing to keep the versions in sync.
773
+
774
+ #### `@mui/x-tree-view-pro@8.0.0-alpha.4` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
775
+
776
+ Releasing to benefit from license package fix (#15814).
777
+
778
+ ### Docs
779
+
780
+ - [docs] Clean Joy and Browser custom field demos (#15707) @flaviendelangle
781
+ - [docs] Fix outdated link to handbook (#15855) @oliviertassinari
782
+ - [docs] Improve Pickers accessible DOM migration section description (#15596) @LukasTy
783
+ - [docs] Use `updateRows` method for list view demos (#15732) @KenanYusuf
784
+ - [docs] Use date library version from package dev dependencies for sandboxes (#15762) @LukasTy
785
+
786
+ ### Core
787
+
788
+ - [code-infra] Add Charts sandbox generation (#15830) @JCQuintas
789
+ - [code-infra] Remove redundant `@type/react-test-renderer` dep (#15766) @LukasTy
790
+ - [license] Use `console.log` for the error message on Codesandbox to avoid rendering error (#15814) @arminmeh
791
+
792
+ ## 8.0.0-alpha.3
793
+
794
+ _Dec 5, 2024_
795
+
796
+ We'd like to offer a big thanks to the 9 contributors who made this release possible. Here are some highlights ✨:
797
+
798
+ - 💫 Support [Server-side lazy loading](https://mui.com/x/react-data-grid/server-side-data/lazy-loading/) on the Data Grid. Use [data source](https://mui.com/x/react-data-grid/server-side-data/#data-source) to fetch a range of rows on demand and update the rows in the same way as described in [Infinite loading](https://mui.com/x/react-data-grid/row-updates/#infinite-loading) and [Lazy loading](https://mui.com/x/react-data-grid/row-updates/#lazy-loading) without the need to use any additional event listeners and callbacks.
799
+ - 🎯 Improved [data caching](https://mui.com/x/react-data-grid/server-side-data/#data-caching). Check out our [recommendations](https://mui.com/x/react-data-grid/server-side-data/#improving-the-cache-hit-rate) for improving the cache hit rate.
800
+
801
+ Special thanks go out to the community contributors who have helped make this release possible:
802
+ @ihsanberkozcan, @k-rajat19, @perezShaked.
803
+ Following are all team members who have contributed to this release:
804
+ @arminmeh, @cherniavskii, @flaviendelangle, @JCQuintas, @MBilalShafi, @noraleonte.
805
+
806
+ <!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
807
+
808
+ ### Data Grid
809
+
810
+ #### Breaking changes
811
+
812
+ - The "Select all" checkbox is now checked when all the selectable rows are selected, ignoring rows that are not selectable because of the `isRowSelectable` prop.
813
+ - The `rowPositionsDebounceMs` prop was removed.
814
+ - The `gridRowsDataRowIdToIdLookupSelector` selector was removed. Use the `gridRowsLookupSelector` selector in combination with the `getRowId()` API method instead.
815
+ ```diff
816
+ -const idToIdLookup = gridRowsDataRowIdToIdLookupSelector(apiRef);
817
+ -const rowId = idToIdLookup[id]
818
+ +const rowsLookup = gridRowsLookupSelector(apiRef);
819
+ +const rowId = apiRef.current.getRowId(rowsLookup[id])
820
+ ```
821
+ - The Grid is now more aligned with the WAI-ARIA authoring practices and sets the `role` attribute to `treegrid` if the Data Grid is used with row grouping feature.
822
+
823
+ #### `@mui/x-data-grid@8.0.0-alpha.3`
824
+
825
+ - [DataGrid] Fix deselection not working with `isRowSelectable` (#15692) @MBilalShafi
826
+ - [DataGrid] Make column autosizing work with flex columns (#15465) @cherniavskii
827
+ - [DataGrid] Remove `gridRowsDataRowIdToIdLookupSelector` selector (#15698) @arminmeh
828
+ - [DataGrid] Remove `rowPositionsDebounceMs` prop (#15482) @k-rajat19
829
+ - [l10n] Improve Hebrew (he-IL) locale (#15699) @perezShaked
830
+ - [l10n] Improve Turkish (tr-TR) locale (#15734) @ihsanberkozcan
831
+
832
+ #### `@mui/x-data-grid-pro@8.0.0-alpha.3` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
833
+
834
+ Same changes as in `@mui/x-data-grid@8.0.0-alpha.3`, plus:
835
+
836
+ - [DataGridPro] Cleanup pinned rows on removal (#15697) @cherniavskii
837
+ - [DataGridPro] Server-side lazy loading (#13878) @arminmeh
838
+
839
+ #### `@mui/x-data-grid-premium@8.0.0-alpha.3` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
840
+
841
+ Same changes as in `@mui/x-data-grid-pro@8.0.0-alpha.3`, plus:
842
+
843
+ - [DataGridPremium] Remove the `ariaV8` experimental flag (#15694) @arminmeh
844
+
845
+ ### Date and Time Pickers
846
+
847
+ #### Breaking changes
848
+
849
+ - The `onOpen()` and `onClose()` methods of the `usePickerContext()` hook have been replaced with a single `setOpen` method — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#usepickercontext).
850
+
851
+ #### `@mui/x-date-pickers@8.0.0-alpha.3`
852
+
853
+ - [pickers] Replace the `onOpen()` and `onClose()` methods of `usePickerContext()` with a single `setOpen()` method. (#15701) @flaviendelangle
854
+
855
+ #### `@mui/x-date-pickers-pro@8.0.0-alpha.3` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
856
+
857
+ Same changes as in `@mui/x-date-pickers@8.0.0-alpha.3`.
858
+
859
+ ### Charts
860
+
861
+ #### `@mui/x-charts@8.0.0-alpha.3`
862
+
863
+ - [charts] Improve SVG `pattern` and `gradient` support (#15720) @JCQuintas
864
+
865
+ #### `@mui/x-charts-pro@8.0.0-alpha.3` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
866
+
867
+ Same changes as in `@mui/x-charts@8.0.0-alpha.3`.
868
+
869
+ ### Tree View
870
+
871
+ #### `@mui/x-tree-view@8.0.0-alpha.3`
872
+
873
+ No changes since `@mui/x-tree-view-pro@v8.0.0-alpha.2`.
874
+
875
+ #### `@mui/x-tree-view-pro@8.0.0-alpha.3` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
876
+
877
+ Same changes as in `@mui/x-tree-view@8.0.0-alpha.3`.
878
+
879
+ ### Docs
880
+
881
+ - [docs] Add a customization demo for the Date and Time Pickers overview page (#15118) @noraleonte
882
+ - [docs] Fix typo in charts axis documentation (#15743) @JCQuintas
883
+ - [docs] Improve SEO titles for the Data Grid (#15695) @MBilalShafi
884
+
885
+ ### Core
886
+
887
+ - [core] Add `@mui/x-tree-view-pro` to `releaseChangelog` (#15316) @flaviendelangle
888
+ - [code-infra] Lock file maintenance (#11894)
889
+ - [code-infra] Check if `preset-safe` folder exists in codemod test (#15703) @JCQuintas
890
+ - [code-infra] Import Pickers `preset-safe` into global codemod config (#15659) @JCQuintas
891
+ - [code-infra] Playwright 1.49 (#15493) @JCQuintas
892
+ - [test] Force hover in headless Chrome (#15710) @cherniavskii
893
+
894
+ ## 8.0.0-alpha.2
895
+
896
+ _Nov 29, 2024_
897
+
898
+ We'd like to offer a big thanks to the 17 contributors who made this release possible. Here are some highlights ✨:
899
+
900
+ - 👨🏽‍💻 Improve resize performance on the Data Gird.
901
+ - `<ChartDataProvider />` and `<ChartsSurface />` components are now fully divided — [Learn more](https://next.mui.com/x/react-charts/composition/#overview).
902
+ - Users can create their own HTML components using chart data — [Learn more](https://next.mui.com/x/react-charts/components/#html-components).
903
+ - 🌍 Improve Spanish, Portuguese, Chinese locales on the Data Grid component.
904
+ - 🌍 Improve Dutch locale on the Date and Time Pickers components.
905
+ - 🐞 Bugfixes
906
+ - 📚 Documentation improvements
907
+
908
+ Special thanks go out to the community contributors who have helped make this release possible:
909
+ @dloeda, @headironc, @jedesroches, @k-rajat19, @lauri865, @mathzdev, @nphmuller, @zinoroman.
910
+ Following are all team members who have contributed to this release:
911
+ @arminmeh, @alexfauquette, @cherniavskii, @flaviendelangle, @JCQuintas, @KenanYusuf, @LukasTy, @MBilalShafi, @oliviertassinari.
912
+
913
+ <!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
914
+
915
+ ### Data Grid
916
+
917
+ #### Breaking changes
918
+
919
+ - The `<GridOverlays />` component is not exported anymore.
920
+ - The `indeterminateCheckboxAction` prop has been removed. Clicking on an indeterminate checkbox "selects" the unselected descendants.
921
+ - The `apiRef.current.resize()` method was removed.
922
+ - The default value of the `rowSelectionPropagation` prop has been changed to `{ parents: true, descendants: true }` which means that the selection will be propagated to the parents and descendants by default.
923
+ To revert to the previous behavior, pass `rowSelectionPropagation` as `{ parents: false, descendants: false }`.
924
+ - If `estimatedRowCount` is used, the text provided to the [Table Pagination](/material-ui/api/table-pagination/) component from the Material UI library is updated and requires additional translations. Check the example at the end of [Index-based pagination section](/x/react-data-grid/pagination/#index-based-pagination).
925
+
926
+ #### `@mui/x-data-grid@v8.0.0-alpha.2`
927
+
928
+ - [DataGrid] Change test dom check from `/jsdom/` to `/jsdom|HappyDOM/`. (#15634) @jedesroches
929
+ - [DataGrid] Clear timers on unmount (#15620) @cherniavskii
930
+ - [DataGrid] Fix order of spread props on toolbar items (#15556) @KenanYusuf
931
+ - [DataGrid] Improve resize performance (#15549) @lauri865
932
+ - [DataGrid] Make estimation label more accurate (#15632) @arminmeh
933
+ - [DataGrid] Remove `<GridOverlays />` export (#15573) @k-rajat19
934
+ - [DataGrid] Remove `indeterminateCheckboxAction` prop (#15522) @MBilalShafi
935
+ - [DataGrid] Remove try/catch from `<GridCell />` due to performance issues (#15616) @lauri865
936
+ - [DataGrid] Remove unused `resize` method (#15599) @cherniavskii
937
+ - [DataGrid] Support column virtualization with dynamic row height (#15541) @cherniavskii
938
+ - [DataGrid] Update the default value for `rowSelectionPropagation` (#15523) @MBilalShafi
939
+ - [l10n] Improve Chinese (zh-CN) locale (#15570) @headironc
940
+ - [l10n] Improve Portuguese (pt-PT) locale (#15561) @mathzdev
941
+
942
+ #### `@mui/x-data-grid-pro@v8.0.0-alpha.2` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
943
+
944
+ Same changes as in `@mui/x-data-grid@v8.0.0-alpha.2`, plus:
945
+
946
+ - [DataGridPro] Fix header filtering with `boolean` column type (#15528) @k-rajat19
947
+ - [DataGridPro] Fix pagination state not updating if the data source response has no rows (#15622) @zinoroman
948
+ - [DataGridPro] Fix selection propagation issue on initialization (#15461) @MBilalShafi
949
+
950
+ #### `@mui/x-data-grid-premium@v8.0.0-alpha.2` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
951
+
952
+ Same changes as in `@mui/x-data-grid-pro@v8.0.0-alpha.2`.
953
+
954
+ ### Date and Time Pickers
955
+
956
+ #### Breaking changes
957
+
958
+ - The props received by the `layout` and the `toolbar` slots have been reworked — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#do-not-pass-the-section-type-as-a-generic).
959
+
960
+ - The `TSection` generic of the `FieldRef` type has been replaced with the `TValue` generic — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#slots-breaking-changes).
961
+
962
+ #### `@mui/x-date-pickers@v8.0.0-alpha.2`
963
+
964
+ - [l10n] Improve Dutch (nl-NL) locale (#15564) @nphmuller
965
+ - [pickers] Fix DST issue with `America/Asuncion` timezone and `AdapterMoment` (#15552) @flaviendelangle
966
+ - [pickers] Improve validation internals (#15419) @flaviendelangle
967
+ - [pickers] Remove `TSection` and strictly type `TValue` (#15434) @flaviendelangle
968
+ - [pickers] Remove `orientation`, `isLandscape`, `isRtl`, `wrapperVariant` and `disabled` props from `PickersLayout` (#15494) @flaviendelangle
969
+ - [pickers] Use the new `ownerState` in `<PickersCalendarHeader />`, `<PickersArrowSwitcher />` and `<DayCalendarSkeleton />` (#15499) @flaviendelangle
970
+ - [pickers] Use the new `ownerState` object in all the field components (#15510) @flaviendelangle
971
+
972
+ #### `@mui/x-date-pickers-pro@v8.0.0-alpha.2` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
973
+
974
+ Same changes as in `@mui/x-date-pickers@v8.0.0-alpha.2`.
975
+
976
+ ### Charts
977
+
978
+ #### Breaking changes
979
+
980
+ - Charts Container don't have a `<div />` wrapping them anymore. All props are now passed to the root `<svg />` instead of the `<div />`.
981
+
982
+ #### `@mui/x-charts@v8.0.0-alpha.2`
983
+
984
+ - [charts] Allow the creation of custom HTML components using charts data (#15511) @JCQuintas
985
+ - [charts] Flatten imports from `@mui/utils` and `@mui/system` (#15603) @alexfauquette
986
+ - [charts] Introduce the plugin system (#15513) @alexfauquette
987
+ - [charts] Prevent invalid `releasePointerCapture` (#15602) @alexfauquette
988
+ - [charts] Fix custom Tooltip demos (#15631) @alexfauquette
989
+
990
+ #### `@mui/x-charts-pro@v8.0.0-alpha.2` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
991
+
992
+ Same changes as in `@mui/x-charts@v8.0.0-alpha.2`.
993
+
994
+ ### Tree View
995
+
996
+ #### `@mui/x-tree-view@v8.0.0-alpha.2`
997
+
998
+ - [TreeView] Flatten import from `@mui/utils` and `@mui/system` (#15604) @alexfauquette
999
+
1000
+ #### `@mui/x-tree-view-pro@v8.0.0-alpha.2`
1001
+
1002
+ Same changes as in `@mui/x-tree-view@v8.0.0-alpha.2`.
1003
+
1004
+ ### Docs
1005
+
1006
+ - [docs] Fix 404 links (#15575) @oliviertassinari
1007
+ - [docs] Fix bash comments (#15571) @oliviertassinari
1008
+ - [docs] Fix Pickers theme augmentation example (#15672) @LukasTy
1009
+ - [docs] Replace use of "e.g." with "for example" (#15572) @oliviertassinari
1010
+ - [docs] Update stale `new` and `preview` tags in v8 docs (#15547) @JCQuintas
1011
+ - [docs] Fix layout shift image on Tree View docs (#15626) @oliviertassinari
1012
+ - [docs] Fix `anchorEl` API page for charts (#15625) @oliviertassinari
1013
+ - [docs] Add documentation for the list view feature (#15344) @KenanYusuf
1014
+
1015
+ ### Core
1016
+
1017
+ - [core] Follow `()` function convention for docs @oliviertassinari
1018
+ - [core] Remove dead translation key (#15566) @oliviertassinari
1019
+ - [code-infra] Auto-merge `@types/node` bumps (#15591) @LukasTy
1020
+
1021
+ ## 8.0.0-alpha.1
1022
+
1023
+ _Nov 22, 2024_
1024
+
1025
+ We'd like to offer a big thanks to the 16 contributors who made this release possible. Here are some highlights ✨:
1026
+
1027
+ - 🔧 Refactor Tooltip customisation for charts — [Learn more](https://next.mui.com/x/react-charts/tooltip/#overriding-content).
1028
+ - ⚛️ React 19 support
1029
+ - 🌍 Improve Chinese, Spanish, and Swedish locale on the Data Grid component
1030
+ - 🐞 Bugfixes
1031
+ - 📚 Documentation improvements
1032
+
1033
+ Special thanks go out to the community contributors who have helped make this release possible:
1034
+ @CarlosLopezLg, @headironc, @hendrikpeilke, @k-rajat19, @lhilgert9, @viktormelin.
1035
+ Following are all team members who have contributed to this release:
1036
+ @alexfauquette, @arthurbalduini, @cherniavskii, @flaviendelangle, @JCQuintas, @LukasTy, @MBilalShafi, @oliviertassinari, @KenanYusuf, @arminmeh.
1037
+
1038
+ <!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
1039
+
1040
+ ### Data Grid
1041
+
1042
+ #### `@mui/x-data-grid@v8.0.0-alpha.1`
1043
+
1044
+ - [DataGrid] React 19 support (#15342) @arminmeh
1045
+ - [DataGrid] Add prop to override search input props in `GridColumnsManagement` (#15347) @k-rajat19
1046
+ - [DataGrid] Add test coverage for issues fixed in #15184 (#15282) @MBilalShafi
1047
+ - [DataGrid] Change default loading overlay variants (#15504) @KenanYusuf
1048
+ - [DataGrid] Fix last separator not being hidden when grid is scrollable (#15543) @KenanYusuf
1049
+ - [DataGrid] Fix right column group header border with virtualization (#15470) @hendrikpeilke
1050
+ - [DataGrid] Fix row-spanning in combination with column-pinning (#15368) @lhilgert9
1051
+ - [l10n] Improve Chinese (zh-CN) locale (#15365) @headironc
1052
+ - [l10n] Improve Spanish (es-ES) locale (#15369) @CarlosLopezLg
1053
+ - [l10n] Improve Swedish (sv-SE) locale (#15371) @viktormelin
1054
+
1055
+ #### `@mui/x-data-grid-pro@v8.0.0-alpha.1` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1056
+
1057
+ Same changes as in `@mui/x-data-grid@v8.0.0-alpha.1`.
1058
+
1059
+ #### `@mui/x-data-grid-premium@v8.0.0-alpha.1` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
1060
+
1061
+ Same changes as in `@mui/x-data-grid-pro@v8.0.0-alpha.1`, plus:
1062
+
1063
+ - [DataGridPremium] Prompt input control (#15401) @arminmeh
1064
+
1065
+ ### Date and Time Pickers
1066
+
1067
+ #### Breaking change
1068
+
1069
+ - The `FieldValueType` type has been renamed to `PickerValueType` — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#renamed-variables).
1070
+ - The `toolbar` and `layout` slots no longer receive the `disabled` and `readOnly` props — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#slots-breaking-changes).
1071
+
1072
+ #### `@mui/x-date-pickers@v8.0.0-alpha.1`
1073
+
1074
+ - [fields] Fix focus management with new DOM structure (#15475) @flaviendelangle
1075
+ - [pickers] React 19 support (#15342) @arminmeh
1076
+ - [pickers] Add new properties to `PickerOwnerState` and `PickerContextValue` (#15415) @flaviendelangle
1077
+ - [pickers] Always use `props.value` when it changes (#15490) @flaviendelangle
1078
+ - [pickers] Ensure internal value timezone is updated (#15435) @LukasTy
1079
+ - [pickers] Fix unused code in `<PickersToolbar />` component (#15515) @LukasTy
1080
+ - [pickers] Remove `FieldValueType` in favor of `PickerValueType` (#15259) @arthurbalduini
1081
+ - [pickers] Remove the form props from the layout and the toolbar slots (#15492) @flaviendelangle
1082
+ - [pickers] Use `props.referenceDate` timezone when `props.value` and `props.defaultValue` are not defined (#15532) @flaviendelangle
1083
+ - [TimePicker] Prevent mouse events after `touchend` event (#15346) @arthurbalduini
1084
+
1085
+ #### `@mui/x-date-pickers-pro@v8.0.0-alpha.1` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1086
+
1087
+ Same changes as in `@mui/x-date-pickers@v8.0.0-alpha.1`, plus:
1088
+
1089
+ - [DateTimeRangePicker] Use time in `referenceDate` when selecting date (#15429) @LukasTy
1090
+
1091
+ ### Charts
1092
+
1093
+ #### Breaking change
1094
+
1095
+ - The DX of the Tooltip customization has been refactored
1096
+
1097
+ - The `tooltip` prop has been removed in favor of `slotProps.tooltip` for consistency.
1098
+ - The `popper`, `axisContent`, and `itemContent` slots have been removed in favor of the `tooltip` slot which overrides the entire tooltip.
1099
+ - To override the tooltip content, use the `useItemTooltip` or `useAxisTooltip` hook to get the data, and wrap your component in `ChartsTooltipContainer` to follow the pointer position.
1100
+ - To override the tooltip placement, use the `ChartsItemTooltipContent` or `ChartsItemTooltipContent` to get default data and place them in your custom tooltip.
1101
+
1102
+ - The library now uses the SVG `filter` attribute instead of `d3-color` for color manipulation.
1103
+
1104
+ - This modification impacts the `LinePlot`, `AreaPlot`, and `BarPlot` components.
1105
+ If you've customized the `fill` of those elements, you might need to override it by using the CSS `filter`.
1106
+ - The `theme.styleOverride` is removed for `MuiLineElement`, `MuiAreaElement`, and `MuiBarElement` to improve performance.
1107
+ You can still target those elements by using the `MuiLinePlot`, `MuiAreaPlot`, and `MuiBarPlot` and target the appropriate classes `lineElementClasses.root`, `areaElementClasses.root`, `barElementClasses.root`
1108
+
1109
+ - Removed the `resolveSizeBeforeRender` prop from all chart components — [Learn more](https://next.mui.com/x/migration/migration-charts-v7/#remove-resolvesizebeforerender-prop).
1110
+ - Removed `width` and `height` props from the `ChartsSurface` component.
1111
+ - Removed the `viewport` prop from all charts.
1112
+
1113
+ #### `@mui/x-charts@v8.0.0-alpha.1`
1114
+
1115
+ - [charts] React 19 support (#15342) @arminmeh
1116
+ - [charts] Decouple `<ChartDataProvider />` and `<ChartsSurface />` (#15375) @JCQuintas
1117
+ - [charts] Fix Scatter Chart tooltip wrong defaults (#15537) @JCQuintas
1118
+ - [charts] Fix key generation for the `<ChartsGrid />` component (#15463) @alexfauquette
1119
+ - [charts] Improve `<SvgRefProvider />` to split the received ref (#15424) @JCQuintas
1120
+ - [charts] Move interaction state in store (#15426) @alexfauquette
1121
+ - [charts] Refactor Tooltip customisation (#15154) @alexfauquette
1122
+ - [charts] Remove intrinsic size requirement (#15471) @JCQuintas
1123
+ - [charts] Replace `d3-color` with CSS filter for highlight (#15084) @alexfauquette
1124
+ - [charts] Split `<DrawingProvider />` into `<DrawingAreaProvider />` and `<SvgRefProvider />` (#15417) @JCQuintas
1125
+
1126
+ #### `@mui/x-charts-pro@v8.0.0-alpha.1` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1127
+
1128
+ Same changes as in `@mui/x-charts@v8.0.0-alpha.1`.
1129
+
1130
+ ### Tree View
1131
+
1132
+ #### Breaking changes
1133
+
1134
+ - The Tree Item component can no longer use `publicAPI` methods in the `render` because they are now memoized — [Learn more](https://next.mui.com/x/migration/migration-tree-view-v7/#stop-using-publicapi-methods-in-the-render).
1135
+
1136
+ #### `@mui/x-tree-view@v8.0.0-alpha.1`
1137
+
1138
+ - [TreeView] React 19 support (#15342) @arminmeh
1139
+ - [TreeView] Do not re-render every Tree Item when the Rich Tree View re-renders (introduce selectors) (#14210) @flaviendelangle
1140
+ - [TreeView] Remove `treeId` from the item context (#15542) @flaviendelangle
1141
+ - [TreeView] Remove state mutation in `moveItemInTree()` (#15539) @flaviendelangle
1142
+ - [TreeItem] Correct the typing of `slotProps.groupTransition` (#15534) @flaviendelangle
1143
+
1144
+ ### Docs
1145
+
1146
+ - [docs] Fix some migration typos (#15422) @LukasTy
1147
+ - [docs] Fix typo in migration guide (#15508) @flaviendelangle
1148
+ - [docs] Fix 301 redirection in docs @oliviertassinari
1149
+ - [docs] Polish Server-side data section (#15330) @oliviertassinari
1150
+ - [docs] Use loading state in the demos (#15512) @cherniavskii
1151
+
1152
+ ### Core
1153
+
1154
+ - [core] Keep OpenSSF badge up-to-date @oliviertassinari
1155
+ - [code-infra] Add `'DensitySelectorGrid'` to time-sensitive argos tests (#15425) @JCQuintas
1156
+ - [code-infra] Add documentation to internal types (#15540) @JCQuintas
1157
+ - [code-infra] Prevent relative imports across packages (#15437) @JCQuintas
1158
+ - [code-infra] Update renovate config to merge `action` pins (#15462) @LukasTy
1159
+ - [docs-infra] Fix version tooltip (#15468) @alexfauquette
1160
+ - [docs-infra] Transpile `.ts` demo files (#15345) @KenanYusuf
1161
+ - [infra] Remove cherry-pick issue write permission (#15456) @oliviertassinari
1162
+
1163
+ ## 8.0.0-alpha.0
1164
+
1165
+ <img width="100%" alt="MUI X v8 Alpha is live" src="https://github.com/user-attachments/assets/114cf615-b617-435f-8499-76ac3c26c57b">
1166
+
1167
+ _Nov 14, 2024_
1168
+
1169
+ We'd like to offer a big thanks to the 22 contributors who made this release possible. Here are some highlights ✨:
1170
+
1171
+ - 🔁 Support [automatic parents and children selection](https://next.mui.com/x/react-tree-view/rich-tree-view/selection/#automatic-parents-and-children-selection) for the Rich Tree View components.
1172
+ - 🌍 Improve Greek (el-GR) locale on the Date and Time Pickers components
1173
+ - 🌍 Improve Polish (pl-PL) locale on the Data Grid component
1174
+ - 🐞 Bugfixes
1175
+ - 📚 Documentation improvements
1176
+
1177
+ Special thanks go out to the community contributors who have helped make this release possible:
1178
+ @belkocik, @GeorgiosDrivas, @k-rajat19, @kalyan90, @DungTiger, @fxnoob, @GuillaumeMeheut
1179
+ Following are all team members who have contributed to this release:
1180
+ @alexfauquette, @arminmeh, @arthurbalduini, @cherniavskii, @flaviendelangle, @JCQuintas, @KenanYusuf, @LukasTy, @MBilalShafi, @michelengelen, @noraleonte, @oliviertassinari, @romgrk, @samuelsycamore, @joserodolfofreitas.
1181
+
1182
+ <!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
1183
+
1184
+ ### Data Grid
1185
+
1186
+ #### `@mui/x-data-grid@8.0.0-alpha.0`
1187
+
1188
+ - [DataGrid] Fix grid overlay aligment with scroll for rtl (#15072) @kalyan90
1189
+ - [DataGrid] Fix resizing right pinned column (#15107) @KenanYusuf
1190
+ - [DataGrid] Pass the reason to the `onPaginationModelChange` callback (#13959) @DungTiger
1191
+ - [DataGrid] Set default overlay height in flex parent layout (#15202) @cherniavskii
1192
+ - [DataGrid] Refactor `baseMenuList` and `baseMenuItem` (#15049) @romgrk
1193
+ - [DataGrid] Remove more material imports (#15063) @romgrk
1194
+ - [l10n] Improve Polish (pl-PL) locale (#15227) @belkocik
1195
+
1196
+ #### `@mui/x-data-grid-pro@8.0.0-alpha.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1197
+
1198
+ Same changes as in `@mui/x-data-grid@8.0.0-alpha.0`, plus:
1199
+
1200
+ - [DataGridPro] Fix column pinning layout (#14966) @cherniavskii
1201
+
1202
+ #### `@mui/x-data-grid-premium@8.0.0-alpha.0` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
1203
+
1204
+ Same changes as in `@mui/x-data-grid-pro@8.0.0-alpha.0`, plus:
1205
+
1206
+ - [DataGridPremium] Server-side data source with row grouping (#13826) @MBilalShafi
1207
+
1208
+ ### Date and Time Pickers
1209
+
1210
+ #### Breaking changes
1211
+
1212
+ - The default DOM structure of the field has changed [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#new-dom-structure-for-the-field).
1213
+
1214
+ - Before version `v8.x`, the fields' DOM structure consisted of an `<input />`, which held the whole value for the component, but unfortunately presents a few limitations in terms of accessibility when managing multiple section values.
1215
+ - Starting with version `v8.x`, all the field and picker components come with a new DOM structure that allows the field component to set aria attributes on individual sections, providing a far better experience with screen readers.
1216
+
1217
+ - Some translation keys no longer require `utils` and the date object as parameters, but only the formatted value as a string. The keys affected by this changes are: `clockLabelText`, `openDatePickerDialogue` and `openTimePickerDialogue` — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#stop-passing-utils-and-the-date-object-to-some-translation-keys).
1218
+
1219
+ - The following types are no longer exported by `@mui/x-date-pickers` and `@mui/x-date-pickers-pro` — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#removed-types).
1220
+
1221
+ - `UseDateFieldComponentProps`
1222
+ - `UseTimeFieldComponentProps`
1223
+ - `UseDateTimeFieldComponentProps`
1224
+ - `BaseSingleInputFieldProps`
1225
+ - `BaseMultiInputFieldProps`
1226
+ - `BasePickersTextFieldProps`
1227
+
1228
+ - The `TDate` generic has been removed from all the types, interfaces, and variables of the `@mui/x-date-pickers` and `@mui/x-date-pickers-pro` packages — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#remove-tdate-generic).
1229
+
1230
+ - Renamed `usePickersTranslations` and `usePickersContext` hooks to have a coherent `Picker` prefix instead of `Pickers` — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#renamed-variables).
1231
+
1232
+ - The `LicenseInfo` object is no longer exported from the `@mui/x-date-pickers-pro` package — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#stop-using-licenseinfo-from-mui-x-date-pickers-pro).
1233
+
1234
+ #### `@mui/x-date-pickers@8.0.0-alpha.0`
1235
+
1236
+ - [fields] Enable the new field DOM structure by default (#14651) @flaviendelangle
1237
+ - [fields] Remove `UseDateFieldComponentProps` and equivalent interfaces (#15053) @flaviendelangle
1238
+ - [fields] Remove clear button from the tab sequence (#14616) @k-rajat19
1239
+ - [l10n] Improve Greek (el-GR) locale (#15250) @GeorgiosDrivas
1240
+ - [pickers] Clean definition of validation props (#15198) @flaviendelangle
1241
+ - [pickers] Clean the new `ownerState` object (#15056) @flaviendelangle
1242
+ - [pickers] Correctly type the `ownerState` of the `field` and `actionBar` slots when resolved in a picker component (#15162) @flaviendelangle
1243
+ - [pickers] Fix `DateCalendar` timezone management (#12321) @LukasTy
1244
+ - [pickers] Fix `DateTimeRangePicker` error when using format without time (#14917) @fxnoob
1245
+ - [pickers] Fix `DigitalClock` time options on a `DST` switch day (#10793) @LukasTy
1246
+ - [pickers] Remove `TDate` generics in favor of `PickerValidDate` direct usage (#15001) @flaviendelangle
1247
+ - [pickers] Remove `utils` and `value` params from translations (#14986) @arthurbalduini
1248
+ - [pickers] Remove plural in "Pickers" on recently introduced APIs (#15297) @flaviendelangle
1249
+ - [pickers] Remove the re-export from `@mui/x-license` (#14487) @k-rajat19
1250
+ - [pickers] Strictly type the props a picker passes to its field, and migrate all the custom field demos accordingly (#15197) @flaviendelangle
1251
+ - [pickers] Unify JSDoc for all the `disabled` and `readOnly` props (#15304) @flaviendelangle
1252
+ - [pickers] Use the new `ownerState` in `DateCalendar`, `DateRangeCalendar`, `MonthCalendar` and `YearCalendar` (#15171) @flaviendelangle
1253
+ - [pickers] Use the new `ownerState` in `usePickersLayout` and `useXXXPicker` (#14994) @flaviendelangle
1254
+
1255
+ #### `@mui/x-date-pickers-pro@8.0.0-alpha.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1256
+
1257
+ Same changes as in `@mui/x-date-pickers@8.0.0-alpha.0`.
1258
+
1259
+ ### Charts
1260
+
1261
+ #### Breaking changes
1262
+
1263
+ - The `legend` prop has been removed. To pass props to the legend, use `slotProps={{ legend: { ... } }}` instead. This can be automatically done with the codemod as long as the `legend` prop does not come from a destructured object — [Learn more](https://next.mui.com/x/migration/migration-charts-v7/#legend-props-propagation-✅).
1264
+
1265
+ - The `slots.legend` does not receive the `drawingArea` prop. You can still access your custom legend with the `useDrawingArea()` hook if your custom legend needs it.
1266
+
1267
+ - Removed or renamed multiple props from Series — [Learn more](https://next.mui.com/x/migration/migration-charts-v7/#series-properties-renaming).
1268
+
1269
+ - The `highlighted` and `faded` properties of highlightScope have been deprecated in favor of `highlight` and `fade`.
1270
+ The deprecated ones are now removed.
1271
+ - The `xAxisKey`, `yAxisKey`, and `zAxisKey` properties have been deprecated in favor of `xAxisId`, `yAxisId`, and `zAxisId`.
1272
+
1273
+ - The Pie Chart lost all props and renderer linked to axes because pie chart does not need cartesian axes. If you used it, you can still add them back with composition. Please consider opening an issue to share your use case with us — [Learn more](https://next.mui.com/x/migration/migration-charts-v7/#remove-pie-chart-axes).
1274
+
1275
+ #### `@mui/x-charts@8.0.0-alpha.0`
1276
+
1277
+ - [charts] Introduce `hideLegend` prop (#15277) @alexfauquette
1278
+ - [charts] Filter items outside the drawing area for performance (#14281) @alexfauquette
1279
+ - [charts] Fix log scale with `null` data (#15337) @alexfauquette
1280
+ - [charts] Fix tooltip follow mouse (#15189) @alexfauquette
1281
+ - [charts] Remove `xAxisKey`, `yAxisKey`, and `zAxisKey` series keys (#15192) @alexfauquette
1282
+ - [charts] Remove axis from the pie chart (#15187) @alexfauquette
1283
+ - [charts] Remove deprecated `legend` props (#15081) @alexfauquette
1284
+ - [charts] Remove deprecated highlight properties (#15191) @alexfauquette
1285
+ - [charts] Update Popper position outside of React (#15003) @alexfauquette
1286
+ - [charts] Improve the performance of the `getSymbol` method (#15233) @romgrk
1287
+
1288
+ #### `@mui/x-charts-pro@8.0.0-alpha.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1289
+
1290
+ Same changes as in `@mui/x-charts@8.0.0-alpha.0`.
1291
+
1292
+ ### Tree View
1293
+
1294
+ #### Breaking changes
1295
+
1296
+ - The `ContentComponent` or `ContentProps` props of the `<TreeItem />` component have been removed in favor of the new `slots`, `slotProps` props and of the `useTreeItem` hook — [Learn more](https://next.mui.com/x/migration/migration-tree-view-v7/#new-api-to-customize-the-tree-item).
1297
+
1298
+ - The `onClick` and `onMouseDown` callbacks of the Tree Item component are now passed to the root element instead of the content — [Learn more](https://next.mui.com/x/migration/migration-tree-view-v7/#behavior-change-on-the-onclick-and-onmousedown-props-of-treeitem).
1299
+
1300
+ - Rename the `<TreeItem2 />` component (and related utils) — [Learn more](https://next.mui.com/x/migration/migration-tree-view-v7/#✅-rename-the-treeitem2-and-related-utils).
1301
+
1302
+ - The `<TreeView />` component has been renamed `<SimpleTreeView />` which has exactly the same API — [Learn more](https://next.mui.com/x/migration/migration-tree-view-v7/#✅-use-simple-tree-view-instead-of-tree-view).
1303
+
1304
+ - The indentation of nested Tree Items is now applied on the content of the element — [Learn more](https://next.mui.com/x/migration/migration-tree-view-v7/#apply-the-indentation-on-the-item-content-instead-of-its-parents-group).
1305
+
1306
+ #### `@mui/x-tree-view@8.0.0-alpha.0`
1307
+
1308
+ - [TreeView] Always apply the indentation on the item content instead of its parent's group (#15089) @flaviendelangle
1309
+ - [TreeView] Automatic parents and children selection (#14899) @flaviendelangle
1310
+ - [TreeView] Remove deprecated `TreeView` component (#15093) @flaviendelangle
1311
+ - [TreeView] Replace `<TreeItem />` with `<TreeItem2 />` and migrate all the components and utils (#14913) @flaviendelangle
1312
+
1313
+ ### Docs
1314
+
1315
+ - [docs] Add docs for rounded symbol (#15324) @GuillaumeMeheut
1316
+ - [docs] Add migration guide for the removal of `LicenseInfo` from `@mui/x-date-pickers-pro` (#15321) @flaviendelangle
1317
+ - [docs] Add migration guide for the first breaking changes of charts (#15276) @alexfauquette
1318
+ - [docs] Add `PickersPopper` component to the Date Picker customization playground (#15305) @LukasTy
1319
+ - [docs] Add v8 to supported releases table (#15384) @joserodolfofreitas
1320
+ - [docs] Apply the new DX to the Button Field demos (#14860) @flaviendelangle
1321
+ - [docs] Apply the new DX to the `Autocomplete` Field demo (#15165) @flaviendelangle
1322
+ - [docs] Cleanup the pickers migration guide (#15310) @flaviendelangle
1323
+ - [docs] Copyedit the Charts Getting Started sequence (#14962) @samuelsycamore
1324
+ - [docs] Create Pickers masked field recipe (#13515) @flaviendelangle
1325
+ - [docs] Fix `applyDomain` docs for the charts (#15332) @JCQuintas
1326
+ - [docs] Fix link to private notion page (#15396) @michelengelen
1327
+ - [docs] Fix missing punctuation on descriptions (#15229) @oliviertassinari
1328
+ - [docs] Fix peer dependency range (#15281) @oliviertassinari
1329
+ - [docs] Fix small Tree View typo (#15390) @oliviertassinari
1330
+ - [docs] Fix the `AdapterMomentHijri` doc section (#15312) @flaviendelangle
1331
+ - [docs] Replace the Tree Item anatomy images (#15066) @noraleonte
1332
+ - [docs] Start v8 migration guides (#15096) @MBilalShafi
1333
+ - [docs] Subdivide and reorganize navigation bar (#15014) @samuelsycamore
1334
+ - [docs] Use `PickersTextField` in the customization playground (#15288) @LukasTy
1335
+ - [docs] Use `next` instead of `^8.0.0` in the migration guides (#15091) @flaviendelangle
1336
+
1337
+ ### Core
1338
+
1339
+ - [core] Adjust the `cherry-pick` GitHub actions (#15099) @LukasTy
1340
+ - [core] Add `()` at the name of function name in the doc (#15075) @oliviertassinari
1341
+ - [core] Clarify release version bump strategy (#15219) @cherniavskii
1342
+ - [core] Fix CodeSandbox and StackBlitz for next doc-infra sync @oliviertassinari
1343
+ - [core] Fix Vale error on `master` @oliviertassinari
1344
+ - [core] Fix changelog reference to VoiceOver @oliviertassinari
1345
+ - [core] Fix `tools-public.mui.com` redirection @oliviertassinari
1346
+ - [core] Fix webpack capitalization (#15353) @oliviertassinari
1347
+ - [core] Move `helpers` to `@mui/x-internals` package (#15188) @LukasTy
1348
+ - [code-infra] Set renovate to automerge devDependencies (#13463) @JCQuintas
1349
+ - [infra] Reintroduce the cherry pick workflow (#15293) @michelengelen
1350
+ - [core] Remove duplicate title header (#15389) @oliviertassinari
1351
+ - [release] v8 preparation (#15054) @michelengelen
1352
+ - [test] Fix advanced list view regression test snapshot (#15260) @KenanYusuf
1353
+
1354
+ ## 7.25.0
1355
+
1356
+ _Jan 31, 2025_
1357
+
1358
+ We'd like to offer a big thanks to the 5 contributors who made this release possible. Here are some highlights ✨:
1359
+
1360
+ - 🐞 Bugfixes
1361
+
1362
+ Special thanks go out to the community contributors who have helped make this release possible:
1363
+ @k-rajat19, @lauri865.
1364
+ Following are all team members who have contributed to this release:
1365
+ @KenanYusuf, @MBilalShafi, @arminmeh.
1366
+
1367
+ <!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
1368
+
1369
+ ### Data Grid
1370
+
1371
+ #### `@mui/x-data-grid@7.25.0`
1372
+
1373
+ - [DataGrid] Fix `renderContext` calculation with scroll bounce / over-scroll (#16368) @lauri865
1374
+ - [DataGrid] Refactor row state propagation (#16351) @lauri865
1375
+ - [DataGrid] Add missing style overrides (#16272) (#16358) @KenanYusuf
1376
+ - [DataGrid] Fix header filters keyboard navigation when there are no rows (#16369) @k-rajat19
1377
+ - [DataGrid] Fix order of `onClick` prop on toolbar buttons (#16364) @KenanYusuf
1378
+ - [DataGrid] Improve test coverage of server side data source (#15988) @MBilalShafi
1379
+ - [DataGrid] Remove outdated warning (#16370) @MBilalShafi
1380
+ - [DataGrid] Respect width of `iconContainer` during autosizing (#16409) @michelengelen
1381
+
1382
+ #### `@mui/x-data-grid-pro@7.25.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1383
+
1384
+ Same changes as in `@mui/x-data-grid@7.25.0`, plus:
1385
+
1386
+ - [DataGridPro] Fix the return type of `useGridApiRef` for Pro and Premium packages on React < 19 (#16348) @arminmeh
1387
+ - [DataGridPro] Fetch new rows only once when multiple models are changed in one cycle (#16382) @arminmeh
1388
+
1389
+ #### `@mui/x-data-grid-premium@7.25.0` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
1390
+
1391
+ Same changes as in `@mui/x-data-grid-pro@7.25.0`.
1392
+
1393
+ ### Date and Time Pickers
1394
+
1395
+ #### `@mui/x-date-pickers@7.25.0`
1396
+
1397
+ Internal changes.
1398
+
1399
+ #### `@mui/x-date-pickers-pro@7.25.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1400
+
1401
+ Same changes as in `@mui/x-date-pickers@7.25.0`.
1402
+
1403
+ ### Charts
1404
+
1405
+ #### `@mui/x-charts@7.25.0`
1406
+
1407
+ Internal changes.
1408
+
1409
+ #### `@mui/x-charts-pro@7.25.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1410
+
1411
+ Same changes as in `@mui/x-charts@7.25.0`.
1412
+
1413
+ ### Tree View
1414
+
1415
+ #### `@mui/x-tree-view@7.25.0`
1416
+
1417
+ Internal changes.
1418
+
1419
+ #### `@mui/x-tree-view-pro@7.25.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1420
+
1421
+ Same changes as in `@mui/x-tree-view@7.25.0`.
1422
+
1423
+ ### Docs
1424
+
1425
+ - [docs] Improve release documentation (#16322) @MBilalShafi
1426
+
1427
+ ### Core
1428
+
1429
+ - [test] Fix flaky data source tests in DataGrid (#16382) @lauri865
1430
+
1431
+ ## 7.24.1
1432
+
1433
+ _Jan 24, 2025_
1434
+
1435
+ We'd like to offer a big thanks to the 7 contributors who made this release possible. Here are some highlights ✨:
1436
+
1437
+ - 🐞 Bugfixes
1438
+ - 🌍 Improve Persian (fa-IR) locale on the Data Grid
1439
+
1440
+ Special thanks go out to the community contributors who have helped make this release possible:
1441
+ @mostafaRoosta74, @lauri865.
1442
+
1443
+ Following are all team members who have contributed to this release:
1444
+ @alexfauquette, @JCQuintas, @cherniavskii, @LukasTy, @arminmeh.
1445
+
1446
+ ### Data Grid
1447
+
1448
+ #### `@mui/x-data-grid@7.24.1`
1449
+
1450
+ - [DataGrid] Fix toggling preference panel from toolbar (#16276) @lauri865
1451
+ - [DataGrid] Only try to mount filter button if there are filters present (#16269) @lauri865
1452
+ - [DataGrid] Revert `apiRef` to be `MutableRefObject` for React versions < 19 (#16320) @arminmeh
1453
+ - [l10n] Improve Persian (fa-IR) locale (#15964) @mostafaRoosta74
1454
+
1455
+ #### `@mui/x-data-grid-pro@7.24.1` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1456
+
1457
+ Same changes as in `@mui/x-data-grid@7.24.1`.
1458
+
1459
+ #### `@mui/x-data-grid-premium@7.24.1` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
1460
+
1461
+ Same changes as in `@mui/x-data-grid-pro@7.24.1`.
1462
+
1463
+ ### Date and Time Pickers
1464
+
1465
+ #### `@mui/x-date-pickers@7.24.1`
1466
+
1467
+ - [fields] Reset `all` selected state on section edit (#16232) @LukasTy
1468
+
1469
+ #### `@mui/x-date-pickers-pro@7.24.1` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1470
+
1471
+ Same changes as in `@mui/x-date-pickers@7.24.1`.
1472
+
1473
+ ### Charts
1474
+
1475
+ #### `@mui/x-charts@7.24.1`
1476
+
1477
+ - [charts] Handle case where gradient stop `offset` could be `Infinite` (@JCQuintas) (#16309) @JCQuintas
1478
+
1479
+ #### `@mui/x-charts-pro@7.24.1` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1480
+
1481
+ Same changes as in `@mui/x-charts@7.24.1`.
1482
+
1483
+ ### Tree View
1484
+
1485
+ #### `@mui/x-tree-view@7.24.1`
1486
+
1487
+ Internal changes.
1488
+
1489
+ #### `@mui/x-tree-view-pro@7.24.1` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1490
+
1491
+ Same changes as in `@mui/x-tree-view@7.24.1`.
1492
+
1493
+ ### Docs
1494
+
1495
+ - [docs] Fix `domainLimit` definition (#16271) @alexfauquette
1496
+
1497
+ ### Core
1498
+
1499
+ - [core] Make `@mui/x-internals` a dependency of `@mui/x-license` (#16265) @alexfauquette
1500
+ - [test] Fix flaky column pinning tests (#16228) @cherniavskii
1501
+ - [test] Fix flaky tests (#16264) @lauri865
1502
+
1503
+ ## 7.24.0
1504
+
1505
+ _Jan 17, 2025_
1506
+
1507
+ We'd like to offer a big thanks to the 8 contributors who made this release possible. Here are some highlights ✨:
1508
+
1509
+ - 🔄 Data Grid [Scroll restoration](https://next.mui.com/x/react-data-grid/scrolling/#scroll-restoration)
1510
+ - 🐞 Bugfixes
1511
+
1512
+ Special thanks go out to the community contributors who have helped make this release possible:
1513
+ @lauri865, @AxharKhan.
1514
+ Following are all team members who have contributed to this release:
1515
+ @KenanYusuf, @arminmeh, @cherniavskii, @michelengelen, @samuelsycamore, @LukasTy.
1516
+
1517
+ <!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
1518
+
1519
+ ### Data Grid
1520
+
1521
+ #### `@mui/x-data-grid@7.24.0`
1522
+
1523
+ - [DataGrid] Fix resizing right pinned column (#16193) @KenanYusuf
1524
+ - [DataGrid] Improve scrollbar deadzone with overlay scrollbars (#16212) @lauri865
1525
+ - [DataGrid] Scroll restoration (#16208) @lauri865
1526
+ - [DataGrid] Fix row, cell and header memoizations (#16195) @lauri865
1527
+ - [l10n] Improve Urdu (ur-PK) locale (#16081) @AxharKhan
1528
+
1529
+ #### `@mui/x-data-grid-pro@7.24.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1530
+
1531
+ Same changes as in `@mui/x-data-grid@7.24.0`, plus:
1532
+
1533
+ - [DataGridPro] Add test for column pinning with disabled column virtualization (#16196) @cherniavskii
1534
+ - [DataGridPro] Fix width of right-pinned column group during resize (#16207) @cherniavskii
1535
+
1536
+ #### `@mui/x-data-grid-premium@7.24.0` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
1537
+
1538
+ Same changes as in `@mui/x-data-grid-pro@7.24.0`.
1539
+
1540
+ ### Date and Time Pickers
1541
+
1542
+ #### `@mui/x-date-pickers@7.24.0`
1543
+
1544
+ Internal changes.
1545
+
1546
+ #### `@mui/x-date-pickers-pro@7.24.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1547
+
1548
+ Same changes as in `@mui/x-date-pickers@7.24.0`.
1549
+
1550
+ ### Charts
1551
+
1552
+ #### `@mui/x-charts@7.24.0`
1553
+
1554
+ Internal changes.
1555
+
1556
+ #### `@mui/x-charts-pro@7.24.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1557
+
1558
+ Same changes as in `@mui/x-charts@7.24.0`.
1559
+
1560
+ ### Tree View
1561
+
1562
+ #### `@mui/x-tree-view@7.24.0`
1563
+
1564
+ Internal changes.
1565
+
1566
+ #### `@mui/x-tree-view-pro@7.24.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1567
+
1568
+ Same changes as in `@mui/x-tree-view@7.24.0`.
1569
+
1570
+ ### Docs
1571
+
1572
+ - [docs] Copyedit the Data Grid cell selection page (#16213) @samuelsycamore
1573
+ - [docs] Fix demo rendering issue on Codesandbox (#16129) @arminmeh
1574
+
1575
+ ### Core
1576
+
1577
+ - [core] Type all references as `RefObject` (#16125) @arminmeh
1578
+ - [code-infra] Refactor `react` and `react-dom` definitions to simplify dep resolving (#16214) @LukasTy
1579
+ - [infra] Improve cherry-pick action target list (#16188) @michelengelen
1580
+ - [test] Fix flaky column pinning unit test (#16209) @cherniavskii
1581
+
1582
+ ## 7.23.6
1583
+
1584
+ _Jan 9, 2025_
1585
+
1586
+ We'd like to offer a big thanks to the 11 contributors who made this release possible. Here are some highlights ✨:
1587
+
1588
+ - 🌍 Add Chinese (Taiwan) (zh-TW) locale on the Date and Time Pickers
1589
+ - 🌍 Improve Norwegian (nb-NO) locale on the Date and Time Pickers
1590
+ - 🌍 Improve Dutch (nl-NL) locale on the Data Grid
1591
+ - 🐞 Bugfixes
1592
+
1593
+ Special thanks go out to the community contributors who have helped make this release possible:
1594
+ @josteinjhauge, @derek-0000, @nusr, @k-rajat19, @tomashauser.
1595
+ Following are all team members who have contributed to this release:
1596
+ @flaviendelangle, @LukasTy, @MBilalShafi, @arminmeh, @oliviertassinari, @cherniavskii.
1597
+
1598
+ <!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
1599
+
1600
+ ### Data Grid
1601
+
1602
+ #### `@mui/x-data-grid@7.23.6`
1603
+
1604
+ - [DataGrid] Improve React 19 support (#16048) @LukasTy
1605
+ - [DataGrid] Add `name` attribute to selection checkboxes (#16041) @derek-0000
1606
+ - [DataGrid] Fix number filter field formatting values while typing (#16068) @arminmeh
1607
+ - [DataGrid] Fix select all checkbox state reset with server side data (#16039) @MBilalShafi
1608
+
1609
+ #### `@mui/x-data-grid-pro@7.23.6` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1610
+
1611
+ Same changes as in `@mui/x-data-grid@7.23.6`.
1612
+
1613
+ #### `@mui/x-data-grid-premium@7.23.6` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
1614
+
1615
+ Same changes as in `@mui/x-data-grid-pro@7.23.6`.
1616
+
1617
+ ### Date and Time Pickers
1618
+
1619
+ #### `@mui/x-date-pickers@7.23.6`
1620
+
1621
+ - [pickers] Improve React 19 support (#16048) @LukasTy
1622
+ - [l10n] Add Chinese (Taiwan) (zh-TW) locale (#16057) @nusr
1623
+ - [l10n] Improve Norwegian (nb-NO) locale (#16083) @josteinjhauge
1624
+ - [pickers] Support `date-fns-jalali` v4 (#16013) @LukasTy
1625
+
1626
+ #### `@mui/x-date-pickers-pro@7.23.6` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1627
+
1628
+ Same changes as in `@mui/x-date-pickers@7.23.6`.
1629
+
1630
+ ### Charts
1631
+
1632
+ #### `@mui/x-charts@7.23.6`
1633
+
1634
+ - [charts] Improve React 19 support (#16048) @LukasTy
1635
+ - [charts] Fix 301 redirection in the API documentation @oliviertassinari
1636
+
1637
+ #### `@mui/x-charts-pro@7.23.6` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1638
+
1639
+ Same changes as in `@mui/x-charts@7.23.6`.
1640
+
1641
+ ### Tree View
1642
+
1643
+ #### `@mui/x-tree-view@7.23.6`
1644
+
1645
+ - [TreeView] Improve React 19 support (#16048) @LukasTy
1646
+
1647
+ #### `@mui/x-tree-view-pro@7.23.6` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1648
+
1649
+ Same changes as in `@mui/x-tree-view@7.23.6`.
1650
+
1651
+ ### Docs
1652
+
1653
+ - [docs] Fix `EditingWithDatePickers` demo (#16047) @k-rajat19
1654
+ - [docs] Fix doc warning for automatic children selection on tree view (#16037) @flaviendelangle
1655
+ - [docs] Fix non-existing "adapter" property of `LocalizationProvider` (#16088) @tomashauser
1656
+
1657
+ ### Core
1658
+
1659
+ - [core] Clarify the release strategy (#16012) @MBilalShafi
1660
+ - [core] Update the `release:version` docs (#16040) @cherniavskii
1661
+
1662
+ ## 7.23.5
1663
+
1664
+ _Dec 27, 2024_
1665
+
1666
+ Here are some highlights ✨:
1667
+
1668
+ - 🐞 Fix version mismatch issue in Data Grid codesandbox/stackblitz demos
1669
+
1670
+ <!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
1671
+
1672
+ ### Data Grid
1673
+
1674
+ #### `@mui/x-data-grid@7.23.5`
1675
+
1676
+ No changes since `@mui/x-data-grid@v7.23.4`.
1677
+
1678
+ #### `@mui/x-data-grid-pro@7.23.5` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1679
+
1680
+ Same changes as in `@mui/x-data-grid@7.23.5`.
1681
+
1682
+ #### `@mui/x-data-grid-premium@7.23.5` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
1683
+
1684
+ Same changes as in `@mui/x-data-grid-pro@7.23.5`.
1685
+
1686
+ ## 7.23.4
1687
+
1688
+ _Dec 27, 2024_
1689
+
1690
+ We'd like to offer a big thanks to the 4 contributors who made this release possible. Here are some highlights ✨:
1691
+
1692
+ - 🌍 Improve Dutch (nl-NL) locale on the Data Grid
1693
+ - 🐞 Bugfixes
1694
+
1695
+ Special thanks go out to the community contributor who has helped make this release possible:
1696
+ @JoepVerkoelen.
1697
+ Following are all team members who have contributed to this release:
1698
+ @arminmeh, @oliviertassinari.
1699
+
1700
+ <!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
1701
+
1702
+ ### Data Grid
1703
+
1704
+ #### `@mui/x-data-grid@7.23.4`
1705
+
1706
+ - [DataGrid] Fix header filters showing clear button while empty (#15990) @k-rajat19
1707
+ - [DataGrid] Replace `forwardRef` with a shim for forward compatibility (#15984) @lauri865
1708
+ - [l10n] Improve Dutch (nl-NL) locale (#15920) @JoepVerkoelen
1709
+
1710
+ #### `@mui/x-data-grid-pro@7.23.4` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1711
+
1712
+ Same changes as in `@mui/x-data-grid@7.23.4`.
1713
+
1714
+ #### `@mui/x-data-grid-premium@7.23.4` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
1715
+
1716
+ Same changes as in `@mui/x-data-grid-pro@7.23.4`, plus:
1717
+
1718
+ - [DataGridPremium] Fix column pinning with checkbox selection and row grouping (#15949) @k-rajat19
1719
+
1720
+ ### Docs
1721
+
1722
+ - [docs] Fix outdated link to handbook (#15855) @oliviertassinari
1723
+
1724
+ ## 7.23.3
1725
+
1726
+ _Dec 19, 2024_
1727
+
1728
+ We'd like to offer a big thanks to the 6 contributors who made this release possible. Here are some highlights ✨:
1729
+
1730
+ - 🌍 Improve Korean (ko-KR) locale on the Data Grid
1731
+ - 🐞 Bugfixes
1732
+
1733
+ Special thanks go out to the community contributors who have helped make this release possible:
1734
+ @k-rajat19, @good-jinu.
1735
+ Following are all team members who have contributed to this release:
1736
+ @KenanYusuf, @MBilalShafi, @arminmeh, @flaviendelangle.
1737
+
1738
+ <!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
1739
+
1740
+ ### Data Grid
1741
+
1742
+ #### `@mui/x-data-grid@7.23.3`
1743
+
1744
+ - [DataGrid] Allow passing custom props to `.main` element (#15919) @MBilalShafi
1745
+ - [DataGrid] Consider `columnGroupHeaderHeight` prop in `getTotalHeaderHeight` method (#15927) @k-rajat19
1746
+ - [DataGrid] Deprecate `indeterminateCheckboxAction` prop (#15862) @MBilalShafi
1747
+ - [DataGrid] Fix `aria-label` value for group checkboxes (#15861) @MBilalShafi
1748
+ - [DataGrid] Fix autosizing with virtualized columns (#15929) @k-rajat19
1749
+ - [DataGrid] Round dimensions to avoid subpixel rendering error (#15873) @KenanYusuf
1750
+ - [DataGrid] Toggle menu on click in `<GridActionsCell />` (#15871) @k-rajat19
1751
+ - [DataGrid] Trigger row spanning computation on rows update (#15872) @MBilalShafi
1752
+ - [l10n] Improve Korean (ko-KR) locale (#15906) @good-jinu
1753
+
1754
+ #### `@mui/x-data-grid-pro@7.23.3` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1755
+
1756
+ Same changes as in `@mui/x-data-grid@7.23.3`.
1757
+
1758
+ #### `@mui/x-data-grid-premium@7.23.3` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
1759
+
1760
+ Same changes as in `@mui/x-data-grid-pro@7.23.3`.
1761
+
1762
+ ### Date and Time Pickers
1763
+
1764
+ #### `@mui/x-date-pickers@7.23.3`
1765
+
1766
+ - [pickers] Add verification to disable skipped hours in spring forward DST (#15918) @flaviendelangle
1767
+
1768
+ #### `@mui/x-date-pickers-pro@7.23.3` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1769
+
1770
+ Same changes as in `@mui/x-date-pickers@7.23.3`.
1771
+
1772
+ ## 7.23.2
1773
+
1774
+ _Dec 12, 2024_
1775
+
1776
+ We'd like to offer a big thanks to the 11 contributors who made this release possible. Here are some highlights ✨:
1777
+
1778
+ - 🌍 Improve Romanian and Turkish locales on the Data Grid
1779
+ - 🌍 Improve Romanian locale on the Pickers
1780
+ - 📚 Documentation improvements
1781
+ - 🐞 Bugfixes
1782
+
1783
+ Special thanks go out to the community contributors who have helped make this release possible:
1784
+ @ihsanberkozcan, @k-rajat19, @lhilgert9, @nusr, @rares985.
1785
+
1786
+ Following are all team members who have contributed to this release:
1787
+ @alexfauquette, @arminmeh, @flaviendelangle, @JCQuintas, @KenanYusuf, @LukasTy.
1788
+
1789
+ <!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
1790
+
1791
+ ### Data Grid
1792
+
1793
+ #### `@mui/x-data-grid@7.23.2`
1794
+
1795
+ - [DataGrid] Fix "No rows" displaying when all rows are pinned (#15851) @nusr
1796
+ - [DataGrid] Use `columnsManagement` slot (#15821) @k-rajat19
1797
+ - [l10n] Improve Romanian (ro-RO) locale (#15751) @rares985
1798
+ - [l10n] Improve Turkish (tr-TR) locale (#15748) @ihsanberkozcan
1799
+
1800
+ #### `@mui/x-data-grid-pro@7.23.2` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1801
+
1802
+ Same changes as in `@mui/x-data-grid@7.23.2`, plus:
1803
+
1804
+ - [DataGridPro] Make Row reordering work with pagination (#15782) @k-rajat19
1805
+
1806
+ #### `@mui/x-data-grid-premium@7.23.2` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
1807
+
1808
+ Same changes as in `@mui/x-data-grid-pro@7.23.2`, plus:
1809
+
1810
+ - [DataGridPremium] Fix group column ignoring `valueOptions` for `singleSelect` column type (#15754) @arminmeh
1811
+
1812
+ ### Date and Time Pickers
1813
+
1814
+ #### `@mui/x-date-pickers@7.23.2`
1815
+
1816
+ - [l10n] Improve Romanian (ro-RO) locale (#15751) @rares985
1817
+
1818
+ #### `@mui/x-date-pickers-pro@7.23.2` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1819
+
1820
+ Same changes as in `@mui/x-date-pickers@7.23.2`.
1821
+
1822
+ ### Charts
1823
+
1824
+ #### `@mui/x-charts@7.23.2`
1825
+
1826
+ - [charts] Fix key generation for the ChartsGrid (#15864) @alexfauquette
1827
+ - [charts] Fix scatter dataset with missing data (#15804) @alexfauquette
1828
+
1829
+ #### `@mui/x-charts-pro@7.23.2` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1830
+
1831
+ Same changes as in `@mui/x-charts@7.23.2`.
1832
+
1833
+ #### `@mui/x-tree-view@v7.23.2`
1834
+
1835
+ No changes, releasing to keep the versions in sync.
1836
+
1837
+ #### `@mui/x-tree-view-pro@7.23.2` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1838
+
1839
+ Releasing to benefit from license package fix (#15818).
1840
+
1841
+ ### Docs
1842
+
1843
+ - [docs] Fix typo in charts axis documentation (#15746) @JCQuintas
1844
+ - [docs] Improve Pickers accessible DOM structure description (#15752) @LukasTy
1845
+ - [docs] Use `updateRows` method for list view demos (#15824) @KenanYusuf
1846
+ - [docs] Use date library version from package dev dependencies for sandboxes (#15767) @LukasTy
1847
+
1848
+ ### Core
1849
+
1850
+ - [core] Add `@mui/x-tree-view-pro` to `releaseChangelog` (#15747) @flaviendelangle
1851
+ - [license] Use `console.log` for the error message on Codesandbox to avoid rendering error (#15818) @arminmeh
1852
+
1853
+ ## 7.23.1
1854
+
1855
+ _Dec 5, 2024_
1856
+
1857
+ We'd like to offer a big thanks to the 7 contributors who made this release possible. Here are some highlights ✨:
1858
+
1859
+ - 🌍 Improve German locale on the Data Grid component
1860
+ - 🐞 Bugfixes
1861
+
1862
+ Special thanks go out to the community contributors who have helped make this release possible:
1863
+ @lhilgert9.
1864
+
1865
+ Following are all team members who have contributed to this release:
1866
+ @arthurbalduini, @cherniavskii, @flaviendelangle, @JCQuintas, @LukasTy and @MBilalShafi.
1867
+
1868
+ <!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
1869
+
1870
+ ### Data Grid
1871
+
1872
+ #### `@mui/x-data-grid@7.23.1`
1873
+
1874
+ - [DataGrid] Make column autosizing work with flex columns (#15712) @cherniavskii
1875
+ - [l10n] Improve German (de-DE) locale (#15641) @lhilgert9
1876
+
1877
+ #### `@mui/x-data-grid-pro@7.23.1` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1878
+
1879
+ Same changes as in `@mui/x-data-grid@7.23.1`, plus:
1880
+
1881
+ - [DataGridPro] Cleanup pinned rows on removal (#15702) @cherniavskii
1882
+
1883
+ #### `@mui/x-data-grid-premium@7.23.1` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
1884
+
1885
+ Same changes as in `@mui/x-data-grid-pro@7.23.1`.
1886
+
1887
+ ### Date and Time Pickers
1888
+
1889
+ #### `@mui/x-date-pickers@7.23.1`
1890
+
1891
+ - [TimePicker] Prevent mouse events after `touchend` event (#15430) @arthurbalduini
1892
+
1893
+ #### `@mui/x-date-pickers-pro@7.23.1` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1894
+
1895
+ Same changes as in `@mui/x-date-pickers@7.23.1`.
1896
+
1897
+ ### Charts
1898
+
1899
+ #### `@mui/x-charts@7.23.1`
1900
+
1901
+ - [charts] Improve SVG `pattern` and `gradient` support (#15724) @JCQuintas
1902
+
1903
+ #### `@mui/x-charts-pro@7.23.1` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1904
+
1905
+ Same changes as in `@mui/x-charts@7.23.1`.
1906
+
1907
+ ### Docs
1908
+
1909
+ - [docs] Fix Pickers theme augmentation example (#15675) @LukasTy
1910
+ - [docs] Remove duplicated warning (#15715) @cherniavskii
1911
+ - [test] Force hover in headless Chrome (#15711) @cherniavskii
1912
+ - [docs-infra] Bump `@mui/internal-markdown` to support nested demo imports (#15738) @alexfauquette
1913
+ - [docs] Improve SEO titles for the Data Grid (#15695) @MBilalShafi
1914
+
1915
+ ### Core
1916
+
1917
+ - [core] Add `@mui/x-tree-view-pro` to `releaseChangelog` (#15747) @flaviendelangle
1918
+
1919
+ ## 7.23.0
1920
+
1921
+ _Nov 29, 2024_
1922
+
1923
+ We'd like to offer a big thanks to the 10 contributors who made this release possible. Here are some highlights ✨:
1924
+
1925
+ - ✨ Support for a new display mode on the Data Grid with the [List View feature](https://mui.com/x/react-data-grid/list-view/), offering an extremely flexible way to render datasets and enabling developers to adapt how data is displayed across different screen sizes.
1926
+
1927
+ https://github.com/user-attachments/assets/61286adc-03fc-4323-9739-8ca726fcc16c
1928
+
1929
+ - ⚛️ React 19 support
1930
+ - 📚 Documentation improvements
1931
+ - 🌍 Improve Spanish, Portuguese, Chinese locales on the Data Grid component.
1932
+ - 🌍 Improve Dutch locale on the Date and Time Picker components.
1933
+ - 🐞 Bugfixes
1934
+
1935
+ Special thanks go out to the community contributors who have helped make this release possible:
1936
+ @dloeda, @headironc, @mathzdev, @nphmuller, @lhilgert9, @lauri865.
1937
+ Following are all team members who have contributed to this release:
1938
+ @oliviertassinari, @arminmeh, @KenanYusuf, @flaviendelangle, @MBilalShafi.
1939
+
1940
+ <!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
1941
+
1942
+ ### Data Grid
1943
+
1944
+ #### `@mui/x-data-grid@v7.23.0`
1945
+
1946
+ - [DataGrid] React 19 support (#15557) @arminmeh
1947
+ - [DataGrid] Change test dom check from `/jsdom/` to `/jsdom|HappyDOM/`. (#15642) @jedesroches
1948
+ - [DataGrid] Fix last separator not being hidden when grid is scrollable (#15551) @KenanYusuf
1949
+ - [DataGrid] Fix order of spread props on toolbar items (#15556) @KenanYusuf
1950
+ - [DataGrid] Fix row-spanning in combination with column-pinning (#15460) @lhilgert9
1951
+ - [DataGrid] Improve resize performance (#15592) @lauri865
1952
+ - [DataGrid] Support column virtualization with dynamic row height (#15567) @cherniavskii
1953
+ - [DataGrid] Improve `GridCell` performance (#15621) @lauri865
1954
+ - [l10n] Improve Chinese (zh-CN) locale (#15570) @headironc
1955
+ - [l10n] Improve Portuguese (pt-PT) locale (#15561) @mathzdev
1956
+
1957
+ #### `@mui/x-data-grid-pro@v7.23.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1958
+
1959
+ Same changes as in `@mui/x-data-grid@v7.23.0`, plus:
1960
+
1961
+ - [DataGridPro] Fix header filtering with `boolean` column type (#15640) @k-rajat19
1962
+ - [DataGridPro] Fix pagination state not updating if the data source response has no rows (#15643) @zinoroman
1963
+ - [DataGridPro] Fix selection propagation issue on initialization (#15593) @MBilalShafi
1964
+
1965
+ #### `@mui/x-data-grid-premium@v7.23.0` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
1966
+
1967
+ Same changes as in `@mui/x-data-grid-pro@v7.23.0`.
1968
+
1969
+ ### Date and Time Pickers
1970
+
1971
+ #### `@mui/x-date-pickers@v7.23.0`
1972
+
1973
+ - [pickers] React 19 support (#15557) @arminmeh
1974
+ - [pickers] Fix DST issue with `America/Asuncion` timezone and `AdapterMoment` (#15653) @flaviendelangle
1975
+ - [pickers] Use `props.referenceDate` timezone when `props.value` and `props.defaultValue` are not defined (#15544) @flaviendelangle
1976
+ - [l10n] Improve Dutch (nl-NL) locale (#15564) @nphmuller
1977
+
1978
+ #### `@mui/x-date-pickers-pro@v7.23.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1979
+
1980
+ Same changes as in `@mui/x-date-pickers@v7.23.0`.
1981
+
1982
+ ### Charts
1983
+
1984
+ #### `@mui/x-charts@v7.23.0`
1985
+
1986
+ - [charts] React 19 support (#15557) @arminmeh
1987
+ - [charts] Prevent invalid `releasePointerCapture` (#15609) @alexfauquette
1988
+
1989
+ #### `@mui/x-charts-pro@v7.23.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1990
+
1991
+ Same changes as in `@mui/x-charts@v7.23.0`.
1992
+
1993
+ ### Tree View
1994
+
1995
+ #### `@mui/x-tree-view@v7.23.0`
1996
+
1997
+ - [TreeView] React 19 support (#15557) @arminmeh
1998
+
1999
+ #### `@mui/x-tree-view-pro@7.23.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
2000
+
2001
+ Same changes as in `@mui/x-tree-view@7.23.0`.
2002
+
2003
+ ### Docs
2004
+
2005
+ - [docs] Add data caching to lazy loaded detail panel demo (#15555) @cherniavskii
2006
+ - [docs] Remove selectors section from list view docs (#15639) @KenanYusuf
2007
+ - [docs] Add documentation for the list view feature (#15344) @KenanYusuf
2008
+
2009
+ ### Core
2010
+
2011
+ - [core] Update @mui/monorepo (#15574) @oliviertassinari
340
2012
 
341
- ## v7.22.3
2013
+ ## 7.22.3
342
2014
 
343
2015
  _Nov 21, 2024_
344
2016
 
@@ -4803,7 +6475,7 @@ Same changes as in `@mui/x-data-grid-pro@7.0.0-alpha.5`.
4803
6475
 
4804
6476
  The `useClearableField` hook API has been simplified to now take a `props` parameter instead of a `fieldProps`, `InputProps`, `clearable`, `onClear`, `slots` and `slotProps` parameters.
4805
6477
 
4806
- You should now be able to directly pass the returned value from your field hook (e.g: `useDateField`) to `useClearableField`
6478
+ You should now be able to directly pass the returned value from your field hook (for example `useDateField`) to `useClearableField`
4807
6479
 
4808
6480
  ```diff
4809
6481
  const fieldResponse = useDateField(props);