@mui/x-charts 8.13.0 → 8.14.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/BarChart/BarChart.js +44 -36
- package/CHANGELOG.md +171 -1
- package/ChartContainer/ChartContainer.js +68 -56
- package/ChartsTooltip/ChartsTooltipContainer.js +2 -0
- package/ChartsXAxis/useAxisTicksProps.d.ts +197 -355
- package/ChartsYAxis/useAxisTicksProps.d.ts +197 -355
- package/LineChart/LineChart.js +44 -36
- package/PieChart/PieArc.d.ts +18 -4
- package/PieChart/PieArc.js +11 -5
- package/PieChart/PieArcPlot.js +3 -1
- package/ScatterChart/ScatterChart.js +44 -36
- package/SparkLineChart/SparkLineChart.js +44 -36
- package/esm/BarChart/BarChart.js +44 -36
- package/esm/ChartContainer/ChartContainer.js +68 -56
- package/esm/ChartsTooltip/ChartsTooltipContainer.js +2 -0
- package/esm/ChartsXAxis/useAxisTicksProps.d.ts +197 -355
- package/esm/ChartsYAxis/useAxisTicksProps.d.ts +197 -355
- package/esm/LineChart/LineChart.js +44 -36
- package/esm/PieChart/PieArc.d.ts +18 -4
- package/esm/PieChart/PieArc.js +11 -5
- package/esm/PieChart/PieArcPlot.js +3 -1
- package/esm/ScatterChart/ScatterChart.js +44 -36
- package/esm/SparkLineChart/SparkLineChart.js +44 -36
- package/esm/hooks/animation/useAnimate.js +5 -3
- package/esm/hooks/useScale.d.ts +5 -1
- package/esm/index.js +1 -1
- package/esm/internals/animation/useAnimateInternal.d.ts +1 -1
- package/esm/internals/animation/useAnimateInternal.js +1 -1
- package/esm/internals/plugins/corePlugins/useChartInteractionListener/useChartInteractionListener.js +8 -8
- package/esm/internals/plugins/corePlugins/useChartInteractionListener/useChartInteractionListener.types.d.ts +4 -2
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/computeAxisValue.d.ts +9 -11
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/computeAxisValue.js +4 -28
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/createAxisFilterMapper.d.ts +4 -5
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/createAxisFilterMapper.js +3 -24
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/domain.d.ts +20 -0
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/domain.js +77 -0
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisScale.d.ts +4 -65
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisScale.js +7 -104
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisPreview.selectors.d.ts +3 -3
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisPreview.selectors.js +31 -39
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisRendering.selectors.d.ts +166 -6
- package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisRendering.selectors.js +158 -47
- package/esm/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.js +10 -3
- package/esm/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.selectors.d.ts +4 -4
- package/esm/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.selectors.js +3 -2
- package/esm/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.types.d.ts +6 -0
- package/esm/internals/plugins/featurePlugins/useChartKeyboardNavigation/useChartKeyboardNavigation.js +5 -1
- package/esm/internals/plugins/featurePlugins/useChartKeyboardNavigation/useChartKeyboardNavigation.selectors.d.ts +9 -1
- package/esm/internals/plugins/featurePlugins/useChartKeyboardNavigation/useChartKeyboardNavigation.selectors.js +10 -1
- package/esm/internals/plugins/featurePlugins/useChartKeyboardNavigation/useChartKeyboardNavigation.types.d.ts +2 -1
- package/esm/internals/plugins/featurePlugins/useChartPolarAxis/computeAxisValue.js +2 -2
- package/esm/internals/scaleGuards.d.ts +12 -6
- package/esm/internals/symlogScale.js +5 -0
- package/esm/locales/enUS.js +4 -4
- package/esm/locales/ptBR.js +97 -99
- package/esm/models/axis.d.ts +39 -17
- package/esm/models/axis.js +3 -0
- package/hooks/animation/useAnimate.js +4 -3
- package/hooks/useScale.d.ts +5 -1
- package/index.js +1 -1
- package/internals/animation/useAnimateInternal.d.ts +1 -1
- package/internals/animation/useAnimateInternal.js +1 -1
- package/internals/plugins/corePlugins/useChartInteractionListener/useChartInteractionListener.js +7 -7
- package/internals/plugins/corePlugins/useChartInteractionListener/useChartInteractionListener.types.d.ts +4 -2
- package/internals/plugins/featurePlugins/useChartCartesianAxis/computeAxisValue.d.ts +9 -11
- package/internals/plugins/featurePlugins/useChartCartesianAxis/computeAxisValue.js +4 -28
- package/internals/plugins/featurePlugins/useChartCartesianAxis/createAxisFilterMapper.d.ts +4 -5
- package/internals/plugins/featurePlugins/useChartCartesianAxis/createAxisFilterMapper.js +3 -25
- package/internals/plugins/featurePlugins/useChartCartesianAxis/domain.d.ts +20 -0
- package/internals/plugins/featurePlugins/useChartCartesianAxis/domain.js +84 -0
- package/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisScale.d.ts +4 -65
- package/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisScale.js +8 -108
- package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisPreview.selectors.d.ts +3 -3
- package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisPreview.selectors.js +29 -37
- package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisRendering.selectors.d.ts +166 -6
- package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisRendering.selectors.js +158 -47
- package/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.js +10 -3
- package/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.selectors.d.ts +4 -4
- package/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.selectors.js +3 -2
- package/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.types.d.ts +6 -0
- package/internals/plugins/featurePlugins/useChartKeyboardNavigation/useChartKeyboardNavigation.js +5 -1
- package/internals/plugins/featurePlugins/useChartKeyboardNavigation/useChartKeyboardNavigation.selectors.d.ts +9 -1
- package/internals/plugins/featurePlugins/useChartKeyboardNavigation/useChartKeyboardNavigation.selectors.js +11 -2
- package/internals/plugins/featurePlugins/useChartKeyboardNavigation/useChartKeyboardNavigation.types.d.ts +2 -1
- package/internals/plugins/featurePlugins/useChartPolarAxis/computeAxisValue.js +1 -1
- package/internals/scaleGuards.d.ts +12 -6
- package/internals/symlogScale.js +5 -0
- package/locales/enUS.js +4 -4
- package/locales/ptBR.js +97 -99
- package/models/axis.d.ts +39 -17
- package/models/axis.js +4 -0
- package/package.json +6 -6
package/BarChart/BarChart.js
CHANGED
|
@@ -282,8 +282,6 @@ process.env.NODE_ENV !== "production" ? BarChart.propTypes = {
|
|
|
282
282
|
ignoreTooltip: _propTypes.default.bool,
|
|
283
283
|
label: _propTypes.default.string,
|
|
284
284
|
labelStyle: _propTypes.default.object,
|
|
285
|
-
max: _propTypes.default.oneOfType([_propTypes.default.instanceOf(Date), _propTypes.default.number]),
|
|
286
|
-
min: _propTypes.default.oneOfType([_propTypes.default.instanceOf(Date), _propTypes.default.number]),
|
|
287
285
|
offset: _propTypes.default.number,
|
|
288
286
|
position: _propTypes.default.oneOf(['bottom', 'none', 'top']),
|
|
289
287
|
reverse: _propTypes.default.bool,
|
|
@@ -336,8 +334,6 @@ process.env.NODE_ENV !== "production" ? BarChart.propTypes = {
|
|
|
336
334
|
ignoreTooltip: _propTypes.default.bool,
|
|
337
335
|
label: _propTypes.default.string,
|
|
338
336
|
labelStyle: _propTypes.default.object,
|
|
339
|
-
max: _propTypes.default.oneOfType([_propTypes.default.instanceOf(Date), _propTypes.default.number]),
|
|
340
|
-
min: _propTypes.default.oneOfType([_propTypes.default.instanceOf(Date), _propTypes.default.number]),
|
|
341
337
|
offset: _propTypes.default.number,
|
|
342
338
|
position: _propTypes.default.oneOf(['bottom', 'none', 'top']),
|
|
343
339
|
reverse: _propTypes.default.bool,
|
|
@@ -380,8 +376,8 @@ process.env.NODE_ENV !== "production" ? BarChart.propTypes = {
|
|
|
380
376
|
ignoreTooltip: _propTypes.default.bool,
|
|
381
377
|
label: _propTypes.default.string,
|
|
382
378
|
labelStyle: _propTypes.default.object,
|
|
383
|
-
max: _propTypes.default.
|
|
384
|
-
min: _propTypes.default.
|
|
379
|
+
max: _propTypes.default.number,
|
|
380
|
+
min: _propTypes.default.number,
|
|
385
381
|
offset: _propTypes.default.number,
|
|
386
382
|
position: _propTypes.default.oneOf(['bottom', 'none', 'top']),
|
|
387
383
|
reverse: _propTypes.default.bool,
|
|
@@ -425,8 +421,8 @@ process.env.NODE_ENV !== "production" ? BarChart.propTypes = {
|
|
|
425
421
|
ignoreTooltip: _propTypes.default.bool,
|
|
426
422
|
label: _propTypes.default.string,
|
|
427
423
|
labelStyle: _propTypes.default.object,
|
|
428
|
-
max: _propTypes.default.
|
|
429
|
-
min: _propTypes.default.
|
|
424
|
+
max: _propTypes.default.number,
|
|
425
|
+
min: _propTypes.default.number,
|
|
430
426
|
offset: _propTypes.default.number,
|
|
431
427
|
position: _propTypes.default.oneOf(['bottom', 'none', 'top']),
|
|
432
428
|
reverse: _propTypes.default.bool,
|
|
@@ -469,8 +465,8 @@ process.env.NODE_ENV !== "production" ? BarChart.propTypes = {
|
|
|
469
465
|
ignoreTooltip: _propTypes.default.bool,
|
|
470
466
|
label: _propTypes.default.string,
|
|
471
467
|
labelStyle: _propTypes.default.object,
|
|
472
|
-
max: _propTypes.default.
|
|
473
|
-
min: _propTypes.default.
|
|
468
|
+
max: _propTypes.default.number,
|
|
469
|
+
min: _propTypes.default.number,
|
|
474
470
|
offset: _propTypes.default.number,
|
|
475
471
|
position: _propTypes.default.oneOf(['bottom', 'none', 'top']),
|
|
476
472
|
reverse: _propTypes.default.bool,
|
|
@@ -513,8 +509,8 @@ process.env.NODE_ENV !== "production" ? BarChart.propTypes = {
|
|
|
513
509
|
ignoreTooltip: _propTypes.default.bool,
|
|
514
510
|
label: _propTypes.default.string,
|
|
515
511
|
labelStyle: _propTypes.default.object,
|
|
516
|
-
max: _propTypes.default.
|
|
517
|
-
min: _propTypes.default.
|
|
512
|
+
max: _propTypes.default.number,
|
|
513
|
+
min: _propTypes.default.number,
|
|
518
514
|
offset: _propTypes.default.number,
|
|
519
515
|
position: _propTypes.default.oneOf(['bottom', 'none', 'top']),
|
|
520
516
|
reverse: _propTypes.default.bool,
|
|
@@ -557,8 +553,12 @@ process.env.NODE_ENV !== "production" ? BarChart.propTypes = {
|
|
|
557
553
|
ignoreTooltip: _propTypes.default.bool,
|
|
558
554
|
label: _propTypes.default.string,
|
|
559
555
|
labelStyle: _propTypes.default.object,
|
|
560
|
-
max: _propTypes.default.oneOfType([_propTypes.default.
|
|
561
|
-
|
|
556
|
+
max: _propTypes.default.oneOfType([_propTypes.default.number, _propTypes.default.shape({
|
|
557
|
+
valueOf: _propTypes.default.func.isRequired
|
|
558
|
+
})]),
|
|
559
|
+
min: _propTypes.default.oneOfType([_propTypes.default.number, _propTypes.default.shape({
|
|
560
|
+
valueOf: _propTypes.default.func.isRequired
|
|
561
|
+
})]),
|
|
562
562
|
offset: _propTypes.default.number,
|
|
563
563
|
position: _propTypes.default.oneOf(['bottom', 'none', 'top']),
|
|
564
564
|
reverse: _propTypes.default.bool,
|
|
@@ -601,8 +601,12 @@ process.env.NODE_ENV !== "production" ? BarChart.propTypes = {
|
|
|
601
601
|
ignoreTooltip: _propTypes.default.bool,
|
|
602
602
|
label: _propTypes.default.string,
|
|
603
603
|
labelStyle: _propTypes.default.object,
|
|
604
|
-
max: _propTypes.default.oneOfType([_propTypes.default.
|
|
605
|
-
|
|
604
|
+
max: _propTypes.default.oneOfType([_propTypes.default.number, _propTypes.default.shape({
|
|
605
|
+
valueOf: _propTypes.default.func.isRequired
|
|
606
|
+
})]),
|
|
607
|
+
min: _propTypes.default.oneOfType([_propTypes.default.number, _propTypes.default.shape({
|
|
608
|
+
valueOf: _propTypes.default.func.isRequired
|
|
609
|
+
})]),
|
|
606
610
|
offset: _propTypes.default.number,
|
|
607
611
|
position: _propTypes.default.oneOf(['bottom', 'none', 'top']),
|
|
608
612
|
reverse: _propTypes.default.bool,
|
|
@@ -645,8 +649,8 @@ process.env.NODE_ENV !== "production" ? BarChart.propTypes = {
|
|
|
645
649
|
ignoreTooltip: _propTypes.default.bool,
|
|
646
650
|
label: _propTypes.default.string,
|
|
647
651
|
labelStyle: _propTypes.default.object,
|
|
648
|
-
max: _propTypes.default.
|
|
649
|
-
min: _propTypes.default.
|
|
652
|
+
max: _propTypes.default.number,
|
|
653
|
+
min: _propTypes.default.number,
|
|
650
654
|
offset: _propTypes.default.number,
|
|
651
655
|
position: _propTypes.default.oneOf(['bottom', 'none', 'top']),
|
|
652
656
|
reverse: _propTypes.default.bool,
|
|
@@ -706,8 +710,6 @@ process.env.NODE_ENV !== "production" ? BarChart.propTypes = {
|
|
|
706
710
|
ignoreTooltip: _propTypes.default.bool,
|
|
707
711
|
label: _propTypes.default.string,
|
|
708
712
|
labelStyle: _propTypes.default.object,
|
|
709
|
-
max: _propTypes.default.oneOfType([_propTypes.default.instanceOf(Date), _propTypes.default.number]),
|
|
710
|
-
min: _propTypes.default.oneOfType([_propTypes.default.instanceOf(Date), _propTypes.default.number]),
|
|
711
713
|
offset: _propTypes.default.number,
|
|
712
714
|
position: _propTypes.default.oneOf(['left', 'none', 'right']),
|
|
713
715
|
reverse: _propTypes.default.bool,
|
|
@@ -759,8 +761,6 @@ process.env.NODE_ENV !== "production" ? BarChart.propTypes = {
|
|
|
759
761
|
ignoreTooltip: _propTypes.default.bool,
|
|
760
762
|
label: _propTypes.default.string,
|
|
761
763
|
labelStyle: _propTypes.default.object,
|
|
762
|
-
max: _propTypes.default.oneOfType([_propTypes.default.instanceOf(Date), _propTypes.default.number]),
|
|
763
|
-
min: _propTypes.default.oneOfType([_propTypes.default.instanceOf(Date), _propTypes.default.number]),
|
|
764
764
|
offset: _propTypes.default.number,
|
|
765
765
|
position: _propTypes.default.oneOf(['left', 'none', 'right']),
|
|
766
766
|
reverse: _propTypes.default.bool,
|
|
@@ -802,8 +802,8 @@ process.env.NODE_ENV !== "production" ? BarChart.propTypes = {
|
|
|
802
802
|
ignoreTooltip: _propTypes.default.bool,
|
|
803
803
|
label: _propTypes.default.string,
|
|
804
804
|
labelStyle: _propTypes.default.object,
|
|
805
|
-
max: _propTypes.default.
|
|
806
|
-
min: _propTypes.default.
|
|
805
|
+
max: _propTypes.default.number,
|
|
806
|
+
min: _propTypes.default.number,
|
|
807
807
|
offset: _propTypes.default.number,
|
|
808
808
|
position: _propTypes.default.oneOf(['left', 'none', 'right']),
|
|
809
809
|
reverse: _propTypes.default.bool,
|
|
@@ -846,8 +846,8 @@ process.env.NODE_ENV !== "production" ? BarChart.propTypes = {
|
|
|
846
846
|
ignoreTooltip: _propTypes.default.bool,
|
|
847
847
|
label: _propTypes.default.string,
|
|
848
848
|
labelStyle: _propTypes.default.object,
|
|
849
|
-
max: _propTypes.default.
|
|
850
|
-
min: _propTypes.default.
|
|
849
|
+
max: _propTypes.default.number,
|
|
850
|
+
min: _propTypes.default.number,
|
|
851
851
|
offset: _propTypes.default.number,
|
|
852
852
|
position: _propTypes.default.oneOf(['left', 'none', 'right']),
|
|
853
853
|
reverse: _propTypes.default.bool,
|
|
@@ -889,8 +889,8 @@ process.env.NODE_ENV !== "production" ? BarChart.propTypes = {
|
|
|
889
889
|
ignoreTooltip: _propTypes.default.bool,
|
|
890
890
|
label: _propTypes.default.string,
|
|
891
891
|
labelStyle: _propTypes.default.object,
|
|
892
|
-
max: _propTypes.default.
|
|
893
|
-
min: _propTypes.default.
|
|
892
|
+
max: _propTypes.default.number,
|
|
893
|
+
min: _propTypes.default.number,
|
|
894
894
|
offset: _propTypes.default.number,
|
|
895
895
|
position: _propTypes.default.oneOf(['left', 'none', 'right']),
|
|
896
896
|
reverse: _propTypes.default.bool,
|
|
@@ -932,8 +932,8 @@ process.env.NODE_ENV !== "production" ? BarChart.propTypes = {
|
|
|
932
932
|
ignoreTooltip: _propTypes.default.bool,
|
|
933
933
|
label: _propTypes.default.string,
|
|
934
934
|
labelStyle: _propTypes.default.object,
|
|
935
|
-
max: _propTypes.default.
|
|
936
|
-
min: _propTypes.default.
|
|
935
|
+
max: _propTypes.default.number,
|
|
936
|
+
min: _propTypes.default.number,
|
|
937
937
|
offset: _propTypes.default.number,
|
|
938
938
|
position: _propTypes.default.oneOf(['left', 'none', 'right']),
|
|
939
939
|
reverse: _propTypes.default.bool,
|
|
@@ -975,8 +975,12 @@ process.env.NODE_ENV !== "production" ? BarChart.propTypes = {
|
|
|
975
975
|
ignoreTooltip: _propTypes.default.bool,
|
|
976
976
|
label: _propTypes.default.string,
|
|
977
977
|
labelStyle: _propTypes.default.object,
|
|
978
|
-
max: _propTypes.default.oneOfType([_propTypes.default.
|
|
979
|
-
|
|
978
|
+
max: _propTypes.default.oneOfType([_propTypes.default.number, _propTypes.default.shape({
|
|
979
|
+
valueOf: _propTypes.default.func.isRequired
|
|
980
|
+
})]),
|
|
981
|
+
min: _propTypes.default.oneOfType([_propTypes.default.number, _propTypes.default.shape({
|
|
982
|
+
valueOf: _propTypes.default.func.isRequired
|
|
983
|
+
})]),
|
|
980
984
|
offset: _propTypes.default.number,
|
|
981
985
|
position: _propTypes.default.oneOf(['left', 'none', 'right']),
|
|
982
986
|
reverse: _propTypes.default.bool,
|
|
@@ -1018,8 +1022,12 @@ process.env.NODE_ENV !== "production" ? BarChart.propTypes = {
|
|
|
1018
1022
|
ignoreTooltip: _propTypes.default.bool,
|
|
1019
1023
|
label: _propTypes.default.string,
|
|
1020
1024
|
labelStyle: _propTypes.default.object,
|
|
1021
|
-
max: _propTypes.default.oneOfType([_propTypes.default.
|
|
1022
|
-
|
|
1025
|
+
max: _propTypes.default.oneOfType([_propTypes.default.number, _propTypes.default.shape({
|
|
1026
|
+
valueOf: _propTypes.default.func.isRequired
|
|
1027
|
+
})]),
|
|
1028
|
+
min: _propTypes.default.oneOfType([_propTypes.default.number, _propTypes.default.shape({
|
|
1029
|
+
valueOf: _propTypes.default.func.isRequired
|
|
1030
|
+
})]),
|
|
1023
1031
|
offset: _propTypes.default.number,
|
|
1024
1032
|
position: _propTypes.default.oneOf(['left', 'none', 'right']),
|
|
1025
1033
|
reverse: _propTypes.default.bool,
|
|
@@ -1061,8 +1069,8 @@ process.env.NODE_ENV !== "production" ? BarChart.propTypes = {
|
|
|
1061
1069
|
ignoreTooltip: _propTypes.default.bool,
|
|
1062
1070
|
label: _propTypes.default.string,
|
|
1063
1071
|
labelStyle: _propTypes.default.object,
|
|
1064
|
-
max: _propTypes.default.
|
|
1065
|
-
min: _propTypes.default.
|
|
1072
|
+
max: _propTypes.default.number,
|
|
1073
|
+
min: _propTypes.default.number,
|
|
1066
1074
|
offset: _propTypes.default.number,
|
|
1067
1075
|
position: _propTypes.default.oneOf(['left', 'none', 'right']),
|
|
1068
1076
|
reverse: _propTypes.default.bool,
|
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,176 @@
|
|
|
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.14.0
|
|
9
|
+
|
|
10
|
+
_Oct 9, 2025_
|
|
11
|
+
|
|
12
|
+
We'd like to extend a big thank you to the 14 contributors who made this release possible. Here are some highlights ✨:
|
|
13
|
+
|
|
14
|
+
- 📊 The [Chart zoom now supports the `pressAndDrag` gesture](https://mui.com/x/react-charts/zoom-and-pan/#zoom-interactions-configuration). Pan by pressing and dragging.
|
|
15
|
+
- 🔄 [Server-side pivoting](https://mui.com/x/react-data-grid/server-side-data/pivoting/) support for the Data Grid
|
|
16
|
+
- 🐞 Bugfixes
|
|
17
|
+
- 📚 Documentation improvements
|
|
18
|
+
|
|
19
|
+
Special thanks go out to the community members for their valuable contributions:
|
|
20
|
+
@djpremier, @Utkarsh-0304
|
|
21
|
+
|
|
22
|
+
The following are all team members who have contributed to this release:
|
|
23
|
+
@alexfauquette, @bernardobelchior, @flaviendelangle, @hasdfa, @Janpot, @JCQuintas, @prakhargupta1, @rita-codes, @noraleonte, @brijeshb42, @arminmeh, @michelengelen
|
|
24
|
+
|
|
25
|
+
### Data Grid
|
|
26
|
+
|
|
27
|
+
#### `@mui/x-data-grid@8.14.0`
|
|
28
|
+
|
|
29
|
+
- [l10n] Improve Brazilian Portuguese (pt-BR) locale (#19658) @djpremier
|
|
30
|
+
|
|
31
|
+
#### `@mui/x-data-grid-pro@8.14.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
32
|
+
|
|
33
|
+
Same changes as in `@mui/x-data-grid@8.14.0`.
|
|
34
|
+
|
|
35
|
+
#### `@mui/x-data-grid-premium@8.14.0` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
36
|
+
|
|
37
|
+
Same changes as in `@mui/x-data-grid-pro@8.14.0`, plus:
|
|
38
|
+
|
|
39
|
+
- [DataGridPremium] Server-side pivoting (#19575) @arminmeh
|
|
40
|
+
|
|
41
|
+
### Date and Time Pickers
|
|
42
|
+
|
|
43
|
+
#### `@mui/x-date-pickers@8.14.0`
|
|
44
|
+
|
|
45
|
+
- [pickers] Fixed the extra element for the disabled date picker (#19387) @Utkarsh-0304
|
|
46
|
+
- [pickers] Fix input `autoCapitalize` value for Firefox compatibility (#19285) @michelengelen
|
|
47
|
+
- [l10n] Improve Brazilian Portuguese (pt-BR) locale (#19658) @djpremier
|
|
48
|
+
|
|
49
|
+
#### `@mui/x-date-pickers-pro@8.14.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
50
|
+
|
|
51
|
+
Same changes as in `@mui/x-date-pickers@8.14.0`.
|
|
52
|
+
|
|
53
|
+
### Charts
|
|
54
|
+
|
|
55
|
+
#### `@mui/x-charts@8.14.0`
|
|
56
|
+
|
|
57
|
+
- [charts] Add `pressAndDrag` pan gesture (#19779) @JCQuintas
|
|
58
|
+
- [charts] Allow `minPointers` and `maxPointers` to be configured by pointer type (#19794) @JCQuintas
|
|
59
|
+
- [charts] Correct scale domain types (#19844) @bernardobelchior
|
|
60
|
+
- [charts] Fix tooltip position when scrolling (#19857) @alexfauquette
|
|
61
|
+
- [charts] Link item highlight with keyboard navigation (#19768) @alexfauquette
|
|
62
|
+
- [charts] Refactor domain/scale selectors (#19832) @bernardobelchior
|
|
63
|
+
- [charts] Remove min/max from ordinal configuration (#19789) @alexfauquette
|
|
64
|
+
- [charts] Simplify axes filters selectors (#19833) @bernardobelchior
|
|
65
|
+
- [l10n] Improve Brazilian Portuguese (pt-BR) locale (#19658) @djpremier
|
|
66
|
+
|
|
67
|
+
#### `@mui/x-charts-pro@8.14.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
68
|
+
|
|
69
|
+
Same changes as in `@mui/x-charts@8.14.0`.
|
|
70
|
+
|
|
71
|
+
#### `@mui/x-charts-premium@8.14.0` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
72
|
+
|
|
73
|
+
Same changes as in `@mui/x-charts-pro@8.14.0`.
|
|
74
|
+
|
|
75
|
+
### Tree View
|
|
76
|
+
|
|
77
|
+
#### `@mui/x-tree-view@8.14.0`
|
|
78
|
+
|
|
79
|
+
- [tree view] Fix Tree View tooltip anchoring on overview page (#19806) @noraleonte
|
|
80
|
+
|
|
81
|
+
#### `@mui/x-tree-view-pro@8.14.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
82
|
+
|
|
83
|
+
Same changes as in `@mui/x-tree-view@8.14.0`.
|
|
84
|
+
|
|
85
|
+
### Codemod
|
|
86
|
+
|
|
87
|
+
#### `@mui/x-codemod@8.14.0`
|
|
88
|
+
|
|
89
|
+
Internal changes.
|
|
90
|
+
|
|
91
|
+
### Docs
|
|
92
|
+
|
|
93
|
+
- [docs] Add overview section for pie chart (#19672) @prakhargupta1
|
|
94
|
+
- [docs] Fix demo title knob keys (#19843) @JCQuintas
|
|
95
|
+
- [docs] Hide UI elements of unsupported features in the data source demos (#19849) @arminmeh
|
|
96
|
+
|
|
97
|
+
### Core
|
|
98
|
+
|
|
99
|
+
- [code-infra] Cleanup unused dependencies (#19788) @brijeshb42
|
|
100
|
+
- [code-infra] Fix pnpm-lock issue (#19861) @JCQuintas
|
|
101
|
+
- [code-infra] Improve publishing docs (#19404) @Janpot
|
|
102
|
+
- [code-infra] Remove tsconfig `baseUrl` (#19837) @Janpot
|
|
103
|
+
- [code-infra] Support custom npm dist tags during release (#19803) @Janpot
|
|
104
|
+
- [code-infra] Wait longer for print dialog (#19795) @JCQuintas
|
|
105
|
+
- [code-infra] Replace `lodash` with `es-toolkit` (#19853) @bernardobelchior
|
|
106
|
+
- [code-infra] Update release script PR checklist (#19785) @bernardobelchior
|
|
107
|
+
- [code-infra] Remove remaining usages of `lodash` (#19864) @bernardobelchior
|
|
108
|
+
- [docs-infra] Add `title` knob (#19792) @JCQuintas
|
|
109
|
+
- [docs-infra] Fix missing key in title knob (#19804) @JCQuintas
|
|
110
|
+
|
|
111
|
+
### Miscellaneous
|
|
112
|
+
|
|
113
|
+
- [x-telemetry] Fix transpile issues (#19761) @hasdfa
|
|
114
|
+
- [x-telemetry] Fix ref to deleted file (#19842) @JCQuintas
|
|
115
|
+
|
|
116
|
+
## 8.13.1
|
|
117
|
+
|
|
118
|
+
_Oct 1, 2025_
|
|
119
|
+
|
|
120
|
+
- 🐛 Fix `@mui/x-charts-pro` failure on import due to missing `@mui/x-internals` release
|
|
121
|
+
|
|
122
|
+
### Data Grid
|
|
123
|
+
|
|
124
|
+
#### `@mui/x-data-grid@8.13.1`
|
|
125
|
+
|
|
126
|
+
Internal changes.
|
|
127
|
+
|
|
128
|
+
#### `@mui/x-data-grid-pro@8.13.1` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
129
|
+
|
|
130
|
+
Same changes as in `@mui/x-data-grid@8.13.1`.
|
|
131
|
+
|
|
132
|
+
#### `@mui/x-data-grid-premium@8.13.1` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
133
|
+
|
|
134
|
+
Same changes as in `@mui/x-data-grid-pro@8.13.1`.
|
|
135
|
+
|
|
136
|
+
### Date and Time Pickers
|
|
137
|
+
|
|
138
|
+
#### `@mui/x-date-pickers@8.12.0`
|
|
139
|
+
|
|
140
|
+
Internal changes.
|
|
141
|
+
|
|
142
|
+
#### `@mui/x-date-pickers-pro@8.12.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
143
|
+
|
|
144
|
+
Same changes as in `@mui/x-date-pickers@8.12.0`.
|
|
145
|
+
|
|
146
|
+
### Charts
|
|
147
|
+
|
|
148
|
+
#### `@mui/x-charts@8.13.1`
|
|
149
|
+
|
|
150
|
+
Internal changes.
|
|
151
|
+
|
|
152
|
+
#### `@mui/x-charts-pro@8.13.1` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
153
|
+
|
|
154
|
+
Same changes as in `@mui/x-charts@8.13.1`, plus:
|
|
155
|
+
|
|
156
|
+
- [charts-pro] Fix `@mui/x-charts-pro` failure on import due to missing `@mui/x-internals` release @bernardobelchior
|
|
157
|
+
|
|
158
|
+
#### `@mui/x-charts-premium@8.13.1` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
159
|
+
|
|
160
|
+
Same changes as in `@mui/x-charts-pro@8.13.1`.
|
|
161
|
+
|
|
162
|
+
### Tree View
|
|
163
|
+
|
|
164
|
+
#### `@mui/x-tree-view@8.13.1`
|
|
165
|
+
|
|
166
|
+
Internal changes.
|
|
167
|
+
|
|
168
|
+
#### `@mui/x-tree-view-pro@8.13.1` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
169
|
+
|
|
170
|
+
Same changes as in `@mui/x-tree-view@8.13.1`.
|
|
171
|
+
|
|
172
|
+
### Codemod
|
|
173
|
+
|
|
174
|
+
#### `@mui/x-codemod@8.12.0`
|
|
175
|
+
|
|
176
|
+
Internal changes.
|
|
177
|
+
|
|
8
178
|
## 8.13.0
|
|
9
179
|
|
|
10
180
|
_Oct 1, 2025_
|
|
@@ -160,7 +330,7 @@ We'd like to extend a big thank you to the 15 contributors who made this release
|
|
|
160
330
|
|
|
161
331
|

|
|
162
332
|
|
|
163
|
-
|
|
333
|
+
👉 [🎥 Watch the full video](https://github.com/user-attachments/assets/28f1848e-dc85-4077-8756-a3e88afd4e54)
|
|
164
334
|
|
|
165
335
|
- ⌨️ Charts keyboard navigation
|
|
166
336
|
- ⚡️ Charts: Add new `renderer="svg-batch"` prop to Scatter charts that provides improved performance for large datasets
|