@mui/icons-material 6.3.1 → 6.4.1

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +91 -0
  2. package/index.js +1 -1
  3. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -1,5 +1,96 @@
1
1
  # [Versions](https://mui.com/versions/)
2
2
 
3
+ ## 6.4.1
4
+
5
+ <!-- generated comparing v6.4.0..master -->
6
+
7
+ _Jan 21, 2025_
8
+
9
+ A big thanks to the 9 contributors who made this release possible.
10
+
11
+ ### `@mui/material@6.4.1`
12
+
13
+ - [ButtonBase] Export types used in ButtonBase props (#43530) @Janpot
14
+ - [Dialog] Add slots and slotProps (#44792) @sai6855
15
+ - [Drawer] Deprecate composed classes (#44870) @yash49
16
+ - [IconButton] Set default loading to `null` (#45057) @siriwatknp
17
+ - [ListItem] Add codemod for deprecated props (#45022) @sai6855
18
+ - [Modal] Add migration guide and codemod for deprecated props (#45021) @sai6855
19
+ - [TextField] Fix filled state to be synced with autofill (#44135) @DiegoAndai
20
+
21
+ ### `@mui/system@6.4.1`
22
+
23
+ - Fix dark mode flicker using `useEnhancedEffect` (#44812) @siriwatknp
24
+
25
+ ### `@mui/utils@6.4.1`
26
+
27
+ - Do not deep merge React component (#45058) @siriwatknp
28
+
29
+ ### Docs
30
+
31
+ - Fix typo (#45070) @Fullchee
32
+ - Improve Toolpad templates section (#44914) @bharatkashyap
33
+ - Fix expand / collapse icons orientation (#44989) @zanivan
34
+ - Rename "Base UI" to "MUI Base" in all text (#45060) @mj12albert
35
+ - Add @mui/base deprecation callout (#45030) @mj12albert
36
+ - Update @mui/base deprecation message (#45064) @mj12albert
37
+
38
+ ### Core
39
+
40
+ - [code-infra] Add "use client" directive to files with React APIs (#45036) @Janpot
41
+ - [docs] 301 redirect `/base-ui` to `base-ui.com` (#45061) @mj12albert
42
+
43
+ All contributors of this release in alphabetical order: @bharatkashyap, @DiegoAndai, @Fullchee, @Janpot, @mj12albert, @sai6855, @siriwatknp, @yash49, @zanivan
44
+
45
+ ## 6.4.0
46
+
47
+ <!-- generated comparing v6.3.1..master -->
48
+
49
+ _Jan 13, 2025_
50
+
51
+ A big thanks to the 16 contributors who made this release possible. Here are some highlights ✨:
52
+
53
+ - Added [`loading` prop](https://mui.com/material-ui/react-button/#loading-2) to the `Button` and `IconButton` components (#44637) @siriwatknp
54
+
55
+ ### `@mui/material@6.4.0`
56
+
57
+ - [Alert] complete `slots` and `slotProps` (#44971) @siriwatknp
58
+ - [Autocomplete] Sync runtime and TS types for key in grouped options (#44862) @aarongarciah
59
+ - [Button] Add `loading` prop (#44637) @siriwatknp
60
+ - [CardHeader] Deprecate `*TypographyProps` and complete `slots`, `slotProps` (#44729) @siriwatknp
61
+ - [CircularProgress] Improve indeterminate animation to be symmetric and smooth (#44934) @yashdev16
62
+ - [LinearProgress] Deprecate composed classes (#44933) @headironc
63
+ - [Link] Fix error for using custom palette with underline (#44927) @siriwatknp
64
+ - [Select] Do not set `aria-controls` when closed (#44919) @siddhantantil39
65
+ - [Select] Add missing root class (#44928) @sai6855
66
+ - [Slider] Set onChangeCommitted to receive the last argument passed to onChange (#44795) @good-jinu
67
+ - Add `mergeSlotProps` for extending components (#44809) @siriwatknp
68
+ - Update `mergeSlotProps` to merge `style` (#44959) @siriwatknp
69
+ - Fix slots typing for Tooltip and StepLabel (#44985) @siriwatknp
70
+ - Remove unnecessary blank lines (#44980) @sai6855
71
+
72
+ ### Docs
73
+
74
+ - [docs] Fix Dashboard sidenav sroll (#44876) @oliviertassinari
75
+ - [docs] Fix broken anchor link to w3.org (c51af8e) @oliviertassinari
76
+ - [docs] Add details on complementary Menu components (#44957) @samuelsycamore
77
+ - [docs] Remove misleading messaging on MD3 support (#44953) @mnajdova
78
+ - [docs] Fix code copy button obscuring on small screen sizes (#44861) @ZeeshanTamboli
79
+ - [docs] Remove more instances of Adobe XD (#44956) @samuelsycamore
80
+ - [docs] Remove Adobe XD chips, links, and mentions (#44909) @samuelsycamore
81
+ - [docs] Fix incorrect rendering in Typography docs (#44937) @iaziz11
82
+
83
+ ### Core
84
+
85
+ - [core] Remove redundant screenshots (#44877) @oliviertassinari
86
+ - [core] Remove Suspense and clock mocking from regressions and e2e tests (#44935) @DiegoAndai
87
+ - [code-infra] Allow react@18 on `@mui/internal-test-utils` (#45023) @LukasTy
88
+ - [code-infra] Stabilize flaky pigment progressbar tests (#44969) @Janpot
89
+ - [example] Update the CDN example to adapt React 19. (#44979) @IceOfSummer
90
+ - [figma] Clarify that Material UI Sync plugin is experimental (#44975) @oliviertassinari
91
+
92
+ 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
93
+
3
94
  ## 6.3.1
4
95
 
5
96
  <!-- generated comparing v6.3.0..master -->
package/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/icons-material v6.3.1
2
+ * @mui/icons-material v6.4.1
3
3
  *
4
4
  * @license MIT
5
5
  * This source code is licensed under the MIT license found in the
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mui/icons-material",
3
- "version": "6.3.1",
3
+ "version": "6.4.1",
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.3.1"
36
+ "@mui/material": "^6.4.1"
37
37
  },
38
38
  "peerDependenciesMeta": {
39
39
  "@types/react": {