@mui/codemod 7.2.0 → 7.3.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.
Files changed (26) hide show
  1. package/CHANGELOG.md +794 -0
  2. package/README.md +21 -0
  3. package/package.json +30 -16
  4. package/v5.0.0/top-level-imports.js +1 -1
  5. package/v5.0.0/top-level-imports.test/actual.js +2 -2
  6. package/v5.0.0/top-level-imports.test/expected.js +2 -0
  7. package/v7.0.0/theme-color-functions/index.js +13 -0
  8. package/v7.0.0/theme-color-functions/test-cases/actual.js +21 -0
  9. package/v7.0.0/theme-color-functions/test-cases/darken-basic.actual.js +20 -0
  10. package/v7.0.0/theme-color-functions/test-cases/darken-basic.expected.js +19 -0
  11. package/v7.0.0/theme-color-functions/test-cases/expected.js +20 -0
  12. package/v7.0.0/theme-color-functions/test-cases/lighten-basic.actual.js +13 -0
  13. package/v7.0.0/theme-color-functions/test-cases/lighten-basic.expected.js +12 -0
  14. package/v7.0.0/theme-color-functions/test-cases/mixed-functions.actual.js +17 -0
  15. package/v7.0.0/theme-color-functions/test-cases/mixed-functions.expected.js +16 -0
  16. package/v7.0.0/theme-color-functions/test-cases/mixed-imports.actual.js +19 -0
  17. package/v7.0.0/theme-color-functions/test-cases/mixed-imports.expected.js +18 -0
  18. package/v7.0.0/theme-color-functions/test-cases/mui-material-styles.actual.js +18 -0
  19. package/v7.0.0/theme-color-functions/test-cases/mui-material-styles.expected.js +17 -0
  20. package/v7.0.0/theme-color-functions/test-cases/no-import.actual.js +11 -0
  21. package/v7.0.0/theme-color-functions/test-cases/no-import.expected.js +11 -0
  22. package/v7.0.0/theme-color-functions/test-cases/opacity-calc.actual.js +57 -0
  23. package/v7.0.0/theme-color-functions/test-cases/opacity-calc.expected.js +56 -0
  24. package/v7.0.0/theme-color-functions/test-cases/opacity-var.actual.js +37 -0
  25. package/v7.0.0/theme-color-functions/test-cases/opacity-var.expected.js +36 -0
  26. package/v7.0.0/theme-color-functions/theme-color-functions.js +142 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,794 @@
