@mui/x-tree-view-pro 9.7.0 β†’ 9.9.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.
Files changed (48) hide show
  1. package/CHANGELOG.md +249 -1
  2. package/RichTreeViewPro/RichTreeViewPro.d.mts +1 -1
  3. package/RichTreeViewPro/RichTreeViewPro.d.ts +1 -1
  4. package/RichTreeViewPro/RichTreeViewPro.js +2 -2
  5. package/RichTreeViewPro/RichTreeViewPro.mjs +2 -2
  6. package/RichTreeViewPro/RichTreeViewPro.types.d.mts +7 -7
  7. package/RichTreeViewPro/RichTreeViewPro.types.d.ts +7 -7
  8. package/RichTreeViewPro/richTreeViewProClasses.d.mts +1 -1
  9. package/RichTreeViewPro/richTreeViewProClasses.d.ts +1 -1
  10. package/RichTreeViewPro/useExtractRichTreeViewProParameters.d.mts +4 -4
  11. package/RichTreeViewPro/useExtractRichTreeViewProParameters.d.ts +4 -4
  12. package/components/RichTreeViewVirtualizedItems.d.mts +3 -2
  13. package/components/RichTreeViewVirtualizedItems.d.ts +3 -2
  14. package/hooks/useRichTreeViewProApiRef.d.mts +3 -3
  15. package/hooks/useRichTreeViewProApiRef.d.ts +3 -3
  16. package/index.js +1 -1
  17. package/index.mjs +1 -1
  18. package/internals/RichTreeViewProStore/RichTreeViewProStore.d.mts +2 -2
  19. package/internals/RichTreeViewProStore/RichTreeViewProStore.d.ts +2 -2
  20. package/internals/RichTreeViewProStore/RichTreeViewProStore.types.d.mts +5 -5
  21. package/internals/RichTreeViewProStore/RichTreeViewProStore.types.d.ts +5 -5
  22. package/internals/RichTreeViewProStore/RichTreeViewProStore.utils.d.mts +2 -2
  23. package/internals/RichTreeViewProStore/RichTreeViewProStore.utils.d.ts +2 -2
  24. package/internals/plugins/itemsReordering/TreeViewItemsReorderingPlugin.d.mts +3 -3
  25. package/internals/plugins/itemsReordering/TreeViewItemsReorderingPlugin.d.ts +3 -3
  26. package/internals/plugins/itemsReordering/itemPlugin.d.mts +3 -3
  27. package/internals/plugins/itemsReordering/itemPlugin.d.ts +3 -3
  28. package/internals/plugins/itemsReordering/selectors.d.mts +2 -2
  29. package/internals/plugins/itemsReordering/selectors.d.ts +2 -2
  30. package/internals/plugins/itemsReordering/types.d.mts +1 -1
  31. package/internals/plugins/itemsReordering/types.d.ts +1 -1
  32. package/internals/plugins/itemsReordering/utils.d.mts +3 -3
  33. package/internals/plugins/itemsReordering/utils.d.ts +3 -3
  34. package/internals/plugins/lazyLoading/TreeViewLazyLoadingPlugin.d.mts +2 -2
  35. package/internals/plugins/lazyLoading/TreeViewLazyLoadingPlugin.d.ts +2 -2
  36. package/internals/plugins/lazyLoading/types.d.mts +1 -1
  37. package/internals/plugins/lazyLoading/types.d.ts +1 -1
  38. package/internals/plugins/lazyLoading/utils.d.mts +2 -2
  39. package/internals/plugins/lazyLoading/utils.d.ts +2 -2
  40. package/internals/plugins/virtualization/selectors.d.mts +1 -1
  41. package/internals/plugins/virtualization/selectors.d.ts +1 -1
  42. package/package.json +6 -6
  43. package/themeAugmentation/components.d.mts +1 -1
  44. package/themeAugmentation/components.d.ts +1 -1
  45. package/themeAugmentation/overrides.d.mts +1 -1
  46. package/themeAugmentation/overrides.d.ts +1 -1
  47. package/themeAugmentation/props.d.mts +1 -1
  48. package/themeAugmentation/props.d.ts +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,254 @@
1
1
  # Changelog
2
2
 
