diff --git a/CHANGELOG.md b/CHANGELOG.md index 887e3e0d32152..523da9f73d3de 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,133 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## v8.0.0-alpha.2 + +_Nov 29, 2024_ + +We'd like to offer a big thanks to the 17 contributors who made this release possible. Here are some highlights ✨: + +- πŸ‘¨πŸ½β€πŸ’» Improve resize performance on the Data Gird. +- `` and `` components are now fully divided β€” [Learn more](https://next.mui.com/x/react-charts/composition/#overview). +- Users can create their own HTML components using chart data β€” [Learn more](https://next.mui.com/x/react-charts/components/#html-components). +- 🌍 Improve Spanish, Portuguese, Chinese locales on the Data Grid component. +- 🌍 Improve Dutch locale on the Date and Time Pickers components. +- 🐞 Bugfixes +- πŸ“š Documentation improvements + +Special thanks go out to the community contributors who have helped make this release possible: +@dloeda, @headironc, @jedesroches, @k-rajat19, @lauri865, @mathzdev, @nphmuller, @zinoroman. +Following are all team members who have contributed to this release: +@arminmeh, @alexfauquette, @cherniavskii, @flaviendelangle, @JCQuintas, @KenanYusuf, @LukasTy, @MBilalShafi, @oliviertassinari. + + + +### Data Grid + +#### Breaking changes + +- The `` component is not exported anymore. +- The `indeterminateCheckboxAction` prop has been removed. Clicking on an indeterminate checkbox "selects" the unselected descendants. +- The `apiRef.current.resize()` method was removed. +- The default value of the `rowSelectionPropagation` prop has been changed to `{ parents: true, descendants: true }` which means that the selection will be propagated to the parents and descendants by default. + To revert to the previous behavior, pass `rowSelectionPropagation` as `{ parents: false, descendants: false }`. +- If `estimatedRowCount` is used, the text provided to the [Table Pagination](/material-ui/api/table-pagination/) component from the MaterialΒ UI library is updated and requires additional translations. Check the example at the end of [Index-based pagination section](/x/react-data-grid/pagination/#index-based-pagination). + +#### `@mui/x-data-grid@v8.0.0-alpha.2` + +- [DataGrid] Change test dom check from `/jsdom/` to `/jsdom|HappyDOM/`. (#15634) @jedesroches +- [DataGrid] Clear timers on unmount (#15620) @cherniavskii +- [DataGrid] Fix order of spread props on toolbar items (#15556) @KenanYusuf +- [DataGrid] Improve resize performance (#15549) @lauri865 +- [DataGrid] Make estimation label more accurate (#15632) @arminmeh +- [DataGrid] Remove `` export (#15573) @k-rajat19 +- [DataGrid] Remove `indeterminateCheckboxAction` prop (#15522) @MBilalShafi +- [DataGrid] Remove try/catch from `` due to performance issues (#15616) @lauri865 +- [DataGrid] Remove unused `resize` method (#15599) @cherniavskii +- [DataGrid] Support column virtualization with dynamic row height (#15541) @cherniavskii +- [DataGrid] Update the default value for `rowSelectionPropagation` (#15523) @MBilalShafi +- [l10n] Improve Chinese (zh-CN) locale (#15570) @headironc +- [l10n] Improve Portuguese (pt-PT) locale (#15561) @mathzdev + +#### `@mui/x-data-grid-pro@v8.0.0-alpha.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@v8.0.0-alpha.2`, plus: + +- [DataGridPro] Fix header filtering with `boolean` column type (#15528) @k-rajat19 +- [DataGridPro] Fix pagination state not updating if the data source response has no rows (#15622) @zinoroman +- [DataGridPro] Fix selection propagation issue on initialization (#15461) @MBilalShafi + +#### `@mui/x-data-grid-premium@v8.0.0-alpha.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@v8.0.0-alpha.2`. + +### Date and Time Pickers + +#### Breaking changes + +- The props received by the `layout` and the `toolbar` slots have been reworked β€” [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#do-not-pass-the-section-type-as-a-generic). + +- The `TSection` generic of the `FieldRef` type has been replaced with the `TValue` generic β€” [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#slots-breaking-changes). + +#### `@mui/x-date-pickers@v8.0.0-alpha.2` + +- [l10n] Improve Dutch (nl-NL) locale (#15564) @nphmuller +- [pickers] Fix DST issue with `America/Asuncion` timezone and `AdapterMoment` (#15552) @flaviendelangle +- [pickers] Improve validation internals (#15419) @flaviendelangle +- [pickers] Remove `TSection` and strictly type `TValue` (#15434) @flaviendelangle +- [pickers] Remove `orientation`, `isLandscape`, `isRtl`, `wrapperVariant` and `disabled` props from `PickersLayout` (#15494) @flaviendelangle +- [pickers] Use the new `ownerState` in ``, `` and `` (#15499) @flaviendelangle +- [pickers] Use the new `ownerState` object in all the field components (#15510) @flaviendelangle + +#### `@mui/x-date-pickers-pro@v8.0.0-alpha.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@v8.0.0-alpha.2`. + +### Charts + +#### Breaking changes + +- Charts Container don't have a `
` wrapping them anymore. All props are now passed to the root `` instead of the `
`. + +#### `@mui/x-charts@v8.0.0-alpha.2` + +- [charts] Allow the creation of custom HTML components using charts data (#15511) @JCQuintas +- [charts] Flatten imports from `@mui/utils` and `@mui/system` (#15603) @alexfauquette +- [charts] Introduce the plugin system (#15513) @alexfauquette +- [charts] Prevent invalid `releasePointerCapture` (#15602) @alexfauquette +- [charts] Fix custom Tooltip demos (#15631) @alexfauquette + +#### `@mui/x-charts-pro@v8.0.0-alpha.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-charts@v8.0.0-alpha.2`. + +### Tree View + +#### `@mui/x-tree-view@v8.0.0-alpha.2` + +- [TreeView] Flatten import from `@mui/utils` and `@mui/system` (#15604) @alexfauquette + +#### `@mui/x-tree-view-pro@v8.0.0-alpha.2` + +Same changes as in `@mui/x-tree-view@v8.0.0-alpha.2`. + +### Docs + +- [docs] Fix 404 links (#15575) @oliviertassinari +- [docs] Fix bash comments (#15571) @oliviertassinari +- [docs] Fix Pickers theme augmentation example (#15672) @LukasTy +- [docs] Replace use of "e.g." with "for example" (#15572) @oliviertassinari +- [docs] Update stale `new` and `preview` tags in v8 docs (#15547) @JCQuintas +- [docs] Fix layout shift image on Tree View docs (#15626) @oliviertassinari +- [docs] Fix `anchorEl` API page for charts (#15625) @oliviertassinari +- [docs] Add documentation for the list view feature (#15344) @KenanYusuf + +### Core + +- [core] Follow `()` function convention for docs @oliviertassinari +- [core] Remove dead translation key (#15566) @oliviertassinari +- [code-infra] Auto-merge `@types/node` bumps (#15591) @LukasTy + ## v8.0.0-alpha.1 _Nov 22, 2024_ @@ -338,6 +465,100 @@ Same changes as in `@mui/x-charts@8.0.0-alpha.0`. - [release] v8 preparation (#15054) @michelengelen - [test] Fix advanced list view regression test snapshot (#15260) @KenanYusuf +## 7.23.0 + +_Nov 29, 2024_ + +We'd like to offer a big thanks to the 10 contributors who made this release possible. Here are some highlights ✨: + +- ✨ Support for a new display mode on the Data Grid with the [List View feature](https://mui.com/x/react-data-grid/list-view/), offering an extremely flexible way to render datasets and enabling developers to adapt how data is displayed across different screen sizes. + + https://github.com/user-attachments/assets/61286adc-03fc-4323-9739-8ca726fcc16c + +- βš›οΈ React 19 support +- πŸ“š Documentation improvements +- 🌍 Improve Spanish, Portuguese, Chinese locales on the Data Grid component. +- 🌍 Improve Dutch locale on the Date and Time Picker components. +- 🐞 Bugfixes + +Special thanks go out to the community contributors who have helped make this release possible: +@dloeda, @headironc, @mathzdev, @nphmuller, @lhilgert9, @lauri865. +Following are all team members who have contributed to this release: +@oliviertassinari, @arminmeh, @KenanYusuf, @flaviendelangle, @MBilalShafi. + + + +### Data Grid + +#### `@mui/x-data-grid@v7.23.0` + +- [DataGrid] React 19 support (#15557) @arminmeh +- [DataGrid] Change test dom check from `/jsdom/` to `/jsdom|HappyDOM/`. (#15642) @jedesroches +- [DataGrid] Fix last separator not being hidden when grid is scrollable (#15551) @KenanYusuf +- [DataGrid] Fix order of spread props on toolbar items (#15556) @KenanYusuf +- [DataGrid] Fix row-spanning in combination with column-pinning (#15460) @lhilgert9 +- [DataGrid] Improve resize performance (#15592) @lauri865 +- [DataGrid] Support column virtualization with dynamic row height (#15567) @cherniavskii +- [DataGrid] Improve `GridCell` performance (#15621) @lauri865 +- [l10n] Improve Chinese (zh-CN) locale (#15570) @headironc +- [l10n] Improve Portuguese (pt-PT) locale (#15561) @mathzdev + +#### `@mui/x-data-grid-pro@v7.23.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@v7.23.0`, plus: + +- [DataGridPro] Fix header filtering with `boolean` column type (#15640) @k-rajat19 +- [DataGridPro] Fix pagination state not updating if the data source response has no rows (#15643) @zinoroman +- [DataGridPro] Fix selection propagation issue on initialization (#15593) @MBilalShafi + +#### `@mui/x-data-grid-premium@v7.23.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@v7.23.0`. + +### Date and Time Pickers + +#### `@mui/x-date-pickers@v7.23.0` + +- [pickers] React 19 support (#15557) @arminmeh +- [pickers] Fix DST issue with `America/Asuncion` timezone and `AdapterMoment` (#15653) @flaviendelangle +- [pickers] Use `props.referenceDate` timezone when `props.value` and `props.defaultValue` are not defined (#15544) @flaviendelangle +- [l10n] Improve Dutch (nl-NL) locale (#15564) @nphmuller + +#### `@mui/x-date-pickers-pro@v7.23.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@v7.23.0`. + +### Charts + +#### `@mui/x-charts@v7.23.0` + +- [charts] React 19 support (#15557) @arminmeh +- [charts] Prevent invalid `releasePointerCapture` (#15609) @alexfauquette + +#### `@mui/x-charts-pro@v7.23.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-charts@v7.23.0`. + +### Tree View + +#### `@mui/x-tree-view@v7.23.0` + +- [TreeView] React 19 support (#15557) @arminmeh + +#### `@mui/x-tree-view-pro@7.23.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-tree-view@7.23.0`. + +### Docs + +- [docs] Add data caching to lazy loaded detail panel demo (#15555) @cherniavskii +- [docs] Remove selectors section from list view docs (#15639) @KenanYusuf +- [docs] Add documentation for the list view feature (#15344) @KenanYusuf + +### Core + +- [core] Update @mui/monorepo (#15574) @oliviertassinari + ## v7.22.3 _Nov 21, 2024_ diff --git a/package.json b/package.json index 82fb5dfeba08b..7213d5369b4a0 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "version": "8.0.0-alpha.1", + "version": "8.0.0-alpha.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 0e21afdd6db34..2db48795de108 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.1", + "version": "8.0.0-alpha.2", "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 3b0fa858fa147..79e796d347ffd 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.1", + "version": "8.0.0-alpha.2", "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 76e4e92fa12d2..5905a32134789 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.1", + "version": "8.0.0-alpha.2", "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 e2e93f784383b..fd117991ddfcd 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.1", + "version": "8.0.0-alpha.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 b25b5cd7c1eb4..62ed1ab3aa45a 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.1", + "version": "8.0.0-alpha.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 e05f248075dba..3e3dd988ec2d5 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.1", + "version": "8.0.0-alpha.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 1bd3f16a15b7b..f7cdc4f789e29 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.1", + "version": "8.0.0-alpha.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 3e0fcc012f8d2..e2a26efcca952 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.1", + "version": "8.0.0-alpha.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 6641184c40b43..1fe1636ef2266 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.1", + "version": "8.0.0-alpha.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-internals/package.json b/packages/x-internals/package.json index 26f104ae497d9..a2e4c1120b30f 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.1", + "version": "8.0.0-alpha.2", "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 3449f3d85ef12..548e705bccc8a 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.1", + "version": "8.0.0-alpha.2", "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 1d8443d96bd40..ac40210b4fa93 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.1", + "version": "8.0.0-alpha.2", "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 127693f5476a9..497b104da90bb 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.1", + "version": "8.0.0-alpha.2", "description": "The community edition of the Tree View components (MUI X).", "author": "MUI Team", "main": "src/index.ts",