From 2a15dd74c76bacbc867a7313fdc2c42c6168327c Mon Sep 17 00:00:00 2001 From: Siriwat K Date: Fri, 5 Jul 2024 11:20:49 +0700 Subject: [PATCH] v6.0.0-alpha.14 (#42831) --- .codesandbox/ci.json | 8 +-- CHANGELOG.md | 52 +++++++++++++++++++ package.json | 2 +- packages-internal/scripts/package.json | 2 +- packages-internal/test-utils/package.json | 2 +- packages/markdown/package.json | 2 +- packages/mui-base/package.json | 2 +- packages/mui-codemod/package.json | 2 +- .../mui-core-downloads-tracker/package.json | 2 +- packages/mui-docs/package.json | 2 +- packages/mui-icons-material/package.json | 2 +- packages/mui-joy/package.json | 2 +- packages/mui-lab/package.json | 2 +- packages/mui-material/package.json | 2 +- packages/mui-private-theming/package.json | 2 +- packages/mui-styled-engine-sc/package.json | 2 +- packages/mui-styled-engine/package.json | 2 +- packages/mui-styles/package.json | 2 +- packages/mui-system/package.json | 2 +- packages/mui-utils/package.json | 2 +- 20 files changed, 71 insertions(+), 25 deletions(-) diff --git a/.codesandbox/ci.json b/.codesandbox/ci.json index 0b32ace09f7d99..46d7527f333ae5 100644 --- a/.codesandbox/ci.json +++ b/.codesandbox/ci.json @@ -10,7 +10,6 @@ "packages/mui-core-downloads-tracker", "packages/mui-docs", "packages/mui-icons-material", - "packages/mui-joy", "packages/mui-lab", "packages/mui-material-nextjs", "packages/mui-material", @@ -36,7 +35,6 @@ "@mui/internal-docs-utils": "packages-internal/docs-utils", "@mui/internal-markdown": "packages/markdown", "@mui/internal-scripts": "packages-internal/scripts", - "@mui/joy": "packages/mui-joy/build", "@mui/lab": "packages/mui-lab/build", "@mui/material-nextjs": "packages/mui-material-nextjs/build", "@mui/material": "packages/mui-material/build", @@ -48,10 +46,6 @@ "@mui/types": "packages/mui-types/build", "@mui/utils": "packages/mui-utils/build" }, - "sandboxes": [ - "/examples/material-ui-cra-ts", - "/examples/joy-ui-cra-ts", - "/examples/base-ui-cra-ts" - ], + "sandboxes": ["/examples/material-ui-cra-ts", "/examples/base-ui-cra-ts"], "silent": true } diff --git a/CHANGELOG.md b/CHANGELOG.md index a82c66d2c37f14..03f794f2ee39cb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,57 @@ # [Versions](https://mui.com/versions/) +## v6.0.0-alpha.14 + + + +_Jul 3, 2024_ + +A big thanks to the 12 contributors who made this release possible. Here are some highlights ✨: + +- ✨ Updated Grid v2 to match PigmentGrid (#42742) @DiegoAndai + +### `@mui/material@v6.0.0-alpha.14` + +#### BREAKING CHANGES + +- [Grid] Update Grid props to match PigmentGrid (#42742) @DiegoAndai + + Use the codemod below to migrate the props: + + ```bash + npx @mui/codemod@next v6.0.0/grid-v2-props /path/to/folder + ``` + +#### Changes + +- [Alert] Add ability to override slot props (#42787) @alexey-kozlenkov +- [Dialog] Revert incorrect textAlign style removal (#42778) @DiegoAndai +- [theme] Support `CssVarsTheme` in `responsiveFontSizes` return type (#42786) @jxdp + +### Docs + +- [material-ui] Add some writing tweaks to v6 migration page (#42623) @danilo-leal +- [material-ui] Fix issues reported by react-compiler in docs folder (#42830) @sai6855 +- [material-ui] Add some writing tweaks to v6 migration page (#42623) @danilo-leal +- [base-ui] Fix wrong description for `UseTabParameters.onChange` (#42749) @ohgree +- Fix 301 MDN redirections @oliviertassinari + +### Core + +- [core] Bump React to 18.3.1 (#42047) @renovate[bot] +- [core] Revert lint for `useThemeProps` (#42817) @siriwatknp +- [core] Remove useIsFocusVisible util (#42467) @DiegoAndai +- [core] Remove react-test-renderer (#42784) @aarongarciah +- [core][mui-utils] Remove remaining IE11 references (#42777) @DiegoAndai +- [code-infra] Move `HighlightedCode` test into `@mui/docs` package (#42835) @LukasTy +- [code-infra] Cleanup `@mui/docs` usage and legacy re-exports (#42833) @LukasTy +- [docs-infra] Fix React Compiler ESLint issues in website components (#42566) @aarongarciah +- [docs-infra] Add batch of design polish (#42823) @danilo-leal +- [test][mui-utils] Remove usages of deprecated react-dom APIs (#42780) @aarongarciah +- [test][joy-ui][Autocomplete] Fix spread key error in test (#42775) @aarongarciah + +All contributors of this release in alphabetical order: @aarongarciah, @alexey-kozlenkov, @danilo-leal, @DiegoAndai, @Janpot, @jxdp, @LukasTy, @ohgree, @oliviertassinari, @renovate[bot], @sai6855, @siriwatknp + ## v6.0.0-alpha.13 diff --git a/package.json b/package.json index 874cf263e71bdd..0b0d1e76fd2028 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@mui/monorepo", - "version": "6.0.0-alpha.13", + "version": "6.0.0-alpha.14", "private": true, "scripts": { "preinstall": "npx only-allow pnpm", diff --git a/packages-internal/scripts/package.json b/packages-internal/scripts/package.json index 09c22bc0222e68..bc741b449f2c01 100644 --- a/packages-internal/scripts/package.json +++ b/packages-internal/scripts/package.json @@ -1,6 +1,6 @@ { "name": "@mui/internal-scripts", - "version": "1.0.11", + "version": "1.0.12", "author": "MUI Team", "description": "Utilities supporting MUI libraries build and docs generation. This is an internal package not meant for general use.", "main": "build/index.js", diff --git a/packages-internal/test-utils/package.json b/packages-internal/test-utils/package.json index 1e21cddde721bc..f3c0f6086cc3f7 100644 --- a/packages-internal/test-utils/package.json +++ b/packages-internal/test-utils/package.json @@ -1,6 +1,6 @@ { "name": "@mui/internal-test-utils", - "version": "1.0.3", + "version": "1.0.4", "author": "MUI Team", "description": "Utilities for MUI tests. This is an internal package not meant for general use.", "main": "./build/index.js", diff --git a/packages/markdown/package.json b/packages/markdown/package.json index 08fbb28d737020..bcb42dfdf2ede1 100644 --- a/packages/markdown/package.json +++ b/packages/markdown/package.json @@ -1,6 +1,6 @@ { "name": "@mui/internal-markdown", - "version": "1.0.6", + "version": "1.0.7", "author": "MUI Team", "description": "MUI markdown parser. This is an internal package not meant for general use.", "main": "./index.js", diff --git a/packages/mui-base/package.json b/packages/mui-base/package.json index 411a1db3c47e82..fee1c353b87f05 100644 --- a/packages/mui-base/package.json +++ b/packages/mui-base/package.json @@ -1,6 +1,6 @@ { "name": "@mui/base", - "version": "5.0.0-beta.51", + "version": "5.0.0-beta.52", "private": false, "author": "MUI Team", "description": "Base UI is a library of headless ('unstyled') React components and low-level hooks. You gain complete control over your app's CSS and accessibility features.", diff --git a/packages/mui-codemod/package.json b/packages/mui-codemod/package.json index c5bb5c562b1d7d..cbddcb1a860e12 100644 --- a/packages/mui-codemod/package.json +++ b/packages/mui-codemod/package.json @@ -1,6 +1,6 @@ { "name": "@mui/codemod", - "version": "6.0.0-alpha.12", + "version": "6.0.0-alpha.14", "bin": "./codemod.js", "private": false, "author": "MUI Team", diff --git a/packages/mui-core-downloads-tracker/package.json b/packages/mui-core-downloads-tracker/package.json index 3c5bb7187dbb28..e2aa4b35670400 100644 --- a/packages/mui-core-downloads-tracker/package.json +++ b/packages/mui-core-downloads-tracker/package.json @@ -1,6 +1,6 @@ { "name": "@mui/core-downloads-tracker", - "version": "6.0.0-alpha.13", + "version": "6.0.0-alpha.14", "private": false, "author": "MUI Team", "description": "Internal package to track number of downloads of our design system libraries", diff --git a/packages/mui-docs/package.json b/packages/mui-docs/package.json index fbd8b6ffc9f751..af6f7ee7e35777 100644 --- a/packages/mui-docs/package.json +++ b/packages/mui-docs/package.json @@ -1,6 +1,6 @@ { "name": "@mui/docs", - "version": "6.0.0-alpha.13", + "version": "6.0.0-alpha.14", "private": false, "author": "MUI Team", "description": "MUI Docs - Documentation building blocks.", diff --git a/packages/mui-icons-material/package.json b/packages/mui-icons-material/package.json index b214a34ff000df..cb0d96cf380c43 100644 --- a/packages/mui-icons-material/package.json +++ b/packages/mui-icons-material/package.json @@ -1,6 +1,6 @@ { "name": "@mui/icons-material", - "version": "6.0.0-alpha.13", + "version": "6.0.0-alpha.14", "private": false, "author": "MUI Team", "description": "Material Design icons distributed as SVG React components.", diff --git a/packages/mui-joy/package.json b/packages/mui-joy/package.json index 257d4d357f276a..fdf16ed9d65f43 100644 --- a/packages/mui-joy/package.json +++ b/packages/mui-joy/package.json @@ -1,7 +1,7 @@ { "name": "@mui/joy", "version": "5.0.0-beta.46", - "private": false, + "private": true, "author": "MUI Team", "description": "Joy UI is an open-source React component library that implements MUI's own design principles. It's comprehensive and can be used in production out of the box.", "main": "./src/index.ts", diff --git a/packages/mui-lab/package.json b/packages/mui-lab/package.json index 728c6d3c4175fa..7b2483285e8918 100644 --- a/packages/mui-lab/package.json +++ b/packages/mui-lab/package.json @@ -1,6 +1,6 @@ { "name": "@mui/lab", - "version": "6.0.0-alpha.13", + "version": "6.0.0-alpha.14", "private": false, "author": "MUI Team", "description": "Laboratory for new MUI modules.", diff --git a/packages/mui-material/package.json b/packages/mui-material/package.json index 796a2501a83521..eb9d6bab33ad09 100644 --- a/packages/mui-material/package.json +++ b/packages/mui-material/package.json @@ -1,6 +1,6 @@ { "name": "@mui/material", - "version": "6.0.0-alpha.13", + "version": "6.0.0-alpha.14", "private": false, "author": "MUI Team", "description": "Material UI is an open-source React component library that implements Google's Material Design. It's comprehensive and can be used in production out of the box.", diff --git a/packages/mui-private-theming/package.json b/packages/mui-private-theming/package.json index 0850bf30759c20..801c444c501e33 100644 --- a/packages/mui-private-theming/package.json +++ b/packages/mui-private-theming/package.json @@ -1,6 +1,6 @@ { "name": "@mui/private-theming", - "version": "6.0.0-alpha.13", + "version": "6.0.0-alpha.14", "private": false, "author": "MUI Team", "description": "Private - The React theme context to be shared between `@mui/styles` and `@mui/material`.", diff --git a/packages/mui-styled-engine-sc/package.json b/packages/mui-styled-engine-sc/package.json index d6372cc092fcd8..fb4c2d8f22c795 100644 --- a/packages/mui-styled-engine-sc/package.json +++ b/packages/mui-styled-engine-sc/package.json @@ -1,6 +1,6 @@ { "name": "@mui/styled-engine-sc", - "version": "6.0.0-alpha.28", + "version": "6.0.0-alpha.29", "private": false, "author": "MUI Team", "description": "styled() API wrapper package for styled-components.", diff --git a/packages/mui-styled-engine/package.json b/packages/mui-styled-engine/package.json index 9b26b797cb307a..81ebffdd70161e 100644 --- a/packages/mui-styled-engine/package.json +++ b/packages/mui-styled-engine/package.json @@ -1,6 +1,6 @@ { "name": "@mui/styled-engine", - "version": "6.0.0-alpha.13", + "version": "6.0.0-alpha.14", "private": false, "author": "MUI Team", "description": "styled() API wrapper package for emotion.", diff --git a/packages/mui-styles/package.json b/packages/mui-styles/package.json index 5ee480386f8751..7d413375af1592 100644 --- a/packages/mui-styles/package.json +++ b/packages/mui-styles/package.json @@ -1,6 +1,6 @@ { "name": "@mui/styles", - "version": "6.0.0-alpha.13", + "version": "6.0.0-alpha.14", "private": false, "author": "MUI Team", "description": "MUI Styles - The legacy JSS-based styling solution of Material UI.", diff --git a/packages/mui-system/package.json b/packages/mui-system/package.json index f70bbfc9eb1c15..c42f1de7aa1793 100644 --- a/packages/mui-system/package.json +++ b/packages/mui-system/package.json @@ -1,6 +1,6 @@ { "name": "@mui/system", - "version": "6.0.0-alpha.13", + "version": "6.0.0-alpha.14", "private": false, "author": "MUI Team", "description": "MUI System is a set of CSS utilities to help you build custom designs more efficiently. It makes it possible to rapidly lay out custom designs.", diff --git a/packages/mui-utils/package.json b/packages/mui-utils/package.json index 1b88e5f62000dd..a37e95b9f01833 100644 --- a/packages/mui-utils/package.json +++ b/packages/mui-utils/package.json @@ -1,6 +1,6 @@ { "name": "@mui/utils", - "version": "6.0.0-alpha.13", + "version": "6.0.0-alpha.14", "private": false, "author": "MUI Team", "description": "Utility functions for React components.",