From 98fbe30b43c782981167cef9fe08fa372f5aabfc Mon Sep 17 00:00:00 2001 From: flavien Date: Fri, 14 Feb 2025 14:23:25 +0100 Subject: [PATCH 01/22] v8.0.0-alpha.12 --- CHANGELOG.md | 167 +++++++++++++++++++- package.json | 2 +- packages/x-charts-pro/package.json | 2 +- packages/x-charts/package.json | 2 +- packages/x-codemod/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-internals/package.json | 2 +- packages/x-license/package.json | 2 +- packages/x-tree-view-pro/package.json | 2 +- packages/x-tree-view/package.json | 2 +- 15 files changed, 180 insertions(+), 15 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 90aa8e9111e79..4cb0f09bb4a6b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,172 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## **8.0.0-alpha.11** +## 8.0.0-alpha.12 + +_Feb 14, 2025_ + +We'd like to offer a big thanks to the 16 contributors who made this release possible. Here are some highlights ✨: + +- 🐞 Bugfixes + +Special thanks go out to the community contributors who have helped make this release possible: +@mapache-salvaje, @Neonin, @nusr, @pawelkula, . +Following are all team members who have contributed to this release: +@alexfauquette, @arminmeh, @bernardobelchior, @cherniavskii, @Janpot, @JCQuintas, @KenanYusuf, @LukasTy, @MBilalShafi, @michelengelen, @oliviertassinari and @romgrk. + +### Data Grid + +#### Breaking changes + +- The `main--hasSkeletonLoadingOverlay` class has been renamed to `main--hiddenContent` and is now also applied when the "No columns" overlay is displayed. + +- The `apiRef.current.forceUpdate()` method was removed. Use selectors combined with `useGridSelector()` hook to react to changes in the state. + +- Fixes #16220 + + - Before: https://codesandbox.io/p/sandbox/intelligent-leavitt-q4h68n?from-embed=&workspaceId=ws_96AUJAP4MpFUq5gdSxRein + - After: https://codesandbox.io/p/sandbox/stupefied-scott-qnqpx5 + +- Add a skeleton loading overlay on the aggregation row while it's loading + + https://github.com/user-attachments/assets/310f57fe-2809-45c7-9930-22f5df413e04 + +- The selectors signature has been updated. They are only accepting `apiRef` as a first argument. + + ```diff + -mySelector(state, arguments, instanceId) + +mySelector(apiRef, arguments) + ``` + +#### `@mui/x-data-grid@v8.0.0-alpha.12` + +- [DataGrid] Add "No columns" overlay (#16543) @KenanYusuf +- [DataGrid] Add `resetPageOnSortFilter` prop that resets the page after sorting/filtering (#16450) @arminmeh +- [DataGrid] All selectors accept only `apiRef` as first argument (#16198) @arminmeh +- [DataGrid] Avoid `undefined` value for pagination `rowCount` (#16488) @LukasTy +- [DataGrid] Extract `getRowId` API method as a selector (#16487) @MBilalShafi +- [DataGrid] Fix: base Select onClose (#16557) @romgrk +- [DataGrid] Make base data source available in the Community plan (#16359) @MBilalShafi +- [DataGrid] Refactor: create base Checkbox (#16445) @romgrk +- [DataGrid] Refactor: create base Input (#16443) @romgrk +- [DataGrid] Refactor: create base MenuList props (#16481) @romgrk +- [DataGrid] Refactor: create base Popper (#16362) @romgrk +- [DataGrid] Refactor: create base Select (#16394) @romgrk +- [DataGrid] Refactor: create base Switch (#16527) @romgrk +- [DataGrid] Remove `apiRef.current.forceUpdate()` method (#16560) @MBilalShafi +- [DataGrid] Fix the unexpected behavior of the pagination when using -1 for "All" rows per page (#16485) @nusr +- [l10n] Improve Polish (pl-PL) locale (#16123) @pawelkula +- [l10n] Improve Ukrainian (uk-UA) locale (#16463) @Neonin + +#### `@mui/x-data-grid-pro@v8.0.0-alpha.12` [![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@v8.0.0-alpha.12`. + +#### `@mui/x-data-grid-premium@v8.0.0-alpha.12` [![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@v8.0.0-alpha.12`, plus: + +- [DataGridPremium] Fix Excel export Web Worker demo not working in dev mode (#16517) @cherniavskii +- [DataGridPremium] Fix loading issue + add skeleton overlay (#16282) @MBilalShafi +- [DataGridPremium] Improve Excel export serialization performance (#16526) @cherniavskii +- [DataGridPremium] Namespace Excel export worker (#16020) @oliviertassinari + +### Date and Time Pickers + +#### Breaking changes + +- The `aria-label` on the `` component and Time Picker opening button has been fixed to rely on the set `ampm` property instead of defaulting to the user's locale. + +- The following unused formats have been removed from the adapters and can no longer be overridden via the `dateFormats` prop on the `` component: + + - `fullTime` - please use `fullTime12h` and `fullTime24h` instead: + ```diff + + ``` + - `keyboardDateTime` - please use `keyboardDateTime12h` and `keyboardDateTime24h` instead: + ```diff + + ``` + +#### `@mui/x-date-pickers@v8.0.0-alpha.12` + +- [pickers] Fix time related aria labels to depend on `ampm` flag value (#16572) @LukasTy +- [pickers] Remove unused adapter formats (#16522) @LukasTy + +#### `@mui/x-date-pickers-pro@v8.0.0-alpha.12` [![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@v8.0.0-alpha.12`, plus: + +- [DateRangePicker] Avoid unnecessary field section focusing (#16474) @LukasTy + +### Charts + +From https://github.com/mui/mui-x/pull/16459 + +Stabilize series hooks: `useSeries`, `usePieSeries`, `useLineSeries`, `useBarSeries`, `useScatterSeries` and `useHeatmapSeries`. + +- [x] I have followed (at least) the [PR section of the contributing guide](https://github.com/mui/mui-x/blob/HEAD/CONTRIBUTING.md#sending-a-pull-request). + +#### `@mui/x-charts@v8.0.0-alpha.12` + +- [charts] Add docs for scatter "Size" section (#16556) @bernardobelchior +- [charts] Add warning when using unknown ids in `useXxxSeries` hooks (#16552) @JCQuintas +- [charts] Divide the logic for `useXxxSeries` into `useXxxSeriesContext` (#16546) @JCQuintas +- [charts] Document plugins for internal use (#16504) @JCQuintas +- [charts] Fix internal typo (#16524) @alexfauquette +- [charts] Fix type overloads (#16581) @JCQuintas +- [charts] Fix zoom filter regression (#16507) @alexfauquette +- [charts] Improve tooltip placement in mobile (#16553) @bernardobelchior +- [charts] Let the `useXxxSeries` support array of ids and document them (#15545) @JCQuintas +- [charts] Memoize some tooltip internals (#16564) @alexfauquette +- [charts] Move Voronoi handler in a dedicated plugin (#16470) @alexfauquette +- [charts] Performance tests: set license on setup. Update vitest minor version. (#16525) @bernardobelchior +- [charts] Propagate the axis scale to the `valueFormatter` (#16555) @alexfauquette +- [charts] Remove `colors` prop from `SparkLineChart`. (#16494) @bernardobelchior +- [charts] Stabilize series hooks (`useSeries`, `usePieSeries`, etc.) (#16459) @bernardobelchior + +#### `@mui/x-charts-pro@v8.0.0-alpha.12` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan') + +Same changes as in `@mui/x-charts@v8.0.0-alpha.12`. + +### Tree View + +#### `@mui/x-tree-view@v8.0.0-alpha.12` + +Internal changes. + +#### `@mui/x-tree-view-pro@v8.0.0-alpha.12` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan') + +Same changes as in `@mui/x-tree-view@v8.0.0-alpha.12`. + +### Docs + +- [docs] Add demo for Scatter Chart with linked points (#16505) @bernardobelchior +- [docs] Improve license installation page (#16403) @michelengelen +- [docs] Standardize getting started docs across all packages (#16302) @mapache-salvaje + +### Core + +- [core] Update charts folder structure (#16471) @alexfauquette +- [code-infra] Bump @mui/monorepo (#16422) @renovate[bot] +- [code-infra] Fix lock file (#16562) @LukasTy +- [code-infra] Fix root package version (#16503) @JCQuintas +- [code-infra] Update internal packages to `next` releases (#16423) @renovate[bot] +- [code-infra] Update package layout for better ESM support (#14386) @Janpot + +## 8.0.0-alpha.11 _Feb 7, 2025_ diff --git a/package.json b/package.json index fdaf25e9cb2b1..6cac722f64b95 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "version": "8.0.0-alpha.11", + "version": "8.0.0-alpha.12", "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 e2e66418449c3..d508e56b798b2 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": "8.0.0-alpha.11", + "version": "8.0.0-alpha.12", "description": "The Pro plan 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 e64ce30e01298..abcde63e22e2a 100644 --- a/packages/x-charts/package.json +++ b/packages/x-charts/package.json @@ -1,6 +1,6 @@ { "name": "@mui/x-charts", - "version": "8.0.0-alpha.11", + "version": "8.0.0-alpha.12", "description": "The community edition of the Charts components (MUI X).", "author": "MUI Team", "main": "src/index.js", diff --git a/packages/x-codemod/package.json b/packages/x-codemod/package.json index fc57ade14ba09..38e78273666fa 100644 --- a/packages/x-codemod/package.json +++ b/packages/x-codemod/package.json @@ -1,6 +1,6 @@ { "name": "@mui/x-codemod", - "version": "8.0.0-alpha.11", + "version": "8.0.0-alpha.12", "bin": "./codemod.js", "private": false, "author": "MUI Team", diff --git a/packages/x-data-grid-generator/package.json b/packages/x-data-grid-generator/package.json index 1706f1f170361..ffd0f8ba25218 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": "8.0.0-alpha.11", + "version": "8.0.0-alpha.12", "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 bd880384ea295..4920d2a32803a 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": "8.0.0-alpha.11", + "version": "8.0.0-alpha.12", "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 87e57827eafd7..5bcc5727ff371 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": "8.0.0-alpha.11", + "version": "8.0.0-alpha.12", "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 36e546bc05abb..8ff35195f89c3 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": "8.0.0-alpha.11", + "version": "8.0.0-alpha.12", "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 f96c836ed0890..6121b98db4b49 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": "8.0.0-alpha.11", + "version": "8.0.0-alpha.12", "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 4c1f8a82bc008..539f86fd8a494 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": "8.0.0-alpha.11", + "version": "8.0.0-alpha.12", "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-internals/package.json b/packages/x-internals/package.json index cc767e72e269e..22232e141cafe 100644 --- a/packages/x-internals/package.json +++ b/packages/x-internals/package.json @@ -1,6 +1,6 @@ { "name": "@mui/x-internals", - "version": "8.0.0-alpha.11", + "version": "8.0.0-alpha.12", "description": "Utility functions for the MUI X packages (internal use only).", "author": "MUI Team", "license": "MIT", diff --git a/packages/x-license/package.json b/packages/x-license/package.json index 610e6c25d1617..9f8b73a70673e 100644 --- a/packages/x-license/package.json +++ b/packages/x-license/package.json @@ -1,6 +1,6 @@ { "name": "@mui/x-license", - "version": "8.0.0-alpha.11", + "version": "8.0.0-alpha.12", "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 4b6c279442046..e54ffaaa33de3 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": "8.0.0-alpha.11", + "version": "8.0.0-alpha.12", "description": "The Pro plan edition of the Tree View 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 bf48964771aeb..7410b3ca62dc4 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": "8.0.0-alpha.11", + "version": "8.0.0-alpha.12", "description": "The community edition of the Tree View components (MUI X).", "author": "MUI Team", "main": "src/index.ts", From 20a7575ce1d0eb0e9924f74db8ad0bb91d924e27 Mon Sep 17 00:00:00 2001 From: flavien Date: Fri, 14 Feb 2025 14:28:02 +0100 Subject: [PATCH 02/22] Clean --- CHANGELOG.md | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4cb0f09bb4a6b..ae48f51121e84 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,7 @@ _Feb 14, 2025_ We'd like to offer a big thanks to the 16 contributors who made this release possible. Here are some highlights ✨: +- 🌍 Improve Polish (pl-PL) and Ukrainian (uk-UA) locales on the Data Grid - 🐞 Bugfixes Special thanks go out to the community contributors who have helped make this release possible: @@ -48,15 +49,15 @@ Following are all team members who have contributed to this release: - [DataGrid] Add `resetPageOnSortFilter` prop that resets the page after sorting/filtering (#16450) @arminmeh - [DataGrid] All selectors accept only `apiRef` as first argument (#16198) @arminmeh - [DataGrid] Avoid `undefined` value for pagination `rowCount` (#16488) @LukasTy +- [DataGrid] Create the base Checkbox slot (#16445) @romgrk +- [DataGrid] Create the base Input slot (#16443) @romgrk +- [DataGrid] Create the base MenuList slot (#16481) @romgrk +- [DataGrid] Create the base Popper slot (#16362) @romgrk +- [DataGrid] Create the base Select slot (#16394) @romgrk +- [DataGrid] Create the base Switch slot (#16527) @romgrk - [DataGrid] Extract `getRowId` API method as a selector (#16487) @MBilalShafi -- [DataGrid] Fix: base Select onClose (#16557) @romgrk +- [DataGrid] Fix the `onClock` prop of the base Select slot (#16557) @romgrk - [DataGrid] Make base data source available in the Community plan (#16359) @MBilalShafi -- [DataGrid] Refactor: create base Checkbox (#16445) @romgrk -- [DataGrid] Refactor: create base Input (#16443) @romgrk -- [DataGrid] Refactor: create base MenuList props (#16481) @romgrk -- [DataGrid] Refactor: create base Popper (#16362) @romgrk -- [DataGrid] Refactor: create base Select (#16394) @romgrk -- [DataGrid] Refactor: create base Switch (#16527) @romgrk - [DataGrid] Remove `apiRef.current.forceUpdate()` method (#16560) @MBilalShafi - [DataGrid] Fix the unexpected behavior of the pagination when using -1 for "All" rows per page (#16485) @nusr - [l10n] Improve Polish (pl-PL) locale (#16123) @pawelkula From d56642278adbd310f1588bb4cd14be9b85a582c2 Mon Sep 17 00:00:00 2001 From: flavien Date: Fri, 14 Feb 2025 14:31:02 +0100 Subject: [PATCH 03/22] Clean --- CHANGELOG.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ae48f51121e84..b2c6db0dd7462 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -118,11 +118,9 @@ Same changes as in `@mui/x-date-pickers@v8.0.0-alpha.12`, plus: ### Charts -From https://github.com/mui/mui-x/pull/16459 - -Stabilize series hooks: `useSeries`, `usePieSeries`, `useLineSeries`, `useBarSeries`, `useScatterSeries` and `useHeatmapSeries`. +#### Breaking changes -- [x] I have followed (at least) the [PR section of the contributing guide](https://github.com/mui/mui-x/blob/HEAD/CONTRIBUTING.md#sending-a-pull-request). +- The `useSeries` hook family has been stabilized and renamed accordingly — [Learn more](https://next.mui.com/x/migration/migration-charts-v7/#stabilize-useseries-and-usexxxseries-hooks-✅) #### `@mui/x-charts@v8.0.0-alpha.12` From c1d35808ce37a28d0865b8cbb862c386393bb2dc Mon Sep 17 00:00:00 2001 From: Flavien DELANGLE Date: Fri, 14 Feb 2025 15:01:01 +0100 Subject: [PATCH 04/22] Update CHANGELOG.md Co-authored-by: Lukas Tyla Signed-off-by: Flavien DELANGLE --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b2c6db0dd7462..c245c6dc5c6c2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -48,7 +48,7 @@ Following are all team members who have contributed to this release: - [DataGrid] Add "No columns" overlay (#16543) @KenanYusuf - [DataGrid] Add `resetPageOnSortFilter` prop that resets the page after sorting/filtering (#16450) @arminmeh - [DataGrid] All selectors accept only `apiRef` as first argument (#16198) @arminmeh -- [DataGrid] Avoid `undefined` value for pagination `rowCount` (#16488) @LukasTy +- [DataGrid] Avoid `undefined` value for pagination `rowCount` (#16488) @cherniavskii - [DataGrid] Create the base Checkbox slot (#16445) @romgrk - [DataGrid] Create the base Input slot (#16443) @romgrk - [DataGrid] Create the base MenuList slot (#16481) @romgrk From aeb34253c36afc57ede0439318da5c971f45c7ca Mon Sep 17 00:00:00 2001 From: Flavien DELANGLE Date: Fri, 14 Feb 2025 15:01:10 +0100 Subject: [PATCH 05/22] Update CHANGELOG.md Co-authored-by: Lukas Tyla Signed-off-by: Flavien DELANGLE --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c245c6dc5c6c2..600965a1d9443 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -163,7 +163,7 @@ Same changes as in `@mui/x-tree-view@v8.0.0-alpha.12`. ### Core - [core] Update charts folder structure (#16471) @alexfauquette -- [code-infra] Bump @mui/monorepo (#16422) @renovate[bot] +- [code-infra] Bump @mui/monorepo (#16422) @LukasTy - [code-infra] Fix lock file (#16562) @LukasTy - [code-infra] Fix root package version (#16503) @JCQuintas - [code-infra] Update internal packages to `next` releases (#16423) @renovate[bot] From f134a3c311feb6904ada273630133e6c2d8ec91f Mon Sep 17 00:00:00 2001 From: Flavien DELANGLE Date: Fri, 14 Feb 2025 15:01:16 +0100 Subject: [PATCH 06/22] Update CHANGELOG.md Co-authored-by: Lukas Tyla Signed-off-by: Flavien DELANGLE --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 600965a1d9443..e82fb64c165d2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -166,7 +166,7 @@ Same changes as in `@mui/x-tree-view@v8.0.0-alpha.12`. - [code-infra] Bump @mui/monorepo (#16422) @LukasTy - [code-infra] Fix lock file (#16562) @LukasTy - [code-infra] Fix root package version (#16503) @JCQuintas -- [code-infra] Update internal packages to `next` releases (#16423) @renovate[bot] +- [code-infra] Update internal packages to `next` releases (#16423) @LukasTy - [code-infra] Update package layout for better ESM support (#14386) @Janpot ## 8.0.0-alpha.11 From a8c2fe8cab4b90973eaa4546dd4849befbd9f0dc Mon Sep 17 00:00:00 2001 From: Flavien DELANGLE Date: Fri, 14 Feb 2025 15:01:24 +0100 Subject: [PATCH 07/22] Update CHANGELOG.md Co-authored-by: Armin Mehinovic <4390250+arminmeh@users.noreply.github.com> Signed-off-by: Flavien DELANGLE --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e82fb64c165d2..fba99e7d6cee0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,7 +15,7 @@ We'd like to offer a big thanks to the 16 contributors who made this release pos - 🐞 Bugfixes Special thanks go out to the community contributors who have helped make this release possible: -@mapache-salvaje, @Neonin, @nusr, @pawelkula, . +@Neonin, @nusr and @pawelkula. Following are all team members who have contributed to this release: @alexfauquette, @arminmeh, @bernardobelchior, @cherniavskii, @Janpot, @JCQuintas, @KenanYusuf, @LukasTy, @MBilalShafi, @michelengelen, @oliviertassinari and @romgrk. From 7bb1c709ff2639b20a0d27ee131884a6c94fd4bb Mon Sep 17 00:00:00 2001 From: Flavien DELANGLE Date: Fri, 14 Feb 2025 15:01:35 +0100 Subject: [PATCH 08/22] Update CHANGELOG.md Co-authored-by: Armin Mehinovic <4390250+arminmeh@users.noreply.github.com> Signed-off-by: Flavien DELANGLE --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fba99e7d6cee0..e7b87463aa739 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,7 +17,7 @@ We'd like to offer a big thanks to the 16 contributors who made this release pos Special thanks go out to the community contributors who have helped make this release possible: @Neonin, @nusr and @pawelkula. Following are all team members who have contributed to this release: -@alexfauquette, @arminmeh, @bernardobelchior, @cherniavskii, @Janpot, @JCQuintas, @KenanYusuf, @LukasTy, @MBilalShafi, @michelengelen, @oliviertassinari and @romgrk. +@alexfauquette, @arminmeh, @bernardobelchior, @cherniavskii, @Janpot, @JCQuintas, @KenanYusuf, @LukasTy, @MBilalShafi, @michelengelen, @oliviertassinari, @romgrk and @mapache-salvaje. ### Data Grid From 1774cd12fa537232d66f9f3dc8d24c034db83244 Mon Sep 17 00:00:00 2001 From: Flavien DELANGLE Date: Fri, 14 Feb 2025 15:24:38 +0100 Subject: [PATCH 09/22] Update CHANGELOG.md Co-authored-by: Armin Mehinovic <4390250+arminmeh@users.noreply.github.com> Signed-off-by: Flavien DELANGLE --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e7b87463aa739..29e8b307e2d98 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -55,7 +55,7 @@ Following are all team members who have contributed to this release: - [DataGrid] Create the base Popper slot (#16362) @romgrk - [DataGrid] Create the base Select slot (#16394) @romgrk - [DataGrid] Create the base Switch slot (#16527) @romgrk -- [DataGrid] Extract `getRowId` API method as a selector (#16487) @MBilalShafi +- [DataGrid] Extract `getRowId()` API method as a selector (#16487) @MBilalShafi - [DataGrid] Fix the `onClock` prop of the base Select slot (#16557) @romgrk - [DataGrid] Make base data source available in the Community plan (#16359) @MBilalShafi - [DataGrid] Remove `apiRef.current.forceUpdate()` method (#16560) @MBilalShafi From c9607e9c63e0fed5b4d7f4044465bf3aa1025076 Mon Sep 17 00:00:00 2001 From: Flavien DELANGLE Date: Fri, 14 Feb 2025 15:24:49 +0100 Subject: [PATCH 10/22] Update CHANGELOG.md Co-authored-by: Armin Mehinovic <4390250+arminmeh@users.noreply.github.com> Signed-off-by: Flavien DELANGLE --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 29e8b307e2d98..dbd0309ab5b09 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -59,7 +59,7 @@ Following are all team members who have contributed to this release: - [DataGrid] Fix the `onClock` prop of the base Select slot (#16557) @romgrk - [DataGrid] Make base data source available in the Community plan (#16359) @MBilalShafi - [DataGrid] Remove `apiRef.current.forceUpdate()` method (#16560) @MBilalShafi -- [DataGrid] Fix the unexpected behavior of the pagination when using -1 for "All" rows per page (#16485) @nusr +- [DataGrid] Fix the unexpected behavior of the pagination when using `-1` for "All" rows per page (#16485) @nusr - [l10n] Improve Polish (pl-PL) locale (#16123) @pawelkula - [l10n] Improve Ukrainian (uk-UA) locale (#16463) @Neonin From bdf0330e689bb39263ced4882c3ba8533c15f735 Mon Sep 17 00:00:00 2001 From: Flavien DELANGLE Date: Fri, 14 Feb 2025 15:25:01 +0100 Subject: [PATCH 11/22] Update CHANGELOG.md Co-authored-by: Armin Mehinovic <4390250+arminmeh@users.noreply.github.com> Signed-off-by: Flavien DELANGLE --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index dbd0309ab5b09..2b19db72fa6d4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,7 @@ _Feb 14, 2025_ We'd like to offer a big thanks to the 16 contributors who made this release possible. Here are some highlights ✨: +📦 Data Grid [data source](https://next.mui.com/x/react-data-grid/server-side-data/) is now available in the Community plan - 🌍 Improve Polish (pl-PL) and Ukrainian (uk-UA) locales on the Data Grid - 🐞 Bugfixes From e6af7f30a4861b9e5d901928cbfca80271512c8a Mon Sep 17 00:00:00 2001 From: Flavien DELANGLE Date: Fri, 14 Feb 2025 16:39:23 +0100 Subject: [PATCH 12/22] Update CHANGELOG.md Co-authored-by: Armin Mehinovic <4390250+arminmeh@users.noreply.github.com> Signed-off-by: Flavien DELANGLE --- CHANGELOG.md | 9 --------- 1 file changed, 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2b19db72fa6d4..de3708ccedbe0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -28,15 +28,6 @@ Following are all team members who have contributed to this release: - The `apiRef.current.forceUpdate()` method was removed. Use selectors combined with `useGridSelector()` hook to react to changes in the state. -- Fixes #16220 - - - Before: https://codesandbox.io/p/sandbox/intelligent-leavitt-q4h68n?from-embed=&workspaceId=ws_96AUJAP4MpFUq5gdSxRein - - After: https://codesandbox.io/p/sandbox/stupefied-scott-qnqpx5 - -- Add a skeleton loading overlay on the aggregation row while it's loading - - https://github.com/user-attachments/assets/310f57fe-2809-45c7-9930-22f5df413e04 - - The selectors signature has been updated. They are only accepting `apiRef` as a first argument. ```diff From 5b2b2b709ca20b5463a2fdbe1dafd3cd596f1980 Mon Sep 17 00:00:00 2001 From: Flavien DELANGLE Date: Fri, 14 Feb 2025 16:39:54 +0100 Subject: [PATCH 13/22] Update CHANGELOG.md Co-authored-by: Andrew Cherniavskii Signed-off-by: Flavien DELANGLE --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index de3708ccedbe0..637a3abc2cabf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,7 +11,7 @@ _Feb 14, 2025_ We'd like to offer a big thanks to the 16 contributors who made this release possible. Here are some highlights ✨: -📦 Data Grid [data source](https://next.mui.com/x/react-data-grid/server-side-data/) is now available in the Community plan +- 📦 Data Grid [data source](https://next.mui.com/x/react-data-grid/server-side-data/) is now available in the Community plan - 🌍 Improve Polish (pl-PL) and Ukrainian (uk-UA) locales on the Data Grid - 🐞 Bugfixes From 80738ad94a2d1ebf28a32daa061b3c436354c639 Mon Sep 17 00:00:00 2001 From: Flavien DELANGLE Date: Fri, 14 Feb 2025 16:40:03 +0100 Subject: [PATCH 14/22] Update CHANGELOG.md Co-authored-by: Andrew Cherniavskii Signed-off-by: Flavien DELANGLE --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 637a3abc2cabf..d431a0b744a2b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,7 @@ _Feb 14, 2025_ We'd like to offer a big thanks to the 16 contributors who made this release possible. Here are some highlights ✨: - 📦 Data Grid [data source](https://next.mui.com/x/react-data-grid/server-side-data/) is now available in the Community plan +- ⚡ Improve Data Grid Excel export serialization performance - 🌍 Improve Polish (pl-PL) and Ukrainian (uk-UA) locales on the Data Grid - 🐞 Bugfixes From 965726e7978229768eeb7f92e8856efedc7c93db Mon Sep 17 00:00:00 2001 From: flavien Date: Fri, 14 Feb 2025 16:41:11 +0100 Subject: [PATCH 15/22] Fix version --- CHANGELOG.md | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d431a0b744a2b..84c9c8a16f080 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -36,7 +36,7 @@ Following are all team members who have contributed to this release: +mySelector(apiRef, arguments) ``` -#### `@mui/x-data-grid@v8.0.0-alpha.12` +#### `@mui/x-data-grid@8.0.0-alpha.12` - [DataGrid] Add "No columns" overlay (#16543) @KenanYusuf - [DataGrid] Add `resetPageOnSortFilter` prop that resets the page after sorting/filtering (#16450) @arminmeh @@ -56,13 +56,13 @@ Following are all team members who have contributed to this release: - [l10n] Improve Polish (pl-PL) locale (#16123) @pawelkula - [l10n] Improve Ukrainian (uk-UA) locale (#16463) @Neonin -#### `@mui/x-data-grid-pro@v8.0.0-alpha.12` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan') +#### `@mui/x-data-grid-pro@8.0.0-alpha.12` [![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@v8.0.0-alpha.12`. +Same changes as in `@mui/x-data-grid@8.0.0-alpha.12`. -#### `@mui/x-data-grid-premium@v8.0.0-alpha.12` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan') +#### `@mui/x-data-grid-premium@8.0.0-alpha.12` [![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@v8.0.0-alpha.12`, plus: +Same changes as in `@mui/x-data-grid-pro@8.0.0-alpha.12`, plus: - [DataGridPremium] Fix Excel export Web Worker demo not working in dev mode (#16517) @cherniavskii - [DataGridPremium] Fix loading issue + add skeleton overlay (#16282) @MBilalShafi @@ -98,14 +98,14 @@ Same changes as in `@mui/x-data-grid-pro@v8.0.0-alpha.12`, plus: > ``` -#### `@mui/x-date-pickers@v8.0.0-alpha.12` +#### `@mui/x-date-pickers@8.0.0-alpha.12` - [pickers] Fix time related aria labels to depend on `ampm` flag value (#16572) @LukasTy - [pickers] Remove unused adapter formats (#16522) @LukasTy -#### `@mui/x-date-pickers-pro@v8.0.0-alpha.12` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan') +#### `@mui/x-date-pickers-pro@8.0.0-alpha.12` [![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@v8.0.0-alpha.12`, plus: +Same changes as in `@mui/x-date-pickers@8.0.0-alpha.12`, plus: - [DateRangePicker] Avoid unnecessary field section focusing (#16474) @LukasTy @@ -115,7 +115,7 @@ Same changes as in `@mui/x-date-pickers@v8.0.0-alpha.12`, plus: - The `useSeries` hook family has been stabilized and renamed accordingly — [Learn more](https://next.mui.com/x/migration/migration-charts-v7/#stabilize-useseries-and-usexxxseries-hooks-✅) -#### `@mui/x-charts@v8.0.0-alpha.12` +#### `@mui/x-charts@8.0.0-alpha.12` - [charts] Add docs for scatter "Size" section (#16556) @bernardobelchior - [charts] Add warning when using unknown ids in `useXxxSeries` hooks (#16552) @JCQuintas @@ -133,19 +133,19 @@ Same changes as in `@mui/x-date-pickers@v8.0.0-alpha.12`, plus: - [charts] Remove `colors` prop from `SparkLineChart`. (#16494) @bernardobelchior - [charts] Stabilize series hooks (`useSeries`, `usePieSeries`, etc.) (#16459) @bernardobelchior -#### `@mui/x-charts-pro@v8.0.0-alpha.12` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan') +#### `@mui/x-charts-pro@8.0.0-alpha.12` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan') -Same changes as in `@mui/x-charts@v8.0.0-alpha.12`. +Same changes as in `@mui/x-charts@8.0.0-alpha.12`. ### Tree View -#### `@mui/x-tree-view@v8.0.0-alpha.12` +#### `@mui/x-tree-view@8.0.0-alpha.12` Internal changes. -#### `@mui/x-tree-view-pro@v8.0.0-alpha.12` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan') +#### `@mui/x-tree-view-pro@8.0.0-alpha.12` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan') -Same changes as in `@mui/x-tree-view@v8.0.0-alpha.12`. +Same changes as in `@mui/x-tree-view@8.0.0-alpha.12`. ### Docs From d2f314edf50a447e5081774f25f4286c3e3f0c1e Mon Sep 17 00:00:00 2001 From: flavien Date: Mon, 17 Feb 2025 10:51:18 +0100 Subject: [PATCH 16/22] Update date and add missing PR --- CHANGELOG.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 84c9c8a16f080..6351e7c10b18a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ## 8.0.0-alpha.12 -_Feb 14, 2025_ +_Feb 17, 2025_ We'd like to offer a big thanks to the 16 contributors who made this release possible. Here are some highlights ✨: @@ -50,6 +50,7 @@ Following are all team members who have contributed to this release: - [DataGrid] Create the base Switch slot (#16527) @romgrk - [DataGrid] Extract `getRowId()` API method as a selector (#16487) @MBilalShafi - [DataGrid] Fix the `onClock` prop of the base Select slot (#16557) @romgrk +- [DataGrid] Go to the first page when sorting/filtering is applied (#16447) @arminmeh - [DataGrid] Make base data source available in the Community plan (#16359) @MBilalShafi - [DataGrid] Remove `apiRef.current.forceUpdate()` method (#16560) @MBilalShafi - [DataGrid] Fix the unexpected behavior of the pagination when using `-1` for "All" rows per page (#16485) @nusr @@ -118,6 +119,7 @@ Same changes as in `@mui/x-date-pickers@8.0.0-alpha.12`, plus: #### `@mui/x-charts@8.0.0-alpha.12` - [charts] Add docs for scatter "Size" section (#16556) @bernardobelchior +- [charts] Add `test:performance:browser` script #16600 @bernardobelchior - [charts] Add warning when using unknown ids in `useXxxSeries` hooks (#16552) @JCQuintas - [charts] Divide the logic for `useXxxSeries` into `useXxxSeriesContext` (#16546) @JCQuintas - [charts] Document plugins for internal use (#16504) @JCQuintas @@ -161,6 +163,7 @@ Same changes as in `@mui/x-tree-view@8.0.0-alpha.12`. - [code-infra] Fix root package version (#16503) @JCQuintas - [code-infra] Update internal packages to `next` releases (#16423) @LukasTy - [code-infra] Update package layout for better ESM support (#14386) @Janpot +- [code-infra] Update peer dependencies for v8 (#16563) @Janpot ## 8.0.0-alpha.11 From 1dd805654b4f58f5c5ffd228bbdb3a81ebc789af Mon Sep 17 00:00:00 2001 From: Flavien DELANGLE Date: Mon, 17 Feb 2025 10:53:14 +0100 Subject: [PATCH 17/22] Update CHANGELOG.md Co-authored-by: Kenan Yusuf Signed-off-by: Flavien DELANGLE --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6351e7c10b18a..81416389e528f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,7 @@ We'd like to offer a big thanks to the 16 contributors who made this release pos - 📦 Data Grid [data source](https://next.mui.com/x/react-data-grid/server-side-data/) is now available in the Community plan - ⚡ Improve Data Grid Excel export serialization performance +- 🚫 Add ["No columns" overlay](https://next.mui.com/x/react-data-grid/overlays/#no-columns-overlay) to Data Grid - 🌍 Improve Polish (pl-PL) and Ukrainian (uk-UA) locales on the Data Grid - 🐞 Bugfixes From 4e66b1f79a1d4e1fd6ebd0232f63afbb5a38983b Mon Sep 17 00:00:00 2001 From: Flavien DELANGLE Date: Mon, 17 Feb 2025 10:53:25 +0100 Subject: [PATCH 18/22] Update CHANGELOG.md Co-authored-by: Bilal Shafi Signed-off-by: Flavien DELANGLE --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 81416389e528f..be88c4ed208cb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,7 +18,7 @@ We'd like to offer a big thanks to the 16 contributors who made this release pos - 🐞 Bugfixes Special thanks go out to the community contributors who have helped make this release possible: -@Neonin, @nusr and @pawelkula. +@Neonin, @nusr, and @pawelkula. Following are all team members who have contributed to this release: @alexfauquette, @arminmeh, @bernardobelchior, @cherniavskii, @Janpot, @JCQuintas, @KenanYusuf, @LukasTy, @MBilalShafi, @michelengelen, @oliviertassinari, @romgrk and @mapache-salvaje. From 7a6d581026a4583b245314e103987510d310cf7c Mon Sep 17 00:00:00 2001 From: Flavien DELANGLE Date: Mon, 17 Feb 2025 10:53:31 +0100 Subject: [PATCH 19/22] Update CHANGELOG.md Co-authored-by: Bilal Shafi Signed-off-by: Flavien DELANGLE --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index be88c4ed208cb..c51feb8ba3ab9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -30,7 +30,7 @@ Following are all team members who have contributed to this release: - The `apiRef.current.forceUpdate()` method was removed. Use selectors combined with `useGridSelector()` hook to react to changes in the state. -- The selectors signature has been updated. They are only accepting `apiRef` as a first argument. +- The selectors signature has been updated. They are only accepting `apiRef` as a first argument and `instanceId` is no longer the third argument. ```diff -mySelector(state, arguments, instanceId) From 169580d57932d1be7ce743dda63c08b01081a464 Mon Sep 17 00:00:00 2001 From: Flavien DELANGLE Date: Mon, 17 Feb 2025 10:53:39 +0100 Subject: [PATCH 20/22] Update CHANGELOG.md Co-authored-by: Bilal Shafi Signed-off-by: Flavien DELANGLE --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c51feb8ba3ab9..02b305762df1b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,7 +20,7 @@ We'd like to offer a big thanks to the 16 contributors who made this release pos Special thanks go out to the community contributors who have helped make this release possible: @Neonin, @nusr, and @pawelkula. Following are all team members who have contributed to this release: -@alexfauquette, @arminmeh, @bernardobelchior, @cherniavskii, @Janpot, @JCQuintas, @KenanYusuf, @LukasTy, @MBilalShafi, @michelengelen, @oliviertassinari, @romgrk and @mapache-salvaje. +@alexfauquette, @arminmeh, @bernardobelchior, @cherniavskii, @Janpot, @JCQuintas, @KenanYusuf, @LukasTy, @MBilalShafi, @michelengelen, @oliviertassinari, @romgrk, and @mapache-salvaje. ### Data Grid From e812c7ca51a7bd4dc7b98c161308291ac59e8cd7 Mon Sep 17 00:00:00 2001 From: Flavien DELANGLE Date: Mon, 17 Feb 2025 10:53:49 +0100 Subject: [PATCH 21/22] Update CHANGELOG.md Co-authored-by: Armin Mehinovic <4390250+arminmeh@users.noreply.github.com> Signed-off-by: Flavien DELANGLE --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 02b305762df1b..723b1996c824a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -40,7 +40,7 @@ Following are all team members who have contributed to this release: #### `@mui/x-data-grid@8.0.0-alpha.12` - [DataGrid] Add "No columns" overlay (#16543) @KenanYusuf -- [DataGrid] Add `resetPageOnSortFilter` prop that resets the page after sorting/filtering (#16450) @arminmeh +- [DataGrid] Go to the first page when sorting/filtering is applied (#16447) @arminmeh - [DataGrid] All selectors accept only `apiRef` as first argument (#16198) @arminmeh - [DataGrid] Avoid `undefined` value for pagination `rowCount` (#16488) @cherniavskii - [DataGrid] Create the base Checkbox slot (#16445) @romgrk From d4699e9af274eb5ee776fa885a60e147d31d2356 Mon Sep 17 00:00:00 2001 From: flavien Date: Mon, 17 Feb 2025 10:54:20 +0100 Subject: [PATCH 22/22] Fix --- CHANGELOG.md | 1 - 1 file changed, 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 723b1996c824a..098e4c6e2f2f3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -40,7 +40,6 @@ Following are all team members who have contributed to this release: #### `@mui/x-data-grid@8.0.0-alpha.12` - [DataGrid] Add "No columns" overlay (#16543) @KenanYusuf -- [DataGrid] Go to the first page when sorting/filtering is applied (#16447) @arminmeh - [DataGrid] All selectors accept only `apiRef` as first argument (#16198) @arminmeh - [DataGrid] Avoid `undefined` value for pagination `rowCount` (#16488) @cherniavskii - [DataGrid] Create the base Checkbox slot (#16445) @romgrk