1
+ # [Versions](https://mui.com/versions/)
2
+
3
+ ## 7.3.0
4
+
5
+ <!-- generated comparing v7.2.0..master -->
6
+
7
+ _Aug 5, 2025_
8
+
9
+ A big thanks to the 24 contributors who made this release possible. Here are some highlights ✨:
10
+
11
+ - 🚀 Shipped `nativeColor` feature that eliminates JS color manipulation and unlocks support for all modern color spaces (#43942) @siriwatknp!
12
+
13
+ To learn more, check out the [Native Color](https://mui.com/material-ui/customization/css-theme-variables/native-color/) guide.
14
+
15
+ ### `@mui/material@7.3.0`
16
+
17
+ - Support native color without JS manipulation (#43942) @siriwatknp
18
+ - [Accordion] Add `region` slot (#46659) @sai6855
19
+ - [SpeedDial] Fix navigation with arrow keys when slotProps.fab is defined (#46508) @sai6855
20
+ - [Select] Improve `MenuProps.slotProps` implementation (#46612) @ZeeshanTamboli
21
+ - [Select] Implement pointer cancellation (#45789) @Kartik-Murthy
22
+ - [Switch] Add role="switch" (#46482) @ZeeshanTamboli
23
+ - [Autocomplete] Fix auto highlight when options change but not the length (#46489) @yafeng-c
24
+
25
+ ### `@mui/codemod@7.3.0`
26
+
27
+ - Fix `v5.0.0/top-level-imports` codemod changing color imports (#46405) @AidanLDev
28
+
29
+ ### Docs
30
+
31
+ - Add JetBrains IDEs MCP configuration (#46470) @bernardobelchior
32
+ - Add warning to array spacing section (#46542) @cherniavskii
33
+ - Add MCP server installation details for Claude Code (#46621) @saschabratton
34
+ - Fix incorrect command for MCP Inspector in mcp.md (#46630) @EndiM
35
+ - Fix incorrect Typography override example for responsive styles (#46558) @aditi291soni
36
+ - Improve MCP docs (#46557) @siriwatknp
37
+ - Fix displaying of components in dark mode (#46544) @sai6855
38
+ - Generate `template` entries about documented generics (#46540) @LukasTy
39
+ - Use fixed dates for stable CRUD dashboard screenshots (#46546) @apedroferreira
40
+ - Add "Edit in Mui Chat" button on demos (#46480) @siriwatknp
41
+ - Fix Menu customization demo (#46535) @siriwatknp
42
+ - Add dashboard with CRUD template based on Toolpad Core (#46376) @apedroferreira
43
+ - Clarify `createTheme` warning for future compatibility (#46476) @satendra03
44
+ - Remove typo in `_redirects` (#46463) @bharatkashyap
45
+ - Change API docs to stay inside Material UI (#46414) @bharatkashyap
46
+ - [Dialog] Fix Form dialog demo's actions button padding (#46506) @frontman-git
47
+ - [SpeedDial] Remove deprecated props from demos (#46485) @sai6855
48
+ - [Switch] Use `slotProps.input` instead of deprecated `inputProps` for accessible controlled switch (#46625) @adiitxa
49
+
50
+ ### Core
51
+
52
+ - Fix ESLint reference name (80d32a2) @oliviertassinari
53
+ - Fix ESLint reference name (5fc166e) @oliviertassinari
54
+ - Add `@base-ui-components/*` to env info (#46539) @Janpot
55
+ - Remove dead property from routes (#46534) @oliviertassinari
56
+ - Fix unpinned version regression (#46438) @oliviertassinari
57
+ - [code-infra] Accomodate build requirements from mui-x (#46551) @brijeshb42
58
+ - [code-infra] Extend renovate preset from infra repo (#46483) @brijeshb42
59
+ - [code-infra] Use flat eslint config (#46258) @brijeshb42
60
+ - [docs-infra] Remove comment saving in G-sheet option (#46617) @alexfauquette
61
+ - [docs-infra] Move `Open in MUI Chat` to Demo toolbar and adjust styles (#46579) @siriwatknp
62
+ - [docs-infra] Fix codeblock issues (#46323) @atharva3333
63
+ - [docs-infra] Handle white spaces and generate either TS or JS demo for llms files (#46494) @siriwatknp
64
+ - [examples] Rename PopOverMenu.tsx file to match its usage (#46532) @rjray
65
+ - [infra] Fix `test_types_next`, `test_react_18`, `test_react_next` jobs (#46182) @Janpot
66
+ - [infra] Remove package.json `module` field (#46620) @Janpot
67
+ - [infra] Upgrade form-data to >4.0.4 (#46618) @Janpot
68
+ - [infra] Use cpu option only in CI (#46588) @Janpot
69
+ - [infra] Update scripts to delete publishConfig.directory (#46563) @brijeshb42
70
+ - [infra] Remove `transform-runtime` from `next/babel` (#46552) @Janpot
71
+ - [infra] Revert nx update (#46538) @Janpot
72
+ - [infra] Replace Argos script with code-infra CLI and update deps (#46475) @Janpot
73
+ - [infra] Update node group in renovate config (#46474) @Janpot
74
+ - [infra] Move @playwright/test to peer deps in @mui/internal-test-utils (#46459) @Janpot
75
+ - [infra] Add instructions for patch release (#46382) @mnajdova
76
+
77
+ All contributors of this release in alphabetical order: @adiitxa, @aditi291soni, @AidanLDev, @alexfauquette, @apedroferreira, @atharva3333, @bernardobelchior, @bharatkashyap, @brijeshb42, @cherniavskii, @EndiM, @frontman-git, @Janpot, @Kartik-Murthy, @LukasTy, @mnajdova, @oliviertassinari, @rjray, @sai6855, @saschabratton, @satendra03, @siriwatknp, @yafeng-c, @ZeeshanTamboli
78
+
79
+ ## 7.2.0
80
+
81
+ <!-- generated comparing v7.1.1..master -->
82
+
83
+ _Jun 26, 2025_
84
+
85
+ A big thanks to the 17 contributors who made this release possible. Here are the highlights ✨:
86
+
87
+ - ⚡️ Added `modularCssLayers` theme option for splitting styles into multiple CSS layers (#46001) @siriwatknp.
88
+ - 📖 Added example for using Material UI with React Router v7 (#46406) @siriwatknp.
89
+
90
+ ### `@mui/material@7.2.0`
91
+
92
+ - [Backdrop] Fix handling of `component` prop (#46269) @sai6855
93
+ - [Chip] Explicitly define line-height (#46260) @DiegoAndai
94
+ - [Chip] Fix handling on event handlers (#46263) @sai6855
95
+ - [OutlinedInput][Input] Deprecate composed classes (#46316) @sai6855
96
+ - [Select] Pass MenuProps.slotProps.list alongside MenuListProps (#46274) @scousino
97
+ - [l10] Enable `labelDisplayedRows` translation for Romanian (#46377) @dhu-redwoodtech
98
+ - Skip generating `modularCssLayers` CSS var (#46329) @siriwatknp
99
+
100
+ ### `@mui/system@7.2.0`
101
+
102
+ - Add `modularCssLayers` theme flag to split styles into multiple CSS layers (#46001) @siriwatknp
103
+
104
+ ### `@mui/styled-engine@7.2.0`
105
+
106
+ - Do not reuse the emotion cache across SSR requests (#46276) @robbtraister
107
+
108
+ ### `@mui/codemod@7.2.0`
109
+
110
+ - [Dialog] Add codemod for deprecated props (#46328) @sai6855
111
+
112
+ ### Docs
113
+
114
+ - Don't forward `hasAiSuggestion` (#46415) @bharatkashyap
115
+ - Add introduction to MCP (#46224) @bharatkashyap
116
+ - Fallback for searchbar during SSR (#46364) @Janpot
117
+ - Update InitColorSchemeScript options to match colorSchemeSelector (#46302) @humble-barnacle001
118
+ - Add `ListItemButton` to make the deprecation clear (#46356) @siriwatknp
119
+ - Remove "Unstyled" section from component docs (#46272) @mapache-salvaje
120
+ - Add Testing section to Rating component doc (#46268) @0210shivam
121
+ - Fix fade modal demo (#46271) @brijeshb42
122
+ - [ai] Add suggestions to edit with MUI Chat (#46309) @bharatkashyap
123
+ - [Dialog] Fix form dialog uses ARIA roles on incompatible elements (#46307) @ZeeshanTamboli
124
+ - [Menu] Fix dark mode styling of grouped header demo (#46317) @sai6855
125
+ - [TextField] Removed type="number" demos (#46314) @KirankumarAmbati
126
+ - [examples] Add `material-ui-react-router-ts` example (#46406) @siriwatknp
127
+
128
+ ### Core
129
+
130
+ - pnpm docs:sync-team (3641a0b) @oliviertassinari
131
+ - Add cross-env to eslint script (#46358) @ZeeshanTamboli
132
+ - Support merging of className and style from theme (#45975) @sai6855
133
+ - [code-infra] Create bundle size package (#45911) @Janpot
134
+ - [docs-infra] Add a script to generate Material UI `llms.txt` and docs markdown. (#46308) @siriwatknp
135
+ - [docs-infra] Fix stackblitz for js projects (#46220) @Janpot
136
+ - [infra] Add emotion as external for bundle monitor (#46372) @Janpot
137
+ - [infra] Create update PR on every canary publish for internal packages (#46367) @Janpot
138
+ - [infra] Remove deprecated esmExternals (#46365) @Janpot
139
+ - [infra] Support project-specific changelog in build scripts (#46425) @michaldudak
140
+ - [toolpad][website] Remove references to Toolpad (#46311) @prakhargupta1
141
+
142
+ All contributors of this release in alphabetical order: @0210shivam, @bharatkashyap, @brijeshb42, @dhu-redwoodtech, @DiegoAndai, @humble-barnacle001, @Janpot, @KirankumarAmbati, @mapache-salvaje, @michaldudak, @oliviertassinari, @prakhargupta1, @robbtraister, @sai6855, @scousino, @siriwatknp, @ZeeshanTamboli
143
+
144
+ ## 7.1.2
145
+
146
+ _Jun 18, 2025_
147
+
148
+ A big thanks to the 2 contributors who made this release possible.
149
+
150
+ ### `@mui/material@7.1.2`
151
+
152
+ - [Chip] Fix handling on event handlers (#46263) @sai6855
153
+
154
+ ### Docs
155
+
156
+ - Fix fade modal demo (#46271) @brijeshb42
157
+
158
+ All contributors of this release in alphabetical order: @brijeshb42, @sai6855
159
+
160
+ ## 7.1.1
161
+
162
+ <!-- generated comparing v7.1.0..master -->
163
+
164
+ _May 30, 2025_
165
+
166
+ A big thanks to the 15 contributors who made this release possible.
167
+
168
+ ### `@mui/material@7.1.1`
169
+
170
+ - [Autocomplete] Fix label shrink issue when `renderValue` is used with empty array in multiple mode (#46047) @ZeeshanTamboli
171
+ - [Autocomplete] Prevent `renderValue` from being skipped when value is 0 (#46145) @LakshitAgarwal
172
+ - [Autocomplete] Add note in JSDoc for non-TextField components in `renderInput` (#46141) @khllbnomrn
173
+ - [Chip] Add slots and slotProps (#46098) @sai6855
174
+ - [Menu] Remove depreacted `MenuListProps` from demos (#46144) @sai6855
175
+ - [TablePaginationActions] Export TablePaginationActions as new component (#46149) @sai6855
176
+ - [SnackbarContent] Fix `square` prop not working (#46196) @0210shivam
177
+ - [SnackbarContent] Fix error when theme value is CSS variable (#46198) @0210shivam
178
+
179
+ ### `@mui/codemod@7.1.1`
180
+
181
+ - Add package name option (#45977) @siriwatknp
182
+
183
+ ### `@mui/system@7.1.1`
184
+
185
+ - Skip styled component from being transformed (#46129) @siriwatknp
186
+ - Update the type for borderRadius (#46154) @codiini
187
+
188
+ ### `@mui/styled-engine@7.1.1`
189
+
190
+ - Fix variant props callback type to spread `ownerState` (#46187) @siriwatknp
191
+
192
+ ### `@mui/stylis-plugin-rtl@7.1.1`
193
+
194
+ - Fix RTL does not work with CSS layer with a new package (#46230) @siriwatknp
195
+
196
+ ### Docs
197
+
198
+ - [Dialog] Remove deprecated TransitionComponent from demo (#46185) @sai6855
199
+ - [Grid] Remove direction `column` and `column-reverse` from the demo (#46127) @0210shivam
200
+ - [Grid] Update grid migration guide (#46057) @sai6855
201
+ - [templates] Fix rendering of logos in dark mode (#46221) @sai6855
202
+ - [ToggleButtonGroup] Add spacing demo (#46058) @sai6855
203
+ - Fix typo in dark mode docs (#46229) @ZeeshanTamboli
204
+ - Clarify Next.js + Tailwind CSS v3 integration requirements (#46176) @chaitanyasharma1011
205
+ - Fix GridLegacy docs order (#46135) @oliviertassinari
206
+ - Update upgrade guide for resolution of `react-is` (#46002) @siriwatknp
207
+ - Remove oudated scaffoldhub ad (#46090) @oliviertassinari
208
+ - Show how to target global state classes with CSS Modules (#45992) @RubemMazzetto
209
+
210
+ ### Core
211
+
212
+ - [code-infra] Add plugin to check for index file access (#46178) @Janpot
213
+ - [code-infra] Bump eslint to v9 (#46222) @brijeshb42
214
+ - [code-infra] Move packages to mui/mui-public (#46155) @Janpot
215
+ - [code-infra] Move `chai` to peerDep (#46227) @JCQuintas
216
+ - [code-infra] Avoid loading barrel file during type checking (#46177) @Janpot
217
+ - [code-infra] Remove unnecessary ref from `HighlightedCode` component (#46151) @ZeeshanTamboli
218
+ - [code-infra] Import mocha type instead of global (#46108) @JCQuintas
219
+ - [code-infra] Dependabot also create branches (795a481) @oliviertassinari
220
+ - [code-infra] Avoid running continuous release on forks (#46103) @Janpot
221
+ - [code-infra] Remove checkout job altogether (#46100) @Janpot
222
+ - [code-infra] Remove required checkout workflows in circleci (#46099) @Janpot
223
+ - Run pnpm docs:sync-team (c8f1da5) @oliviertassinari
224
+ - Upgrade MUI X packages to v8 (#45990) @KenanYusuf
225
+ - Minor detail to reduce confusion (4c64b72) @oliviertassinari
226
+ - Update security.md (#45839) @DiegoAndai
227
+ - Apply yml convention, blank line only at top level (f273220) @oliviertassinari
228
+ - Add comment that lab should be in alpha (#45999) @oliviertassinari
229
+
230
+ All contributors of this release in alphabetical order: @0210shivam, @brijeshb42, @chaitanyasharma1011, @codiini, @DiegoAndai, @Janpot, @JCQuintas, @KenanYusuf, @khllbnomrn, @LakshitAgarwal, @oliviertassinari, @RubemMazzetto, @sai6855, @siriwatknp, @ZeeshanTamboli
231
+
232
+ ## 7.1.0
233
+
234
+ <!-- generated comparing v7.0.2..master -->
235
+
236
+ _May 6, 2025_
237
+
238
+ A big thanks to the 21 contributors who made this release possible. Here are some highlights ✨:
239
+
240
+ - 🎉 Material UI now works with **Tailwind CSS v4**! Check out the [setup guide](https://mui.com/material-ui/integrations/tailwindcss/tailwindcss-v4/).
241
+
242
+ ### `@mui/material@7.1.0`
243
+
244
+ - [InputBase] Text cursor jumps several lines up when inserting text fragment with new line at the end (#45246) @yermartee
245
+ - [OutlinedInput] Add missing `notchedOutline` slot (#45917) @siriwatknp
246
+ - [Snackbar] Skip default `onClickAway` behavior when `defaultMuiPrevented` is provided (#45629) @sai6855
247
+ - [Avatar] Fix img slot types and add missing slots (#45483) @siriwatknp
248
+ - [Badge] Replace useSlotProps with useSlot hook (#45871) @sai6855
249
+ - [BottomNavigationAction] Add slots and slotProps (#45776) @sai6855
250
+ - [CardActionArea] Add slots and slotProps (#45866) @sai6855
251
+ - [useMediaQuery] Add warning and docs for using `useMediaQuery('print')` (#44790) @good-jinu
252
+ - Remove unnecessary clsx usages (#46084) @sai6855
253
+ - Corrected generic type definition in `SelectChangeEvent` (#45941) @SuyashShukla0007
254
+ - Fix theme object changes between renders (#45863) @siriwatknp
255
+
256
+ ### `@mui/material-nextjs@7.1.0`
257
+
258
+ - Add option to enable CSS layers for pages router (#45596) @siriwatknp
259
+ - Do not wrap `@layer` order rules in App Router (#45864) @Nayeem-XTREME
260
+
261
+ ### `@mui/system@7.1.0`
262
+
263
+ - Fix `@mui/system` types organization (#45860) @Janpot
264
+
265
+ ### `@mui/styled-engine@7.1.0`
266
+
267
+ - Infer `ownerState` from props in `styled` (#46083) @siriwatknp
268
+ - Fix style overrides variants type (#45478) @siriwatknp
269
+
270
+ ### Docs
271
+
272
+ - [Avatar] Add avatar upload demo (#45986) @Demianeen
273
+ - [Dialog] Remove deprecated props usage in demos (#45923) @sai6855
274
+ - [Menu] Update `paper` slot JSDoc default from `Paper` to `PopoverPaper` (#45722) @andreachiera
275
+ - [examples] Remove create-react-app usages (#45426) @CodeLeom
276
+ - Add `AccordionSummary` to the v5 breaking change migration (#45947) @siriwatknp
277
+ - Update CSS variable usage in migration guide for Pigment CSS (#46033) @sai6855
278
+ - Fix docs API dark mode color (#46086) @alexfauquette
279
+ - Add a guide for extending Material UI classes in Tailwind CSS (#46039) @siriwatknp
280
+ - Add `InitColorSchemeScript` docs and API (#45927) @siriwatknp
281
+ - Add Tailwind CSS v4 integration guide (#45906) @siriwatknp
282
+ - Fix 301 links to the system v6 (#45931) @oliviertassinari
283
+ - Add notification for MUI X v8 announcement (#45942) @joserodolfofreitas
284
+ - Fix som 301 redirections (ae84b35) @oliviertassinari
285
+ - Fix some 301 redirections (057384e) @oliviertassinari
286
+ - Fix logo is not centered on small screens (#45920) @crabsim
287
+ - Fix line break typo (a2a62d5) @oliviertassinari
288
+ - Fix markdown typo in templates.md (#45914) @scyzoryck
289
+ - Add Next.js App Router guide for custom classnames (#45852) @siriwatknp
290
+
291
+ ### Core
292
+
293
+ - [code-infra] Give a stable name to dev tool app (3889ded) @oliviertassinari
294
+ - [code-infra] Normalize author package in org (8135638) @oliviertassinari
295
+ - [code-infra] Correct some manually curated .d.ts files (#46054) @Janpot
296
+ - [code-infra] Align deps versions (#46048) @Janpot
297
+ - [code-infra] Fix dynamic import in imports resolver (#46046) @Janpot
298
+ - [code-infra] Eliminate `@mui/utils` deep imports (#46004) @Janpot
299
+ - [code-infra] Expand renovate.json for react types (#45935) @Janpot
300
+ - [code-infra] Make Argos upload script reusable (#45883) @Janpot
301
+ - [code-infra] Disallow redundant window prefixes for globals (#45880) @Janpot
302
+ - [code-infra] Remove type generation of modern build (#45912) @Janpot
303
+ - [code-infra] Clean up bundle size checker (#45622) @Janpot
304
+ - [code-infra] Fix `StrictMode` effects not being called twice in React 19 tests (#45812) @bernardobelchior
305
+ - [code-infra] Convert `@mui/utils` to typescript (#45671) @Janpot
306
+ - [docs-infra] Improve export into sandbox package.json (#46044) @oliviertassinari
307
+ - [docs-infra] Update feedback Node.js to v22 (#46064) @oliviertassinari
308
+ - [docs-infra] Normalize netlify.toml in org (b101d5c) @oliviertassinari
309
+ - [docs-infra] Uniformize Vale between repositories (0f79796) @oliviertassinari
310
+ - [docs-infra] Fix Vale no longer working (#46029) @oliviertassinari
311
+ - [docs-infra] Remove demo styling switch (#45926) @Janpot
312
+ - [docs-infra] StackBlitz WebContainer demos (#45924) @Janpot
313
+ - [docs-infra] Fix feedback management (#45872) @alexfauquette
314
+ - [test] Replace `playwright` with `@playwright/test` (#45998) @ZeeshanTamboli
315
+ - Fix internal version duplication (#46051) @oliviertassinari
316
+ - Avoid the need for `@mui/material/themeCssVarsAugmentation` (#46053) @Janpot
317
+ - Add security label to dependabot PRs (0a5c027) @oliviertassinari
318
+ - Remove unecessary versions (#46034) @oliviertassinari
319
+ - Remove redundant overrides resolver (#45970) @romgrk
320
+ - Fix duplicate branch reference (#45915) @oliviertassinari
321
+ - Fix outdated <link rel="shortcut icon" (#45916) @oliviertassinari
322
+ - Fix redirection chains (#45930) @oliviertassinari
323
+ - Run pnpm docs:sync-team (beee09f) @oliviertassinari
324
+ - Add `pkg.pr.new` publishing (#42984) @Aslemammad
325
+ - Remove @mui/base from the master branch (#45857) @mnajdova
326
+
327
+ All contributors of this release in alphabetical order: @alexfauquette, @andreachiera, @Aslemammad, @bernardobelchior, @CodeLeom, @crabsim, @Demianeen, @good-jinu, @Janpot, @joserodolfofreitas, @mnajdova, @Nayeem-XTREME, @oliviertassinari, @renovate[bot], @romgrk, @sai6855, @scyzoryck, @siriwatknp, @SuyashShukla0007, @yermartee, @ZeeshanTamboli
328
+
329
+ ## 7.0.2
330
+
331
+ _Apr 9, 2025_
332
+
333
+ A big thanks to the 12 contributors who made this release possible.
334
+
335
+ ### `@mui/material@7.0.2`
336
+
337
+ - [Autocomplete] Add ability to render custom single value (#45387) @ZeeshanTamboli
338
+ - [Autocomplete] Prevent shrink animation in controlled Autocomplete when initial `value` is provided (#45734) @imadx
339
+ - [AvatarGroup] Fix `spacing` prop ignoring value `0` (#45799) @Kartik-Murthy
340
+ - [Dialog] Deprecate composed classes (#45418) @sai6855
341
+
342
+ ### `@mui/material-nextjs@7.0.2`
343
+
344
+ - Fix nonce issues (#45794) @Janpot
345
+ - Add warnings to nextjs router integration (#45778) @Janpot
346
+
347
+ ### `@mui/styled-engine@7.0.2`
348
+
349
+ - Added caching to `StyledEngineProvider` to improve performance for running tests with Jest (#45846) @siriwatknp
350
+
351
+ ### Core
352
+
353
+ - [blog] Improve upvote video (0646444) @oliviertassinari
354
+ - [code-infra] Remove webpack aliases (#45841) @Janpot
355
+ - [code-infra] Remove .tsbuildinfo from build folder (#45727) @Janpot
356
+ - [code-infra] Stabilize theme viewer screenshot tests (#45768) @Janpot
357
+ - [code-infra] Remove modern bundles (#45808) @Janpot
358
+ - Update buildTypes script to optionally remove css imports (#45835) @brijeshb42
359
+ - Allow repo to be accepted as an argument for releaseTag (#45801) @brijeshb42
360
+ - Update scripts to support base-ui (#45784) @brijeshb42
361
+ - Sync scorecards.yml across codebase (4de5076) @oliviertassinari
362
+ - Remove baseUrl and skipLibCheck (#45806) @Janpot
363
+ - [docs-infra] Fix redirect styles pages (#45848) @siriwatknp
364
+ - [docs-infra] Remove false-positive Vale rules (#45843) @oliviertassinari
365
+ - [docs-infra] Make sure Next.js can find package.json through its aliases (#45840) @Janpot
366
+ - [docs-infra] Fix Next.js brand name coverage (6915f8d) @oliviertassinari
367
+ - [docs-infra] Fix layout shift between MIT and commercial pages (#45760) @oliviertassinari
368
+ - [docs-infra] Non breaking space for ESM (#45758) @oliviertassinari
369
+ - [support-infra] Remove dead 'workflow_call:' (#45736) @oliviertassinari
370
+ - [utils] Support cleanup callbacks in useForkRef (#45621) @DiegoAndai
371
+
372
+ ### Docs
373
+
374
+ - Fix pigment vite integration example (#44746) @brijeshb42
375
+ - Update migration instructions and codemod references for deprecated APIs (#45793) @sai6855
376
+ - Add TanStack Router routing example (#44930) @vetledv
377
+ - Fix layout shifting in icons page (#45779) @sai6855
378
+ - Fix migration instructions (#45762) @oliviertassinari
379
+ - Fix wrong TypeScript support version (#45761) @oliviertassinari
380
+ - Fix link to mui-joy/src/styles/components.d.ts (#45763) @oliviertassinari
381
+ - Fix 301 link (ae94c40) @oliviertassinari
382
+ - Fix 301 links (abd8f63) @oliviertassinari
383
+ - Fix 301 redirection (c7658de) @oliviertassinari
384
+ - [nextjs] Migrate from deprecated "legacyBehavior" prop (#44871) @oliviertassinari
385
+ - [nextjs] Document CSP for Next.js Pages Router (#45798) @Grohden
386
+
387
+ All contributors of this release in alphabetical order: @brijeshb42, @DiegoAndai, @Grohden, @imadx, @Janpot, @Kartik-Murthy, @oliviertassinari, @renovate[bot], @sai6855, @siriwatknp, @vetledv, @ZeeshanTamboli
388
+
389
+ ## 7.0.1
390
+
391
+ <!-- generated comparing v7.0.0..master -->
392
+
393
+ _Mar 28, 2025_
394
+
395
+ A big thanks to the 7 contributors who made this release possible.
396
+
397
+ ### `@mui/material@7.0.1`
398
+
399
+ - Export ThemeProviderProps (#45701) @aarongarciah
400
+ - [Fab] Fix default variant text color when using CSS vars (#45714) @aarongarciah
401
+ - Remove mention of v7 in deprecation messages (#45708) @DiegoAndai
402
+ - [Popover] Allow `null` in `anchorEl` function return type (#45045) @eduter
403
+ - Fix missing CSSProperties/MixinOptions types (#45706) @Janpot
404
+
405
+ ### `@mui/icons-material@7.0.1`
406
+
407
+ - [code-infra] Fix icon-material type resolution under `moduleResolution: "node"` (#45704) @Janpot
408
+ - Bring back individual icon dts (#45711) @Janpot
409
+
410
+ ### Core
411
+
412
+ - Improve the release instructions (#45688) @mnajdova
413
+
414
+ ### Docs
415
+
416
+ - Fix Masonry and Toolpad dark mode demos (#45721) @siriwatknp
417
+ - Update v7 related copy (#45716) @aarongarciah
418
+ - Avoid unwanted undefined in page title (#45718) @aarongarciah
419
+ - Fix joy templates error (#45715) @siriwatknp
420
+ - Rename GitHub icon import (#45709) @micttyoid
421
+ - Fix Safari issue in dark mode (#45696) @mnajdova
422
+ - Fix `Grid`, `GridLegacy`, `Stack`, `Badge`, `Select`, `Autocomplete` demos CSS variables (#45693) @DiegoAndai
423
+ - Add "Material UI v7 is here" to the notifications (#45694) @DiegoAndai
424
+ - Fix `Breadcrumbs`, `List`, `Divider`, and `Typography` dark mode demos (#45692) @siriwatknp
425
+ - Fix Material Icons page in dark mode (#45691) @mnajdova
426
+
427
+ All contributors of this release in alphabetical order: @aarongarciah, @DiegoAndai, @eduter, @Janpot, @micttyoid, @mnajdova, @siriwatknp
428
+
429
+ ## 7.0.0
430
+
431
+ <!-- generated comparing v7.0.0-rc.0..master -->
432
+
433
+ _Mar 26, 2025_
434
+
435
+ 🎉 We're happy to announce the stable release of v7.
436
+
437
+ - Read the [blog post](https://mui.com/blog/material-ui-v7-is-here/) about the announcement.
438
+ - Check out the [v7 upgrade guide](https://mui.com/material-ui/migration/upgrade-to-v7/).
439
+
440
+ ### `@mui/material@7.0.0`
441
+
442
+ - [Autocomplete] Fix when `onHighlightChange` is called (#45438) @ZeeshanTamboli
443
+ - [Tabs] Fix modifier keys + Left/Right Arrow key from being consumed by tab navigation (#45345) @mushfiqbh
444
+ - Update minimum TypeScript support to 4.9 (#45535) @siriwatknp
445
+
446
+ ### `@mui/system@7.0.0`
447
+
448
+ - [system] Fix palette mode does not change when not using CSS vars (#45660) @siriwatknp
449
+
450
+ ### `@mui/lab@7.0.0-beta.9`
451
+
452
+ - [lab] Remove @mui/base dependency (#45602) @mnajdova
453
+
454
+ ### Docs
455
+
456
+ - [docs] Fix unnecessary redirects for v7 (#45677) @Janpot
457
+ - [docs] Fix new React project link, CRA deprecated (#45362) @oliviertassinari
458
+ - [docs] Prepare the v7 upgrade guide for stable release (#45624) @DiegoAndai
459
+ - [docs] Fix grammatical errors in support.md (#45631) @letianpailove
460
+ - [docs] Update nextjs font optimization guide (#45600) @IshfaqAhmedProg
461
+ - [docs] Deprecate Toolpad Studio (#45613) @Janpot
462
+ - [docs] Sync the mode from page to demos #45661 @siriwatknp
463
+
464
+ ### Core
465
+
466
+ - [blog] v7 stable release (#45623) @DiegoAndai
467
+ - [code-infra] Disable flaky masonry screenshot (#45678) @Janpot
468
+ - [code-infra] Migrate regression tests to vite (#44964) @Janpot
469
+ - [code-infra] Update rollup (#45666) @Janpot
470
+ - [code-infra] Support `React.ComponentType` in proptypes generation (#45664) @Janpot
471
+ - [code-infra] Ensure `translations.json` is present in all `@mui/docs` package builds (#45626) @LukasTy
472
+ - [code-infra] Improve Argos script debuggability (#45619) @Janpot
473
+ - [code-infra] Reconfigure `react-remove-properties` babel plugin (#45218) @Janpot
474
+ - [core] Prepare master for v7 stable (#45674) @DiegoAndai
475
+ - [core] Improve instructions on changing domain (#45637) @mnajdova
476
+ - [core] Deprecate `ponyfillGlobal` (#45606) @Janpot
477
+ - [docs-infra] Restructure docs theme context to CSS variables (#45386) @siriwatknp
478
+ - [styles] Remove code & docs (#45633) @mnajdova
479
+
480
+ All contributors of this release in alphabetical order: @DiegoAndai, @IshfaqAhmedProg, @Janpot, @letianpailove, @LukasTy, @mnajdova, @mushfiqbh, @oliviertassinari, @siriwatknp, @ZeeshanTamboli
481
+
482
+ ## 7.0.0-rc.0
483
+
484
+ <!-- generated comparing v7.0.0-beta.4..master -->
485
+
486
+ _Mar 18, 2025_
487
+
488
+ A big thanks to the 4 contributors who made this release possible.
489
+
490
+ ### `@mui/material@7.0.0-rc.0`
491
+
492
+ - [StepLabel] Add missing root slot (#45603) @sai6855
493
+ - [Switch] Add slots and slotProps (#45595) @siriwatknp
494
+ - [utils] Add merging function to `mergeSlotProps` utility (#45543) @siriwatknp
495
+
496
+ ### Core
497
+
498
+ - [blog] Clarify the difference between the two Pro plans (#45266) @oliviertassinari
499
+ - [code-infra] Allow specifying a custom error formatter module for error minifcation (#45291) @Janpot
500
+ - [code-infra] Make `getVersionEnvVariables` reusable for other repos (#45562) @Janpot
501
+ - [code-infra] Update peer dependency of `@mui/utils` in `@mui/docs` (#45561) @Janpot
502
+ - Add StackBlitz template to issue template (#45504) @Janpot
503
+
504
+ All contributors of this release in alphabetical order: @Janpot, @oliviertassinari, @sai6855, @siriwatknp
505
+
506
+ ## 7.0.0-beta.4
507
+
508
+ <!-- generated comparing v7.0.0-beta.3..master -->
509
+
510
+ _Mar 13, 2025_
511
+
512
+ A big thanks to the 10 contributors who made this release possible.
513
+ This release contains bug fixes 🐛 and improvements to the new package layout 🏗️.
514
+
515
+ ### `@mui/material@7.0.0-beta.4`
516
+
517
+ - [Accordion] Add missing `root` slot (#45532) @sai6855
518
+ - [AccordionSummary] Add slots and slotProps (#45559) @sai6855
519
+ - [ListItemText] Add missing `root` slot (#45540) @sai6855
520
+ - [SpeedDial] Add missing `root` slot (#45541) @sai6855
521
+ - [Tooltip] Allow auto placement on tooltip (#45399) @Jtaks
522
+ - [useScrollTrigger] Do nothing if target is null (#45441) @vipierozan99
523
+ - [TextareaAutosize] Fix ResizeObserver causing infinite `selectionchange` loop (#45351) @mj12albert
524
+ - Fix negative input for CSS variables spacing array (#45550) @siriwatknp
525
+ - Add missing deprecations in deprecations-all file (#45505) @sai6855
526
+ - Rename some `@mui/material/styles/createTypography` exports (#45558) @Janpot
527
+
528
+ ### `@mui/icons-material@7.0.0-beta.4`
529
+
530
+ - Remove unused icon names from the download script (#45453) @yermartee
531
+
532
+ ### `@mui/system@7.0.0-beta.4`
533
+
534
+ - Prevent nested non-vars theme inheritance (#45545) @siriwatknp
535
+ - Disable theme recalculation as default behavior (#45405) @siriwatknp
536
+ - Fix package layout inconsistencies (#45491) @DiegoAndai
537
+
538
+ ### `@mui/styled-engine@7.0.0-beta.4`
539
+
540
+ - Add `enableCssLayer` prop to StyledEngineProvider (#45428) @siriwatknp
541
+
542
+ ### `@mui/types@7.3.0`
543
+
544
+ - [code-infra] Fix type resolution for @mui/types (#45513) @Janpot
545
+
546
+ ### `@mui/utils@7.0.0-beta.4`
547
+
548
+ - Fix package layout inconsistencies (#45491) @DiegoAndai
549
+ - Use correct iri-reference homepage format (#45472) @dahiro
550
+
551
+ ### Docs
552
+
553
+ - [Backdrop] Fix component name in migration guide (#45506) @sai6855
554
+ - [TextField] Add HTML input section to TextField page (#45439) @siriwatknp
555
+
556
+ ### Core
557
+
558
+ - [code-infra] Convert a few docs modules to ts (#45548) @Janpot
559
+ - [code-infra] Remove more CJS modules from the docs (#45557) @Janpot
560
+ - [code-infra] Remove nested imports from theme augmentation (#45514) @Janpot
561
+ - [docs-infra] Add @ts-ignore to avoid type checking for MUI X (#45555) @siriwatknp
562
+ - [blog] Fix author end-of-year updates (#45533) @oliviertassinari
563
+
564
+ All contributors of this release in alphabetical order: @dahiro, @DiegoAndai, @Janpot, @Jtaks, @mj12albert, @oliviertassinari, @sai6855, @siriwatknp, @vipierozan99, @yermartee
565
+
566
+ ## 7.0.0-beta.3
567
+
568
+ <!-- generated comparing v7.0.0-beta.2..master -->
569
+
570
+ _Mar 5, 2025_
571
+
572
+ A big thanks to the 3 contributors who made this release possible.
573
+
574
+ ### `@mui/material@7.0.0-beta.3`
575
+
576
+ - Fix moduleResolution:node for icons (#45444) @Janpot
577
+ - [ThemeProvider] Add `storageManager` prop to `ThemeProvider` (#45136) @siriwatknp
578
+ - [Radio] Fix `inputProps` not forwarded (#45471) @siriwatknp
579
+
580
+ ### `@mui/codemod@7.0.0-beta.3`
581
+
582
+ - [codemod] Fix codemods not found (#45473) @DiegoAndai
583
+
584
+ All contributors of this release in alphabetical order: @DiegoAndai, @Janpot, @siriwatknp
585
+
586
+ ## 7.0.0-beta.2
587
+
588
+ <!-- generated comparing v7.0.0-beta.1..master -->
589
+
590
+ _Feb 27, 2025_
591
+
592
+ A big thanks to the 2 contributors who made this release possible.
593
+
594
+ ### Core
595
+
596
+ - [code-infra] Add package.json export (#45433) @Janpot
597
+ - [blog] React 19 migration for MUI X (#45348) @arminmeh
598
+
599
+ All contributors of this release in alphabetical order: @arminmeh, @Janpot
600
+
601
+ ## 7.0.0-beta.1
602
+
603
+ <!-- generated comparing v7.0.0-beta.0..master -->
604
+
605
+ _Feb 27, 2025_
606
+
607
+ This release fixes incorrect build output from the previous release (`beta.0`).
608
+
609
+ ### Core
610
+
611
+ - [code-infra] Fix build:types script omitting folders with a dot in their name (#45422) @Janpot
612
+ - [release] Fix versions (#45420) @mj12albert
613
+
614
+ All contributors of this release in alphabetical order: @Janpot, @mj12albert
615
+
616
+ ## 7.0.0-beta.0
617
+
618
+ <!-- generated comparing v7.0.0-alpha.2..master -->
619
+
620
+ _Feb 26, 2025_
621
+
622
+ A big thanks to the 8 contributors who made this release possible.
623
+
624
+ ### `@mui/material@7.0.0-beta.0`
625
+
626
+ - [Modal][Dialog] Remove deprecated `onBackdropClick` (#45395) @DiegoAndai
627
+ - [Grid] Improve Grid2 upgrade experience (#45304) @DiegoAndai
628
+ - [Grid] Rename to GridLegacy (#45363) @DiegoAndai
629
+ - [Grid2] Rename to Grid (#45381) @DiegoAndai
630
+ - Remove SvgIcon data-testid in production (#45333) @Janpot
631
+ - Allow nested theme creation with `vars` (#45335) @siriwatknp
632
+ - [Rating] Deprecate \*Props and complete `slots`, `slotProps` (#45295) @harry-whorlow
633
+ - [Slider] Fix css class selector in migration guide (#45402) @sai6855
634
+ - [Slider] Fix spacings in .md files (#45388) @sai6855
635
+ - [styles] Remove deprecated exports (#45397) @DiegoAndai
636
+ - [Menu] Deprecate \*Props and complete `slots`, `slotProps` (#44913) @siriwatknp
637
+ - [StepButton] Remove StepIconButton type (#45396) @DiegoAndai
638
+
639
+ ### Docs
640
+
641
+ - [Autocomplete] Remove unnecessary renderTags prop from Sizes demo (#45401) @ZeeshanTamboli
642
+ - Add `overriding-component-structure` doc to Material UI (#45186) @siriwatknp
643
+ - Fix typo in slider docs (#45390) @sai6855
644
+ - Fix Context Menu selection lost on Safari (#44903) @NooBat
645
+
646
+ ### Core
647
+
648
+ - [code-infra] Fix types for @mui/styled-engine (#45413) @Janpot
649
+ - [docs-infra] Fix theme toggle call (#45400) @siriwatknp
650
+ - [docs-infra] Add `color-scheme` to document in iframe demos (#45406) @KenanYusuf
651
+ - [docs-infra] Revert to use deprecated `CssVarsProvider` for MUI X (#45371) @siriwatknp
652
+ - [docs-infra] Fix dark mode flicker for API pages (#45354) @siriwatknp
653
+ - [examples] Remove unnecessary comma in Material UI Vite JS example (#45370) @ZeeshanTamboli
654
+ - [test] Remove unused renderTags prop and fix key warning in Autocomplete regression test (#45410) @ZeeshanTamboli
655
+
656
+ All contributors of this release in alphabetical order: @DiegoAndai, @harry-whorlow, @Janpot, @KenanYusuf, @NooBat, @sai6855, @siriwatknp, @ZeeshanTamboli
657
+
658
+ ## 7.0.0-alpha.2
659
+
660
+ <!-- generated comparing v7.0.0-alpha.1..master -->
661
+
662
+ _Feb 18, 2025_
663
+
664
+ A big thanks to the 9 contributors who made this release possible.
665
+
666
+ ### `@mui/material@7.0.0-alpha.2`
667
+
668
+ - [Autocomplete] Remove legacy `aria-owns` attribute for combobox (#45302) @ZeeshanTamboli
669
+ - [Button] Apply id only if loading indicator is present (#45296) @aarongarciah
670
+ - [Hidden] Remove deprecated Hidden component (#45283) @DiegoAndai
671
+ - [InputBase] Deprecate composed classes (#45234) @sai6855
672
+ - [InputLabel] Changed size prop value from `normal` to `medium` (#45235) @perkrlsn
673
+ - Fix `slotProps.transition` types (#45214) @siriwatknp
674
+
675
+ ### Docs
676
+
677
+ - Fix broken links to MUI X docs (#45145) @mapache-salvaje
678
+ - Add migration guide for package layout changes (#45222) @Janpot
679
+ - [icons] Fix typo in material-icons.md (#45334) @a-s-russo
680
+
681
+ ### Core
682
+
683
+ - Disallow access to esm/modern barrel files (#45332) @Janpot
684
+ - [code-infra] Update `elliptic` (#45311) @Janpot
685
+ - Update release guide to specify package bumping rules (#45294) @DiegoAndai
686
+
687
+ All contributors of this release in alphabetical order: @a-s-russo, @aarongarciah, @DiegoAndai, @Janpot, @mapache-salvaje, @perkrlsn, @sai6855, @siriwatknp, @ZeeshanTamboli
688
+
689
+ ## 7.0.0-alpha.1
690
+
691
+ <!-- generated comparing v7.0.0-alpha.0..master -->
692
+
693
+ _Feb 11, 2025_
694
+
695
+ A big thanks to the 11 contributors who made this release possible.
696
+
697
+ ### `@mui/material@7.0.0-alpha.1`
698
+
699
+ - [Checkbox] Add slots and slotProps (#44974) @sai6855
700
+ - [LinearProgress][CircularProgress] Add variant overrides for module augumentation (#45163) @kingflamez
701
+ - [Drawer] Deprecate \*Props and complete `slots`, `slotProps` (#44960) @siriwatknp
702
+ - Fix wrong `slotProps` of `DetailsHTMLAttributes` types (#45215) @siriwatknp
703
+ - [MobileStepper] deprecate `LinearProgressProps` and complete `slots`, `slotProps` (#45033) @siriwatknp
704
+ - [Radio] Add slots and slotProps (#44972) @sai6855
705
+ - [Radio] Remove empty line (#45184) @sai6855
706
+ - [Slider] Deprecate composed classes (#45201) @sai6855
707
+ - [Snackbar] Fix generated proptypes (#45156) @siriwatknp
708
+ - [SpeedDialAction] Add slots and slotProps (#45065) @sai6855
709
+ - [SwitchBase] Fix spreading of `handlers` in getSlotProps (#45197) @sai6855
710
+ - [Tabs] Deprecate \*Props and complete `slots`, `slotProps` (#45012) @siriwatknp
711
+ - [TextField] Remove deprecated props from documentation (#45199) @sai6855
712
+
713
+ ### `@mui/icons-material@7.0.0-alpha.1`
714
+
715
+ - Change icon source URL and add overrides (#45020) @siriwatknp
716
+
717
+ ### `@mui/lab@7.0.0-beta.1`
718
+
719
+ - Remove components which were moved from lab to material (#45232) @DiegoAndai
720
+
721
+ ### Docs
722
+
723
+ - [Autocomplete] Improve Google Maps search example (#44708) @oliviertassinari
724
+ - [Dialog] Removes deprecated PaperProps from docs (#45195) @sai6855
725
+ - [Menu] Add Grouped Menu demo (#45241) @noobDev31
726
+ - [material] Add disableInteractive on colorTool grid Tooltips (#37800) @Janpot
727
+ - [blog] Consistent Base UI terminology (#45264) @oliviertassinari
728
+ - A quick first step to update docs for Tailwind v4 (#45147) @oliviertassinari
729
+ - Fix `element.ref` accessing warning on docs (#45155) @DiegoAndai
730
+ - Mention Toolpad as experimental (#45273) @prakhargupta1
731
+ - [joy-ui] Update "Set up providers" section of integration with Material UI (#45183) @mateuseap
732
+
733
+ ### Core
734
+
735
+ - Update branch switch tags (#45198) @DiegoAndai
736
+ - Fix double redirection to Base UI (#45146) @oliviertassinari
737
+ - Fix corepack and pnpm installation in CircleCI (#45185) @mj12albert
738
+ - Fix typo on Netlify script (#45278) @maximevtush
739
+ - [code-infra] Fix testing library resolution with custom react (#44061) @Janpot
740
+ - [code-infra] Update package layout for better ESM support (#43264) @Janpot
741
+ - Update `@typescript-eslint/*` packages and remove deprecated `eslint-config-airbnb-typescript` package (#45245) @ZeeshanTamboli
742
+ - [docs] Restore utility component docs from MUI Base to Material UI (#45213) @mapache-salvaje
743
+ - [docs] Sync active sponsors (#45204) @oliviertassinari
744
+ - [docs] Fix links in CONTRIBUTING.md (#45202) @bernardobelchior
745
+ - [docs-infra] Point to MUI X next docs (#45207) @cherniavskii
746
+ - [test] Fix React 18 tests (#45161) @DiegoAndai
747
+
748
+ All contributors of this release in alphabetical order: @bernardobelchior, @cherniavskii, @DiegoAndai, @Janpot, @kingflamez, @mapache-salvaje, @mateuseap, @maximevtush, @mj12albert, @noobDev31, @oliviertassinari, @prakhargupta1, @sai6855, @siriwatknp, @ZeeshanTamboli
749
+
750
+ ## 7.0.0-alpha.0
751
+
752
+ <!-- generated comparing v6.4.1..master -->
753
+
754
+ _Jan 31, 2025_
755
+
756
+ A big thanks to the 9 contributors who made this release possible.
757
+ This is the first alpha release of Material UI v7 🎉.
758
+
759
+ ### `@mui/material@7.0.0-alpha.0`
760
+
761
+ - [Autocomplete] Prevent shrink animation in uncontrolled Autocomplete when default value is set (#44873) @ZeeshanTamboli
762
+ - [Popover] Deprecate \*Props and complete `slots`, `slotProps` (#45035) @siriwatknp
763
+ - [Slider] Fix arrow keys past the end for Slider with custom marks (#45050) @joshkel
764
+ - [SwitchBase] Deprecate `inputProps` and complete slots, slotProps (#45076) @siriwatknp
765
+ - [TextareaAutosize] Temporarily disconnect ResizeObserver to avoid loop error (#44540) @mj12albert
766
+ - [Slider] Narrow onChange value type (#44777) @good-jinu
767
+ - [Snackbar] Add Slots and SlotProps (#45103) @harry-whorlow
768
+
769
+ ### `@mui/utils@7.0.0-alpha.0`
770
+
771
+ - Merge `sx` instead of override when using `mergeSlotProps` (#45062) @siriwatknp
772
+
773
+ ### Core
774
+
775
+ - [code-infra] a few fixes uncovered during ESM updates (#45031) @Janpot
776
+ - [code-infra] Remove rsc-builder (#45079) @Janpot
777
+ - [code-infra] Remove commonjs imports in docs (#44976) @Janpot
778
+ - [docs-infra] Move Ukraine banner to the bottom (#45135) @oliviertassinari
779
+ - Fix MUI Base vale rule (#45140) @oliviertassinari
780
+ - Fix missing store contributor renaming (b3d1be0) @oliviertassinari
781
+ - Fix 404 errors (#45137) @oliviertassinari
782
+ - Prepare libraries for first v7 alpha release (#45132) @DiegoAndai
783
+ - Fix CHANGELOG vale failure (#45151) @DiegoAndai
784
+
785
+ ### Docs
786
+
787
+ - Fix `/base-ui` redirect and prune links (#45083) @mj12albert
788
+ - Add v6 to v7 migration guide (#45143) @DiegoAndai
789
+
790
+ All contributors of this release in alphabetical order: @DiegoAndai, @good-jinu, @harry-whorlow, @Janpot, @joshkel, @mj12albert, @oliviertassinari, @siriwatknp, @ZeeshanTamboli
791
+
792
+ ## Older versions
793
+
794
+ Changes before 7.x are listed in our [changelog for older versions](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.old.md).