@mui/x-charts 6.0.0-alpha.9 → 6.18.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.d.ts +19 -5
- package/BarChart/BarChart.js +52 -13
- package/BarChart/BarElement.d.ts +1319 -4
- package/BarChart/BarElement.js +10 -10
- package/BarChart/BarPlot.d.ts +17 -1
- package/BarChart/BarPlot.js +152 -66
- package/BarChart/formatter.js +2 -3
- package/BarChart/legend.js +1 -2
- package/CHANGELOG.md +735 -55
- package/ChartContainer/index.js +7 -5
- package/ChartsAxis/ChartsAxis.d.ts +9 -0
- package/ChartsAxis/ChartsAxis.js +28 -2
- package/ChartsAxis/axisClasses.d.ts +1 -1
- package/ChartsAxis/axisClasses.js +1 -2
- package/ChartsAxisHighlight/ChartsAxisHighlight.d.ts +21 -0
- package/ChartsAxisHighlight/ChartsAxisHighlight.js +61 -22
- package/ChartsClipPath/ChartsClipPath.d.ts +5 -0
- package/ChartsClipPath/ChartsClipPath.js +7 -2
- package/ChartsLegend/ChartsLegend.d.ts +44 -24
- package/ChartsLegend/ChartsLegend.js +192 -150
- package/ChartsLegend/chartsLegendClasses.js +1 -2
- package/ChartsLegend/utils.d.ts +1 -6
- package/ChartsSurface.d.ts +1 -1
- package/ChartsSurface.js +9 -18
- package/ChartsTooltip/ChartsAxisTooltipContent.d.ts +1 -0
- package/ChartsTooltip/ChartsAxisTooltipContent.js +46 -32
- package/ChartsTooltip/ChartsItemTooltipContent.d.ts +3 -2
- package/ChartsTooltip/ChartsItemTooltipContent.js +18 -9
- package/ChartsTooltip/ChartsTooltip.d.ts +32 -0
- package/ChartsTooltip/ChartsTooltip.js +62 -18
- package/ChartsTooltip/ChartsTooltipTable.d.ts +3 -10
- package/ChartsTooltip/ChartsTooltipTable.js +22 -20
- package/ChartsTooltip/tooltipClasses.js +1 -2
- package/ChartsTooltip/utils.js +2 -2
- package/ChartsXAxis/ChartsXAxis.d.ts +9 -0
- package/ChartsXAxis/ChartsXAxis.js +161 -40
- package/ChartsYAxis/ChartsYAxis.d.ts +9 -0
- package/ChartsYAxis/ChartsYAxis.js +86 -33
- package/LineChart/AreaElement.d.ts +11 -1
- package/LineChart/AreaElement.js +14 -6
- package/LineChart/AreaPlot.d.ts +11 -0
- package/LineChart/AreaPlot.js +27 -8
- package/LineChart/LineChart.d.ts +16 -3
- package/LineChart/LineChart.js +48 -13
- package/LineChart/LineElement.d.ts +11 -1
- package/LineChart/LineElement.js +14 -6
- package/LineChart/LineHighlightElement.d.ts +10 -0
- package/LineChart/LineHighlightElement.js +13 -4
- package/LineChart/LineHighlightPlot.d.ts +10 -0
- package/LineChart/LineHighlightPlot.js +14 -3
- package/LineChart/LinePlot.d.ts +10 -0
- package/LineChart/LinePlot.js +25 -12
- package/LineChart/MarkElement.d.ts +10 -0
- package/LineChart/MarkElement.js +14 -5
- package/LineChart/MarkPlot.d.ts +10 -0
- package/LineChart/MarkPlot.js +40 -9
- package/LineChart/formatter.js +5 -5
- package/LineChart/legend.js +1 -2
- package/PieChart/PieArc.d.ts +11 -13
- package/PieChart/PieArc.js +28 -60
- package/PieChart/PieArcLabel.d.ts +8 -9
- package/PieChart/PieArcLabel.js +46 -38
- package/PieChart/PieArcLabelPlot.d.ts +28 -0
- package/PieChart/PieArcLabelPlot.js +99 -0
- package/PieChart/PieArcPlot.d.ts +35 -0
- package/PieChart/PieArcPlot.js +92 -0
- package/PieChart/PieChart.d.ts +19 -5
- package/PieChart/PieChart.js +61 -14
- package/PieChart/PiePlot.d.ts +15 -9
- package/PieChart/PiePlot.js +77 -55
- package/PieChart/dataTransform/transition.d.ts +4 -0
- package/PieChart/dataTransform/transition.js +136 -0
- package/PieChart/dataTransform/useTransformData.d.ts +15 -0
- package/PieChart/dataTransform/useTransformData.js +67 -0
- package/PieChart/formatter.js +1 -2
- package/PieChart/legend.js +1 -2
- package/README.md +8 -14
- package/ResponsiveChartContainer/index.js +7 -8
- package/ScatterChart/Scatter.d.ts +10 -0
- package/ScatterChart/Scatter.js +12 -2
- package/ScatterChart/ScatterChart.d.ts +16 -3
- package/ScatterChart/ScatterChart.js +43 -12
- package/ScatterChart/ScatterPlot.d.ts +10 -0
- package/ScatterChart/ScatterPlot.js +12 -2
- package/ScatterChart/formatter.js +1 -2
- package/ScatterChart/legend.js +1 -2
- package/SparkLineChart/SparkLineChart.d.ts +12 -3
- package/SparkLineChart/SparkLineChart.js +28 -7
- package/colorPalettes/colorPalettes.js +6 -12
- package/constants.js +5 -8
- package/context/CartesianContextProvider.d.ts +5 -0
- package/context/CartesianContextProvider.js +31 -16
- package/context/DrawingProvider.d.ts +7 -0
- package/context/DrawingProvider.js +12 -6
- package/context/HighlightProvider.js +3 -4
- package/context/InteractionProvider.js +3 -4
- package/context/SeriesContextProvider.js +3 -4
- package/esm/BarChart/BarChart.js +49 -9
- package/esm/BarChart/BarElement.js +7 -4
- package/esm/BarChart/BarPlot.js +152 -67
- package/esm/BarChart/formatter.js +1 -1
- package/esm/ChartContainer/index.js +3 -0
- package/esm/ChartsAxis/ChartsAxis.js +26 -0
- package/esm/ChartsAxisHighlight/ChartsAxisHighlight.js +57 -20
- package/esm/ChartsClipPath/ChartsClipPath.js +5 -0
- package/esm/ChartsLegend/ChartsLegend.js +188 -142
- package/esm/ChartsSurface.js +4 -12
- package/esm/ChartsTooltip/ChartsAxisTooltipContent.js +44 -30
- package/esm/ChartsTooltip/ChartsItemTooltipContent.js +15 -7
- package/esm/ChartsTooltip/ChartsTooltip.js +59 -14
- package/esm/ChartsTooltip/ChartsTooltipTable.js +17 -10
- package/esm/ChartsXAxis/ChartsXAxis.js +158 -37
- package/esm/ChartsYAxis/ChartsYAxis.js +83 -30
- package/esm/LineChart/AreaElement.js +10 -0
- package/esm/LineChart/AreaPlot.js +26 -6
- package/esm/LineChart/LineChart.js +45 -9
- package/esm/LineChart/LineElement.js +10 -0
- package/esm/LineChart/LineHighlightElement.js +10 -0
- package/esm/LineChart/LineHighlightPlot.js +12 -1
- package/esm/LineChart/LinePlot.js +25 -14
- package/esm/LineChart/MarkElement.js +11 -1
- package/esm/LineChart/MarkPlot.js +38 -7
- package/esm/LineChart/formatter.js +7 -3
- package/esm/PieChart/PieArc.js +26 -58
- package/esm/PieChart/PieArcLabel.js +43 -34
- package/esm/PieChart/PieArcLabelPlot.js +92 -0
- package/esm/PieChart/PieArcPlot.js +84 -0
- package/esm/PieChart/PieChart.js +59 -12
- package/esm/PieChart/PiePlot.js +76 -57
- package/esm/PieChart/dataTransform/transition.js +130 -0
- package/esm/PieChart/dataTransform/useTransformData.js +59 -0
- package/esm/ResponsiveChartContainer/index.js +3 -3
- package/esm/ScatterChart/Scatter.js +10 -0
- package/esm/ScatterChart/ScatterChart.js +40 -8
- package/esm/ScatterChart/ScatterPlot.js +10 -0
- package/esm/SparkLineChart/SparkLineChart.js +25 -3
- package/esm/constants.js +1 -1
- package/esm/context/CartesianContextProvider.js +30 -14
- package/esm/context/DrawingProvider.js +8 -0
- package/esm/hooks/useChartDimensions.js +2 -0
- package/esm/hooks/useMounted.js +16 -0
- package/esm/hooks/useReducedMotion.js +27 -0
- package/esm/hooks/useTicks.js +15 -9
- package/esm/internals/components/AxisSharedComponents.js +15 -70
- package/esm/internals/components/ChartsText.js +77 -0
- package/esm/internals/domUtils.js +113 -0
- package/esm/internals/geometry.js +36 -0
- package/hooks/useAxisEvents.js +2 -2
- package/hooks/useChartDimensions.d.ts +2 -0
- package/hooks/useChartDimensions.js +5 -4
- package/hooks/useDrawingArea.js +2 -2
- package/hooks/useInteractionItemProps.js +2 -2
- package/hooks/useMounted.d.ts +1 -0
- package/hooks/useMounted.js +25 -0
- package/hooks/useReducedMotion.d.ts +8 -0
- package/hooks/useReducedMotion.js +33 -0
- package/hooks/useScale.d.ts +2 -2
- package/hooks/useScale.js +2 -2
- package/hooks/useTicks.d.ts +19 -11
- package/hooks/useTicks.js +19 -14
- package/index.js +1 -1
- package/internals/components/AxisSharedComponents.d.ts +0 -4
- package/internals/components/AxisSharedComponents.js +18 -78
- package/internals/components/ChartsText.d.ts +35 -0
- package/internals/components/ChartsText.js +87 -0
- package/internals/defaultizeColor.d.ts +7 -2
- package/internals/defaultizeValueFormatter.js +1 -2
- package/internals/domUtils.d.ts +13 -0
- package/internals/domUtils.js +122 -0
- package/internals/geometry.d.ts +9 -0
- package/internals/geometry.js +42 -0
- package/internals/stackSeries.js +2 -4
- package/legacy/BarChart/BarChart.js +49 -9
- package/legacy/BarChart/BarElement.js +6 -3
- package/legacy/BarChart/BarPlot.js +151 -63
- package/legacy/BarChart/formatter.js +1 -1
- package/legacy/ChartContainer/index.js +3 -0
- package/legacy/ChartsAxis/ChartsAxis.js +26 -0
- package/legacy/ChartsAxisHighlight/ChartsAxisHighlight.js +60 -20
- package/legacy/ChartsClipPath/ChartsClipPath.js +5 -0
- package/legacy/ChartsLegend/ChartsLegend.js +203 -140
- package/legacy/ChartsSurface.js +3 -12
- package/legacy/ChartsTooltip/ChartsAxisTooltipContent.js +22 -10
- package/legacy/ChartsTooltip/ChartsItemTooltipContent.js +15 -7
- package/legacy/ChartsTooltip/ChartsTooltip.js +62 -14
- package/legacy/ChartsTooltip/ChartsTooltipTable.js +34 -26
- package/legacy/ChartsXAxis/ChartsXAxis.js +162 -39
- package/legacy/ChartsYAxis/ChartsYAxis.js +83 -30
- package/legacy/LineChart/AreaElement.js +10 -0
- package/legacy/LineChart/AreaPlot.js +31 -7
- package/legacy/LineChart/LineChart.js +45 -9
- package/legacy/LineChart/LineElement.js +10 -0
- package/legacy/LineChart/LineHighlightElement.js +10 -0
- package/legacy/LineChart/LineHighlightPlot.js +12 -1
- package/legacy/LineChart/LinePlot.js +29 -12
- package/legacy/LineChart/MarkElement.js +11 -1
- package/legacy/LineChart/MarkPlot.js +37 -7
- package/legacy/LineChart/formatter.js +7 -3
- package/legacy/PieChart/PieArc.js +30 -62
- package/legacy/PieChart/PieArcLabel.js +48 -34
- package/legacy/PieChart/PieArcLabelPlot.js +93 -0
- package/legacy/PieChart/PieArcPlot.js +84 -0
- package/legacy/PieChart/PieChart.js +59 -12
- package/legacy/PieChart/PiePlot.js +76 -59
- package/legacy/PieChart/dataTransform/transition.js +142 -0
- package/legacy/PieChart/dataTransform/useTransformData.js +60 -0
- package/legacy/ResponsiveChartContainer/index.js +3 -3
- package/legacy/ScatterChart/Scatter.js +10 -0
- package/legacy/ScatterChart/ScatterChart.js +40 -8
- package/legacy/ScatterChart/ScatterPlot.js +10 -0
- package/legacy/SparkLineChart/SparkLineChart.js +25 -3
- package/legacy/constants.js +1 -1
- package/legacy/context/CartesianContextProvider.js +30 -14
- package/legacy/context/DrawingProvider.js +8 -0
- package/legacy/hooks/useChartDimensions.js +2 -0
- package/legacy/hooks/useMounted.js +21 -0
- package/legacy/hooks/useReducedMotion.js +27 -0
- package/legacy/hooks/useTicks.js +16 -9
- package/legacy/index.js +1 -1
- package/legacy/internals/components/AxisSharedComponents.js +11 -65
- package/legacy/internals/components/ChartsText.js +79 -0
- package/legacy/internals/domUtils.js +121 -0
- package/legacy/internals/geometry.js +37 -0
- package/models/axis.d.ts +27 -9
- package/models/layout.d.ts +7 -6
- package/models/seriesType/line.d.ts +8 -3
- package/models/seriesType/pie.d.ts +5 -1
- package/modern/BarChart/BarChart.js +49 -9
- package/modern/BarChart/BarElement.js +7 -4
- package/modern/BarChart/BarPlot.js +149 -65
- package/modern/BarChart/formatter.js +1 -1
- package/modern/ChartContainer/index.js +3 -0
- package/modern/ChartsAxis/ChartsAxis.js +26 -0
- package/modern/ChartsAxisHighlight/ChartsAxisHighlight.js +57 -20
- package/modern/ChartsClipPath/ChartsClipPath.js +5 -0
- package/modern/ChartsLegend/ChartsLegend.js +188 -142
- package/modern/ChartsSurface.js +4 -12
- package/modern/ChartsTooltip/ChartsAxisTooltipContent.js +44 -30
- package/modern/ChartsTooltip/ChartsItemTooltipContent.js +15 -7
- package/modern/ChartsTooltip/ChartsTooltip.js +58 -14
- package/modern/ChartsTooltip/ChartsTooltipTable.js +17 -10
- package/modern/ChartsXAxis/ChartsXAxis.js +158 -37
- package/modern/ChartsYAxis/ChartsYAxis.js +83 -30
- package/modern/LineChart/AreaElement.js +10 -0
- package/modern/LineChart/AreaPlot.js +25 -6
- package/modern/LineChart/LineChart.js +45 -9
- package/modern/LineChart/LineElement.js +10 -0
- package/modern/LineChart/LineHighlightElement.js +10 -0
- package/modern/LineChart/LineHighlightPlot.js +12 -1
- package/modern/LineChart/LinePlot.js +23 -10
- package/modern/LineChart/MarkElement.js +11 -1
- package/modern/LineChart/MarkPlot.js +38 -7
- package/modern/LineChart/formatter.js +4 -3
- package/modern/PieChart/PieArc.js +26 -57
- package/modern/PieChart/PieArcLabel.js +43 -34
- package/modern/PieChart/PieArcLabelPlot.js +90 -0
- package/modern/PieChart/PieArcPlot.js +83 -0
- package/modern/PieChart/PieChart.js +59 -12
- package/modern/PieChart/PiePlot.js +76 -55
- package/modern/PieChart/dataTransform/transition.js +130 -0
- package/modern/PieChart/dataTransform/useTransformData.js +58 -0
- package/modern/ResponsiveChartContainer/index.js +3 -3
- package/modern/ScatterChart/Scatter.js +10 -0
- package/modern/ScatterChart/ScatterChart.js +40 -8
- package/modern/ScatterChart/ScatterPlot.js +10 -0
- package/modern/SparkLineChart/SparkLineChart.js +25 -3
- package/modern/constants.js +1 -1
- package/modern/context/CartesianContextProvider.js +29 -13
- package/modern/context/DrawingProvider.js +8 -0
- package/modern/hooks/useChartDimensions.js +2 -0
- package/modern/hooks/useMounted.js +16 -0
- package/modern/hooks/useReducedMotion.js +27 -0
- package/modern/hooks/useTicks.js +15 -9
- package/modern/index.js +1 -1
- package/modern/internals/components/AxisSharedComponents.js +15 -70
- package/modern/internals/components/ChartsText.js +77 -0
- package/modern/internals/domUtils.js +113 -0
- package/modern/internals/geometry.js +36 -0
- package/package.json +9 -6
- package/themeAugmentation/components.d.ts +1 -0
- package/themeAugmentation/overrides.d.ts +2 -0
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,686 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## 6.18.0
|
|
7
|
+
|
|
8
|
+
_Nov 3, 2023_
|
|
9
|
+
|
|
10
|
+
We'd like to offer a big thanks to the 7 contributors who made this release possible. Here are some highlights ✨:
|
|
11
|
+
|
|
12
|
+
- 🎁 The Charts package is now officially stable!
|
|
13
|
+
- 🥧 Pie charts are now animated.
|
|
14
|
+
- 📈 Line charts now support partial data, and can interpolate missing data.
|
|
15
|
+
|
|
16
|
+
<img width="380" alt="line charts with partial data" src="https://github.com/mui/mui-x/assets/45398769/385ecf77-19b2-4a03-8aef-5d547db1d9ad">
|
|
17
|
+
|
|
18
|
+
- ✨ Allow to ignore [diacritics](https://en.wikipedia.org/wiki/Diacritic) when filtering
|
|
19
|
+
- 📚 Documentation improvements
|
|
20
|
+
|
|
21
|
+
### Data Grid
|
|
22
|
+
|
|
23
|
+
#### `@mui/x-data-grid@6.18.0`
|
|
24
|
+
|
|
25
|
+
- [DataGrid] Allow to ignore [diacritics](https://en.wikipedia.org/wiki/Diacritic) when filtering (#10569) @cherniavskii
|
|
26
|
+
- [DataGrid] Fix a typo in `gridFilterApi` (#10786) @vu-dao-93
|
|
27
|
+
- [DataGrid] Fix `undefined` row id (#10670) @romgrk
|
|
28
|
+
- [DataGrid] Make column autosizing work with dynamic row height (#10693) @cherniavskii
|
|
29
|
+
- [l10n] Allow to customize sorting label per column (#10839) @JerryWu1234
|
|
30
|
+
|
|
31
|
+
#### `@mui/x-data-grid-pro@6.18.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
32
|
+
|
|
33
|
+
Same changes as in `@mui/x-data-grid@6.18.0`.
|
|
34
|
+
|
|
35
|
+
#### `@mui/x-data-grid-premium@6.18.0` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
36
|
+
|
|
37
|
+
Same changes as in `@mui/x-data-grid-pro@6.18.0`.
|
|
38
|
+
|
|
39
|
+
### Date Pickers
|
|
40
|
+
|
|
41
|
+
#### `@mui/x-date-pickers@6.18.0`
|
|
42
|
+
|
|
43
|
+
- [pickers] Add reference links to calendar components (#10644) @michelengelen
|
|
44
|
+
|
|
45
|
+
#### `@mui/x-date-pickers-pro@6.18.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
46
|
+
|
|
47
|
+
Same changes as in `@mui/x-date-pickers@6.18.0`.
|
|
48
|
+
|
|
49
|
+
### Charts / `@mui/x-charts@6.18.0`
|
|
50
|
+
|
|
51
|
+
- [charts] Add animation on pie chart (#10782) @alexfauquette
|
|
52
|
+
- [charts] Add reference links to shared/misc chart components (#10660) @michelengelen
|
|
53
|
+
- [charts] Allows to connect nulls (#10803) @alexfauquette
|
|
54
|
+
- [charts] Fix axis highlight in dark mode (#10820) @LukasTy
|
|
55
|
+
|
|
56
|
+
### Docs
|
|
57
|
+
|
|
58
|
+
- [docs] Add a data grid recipe for autosizing columns after fetching row-data (#10822) @michelengelen
|
|
59
|
+
- [docs] Add a data grid recipe showing how to remove cell outline on `focus` (#10843) @michelengelen
|
|
60
|
+
- [docs] Add demo about how to use charts margin (#10886) @alexfauquette
|
|
61
|
+
- [docs] Improve custom field input demos readability (#10559) @LukasTy
|
|
62
|
+
|
|
63
|
+
### Core
|
|
64
|
+
|
|
65
|
+
- [core] Generate `slot` API descriptions based on `slots` or `components` (#10879) @LukasTy
|
|
66
|
+
|
|
67
|
+
## 6.17.0
|
|
68
|
+
|
|
69
|
+
_Oct 27, 2023_
|
|
70
|
+
|
|
71
|
+
We'd like to offer a big thanks to the 9 contributors who made this release possible. Here are some highlights ✨:
|
|
72
|
+
|
|
73
|
+
- 🎁 The Tree View package is now officially stable!
|
|
74
|
+
|
|
75
|
+

|
|
76
|
+
|
|
77
|
+
- ✨ Improve the handling of non-numeric values by Data Grid aggregation
|
|
78
|
+
- 🚀 Support lines with different domains on the line charts
|
|
79
|
+
- 🐞 Bugfixes
|
|
80
|
+
- 📚 Documentation improvements
|
|
81
|
+
|
|
82
|
+
### Data Grid
|
|
83
|
+
|
|
84
|
+
#### `@mui/x-data-grid@6.17.0`
|
|
85
|
+
|
|
86
|
+
- [DataGrid] Allow custom debounce time for row positions calculation (#10708) @cherniavskii
|
|
87
|
+
- [DataGrid] Persist stable row index for focused row (#10674) @cherniavskii
|
|
88
|
+
|
|
89
|
+
#### `@mui/x-data-grid-pro@6.17.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
90
|
+
|
|
91
|
+
Same changes as in `@mui/x-data-grid@6.17.0`, plus:
|
|
92
|
+
|
|
93
|
+
- [DataGridPro] Fix `undefined` values passed to `valueFormatter` for tree leaf nodes (#10748) @cherniavskii
|
|
94
|
+
|
|
95
|
+
#### `@mui/x-data-grid-premium@6.17.0` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
96
|
+
|
|
97
|
+
Same changes as in `@mui/x-data-grid-pro@6.17.0`, plus:
|
|
98
|
+
|
|
99
|
+
- [DataGridPremium] Fix `avg` aggregation to ignore non-numeric values (#10787) @cherniavskii
|
|
100
|
+
- [DataGridPremium] Fix `size` aggregation to ignore `undefined` values (#10745) @cherniavskii
|
|
101
|
+
- [DataGridPremium] Fix `sum` aggregation to ignore non-numeric values (#10730) @cherniavskii
|
|
102
|
+
- [DataGridPremium] Fix cell selection throwing index error on second page and beyond (#10784) @MBilalShafi
|
|
103
|
+
|
|
104
|
+
### Date Pickers
|
|
105
|
+
|
|
106
|
+
#### `@mui/x-date-pickers@6.17.0`
|
|
107
|
+
|
|
108
|
+
- [fields] POC: Use `contentEditable` on `FakeTextField` (#10779) @flaviendelangle
|
|
109
|
+
- [pickers] Fix weekday label localization (#10809) @LukasTy
|
|
110
|
+
|
|
111
|
+
#### `@mui/x-date-pickers-pro@6.17.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
112
|
+
|
|
113
|
+
Same changes as in `@mui/x-date-pickers@6.17.0`.
|
|
114
|
+
|
|
115
|
+
### Charts / `@mui/x-charts@6.0.0-alpha.17`
|
|
116
|
+
|
|
117
|
+
- [charts] Fix text position in Safari (#10815) @lhilgert9
|
|
118
|
+
- [charts] Support lines with different domains (#10801) @alexfauquette
|
|
119
|
+
|
|
120
|
+
### Tree View / `@mui/x-tree-view@6.17.0`
|
|
121
|
+
|
|
122
|
+
No change
|
|
123
|
+
|
|
124
|
+
### Docs
|
|
125
|
+
|
|
126
|
+
- [docs] Correct editing related props' description (#10798) @MBilalShafi
|
|
127
|
+
- [docs] Fix RTL data grid demo (#10728) @oliviertassinari
|
|
128
|
+
- [docs] Fix unclosed warning (#10796) @flaviendelangle
|
|
129
|
+
- [docs] Improve performance of `Save and restore the state from external storage` recipe (#10811) @michelengelen
|
|
130
|
+
|
|
131
|
+
- [test] Add missing type on `cleanText` utility function (#10780) @flaviendelangle
|
|
132
|
+
|
|
133
|
+
## 6.16.3
|
|
134
|
+
|
|
135
|
+
_Oct 20, 2023_
|
|
136
|
+
|
|
137
|
+
We'd like to offer a big thanks to the 7 contributors who made this release possible. Here are some highlights ✨:
|
|
138
|
+
|
|
139
|
+
- 🎁 Add a Data Grid recipe for saving & restoring state
|
|
140
|
+
- 💫 Support animations on the bar chart
|
|
141
|
+
- 🐞 Bugfixes
|
|
142
|
+
- 📚 Documentation improvements
|
|
143
|
+
|
|
144
|
+
### Data Grid
|
|
145
|
+
|
|
146
|
+
#### `@mui/x-data-grid@6.16.3`
|
|
147
|
+
|
|
148
|
+
- [DataGrid] Allow passing readonly arrays to `columns` and `sortingOrder` props (#10686) @pcorpet
|
|
149
|
+
|
|
150
|
+
#### `@mui/x-data-grid-pro@6.16.3` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
151
|
+
|
|
152
|
+
Same changes as in `@mui/x-data-grid@6.16.3`.
|
|
153
|
+
|
|
154
|
+
#### `@mui/x-data-grid-premium@6.16.3` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
155
|
+
|
|
156
|
+
Same changes as in `@mui/x-data-grid-pro@6.16.3`.
|
|
157
|
+
|
|
158
|
+
### Date Pickers
|
|
159
|
+
|
|
160
|
+
#### `@mui/x-date-pickers@6.16.3`
|
|
161
|
+
|
|
162
|
+
- [fields] Correctly respect leading zeroes on seconds section (#10713) @flaviendelangle
|
|
163
|
+
- [fields] Use `onChange` instead of `onKeyPress` for Backspace editing (#10494) @flaviendelangle
|
|
164
|
+
- [pickers] Add reference links to DatePicker components (#10626) @michelengelen
|
|
165
|
+
- [pickers] Add reference links to clock components (#10645) @michelengelen
|
|
166
|
+
- [pickers] Add reference links to misc picker components (#10647) @michelengelen
|
|
167
|
+
- [pickers] Add reference links to toolbar components (#10646) @michelengelen
|
|
168
|
+
- [pickers] POC: Change the props received by the `FakeTextField` component (#10687) @flaviendelangle
|
|
169
|
+
|
|
170
|
+
#### `@mui/x-date-pickers-pro@6.16.3` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
171
|
+
|
|
172
|
+
Same changes as in `@mui/x-date-pickers@6.16.3`, plus:
|
|
173
|
+
|
|
174
|
+
- [DateRangePicker] Fix touch based range dragging (#10664) @michelengelen
|
|
175
|
+
|
|
176
|
+
### Charts / `@mui/x-charts@6.0.0-alpha.16`
|
|
177
|
+
|
|
178
|
+
- [charts] Add reference links to area + bar chart components (#10652) @michelengelen
|
|
179
|
+
- [charts] Add reference links to line chart + sparkline components (#10650) @michelengelen
|
|
180
|
+
- [charts] Add reference links to pie + scatter chart components (#10653) @michelengelen
|
|
181
|
+
- [charts] Render only when `width` and `height` are resolved (#10714) @alexfauquette
|
|
182
|
+
- [charts] Support animation on `BarChart` (#9926) @alexfauquette
|
|
183
|
+
- [charts] Use new text component to avoid tick label overflow on x-axis (#10648) @alexfauquette
|
|
184
|
+
|
|
185
|
+
### Docs
|
|
186
|
+
|
|
187
|
+
- [docs] Add a recipe for saving and restoring `state` externally (#10722) @michelengelen
|
|
188
|
+
- [docs] Add example about how to add an axis (#10709) @alexfauquette
|
|
189
|
+
- [docs] Customization Playground - fix DesktopDatePicker sx props and styled examples (#10665) @noraleonte
|
|
190
|
+
- [docs] Improve meta description @oliviertassinari
|
|
191
|
+
- [docs] Make overview demo work in codesandbox (#10661) @alexfauquette
|
|
192
|
+
|
|
193
|
+
### Core
|
|
194
|
+
|
|
195
|
+
- [core] Update React renovate group with `@types` (#10723) @LukasTy
|
|
196
|
+
- [core] Update `styled-components` (#10733) @LukasTy
|
|
197
|
+
|
|
198
|
+
## 6.16.2
|
|
199
|
+
|
|
200
|
+
_Oct 12, 2023_
|
|
201
|
+
|
|
202
|
+
We'd like to offer a big thanks to the 12 contributors who made this release possible. Here are some highlights ✨:
|
|
203
|
+
|
|
204
|
+
- 📊 Chart's legend text management has been reworked and contains breaking changes (#10138) @alexfauquette
|
|
205
|
+
- 📝 Add [Bulk editing](https://mui.com/x/react-data-grid/recipes-editing/#bulk-editing) demo (#10333) @cherniavskii
|
|
206
|
+
- 🚀 Column grouping now works smoothly with column pinning (#10518) @MBilalShafi
|
|
207
|
+
- 🌍 Improve Arabic (ar-SD) and Spanish (es-ES) locales
|
|
208
|
+
- 🐞 Bugfixes
|
|
209
|
+
- 📚 Documentation improvements
|
|
210
|
+
|
|
211
|
+
### Data Grid
|
|
212
|
+
|
|
213
|
+
#### `@mui/x-data-grid@6.16.2`
|
|
214
|
+
|
|
215
|
+
- [DataGrid] Fix `LazyLoading` demo crash (#10621) @MBilalShafi
|
|
216
|
+
- [DataGrid] Fix cells overlapping the scrollbar in iOS Safari (#10633) @cherniavskii
|
|
217
|
+
- [DataGrid] Fix `getRowId is not defined` error (#10613) @romgrk
|
|
218
|
+
- [DataGrid] Get quick filter to work OOTB with `date` and `dateTime` fields (#10636) @MBilalShafi
|
|
219
|
+
- [DataGrid] Make cursor for selectable cells to be `default` unless editable (#9997) @gitstart
|
|
220
|
+
- [DataGrid] Remove unnecessary syntax in JSDoc (#10567) @Lev-Shapiro
|
|
221
|
+
- [DataGrid] Update row hover behavior to match native hover (#10623) @cherniavskii
|
|
222
|
+
- [l10n] Improve Arabic (ar-SD) locale (#10625) @alabenyahia
|
|
223
|
+
|
|
224
|
+
#### `@mui/x-data-grid-pro@6.16.2` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
225
|
+
|
|
226
|
+
Same changes as in `@mui/x-data-grid@6.16.2`, plus:
|
|
227
|
+
|
|
228
|
+
- [DataGridPro] Improve column grouping and column pinning friendship (#10518) @MBilalShafi
|
|
229
|
+
|
|
230
|
+
#### `@mui/x-data-grid-premium@6.16.2` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
231
|
+
|
|
232
|
+
Same changes as in `@mui/x-data-grid-pro@6.16.2`.
|
|
233
|
+
|
|
234
|
+
### Date Pickers
|
|
235
|
+
|
|
236
|
+
#### `@mui/x-date-pickers@6.16.2`
|
|
237
|
+
|
|
238
|
+
- [DateTimePicker] Add support for `DigitalClock` view renderer (#10624) @LukasTy
|
|
239
|
+
- [fields] Bootstrap the multi-HTML input component (#10638) @flaviendelangle
|
|
240
|
+
- [pickers] Fix timezone `UTC` false positive (#10586) @alexfauquette
|
|
241
|
+
- [l10n] Improve Spanish (es-ES) locale (#10588) @eduardodallmann
|
|
242
|
+
|
|
243
|
+
#### `@mui/x-date-pickers-pro@6.16.2` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
244
|
+
|
|
245
|
+
Same changes as in `@mui/x-date-pickers@6.16.2`.
|
|
246
|
+
|
|
247
|
+
### Charts / `@mui/x-charts@6.0.0-alpha.15`
|
|
248
|
+
|
|
249
|
+
#### Breaking changes
|
|
250
|
+
|
|
251
|
+
The charts have a new text display mechanism.
|
|
252
|
+
It adds line break support and avoids overlapping text in the legend.
|
|
253
|
+
This comes with some breaking changes.
|
|
254
|
+
|
|
255
|
+
- The DOM structure is modified. An intermediary `<tspan />` element has been added. This can impact how your style is applied.
|
|
256
|
+
```diff
|
|
257
|
+
- <text>The label</text>
|
|
258
|
+
+ <text><tspan>The label</tspan></text>
|
|
259
|
+
```
|
|
260
|
+
|
|
261
|
+
- The top margin has been reduced from 100 to 50 to benefit from the denser legend.
|
|
262
|
+
|
|
263
|
+
- To accurately compute the text size and then place it, styling should be provided as a JS object. For example, to set the legend font size, you should do:
|
|
264
|
+
```jsx
|
|
265
|
+
<PieChart
|
|
266
|
+
{/** ... */}
|
|
267
|
+
slotProps={{
|
|
268
|
+
legend: {
|
|
269
|
+
labelStyle: {
|
|
270
|
+
fontSize: 16,
|
|
271
|
+
},
|
|
272
|
+
},
|
|
273
|
+
}}
|
|
274
|
+
/>
|
|
275
|
+
```
|
|
276
|
+
Support for other text elements (axis labels and tick labels) will be implemented in follow-up PR.
|
|
277
|
+
|
|
278
|
+
#### Changes
|
|
279
|
+
|
|
280
|
+
- [charts] Fix typo between internal/external variable (#10640) @alexfauquette
|
|
281
|
+
- [charts] Improve the management of the text (#10138) @alexfauquette
|
|
282
|
+
|
|
283
|
+
### Docs
|
|
284
|
+
|
|
285
|
+
- [docs] Add bulk editing demo (#10333) @cherniavskii
|
|
286
|
+
- [docs] Add reference links to DateRangePicker components (#10629) @michelengelen
|
|
287
|
+
- [docs] Add reference links to DateTimePicker components (#10628) @michelengelen
|
|
288
|
+
- [docs] Add reference links to picker field components (#10631) @michelengelen
|
|
289
|
+
- [docs] Added reference links to TimePicker components (#10627) @michelengelen
|
|
290
|
+
- [docs] Avoid Pickers playground error due to empty views (#10654) @LukasTy
|
|
291
|
+
- [docs] Fix DataGrid[Pro/Premium] reference links (#10620) @michelengelen
|
|
292
|
+
|
|
293
|
+
### Core
|
|
294
|
+
|
|
295
|
+
- [core] Bump monorepo (#10619) @alexfauquette
|
|
296
|
+
- [core] Update `no-response` workflow (#10491) @MBilalShafi
|
|
297
|
+
- [core] Update the issue templates to reflect the new support workflow (#10651) @MBilalShafi
|
|
298
|
+
- [test] Fix `testEval` not invoking test assertions (#10587) @cherniavskii
|
|
299
|
+
- [test] Fix dev mode warning (#10610) @oliviertassinari
|
|
300
|
+
- [test] Set UUID chance seed in visual tests (#10609) @oliviertassinari
|
|
301
|
+
|
|
302
|
+
## 6.16.1
|
|
303
|
+
|
|
304
|
+
_Oct 6, 2023_
|
|
305
|
+
|
|
306
|
+
We'd like to offer a big thanks to the 10 contributors who made this release possible. Here are some highlights ✨:
|
|
307
|
+
|
|
308
|
+
- 🥧 Support interaction with pie chart
|
|
309
|
+
- 🐞 Bugfixes
|
|
310
|
+
- 📚 Documentation improvements
|
|
311
|
+
|
|
312
|
+
### Data Grid
|
|
313
|
+
|
|
314
|
+
#### `@mui/x-data-grid@6.16.1`
|
|
315
|
+
|
|
316
|
+
- [DataGrid] Add a new demo with sparklines (#9228) @flaviendelangle
|
|
317
|
+
- [DataGrid] Fix autosize missing a few pixels (#10471) @romgrk
|
|
318
|
+
- [DataGrid] Make `disableColumnSelector` demo idempotent (#10548) @MBilalShafi
|
|
319
|
+
|
|
320
|
+
#### `@mui/x-data-grid-pro@6.16.1` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
321
|
+
|
|
322
|
+
Same changes as in `@mui/x-data-grid@6.16.1`.
|
|
323
|
+
|
|
324
|
+
#### `@mui/x-data-grid-premium@6.16.1` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
325
|
+
|
|
326
|
+
Same changes as in `@mui/x-data-grid-pro@6.16.1`.
|
|
327
|
+
|
|
328
|
+
### Date Pickers
|
|
329
|
+
|
|
330
|
+
#### `@mui/x-date-pickers@6.16.1`
|
|
331
|
+
|
|
332
|
+
- [pickers] Avoid calendar layout shifting when changing views (#10541) @LukasTy
|
|
333
|
+
- [pickers] Fix clearable behavior when disabled (#10542) @noraleonte
|
|
334
|
+
- [pickers] Improve customization playground examples (#10544) @noraleonte
|
|
335
|
+
|
|
336
|
+
#### `@mui/x-date-pickers-pro@6.16.1` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
337
|
+
|
|
338
|
+
Same changes as in `@mui/x-date-pickers@6.16.1`, plus:
|
|
339
|
+
|
|
340
|
+
- [DateRangePicker] Fix `InputProps` propagation in multi input (#10564) @alexfauquette
|
|
341
|
+
|
|
342
|
+
### Charts / `@mui/x-charts@6.0.0-alpha.14`
|
|
343
|
+
|
|
344
|
+
- [charts] Display cursor pointer for pie chart only if `onClick` is provided (#10551) @giladappsforce
|
|
345
|
+
- [charts] Add `onClick` prop to PieChart (#10506) @giladappsforce
|
|
346
|
+
- [charts] Support `slots`/`slotProps` for the tooltip (#10515) @alexfauquette
|
|
347
|
+
|
|
348
|
+
### Docs
|
|
349
|
+
|
|
350
|
+
- [docs] Add `DateRangePicker` example with a `Button` trigger (#10485) @LukasTy
|
|
351
|
+
- [docs] Add section about disabling columns panel (#10328) @MBilalShafi
|
|
352
|
+
- [docs] Add section about overriding slots to base concepts (#10421) @noraleonte
|
|
353
|
+
- [docs] Add "What's new" page listing all release announcements (#9727) @joserodolfofreitas
|
|
354
|
+
- [docs] Update RTL Support section of the grid localization docs (#10561) @MBilalShafi
|
|
355
|
+
|
|
356
|
+
### Core
|
|
357
|
+
|
|
358
|
+
- [core] Fix casing consistency with legal and marketing content @oliviertassinari
|
|
359
|
+
- [core] Revert the link in the priority support ticket description (#10517) @michelengelen
|
|
360
|
+
- [CHANGELOG] Polish image @oliviertassinari
|
|
361
|
+
|
|
362
|
+
## 6.16.0
|
|
363
|
+
|
|
364
|
+
_Sep 29, 2023_
|
|
365
|
+
|
|
366
|
+
We'd like to offer a big thanks to the 9 contributors who made this release possible. Here are some highlights ✨:
|
|
367
|
+
|
|
368
|
+
- 🎁 Add a clearable behavior to all the single input pickers and fields (#9095) @noraleonte
|
|
369
|
+
|
|
370
|
+
The pickers and fields now have an out-of-the box implementation for clearing the field value. You can see the documentation for this behavior on the [Date Picker documentation](https://mui.com/x/react-date-pickers/date-picker/#clearing-the-value).
|
|
371
|
+
|
|
372
|
+
<img width="337" height="139" alt="Clearable behavior" src="https://github.com/mui/mui-x/assets/3165635/a5407cb6-0b8a-443c-b4b9-1f81ceb4d087">
|
|
373
|
+
|
|
374
|
+
- 💫 Add Date Picker customization playground (#9581) @noraleonte
|
|
375
|
+
|
|
376
|
+
You can play around with style customization options on the [Date Picker documentation](https://mui.com/x/react-date-pickers/date-picker/#customization).
|
|
377
|
+
|
|
378
|
+
We are thrilled to hear your feedback about this functionality!
|
|
379
|
+
|
|
380
|
+
- 🚀 Fix header filters menu auto closing on render (#10483) @MBilalShafi
|
|
381
|
+
- 🎯 Fix column headers scroll when theme scoping is used (#10437) @cherniavskii
|
|
382
|
+
- 🌍 Improve Russian (ru-RU) locale on the data grid
|
|
383
|
+
- 🐞 Bugfixes
|
|
384
|
+
- 📚 Documentation improvements
|
|
385
|
+
|
|
386
|
+
### Data Grid
|
|
387
|
+
|
|
388
|
+
#### `@mui/x-data-grid@6.16.0`
|
|
389
|
+
|
|
390
|
+
- [DataGrid] Fix column headers scroll when theme scoping is used (#10437) @cherniavskii
|
|
391
|
+
- [DataGrid] Rename `global` to `globalScope` due to Jest issue (#10470) @romgrk
|
|
392
|
+
- [l10n] Improve Russian (ru-RU) locale (#10464 and #10407) @NKodos
|
|
393
|
+
|
|
394
|
+
#### `@mui/x-data-grid-pro@6.16.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
395
|
+
|
|
396
|
+
Same changes as in `@mui/x-data-grid@6.16.0`, plus:
|
|
397
|
+
|
|
398
|
+
- [DataGridPro] Fix header filters menu auto closing on render (#10483) @MBilalShafi
|
|
399
|
+
|
|
400
|
+
#### `@mui/x-data-grid-premium@6.16.0` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
401
|
+
|
|
402
|
+
Same changes as in `@mui/x-data-grid-pro@6.16.0`.
|
|
403
|
+
|
|
404
|
+
### Date Pickers
|
|
405
|
+
|
|
406
|
+
#### `@mui/x-date-pickers@6.16.0`
|
|
407
|
+
|
|
408
|
+
- [pickers] Add warning to `shouldDisableDate` validation (#10502) @michelengelen
|
|
409
|
+
- [pickers] Implement `clearable` field behavior (#9095) @noraleonte
|
|
410
|
+
- [pickers] Refactor `dayOfWeekFormatter` (#10345) @michelengelen
|
|
411
|
+
|
|
412
|
+
#### `@mui/x-date-pickers-pro@6.16.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
413
|
+
|
|
414
|
+
Same changes as in `@mui/x-date-pickers@6.16.0`.
|
|
415
|
+
|
|
416
|
+
### Charts / `@mui/x-charts@6.0.0-alpha.13`
|
|
417
|
+
|
|
418
|
+
- [charts] Share upfront future Pro features (#10465) @oliviertassinari
|
|
419
|
+
|
|
420
|
+
### Tree View / `@mui/x-tree-view@6.0.0-beta.0`
|
|
421
|
+
|
|
422
|
+
- [TreeView] Do not try to focus a collapsed node when re-focusing the TreeView (#10422) @flaviendelangle
|
|
423
|
+
- [TreeView] Fix the typing of the `Multiple` generic (#10478) @flaviendelangle
|
|
424
|
+
|
|
425
|
+
### Docs
|
|
426
|
+
|
|
427
|
+
- [docs] Correct the typo in data grid api docs (#10477) @MBilalShafi
|
|
428
|
+
- [docs] Add customization playground (#9581) @noraleonte
|
|
429
|
+
- [docs] Fix Tree View product ID (#10428) @oliviertassinari
|
|
430
|
+
- [docs] Fix demo crashing when all rows are deleted (#10438) @cherniavskii
|
|
431
|
+
- [docs] Fix mobile scrollbar column resize (#10455) @oliviertassinari
|
|
432
|
+
- [docs] Fix usage of `GridRenderCellParams` interface (#10435) @cherniavskii
|
|
433
|
+
|
|
434
|
+
### Core
|
|
435
|
+
|
|
436
|
+
- [core] Fix typo in header data grid quick filter @oliviertassinari
|
|
437
|
+
- [core] Group D3 renovate PRs (#10480) @flaviendelangle
|
|
438
|
+
- [core] Link the priority support page (#10495) @michelengelen
|
|
439
|
+
- [core] Move the pickers describes to the test utils folder (#10490) @flaviendelangle
|
|
440
|
+
- [core] Priority Support casing normalization @oliviertassinari
|
|
441
|
+
- [core] Remove automated DataGrid performance tests (#10414) @romgrk
|
|
442
|
+
- [core] Sync `prism-okaidia.css` with docs-infra @oliviertassinari
|
|
443
|
+
- [core] Update issue actions & templates (#10375) @romgrk
|
|
444
|
+
- [core] Update release guide (#10468) @DanailH
|
|
445
|
+
|
|
446
|
+
## 6.15.0
|
|
447
|
+
|
|
448
|
+
_Sep 22, 2023_
|
|
449
|
+
|
|
450
|
+
We'd like to offer a big thanks to the 9 contributors who made this release possible. Here are some highlights ✨:
|
|
451
|
+
|
|
452
|
+
- 🚀 Implement columns auto-sizing (#10180) @romgrk
|
|
453
|
+
- 🎁 Add support for `getRowsToExport` option to print export on the data grid (#10084) @zreecespieces
|
|
454
|
+
- 🌍 Improve Finnish (fi-FI) locale
|
|
455
|
+
- 🐞 Bugfixes
|
|
456
|
+
- 📚 Documentation improvements
|
|
457
|
+
|
|
458
|
+
### Data Grid
|
|
459
|
+
|
|
460
|
+
#### `@mui/x-data-grid@6.15.0`
|
|
461
|
+
|
|
462
|
+
- [DataGrid] Add support for `getRowsToExport` option to print export (#10084) @zreecespieces
|
|
463
|
+
- [DataGrid] Fix dev warning about `InputLabelProps` (#10413) @romgrk
|
|
464
|
+
- [DataGrid] Refactor `GridMenu` prop `onClickAway` to `onClose` (#10411) @romgrk
|
|
465
|
+
- [DataGrid] Restore focus after `GridMenu` closes (#10412) @romgrk
|
|
466
|
+
- [DataGrid] Fix typing of `GridActionsCellItem` (#10344) @romgrk
|
|
467
|
+
- [DataGrid] Hide `eval` from bundlers (#10329) @romgrk
|
|
468
|
+
- [DataGrid] Add `border: 0` to unmounted focused cell to avoid layout shifts in that row (#10318) @lauri865
|
|
469
|
+
|
|
470
|
+
#### `@mui/x-data-grid-pro@6.15.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
471
|
+
|
|
472
|
+
Same changes as in `@mui/x-data-grid@6.15.0`, plus:
|
|
473
|
+
|
|
474
|
+
- [DataGridPro] Implement columns auto-sizing (#10180) @romgrk
|
|
475
|
+
- [DataGridPro] Fix keyboard navigation issue in header filters (#10358) @MBilalShafi
|
|
476
|
+
- [DataGridPro] Add missing row hover styles (#10252) @cherniavskii
|
|
477
|
+
- [DataGridPro] Make default filter items have stable references in header filters (#10338) @MBilalShafi
|
|
478
|
+
|
|
479
|
+
#### `@mui/x-data-grid-premium@6.15.0` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
480
|
+
|
|
481
|
+
Same changes as in `@mui/x-data-grid-pro@6.15.0`.
|
|
482
|
+
|
|
483
|
+
### Date Pickers
|
|
484
|
+
|
|
485
|
+
#### `@mui/x-date-pickers@6.15.0`
|
|
486
|
+
|
|
487
|
+
- [pickers] Support tokens without spaces (#10185) @alexfauquette
|
|
488
|
+
- [l10n] Improve Finnish (fi-FI) locale (#10346) @samijouppila
|
|
489
|
+
|
|
490
|
+
#### `@mui/x-date-pickers-pro@6.15.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
491
|
+
|
|
492
|
+
Same changes as in `@mui/x-date-pickers@6.15.0`.
|
|
493
|
+
|
|
494
|
+
### Charts / `@mui/x-charts@6.0.0-alpha.12`
|
|
495
|
+
|
|
496
|
+
- [charts] Fix sparkline scale and rendering (#10402) @alexfauquette
|
|
497
|
+
- [charts] Remove components from `@mui/material` (#10115) @alexfauquette
|
|
498
|
+
|
|
499
|
+
### Tree View / `@mui/x-tree-view@6.0.0-alpha.4`
|
|
500
|
+
|
|
501
|
+
- [TreeView] Split features into plugins to prepare for Pro version (#10123) @flaviendelangle
|
|
502
|
+
|
|
503
|
+
### Docs
|
|
504
|
+
|
|
505
|
+
- [docs] Add charts documentation pages to complete pricing table (#10394) @alexfauquette
|
|
506
|
+
- [docs] Add missing MIT packages on the Licensing page (#10348) @flaviendelangle
|
|
507
|
+
- [docs] Clearer component pattern @oliviertassinari
|
|
508
|
+
- [docs] Easier to understand demo (#10370) @oliviertassinari
|
|
509
|
+
- [docs] Fix `301` to Material UI @oliviertassinari
|
|
510
|
+
- [docs] Improve the column visibility section (#10327) @MBilalShafi
|
|
511
|
+
- [docs] Improve the documentation section `rowIdentifier` (#10326) @MBilalShafi
|
|
512
|
+
- [docs] Improve pickers localization documentation (#10202) @flaviendelangle
|
|
513
|
+
- [docs] Polish typescript ref usage (#10359) @oliviertassinari
|
|
514
|
+
- [docs] Improve charts tooltip wording (#10406) @alexfauquette
|
|
515
|
+
|
|
516
|
+
### Core
|
|
517
|
+
|
|
518
|
+
- [core] Cleanup GitHub issues template (#10372) @romgrk
|
|
519
|
+
- [core] Fix Circle CI OOM (#10385) @romgrk
|
|
520
|
+
- [core] Improve sleep test helper @oliviertassinari
|
|
521
|
+
- [core] Remove unwanted prefixes @oliviertassinari
|
|
522
|
+
- [core] Remove duplicate label @oliviertassinari
|
|
523
|
+
- [core] Simplify source @oliviertassinari
|
|
524
|
+
- [core] Upgrade monorepo (#10425) @cherniavskii
|
|
525
|
+
- [core] Upgrade monorepo to have the new typescript-to-proptype (#10224) @flaviendelangle
|
|
526
|
+
- [test] Do not use deprecated adapter methods (#10416) @flaviendelangle
|
|
527
|
+
- [test] Name test suites according to sentence case (#10429) @alexfauquette
|
|
528
|
+
|
|
529
|
+
## 6.14.0
|
|
530
|
+
|
|
531
|
+
_Sep 14, 2023_
|
|
532
|
+
|
|
533
|
+
We'd like to offer a big thanks to the 9 contributors who made this release possible. Here are some highlights ✨:
|
|
534
|
+
|
|
535
|
+
- 🎁 Fix `YearCalendar` and `MonthCalendar` accessibility (#10312) @LukasTy
|
|
536
|
+
|
|
537
|
+
The `YearCalendar` and `MonthCalendar` items role has been changed from `button` to `radio` in order to improve the component's a11y support.
|
|
538
|
+
If you were relying on the mentioned components having a `button` role for items, you will need to update your usage to expect a `radio` role instead.
|
|
539
|
+
|
|
540
|
+
- 🌍 Improve Japanese (ja-JP), Persian (fa-IR), and Vietnamese (vi-VN) locales on the data grid
|
|
541
|
+
- 🐞 Bugfixes
|
|
542
|
+
- 📚 Documentation improvements
|
|
543
|
+
|
|
544
|
+
### Data Grid
|
|
545
|
+
|
|
546
|
+
#### `@mui/x-data-grid@6.14.0`
|
|
547
|
+
|
|
548
|
+
- [l10n] Improve Japanese (ja-JP) locale (#10299) @makoto14
|
|
549
|
+
- [l10n] Improve Persian (fa-IR) locale (#10277) @aminsaedi
|
|
550
|
+
- [l10n] Improve Vietnamese (vi-VN) locale (#10280) @khangnguyen2100
|
|
551
|
+
|
|
552
|
+
#### `@mui/x-data-grid-pro@6.14.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
553
|
+
|
|
554
|
+
Same changes as in `@mui/x-data-grid@6.14.0`.
|
|
555
|
+
|
|
556
|
+
#### `@mui/x-data-grid-premium@6.14.0` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
557
|
+
|
|
558
|
+
Same changes as in `@mui/x-data-grid-pro@6.14.0`, plus:
|
|
559
|
+
|
|
560
|
+
- [DataGridPremium] Fix clipboard import cutting off at 100 rows (#9930) @gitstart
|
|
561
|
+
|
|
562
|
+
### Date Pickers
|
|
563
|
+
|
|
564
|
+
#### `@mui/x-date-pickers@6.14.0`
|
|
565
|
+
|
|
566
|
+
- [pickers] Fix `YearCalendar` and `MonthCalendar` a11y (#10312) @LukasTy
|
|
567
|
+
- [pickers] Localize `TimeClock` meridiem text (#10324) @LukasTy
|
|
568
|
+
|
|
569
|
+
#### `@mui/x-date-pickers-pro@6.14.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
570
|
+
|
|
571
|
+
Same changes as in `@mui/x-date-pickers@6.14.0`.
|
|
572
|
+
|
|
573
|
+
### Charts / `@mui/x-charts@6.0.0-alpha.11`
|
|
574
|
+
|
|
575
|
+
- [charts] Add default `barGapRatio` and increase `categoryGapRatio` (#10317) @LukasTy
|
|
576
|
+
- [charts] Enable `eslint` on the package (#10330) @LukasTy
|
|
577
|
+
|
|
578
|
+
### Tree View / `@mui/x-tree-view@6.0.0-alpha.3`
|
|
579
|
+
|
|
580
|
+
- [TreeView] Fix box-sizing dependency (#10255) @oliviertassinari
|
|
581
|
+
|
|
582
|
+
### Docs
|
|
583
|
+
|
|
584
|
+
- [docs] Add conditional range picker props example (#10227) @LukasTy
|
|
585
|
+
- [docs] Add toolbar to the multi-filters demo (#10223) @MBilalShafi
|
|
586
|
+
- [docs] Avoid the use of "We" @oliviertassinari
|
|
587
|
+
- [docs] Clarify MUI vs. MUI Core difference @oliviertassinari
|
|
588
|
+
- [docs] Enable `ariaV7` flag for demos using `useDemoData` hook (#10204) @cherniavskii
|
|
589
|
+
- [docs] Fix Tree View link to API references (#10282) @oliviertassinari
|
|
590
|
+
- [docs] Fix image layout shift (#10313) @oliviertassinari
|
|
591
|
+
- [docs] Fix link to MUI X from readme logo @oliviertassinari
|
|
592
|
+
- [docs] Fix redirection to Base UI URLs @oliviertassinari
|
|
593
|
+
- [docs] Improve Tree View demos (#10268) @oliviertassinari
|
|
594
|
+
- [docs] Improve docs for ref type props (#10273) @michelengelen
|
|
595
|
+
- [docs] Improve npm package README (#10269) @oliviertassinari
|
|
596
|
+
- [docs] Improve the clarity of the npm links @oliviertassinari
|
|
597
|
+
- [docs] Keep installation readme simple @oliviertassinari
|
|
598
|
+
- [docs] Make each component feel more standalone @oliviertassinari
|
|
599
|
+
|
|
600
|
+
### Core
|
|
601
|
+
|
|
602
|
+
- [core] Add types extension for clarity @oliviertassinari
|
|
603
|
+
- [core] Set logo height to fix layout shift in GitHub @oliviertassinari
|
|
604
|
+
- [core] TrapFocus was renamed to FocusTrap @oliviertassinari
|
|
605
|
+
|
|
606
|
+
## 6.13.0
|
|
607
|
+
|
|
608
|
+
_Sep 8, 2023_
|
|
609
|
+
|
|
610
|
+
We'd like to offer a big thanks to the 10 contributors who made this release possible. Here are some highlights ✨:
|
|
611
|
+
|
|
612
|
+
- 🎁 Fix `anchorRef` behavior on range pickers (#10077) @LukasTy
|
|
613
|
+
|
|
614
|
+
The range picker popup will now be anchored to the first input element and left aligned like other pickers.
|
|
615
|
+
|
|
616
|
+
- 🌍 Improve Slovak (sk-SK) locale on the data grid
|
|
617
|
+
- 🐞 Bugfixes
|
|
618
|
+
- 📚 Documentation improvements
|
|
619
|
+
|
|
620
|
+
### Data Grid
|
|
621
|
+
|
|
622
|
+
#### `@mui/x-data-grid@6.13.0`
|
|
623
|
+
|
|
624
|
+
- [DataGrid] Allow to override the default overlay height in `autoHeight` mode (#10203) @cherniavskii
|
|
625
|
+
- [DataGrid] Allow to override the default row count component in footer (#10063) @hungmanhle
|
|
626
|
+
- [DataGrid] Fix an error when hovering on a row, the background changed to white (#10214) @chucamphong
|
|
627
|
+
- [DataGrid] Fix custom column docs, remove legacy `extendType` (#10175) @oliviertassinari
|
|
628
|
+
- [DataGrid] Make the pinned rows be on top of the no rows overlay (#9986) @DanailH
|
|
629
|
+
- [l10n] Improve Slovak (sk-SK) locale (#10182) @msidlo
|
|
630
|
+
|
|
631
|
+
#### `@mui/x-data-grid-pro@6.13.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
632
|
+
|
|
633
|
+
Same changes as in `@mui/x-data-grid@6.13.0`, plus:
|
|
634
|
+
|
|
635
|
+
- [DataGridPro] Fix column resize with pinned rows (#10229) @cherniavskii
|
|
636
|
+
|
|
637
|
+
#### `@mui/x-data-grid-premium@6.13.0` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
638
|
+
|
|
639
|
+
Same changes as in `@mui/x-data-grid-pro@6.13.0`, plus:
|
|
640
|
+
|
|
641
|
+
- [DataGridPremium] Fix aggregated column resizing (#10079) @cherniavskii
|
|
642
|
+
|
|
643
|
+
### Date Pickers
|
|
644
|
+
|
|
645
|
+
#### `@mui/x-date-pickers@6.13.0`
|
|
646
|
+
|
|
647
|
+
- [pickers] Respect the adapter locale in `AdapterMoment.getWeekdays` (#10221) @flaviendelangle
|
|
648
|
+
|
|
649
|
+
#### `@mui/x-date-pickers-pro@6.13.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
650
|
+
|
|
651
|
+
Same changes as in `@mui/x-date-pickers@6.13.0`, plus:
|
|
652
|
+
|
|
653
|
+
- [DateRangePicker] Fix `anchorRef` behavior (#10077) @LukasTy
|
|
654
|
+
|
|
655
|
+
### Charts / `@mui/x-charts@6.0.0-alpha.10`
|
|
656
|
+
|
|
657
|
+
- [charts] Remove require condition from package.json exports (#10272) @Janpot
|
|
658
|
+
|
|
659
|
+
### Tree View / `@mui/x-tree-view@6.0.0-alpha.2`
|
|
660
|
+
|
|
661
|
+
- [TreeView] Add missing export (#10245) @flaviendelangle
|
|
662
|
+
|
|
663
|
+
### Docs
|
|
664
|
+
|
|
665
|
+
- [docs] Add a `Getting Started` page for the Tree View (#10218) @flaviendelangle
|
|
666
|
+
- [docs] Add pickers `Custom opening button` page (#10200) @flaviendelangle
|
|
667
|
+
- [docs] Add pie chart demo with a center label (#10220) @giladappsforce
|
|
668
|
+
- [docs] Do not document ignored components (#10258) @flaviendelangle
|
|
669
|
+
- [docs] Fix charts demo using too deep import (#10263) @LukasTy
|
|
670
|
+
- [docs] Fix `e.g.` typo @oliviertassinari
|
|
671
|
+
- [docs] Fix npm package indentation @oliviertassinari
|
|
672
|
+
- [docs] Fix typo in tree view docs @oliviertassinari
|
|
673
|
+
- [docs] Improve the week picker example (#8257) @flaviendelangle
|
|
674
|
+
- [docs] Include code links in the data grid demo (#10219) @cherniavskii
|
|
675
|
+
- [docs] Polish page for SEO (#10216) @oliviertassinari
|
|
676
|
+
- [docs] Use `Base UI` `Portal` for the quick filter recipe (#10188) @DanailH
|
|
677
|
+
|
|
678
|
+
### Core
|
|
679
|
+
|
|
680
|
+
- [core] Finish migration to GA4 @oliviertassinari
|
|
681
|
+
- [core] Fix yarn docs:create-playground script @oliviertassinari
|
|
682
|
+
- [core] Move @mui/base from peer dependency to dependency (#10215) @oliviertassinari
|
|
683
|
+
- [core] Prevent `e.g.` typo (#10193) @oliviertassinari
|
|
684
|
+
- [core] Remove unused `babel-plugin-tester` package (#10243) @LukasTy
|
|
685
|
+
|
|
6
686
|
## 6.12.1
|
|
7
687
|
|
|
8
688
|
_Aug 31, 2023_
|
|
@@ -17,30 +697,30 @@ We'd like to offer a big thanks to the 7 contributors who made this release poss
|
|
|
17
697
|
|
|
18
698
|
### Data Grid
|
|
19
699
|
|
|
20
|
-
#### `@mui/x-data-grid@
|
|
700
|
+
#### `@mui/x-data-grid@6.12.1`
|
|
21
701
|
|
|
22
702
|
- [DataGrid] Add a recipe showing how to render components outside of the grid (#10121) @DanailH
|
|
23
703
|
- [DataGrid] Fix `valueFormatter` being persisted on column type change (#10041) @cherniavskii
|
|
24
704
|
- [DataGrid] Fix error when keyboard navigating an empty grid (#10081) @romgrk
|
|
25
705
|
- [DataGrid] Replace timeout with `useTimeout` (#10179) @romgrk
|
|
26
706
|
|
|
27
|
-
#### `@mui/x-data-grid-pro@
|
|
707
|
+
#### `@mui/x-data-grid-pro@6.12.1` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
28
708
|
|
|
29
|
-
Same changes as in `@mui/x-data-grid@
|
|
709
|
+
Same changes as in `@mui/x-data-grid@6.12.1`.
|
|
30
710
|
|
|
31
|
-
#### `@mui/x-data-grid-premium@
|
|
711
|
+
#### `@mui/x-data-grid-premium@6.12.1` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
32
712
|
|
|
33
|
-
Same changes as in `@mui/x-data-grid-pro@
|
|
713
|
+
Same changes as in `@mui/x-data-grid-pro@6.12.1`.
|
|
34
714
|
|
|
35
715
|
### Date Pickers
|
|
36
716
|
|
|
37
|
-
#### `@mui/x-date-pickers@
|
|
717
|
+
#### `@mui/x-date-pickers@6.12.1`
|
|
38
718
|
|
|
39
719
|
- [pickers] Add `referenceDate` on picker components (and `DateRangeCalendar`) (#9991) @flaviendelangle
|
|
40
720
|
|
|
41
|
-
#### `@mui/x-date-pickers-pro@
|
|
721
|
+
#### `@mui/x-date-pickers-pro@6.12.1` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
42
722
|
|
|
43
|
-
Same changes as in `@mui/x-date-pickers@
|
|
723
|
+
Same changes as in `@mui/x-date-pickers@6.12.1`.
|
|
44
724
|
|
|
45
725
|
### Charts / `@mui/x-charts@6.0.0-alpha.9`
|
|
46
726
|
|
|
@@ -75,22 +755,22 @@ We'd like to offer a big thanks to the 10 contributors who made this release pos
|
|
|
75
755
|
|
|
76
756
|
### Data Grid
|
|
77
757
|
|
|
78
|
-
#### `@mui/x-data-grid@
|
|
758
|
+
#### `@mui/x-data-grid@6.12.0`
|
|
79
759
|
|
|
80
760
|
- [DataGrid] Allow print export for more than 100 rows (#10045) @MBilalShafi
|
|
81
761
|
- [l10n] Improve Ukrainian (uk-UA) locale (#10076) @mkundos
|
|
82
762
|
|
|
83
|
-
#### `@mui/x-data-grid-pro@
|
|
763
|
+
#### `@mui/x-data-grid-pro@6.12.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
84
764
|
|
|
85
|
-
Same changes as in `@mui/x-data-grid@
|
|
765
|
+
Same changes as in `@mui/x-data-grid@6.12.0`.
|
|
86
766
|
|
|
87
|
-
#### `@mui/x-data-grid-premium@
|
|
767
|
+
#### `@mui/x-data-grid-premium@6.12.0` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
88
768
|
|
|
89
|
-
Same changes as in `@mui/x-data-grid-pro@
|
|
769
|
+
Same changes as in `@mui/x-data-grid-pro@6.12.0`.
|
|
90
770
|
|
|
91
771
|
### Date Pickers
|
|
92
772
|
|
|
93
|
-
#### `@mui/x-date-pickers@
|
|
773
|
+
#### `@mui/x-date-pickers@6.12.0`
|
|
94
774
|
|
|
95
775
|
- [fields] Do not clamp day of month (#9973) @flaviendelangle
|
|
96
776
|
- [pickers] Fix `ownerState` on `desktopPaper` slot props (#10103) @LukasTy
|
|
@@ -100,9 +780,9 @@ Same changes as in `@mui/x-data-grid-pro@v6.12.0`.
|
|
|
100
780
|
- [pickers] Make `openPickerButton` toggle picker (#10109) @noraleonte
|
|
101
781
|
- [pickers] Update `reduceAnimations` default rule (#9864) @LukasTy
|
|
102
782
|
|
|
103
|
-
#### `@mui/x-date-pickers-pro@
|
|
783
|
+
#### `@mui/x-date-pickers-pro@6.12.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
104
784
|
|
|
105
|
-
Same changes as in `@mui/x-date-pickers@
|
|
785
|
+
Same changes as in `@mui/x-date-pickers@6.12.0`.
|
|
106
786
|
|
|
107
787
|
### Charts / `@mui/x-charts@6.0.0-alpha.8`
|
|
108
788
|
|
|
@@ -141,7 +821,7 @@ We'd like to offer a big thanks to the 8 contributors who made this release poss
|
|
|
141
821
|
|
|
142
822
|
### Data Grid
|
|
143
823
|
|
|
144
|
-
#### `@mui/x-data-grid@
|
|
824
|
+
#### `@mui/x-data-grid@6.11.2`
|
|
145
825
|
|
|
146
826
|
- [DataGrid] Fix `eval` blocked by CSP (#9863) @romgrk
|
|
147
827
|
- [DataGrid] Fix row id bug (#10051) @romgrk
|
|
@@ -151,26 +831,26 @@ We'd like to offer a big thanks to the 8 contributors who made this release poss
|
|
|
151
831
|
- [l10n] Improve Chinese (zh-CN) and Chinese(traditional) (zh-TW) locales (#9999) @MyNameIsTakenOMG
|
|
152
832
|
- [l10n] Improve Spanish (es-ES) locale (#10037) @Macampu420
|
|
153
833
|
|
|
154
|
-
#### `@mui/x-data-grid-pro@
|
|
834
|
+
#### `@mui/x-data-grid-pro@6.11.2` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
155
835
|
|
|
156
|
-
Same changes as in `@mui/x-data-grid@
|
|
836
|
+
Same changes as in `@mui/x-data-grid@6.11.2`.
|
|
157
837
|
|
|
158
|
-
#### `@mui/x-data-grid-premium@
|
|
838
|
+
#### `@mui/x-data-grid-premium@6.11.2` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
159
839
|
|
|
160
|
-
Same changes as in `@mui/x-data-grid-pro@
|
|
840
|
+
Same changes as in `@mui/x-data-grid-pro@6.11.2`.
|
|
161
841
|
|
|
162
842
|
### Date Pickers
|
|
163
843
|
|
|
164
|
-
#### `@mui/x-date-pickers@
|
|
844
|
+
#### `@mui/x-date-pickers@6.11.2`
|
|
165
845
|
|
|
166
846
|
- [pickers] Fix month switcher RTL (#10003) @alexfauquette
|
|
167
847
|
- [pickers] Follow-up on using device motion reduction preference (#9858) @LukasTy
|
|
168
848
|
- [pickers] Pass the shortcut information in the `onChange` context (#9985) @flaviendelangle
|
|
169
849
|
- [pickers] Replace `Grid` toolbar component with a styled `div` (#10052) @LukasTy
|
|
170
850
|
|
|
171
|
-
#### `@mui/x-date-pickers-pro@
|
|
851
|
+
#### `@mui/x-date-pickers-pro@6.11.2` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
172
852
|
|
|
173
|
-
Same changes as in `@mui/x-date-pickers@
|
|
853
|
+
Same changes as in `@mui/x-date-pickers@6.11.2`.
|
|
174
854
|
|
|
175
855
|
### Docs
|
|
176
856
|
|
|
@@ -225,7 +905,7 @@ Same changes as in `@mui/x-data-grid-pro@6.11.1`.
|
|
|
225
905
|
|
|
226
906
|
Same changes as in `@mui/x-date-pickers@6.11.1`.
|
|
227
907
|
|
|
228
|
-
### Charts / `@mui/x-charts@
|
|
908
|
+
### Charts / `@mui/x-charts@6.0.0-alpha.7`
|
|
229
909
|
|
|
230
910
|
- [charts] Fix label and tick alignment (#9952) @LukasTy
|
|
231
911
|
- [charts] Remove not functional component `styleOverrides` (#9996) @LukasTy
|
|
@@ -233,7 +913,7 @@ Same changes as in `@mui/x-date-pickers@6.11.1`.
|
|
|
233
913
|
- [charts] Use `slot`/`slotProps` for customization (#9744) @alexfauquette
|
|
234
914
|
- [charts] Extend cheerful fiesta palette (#9980) @noraleonte
|
|
235
915
|
|
|
236
|
-
### Tree View / `@mui/x-tree-view@
|
|
916
|
+
### Tree View / `@mui/x-tree-view@6.0.0-alpha.1`
|
|
237
917
|
|
|
238
918
|
- [TreeView] Add theme augmentation (#9967) @flaviendelangle
|
|
239
919
|
|
|
@@ -263,7 +943,7 @@ We'd like to offer a big thanks to the 12 contributors who made this release pos
|
|
|
263
943
|
|
|
264
944
|
### Data Grid
|
|
265
945
|
|
|
266
|
-
#### `@mui/x-data-grid@
|
|
946
|
+
#### `@mui/x-data-grid@6.11.0`
|
|
267
947
|
|
|
268
948
|
- [DataGrid] Add `ariaV7` experimental flag (#9496) @cherniavskii
|
|
269
949
|
- [DataGrid] Fix cell size when column width is set to `undefined` (#9871) @gitstart
|
|
@@ -271,17 +951,17 @@ We'd like to offer a big thanks to the 12 contributors who made this release pos
|
|
|
271
951
|
- [l10n] Improve Finnish (fi-FI) locale (#9848) @sambbaahh
|
|
272
952
|
- [l10n] Improve Italian (it-IT) locale (#9627) @fabio-rizzello-omnia
|
|
273
953
|
|
|
274
|
-
#### `@mui/x-data-grid-pro@
|
|
954
|
+
#### `@mui/x-data-grid-pro@6.11.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
275
955
|
|
|
276
|
-
Same changes as in `@mui/x-data-grid@
|
|
956
|
+
Same changes as in `@mui/x-data-grid@6.11.0`.
|
|
277
957
|
|
|
278
|
-
#### `@mui/x-data-grid-premium@
|
|
958
|
+
#### `@mui/x-data-grid-premium@6.11.0` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
279
959
|
|
|
280
|
-
Same changes as in `@mui/x-data-grid-pro@
|
|
960
|
+
Same changes as in `@mui/x-data-grid-pro@6.11.0`.
|
|
281
961
|
|
|
282
962
|
### Date Pickers
|
|
283
963
|
|
|
284
|
-
#### `@mui/x-date-pickers@
|
|
964
|
+
#### `@mui/x-date-pickers@6.11.0`
|
|
285
965
|
|
|
286
966
|
- [fields] Correctly handle events with a complete value insertion (#9896) @LukasTy
|
|
287
967
|
- [fields] Fix hours editing on dayjs with timezone and DST (#9901) @flaviendelangle
|
|
@@ -294,18 +974,18 @@ Same changes as in `@mui/x-data-grid-pro@v6.11.0`.
|
|
|
294
974
|
- [pickers] Fix offset management on dayjs adapter (#9884) @flaviendelangle
|
|
295
975
|
- [pickers] Use device motion reduction preference (#9823) @LukasTy
|
|
296
976
|
|
|
297
|
-
#### `@mui/x-date-pickers-pro@
|
|
977
|
+
#### `@mui/x-date-pickers-pro@6.11.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
298
978
|
|
|
299
|
-
Same changes as in `@mui/x-date-pickers@
|
|
979
|
+
Same changes as in `@mui/x-date-pickers@6.11.0`.
|
|
300
980
|
|
|
301
|
-
### Charts / `@mui/x-charts@
|
|
981
|
+
### Charts / `@mui/x-charts@6.0.0-alpha.6`
|
|
302
982
|
|
|
303
983
|
- [charts] Add TS definition to the exported elements (#9885) @alexfauquette
|
|
304
984
|
- [charts] Add sparkline (#9662) @alexfauquette
|
|
305
985
|
- [charts] Fix missing configuration types (#9886) @alexfauquette
|
|
306
986
|
- [charts] Introduce dataset to simplify plot of data from API (#9774) @alexfauquette
|
|
307
987
|
|
|
308
|
-
### Tree View / `@mui/x-tree-view@
|
|
988
|
+
### Tree View / `@mui/x-tree-view@6.0.0-alpha.0`
|
|
309
989
|
|
|
310
990
|
- [TreeView] Add missing exported types (#9862) @flaviendelangle
|
|
311
991
|
- [TreeView] Add tree view to changelog generator script (#9903) @MBilalShafi
|
|
@@ -350,34 +1030,34 @@ We'd like to offer a big thanks to the 13 contributors who made this release pos
|
|
|
350
1030
|
|
|
351
1031
|
### Data Grid
|
|
352
1032
|
|
|
353
|
-
#### `@mui/x-data-grid@
|
|
1033
|
+
#### `@mui/x-data-grid@6.10.2`
|
|
354
1034
|
|
|
355
1035
|
- [DataGrid] Fix quick filter & aggregation error (#9729) @romgrk
|
|
356
1036
|
- [DataGrid] Fix row click propagation causing error in nested grid (#9741) @cherniavskii
|
|
357
1037
|
- [DataGrid] Keep focused cell in the DOM (#7357) @yaredtsy
|
|
358
1038
|
- [l10n] Improve Finnish (fi-FI) locale (#9746) @sambbaahh
|
|
359
1039
|
|
|
360
|
-
#### `@mui/x-data-grid-pro@
|
|
1040
|
+
#### `@mui/x-data-grid-pro@6.10.2` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
361
1041
|
|
|
362
|
-
Same changes as in `@mui/x-data-grid@
|
|
1042
|
+
Same changes as in `@mui/x-data-grid@6.10.2`.
|
|
363
1043
|
|
|
364
|
-
#### `@mui/x-data-grid-premium@
|
|
1044
|
+
#### `@mui/x-data-grid-premium@6.10.2` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
365
1045
|
|
|
366
|
-
Same changes as in `@mui/x-data-grid-pro@
|
|
1046
|
+
Same changes as in `@mui/x-data-grid-pro@6.10.2`, plus:
|
|
367
1047
|
|
|
368
1048
|
- [DataGridPremium] Allow to customize grouping cell offset (#9417) @cherniavskii
|
|
369
1049
|
|
|
370
1050
|
### Date Pickers
|
|
371
1051
|
|
|
372
|
-
#### `@mui/x-date-pickers@
|
|
1052
|
+
#### `@mui/x-date-pickers@6.10.2`
|
|
373
1053
|
|
|
374
1054
|
- [pickers] Remove the `endOfDate` from `DigitalClock` timeOptions (#9800) @noraleonte
|
|
375
1055
|
|
|
376
|
-
#### `@mui/x-date-pickers-pro@
|
|
1056
|
+
#### `@mui/x-date-pickers-pro@6.10.2` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
377
1057
|
|
|
378
|
-
Same changes as in `@mui/x-date-pickers@
|
|
1058
|
+
Same changes as in `@mui/x-date-pickers@6.10.2`.
|
|
379
1059
|
|
|
380
|
-
### Charts / `@mui/x-charts@
|
|
1060
|
+
### Charts / `@mui/x-charts@6.0.0-alpha.5`
|
|
381
1061
|
|
|
382
1062
|
- [charts] Improve JSDoc for axis-related props (#9779) @flaviendelangle
|
|
383
1063
|
- [charts] Improve performances of Scatter component (#9527) @flaviendelangle
|
|
@@ -415,7 +1095,7 @@ We'd like to offer a big thanks to the 11 contributors who made this release pos
|
|
|
415
1095
|
|
|
416
1096
|
### Data Grid
|
|
417
1097
|
|
|
418
|
-
#### `@mui/x-data-grid@
|
|
1098
|
+
#### `@mui/x-data-grid@6.10.1`
|
|
419
1099
|
|
|
420
1100
|
- [DataGrid] Filtering performance: compile filter applier with `eval` (#9635) @romgrk
|
|
421
1101
|
- [DataGrid] Fix CSV export for values containing double quotes (#9667) @cherniavskii
|
|
@@ -425,29 +1105,29 @@ We'd like to offer a big thanks to the 11 contributors who made this release pos
|
|
|
425
1105
|
- [DataGrid] Update focused cell on page change via keyboard (#9203) @m4theushw
|
|
426
1106
|
- [DataGrid] Wait for remote stylesheets to load before print (#9665) @cherniavskii
|
|
427
1107
|
|
|
428
|
-
#### `@mui/x-data-grid-pro@
|
|
1108
|
+
#### `@mui/x-data-grid-pro@6.10.1` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
429
1109
|
|
|
430
|
-
Same changes as in `@mui/x-data-grid@
|
|
1110
|
+
Same changes as in `@mui/x-data-grid@6.10.1`, plus:
|
|
431
1111
|
|
|
432
1112
|
- [DataGridPro] Improve tree data performance (#9682) @cherniavskii
|
|
433
1113
|
- [DataGridPro] Prevent affecting cells from child DataGrid when resizing a column (#9670) @m4theushw
|
|
434
1114
|
|
|
435
|
-
#### `@mui/x-data-grid-premium@
|
|
1115
|
+
#### `@mui/x-data-grid-premium@6.10.1` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
436
1116
|
|
|
437
|
-
Same changes as in `@mui/x-data-grid-pro@
|
|
1117
|
+
Same changes as in `@mui/x-data-grid-pro@6.10.1`.
|
|
438
1118
|
|
|
439
1119
|
### Date Pickers
|
|
440
1120
|
|
|
441
|
-
#### `@mui/x-date-pickers@
|
|
1121
|
+
#### `@mui/x-date-pickers@6.10.1`
|
|
442
1122
|
|
|
443
1123
|
- [fields] Fix `format` and `value` update order (#9715) @LukasTy
|
|
444
1124
|
- [pickers] Remove `require` usage in comment (#9675) @LukasTy
|
|
445
1125
|
|
|
446
|
-
#### `@mui/x-date-pickers-pro@
|
|
1126
|
+
#### `@mui/x-date-pickers-pro@6.10.1` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
447
1127
|
|
|
448
|
-
Same changes as in `@mui/x-date-pickers@
|
|
1128
|
+
Same changes as in `@mui/x-date-pickers@6.10.1`.
|
|
449
1129
|
|
|
450
|
-
### Charts / `@mui/x-charts@
|
|
1130
|
+
### Charts / `@mui/x-charts@6.0.0-alpha.4`
|
|
451
1131
|
|
|
452
1132
|
- [charts] Fix blinking in responsive charts and extremums computation for line charts (#9734) @alexfauquette
|
|
453
1133
|
- [charts] Use ESM with imports (#9645) @alexfauquette
|
|
@@ -1759,7 +2439,7 @@ We'd like to offer a big thanks to the 8 contributors who made this release poss
|
|
|
1759
2439
|
#### Changes
|
|
1760
2440
|
|
|
1761
2441
|
- [DataGrid] Add interface for `singleSelect` column (#7685) @m4theushw
|
|
1762
|
-
- [DataGrid] Allow to pass props to the `
|
|
2442
|
+
- [DataGrid] Allow to pass props to the `FocusTrap` inside the panel wrapper (#7733) @ivek-Prajapatii
|
|
1763
2443
|
- [DataGrid] Avoid unnecessary rerenders after `updateRows` (#7857) @cherniavskii
|
|
1764
2444
|
- [DataGridPro] Change cursor when dragging a column (#7725) @sai6855
|
|
1765
2445
|
- [DataGridPremium] Fix `leafField` to have correct focus value (#7950) @MBilalShafi
|