@mui/x-data-grid 8.0.0-alpha.0 → 8.0.0-alpha.2

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 (216) hide show
  1. package/CHANGELOG.md +651 -6
  2. package/DataGrid/DataGrid.js +9 -9
  3. package/README.md +2 -2
  4. package/components/GridLoadingOverlay.d.ts +2 -2
  5. package/components/GridLoadingOverlay.js +4 -4
  6. package/components/GridPagination.js +2 -1
  7. package/components/base/GridOverlays.d.ts +4 -3
  8. package/components/base/GridOverlays.js +2 -24
  9. package/components/base/index.d.ts +0 -1
  10. package/components/base/index.js +1 -2
  11. package/components/cell/GridCell.js +10 -10
  12. package/components/columnSelection/GridCellCheckboxRenderer.js +2 -3
  13. package/components/columnSelection/GridHeaderCheckbox.js +2 -3
  14. package/components/columnsManagement/GridColumnsManagement.d.ts +2 -0
  15. package/components/columnsManagement/GridColumnsManagement.js +53 -6
  16. package/components/toolbar/GridToolbarColumnsButton.js +3 -4
  17. package/components/toolbar/GridToolbarDensitySelector.js +3 -4
  18. package/components/toolbar/GridToolbarExportContainer.js +3 -4
  19. package/components/toolbar/GridToolbarFilterButton.d.ts +2 -0
  20. package/components/toolbar/GridToolbarFilterButton.js +7 -6
  21. package/components/toolbar/GridToolbarQuickFilter.js +1 -0
  22. package/components/virtualization/GridVirtualScroller.js +5 -3
  23. package/constants/dataGridPropsDefaultValues.js +2 -3
  24. package/constants/gridClasses.d.ts +24 -0
  25. package/constants/gridClasses.js +1 -1
  26. package/constants/localeTextConstants.js +11 -0
  27. package/hooks/features/columnHeaders/useGridColumnHeaders.js +2 -2
  28. package/hooks/features/dimensions/gridDimensionsApi.d.ts +0 -4
  29. package/hooks/features/dimensions/useGridDimensions.js +3 -19
  30. package/hooks/features/index.d.ts +1 -0
  31. package/hooks/features/index.js +1 -0
  32. package/hooks/features/listView/gridListViewSelectors.d.ts +3 -1
  33. package/hooks/features/listView/gridListViewSelectors.js +3 -1
  34. package/hooks/features/listView/index.d.ts +1 -0
  35. package/hooks/features/listView/index.js +1 -0
  36. package/hooks/features/overlays/useGridOverlays.d.ts +7 -4
  37. package/hooks/features/overlays/useGridOverlays.js +19 -1
  38. package/hooks/features/rowSelection/useGridRowSelection.js +0 -9
  39. package/hooks/features/rowSelection/utils.js +2 -2
  40. package/hooks/features/virtualization/useGridVirtualScroller.d.ts +1 -1
  41. package/hooks/features/virtualization/useGridVirtualScroller.js +55 -15
  42. package/index.js +1 -1
  43. package/internals/index.d.ts +1 -0
  44. package/internals/index.js +1 -0
  45. package/joy/joySlots.js +7 -2
  46. package/locales/arSD.js +12 -0
  47. package/locales/beBY.js +12 -0
  48. package/locales/bgBG.js +13 -0
  49. package/locales/csCZ.js +13 -0
  50. package/locales/daDK.js +13 -0
  51. package/locales/deDE.js +11 -0
  52. package/locales/elGR.js +12 -0
  53. package/locales/esES.js +15 -4
  54. package/locales/faIR.js +13 -0
  55. package/locales/fiFI.js +13 -0
  56. package/locales/frFR.js +13 -0
  57. package/locales/heIL.js +13 -0
  58. package/locales/hrHR.js +13 -0
  59. package/locales/huHU.js +13 -0
  60. package/locales/isIS.js +12 -0
  61. package/locales/itIT.js +13 -0
  62. package/locales/jaJP.js +13 -0
  63. package/locales/koKR.js +12 -0
  64. package/locales/nbNO.js +13 -0
  65. package/locales/nlNL.js +13 -0
  66. package/locales/nnNO.js +13 -0
  67. package/locales/plPL.js +13 -0
  68. package/locales/ptBR.js +11 -0
  69. package/locales/ptPT.js +11 -0
  70. package/locales/roRO.js +12 -0
  71. package/locales/ruRU.js +13 -0
  72. package/locales/skSK.js +12 -0
  73. package/locales/svSE.js +17 -5
  74. package/locales/trTR.js +13 -0
  75. package/locales/ukUA.js +12 -0
  76. package/locales/urPK.js +12 -0
  77. package/locales/viVN.js +13 -0
  78. package/locales/zhCN.js +15 -4
  79. package/locales/zhHK.js +12 -0
  80. package/locales/zhTW.js +12 -0
  81. package/models/api/gridCoreApi.d.ts +1 -1
  82. package/models/api/gridLocaleTextApi.d.ts +10 -0
  83. package/models/colDef/gridColDef.d.ts +28 -24
  84. package/models/gridDataSource.d.ts +12 -12
  85. package/models/props/DataGridProps.d.ts +9 -9
  86. package/modern/DataGrid/DataGrid.js +9 -9
  87. package/modern/components/GridLoadingOverlay.js +4 -4
  88. package/modern/components/GridPagination.js +2 -1
  89. package/modern/components/base/GridOverlays.js +2 -24
  90. package/modern/components/base/index.js +1 -2
  91. package/modern/components/cell/GridCell.js +10 -10
  92. package/modern/components/columnSelection/GridCellCheckboxRenderer.js +2 -3
  93. package/modern/components/columnSelection/GridHeaderCheckbox.js +2 -3
  94. package/modern/components/columnsManagement/GridColumnsManagement.js +53 -6
  95. package/modern/components/toolbar/GridToolbarColumnsButton.js +3 -4
  96. package/modern/components/toolbar/GridToolbarDensitySelector.js +3 -4
  97. package/modern/components/toolbar/GridToolbarExportContainer.js +3 -4
  98. package/modern/components/toolbar/GridToolbarFilterButton.js +7 -6
  99. package/modern/components/toolbar/GridToolbarQuickFilter.js +1 -0
  100. package/modern/components/virtualization/GridVirtualScroller.js +5 -3
  101. package/modern/constants/dataGridPropsDefaultValues.js +2 -3
  102. package/modern/constants/gridClasses.js +1 -1
  103. package/modern/constants/localeTextConstants.js +11 -0
  104. package/modern/hooks/features/columnHeaders/useGridColumnHeaders.js +2 -2
  105. package/modern/hooks/features/dimensions/useGridDimensions.js +3 -19
  106. package/modern/hooks/features/index.js +1 -0
  107. package/modern/hooks/features/listView/gridListViewSelectors.js +3 -1
  108. package/modern/hooks/features/listView/index.js +1 -0
  109. package/modern/hooks/features/overlays/useGridOverlays.js +19 -1
  110. package/modern/hooks/features/rowSelection/useGridRowSelection.js +0 -9
  111. package/modern/hooks/features/rowSelection/utils.js +2 -2
  112. package/modern/hooks/features/virtualization/useGridVirtualScroller.js +55 -15
  113. package/modern/index.js +1 -1
  114. package/modern/internals/index.js +1 -0
  115. package/modern/joy/joySlots.js +7 -2
  116. package/modern/locales/arSD.js +12 -0
  117. package/modern/locales/beBY.js +12 -0
  118. package/modern/locales/bgBG.js +13 -0
  119. package/modern/locales/csCZ.js +13 -0
  120. package/modern/locales/daDK.js +13 -0
  121. package/modern/locales/deDE.js +11 -0
  122. package/modern/locales/elGR.js +12 -0
  123. package/modern/locales/esES.js +15 -4
  124. package/modern/locales/faIR.js +13 -0
  125. package/modern/locales/fiFI.js +13 -0
  126. package/modern/locales/frFR.js +13 -0
  127. package/modern/locales/heIL.js +13 -0
  128. package/modern/locales/hrHR.js +13 -0
  129. package/modern/locales/huHU.js +13 -0
  130. package/modern/locales/isIS.js +12 -0
  131. package/modern/locales/itIT.js +13 -0
  132. package/modern/locales/jaJP.js +13 -0
  133. package/modern/locales/koKR.js +12 -0
  134. package/modern/locales/nbNO.js +13 -0
  135. package/modern/locales/nlNL.js +13 -0
  136. package/modern/locales/nnNO.js +13 -0
  137. package/modern/locales/plPL.js +13 -0
  138. package/modern/locales/ptBR.js +11 -0
  139. package/modern/locales/ptPT.js +11 -0
  140. package/modern/locales/roRO.js +12 -0
  141. package/modern/locales/ruRU.js +13 -0
  142. package/modern/locales/skSK.js +12 -0
  143. package/modern/locales/svSE.js +17 -5
  144. package/modern/locales/trTR.js +13 -0
  145. package/modern/locales/ukUA.js +12 -0
  146. package/modern/locales/urPK.js +12 -0
  147. package/modern/locales/viVN.js +13 -0
  148. package/modern/locales/zhCN.js +15 -4
  149. package/modern/locales/zhHK.js +12 -0
  150. package/modern/locales/zhTW.js +12 -0
  151. package/node/DataGrid/DataGrid.js +9 -9
  152. package/node/components/GridLoadingOverlay.js +4 -4
  153. package/node/components/GridPagination.js +2 -1
  154. package/node/components/base/GridOverlays.js +2 -24
  155. package/node/components/base/index.js +0 -11
  156. package/node/components/cell/GridCell.js +10 -10
  157. package/node/components/columnSelection/GridCellCheckboxRenderer.js +2 -3
  158. package/node/components/columnSelection/GridHeaderCheckbox.js +2 -3
  159. package/node/components/columnsManagement/GridColumnsManagement.js +53 -6
  160. package/node/components/toolbar/GridToolbarColumnsButton.js +3 -4
  161. package/node/components/toolbar/GridToolbarDensitySelector.js +3 -4
  162. package/node/components/toolbar/GridToolbarExportContainer.js +3 -4
  163. package/node/components/toolbar/GridToolbarFilterButton.js +7 -6
  164. package/node/components/toolbar/GridToolbarQuickFilter.js +1 -0
  165. package/node/components/virtualization/GridVirtualScroller.js +5 -3
  166. package/node/constants/dataGridPropsDefaultValues.js +2 -3
  167. package/node/constants/gridClasses.js +1 -1
  168. package/node/constants/localeTextConstants.js +11 -0
  169. package/node/hooks/features/columnHeaders/useGridColumnHeaders.js +2 -2
  170. package/node/hooks/features/dimensions/useGridDimensions.js +2 -18
  171. package/node/hooks/features/index.js +11 -0
  172. package/node/hooks/features/listView/gridListViewSelectors.js +3 -1
  173. package/node/hooks/features/listView/index.js +16 -0
  174. package/node/hooks/features/overlays/useGridOverlays.js +21 -1
  175. package/node/hooks/features/rowSelection/useGridRowSelection.js +0 -9
  176. package/node/hooks/features/rowSelection/utils.js +2 -2
  177. package/node/hooks/features/virtualization/useGridVirtualScroller.js +55 -15
  178. package/node/index.js +1 -1
  179. package/node/internals/index.js +9 -2
  180. package/node/joy/joySlots.js +7 -2
  181. package/node/locales/arSD.js +12 -0
  182. package/node/locales/beBY.js +12 -0
  183. package/node/locales/bgBG.js +13 -0
  184. package/node/locales/csCZ.js +13 -0
  185. package/node/locales/daDK.js +13 -0
  186. package/node/locales/deDE.js +11 -0
  187. package/node/locales/elGR.js +12 -0
  188. package/node/locales/esES.js +15 -4
  189. package/node/locales/faIR.js +13 -0
  190. package/node/locales/fiFI.js +13 -0
  191. package/node/locales/frFR.js +13 -0
  192. package/node/locales/heIL.js +13 -0
  193. package/node/locales/hrHR.js +13 -0
  194. package/node/locales/huHU.js +13 -0
  195. package/node/locales/isIS.js +12 -0
  196. package/node/locales/itIT.js +13 -0
  197. package/node/locales/jaJP.js +13 -0
  198. package/node/locales/koKR.js +12 -0
  199. package/node/locales/nbNO.js +13 -0
  200. package/node/locales/nlNL.js +13 -0
  201. package/node/locales/nnNO.js +13 -0
  202. package/node/locales/plPL.js +13 -0
  203. package/node/locales/ptBR.js +11 -0
  204. package/node/locales/ptPT.js +11 -0
  205. package/node/locales/roRO.js +12 -0
  206. package/node/locales/ruRU.js +13 -0
  207. package/node/locales/skSK.js +12 -0
  208. package/node/locales/svSE.js +17 -5
  209. package/node/locales/trTR.js +13 -0
  210. package/node/locales/ukUA.js +12 -0
  211. package/node/locales/urPK.js +12 -0
  212. package/node/locales/viVN.js +13 -0
  213. package/node/locales/zhCN.js +15 -4
  214. package/node/locales/zhHK.js +12 -0
  215. package/node/locales/zhTW.js +12 -0
  216. package/package.json +4 -4
