@mui/x-date-pickers-pro 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.
- package/CHANGELOG.md +651 -6
- package/DateRangeCalendar/DateRangeCalendar.js +3 -1
- package/DateRangePicker/DateRangePicker.types.d.ts +2 -2
- package/DateRangePicker/DateRangePickerToolbar.js +0 -12
- package/DateRangePicker/shared.d.ts +3 -2
- package/DateTimeRangePicker/DateTimeRangePicker.types.d.ts +2 -2
- package/DateTimeRangePicker/DateTimeRangePickerTabs.js +8 -7
- package/DateTimeRangePicker/DateTimeRangePickerToolbar.d.ts +2 -2
- package/DateTimeRangePicker/DateTimeRangePickerToolbar.js +6 -16
- package/DateTimeRangePicker/shared.d.ts +4 -3
- package/MultiInputDateRangeField/MultiInputDateRangeField.js +10 -12
- package/MultiInputDateRangeField/MultiInputDateRangeField.types.d.ts +12 -10
- package/MultiInputDateTimeRangeField/MultiInputDateTimeRangeField.js +10 -12
- package/MultiInputDateTimeRangeField/MultiInputDateTimeRangeField.types.d.ts +11 -9
- package/MultiInputTimeRangeField/MultiInputTimeRangeField.js +10 -12
- package/MultiInputTimeRangeField/MultiInputTimeRangeField.types.d.ts +11 -9
- package/README.md +9 -6
- package/SingleInputDateRangeField/SingleInputDateRangeField.js +5 -5
- package/SingleInputDateRangeField/SingleInputDateRangeField.types.d.ts +11 -10
- package/SingleInputDateTimeRangeField/SingleInputDateTimeRangeField.js +5 -5
- package/SingleInputDateTimeRangeField/SingleInputDateTimeRangeField.types.d.ts +11 -10
- package/SingleInputTimeRangeField/SingleInputTimeRangeField.js +5 -5
- package/SingleInputTimeRangeField/SingleInputTimeRangeField.types.d.ts +10 -9
- package/index.js +1 -1
- package/internals/hooks/models/useRangePicker.d.ts +1 -2
- package/internals/hooks/useDesktopRangePicker/useDesktopRangePicker.js +14 -4
- package/internals/hooks/useEnrichedRangePickerFieldProps.d.ts +14 -13
- package/internals/hooks/useEnrichedRangePickerFieldProps.js +17 -18
- package/internals/hooks/useMobileRangePicker/useMobileRangePicker.js +15 -5
- package/internals/hooks/useMultiInputFieldSelectedSections.d.ts +6 -7
- package/internals/hooks/useMultiInputRangeField/useMultiInputDateRangeField.js +2 -0
- package/internals/hooks/useMultiInputRangeField/useMultiInputDateTimeRangeField.js +2 -0
- package/internals/hooks/useMultiInputRangeField/useMultiInputTimeRangeField.js +3 -1
- package/internals/hooks/useRangePosition.d.ts +3 -2
- package/internals/hooks/useStaticRangePicker/useStaticRangePicker.js +1 -1
- package/internals/hooks/useStaticRangePicker/useStaticRangePicker.types.d.ts +1 -2
- package/internals/models/dateTimeRange.d.ts +2 -2
- package/internals/models/fields.d.ts +6 -6
- package/internals/models/timeRange.d.ts +2 -2
- package/internals/utils/date-fields-utils.d.ts +6 -6
- package/internals/utils/date-range-manager.d.ts +2 -1
- package/internals/utils/date-range-manager.js +11 -9
- package/internals/utils/releaseInfo.js +1 -1
- package/internals/utils/valueManagers.d.ts +4 -3
- package/models/dateRange.d.ts +3 -3
- package/models/fields.d.ts +6 -9
- package/models/index.d.ts +1 -0
- package/models/index.js +2 -1
- package/models/range.d.ts +0 -1
- package/modern/DateRangeCalendar/DateRangeCalendar.js +3 -1
- package/modern/DateRangePicker/DateRangePickerToolbar.js +0 -12
- package/modern/DateTimeRangePicker/DateTimeRangePickerTabs.js +8 -7
- package/modern/DateTimeRangePicker/DateTimeRangePickerToolbar.js +6 -16
- package/modern/MultiInputDateRangeField/MultiInputDateRangeField.js +10 -12
- package/modern/MultiInputDateTimeRangeField/MultiInputDateTimeRangeField.js +10 -12
- package/modern/MultiInputTimeRangeField/MultiInputTimeRangeField.js +10 -12
- package/modern/SingleInputDateRangeField/SingleInputDateRangeField.js +5 -5
- package/modern/SingleInputDateTimeRangeField/SingleInputDateTimeRangeField.js +5 -5
- package/modern/SingleInputTimeRangeField/SingleInputTimeRangeField.js +5 -5
- package/modern/index.js +1 -1
- package/modern/internals/hooks/useDesktopRangePicker/useDesktopRangePicker.js +14 -4
- package/modern/internals/hooks/useEnrichedRangePickerFieldProps.js +17 -18
- package/modern/internals/hooks/useMobileRangePicker/useMobileRangePicker.js +15 -5
- package/modern/internals/hooks/useMultiInputRangeField/useMultiInputDateRangeField.js +2 -0
- package/modern/internals/hooks/useMultiInputRangeField/useMultiInputDateTimeRangeField.js +2 -0
- package/modern/internals/hooks/useMultiInputRangeField/useMultiInputTimeRangeField.js +3 -1
- package/modern/internals/hooks/useStaticRangePicker/useStaticRangePicker.js +1 -1
- package/modern/internals/utils/date-range-manager.js +11 -9
- package/modern/internals/utils/releaseInfo.js +1 -1
- package/modern/models/index.js +2 -1
- package/modern/validation/validateDateRange.js +8 -0
- package/modern/validation/validateDateTimeRange.js +4 -0
- package/modern/validation/validateTimeRange.js +8 -0
- package/node/DateRangeCalendar/DateRangeCalendar.js +3 -1
- package/node/DateRangePicker/DateRangePickerToolbar.js +0 -12
- package/node/DateTimeRangePicker/DateTimeRangePickerTabs.js +7 -6
- package/node/DateTimeRangePicker/DateTimeRangePickerToolbar.js +5 -15
- package/node/MultiInputDateRangeField/MultiInputDateRangeField.js +9 -11
- package/node/MultiInputDateTimeRangeField/MultiInputDateTimeRangeField.js +9 -11
- package/node/MultiInputTimeRangeField/MultiInputTimeRangeField.js +9 -11
- package/node/SingleInputDateRangeField/SingleInputDateRangeField.js +4 -4
- package/node/SingleInputDateTimeRangeField/SingleInputDateTimeRangeField.js +4 -4
- package/node/SingleInputTimeRangeField/SingleInputTimeRangeField.js +4 -4
- package/node/index.js +1 -1
- package/node/internals/hooks/useDesktopRangePicker/useDesktopRangePicker.js +14 -4
- package/node/internals/hooks/useEnrichedRangePickerFieldProps.js +17 -18
- package/node/internals/hooks/useMobileRangePicker/useMobileRangePicker.js +15 -5
- package/node/internals/hooks/useMultiInputRangeField/useMultiInputDateRangeField.js +2 -0
- package/node/internals/hooks/useMultiInputRangeField/useMultiInputDateTimeRangeField.js +2 -0
- package/node/internals/hooks/useMultiInputRangeField/useMultiInputTimeRangeField.js +3 -1
- package/node/internals/hooks/useStaticRangePicker/useStaticRangePicker.js +1 -1
- package/node/internals/utils/date-range-manager.js +11 -9
- package/node/internals/utils/releaseInfo.js +1 -1
- package/node/validation/validateDateRange.js +8 -0
- package/node/validation/validateDateTimeRange.js +4 -0
- package/node/validation/validateTimeRange.js +8 -0
- package/package.json +6 -6
- package/validation/validateDateRange.d.ts +9 -1
- package/validation/validateDateRange.js +8 -0
- package/validation/validateDateTimeRange.d.ts +6 -2
- package/validation/validateDateTimeRange.js +4 -0
- package/validation/validateTimeRange.d.ts +9 -1
- package/validation/validateTimeRange.js +8 -0
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` [](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` [](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` [](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` [](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` [](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` [](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` [](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` [](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
|
|
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
|
|
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
|
|
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` [](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` [](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` [](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` [](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` [](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` [](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` [](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` [](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` [](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` [](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` [](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` [](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` [](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` [](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` [](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` [](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` [](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` [](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` [](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` [](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` [](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
|
|
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 (
|
|
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`
|
|
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.
|