@mui/x-charts-premium 9.0.0-alpha.4 → 9.0.0-beta.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/BarChartPremium/BarChartPremium.d.mts +2 -2
- package/BarChartPremium/BarChartPremium.d.ts +2 -2
- package/BarChartPremium/BarChartPremium.js +19 -28
- package/BarChartPremium/BarChartPremium.mjs +19 -28
- package/BarChartPremium/RangeBar/seriesConfig/descriptionGetter.d.mts +3 -0
- package/BarChartPremium/RangeBar/seriesConfig/descriptionGetter.d.ts +3 -0
- package/BarChartPremium/RangeBar/seriesConfig/descriptionGetter.js +36 -0
- package/BarChartPremium/RangeBar/seriesConfig/descriptionGetter.mjs +30 -0
- package/BarChartPremium/RangeBar/seriesConfig/index.js +2 -0
- package/BarChartPremium/RangeBar/seriesConfig/index.mjs +2 -0
- package/CHANGELOG.md +107 -1
- package/CandlestickChart/CandlestickChart.js +18 -18
- package/CandlestickChart/CandlestickChart.mjs +18 -18
- package/CandlestickChart/CandlestickPlot.js +0 -2
- package/CandlestickChart/CandlestickPlot.mjs +1 -3
- package/CandlestickChart/seriesConfig/descriptionGetter.d.mts +3 -0
- package/CandlestickChart/seriesConfig/descriptionGetter.d.ts +3 -0
- package/CandlestickChart/seriesConfig/descriptionGetter.js +32 -0
- package/CandlestickChart/seriesConfig/descriptionGetter.mjs +26 -0
- package/CandlestickChart/seriesConfig/index.js +2 -0
- package/CandlestickChart/seriesConfig/index.mjs +2 -0
- package/ChartsDataProviderPremium/ChartsDataProviderPremium.js +2 -2
- package/ChartsDataProviderPremium/ChartsDataProviderPremium.mjs +2 -2
- package/ChartsRenderer/ChartsRenderer.js +5 -1
- package/ChartsRenderer/ChartsRenderer.mjs +5 -1
- package/ChartsWebGLLayer/ChartsWebGLLayer.js +1 -0
- package/ChartsWebGLLayer/ChartsWebGLLayer.mjs +1 -0
- package/HeatmapPremium/HeatmapPremium.js +2 -2
- package/HeatmapPremium/HeatmapPremium.mjs +2 -2
- package/HeatmapPremium/webgl/HeatmapWebGLRenderer.js +0 -3
- package/HeatmapPremium/webgl/HeatmapWebGLRenderer.mjs +0 -3
- package/index.js +1 -1
- package/index.mjs +1 -1
- package/package.json +196 -196
- package/typeOverloads/modules.d.mts +13 -1
- package/typeOverloads/modules.d.ts +13 -1
|
@@ -18,10 +18,10 @@ export interface BarChartPremiumProps extends Omit<BarChartProProps, 'series' |
|
|
|
18
18
|
slotProps?: BarChartPremiumSlotProps;
|
|
19
19
|
/**
|
|
20
20
|
* Callback fired when a bar or range bar item is clicked.
|
|
21
|
-
* @param {
|
|
21
|
+
* @param {MouseEvent} event The event source of the callback.
|
|
22
22
|
* @param {BarItemIdentifier | RangeBarItemIdentifier} itemIdentifier The item identifier.
|
|
23
23
|
*/
|
|
24
|
-
onItemClick?(event:
|
|
24
|
+
onItemClick?(event: MouseEvent, itemIdentifier: BarItemIdentifier | RangeBarItemIdentifier): void;
|
|
25
25
|
/**
|
|
26
26
|
* The series to display in the bar chart.
|
|
27
27
|
* An array of [[BarSeries]] or [[RangeBarSeries]] objects.
|
|
@@ -18,10 +18,10 @@ export interface BarChartPremiumProps extends Omit<BarChartProProps, 'series' |
|
|
|
18
18
|
slotProps?: BarChartPremiumSlotProps;
|
|
19
19
|
/**
|
|
20
20
|
* Callback fired when a bar or range bar item is clicked.
|
|
21
|
-
* @param {
|
|
21
|
+
* @param {MouseEvent} event The event source of the callback.
|
|
22
22
|
* @param {BarItemIdentifier | RangeBarItemIdentifier} itemIdentifier The item identifier.
|
|
23
23
|
*/
|
|
24
|
-
onItemClick?(event:
|
|
24
|
+
onItemClick?(event: MouseEvent, itemIdentifier: BarItemIdentifier | RangeBarItemIdentifier): void;
|
|
25
25
|
/**
|
|
26
26
|
* The series to display in the bar chart.
|
|
27
27
|
* An array of [[BarSeries]] or [[RangeBarSeries]] objects.
|
|
@@ -125,15 +125,6 @@ process.env.NODE_ENV !== "production" ? BarChartPremium.propTypes = {
|
|
|
125
125
|
x: _propTypes.default.oneOf(['band', 'line', 'none']),
|
|
126
126
|
y: _propTypes.default.oneOf(['band', 'line', 'none'])
|
|
127
127
|
}),
|
|
128
|
-
/**
|
|
129
|
-
* @deprecated Use `barLabel` in the chart series instead.
|
|
130
|
-
* If provided, the function will be used to format the label of the bar.
|
|
131
|
-
* It can be set to 'value' to display the current value.
|
|
132
|
-
* @param {BarItem} item The item to format.
|
|
133
|
-
* @param {BarLabelContext} context data about the bar.
|
|
134
|
-
* @returns {string} The formatted label.
|
|
135
|
-
*/
|
|
136
|
-
barLabel: _propTypes.default.oneOfType([_propTypes.default.oneOf(['value']), _propTypes.default.func]),
|
|
137
128
|
/**
|
|
138
129
|
* Defines the border radius of the bar element.
|
|
139
130
|
*/
|
|
@@ -338,7 +329,7 @@ process.env.NODE_ENV !== "production" ? BarChartPremium.propTypes = {
|
|
|
338
329
|
onHighlightedAxisChange: _propTypes.default.func,
|
|
339
330
|
/**
|
|
340
331
|
* Callback fired when a bar or range bar item is clicked.
|
|
341
|
-
* @param {
|
|
332
|
+
* @param {MouseEvent} event The event source of the callback.
|
|
342
333
|
* @param {BarItemIdentifier | RangeBarItemIdentifier} itemIdentifier The item identifier.
|
|
343
334
|
*/
|
|
344
335
|
onItemClick: _propTypes.default.func,
|
|
@@ -463,7 +454,7 @@ process.env.NODE_ENV !== "production" ? BarChartPremium.propTypes = {
|
|
|
463
454
|
tickLabelStyle: _propTypes.default.object,
|
|
464
455
|
tickSize: _propTypes.default.number
|
|
465
456
|
})),
|
|
466
|
-
height: _propTypes.default.number,
|
|
457
|
+
height: _propTypes.default.oneOfType([_propTypes.default.oneOf(['auto']), _propTypes.default.number]),
|
|
467
458
|
hideTooltip: _propTypes.default.bool,
|
|
468
459
|
id: _propTypes.default.oneOfType([_propTypes.default.number, _propTypes.default.string]),
|
|
469
460
|
ignoreTooltip: _propTypes.default.bool,
|
|
@@ -537,7 +528,7 @@ process.env.NODE_ENV !== "production" ? BarChartPremium.propTypes = {
|
|
|
537
528
|
tickLabelStyle: _propTypes.default.object,
|
|
538
529
|
tickSize: _propTypes.default.number
|
|
539
530
|
})),
|
|
540
|
-
height: _propTypes.default.number,
|
|
531
|
+
height: _propTypes.default.oneOfType([_propTypes.default.oneOf(['auto']), _propTypes.default.number]),
|
|
541
532
|
hideTooltip: _propTypes.default.bool,
|
|
542
533
|
id: _propTypes.default.oneOfType([_propTypes.default.number, _propTypes.default.string]),
|
|
543
534
|
ignoreTooltip: _propTypes.default.bool,
|
|
@@ -601,7 +592,7 @@ process.env.NODE_ENV !== "production" ? BarChartPremium.propTypes = {
|
|
|
601
592
|
disableLine: _propTypes.default.bool,
|
|
602
593
|
disableTicks: _propTypes.default.bool,
|
|
603
594
|
domainLimit: _propTypes.default.oneOfType([_propTypes.default.oneOf(['nice', 'strict']), _propTypes.default.func]),
|
|
604
|
-
height: _propTypes.default.number,
|
|
595
|
+
height: _propTypes.default.oneOfType([_propTypes.default.oneOf(['auto']), _propTypes.default.number]),
|
|
605
596
|
hideTooltip: _propTypes.default.bool,
|
|
606
597
|
id: _propTypes.default.oneOfType([_propTypes.default.number, _propTypes.default.string]),
|
|
607
598
|
ignoreTooltip: _propTypes.default.bool,
|
|
@@ -663,7 +654,7 @@ process.env.NODE_ENV !== "production" ? BarChartPremium.propTypes = {
|
|
|
663
654
|
disableLine: _propTypes.default.bool,
|
|
664
655
|
disableTicks: _propTypes.default.bool,
|
|
665
656
|
domainLimit: _propTypes.default.oneOfType([_propTypes.default.oneOf(['nice', 'strict']), _propTypes.default.func]),
|
|
666
|
-
height: _propTypes.default.number,
|
|
657
|
+
height: _propTypes.default.oneOfType([_propTypes.default.oneOf(['auto']), _propTypes.default.number]),
|
|
667
658
|
hideTooltip: _propTypes.default.bool,
|
|
668
659
|
id: _propTypes.default.oneOfType([_propTypes.default.number, _propTypes.default.string]),
|
|
669
660
|
ignoreTooltip: _propTypes.default.bool,
|
|
@@ -724,7 +715,7 @@ process.env.NODE_ENV !== "production" ? BarChartPremium.propTypes = {
|
|
|
724
715
|
disableLine: _propTypes.default.bool,
|
|
725
716
|
disableTicks: _propTypes.default.bool,
|
|
726
717
|
domainLimit: _propTypes.default.oneOfType([_propTypes.default.oneOf(['nice', 'strict']), _propTypes.default.func]),
|
|
727
|
-
height: _propTypes.default.number,
|
|
718
|
+
height: _propTypes.default.oneOfType([_propTypes.default.oneOf(['auto']), _propTypes.default.number]),
|
|
728
719
|
hideTooltip: _propTypes.default.bool,
|
|
729
720
|
id: _propTypes.default.oneOfType([_propTypes.default.number, _propTypes.default.string]),
|
|
730
721
|
ignoreTooltip: _propTypes.default.bool,
|
|
@@ -785,7 +776,7 @@ process.env.NODE_ENV !== "production" ? BarChartPremium.propTypes = {
|
|
|
785
776
|
disableLine: _propTypes.default.bool,
|
|
786
777
|
disableTicks: _propTypes.default.bool,
|
|
787
778
|
domainLimit: _propTypes.default.oneOfType([_propTypes.default.oneOf(['nice', 'strict']), _propTypes.default.func]),
|
|
788
|
-
height: _propTypes.default.number,
|
|
779
|
+
height: _propTypes.default.oneOfType([_propTypes.default.oneOf(['auto']), _propTypes.default.number]),
|
|
789
780
|
hideTooltip: _propTypes.default.bool,
|
|
790
781
|
id: _propTypes.default.oneOfType([_propTypes.default.number, _propTypes.default.string]),
|
|
791
782
|
ignoreTooltip: _propTypes.default.bool,
|
|
@@ -846,7 +837,7 @@ process.env.NODE_ENV !== "production" ? BarChartPremium.propTypes = {
|
|
|
846
837
|
disableLine: _propTypes.default.bool,
|
|
847
838
|
disableTicks: _propTypes.default.bool,
|
|
848
839
|
domainLimit: _propTypes.default.oneOfType([_propTypes.default.oneOf(['nice', 'strict']), _propTypes.default.func]),
|
|
849
|
-
height: _propTypes.default.number,
|
|
840
|
+
height: _propTypes.default.oneOfType([_propTypes.default.oneOf(['auto']), _propTypes.default.number]),
|
|
850
841
|
hideTooltip: _propTypes.default.bool,
|
|
851
842
|
id: _propTypes.default.oneOfType([_propTypes.default.number, _propTypes.default.string]),
|
|
852
843
|
ignoreTooltip: _propTypes.default.bool,
|
|
@@ -911,7 +902,7 @@ process.env.NODE_ENV !== "production" ? BarChartPremium.propTypes = {
|
|
|
911
902
|
disableLine: _propTypes.default.bool,
|
|
912
903
|
disableTicks: _propTypes.default.bool,
|
|
913
904
|
domainLimit: _propTypes.default.oneOfType([_propTypes.default.oneOf(['nice', 'strict']), _propTypes.default.func]),
|
|
914
|
-
height: _propTypes.default.number,
|
|
905
|
+
height: _propTypes.default.oneOfType([_propTypes.default.oneOf(['auto']), _propTypes.default.number]),
|
|
915
906
|
hideTooltip: _propTypes.default.bool,
|
|
916
907
|
id: _propTypes.default.oneOfType([_propTypes.default.number, _propTypes.default.string]),
|
|
917
908
|
ignoreTooltip: _propTypes.default.bool,
|
|
@@ -976,7 +967,7 @@ process.env.NODE_ENV !== "production" ? BarChartPremium.propTypes = {
|
|
|
976
967
|
disableLine: _propTypes.default.bool,
|
|
977
968
|
disableTicks: _propTypes.default.bool,
|
|
978
969
|
domainLimit: _propTypes.default.oneOfType([_propTypes.default.oneOf(['nice', 'strict']), _propTypes.default.func]),
|
|
979
|
-
height: _propTypes.default.number,
|
|
970
|
+
height: _propTypes.default.oneOfType([_propTypes.default.oneOf(['auto']), _propTypes.default.number]),
|
|
980
971
|
hideTooltip: _propTypes.default.bool,
|
|
981
972
|
id: _propTypes.default.oneOfType([_propTypes.default.number, _propTypes.default.string]),
|
|
982
973
|
ignoreTooltip: _propTypes.default.bool,
|
|
@@ -1083,7 +1074,7 @@ process.env.NODE_ENV !== "production" ? BarChartPremium.propTypes = {
|
|
|
1083
1074
|
tickSize: _propTypes.default.number,
|
|
1084
1075
|
tickSpacing: _propTypes.default.number,
|
|
1085
1076
|
valueFormatter: _propTypes.default.func,
|
|
1086
|
-
width: _propTypes.default.number,
|
|
1077
|
+
width: _propTypes.default.oneOfType([_propTypes.default.oneOf(['auto']), _propTypes.default.number]),
|
|
1087
1078
|
zoom: _propTypes.default.oneOfType([_propTypes.default.shape({
|
|
1088
1079
|
filterMode: _propTypes.default.oneOf(['discard', 'keep']),
|
|
1089
1080
|
maxEnd: _propTypes.default.number,
|
|
@@ -1156,7 +1147,7 @@ process.env.NODE_ENV !== "production" ? BarChartPremium.propTypes = {
|
|
|
1156
1147
|
tickSize: _propTypes.default.number,
|
|
1157
1148
|
tickSpacing: _propTypes.default.number,
|
|
1158
1149
|
valueFormatter: _propTypes.default.func,
|
|
1159
|
-
width: _propTypes.default.number,
|
|
1150
|
+
width: _propTypes.default.oneOfType([_propTypes.default.oneOf(['auto']), _propTypes.default.number]),
|
|
1160
1151
|
zoom: _propTypes.default.oneOfType([_propTypes.default.shape({
|
|
1161
1152
|
filterMode: _propTypes.default.oneOf(['discard', 'keep']),
|
|
1162
1153
|
maxEnd: _propTypes.default.number,
|
|
@@ -1216,7 +1207,7 @@ process.env.NODE_ENV !== "production" ? BarChartPremium.propTypes = {
|
|
|
1216
1207
|
tickSize: _propTypes.default.number,
|
|
1217
1208
|
tickSpacing: _propTypes.default.number,
|
|
1218
1209
|
valueFormatter: _propTypes.default.func,
|
|
1219
|
-
width: _propTypes.default.number,
|
|
1210
|
+
width: _propTypes.default.oneOfType([_propTypes.default.oneOf(['auto']), _propTypes.default.number]),
|
|
1220
1211
|
zoom: _propTypes.default.oneOfType([_propTypes.default.shape({
|
|
1221
1212
|
filterMode: _propTypes.default.oneOf(['discard', 'keep']),
|
|
1222
1213
|
maxEnd: _propTypes.default.number,
|
|
@@ -1277,7 +1268,7 @@ process.env.NODE_ENV !== "production" ? BarChartPremium.propTypes = {
|
|
|
1277
1268
|
tickSize: _propTypes.default.number,
|
|
1278
1269
|
tickSpacing: _propTypes.default.number,
|
|
1279
1270
|
valueFormatter: _propTypes.default.func,
|
|
1280
|
-
width: _propTypes.default.number,
|
|
1271
|
+
width: _propTypes.default.oneOfType([_propTypes.default.oneOf(['auto']), _propTypes.default.number]),
|
|
1281
1272
|
zoom: _propTypes.default.oneOfType([_propTypes.default.shape({
|
|
1282
1273
|
filterMode: _propTypes.default.oneOf(['discard', 'keep']),
|
|
1283
1274
|
maxEnd: _propTypes.default.number,
|
|
@@ -1337,7 +1328,7 @@ process.env.NODE_ENV !== "production" ? BarChartPremium.propTypes = {
|
|
|
1337
1328
|
tickSize: _propTypes.default.number,
|
|
1338
1329
|
tickSpacing: _propTypes.default.number,
|
|
1339
1330
|
valueFormatter: _propTypes.default.func,
|
|
1340
|
-
width: _propTypes.default.number,
|
|
1331
|
+
width: _propTypes.default.oneOfType([_propTypes.default.oneOf(['auto']), _propTypes.default.number]),
|
|
1341
1332
|
zoom: _propTypes.default.oneOfType([_propTypes.default.shape({
|
|
1342
1333
|
filterMode: _propTypes.default.oneOf(['discard', 'keep']),
|
|
1343
1334
|
maxEnd: _propTypes.default.number,
|
|
@@ -1397,7 +1388,7 @@ process.env.NODE_ENV !== "production" ? BarChartPremium.propTypes = {
|
|
|
1397
1388
|
tickSize: _propTypes.default.number,
|
|
1398
1389
|
tickSpacing: _propTypes.default.number,
|
|
1399
1390
|
valueFormatter: _propTypes.default.func,
|
|
1400
|
-
width: _propTypes.default.number,
|
|
1391
|
+
width: _propTypes.default.oneOfType([_propTypes.default.oneOf(['auto']), _propTypes.default.number]),
|
|
1401
1392
|
zoom: _propTypes.default.oneOfType([_propTypes.default.shape({
|
|
1402
1393
|
filterMode: _propTypes.default.oneOf(['discard', 'keep']),
|
|
1403
1394
|
maxEnd: _propTypes.default.number,
|
|
@@ -1461,7 +1452,7 @@ process.env.NODE_ENV !== "production" ? BarChartPremium.propTypes = {
|
|
|
1461
1452
|
tickSize: _propTypes.default.number,
|
|
1462
1453
|
tickSpacing: _propTypes.default.number,
|
|
1463
1454
|
valueFormatter: _propTypes.default.func,
|
|
1464
|
-
width: _propTypes.default.number,
|
|
1455
|
+
width: _propTypes.default.oneOfType([_propTypes.default.oneOf(['auto']), _propTypes.default.number]),
|
|
1465
1456
|
zoom: _propTypes.default.oneOfType([_propTypes.default.shape({
|
|
1466
1457
|
filterMode: _propTypes.default.oneOf(['discard', 'keep']),
|
|
1467
1458
|
maxEnd: _propTypes.default.number,
|
|
@@ -1525,7 +1516,7 @@ process.env.NODE_ENV !== "production" ? BarChartPremium.propTypes = {
|
|
|
1525
1516
|
tickSize: _propTypes.default.number,
|
|
1526
1517
|
tickSpacing: _propTypes.default.number,
|
|
1527
1518
|
valueFormatter: _propTypes.default.func,
|
|
1528
|
-
width: _propTypes.default.number,
|
|
1519
|
+
width: _propTypes.default.oneOfType([_propTypes.default.oneOf(['auto']), _propTypes.default.number]),
|
|
1529
1520
|
zoom: _propTypes.default.oneOfType([_propTypes.default.shape({
|
|
1530
1521
|
filterMode: _propTypes.default.oneOf(['discard', 'keep']),
|
|
1531
1522
|
maxEnd: _propTypes.default.number,
|
|
@@ -1585,7 +1576,7 @@ process.env.NODE_ENV !== "production" ? BarChartPremium.propTypes = {
|
|
|
1585
1576
|
tickSize: _propTypes.default.number,
|
|
1586
1577
|
tickSpacing: _propTypes.default.number,
|
|
1587
1578
|
valueFormatter: _propTypes.default.func,
|
|
1588
|
-
width: _propTypes.default.number,
|
|
1579
|
+
width: _propTypes.default.oneOfType([_propTypes.default.oneOf(['auto']), _propTypes.default.number]),
|
|
1589
1580
|
zoom: _propTypes.default.oneOfType([_propTypes.default.shape({
|
|
1590
1581
|
filterMode: _propTypes.default.oneOf(['discard', 'keep']),
|
|
1591
1582
|
maxEnd: _propTypes.default.number,
|
|
@@ -118,15 +118,6 @@ process.env.NODE_ENV !== "production" ? BarChartPremium.propTypes = {
|
|
|
118
118
|
x: PropTypes.oneOf(['band', 'line', 'none']),
|
|
119
119
|
y: PropTypes.oneOf(['band', 'line', 'none'])
|
|
120
120
|
}),
|
|
121
|
-
/**
|
|
122
|
-
* @deprecated Use `barLabel` in the chart series instead.
|
|
123
|
-
* If provided, the function will be used to format the label of the bar.
|
|
124
|
-
* It can be set to 'value' to display the current value.
|
|
125
|
-
* @param {BarItem} item The item to format.
|
|
126
|
-
* @param {BarLabelContext} context data about the bar.
|
|
127
|
-
* @returns {string} The formatted label.
|
|
128
|
-
*/
|
|
129
|
-
barLabel: PropTypes.oneOfType([PropTypes.oneOf(['value']), PropTypes.func]),
|
|
130
121
|
/**
|
|
131
122
|
* Defines the border radius of the bar element.
|
|
132
123
|
*/
|
|
@@ -331,7 +322,7 @@ process.env.NODE_ENV !== "production" ? BarChartPremium.propTypes = {
|
|
|
331
322
|
onHighlightedAxisChange: PropTypes.func,
|
|
332
323
|
/**
|
|
333
324
|
* Callback fired when a bar or range bar item is clicked.
|
|
334
|
-
* @param {
|
|
325
|
+
* @param {MouseEvent} event The event source of the callback.
|
|
335
326
|
* @param {BarItemIdentifier | RangeBarItemIdentifier} itemIdentifier The item identifier.
|
|
336
327
|
*/
|
|
337
328
|
onItemClick: PropTypes.func,
|
|
@@ -456,7 +447,7 @@ process.env.NODE_ENV !== "production" ? BarChartPremium.propTypes = {
|
|
|
456
447
|
tickLabelStyle: PropTypes.object,
|
|
457
448
|
tickSize: PropTypes.number
|
|
458
449
|
})),
|
|
459
|
-
height: PropTypes.number,
|
|
450
|
+
height: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.number]),
|
|
460
451
|
hideTooltip: PropTypes.bool,
|
|
461
452
|
id: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
|
|
462
453
|
ignoreTooltip: PropTypes.bool,
|
|
@@ -530,7 +521,7 @@ process.env.NODE_ENV !== "production" ? BarChartPremium.propTypes = {
|
|
|
530
521
|
tickLabelStyle: PropTypes.object,
|
|
531
522
|
tickSize: PropTypes.number
|
|
532
523
|
})),
|
|
533
|
-
height: PropTypes.number,
|
|
524
|
+
height: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.number]),
|
|
534
525
|
hideTooltip: PropTypes.bool,
|
|
535
526
|
id: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
|
|
536
527
|
ignoreTooltip: PropTypes.bool,
|
|
@@ -594,7 +585,7 @@ process.env.NODE_ENV !== "production" ? BarChartPremium.propTypes = {
|
|
|
594
585
|
disableLine: PropTypes.bool,
|
|
595
586
|
disableTicks: PropTypes.bool,
|
|
596
587
|
domainLimit: PropTypes.oneOfType([PropTypes.oneOf(['nice', 'strict']), PropTypes.func]),
|
|
597
|
-
height: PropTypes.number,
|
|
588
|
+
height: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.number]),
|
|
598
589
|
hideTooltip: PropTypes.bool,
|
|
599
590
|
id: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
|
|
600
591
|
ignoreTooltip: PropTypes.bool,
|
|
@@ -656,7 +647,7 @@ process.env.NODE_ENV !== "production" ? BarChartPremium.propTypes = {
|
|
|
656
647
|
disableLine: PropTypes.bool,
|
|
657
648
|
disableTicks: PropTypes.bool,
|
|
658
649
|
domainLimit: PropTypes.oneOfType([PropTypes.oneOf(['nice', 'strict']), PropTypes.func]),
|
|
659
|
-
height: PropTypes.number,
|
|
650
|
+
height: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.number]),
|
|
660
651
|
hideTooltip: PropTypes.bool,
|
|
661
652
|
id: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
|
|
662
653
|
ignoreTooltip: PropTypes.bool,
|
|
@@ -717,7 +708,7 @@ process.env.NODE_ENV !== "production" ? BarChartPremium.propTypes = {
|
|
|
717
708
|
disableLine: PropTypes.bool,
|
|
718
709
|
disableTicks: PropTypes.bool,
|
|
719
710
|
domainLimit: PropTypes.oneOfType([PropTypes.oneOf(['nice', 'strict']), PropTypes.func]),
|
|
720
|
-
height: PropTypes.number,
|
|
711
|
+
height: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.number]),
|
|
721
712
|
hideTooltip: PropTypes.bool,
|
|
722
713
|
id: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
|
|
723
714
|
ignoreTooltip: PropTypes.bool,
|
|
@@ -778,7 +769,7 @@ process.env.NODE_ENV !== "production" ? BarChartPremium.propTypes = {
|
|
|
778
769
|
disableLine: PropTypes.bool,
|
|
779
770
|
disableTicks: PropTypes.bool,
|
|
780
771
|
domainLimit: PropTypes.oneOfType([PropTypes.oneOf(['nice', 'strict']), PropTypes.func]),
|
|
781
|
-
height: PropTypes.number,
|
|
772
|
+
height: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.number]),
|
|
782
773
|
hideTooltip: PropTypes.bool,
|
|
783
774
|
id: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
|
|
784
775
|
ignoreTooltip: PropTypes.bool,
|
|
@@ -839,7 +830,7 @@ process.env.NODE_ENV !== "production" ? BarChartPremium.propTypes = {
|
|
|
839
830
|
disableLine: PropTypes.bool,
|
|
840
831
|
disableTicks: PropTypes.bool,
|
|
841
832
|
domainLimit: PropTypes.oneOfType([PropTypes.oneOf(['nice', 'strict']), PropTypes.func]),
|
|
842
|
-
height: PropTypes.number,
|
|
833
|
+
height: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.number]),
|
|
843
834
|
hideTooltip: PropTypes.bool,
|
|
844
835
|
id: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
|
|
845
836
|
ignoreTooltip: PropTypes.bool,
|
|
@@ -904,7 +895,7 @@ process.env.NODE_ENV !== "production" ? BarChartPremium.propTypes = {
|
|
|
904
895
|
disableLine: PropTypes.bool,
|
|
905
896
|
disableTicks: PropTypes.bool,
|
|
906
897
|
domainLimit: PropTypes.oneOfType([PropTypes.oneOf(['nice', 'strict']), PropTypes.func]),
|
|
907
|
-
height: PropTypes.number,
|
|
898
|
+
height: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.number]),
|
|
908
899
|
hideTooltip: PropTypes.bool,
|
|
909
900
|
id: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
|
|
910
901
|
ignoreTooltip: PropTypes.bool,
|
|
@@ -969,7 +960,7 @@ process.env.NODE_ENV !== "production" ? BarChartPremium.propTypes = {
|
|
|
969
960
|
disableLine: PropTypes.bool,
|
|
970
961
|
disableTicks: PropTypes.bool,
|
|
971
962
|
domainLimit: PropTypes.oneOfType([PropTypes.oneOf(['nice', 'strict']), PropTypes.func]),
|
|
972
|
-
height: PropTypes.number,
|
|
963
|
+
height: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.number]),
|
|
973
964
|
hideTooltip: PropTypes.bool,
|
|
974
965
|
id: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
|
|
975
966
|
ignoreTooltip: PropTypes.bool,
|
|
@@ -1076,7 +1067,7 @@ process.env.NODE_ENV !== "production" ? BarChartPremium.propTypes = {
|
|
|
1076
1067
|
tickSize: PropTypes.number,
|
|
1077
1068
|
tickSpacing: PropTypes.number,
|
|
1078
1069
|
valueFormatter: PropTypes.func,
|
|
1079
|
-
width: PropTypes.number,
|
|
1070
|
+
width: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.number]),
|
|
1080
1071
|
zoom: PropTypes.oneOfType([PropTypes.shape({
|
|
1081
1072
|
filterMode: PropTypes.oneOf(['discard', 'keep']),
|
|
1082
1073
|
maxEnd: PropTypes.number,
|
|
@@ -1149,7 +1140,7 @@ process.env.NODE_ENV !== "production" ? BarChartPremium.propTypes = {
|
|
|
1149
1140
|
tickSize: PropTypes.number,
|
|
1150
1141
|
tickSpacing: PropTypes.number,
|
|
1151
1142
|
valueFormatter: PropTypes.func,
|
|
1152
|
-
width: PropTypes.number,
|
|
1143
|
+
width: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.number]),
|
|
1153
1144
|
zoom: PropTypes.oneOfType([PropTypes.shape({
|
|
1154
1145
|
filterMode: PropTypes.oneOf(['discard', 'keep']),
|
|
1155
1146
|
maxEnd: PropTypes.number,
|
|
@@ -1209,7 +1200,7 @@ process.env.NODE_ENV !== "production" ? BarChartPremium.propTypes = {
|
|
|
1209
1200
|
tickSize: PropTypes.number,
|
|
1210
1201
|
tickSpacing: PropTypes.number,
|
|
1211
1202
|
valueFormatter: PropTypes.func,
|
|
1212
|
-
width: PropTypes.number,
|
|
1203
|
+
width: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.number]),
|
|
1213
1204
|
zoom: PropTypes.oneOfType([PropTypes.shape({
|
|
1214
1205
|
filterMode: PropTypes.oneOf(['discard', 'keep']),
|
|
1215
1206
|
maxEnd: PropTypes.number,
|
|
@@ -1270,7 +1261,7 @@ process.env.NODE_ENV !== "production" ? BarChartPremium.propTypes = {
|
|
|
1270
1261
|
tickSize: PropTypes.number,
|
|
1271
1262
|
tickSpacing: PropTypes.number,
|
|
1272
1263
|
valueFormatter: PropTypes.func,
|
|
1273
|
-
width: PropTypes.number,
|
|
1264
|
+
width: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.number]),
|
|
1274
1265
|
zoom: PropTypes.oneOfType([PropTypes.shape({
|
|
1275
1266
|
filterMode: PropTypes.oneOf(['discard', 'keep']),
|
|
1276
1267
|
maxEnd: PropTypes.number,
|
|
@@ -1330,7 +1321,7 @@ process.env.NODE_ENV !== "production" ? BarChartPremium.propTypes = {
|
|
|
1330
1321
|
tickSize: PropTypes.number,
|
|
1331
1322
|
tickSpacing: PropTypes.number,
|
|
1332
1323
|
valueFormatter: PropTypes.func,
|
|
1333
|
-
width: PropTypes.number,
|
|
1324
|
+
width: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.number]),
|
|
1334
1325
|
zoom: PropTypes.oneOfType([PropTypes.shape({
|
|
1335
1326
|
filterMode: PropTypes.oneOf(['discard', 'keep']),
|
|
1336
1327
|
maxEnd: PropTypes.number,
|
|
@@ -1390,7 +1381,7 @@ process.env.NODE_ENV !== "production" ? BarChartPremium.propTypes = {
|
|
|
1390
1381
|
tickSize: PropTypes.number,
|
|
1391
1382
|
tickSpacing: PropTypes.number,
|
|
1392
1383
|
valueFormatter: PropTypes.func,
|
|
1393
|
-
width: PropTypes.number,
|
|
1384
|
+
width: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.number]),
|
|
1394
1385
|
zoom: PropTypes.oneOfType([PropTypes.shape({
|
|
1395
1386
|
filterMode: PropTypes.oneOf(['discard', 'keep']),
|
|
1396
1387
|
maxEnd: PropTypes.number,
|
|
@@ -1454,7 +1445,7 @@ process.env.NODE_ENV !== "production" ? BarChartPremium.propTypes = {
|
|
|
1454
1445
|
tickSize: PropTypes.number,
|
|
1455
1446
|
tickSpacing: PropTypes.number,
|
|
1456
1447
|
valueFormatter: PropTypes.func,
|
|
1457
|
-
width: PropTypes.number,
|
|
1448
|
+
width: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.number]),
|
|
1458
1449
|
zoom: PropTypes.oneOfType([PropTypes.shape({
|
|
1459
1450
|
filterMode: PropTypes.oneOf(['discard', 'keep']),
|
|
1460
1451
|
maxEnd: PropTypes.number,
|
|
@@ -1518,7 +1509,7 @@ process.env.NODE_ENV !== "production" ? BarChartPremium.propTypes = {
|
|
|
1518
1509
|
tickSize: PropTypes.number,
|
|
1519
1510
|
tickSpacing: PropTypes.number,
|
|
1520
1511
|
valueFormatter: PropTypes.func,
|
|
1521
|
-
width: PropTypes.number,
|
|
1512
|
+
width: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.number]),
|
|
1522
1513
|
zoom: PropTypes.oneOfType([PropTypes.shape({
|
|
1523
1514
|
filterMode: PropTypes.oneOf(['discard', 'keep']),
|
|
1524
1515
|
maxEnd: PropTypes.number,
|
|
@@ -1578,7 +1569,7 @@ process.env.NODE_ENV !== "production" ? BarChartPremium.propTypes = {
|
|
|
1578
1569
|
tickSize: PropTypes.number,
|
|
1579
1570
|
tickSpacing: PropTypes.number,
|
|
1580
1571
|
valueFormatter: PropTypes.func,
|
|
1581
|
-
width: PropTypes.number,
|
|
1572
|
+
width: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.number]),
|
|
1582
1573
|
zoom: PropTypes.oneOfType([PropTypes.shape({
|
|
1583
1574
|
filterMode: PropTypes.oneOf(['discard', 'keep']),
|
|
1584
1575
|
maxEnd: PropTypes.number,
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
var _internals = require("@mui/x-charts/internals");
|
|
8
|
+
const descriptionGetter = params => {
|
|
9
|
+
const {
|
|
10
|
+
identifier,
|
|
11
|
+
series,
|
|
12
|
+
xAxis,
|
|
13
|
+
yAxis,
|
|
14
|
+
localeText
|
|
15
|
+
} = params;
|
|
16
|
+
const label = (0, _internals.getLabel)(series.label, 'tooltip');
|
|
17
|
+
const value = series.data[identifier.dataIndex] ?? null;
|
|
18
|
+
const isHorizontal = series.layout === 'horizontal';
|
|
19
|
+
const categoryAxis = isHorizontal ? yAxis : xAxis;
|
|
20
|
+
const categoryValue = categoryAxis.data?.[identifier.dataIndex] ?? null;
|
|
21
|
+
const formattedValue = series.valueFormatter(value, {
|
|
22
|
+
dataIndex: identifier.dataIndex
|
|
23
|
+
}) ?? '';
|
|
24
|
+
const formattedCategoryValue = categoryAxis.valueFormatter?.(categoryValue, {
|
|
25
|
+
location: 'tooltip',
|
|
26
|
+
scale: categoryAxis.scale
|
|
27
|
+
}) ?? '';
|
|
28
|
+
return localeText.rangeBarDescription({
|
|
29
|
+
value,
|
|
30
|
+
formattedValue,
|
|
31
|
+
categoryValue,
|
|
32
|
+
formattedCategoryValue,
|
|
33
|
+
seriesLabel: label
|
|
34
|
+
});
|
|
35
|
+
};
|
|
36
|
+
var _default = exports.default = descriptionGetter;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { getLabel } from '@mui/x-charts/internals';
|
|
2
|
+
const descriptionGetter = params => {
|
|
3
|
+
const {
|
|
4
|
+
identifier,
|
|
5
|
+
series,
|
|
6
|
+
xAxis,
|
|
7
|
+
yAxis,
|
|
8
|
+
localeText
|
|
9
|
+
} = params;
|
|
10
|
+
const label = getLabel(series.label, 'tooltip');
|
|
11
|
+
const value = series.data[identifier.dataIndex] ?? null;
|
|
12
|
+
const isHorizontal = series.layout === 'horizontal';
|
|
13
|
+
const categoryAxis = isHorizontal ? yAxis : xAxis;
|
|
14
|
+
const categoryValue = categoryAxis.data?.[identifier.dataIndex] ?? null;
|
|
15
|
+
const formattedValue = series.valueFormatter(value, {
|
|
16
|
+
dataIndex: identifier.dataIndex
|
|
17
|
+
}) ?? '';
|
|
18
|
+
const formattedCategoryValue = categoryAxis.valueFormatter?.(categoryValue, {
|
|
19
|
+
location: 'tooltip',
|
|
20
|
+
scale: categoryAxis.scale
|
|
21
|
+
}) ?? '';
|
|
22
|
+
return localeText.rangeBarDescription({
|
|
23
|
+
value,
|
|
24
|
+
formattedValue,
|
|
25
|
+
categoryValue,
|
|
26
|
+
formattedCategoryValue,
|
|
27
|
+
seriesLabel: label
|
|
28
|
+
});
|
|
29
|
+
};
|
|
30
|
+
export default descriptionGetter;
|
|
@@ -15,6 +15,7 @@ var _legend = _interopRequireDefault(require("./legend"));
|
|
|
15
15
|
var _keyboardFocusHandler = _interopRequireDefault(require("./keyboardFocusHandler"));
|
|
16
16
|
var _tooltipPosition = _interopRequireDefault(require("./tooltipPosition"));
|
|
17
17
|
var _getSeriesWithDefaultValues = require("./getSeriesWithDefaultValues");
|
|
18
|
+
var _descriptionGetter = _interopRequireDefault(require("./descriptionGetter"));
|
|
18
19
|
const rangeBarSeriesConfig = exports.rangeBarSeriesConfig = {
|
|
19
20
|
seriesProcessor: _seriesProcessor.default,
|
|
20
21
|
colorProcessor: _getColor.default,
|
|
@@ -28,6 +29,7 @@ const rangeBarSeriesConfig = exports.rangeBarSeriesConfig = {
|
|
|
28
29
|
keyboardFocusHandler: _keyboardFocusHandler.default,
|
|
29
30
|
identifierSerializer: _internals.identifierSerializerSeriesIdDataIndex,
|
|
30
31
|
identifierCleaner: _internals.identifierCleanerSeriesIdDataIndex,
|
|
32
|
+
descriptionGetter: _descriptionGetter.default,
|
|
31
33
|
isHighlightedCreator: _internals.createIsHighlighted,
|
|
32
34
|
isFadedCreator: _internals.createIsFaded
|
|
33
35
|
};
|
|
@@ -7,6 +7,7 @@ import legendGetter from "./legend.mjs";
|
|
|
7
7
|
import keyboardFocusHandler from "./keyboardFocusHandler.mjs";
|
|
8
8
|
import tooltipItemPositionGetter from "./tooltipPosition.mjs";
|
|
9
9
|
import { getSeriesWithDefaultValues } from "./getSeriesWithDefaultValues.mjs";
|
|
10
|
+
import descriptionGetter from "./descriptionGetter.mjs";
|
|
10
11
|
export const rangeBarSeriesConfig = {
|
|
11
12
|
seriesProcessor,
|
|
12
13
|
colorProcessor: getColor,
|
|
@@ -20,6 +21,7 @@ export const rangeBarSeriesConfig = {
|
|
|
20
21
|
keyboardFocusHandler,
|
|
21
22
|
identifierSerializer: identifierSerializerSeriesIdDataIndex,
|
|
22
23
|
identifierCleaner: identifierCleanerSeriesIdDataIndex,
|
|
24
|
+
descriptionGetter,
|
|
23
25
|
isHighlightedCreator: createIsHighlighted,
|
|
24
26
|
isFadedCreator: createIsFaded
|
|
25
27
|
};
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,111 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 9.0.0-beta.0
|
|
4
|
+
|
|
5
|
+
<!-- generated comparing v9.0.0-alpha.4..master -->
|
|
6
|
+
|
|
7
|
+
_Mar 27, 2026_
|
|
8
|
+
|
|
9
|
+
We'd like to extend a big thank you to the 10 contributors who made this release possible. Here are some highlights ✨:
|
|
10
|
+
|
|
11
|
+
- 🔊 New Charts voiceover component for improved screen reader support
|
|
12
|
+
- ⌨️ Charts keyboard navigation improvements: axis tooltip now shows when navigating with the keyboard
|
|
13
|
+
- 📊 Charts axes now can be set to automatically resize to fit their content
|
|
14
|
+
- 📝 New `rowCheckbox` slot in Data Grid for easier checkbox column customization
|
|
15
|
+
- ⚡️ `fetchRows()` API in Data Grid Pro now defaults `start` and `end` based on scroll position with lazy loading
|
|
16
|
+
- 🐞 Bugfixes and internal improvements
|
|
17
|
+
|
|
18
|
+
The following team members contributed to this release:
|
|
19
|
+
@aemartos, @alexfauquette, @arminmeh, @cherniavskii, @Janpot, @JCQuintas, @mapache-salvaje, @michelengelen, @noraleonte, @rita-codes
|
|
20
|
+
|
|
21
|
+
### Data Grid
|
|
22
|
+
|
|
23
|
+
#### `@mui/x-data-grid@9.0.0-beta.0`
|
|
24
|
+
|
|
25
|
+
- [DataGrid] Add `rowCheckbox` slot for easier customization (#21797) @michelengelen
|
|
26
|
+
- [DataGrid] Prevent repeated `hasScrollbar` state updates (#21820) @arminmeh
|
|
27
|
+
|
|
28
|
+
#### `@mui/x-data-grid-pro@9.0.0-beta.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
29
|
+
|
|
30
|
+
Same changes as in `@mui/x-data-grid@9.0.0-beta.0`, plus:
|
|
31
|
+
|
|
32
|
+
- [DataGridPro] `fetchRows()` API's default `start` and `end` params based on scroll position with lazy loading (#21742) @arminmeh
|
|
33
|
+
|
|
34
|
+
#### `@mui/x-data-grid-premium@9.0.0-beta.0` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
35
|
+
|
|
36
|
+
Same changes as in `@mui/x-data-grid-pro@9.0.0-beta.0`.
|
|
37
|
+
|
|
38
|
+
### Date and Time Pickers
|
|
39
|
+
|
|
40
|
+
#### `@mui/x-date-pickers@9.0.0-beta.0`
|
|
41
|
+
|
|
42
|
+
Internal changes.
|
|
43
|
+
|
|
44
|
+
#### `@mui/x-date-pickers-pro@9.0.0-beta.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
45
|
+
|
|
46
|
+
Same changes as in `@mui/x-date-pickers@9.0.0-beta.0`.
|
|
47
|
+
|
|
48
|
+
### Charts
|
|
49
|
+
|
|
50
|
+
#### `@mui/x-charts@9.0.0-beta.0`
|
|
51
|
+
|
|
52
|
+
- [charts] Add `className` prop to Pro chart plot components (#21793) @JCQuintas
|
|
53
|
+
- [charts] Add experimental position-based pointer interaction for line series (#21809) @JCQuintas
|
|
54
|
+
- [charts] Add l10n to the bar accessibility (#21815) @alexfauquette
|
|
55
|
+
- [charts] Add localization for the basic charts (#21822) @alexfauquette
|
|
56
|
+
- [charts] Add voiceover component (#21344) @alexfauquette
|
|
57
|
+
- [charts] Allow axes to automatically resize to content (#21087) @JCQuintas
|
|
58
|
+
- [charts] Document multiple use-cases for references (#21768) @alexfauquette
|
|
59
|
+
- [charts] Remove compatibility layer for React vs native events (#21780) @JCQuintas
|
|
60
|
+
- [charts] Remove deprecated `barLabel` props (#21783) @alexfauquette
|
|
61
|
+
- [charts] Show axis tooltip when navigating with keyboard (#21689) @Copilot
|
|
62
|
+
|
|
63
|
+
#### `@mui/x-charts-pro@9.0.0-beta.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
64
|
+
|
|
65
|
+
Same changes as in `@mui/x-charts@9.0.0-beta.0`.
|
|
66
|
+
|
|
67
|
+
#### `@mui/x-charts-premium@9.0.0-beta.0` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
68
|
+
|
|
69
|
+
Same changes as in `@mui/x-charts-pro@9.0.0-beta.0`.
|
|
70
|
+
|
|
71
|
+
### Tree View
|
|
72
|
+
|
|
73
|
+
#### `@mui/x-tree-view@9.0.0-alpha.4`
|
|
74
|
+
|
|
75
|
+
Internal changes.
|
|
76
|
+
|
|
77
|
+
#### `@mui/x-tree-view-pro@9.0.0-alpha.4` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
78
|
+
|
|
79
|
+
Same changes as in `@mui/x-tree-view@9.0.0-alpha.4`.
|
|
80
|
+
|
|
81
|
+
### Codemod
|
|
82
|
+
|
|
83
|
+
#### `@mui/x-codemod@9.0.0-alpha.4`
|
|
84
|
+
|
|
85
|
+
Internal changes.
|
|
86
|
+
|
|
87
|
+
### Docs
|
|
88
|
+
|
|
89
|
+
- [docs] Document how to customize voiceover announcement (#21833) @alexfauquette
|
|
90
|
+
- [docs] Remove Discord mention from docs (#21855) @mapache-salvaje
|
|
91
|
+
- [docs] Remove stabilized experimental feature from demo (#21869) @JCQuintas
|
|
92
|
+
- [docs] Update telemetry guide to reflect pseudonymous data collection and license compliance (#21812) @aemartos
|
|
93
|
+
- [docs] Revise the Sparkline doc (#21614) @mapache-salvaje
|
|
94
|
+
- [docs] Revise the Gauge doc (#21673) @mapache-salvaje
|
|
95
|
+
- [docs] Revise the Heatmap doc (#21676) @mapache-salvaje
|
|
96
|
+
|
|
97
|
+
### Core
|
|
98
|
+
|
|
99
|
+
- [code-infra] Remove unused deps and unify es-toolkit via catalog (#21840) @Janpot
|
|
100
|
+
- [code-infra] Update @mui/internal-bundle-size-checker to canary.68 (#21836) @Janpot
|
|
101
|
+
- [code-infra] Update next (#21837) @Janpot
|
|
102
|
+
- [internal] Remove headless data grid packages (#21843) @cherniavskii
|
|
103
|
+
|
|
104
|
+
### Miscellaneous
|
|
105
|
+
|
|
106
|
+
- Add @romgrk to CODEOWNERS for `x-virtualizer` and `x-internals` (#21819) @Copilot
|
|
107
|
+
- [x-license] add 2022 plan version (#21814) @aemartos
|
|
108
|
+
|
|
3
109
|
## 9.0.0-alpha.4
|
|
4
110
|
|
|
5
111
|
_Mar 19, 2026_
|
|
@@ -59,7 +165,7 @@ Same changes as in `@mui/x-date-pickers@9.0.0-alpha.4`.
|
|
|
59
165
|
- [charts] Remove deprecated `useMouseTracker()` (#21787) @alexfauquette
|
|
60
166
|
- [charts] Remove deprecated classes (#21775) @alexfauquette
|
|
61
167
|
- [charts] Remove deprecated props from PieArcLabel animation (#21789) @alexfauquette
|
|
62
|
-
- [charts] Remove get
|
|
168
|
+
- [charts] Remove get\*UtilityClass from public exports (#21769) @JCQuintas
|
|
63
169
|
- [charts] Remove the deprecated `disableHover` property (#21785) @alexfauquette
|
|
64
170
|
- [charts] Remove the deprecated `message` prop (#21784) @alexfauquette
|
|
65
171
|
- [charts] Remove deprecated props about voronoi (#21796) @alexfauquette
|