@mui/x-license 7.11.1 โ 7.13.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 +259 -4
- package/index.js +1 -1
- package/modern/index.js +1 -1
- package/node/index.js +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,261 @@
|
|
|
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
|
+
## 7.13.0
|
|
7
|
+
|
|
8
|
+
_Aug 16, 2024_
|
|
9
|
+
|
|
10
|
+
We'd like to offer a big thanks to the 12 contributors who made this release possible. Here are some highlights โจ:
|
|
11
|
+
|
|
12
|
+
- ๐ซ Allow to [edit the label](https://mui.com/x/react-tree-view/rich-tree-view/editing/) of Tree View's items.
|
|
13
|
+
|
|
14
|
+
<img width="344" src="https://github.com/user-attachments/assets/1a6cf765-2dc8-4906-bd93-139086eed148" alt="Item label editing" />
|
|
15
|
+
|
|
16
|
+
- ๐ง Improve rows accessibility on the Data Grid features "Tree Data" and "Row Grouping". Certain "Row Grouping" accessibility updates will only be applied if experimental feature flag is enabled. See the [documentation](https://mui.com/x/react-data-grid/row-grouping/#accessibility-changes-in-v8) for more information.
|
|
17
|
+
- ๐ Improve Vietnamese (vi-VN) locale on the Data Grid
|
|
18
|
+
- ๐ Bugfixes
|
|
19
|
+
|
|
20
|
+
<!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
|
|
21
|
+
|
|
22
|
+
### Data Grid
|
|
23
|
+
|
|
24
|
+
#### `@mui/x-data-grid@7.13.0`
|
|
25
|
+
|
|
26
|
+
- [DataGrid] Fix CSV export for `null` and `undefined` values (#14166) @k-rajat19
|
|
27
|
+
- [DataGrid] Fix error logged during skeleton loading with nested data grid (#14186) @KenanYusuf
|
|
28
|
+
- [DataGrid] Remove needless check in `useGridStateInitialization` (#14181) @k-rajat19
|
|
29
|
+
- [DataGrid] Add recipe for persisting filters in local storage (#14208) @cherniavskii
|
|
30
|
+
- [l10n] Improve Vietnamese (vi-VN) locale (#14216) @hungnd-casso
|
|
31
|
+
|
|
32
|
+
#### `@mui/x-data-grid-pro@7.13.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
33
|
+
|
|
34
|
+
Same changes as in `@mui/x-data-grid@7.13.0`, plus:
|
|
35
|
+
|
|
36
|
+
- [DataGridPro] Fix Tree Data and Row Grouping rows accessibility (#13623) @arminmeh
|
|
37
|
+
|
|
38
|
+
#### `@mui/x-data-grid-premium@7.13.0` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
39
|
+
|
|
40
|
+
Same changes as in `@mui/x-data-grid-pro@7.13.0`.
|
|
41
|
+
|
|
42
|
+
### Date and Time Pickers
|
|
43
|
+
|
|
44
|
+
#### `@mui/x-date-pickers@7.13.0`
|
|
45
|
+
|
|
46
|
+
- [pickers] Fix date and time merging to retain milliseconds (#14173) @LukasTy
|
|
47
|
+
|
|
48
|
+
#### `@mui/x-date-pickers-pro@7.13.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
49
|
+
|
|
50
|
+
Same changes as in `@mui/x-date-pickers@7.13.0`.
|
|
51
|
+
|
|
52
|
+
### Charts
|
|
53
|
+
|
|
54
|
+
#### `@mui/x-charts@7.13.0`
|
|
55
|
+
|
|
56
|
+
- [charts] Add `baseline` property to the `LineChart` `series` (#14153) @JCQuintas
|
|
57
|
+
- [charts] Fix issue where tooltip would disappear on mouse click (#14187) @alexfauquette
|
|
58
|
+
- [charts] Rename `CartesianContextProvider` to `CartesianProvider` (#14102) @JCQuintas
|
|
59
|
+
- [charts] Support axis with the same value for all data points (#14191) @alexfauquette
|
|
60
|
+
|
|
61
|
+
#### `@mui/x-date-charts-pro@7.0.0-alpha.1` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
62
|
+
|
|
63
|
+
Same changes as in `@mui/x-charts@7.13.0`.
|
|
64
|
+
|
|
65
|
+
### Tree View
|
|
66
|
+
|
|
67
|
+
#### `@mui/x-tree-view@7.13.0`
|
|
68
|
+
|
|
69
|
+
- [TreeView] Add label editing feature (#13388) @noraleonte
|
|
70
|
+
- [TreeView] Fix the parameters passed for the `canMoveItemToNewPosition` prop (#14176) @flaviendelangle
|
|
71
|
+
|
|
72
|
+
### Docs
|
|
73
|
+
|
|
74
|
+
- [docs] Extract dataset in the Line chart docs (#14034) @alexfauquette
|
|
75
|
+
- [docs] Remove redundant encoding in the mock data source server (#14185) @MBilalShafi
|
|
76
|
+
- [docs] Use Netflix financial results to document bar charts (#13991) @alexfauquette
|
|
77
|
+
- [docs] Remove relience of abbreviations (#14226) @oliviertassinari
|
|
78
|
+
|
|
79
|
+
### Core
|
|
80
|
+
|
|
81
|
+
- [core] Bump monorepo (#14141) @Janpot
|
|
82
|
+
- [core] Fix ESLint issue (#14207) @LukasTy
|
|
83
|
+
- [core] Fix Netlify build cache issue (#14182) @cherniavskii
|
|
84
|
+
- [code-infra] Refactor Netlify `cache-docs` plugin setup (#14105) @LukasTy
|
|
85
|
+
- [internals] Move utils needed for tree view virtualization to shared package (#14202) @flaviendelangle
|
|
86
|
+
|
|
87
|
+
## 7.12.1
|
|
88
|
+
|
|
89
|
+
_Aug 8, 2024_
|
|
90
|
+
|
|
91
|
+
We'd like to offer a big thanks to the 9 contributors who made this release possible. Here are some highlights โจ:
|
|
92
|
+
|
|
93
|
+
- ๐จ Charts get a new component to display color mapping in the legend
|
|
94
|
+
- ๐ The `@mui/x-charts-pro` is released in alpha version ๐งช. This new package introduces two main features:
|
|
95
|
+
- The Heatmap component
|
|
96
|
+
- The zoom interaction on the bar, line, and scatter charts
|
|
97
|
+
- ๐ Improve Dutch (nl-NL) locale on the Date and Time Pickers
|
|
98
|
+
- ๐ Bugfixes
|
|
99
|
+
|
|
100
|
+
<!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
|
|
101
|
+
|
|
102
|
+
### Data Grid
|
|
103
|
+
|
|
104
|
+
#### `@mui/x-data-grid@7.12.1`
|
|
105
|
+
|
|
106
|
+
- [DataGrid] Fix `checkboxSelectionVisibleOnly` behavior with server-side pagination (#14083) @MBilalShafi
|
|
107
|
+
- [DataGrid] Fix `columnHeadersContainerRef` being `undefined` before mount (#14051) @samwato
|
|
108
|
+
- [DataGrid] Support Yarn PnP (#14126) @cherniavskii
|
|
109
|
+
|
|
110
|
+
#### `@mui/x-data-grid-pro@7.12.1` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
111
|
+
|
|
112
|
+
Same changes as in `@mui/x-data-grid@7.12.1`.
|
|
113
|
+
|
|
114
|
+
#### `@mui/x-data-grid-premium@7.12.1` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
115
|
+
|
|
116
|
+
Same changes as in `@mui/x-data-grid-pro@7.12.1`.
|
|
117
|
+
|
|
118
|
+
### Date and Time Pickers
|
|
119
|
+
|
|
120
|
+
#### `@mui/x-date-pickers@7.12.1`
|
|
121
|
+
|
|
122
|
+
- [l10n] Improve Dutch (nlNL) locale (pickers) (#14036) @Robin1896
|
|
123
|
+
|
|
124
|
+
#### `@mui/x-date-pickers-pro@7.12.1` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
125
|
+
|
|
126
|
+
Same changes as in `@mui/x-date-pickers@7.12.1`.
|
|
127
|
+
|
|
128
|
+
### Charts
|
|
129
|
+
|
|
130
|
+
#### `@mui/x-charts@7.12.1`
|
|
131
|
+
|
|
132
|
+
- [charts] Fix charts vendor publish config (#14073) @JCQuintas
|
|
133
|
+
- [charts] Move `plugins` to `PluginProvider` (#14056) @JCQuintas
|
|
134
|
+
|
|
135
|
+
#### `@mui/x-date-charts-pro@7.0.0-alpha.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
136
|
+
|
|
137
|
+
Same changes as in `@mui/x-charts@7.12.1`, plus:
|
|
138
|
+
|
|
139
|
+
- [charts-pro] Release the pro package in alpha (#13859) @alexfauquette
|
|
140
|
+
|
|
141
|
+
### Tree View
|
|
142
|
+
|
|
143
|
+
#### `@mui/x-tree-view@7.12.1`
|
|
144
|
+
|
|
145
|
+
### Docs
|
|
146
|
+
|
|
147
|
+
- [docs] Add a warning to promote the usage of `updateRows` (#14027) @MBilalShafi
|
|
148
|
+
- [docs] Disable ad in `Rich Tree View-Ordering` page (#14123) @oliviertassinari
|
|
149
|
+
- [docs] Redesign Date and Time Pickers overview page (#13241) @noraleonte
|
|
150
|
+
|
|
151
|
+
- [CHANGELOG] Polish details @oliviertassinari
|
|
152
|
+
- [code-infra] Use concurrency 1 in CircleCI (#14110) @JCQuintas
|
|
153
|
+
- [infra] Re-added the removal of `Latest Version` section (#14132) @michelengelen
|
|
154
|
+
|
|
155
|
+
## 7.12.0
|
|
156
|
+
|
|
157
|
+
_Aug 1, 2024_
|
|
158
|
+
|
|
159
|
+
### ๐ต Our commercial offering is evolving
|
|
160
|
+
|
|
161
|
+
The [Pro plan](https://mui.com/x/introduction/licensing/#pro-plan) is receiving two new packages:
|
|
162
|
+
|
|
163
|
+
- `@mui/x-tree-view-pro` (available today!)
|
|
164
|
+
- `@mui/x-charts-pro` (available in the coming weeks)
|
|
165
|
+
|
|
166
|
+
As always, every feature released as part of the MIT plan will remain free and MIT licensed forever.
|
|
167
|
+
|
|
168
|
+
This expansion of the Pro plan comes with some adjustments to our pricing strategy. Learn more about those in the [Upcoming changes to MUI X pricing in 2024](https://mui.com/blog/mui-x-sep-2024-price-update/) blog post.
|
|
169
|
+
|
|
170
|
+
### Highlights
|
|
171
|
+
|
|
172
|
+
We'd like to offer a big thanks to the 12 contributors who made this release possible. Here are some highlights โจ:
|
|
173
|
+
|
|
174
|
+
- ๐ Introduce [item reordering using drag and drop](https://mui.com/x/react-tree-view/rich-tree-view/ordering/) on the `RichTreeViewPro` component
|
|
175
|
+
|
|
176
|
+
<img width="287" src="https://github.com/user-attachments/assets/78bd83c5-7ce4-4ed7-acf9-be70b2dbce54" alt="Item reordering using drag and drop" />
|
|
177
|
+
|
|
178
|
+
- ๐ฆ Support CommonJS bundle out of the box on `@mui/x-charts` by adding vendored D3 dependencies.
|
|
179
|
+
|
|
180
|
+
- This modifies how the package imports D3.js. It will impact you if you use `d3` packages installed by `@mui/x-charts` and don't have them in your `package.json`. You shouldn't be affected otherwise.
|
|
181
|
+
- For more context, the initial issue is caused by D3 only exporting ESM.
|
|
182
|
+
|
|
183
|
+

|
|
184
|
+
|
|
185
|
+
- The solution up until now was to export charts with only ESM. But some frameworks are confused by this configuration.
|
|
186
|
+
|
|
187
|
+

|
|
188
|
+
|
|
189
|
+
- So in order to fix this, we are providing a CJS version of D3.
|
|
190
|
+
|
|
191
|
+

|
|
192
|
+
|
|
193
|
+
- ๐ Improve Turkish (tr-TR) locale on the Data Grid
|
|
194
|
+
- ๐ Improve Finnish (fi-FI) locale on the Date and Time Pickers
|
|
195
|
+
- ๐ Bugfixes
|
|
196
|
+
- ๐ Documentation improvements
|
|
197
|
+
|
|
198
|
+
<!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
|
|
199
|
+
|
|
200
|
+
### Data Grid
|
|
201
|
+
|
|
202
|
+
#### `@mui/x-data-grid@7.12.0`
|
|
203
|
+
|
|
204
|
+
- [DataGrid] Fix crash when updating columns immediately after scrolling (#13781) @cherniavskii
|
|
205
|
+
- [DataGrid] Fix `role=presentation` a11y issue (#13891) @romgrk
|
|
206
|
+
- [DataGrid] Fix top corner pixels & outline radius (#13943) @romgrk
|
|
207
|
+
- [DataGrid] Refactor: remove useless copy (#14039) @romgrk
|
|
208
|
+
- [l10n] Improve Turkish (tr-TR) locale (#13996) @bagcivan
|
|
209
|
+
|
|
210
|
+
#### `@mui/x-data-grid-pro@7.12.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
211
|
+
|
|
212
|
+
Same changes as in `@mui/x-data-grid@7.12.0`.
|
|
213
|
+
|
|
214
|
+
#### `@mui/x-data-grid-premium@7.12.0` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
215
|
+
|
|
216
|
+
Same changes as in `@mui/x-data-grid-pro@7.12.0`.
|
|
217
|
+
|
|
218
|
+
### Date and Time Pickers
|
|
219
|
+
|
|
220
|
+
#### `@mui/x-date-pickers@7.12.0`
|
|
221
|
+
|
|
222
|
+
- [l10n] Improve Finnish (fi-FI) locale (#14054) @frozenzia
|
|
223
|
+
|
|
224
|
+
#### `@mui/x-date-pickers-pro@7.12.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
225
|
+
|
|
226
|
+
Same changes as in `@mui/x-date-pickers@7.12.0`.
|
|
227
|
+
|
|
228
|
+
### Charts
|
|
229
|
+
|
|
230
|
+
#### `@mui/x-charts@7.12.0`
|
|
231
|
+
|
|
232
|
+
- [charts] Fix incorrect `axisId` prop being allowed in xAxis/yAxis config. Use `id` instead. (#13986) @JCQuintas
|
|
233
|
+
- [charts] Use vendor to have Common JS bundle working out of the box (#13608) @alexfauquette
|
|
234
|
+
- [charts] Divide the `SeriesProvider` to use in filtering (#14026) @JCQuintas
|
|
235
|
+
|
|
236
|
+
### Tree View
|
|
237
|
+
|
|
238
|
+
#### `@mui/x-tree-view@7.12.0`
|
|
239
|
+
|
|
240
|
+
- [TreeView] Add new prop `onItemClick` on the Tree View components (#14018) @flaviendelangle
|
|
241
|
+
- [TreeView] Add new utility function `isEventTargetInDescendants` (#13982) @flaviendelangle
|
|
242
|
+
- [TreeView] Support item reordering using drag and drop (#12213) @flaviendelangle
|
|
243
|
+
|
|
244
|
+
### Docs
|
|
245
|
+
|
|
246
|
+
- [docs] Add Pickers `minDate` and `maxDate` `default` description (#14024) @LukasTy
|
|
247
|
+
- [docs] Fix 404 (#13989) @alexfauquette
|
|
248
|
+
- [docs] Fix Vale errors (#14025) @oliviertassinari
|
|
249
|
+
- [docs] Update on `renderCell` & autogenerated rows (#13879) @romgrk
|
|
250
|
+
|
|
251
|
+
### Core
|
|
252
|
+
|
|
253
|
+
- [core] Fix event naming convention @oliviertassinari
|
|
254
|
+
- [core] Replace @mui/base with @mui/utils + @mui/material (#13823) @mnajdova
|
|
255
|
+
- [core] Test `charts` performance with codspeed (#13952) @JCQuintas
|
|
256
|
+
- [infra] Consolidate issue cleanup and support labeling action (#14031) @michelengelen
|
|
257
|
+
- [infra] Revert `vale` action `paths` filtering (#14038) @LukasTy
|
|
258
|
+
- [test] Fix adapters code coverage (#13969) @alexfauquette
|
|
259
|
+
- [test] Fix mocha config to run charts tests (#14041) @alexfauquette
|
|
260
|
+
|
|
6
261
|
## 7.11.1
|
|
7
262
|
|
|
8
263
|
_Jul 25, 2024_
|
|
@@ -143,8 +398,8 @@ Same changes as in `@mui/x-date-pickers@7.11.0`, plus:
|
|
|
143
398
|
- [charts] Defaultize axis on top level `useChartContainerProps` (#13817) @JCQuintas
|
|
144
399
|
- [charts] Fix charts not passing `className` to root element (#13647) @JCQuintas
|
|
145
400
|
- [charts] Generate API documentation for pro components (#13822) @alexfauquette
|
|
146
|
-
- [charts] Improve zoomed highlight
|
|
147
|
-
- [charts] Allow zoom on Y axis and add zoom options to configure zooming
|
|
401
|
+
- [charts] Improve zoomed highlight behavior (unreleased) (#13868) @JCQuintas
|
|
402
|
+
- [charts] Allow zoom on Y axis and add zoom options to configure zooming behavior (unreleased) (#13726) @JCQuintas
|
|
148
403
|
- [charts] Disable animations while zooming (unreleased) (#13807) @JCQuintas
|
|
149
404
|
|
|
150
405
|
### Tree View
|
|
@@ -617,7 +872,7 @@ Same changes as in `@mui/x-date-pickers@7.6.2`.
|
|
|
617
872
|
|
|
618
873
|
#### `@mui/x-charts@7.6.2`
|
|
619
874
|
|
|
620
|
-
- [charts] Add `Initializable` type and
|
|
875
|
+
- [charts] Add `Initializable` type and behavior to allow checking if a complex context has been initialized. (#13365) @JCQuintas
|
|
621
876
|
- [charts] Fix some props not working in `xAxis` and `yAxis` (#13372) @Valyok26
|
|
622
877
|
- [charts] Harmonize charts types (#13366) @alexfauquette
|
|
623
878
|
- [charts] Introduce plugins system (#13367) @alexfauquette
|
|
@@ -625,7 +880,7 @@ Same changes as in `@mui/x-date-pickers@7.6.2`.
|
|
|
625
880
|
|
|
626
881
|
### Docs
|
|
627
882
|
|
|
628
|
-
- [docs] Add badges like in Material
|
|
883
|
+
- [docs] Add badges like in Materialย UI @oliviertassinari
|
|
629
884
|
- [docs] Update twitter.com to x.com @oliviertassinari
|
|
630
885
|
- [docs] Fix the description of `tickInterval` (#13355) @alexfauquette
|
|
631
886
|
- [docs] Adjust the code example for `quickFilterValues` (#12919) @michelengelen
|
package/index.js
CHANGED
package/modern/index.js
CHANGED
package/node/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mui/x-license",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.13.0",
|
|
4
4
|
"description": "MUI X License verification",
|
|
5
5
|
"author": "MUI Team",
|
|
6
6
|
"main": "./node/index.js",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"directory": "packages/x-license"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@babel/runtime": "^7.
|
|
27
|
+
"@babel/runtime": "^7.25.0",
|
|
28
28
|
"@mui/utils": "^5.16.5"
|
|
29
29
|
},
|
|
30
30
|
"peerDependencies": {
|