@mui/icons-material 6.3.1 → 6.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +49 -0
- package/index.js +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,54 @@
|
|
|
1
1
|
# [Versions](https://mui.com/versions/)
|
|
2
2
|
|
|
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
|
+
### `@mui/material@6.4.0`
|
|
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
|
+
|
|
3
52
|
## 6.3.1
|
|
4
53
|
|
|
5
54
|
<!-- generated comparing v6.3.0..master -->
|
package/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mui/icons-material",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.4.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"author": "MUI Team",
|
|
6
6
|
"description": "Material Design icons distributed as SVG React components.",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"peerDependencies": {
|
|
34
34
|
"@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0",
|
|
35
35
|
"react": "^17.0.0 || ^18.0.0 || ^19.0.0",
|
|
36
|
-
"@mui/material": "^6.
|
|
36
|
+
"@mui/material": "^6.4.0"
|
|
37
37
|
},
|
|
38
38
|
"peerDependenciesMeta": {
|
|
39
39
|
"@types/react": {
|