@mui/x-license 7.0.0-beta.2 â 7.0.0
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 +865 -81
- package/Unstable_LicenseInfoProvider/LicenseInfoProvider.js +2 -2
- package/Unstable_LicenseInfoProvider/MuiLicenseInfoContext.d.ts +4 -0
- package/Unstable_LicenseInfoProvider/MuiLicenseInfoContext.js +8 -0
- package/index.js +1 -1
- package/modern/Unstable_LicenseInfoProvider/LicenseInfoProvider.js +2 -2
- package/modern/Unstable_LicenseInfoProvider/MuiLicenseInfoContext.js +8 -0
- package/modern/index.js +1 -1
- package/modern/useLicenseVerifier/useLicenseVerifier.js +2 -2
- package/modern/utils/licenseErrorMessageUtils.js +2 -2
- package/node/Unstable_LicenseInfoProvider/LicenseInfoProvider.js +2 -2
- package/node/Unstable_LicenseInfoProvider/{LicenseInfoContext.js â MuiLicenseInfoContext.js} +6 -2
- package/node/index.js +1 -1
- package/node/useLicenseVerifier/useLicenseVerifier.js +2 -2
- package/node/utils/licenseErrorMessageUtils.js +2 -2
- package/package.json +3 -4
- package/useLicenseVerifier/useLicenseVerifier.js +3 -3
- package/utils/licenseErrorMessageUtils.js +2 -2
- package/Unstable_LicenseInfoProvider/LicenseInfoContext.d.ts +0 -4
- package/Unstable_LicenseInfoProvider/LicenseInfoContext.js +0 -4
- package/legacy/Unstable_LicenseInfoProvider/LicenseInfoContext.js +0 -4
- package/legacy/Unstable_LicenseInfoProvider/LicenseInfoProvider.js +0 -18
- package/legacy/Unstable_LicenseInfoProvider/index.js +0 -1
- package/legacy/Watermark/Watermark.js +0 -44
- package/legacy/Watermark/index.js +0 -1
- package/legacy/encoding/base64.js +0 -57
- package/legacy/encoding/md5.js +0 -42
- package/legacy/generateLicense/generateLicense.js +0 -18
- package/legacy/generateLicense/index.js +0 -1
- package/legacy/index.js +0 -13
- package/legacy/useLicenseVerifier/index.js +0 -1
- package/legacy/useLicenseVerifier/useLicenseVerifier.js +0 -59
- package/legacy/utils/index.js +0 -4
- package/legacy/utils/licenseErrorMessageUtils.js +0 -31
- package/legacy/utils/licenseInfo.js +0 -40
- package/legacy/utils/licenseScope.js +0 -1
- package/legacy/utils/licenseStatus.js +0 -11
- package/legacy/utils/licensingModel.js +0 -15
- package/legacy/verifyLicense/index.js +0 -1
- package/legacy/verifyLicense/verifyLicense.js +0 -167
- package/modern/Unstable_LicenseInfoProvider/LicenseInfoContext.js +0 -4
package/CHANGELOG.md
CHANGED
|
@@ -3,7 +3,669 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
-
## v7.0.0
|
|
6
|
+
## v7.0.0
|
|
7
|
+
|
|
8
|
+
_Mar 22, 2024_
|
|
9
|
+
|
|
10
|
+
We're excited to [announce the first v7 stable release](https://mui.com/blog/mui-x-v7/)! đđ
|
|
11
|
+
|
|
12
|
+
This is now the officially supported major version, where we'll keep rolling out new features, bug fixes, and improvements.
|
|
13
|
+
Migration guides are available with a complete list of the breaking changes:
|
|
14
|
+
|
|
15
|
+
- [Data Grid](https://mui.com/x/migration/migration-data-grid-v6/)
|
|
16
|
+
- [Date and Time Pickers](https://mui.com/x/migration/migration-pickers-v6/)
|
|
17
|
+
- [Tree View](https://mui.com/x/migration/migration-tree-view-v6/)
|
|
18
|
+
- [Charts](https://mui.com/x/migration/migration-charts-v6/)
|
|
19
|
+
|
|
20
|
+
We'd like to offer a big thanks to the 12 contributors who made this release possible. Here are some highlights â¨:
|
|
21
|
+
|
|
22
|
+
- đ Improve the usage of custom `viewRenderers` on `DateTimePicker` (#12441) @LukasTy
|
|
23
|
+
- ⨠Set focus on the focused Tree Item instead of the Tree View (#12226) @flaviendelangle
|
|
24
|
+
- đšī¸ Support controlled `density` for the Data Grid (#12332) @MBilalShafi
|
|
25
|
+
- đ Dynamic virtualization range for the Data Grid (#12353) @romgrk
|
|
26
|
+
- đ Bugfixes
|
|
27
|
+
- đ Documentation improvements
|
|
28
|
+
|
|
29
|
+
### Data Grid
|
|
30
|
+
|
|
31
|
+
#### Breaking changes
|
|
32
|
+
|
|
33
|
+
- The `density` is a [controlled prop](https://mui.com/x/react-data-grid/accessibility/#set-the-density-programmatically) now, if you were previously passing the `density` prop to the Data Grid, you will need to do one of the following:
|
|
34
|
+
|
|
35
|
+
1. Move it to the `initialState.density` to initialize it.
|
|
36
|
+
|
|
37
|
+
```diff
|
|
38
|
+
<DataGrid
|
|
39
|
+
- density="compact"
|
|
40
|
+
+ initialState={{ density: "compact" }}
|
|
41
|
+
/>
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
2. Move it to the state and use `onDensityChange` callback to update the `density` prop accordingly for it to work as expected.
|
|
45
|
+
|
|
46
|
+
```diff
|
|
47
|
+
+ const [density, setDensity] = React.useState<GridDensity>('compact');
|
|
48
|
+
<DataGrid
|
|
49
|
+
- density="compact"
|
|
50
|
+
+ density={density}
|
|
51
|
+
+ onDensityChange={(newDensity) => setDensity(newDensity)}
|
|
52
|
+
/>
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
- The selector `gridDensityValueSelector` was removed, use the `gridDensitySelector` instead.
|
|
56
|
+
|
|
57
|
+
- The props `rowBuffer` and `columnBuffer` were renamed to `rowBufferPx` and `columnBufferPx`.
|
|
58
|
+
Their value is now a pixel value rather than a number of items. Their default value is now `150`.
|
|
59
|
+
|
|
60
|
+
- The props `rowThreshold` and `columnThreshold` have been removed.
|
|
61
|
+
If you had the `rowThreshold` prop set to `0` to force new rows to be rendered more often â this is no longer necessary.
|
|
62
|
+
|
|
63
|
+
#### `@mui/x-data-grid@7.0.0`
|
|
64
|
+
|
|
65
|
+
- [DataGrid] Allow to control the grid density (#12332) @MBilalShafi
|
|
66
|
+
- [DataGrid] Dynamic virtualization range (#12353) @romgrk
|
|
67
|
+
- [DataGrid] Fix `ElementType` usage (#12479) @cherniavskii
|
|
68
|
+
- [DataGrid] Fix cell value formatting on copy (#12357) @sai6855
|
|
69
|
+
- [DataGrid] Fix checkbox selection is keeping selection when filtering (#11751) @g1mishra
|
|
70
|
+
- [DataGrid] Make `rows` an optional prop (#12478) @MBilalShafi
|
|
71
|
+
|
|
72
|
+
#### `@mui/x-data-grid-pro@7.0.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
73
|
+
|
|
74
|
+
Same changes as in `@mui/x-data-grid@7.0.0`.
|
|
75
|
+
|
|
76
|
+
#### `@mui/x-data-grid-premium@7.0.0` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
77
|
+
|
|
78
|
+
Same changes as in `@mui/x-data-grid-pro@7.0.0`, plus:
|
|
79
|
+
|
|
80
|
+
- [DataGridPremium] Add support for confirmation before clipboard paste (#12225) @cherniavskii
|
|
81
|
+
- [DataGridPremium] Fix single grouping column sorting (#9679) @cherniavskii
|
|
82
|
+
- [DataGridPremium] Fix boolean cell not rendered in group rows (#12492) @sai6855
|
|
83
|
+
|
|
84
|
+
### Date and Time Pickers
|
|
85
|
+
|
|
86
|
+
#### Breaking changes
|
|
87
|
+
|
|
88
|
+
- The `DesktopDateTimePicker` view rendering has been optimized by using the same technique as for `DesktopDateTimeRangePicker`.
|
|
89
|
+
- The `dateTimeViewRenderers` have been removed in favor of reusing existing time view renderers (`renderTimeViewClock`, `renderDigitalClockTimeView` and `renderMultiSectionDigitalClockTimeView`) and date view renderer (`renderDateViewCalendar`).
|
|
90
|
+
- Passing `renderTimeViewClock` to time view renderers will no longer revert to the old behavior of rendering only date or time view.
|
|
91
|
+
|
|
92
|
+
#### `@mui/x-date-pickers@7.0.0`
|
|
93
|
+
|
|
94
|
+
- [fields] Allow to override the separator between the start and the end date in all range fields (#12174) @flaviendelangle
|
|
95
|
+
- [fields] Support format without separator (#12489) @flaviendelangle
|
|
96
|
+
- [pickers] Use renderer interceptor on `DesktopDateTimePicker` (#12441) @LukasTy
|
|
97
|
+
|
|
98
|
+
#### `@mui/x-date-pickers-pro@7.0.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
99
|
+
|
|
100
|
+
Same changes as in `@mui/x-date-pickers@7.0.0`, plus:
|
|
101
|
+
|
|
102
|
+
- [DateTimeRangePicker] Add component `JSDoc` (#12518) @LukasTy
|
|
103
|
+
- [DateTimeRangePicker] Fix views behavior regression (#12529) @LukasTy
|
|
104
|
+
|
|
105
|
+
### Charts
|
|
106
|
+
|
|
107
|
+
#### `@mui/x-charts@7.0.0`
|
|
108
|
+
|
|
109
|
+
- [charts] Fix small typo in `CartesianContextProvider` (#12461) @Janpot
|
|
110
|
+
|
|
111
|
+
### Tree View
|
|
112
|
+
|
|
113
|
+
#### Breaking changes
|
|
114
|
+
|
|
115
|
+
- The required `nodeId` prop used by the `TreeItem` has been renamed to `itemId` for consistency:
|
|
116
|
+
|
|
117
|
+
```diff
|
|
118
|
+
<TreeView>
|
|
119
|
+
- <TreeItem label="Item 1" nodeId="one">
|
|
120
|
+
+ <TreeItem label="Item 1" itemId="one">
|
|
121
|
+
</TreeView>
|
|
122
|
+
```
|
|
123
|
+
|
|
124
|
+
- The focus is now applied to the Tree Item root element instead of the Tree View root element.
|
|
125
|
+
|
|
126
|
+
This change will allow new features that require the focus to be on the Tree Item,
|
|
127
|
+
like the drag and drop reordering of items.
|
|
128
|
+
It also solves several issues with focus management,
|
|
129
|
+
like the inability to scroll to the focused item when a lot of items are rendered.
|
|
130
|
+
|
|
131
|
+
This will mostly impact how you write tests to interact with the Tree View:
|
|
132
|
+
|
|
133
|
+
For example, if you were writing a test with `react-testing-library`, here is what the changes could look like:
|
|
134
|
+
|
|
135
|
+
```diff
|
|
136
|
+
it('test example on first item', () => {
|
|
137
|
+
- const { getByRole } = render(
|
|
138
|
+
+ const { getAllByRole } = render(
|
|
139
|
+
<SimpleTreeView>
|
|
140
|
+
<TreeItem nodeId="one" />
|
|
141
|
+
<TreeItem nodeId="two" />
|
|
142
|
+
</SimpleTreeView>
|
|
143
|
+
);
|
|
144
|
+
|
|
145
|
+
- const tree = getByRole('tree');
|
|
146
|
+
+ const firstTreeItem = getAllByRole('treeitem')[0];
|
|
147
|
+
act(() => {
|
|
148
|
+
- tree.focus();
|
|
149
|
+
+ firstTreeItem.focus();
|
|
150
|
+
});
|
|
151
|
+
- fireEvent.keyDown(tree, { key: 'ArrowDown' });
|
|
152
|
+
+ fireEvent.keyDown(firstTreeItem, { key: 'ArrowDown' });
|
|
153
|
+
})
|
|
154
|
+
```
|
|
155
|
+
|
|
156
|
+
#### `@mui/x-tree-view@7.0.0`
|
|
157
|
+
|
|
158
|
+
- [TreeView] Rename `nodeId` to `itemId` (#12418) @noraleonte
|
|
159
|
+
- [TreeView] Set focus on the focused Tree Item instead of the Tree View (#12226) @flaviendelangle
|
|
160
|
+
- [TreeView] Update JSDoc of the `ContentComponent` prop to avoid using the word "node" (#12476) @flaviendelangle
|
|
161
|
+
|
|
162
|
+
### `@mui/x-codemod@7.0.0`
|
|
163
|
+
|
|
164
|
+
- [codemod] Add a codemod and update the grid migration guide (#12488) @MBilalShafi
|
|
165
|
+
|
|
166
|
+
### Docs
|
|
167
|
+
|
|
168
|
+
- [docs] Finalize migration guide (#12501) @noraleonte
|
|
169
|
+
- [docs] Fix nested cells alignment in the popular features demo (#12450) @cherniavskii
|
|
170
|
+
- [docs] Fix some Vale errors (#12469) @oliviertassinari
|
|
171
|
+
- [docs] Remove mentions of pre release (#12513) @noraleonte
|
|
172
|
+
- [docs] Update branch name and tags (#12498) @cherniavskii
|
|
173
|
+
- [docs] Update links to v6 (#12496) @cherniavskii
|
|
174
|
+
- [docs] Update links to v7 docs (#12500) @noraleonte
|
|
175
|
+
- [docs] Update supported versions (#12508) @joserodolfofreitas
|
|
176
|
+
- [docs] Update "What's new in MUI X" page #12527 @cherniavskii
|
|
177
|
+
|
|
178
|
+
### Core
|
|
179
|
+
|
|
180
|
+
- [core] Bump `@mui/material` peer dependency for all packages (#12516) @LukasTy
|
|
181
|
+
- [core] Fix `no-restricted-imports` ESLint rule not working for Data Grid packages (#12477) @cherniavskii
|
|
182
|
+
- [core] Lower the frequency of `no-response` action runs (#12491) @michaldudak
|
|
183
|
+
- [core] Remove leftover `legacy` `browserlistrc` entry (#12415) @LukasTy
|
|
184
|
+
- [core] Update NPM tag (#12511) @cherniavskii
|
|
185
|
+
- [core] Update supported browsers (browserlistrc) (#12521) @LukasTy
|
|
186
|
+
- [core] Use Circle CI context @oliviertassinari
|
|
187
|
+
- [license] Fix grammar on expired license error message (#12460) @joserodolfofreitas
|
|
188
|
+
|
|
189
|
+
## 7.0.0-beta.7
|
|
190
|
+
|
|
191
|
+
_Mar 14, 2024_
|
|
192
|
+
|
|
193
|
+
We'd like to offer a big thanks to the 11 contributors who made this release possible. Here are some highlights â¨:
|
|
194
|
+
|
|
195
|
+
- đĻĨ The Lazy loading feature is now stable and the `lazyLoading` feature flag was removed from the `experimentalFeatures` prop.
|
|
196
|
+
- đ Improve Japanese (ja-JP) locale for the Data Grid
|
|
197
|
+
- đ Bugfixes
|
|
198
|
+
- đ Documentation improvements
|
|
199
|
+
|
|
200
|
+
### Data Grid
|
|
201
|
+
|
|
202
|
+
#### Breaking changes
|
|
203
|
+
|
|
204
|
+
- The `columnHeader--showColumnBorder` class was replaced by `columnHeader--withLeftBorder` and `columnHeader--withRightBorder`.
|
|
205
|
+
- The `columnHeadersInner`, `columnHeadersInner--scrollable`, and `columnHeaderDropZone` classes were removed since the inner wrapper was removed in our effort to simplify the DOM structure and improve accessibility.
|
|
206
|
+
- The `pinnedColumnHeaders`, `pinnedColumnHeaders--left`, and `pinnedColumnHeaders--right` classes were removed along with the element they were applied to.
|
|
207
|
+
The pinned column headers now use `position: 'sticky'` and are rendered in the same row element as the regular column headers.
|
|
208
|
+
|
|
209
|
+
#### `@mui/x-data-grid@7.0.0-beta.7`
|
|
210
|
+
|
|
211
|
+
- [DataGrid] Fix focus visible style on scrollbar (#12402) @oliviertassinari
|
|
212
|
+
- [DataGrid] Fix the issue where pressing the Delete key resets various cell values to an empty string. (#12216) @sooster910
|
|
213
|
+
- [DataGrid] Make `rowCount` part of the state (#12381) @MBilalShafi
|
|
214
|
+
- [DataGrid] Make column resizing and autosizing available in Community plan (#12420) @cherniavskii
|
|
215
|
+
- [DataGrid] Remove `baseSwitch` slot (#12439) @romgrk
|
|
216
|
+
- [l10n] Improve Japanese (ja-JP) locale (#12398) @makoto14
|
|
217
|
+
|
|
218
|
+
#### `@mui/x-data-grid-pro@7.0.0-beta.7` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
219
|
+
|
|
220
|
+
Same changes as in `@mui/x-data-grid@7.0.0-beta.7`, plus:
|
|
221
|
+
|
|
222
|
+
- [DataGridPro] Add `inputRef` to the props passed to `colDef.renderHeaderFilter` (#12328) @vovarudomanenko
|
|
223
|
+
- [DataGridPro] Fix filler rendered for no reason when there are pinned columns (#12440) @cherniavskii
|
|
224
|
+
- [DataGridPro] Make lazy loading feature stable (#12421) @cherniavskii
|
|
225
|
+
- [DataGridPro] Render pinned and non-pinned column headers in one row (#12376) @cherniavskii
|
|
226
|
+
|
|
227
|
+
#### `@mui/x-data-grid-premium@7.0.0-beta.7` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
228
|
+
|
|
229
|
+
Same changes as in `@mui/x-data-grid-pro@7.0.0-beta.7`, plus:
|
|
230
|
+
|
|
231
|
+
- [DataGridPremium] Fix auto-scroll not working when selecting cell range (#12267) @cherniavskii
|
|
232
|
+
|
|
233
|
+
### Date and Time Pickers
|
|
234
|
+
|
|
235
|
+
#### `@mui/x-date-pickers@7.0.0-beta.7`
|
|
236
|
+
|
|
237
|
+
- [fields] Fix `tabIndex` on accessible field DOM structure (#12311) @flaviendelangle
|
|
238
|
+
- [fields] Fix items alignment on multi input range fields (#12312) @flaviendelangle
|
|
239
|
+
- [pickers] Improve the customization of the range picker calendar header (#11988) @flaviendelangle
|
|
240
|
+
- [pickers] Keep the existing time when looking for closest enabled date (#12377) @LukasTy
|
|
241
|
+
|
|
242
|
+
#### `@mui/x-date-pickers-pro@7.0.0-beta.7` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
243
|
+
|
|
244
|
+
Same changes as in `@mui/x-date-pickers@7.0.0-beta.7`.
|
|
245
|
+
|
|
246
|
+
### Charts
|
|
247
|
+
|
|
248
|
+
#### `@mui/x-charts@7.0.0-beta.7`
|
|
249
|
+
|
|
250
|
+
- [charts] Fix axis highlight when axis is reversed (#12407) @alexfauquette
|
|
251
|
+
|
|
252
|
+
### Tree View
|
|
253
|
+
|
|
254
|
+
#### Breaking changes
|
|
255
|
+
|
|
256
|
+
The `onNodeFocus` callback has been renamed to `onItemFocus` for consistency:
|
|
257
|
+
|
|
258
|
+
```diff
|
|
259
|
+
<SimpleTreeView
|
|
260
|
+
- onNodeFocus={onNodeFocus}
|
|
261
|
+
+ onItemFocus={onItemFocus}
|
|
262
|
+
/>
|
|
263
|
+
```
|
|
264
|
+
|
|
265
|
+
#### `@mui/x-tree-view@7.0.0-beta.7`
|
|
266
|
+
|
|
267
|
+
- [TreeView] Clean the usage of the term "item" and "node" in API introduced during v7 (#12368) @noraleonte
|
|
268
|
+
- [TreeView] Introduce a new `TreeItem2` component and a new `useTreeItem2` hook (#11721) @flaviendelangle
|
|
269
|
+
- [TreeView] Rename `onNodeFocus` to `onItemFocus` (#12419) @noraleonte
|
|
270
|
+
|
|
271
|
+
### Docs
|
|
272
|
+
|
|
273
|
+
- [docs] Add `legacy` bundle drop mention in migration pages (#12424) @LukasTy
|
|
274
|
+
- [docs] Add missing luxon `Info` import (#12427) @LukasTy
|
|
275
|
+
- [docs] Improve slots definitions for charts (#12408) @alexfauquette
|
|
276
|
+
- [docs] Polish What's new in MUIÂ X blog titles (#12309) @oliviertassinari
|
|
277
|
+
- [docs] Replace `rel="noreferrer"` by `rel="noopener"` @oliviertassinari
|
|
278
|
+
- [docs] Update `date-fns` `weekStarsOn` overriding example (#12416) @LukasTy
|
|
279
|
+
|
|
280
|
+
### Core
|
|
281
|
+
|
|
282
|
+
- [core] Fix CI (#12414) @flaviendelangle
|
|
283
|
+
- [core] Fix PR deploy link for Tree View doc pages (#12411) @flaviendelangle
|
|
284
|
+
|
|
285
|
+
## 7.0.0-beta.6
|
|
286
|
+
|
|
287
|
+
_Mar 8, 2024_
|
|
288
|
+
|
|
289
|
+
We'd like to offer a big thanks to the 8 contributors who made this release possible. Here are some highlights â¨:
|
|
290
|
+
|
|
291
|
+
- đ Bugfixes
|
|
292
|
+
- đ Documentation improvements
|
|
293
|
+
|
|
294
|
+
### Data Grid
|
|
295
|
+
|
|
296
|
+
#### `@mui/x-data-grid@7.0.0-beta.6`
|
|
297
|
+
|
|
298
|
+
- [DataGrid] Fix crashing of demos on rating change (#12315) @sai6855
|
|
299
|
+
- [DataGrid] Fix double border below header (#12349) @joespeargresham
|
|
300
|
+
- [DataGrid] Fix empty sort being saved in the `sortModel` (#12325) @MBilalShafi
|
|
301
|
+
- [DataGrid] Remove unnecessary `stopCellMode` event in `renderEditRating` component (#12335) @sai6855
|
|
302
|
+
- [DataGrid] Small performance optimizations (#12346) @romgrk
|
|
303
|
+
|
|
304
|
+
#### `@mui/x-data-grid-pro@7.0.0-beta.6` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
305
|
+
|
|
306
|
+
Same changes as in `@mui/x-data-grid@7.0.0-beta.6`, plus:
|
|
307
|
+
|
|
308
|
+
- [DataGridPro] Rework `onRowsScrollEnd` to use `IntersectionObserver` (#8672) @DanailH
|
|
309
|
+
|
|
310
|
+
#### `@mui/x-data-grid-premium@7.0.0-beta.6` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
311
|
+
|
|
312
|
+
Same changes as in `@mui/x-data-grid-pro@7.0.0-beta.6`.
|
|
313
|
+
|
|
314
|
+
### Charts
|
|
315
|
+
|
|
316
|
+
#### `@mui/x-charts@7.0.0-beta.6`
|
|
317
|
+
|
|
318
|
+
- [charts] Add context to axis value formatter (#12172) @alexfauquette
|
|
319
|
+
- [charts] Customize tick position for band scale (#12316) @alexfauquette
|
|
320
|
+
- [charts] Fix RTL legend (#12175) @alexfauquette
|
|
321
|
+
|
|
322
|
+
### Tree View
|
|
323
|
+
|
|
324
|
+
#### Breaking changes
|
|
325
|
+
|
|
326
|
+
- The component used to animate the item children is now defined as a slot on the `TreeItem` component.
|
|
327
|
+
|
|
328
|
+
If you were passing a `TransitionComponent` or `TransitionProps` to your `TreeItem` component,
|
|
329
|
+
you need to use the new `groupTransition` slot on this component:
|
|
330
|
+
|
|
331
|
+
```diff
|
|
332
|
+
<SimpleTreeView>
|
|
333
|
+
<TreeItem
|
|
334
|
+
nodeId="1"
|
|
335
|
+
label="Node 1"
|
|
336
|
+
- TransitionComponent={Fade}
|
|
337
|
+
+ slots={{ groupTransition: Fade }}
|
|
338
|
+
- TransitionProps={{ timeout: 600 }}
|
|
339
|
+
+ slotProps={{ groupTransition: { timeout: 600 } }}
|
|
340
|
+
/>
|
|
341
|
+
</SimpleTreeView>
|
|
342
|
+
```
|
|
343
|
+
|
|
344
|
+
- The `group` class of the `TreeItem` component has been renamed to `groupTransition` to match with its new slot name.
|
|
345
|
+
|
|
346
|
+
```diff
|
|
347
|
+
const StyledTreeItem = styled(TreeItem)({
|
|
348
|
+
- [`& .${treeItemClasses.group}`]: {
|
|
349
|
+
+ [`& .${treeItemClasses.groupTransition}`]: {
|
|
350
|
+
marginLeft: 20,
|
|
351
|
+
},
|
|
352
|
+
});
|
|
353
|
+
```
|
|
354
|
+
|
|
355
|
+
#### `@mui/x-tree-view@7.0.0-beta.6`
|
|
356
|
+
|
|
357
|
+
- [TreeView] Fix invalid nodes state when updating `props.items` (#12359) @flaviendelangle
|
|
358
|
+
- [TreeView] In the `RichTreeView`, do not use the item id as the HTML id attribute (#12319) @flaviendelangle
|
|
359
|
+
- [TreeView] New instance and publicAPI method: `getItem` (#12251) @flaviendelangle
|
|
360
|
+
- [TreeView] Replace `TransitionComponent` and `TransitionProps` with a `groupTransition` slot (#12336) @flaviendelangle
|
|
361
|
+
|
|
362
|
+
### Docs
|
|
363
|
+
|
|
364
|
+
- [docs] Add a note about `z-index` usage in SVG (#12337) @alexfauquette
|
|
365
|
+
- [docs] `RichTreeView` customization docs (#12231) @noraleonte
|
|
366
|
+
|
|
367
|
+
### Core
|
|
368
|
+
|
|
369
|
+
- [test] Add `Charts` test (#11551) @alexfauquette
|
|
370
|
+
|
|
371
|
+
## 7.0.0-beta.5
|
|
372
|
+
|
|
373
|
+
_Mar 1, 2024_
|
|
374
|
+
|
|
375
|
+
We'd like to offer a big thanks to the 15 contributors who made this release possible. Here are some highlights â¨:
|
|
376
|
+
|
|
377
|
+
- đ Add `getSortComparator` for more advanced sorting behaviors (#12215) @cherniavskii
|
|
378
|
+
- đ Add `use client` directive to the Grid packages (#11803) @MBilalShafi
|
|
379
|
+
- đ Improve Korean (ko-KR) and Chinese (zh-CN) locales on the Pickers
|
|
380
|
+
- đ Bugfixes
|
|
381
|
+
- đ Documentation improvements
|
|
382
|
+
|
|
383
|
+
### Data Grid
|
|
384
|
+
|
|
385
|
+
#### `@mui/x-data-grid@7.0.0-beta.5`
|
|
386
|
+
|
|
387
|
+
- [DataGrid] Add `getSortComparator` for more advanced sorting behaviors (#12215) @cherniavskii
|
|
388
|
+
- [DataGrid] Add `use client` directive to the Grid packages (#11803) @MBilalShafi
|
|
389
|
+
- [DataGrid] Fix `disableResetButton` and `disableShowHideToggle` flags to not exclude each other (#12169) @adyry
|
|
390
|
+
- [DataGrid] Fix cell range classnames (#12230) @romgrk
|
|
391
|
+
- [DataGrid] Fix wrong offset for right-pinned columns when toggling dark/light modes (#12233) @cherniavskii
|
|
392
|
+
- [DataGrid] Improve row virtualization and rendering performance (#12247) @romgrk
|
|
393
|
+
- [DataGrid] Improve performance by removing `querySelector` call (#12229) @romgrk
|
|
394
|
+
- [DataGrid] Fix `onColumnWidthChange` called before autosize affects column width (#12140) @shaharyar-shamshi
|
|
395
|
+
- [DataGrid] Fix boolean "is" filter (#12117) @shaharyar-shamshi
|
|
396
|
+
- [DataGrid] Fix `upsertFilterItems` removing filters that are not part of the update (#11954) @gitstart
|
|
397
|
+
- [DataGrid] Render scrollbars only if there is scroll (#12265) @cherniavskii
|
|
398
|
+
|
|
399
|
+
#### `@mui/x-data-grid-pro@7.0.0-beta.5` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
400
|
+
|
|
401
|
+
Same changes as in `@mui/x-data-grid@7.0.0-beta.5`, plus:
|
|
402
|
+
|
|
403
|
+
- [DataGridPro] Fix column resize errors on MacOS with automatic scrollbars enabled (#12217) @cherniavskii
|
|
404
|
+
- [DataGridPro] Fix lazy-loading crash (#12080) @romgrk
|
|
405
|
+
- [DataGridPro] Fix useGridRows not giving error on reversed data (#10821) @martijn-basesoft
|
|
406
|
+
|
|
407
|
+
#### `@mui/x-data-grid-premium@7.0.0-beta.5` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
408
|
+
|
|
409
|
+
Same changes as in `@mui/x-data-grid-pro@7.0.0-beta.5`, plus:
|
|
410
|
+
|
|
411
|
+
- [DataGridPremium] Make clipboard copy respect the sorting during cell selection (#12235) @MBilalShafi
|
|
412
|
+
|
|
413
|
+
### Date and Time Pickers
|
|
414
|
+
|
|
415
|
+
#### `@mui/x-date-pickers@7.0.0-beta.5`
|
|
416
|
+
|
|
417
|
+
- [pickers] Fix toolbar components props handling (#12211) @LukasTy
|
|
418
|
+
- [l10n] Improve Chinese (zh-CN) locale (#12245) @headironc
|
|
419
|
+
- [l10n] Improve Korean (ko-KR) locale (#12192) @Luzi
|
|
420
|
+
|
|
421
|
+
#### `@mui/x-date-pickers-pro@7.0.0-beta.5` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
422
|
+
|
|
423
|
+
Same changes as in `@mui/x-date-pickers@7.0.0-beta.5`.
|
|
424
|
+
|
|
425
|
+
- [DateTimeRangePicker] Fix validation behavior (#12243) @LukasTy
|
|
426
|
+
|
|
427
|
+
### Charts / `@mui/x-charts@7.0.0-beta.5`
|
|
428
|
+
|
|
429
|
+
- [charts] Fix grid duplicated key (#12208) @alexfauquette
|
|
430
|
+
|
|
431
|
+
### Tree View / `@mui/x-tree-view@7.0.0-beta.5`
|
|
432
|
+
|
|
433
|
+
- [TreeView] Add public API and expose focus method (#12143) @noraleonte
|
|
434
|
+
|
|
435
|
+
### Docs
|
|
436
|
+
|
|
437
|
+
- [docs] Fix image layout shift when loading @oliviertassinari
|
|
438
|
+
- [docs] Match Material UI repo comment for redirections @oliviertassinari
|
|
439
|
+
- [docs] Non breaking spaces @oliviertassinari
|
|
440
|
+
- [docs] Polish the Date Picker playground (#11869) @zanivan
|
|
441
|
+
- [docs] Standardize WAI-ARIA references @oliviertassinari
|
|
442
|
+
|
|
443
|
+
### Core
|
|
444
|
+
|
|
445
|
+
- [core] Allow local docs next.js settings (#12227) @romgrk
|
|
446
|
+
- [core] Remove grid folder from `getComponentInfo` RegExp (#12241) @flaviendelangle
|
|
447
|
+
- [core] Remove `window.` reference for common globals @oliviertassinari
|
|
448
|
+
- [core] Use runtime agnostic setTimeout type @oliviertassinari
|
|
449
|
+
- [docs-infra] Fix Stack Overflow breaking space @oliviertassinari
|
|
450
|
+
- [docs-infra] Fix missing non breaking spaces @oliviertassinari
|
|
451
|
+
- [infra] Update `no-response` workflow (#12193) @MBilalShafi
|
|
452
|
+
- [infra] Fix missing permission reset @oliviertassinari
|
|
453
|
+
|
|
454
|
+
## 7.0.0-beta.4
|
|
455
|
+
|
|
456
|
+
_Feb 23, 2024_
|
|
457
|
+
|
|
458
|
+
We'd like to offer a big thanks to the 10 contributors who made this release possible. Here are some highlights â¨:
|
|
459
|
+
|
|
460
|
+
- đ Introduce a new DOM structure for the field components that provides a better accessibility
|
|
461
|
+
- đ Simplify Data Grid DOM structure for improved performance (#12013) @romgrk
|
|
462
|
+
- đĨ The support for IE11 has been removed (#12151) @flaviendelangle
|
|
463
|
+
- đ Bugfixes
|
|
464
|
+
- đ Documentation improvements
|
|
465
|
+
|
|
466
|
+
### Breaking changes
|
|
467
|
+
|
|
468
|
+
- The support for IE11 has been removed from all MUIÂ X packages. The `legacy` bundle that used to support old browsers like IE11 is no longer included.
|
|
469
|
+
|
|
470
|
+
### Data Grid
|
|
471
|
+
|
|
472
|
+
#### Breaking changes
|
|
473
|
+
|
|
474
|
+
- The cell inner wrapper `.MuiDataGrid-cellContent` has been removed, use `.MuiDataGrid-cell` to style the cells.
|
|
475
|
+
|
|
476
|
+
#### `@mui/x-data-grid@7.0.0-beta.4`
|
|
477
|
+
|
|
478
|
+
- [DataGrid] Simplify cell DOM structure (#12013) @romgrk
|
|
479
|
+
- [DataGrid] Fix values labels in `is any of` filter operator (#11939) @gitstart
|
|
480
|
+
|
|
481
|
+
#### `@mui/x-data-grid-pro@7.0.0-beta.4` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
482
|
+
|
|
483
|
+
Same changes as in `@mui/x-data-grid@7.0.0-beta.4`.
|
|
484
|
+
|
|
485
|
+
#### `@mui/x-data-grid-premium@7.0.0-beta.4` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
486
|
+
|
|
487
|
+
Same changes as in `@mui/x-data-grid-pro@7.0.0-beta.4`.
|
|
488
|
+
|
|
489
|
+
### Date and Time Pickers
|
|
490
|
+
|
|
491
|
+
#### Breaking changes
|
|
492
|
+
|
|
493
|
+
- The `selectedSections` prop no longer accepts start and end indexes.
|
|
494
|
+
When selecting several â but not all â sections, the field components were not behaving correctly, you can now only select one or all sections:
|
|
495
|
+
|
|
496
|
+
```diff
|
|
497
|
+
<DateField
|
|
498
|
+
- selectedSections={{ startIndex: 0, endIndex: 0 }}
|
|
499
|
+
+ selectedSections={0}
|
|
500
|
+
|
|
501
|
+
// If the field has 3 sections
|
|
502
|
+
- selectedSections={{ startIndex: 0, endIndex: 2 }}
|
|
503
|
+
+ selectedSections="all"
|
|
504
|
+
/>
|
|
505
|
+
```
|
|
506
|
+
|
|
507
|
+
- The headless field hooks (e.g.: `useDateField`) now returns a new prop called `enableAccessibleFieldDOMStructure`.
|
|
508
|
+
This property is utilized to determine whether the anticipated UI is constructed using an accessible DOM structure. Learn more about this new [accessible DOM structure](/x/react-date-pickers/fields/#accessible-dom-structure).
|
|
509
|
+
|
|
510
|
+
When building a custom UI, you are most-likely only supporting one DOM structure, so you can remove `enableAccessibleFieldDOMStructure` before it is passed to the DOM:
|
|
511
|
+
|
|
512
|
+
```diff
|
|
513
|
+
function MyCustomTextField(props) {
|
|
514
|
+
const {
|
|
515
|
+
+ // Should be ignored
|
|
516
|
+
+ enableAccessibleFieldDOMStructure,
|
|
517
|
+
// ... rest of the props you are using
|
|
518
|
+
} = props;
|
|
519
|
+
|
|
520
|
+
return ( /* Some UI to edit the date */ )
|
|
521
|
+
}
|
|
522
|
+
|
|
523
|
+
function MyCustomField(props) {
|
|
524
|
+
const fieldResponse = useDateField<Dayjs, false, typeof textFieldProps>({
|
|
525
|
+
...props,
|
|
526
|
+
+ // If you only support one DOM structure, we advise you to hardcode it here to avoid unwanted switches in your application
|
|
527
|
+
+ enableAccessibleFieldDOMStructure: false,
|
|
528
|
+
});
|
|
529
|
+
|
|
530
|
+
return <MyCustomTextField ref={ref} {...fieldResponse} />;
|
|
531
|
+
}
|
|
532
|
+
|
|
533
|
+
function App() {
|
|
534
|
+
return <DatePicker slots={{ field: MyCustomField }} />;
|
|
535
|
+
}
|
|
536
|
+
```
|
|
537
|
+
|
|
538
|
+
- The following internal types were exported by mistake and have been removed from the public API:
|
|
539
|
+
|
|
540
|
+
- `UseDateFieldDefaultizedProps`
|
|
541
|
+
- `UseTimeFieldDefaultizedProps`
|
|
542
|
+
- `UseDateTimeFieldDefaultizedProps`
|
|
543
|
+
- `UseSingleInputDateRangeFieldComponentProps`
|
|
544
|
+
- `UseSingleInputTimeRangeFieldComponentProps`
|
|
545
|
+
- `UseSingleInputDateTimeRangeFieldComponentProps`
|
|
546
|
+
|
|
547
|
+
#### `@mui/x-date-pickers@7.0.0-beta.4`
|
|
548
|
+
|
|
549
|
+
- [fields] Add a11y support to multi-HTML field (#12173) @LukasTy
|
|
550
|
+
- [fields] Use the `PickersTextField` component in the fields (#10649) @flaviendelangle
|
|
551
|
+
- [pickers] Fix styling props propagation to `DateTimePickerTabs` (#12096) @LukasTy
|
|
552
|
+
|
|
553
|
+
#### `@mui/x-date-pickers-pro@7.0.0-beta.4` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
554
|
+
|
|
555
|
+
Same changes as in `@mui/x-date-pickers@7.0.0-beta.4`.
|
|
556
|
+
|
|
557
|
+
### Charts / `@mui/x-charts@7.0.0-beta.4`
|
|
558
|
+
|
|
559
|
+
#### Breaking changes
|
|
560
|
+
|
|
561
|
+
These components are no longer exported from `@mui/x-charts`:
|
|
562
|
+
|
|
563
|
+
- `CartesianContextProvider`
|
|
564
|
+
- `DrawingProvider`
|
|
565
|
+
|
|
566
|
+
#### `@mui/x-charts@7.0.0-beta.4`
|
|
567
|
+
|
|
568
|
+
- [charts] Don't display text if no value is provided (#12127) @alexfauquette
|
|
569
|
+
- [charts] Remove export of context providers (#12123) @oliviertassinari
|
|
570
|
+
|
|
571
|
+
### Tree View / `@mui/x-tree-view@7.0.0-beta.4`
|
|
572
|
+
|
|
573
|
+
- [TreeView] Stop using custom `findIndex` to support IE11 (#12129) @flaviendelangle
|
|
574
|
+
|
|
575
|
+
### Docs
|
|
576
|
+
|
|
577
|
+
- [docs] Add recipe for hiding separator on non-resizable columns (#12134) @michelengelen
|
|
578
|
+
- [docs] Add small improvements to the Gauge page (#12076) @danilo-leal
|
|
579
|
+
- [docs] Add the 'point' scaleType to the axis documentation (#12179) @alexfauquette
|
|
580
|
+
- [docs] Clarify Pickers 'Component composition' section (#12097) @LukasTy
|
|
581
|
+
- [docs] Fix "Licensing" page link (#12156) @LukasTy
|
|
582
|
+
- [docs] Fix the Treemap illustration (#12185) @danilo-leal
|
|
583
|
+
- [docs] Fix error raised by Grammarly on the page @oliviertassinari
|
|
584
|
+
- [docs] Improve performance on Charts entry point @oliviertassinari
|
|
585
|
+
- [docs] Link to React Transition Group with https @oliviertassinari
|
|
586
|
+
- [docs] Move Heatmap to `pro` plan (#12047) @alexfauquette
|
|
587
|
+
- [docs] Reduce number of Vale errors @oliviertassinari
|
|
588
|
+
- [docs] Remove default value set to `undefined` (#12128) @alexfauquette
|
|
589
|
+
|
|
590
|
+
### Core
|
|
591
|
+
|
|
592
|
+
- [core] Fix docs link check (#12135) @LukasTy
|
|
593
|
+
- [core] Fix missing context display names (#12124) @oliviertassinari
|
|
594
|
+
- [core] Fix shortcuts when Caps Lock enabled (#12121) @oliviertassinari
|
|
595
|
+
- [core] Remove IE 11 compat logic (#12119) @oliviertassinari
|
|
596
|
+
- [core] Simplify key utils (#12120) @oliviertassinari
|
|
597
|
+
- [core] Use the @mui/internal-scripts package (#12142) @michaldudak
|
|
598
|
+
- [all components] Remove legacy IE 11 bundle (#12151) @flaviendelangle
|
|
599
|
+
- [code-infra] Bump monorepo (#11880) @Janpot
|
|
600
|
+
- [code-infra] Use `experimental.cpus` to control amount of export workers in Next.js (#12095) @Janpot
|
|
601
|
+
- [docs-infra] Remove randomized API page layout (#11876) @alexfauquette
|
|
602
|
+
- [test] Create local wrapper over `describeConformance` (#12130) @michaldudak
|
|
603
|
+
|
|
604
|
+
## 7.0.0-beta.3
|
|
605
|
+
|
|
606
|
+
_Feb 16, 2024_
|
|
607
|
+
|
|
608
|
+
We'd like to offer a big thanks to the 8 contributors who made this release possible. Here are some highlights â¨:
|
|
609
|
+
|
|
610
|
+
- đ Charts get a [built in grid](https://next.mui.com/x/react-charts/axis/#grid)
|
|
611
|
+
|
|
612
|
+
<img src="https://github.com/mui/mui-x/assets/45398769/74299f54-f020-4135-b38c-dc88a230db30" width="510" alt="Charts Grid" />
|
|
613
|
+
|
|
614
|
+
- đī¸ Charts get a [Gauge component](https://next.mui.com/x/react-charts/gauge/).
|
|
615
|
+
|
|
616
|
+
<img src="https://github.com/mui/mui-x/assets/45398769/fb7a94b5-bef6-4fc2-a0cd-d6ff5b60fa8b" width="510" alt="Guage Chart" />
|
|
617
|
+
|
|
618
|
+
- đ Bugfixes
|
|
619
|
+
|
|
620
|
+
- đ Documentation improvements
|
|
621
|
+
|
|
622
|
+
### Data Grid
|
|
623
|
+
|
|
624
|
+
#### Breaking changes
|
|
625
|
+
|
|
626
|
+
- The `rowEditCommit` event and the related prop `onRowEditCommit` was removed. The [`processRowUpdate`](https://next.mui.com/x/react-data-grid/editing/#the-processrowupdate-callback) prop can be used in place.
|
|
627
|
+
|
|
628
|
+
#### `@mui/x-data-grid@7.0.0-beta.3`
|
|
629
|
+
|
|
630
|
+
- [DataGrid] Performance: avoid style invalidation (#12019) @romgrk
|
|
631
|
+
- [DataGrid] Remove legacy editing API event: `rowEditCommit` (#12073) @MBilalShafi
|
|
632
|
+
- [DataGrid] Fix styling grid filter input single select (#11520) @FreakDroid
|
|
633
|
+
|
|
634
|
+
#### `@mui/x-data-grid-pro@7.0.0-beta.3` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
635
|
+
|
|
636
|
+
Same changes as in `@mui/x-data-grid@7.0.0-beta.3`.
|
|
637
|
+
|
|
638
|
+
#### `@mui/x-data-grid-premium@7.0.0-beta.3` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
639
|
+
|
|
640
|
+
Same changes as in `@mui/x-data-grid-pro@7.0.0-beta.3`.
|
|
641
|
+
|
|
642
|
+
### Charts / `@mui/x-charts@7.0.0-beta.3`
|
|
643
|
+
|
|
644
|
+
- [charts] Add Gauge component (#11996) @alexfauquette
|
|
645
|
+
- [charts] Add a `ChartsGrid` component (#11034) @alexfauquette
|
|
646
|
+
|
|
647
|
+
### Tree View / `@mui/x-tree-view@7.0.0-beta.3`
|
|
648
|
+
|
|
649
|
+
- [TreeView] Remove instance existence checks (#12066) @flaviendelangle
|
|
650
|
+
|
|
651
|
+
### Docs
|
|
652
|
+
|
|
653
|
+
- [docs] Complete charts API pages (#12038) @alexfauquette
|
|
654
|
+
- [docs] Add more illustrations to the charts overview page (#12041) @danilo-leal
|
|
655
|
+
- [docs] Fix 301 redirection to StackBlitz @oliviertassinari
|
|
656
|
+
- [docs] Fix Tree space to match the reset of the docs @oliviertassinari
|
|
657
|
+
- [docs] Fix `dayOfWeekFormatter` typo in the pickers v6 to v7 migration document (#12043) @StylesTrip
|
|
658
|
+
- [docs] Fix redirection @oliviertassinari
|
|
659
|
+
- [docs] Fix typo for `AdapterDateFnsV3` (#12036) @flaviendelangle
|
|
660
|
+
- [docs] Removed `focused` prop from demo (#12092) @michelengelen
|
|
661
|
+
|
|
662
|
+
### Core
|
|
663
|
+
|
|
664
|
+
- [core] Fix CodeSandbox CI template @oliviertassinari
|
|
665
|
+
- [core] Sort prop asc (#12033) @oliviertassinari
|
|
666
|
+
- [core] Bump monorepo (#12055) @alexfauquette
|
|
667
|
+
|
|
668
|
+
## 7.0.0-beta.2
|
|
7
669
|
|
|
8
670
|
_Feb 9, 2024_
|
|
9
671
|
|
|
@@ -17,7 +679,7 @@ We'd like to offer a big thanks to the 15 contributors who made this release pos
|
|
|
17
679
|
|
|
18
680
|
### Data Grid
|
|
19
681
|
|
|
20
|
-
#### `@mui/x-data-grid@
|
|
682
|
+
#### `@mui/x-data-grid@7.0.0-beta.2`
|
|
21
683
|
|
|
22
684
|
- [DataGrid] Add `removeAllFilterItems` as a reason of `onFilterModelChange` callback (#11911) @shaharyar-shamshi
|
|
23
685
|
- [DataGrid] Add slot typings (#11795) @romgrk
|
|
@@ -27,35 +689,35 @@ We'd like to offer a big thanks to the 15 contributors who made this release pos
|
|
|
27
689
|
- [DataGrid] Improve vertical scrolling performance (#11924) @romgrk
|
|
28
690
|
- [l10n] Improve Danish (da-DK) locale (#11877) @ShahrazH
|
|
29
691
|
|
|
30
|
-
#### `@mui/x-data-grid-pro@
|
|
692
|
+
#### `@mui/x-data-grid-pro@7.0.0-beta.2` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
31
693
|
|
|
32
694
|
Same changes as in `@mui/x-data-grid@v7.0.0-beta.2`.
|
|
33
695
|
|
|
34
696
|
#### `@mui/x-data-grid-premium@v7.0.0-beta.2` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
35
697
|
|
|
36
|
-
Same changes as in `@mui/x-data-grid-pro@
|
|
698
|
+
Same changes as in `@mui/x-data-grid-pro@7.0.0-beta.2`, plus:
|
|
37
699
|
|
|
38
700
|
- [DataGridPremium] Fix autosize grouping cell (#11870) @romgrk
|
|
39
701
|
- [DataGridPremium] Fix clipboard paste not working with Caps Lock enabled (#11965) @shaharyar-shamshi
|
|
40
702
|
|
|
41
|
-
### Date Pickers
|
|
703
|
+
### Date and Time Pickers
|
|
42
704
|
|
|
43
|
-
#### `@mui/x-date-pickers@
|
|
705
|
+
#### `@mui/x-date-pickers@7.0.0-beta.2`
|
|
44
706
|
|
|
45
707
|
- [pickers] Avoid relying on locale in Luxon `isWithinRange` method (#11936) @LukasTy
|
|
46
708
|
- [pickers] Limit the valid values of `TDate` (#11791) @flaviendelangle
|
|
47
709
|
|
|
48
|
-
#### `@mui/x-date-pickers-pro@
|
|
710
|
+
#### `@mui/x-date-pickers-pro@7.0.0-beta.2` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
49
711
|
|
|
50
|
-
Same changes as in `@mui/x-date-pickers@
|
|
712
|
+
Same changes as in `@mui/x-date-pickers@7.0.0-beta.2`.
|
|
51
713
|
|
|
52
|
-
### Charts / `@mui/x-charts@
|
|
714
|
+
### Charts / `@mui/x-charts@7.0.0-beta.2`
|
|
53
715
|
|
|
54
716
|
- [charts] Add `reverse` property to axes (#11899) @alexfauquette
|
|
55
717
|
- [charts] Allow series ids to be numbers (#11941) @alexfauquette
|
|
56
718
|
- [charts] Support UTC date formatting in tooltip (#11943) @shaharyar-shamshi
|
|
57
719
|
|
|
58
|
-
### Tree View / `@mui/x-tree-view@
|
|
720
|
+
### Tree View / `@mui/x-tree-view@7.0.0-beta.2`
|
|
59
721
|
|
|
60
722
|
- [TreeView] Correctly detect if an item is expandable (#11963) @swalker326
|
|
61
723
|
- [TreeView] Polish the default design & revise the simple version pages (#11529) @danilo-leal
|
|
@@ -71,7 +733,7 @@ Same changes as in `@mui/x-date-pickers@v7.0.0-beta.2`.
|
|
|
71
733
|
+import { LicenseInfo } from '@mui/x-license';
|
|
72
734
|
```
|
|
73
735
|
|
|
74
|
-
`@mui/x-license@
|
|
736
|
+
`@mui/x-license@7.0.0-beta.2`
|
|
75
737
|
|
|
76
738
|
- [license] Rename `@mui/x-license-pro` to `@mui/x-license` (#11938) @cherniavskii
|
|
77
739
|
|
|
@@ -225,7 +887,7 @@ Same changes as in `@mui/x-data-grid@7.0.0-beta.1`.
|
|
|
225
887
|
|
|
226
888
|
Same changes as in `@mui/x-data-grid-pro@7.0.0-beta.1`.
|
|
227
889
|
|
|
228
|
-
### Date Pickers
|
|
890
|
+
### Date and Time Pickers
|
|
229
891
|
|
|
230
892
|
#### `@mui/x-date-pickers@7.0.0-beta.1`
|
|
231
893
|
|
|
@@ -272,7 +934,7 @@ Same changes as in `@mui/x-date-pickers@7.0.0-beta.1`.
|
|
|
272
934
|
|
|
273
935
|
_Jan 26, 2024_
|
|
274
936
|
|
|
275
|
-
We are glad to announce MUI
|
|
937
|
+
We are glad to announce MUIÂ X v7 beta!
|
|
276
938
|
This version has several improvements, bug fixes, and exciting features đ.
|
|
277
939
|
We want to offer a big thanks to the 7 contributors who made this release possible â¨:
|
|
278
940
|
|
|
@@ -330,7 +992,7 @@ Same changes as in `@mui/x-data-grid@7.0.0-beta.0`.
|
|
|
330
992
|
|
|
331
993
|
Same changes as in `@mui/x-data-grid-pro@7.0.0-beta.0`.
|
|
332
994
|
|
|
333
|
-
### Date Pickers
|
|
995
|
+
### Date and Time Pickers
|
|
334
996
|
|
|
335
997
|
#### `@mui/x-date-pickers@7.0.0-beta.0`
|
|
336
998
|
|
|
@@ -469,7 +1131,7 @@ Same changes as in `@mui/x-data-grid-pro@7.0.0-alpha.9`, plus:
|
|
|
469
1131
|
- [DataGridPremium] Allow aggregation to be applied for non-aggregable columns (#11574) @MBilalShafi
|
|
470
1132
|
- [DataGridPremium] Allow programmatically grouping non-groupable columns (#11539) @MBilalShafi
|
|
471
1133
|
|
|
472
|
-
### Date Pickers
|
|
1134
|
+
### Date and Time Pickers
|
|
473
1135
|
|
|
474
1136
|
#### Breaking changes
|
|
475
1137
|
|
|
@@ -496,7 +1158,7 @@ Same changes as in `@mui/x-date-pickers@7.0.0-alpha.9`.
|
|
|
496
1158
|
|
|
497
1159
|
- [charts] Do not propagate `innerRadius` and `outerRadius` to the DOM (#11689) @alexfauquette
|
|
498
1160
|
- [charts] Fix default `stackOffset` for `LineChart` (#11647) @alexfauquette
|
|
499
|
-
- [charts] Remove a
|
|
1161
|
+
- [charts] Remove a TypeScript ignore (#11688) @alexfauquette
|
|
500
1162
|
|
|
501
1163
|
### Tree View
|
|
502
1164
|
|
|
@@ -754,7 +1416,7 @@ Same changes as in `@mui/x-data-grid@7.0.0-alpha.8`.
|
|
|
754
1416
|
|
|
755
1417
|
Same changes as in `@mui/x-data-grid-pro@7.0.0-alpha.8`.
|
|
756
1418
|
|
|
757
|
-
### Date Pickers
|
|
1419
|
+
### Date and Time Pickers
|
|
758
1420
|
|
|
759
1421
|
#### `@mui/x-date-pickers@7.0.0-alpha.8`
|
|
760
1422
|
|
|
@@ -844,7 +1506,7 @@ Same changes as in `@mui/x-data-grid@7.0.0-alpha.7`.
|
|
|
844
1506
|
|
|
845
1507
|
Same changes as in `@mui/x-data-grid-pro@7.0.0-alpha.7`.
|
|
846
1508
|
|
|
847
|
-
### Date Pickers
|
|
1509
|
+
### Date and Time Pickers
|
|
848
1510
|
|
|
849
1511
|
#### `@mui/x-date-pickers@7.0.0-alpha.7`
|
|
850
1512
|
|
|
@@ -925,7 +1587,7 @@ Same changes as in `@mui/x-date-pickers@7.0.0-alpha.7`.
|
|
|
925
1587
|
- [core] Fix release changelog (#11496) @romgrk
|
|
926
1588
|
- [core] Fix use of ::before & ::after (#11515) @oliviertassinari
|
|
927
1589
|
- [core] Localize the issue template to MUIÂ X (#11511) @oliviertassinari
|
|
928
|
-
- [core]
|
|
1590
|
+
- [core] Regenerate API files (#11542) @flaviendelangle
|
|
929
1591
|
- [core] Remove issue emoji @oliviertassinari
|
|
930
1592
|
- [core] Sync the release instructions with MUIÂ Core @oliviertassinari
|
|
931
1593
|
- [core] Yaml format match most common convention @oliviertassinari
|
|
@@ -968,7 +1630,7 @@ We'd like to offer a big thanks to the 6 contributors who made this release poss
|
|
|
968
1630
|
|
|
969
1631
|
- The `filterModel` now supports `Date` objects as values for `date` and `dateTime` column types.
|
|
970
1632
|
The `filterModel` still accepts strings as values for `date` and `dateTime` column types,
|
|
971
|
-
but all updates to the `filterModel` coming from the UI (
|
|
1633
|
+
but all updates to the `filterModel` coming from the UI (for example filter panel) will set the value as a `Date` object.
|
|
972
1634
|
|
|
973
1635
|
#### `@mui/x-data-grid@7.0.0-alpha.6`
|
|
974
1636
|
|
|
@@ -986,7 +1648,7 @@ Same changes as in `@mui/x-data-grid@7.0.0-alpha.6`.
|
|
|
986
1648
|
|
|
987
1649
|
Same changes as in `@mui/x-data-grid-pro@7.0.0-alpha.6`.
|
|
988
1650
|
|
|
989
|
-
### Date Pickers
|
|
1651
|
+
### Date and Time Pickers
|
|
990
1652
|
|
|
991
1653
|
#### `@mui/x-date-pickers@7.0.0-alpha.6`
|
|
992
1654
|
|
|
@@ -1054,7 +1716,7 @@ Same changes as in `@mui/x-data-grid@7.0.0-alpha.5`.
|
|
|
1054
1716
|
|
|
1055
1717
|
Same changes as in `@mui/x-data-grid-pro@7.0.0-alpha.5`.
|
|
1056
1718
|
|
|
1057
|
-
### Date Pickers
|
|
1719
|
+
### Date and Time Pickers
|
|
1058
1720
|
|
|
1059
1721
|
#### Breaking changes
|
|
1060
1722
|
|
|
@@ -1179,7 +1841,7 @@ Same changes as in `@mui/x-date-pickers@7.0.0-alpha.5`, plus:
|
|
|
1179
1841
|
### Core
|
|
1180
1842
|
|
|
1181
1843
|
- [core] Automate cherry-pick of PRs from `next` -> `master` (#11382) @MBilalShafi
|
|
1182
|
-
- [
|
|
1844
|
+
- [infra] Update `no-response` workflow (#11369) @MBilalShafi
|
|
1183
1845
|
- [test] Fix flaky screenshots (#11388) @cherniavskii
|
|
1184
1846
|
|
|
1185
1847
|
## 7.0.0-alpha.4
|
|
@@ -1238,7 +1900,7 @@ Same changes as in `@mui/x-data-grid@7.0.0-alpha.4`, plus:
|
|
|
1238
1900
|
|
|
1239
1901
|
Same changes as in `@mui/x-data-grid-pro@7.0.0-alpha.4`.
|
|
1240
1902
|
|
|
1241
|
-
### Date Pickers
|
|
1903
|
+
### Date and Time Pickers
|
|
1242
1904
|
|
|
1243
1905
|
#### `@mui/x-date-pickers@7.0.0-alpha.4`
|
|
1244
1906
|
|
|
@@ -1289,7 +1951,7 @@ We'd like to offer a big thanks to the 15 contributors who made this release pos
|
|
|
1289
1951
|
|
|
1290
1952
|
- The clipboard related exports `ignoreValueFormatterDuringExport` and `splitClipboardPastedText` are no longer prefixed with `unstable_`.
|
|
1291
1953
|
|
|
1292
|
-
- The deprecated constants `SUBMIT_FILTER_STROKE_TIME` and `SUBMIT_FILTER_DATE_STROKE_TIME` have been removed from the `DataGrid` exports. Use the [`filterDebounceMs`](https://next.mui.com/x/api/data-grid/data-grid/#
|
|
1954
|
+
- The deprecated constants `SUBMIT_FILTER_STROKE_TIME` and `SUBMIT_FILTER_DATE_STROKE_TIME` have been removed from the `DataGrid` exports. Use the [`filterDebounceMs`](https://next.mui.com/x/api/data-grid/data-grid/#data-grid-prop-filterDebounceMs) prop to customize filter debounce time.
|
|
1293
1955
|
|
|
1294
1956
|
- The `slots.preferencesPanel` slot and the `slotProps.preferencesPanel` prop were removed. Use `slots.panel` and `slotProps.panel` instead.
|
|
1295
1957
|
|
|
@@ -1338,7 +2000,7 @@ Same changes as in `@mui/x-data-grid-pro@7.0.0-alpha.3`, plus:
|
|
|
1338
2000
|
- [DataGridPremium] Make Cell selection feature stable (#11246) @MBilalShafi
|
|
1339
2001
|
- [DataGridPremium] Make Clipboard paste feature stable (#11248) @MBilalShafi
|
|
1340
2002
|
|
|
1341
|
-
### Date Pickers
|
|
2003
|
+
### Date and Time Pickers
|
|
1342
2004
|
|
|
1343
2005
|
#### Breaking changes
|
|
1344
2006
|
|
|
@@ -1348,7 +2010,7 @@ Same changes as in `@mui/x-data-grid-pro@7.0.0-alpha.3`, plus:
|
|
|
1348
2010
|
The Firefox browser currently does not support this behavior because the [getWeekInfo](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Locale/getWeekInfo) API is not yet implemented.
|
|
1349
2011
|
|
|
1350
2012
|
```ts
|
|
1351
|
-
import { Settings } from 'luxon';
|
|
2013
|
+
import { Settings, Info } from 'luxon';
|
|
1352
2014
|
|
|
1353
2015
|
Settings.defaultWeekSettings = {
|
|
1354
2016
|
firstDay: 1,
|
|
@@ -1417,7 +2079,7 @@ Same changes as in `@mui/x-date-pickers@7.0.0-alpha.3`.
|
|
|
1417
2079
|
|
|
1418
2080
|
- [charts] Adjusted `defaultizeValueFormatter` util to accept an optional `series.valueFormatter` value (#11144) @michelengelen
|
|
1419
2081
|
- [charts] Apply `labelStyle` and `tickLabelStyle` props on `<ChartsYAxis />` (#11180) @akamfoad
|
|
1420
|
-
- [charts] Fix
|
|
2082
|
+
- [charts] Fix TypeScript config (#11259) @alexfauquette
|
|
1421
2083
|
- [charts] Fix error with empty dataset (#11063) @alexfauquette
|
|
1422
2084
|
- [charts] Fix export strategy (#11235) @alexfauquette
|
|
1423
2085
|
- [charts] Remove outdated prop-types (#11045) @alexfauquette
|
|
@@ -1475,7 +2137,7 @@ Same changes as in `@mui/x-data-grid@7.0.0-alpha.2`.
|
|
|
1475
2137
|
|
|
1476
2138
|
Same changes as in `@mui/x-data-grid-pro@7.0.0-alpha.2`.
|
|
1477
2139
|
|
|
1478
|
-
### Date Pickers
|
|
2140
|
+
### Date and Time Pickers
|
|
1479
2141
|
|
|
1480
2142
|
#### Breaking changes
|
|
1481
2143
|
|
|
@@ -1581,7 +2243,7 @@ We'd like to offer a big thanks to the 3 contributors who made this release poss
|
|
|
1581
2243
|
- đ Bugfixes
|
|
1582
2244
|
- đ Documentation improvements
|
|
1583
2245
|
|
|
1584
|
-
### Date Pickers
|
|
2246
|
+
### Date and Time Pickers
|
|
1585
2247
|
|
|
1586
2248
|
#### `@mui/x-date-pickers@7.0.0-alpha.1` / `@mui/x-date-pickers-pro@7.0.0-alpha.1` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
1587
2249
|
|
|
@@ -2077,7 +2739,7 @@ Same changes as in `@mui/x-data-grid-pro@7.0.0-alpha.0`, plus:
|
|
|
2077
2739
|
|
|
2078
2740
|
- [DataGridPremium] Render aggregation label when `renderHeader` is used (#10936) @cherniavskii
|
|
2079
2741
|
|
|
2080
|
-
### Date Pickers
|
|
2742
|
+
### Date and Time Pickers
|
|
2081
2743
|
|
|
2082
2744
|
#### Breaking changes
|
|
2083
2745
|
|
|
@@ -2138,7 +2800,129 @@ Here is an example of the renaming for the `<ChartsTooltip />` component.
|
|
|
2138
2800
|
- [core] Update release instructions as per v7 configuration (#10962) @MBilalShafi
|
|
2139
2801
|
- [license] Correctly throw errors (#10924) @oliviertassinari
|
|
2140
2802
|
|
|
2141
|
-
##
|
|
2803
|
+
## 6.19.7
|
|
2804
|
+
|
|
2805
|
+
_Mar 14, 2024_
|
|
2806
|
+
|
|
2807
|
+
We'd like to offer a big thanks to @LukasTy who made this release possible.
|
|
2808
|
+
|
|
2809
|
+
### Date Pickers
|
|
2810
|
+
|
|
2811
|
+
#### `@mui/x-date-pickers@6.19.7`
|
|
2812
|
+
|
|
2813
|
+
- [pickers] Keep the existing time when looking for closest enabled date (#12410) @LukasTy
|
|
2814
|
+
|
|
2815
|
+
#### `@mui/x-date-pickers-pro@6.19.7` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
2816
|
+
|
|
2817
|
+
Same changes as in `@mui/x-date-pickers@6.19.7`.
|
|
2818
|
+
|
|
2819
|
+
### Docs
|
|
2820
|
+
|
|
2821
|
+
- [docs] Add Pickers custom start of week section (#12425) @LukasTy
|
|
2822
|
+
|
|
2823
|
+
## 6.19.6
|
|
2824
|
+
|
|
2825
|
+
_Mar 1, 2024_
|
|
2826
|
+
|
|
2827
|
+
We'd like to offer a big thanks to the 4 contributors who made this release possible. Here are some highlights â¨:
|
|
2828
|
+
|
|
2829
|
+
- đ Improve Korean (ko-KR) and Chinese (zh-CN) locales on the Pickers
|
|
2830
|
+
- đ Bugfixes
|
|
2831
|
+
- đ Documentation improvements
|
|
2832
|
+
|
|
2833
|
+
### Data Grid
|
|
2834
|
+
|
|
2835
|
+
#### `@mui/x-data-grid@6.19.6`
|
|
2836
|
+
|
|
2837
|
+
- [DataGrid] Fix error when existing rows are passed to `replaceRows` (@martijn-basesoft)
|
|
2838
|
+
|
|
2839
|
+
#### `@mui/x-data-grid-pro@6.19.6` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
2840
|
+
|
|
2841
|
+
Same changes as in `@mui/x-data-grid@6.19.6`.
|
|
2842
|
+
|
|
2843
|
+
#### `@mui/x-data-grid-premium@6.19.6` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
2844
|
+
|
|
2845
|
+
Same changes as in `@mui/x-data-grid-pro@6.19.6`, plus:
|
|
2846
|
+
|
|
2847
|
+
- [DataGridPremium] Make clipboard copy respect the sorting during cell selection (#12255) @MBilalShafi
|
|
2848
|
+
|
|
2849
|
+
### Date and Time Pickers
|
|
2850
|
+
|
|
2851
|
+
#### `@mui/x-date-pickers@6.19.6`
|
|
2852
|
+
|
|
2853
|
+
- [l10n] Improve Chinese (zh-CN) locale (#12250) @headironc
|
|
2854
|
+
- [l10n] Improve Korean (ko-KR) locale (#12186) @Luzi
|
|
2855
|
+
|
|
2856
|
+
#### `@mui/x-date-pickers-pro@6.19.6` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
2857
|
+
|
|
2858
|
+
Same changes as in `@mui/x-date-pickers@6.19.6`.
|
|
2859
|
+
|
|
2860
|
+
### Docs
|
|
2861
|
+
|
|
2862
|
+
- [docs] Update lazy loading demo to show skeleton rows during initial rows fetch (#12062) @cherniavskii
|
|
2863
|
+
|
|
2864
|
+
## 6.19.5
|
|
2865
|
+
|
|
2866
|
+
_Feb 23, 2024_
|
|
2867
|
+
|
|
2868
|
+
We'd like to offer a big thanks to the 6 contributors who made this release possible. Here are some highlights â¨:
|
|
2869
|
+
|
|
2870
|
+
- đ Bugfixes
|
|
2871
|
+
- đ Documentation improvements
|
|
2872
|
+
|
|
2873
|
+
### Data Grid
|
|
2874
|
+
|
|
2875
|
+
#### `@mui/x-data-grid@6.19.5`
|
|
2876
|
+
|
|
2877
|
+
- [DataGrid] Fix styling grid filter input single select (#12079) @FreakDroid
|
|
2878
|
+
|
|
2879
|
+
#### `@mui/x-data-grid-pro@6.19.5` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
2880
|
+
|
|
2881
|
+
Same changes as in `@mui/x-data-grid@6.19.5`.
|
|
2882
|
+
|
|
2883
|
+
#### `@mui/x-data-grid-premium@6.19.5` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
2884
|
+
|
|
2885
|
+
Same changes as in `@mui/x-data-grid-pro@6.19.5`.
|
|
2886
|
+
|
|
2887
|
+
### Date and Time Pickers
|
|
2888
|
+
|
|
2889
|
+
#### `@mui/x-date-pickers@6.19.5`
|
|
2890
|
+
|
|
2891
|
+
- [pickers] Fix `referenceDate` day calendar focus (#12136) @LukasTy
|
|
2892
|
+
- [pickers] Fix styling props propagation to `DateTimePickerTabs` (#12131) @LukasTy
|
|
2893
|
+
|
|
2894
|
+
#### `@mui/x-date-pickers-pro@6.19.5` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
2895
|
+
|
|
2896
|
+
Same changes as in `@mui/x-date-pickers@6.19.5`.
|
|
2897
|
+
|
|
2898
|
+
### Charts / `@mui/x-charts@6.19.5`
|
|
2899
|
+
|
|
2900
|
+
- [charts] Allow to skip animation on sparkline bar (#12160) @alexfauquette
|
|
2901
|
+
|
|
2902
|
+
### Docs
|
|
2903
|
+
|
|
2904
|
+
- [docs] Clarify Pickers 'Component composition' section (#12147) @LukasTy
|
|
2905
|
+
- [docs] Fix 301 redirection to StackBlitz @oliviertassinari
|
|
2906
|
+
- [docs] Fix 301 to Material UI @oliviertassinari
|
|
2907
|
+
- [docs] Fix 301 to Material UI @oliviertassinari
|
|
2908
|
+
- [docs] Fix 404 links to translation source @oliviertassinari
|
|
2909
|
+
- [docs] Fix dead link to translations @oliviertassinari
|
|
2910
|
+
- [docs] Fix the Treemap illustration (#12189) @danilo-leal
|
|
2911
|
+
- [docs] Fix typo for `AdapterDateFnsV3` (#12037) @flaviendelangle
|
|
2912
|
+
- [docs] Improve performance on Charts entry point @oliviertassinari
|
|
2913
|
+
- [docs] Move Heatmap to pro (#12170) @alexfauquette
|
|
2914
|
+
- [docs] Remove Charts installation next tag call-out (#12133) @LukasTy
|
|
2915
|
+
- [docs] Removed `focused` prop from demo (#12126) @michelengelen
|
|
2916
|
+
- [docs] Add missing Heatmap pro icon @oliviertassinari
|
|
2917
|
+
- [docs] Add more illustrations to the Overview page (#12041) @danilo-leal
|
|
2918
|
+
- [docs] Avoid use of shorthand (#12009) @oliviertassinari
|
|
2919
|
+
|
|
2920
|
+
### Core
|
|
2921
|
+
|
|
2922
|
+
- [core] Fix CI @oliviertassinari
|
|
2923
|
+
- [core] Fix docs link check (#12137) @LukasTy
|
|
2924
|
+
|
|
2925
|
+
## 6.19.4
|
|
2142
2926
|
|
|
2143
2927
|
_Feb 9, 2024_
|
|
2144
2928
|
|
|
@@ -2150,7 +2934,7 @@ We'd like to offer a big thanks to the 10 contributors who made this release pos
|
|
|
2150
2934
|
|
|
2151
2935
|
### Data Grid
|
|
2152
2936
|
|
|
2153
|
-
#### `@mui/x-data-grid@
|
|
2937
|
+
#### `@mui/x-data-grid@6.19.4`
|
|
2154
2938
|
|
|
2155
2939
|
- [DataGrid] Add support for dialogs in menu actions (#11937) @cherniavskii
|
|
2156
2940
|
- [DataGrid] Allow passing readonly arrays to `pageSizeOptions` prop (#11992) @pcorpet
|
|
@@ -2158,28 +2942,28 @@ We'd like to offer a big thanks to the 10 contributors who made this release pos
|
|
|
2158
2942
|
- [DataGrid] Replace `eval` with `new Function` (#11962) @cherniavskii
|
|
2159
2943
|
- [l10n] Improve Danish (da-DK) locale (#11972) @ShahrazH
|
|
2160
2944
|
|
|
2161
|
-
#### `@mui/x-data-grid-pro@
|
|
2945
|
+
#### `@mui/x-data-grid-pro@6.19.4` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
2162
2946
|
|
|
2163
|
-
Same changes as in `@mui/x-data-grid@
|
|
2947
|
+
Same changes as in `@mui/x-data-grid@6.19.4`.
|
|
2164
2948
|
|
|
2165
|
-
#### `@mui/x-data-grid-premium@
|
|
2949
|
+
#### `@mui/x-data-grid-premium@6.19.4` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
2166
2950
|
|
|
2167
|
-
Same changes as in `@mui/x-data-grid-pro@
|
|
2951
|
+
Same changes as in `@mui/x-data-grid-pro@6.19.4`, plus:
|
|
2168
2952
|
|
|
2169
2953
|
- [DataGridPremium] Fix autosize grouping cell (#11990) @romgrk
|
|
2170
2954
|
- [DataGridPremium] Fix error after closing print export (#11889) @cherniavskii
|
|
2171
2955
|
|
|
2172
|
-
### Date Pickers
|
|
2956
|
+
### Date and Time Pickers
|
|
2173
2957
|
|
|
2174
|
-
#### `@mui/x-date-pickers@
|
|
2958
|
+
#### `@mui/x-date-pickers@6.19.4`
|
|
2175
2959
|
|
|
2176
2960
|
- [pickers] Avoid relying on locale in Luxon `isWithinRange` method (#11940) @LukasTy
|
|
2177
2961
|
|
|
2178
|
-
#### `@mui/x-date-pickers-pro@
|
|
2962
|
+
#### `@mui/x-date-pickers-pro@6.19.4` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
2179
2963
|
|
|
2180
|
-
Same changes as in `@mui/x-date-pickers@
|
|
2964
|
+
Same changes as in `@mui/x-date-pickers@6.19.4`.
|
|
2181
2965
|
|
|
2182
|
-
### Charts / `@mui/x-charts@
|
|
2966
|
+
### Charts / `@mui/x-charts@6.19.4`
|
|
2183
2967
|
|
|
2184
2968
|
- [charts] Add `reverse` property to axes (#11959) @alexfauquette
|
|
2185
2969
|
- [charts] Allow series ids to be numbers (#11960) @alexfauquette
|
|
@@ -2218,7 +3002,7 @@ Same changes as in `@mui/x-data-grid@6.19.3`.
|
|
|
2218
3002
|
|
|
2219
3003
|
Same changes as in `@mui/x-data-grid-pro@6.19.3`.
|
|
2220
3004
|
|
|
2221
|
-
### Date Pickers
|
|
3005
|
+
### Date and Time Pickers
|
|
2222
3006
|
|
|
2223
3007
|
#### `@mui/x-date-pickers@6.19.3`
|
|
2224
3008
|
|
|
@@ -2240,7 +3024,7 @@ Same changes as in `@mui/x-date-pickers@6.19.3`.
|
|
|
2240
3024
|
- [docs] Fix docs:api when typo in slots typing (#11861) @alexfauquette
|
|
2241
3025
|
- [docs] Improve Support page (#11556) @oliviertassinari
|
|
2242
3026
|
- [docs] Sync support page with core @oliviertassinari
|
|
2243
|
-
- [docs] These API don't exist in MUI
|
|
3027
|
+
- [docs] These API don't exist in MUIÂ X v6 @oliviertassinari
|
|
2244
3028
|
- [docs] Update whats new page with v7 Beta blogpost content (#11886) @joserodolfofreitas
|
|
2245
3029
|
|
|
2246
3030
|
## 6.19.2
|
|
@@ -2252,7 +3036,7 @@ We'd like to offer a big thanks to the 2 contributors who made this release poss
|
|
|
2252
3036
|
- đ Apply the `layout.tabs` class to `Tabs` slot (@LukasTy) (#11782)
|
|
2253
3037
|
- đ Bugfixes
|
|
2254
3038
|
|
|
2255
|
-
### Date Pickers
|
|
3039
|
+
### Date and Time Pickers
|
|
2256
3040
|
|
|
2257
3041
|
#### `@mui/x-date-pickers@6.19.2`
|
|
2258
3042
|
|
|
@@ -2326,7 +3110,7 @@ We'd like to offer a big thanks to the 3 contributors who made this release poss
|
|
|
2326
3110
|
import { de } from 'date-fns/locale/de';
|
|
2327
3111
|
```
|
|
2328
3112
|
|
|
2329
|
-
### Date Pickers
|
|
3113
|
+
### Date and Time Pickers
|
|
2330
3114
|
|
|
2331
3115
|
#### `@mui/x-date-pickers@6.19.0`
|
|
2332
3116
|
|
|
@@ -2373,7 +3157,7 @@ Same changes as in `@mui/x-data-grid@6.18.7`.
|
|
|
2373
3157
|
|
|
2374
3158
|
Same changes as in `@mui/x-data-grid-pro@6.18.7`.
|
|
2375
3159
|
|
|
2376
|
-
### Date Pickers
|
|
3160
|
+
### Date and Time Pickers
|
|
2377
3161
|
|
|
2378
3162
|
#### `@mui/x-date-pickers@6.18.7`
|
|
2379
3163
|
|
|
@@ -2415,7 +3199,7 @@ Same changes as in `@mui/x-data-grid@6.18.6`.
|
|
|
2415
3199
|
|
|
2416
3200
|
Same changes as in `@mui/x-data-grid-pro@6.18.6`.
|
|
2417
3201
|
|
|
2418
|
-
### Date Pickers
|
|
3202
|
+
### Date and Time Pickers
|
|
2419
3203
|
|
|
2420
3204
|
#### `@mui/x-date-pickers@6.18.6`
|
|
2421
3205
|
|
|
@@ -2464,7 +3248,7 @@ Same changes as in `@mui/x-data-grid@6.18.5`.
|
|
|
2464
3248
|
|
|
2465
3249
|
Same changes as in `@mui/x-data-grid-pro@6.18.5`.
|
|
2466
3250
|
|
|
2467
|
-
### Date Pickers
|
|
3251
|
+
### Date and Time Pickers
|
|
2468
3252
|
|
|
2469
3253
|
#### `@mui/x-date-pickers@6.18.5`
|
|
2470
3254
|
|
|
@@ -2507,7 +3291,7 @@ Same changes as in `@mui/x-data-grid@6.18.4`.
|
|
|
2507
3291
|
|
|
2508
3292
|
Same changes as in `@mui/x-data-grid-pro@6.18.4`.
|
|
2509
3293
|
|
|
2510
|
-
### Date Pickers
|
|
3294
|
+
### Date and Time Pickers
|
|
2511
3295
|
|
|
2512
3296
|
#### `@mui/x-date-pickers@6.18.4`
|
|
2513
3297
|
|
|
@@ -2553,7 +3337,7 @@ Same changes as in `@mui/x-data-grid-pro@6.18.3`, plus:
|
|
|
2553
3337
|
- [DataGridPremium] Fix aggregated column ignoring column definition changes (#11176) @cherniavskii
|
|
2554
3338
|
- [DataGridPremium] Fix custom filter operators not working on aggregated column (#11201) @cherniavskii
|
|
2555
3339
|
|
|
2556
|
-
### Date Pickers
|
|
3340
|
+
### Date and Time Pickers
|
|
2557
3341
|
|
|
2558
3342
|
#### `@mui/x-date-pickers@6.18.3`
|
|
2559
3343
|
|
|
@@ -2609,7 +3393,7 @@ Same changes as in `@mui/x-data-grid@6.18.2`.
|
|
|
2609
3393
|
|
|
2610
3394
|
Same changes as in `@mui/x-data-grid-pro@6.18.2`.
|
|
2611
3395
|
|
|
2612
|
-
### Date Pickers
|
|
3396
|
+
### Date and Time Pickers
|
|
2613
3397
|
|
|
2614
3398
|
#### `@mui/x-date-pickers@6.18.2`
|
|
2615
3399
|
|
|
@@ -2666,7 +3450,7 @@ Same changes as in `@mui/x-data-grid-pro@6.18.1`, plus:
|
|
|
2666
3450
|
|
|
2667
3451
|
- [DataGridPremium] Render aggregation label when `renderHeader` is used (#10961) @cherniavskii
|
|
2668
3452
|
|
|
2669
|
-
### Date Pickers
|
|
3453
|
+
### Date and Time Pickers
|
|
2670
3454
|
|
|
2671
3455
|
#### `@mui/x-date-pickers@6.18.1`
|
|
2672
3456
|
|
|
@@ -2725,7 +3509,7 @@ Same changes as in `@mui/x-data-grid@6.18.0`.
|
|
|
2725
3509
|
|
|
2726
3510
|
Same changes as in `@mui/x-data-grid-pro@6.18.0`.
|
|
2727
3511
|
|
|
2728
|
-
### Date Pickers
|
|
3512
|
+
### Date and Time Pickers
|
|
2729
3513
|
|
|
2730
3514
|
#### `@mui/x-date-pickers@6.18.0`
|
|
2731
3515
|
|
|
@@ -2790,7 +3574,7 @@ Same changes as in `@mui/x-data-grid-pro@6.17.0`, plus:
|
|
|
2790
3574
|
- [DataGridPremium] Fix `sum` aggregation to ignore non-numeric values (#10730) @cherniavskii
|
|
2791
3575
|
- [DataGridPremium] Fix cell selection throwing index error on second page and beyond (#10784) @MBilalShafi
|
|
2792
3576
|
|
|
2793
|
-
### Date Pickers
|
|
3577
|
+
### Date and Time Pickers
|
|
2794
3578
|
|
|
2795
3579
|
#### `@mui/x-date-pickers@6.17.0`
|
|
2796
3580
|
|
|
@@ -2844,7 +3628,7 @@ Same changes as in `@mui/x-data-grid@6.16.3`.
|
|
|
2844
3628
|
|
|
2845
3629
|
Same changes as in `@mui/x-data-grid-pro@6.16.3`.
|
|
2846
3630
|
|
|
2847
|
-
### Date Pickers
|
|
3631
|
+
### Date and Time Pickers
|
|
2848
3632
|
|
|
2849
3633
|
#### `@mui/x-date-pickers@6.16.3`
|
|
2850
3634
|
|
|
@@ -2920,7 +3704,7 @@ Same changes as in `@mui/x-data-grid@6.16.2`, plus:
|
|
|
2920
3704
|
|
|
2921
3705
|
Same changes as in `@mui/x-data-grid-pro@6.16.2`.
|
|
2922
3706
|
|
|
2923
|
-
### Date Pickers
|
|
3707
|
+
### Date and Time Pickers
|
|
2924
3708
|
|
|
2925
3709
|
#### `@mui/x-date-pickers@6.16.2`
|
|
2926
3710
|
|
|
@@ -3015,7 +3799,7 @@ Same changes as in `@mui/x-data-grid@6.16.1`.
|
|
|
3015
3799
|
|
|
3016
3800
|
Same changes as in `@mui/x-data-grid-pro@6.16.1`.
|
|
3017
3801
|
|
|
3018
|
-
### Date Pickers
|
|
3802
|
+
### Date and Time Pickers
|
|
3019
3803
|
|
|
3020
3804
|
#### `@mui/x-date-pickers@6.16.1`
|
|
3021
3805
|
|
|
@@ -3091,7 +3875,7 @@ Same changes as in `@mui/x-data-grid@6.16.0`, plus:
|
|
|
3091
3875
|
|
|
3092
3876
|
Same changes as in `@mui/x-data-grid-pro@6.16.0`.
|
|
3093
3877
|
|
|
3094
|
-
### Date Pickers
|
|
3878
|
+
### Date and Time Pickers
|
|
3095
3879
|
|
|
3096
3880
|
#### `@mui/x-date-pickers@6.16.0`
|
|
3097
3881
|
|
|
@@ -3170,7 +3954,7 @@ Same changes as in `@mui/x-data-grid@6.15.0`, plus:
|
|
|
3170
3954
|
|
|
3171
3955
|
Same changes as in `@mui/x-data-grid-pro@6.15.0`.
|
|
3172
3956
|
|
|
3173
|
-
### Date Pickers
|
|
3957
|
+
### Date and Time Pickers
|
|
3174
3958
|
|
|
3175
3959
|
#### `@mui/x-date-pickers@6.15.0`
|
|
3176
3960
|
|
|
@@ -3249,7 +4033,7 @@ Same changes as in `@mui/x-data-grid-pro@6.14.0`, plus:
|
|
|
3249
4033
|
|
|
3250
4034
|
- [DataGridPremium] Fix clipboard import cutting off at 100 rows (#9930) @gitstart
|
|
3251
4035
|
|
|
3252
|
-
### Date Pickers
|
|
4036
|
+
### Date and Time Pickers
|
|
3253
4037
|
|
|
3254
4038
|
#### `@mui/x-date-pickers@6.14.0`
|
|
3255
4039
|
|
|
@@ -3330,7 +4114,7 @@ Same changes as in `@mui/x-data-grid-pro@6.13.0`, plus:
|
|
|
3330
4114
|
|
|
3331
4115
|
- [DataGridPremium] Fix aggregated column resizing (#10079) @cherniavskii
|
|
3332
4116
|
|
|
3333
|
-
### Date Pickers
|
|
4117
|
+
### Date and Time Pickers
|
|
3334
4118
|
|
|
3335
4119
|
#### `@mui/x-date-pickers@6.13.0`
|
|
3336
4120
|
|
|
@@ -3402,7 +4186,7 @@ Same changes as in `@mui/x-data-grid@6.12.1`.
|
|
|
3402
4186
|
|
|
3403
4187
|
Same changes as in `@mui/x-data-grid-pro@6.12.1`.
|
|
3404
4188
|
|
|
3405
|
-
### Date Pickers
|
|
4189
|
+
### Date and Time Pickers
|
|
3406
4190
|
|
|
3407
4191
|
#### `@mui/x-date-pickers@6.12.1`
|
|
3408
4192
|
|
|
@@ -3458,7 +4242,7 @@ Same changes as in `@mui/x-data-grid@6.12.0`.
|
|
|
3458
4242
|
|
|
3459
4243
|
Same changes as in `@mui/x-data-grid-pro@6.12.0`.
|
|
3460
4244
|
|
|
3461
|
-
### Date Pickers
|
|
4245
|
+
### Date and Time Pickers
|
|
3462
4246
|
|
|
3463
4247
|
#### `@mui/x-date-pickers@6.12.0`
|
|
3464
4248
|
|
|
@@ -3529,7 +4313,7 @@ Same changes as in `@mui/x-data-grid@6.11.2`.
|
|
|
3529
4313
|
|
|
3530
4314
|
Same changes as in `@mui/x-data-grid-pro@6.11.2`.
|
|
3531
4315
|
|
|
3532
|
-
### Date Pickers
|
|
4316
|
+
### Date and Time Pickers
|
|
3533
4317
|
|
|
3534
4318
|
#### `@mui/x-date-pickers@6.11.2`
|
|
3535
4319
|
|
|
@@ -3580,7 +4364,7 @@ Same changes as in `@mui/x-data-grid@6.11.1`.
|
|
|
3580
4364
|
|
|
3581
4365
|
Same changes as in `@mui/x-data-grid-pro@6.11.1`.
|
|
3582
4366
|
|
|
3583
|
-
### Date Pickers
|
|
4367
|
+
### Date and Time Pickers
|
|
3584
4368
|
|
|
3585
4369
|
#### `@mui/x-date-pickers@6.11.1`
|
|
3586
4370
|
|
|
@@ -3649,7 +4433,7 @@ Same changes as in `@mui/x-data-grid@6.11.0`.
|
|
|
3649
4433
|
|
|
3650
4434
|
Same changes as in `@mui/x-data-grid-pro@6.11.0`.
|
|
3651
4435
|
|
|
3652
|
-
### Date Pickers
|
|
4436
|
+
### Date and Time Pickers
|
|
3653
4437
|
|
|
3654
4438
|
#### `@mui/x-date-pickers@6.11.0`
|
|
3655
4439
|
|
|
@@ -3737,7 +4521,7 @@ Same changes as in `@mui/x-data-grid-pro@6.10.2`, plus:
|
|
|
3737
4521
|
|
|
3738
4522
|
- [DataGridPremium] Allow to customize grouping cell offset (#9417) @cherniavskii
|
|
3739
4523
|
|
|
3740
|
-
### Date Pickers
|
|
4524
|
+
### Date and Time Pickers
|
|
3741
4525
|
|
|
3742
4526
|
#### `@mui/x-date-pickers@6.10.2`
|
|
3743
4527
|
|
|
@@ -3806,7 +4590,7 @@ Same changes as in `@mui/x-data-grid@6.10.1`, plus:
|
|
|
3806
4590
|
|
|
3807
4591
|
Same changes as in `@mui/x-data-grid-pro@6.10.1`.
|
|
3808
4592
|
|
|
3809
|
-
### Date Pickers
|
|
4593
|
+
### Date and Time Pickers
|
|
3810
4594
|
|
|
3811
4595
|
#### `@mui/x-date-pickers@6.10.1`
|
|
3812
4596
|
|
|
@@ -3872,7 +4656,7 @@ Same changes as in `@mui/x-data-grid@6.10.0`.
|
|
|
3872
4656
|
|
|
3873
4657
|
Same changes as in `@mui/x-data-grid-pro@6.10.0`.
|
|
3874
4658
|
|
|
3875
|
-
### Date Pickers
|
|
4659
|
+
### Date and Time Pickers
|
|
3876
4660
|
|
|
3877
4661
|
#### `@mui/x-date-pickers@6.10.0`
|
|
3878
4662
|
|
|
@@ -3942,7 +4726,7 @@ Same changes as in `@mui/x-data-grid-pro@6.9.2`, plus:
|
|
|
3942
4726
|
|
|
3943
4727
|
- [DataGridPremium] Auto-scroll when making range selection (#8661) @m4theushw
|
|
3944
4728
|
|
|
3945
|
-
### Date Pickers
|
|
4729
|
+
### Date and Time Pickers
|
|
3946
4730
|
|
|
3947
4731
|
#### `@mui/x-date-pickers@6.9.2`
|
|
3948
4732
|
|
|
@@ -3989,7 +4773,7 @@ We'd like to offer a big thanks to the 13 contributors who made this release pos
|
|
|
3989
4773
|
|
|
3990
4774
|
#### `@mui/x-data-grid@6.9.1`
|
|
3991
4775
|
|
|
3992
|
-
- [DataGrid] Add Joy
|
|
4776
|
+
- [DataGrid] Add Joy UI `tooltip` and `loadingOverlay` slots (#9028) @cherniavskii
|
|
3993
4777
|
- [DataGrid] Add section about enabling pagination on Pro and Premium (#8759) @joserodolfofreitas
|
|
3994
4778
|
- [DataGrid] Don't forward `editCellState` prop to DOM element (#9501) @m4theushw
|
|
3995
4779
|
- [DataGrid] Add experimental API for faster filtering performance (#9254) @romgrk
|
|
@@ -4008,7 +4792,7 @@ Same changes as in `@mui/x-data-grid@6.9.1`, plus:
|
|
|
4008
4792
|
|
|
4009
4793
|
Same changes as in `@mui/x-data-grid-pro@6.9.1`.
|
|
4010
4794
|
|
|
4011
|
-
### Date Pickers
|
|
4795
|
+
### Date and Time Pickers
|
|
4012
4796
|
|
|
4013
4797
|
#### `@mui/x-date-pickers@6.9.1`
|
|
4014
4798
|
|
|
@@ -4090,7 +4874,7 @@ Same changes as in `@mui/x-data-grid@6.9.0`.
|
|
|
4090
4874
|
|
|
4091
4875
|
Same changes as in `@mui/x-data-grid-pro@6.9.0`.
|
|
4092
4876
|
|
|
4093
|
-
### Date Pickers
|
|
4877
|
+
### Date and Time Pickers
|
|
4094
4878
|
|
|
4095
4879
|
#### `@mui/x-date-pickers@6.9.0`
|
|
4096
4880
|
|
|
@@ -4120,7 +4904,7 @@ Same changes as in `@mui/x-date-pickers@6.9.0`.
|
|
|
4120
4904
|
- [docs] Fix random screenshot generation (#9364) @cherniavskii
|
|
4121
4905
|
- [docs] Remove random generation from chart doc example (#9343) @flaviendelangle
|
|
4122
4906
|
- [docs] Sync h1 with sidenav link (#9252) @oliviertassinari
|
|
4123
|
-
- [docs] Use the mui-x Stack
|
|
4907
|
+
- [docs] Use the mui-x Stack Overflow tag (#9352) @oliviertassinari
|
|
4124
4908
|
|
|
4125
4909
|
### Core
|
|
4126
4910
|
|
|
@@ -4166,7 +4950,7 @@ Same changes as in `@mui/x-data-grid@6.8.0`.
|
|
|
4166
4950
|
|
|
4167
4951
|
Same changes as in `@mui/x-data-grid-pro@6.8.0`.
|
|
4168
4952
|
|
|
4169
|
-
### Date Pickers
|
|
4953
|
+
### Date and Time Pickers
|
|
4170
4954
|
|
|
4171
4955
|
#### `@mui/x-date-pickers@6.8.0`
|
|
4172
4956
|
|
|
@@ -4447,8 +5231,8 @@ We'd like to offer a big thanks to the 12 contributors who made this release pos
|
|
|
4447
5231
|
|
|
4448
5232
|
- [DataGrid] Fix DataGrid rendering in JSDOM (#8968) @cherniavskii
|
|
4449
5233
|
- [DataGrid] Fix layout when rendered inside a parent with `display: grid` (#8577) @cherniavskii
|
|
4450
|
-
- [DataGrid] Add Joy
|
|
4451
|
-
- [DataGrid] Add Joy
|
|
5234
|
+
- [DataGrid] Add Joy UI icon slots (#8940) @siriwatknp
|
|
5235
|
+
- [DataGrid] Add Joy UI pagination slot (#8871) @cherniavskii
|
|
4452
5236
|
- [DataGrid] Extract `baseChip` slot (#8748) @cherniavskii
|
|
4453
5237
|
- [DataGridPremium] Implement Clipboard import (#7389) @cherniavskii
|
|
4454
5238
|
- [l10n] Improve French (fr-FR) locale (#8825) @allereaugabriel
|
|
@@ -4498,7 +5282,7 @@ We'd like to offer a big thanks to the 7 contributors who made this release poss
|
|
|
4498
5282
|
- [DataGrid] Fix falsy filter values not showing in filter button tooltip (#8550) @ithrforu
|
|
4499
5283
|
- [DataGrid] Fix missing watermark in Pro and Premium packages (#8797) @cherniavskii
|
|
4500
5284
|
- [DataGrid] Remove unwarranted warning log (#8847) @romgrk
|
|
4501
|
-
- [DataGrid] Add Joy
|
|
5285
|
+
- [DataGrid] Add Joy UI slots (`Select`, `SelectOption`, `InputLabel`, `FormControl`) (#8747) @cherniavskii
|
|
4502
5286
|
- [DataGridPremium] Fix expanded groups being collapsed after calling `updateRows` (#8823) @cherniavskii
|
|
4503
5287
|
|
|
4504
5288
|
### `@mui/x-date-pickers@6.3.1` / `@mui/x-date-pickers-pro@6.3.1`
|
|
@@ -4549,7 +5333,7 @@ We'd like to offer a big thanks to the 15 contributors who made this release pos
|
|
|
4549
5333
|
- [DataGrid] Add overlay classes to `gridClasses` (#8686) @lindapaiste
|
|
4550
5334
|
- [DataGrid] Avoid passing `api` prop to div (#8679) @someden
|
|
4551
5335
|
- [DataGrid] Fix 'ResizeObserver loop limit exceeded' error (#8744) @m4theushw
|
|
4552
|
-
- [DataGrid] Add Joy
|
|
5336
|
+
- [DataGrid] Add Joy UI slots (button and switch) (#8699) @siriwatknp
|
|
4553
5337
|
- [DataGrid] Fix aggregation label alignment (#8694) @joserodolfofreitas
|
|
4554
5338
|
- [DataGridPremium] Fix infinite loop when updating grouped rows (#8693) @cherniavskii
|
|
4555
5339
|
- [DataGridPro] Fix error after updating `columns` and `columnGroupingModel` at once (#8730) @cherniavskii
|
|
@@ -4611,7 +5395,7 @@ We'd like to offer a big thanks to the 9 contributors who made this release poss
|
|
|
4611
5395
|
#### Changes
|
|
4612
5396
|
|
|
4613
5397
|
- [DataGrid] Add `getTogglableColumns` to `Hide all` and `Show all` actions (#8496) @MBilalShafi
|
|
4614
|
-
- [DataGrid] Add Grid + Joy
|
|
5398
|
+
- [DataGrid] Add Grid + Joy UI experiment page (#8067) @cherniavskii
|
|
4615
5399
|
- [DataGrid] Fix print style when rendering inside Shadow DOM (#8656) @Bwatermelon
|
|
4616
5400
|
- [DataGrid] Replace `GridAutoSizer` with `ResizeObserver` (#8091) @m4theushw
|
|
4617
5401
|
- [DataGrid] Use stable ID for the placeholder filter item (#8603) @m4theushw
|