Skip to content

Commit f9949a8

Browse files
authored
v6.4.0 (#45013)
1 parent 603843b commit f9949a8

File tree

19 files changed

+70
-40
lines changed

19 files changed

+70
-40
lines changed

CHANGELOG.md

+49
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,54 @@
11
# [Versions](https://mui.com/versions/)
22

3+
## 6.4.0
4+
5+
<!-- generated comparing v6.3.1..master -->
6+
7+
_Jan 13, 2025_
8+
9+
A big thanks to the 16 contributors who made this release possible. Here are some highlights ✨:
10+
11+
- Added [`loading` prop](https://mui.com/material-ui/react-button/#loading-2) to the `Button` and `IconButton` components (#44637) @siriwatknp
12+
13+
14+
15+
- [Alert] complete `slots` and `slotProps` (#44971) @siriwatknp
16+
- [Autocomplete] Sync runtime and TS types for key in grouped options (#44862) @aarongarciah
17+
- [Button] Add `loading` prop (#44637) @siriwatknp
18+
- [CardHeader] Deprecate `*TypographyProps` and complete `slots`, `slotProps` (#44729) @siriwatknp
19+
- [CircularProgress] Improve indeterminate animation to be symmetric and smooth (#44934) @yashdev16
20+
- [LinearProgress] Deprecate composed classes (#44933) @headironc
21+
- [Link] Fix error for using custom palette with underline (#44927) @siriwatknp
22+
- [Select] Do not set `aria-controls` when closed (#44919) @siddhantantil39
23+
- [Select] Add missing root class (#44928) @sai6855
24+
- [Slider] Set onChangeCommitted to receive the last argument passed to onChange (#44795) @good-jinu
25+
- Add `mergeSlotProps` for extending components (#44809) @siriwatknp
26+
- Update `mergeSlotProps` to merge `style` (#44959) @siriwatknp
27+
- Fix slots typing for Tooltip and StepLabel (#44985) @siriwatknp
28+
- Remove unnecessary blank lines (#44980) @sai6855
29+
30+
### Docs
31+
32+
- [docs] Fix Dashboard sidenav sroll (#44876) @oliviertassinari
33+
- [docs] Fix broken anchor link to w3.org (c51af8e) @oliviertassinari
34+
- [docs] Add details on complementary Menu components (#44957) @samuelsycamore
35+
- [docs] Remove misleading messaging on MD3 support (#44953) @mnajdova
36+
- [docs] Fix code copy button obscuring on small screen sizes (#44861) @ZeeshanTamboli
37+
- [docs] Remove more instances of Adobe XD (#44956) @samuelsycamore
38+
- [docs] Remove Adobe XD chips, links, and mentions (#44909) @samuelsycamore
39+
- [docs] Fix incorrect rendering in Typography docs (#44937) @iaziz11
40+
41+
### Core
42+
43+
- [core] Remove redundant screenshots (#44877) @oliviertassinari
44+
- [core] Remove Suspense and clock mocking from regressions and e2e tests (#44935) @DiegoAndai
45+
- [code-infra] Allow react@18 on `@mui/internal-test-utils` (#45023) @LukasTy
46+
- [code-infra] Stabilize flaky pigment progressbar tests (#44969) @Janpot
47+
- [example] Update the CDN example to adapt React 19. (#44979) @IceOfSummer
48+
- [figma] Clarify that Material UI Sync plugin is experimental (#44975) @oliviertassinari
49+
50+
All contributors of this release in alphabetical order: @aarongarciah, @DiegoAndai, @good-jinu, @headironc, @iaziz11, @IceOfSummer, @Janpot, @LukasTy, @mnajdova, @oliviertassinari, @sai6855, @samuelsycamore, @siddhantantil39, @siriwatknp, @yashdev16, @ZeeshanTamboli
51+
352
## 6.3.1
453

554
<!-- generated comparing v6.3.0..master -->

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/monorepo",
3-
"version": "6.3.1",
3+
"version": "6.4.0",
44
"private": true,
55
"scripts": {
66
"preinstall": "npx only-allow pnpm",

packages-internal/scripts/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/internal-scripts",
3-
"version": "1.0.32",
3+
"version": "1.0.33",
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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/internal-test-utils",
3-
"version": "1.0.25",
3+
"version": "1.0.26",
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",

packages/markdown/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/internal-markdown",
3-
"version": "1.0.24",
3+
"version": "1.0.25",
44
"author": "MUI Team",
55
"description": "MUI markdown parser. This is an internal package not meant for general use.",
66
"main": "./index.js",

packages/mui-codemod/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/codemod",
3-
"version": "6.3.1",
3+
"version": "6.4.0",
44
"bin": "./codemod.js",
55
"private": false,
66
"author": "MUI Team",

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/core-downloads-tracker",
3-
"version": "6.3.1",
3+
"version": "6.4.0",
44
"private": false,
55
"author": "MUI Team",
66
"description": "Internal package to track number of downloads of our design system libraries",

packages/mui-docs/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/docs",
3-
"version": "6.3.1",
3+
"version": "6.4.0",
44
"private": false,
55
"author": "MUI Team",
66
"description": "MUI Docs - Documentation building blocks.",

packages/mui-icons-material/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/icons-material",
3-
"version": "6.3.1",
3+
"version": "6.4.0",
44
"private": false,
55
"author": "MUI Team",
66
"description": "Material Design icons distributed as SVG React components.",

packages/mui-lab/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/lab",
3-
"version": "6.0.0-beta.22",
3+
"version": "6.0.0-beta.23",
44
"private": false,
55
"author": "MUI Team",
66
"description": "Laboratory for new MUI modules.",

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/material-pigment-css",
3-
"version": "6.3.1",
3+
"version": "6.4.0",
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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/material",
3-
"version": "6.3.1",
3+
"version": "6.4.0",
44
"private": false,
55
"author": "MUI Team",
66
"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.",

packages/mui-private-theming/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/private-theming",
3-
"version": "6.3.1",
3+
"version": "6.4.0",
44
"private": false,
55
"author": "MUI Team",
66
"description": "Private - The React theme context to be shared between `@mui/styles` and `@mui/material`.",

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/styled-engine-sc",
3-
"version": "6.3.1",
3+
"version": "6.4.0",
44
"private": false,
55
"author": "MUI Team",
66
"description": "styled() API wrapper package for styled-components.",

packages/mui-styled-engine/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/styled-engine",
3-
"version": "6.3.1",
3+
"version": "6.4.0",
44
"private": false,
55
"author": "MUI Team",
66
"description": "styled() API wrapper package for emotion.",

packages/mui-styles/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/styles",
3-
"version": "6.3.1",
3+
"version": "6.4.0",
44
"private": false,
55
"author": "MUI Team",
66
"description": "MUI Styles - The legacy JSS-based styling solution of Material UI.",

packages/mui-system/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/system",
3-
"version": "6.3.1",
3+
"version": "6.4.0",
44
"private": false,
55
"author": "MUI Team",
66
"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.",

packages/mui-utils/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/utils",
3-
"version": "6.3.1",
3+
"version": "6.4.0",
44
"private": false,
55
"author": "MUI Team",
66
"description": "Utility functions for React components.",

pnpm-lock.yaml

+4-23
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)