@mui/x-tree-view 6.0.0-alpha.0 → 6.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 +369 -47
- package/README.md +0 -1
- package/TreeItem/index.d.ts +2 -1
- package/TreeItem/index.js +1 -1
- package/index.js +1 -1
- package/legacy/TreeItem/index.js +1 -1
- package/legacy/index.js +1 -1
- package/legacy/themeAugmentation/index.js +3 -0
- package/modern/TreeItem/index.js +1 -1
- package/modern/index.js +1 -1
- package/modern/themeAugmentation/index.js +3 -0
- package/node/TreeItem/index.js +14 -1
- package/node/index.js +1 -1
- package/node/themeAugmentation/index.js +38 -0
- package/package.json +5 -5
- package/themeAugmentation/components.d.ts +18 -0
- package/themeAugmentation/index.d.ts +3 -0
- package/themeAugmentation/index.js +3 -0
- package/themeAugmentation/overrides.d.ts +15 -0
- package/themeAugmentation/package.json +6 -0
- package/themeAugmentation/props.d.ts +14 -0
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,328 @@
|
|
|
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
|
+
## 6.13.0
|
|
7
|
+
|
|
8
|
+
_Sep 8, 2023_
|
|
9
|
+
|
|
10
|
+
We'd like to offer a big thanks to the 10 contributors who made this release possible. Here are some highlights ✨:
|
|
11
|
+
|
|
12
|
+
- 🎁 Fix `anchorRef` behavior on range pickers (#10077) @LukasTy
|
|
13
|
+
|
|
14
|
+
The range picker popup will now be anchored to the first input element and left aligned like other pickers.
|
|
15
|
+
- 🌍 Improve Slovak (sk-SK) locale on the data grid
|
|
16
|
+
- 🐞 Bugfixes
|
|
17
|
+
- 📚 Documentation improvements
|
|
18
|
+
|
|
19
|
+
### Data Grid
|
|
20
|
+
|
|
21
|
+
#### `@mui/x-data-grid@6.13.0`
|
|
22
|
+
|
|
23
|
+
- [DataGrid] Allow to override the default overlay height in `autoHeight` mode (#10203) @cherniavskii
|
|
24
|
+
- [DataGrid] Allow to override the default row count component in footer (#10063) @hungmanhle
|
|
25
|
+
- [DataGrid] Fix an error when hovering on a row, the background changed to white (#10214) @chucamphong
|
|
26
|
+
- [DataGrid] Fix custom column docs, remove legacy `extendType` (#10175) @oliviertassinari
|
|
27
|
+
- [DataGrid] Make the pinned rows be on top of the no rows overlay (#9986) @DanailH
|
|
28
|
+
- [l10n] Improve Slovak (sk-SK) locale (#10182) @msidlo
|
|
29
|
+
|
|
30
|
+
#### `@mui/x-data-grid-pro@6.13.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
31
|
+
|
|
32
|
+
Same changes as in `@mui/x-data-grid@6.13.0`, plus:
|
|
33
|
+
|
|
34
|
+
- [DataGridPro] Fix column resize with pinned rows (#10229) @cherniavskii
|
|
35
|
+
|
|
36
|
+
#### `@mui/x-data-grid-premium@6.13.0` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
37
|
+
|
|
38
|
+
Same changes as in `@mui/x-data-grid-pro@6.13.0`, plus:
|
|
39
|
+
|
|
40
|
+
- [DataGridPremium] Fix aggregated column resizing (#10079) @cherniavskii
|
|
41
|
+
|
|
42
|
+
### Date Pickers
|
|
43
|
+
|
|
44
|
+
#### `@mui/x-date-pickers@6.13.0`
|
|
45
|
+
|
|
46
|
+
- [pickers] Respect the adapter locale in `AdapterMoment.getWeekdays` (#10221) @flaviendelangle
|
|
47
|
+
|
|
48
|
+
#### `@mui/x-date-pickers-pro@6.13.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
49
|
+
|
|
50
|
+
Same changes as in `@mui/x-date-pickers@6.13.0`, plus:
|
|
51
|
+
|
|
52
|
+
- [DateRangePicker] Fix `anchorRef` behavior (#10077) @LukasTy
|
|
53
|
+
|
|
54
|
+
### Charts / `@mui/x-charts@6.0.0-alpha.10`
|
|
55
|
+
|
|
56
|
+
- [charts] Remove require condition from package.json exports (#10272) @Janpot
|
|
57
|
+
|
|
58
|
+
### Tree View / `@mui/x-tree-view@6.0.0-alpha.2`
|
|
59
|
+
|
|
60
|
+
- [TreeView] Add missing export (#10245) @flaviendelangle
|
|
61
|
+
|
|
62
|
+
### Docs
|
|
63
|
+
|
|
64
|
+
- [docs] Add a `Getting Started` page for the Tree View (#10218) @flaviendelangle
|
|
65
|
+
- [docs] Add pickers `Custom opening button` page (#10200) @flaviendelangle
|
|
66
|
+
- [docs] Add pie chart demo with a center label (#10220) @giladappsforce
|
|
67
|
+
- [docs] Do not document ignored components (#10258) @flaviendelangle
|
|
68
|
+
- [docs] Fix charts demo using too deep import (#10263) @LukasTy
|
|
69
|
+
- [docs] Fix `e.g.` typo @oliviertassinari
|
|
70
|
+
- [docs] Fix npm package indentation @oliviertassinari
|
|
71
|
+
- [docs] Fix typo in tree view docs @oliviertassinari
|
|
72
|
+
- [docs] Improve the week picker example (#8257) @flaviendelangle
|
|
73
|
+
- [docs] Include code links in the data grid demo (#10219) @cherniavskii
|
|
74
|
+
- [docs] Polish page for SEO (#10216) @oliviertassinari
|
|
75
|
+
- [docs] Use `Base UI` `Portal` for the quick filter recipe (#10188) @DanailH
|
|
76
|
+
|
|
77
|
+
### Core
|
|
78
|
+
|
|
79
|
+
- [core] Finish migration to GA4 @oliviertassinari
|
|
80
|
+
- [core] Fix yarn docs:create-playground script @oliviertassinari
|
|
81
|
+
- [core] Move @mui/base from peer dependency to dependency (#10215) @oliviertassinari
|
|
82
|
+
- [core] Prevent `e.g.` typo (#10193) @oliviertassinari
|
|
83
|
+
- [core] Remove unused `babel-plugin-tester` package (#10243) @LukasTy
|
|
84
|
+
|
|
85
|
+
## 6.12.1
|
|
86
|
+
|
|
87
|
+
_Aug 31, 2023_
|
|
88
|
+
|
|
89
|
+
We'd like to offer a big thanks to the 7 contributors who made this release possible. Here are some highlights ✨:
|
|
90
|
+
|
|
91
|
+
- 🏎️ Perf improvement for line charts
|
|
92
|
+
- 🎁 Add `referenceDate` prop on pickers (#9991) @flaviendelangle
|
|
93
|
+
Find out more about this feature in the [documentation section](https://mui.com/x/react-date-pickers/base-concepts/#reference-date-when-no-value-is-defined).
|
|
94
|
+
- 🐞 Bugfixes
|
|
95
|
+
- 📚 Documentation improvements
|
|
96
|
+
|
|
97
|
+
### Data Grid
|
|
98
|
+
|
|
99
|
+
#### `@mui/x-data-grid@6.12.1`
|
|
100
|
+
|
|
101
|
+
- [DataGrid] Add a recipe showing how to render components outside of the grid (#10121) @DanailH
|
|
102
|
+
- [DataGrid] Fix `valueFormatter` being persisted on column type change (#10041) @cherniavskii
|
|
103
|
+
- [DataGrid] Fix error when keyboard navigating an empty grid (#10081) @romgrk
|
|
104
|
+
- [DataGrid] Replace timeout with `useTimeout` (#10179) @romgrk
|
|
105
|
+
|
|
106
|
+
#### `@mui/x-data-grid-pro@6.12.1` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
107
|
+
|
|
108
|
+
Same changes as in `@mui/x-data-grid@6.12.1`.
|
|
109
|
+
|
|
110
|
+
#### `@mui/x-data-grid-premium@6.12.1` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
111
|
+
|
|
112
|
+
Same changes as in `@mui/x-data-grid-pro@6.12.1`.
|
|
113
|
+
|
|
114
|
+
### Date Pickers
|
|
115
|
+
|
|
116
|
+
#### `@mui/x-date-pickers@6.12.1`
|
|
117
|
+
|
|
118
|
+
- [pickers] Add `referenceDate` on picker components (and `DateRangeCalendar`) (#9991) @flaviendelangle
|
|
119
|
+
|
|
120
|
+
#### `@mui/x-date-pickers-pro@6.12.1` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
121
|
+
|
|
122
|
+
Same changes as in `@mui/x-date-pickers@6.12.1`.
|
|
123
|
+
|
|
124
|
+
### Charts / `@mui/x-charts@6.0.0-alpha.9`
|
|
125
|
+
|
|
126
|
+
- [charts] Move the line item highligh into a dedicated component (#10117) @alexfauquette
|
|
127
|
+
|
|
128
|
+
### Docs
|
|
129
|
+
|
|
130
|
+
- [docs] Add `DemoContainer` and `DemoItem` JSDoc (#10186) @LukasTy
|
|
131
|
+
- [docs] Add link to `custom layout` page (#10184) @LukasTy
|
|
132
|
+
- [docs] Add tree view nav item (#10181) @LukasTy
|
|
133
|
+
- [docs] Fix wrong chart tooltip reference (#10169) @oliviertassinari
|
|
134
|
+
- [docs] Improve chart SEO (#10170) @oliviertassinari
|
|
135
|
+
- [docs] Precise expired license key condition (#10165) @oliviertassinari
|
|
136
|
+
- [docs] Reorganize the page menu (#10139) @alexfauquette
|
|
137
|
+
|
|
138
|
+
### Core
|
|
139
|
+
|
|
140
|
+
- [core] Update babel configs (#9713) @romgrk
|
|
141
|
+
- [test] Disable false positive e2e test on webkit (#10187) @LukasTy
|
|
142
|
+
|
|
143
|
+
## 6.12.0
|
|
144
|
+
|
|
145
|
+
_Aug 25, 2023_
|
|
146
|
+
|
|
147
|
+
We'd like to offer a big thanks to the 10 contributors who made this release possible. Here are some highlights ✨:
|
|
148
|
+
|
|
149
|
+
- 📊 Support horizontal bar chart
|
|
150
|
+
- 💫 Improved animations on Android devices
|
|
151
|
+
- 🌍 Improve Ukrainian (uk-UA) locale on the data grid
|
|
152
|
+
- 🐞 Bugfixes
|
|
153
|
+
- 📚 Documentation improvements
|
|
154
|
+
|
|
155
|
+
### Data Grid
|
|
156
|
+
|
|
157
|
+
#### `@mui/x-data-grid@6.12.0`
|
|
158
|
+
|
|
159
|
+
- [DataGrid] Allow print export for more than 100 rows (#10045) @MBilalShafi
|
|
160
|
+
- [l10n] Improve Ukrainian (uk-UA) locale (#10076) @mkundos
|
|
161
|
+
|
|
162
|
+
#### `@mui/x-data-grid-pro@6.12.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
163
|
+
|
|
164
|
+
Same changes as in `@mui/x-data-grid@6.12.0`.
|
|
165
|
+
|
|
166
|
+
#### `@mui/x-data-grid-premium@6.12.0` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
167
|
+
|
|
168
|
+
Same changes as in `@mui/x-data-grid-pro@6.12.0`.
|
|
169
|
+
|
|
170
|
+
### Date Pickers
|
|
171
|
+
|
|
172
|
+
#### `@mui/x-date-pickers@6.12.0`
|
|
173
|
+
|
|
174
|
+
- [fields] Do not clamp day of month (#9973) @flaviendelangle
|
|
175
|
+
- [pickers] Fix `ownerState` on `desktopPaper` slot props (#10103) @LukasTy
|
|
176
|
+
- [pickers] Fix to `transform-origin` when popper opens to `top` (#10069) @LukasTy
|
|
177
|
+
- [pickers] Fix `YearCalendar` scrolling (#10135) @LukasTy
|
|
178
|
+
- [pickers] Improve the typing of the adapter `dateWithTimezone` method (#10029) @flaviendelangle
|
|
179
|
+
- [pickers] Make `openPickerButton` toggle picker (#10109) @noraleonte
|
|
180
|
+
- [pickers] Update `reduceAnimations` default rule (#9864) @LukasTy
|
|
181
|
+
|
|
182
|
+
#### `@mui/x-date-pickers-pro@6.12.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
183
|
+
|
|
184
|
+
Same changes as in `@mui/x-date-pickers@6.12.0`.
|
|
185
|
+
|
|
186
|
+
### Charts / `@mui/x-charts@6.0.0-alpha.8`
|
|
187
|
+
|
|
188
|
+
- [charts] Fix import issue (#10111) @alexfauquette
|
|
189
|
+
- [charts] Fix `slotProps` propagation (#10105) @alexfauquette
|
|
190
|
+
- [charts] Support horizontal bar chart (#9992) @alexfauquette
|
|
191
|
+
|
|
192
|
+
### Docs
|
|
193
|
+
|
|
194
|
+
- [docs] Address charts docs feedback (#10119) @alexfauquette
|
|
195
|
+
- [docs] Capitalization convention pickers @oliviertassinari
|
|
196
|
+
- [docs] Fix a11y issue on plan links (#10026) @oliviertassinari
|
|
197
|
+
- [docs] Fix some charts horizontal overflow on mobile devices (#10082) @cupok
|
|
198
|
+
- [docs] Fix typo in quick filter @oliviertassinari
|
|
199
|
+
- [docs] Fix typo in the timezone page (#10073) @flaviendelangle
|
|
200
|
+
|
|
201
|
+
### Core
|
|
202
|
+
|
|
203
|
+
- [core] Bump monorepo (#10129) @LukasTy
|
|
204
|
+
- [core] Document a bit `useLazyRef` @oliviertassinari
|
|
205
|
+
- [core] Enable strict type checking options in the top-level tsconfig (#9925) @cherniavskii
|
|
206
|
+
- [core] Increase global e2e timeout (#10134) @LukasTy
|
|
207
|
+
- [core] Remove outdated link (#10125) @oliviertassinari
|
|
208
|
+
- [core] Update `no-response` workflow (#10102) @DanailH
|
|
209
|
+
|
|
210
|
+
## 6.11.2
|
|
211
|
+
|
|
212
|
+
_Aug 17, 2023_
|
|
213
|
+
|
|
214
|
+
We'd like to offer a big thanks to the 8 contributors who made this release possible. Here are some highlights ✨:
|
|
215
|
+
|
|
216
|
+
- 🏎️ Lower the filtering delay in the grid
|
|
217
|
+
- 🌍 Improve Spanish (es-ES) locale on the data grid
|
|
218
|
+
- 🐞 Bugfixes
|
|
219
|
+
- 📚 Documentation improvements
|
|
220
|
+
|
|
221
|
+
### Data Grid
|
|
222
|
+
|
|
223
|
+
#### `@mui/x-data-grid@6.11.2`
|
|
224
|
+
|
|
225
|
+
- [DataGrid] Fix `eval` blocked by CSP (#9863) @romgrk
|
|
226
|
+
- [DataGrid] Fix row id bug (#10051) @romgrk
|
|
227
|
+
- [DataGrid] Honor `disableExport` flag in Print Export (#10044) @MBilalShafi
|
|
228
|
+
- [DataGrid] Lower filter debounce delay (#9712) @romgrk
|
|
229
|
+
- [DataGrid] Unhide potential ref binding issue (#9965) @oliviertassinari
|
|
230
|
+
- [l10n] Improve Chinese (zh-CN) and Chinese(traditional) (zh-TW) locales (#9999) @MyNameIsTakenOMG
|
|
231
|
+
- [l10n] Improve Spanish (es-ES) locale (#10037) @Macampu420
|
|
232
|
+
|
|
233
|
+
#### `@mui/x-data-grid-pro@6.11.2` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
234
|
+
|
|
235
|
+
Same changes as in `@mui/x-data-grid@6.11.2`.
|
|
236
|
+
|
|
237
|
+
#### `@mui/x-data-grid-premium@6.11.2` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
238
|
+
|
|
239
|
+
Same changes as in `@mui/x-data-grid-pro@6.11.2`.
|
|
240
|
+
|
|
241
|
+
### Date Pickers
|
|
242
|
+
|
|
243
|
+
#### `@mui/x-date-pickers@6.11.2`
|
|
244
|
+
|
|
245
|
+
- [pickers] Fix month switcher RTL (#10003) @alexfauquette
|
|
246
|
+
- [pickers] Follow-up on using device motion reduction preference (#9858) @LukasTy
|
|
247
|
+
- [pickers] Pass the shortcut information in the `onChange` context (#9985) @flaviendelangle
|
|
248
|
+
- [pickers] Replace `Grid` toolbar component with a styled `div` (#10052) @LukasTy
|
|
249
|
+
|
|
250
|
+
#### `@mui/x-date-pickers-pro@6.11.2` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
251
|
+
|
|
252
|
+
Same changes as in `@mui/x-date-pickers@6.11.2`.
|
|
253
|
+
|
|
254
|
+
### Docs
|
|
255
|
+
|
|
256
|
+
- [docs] Add migration guide for the Tree View (#9987) @flaviendelangle
|
|
257
|
+
- [docs] Fix en-US changelog @oliviertassinari
|
|
258
|
+
- [docs] Update column types (#10040) @romgrk
|
|
259
|
+
|
|
260
|
+
### Core
|
|
261
|
+
|
|
262
|
+
- [core] Remove unnecessary Box (#9831) @oliviertassinari
|
|
263
|
+
- [core] Set GitHub Action top level permission @oliviertassinari
|
|
264
|
+
- [core] Split the pickers test utils (#9976) @flaviendelangle
|
|
265
|
+
|
|
266
|
+
## 6.11.1
|
|
267
|
+
|
|
268
|
+
_Aug 11, 2023_
|
|
269
|
+
|
|
270
|
+
We'd like to offer a big thanks to the 8 contributors who made this release possible. Here are some highlights ✨:
|
|
271
|
+
|
|
272
|
+
- 💫 Add theme augmentation to `@mui/x-tree-view`
|
|
273
|
+
- 📈 Enable charts customization using `slot` and `slotProps` props
|
|
274
|
+
- 🌍 Improve Finnish (fi-FI) and Icelandic (is-IS) locales on the pickers
|
|
275
|
+
- 🐞 Bugfixes
|
|
276
|
+
- 📚 Documentation improvements
|
|
277
|
+
|
|
278
|
+
### Data Grid
|
|
279
|
+
|
|
280
|
+
#### `@mui/x-data-grid@6.11.1`
|
|
281
|
+
|
|
282
|
+
- [DataGrid] `getCellAggregationResult`: Handle `null` `rowNode` case (#9915) @romgrk
|
|
283
|
+
|
|
284
|
+
#### `@mui/x-data-grid-pro@6.11.1` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
285
|
+
|
|
286
|
+
Same changes as in `@mui/x-data-grid@6.11.1`.
|
|
287
|
+
|
|
288
|
+
#### `@mui/x-data-grid-premium@6.11.1` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
289
|
+
|
|
290
|
+
Same changes as in `@mui/x-data-grid-pro@6.11.1`.
|
|
291
|
+
|
|
292
|
+
### Date Pickers
|
|
293
|
+
|
|
294
|
+
#### `@mui/x-date-pickers@6.11.1`
|
|
295
|
+
|
|
296
|
+
- [fields] Use `numeric` `inputmode` instead of `tel` (#9918) @LukasTy
|
|
297
|
+
- [pickers] Always respect locale when formatting meridiem (#9979) @flaviendelangle
|
|
298
|
+
- [pickers] Call `onChange` when selecting a shortcut with `changeImportance="set"` (#9974) @flaviendelangle
|
|
299
|
+
- [pickers] Refactor `themeAugmentation` `styleOverrides` (#9978) @LukasTy
|
|
300
|
+
- [l10n] Improve Finnish (fi-FI) locale (#9795) @kurkle
|
|
301
|
+
- [l10n] Improve Icelandic (is-IS) locale (#9639) @magnimarels
|
|
302
|
+
|
|
303
|
+
#### `@mui/x-date-pickers-pro@6.11.1` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
304
|
+
|
|
305
|
+
Same changes as in `@mui/x-date-pickers@6.11.1`.
|
|
306
|
+
|
|
307
|
+
### Charts / `@mui/x-charts@6.0.0-alpha.7`
|
|
308
|
+
|
|
309
|
+
- [charts] Fix label and tick alignment (#9952) @LukasTy
|
|
310
|
+
- [charts] Remove not functional component `styleOverrides` (#9996) @LukasTy
|
|
311
|
+
- [charts] Set custom ticks number (#9922) @alexfauquette
|
|
312
|
+
- [charts] Use `slot`/`slotProps` for customization (#9744) @alexfauquette
|
|
313
|
+
- [charts] Extend cheerful fiesta palette (#9980) @noraleonte
|
|
314
|
+
|
|
315
|
+
### Tree View / `@mui/x-tree-view@6.0.0-alpha.1`
|
|
316
|
+
|
|
317
|
+
- [TreeView] Add theme augmentation (#9967) @flaviendelangle
|
|
318
|
+
|
|
319
|
+
### Docs
|
|
320
|
+
|
|
321
|
+
- [docs] Clarify the `shouldDisableClock` migration code options (#9920) @LukasTy
|
|
322
|
+
|
|
323
|
+
### Core
|
|
324
|
+
|
|
325
|
+
- [core] Port GitHub workflow for ensuring triage label is present (#9924) @DanailH
|
|
326
|
+
- [docs-infra] Fix the import samples in Api pages (#9898) @alexfauquette
|
|
327
|
+
|
|
6
328
|
## 6.11.0
|
|
7
329
|
|
|
8
330
|
_Aug 4, 2023_
|
|
@@ -20,7 +342,7 @@ We'd like to offer a big thanks to the 12 contributors who made this release pos
|
|
|
20
342
|
|
|
21
343
|
### Data Grid
|
|
22
344
|
|
|
23
|
-
#### `@mui/x-data-grid@
|
|
345
|
+
#### `@mui/x-data-grid@6.11.0`
|
|
24
346
|
|
|
25
347
|
- [DataGrid] Add `ariaV7` experimental flag (#9496) @cherniavskii
|
|
26
348
|
- [DataGrid] Fix cell size when column width is set to `undefined` (#9871) @gitstart
|
|
@@ -28,17 +350,17 @@ We'd like to offer a big thanks to the 12 contributors who made this release pos
|
|
|
28
350
|
- [l10n] Improve Finnish (fi-FI) locale (#9848) @sambbaahh
|
|
29
351
|
- [l10n] Improve Italian (it-IT) locale (#9627) @fabio-rizzello-omnia
|
|
30
352
|
|
|
31
|
-
#### `@mui/x-data-grid-pro@
|
|
353
|
+
#### `@mui/x-data-grid-pro@6.11.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
32
354
|
|
|
33
|
-
Same changes as in `@mui/x-data-grid@
|
|
355
|
+
Same changes as in `@mui/x-data-grid@6.11.0`.
|
|
34
356
|
|
|
35
|
-
#### `@mui/x-data-grid-premium@
|
|
357
|
+
#### `@mui/x-data-grid-premium@6.11.0` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
36
358
|
|
|
37
|
-
Same changes as in `@mui/x-data-grid-pro@
|
|
359
|
+
Same changes as in `@mui/x-data-grid-pro@6.11.0`.
|
|
38
360
|
|
|
39
361
|
### Date Pickers
|
|
40
362
|
|
|
41
|
-
#### `@mui/x-date-pickers@
|
|
363
|
+
#### `@mui/x-date-pickers@6.11.0`
|
|
42
364
|
|
|
43
365
|
- [fields] Correctly handle events with a complete value insertion (#9896) @LukasTy
|
|
44
366
|
- [fields] Fix hours editing on dayjs with timezone and DST (#9901) @flaviendelangle
|
|
@@ -51,18 +373,18 @@ Same changes as in `@mui/x-data-grid-pro@v6.11.0`.
|
|
|
51
373
|
- [pickers] Fix offset management on dayjs adapter (#9884) @flaviendelangle
|
|
52
374
|
- [pickers] Use device motion reduction preference (#9823) @LukasTy
|
|
53
375
|
|
|
54
|
-
#### `@mui/x-date-pickers-pro@
|
|
376
|
+
#### `@mui/x-date-pickers-pro@6.11.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
55
377
|
|
|
56
|
-
Same changes as in `@mui/x-date-pickers@
|
|
378
|
+
Same changes as in `@mui/x-date-pickers@6.11.0`.
|
|
57
379
|
|
|
58
|
-
### Charts / `@mui/x-charts@
|
|
380
|
+
### Charts / `@mui/x-charts@6.0.0-alpha.6`
|
|
59
381
|
|
|
60
382
|
- [charts] Add TS definition to the exported elements (#9885) @alexfauquette
|
|
61
383
|
- [charts] Add sparkline (#9662) @alexfauquette
|
|
62
384
|
- [charts] Fix missing configuration types (#9886) @alexfauquette
|
|
63
385
|
- [charts] Introduce dataset to simplify plot of data from API (#9774) @alexfauquette
|
|
64
386
|
|
|
65
|
-
### Tree View / `@mui/x-tree-view@
|
|
387
|
+
### Tree View / `@mui/x-tree-view@6.0.0-alpha.0`
|
|
66
388
|
|
|
67
389
|
- [TreeView] Add missing exported types (#9862) @flaviendelangle
|
|
68
390
|
- [TreeView] Add tree view to changelog generator script (#9903) @MBilalShafi
|
|
@@ -107,34 +429,34 @@ We'd like to offer a big thanks to the 13 contributors who made this release pos
|
|
|
107
429
|
|
|
108
430
|
### Data Grid
|
|
109
431
|
|
|
110
|
-
#### `@mui/x-data-grid@
|
|
432
|
+
#### `@mui/x-data-grid@6.10.2`
|
|
111
433
|
|
|
112
434
|
- [DataGrid] Fix quick filter & aggregation error (#9729) @romgrk
|
|
113
435
|
- [DataGrid] Fix row click propagation causing error in nested grid (#9741) @cherniavskii
|
|
114
436
|
- [DataGrid] Keep focused cell in the DOM (#7357) @yaredtsy
|
|
115
437
|
- [l10n] Improve Finnish (fi-FI) locale (#9746) @sambbaahh
|
|
116
438
|
|
|
117
|
-
#### `@mui/x-data-grid-pro@
|
|
439
|
+
#### `@mui/x-data-grid-pro@6.10.2` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
118
440
|
|
|
119
|
-
Same changes as in `@mui/x-data-grid@
|
|
441
|
+
Same changes as in `@mui/x-data-grid@6.10.2`.
|
|
120
442
|
|
|
121
|
-
#### `@mui/x-data-grid-premium@
|
|
443
|
+
#### `@mui/x-data-grid-premium@6.10.2` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
122
444
|
|
|
123
|
-
Same changes as in `@mui/x-data-grid-pro@
|
|
445
|
+
Same changes as in `@mui/x-data-grid-pro@6.10.2`, plus:
|
|
124
446
|
|
|
125
447
|
- [DataGridPremium] Allow to customize grouping cell offset (#9417) @cherniavskii
|
|
126
448
|
|
|
127
449
|
### Date Pickers
|
|
128
450
|
|
|
129
|
-
#### `@mui/x-date-pickers@
|
|
451
|
+
#### `@mui/x-date-pickers@6.10.2`
|
|
130
452
|
|
|
131
453
|
- [pickers] Remove the `endOfDate` from `DigitalClock` timeOptions (#9800) @noraleonte
|
|
132
454
|
|
|
133
|
-
#### `@mui/x-date-pickers-pro@
|
|
455
|
+
#### `@mui/x-date-pickers-pro@6.10.2` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
134
456
|
|
|
135
|
-
Same changes as in `@mui/x-date-pickers@
|
|
457
|
+
Same changes as in `@mui/x-date-pickers@6.10.2`.
|
|
136
458
|
|
|
137
|
-
### Charts / `@mui/x-charts@
|
|
459
|
+
### Charts / `@mui/x-charts@6.0.0-alpha.5`
|
|
138
460
|
|
|
139
461
|
- [charts] Improve JSDoc for axis-related props (#9779) @flaviendelangle
|
|
140
462
|
- [charts] Improve performances of Scatter component (#9527) @flaviendelangle
|
|
@@ -172,7 +494,7 @@ We'd like to offer a big thanks to the 11 contributors who made this release pos
|
|
|
172
494
|
|
|
173
495
|
### Data Grid
|
|
174
496
|
|
|
175
|
-
#### `@mui/x-data-grid@
|
|
497
|
+
#### `@mui/x-data-grid@6.10.1`
|
|
176
498
|
|
|
177
499
|
- [DataGrid] Filtering performance: compile filter applier with `eval` (#9635) @romgrk
|
|
178
500
|
- [DataGrid] Fix CSV export for values containing double quotes (#9667) @cherniavskii
|
|
@@ -182,29 +504,29 @@ We'd like to offer a big thanks to the 11 contributors who made this release pos
|
|
|
182
504
|
- [DataGrid] Update focused cell on page change via keyboard (#9203) @m4theushw
|
|
183
505
|
- [DataGrid] Wait for remote stylesheets to load before print (#9665) @cherniavskii
|
|
184
506
|
|
|
185
|
-
#### `@mui/x-data-grid-pro@
|
|
507
|
+
#### `@mui/x-data-grid-pro@6.10.1` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
186
508
|
|
|
187
|
-
Same changes as in `@mui/x-data-grid@
|
|
509
|
+
Same changes as in `@mui/x-data-grid@6.10.1`, plus:
|
|
188
510
|
|
|
189
511
|
- [DataGridPro] Improve tree data performance (#9682) @cherniavskii
|
|
190
512
|
- [DataGridPro] Prevent affecting cells from child DataGrid when resizing a column (#9670) @m4theushw
|
|
191
513
|
|
|
192
|
-
#### `@mui/x-data-grid-premium@
|
|
514
|
+
#### `@mui/x-data-grid-premium@6.10.1` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
193
515
|
|
|
194
|
-
Same changes as in `@mui/x-data-grid-pro@
|
|
516
|
+
Same changes as in `@mui/x-data-grid-pro@6.10.1`.
|
|
195
517
|
|
|
196
518
|
### Date Pickers
|
|
197
519
|
|
|
198
|
-
#### `@mui/x-date-pickers@
|
|
520
|
+
#### `@mui/x-date-pickers@6.10.1`
|
|
199
521
|
|
|
200
522
|
- [fields] Fix `format` and `value` update order (#9715) @LukasTy
|
|
201
523
|
- [pickers] Remove `require` usage in comment (#9675) @LukasTy
|
|
202
524
|
|
|
203
|
-
#### `@mui/x-date-pickers-pro@
|
|
525
|
+
#### `@mui/x-date-pickers-pro@6.10.1` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
204
526
|
|
|
205
|
-
Same changes as in `@mui/x-date-pickers@
|
|
527
|
+
Same changes as in `@mui/x-date-pickers@6.10.1`.
|
|
206
528
|
|
|
207
|
-
### Charts / `@mui/x-charts@
|
|
529
|
+
### Charts / `@mui/x-charts@6.0.0-alpha.4`
|
|
208
530
|
|
|
209
531
|
- [charts] Fix blinking in responsive charts and extremums computation for line charts (#9734) @alexfauquette
|
|
210
532
|
- [charts] Use ESM with imports (#9645) @alexfauquette
|
|
@@ -251,11 +573,11 @@ We'd like to offer a big thanks to the 10 contributors who made this release pos
|
|
|
251
573
|
- [DataGrid] Make `rowExpansionChange` event public (#9611) @MBilalShafi
|
|
252
574
|
- [l10n] Improve Polish (pl-PL) locale (#9625) @ch1llysense
|
|
253
575
|
|
|
254
|
-
#### `@mui/x-data-grid-pro@6.10.0` [](https://mui.com/r/x-pro-svg-link)
|
|
576
|
+
#### `@mui/x-data-grid-pro@6.10.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
255
577
|
|
|
256
578
|
Same changes as in `@mui/x-data-grid@6.10.0`.
|
|
257
579
|
|
|
258
|
-
#### `@mui/x-data-grid-premium@6.10.0` [](https://mui.com/r/x-premium-svg-link)
|
|
580
|
+
#### `@mui/x-data-grid-premium@6.10.0` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
259
581
|
|
|
260
582
|
Same changes as in `@mui/x-data-grid-pro@6.10.0`.
|
|
261
583
|
|
|
@@ -266,7 +588,7 @@ Same changes as in `@mui/x-data-grid-pro@6.10.0`.
|
|
|
266
588
|
- [pickers] Fix date calendar issues (#9652) @LukasTy
|
|
267
589
|
- [l10n] Improve Norwegian (nb-NO) locale (#9608) @JosteinBrevik
|
|
268
590
|
|
|
269
|
-
#### `@mui/x-date-pickers-pro@6.10.0` [](https://mui.com/r/x-pro-svg-link)
|
|
591
|
+
#### `@mui/x-date-pickers-pro@6.10.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
270
592
|
|
|
271
593
|
Same changes as in `@mui/x-date-pickers@6.10.0`.
|
|
272
594
|
|
|
@@ -319,11 +641,11 @@ We'd like to offer a big thanks to the 11 contributors who made this release pos
|
|
|
319
641
|
- [DataGrid] Correctly reflect `TablePagination`'s `rowsPerPageOptions` shape to `pageSizeOptions` (#9438) @burakkgunduzz
|
|
320
642
|
- [l10n] Improve Spanish (es-ES) locale (#9500) @fufex
|
|
321
643
|
|
|
322
|
-
#### `@mui/x-data-grid-pro@6.9.2` [](https://mui.com/r/x-pro-svg-link)
|
|
644
|
+
#### `@mui/x-data-grid-pro@6.9.2` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
323
645
|
|
|
324
646
|
Same changes as in `@mui/x-data-grid@6.9.2`.
|
|
325
647
|
|
|
326
|
-
#### `@mui/x-data-grid-premium@6.9.2` [](https://mui.com/r/x-premium-svg-link)
|
|
648
|
+
#### `@mui/x-data-grid-premium@6.9.2` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
327
649
|
|
|
328
650
|
Same changes as in `@mui/x-data-grid-pro@6.9.2`, plus:
|
|
329
651
|
|
|
@@ -336,7 +658,7 @@ Same changes as in `@mui/x-data-grid-pro@6.9.2`, plus:
|
|
|
336
658
|
- [pickers] Forward digital clock classes (#9555) @YoonjiJang
|
|
337
659
|
- [pickers] Rename `internal` folder to `internals` on `@mui/x-date-picker-pro` (#9571) @flaviendelangle
|
|
338
660
|
|
|
339
|
-
#### `@mui/x-date-pickers-pro@6.9.2` [](https://mui.com/r/x-pro-svg-link)
|
|
661
|
+
#### `@mui/x-date-pickers-pro@6.9.2` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
340
662
|
|
|
341
663
|
Same changes as in `@mui/x-date-pickers@6.9.2`.
|
|
342
664
|
|
|
@@ -384,14 +706,14 @@ We'd like to offer a big thanks to the 13 contributors who made this release pos
|
|
|
384
706
|
- [DataGrid] Fix `Maximum call stack size exceeded` error when using fractional width (#9516) @cherniavskii
|
|
385
707
|
- [l10n] Improve Romanian (ro-RO) and Hungarian (hu-HU) translations (#9436) @noraleonte
|
|
386
708
|
|
|
387
|
-
#### `@mui/x-data-grid-pro@6.9.1` [](https://mui.com/r/x-pro-svg-link)
|
|
709
|
+
#### `@mui/x-data-grid-pro@6.9.1` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
388
710
|
|
|
389
711
|
Same changes as in `@mui/x-data-grid@6.9.1`, plus:
|
|
390
712
|
|
|
391
713
|
- [DataGridPro] Don't throw error in column pinning (#9507) @romgrk
|
|
392
714
|
- [DataGridPro] Fix bug with `checkboxSelection` and treeData/grouping (#9418) @romgrk
|
|
393
715
|
|
|
394
|
-
#### `@mui/x-data-grid-premium@6.9.1` [](https://mui.com/r/x-premium-svg-link)
|
|
716
|
+
#### `@mui/x-data-grid-premium@6.9.1` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
395
717
|
|
|
396
718
|
Same changes as in `@mui/x-data-grid-pro@6.9.1`.
|
|
397
719
|
|
|
@@ -405,7 +727,7 @@ Same changes as in `@mui/x-data-grid-pro@6.9.1`.
|
|
|
405
727
|
- [l10n] Add Chinese (Hong Kong) (zh-HK) locale (#9468) @samchiu90
|
|
406
728
|
- [l10n] Improve Romanian (ro-RO) translations (#9436) @noraleonte
|
|
407
729
|
|
|
408
|
-
#### `@mui/x-date-pickers-pro@6.9.1` [](https://mui.com/r/x-pro-svg-link)
|
|
730
|
+
#### `@mui/x-date-pickers-pro@6.9.1` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
409
731
|
|
|
410
732
|
Same changes as in `@mui/x-date-pickers@6.9.1`.
|
|
411
733
|
|
|
@@ -469,11 +791,11 @@ We'd like to offer a big thanks to the 11 contributors who made this release pos
|
|
|
469
791
|
- [DataGrid] Use container dimensions from `getComputedStyle` (#9236) @m4theushw
|
|
470
792
|
- [l10n] Improve Brazilian Portuguese (pt-BR) locale (#9404) @julioAz
|
|
471
793
|
|
|
472
|
-
#### `@mui/x-data-grid-pro@6.9.0` [](https://mui.com/r/x-pro-svg-link)
|
|
794
|
+
#### `@mui/x-data-grid-pro@6.9.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
473
795
|
|
|
474
796
|
Same changes as in `@mui/x-data-grid@6.9.0`.
|
|
475
797
|
|
|
476
|
-
#### `@mui/x-data-grid-premium@6.9.0` [](https://mui.com/r/x-premium-svg-link)
|
|
798
|
+
#### `@mui/x-data-grid-premium@6.9.0` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
477
799
|
|
|
478
800
|
Same changes as in `@mui/x-data-grid-pro@6.9.0`.
|
|
479
801
|
|
|
@@ -489,7 +811,7 @@ Same changes as in `@mui/x-data-grid-pro@6.9.0`.
|
|
|
489
811
|
- [pickers] Reduce date range calendar vertical border width (#9368) @oliviertassinari
|
|
490
812
|
- [pickers] Reset fields internal state when pasting value (#9385) @alexfauquette
|
|
491
813
|
|
|
492
|
-
#### `@mui/x-date-pickers-pro@6.9.0` [](https://mui.com/r/x-pro-svg-link)
|
|
814
|
+
#### `@mui/x-date-pickers-pro@6.9.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
493
815
|
|
|
494
816
|
Same changes as in `@mui/x-date-pickers@6.9.0`.
|
|
495
817
|
|
|
@@ -545,11 +867,11 @@ We'd like to offer a big thanks to the 13 contributors who made this release pos
|
|
|
545
867
|
- [DataGrid] Scroll performance improvements (#9037) @romgrk
|
|
546
868
|
- [l10n] Improve Greek (el-GR) locale (#9292) @clytras
|
|
547
869
|
|
|
548
|
-
#### `@mui/x-data-grid-pro@6.8.0` [](https://mui.com/r/x-pro-svg-link)
|
|
870
|
+
#### `@mui/x-data-grid-pro@6.8.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
549
871
|
|
|
550
872
|
Same changes as in `@mui/x-data-grid@6.8.0`.
|
|
551
873
|
|
|
552
|
-
#### `@mui/x-data-grid-premium@6.8.0` [](https://mui.com/r/x-premium-svg-link)
|
|
874
|
+
#### `@mui/x-data-grid-premium@6.8.0` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
553
875
|
|
|
554
876
|
Same changes as in `@mui/x-data-grid-pro@6.8.0`.
|
|
555
877
|
|
|
@@ -562,7 +884,7 @@ Same changes as in `@mui/x-data-grid-pro@6.8.0`.
|
|
|
562
884
|
- [pickers] Close the calendar when a shortcut is selected (#9080) @flaviendelangle
|
|
563
885
|
- [pickers] Fix disabling for digital clock (#9300) @alexfauquette
|
|
564
886
|
|
|
565
|
-
#### `@mui/x-date-pickers-pro@6.8.0` [](https://mui.com/r/x-pro-svg-link)
|
|
887
|
+
#### `@mui/x-date-pickers-pro@6.8.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
566
888
|
|
|
567
889
|
Same changes as in `@mui/x-date-pickers@6.8.0`.
|
|
568
890
|
|
|
@@ -638,13 +960,13 @@ We'd like to offer a big thanks to the 12 contributors who made this release pos
|
|
|
638
960
|
- [l10n] Improve German (de-DE) locale (#9259) @ximex
|
|
639
961
|
- [l10n] Improve Turkish (tr-TR) locale (#9237) @MCErtan
|
|
640
962
|
|
|
641
|
-
#### `@mui/x-data-grid-pro@6.7.0` [](https://mui.com/r/x-pro-svg-link)
|
|
963
|
+
#### `@mui/x-data-grid-pro@6.7.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
642
964
|
|
|
643
965
|
Same changes as in `@mui/x-data-grid@6.7.0`, plus:
|
|
644
966
|
|
|
645
967
|
- [DataGridPro] Improve header filter menu visuals (#9181) @MBilalShafi
|
|
646
968
|
|
|
647
|
-
#### `@mui/x-data-grid-premium@6.7.0` [](https://mui.com/r/x-premium-svg-link)
|
|
969
|
+
#### `@mui/x-data-grid-premium@6.7.0` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
648
970
|
|
|
649
971
|
Same changes as in `@mui/x-data-grid-pro@6.7.0`, plus:
|
|
650
972
|
|
|
@@ -658,7 +980,7 @@ Same changes as in `@mui/x-data-grid-pro@6.7.0`, plus:
|
|
|
658
980
|
- [l10n] Improve German (de-DE) locale (#9258) @ximex
|
|
659
981
|
- [pickers] Apply dynamic default format depending on views for all desktop and mobile pickers (#9126) @flaviendelangle
|
|
660
982
|
|
|
661
|
-
#### `@mui/x-date-pickers-pro@6.7.0` [](https://mui.com/r/x-pro-svg-link)
|
|
983
|
+
#### `@mui/x-date-pickers-pro@6.7.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
662
984
|
|
|
663
985
|
Same changes as in `@mui/x-date-pickers@6.7.0`, plus:
|
|
664
986
|
|
|
@@ -2810,7 +3132,7 @@ We'd like to offer a big thanks to the 8 contributors who made this release poss
|
|
|
2810
3132
|
|
|
2811
3133
|
#### Changes
|
|
2812
3134
|
|
|
2813
|
-
- [DateRangePicker] Fix input focused style and mobile
|
|
3135
|
+
- [DateRangePicker] Fix input focused style and mobile behavior (#6645) @LukasTy
|
|
2814
3136
|
- [fields] Update sections when the locale changes (#6649) @flaviendelangle
|
|
2815
3137
|
- [pickers] Add Ukrainian (uk-UA) locale (#6661) @Dufran
|
|
2816
3138
|
- [pickers] Allow non-controlled usage of the calendar components (#6643) @flaviendelangle
|
package/README.md
CHANGED
package/TreeItem/index.d.ts
CHANGED
|
@@ -2,4 +2,5 @@ export * from './TreeItem';
|
|
|
2
2
|
export type { TreeItemProps } from './TreeItem.types';
|
|
3
3
|
export * from './useTreeItem';
|
|
4
4
|
export * from './treeItemClasses';
|
|
5
|
-
export
|
|
5
|
+
export { TreeItemContent } from './TreeItemContent';
|
|
6
|
+
export type { TreeItemContentProps, TreeItemContentClassKey } from './TreeItemContent';
|
package/TreeItem/index.js
CHANGED
package/index.js
CHANGED
package/legacy/TreeItem/index.js
CHANGED
package/legacy/index.js
CHANGED
package/modern/TreeItem/index.js
CHANGED
package/modern/index.js
CHANGED
package/node/TreeItem/index.js
CHANGED
|
@@ -3,9 +3,19 @@
|
|
|
3
3
|
Object.defineProperty(exports, "__esModule", {
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
|
+
var _exportNames = {
|
|
7
|
+
TreeItemContent: true
|
|
8
|
+
};
|
|
9
|
+
Object.defineProperty(exports, "TreeItemContent", {
|
|
10
|
+
enumerable: true,
|
|
11
|
+
get: function () {
|
|
12
|
+
return _TreeItemContent.TreeItemContent;
|
|
13
|
+
}
|
|
14
|
+
});
|
|
6
15
|
var _TreeItem = require("./TreeItem");
|
|
7
16
|
Object.keys(_TreeItem).forEach(function (key) {
|
|
8
17
|
if (key === "default" || key === "__esModule") return;
|
|
18
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
9
19
|
if (key in exports && exports[key] === _TreeItem[key]) return;
|
|
10
20
|
Object.defineProperty(exports, key, {
|
|
11
21
|
enumerable: true,
|
|
@@ -17,6 +27,7 @@ Object.keys(_TreeItem).forEach(function (key) {
|
|
|
17
27
|
var _useTreeItem = require("./useTreeItem");
|
|
18
28
|
Object.keys(_useTreeItem).forEach(function (key) {
|
|
19
29
|
if (key === "default" || key === "__esModule") return;
|
|
30
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
20
31
|
if (key in exports && exports[key] === _useTreeItem[key]) return;
|
|
21
32
|
Object.defineProperty(exports, key, {
|
|
22
33
|
enumerable: true,
|
|
@@ -28,6 +39,7 @@ Object.keys(_useTreeItem).forEach(function (key) {
|
|
|
28
39
|
var _treeItemClasses = require("./treeItemClasses");
|
|
29
40
|
Object.keys(_treeItemClasses).forEach(function (key) {
|
|
30
41
|
if (key === "default" || key === "__esModule") return;
|
|
42
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
31
43
|
if (key in exports && exports[key] === _treeItemClasses[key]) return;
|
|
32
44
|
Object.defineProperty(exports, key, {
|
|
33
45
|
enumerable: true,
|
|
@@ -35,4 +47,5 @@ Object.keys(_treeItemClasses).forEach(function (key) {
|
|
|
35
47
|
return _treeItemClasses[key];
|
|
36
48
|
}
|
|
37
49
|
});
|
|
38
|
-
});
|
|
50
|
+
});
|
|
51
|
+
var _TreeItemContent = require("./TreeItemContent");
|
package/node/index.js
CHANGED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
var _overrides = require("./overrides");
|
|
7
|
+
Object.keys(_overrides).forEach(function (key) {
|
|
8
|
+
if (key === "default" || key === "__esModule") return;
|
|
9
|
+
if (key in exports && exports[key] === _overrides[key]) return;
|
|
10
|
+
Object.defineProperty(exports, key, {
|
|
11
|
+
enumerable: true,
|
|
12
|
+
get: function () {
|
|
13
|
+
return _overrides[key];
|
|
14
|
+
}
|
|
15
|
+
});
|
|
16
|
+
});
|
|
17
|
+
var _props = require("./props");
|
|
18
|
+
Object.keys(_props).forEach(function (key) {
|
|
19
|
+
if (key === "default" || key === "__esModule") return;
|
|
20
|
+
if (key in exports && exports[key] === _props[key]) return;
|
|
21
|
+
Object.defineProperty(exports, key, {
|
|
22
|
+
enumerable: true,
|
|
23
|
+
get: function () {
|
|
24
|
+
return _props[key];
|
|
25
|
+
}
|
|
26
|
+
});
|
|
27
|
+
});
|
|
28
|
+
var _components = require("./components");
|
|
29
|
+
Object.keys(_components).forEach(function (key) {
|
|
30
|
+
if (key === "default" || key === "__esModule") return;
|
|
31
|
+
if (key in exports && exports[key] === _components[key]) return;
|
|
32
|
+
Object.defineProperty(exports, key, {
|
|
33
|
+
enumerable: true,
|
|
34
|
+
get: function () {
|
|
35
|
+
return _components[key];
|
|
36
|
+
}
|
|
37
|
+
});
|
|
38
|
+
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mui/x-tree-view",
|
|
3
|
-
"version": "6.0.0-alpha.
|
|
3
|
+
"version": "6.0.0-alpha.2",
|
|
4
4
|
"description": "The community edition of the tree view components (MUI X).",
|
|
5
5
|
"author": "MUI Team",
|
|
6
6
|
"main": "./node/index.js",
|
|
@@ -31,17 +31,17 @@
|
|
|
31
31
|
"directory": "packages/x-tree-view"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@babel/runtime": "^7.22.
|
|
35
|
-
"@mui/
|
|
34
|
+
"@babel/runtime": "^7.22.15",
|
|
35
|
+
"@mui/base": "^5.0.0-alpha.87",
|
|
36
|
+
"@mui/utils": "^5.14.7",
|
|
36
37
|
"@types/react-transition-group": "^4.4.6",
|
|
37
|
-
"clsx": "^
|
|
38
|
+
"clsx": "^2.0.0",
|
|
38
39
|
"prop-types": "^15.8.1",
|
|
39
40
|
"react-transition-group": "^4.4.5"
|
|
40
41
|
},
|
|
41
42
|
"peerDependencies": {
|
|
42
43
|
"@emotion/react": "^11.9.0",
|
|
43
44
|
"@emotion/styled": "^11.8.1",
|
|
44
|
-
"@mui/base": "^5.0.0-alpha.87",
|
|
45
45
|
"@mui/material": "^5.8.6",
|
|
46
46
|
"@mui/system": "^5.8.0",
|
|
47
47
|
"react": "^17.0.0 || ^18.0.0",
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { ComponentsProps, ComponentsOverrides, ComponentsVariants } from '@mui/material/styles';
|
|
2
|
+
|
|
3
|
+
export interface TreeViewComponents<Theme = unknown> {
|
|
4
|
+
MuiTreeItem?: {
|
|
5
|
+
defaultProps?: ComponentsProps['MuiTreeItem'];
|
|
6
|
+
styleOverrides?: ComponentsOverrides<Theme>['MuiTreeItem'];
|
|
7
|
+
variants?: ComponentsVariants['MuiTreeItem'];
|
|
8
|
+
};
|
|
9
|
+
MuiTreeView?: {
|
|
10
|
+
defaultProps?: ComponentsProps['MuiTreeView'];
|
|
11
|
+
styleOverrides?: ComponentsOverrides<Theme>['MuiTreeView'];
|
|
12
|
+
variants?: ComponentsVariants['MuiTreeView'];
|
|
13
|
+
};
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
declare module '@mui/material/styles' {
|
|
17
|
+
interface Components<Theme = unknown> extends TreeViewComponents<Theme> {}
|
|
18
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { TreeItemClassKey } from '../TreeItem';
|
|
2
|
+
import { TreeViewClassKey } from '../TreeView';
|
|
3
|
+
|
|
4
|
+
// prettier-ignore
|
|
5
|
+
export interface PickersComponentNameToClassKey {
|
|
6
|
+
MuiTreeItem: TreeItemClassKey;
|
|
7
|
+
MuiTreeView: TreeViewClassKey;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
declare module '@mui/material/styles' {
|
|
11
|
+
interface ComponentNameToClassKey extends PickersComponentNameToClassKey {}
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
// disable automatic export
|
|
15
|
+
export {};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { TreeItemProps } from '../TreeItem';
|
|
2
|
+
import { TreeViewProps } from '../TreeView';
|
|
3
|
+
|
|
4
|
+
export interface PickersComponentsPropsList {
|
|
5
|
+
MuiTreeItem: TreeItemProps;
|
|
6
|
+
MuiTreeView: TreeViewProps;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
declare module '@mui/material/styles' {
|
|
10
|
+
interface ComponentsPropsList extends PickersComponentsPropsList {}
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
// disable automatic export
|
|
14
|
+
export {};
|