@mui/x-charts-pro 8.8.0 → 8.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.
- package/BarChartPro/BarChartPro.js +1 -1
- package/CHANGELOG.md +101 -24
- package/ChartDataProviderPro/ChartDataProviderPro.js +1 -1
- package/FunnelChart/FunnelChart.d.ts +3 -2
- package/FunnelChart/FunnelChart.js +1 -1
- package/FunnelChart/index.d.ts +1 -1
- package/Heatmap/Heatmap.d.ts +3 -2
- package/Heatmap/Heatmap.js +1 -1
- package/Heatmap/index.d.ts +1 -0
- package/LineChartPro/LineChartPro.js +1 -1
- package/PieChartPro/PieChartPro.js +1 -1
- package/RadarChartPro/RadarChartPro.js +20 -1
- package/ScatterChartPro/ScatterChartPro.js +1 -1
- package/esm/BarChartPro/BarChartPro.js +1 -1
- package/esm/ChartDataProviderPro/ChartDataProviderPro.js +1 -1
- package/esm/FunnelChart/FunnelChart.d.ts +3 -2
- package/esm/FunnelChart/FunnelChart.js +1 -1
- package/esm/FunnelChart/index.d.ts +1 -1
- package/esm/Heatmap/Heatmap.d.ts +3 -2
- package/esm/Heatmap/Heatmap.js +1 -1
- package/esm/Heatmap/index.d.ts +1 -0
- package/esm/LineChartPro/LineChartPro.js +1 -1
- package/esm/PieChartPro/PieChartPro.js +1 -1
- package/esm/RadarChartPro/RadarChartPro.js +20 -1
- package/esm/ScatterChartPro/ScatterChartPro.js +1 -1
- package/esm/index.js +3 -3
- package/index.js +3 -3
- package/package.json +5 -5
|
@@ -248,7 +248,7 @@ process.env.NODE_ENV !== "production" ? BarChartPro.propTypes = {
|
|
|
248
248
|
onZoomChange: _propTypes.default.func,
|
|
249
249
|
/**
|
|
250
250
|
* The series to display in the bar chart.
|
|
251
|
-
* An array of [[
|
|
251
|
+
* An array of [[BarSeries]] objects.
|
|
252
252
|
*/
|
|
253
253
|
series: _propTypes.default.arrayOf(_propTypes.default.object).isRequired,
|
|
254
254
|
/**
|
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,101 @@
|
|
|
5
5
|
All notable changes to this project will be documented in this file.
|
|
6
6
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
7
7
|
|
|
8
|
+
## 8.9.0
|
|
9
|
+
|
|
10
|
+
_Jul 17, 2025_
|
|
11
|
+
|
|
12
|
+
We'd like to extend a big thank you to the 10 contributors who made this release possible. Here are some highlights ✨:
|
|
13
|
+
|
|
14
|
+
- ✨ Improve the drag and drop interaction for Data Grid [row reordering](https://mui.com/x/react-data-grid/row-ordering/) feature. It uses a drop indicator to point to the position the row would be moving to.
|
|
15
|
+
|
|
16
|
+
https://github.com/user-attachments/assets/37284c4f-e8d4-4fc6-a6af-a780592905ef
|
|
17
|
+
|
|
18
|
+
- 🚀 Improve Data Grid Pivoting and Aggregation performance
|
|
19
|
+
|
|
20
|
+
- 📊 Add `minBarSize` to set a minimum height for bars
|
|
21
|
+
|
|
22
|
+
Special thanks go out to the community members for their valuable contributions:
|
|
23
|
+
@lauri865
|
|
24
|
+
|
|
25
|
+
The following are all team members who have contributed to this release:
|
|
26
|
+
@alexfauquette, @arminmeh, @bernardobelchior, @flaviendelangle, @JCQuintas, @LukasTy, @mapache-salvaje, @noraleonte, @MBilalShafi
|
|
27
|
+
|
|
28
|
+
### Data Grid
|
|
29
|
+
|
|
30
|
+
#### `@mui/x-data-grid@8.9.0`
|
|
31
|
+
|
|
32
|
+
Internal changes.
|
|
33
|
+
|
|
34
|
+
#### `@mui/x-data-grid-pro@8.9.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
35
|
+
|
|
36
|
+
Same changes as in `@mui/x-data-grid@8.9.0`, plus:
|
|
37
|
+
|
|
38
|
+
- [DataGridPro] Row reorder using drop indicator (#18627) @MBilalShafi
|
|
39
|
+
|
|
40
|
+
#### `@mui/x-data-grid-premium@8.9.0` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
41
|
+
|
|
42
|
+
Same changes as in `@mui/x-data-grid-pro@8.9.0`, plus:
|
|
43
|
+
|
|
44
|
+
- [DataGridPremium] Allow group column overrides with pivoting (#18765) @arminmeh
|
|
45
|
+
- [DataGridPremium] Support sort-dependent aggregation and improve performance (#18348) @lauri865
|
|
46
|
+
|
|
47
|
+
### Date and Time Pickers
|
|
48
|
+
|
|
49
|
+
#### `@mui/x-date-pickers@8.9.0`
|
|
50
|
+
|
|
51
|
+
- [pickers] Avoid useless date creation in `AdapterDayjs` (#18429) @flaviendelangle
|
|
52
|
+
- [pickers] Fix `timeSteps` JSDoc (#18807) @LukasTy
|
|
53
|
+
|
|
54
|
+
#### `@mui/x-date-pickers-pro@8.9.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
55
|
+
|
|
56
|
+
Same changes as in `@mui/x-date-pickers@8.9.0`.
|
|
57
|
+
|
|
58
|
+
### Charts
|
|
59
|
+
|
|
60
|
+
#### `@mui/x-charts@8.9.0`
|
|
61
|
+
|
|
62
|
+
- [charts] Add `minBarSize` to prevent bars from having 0 height (#18798) @JCQuintas
|
|
63
|
+
- [charts] Add click listener to radar charts (#18773) @alexfauquette
|
|
64
|
+
- [charts] Improve scatter chart pointer move performance (#18775) @bernardobelchior
|
|
65
|
+
- [charts] Simplify radar internal hooks (#18760) @alexfauquette
|
|
66
|
+
- [charts] `minBarSize` now ignores `0` and `null` values (#18816) @JCQuintas
|
|
67
|
+
- [charts] Fix y-axis tick label overlap when using log scale (#18744) @bernardobelchior
|
|
68
|
+
- [charts] Expose <ChartType>Series type for all chart types (#18805) @bernardobelchior
|
|
69
|
+
|
|
70
|
+
#### `@mui/x-charts-pro@8.9.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
71
|
+
|
|
72
|
+
Same changes as in `@mui/x-charts@8.9.0` plus:
|
|
73
|
+
|
|
74
|
+
[charts-pro] Fix issue where charts gestures weren't properly working when inside the shadow-dom (#18837) @JCQuintas
|
|
75
|
+
|
|
76
|
+
### Tree View
|
|
77
|
+
|
|
78
|
+
#### `@mui/x-tree-view@8.9.0`
|
|
79
|
+
|
|
80
|
+
Internal changes.
|
|
81
|
+
|
|
82
|
+
#### `@mui/x-tree-view-pro@8.9.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
83
|
+
|
|
84
|
+
Same changes as in `@mui/x-tree-view@8.9.0`.
|
|
85
|
+
|
|
86
|
+
### Codemod
|
|
87
|
+
|
|
88
|
+
#### `@mui/x-codemod@8.9.0`
|
|
89
|
+
|
|
90
|
+
Internal changes.
|
|
91
|
+
|
|
92
|
+
### Docs
|
|
93
|
+
|
|
94
|
+
- [data grid][docs] Revise the Pro filter docs (#17929) @mapache-salvaje
|
|
95
|
+
- [charts][docs] Move mark outside clip-path (#18806) @alexfauquette
|
|
96
|
+
|
|
97
|
+
### Miscellaneous
|
|
98
|
+
|
|
99
|
+
- [code-infra] Fix ESLint `import` restriction rule for test files (#18669) @LukasTy
|
|
100
|
+
- [code-infra] Remove charts benchmarks dependency on `@testing-library/jest-dom` (#18800) @bernardobelchior
|
|
101
|
+
- [code-infra] Remove duplicate dependency from `eslint-plugin-mui-x` (#18797) @bernardobelchior
|
|
102
|
+
|
|
8
103
|
## 8.8.0
|
|
9
104
|
|
|
10
105
|
_Jul 11, 2025_
|
|
@@ -216,6 +311,7 @@ We'd like to extend a big thank you to the 12 contributors who made this release
|
|
|
216
311
|
- 📅 Add `usePickerAdapter` hook to access the date adapter.
|
|
217
312
|
|
|
218
313
|
You can use the adapter in your custom components if you need them to work with multiple date libraries — [Learn more](https://mui.com/x/react-date-pickers/custom-components/#access-date-adapter).
|
|
314
|
+
|
|
219
315
|
- 🌎 Improve Danish (da-DK) locale
|
|
220
316
|
- 🌎 Improve German (de-DE) locale
|
|
221
317
|
|
|
@@ -234,13 +330,13 @@ The following are all team members who have contributed to this release:
|
|
|
234
330
|
- [l10n] Improve Danish (da-DK) locale (#18428) @ShahrazH
|
|
235
331
|
- [l10n] Improve German (de-DE) locale (#18388) @omalyutin
|
|
236
332
|
|
|
237
|
-
#### `@mui/x-data-grid-pro@8.6.0` [](https://mui.com/r/x-pro-svg-link
|
|
333
|
+
#### `@mui/x-data-grid-pro@8.6.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
238
334
|
|
|
239
335
|
Same changes as in `@mui/x-data-grid@8.6.0`, plus:
|
|
240
336
|
|
|
241
337
|
- [DataGridPro] Fix lazy loading params calculated from rendering context (#18460) @arminmeh
|
|
242
338
|
|
|
243
|
-
#### `@mui/x-data-grid-premium@8.6.0` [](https://mui.com/r/x-premium-svg-link
|
|
339
|
+
#### `@mui/x-data-grid-premium@8.6.0` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
244
340
|
|
|
245
341
|
Same changes as in `@mui/x-data-grid-pro@8.6.0`.
|
|
246
342
|
|
|
@@ -252,7 +348,7 @@ Same changes as in `@mui/x-data-grid-pro@8.6.0`.
|
|
|
252
348
|
- [pickers] Fix to use latest `value` when updating `lastCommittedValue` in internal state (#18518) @LukasTy
|
|
253
349
|
- [pickers] Use `usePickerAdapter` hook internally instead of `useUtils` (#18465) @LukasTy
|
|
254
350
|
|
|
255
|
-
#### `@mui/x-date-pickers-pro@8.6.0` [](https://mui.com/r/x-pro-svg-link
|
|
351
|
+
#### `@mui/x-date-pickers-pro@8.6.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
256
352
|
|
|
257
353
|
Same changes as in `@mui/x-date-pickers@8.6.0`.
|
|
258
354
|
|
|
@@ -269,7 +365,7 @@ Same changes as in `@mui/x-date-pickers@8.6.0`.
|
|
|
269
365
|
- [charts] Improve touch behavior for polar axis (#18531) @JCQuintas
|
|
270
366
|
- [charts] Add `isElementInside` helper (#18530) @JCQuintas
|
|
271
367
|
|
|
272
|
-
#### `@mui/x-charts-pro@8.6.0` [](https://mui.com/r/x-pro-svg-link
|
|
368
|
+
#### `@mui/x-charts-pro@8.6.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
273
369
|
|
|
274
370
|
Same changes as in `@mui/x-charts@8.6.0`, plus:
|
|
275
371
|
|
|
@@ -283,7 +379,7 @@ Same changes as in `@mui/x-charts@8.6.0`, plus:
|
|
|
283
379
|
|
|
284
380
|
Internal changes.
|
|
285
381
|
|
|
286
|
-
#### `@mui/x-tree-view-pro@8.6.0` [](https://mui.com/r/x-pro-svg-link
|
|
382
|
+
#### `@mui/x-tree-view-pro@8.6.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
287
383
|
|
|
288
384
|
Same changes as in `@mui/x-tree-view@8.6.0`, plus:
|
|
289
385
|
|
|
@@ -1498,7 +1594,6 @@ Same changes as in `@mui/x-date-pickers@8.0.0-beta.3`.
|
|
|
1498
1594
|
|
|
1499
1595
|
- Removed `react-spring` as a dependency of `@mui/x-charts`.
|
|
1500
1596
|
A consequence of this change is that the props of some slots have been changed because the `SpringValue` wrapper has been removed. The affected slots and props are:
|
|
1501
|
-
|
|
1502
1597
|
- the type of the `x`, `y`, `width` and `height` props of the `bar` slot are now `number`;
|
|
1503
1598
|
- the type of `startAngle`, `endAngle`, `innerRadius`, `outerRadius`, `arcLabelRadius`, `cornerRadius` and `paddingAngle` props of `pieArc` and `pieArcLabel` slot are now `number`.
|
|
1504
1599
|
|
|
@@ -2066,7 +2161,6 @@ Following are all team members who have contributed to this release:
|
|
|
2066
2161
|
- The `slots.baseFormControl` component was removed.
|
|
2067
2162
|
|
|
2068
2163
|
- The "Reset" button in the column visibility panel now resets to the initial column visibility model. Previously it was reset to the model that was active at the time the panel was opened. The reset behavior follows these rules:
|
|
2069
|
-
|
|
2070
2164
|
1. If an initial `columnVisibilityModel` is provided, it resets to that model.
|
|
2071
2165
|
2. If a controlled `columnVisibilityModel` is provided, it resets to the first model value.
|
|
2072
2166
|
3. When the columns are updated (via the `columns` prop or `updateColumns()` API method), the reset reference point updates to the current `columnVisibilityModel`.
|
|
@@ -2089,7 +2183,6 @@ Following are all team members who have contributed to this release:
|
|
|
2089
2183
|
The `exclude` selection type allows to select all rows except the ones in the `ids` set.
|
|
2090
2184
|
|
|
2091
2185
|
This change impacts the following props:
|
|
2092
|
-
|
|
2093
2186
|
- `rowSelectionModel`
|
|
2094
2187
|
- `onRowSelectionModelChange`
|
|
2095
2188
|
- `initialState.rowSelectionModel`
|
|
@@ -2413,7 +2506,6 @@ Same changes as in `@mui/x-data-grid-pro@8.0.0-alpha.12`, plus:
|
|
|
2413
2506
|
- The `aria-label` on the `<Clock />` component and Time Picker opening button has been fixed to rely on the set `ampm` property instead of defaulting to the user's locale.
|
|
2414
2507
|
|
|
2415
2508
|
- The following unused formats have been removed from the adapters and can no longer be overridden via the `dateFormats` prop on the `<LocalizationProvider />` component:
|
|
2416
|
-
|
|
2417
2509
|
- `fullTime` - please use `fullTime12h` and `fullTime24h` instead:
|
|
2418
2510
|
```diff
|
|
2419
2511
|
<LocalizationProvider
|
|
@@ -2628,7 +2720,6 @@ Following are all team members who have contributed to this release:
|
|
|
2628
2720
|
|
|
2629
2721
|
- `viewportInnerSize.width` now includes pinned columns' widths (fixes recursive loops in updating dimensions <-> columns)
|
|
2630
2722
|
- The Data Grid now has a default background color, and its customization has moved from `theme.mixins.MuiDataGrid` to `theme.palette.DataGrid` with the following properties:
|
|
2631
|
-
|
|
2632
2723
|
- `bg`: Sets the background color of the entire grid (new property)
|
|
2633
2724
|
- `headerBg`: Sets the background color of the header (previously named `containerBackground`)
|
|
2634
2725
|
- `pinnedBg`: Sets the background color of pinned rows and columns (previously named `pinnedBackground`)
|
|
@@ -2657,7 +2748,6 @@ Following are all team members who have contributed to this release:
|
|
|
2657
2748
|
Only the initial value and the type are updated. Logic that initializes the API and its availability remained the same, which means that if you could access API in a particular line of your code before, you are able to access it as well after this change.
|
|
2658
2749
|
|
|
2659
2750
|
Depending on the context in which the API is being used, you can decide what is the best way to deal with `null` value. Some options are:
|
|
2660
|
-
|
|
2661
2751
|
- Use optional chaining
|
|
2662
2752
|
- Use non-null assertion operator if you are sure your code is always executed when the `apiRef` is not `null`
|
|
2663
2753
|
- Return early if `apiRef` is `null`
|
|
@@ -3181,7 +3271,6 @@ Following are all team members who have contributed to this release:
|
|
|
3181
3271
|
#### Breaking changes
|
|
3182
3272
|
|
|
3183
3273
|
- Passing additional props (like `data-*`, `aria-*`) directly on the Data Grid component is no longer supported. To pass the props, use `slotProps`:
|
|
3184
|
-
|
|
3185
3274
|
- For `.root` element, use `slotProps.root`.
|
|
3186
3275
|
- For `.main` element (the one with `role="grid"`), use `slotProps.main`.
|
|
3187
3276
|
|
|
@@ -3698,14 +3787,12 @@ Same changes as in `@mui/x-date-pickers@v8.0.0-alpha.1`, plus:
|
|
|
3698
3787
|
#### Breaking change
|
|
3699
3788
|
|
|
3700
3789
|
- The DX of the Tooltip customization has been refactored
|
|
3701
|
-
|
|
3702
3790
|
- The `tooltip` prop has been removed in favor of `slotProps.tooltip` for consistency.
|
|
3703
3791
|
- The `popper`, `axisContent`, and `itemContent` slots have been removed in favor of the `tooltip` slot which overrides the entire tooltip.
|
|
3704
3792
|
- To override the tooltip content, use the `useItemTooltip` or `useAxisTooltip` hook to get the data, and wrap your component in `ChartsTooltipContainer` to follow the pointer position.
|
|
3705
3793
|
- To override the tooltip placement, use the `ChartsItemTooltipContent` or `ChartsItemTooltipContent` to get default data and place them in your custom tooltip.
|
|
3706
3794
|
|
|
3707
3795
|
- The library now uses the SVG `filter` attribute instead of `d3-color` for color manipulation.
|
|
3708
|
-
|
|
3709
3796
|
- This modification impacts the `LinePlot`, `AreaPlot`, and `BarPlot` components.
|
|
3710
3797
|
If you've customized the `fill` of those elements, you might need to override it by using the CSS `filter`.
|
|
3711
3798
|
- The `theme.styleOverride` is removed for `MuiLineElement`, `MuiAreaElement`, and `MuiBarElement` to improve performance.
|
|
@@ -3815,14 +3902,12 @@ Same changes as in `@mui/x-data-grid-pro@8.0.0-alpha.0`, plus:
|
|
|
3815
3902
|
#### Breaking changes
|
|
3816
3903
|
|
|
3817
3904
|
- The default DOM structure of the field has changed [Learn more](https://mui.com/x/migration/migration-pickers-v7/#new-dom-structure-for-the-field).
|
|
3818
|
-
|
|
3819
3905
|
- Before version `v8.x`, the fields' DOM structure consisted of an `<input />`, which held the whole value for the component, but unfortunately presents a few limitations in terms of accessibility when managing multiple section values.
|
|
3820
3906
|
- Starting with version `v8.x`, all the field and picker components come with a new DOM structure that allows the field component to set aria attributes on individual sections, providing a far better experience with screen readers.
|
|
3821
3907
|
|
|
3822
3908
|
- Some translation keys no longer require `utils` and the date object as parameters, but only the formatted value as a string. The keys affected by this changes are: `clockLabelText`, `openDatePickerDialogue` and `openTimePickerDialogue` — [Learn more](https://mui.com/x/migration/migration-pickers-v7/#stop-passing-utils-and-the-date-object-to-some-translation-keys).
|
|
3823
3909
|
|
|
3824
3910
|
- The following types are no longer exported by `@mui/x-date-pickers` and `@mui/x-date-pickers-pro` — [Learn more](https://mui.com/x/migration/migration-pickers-v7/#removed-types).
|
|
3825
|
-
|
|
3826
3911
|
- `UseDateFieldComponentProps`
|
|
3827
3912
|
- `UseTimeFieldComponentProps`
|
|
3828
3913
|
- `UseDateTimeFieldComponentProps`
|
|
@@ -3870,7 +3955,6 @@ Same changes as in `@mui/x-date-pickers@8.0.0-alpha.0`.
|
|
|
3870
3955
|
- The `slots.legend` does not receive the `drawingArea` prop. You can still access your custom legend with the `useDrawingArea()` hook if your custom legend needs it.
|
|
3871
3956
|
|
|
3872
3957
|
- Removed or renamed multiple props from Series — [Learn more](https://mui.com/x/migration/migration-charts-v7/#series-properties-renaming).
|
|
3873
|
-
|
|
3874
3958
|
- The `highlighted` and `faded` properties of highlightScope have been deprecated in favor of `highlight` and `fade`.
|
|
3875
3959
|
The deprecated ones are now removed.
|
|
3876
3960
|
- The `xAxisKey`, `yAxisKey`, and `zAxisKey` properties have been deprecated in favor of `xAxisId`, `yAxisId`, and `zAxisId`.
|
|
@@ -6134,7 +6218,6 @@ We'd like to offer a big thanks to the 12 contributors who made this release pos
|
|
|
6134
6218
|
<img width="287" src="https://github.com/user-attachments/assets/78bd83c5-7ce4-4ed7-acf9-be70b2dbce54" alt="Item reordering using drag and drop" />
|
|
6135
6219
|
|
|
6136
6220
|
- 📦 Support CommonJS bundle out of the box on `@mui/x-charts` by adding vendored D3 dependencies.
|
|
6137
|
-
|
|
6138
6221
|
- This modifies how the package imports D3.js. It will impact you if you use `d3` packages installed by `@mui/x-charts` and don't have them in your `package.json`. You shouldn't be affected otherwise.
|
|
6139
6222
|
- For more context, the initial issue is caused by D3 only exporting ESM.
|
|
6140
6223
|
|
|
@@ -7669,7 +7752,6 @@ We'd like to offer a big thanks to the 12 contributors who made this release pos
|
|
|
7669
7752
|
#### Breaking changes
|
|
7670
7753
|
|
|
7671
7754
|
- The `density` is a [controlled prop](https://mui.com/x/react-data-grid/accessibility/#set-the-density-programmatically) now, if you were previously passing the `density` prop to the Data Grid, you will need to do one of the following:
|
|
7672
|
-
|
|
7673
7755
|
1. Move it to the `initialState.density` to initialize it.
|
|
7674
7756
|
|
|
7675
7757
|
```diff
|
|
@@ -8175,7 +8257,6 @@ Same changes as in `@mui/x-data-grid-pro@7.0.0-beta.4`.
|
|
|
8175
8257
|
```
|
|
8176
8258
|
|
|
8177
8259
|
- The following internal types were exported by mistake and have been removed from the public API:
|
|
8178
|
-
|
|
8179
8260
|
- `UseDateFieldDefaultizedProps`
|
|
8180
8261
|
- `UseTimeFieldDefaultizedProps`
|
|
8181
8262
|
- `UseDateTimeFieldDefaultizedProps`
|
|
@@ -8416,7 +8497,6 @@ We'd like to offer a big thanks to the 12 contributors who made this release pos
|
|
|
8416
8497
|
- 🎁 The Line Chart component now has animation by default (#11620) @alexfauquette
|
|
8417
8498
|
- 🚀 All charts have click handlers (#11411) @alexfauquette
|
|
8418
8499
|
Test their respective documentation demonstrations to know more about the data format:
|
|
8419
|
-
|
|
8420
8500
|
- [Scatter Chart](https://v7.mui.com/x/react-charts/scatter/#click-event)
|
|
8421
8501
|
- [Line Chart](https://v7.mui.com/x/react-charts/lines/#click-event)
|
|
8422
8502
|
- [Bar Chart](https://v7.mui.com/x/react-charts/bars/#click-event)
|
|
@@ -8696,7 +8776,6 @@ We'd like to offer a big thanks to the 11 contributors who made this release pos
|
|
|
8696
8776
|
```
|
|
8697
8777
|
|
|
8698
8778
|
The most notable changes that might affect your application or tests are:
|
|
8699
|
-
|
|
8700
8779
|
- The `role="grid"` attribute along with related ARIA attributes are now applied to the inner `div` element instead of the root `div` element:
|
|
8701
8780
|
|
|
8702
8781
|
```diff
|
|
@@ -9247,7 +9326,6 @@ We'd like to offer a big thanks to the 6 contributors who made this release poss
|
|
|
9247
9326
|
|
|
9248
9327
|
- The filter panel no longer uses the native version of the [`Select`](https://mui.com/material-ui/react-select/) component for all components.
|
|
9249
9328
|
- The `getOptionValue` and `getOptionLabel` props were removed from the following components:
|
|
9250
|
-
|
|
9251
9329
|
- `GridEditSingleSelectCell`
|
|
9252
9330
|
- `GridFilterInputSingleSelect`
|
|
9253
9331
|
- `GridFilterInputMultipleSingleSelect`
|
|
@@ -9661,7 +9739,6 @@ Same changes as in `@mui/x-data-grid-pro@7.0.0-alpha.3`, plus:
|
|
|
9661
9739
|
- Add new parameters to the `shortcuts` slot `onChange` callback
|
|
9662
9740
|
|
|
9663
9741
|
The `onChange` callback fired when selecting a shortcut now requires two new parameters (previously they were optional):
|
|
9664
|
-
|
|
9665
9742
|
- The [`changeImportance`](/x/react-date-pickers/shortcuts/#behavior-when-selecting-a-shortcut) of the shortcut.
|
|
9666
9743
|
- The `item` containing the entire shortcut object.
|
|
9667
9744
|
|
|
@@ -18,7 +18,7 @@ var _material = require("../internals/material");
|
|
|
18
18
|
var _allPlugins = require("../internals/plugins/allPlugins");
|
|
19
19
|
var _useChartDataProviderProProps = require("./useChartDataProviderProProps");
|
|
20
20
|
var _jsxRuntime = require("react/jsx-runtime");
|
|
21
|
-
const releaseInfo = "
|
|
21
|
+
const releaseInfo = "MTc1Mjc4OTYwMDAwMA==";
|
|
22
22
|
const packageIdentifier = 'x-charts-pro';
|
|
23
23
|
/**
|
|
24
24
|
* Orchestrates the data providers for the chart components and hooks.
|
|
@@ -8,12 +8,13 @@ import { ChartContainerProProps } from "../ChartContainerPro/index.js";
|
|
|
8
8
|
import { FunnelChartSlotExtension } from "./funnelSlots.types.js";
|
|
9
9
|
import { CategoryAxis } from "./categoryAxis.types.js";
|
|
10
10
|
import { FunnelChartPluginsSignatures } from "./FunnelChart.plugins.js";
|
|
11
|
+
export type FunnelSeries = MakeOptional<FunnelSeriesType, 'type'>;
|
|
11
12
|
export interface FunnelChartProps extends Omit<ChartContainerProProps<'funnel', FunnelChartPluginsSignatures>, 'series' | 'plugins' | 'zAxis' | 'zoom' | 'onZoomChange' | 'dataset' | 'yAxis' | 'xAxis' | 'rotationAxis' | 'radiusAxis' | 'slots' | 'slotProps' | 'experimentalFeatures'>, Omit<FunnelPlotProps, 'slots' | 'slotProps'>, Omit<ChartsOverlayProps, 'slots' | 'slotProps'>, FunnelChartSlotExtension {
|
|
12
13
|
/**
|
|
13
14
|
* The series to display in the funnel chart.
|
|
14
|
-
* An array of [[
|
|
15
|
+
* An array of [[FunnelSeries]] objects.
|
|
15
16
|
*/
|
|
16
|
-
series: Readonly<
|
|
17
|
+
series: Readonly<FunnelSeries[]>;
|
|
17
18
|
/**
|
|
18
19
|
* The configuration of the category axis.
|
|
19
20
|
*
|
|
@@ -241,7 +241,7 @@ process.env.NODE_ENV !== "production" ? FunnelChart.propTypes = {
|
|
|
241
241
|
onItemClick: _propTypes.default.func,
|
|
242
242
|
/**
|
|
243
243
|
* The series to display in the funnel chart.
|
|
244
|
-
* An array of [[
|
|
244
|
+
* An array of [[FunnelSeries]] objects.
|
|
245
245
|
*/
|
|
246
246
|
series: _propTypes.default.arrayOf(_propTypes.default.object).isRequired,
|
|
247
247
|
/**
|
package/FunnelChart/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export { FunnelChart as Unstable_FunnelChart } from "./FunnelChart.js";
|
|
2
|
-
export type { FunnelChartProps } from "./FunnelChart.js";
|
|
2
|
+
export type { FunnelChartProps, FunnelSeries } from "./FunnelChart.js";
|
|
3
3
|
export * from "./FunnelPlot.js";
|
|
4
4
|
export * from "./funnel.types.js";
|
|
5
5
|
export * from "./categoryAxis.types.js";
|
package/Heatmap/Heatmap.d.ts
CHANGED
|
@@ -27,6 +27,7 @@ export interface HeatmapSlots extends ChartsAxisSlots, ChartsOverlaySlots, Heatm
|
|
|
27
27
|
export interface HeatmapSlotProps extends ChartsAxisSlotProps, ChartsOverlaySlotProps, HeatmapItemSlotProps, ChartsLegendSlotProps, ChartsToolbarProSlotProps, Partial<ChartsSlotPropsPro> {
|
|
28
28
|
tooltip?: Partial<HeatmapTooltipProps>;
|
|
29
29
|
}
|
|
30
|
+
export type HeatmapSeries = MakeOptional<HeatmapSeriesType, 'type'>;
|
|
30
31
|
export interface HeatmapProps extends Omit<ChartContainerProProps<'heatmap', HeatmapPluginsSignatures>, 'series' | 'plugins' | 'xAxis' | 'yAxis' | 'skipAnimation' | 'slots' | 'slotProps' | 'experimentalFeatures' | 'highlightedAxis' | 'onHighlightedAxisChange'>, Omit<ChartsAxisProps, 'slots' | 'slotProps'>, Omit<ChartsOverlayProps, 'slots' | 'slotProps'> {
|
|
31
32
|
/**
|
|
32
33
|
* The configuration of the x-axes.
|
|
@@ -42,9 +43,9 @@ export interface HeatmapProps extends Omit<ChartContainerProProps<'heatmap', Hea
|
|
|
42
43
|
yAxis: Readonly<Omit<MakeOptional<YAxis<'band'>, 'scaleType'>, 'zoom'>[]>;
|
|
43
44
|
/**
|
|
44
45
|
* The series to display in the bar chart.
|
|
45
|
-
* An array of [[
|
|
46
|
+
* An array of [[HeatmapSeries]] objects.
|
|
46
47
|
*/
|
|
47
|
-
series: Readonly<
|
|
48
|
+
series: Readonly<HeatmapSeries[]>;
|
|
48
49
|
/**
|
|
49
50
|
* The configuration of the tooltip.
|
|
50
51
|
* @see See {@link https://mui.com/x/react-charts/tooltip/ tooltip docs} for more details.
|
package/Heatmap/Heatmap.js
CHANGED
|
@@ -246,7 +246,7 @@ process.env.NODE_ENV !== "production" ? Heatmap.propTypes = {
|
|
|
246
246
|
onHighlightChange: _propTypes.default.func,
|
|
247
247
|
/**
|
|
248
248
|
* The series to display in the bar chart.
|
|
249
|
-
* An array of [[
|
|
249
|
+
* An array of [[HeatmapSeries]] objects.
|
|
250
250
|
*/
|
|
251
251
|
series: _propTypes.default.arrayOf(_propTypes.default.object).isRequired,
|
|
252
252
|
/**
|
package/Heatmap/index.d.ts
CHANGED
|
@@ -251,7 +251,7 @@ process.env.NODE_ENV !== "production" ? LineChartPro.propTypes = {
|
|
|
251
251
|
onZoomChange: _propTypes.default.func,
|
|
252
252
|
/**
|
|
253
253
|
* The series to display in the line chart.
|
|
254
|
-
* An array of [[
|
|
254
|
+
* An array of [[LineSeries]] objects.
|
|
255
255
|
*/
|
|
256
256
|
series: _propTypes.default.arrayOf(_propTypes.default.object).isRequired,
|
|
257
257
|
/**
|
|
@@ -171,7 +171,7 @@ process.env.NODE_ENV !== "production" ? PieChartPro.propTypes = {
|
|
|
171
171
|
onItemClick: _propTypes.default.func,
|
|
172
172
|
/**
|
|
173
173
|
* The series to display in the pie chart.
|
|
174
|
-
* An array of [[
|
|
174
|
+
* An array of [[PieSeries]] objects.
|
|
175
175
|
*/
|
|
176
176
|
series: _propTypes.default.arrayOf(_propTypes.default.object).isRequired,
|
|
177
177
|
/**
|
|
@@ -135,12 +135,31 @@ process.env.NODE_ENV !== "production" ? RadarChartPro.propTypes = {
|
|
|
135
135
|
right: _propTypes.default.number,
|
|
136
136
|
top: _propTypes.default.number
|
|
137
137
|
})]),
|
|
138
|
+
/**
|
|
139
|
+
* Callback fired when an area is clicked.
|
|
140
|
+
* @param {React.MouseEvent<SVGPathElement, MouseEvent>} event The event source of the callback.
|
|
141
|
+
* @param {RadarItemIdentifier} radarItemIdentifier The radar item identifier.
|
|
142
|
+
*/
|
|
143
|
+
onAreaClick: _propTypes.default.func,
|
|
144
|
+
/**
|
|
145
|
+
* The function called for onClick events.
|
|
146
|
+
* The second argument contains information about all line/bar elements at the current mouse position.
|
|
147
|
+
* @param {MouseEvent} event The mouse event recorded on the `<svg/>` element.
|
|
148
|
+
* @param {null | ChartsAxisData} data The data about the clicked axis and items associated with it.
|
|
149
|
+
*/
|
|
150
|
+
onAxisClick: _propTypes.default.func,
|
|
138
151
|
/**
|
|
139
152
|
* The callback fired when the highlighted item changes.
|
|
140
153
|
*
|
|
141
154
|
* @param {HighlightItemData | null} highlightedItem The newly highlighted item.
|
|
142
155
|
*/
|
|
143
156
|
onHighlightChange: _propTypes.default.func,
|
|
157
|
+
/**
|
|
158
|
+
* Callback fired when a mark is clicked.
|
|
159
|
+
* @param {React.MouseEvent<SVGPathElement, MouseEvent>} event The event source of the callback.
|
|
160
|
+
* @param {RadarItemIdentifier} radarItemIdentifier The radar item identifier.
|
|
161
|
+
*/
|
|
162
|
+
onMarkClick: _propTypes.default.func,
|
|
144
163
|
/**
|
|
145
164
|
* The configuration of the radar scales.
|
|
146
165
|
*/
|
|
@@ -157,7 +176,7 @@ process.env.NODE_ENV !== "production" ? RadarChartPro.propTypes = {
|
|
|
157
176
|
}).isRequired,
|
|
158
177
|
/**
|
|
159
178
|
* The series to display in the bar chart.
|
|
160
|
-
* An array of [[
|
|
179
|
+
* An array of [[RadarSeries]] objects.
|
|
161
180
|
*/
|
|
162
181
|
series: _propTypes.default.arrayOf(_propTypes.default.object).isRequired,
|
|
163
182
|
/**
|
|
@@ -218,7 +218,7 @@ process.env.NODE_ENV !== "production" ? ScatterChartPro.propTypes = {
|
|
|
218
218
|
onZoomChange: _propTypes.default.func,
|
|
219
219
|
/**
|
|
220
220
|
* The series to display in the scatter chart.
|
|
221
|
-
* An array of [[
|
|
221
|
+
* An array of [[ScatterSeries]] objects.
|
|
222
222
|
*/
|
|
223
223
|
series: _propTypes.default.arrayOf(_propTypes.default.object).isRequired,
|
|
224
224
|
/**
|
|
@@ -241,7 +241,7 @@ process.env.NODE_ENV !== "production" ? BarChartPro.propTypes = {
|
|
|
241
241
|
onZoomChange: PropTypes.func,
|
|
242
242
|
/**
|
|
243
243
|
* The series to display in the bar chart.
|
|
244
|
-
* An array of [[
|
|
244
|
+
* An array of [[BarSeries]] objects.
|
|
245
245
|
*/
|
|
246
246
|
series: PropTypes.arrayOf(PropTypes.object).isRequired,
|
|
247
247
|
/**
|
|
@@ -11,7 +11,7 @@ import { defaultSlotsMaterial } from "../internals/material/index.js";
|
|
|
11
11
|
import { DEFAULT_PLUGINS } from "../internals/plugins/allPlugins.js";
|
|
12
12
|
import { useChartDataProviderProProps } from "./useChartDataProviderProProps.js";
|
|
13
13
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
14
|
-
const releaseInfo = "
|
|
14
|
+
const releaseInfo = "MTc1Mjc4OTYwMDAwMA==";
|
|
15
15
|
const packageIdentifier = 'x-charts-pro';
|
|
16
16
|
/**
|
|
17
17
|
* Orchestrates the data providers for the chart components and hooks.
|
|
@@ -8,12 +8,13 @@ import { ChartContainerProProps } from "../ChartContainerPro/index.js";
|
|
|
8
8
|
import { FunnelChartSlotExtension } from "./funnelSlots.types.js";
|
|
9
9
|
import { CategoryAxis } from "./categoryAxis.types.js";
|
|
10
10
|
import { FunnelChartPluginsSignatures } from "./FunnelChart.plugins.js";
|
|
11
|
+
export type FunnelSeries = MakeOptional<FunnelSeriesType, 'type'>;
|
|
11
12
|
export interface FunnelChartProps extends Omit<ChartContainerProProps<'funnel', FunnelChartPluginsSignatures>, 'series' | 'plugins' | 'zAxis' | 'zoom' | 'onZoomChange' | 'dataset' | 'yAxis' | 'xAxis' | 'rotationAxis' | 'radiusAxis' | 'slots' | 'slotProps' | 'experimentalFeatures'>, Omit<FunnelPlotProps, 'slots' | 'slotProps'>, Omit<ChartsOverlayProps, 'slots' | 'slotProps'>, FunnelChartSlotExtension {
|
|
12
13
|
/**
|
|
13
14
|
* The series to display in the funnel chart.
|
|
14
|
-
* An array of [[
|
|
15
|
+
* An array of [[FunnelSeries]] objects.
|
|
15
16
|
*/
|
|
16
|
-
series: Readonly<
|
|
17
|
+
series: Readonly<FunnelSeries[]>;
|
|
17
18
|
/**
|
|
18
19
|
* The configuration of the category axis.
|
|
19
20
|
*
|
|
@@ -234,7 +234,7 @@ process.env.NODE_ENV !== "production" ? FunnelChart.propTypes = {
|
|
|
234
234
|
onItemClick: PropTypes.func,
|
|
235
235
|
/**
|
|
236
236
|
* The series to display in the funnel chart.
|
|
237
|
-
* An array of [[
|
|
237
|
+
* An array of [[FunnelSeries]] objects.
|
|
238
238
|
*/
|
|
239
239
|
series: PropTypes.arrayOf(PropTypes.object).isRequired,
|
|
240
240
|
/**
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export { FunnelChart as Unstable_FunnelChart } from "./FunnelChart.js";
|
|
2
|
-
export type { FunnelChartProps } from "./FunnelChart.js";
|
|
2
|
+
export type { FunnelChartProps, FunnelSeries } from "./FunnelChart.js";
|
|
3
3
|
export * from "./FunnelPlot.js";
|
|
4
4
|
export * from "./funnel.types.js";
|
|
5
5
|
export * from "./categoryAxis.types.js";
|
package/esm/Heatmap/Heatmap.d.ts
CHANGED
|
@@ -27,6 +27,7 @@ export interface HeatmapSlots extends ChartsAxisSlots, ChartsOverlaySlots, Heatm
|
|
|
27
27
|
export interface HeatmapSlotProps extends ChartsAxisSlotProps, ChartsOverlaySlotProps, HeatmapItemSlotProps, ChartsLegendSlotProps, ChartsToolbarProSlotProps, Partial<ChartsSlotPropsPro> {
|
|
28
28
|
tooltip?: Partial<HeatmapTooltipProps>;
|
|
29
29
|
}
|
|
30
|
+
export type HeatmapSeries = MakeOptional<HeatmapSeriesType, 'type'>;
|
|
30
31
|
export interface HeatmapProps extends Omit<ChartContainerProProps<'heatmap', HeatmapPluginsSignatures>, 'series' | 'plugins' | 'xAxis' | 'yAxis' | 'skipAnimation' | 'slots' | 'slotProps' | 'experimentalFeatures' | 'highlightedAxis' | 'onHighlightedAxisChange'>, Omit<ChartsAxisProps, 'slots' | 'slotProps'>, Omit<ChartsOverlayProps, 'slots' | 'slotProps'> {
|
|
31
32
|
/**
|
|
32
33
|
* The configuration of the x-axes.
|
|
@@ -42,9 +43,9 @@ export interface HeatmapProps extends Omit<ChartContainerProProps<'heatmap', Hea
|
|
|
42
43
|
yAxis: Readonly<Omit<MakeOptional<YAxis<'band'>, 'scaleType'>, 'zoom'>[]>;
|
|
43
44
|
/**
|
|
44
45
|
* The series to display in the bar chart.
|
|
45
|
-
* An array of [[
|
|
46
|
+
* An array of [[HeatmapSeries]] objects.
|
|
46
47
|
*/
|
|
47
|
-
series: Readonly<
|
|
48
|
+
series: Readonly<HeatmapSeries[]>;
|
|
48
49
|
/**
|
|
49
50
|
* The configuration of the tooltip.
|
|
50
51
|
* @see See {@link https://mui.com/x/react-charts/tooltip/ tooltip docs} for more details.
|
package/esm/Heatmap/Heatmap.js
CHANGED
|
@@ -239,7 +239,7 @@ process.env.NODE_ENV !== "production" ? Heatmap.propTypes = {
|
|
|
239
239
|
onHighlightChange: PropTypes.func,
|
|
240
240
|
/**
|
|
241
241
|
* The series to display in the bar chart.
|
|
242
|
-
* An array of [[
|
|
242
|
+
* An array of [[HeatmapSeries]] objects.
|
|
243
243
|
*/
|
|
244
244
|
series: PropTypes.arrayOf(PropTypes.object).isRequired,
|
|
245
245
|
/**
|
package/esm/Heatmap/index.d.ts
CHANGED
|
@@ -244,7 +244,7 @@ process.env.NODE_ENV !== "production" ? LineChartPro.propTypes = {
|
|
|
244
244
|
onZoomChange: PropTypes.func,
|
|
245
245
|
/**
|
|
246
246
|
* The series to display in the line chart.
|
|
247
|
-
* An array of [[
|
|
247
|
+
* An array of [[LineSeries]] objects.
|
|
248
248
|
*/
|
|
249
249
|
series: PropTypes.arrayOf(PropTypes.object).isRequired,
|
|
250
250
|
/**
|
|
@@ -163,7 +163,7 @@ process.env.NODE_ENV !== "production" ? PieChartPro.propTypes = {
|
|
|
163
163
|
onItemClick: PropTypes.func,
|
|
164
164
|
/**
|
|
165
165
|
* The series to display in the pie chart.
|
|
166
|
-
* An array of [[
|
|
166
|
+
* An array of [[PieSeries]] objects.
|
|
167
167
|
*/
|
|
168
168
|
series: PropTypes.arrayOf(PropTypes.object).isRequired,
|
|
169
169
|
/**
|
|
@@ -127,12 +127,31 @@ process.env.NODE_ENV !== "production" ? RadarChartPro.propTypes = {
|
|
|
127
127
|
right: PropTypes.number,
|
|
128
128
|
top: PropTypes.number
|
|
129
129
|
})]),
|
|
130
|
+
/**
|
|
131
|
+
* Callback fired when an area is clicked.
|
|
132
|
+
* @param {React.MouseEvent<SVGPathElement, MouseEvent>} event The event source of the callback.
|
|
133
|
+
* @param {RadarItemIdentifier} radarItemIdentifier The radar item identifier.
|
|
134
|
+
*/
|
|
135
|
+
onAreaClick: PropTypes.func,
|
|
136
|
+
/**
|
|
137
|
+
* The function called for onClick events.
|
|
138
|
+
* The second argument contains information about all line/bar elements at the current mouse position.
|
|
139
|
+
* @param {MouseEvent} event The mouse event recorded on the `<svg/>` element.
|
|
140
|
+
* @param {null | ChartsAxisData} data The data about the clicked axis and items associated with it.
|
|
141
|
+
*/
|
|
142
|
+
onAxisClick: PropTypes.func,
|
|
130
143
|
/**
|
|
131
144
|
* The callback fired when the highlighted item changes.
|
|
132
145
|
*
|
|
133
146
|
* @param {HighlightItemData | null} highlightedItem The newly highlighted item.
|
|
134
147
|
*/
|
|
135
148
|
onHighlightChange: PropTypes.func,
|
|
149
|
+
/**
|
|
150
|
+
* Callback fired when a mark is clicked.
|
|
151
|
+
* @param {React.MouseEvent<SVGPathElement, MouseEvent>} event The event source of the callback.
|
|
152
|
+
* @param {RadarItemIdentifier} radarItemIdentifier The radar item identifier.
|
|
153
|
+
*/
|
|
154
|
+
onMarkClick: PropTypes.func,
|
|
136
155
|
/**
|
|
137
156
|
* The configuration of the radar scales.
|
|
138
157
|
*/
|
|
@@ -149,7 +168,7 @@ process.env.NODE_ENV !== "production" ? RadarChartPro.propTypes = {
|
|
|
149
168
|
}).isRequired,
|
|
150
169
|
/**
|
|
151
170
|
* The series to display in the bar chart.
|
|
152
|
-
* An array of [[
|
|
171
|
+
* An array of [[RadarSeries]] objects.
|
|
153
172
|
*/
|
|
154
173
|
series: PropTypes.arrayOf(PropTypes.object).isRequired,
|
|
155
174
|
/**
|
|
@@ -211,7 +211,7 @@ process.env.NODE_ENV !== "production" ? ScatterChartPro.propTypes = {
|
|
|
211
211
|
onZoomChange: PropTypes.func,
|
|
212
212
|
/**
|
|
213
213
|
* The series to display in the scatter chart.
|
|
214
|
-
* An array of [[
|
|
214
|
+
* An array of [[ScatterSeries]] objects.
|
|
215
215
|
*/
|
|
216
216
|
series: PropTypes.arrayOf(PropTypes.object).isRequired,
|
|
217
217
|
/**
|
package/esm/index.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @mui/x-charts-pro v8.
|
|
2
|
+
* @mui/x-charts-pro v8.9.0
|
|
3
3
|
*
|
|
4
|
-
* @license
|
|
5
|
-
* This source code is licensed under the
|
|
4
|
+
* @license SEE LICENSE IN LICENSE
|
|
5
|
+
* This source code is licensed under the SEE LICENSE IN LICENSE license found in the
|
|
6
6
|
* LICENSE file in the root directory of this source tree.
|
|
7
7
|
*/
|
|
8
8
|
import "./typeOverloads/modules.js";
|
package/index.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @mui/x-charts-pro v8.
|
|
2
|
+
* @mui/x-charts-pro v8.9.0
|
|
3
3
|
*
|
|
4
|
-
* @license
|
|
5
|
-
* This source code is licensed under the
|
|
4
|
+
* @license SEE LICENSE IN LICENSE
|
|
5
|
+
* This source code is licensed under the SEE LICENSE IN LICENSE license found in the
|
|
6
6
|
* LICENSE file in the root directory of this source tree.
|
|
7
7
|
*/
|
|
8
8
|
"use strict";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mui/x-charts-pro",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.9.0",
|
|
4
4
|
"author": "MUI Team",
|
|
5
5
|
"description": "The Pro plan edition of the MUI X Charts components.",
|
|
6
6
|
"main": "./index.js",
|
|
@@ -33,11 +33,11 @@
|
|
|
33
33
|
"@mui/utils": "^7.2.0",
|
|
34
34
|
"clsx": "^2.1.1",
|
|
35
35
|
"prop-types": "^15.8.1",
|
|
36
|
-
"@mui/x-charts
|
|
37
|
-
"@mui/x-charts": "8.
|
|
38
|
-
"@mui/x-
|
|
36
|
+
"@mui/x-charts": "8.9.0",
|
|
37
|
+
"@mui/x-charts-vendor": "8.6.0",
|
|
38
|
+
"@mui/x-internals": "8.8.0",
|
|
39
39
|
"@mui/x-internal-gestures": "0.2.1",
|
|
40
|
-
"@mui/x-
|
|
40
|
+
"@mui/x-license": "8.9.0"
|
|
41
41
|
},
|
|
42
42
|
"peerDependencies": {
|
|
43
43
|
"@emotion/react": "^11.9.0",
|