package/CHANGELOG.md CHANGED
@@ -5,6 +5,275 @@
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.2
9
+
10
+ _Nov 29, 2024_
11
+
12
+ We'd like to offer a big thanks to the 17 contributors who made this release possible. Here are some highlights ✨:
13
+
14
+ - 👨🏽‍💻 Improve resize performance on the Data Gird.
15
+ - `<ChartDataProvider />` and `<ChartsSurface />` components are now fully divided — [Learn more](https://next.mui.com/x/react-charts/composition/#overview).
16
+ - Users can create their own HTML components using chart data — [Learn more](https://next.mui.com/x/react-charts/components/#html-components).
17
+ - 🌍 Improve Spanish, Portuguese, Chinese locales on the Data Grid component.
18
+ - 🌍 Improve Dutch locale on the Date and Time Pickers components.
19
+ - 🐞 Bugfixes
20
+ - 📚 Documentation improvements
21
+
22
+ Special thanks go out to the community contributors who have helped make this release possible:
23
+ @dloeda, @headironc, @jedesroches, @k-rajat19, @lauri865, @mathzdev, @nphmuller, @zinoroman.
24
+ Following are all team members who have contributed to this release:
25
+ @arminmeh, @alexfauquette, @cherniavskii, @flaviendelangle, @JCQuintas, @KenanYusuf, @LukasTy, @MBilalShafi, @oliviertassinari.
26
+
27
+ <!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
28
+
29
+ ### Data Grid
30
+
31
+ #### Breaking changes
32
+
33
+ - The `<GridOverlays />` component is not exported anymore.
34
+ - The `indeterminateCheckboxAction` prop has been removed. Clicking on an indeterminate checkbox "selects" the unselected descendants.
35
+ - The `apiRef.current.resize()` method was removed.
36
+ - 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.
37
+ To revert to the previous behavior, pass `rowSelectionPropagation` as `{ parents: false, descendants: false }`.
38
+ - 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).
39
+
40
+ #### `@mui/x-data-grid@v8.0.0-alpha.2`
41
+
42
+ - [DataGrid] Change test dom check from `/jsdom/` to `/jsdom|HappyDOM/`. (#15634) @jedesroches
43
+ - [DataGrid] Clear timers on unmount (#15620) @cherniavskii
44
+ - [DataGrid] Fix order of spread props on toolbar items (#15556) @KenanYusuf
45
+ - [DataGrid] Improve resize performance (#15549) @lauri865
46
+ - [DataGrid] Make estimation label more accurate (#15632) @arminmeh
47
+ - [DataGrid] Remove `<GridOverlays />` export (#15573) @k-rajat19
48
+ - [DataGrid] Remove `indeterminateCheckboxAction` prop (#15522) @MBilalShafi
49
+ - [DataGrid] Remove try/catch from `<GridCell />` due to performance issues (#15616) @lauri865
50
+ - [DataGrid] Remove unused `resize` method (#15599) @cherniavskii
51
+ - [DataGrid] Support column virtualization with dynamic row height (#15541) @cherniavskii
52
+ - [DataGrid] Update the default value for `rowSelectionPropagation` (#15523) @MBilalShafi
53
+ - [l10n] Improve Chinese (zh-CN) locale (#15570) @headironc
54
+ - [l10n] Improve Portuguese (pt-PT) locale (#15561) @mathzdev
55
+
56
+ #### `@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')
57
+
58
+ Same changes as in `@mui/x-data-grid@v8.0.0-alpha.2`, plus:
59
+
60
+ - [DataGridPro] Fix header filtering with `boolean` column type (#15528) @k-rajat19
61
+ - [DataGridPro] Fix pagination state not updating if the data source response has no rows (#15622) @zinoroman
62
+ - [DataGridPro] Fix selection propagation issue on initialization (#15461) @MBilalShafi
63
+
64
+ #### `@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')
65
+
66
+ Same changes as in `@mui/x-data-grid-pro@v8.0.0-alpha.2`.
67
+
68
+ ### Date and Time Pickers
69
+
70
+ #### Breaking changes
71
+
72
+ - 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).
73
+
74
+ - 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).
75
+
76
+ #### `@mui/x-date-pickers@v8.0.0-alpha.2`
77
+
78
+ - [l10n] Improve Dutch (nl-NL) locale (#15564) @nphmuller
79
+ - [pickers] Fix DST issue with `America/Asuncion` timezone and `AdapterMoment` (#15552) @flaviendelangle
80
+ - [pickers] Improve validation internals (#15419) @flaviendelangle
81
+ - [pickers] Remove `TSection` and strictly type `TValue` (#15434) @flaviendelangle
82
+ - [pickers] Remove `orientation`, `isLandscape`, `isRtl`, `wrapperVariant` and `disabled` props from `PickersLayout` (#15494) @flaviendelangle
83
+ - [pickers] Use the new `ownerState` in `<PickersCalendarHeader />`, `<PickersArrowSwitcher />` and `<DayCalendarSkeleton />` (#15499) @flaviendelangle
84
+ - [pickers] Use the new `ownerState` object in all the field components (#15510) @flaviendelangle
85
+
86
+ #### `@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')
87
+
88
+ Same changes as in `@mui/x-date-pickers@v8.0.0-alpha.2`.
89
+
90
+ ### Charts
91
+
92
+ #### Breaking changes
93
+
94
+ - Charts Container don't have a `<div />` wrapping them anymore. All props are now passed to the root `<svg />` instead of the `<div />`.
95
+
96
+ #### `@mui/x-charts@v8.0.0-alpha.2`
97
+
98
+ - [charts] Allow the creation of custom HTML components using charts data (#15511) @JCQuintas
99
+ - [charts] Flatten imports from `@mui/utils` and `@mui/system` (#15603) @alexfauquette
100
+ - [charts] Introduce the plugin system (#15513) @alexfauquette
101
+ - [charts] Prevent invalid `releasePointerCapture` (#15602) @alexfauquette
102
+ - [charts] Fix custom Tooltip demos (#15631) @alexfauquette
103
+
104
+ #### `@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')
105
+
106
+ Same changes as in `@mui/x-charts@v8.0.0-alpha.2`.
107
+
108
+ ### Tree View
109
+
110
+ #### `@mui/x-tree-view@v8.0.0-alpha.2`
111
+
112
+ - [TreeView] Flatten import from `@mui/utils` and `@mui/system` (#15604) @alexfauquette
113
+
114
+ #### `@mui/x-tree-view-pro@v8.0.0-alpha.2`
115
+
116
+ Same changes as in `@mui/x-tree-view@v8.0.0-alpha.2`.
117
+
118
+ ### Docs
119
+
120
+ - [docs] Fix 404 links (#15575) @oliviertassinari
121
+ - [docs] Fix bash comments (#15571) @oliviertassinari
122
+ - [docs] Fix Pickers theme augmentation example (#15672) @LukasTy
123
+ - [docs] Replace use of "e.g." with "for example" (#15572) @oliviertassinari
124
+ - [docs] Update stale `new` and `preview` tags in v8 docs (#15547) @JCQuintas
125
+ - [docs] Fix layout shift image on Tree View docs (#15626) @oliviertassinari
126
+ - [docs] Fix `anchorEl` API page for charts (#15625) @oliviertassinari
127
+ - [docs] Add documentation for the list view feature (#15344) @KenanYusuf
128
+
129
+ ### Core
130
+
131
+ - [core] Follow `()` function convention for docs @oliviertassinari
132
+ - [core] Remove dead translation key (#15566) @oliviertassinari
133
+ - [code-infra] Auto-merge `@types/node` bumps (#15591) @LukasTy
134
+
135
+ ## v8.0.0-alpha.1
136
+
137
+ _Nov 22, 2024_
138
+
139
+ We'd like to offer a big thanks to the 16 contributors who made this release possible. Here are some highlights ✨:
140
+
141
+ - 🔧 Refactor Tooltip customisation for charts — [Learn more](https://next.mui.com/x/react-charts/tooltip/#overriding-content).
142
+ - ⚛️ React 19 support
143
+ - 🌍 Improve Chinese, Spanish, and Swedish locale on the Data Grid component
144
+ - 🐞 Bugfixes
145
+ - 📚 Documentation improvements
146
+
147
+ Special thanks go out to the community contributors who have helped make this release possible:
148
+ @CarlosLopezLg, @headironc, @hendrikpeilke, @k-rajat19, @lhilgert9, @viktormelin.
149
+ Following are all team members who have contributed to this release:
150
+ @alexfauquette, @arthurbalduini, @cherniavskii, @flaviendelangle, @JCQuintas, @LukasTy, @MBilalShafi, @oliviertassinari, @KenanYusuf, @arminmeh.
151
+
152
+ <!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
153
+
154
+ ### Data Grid
155
+
156
+ #### `@mui/x-data-grid@v8.0.0-alpha.1`
157
+
158
+ - [DataGrid] React 19 support (#15342) @arminmeh
159
+ - [DataGrid] Add prop to override search input props in `GridColumnsManagement` (#15347) @k-rajat19
160
+ - [DataGrid] Add test coverage for issues fixed in #15184 (#15282) @MBilalShafi
161
+ - [DataGrid] Change default loading overlay variants (#15504) @KenanYusuf
162
+ - [DataGrid] Fix last separator not being hidden when grid is scrollable (#15543) @KenanYusuf
163
+ - [DataGrid] Fix right column group header border with virtualization (#15470) @hendrikpeilke
164
+ - [DataGrid] Fix row-spanning in combination with column-pinning (#15368) @lhilgert9
165
+ - [l10n] Improve Chinese (zh-CN) locale (#15365) @headironc
166
+ - [l10n] Improve Spanish (es-ES) locale (#15369) @CarlosLopezLg
167
+ - [l10n] Improve Swedish (sv-SE) locale (#15371) @viktormelin
168
+
169
+ #### `@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')
170
+
171
+ Same changes as in `@mui/x-data-grid@v8.0.0-alpha.1`.
172
+
173
+ #### `@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')
174
+
175
+ Same changes as in `@mui/x-data-grid-pro@v8.0.0-alpha.1`, plus:
176
+
177
+ - [DataGridPremium] Prompt input control (#15401) @arminmeh
178
+
179
+ ### Date and Time Pickers
180
+
181
+ #### Breaking change
182
+
183
+ - The `FieldValueType` type has been renamed to `PickerValueType` — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#renamed-variables).
184
+ - 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).
185
+
186
+ #### `@mui/x-date-pickers@v8.0.0-alpha.1`
187
+
188
+ - [fields] Fix focus management with new DOM structure (#15475) @flaviendelangle
189
+ - [pickers] React 19 support (#15342) @arminmeh
190
+ - [pickers] Add new properties to `PickerOwnerState` and `PickerContextValue` (#15415) @flaviendelangle
191
+ - [pickers] Always use `props.value` when it changes (#15490) @flaviendelangle
192
+ - [pickers] Ensure internal value timezone is updated (#15435) @LukasTy
193
+ - [pickers] Fix unused code in `<PickersToolbar />` component (#15515) @LukasTy
194
+ - [pickers] Remove `FieldValueType` in favor of `PickerValueType` (#15259) @arthurbalduini
195
+ - [pickers] Remove the form props from the layout and the toolbar slots (#15492) @flaviendelangle
196
+ - [pickers] Use `props.referenceDate` timezone when `props.value` and `props.defaultValue` are not defined (#15532) @flaviendelangle
197
+ - [TimePicker] Prevent mouse events after `touchend` event (#15346) @arthurbalduini
198
+
199
+ #### `@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')
200
+
201
+ Same changes as in `@mui/x-date-pickers@v8.0.0-alpha.1`, plus:
202
+
203
+ - [DateTimeRangePicker] Use time in `referenceDate` when selecting date (#15429) @LukasTy
204
+
205
+ ### Charts
206
+
207
+ #### Breaking change
208
+
209
+ - The DX of the Tooltip customization has been refactored
210
+
211
+ - The `tooltip` prop has been removed in favor of `slotProps.tooltip` for consistency.
212
+ - The `popper`, `axisContent`, and `itemContent` slots have been removed in favor of the `tooltip` slot which overrides the entire tooltip.
213
+ - 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.
214
+ - To override the tooltip placement, use the `ChartsItemTooltipContent` or `ChartsItemTooltipContent` to get default data and place them in your custom tooltip.
215
+
216
+ - The library now uses the SVG `filter` attribute instead of `d3-color` for color manipulation.
217
+
218
+ - This modification impacts the `LinePlot`, `AreaPlot`, and `BarPlot` components.
219
+ If you've customized the `fill` of those elements, you might need to override it by using the CSS `filter`.
220
+ - The `theme.styleOverride` is removed for `MuiLineElement`, `MuiAreaElement`, and `MuiBarElement` to improve performance.
221
+ You can still target those elements by using the `MuiLinePlot`, `MuiAreaPlot`, and `MuiBarPlot` and target the appropriate classes `lineElementClasses.root`, `areaElementClasses.root`, `barElementClasses.root`
222
+
223
+ - Removed the `resolveSizeBeforeRender` prop from all chart components — [Learn more](https://next.mui.com/x/migration/migration-charts-v7/#remove-resolvesizebeforerender-prop).
224
+ - Removed `width` and `height` props from the `ChartsSurface` component.
225
+ - Removed the `viewport` prop from all charts.
226
+
227
+ #### `@mui/x-charts@v8.0.0-alpha.1`
228
+
229
+ - [charts] React 19 support (#15342) @arminmeh
230
+ - [charts] Decouple `<ChartDataProvider />` and `<ChartsSurface />` (#15375) @JCQuintas
231
+ - [charts] Fix Scatter Chart tooltip wrong defaults (#15537) @JCQuintas
232
+ - [charts] Fix key generation for the `<ChartsGrid />` component (#15463) @alexfauquette
233
+ - [charts] Improve `<SvgRefProvider />` to split the received ref (#15424) @JCQuintas
234
+ - [charts] Move interaction state in store (#15426) @alexfauquette
235
+ - [charts] Refactor Tooltip customisation (#15154) @alexfauquette
236
+ - [charts] Remove intrinsic size requirement (#15471) @JCQuintas
237
+ - [charts] Replace `d3-color` with CSS filter for highlight (#15084) @alexfauquette
238
+ - [charts] Split `<DrawingProvider />` into `<DrawingAreaProvider />` and `<SvgRefProvider />` (#15417) @JCQuintas
239
+
240
+ #### `@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')
241
+
242
+ Same changes as in `@mui/x-charts@v8.0.0-alpha.1`.
243
+
244
+ ### Tree View
245
+
246
+ #### Breaking changes
247
+
248
+ - 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).
249
+
250
+ #### `@mui/x-tree-view@v8.0.0-alpha.1`
251
+
252
+ - [TreeView] React 19 support (#15342) @arminmeh
253
+ - [TreeView] Do not re-render every Tree Item when the Rich Tree View re-renders (introduce selectors) (#14210) @flaviendelangle
254
+ - [TreeView] Remove `treeId` from the item context (#15542) @flaviendelangle
255
+ - [TreeView] Remove state mutation in `moveItemInTree()` (#15539) @flaviendelangle
256
+ - [TreeItem] Correct the typing of `slotProps.groupTransition` (#15534) @flaviendelangle
257
+
258
+ ### Docs
259
+
260
+ - [docs] Fix some migration typos (#15422) @LukasTy
261
+ - [docs] Fix typo in migration guide (#15508) @flaviendelangle
262
+ - [docs] Fix 301 redirection in docs @oliviertassinari
263
+ - [docs] Polish Server-side data section (#15330) @oliviertassinari
264
+ - [docs] Use loading state in the demos (#15512) @cherniavskii
265
+
266
+ ### Core
267
+
268
+ - [core] Keep OpenSSF badge up-to-date @oliviertassinari
269
+ - [code-infra] Add `'DensitySelectorGrid'` to time-sensitive argos tests (#15425) @JCQuintas
270
+ - [code-infra] Add documentation to internal types (#15540) @JCQuintas
271
+ - [code-infra] Prevent relative imports across packages (#15437) @JCQuintas
272
+ - [code-infra] Update renovate config to merge `action` pins (#15462) @LukasTy
273
+ - [docs-infra] Fix version tooltip (#15468) @alexfauquette
274
+ - [docs-infra] Transpile `.ts` demo files (#15345) @KenanYusuf
275
+ - [infra] Remove cherry-pick issue write permission (#15456) @oliviertassinari
276
+
8
277
  ## 8.0.0-alpha.0
9
278
 
10
279
  <img width="100%" alt="MUI X v8 Alpha is live" src="https://github.com/user-attachments/assets/114cf615-b617-435f-8499-76ac3c26c57b">
@@ -105,15 +374,15 @@ Same changes as in `@mui/x-date-pickers@8.0.0-alpha.0`.
105
374
 
106
375
  #### Breaking changes
107
376
 
108
- - The `legend` prop got 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-✅).
377
+ - 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-✅).
109
378
 
110
379
  - 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.
111
380
 
112
381
  - Removed or renamed multiple props from Series — [Learn more](https://next.mui.com/x/migration/migration-charts-v7/#series-properties-renaming).
113
382
 
114
- - The `highlighted` and `faded` properties of highlightScope were deprecated in favor of `highlight` and `fade`.
383
+ - The `highlighted` and `faded` properties of highlightScope have been deprecated in favor of `highlight` and `fade`.
115
384
  The deprecated ones are now removed.
116
- - The `xAxisKey`, `yAxisKey`, and `zAxisKey` properties got deprecated in favor of `xAxisId`, `yAxisId`, and `zAxisId`.
385
+ - The `xAxisKey`, `yAxisKey`, and `zAxisKey` properties have been deprecated in favor of `xAxisId`, `yAxisId`, and `zAxisId`.
117
386
 
118
387
  - 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).
119
388
 
@@ -196,6 +465,382 @@ Same changes as in `@mui/x-charts@8.0.0-alpha.0`.
196
465
  - [release] v8 preparation (#15054) @michelengelen
197
466
  - [test] Fix advanced list view regression test snapshot (#15260) @KenanYusuf
198
467
 
468
+ ## 7.23.0
469
+
470
+ _Nov 29, 2024_
471
+
472
+ We'd like to offer a big thanks to the 10 contributors who made this release possible. Here are some highlights ✨:
473
+
474
+ - ✨ 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.
475
+
476
+ https://github.com/user-attachments/assets/61286adc-03fc-4323-9739-8ca726fcc16c
477
+
478
+ - ⚛️ React 19 support
479
+ - 📚 Documentation improvements
480
+ - 🌍 Improve Spanish, Portuguese, Chinese locales on the Data Grid component.
481
+ - 🌍 Improve Dutch locale on the Date and Time Picker components.
482
+ - 🐞 Bugfixes
483
+
484
+ Special thanks go out to the community contributors who have helped make this release possible:
485
+ @dloeda, @headironc, @mathzdev, @nphmuller, @lhilgert9, @lauri865.
486
+ Following are all team members who have contributed to this release:
487
+ @oliviertassinari, @arminmeh, @KenanYusuf, @flaviendelangle, @MBilalShafi.
488
+
489
+ <!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
490
+
491
+ ### Data Grid
492
+
493
+ #### `@mui/x-data-grid@v7.23.0`
494
+
495
+ - [DataGrid] React 19 support (#15557) @arminmeh
496
+ - [DataGrid] Change test dom check from `/jsdom/` to `/jsdom|HappyDOM/`. (#15642) @jedesroches
497
+ - [DataGrid] Fix last separator not being hidden when grid is scrollable (#15551) @KenanYusuf
498
+ - [DataGrid] Fix order of spread props on toolbar items (#15556) @KenanYusuf
499
+ - [DataGrid] Fix row-spanning in combination with column-pinning (#15460) @lhilgert9
500
+ - [DataGrid] Improve resize performance (#15592) @lauri865
501
+ - [DataGrid] Support column virtualization with dynamic row height (#15567) @cherniavskii
502
+ - [DataGrid] Improve `GridCell` performance (#15621) @lauri865
503
+ - [l10n] Improve Chinese (zh-CN) locale (#15570) @headironc
504
+ - [l10n] Improve Portuguese (pt-PT) locale (#15561) @mathzdev
505
+
506
+ #### `@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')
507
+
508
+ Same changes as in `@mui/x-data-grid@v7.23.0`, plus:
509
+
510
+ - [DataGridPro] Fix header filtering with `boolean` column type (#15640) @k-rajat19
511
+ - [DataGridPro] Fix pagination state not updating if the data source response has no rows (#15643) @zinoroman
512
+ - [DataGridPro] Fix selection propagation issue on initialization (#15593) @MBilalShafi
513
+
514
+ #### `@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')
515
+
516
+ Same changes as in `@mui/x-data-grid-pro@v7.23.0`.
517
+
518
+ ### Date and Time Pickers
519
+
520
+ #### `@mui/x-date-pickers@v7.23.0`
521
+
522
+ - [pickers] React 19 support (#15557) @arminmeh
523
+ - [pickers] Fix DST issue with `America/Asuncion` timezone and `AdapterMoment` (#15653) @flaviendelangle
524
+ - [pickers] Use `props.referenceDate` timezone when `props.value` and `props.defaultValue` are not defined (#15544) @flaviendelangle
525
+ - [l10n] Improve Dutch (nl-NL) locale (#15564) @nphmuller
526
+
527
+ #### `@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')
528
+
529
+ Same changes as in `@mui/x-date-pickers@v7.23.0`.
530
+
531
+ ### Charts
532
+
533
+ #### `@mui/x-charts@v7.23.0`
534
+
535
+ - [charts] React 19 support (#15557) @arminmeh
536
+ - [charts] Prevent invalid `releasePointerCapture` (#15609) @alexfauquette
537
+
538
+ #### `@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')
539
+
540
+ Same changes as in `@mui/x-charts@v7.23.0`.
541
+
542
+ ### Tree View
543
+
544
+ #### `@mui/x-tree-view@v7.23.0`
545
+
546
+ - [TreeView] React 19 support (#15557) @arminmeh
547
+
548
+ #### `@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')
549
+
550
+ Same changes as in `@mui/x-tree-view@7.23.0`.
551
+
552
+ ### Docs
553
+
554
+ - [docs] Add data caching to lazy loaded detail panel demo (#15555) @cherniavskii
555
+ - [docs] Remove selectors section from list view docs (#15639) @KenanYusuf
556
+ - [docs] Add documentation for the list view feature (#15344) @KenanYusuf
557
+
558
+ ### Core
559
+
560
+ - [core] Update @mui/monorepo (#15574) @oliviertassinari
561
+
562
+ ## v7.22.3
563
+
564
+ _Nov 21, 2024_
565
+
566
+ We'd like to offer a big thanks to the 10 contributors who made this release possible. Here are some highlights ✨:
567
+
568
+ - 📊 Charts Pro get stable. The [zoom](https://mui.com/x/react-charts/zoom-and-pan/) and [Heatmap](https://mui.com/x/react-charts/heatmap/) are now stable.
569
+ - 🌍 Improve Chinese, Spanish, Swedish, and Turkish locales on the Data Grid
570
+ - 🐞 Bugfixes
571
+
572
+ Special thanks go out to the community contributors who have helped make this release possible:
573
+ @CarlosLopezLg, @headironc, @viktormelin, @qerkules, @DungTiger, @hendrikpeilke, @k-rajat19.
574
+ Following are all team members who have contributed to this release:
575
+ @alexfauquette, @LukasTy, @MBilalShafi, @flaviendelangle.
576
+
577
+ <!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
578
+
579
+ ### Data Grid
580
+
581
+ #### `@mui/x-data-grid@7.22.3`
582
+
583
+ - [DataGrid] Add prop to override search input props in `GridColumnsManagement` (#15476) @k-rajat19
584
+ - [DataGrid] Add test coverage for issues fixed in #15184 @MBilalShafi
585
+ - [DataGrid] Fix memoized selectors with arguments (#15336) @MBilalShafi
586
+ - [DataGrid] Fix right column group header border with virtualization (#15503) @hendrikpeilke
587
+ - [DataGrid] Pass reason to `onPaginationModelChange` (#15402) @DungTiger
588
+ - [DataGrid] Set default overlay height in flex parent layout (#15535) @cherniavskii
589
+ - [l10n] Improve Chinese (zh-CN) locale (#15365) @headironc
590
+ - [l10n] Improve Spanish (es-ES) locale (#15369) @CarlosLopezLg
591
+ - [l10n] Improve Swedish (sv-SE) locale (#15371) @viktormelin
592
+ - [l10n] Improve Turkish (tr-TR) locale (#15414) @qerkules
593
+
594
+ #### `@mui/x-data-grid-pro@7.22.3` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
595
+
596
+ Same changes as in `@mui/x-data-grid@7.22.3`.
597
+
598
+ #### `@mui/x-data-grid-premium@7.22.3` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
599
+
600
+ Same changes as in `@mui/x-data-grid-pro@7.22.3`.
601
+
602
+ ### Date and Time Pickers
603
+
604
+ #### `@mui/x-date-pickers@7.22.3`
605
+
606
+ - [pickers] Always use `props.value` when it changes (#15500) @flaviendelangle
607
+ - [pickers] Ensure internal value timezone is updated (#15491) @LukasTy
608
+ - [pickers] Fix `DateTimeRangePicker` error when using format without time (#15341) @fxnoob
609
+ - [pickers] Fix unused code in `PickersToolbar` component (#15525) @LukasTy
610
+
611
+ #### `@mui/x-date-pickers-pro@7.22.3` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
612
+
613
+ Same changes as in `@mui/x-date-pickers@7.22.3`, plus:
614
+
615
+ - [DateTimeRangePicker] Use time in `referenceDate` when selecting date (#15431) @LukasTy
616
+
617
+ ### Charts
618
+
619
+ #### `@mui/x-charts@7.22.3`
620
+
621
+ No changes since `@mui/x-charts@7.22.2`.
622
+
623
+ #### `@mui/x-charts-pro@7.22.3` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
624
+
625
+ - [charts-pro] Fix missing typeOverload (#15400) @alexfauquette
626
+
627
+ ### Docs
628
+
629
+ - [docs] Add `PickersPopper` component to customization playground (#15397) @LukasTy
630
+ - [docs] Add `next` version links (#15423) @LukasTy
631
+ - [docs] Use the `loading` state in the demos (#15538) @cherniavskii
632
+ - [docs] Add data caching to lazy loaded detail panel demo (#15506) @cherniavskii
633
+
634
+ - [code-infra] Tentative fix for Argos flaky screenshot tests (#15399) @JCQuintas
635
+ - [docs-infra] Transpile `.ts` demo files (#15421) @KenanYusuf
636
+ - [core] Clarify release version bump strategy (#15536) @cherniavskii
637
+
638
+ ## 7.22.2
639
+
640
+ _Nov 8, 2024_
641
+
642
+ We'd like to offer a big thanks to the 7 contributors who made this release possible. Here are some highlights ✨:
643
+
644
+ - 👨🏽‍💻 API enhancements
645
+ - 🐞 Bugfixes
646
+
647
+ Special thanks go out to the community contributors who have helped make this release possible:
648
+ @clins1994, @GuillaumeMeheut, @k-rajat19.
649
+ Following are all team members who have contributed to this release:
650
+ @LukasTy, @MBilalShafi, @KenanYusuf, @arminmeh.
651
+
652
+ ### Upcoming alpha
653
+
654
+ Keep an eye out for the MUI⠀X `v8.0.0-aplha.0` release soon. It will follow a weekly release schedule as always until it is stable.
655
+
656
+ <!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
657
+
658
+ ### Data Grid
659
+
660
+ #### `@mui/x-data-grid@7.22.2`
661
+
662
+ - [DataGrid] Fix `null` reference error in `GridVirtualScrollbar` (#15289) @MBilalShafi
663
+ - [DataGrid] Fix filtering with `boolean` column type (#15257) @k-rajat19
664
+ - [DataGrid] Improve row selection propagation trigger (#15274) @MBilalShafi
665
+ - [DataGrid] Preprocess edit cell props on backspace/delete (#15223) @KenanYusuf
666
+ - [DataGrid] Add a recipe to persist column width and order (#15309) @MBilalShafi
667
+
668
+ #### `@mui/x-data-grid-pro@7.22.2` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
669
+
670
+ Same changes as in `@mui/x-data-grid@7.22.2`, plus:
671
+
672
+ - [DataGridPro] Apply default properties if they are not passed in a reorder column (#15320) @k-rajat19
673
+ - [DataGridPro] Toggle row expansion with `Enter` key in Tree data (#15313) @k-rajat19
674
+
675
+ #### `@mui/x-data-grid-premium@7.22.2` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
676
+
677
+ Same changes as in `@mui/x-data-grid-pro@7.22.2`, plus:
678
+
679
+ - [DataGridPremium] Fix incorrect rows selection count when selection propagation is enabled with row grouping (#15222) @arminmeh
680
+
681
+ ### Date and Time Pickers
682
+
683
+ #### `@mui/x-date-pickers@7.22.2`
684
+
685
+ - [pickers] Add support for `moment-hijri@3.0.0` (#15248) @LukasTy
686
+
687
+ #### `@mui/x-date-pickers-pro@7.22.2` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
688
+
689
+ Same changes as in `@mui/x-date-pickers@7.22.2`.
690
+
691
+ ### Charts
692
+
693
+ #### `@mui/x-charts@7.22.2`
694
+
695
+ - [charts] Allow `SeriesValueFormatter` to return `null` value (#15295) @clins1994
696
+ - [charts] Allow configuring the `domainLimit` for each axis. (#15325) @GuillaumeMeheut
697
+
698
+ #### `@mui/x-charts-pro@7.0.0-beta.7` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
699
+
700
+ Same changes as in `@mui/x-charts@7.22.2`.
701
+
702
+ ## 7.22.1
703
+
704
+ _Nov 1, 2024_
705
+
706
+ We'd like to offer a big thanks to the 7 contributors who made this release possible. Here are some highlights ✨:
707
+
708
+ - 🐞 Bugfixes
709
+ - 📚 Documentation improvements
710
+ - 🌍 Improve Polish (pl-PL) locale on the Date Pickers
711
+
712
+ Special thanks go out to the community contributors who have helped make this release possible:
713
+ @wojtkolos, @dpak-maurya, @k-rajat19.
714
+ Following are all team members who have contributed to this release:
715
+ @LukasTy, @arminmeh, @MBilalShafi, @KenanYusuf, @flaviendelangle.
716
+
717
+ <!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
718
+
719
+ ### Data Grid
720
+
721
+ #### `@mui/x-data-grid@7.22.1`
722
+
723
+ - [DataGrid] Fix right column group header border (#15152) @KenanYusuf
724
+ - [DataGrid] Fix scroll jump when holding down arrow keys (#15167) @arminmeh
725
+ - [DataGrid] Move `rowGroupingModelChange` handler to respective hook (#15127) @MBilalShafi
726
+ - [DataGrid] Prevent error when deleting the last row (#15153) @dpak-maurya
727
+ - [DataGrid] Fix overlay height in autoHeight mode (#15205) @cherniavskii
728
+
729
+ #### `@mui/x-data-grid-pro@7.22.1` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
730
+
731
+ Same changes as in `@mui/x-data-grid@7.22.1`, plus:
732
+
733
+ - [DataGridPro] Add list view tests (#15166) @KenanYusuf
734
+
735
+ #### `@mui/x-data-grid-premium@7.22.1` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
736
+
737
+ - [DataGridPremium] Keep focus on the grouping cell on space bar press #15155 @k-rajat19
738
+
739
+ ### Date and Time Pickers
740
+
741
+ #### `@mui/x-date-pickers@7.22.1`
742
+
743
+ - [l10n] Improve Polish (pl-PL) locale (#15177) @wojtkolos
744
+
745
+ #### `@mui/x-date-pickers-pro@7.22.1` [![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@7.22.1`.
748
+
749
+ ### Tree View
750
+
751
+ #### `@mui/x-tree-view@7.22.1`
752
+
753
+ - [TreeView] Export `TreeItem2DragAndDropOverlay` and `TreeItem2LabelInput` from the root of each package (#15208) @flaviendelangle
754
+ - [TreeView] Fix drag and drop color usage (#15149) @LukasTy
755
+
756
+ #### `@mui/x-tree-view-pro@7.22.1` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
757
+
758
+ Same changes as in `@mui/x-tree-view@7.22.1`.
759
+
760
+ ### Docs
761
+
762
+ - [docs] Add section explaining how to keep the selection while filtering in Data grid docs (#15199) @arminmeh
763
+
764
+ ## 7.22.0
765
+
766
+ _Oct 25, 2024_
767
+
768
+ We'd like to offer a big thanks to the 11 contributors who made this release possible. Here are some highlights ✨:
769
+
770
+ - 🛰 Introduce [server-side support for Data Grid row grouping](https://mui.com/x/react-data-grid/server-side-data/row-grouping/)
771
+ - 🐞 Bugfixes
772
+ - 📚 Documentation improvements
773
+ - 🌍 Improve Portuguese (pt-BR) locale on the Data Grid component
774
+
775
+ Special thanks go out to the community contributors who have helped make this release possible:
776
+ @clins1994, @GITPHLAP, @k-rajat19, @kalyan90, @merotosc, @yash49.
777
+ Following are all team members who have contributed to this release:
778
+ @cherniavskii, @flaviendelangle, @LukasTy, @MBilalShafi, @romgrk.
779
+
780
+ <!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
781
+
782
+ ### Data Grid
783
+
784
+ #### `@mui/x-data-grid@7.22.0`
785
+
786
+ - [DataGrid] Fix `GridPanelAnchor` positioning (#15022) @k-rajat19
787
+ - [DataGrid] Fix ugly prop-types for the `pageStyle` prop of the `GridPrintExportMenuItem` component (#15015) @flaviendelangle
788
+ - [DataGrid] Fix value type in filter model for number and boolean column type (#14733) @k-rajat19
789
+ - [DataGrid] Focus next row when the focused row is deleted (#15067) @cherniavskii
790
+ - [DataGrid] Remove some usages of `<Box />` and `<Badge />` (#15013) @romgrk
791
+ - [DataGrid] Fix number of rows to display for page size options with negative value (#14890) @kalyan90
792
+ - [l10n] Improve Portuguese (pt-BR) locale (#15021) @k-rajat19
793
+
794
+ #### `@mui/x-data-grid-pro@7.22.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
795
+
796
+ Same changes as in `@mui/x-data-grid@7.22.0`, plus:
797
+
798
+ - [DataGridPro] Fix column pinning layout (#15073) @cherniavskii
799
+
800
+ #### `@mui/x-data-grid-premium@7.22.0` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
801
+
802
+ Same changes as in `@mui/x-data-grid-pro@7.22.0`, plus:
803
+
804
+ - [DataGridPremium] Server-side data source with row grouping (#15109) @MBilalShafi
805
+
806
+ ### Date and Time Pickers
807
+
808
+ #### `@mui/x-date-pickers@7.22.0`
809
+
810
+ - [pickers] Fix `DateCalendar` timezone management (#15119) @LukasTy
811
+ - [pickers] Fix `DigitalClock` time options on a `DST` switch day (#15092) @LukasTy
812
+
813
+ #### `@mui/x-date-pickers-pro@7.22.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
814
+
815
+ Same changes as in `@mui/x-date-pickers@7.22.0`.
816
+
817
+ ### Charts
818
+
819
+ #### `@mui/x-charts@7.22.0`
820
+
821
+ - [charts] Export data type in `onAxisClick(_, data)` callback (#15038) @clins1994
822
+
823
+ #### `@mui/x-charts-pro@7.0.0-beta.6` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
824
+
825
+ Same changes as in `@mui/x-charts@7.22.0`.
826
+
827
+ ### Tree View
828
+
829
+ #### `@mui/x-tree-view@7.22.0`
830
+
831
+ - [TreeView] Make the cancellable event types public (#14992) @flaviendelangle
832
+
833
+ ### Docs
834
+
835
+ - [docs] Fix typo in Tree View docs (#15047) @yash49
836
+
837
+ ### Core
838
+
839
+ - [core] Adjust cherry-pick GH actions (#15101) @LukasTy
840
+ - [core] Update prettier target branch (#15100) @MBilalShafi
841
+ - [core] Update some `default-branch-switch` instances for `v7.x` (#15085) @MBilalShafi
842
+ - [test] Revert to using `fireEvent` instead of `userEvent` (#14927) @LukasTy
843
+
199
844
  ## 7.21.0
200
845
 
201
846
  _Oct 17, 2024_
@@ -4310,7 +4955,7 @@ Same changes as in `@mui/x-data-grid-pro@7.0.0-alpha.5`.
4310
4955
 
4311
4956
  #### Breaking changes
4312
4957
 
4313
- - The slot interfaces got renamed to match with `@mui/base` naming.
4958
+ - The slot interfaces have been renamed to match with `@mui/base` naming.
4314
4959
  The `SlotsComponent` suffix has been replaced with `Slots` and `SlotsComponentsProps` with `SlotProps`.
4315
4960
 
4316
4961
  ```diff
@@ -4379,7 +5024,7 @@ Same changes as in `@mui/x-data-grid-pro@7.0.0-alpha.5`.
4379
5024
 
4380
5025
  The `useClearableField` hook API has been simplified to now take a `props` parameter instead of a `fieldProps`, `InputProps`, `clearable`, `onClear`, `slots` and `slotProps` parameters.
4381
5026
 
4382
- You should now be able to directly pass the returned value from your field hook (e.g: `useDateField`) to `useClearableField`
5027
+ You should now be able to directly pass the returned value from your field hook (for example `useDateField`) to `useClearableField`
4383
5028
 
4384
5029
  ```diff
4385
5030
  const fieldResponse = useDateField(props);
@@ -5352,7 +5997,7 @@ Same changes as in `@mui/x-date-pickers@7.0.0-alpha.0`.
5352
5997
 
5353
5998
  #### Breaking changes
5354
5999
 
5355
- Types for `slots` and `slotProps` got renamed by removing the "Component" which is meaningless for charts.
6000
+ Types for `slots` and `slotProps` have been renamed by removing the "Component" which is meaningless for charts.
5356
6001
  Unless you imported those types, to create a wrapper, you should not be impacted by this breaking change.
5357
6002
 
5358
6003
  Here is an example of the renaming for the `<ChartsTooltip />` component.