@mui/x-data-grid-premium 9.0.1 → 9.0.3

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 CHANGED
@@ -1,5 +1,262 @@
1
1
  # Changelog
2
2
 
3
+ ## 9.0.3
4
+
5
+ _Apr 27, 2026_
6
+
7
+ We'd like to extend a big thank you to the 16 contributors who made this release possible. Here are some highlights ✨:
8
+
9
+ - ⌨️ Keyboard support for creating events in the Scheduler
10
+
11
+ Special thanks go out to these community members for their valuable contributions:
12
+ @supunsathsara, @ZAKIURREHMAN
13
+
14
+ The following team members contributed to this release:
15
+ @aemartos, @alexfauquette, @arminmeh, @brijeshb42, @Janpot, @JCQuintas, @LukasTy, @MBilalShafi, @michelengelen, @oliviertassinari, @rita-codes, @romgrk, @sai6855, @siriwatknp
16
+
17
+ ### Data Grid
18
+
19
+ #### `@mui/x-data-grid@9.0.3`
20
+
21
+ - [DataGrid] Fix `:first-child` SSR warning when `MuiDataGrid.styleOverrides` is set (#22081) @siriwatknp
22
+ - [DataGrid] Fix row reordering when filter hides rows (#22096) @siriwatknp
23
+ - [DataGrid] Remove unused `LayoutDataGridLegacy` class (#22009) @romgrk
24
+ - [DataGrid] Remove unused code, clean up grid-related utilities and deprecate `GridPanelHeader` (#22112) @sai6855
25
+ - [DataGrid] Fix columns cutting off after resizing (#22088) @ZAKIURREHMAN
26
+
27
+ #### `@mui/x-data-grid-pro@9.0.3` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
28
+
29
+ Same changes as in `@mui/x-data-grid@9.0.3`.
30
+
31
+ #### `@mui/x-data-grid-premium@9.0.3` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
32
+
33
+ Same changes as in `@mui/x-data-grid-pro@9.0.3`, plus:
34
+
35
+ - [DataGridPremium] Fix row grouping model updates not being reflected (#22122) @MBilalShafi
36
+
37
+ ### Date and Time Pickers
38
+
39
+ #### `@mui/x-date-pickers@9.0.3`
40
+
41
+ - [pickers] Fix `DateRangeCalendar` drag with `AdapterDayjs` plain-constructor values (#22165) @LukasTy
42
+ - [pickers] Fix disabled state not overriding error border color (#21169) @supunsathsara
43
+ - [pickers] Forward `data-*` and `aria-*` attributes to the root (#22147) @LukasTy
44
+ - [pickers] Support `K` and `k` hour format tokens (#22108) @michelengelen
45
+
46
+ #### `@mui/x-date-pickers-pro@9.0.3` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
47
+
48
+ Same changes as in `@mui/x-date-pickers@9.0.3`, plus:
49
+
50
+ - [DateRangeCalendar] Ensure date dragging triggers regardless of trigger element (#21868) @michelengelen
51
+
52
+ ### Charts
53
+
54
+ #### `@mui/x-charts@9.0.3`
55
+
56
+ - [charts] Centralize WebGL clear/render cycle (context-based) (#22127) @JCQuintas
57
+ - [charts] Fix closest series detection for line charts (#22168) @alexfauquette
58
+ - [charts] Fix radius grid lines when axis uses point scale (#22134) @alexfauquette
59
+ - [charts] Use cubic solver for berzier intersection (#22152) @alexfauquette
60
+
61
+ #### `@mui/x-charts-pro@9.0.3` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
62
+
63
+ Same changes as in `@mui/x-charts@9.0.3`, plus:
64
+
65
+ - [charts-pro] Fix wheel zoom clamping with custom `minStart`/`maxEnd` (#22159) @JCQuintas
66
+
67
+ #### `@mui/x-charts-premium@9.0.3` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
68
+
69
+ Same changes as in `@mui/x-charts-pro@9.0.3`, plus:
70
+
71
+ - [charts] Create a `'radialLine'` series type (#22066) @alexfauquette
72
+ - [charts] Plot radial line (#22133) @alexfauquette
73
+ - [charts] Remove `HeatmapWebGLRenderer` indirection (#22169) @JCQuintas
74
+
75
+ ### Tree View
76
+
77
+ #### `@mui/x-tree-view@9.0.2`
78
+
79
+ Internal changes.
80
+
81
+ #### `@mui/x-tree-view-pro@9.0.2` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
82
+
83
+ Same changes as in `@mui/x-tree-view@9.0.2`.
84
+
85
+ ### Scheduler
86
+
87
+ #### Breaking changes
88
+
89
+ - The `views` of `EventTimelinePremium` have been renamed to `presets`, with names that describe the header layout. The props `view`/`defaultView`/`views`/`onViewChange` are now `preset`/`defaultPreset`/`presets`/`onPresetChange`, and the type `EventTimelinePremiumView` is now `EventTimelinePremiumPreset`.
90
+
91
+ | Old | New |
92
+ | :------- | :------------- |
93
+ | `time` | `dayAndHour` |
94
+ | `days` | `day` |
95
+ | `weeks` | `dayAndWeek` |
96
+ | `months` | `monthAndYear` |
97
+ | `years` | `year` |
98
+
99
+ CSS variables (`--time-cell-width`, etc.) and headless store state (`state.view`, `setView`) follow the same rename. The `presets` array is now sorted internally against a canonical zoom order.
100
+
101
+ #### `@mui/x-scheduler@9.0.0-alpha.3`
102
+
103
+ - [scheduler] Allow creating events via keyboard - EventCalendar (#21967) @rita-codes
104
+ - [scheduler] Prefix element IDs with a unique Scheduler instance ID (#22109) @rita-codes
105
+
106
+ #### `@mui/x-scheduler-premium@9.0.0-alpha.3` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
107
+
108
+ Same changes as in `@mui/x-scheduler@9.0.0-alpha.3`.
109
+
110
+ - [scheduler] Allow creating events via keyboard - `EventTimeline` (#22119) @rita-codes
111
+ - [scheduler] Rename `EventTimeline` `views` to ordered presets (#22130) @rita-codes
112
+
113
+ ### Docs
114
+
115
+ - [docs] Cleanup generated llm md files for chat (#22163) @brijeshb42
116
+ - [docs] Fix `highlightScope` description (#22154) @alexfauquette
117
+ - [docs] Remove obsolete v7 deprecation warning for `dayOfWeekFormatter` (#22111) @LukasTy
118
+ - [docs] Use mui.com for broken links checker known targets (#22129) @JCQuintas
119
+ - [docs] Document picker behavior inside MUI `Dialog` and provide recommended solutions (#22144) @michelengelen
120
+ - [docs] Improve v9 license key version mismatch error guidance (#22180) @aemartos
121
+
122
+ ### Core
123
+
124
+ - [code-infra] Reduce concurrency for package build to 5 (#22115) @Janpot
125
+ - [code-infra] Rename `docsx` alias to `docs` (#22155) @brijeshb42
126
+ - [docs-infra] Remove monorepo dependency (#22025) @brijeshb42
127
+ - [docs-infra] Use latest published packages (#22086) @brijeshb42
128
+ - [test] Refactor Pickers tests to async user-event (#22043) @LukasTy
129
+ - [test] Remove redundant explicit `unmount()` calls from Pickers tests (#22118) @LukasTy
130
+
131
+ ### Miscellaneous
132
+
133
+ - [infra] Update `.gitignore` to exclude `.claude/worktrees` (#22145) @michelengelen
134
+ - [infra] Enable branch tracking when creating release branch (#22177) @michelengelen
135
+ - [license] Add MIT license to `x-virtualizer` package (#22164) @michelengelen
136
+ - [website] Fix outdated MUI logos (#22117) @oliviertassinari
137
+ - [internal] Try avoiding store update when virtualization is disabled (#22093) @arminmeh
138
+
139
+ ## 9.0.2
140
+
141
+ <!-- generated comparing v9.0.1..master -->
142
+
143
+ _Apr 15, 2026_
144
+
145
+ We'd like to extend a big thank you to the 12 contributors who made this release possible. Here are some highlights ✨:
146
+
147
+ - 📊 Added `valueGetter` to axes and series configurations, which allow for dynamically getting data out of a `dataset`.
148
+ - 🐞 Bugfixes
149
+ - 📚 Docs updates
150
+
151
+ Special thanks go out to these community members for their valuable contributions:
152
+ @Anexus5919, @nk10nikhil
153
+
154
+ The following team members contributed to this release:
155
+ @aemartos, @alexfauquette, @brijeshb42, @Janpot, @JCQuintas, @LukasTy, @MBilalShafi, @michelengelen, @rita-codes, @sai6855
156
+
157
+ ### Data Grid
158
+
159
+ #### `@mui/x-data-grid@9.0.2`
160
+
161
+ - [DataGrid] Fix skeleton overlay backdrop issue (#21951) @MBilalShafi
162
+ - [DataGrid] Make `overridesResolver` of `ResizablePanelHandle` dynamic (#21724) @sai6855
163
+
164
+ #### `@mui/x-data-grid-pro@9.0.2` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
165
+
166
+ Same changes as in `@mui/x-data-grid@9.0.2`.
167
+
168
+ #### `@mui/x-data-grid-premium@9.0.2` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
169
+
170
+ Same changes as in `@mui/x-data-grid-pro@9.0.2`.
171
+
172
+ ### Date and Time Pickers
173
+
174
+ #### `@mui/x-date-pickers@9.0.2`
175
+
176
+ - [fields] Allow `openPickerButtonPosition` on single-input range fields (#22011) @LukasTy
177
+ - [pickers] Fix spurious `onBlur`/`onFocus` firing during field focus transitions (#22098) @LukasTy
178
+ - [pickers] Use `convertToMeridiem` utility in `transferDateSectionValue` (#22062) @michelengelen
179
+
180
+ #### `@mui/x-date-pickers-pro@9.0.2` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
181
+
182
+ Same changes as in `@mui/x-date-pickers@9.0.2`.
183
+
184
+ ### Charts
185
+
186
+ #### `@mui/x-charts@9.0.2`
187
+
188
+ - [charts] Add `valueGetter` to axes and series (#21963) @JCQuintas
189
+ - [charts] Create a `ChartsRadialDataProvider` (#22047) @alexfauquette
190
+ - [charts] Create a `ChartsRadialGrid` (#22085) @alexfauquette
191
+ - [charts] Deprecate `Scatter` component (#22060) @JCQuintas
192
+ - [charts] Remove duplicate `useThemeProps` call (#22045) @alexfauquette
193
+ - [charts] Simplify focus state handling in `BarElement` component (#22101) @sai6855
194
+
195
+ #### `@mui/x-charts-pro@9.0.2` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
196
+
197
+ Same changes as in `@mui/x-charts@9.0.2`, plus:
198
+
199
+ - [charts-pro] Add range buttons to toolbar (#21964) @JCQuintas
200
+
201
+ #### `@mui/x-charts-premium@9.0.2` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
202
+
203
+ Same changes as in `@mui/x-charts-pro@9.0.2`.
204
+
205
+ ### Tree View
206
+
207
+ #### `@mui/x-tree-view@9.0.2`
208
+
209
+ Internal changes.
210
+
211
+ #### `@mui/x-tree-view-pro@9.0.2` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
212
+
213
+ Same changes as in `@mui/x-tree-view@9.0.2`, plus:
214
+
215
+ - [tree view] Move `lazyLoadedItems` initialization to state initializer (#22073) @michelengelen
216
+
217
+ ### Scheduler
218
+
219
+ #### `@mui/x-scheduler@9.0.0-alpha.2`
220
+
221
+ - [scheduler] Add recurrence icon to recurring events in `EventTimeline` (#22019) (#22046) @nk10nikhil
222
+ - [scheduler] Reset scroll position when navigating to a new time period (#22036) @Anexus5919
223
+ - [l10n] Improve German (de-DE) locale (#21944) @rita-codes
224
+ - [l10n] Improve Portuguese - Portugal (pt-PT) locale & Improve Portuguese - Brazil (pt-BR) locale (#21943) @rita-codes
225
+
226
+ #### `@mui/x-scheduler-premium@9.0.0-alpha.2` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
227
+
228
+ Same changes as in `@mui/x-scheduler@9.0.0-alpha.2`.
229
+
230
+ ### Chat
231
+
232
+ #### `@mui/x-chat@9.0.0-alpha.1`
233
+
234
+ - Internal changes.
235
+
236
+ #### `@mui/x-chat-headless@9.0.0-alpha.1`
237
+
238
+ - Internal changes.
239
+
240
+ ### Docs
241
+
242
+ - [docs] Add data grid `isAnyOf` paste recipe (#21961) @MBilalShafi
243
+ - [docs] Add `@mui/material` upgrade requirement to v9 migration guides (#22068) @LukasTy
244
+ - [docs] Fix pages width with `disableToc` (#22051) @LukasTy
245
+ - [docs] Split charts axis page (#22069) @alexfauquette
246
+ - [docs] Update `ChartsRadialDataProvider` API page imports (#22072) @JCQuintas
247
+
248
+ ### Core
249
+
250
+ - [code-infra] Fix lock file (#22053) @JCQuintas
251
+ - [code-infra] Limit `release:build` lerna concurrency to 6 (#22077) @Janpot
252
+ - [docs-infra] Update monorepo dependency with relevant migration (#22041) @brijeshb42
253
+
254
+ ### Miscellaneous
255
+
256
+ - [telemetry] Skip runtime resolution when telemetry is disabled (#22078) @aemartos
257
+ - [test] Remove v7 suffix from test helpers and stale comments (#22023) @LukasTy
258
+ - [scheduler] Fix README for published packages (#22042) @rita-codes
259
+
3
260
  ## 9.0.1
4
261
 
5
262
  <!-- generated comparing v9.0.0..master -->
@@ -51,8 +51,8 @@ const configuration = {
51
51
  }
52
52
  };
53
53
  const packageInfo = {
54
- releaseDate: "MTc3NTYwNjQwMDAwMA==",
55
- version: "9.0.1",
54
+ releaseDate: "MTc3NzI0ODAwMDAwMA==",
55
+ version: "9.0.3",
56
56
  name: 'x-data-grid-premium'
57
57
  };
58
58
  const watermark = /*#__PURE__*/(0, _jsxRuntime.jsx)(_internals.Watermark, {
@@ -44,8 +44,8 @@ const configuration = {
44
44
  }
45
45
  };
46
46
  const packageInfo = {
47
- releaseDate: "MTc3NTYwNjQwMDAwMA==",
48
- version: "9.0.1",
47
+ releaseDate: "MTc3NzI0ODAwMDAwMA==",
48
+ version: "9.0.3",
49
49
  name: 'x-data-grid-premium'
50
50
  };
51
51
  const watermark = /*#__PURE__*/_jsx(Watermark, {
@@ -33,10 +33,10 @@ const useUtilityClasses = ownerState => {
33
33
  const ResizablePanelHandleRoot = (0, _styles.styled)('div', {
34
34
  name: 'MuiDataGrid',
35
35
  slot: 'ResizablePanelHandle',
36
- overridesResolver: (props, styles) => [{
37
- [`&.${_xDataGridPro.gridClasses['resizablePanelHandle--horizontal']}`]: styles['resizablePanelHandle--horizontal']
38
- }, {
39
- [`&.${_xDataGridPro.gridClasses['resizablePanelHandle--vertical']}`]: styles['resizablePanelHandle--vertical']
36
+ overridesResolver: ({
37
+ ownerState
38
+ }, styles) => [{
39
+ [`&.${_xDataGridPro.gridClasses[`resizablePanelHandle--${ownerState.direction}`]}`]: styles[`resizablePanelHandle--${ownerState.direction}`]
40
40
  }, styles.resizablePanelHandle]
41
41
  })({
42
42
  position: 'absolute',
@@ -26,10 +26,10 @@ const useUtilityClasses = ownerState => {
26
26
  const ResizablePanelHandleRoot = styled('div', {
27
27
  name: 'MuiDataGrid',
28
28
  slot: 'ResizablePanelHandle',
29
- overridesResolver: (props, styles) => [{
30
- [`&.${gridClasses['resizablePanelHandle--horizontal']}`]: styles['resizablePanelHandle--horizontal']
31
- }, {
32
- [`&.${gridClasses['resizablePanelHandle--vertical']}`]: styles['resizablePanelHandle--vertical']
29
+ overridesResolver: ({
30
+ ownerState
31
+ }, styles) => [{
32
+ [`&.${gridClasses[`resizablePanelHandle--${ownerState.direction}`]}`]: styles[`resizablePanelHandle--${ownerState.direction}`]
33
33
  }, styles.resizablePanelHandle]
34
34
  })({
35
35
  position: 'absolute',
@@ -50,7 +50,8 @@ const useGridDataSourcePremium = (apiRef, props) => {
50
50
  debouncedFetchRows,
51
51
  flatTreeStrategyProcessor,
52
52
  groupedDataStrategyProcessor,
53
- events
53
+ events,
54
+ stopPolling
54
55
  } = (0, _internals.useGridDataSourceBasePro)(apiRef, props, (0, _extends2.default)({}, !props.disableAggregation && Object.keys(aggregationModel).length > 0 ? {
55
56
  handleEditRow: handleEditRowWithAggregation
56
57
  } : {}, options));
@@ -103,6 +104,11 @@ See [server-side pivoting](https://mui.com/x/react-data-grid/server-side-data/pi
103
104
  const row = apiRef.current.getRow(groupId);
104
105
  return props.dataSource?.getAggregatedValue?.(row, field);
105
106
  }, [apiRef, props.dataSource]);
107
+ const handleRowGroupingModelChange = React.useCallback(() => {
108
+ apiRef.current.setRows([]);
109
+ stopPolling();
110
+ debouncedFetchRows();
111
+ }, [apiRef, debouncedFetchRows, stopPolling]);
106
112
  const privateApi = (0, _extends2.default)({}, api.private, {
107
113
  resolveGroupAggregation
108
114
  });
@@ -114,7 +120,7 @@ See [server-side pivoting](https://mui.com/x/react-data-grid/server-side-data/pi
114
120
  Object.entries(events).forEach(([event, handler]) => {
115
121
  (0, _xDataGridPro.useGridEvent)(apiRef, event, handler);
116
122
  });
117
- (0, _xDataGridPro.useGridEvent)(apiRef, 'rowGroupingModelChange', (0, _internals.runIf)(!pivotActive, () => debouncedFetchRows()));
123
+ (0, _xDataGridPro.useGridEvent)(apiRef, 'rowGroupingModelChange', (0, _internals.runIf)(!pivotActive && !!props.dataSource, handleRowGroupingModelChange));
118
124
  (0, _xDataGridPro.useGridEvent)(apiRef, 'aggregationModelChange', (0, _internals.runIf)(!pivotActive, () => debouncedFetchRows()));
119
125
  (0, _xDataGridPro.useGridEvent)(apiRef, 'pivotModeChange', (0, _internals.runIf)(!pivotActive, () => debouncedFetchRows()));
120
126
  (0, _xDataGridPro.useGridEvent)(apiRef, 'pivotModelChange', (0, _internals.runIf)(pivotActive, () => debouncedFetchRows()));
@@ -43,7 +43,8 @@ export const useGridDataSourcePremium = (apiRef, props) => {
43
43
  debouncedFetchRows,
44
44
  flatTreeStrategyProcessor,
45
45
  groupedDataStrategyProcessor,
46
- events
46
+ events,
47
+ stopPolling
47
48
  } = useGridDataSourceBasePro(apiRef, props, _extends({}, !props.disableAggregation && Object.keys(aggregationModel).length > 0 ? {
48
49
  handleEditRow: handleEditRowWithAggregation
49
50
  } : {}, options));
@@ -96,6 +97,11 @@ See [server-side pivoting](https://mui.com/x/react-data-grid/server-side-data/pi
96
97
  const row = apiRef.current.getRow(groupId);
97
98
  return props.dataSource?.getAggregatedValue?.(row, field);
98
99
  }, [apiRef, props.dataSource]);
100
+ const handleRowGroupingModelChange = React.useCallback(() => {
101
+ apiRef.current.setRows([]);
102
+ stopPolling();
103
+ debouncedFetchRows();
104
+ }, [apiRef, debouncedFetchRows, stopPolling]);
99
105
  const privateApi = _extends({}, api.private, {
100
106
  resolveGroupAggregation
101
107
  });
@@ -107,7 +113,7 @@ See [server-side pivoting](https://mui.com/x/react-data-grid/server-side-data/pi
107
113
  Object.entries(events).forEach(([event, handler]) => {
108
114
  addEventHandler(apiRef, event, handler);
109
115
  });
110
- useGridEvent(apiRef, 'rowGroupingModelChange', runIf(!pivotActive, () => debouncedFetchRows()));
116
+ useGridEvent(apiRef, 'rowGroupingModelChange', runIf(!pivotActive && !!props.dataSource, handleRowGroupingModelChange));
111
117
  useGridEvent(apiRef, 'aggregationModelChange', runIf(!pivotActive, () => debouncedFetchRows()));
112
118
  useGridEvent(apiRef, 'pivotModeChange', runIf(!pivotActive, () => debouncedFetchRows()));
113
119
  useGridEvent(apiRef, 'pivotModelChange', runIf(pivotActive, () => debouncedFetchRows()));
package/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/x-data-grid-premium v9.0.1
2
+ * @mui/x-data-grid-premium v9.0.3
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-data-grid-premium v9.0.1
2
+ * @mui/x-data-grid-premium v9.0.3
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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mui/x-data-grid-premium",
3
- "version": "9.0.1",
3
+ "version": "9.0.3",
4
4
  "author": "MUI Team",
5
5
  "description": "The Premium plan edition of the MUI X Data Grid Components.",
6
6
  "license": "SEE LICENSE IN LICENSE",
@@ -33,15 +33,15 @@
33
33
  "directory": "packages/x-data-grid-premium"
34
34
  },
35
35
  "dependencies": {
36
- "@babel/runtime": "^7.28.6",
36
+ "@babel/runtime": "^7.29.2",
37
37
  "@mui/utils": "9.0.0",
38
38
  "@mui/x-internal-exceljs-fork": "4.4.5",
39
39
  "clsx": "^2.1.1",
40
40
  "prop-types": "^15.8.1",
41
- "@mui/x-data-grid": "^9.0.1",
42
- "@mui/x-data-grid-pro": "^9.0.1",
41
+ "@mui/x-data-grid": "^9.0.3",
42
+ "@mui/x-data-grid-pro": "^9.0.3",
43
43
  "@mui/x-internals": "^9.0.0",
44
- "@mui/x-license": "^9.0.0"
44
+ "@mui/x-license": "^9.0.2"
45
45
  },
46
46
  "peerDependencies": {
47
47
  "@emotion/react": "^11.9.0",