diff --git a/CHANGELOG.md b/CHANGELOG.md index 1fcd37cfc7b6..de859e4baad7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,92 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 7.2.0 + +_Apr 12, 2024_ + +We'd like to offer a big thanks to the 12 contributors who made this release possible. Here are some highlights ✨: + +- 🎨 Make grid colors customizable through the MUI themes API +- 🌍 Improve French (fr-FR), German (de-DE), and Swedish (sv-SE) locales on the Data Grid and Pickers +- 🐞 Bugfixes +- 📚 Documentation improvements + +### Data Grid + +#### `@mui/x-data-grid@7.2.0` + +- [DataGrid] Add missing `api` property to `GridCallbackDetails` (#12742) @sai6855 +- [DataGrid] Do not escape double quotes when copying to clipboard (#12722) @cherniavskii +- [DataGrid] Fix column vertical border (#12741) @romgrk +- [DataGrid] Fix invalid date error when filtering `date`/`dateTime` columns (#12709) @cherniavskii +- [DataGrid] Fix overflow with dynamic row height (#12683) @romgrk +- [DataGrid] Make colors customizable (#12614) @romgrk +- [l10n] Improve French (fr-FR) locale (#12755) @derek-0000 +- [l10n] Improve German (de-DE) locale (#12752) @Jens-Schoen +- [l10n] Improve Swedish (sv-SE) locale (#12731) @pontusdacke + +#### `@mui/x-data-grid-pro@7.2.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan') + +Same changes as in `@mui/x-data-grid@7.2.0`. + +#### `@mui/x-data-grid-premium@7.2.0` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan') + +Same changes as in `@mui/x-data-grid-pro@7.2.0`, plus: + +- [DataGridPremium] Fix clipboard paste not working when cell loses focus (#12724) @cherniavskii + +### Date and Time Pickers + +#### `@mui/x-date-pickers@7.2.0` + +- [fields] Fix field editing after closing the picker (#12675) @LukasTy +- [l10n] Improve French (fr-FR) locale (#12692) @FaroukBel +- [l10n] Improve German (de-DE) locale (#12752) @Jens-Schoen +- [l10n] Improve Swedish (sv-SE) locale (#12731) @pontusdacke +- [pickers] Fix desktop date time Pickers grid layout (#12748) @LukasTy + +#### `@mui/x-date-pickers-pro@7.2.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan') + +Same changes as in `@mui/x-date-pickers@7.2.0`, plus: + +- [DateTimeRangePicker] Fix desktop toolbar style (#12760) @LukasTy + +### Charts + +#### `@mui/x-charts@7.2.0` + +- [charts] Fix Bar chart with empty dataset throwing an error (#12708) @JCQuintas +- [charts] Fix `tickLabelInterval` not working on `YAxis` (#12746) @JCQuintas + +### Tree View + +#### `@mui/x-tree-view@7.2.0` + +- [TreeView] Add a new lookup to access an item index without expansive computation (#12729) @flaviendelangle +- [TreeView] Clean up usage of term "node" in internals (#12655) @noraleonte +- [TreeView] Improve performance by removing `getNavigableChildrenIds` method (#12713) @flaviendelangle +- [TreeView] Remove `state.items.itemTree` (#12717) @flaviendelangle +- [TreeView] Remove remaining occurences of the word "node" in the codebase (#12712) @flaviendelangle +- [TreeView] Return `instance` and `publicAPI` methods from plugin and populate the main objects inside `useTreeView` (#12650) @flaviendelangle +- [TreeView] Fix behaviors when the item order changes (#12369) @flaviendelangle + +### Docs + +- [docs] Add `AxisFormatter` documentation for customizing tick/tooltip value formatting (#12700) @JCQuintas +- [docs] Add file explorer example to rich tree view customization docs (#12707) @noraleonte +- [docs] Do not use import of depth 3 in the doc (#12716) @flaviendelangle +- [docs] Explain how to clip plots with composition (#12679) @alexfauquette +- [docs] Fix typo in Data Grid v7 migration page (#12720) @bfaulk96 +- [docs] Fix typo in Pickers v7 migration page (#12721) @bfaulk96 + +### Core + +- [core] Support multiple resolved `l10n` PR packages (#12735) @LukasTy +- [core] Update Netlify release references in release README (#12687) @LukasTy +- [core] Use `describeTreeView` for icons tests (#12672) @flaviendelangle +- [core] Use `describeTreeView` in existing tests for `useTreeViewItems` (#12732) @flaviendelangle + ## 7.1.1 _Apr 5, 2024_ diff --git a/package.json b/package.json index a316b44687fd..ec11d449caa8 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "version": "7.1.1", + "version": "7.2.0", "private": true, "scripts": { "start": "yarn && yarn docs:dev", diff --git a/packages/x-charts/package.json b/packages/x-charts/package.json index 17ed659a7446..3068015415e2 100644 --- a/packages/x-charts/package.json +++ b/packages/x-charts/package.json @@ -1,6 +1,6 @@ { "name": "@mui/x-charts", - "version": "7.1.1", + "version": "7.2.0", "description": "The community edition of the Charts components (MUI X).", "author": "MUI Team", "main": "./src/index.js", diff --git a/packages/x-data-grid-generator/package.json b/packages/x-data-grid-generator/package.json index 3c8e2381d077..085a21ed33c3 100644 --- a/packages/x-data-grid-generator/package.json +++ b/packages/x-data-grid-generator/package.json @@ -1,6 +1,6 @@ { "name": "@mui/x-data-grid-generator", - "version": "7.1.1", + "version": "7.2.0", "description": "Generate fake data for demo purposes only.", "author": "MUI Team", "main": "src/index.ts", @@ -34,7 +34,7 @@ "dependencies": { "@babel/runtime": "^7.24.0", "@mui/base": "^5.0.0-beta.40", - "@mui/x-data-grid-premium": "7.1.1", + "@mui/x-data-grid-premium": "7.2.0", "chance": "^1.1.11", "clsx": "^2.1.0", "lru-cache": "^7.18.3" diff --git a/packages/x-data-grid-premium/package.json b/packages/x-data-grid-premium/package.json index c2eebed31acd..81ca5e76cd2d 100644 --- a/packages/x-data-grid-premium/package.json +++ b/packages/x-data-grid-premium/package.json @@ -1,6 +1,6 @@ { "name": "@mui/x-data-grid-premium", - "version": "7.1.1", + "version": "7.2.0", "description": "The Premium plan edition of the Data Grid Components (MUI X).", "author": "MUI Team", "main": "src/index.ts", @@ -45,9 +45,9 @@ "@babel/runtime": "^7.24.0", "@mui/system": "^5.15.14", "@mui/utils": "^5.15.14", - "@mui/x-data-grid": "7.1.1", - "@mui/x-data-grid-pro": "7.1.1", - "@mui/x-license": "7.1.1", + "@mui/x-data-grid": "7.2.0", + "@mui/x-data-grid-pro": "7.2.0", + "@mui/x-license": "7.2.0", "@types/format-util": "^1.0.4", "clsx": "^2.1.0", "exceljs": "^4.4.0", diff --git a/packages/x-data-grid-pro/package.json b/packages/x-data-grid-pro/package.json index a5692779a6b5..5abf622bcac1 100644 --- a/packages/x-data-grid-pro/package.json +++ b/packages/x-data-grid-pro/package.json @@ -1,6 +1,6 @@ { "name": "@mui/x-data-grid-pro", - "version": "7.1.1", + "version": "7.2.0", "description": "The Pro plan edition of the Data Grid components (MUI X).", "author": "MUI Team", "main": "src/index.ts", @@ -45,8 +45,8 @@ "@babel/runtime": "^7.24.0", "@mui/system": "^5.15.14", "@mui/utils": "^5.15.14", - "@mui/x-data-grid": "7.1.1", - "@mui/x-license": "7.1.1", + "@mui/x-data-grid": "7.2.0", + "@mui/x-license": "7.2.0", "@types/format-util": "^1.0.4", "clsx": "^2.1.0", "prop-types": "^15.8.1", diff --git a/packages/x-data-grid/package.json b/packages/x-data-grid/package.json index acd366c96f3b..d8f9cb3c6d59 100644 --- a/packages/x-data-grid/package.json +++ b/packages/x-data-grid/package.json @@ -1,6 +1,6 @@ { "name": "@mui/x-data-grid", - "version": "7.1.1", + "version": "7.2.0", "description": "The Community plan edition of the Data Grid components (MUI X).", "author": "MUI Team", "main": "src/index.ts", diff --git a/packages/x-date-pickers-pro/package.json b/packages/x-date-pickers-pro/package.json index 848f8ed64ac8..c72f516b3bf4 100644 --- a/packages/x-date-pickers-pro/package.json +++ b/packages/x-date-pickers-pro/package.json @@ -1,6 +1,6 @@ { "name": "@mui/x-date-pickers-pro", - "version": "7.1.1", + "version": "7.2.0", "description": "The Pro plan edition of the Date and Time Picker components (MUI X).", "author": "MUI Team", "main": "src/index.ts", @@ -45,8 +45,8 @@ "@mui/base": "^5.0.0-beta.40", "@mui/system": "^5.15.14", "@mui/utils": "^5.15.14", - "@mui/x-date-pickers": "7.1.1", - "@mui/x-license": "7.1.1", + "@mui/x-date-pickers": "7.2.0", + "@mui/x-license": "7.2.0", "clsx": "^2.1.0", "prop-types": "^15.8.1", "react-transition-group": "^4.4.5" diff --git a/packages/x-date-pickers/package.json b/packages/x-date-pickers/package.json index 95560a7999f9..a2f8f85412e0 100644 --- a/packages/x-date-pickers/package.json +++ b/packages/x-date-pickers/package.json @@ -1,6 +1,6 @@ { "name": "@mui/x-date-pickers", - "version": "7.1.1", + "version": "7.2.0", "description": "The community edition of the Date and Time Picker components (MUI X).", "author": "MUI Team", "main": "src/index.ts", diff --git a/packages/x-license/package.json b/packages/x-license/package.json index 5f42788179d0..c25f323f11ac 100644 --- a/packages/x-license/package.json +++ b/packages/x-license/package.json @@ -1,6 +1,6 @@ { "name": "@mui/x-license", - "version": "7.1.1", + "version": "7.2.0", "description": "MUI X License verification", "author": "MUI Team", "main": "src/index.ts", diff --git a/packages/x-tree-view-pro/package.json b/packages/x-tree-view-pro/package.json index 7c206cb61686..df1cc086a5fe 100644 --- a/packages/x-tree-view-pro/package.json +++ b/packages/x-tree-view-pro/package.json @@ -1,6 +1,6 @@ { "name": "@mui/x-tree-view-pro", - "version": "7.1.1", + "version": "7.2.0", "private": true, "description": "The Pro plan edition of the Tree View components (MUI X).", "author": "MUI Team", @@ -47,8 +47,8 @@ "@mui/base": "^5.0.0-beta.40", "@mui/system": "^5.15.14", "@mui/utils": "^5.15.14", - "@mui/x-license": "7.1.1", - "@mui/x-tree-view": "7.1.1", + "@mui/x-license": "7.2.0", + "@mui/x-tree-view": "7.2.0", "@types/react-transition-group": "^4.4.10", "clsx": "^2.1.0", "prop-types": "^15.8.1", diff --git a/packages/x-tree-view/package.json b/packages/x-tree-view/package.json index b3b3f32cccbb..ffc06808a4cd 100644 --- a/packages/x-tree-view/package.json +++ b/packages/x-tree-view/package.json @@ -1,6 +1,6 @@ { "name": "@mui/x-tree-view", - "version": "7.1.1", + "version": "7.2.0", "description": "The community edition of the Tree View components (MUI X).", "author": "MUI Team", "main": "src/index.ts",