3
+ ## 9.9.0
4
+
5
+ _Jul 9, 2026_
6
+
7
+ We'd like to extend a big thank you to the 11 contributors who made this release possible. Here are some highlights ✨:
8
+
9
+ - πŸ“Š [Data sampling](https://mui.com/x/react-charts/performance/#sampling) for better performance with large bar and line charts
10
+ - πŸ—ΊοΈ [Maps zoom support](https://mui.com/x/react-charts/map/#zoom)
11
+ - β˜‘οΈ Support [applying filters on demand](https://mui.com/x/react-data-grid/filtering/customization/#apply-filters-on-demand) in the Data Grid
12
+ - 🐞 Bugfixes
13
+ - πŸ“š Documentation improvements
14
+
15
+ Special thanks go out to these community members for their valuable contributions:
16
+ @mustafajw07, @sebastianfrey
17
+
18
+ The following team members contributed to this release:
19
+ @aemartos, @alexfauquette, @brijeshb42, @hasdfa, @Janpot, @JCQuintas, @LukasTy, @rita-codes, @sai6855
20
+
21
+ ### Data Grid
22
+
23
+ #### `@mui/x-data-grid@9.9.0`
24
+
25
+ - [DataGrid] Add `dataSourceKeepPreviousData` prop (#22554) @LukasTy
26
+ - [DataGrid] Add controlled filter panel for applying filters on demand (#23023) @sebastianfrey
27
+
28
+ #### `@mui/x-data-grid-pro@9.9.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
29
+
30
+ Same changes as in `@mui/x-data-grid@9.9.0`.
31
+
32
+ #### `@mui/x-data-grid-premium@9.9.0` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
33
+
34
+ Same changes as in `@mui/x-data-grid-pro@9.9.0`.
35
+
36
+ ### Date and Time Pickers
37
+
38
+ #### `@mui/x-date-pickers@9.9.0`
39
+
40
+ Internal changes.
41
+
42
+ #### `@mui/x-date-pickers-pro@9.9.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
43
+
44
+ Same changes as in `@mui/x-date-pickers@9.9.0`, plus:
45
+
46
+ - [DateRangeCalendar] Avoid unnecessary month switch when the value is already visible (#22996) @LukasTy
47
+
48
+ ### Charts
49
+
50
+ #### `@mui/x-charts@9.9.0`
51
+
52
+ - [charts] Optimize and de-duplicate sampled axis-highlight band lookup (#23052) @JCQuintas
53
+ - [charts] Unify tooltip item position getter and selector into a single selector API (#23041) @alexfauquette
54
+ - [charts] Fix impossible condition in axis text angle warning (#23102) @sai6855
55
+
56
+ #### `@mui/x-charts-pro@9.9.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
57
+
58
+ Same changes as in `@mui/x-charts@9.9.0`, plus:
59
+
60
+ - [charts-pro] Add data sampling for large bar and line charts (#22830) @JCQuintas
61
+ - [charts-pro] Allow sampling on non-zoomable charts (#23051) @JCQuintas
62
+
63
+ #### `@mui/x-charts-premium@9.9.0` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
64
+
65
+ #### Breaking changes
66
+
67
+ The API of the `Unstable_ChartsGeoDataProviderPremium` got modified.
68
+ Props `scale`, `rotation`, and `translation` are replaced by props `view` and `initialView`.
69
+ Same behavior can be obtained with `view.zoomLevel`, `view.center`, and `view.translation`.
70
+ See the [zoom view section](https://mui.com/x/react-charts/map/#control) for detailed information
71
+
72
+ Same changes as in `@mui/x-charts-pro@9.9.0`, plus:
73
+
74
+ - [charts-premium] Maps zoom support (#22709) @alexfauquette
75
+
76
+ ### Tree View
77
+
78
+ #### `@mui/x-tree-view@9.9.0`
79
+
80
+ Internal changes.
81
+
82
+ #### `@mui/x-tree-view-pro@9.9.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
83
+
84
+ Same changes as in `@mui/x-tree-view@9.9.0`.
85
+
86
+ ### Scheduler
87
+
88
+ #### `@mui/x-scheduler@9.0.0-beta.5`
89
+
90
+ - [scheduler] Introduce event resource helper utilities (#23022) @mustafajw07
91
+ - [scheduler] Preserve multi-day event continuity across overflow (#22797) @mustafajw07
92
+
93
+ #### `@mui/x-scheduler-premium@9.0.0-beta.5` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
94
+
95
+ Same changes as in `@mui/x-scheduler@9.0.0-beta.5`.
96
+
97
+ ### Codemod
98
+
99
+ #### `@mui/x-codemod@9.9.0`
100
+
101
+ Internal changes.
102
+
103
+ ### Docs
104
+
105
+ - [docs] Fix broken social preview image on shared docs links (#23055) @sai6855
106
+ - [docs] Review and clean up react-chat docs demos & gallery; fix actions-bar layout (#22993) @hasdfa
107
+ - [docs] Update the Pickers recommended date library bundle sizes (#23087) @LukasTy
108
+
109
+ ### Core
110
+
111
+ - [mcp] Add `@mui/mcp` server and `@mui/x-agent-tools`. See the [README](https://github.com/mui/mui-x/blob/master/packages/mcp/README.md) for setup (#22947) @aemartos
112
+ - [code-infra] Avoid OOM in the Netlify docs build and CircleCI lint step (#23086) @LukasTy
113
+ - [code-infra] Group `@atlaskit/pragmatic-drag-and-drop` renovate updates (#23105) @LukasTy
114
+ - [code-infra] Validate npm publishing through dry run (#23038) @brijeshb42
115
+ - [docs-infra] Enable `webpackBuildWorker` to bound docs build memory (#23100) @Janpot
116
+
117
+ ### Miscellaneous
118
+
119
+ - [test] Fix flaky "should render only the pageSize" Data Grid virtualization test (#23090) @LukasTy
120
+ - [test] Track `@mui/x-chat` bundle size via native expand (#23049) @Janpot
121
+
122
+ ## 9.8.0
123
+
124
+ _Jul 2, 2026_
125
+
126
+ We'd like to extend a big thank you to the 18 contributors who made this release possible. Here are some highlights ✨:
127
+
128
+ - πŸ—ΊοΈ New [`MapImagePlot`](https://mui.com/x/react-charts/map/) for rendering raster base maps, with `onItemClick` support on map shapes (Premium)
129
+ - πŸ“Š New [`usePolarGeometry`](https://mui.com/x/react-charts/hooks/use-polar-geometry/) hook to build custom radial overlays
130
+ - 🐞 Bugfixes
131
+ - πŸ“š Documentation improvements
132
+
133
+ Special thanks go out to these community members for their valuable contributions:
134
+ @Anexus5919, @aromanio, @greymoth-jp, @mustafajw07, @timbuckley, @voidmatcha
135
+
136
+ The following team members contributed to this release:
137
+ @alexfauquette, @arminmeh, @cherniavskii, @flaviendelangle, @Janpot, @JCQuintas, @joserodolfofreitas, @LukasTy, @mapache-salvaje, @michelengelen, @rita-codes, @sai6855
138
+
139
+ ### Data Grid
140
+
141
+ #### `@mui/x-data-grid@9.8.0`
142
+
143
+ - [DataGrid] Prevent cell editing from resurrecting a deleted row (#22958) @Anexus5919
144
+ - [DataGrid] Avoid reading `type` of `undefined` in `gridRowUtils` (#21808) @timbuckley
145
+ - [DataGrid] Improved get started tutorial (#22911) @joserodolfofreitas
146
+ - [l10n] Improve Japanese (ja-JP) locale (#23001) @greymoth-jp
147
+
148
+ #### `@mui/x-data-grid-pro@9.8.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
149
+
150
+ Same changes as in `@mui/x-data-grid@9.8.0`.
151
+
152
+ #### `@mui/x-data-grid-premium@9.8.0` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
153
+
154
+ Same changes as in `@mui/x-data-grid-pro@9.8.0`, plus:
155
+
156
+ - [DataGridPremium] Escape `singleSelect` values in Excel export with `escapeFormulas` enabled (#22851) @Anexus5919
157
+
158
+ ### Date and Time Pickers
159
+
160
+ #### `@mui/x-date-pickers@9.8.0`
161
+
162
+ - [pickers] Fix localized digit crash (#22995) @alexfauquette
163
+ - [pickers] Flag the first and last visible day cell across year boundaries (#22981) @Anexus5919
164
+ - [pickers] Use calendar day tokens in `AdapterMomentHijri` and `AdapterMomentJalaali` formats (#22974) @Anexus5919
165
+ - [pickers] Use the Hijri day token in `AdapterMomentHijri` `normalDateWithWeekday` (#22972) @Anexus5919
166
+ - [l10n] Improve Romanian (ro-RO) locale (#22969) @aromanio
167
+
168
+ #### `@mui/x-date-pickers-pro@9.8.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
169
+
170
+ Same changes as in `@mui/x-date-pickers@9.8.0`, plus:
171
+
172
+ - [DateRangeCalendar] Fix auto month-switch across the year boundary (#22987) @Anexus5919
173
+
174
+ ### Charts
175
+
176
+ #### `@mui/x-charts@9.8.0`
177
+
178
+ - [charts] Decouple `d3-geo` from the universal tooltip (#23011) @sai6855
179
+ - [charts] Deduplicate `getGroupingConfig` (#22889) @sai6855
180
+ - [charts] Expose `usePolarGeometry` hook for radial overlays (#22892) @mustafajw07
181
+
182
+ #### `@mui/x-charts-pro@9.8.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
183
+
184
+ Same changes as in `@mui/x-charts@9.8.0`.
185
+
186
+ #### `@mui/x-charts-premium@9.8.0` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
187
+
188
+ Same changes as in `@mui/x-charts-pro@9.8.0`, plus:
189
+
190
+ - [charts-premium] Add `onItemClick` support for the Map shapes (#22876) @sai6855
191
+ - [charts-premium] Replace `dataIndex` with `name` in map identifier (#22891) @sai6855
192
+ - [charts-premium] Share helper function (#23030) @alexfauquette
193
+ - [charts-premium] Extract shared WebGL utilities across bar/scatter/heatmap renderers (#22466) @sai6855
194
+ - [charts-premium] Add `MapImagePlot` for raster base maps (#22977) @JCQuintas
195
+
196
+ ### Tree View
197
+
198
+ #### `@mui/x-tree-view@9.8.0`
199
+
200
+ - [TreeView] Fix extra selection event when clicking a collapsed parent item (#22249) @michelengelen
201
+ - [TreeView] Enforce top-level type imports (#23034) @Janpot
202
+
203
+ #### `@mui/x-tree-view-pro@9.8.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
204
+
205
+ Same changes as in `@mui/x-tree-view@9.8.0`.
206
+
207
+ ### Scheduler
208
+
209
+ #### `@mui/x-scheduler@9.0.0-beta.4`
210
+
211
+ - [scheduler] Enforce top-level type imports (#22931) @Janpot
212
+ - [scheduler] Keep the occurrence date when editing only one recurring event (#23007) @Anexus5919
213
+ - [scheduler] Track bundle size of scheduler packages (#22682) @flaviendelangle
214
+ - [scheduler] Add `viewConfig` prop to limit displayed hours in the day and week views (#22929) @flaviendelangle
215
+
216
+ #### `@mui/x-scheduler-premium@9.0.0-beta.4` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
217
+
218
+ Same changes as in `@mui/x-scheduler@9.0.0-beta.4`, plus:
219
+
220
+ - [scheduler] Collapsible resources in the timeline (#22920) @rita-codes
221
+
222
+ ### Codemod
223
+
224
+ #### `@mui/x-codemod@9.8.0`
225
+
226
+ Internal changes.
227
+
228
+ ### Docs
229
+
230
+ - [docs] Add recipe for conditional master-detail panels (#22971) @michelengelen
231
+ - [docs] Add recipe for describing active filters in the toolbar (#22970) @michelengelen
232
+ - [docs] Add recipe for triggering clipboard copy from a button (#22967) @michelengelen
233
+ - [docs] Clarify that `fieldRef.current.focusField()` is the canonical way to focus a field (#22937) @michelengelen
234
+ - [docs][scheduler] Another copyediting pass across the Scheduler docs (#22619) @mapache-salvaje
235
+ - [docs][charts] Add map example for arbitrary GeoJSON shapes (#22976) @JCQuintas
236
+ - [docs][charts] Double point count in `ScatterAsyncRenderer` demo (#22906) @JCQuintas
237
+
238
+ ### Core
239
+
240
+ - [code-infra] Fix tracking branch bug in release script (#22956) @michelengelen
241
+ - [code-infra] Remove mark-duplicate workflow (#22994) @cherniavskii
242
+ - [code-infra] Revert `nanoid@3.3.15` `minimumReleaseAge` exemption (#22953) @LukasTy
243
+
244
+ ### Miscellaneous
245
+
246
+ - [internals] Fix `ERR_UNSUPPORTED_DIR_IMPORT` for `core-js-pure` in Node ESM (#22985) @michelengelen
247
+ - [internals] Harden `useDisposable` React internals read with safeReact (#22986) @rita-codes
248
+ - [internals] Replace core-js `DisposableStack` ponyfill with a minimal fallback (#23002) @sai6855
249
+ - [test] Assert the edited `dateTime` cell value in the e2e edit test (#22982) @voidmatcha
250
+ - [virtualizer] Remeasure scrollbars when layout changes (#22914) @arminmeh
251
+
3
252
  ## 9.7.0
4
253
 
5
254
  _Jun 25, 2026_
@@ -178,7 +427,6 @@ Same changes as in `@mui/x-charts-pro@9.6.0`, plus:
178
427
  - [charts-premium] Support maps tooltip positioned on items (#22648) @alexfauquette
179
428
  - [docs] Show how to export maps (#22837) @alexfauquette
180
429
 
181
-
182
430
  ### Tree View
183
431
 
184
432
  #### `@mui/x-tree-view@9.6.0`
@@ -1,5 +1,5 @@
1
1
  import * as React from 'react';
2
- import { RichTreeViewProProps } from "./RichTreeViewPro.types.mjs";
2
+ import type { RichTreeViewProProps } from "./RichTreeViewPro.types.mjs";
3
3
  export declare const RichTreeViewProRoot: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material/styles").Theme> & {
4
4
  ownerState: RichTreeViewProProps<any, any>;
5
5
  }, Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLUListElement>, HTMLUListElement>, keyof React.ClassAttributes<HTMLUListElement> | keyof React.HTMLAttributes<HTMLUListElement>>, {}>;
@@ -1,5 +1,5 @@
1
1
  import * as React from 'react';
2
- import { RichTreeViewProProps } from "./RichTreeViewPro.types.js";
2
+ import type { RichTreeViewProProps } from "./RichTreeViewPro.types.js";
3
3
  export declare const RichTreeViewProRoot: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material/styles").Theme> & {
4
4
  ownerState: RichTreeViewProProps<any, any>;
5
5
  }, Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLUListElement>, HTMLUListElement>, keyof React.ClassAttributes<HTMLUListElement> | keyof React.HTMLAttributes<HTMLUListElement>>, {}>;
@@ -59,8 +59,8 @@ const RichTreeViewProRoot = exports.RichTreeViewProRoot = (0, _zeroStyled.styled
59
59
  }
60
60
  });
61
61
  const packageInfo = {
62
- releaseDate: "MTc4MjM0NTYwMDAwMA==",
63
- version: "9.7.0",
62
+ releaseDate: "MTc4MzU1NTIwMDAwMA==",
63
+ version: "9.9.0",
64
64
  name: 'x-tree-view-pro'
65
65
  };
66
66
 
@@ -52,8 +52,8 @@ export const RichTreeViewProRoot = styled('ul', {
52
52
  }
53
53
  });
54
54
  const packageInfo = {
55
- releaseDate: "MTc4MjM0NTYwMDAwMA==",
56
- version: "9.7.0",
55
+ releaseDate: "MTc4MzU1NTIwMDAwMA==",
56
+ version: "9.9.0",
57
57
  name: 'x-tree-view-pro'
58
58
  };
59
59
 
@@ -1,10 +1,10 @@
1
- import * as React from 'react';
2
- import { Theme } from '@mui/material/styles';
3
- import { SxProps } from '@mui/system/styleFunctionSx';
4
- import { TreeViewValidItem } from '@mui/x-tree-view/models';
5
- import { RichTreeViewItemsSlots, RichTreeViewItemsSlotProps, TreeViewSlots, TreeViewSlotProps, UseTreeViewStoreParameters, TreeViewPublicAPI } from '@mui/x-tree-view/internals';
6
- import { RichTreeViewProClasses } from "./richTreeViewProClasses.mjs";
7
- import { RichTreeViewProStore } from "../internals/RichTreeViewProStore/index.mjs";
1
+ import type * as React from 'react';
2
+ import type { Theme } from '@mui/material/styles';
3
+ import type { SxProps } from '@mui/system/styleFunctionSx';
4
+ import type { TreeViewValidItem } from '@mui/x-tree-view/models';
5
+ import type { RichTreeViewItemsSlots, RichTreeViewItemsSlotProps, TreeViewSlots, TreeViewSlotProps, UseTreeViewStoreParameters, TreeViewPublicAPI } from '@mui/x-tree-view/internals';
6
+ import type { RichTreeViewProClasses } from "./richTreeViewProClasses.mjs";
7
+ import type { RichTreeViewProStore } from "../internals/RichTreeViewProStore/index.mjs";
8
8
  export interface RichTreeViewProSlots extends TreeViewSlots, Omit<RichTreeViewItemsSlots, 'root'> {
9
9
  /**
10
10
  * Element rendered at the root.
@@ -1,10 +1,10 @@
1
- import * as React from 'react';
2
- import { Theme } from '@mui/material/styles';
3
- import { SxProps } from '@mui/system/styleFunctionSx';
4
- import { TreeViewValidItem } from '@mui/x-tree-view/models';
5
- import { RichTreeViewItemsSlots, RichTreeViewItemsSlotProps, TreeViewSlots, TreeViewSlotProps, UseTreeViewStoreParameters, TreeViewPublicAPI } from '@mui/x-tree-view/internals';
6
- import { RichTreeViewProClasses } from "./richTreeViewProClasses.js";
7
- import { RichTreeViewProStore } from "../internals/RichTreeViewProStore/index.js";
1
+ import type * as React from 'react';
2
+ import type { Theme } from '@mui/material/styles';
3
+ import type { SxProps } from '@mui/system/styleFunctionSx';
4
+ import type { TreeViewValidItem } from '@mui/x-tree-view/models';
5
+ import type { RichTreeViewItemsSlots, RichTreeViewItemsSlotProps, TreeViewSlots, TreeViewSlotProps, UseTreeViewStoreParameters, TreeViewPublicAPI } from '@mui/x-tree-view/internals';
6
+ import type { RichTreeViewProClasses } from "./richTreeViewProClasses.js";
7
+ import type { RichTreeViewProStore } from "../internals/RichTreeViewProStore/index.js";
8
8
  export interface RichTreeViewProSlots extends TreeViewSlots, Omit<RichTreeViewItemsSlots, 'root'> {
9
9
  /**
10
10
  * Element rendered at the root.
@@ -1,4 +1,4 @@
1
- import { TreeViewClasses } from '@mui/x-tree-view/internals';
1
+ import type { TreeViewClasses } from '@mui/x-tree-view/internals';
2
2
  export interface RichTreeViewProClasses extends TreeViewClasses {}
3
3
  export type RichTreeViewProClassKey = keyof RichTreeViewProClasses;
4
4
  export declare function getRichTreeViewProUtilityClass(slot: string): string;
@@ -1,4 +1,4 @@
1
- import { TreeViewClasses } from '@mui/x-tree-view/internals';
1
+ import type { TreeViewClasses } from '@mui/x-tree-view/internals';
2
2
  export interface RichTreeViewProClasses extends TreeViewClasses {}
3
3
  export type RichTreeViewProClassKey = keyof RichTreeViewProClasses;
4
4
  export declare function getRichTreeViewProUtilityClass(slot: string): string;
@@ -1,8 +1,8 @@
1
1
  import * as React from 'react';
2
- import { TreeViewValidItem } from '@mui/x-tree-view/models';
3
- import { UseTreeViewStoreParameters } from '@mui/x-tree-view/internals';
4
- import { RichTreeViewProStore } from "../internals/RichTreeViewProStore/index.mjs";
5
- import { RichTreeViewProProps } from "./RichTreeViewPro.types.mjs";
2
+ import type { TreeViewValidItem } from '@mui/x-tree-view/models';
3
+ import type { UseTreeViewStoreParameters } from '@mui/x-tree-view/internals';
4
+ import type { RichTreeViewProStore } from "../internals/RichTreeViewProStore/index.mjs";
5
+ import type { RichTreeViewProProps } from "./RichTreeViewPro.types.mjs";
6
6
  export declare function useExtractRichTreeViewProParameters<R extends TreeViewValidItem<R>, Multiple extends boolean | undefined>(props: RichTreeViewProProps<R, Multiple>): {
7
7
  apiRef: import("./RichTreeViewPro.types.mjs").RichTreeViewProApiRef<any, any> | undefined;
8
8
  slots: import("./RichTreeViewPro.types.mjs").RichTreeViewProSlots | undefined;
@@ -1,8 +1,8 @@
1
1
  import * as React from 'react';
2
- import { TreeViewValidItem } from '@mui/x-tree-view/models';
3
- import { UseTreeViewStoreParameters } from '@mui/x-tree-view/internals';
4
- import { RichTreeViewProStore } from "../internals/RichTreeViewProStore/index.js";
5
- import { RichTreeViewProProps } from "./RichTreeViewPro.types.js";
2
+ import type { TreeViewValidItem } from '@mui/x-tree-view/models';
3
+ import type { UseTreeViewStoreParameters } from '@mui/x-tree-view/internals';
4
+ import type { RichTreeViewProStore } from "../internals/RichTreeViewProStore/index.js";
5
+ import type { RichTreeViewProProps } from "./RichTreeViewPro.types.js";
6
6
  export declare function useExtractRichTreeViewProParameters<R extends TreeViewValidItem<R>, Multiple extends boolean | undefined>(props: RichTreeViewProProps<R, Multiple>): {
7
7
  apiRef: import("./RichTreeViewPro.types.js").RichTreeViewProApiRef<any, any> | undefined;
8
8
  slots: import("./RichTreeViewPro.types.js").RichTreeViewProSlots | undefined;
@@ -1,2 +1,3 @@
1
- import { RichTreeViewItemsProps } from '@mui/x-tree-view/internals';
2
- export declare function RichTreeViewVirtualizedItems<TProps extends object>(props: RichTreeViewItemsProps<TProps>): import("react/jsx-runtime").JSX.Element;
1
+ import * as React from 'react';
2
+ import type { RichTreeViewItemsProps } from '@mui/x-tree-view/internals';
3
+ export declare function RichTreeViewVirtualizedItems<TProps extends object>(props: RichTreeViewItemsProps<TProps>): React.JSX.Element;
@@ -1,2 +1,3 @@
1
- import { RichTreeViewItemsProps } from '@mui/x-tree-view/internals';
2
- export declare function RichTreeViewVirtualizedItems<TProps extends object>(props: RichTreeViewItemsProps<TProps>): import("react/jsx-runtime").JSX.Element;
1
+ import * as React from 'react';
2
+ import type { RichTreeViewItemsProps } from '@mui/x-tree-view/internals';
3
+ export declare function RichTreeViewVirtualizedItems<TProps extends object>(props: RichTreeViewItemsProps<TProps>): React.JSX.Element;
@@ -1,7 +1,7 @@
1
1
  import * as React from 'react';
2
- import { TreeViewPublicAPI } from '@mui/x-tree-view/internals';
3
- import { TreeViewDefaultItemModelProperties, TreeViewValidItem } from '@mui/x-tree-view/models';
4
- import { RichTreeViewProStore } from "../internals/RichTreeViewProStore/index.mjs";
2
+ import type { TreeViewPublicAPI } from '@mui/x-tree-view/internals';
3
+ import type { TreeViewDefaultItemModelProperties, TreeViewValidItem } from '@mui/x-tree-view/models';
4
+ import type { RichTreeViewProStore } from "../internals/RichTreeViewProStore/index.mjs";
5
5
  /**
6
6
  * Creates the ref to pass to the `apiRef` prop of the `RichTreeViewPro` component.
7
7
  */
@@ -1,7 +1,7 @@
1
1
  import * as React from 'react';
2
- import { TreeViewPublicAPI } from '@mui/x-tree-view/internals';
3
- import { TreeViewDefaultItemModelProperties, TreeViewValidItem } from '@mui/x-tree-view/models';
4
- import { RichTreeViewProStore } from "../internals/RichTreeViewProStore/index.js";
2
+ import type { TreeViewPublicAPI } from '@mui/x-tree-view/internals';
3
+ import type { TreeViewDefaultItemModelProperties, TreeViewValidItem } from '@mui/x-tree-view/models';
4
+ import type { RichTreeViewProStore } from "../internals/RichTreeViewProStore/index.js";
5
5
  /**
6
6
  * Creates the ref to pass to the `apiRef` prop of the `RichTreeViewPro` component.
7
7
  */
package/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/x-tree-view-pro v9.7.0
2
+ * @mui/x-tree-view-pro v9.9.0
3
3
  *
4
4
  * @license SEE LICENSE IN LICENSE
5
5
  * This source code is licensed under the SEE LICENSE IN LICENSE license found in the
package/index.mjs CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/x-tree-view-pro v9.7.0
2
+ * @mui/x-tree-view-pro v9.9.0
3
3
  *
4
4
  * @license SEE LICENSE IN LICENSE
5
5
  * This source code is licensed under the SEE LICENSE IN LICENSE license found in the
@@ -1,6 +1,6 @@
1
1
  import { ExtendableRichTreeViewStore } from '@mui/x-tree-view/internals';
2
- import { TreeViewValidItem } from '@mui/x-tree-view/models';
3
- import { RichTreeViewProStoreParameters, RichTreeViewProState } from "./RichTreeViewProStore.types.mjs";
2
+ import type { TreeViewValidItem } from '@mui/x-tree-view/models';
3
+ import type { RichTreeViewProStoreParameters, RichTreeViewProState } from "./RichTreeViewProStore.types.mjs";
4
4
  import { TreeViewLazyLoadingPlugin } from "../plugins/lazyLoading/index.mjs";
5
5
  import { TreeViewItemsReorderingPlugin } from "../plugins/itemsReordering/index.mjs";
6
6
  export declare class RichTreeViewProStore<R extends TreeViewValidItem<R>, Multiple extends boolean | undefined> extends ExtendableRichTreeViewStore<R, Multiple, RichTreeViewProState<R, Multiple>, RichTreeViewProStoreParameters<R, Multiple>> {
@@ -1,6 +1,6 @@
1
1
  import { ExtendableRichTreeViewStore } from '@mui/x-tree-view/internals';
2
- import { TreeViewValidItem } from '@mui/x-tree-view/models';
3
- import { RichTreeViewProStoreParameters, RichTreeViewProState } from "./RichTreeViewProStore.types.js";
2
+ import type { TreeViewValidItem } from '@mui/x-tree-view/models';
3
+ import type { RichTreeViewProStoreParameters, RichTreeViewProState } from "./RichTreeViewProStore.types.js";
4
4
  import { TreeViewLazyLoadingPlugin } from "../plugins/lazyLoading/index.js";
5
5
  import { TreeViewItemsReorderingPlugin } from "../plugins/itemsReordering/index.js";
6
6
  export declare class RichTreeViewProStore<R extends TreeViewValidItem<R>, Multiple extends boolean | undefined> extends ExtendableRichTreeViewStore<R, Multiple, RichTreeViewProState<R, Multiple>, RichTreeViewProStoreParameters<R, Multiple>> {
@@ -1,8 +1,8 @@
1
- import { RichTreeViewStoreParameters, RichTreeViewState } from '@mui/x-tree-view/internals';
2
- import { TreeViewDOMStructure, TreeViewItemId, TreeViewItemsReorderingAction, TreeViewValidItem } from '@mui/x-tree-view/models';
3
- import { DataSourceCache } from '@mui/x-tree-view/utils';
4
- import { TreeViewItemReorderPosition } from "../plugins/itemsReordering/index.mjs";
5
- import { DataSource } from "../plugins/lazyLoading/index.mjs";
1
+ import type { RichTreeViewStoreParameters, RichTreeViewState } from '@mui/x-tree-view/internals';
2
+ import type { TreeViewDOMStructure, TreeViewItemId, TreeViewItemsReorderingAction, TreeViewValidItem } from '@mui/x-tree-view/models';
3
+ import type { DataSourceCache } from '@mui/x-tree-view/utils';
4
+ import type { TreeViewItemReorderPosition } from "../plugins/itemsReordering/index.mjs";
5
+ import type { DataSource } from "../plugins/lazyLoading/index.mjs";
6
6
  export interface RichTreeViewProState<R extends TreeViewValidItem<R>, Multiple extends boolean | undefined> extends RichTreeViewState<R, Multiple> {
7
7
  /**
8
8
  * Determine if a given item can be reordered.
@@ -1,8 +1,8 @@
1
- import { RichTreeViewStoreParameters, RichTreeViewState } from '@mui/x-tree-view/internals';
2
- import { TreeViewDOMStructure, TreeViewItemId, TreeViewItemsReorderingAction, TreeViewValidItem } from '@mui/x-tree-view/models';
3
- import { DataSourceCache } from '@mui/x-tree-view/utils';
4
- import { TreeViewItemReorderPosition } from "../plugins/itemsReordering/index.js";
5
- import { DataSource } from "../plugins/lazyLoading/index.js";
1
+ import type { RichTreeViewStoreParameters, RichTreeViewState } from '@mui/x-tree-view/internals';
2
+ import type { TreeViewDOMStructure, TreeViewItemId, TreeViewItemsReorderingAction, TreeViewValidItem } from '@mui/x-tree-view/models';
3
+ import type { DataSourceCache } from '@mui/x-tree-view/utils';
4
+ import type { TreeViewItemReorderPosition } from "../plugins/itemsReordering/index.js";
5
+ import type { DataSource } from "../plugins/lazyLoading/index.js";
6
6
  export interface RichTreeViewProState<R extends TreeViewValidItem<R>, Multiple extends boolean | undefined> extends RichTreeViewState<R, Multiple> {
7
7
  /**
8
8
  * Determine if a given item can be reordered.
@@ -1,3 +1,3 @@
1
- import { TreeViewParametersToStateMapper } from '@mui/x-tree-view/internals';
2
- import { RichTreeViewProStoreParameters, RichTreeViewProState } from "./RichTreeViewProStore.types.mjs";
1
+ import type { TreeViewParametersToStateMapper } from '@mui/x-tree-view/internals';
2
+ import type { RichTreeViewProStoreParameters, RichTreeViewProState } from "./RichTreeViewProStore.types.mjs";
3
3
  export declare const parametersToStateMapper: TreeViewParametersToStateMapper<any, any, RichTreeViewProState<any, any>, RichTreeViewProStoreParameters<any, any>>;
@@ -1,3 +1,3 @@
1
- import { TreeViewParametersToStateMapper } from '@mui/x-tree-view/internals';
2
- import { RichTreeViewProStoreParameters, RichTreeViewProState } from "./RichTreeViewProStore.types.js";
1
+ import type { TreeViewParametersToStateMapper } from '@mui/x-tree-view/internals';
2
+ import type { RichTreeViewProStoreParameters, RichTreeViewProState } from "./RichTreeViewProStore.types.js";
3
3
  export declare const parametersToStateMapper: TreeViewParametersToStateMapper<any, any, RichTreeViewProState<any, any>, RichTreeViewProStoreParameters<any, any>>;
@@ -1,6 +1,6 @@
1
- import { TreeViewItemId } from '@mui/x-tree-view/models';
2
- import { TreeViewItemItemReorderingValidActions } from "./types.mjs";
3
- import { RichTreeViewProStore } from "../../RichTreeViewProStore/RichTreeViewProStore.mjs";
1
+ import type { TreeViewItemId } from '@mui/x-tree-view/models';
2
+ import type { TreeViewItemItemReorderingValidActions } from "./types.mjs";
3
+ import type { RichTreeViewProStore } from "../../RichTreeViewProStore/RichTreeViewProStore.mjs";
4
4
  export declare class TreeViewItemsReorderingPlugin {
5
5
  private store;
6
6
  constructor(store: RichTreeViewProStore<any, any>);
@@ -1,6 +1,6 @@
1
- import { TreeViewItemId } from '@mui/x-tree-view/models';
2
- import { TreeViewItemItemReorderingValidActions } from "./types.js";
3
- import { RichTreeViewProStore } from "../../RichTreeViewProStore/RichTreeViewProStore.js";
1
+ import type { TreeViewItemId } from '@mui/x-tree-view/models';
2
+ import type { TreeViewItemItemReorderingValidActions } from "./types.js";
3
+ import type { RichTreeViewProStore } from "../../RichTreeViewProStore/RichTreeViewProStore.js";
4
4
  export declare class TreeViewItemsReorderingPlugin {
5
5
  private store;
6
6
  constructor(store: RichTreeViewProStore<any, any>);
@@ -1,7 +1,7 @@
1
1
  import * as React from 'react';
2
- import { TreeViewCancellableEventHandler } from '@mui/x-tree-view/models';
3
- import { TreeViewItemPlugin } from '@mui/x-tree-view/internals';
4
- import { TreeItemDragAndDropOverlayProps } from '@mui/x-tree-view/TreeItemDragAndDropOverlay';
2
+ import type { TreeViewCancellableEventHandler } from '@mui/x-tree-view/models';
3
+ import type { TreeViewItemPlugin } from '@mui/x-tree-view/internals';
4
+ import type { TreeItemDragAndDropOverlayProps } from '@mui/x-tree-view/TreeItemDragAndDropOverlay';
5
5
  export declare const useTreeViewItemsReorderingItemPlugin: TreeViewItemPlugin;
6
6
  interface UseTreeItemRootSlotPropsFromItemsReordering {
7
7
  draggable?: true;
@@ -1,7 +1,7 @@
1
1
  import * as React from 'react';
2
- import { TreeViewCancellableEventHandler } from '@mui/x-tree-view/models';
3
- import { TreeViewItemPlugin } from '@mui/x-tree-view/internals';
4
- import { TreeItemDragAndDropOverlayProps } from '@mui/x-tree-view/TreeItemDragAndDropOverlay';
2
+ import type { TreeViewCancellableEventHandler } from '@mui/x-tree-view/models';
3
+ import type { TreeViewItemPlugin } from '@mui/x-tree-view/internals';
4
+ import type { TreeItemDragAndDropOverlayProps } from '@mui/x-tree-view/TreeItemDragAndDropOverlay';
5
5
  export declare const useTreeViewItemsReorderingItemPlugin: TreeViewItemPlugin;
6
6
  interface UseTreeItemRootSlotPropsFromItemsReordering {
7
7
  draggable?: true;
@@ -1,5 +1,5 @@
1
- import { TreeViewItemId } from '@mui/x-tree-view/models';
2
- import { RichTreeViewProState } from "../../RichTreeViewProStore/index.mjs";
1
+ import type { TreeViewItemId } from '@mui/x-tree-view/models';
2
+ import type { RichTreeViewProState } from "../../RichTreeViewProStore/index.mjs";
3
3
  export declare const itemsReorderingSelectors: {
4
4
  /**
5
5
  * Gets the properties of the current reordering.
@@ -1,5 +1,5 @@
1
- import { TreeViewItemId } from '@mui/x-tree-view/models';
2
- import { RichTreeViewProState } from "../../RichTreeViewProStore/index.js";
1
+ import type { TreeViewItemId } from '@mui/x-tree-view/models';
2
+ import type { RichTreeViewProState } from "../../RichTreeViewProStore/index.js";
3
3
  export declare const itemsReorderingSelectors: {
4
4
  /**
5
5
  * Gets the properties of the current reordering.
@@ -1,4 +1,4 @@
1
- import { TreeViewItemsReorderingAction } from '@mui/x-tree-view/models';
1
+ import type { TreeViewItemsReorderingAction } from '@mui/x-tree-view/models';
2
2
  export interface TreeViewItemReorderPosition {
3
3
  parentId: string | null;
4
4
  index: number;
@@ -1,4 +1,4 @@
1
- import { TreeViewItemsReorderingAction } from '@mui/x-tree-view/models';
1
+ import type { TreeViewItemsReorderingAction } from '@mui/x-tree-view/models';
2
2
  export interface TreeViewItemReorderPosition {
3
3
  parentId: string | null;
4
4
  index: number;
@@ -1,6 +1,6 @@
1
- import { TreeViewItemId, TreeViewItemsReorderingAction, TreeViewValidItem } from '@mui/x-tree-view/models';
2
- import { TreeViewItemItemReorderingValidActions, TreeViewItemReorderPosition } from "./types.mjs";
3
- import { RichTreeViewProState, RichTreeViewProStore } from "../../RichTreeViewProStore/index.mjs";
1
+ import type { TreeViewItemId, TreeViewItemsReorderingAction, TreeViewValidItem } from '@mui/x-tree-view/models';
2
+ import type { TreeViewItemItemReorderingValidActions, TreeViewItemReorderPosition } from "./types.mjs";
3
+ import type { RichTreeViewProState, RichTreeViewProStore } from "../../RichTreeViewProStore/index.mjs";
4
4
  /**
5
5
  * Checks if the item with the id itemIdB is an ancestor of the item with the id itemIdA.
6
6
  */
@@ -1,6 +1,6 @@
1
- import { TreeViewItemId, TreeViewItemsReorderingAction, TreeViewValidItem } from '@mui/x-tree-view/models';
2
- import { TreeViewItemItemReorderingValidActions, TreeViewItemReorderPosition } from "./types.js";
3
- import { RichTreeViewProState, RichTreeViewProStore } from "../../RichTreeViewProStore/index.js";
1
+ import type { TreeViewItemId, TreeViewItemsReorderingAction, TreeViewValidItem } from '@mui/x-tree-view/models';
2
+ import type { TreeViewItemItemReorderingValidActions, TreeViewItemReorderPosition } from "./types.js";
3
+ import type { RichTreeViewProState, RichTreeViewProStore } from "../../RichTreeViewProStore/index.js";
4
4
  /**
5
5
  * Checks if the item with the id itemIdB is an ancestor of the item with the id itemIdA.
6
6
  */
@@ -1,5 +1,5 @@
1
- import { TreeViewItemId, TreeViewValidItem } from '@mui/x-tree-view/models';
2
- import { RichTreeViewProStore } from "../../RichTreeViewProStore/RichTreeViewProStore.mjs";
1
+ import type { TreeViewItemId, TreeViewValidItem } from '@mui/x-tree-view/models';
2
+ import type { RichTreeViewProStore } from "../../RichTreeViewProStore/RichTreeViewProStore.mjs";
3
3
  export declare const TREE_VIEW_LAZY_LOADED_ITEMS_INITIAL_STATE: {
4
4
  loading: {};
5
5
  errors: {};
@@ -1,5 +1,5 @@
1
- import { TreeViewItemId, TreeViewValidItem } from '@mui/x-tree-view/models';
2
- import { RichTreeViewProStore } from "../../RichTreeViewProStore/RichTreeViewProStore.js";
1
+ import type { TreeViewItemId, TreeViewValidItem } from '@mui/x-tree-view/models';
2
+ import type { RichTreeViewProStore } from "../../RichTreeViewProStore/RichTreeViewProStore.js";
3
3
  export declare const TREE_VIEW_LAZY_LOADED_ITEMS_INITIAL_STATE: {
4
4
  loading: {};
5
5
  errors: {};
@@ -1,4 +1,4 @@
1
- import { TreeViewItemId } from '@mui/x-tree-view/models';
1
+ import type { TreeViewItemId } from '@mui/x-tree-view/models';
2
2
  export type DataSource<R extends {}> = {
3
3
  /**
4
4
  * Used to determine the number of children the item has.
@@ -1,4 +1,4 @@
1
- import { TreeViewItemId } from '@mui/x-tree-view/models';
1
+ import type { TreeViewItemId } from '@mui/x-tree-view/models';
2
2
  export type DataSource<R extends {}> = {
3
3
  /**
4
4
  * Used to determine the number of children the item has.
@@ -1,5 +1,5 @@
1
- import { TreeViewItemId, TreeViewValidItem } from '@mui/x-tree-view/models';
2
- import { TreeViewLazyLoadingPlugin } from "./TreeViewLazyLoadingPlugin.mjs";
1
+ import type { TreeViewItemId, TreeViewValidItem } from '@mui/x-tree-view/models';
2
+ import type { TreeViewLazyLoadingPlugin } from "./TreeViewLazyLoadingPlugin.mjs";
3
3
  export declare enum RequestStatus {
4
4
  QUEUED = 0,
5
5
  PENDING = 1,
@@ -1,5 +1,5 @@
1
- import { TreeViewItemId, TreeViewValidItem } from '@mui/x-tree-view/models';
2
- import { TreeViewLazyLoadingPlugin } from "./TreeViewLazyLoadingPlugin.js";
1
+ import type { TreeViewItemId, TreeViewValidItem } from '@mui/x-tree-view/models';
2
+ import type { TreeViewLazyLoadingPlugin } from "./TreeViewLazyLoadingPlugin.js";
3
3
  export declare enum RequestStatus {
4
4
  QUEUED = 0,
5
5
  PENDING = 1,
@@ -1,4 +1,4 @@
1
- import { RichTreeViewProState } from "../../RichTreeViewProStore/index.mjs";
1
+ import type { RichTreeViewProState } from "../../RichTreeViewProStore/index.mjs";
2
2
  export declare const virtualizationSelectors: {
3
3
  enabled: (state: RichTreeViewProState<any, any>) => boolean;
4
4
  };
@@ -1,4 +1,4 @@
1
- import { RichTreeViewProState } from "../../RichTreeViewProStore/index.js";
1
+ import type { RichTreeViewProState } from "../../RichTreeViewProStore/index.js";
2
2
  export declare const virtualizationSelectors: {
3
3
  enabled: (state: RichTreeViewProState<any, any>) => boolean;
4
4
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mui/x-tree-view-pro",
3
- "version": "9.7.0",
3
+ "version": "9.9.0",
4
4
  "author": "MUI Team",
5
5
  "description": "The Pro plan edition of the MUI X Tree View components.",
6
6
  "license": "SEE LICENSE IN LICENSE",
@@ -33,17 +33,17 @@
33
33
  "dependencies": {
34
34
  "@babel/runtime": "^7.29.7",
35
35
  "@base-ui/utils": "^0.3.0",
36
- "@mui/utils": "^9.1.1",
36
+ "@mui/utils": "^9.2.0",
37
37
  "@types/react-transition-group": "^4.4.12",
38
38
  "clsx": "^2.1.1",
39
39
  "prop-types": "^15.8.1",
40
40
  "react-transition-group": "^4.4.5",
41
41
  "reselect": "^5.2.0",
42
42
  "use-sync-external-store": "^1.6.0",
43
- "@mui/x-internals": "^9.7.0",
44
- "@mui/x-license": "^9.7.0",
45
- "@mui/x-tree-view": "^9.7.0",
46
- "@mui/x-virtualizer": "0.5.0"
43
+ "@mui/x-internals": "^9.9.0",
44
+ "@mui/x-tree-view": "^9.9.0",
45
+ "@mui/x-virtualizer": "0.6.0",
46
+ "@mui/x-license": "^9.9.0"
47
47
  },
48
48
  "peerDependencies": {
49
49
  "@emotion/react": "^11.9.0",
@@ -1,4 +1,4 @@
1
- import { ComponentsProps, ComponentsOverrides, ComponentsVariants } from '@mui/material/styles';
1
+ import type { ComponentsProps, ComponentsOverrides, ComponentsVariants } from '@mui/material/styles';
2
2
  export interface TreeViewProComponents<Theme = unknown> {
3
3
  MuiRichTreeViewPro?: {
4
4
  defaultProps?: ComponentsProps['MuiRichTreeViewPro'];
@@ -1,4 +1,4 @@
1
- import { ComponentsProps, ComponentsOverrides, ComponentsVariants } from '@mui/material/styles';
1
+ import type { ComponentsProps, ComponentsOverrides, ComponentsVariants } from '@mui/material/styles';
2
2
  export interface TreeViewProComponents<Theme = unknown> {
3
3
  MuiRichTreeViewPro?: {
4
4
  defaultProps?: ComponentsProps['MuiRichTreeViewPro'];
@@ -1,4 +1,4 @@
1
- import { RichTreeViewProClassKey } from "../RichTreeViewPro/index.mjs";
1
+ import type { RichTreeViewProClassKey } from "../RichTreeViewPro/index.mjs";
2
2
  export interface TreeViewProComponentNameToClassKey {
3
3
  MuiRichTreeViewPro: RichTreeViewProClassKey;
4
4
  }
@@ -1,4 +1,4 @@
1
- import { RichTreeViewProClassKey } from "../RichTreeViewPro/index.js";
1
+ import type { RichTreeViewProClassKey } from "../RichTreeViewPro/index.js";
2
2
  export interface TreeViewProComponentNameToClassKey {
3
3
  MuiRichTreeViewPro: RichTreeViewProClassKey;
4
4
  }
@@ -1,4 +1,4 @@
1
- import { RichTreeViewProProps } from "../RichTreeViewPro/index.mjs";
1
+ import type { RichTreeViewProProps } from "../RichTreeViewPro/index.mjs";
2
2
  export interface TreeViewProComponentsPropsList {
3
3
  MuiRichTreeViewPro: RichTreeViewProProps<any, any>;
4
4
  }
@@ -1,4 +1,4 @@
1
- import { RichTreeViewProProps } from "../RichTreeViewPro/index.js";
1
+ import type { RichTreeViewProProps } from "../RichTreeViewPro/index.js";
2
2
  export interface TreeViewProComponentsPropsList {
3
3
  MuiRichTreeViewPro: RichTreeViewProProps<any, any>;
4
4
  }