Skip to content

Commit 0ebb3a1

Browse files
authored
v7.1.1 (#46237)
1 parent 65e7dac commit 0ebb3a1

File tree

20 files changed

+93
-21
lines changed

20 files changed

+93
-21
lines changed

CHANGELOG.md

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,77 @@
11
# [Versions](https://mui.com/versions/)
22

3+
## 7.1.1
4+
5+
<!-- generated comparing v7.1.0..master -->
6+
7+
_May 30, 2025_
8+
9+
A big thanks to the 15 contributors who made this release possible.
10+
11+
12+
13+
- [Autocomplete] Fix label shrink issue when `renderValue` is used with empty array in multiple mode (#46047) @ZeeshanTamboli
14+
- [Autocomplete] Prevent `renderValue` from being skipped when value is 0 (#46145) @LakshitAgarwal
15+
- [Autocomplete] Add note in JSDoc for non-TextField components in `renderInput` (#46141) @khllbnomrn
16+
- [Chip] Add slots and slotProps (#46098) @sai6855
17+
- [Menu] Remove depreacted `MenuListProps` from demos (#46144) @sai6855
18+
- [TablePaginationActions] Export TablePaginationActions as new component (#46149) @sai6855
19+
- [SnackbarContent] Fix `square` prop not working (#46196) @0210shivam
20+
- [SnackbarContent] Fix error when theme value is CSS variable (#46198) @0210shivam
21+
22+
23+
24+
- Add package name option (#45977) @siriwatknp
25+
26+
27+
28+
- Skip styled component from being transformed (#46129) @siriwatknp
29+
- Update the type for borderRadius (#46154) @codiini
30+
31+
32+
33+
- Fix variant props callback type to spread `ownerState` (#46187) @siriwatknp
34+
35+
36+
37+
- Fix RTL does not work with CSS layer with a new package (#46230) @siriwatknp
38+
39+
### Docs
40+
41+
- [Dialog] Remove deprecated TransitionComponent from demo (#46185) @sai6855
42+
- [Grid] Remove direction `column` and `column-reverse` from the demo (#46127) @0210shivam
43+
- [Grid] Update grid migration guide (#46057) @sai6855
44+
- [templates] Fix rendering of logos in dark mode (#46221) @sai6855
45+
- [ToggleButtonGroup] Add spacing demo (#46058) @sai6855
46+
- Fix typo in dark mode docs (#46229) @ZeeshanTamboli
47+
- Clarify Next.js + Tailwind CSS v3 integration requirements (#46176) @chaitanyasharma1011
48+
- Fix GridLegacy docs order (#46135) @oliviertassinari
49+
- Update upgrade guide for resolution of `react-is` (#46002) @siriwatknp
50+
- Remove oudated scaffoldhub ad (#46090) @oliviertassinari
51+
- Show how to target global state classes with CSS Modules (#45992) @RubemMazzetto
52+
53+
### Core
54+
55+
- [code-infra] Add plugin to check for index file access (#46178) @Janpot
56+
- [code-infra] Bump eslint to v9 (#46222) @brijeshb42
57+
- [code-infra] Move packages to mui/mui-public (#46155) @Janpot
58+
- [code-infra] Move `chai` to peerDep (#46227) @JCQuintas
59+
- [code-infra] Avoid loading barrel file during type checking (#46177) @Janpot
60+
- [code-infra] Remove unnecessary ref from `HighlightedCode` component (#46151) @ZeeshanTamboli
61+
- [code-infra] Import mocha type instead of global (#46108) @JCQuintas
62+
- [code-infra] Dependabot also create branches (795a481) @oliviertassinari
63+
- [code-infra] Avoid running continuous release on forks (#46103) @Janpot
64+
- [code-infra] Remove checkout job altogether (#46100) @Janpot
65+
- [code-infra] Remove required checkout workflows in circleci (#46099) @Janpot
66+
- Run pnpm docs:sync-team (c8f1da5) @oliviertassinari
67+
- Upgrade MUI X packages to v8 (#45990) @KenanYusuf
68+
- Minor detail to reduce confusion (4c64b72) @oliviertassinari
69+
- Update security.md (#45839) @DiegoAndai
70+
- Apply yml convention, blank line only at top level (f273220) @oliviertassinari
71+
- Add comment that lab should be in alpha (#45999) @oliviertassinari
72+
73+
All contributors of this release in alphabetical order: @0210shivam, @brijeshb42, @chaitanyasharma1011, @codiini, @DiegoAndai, @Janpot, @JCQuintas, @KenanYusuf, @khllbnomrn, @LakshitAgarwal, @oliviertassinari, @RubemMazzetto, @sai6855, @siriwatknp, @ZeeshanTamboli
74+
375
## 7.1.0
476

577
<!-- generated comparing v7.0.2..master -->

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/monorepo",
3-
"version": "7.1.0",
3+
"version": "7.1.1",
44
"private": true,
55
"scripts": {
66
"preinstall": "npx only-allow pnpm",

packages-internal/scripts/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/internal-scripts",
3-
"version": "2.0.8",
3+
"version": "2.0.9",
44
"author": "MUI Team",
55
"description": "Utilities supporting MUI libraries build and docs generation. This is an internal package not meant for general use.",
66
"main": "build/index.js",

packages-internal/test-utils/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/internal-test-utils",
3-
"version": "2.0.8",
3+
"version": "2.0.9",
44
"author": "MUI Team",
55
"description": "Utilities for MUI tests. This is an internal package not meant for general use.",
66
"main": "./build/index.js",
@@ -65,9 +65,9 @@
6565
"typescript": "^5.8.3"
6666
},
6767
"peerDependencies": {
68+
"chai": "^4.5.0 || ^5.0.0",
6869
"react": "^18.0.0 || ^19.0.0",
69-
"react-dom": "^18.0.0 || ^19.0.0",
70-
"chai": "^4.5.0 || ^5.0.0"
70+
"react-dom": "^18.0.0 || ^19.0.0"
7171
},
7272
"publishConfig": {
7373
"access": "public"

packages/markdown/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/internal-markdown",
3-
"version": "2.0.5",
3+
"version": "2.0.6",
44
"author": "MUI Team",
55
"description": "MUI markdown parser. This is an internal package not meant for general use.",
66
"main": "./index.mjs",

packages/mui-codemod/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/codemod",
3-
"version": "7.1.0",
3+
"version": "7.1.1",
44
"author": "MUI Team",
55
"description": "Codemod scripts for Material UI.",
66
"bin": "./codemod.js",

packages/mui-core-downloads-tracker/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/core-downloads-tracker",
3-
"version": "7.1.0",
3+
"version": "7.1.1",
44
"author": "MUI Team",
55
"description": "Internal package to track number of downloads of our design system libraries.",
66
"files": [],

packages/mui-docs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/docs",
3-
"version": "7.1.0",
3+
"version": "7.1.1",
44
"author": "MUI Team",
55
"description": "MUI Docs - Documentation building blocks.",
66
"main": "./src/index.js",

packages/mui-envinfo/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/envinfo",
3-
"version": "2.0.37",
3+
"version": "2.0.38",
44
"author": "MUI Team",
55
"description": "Logs infos about the environment relevant to @mui/*.",
66
"bin": "./envinfo.js",

packages/mui-icons-material/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/icons-material",
3-
"version": "7.1.0",
3+
"version": "7.1.1",
44
"author": "MUI Team",
55
"description": "Material Design icons distributed as SVG React components.",
66
"main": "./src/index.js",

packages/mui-lab/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@mui/lab",
33
"//": "version should be 'alpha' at all time",
4-
"version": "7.0.0-beta.12",
4+
"version": "7.0.0-beta.13",
55
"author": "MUI Team",
66
"description": "Laboratory for new Material UI modules.",
77
"main": "./src/index.js",

packages/mui-material-nextjs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/material-nextjs",
3-
"version": "7.1.0",
3+
"version": "7.1.1",
44
"author": "MUI Team",
55
"description": "Collection of utilities for integration between Material UI and Next.js.",
66
"keywords": [

packages/mui-material-pigment-css/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/material-pigment-css",
3-
"version": "7.1.0",
3+
"version": "7.1.1",
44
"author": "MUI Team",
55
"description": "A wrapper over Pigment CSS that provides the same styled and theming APIs as Material UI.",
66
"main": "./src/index.ts",

packages/mui-material/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/material",
3-
"version": "7.1.0",
3+
"version": "7.1.1",
44
"author": "MUI Team",
55
"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.",
66
"main": "./src/index.ts",

packages/mui-private-theming/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/private-theming",
3-
"version": "7.1.0",
3+
"version": "7.1.1",
44
"author": "MUI Team",
55
"description": "Private - The React theme context to be shared between `@mui/styles` and `@mui/material`.",
66
"main": "./src/index.js",

packages/mui-styled-engine-sc/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/styled-engine-sc",
3-
"version": "7.1.0",
3+
"version": "7.1.1",
44
"author": "MUI Team",
55
"description": "styled() API wrapper package for styled-components.",
66
"main": "./src/index.js",

packages/mui-styled-engine/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/styled-engine",
3-
"version": "7.1.0",
3+
"version": "7.1.1",
44
"author": "MUI Team",
55
"description": "styled() API wrapper package for emotion.",
66
"main": "./src/index.js",

packages/mui-system/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/system",
3-
"version": "7.1.0",
3+
"version": "7.1.1",
44
"author": "MUI Team",
55
"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.",
66
"main": "./src/index.js",

packages/mui-types/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/types",
3-
"version": "7.4.2",
3+
"version": "7.4.3",
44
"author": "MUI Team",
55
"description": "Utility types for Material UI.",
66
"types": "./index.d.ts",

packages/mui-utils/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/utils",
3-
"version": "7.1.0",
3+
"version": "7.1.1",
44
"author": "MUI Team",
55
"description": "Utility functions for React components.",
66
"main": "./src/index.ts",

0 commit comments

Comments
 (0)