From 1a0ccab775fc75ec3fa32f1d2e216e9726f2387d Mon Sep 17 00:00:00 2001 From: Michel Engelen <32863416+michelengelen@users.noreply.github.com> Date: Thu, 6 Jun 2024 15:38:43 +0200 Subject: [PATCH] v7.6.2 (#13395) Signed-off-by: Michel Engelen <32863416+michelengelen@users.noreply.github.com> Co-authored-by: Flavien DELANGLE Co-authored-by: Andrew Cherniavskii --- CHANGELOG.md | 66 +++++++++++++++++++++ package.json | 2 +- packages/x-charts-pro/package.json | 2 +- packages/x-charts/package.json | 2 +- packages/x-data-grid-generator/package.json | 2 +- packages/x-data-grid-premium/package.json | 2 +- packages/x-data-grid-pro/package.json | 2 +- packages/x-data-grid/package.json | 2 +- packages/x-date-pickers-pro/package.json | 2 +- packages/x-date-pickers/package.json | 2 +- packages/x-tree-view/package.json | 2 +- 11 files changed, 76 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 79a516cd04f8..e2b8914d6b6b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,72 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 7.6.2 + +_Jun 6, 2024_ + +We'd like to offer a big thanks to the 9 contributors who made this release possible. Here are some highlights ✨: + +- 📚 Adds Date and Time Pickers accessibility page +- 🐞 Bugfixes +- 📚 Documentation improvements + + + +### Data Grid + +#### `@mui/x-data-grid@7.6.2` + +- [DataGrid] Add the `areElementSizesEqual` utility to improve code readability (#13254) @layerok +- [DataGrid] Clean up IE remnants from the codebase (#13390) @MBilalShafi + +#### `@mui/x-data-grid-pro@7.6.2` [![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.6.2`. + +#### `@mui/x-data-grid-premium@7.6.2` [![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.6.2`. + +### Date and Time Pickers + +#### `@mui/x-date-pickers@7.6.2` + +- [fields] Fix `PageUp` and `PageDown` editing on letter sections (#13310) @arthurbalduini +- [pickers] Fix `AdapterDayjs` timezone behavior (#13362) @LukasTy +- [pickers] Use `useRtl` instead of `useTheme` to access direction (#13363) @flaviendelangle + +#### `@mui/x-date-pickers-pro@7.6.2` [![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.6.2`. + +### Charts + +#### `@mui/x-charts@7.6.2` + +- [charts] Add `Initializable` type and behaviour to allow checking if a complex context has been initialized. (#13365) @JCQuintas +- [charts] Fix some props not working in `xAxis` and `yAxis` (#13372) @Valyok26 +- [charts] Harmonize charts types (#13366) @alexfauquette +- [charts] Introduce plugins system (#13367) @alexfauquette +- [charts] Simplify plugin types (#13396) @JCQuintas + +### Docs + +- [docs] Add badges like in Material UI @oliviertassinari +- [docs] Update twitter.com to x.com @oliviertassinari +- [docs] Fix the description of `tickInterval` (#13355) @alexfauquette +- [docs] Adjust the code example for `quickFilterValues` (#12919) @michelengelen +- [docs] Create Pickers accessibility page (#13274) @arthurbalduini + +### Core + +- [core] Comment on `CSS.escape` for the future @oliviertassinari +- [core] Fix `l10n` action setup (#13382) @LukasTy +- [core] Fixes in preparation for React 18.3 (#13378) @LukasTy +- [core] Remove explicit `marked` dependency (#13383) @LukasTy +- [core] Remove unused `@types/prettier` dependency (#13389) @LukasTy +- [core] Add `docs/.env.local` to `.gitignore` (#13377) @KenanYusuf + ## 7.6.1 _May 31, 2024_ diff --git a/package.json b/package.json index 7cd2046fa890..dcd1c3791f57 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "version": "7.6.1", + "version": "7.6.2", "private": true, "scripts": { "preinstall": "npx only-allow pnpm", diff --git a/packages/x-charts-pro/package.json b/packages/x-charts-pro/package.json index 796e1bc11ccd..19e0713e805f 100644 --- a/packages/x-charts-pro/package.json +++ b/packages/x-charts-pro/package.json @@ -1,6 +1,6 @@ { "name": "@mui/x-charts-pro", - "version": "7.6.1", + "version": "7.6.2", "description": "The community edition of the Charts components (MUI X).", "author": "MUI Team", "main": "./src/index.ts", diff --git a/packages/x-charts/package.json b/packages/x-charts/package.json index c062f2b2b467..3a4faa093831 100644 --- a/packages/x-charts/package.json +++ b/packages/x-charts/package.json @@ -1,6 +1,6 @@ { "name": "@mui/x-charts", - "version": "7.6.1", + "version": "7.6.2", "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 e750b2efed62..3dfd5ebd6dbf 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.6.1", + "version": "7.6.2", "description": "Generate fake data for demo purposes only.", "author": "MUI Team", "main": "src/index.ts", diff --git a/packages/x-data-grid-premium/package.json b/packages/x-data-grid-premium/package.json index ef19d0acfcc0..762af6cb53a1 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.6.1", + "version": "7.6.2", "description": "The Premium plan edition of the Data Grid Components (MUI X).", "author": "MUI Team", "main": "src/index.ts", diff --git a/packages/x-data-grid-pro/package.json b/packages/x-data-grid-pro/package.json index b9486d482e53..3234611336a4 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.6.1", + "version": "7.6.2", "description": "The Pro plan edition of the Data Grid components (MUI X).", "author": "MUI Team", "main": "src/index.ts", diff --git a/packages/x-data-grid/package.json b/packages/x-data-grid/package.json index be7a5b90d30d..1a1653e81320 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.6.1", + "version": "7.6.2", "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 f2057daef381..499adc00933b 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.6.1", + "version": "7.6.2", "description": "The Pro plan edition of the Date and Time Picker components (MUI X).", "author": "MUI Team", "main": "src/index.ts", diff --git a/packages/x-date-pickers/package.json b/packages/x-date-pickers/package.json index 9fb1f15ecdfb..0655afb13990 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.6.1", + "version": "7.6.2", "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-tree-view/package.json b/packages/x-tree-view/package.json index 3447767030ee..500595266785 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.6.1", + "version": "7.6.2", "description": "The community edition of the Tree View components (MUI X).", "author": "MUI Team", "main": "src/index.ts",