@mui/x-charts 6.0.0-alpha.9 → 6.18.1
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 +26 -5
- package/BarChart/BarChart.js +93 -17
- 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 +797 -59
- package/ChartContainer/index.js +7 -5
- package/ChartsAxis/ChartsAxis.d.ts +9 -0
- package/ChartsAxis/ChartsAxis.js +33 -7
- package/ChartsAxis/axisClasses.d.ts +3 -3
- 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 +45 -24
- package/ChartsLegend/ChartsLegend.js +193 -151
- package/ChartsLegend/chartsLegendClasses.d.ts +1 -1
- package/ChartsLegend/chartsLegendClasses.js +3 -4
- package/ChartsLegend/utils.d.ts +1 -6
- package/ChartsReferenceLine/ChartsReferenceLine.d.ts +10 -0
- package/ChartsReferenceLine/ChartsReferenceLine.js +78 -0
- package/ChartsReferenceLine/ChartsXReferenceLine.d.ts +13 -0
- package/ChartsReferenceLine/ChartsXReferenceLine.js +112 -0
- package/ChartsReferenceLine/ChartsYReferenceLine.d.ts +13 -0
- package/ChartsReferenceLine/ChartsYReferenceLine.js +112 -0
- package/ChartsReferenceLine/chartsReferenceLineClasses.d.ts +15 -0
- package/ChartsReferenceLine/chartsReferenceLineClasses.js +14 -0
- package/ChartsReferenceLine/common.d.ts +41 -0
- package/ChartsReferenceLine/common.js +27 -0
- package/ChartsReferenceLine/index.d.ts +2 -0
- package/ChartsReferenceLine/index.js +27 -0
- package/ChartsReferenceLine/package.json +6 -0
- package/ChartsSurface.d.ts +12 -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 +170 -45
- package/ChartsYAxis/ChartsYAxis.d.ts +9 -0
- package/ChartsYAxis/ChartsYAxis.js +95 -38
- 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 +23 -3
- package/LineChart/LineChart.js +89 -17
- 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 +15 -4
- 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 +42 -10
- 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 +95 -18
- 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.d.ts +13 -3
- 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 +77 -16
- 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 +50 -7
- package/colorPalettes/colorPalettes.js +6 -12
- package/constants.js +5 -8
- package/context/CartesianContextProvider.d.ts +26 -1
- package/context/CartesianContextProvider.js +42 -16
- package/context/DrawingProvider.d.ts +25 -0
- package/context/DrawingProvider.js +18 -6
- package/context/HighlightProvider.d.ts +17 -0
- package/context/HighlightProvider.js +3 -4
- package/context/InteractionProvider.d.ts +6 -0
- package/context/InteractionProvider.js +3 -4
- package/context/SeriesContextProvider.d.ts +5 -0
- package/context/SeriesContextProvider.js +3 -4
- package/esm/BarChart/BarChart.js +90 -13
- 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 +32 -5
- package/esm/ChartsAxisHighlight/ChartsAxisHighlight.js +57 -20
- package/esm/ChartsClipPath/ChartsClipPath.js +5 -0
- package/esm/ChartsLegend/ChartsLegend.js +190 -144
- package/esm/ChartsLegend/chartsLegendClasses.js +1 -1
- package/esm/ChartsReferenceLine/ChartsReferenceLine.js +70 -0
- package/esm/ChartsReferenceLine/ChartsXReferenceLine.js +105 -0
- package/esm/ChartsReferenceLine/ChartsYReferenceLine.js +105 -0
- package/esm/ChartsReferenceLine/chartsReferenceLineClasses.js +6 -0
- package/esm/ChartsReferenceLine/common.js +20 -0
- package/esm/ChartsReferenceLine/index.js +2 -0
- 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 +168 -43
- package/esm/ChartsYAxis/ChartsYAxis.js +93 -36
- package/esm/LineChart/AreaElement.js +10 -0
- package/esm/LineChart/AreaPlot.js +26 -6
- package/esm/LineChart/LineChart.js +86 -13
- package/esm/LineChart/LineElement.js +10 -0
- package/esm/LineChart/LineHighlightElement.js +10 -0
- package/esm/LineChart/LineHighlightPlot.js +13 -2
- package/esm/LineChart/LinePlot.js +25 -14
- package/esm/LineChart/MarkElement.js +11 -1
- package/esm/LineChart/MarkPlot.js +40 -8
- 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 +93 -16
- 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 +74 -12
- package/esm/ScatterChart/ScatterPlot.js +10 -0
- package/esm/SparkLineChart/SparkLineChart.js +47 -3
- package/esm/constants.js +1 -1
- package/esm/context/CartesianContextProvider.js +41 -14
- package/esm/context/DrawingProvider.js +14 -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/index.js +1 -0
- 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.d.ts +1 -0
- package/index.js +12 -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/isBandScale.d.ts +3 -1
- package/internals/stackSeries.js +2 -4
- package/internals/utils.d.ts +5 -0
- package/legacy/BarChart/BarChart.js +90 -13
- 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 +32 -5
- package/legacy/ChartsAxisHighlight/ChartsAxisHighlight.js +60 -20
- package/legacy/ChartsClipPath/ChartsClipPath.js +5 -0
- package/legacy/ChartsLegend/ChartsLegend.js +205 -142
- package/legacy/ChartsLegend/chartsLegendClasses.js +1 -1
- package/legacy/ChartsReferenceLine/ChartsReferenceLine.js +70 -0
- package/legacy/ChartsReferenceLine/ChartsXReferenceLine.js +105 -0
- package/legacy/ChartsReferenceLine/ChartsYReferenceLine.js +105 -0
- package/legacy/ChartsReferenceLine/chartsReferenceLineClasses.js +6 -0
- package/legacy/ChartsReferenceLine/common.js +20 -0
- package/legacy/ChartsReferenceLine/index.js +2 -0
- 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 +176 -50
- package/legacy/ChartsYAxis/ChartsYAxis.js +97 -41
- package/legacy/LineChart/AreaElement.js +10 -0
- package/legacy/LineChart/AreaPlot.js +31 -7
- package/legacy/LineChart/LineChart.js +86 -13
- package/legacy/LineChart/LineElement.js +10 -0
- package/legacy/LineChart/LineHighlightElement.js +10 -0
- package/legacy/LineChart/LineHighlightPlot.js +13 -2
- package/legacy/LineChart/LinePlot.js +29 -12
- package/legacy/LineChart/MarkElement.js +11 -1
- package/legacy/LineChart/MarkPlot.js +39 -8
- 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 +93 -16
- 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 +74 -12
- package/legacy/ScatterChart/ScatterPlot.js +10 -0
- package/legacy/SparkLineChart/SparkLineChart.js +47 -3
- package/legacy/constants.js +1 -1
- package/legacy/context/CartesianContextProvider.js +41 -14
- package/legacy/context/DrawingProvider.js +14 -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 +2 -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 +58 -20
- package/models/layout.d.ts +13 -6
- package/models/seriesType/common.d.ts +16 -0
- package/models/seriesType/line.d.ts +8 -3
- package/models/seriesType/pie.d.ts +5 -1
- package/modern/BarChart/BarChart.js +90 -13
- 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 +31 -5
- package/modern/ChartsAxisHighlight/ChartsAxisHighlight.js +57 -20
- package/modern/ChartsClipPath/ChartsClipPath.js +5 -0
- package/modern/ChartsLegend/ChartsLegend.js +190 -144
- package/modern/ChartsLegend/chartsLegendClasses.js +1 -1
- package/modern/ChartsReferenceLine/ChartsReferenceLine.js +70 -0
- package/modern/ChartsReferenceLine/ChartsXReferenceLine.js +104 -0
- package/modern/ChartsReferenceLine/ChartsYReferenceLine.js +104 -0
- package/modern/ChartsReferenceLine/chartsReferenceLineClasses.js +6 -0
- package/modern/ChartsReferenceLine/common.js +20 -0
- package/modern/ChartsReferenceLine/index.js +2 -0
- 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 +167 -42
- package/modern/ChartsYAxis/ChartsYAxis.js +92 -35
- package/modern/LineChart/AreaElement.js +10 -0
- package/modern/LineChart/AreaPlot.js +25 -6
- package/modern/LineChart/LineChart.js +86 -13
- package/modern/LineChart/LineElement.js +10 -0
- package/modern/LineChart/LineHighlightElement.js +10 -0
- package/modern/LineChart/LineHighlightPlot.js +13 -2
- package/modern/LineChart/LinePlot.js +23 -10
- package/modern/LineChart/MarkElement.js +11 -1
- package/modern/LineChart/MarkPlot.js +40 -8
- 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 +93 -16
- 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 +74 -12
- package/modern/ScatterChart/ScatterPlot.js +10 -0
- package/modern/SparkLineChart/SparkLineChart.js +47 -3
- package/modern/constants.js +1 -1
- package/modern/context/CartesianContextProvider.js +40 -13
- package/modern/context/DrawingProvider.js +14 -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 +2 -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,744 @@
|
|
|
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.1
|
|
7
|
+
|
|
8
|
+
_Nov 9, 2023_
|
|
9
|
+
|
|
10
|
+
We'd like to offer a big thanks to the 9 contributors who made this release possible. Here are some highlights ✨:
|
|
11
|
+
|
|
12
|
+
- ✨ Fix aggregation label not showing when `renderHeader` is used (#10961) @cherniavskii
|
|
13
|
+
- 📘 Server side data source [early documentation](https://mui.com/x/react-data-grid/server-side-data/) published
|
|
14
|
+
- 📈 `<ChartsReferenceLine />` component is now available
|
|
15
|
+
- 🐞 Bugfixes
|
|
16
|
+
- 📚 Documentation improvements
|
|
17
|
+
|
|
18
|
+
### Data Grid
|
|
19
|
+
|
|
20
|
+
#### `@mui/x-data-grid@6.18.1`
|
|
21
|
+
|
|
22
|
+
- [DataGrid] Fix cell value type in quick filtering v7 (#10884) @cherniavskii
|
|
23
|
+
- [DataGrid] Fix keyboard navigation for actions cell with disabled buttons (#10947) @michelengelen
|
|
24
|
+
- [DataGrid] Fix `undefined` slot values (#10934) @romgrk
|
|
25
|
+
|
|
26
|
+
#### `@mui/x-data-grid-pro@6.18.1` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
27
|
+
|
|
28
|
+
Same changes as in `@mui/x-data-grid@6.18.1`, plus:
|
|
29
|
+
|
|
30
|
+
- [DataGridPro] Add data source interface and basic documentation (#10543) @MBilalShafi
|
|
31
|
+
|
|
32
|
+
#### `@mui/x-data-grid-premium@6.18.1` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
33
|
+
|
|
34
|
+
Same changes as in `@mui/x-data-grid-pro@6.18.1`, plus:
|
|
35
|
+
|
|
36
|
+
- [DataGridPremium] Render aggregation label when `renderHeader` is used (#10961) @cherniavskii
|
|
37
|
+
|
|
38
|
+
### Date Pickers
|
|
39
|
+
|
|
40
|
+
#### `@mui/x-date-pickers@6.18.1`
|
|
41
|
+
|
|
42
|
+
- [fields] Fix multi input date time field section selection (#10915) @noraleonte
|
|
43
|
+
- [pickers] Always use up-to-date `defaultView` (#10889) @LukasTy
|
|
44
|
+
|
|
45
|
+
#### `@mui/x-date-pickers-pro@6.18.1` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
46
|
+
|
|
47
|
+
Same changes as in `@mui/x-date-pickers@6.18.1`.
|
|
48
|
+
|
|
49
|
+
### Charts / `@mui/x-charts@6.18.1`
|
|
50
|
+
|
|
51
|
+
- [charts] Add `<ChartsReferenceLine />` component (#10597) @wascou
|
|
52
|
+
- [charts] Improve properties JSDoc (#10931) @alexfauquette
|
|
53
|
+
|
|
54
|
+
### Docs
|
|
55
|
+
|
|
56
|
+
- [docs] Fix charts docs as stable (#10888) @alexfauquette
|
|
57
|
+
- [docs] Document how to hide the legend (#10954) @alexfauquette
|
|
58
|
+
|
|
59
|
+
### Core
|
|
60
|
+
|
|
61
|
+
- [core] Adds new alpha version to version select on the docs (#10944) @michelengelen
|
|
62
|
+
- [core] Fix GitHub title tag consistency @oliviertassinari
|
|
63
|
+
|
|
64
|
+
## 6.18.0
|
|
65
|
+
|
|
66
|
+
_Nov 3, 2023_
|
|
67
|
+
|
|
68
|
+
We'd like to offer a big thanks to the 7 contributors who made this release possible. Here are some highlights ✨:
|
|
69
|
+
|
|
70
|
+
- 🎁 The Charts package is now officially stable!
|
|
71
|
+
- 🥧 Pie charts are now animated.
|
|
72
|
+
- 📈 Line charts now support partial data, and can interpolate missing data.
|
|
73
|
+
|
|
74
|
+
<img width="380" alt="line charts with partial data" src="https://github.com/mui/mui-x/assets/45398769/385ecf77-19b2-4a03-8aef-5d547db1d9ad">
|
|
75
|
+
|
|
76
|
+
- ✨ Allow to ignore [diacritics](https://en.wikipedia.org/wiki/Diacritic) when filtering
|
|
77
|
+
- 📚 Documentation improvements
|
|
78
|
+
|
|
79
|
+
### Data Grid
|
|
80
|
+
|
|
81
|
+
#### `@mui/x-data-grid@6.18.0`
|
|
82
|
+
|
|
83
|
+
- [DataGrid] Allow to ignore [diacritics](https://en.wikipedia.org/wiki/Diacritic) when filtering (#10569) @cherniavskii
|
|
84
|
+
- [DataGrid] Fix a typo in `gridFilterApi` (#10786) @vu-dao-93
|
|
85
|
+
- [DataGrid] Fix `undefined` row id (#10670) @romgrk
|
|
86
|
+
- [DataGrid] Make column autosizing work with dynamic row height (#10693) @cherniavskii
|
|
87
|
+
- [l10n] Allow to customize sorting label per column (#10839) @JerryWu1234
|
|
88
|
+
|
|
89
|
+
#### `@mui/x-data-grid-pro@6.18.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
90
|
+
|
|
91
|
+
Same changes as in `@mui/x-data-grid@6.18.0`.
|
|
92
|
+
|
|
93
|
+
#### `@mui/x-data-grid-premium@6.18.0` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
94
|
+
|
|
95
|
+
Same changes as in `@mui/x-data-grid-pro@6.18.0`.
|
|
96
|
+
|
|
97
|
+
### Date Pickers
|
|
98
|
+
|
|
99
|
+
#### `@mui/x-date-pickers@6.18.0`
|
|
100
|
+
|
|
101
|
+
- [pickers] Add reference links to calendar components (#10644) @michelengelen
|
|
102
|
+
|
|
103
|
+
#### `@mui/x-date-pickers-pro@6.18.0` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
104
|
+
|
|
105
|
+
Same changes as in `@mui/x-date-pickers@6.18.0`.
|
|
106
|
+
|
|
107
|
+
### Charts / `@mui/x-charts@6.18.0`
|
|
108
|
+
|
|
109
|
+
- [charts] Add animation on pie chart (#10782) @alexfauquette
|
|
110
|
+
- [charts] Add reference links to shared/misc chart components (#10660) @michelengelen
|
|
111
|
+
- [charts] Allows to connect nulls (#10803) @alexfauquette
|
|
112
|
+
- [charts] Fix axis highlight in dark mode (#10820) @LukasTy
|
|
113
|
+
|
|
114
|
+
### Docs
|
|
115
|
+
|
|
116
|
+
- [docs] Add a data grid recipe for autosizing columns after fetching row-data (#10822) @michelengelen
|
|
117
|
+
- [docs] Add a data grid recipe showing how to remove cell outline on `focus` (#10843) @michelengelen
|
|
118
|
+
- [docs] Add demo about how to use charts margin (#10886) @alexfauquette
|
|
119
|
+
- [docs] Improve custom field input demos readability (#10559) @LukasTy
|
|
120
|
+
|
|
121
|
+
### Core
|
|
122
|
+
|
|
123
|
+
- [core] Generate `slot` API descriptions based on `slots` or `components` (#10879) @LukasTy
|
|
124
|
+
|
|
125
|
+
## 6.17.0
|
|
126
|
+
|
|
127
|
+
_Oct 27, 2023_
|
|
128
|
+
|
|
129
|
+
We'd like to offer a big thanks to the 9 contributors who made this release possible. Here are some highlights ✨:
|
|
130
|
+
|
|
131
|
+
- 🎁 The Tree View package is now officially stable!
|
|
132
|
+
|
|
133
|
+

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