From 22f4ca72d42a459c35723d1d188bfac37e84f4f1 Mon Sep 17 00:00:00 2001 From: Bilal Shafi Date: Fri, 24 Jan 2025 18:07:52 +0500 Subject: [PATCH] v8.0.0-alpha.9 (#16317) Co-authored-by: Armin Mehinovic <4390250+arminmeh@users.noreply.github.com> Co-authored-by: Jose C Quintas Jr Co-authored-by: Lukas Tyla --- CHANGELOG.md | 439 +++++++++++++++++++- 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, 450 insertions(+), 17 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 32992af56f9a8..75854f1cd70b9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,98 @@ 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.9 + +_Jan 24, 2025_ + +We'd like to offer a big thanks to the 10 contributors who made this release possible. Here are some highlights ✨: + +- 🌍 Improve Persian (fa-IR) and Urdu (ur-PK) locales on the Data Grid +- 📚 Documentation improvements +- 🐞 Bugfixes + +Special thanks go out to the community contributors who have helped make this release possible: +@AxharKhan, @lauri865, @mapache-salvaje, @mostafaRoosta74. + +Following are all team members who have contributed to this release: +@alexfauquette, @cherniavskii, @Janpot, @JCQuintas, @LukasTy, @arminmeh. + +### Data Grid + +#### `@mui/x-data-grid@v8.0.0-alpha.9` + +- [DataGrid] Fix toggling preference panel from toolbar (#16274) @lauri865 +- [DataGrid] Only try to mount filter button if there are filters present (#16267) @lauri865 +- [DataGrid] Revert `apiRef` to be `MutableRefObject` for React versions < 19 (#16279) @arminmeh +- [l10n] Improve Persian (fa-IR) locale (#16312) @mostafaRoosta74 +- [l10n] Improve Urdu (ur-PK) locale (#16295) @AxharKhan + +#### `@mui/x-data-grid-pro@v8.0.0-alpha.9` [![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.9`. + +#### `@mui/x-data-grid-premium@v8.0.0-alpha.9` [![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.9`. + +### Date and Time Pickers + +#### `@mui/x-date-pickers@v8.0.0-alpha.9` + +- [fields] Reset `all` selected state on section edit (#16223) @LukasTy + +#### `@mui/x-date-pickers-pro@v8.0.0-alpha.9` [![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.9`. + +### Charts + +#### Breaking Changes + +The `experimentalMarkRendering` prop has been removed from the `LineChart` component. +The line mark are now `` element by default. +And you can chose another shape by adding a `shape` property to your line series. + +The codemod only removes the `experimentalMarkRendering` prop. +If you relied on the fact that marks were `path` elements, you need to update your logic. + +#### `@mui/x-charts@v8.0.0-alpha.9` + +- [charts] Expand line with step interpolation (#16229) @alexfauquette +- [charts] Fix hydration mismatch (#16261) @alexfauquette +- [charts] Fix zoom option reactivity (#16262) @alexfauquette +- [charts] Move legend getter to series config (#16307) @alexfauquette +- [charts] Use `` instead of `` for line marks by default (#15220) @alexfauquette + +#### `@mui/x-charts-pro@v8.0.0-alpha.9` [![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.9`, plus: + +- [charts-pro] Fix `pro` components watermark (#16222) @JCQuintas + +### Tree View + +#### `@mui/x-tree-view@v8.0.0-alpha.9` + +Internal changes. + +#### `@mui/x-tree-view-pro@v8.0.0-alpha.9` [![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.9`. + +### Docs + +- [docs] Fix `domainLimit` definition (#16270) @alexfauquette +- [docs] Fix tiny line chart breaking change (#16268) @alexfauquette +- [docs] Revise planned feature callouts and descriptions (#16290) @mapache-salvaje +- [docs] Copyedit the Aggregation doc (#16200) @mapache-salvaje +- [docs] Revise the Data Grid getting started docs (#15757) @mapache-salvaje +- [code-infra] Add 'use client' directive (#16273) @Janpot +- [code-infra] Allow dispatch of manual cherry-pick workflow (#16299) @JCQuintas +- [code-infra] Update changelog script (#16218) @cherniavskii +- [test] Fix flaky column pinning tests (#16219) @cherniavskii +- [test] Fix flaky tests (#16257) @lauri865 + ## 8.0.0-alpha.8 _Jan 16, 2025_ @@ -657,7 +749,7 @@ Same changes as in `@mui/x-tree-view@8.0.0-alpha.3`. - [code-infra] Playwright 1.49 (#15493) @JCQuintas - [test] Force hover in headless Chrome (#15710) @cherniavskii -## v8.0.0-alpha.2 +## 8.0.0-alpha.2 _Nov 29, 2024_ @@ -784,7 +876,7 @@ Same changes as in `@mui/x-tree-view@v8.0.0-alpha.2`. - [core] Remove dead translation key (#15566) @oliviertassinari - [code-infra] Auto-merge `@types/node` bumps (#15591) @LukasTy -## v8.0.0-alpha.1 +## 8.0.0-alpha.1 _Nov 22, 2024_ @@ -1117,6 +1209,347 @@ 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.24.1 + +_Jan 24, 2025_ + +We'd like to offer a big thanks to the 7 contributors who made this release possible. Here are some highlights ✨: + +- 🐞 Bugfixes +- 🌍 Improve Persian (fa-IR) locale on the Data Grid + +Special thanks go out to the community contributors who have helped make this release possible: +@mostafaRoosta74, @lauri865. + +Following are all team members who have contributed to this release: +@alexfauquette, @JCQuintas, @cherniavskii, @LukasTy, @arminmeh. + +### Data Grid + +#### `@mui/x-data-grid@7.24.1` + +- [DataGrid] Fix toggling preference panel from toolbar (#16276) @lauri865 +- [DataGrid] Only try to mount filter button if there are filters present (#16269) @lauri865 +- [DataGrid] Revert `apiRef` to be `MutableRefObject` for React versions < 19 (#16320) @arminmeh +- [l10n] Improve Persian (fa-IR) locale (#15964) @mostafaRoosta74 + +#### `@mui/x-data-grid-pro@7.24.1` [![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.24.1`. + +#### `@mui/x-data-grid-premium@7.24.1` [![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.24.1`. + +### Date and Time Pickers + +#### `@mui/x-date-pickers@7.24.1` + +- [fields] Reset `all` selected state on section edit (#16232) @LukasTy + +#### `@mui/x-date-pickers-pro@7.24.1` [![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.24.1`. + +### Charts + +#### `@mui/x-charts@7.24.1` + +- [charts] Handle case where gradient stop `offset` could be `Infinite` (@JCQuintas) (#16309) @JCQuintas + +#### `@mui/x-charts-pro@7.24.1` [![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@7.24.1`. + +### Tree View + +#### `@mui/x-tree-view@7.24.1` + +Internal changes. + +#### `@mui/x-tree-view-pro@7.24.1` [![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.24.1`. + +### Docs + +- [docs] Fix `domainLimit` definition (#16271) @alexfauquette + +### Core + +- [core] Make `@mui/x-internals` a dependency of `@mui/x-license` (#16265) @alexfauquette +- [test] Fix flaky column pinning tests (#16228) @cherniavskii +- [test] Fix flaky tests (#16264) @lauri865 + +## 7.24.0 + +_Jan 17, 2025_ + +We'd like to offer a big thanks to the 8 contributors who made this release possible. Here are some highlights ✨: + +- 🔄 Data Grid [Scroll restoration](https://next.mui.com/x/react-data-grid/scrolling/#scroll-restoration) +- 🐞 Bugfixes + +Special thanks go out to the community contributors who have helped make this release possible: +@lauri865, @AxharKhan. +Following are all team members who have contributed to this release: +@KenanYusuf, @arminmeh, @cherniavskii, @michelengelen, @samuelsycamore, @LukasTy. + + + +### Data Grid + +#### `@mui/x-data-grid@7.24.0` + +- [DataGrid] Fix resizing right pinned column (#16193) @KenanYusuf +- [DataGrid] Improve scrollbar deadzone with overlay scrollbars (#16212) @lauri865 +- [DataGrid] Scroll restoration (#16208) @lauri865 +- [DataGrid] Fix row, cell and header memoizations (#16195) @lauri865 +- [l10n] Improve Urdu (ur-PK) locale (#16081) @AxharKhan + +#### `@mui/x-data-grid-pro@7.24.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.24.0`, plus: + +- [DataGridPro] Add test for column pinning with disabled column virtualization (#16196) @cherniavskii +- [DataGridPro] Fix width of right-pinned column group during resize (#16207) @cherniavskii + +#### `@mui/x-data-grid-premium@7.24.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.24.0`. + +### Date and Time Pickers + +#### `@mui/x-date-pickers@7.24.0` + +Internal changes. + +#### `@mui/x-date-pickers-pro@7.24.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.24.0`. + +### Charts + +#### `@mui/x-charts@7.24.0` + +Internal changes. + +#### `@mui/x-charts-pro@7.24.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@7.24.0`. + +### Tree View + +#### `@mui/x-tree-view@7.24.0` + +Internal changes. + +#### `@mui/x-tree-view-pro@7.24.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.24.0`. + +### Docs + +- [docs] Copyedit the Data Grid cell selection page (#16213) @samuelsycamore +- [docs] Fix demo rendering issue on Codesandbox (#16129) @arminmeh + +### Core + +- [core] Type all references as `RefObject` (#16125) @arminmeh +- [code-infra] Refactor `react` and `react-dom` definitions to simplify dep resolving (#16214) @LukasTy +- [infra] Improve cherry-pick action target list (#16188) @michelengelen +- [test] Fix flaky column pinning unit test (#16209) @cherniavskii + +## 7.23.6 + +_Jan 9, 2025_ + +We'd like to offer a big thanks to the 11 contributors who made this release possible. Here are some highlights ✨: + +- 🌍 Add Chinese (Taiwan) (zh-TW) locale on the Date and Time Pickers +- 🌍 Improve Norwegian (nb-NO) locale on the Date and Time Pickers +- 🌍 Improve Dutch (nl-NL) locale on the Data Grid +- 🐞 Bugfixes + +Special thanks go out to the community contributors who have helped make this release possible: +@josteinjhauge, @derek-0000, @nusr, @k-rajat19, @tomashauser. +Following are all team members who have contributed to this release: +@flaviendelangle, @LukasTy, @MBilalShafi, @arminmeh, @oliviertassinari, @cherniavskii. + + + +### Data Grid + +#### `@mui/x-data-grid@7.23.6` + +- [DataGrid] Improve React 19 support (#16048) @LukasTy +- [DataGrid] Add `name` attribute to selection checkboxes (#16041) @derek-0000 +- [DataGrid] Fix number filter field formatting values while typing (#16068) @arminmeh +- [DataGrid] Fix select all checkbox state reset with server side data (#16039) @MBilalShafi + +#### `@mui/x-data-grid-pro@7.23.6` [![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.23.6`. + +#### `@mui/x-data-grid-premium@7.23.6` [![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.23.6`. + +### Date and Time Pickers + +#### `@mui/x-date-pickers@7.23.6` + +- [pickers] Improve React 19 support (#16048) @LukasTy +- [l10n] Add Chinese (Taiwan) (zh-TW) locale (#16057) @nusr +- [l10n] Improve Norwegian (nb-NO) locale (#16083) @josteinjhauge +- [pickers] Support `date-fns-jalali` v4 (#16013) @LukasTy + +#### `@mui/x-date-pickers-pro@7.23.6` [![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.23.6`. + +### Charts + +#### `@mui/x-charts@7.23.6` + +- [charts] Improve React 19 support (#16048) @LukasTy +- [charts] Fix 301 redirection in the API documentation @oliviertassinari + +#### `@mui/x-charts-pro@7.23.6` [![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@7.23.6`. + +### Tree View + +#### `@mui/x-tree-view@7.23.6` + +- [TreeView] Improve React 19 support (#16048) @LukasTy + +#### `@mui/x-tree-view-pro@7.23.6` [![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.6`. + +### Docs + +- [docs] Fix `EditingWithDatePickers` demo (#16047) @k-rajat19 +- [docs] Fix doc warning for automatic children selection on tree view (#16037) @flaviendelangle +- [docs] Fix non-existing "adapter" property of `LocalizationProvider` (#16088) @tomashauser + +### Core + +- [core] Clarify the release strategy (#16012) @MBilalShafi +- [core] Update the `release:version` docs (#16040) @cherniavskii + +## 7.23.5 + +_Dec 27, 2024_ + +Here are some highlights ✨: + +- 🐞 Fix version mismatch issue in Data Grid codesandbox/stackblitz demos + + + +### Data Grid + +#### `@mui/x-data-grid@7.23.5` + +No changes since `@mui/x-data-grid@v7.23.4`. + +#### `@mui/x-data-grid-pro@7.23.5` [![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.23.5`. + +#### `@mui/x-data-grid-premium@7.23.5` [![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.23.5`. + +## 7.23.4 + +_Dec 27, 2024_ + +We'd like to offer a big thanks to the 4 contributors who made this release possible. Here are some highlights ✨: + +- 🌍 Improve Dutch (nl-NL) locale on the Data Grid +- 🐞 Bugfixes + +Special thanks go out to the community contributor who has helped make this release possible: +@JoepVerkoelen. +Following are all team members who have contributed to this release: +@arminmeh, @oliviertassinari. + + + +### Data Grid + +#### `@mui/x-data-grid@7.23.4` + +- [DataGrid] Fix header filters showing clear button while empty (#15990) @k-rajat19 +- [DataGrid] Replace `forwardRef` with a shim for forward compatibility (#15984) @lauri865 +- [l10n] Improve Dutch (nl-NL) locale (#15920) @JoepVerkoelen + +#### `@mui/x-data-grid-pro@7.23.4` [![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.23.4`. + +#### `@mui/x-data-grid-premium@7.23.4` [![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.23.4`, plus: + +- [DataGridPremium] Fix column pinning with checkbox selection and row grouping (#15949) @k-rajat19 + +### Docs + +- [docs] Fix outdated link to handbook (#15855) @oliviertassinari + +## 7.23.3 + +_Dec 19, 2024_ + +We'd like to offer a big thanks to the 6 contributors who made this release possible. Here are some highlights ✨: + +- 🌍 Improve Korean (ko-KR) locale on the Data Grid +- 🐞 Bugfixes + +Special thanks go out to the community contributors who have helped make this release possible: +@k-rajat19, @good-jinu. +Following are all team members who have contributed to this release: +@KenanYusuf, @MBilalShafi, @arminmeh, @flaviendelangle. + + + +### Data Grid + +#### `@mui/x-data-grid@7.23.3` + +- [DataGrid] Allow passing custom props to `.main` element (#15919) @MBilalShafi +- [DataGrid] Consider `columnGroupHeaderHeight` prop in `getTotalHeaderHeight` method (#15927) @k-rajat19 +- [DataGrid] Deprecate `indeterminateCheckboxAction` prop (#15862) @MBilalShafi +- [DataGrid] Fix `aria-label` value for group checkboxes (#15861) @MBilalShafi +- [DataGrid] Fix autosizing with virtualized columns (#15929) @k-rajat19 +- [DataGrid] Round dimensions to avoid subpixel rendering error (#15873) @KenanYusuf +- [DataGrid] Toggle menu on click in `` (#15871) @k-rajat19 +- [DataGrid] Trigger row spanning computation on rows update (#15872) @MBilalShafi +- [l10n] Improve Korean (ko-KR) locale (#15906) @good-jinu + +#### `@mui/x-data-grid-pro@7.23.3` [![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.23.3`. + +#### `@mui/x-data-grid-premium@7.23.3` [![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.23.3`. + +### Date and Time Pickers + +#### `@mui/x-date-pickers@7.23.3` + +- [pickers] Add verification to disable skipped hours in spring forward DST (#15918) @flaviendelangle + +#### `@mui/x-date-pickers-pro@7.23.3` [![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.23.3`. + ## 7.23.2 _Dec 12, 2024_ @@ -1358,7 +1791,7 @@ Same changes as in `@mui/x-tree-view@7.23.0`. - [core] Update @mui/monorepo (#15574) @oliviertassinari -## v7.22.3 +## 7.22.3 _Nov 21, 2024_ diff --git a/package.json b/package.json index a4eddf8ab52da..5607b545b42f7 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "version": "8.0.0-alpha.8", + "version": "8.0.0-alpha.9", "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 78a76eb846d74..faa64f9f0d949 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.8", + "version": "8.0.0-alpha.9", "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 653f2270886e1..f3bc9907e66f0 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.8", + "version": "8.0.0-alpha.9", "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 e30cab24d8c19..4fb2c19f621f9 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.8", + "version": "8.0.0-alpha.9", "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 fcdd324acf129..6e30abe3c0df9 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.8", + "version": "8.0.0-alpha.9", "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 be6374c85d936..9377743432f84 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.8", + "version": "8.0.0-alpha.9", "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 d46649b5bb560..783565c70eb22 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.8", + "version": "8.0.0-alpha.9", "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 72c2718d4ecd6..3a341c293bacf 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.8", + "version": "8.0.0-alpha.9", "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 ef685d15a808e..ae038abce73b5 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.8", + "version": "8.0.0-alpha.9", "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 8972c022c44e8..98f3a0e802567 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.8", + "version": "8.0.0-alpha.9", "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 39f6aa7631b35..80b6639ce1211 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.8", + "version": "8.0.0-alpha.9", "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 c02dbc48ebb76..2a2a3c1e8b4c0 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.8", + "version": "8.0.0-alpha.9", "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 1e4fdb4a419af..a146bc2f4f70a 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.8", + "version": "8.0.0-alpha.9", "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 683d8a2b6d98f..8c834cd04eed5 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.8", + "version": "8.0.0-alpha.9", "description": "The community edition of the Tree View components (MUI X).", "author": "MUI Team", "main": "src/index.ts",