@mui/types 7.1.0 → 7.1.3

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 +1275 -70
  2. package/index.d.ts +7 -0
  3. package/package.json +4 -4
package/CHANGELOG.md CHANGED
@@ -1,4 +1,1205 @@
1
- ### [Versions](https://mui.com/versions/)
1
+ # [Versions](https://mui.com/versions/)
2
+
3
+ ## 5.5.1
4
+
5
+ <!-- generated comparing v5.5.0..master -->
6
+
7
+ _Mar 14, 2022_
8
+
9
+ A big thanks to the 23 contributors who made this release possible. Here are some highlights ✨:
10
+
11
+ - 📊 2021 survey results post by @danilo-leal (#30999)
12
+ - Several 🐛 bug fixes and 📚 documentation improvements
13
+
14
+ ### @mui/material@5.5.1
15
+
16
+ - [Fab] Add z-index (#30842) @issamElmohadeb098
17
+ - [Grid] Fix columns of nested container (#31340) @boutahlilsoufiane
18
+ - [i10n] Update italian locale (#30974) @SalvatoreMazzullo
19
+ - [Pagination] Fix type of UsePaginationItem["page"] (#31295) @aaronadamsCA
20
+ - [Popper] Allow setting default props in a theme (#30118) @hafley66
21
+ - [TextField] fix disappearing border in Safari (#31406) @krysia1
22
+
23
+ ### @mui/joy@5.0.0-alpha.19
24
+
25
+ - [Joy] Support horizontal List (#31620) @siriwatknp
26
+ - [Joy] Add icon & label `Switch` examples (#31359) @siriwatknp
27
+ - [Joy] Add `TextField` component (#31299) @siriwatknp
28
+ - [Joy] Add `--Icon-fontSize` to components (#31360) @siriwatknp
29
+ - [Joy] Add `Checkbox` component (#31273) @siriwatknp
30
+
31
+ ### Docs
32
+
33
+ - [blog] 2021 survey results post (#30999) @danilo-leal
34
+ - [docs] Add Macedonian translation (#31402) @theCuriousOne
35
+ - [docs] Fix API page table styles in Safari (#31696) @aaarichter
36
+ - [docs] Fix SEO issues (#31505) @oliviertassinari
37
+ - [docs] Fix Link leak of Next.js props (#31418) @oliviertassinari
38
+ - [docs] Add "Work in biotech" to showcase (#31711) @klyburke
39
+ - [docs] Fix docs site crash on iOS Safari 12 (#31458) @badalsaibo
40
+ - [docs] Fix search icons crash (#31651) @juanpc10
41
+ - [docs] Remove unnecessary await in e2e-tests (#31767) @siriwatknp
42
+ - [docs] Fix source code links on the Templates page (#31425) @danilo-leal
43
+ - [docs] Adjust Stack's basic usage demo (#31423) @danilo-leal
44
+ - [docs] Migrate button demos to base (#31395) @siriwatknp
45
+ - [docs] Fix y-axis unit used in the responsive font sizes chart (#31424) @aaarichter
46
+ - [docs] Remove joy mockup pages (#31412) @siriwatknp
47
+ - [docs] Fix the statement that styleOverrides are added by default (#31257) @mnajdova
48
+ - [docs] Refine the product identifier menu (#31262) @danilo-leal
49
+ - [docs] Fix Search crash (#31386) @reckter
50
+ - [docs] Update TextField multiline description (#31291) @jontewks
51
+ - [docs] Add gap theme mapping in the System properties table (#31382) @danilo-leal
52
+ - [docs] Test products search (#31351) @siriwatknp
53
+ - [docs] Fix GitHub source links in the demo toolbar (#31339) @PunitSoniME
54
+ - [docs] Add Algolia verification code to robot.txt (#31356) @siriwatknp
55
+ - [examples] Ignore tsbuildinfo with Next.js (#31460) @B0und
56
+ - [website] Add new gold sponsor (#31354) @hbjORbj
57
+ - [website] Update Ukraine support link (#31378) @samuelsycamore
58
+
59
+ ### Core
60
+
61
+ - [core] Simplify anchor link (#31419) @oliviertassinari
62
+ - [core] Revert unrelated changes in #31354 @oliviertassinari
63
+ - [test] Upgrade CircleCI convenience image (#31394) @m4theushw
64
+ - [typescript] Simplify display of slot props types (#31240) @michaldudak
65
+
66
+ All contributors of this release in alphabetical order: @aaarichter, @aaronadamsCA, @B0und, @badalsaibo, @boutahlilsoufiane, @danilo-leal, @hafley66, @hbjORbj, @issamElmohadeb098, @jontewks, @juanpc10, @klyburke, @krysia1, @m4theushw, @michaldudak, @mnajdova, @oliviertassinari, @PunitSoniME, @reckter, @SalvatoreMazzullo, @samuelsycamore, @siriwatknp, @theCuriousOne
67
+
68
+ ## 5.5.0
69
+
70
+ <!-- generated comparing v5.4.4..master -->
71
+
72
+ _Mar 7, 2022_
73
+
74
+ A big thanks to the 16 contributors who made this release possible. Here are some highlights ✨:
75
+
76
+ - ♿️ made the `Autocomplete` conform to [ARIA 1.2 combobox](https://www.w3.org/TR/wai-aria-1.2/#combobox) (#30601) @EdmundMai
77
+ - Several 🐛 bug fixes and 📚 documentation improvements
78
+
79
+ ### `@mui/material@5.5.0`
80
+
81
+ #### Breaking change
82
+
83
+ - &#8203;<!-- 24 -->[ClassNameGenerator] Prevent all `base` imports (#31297) @siriwatknp
84
+
85
+ `unstable_ClassNameGenerator` has been moved from `utils` to `className` folder to prevent all MUI Base module imports. If you use the module, please update the import as suggested in the diff below:
86
+
87
+ ```diff
88
+ - import { unstable_ClassNameGenerator } from '@mui/material/utils';
89
+ + import { unstable_ClassNameGenerator } from '@mui/material/className';
90
+ ```
91
+
92
+ #### Changes
93
+
94
+ - &#8203;<!-- 28 -->[Autocomplete] Fix failing unit tests (#31302) @michaldudak
95
+ - &#8203;<!-- 27 -->[Autocomplete] Have the screen reader announce when autocomplete is open and closed (#30601) @EdmundMai
96
+ - &#8203;<!-- 26 -->[AvatarGroup] Fix misalignment with non-default spacing (#31165) @sjdemartini
97
+ - &#8203;<!-- 15 -->[Drawer] Adjustments to the mini variant to improve UI/UX (#31267) @siriwatknp
98
+ - &#8203;<!-- 04 -->[Select] Add extending `OutlinedInputProps` by SelectProps (#31209) @jrozbicki
99
+
100
+ ### `@mui/icons-material@5.5.0`
101
+
102
+ - &#8203;<!-- 13 -->[icons] Sync new Google Material Icons (#30766) @simonecervini
103
+
104
+ ### `@mui/codemod@5.5.0`
105
+
106
+ - &#8203;<!-- 23 -->[codemod] Fix top level imports codemod (#31308) @mnajdova
107
+
108
+ ### `@mui/lab@5.0.0-alpha.72`
109
+
110
+ - &#8203;<!-- 07 -->[LoadingButton] Fix padding of loading icon in small button (#31113) @PunitSoniME
111
+
112
+ ### `@mui/base@5.0.0-alpha.71`
113
+
114
+ - &#8203;<!-- 05 -->[MenuUnstyled] Create MenuUnstyled and useMenu (#30961) @michaldudak
115
+ - &#8203;<!-- 03 -->[SelectUnstyled] Prevent window scrolling after opening (#31237) @michaldudak
116
+
117
+ ### `@mui/joy@5.0.0-alpha.18`
118
+
119
+ - &#8203;<!-- 12 -->[Joy] Make Icon `fontSize` adaptable to its parent (#31268) @siriwatknp
120
+ - &#8203;<!-- 11 -->[Joy] Add `Link` component (#31175) @hbjORbj
121
+ - &#8203;<!-- 10 -->[Joy] Improve `Sheet` tests (#31241) @hbjORbj
122
+ - &#8203;<!-- 09 -->[Joy] Improve SvgIcon tests (#31242) @hbjORbj
123
+
124
+ ### `@mui/material-next@6.0.0-alpha.26`
125
+
126
+ - &#8203;<!-- 06 -->[material-next] Mark @mui/material as a dependency (#31270) @siriwatknp
127
+
128
+ ### Docs
129
+
130
+ - &#8203;<!-- 21 -->[docs] Remove career pages from translation (#31346) @oliviertassinari
131
+ - &#8203;<!-- 20 -->[docs] Fix JS files overloading (#31341) @oliviertassinari
132
+ - &#8203;<!-- 19 -->[docs] Add banner in solidarity of Ukraine (#31275) @danilo-leal
133
+ - &#8203;<!-- 18 -->[docs] Fix maxWidth of scrollable Tabs demos (#31285) @danilo-leal
134
+ - &#8203;<!-- 17 -->[docs] Fix icon linking implementation concurrent safe (#30428) @Janpot
135
+ - &#8203;<!-- 16 -->[docs] Follow up new doc space issues (#31251) @siriwatknp
136
+ - &#8203;<!-- 29 -->[examples] Add `@types/node` to nextjs typescript starter (#30918) @Daggy1234
137
+ - &#8203;<!-- 14 -->[examples] Fix import ThemeProvider from correct package in remix-wit… (#30981) @nnecec
138
+ - &#8203;<!-- 25 -->[blog] Simplify the labels (#30921) @oliviertassinari
139
+ - &#8203;<!-- 08 -->[l10n] Add Croatian (hr-HR) and Serbian (sr-RS) translation (#30906) @m14d3n
140
+
141
+ ### Core
142
+
143
+ - &#8203;<!-- 23 -->[core] Fix running markdownlint on Windows (#31352) @michaldudak
144
+ - &#8203;<!-- 22 -->[core] Fix the stylelint script on Windows (#31281) @mnajdova
145
+ - &#8203;<!-- 02 -->[test] Fix buildApiUtils tests on Windows (#31304) @michaldudak
146
+ - &#8203;<!-- 01 -->[test] Remove legacyRoot option from test renderer (#31284) @eps1lon
147
+
148
+ All contributors of this release in alphabetical order: @Daggy1234, @danilo-leal, @EdmundMai, @eps1lon, @hbjORbj, @Janpot, @jrozbicki, @m14d3n, @michaldudak, @mnajdova, @nnecec, @oliviertassinari, @PunitSoniME, @simonecervini, @siriwatknp, @sjdemartini
149
+
150
+ ## 5.4.4
151
+
152
+ <!-- generated comparing v5.4.3..master -->
153
+
154
+ _Feb 28, 2022_
155
+
156
+ A big thanks to the 17 contributors who made this release possible. Here are some highlights ✨:
157
+
158
+ - ✨ New `Input` and `Sheet` components were added in the experimental Joy design system by @hbjORbj (#31124, #31086) @hbjORbj
159
+ - Several 🐛 bug fixes and 📚 documentation improvements
160
+
161
+ ### `@mui/material@5.4.4`
162
+
163
+ - &#8203;<!-- 28 -->[Autocomplete] Have Autocomplete with multiline textfield log a warning instead of an error (#30680) @iclaude3
164
+ - &#8203;<!-- 27 -->[Chip] Fix ellipsis when the children is too long (#31087) @PunitSoniME
165
+ - &#8203;<!-- 14 -->[Input] Export InputBase's classes from the classes const (#31186) @mnajdova
166
+ - &#8203;<!-- 29 -->[TextField] Fix Horizontal scroll when label too long (#31187) @RedHeadphone
167
+ - &#8203;<!-- 08 -->[styles] Fix typo in import error (#31167) @davwheat
168
+
169
+ ### `@mui/system@5.4.4`
170
+
171
+ - &#8203;<!-- 07 -->[system] Fix executing server-side Emotion component as function interpolation 2 (#31024) @Andarist
172
+ - &#8203;<!-- 06 -->[system] Fix sx prop types when CSS variables are used with nested selectors (#31163) @mnajdova
173
+ - &#8203;<!-- 05 -->[system] Fix `CssVarsProvider` theme mutation (#31148) @siriwatknp
174
+
175
+ ### `@mui/codemod@5.4.4`
176
+
177
+ - &#8203;<!-- 26 -->[codemods] Add v5.0.0/top-level-imports codemod (#31195) @greengiraffe
178
+
179
+ ### `@mui/base@5.0.0-alpha.70`
180
+
181
+ - &#8203;<!-- 31 -->[SelectUnstyled, MultiSelectUnstyled, ButtonUnstyled] Export additional types to make customization easier (#31172) @michaldudak
182
+
183
+ ### `@mui/joy@5.0.0-alpha.17`
184
+
185
+ - &#8203;<!-- 13 -->[Joy] Add nested list components (#31159) @siriwatknp
186
+ - &#8203;<!-- 12 -->[Joy] Improve color customization on `Switch` (#31137) @siriwatknp
187
+ - &#8203;<!-- 11 -->[Joy] Add `Sheet` component (#31124) @hbjORbj
188
+ - &#8203;<!-- 10 -->[Joy] add `Input` component (#31086) @siriwatknp
189
+ - &#8203;<!-- 09 -->[Joy] Fix Button missing slot type (#31166) @siriwatknp
190
+
191
+ ### Docs
192
+
193
+ - &#8203;<!-- 22 -->[docs] Fix 404 link to the blog (#31234) @oliviertassinari
194
+ - &#8203;<!-- 21 -->[docs] Use `material-ui` for product name (#31200) @siriwatknp
195
+ - &#8203;<!-- 20 -->[docs] Add Base installation page (#30969) @siriwatknp
196
+ - &#8203;<!-- 19 -->[docs] Use new Algolia app for new structure (#31178) @siriwatknp
197
+ - &#8203;<!-- 18 -->[docs] Typo in the `FormControl` API documentation (#31169) @bonellia
198
+ - &#8203;<!-- 17 -->[docs] Fix typo in Stack documentation (#31176) @adriancampos
199
+ - &#8203;<!-- 16 -->[docs] Update interoperability.md broken tailwind links (#31182) @robertwt7
200
+ - &#8203;<!-- 15 -->[docs] Add missing import into tss-react migration guide (#31162) @sviande
201
+ - &#8203;<!-- 03 -->[website] The role is filled (#31216) @oliviertassinari
202
+ - &#8203;<!-- 02 -->[website] Revise the row grouping blog post (#31101) @samuelsycamore
203
+ - &#8203;<!-- 01 -->[website] Fix a few SEO issues (#31150) @oliviertassinari
204
+
205
+ ### Core
206
+
207
+ - &#8203;<!-- 30 -->[core] Add group for the @fortawesome dependencies (#31193) @mnajdova
208
+ - &#8203;<!-- 25 -->[core] Update playwright docker to match the specified version (#31236) @siriwatknp
209
+ - &#8203;<!-- 24 -->[core] Remove parallel on buildTypes (#31189) @siriwatknp
210
+ - &#8203;<!-- 23 -->[core] Fix propTypes generation for optional any props (#31141) @m4theushw
211
+ - &#8203;<!-- 04 -->[Typescript] Remove variants deprecation (#31239) @siriwatknp
212
+
213
+ All contributors of this release in alphabetical order: @adriancampos, @Andarist, @bonellia, @davwheat, @greengiraffe, @hbjORbj, @iclaude3, @m4theushw, @michaldudak, @mnajdova, @oliviertassinari, @PunitSoniME, @RedHeadphone, @robertwt7, @samuelsycamore, @siriwatknp, @sviande
214
+
215
+ ## 5.4.3
216
+
217
+ <!-- generated comparing v5.4.2..master -->
218
+
219
+ _Feb 21, 2022_
220
+
221
+ A big thanks to the 14 contributors who made this release possible. Here are some highlights ✨:
222
+
223
+ - 🛠 @hbjORbj made components use theme duration/easing values by default (#30894)
224
+ - A meaningful number of 🐛 bug fixes and 📚 documentation improvements
225
+
226
+ ### `@mui/material@5.4.3`
227
+
228
+ - &#8203;<!-- 18 -->[ButtonBase] Fix typo (#31135) @Jastor11
229
+ - &#8203;<!-- 05 -->[Stepper] Export useStepContext (#31021) @michaldudak
230
+ - &#8203;<!-- 04 -->[Transitions] Some components do not use transition duration/easing values from theme (#30894) @hbjORbj
231
+
232
+ ### `@mui/icons-material@5.4.3`
233
+
234
+ - &#8203;<!-- 11 -->[icons] Add "circle" icon synonyms (#31118) @gnowland
235
+
236
+ ### `@mui/joy@5.0.0-alpha.16`
237
+
238
+ - &#8203;<!-- 10 -->[Joy] `List` second iteration (#31134) @siriwatknp
239
+ - &#8203;<!-- 09 -->[Joy] Fix typings (#31120) @siriwatknp
240
+ - &#8203;<!-- 08 -->[Joy] Add initial `List` components (#30987) @siriwatknp
241
+
242
+ ### Docs
243
+
244
+ - &#8203;<!-- 19 -->[website] Improve full-stack role job description (#31160) @Janpot
245
+ - &#8203;<!-- 14 -->[docs] Fix typo of migration guides v4 (#31136) @pppp606
246
+ - &#8203;<!-- 13 -->[docs] Update on the support page to account for v4 LTS support (#31029) @danilo-leal
247
+ - &#8203;<!-- 12 -->[docs] Fix small typo in chips.md (#31092) @cameliaben
248
+ - &#8203;<!-- 07 -->[l10n] Add it-IT translation for labelDisplayedRows (#31131) @frab90
249
+ - &#8203;<!-- 06 -->[l10n] Add pl-PL translation for labelDisplayedRows (#31088) @ThomasTheHuman
250
+ - &#8203;<!-- 03 -->[website] Sync MUI X table feature (#30913) @alexfauquette
251
+ - &#8203;<!-- 02 -->[website] Prefill source in job application links (#31036) @oliviertassinari
252
+ - &#8203;<!-- 01 -->[website] Fix a grammar mistake (#31099) @huyenltnguyen
253
+
254
+ ### Core
255
+
256
+ - &#8203;<!-- 17 -->[core] Add jsx, html, css and prisma to prettier extensions (#31161) @Janpot
257
+ - &#8203;<!-- 16 -->[core] Allow to run material-ui.com/store alongside mui.com/store (#31065) @oliviertassinari
258
+ - &#8203;<!-- 15 -->[core] Polish design tokens (#31095) @oliviertassinari
259
+
260
+ All contributors of this release in alphabetical order: @alexfauquette, @cameliaben, @danilo-leal, @frab90, @gnowland, @hbjORbj, @huyenltnguyen, @Janpot, @Jastor11, @michaldudak, @oliviertassinari, @pppp606, @siriwatknp, @ThomasTheHuman
261
+
262
+ ## 5.4.2
263
+
264
+ _Feb 15, 2022_
265
+
266
+ A big thanks to the 16 contributors who made this release possible. Here are some highlights ✨:
267
+
268
+ - 🛠 @sydneyjodon-wk improved propTypes of the ToggleButton components (#30883)
269
+ - Several 🐛 bug fixes and 📚 documentation improvements
270
+
271
+ ### `@mui/material@5.4.2`
272
+
273
+ - [Select] Allow customizing Select based on its variant (#30788) @michaldudak
274
+ - [Portal] Re-export 'Portal' in material (#31003) @liradb2000
275
+ - [ToggleButton] Add prop types for `onClick` and `onChange` (#30883) @sydneyjodon-wk
276
+ - [Typescript] Added TypeText declaration to the exports file (#30890) @agauravdev
277
+
278
+ ### `@mui/system@5.4.2`
279
+
280
+ - [system] Fix broken behavior when breakpoints input are not ordered (#30996) @mnajdova
281
+
282
+ ### `@mui/lab@5.0.0-alpha.69`
283
+
284
+ - [DatePicker] Fix passing clearable prop (#30786) @alisasanib
285
+
286
+ ### `@mui/joy@5.0.0-alpha.15`
287
+
288
+ - [Joy] Improve variant customization experience (#30878) @siriwatknp
289
+ - [Joy] Make `sx` prop work in Joy (#30955) @siriwatknp
290
+
291
+ ### Framer
292
+
293
+ - [design] Remove framer components (#30983) @mbrookes
294
+ - [design] Remove framer leftovers (#31070) @michaldudak
295
+
296
+ ### Docs
297
+
298
+ - [docs] Update installation guide of the icons package (#31026) @huyenltnguyen
299
+ - [docs] Improve the indication for the legacy APIs (#30995) @mnajdova
300
+ - [docs] Specify which props are added in the default `shouldForwardProp` option (#30978) @mnajdova
301
+ - [docs] Fix layout shift on loading (#31017) @oliviertassinari
302
+ - [docs] Increase scroll affordance in wide tables (#30713) @danilo-leal
303
+ - [docs] Fix look & feel of the Masonry demos (#30971) @oliviertassinari
304
+ - [docs] Improve Base component demos (#30884) @danilo-leal
305
+ - [docs] Use full product names (Material UI, MUI System) (#30960) @oliviertassinari
306
+ - [docs] Prefer useEnhancedEffect to avoid server side warnings (#30977) @mnajdova
307
+ - [docs] Fix force redirection to a different locale (#30967) @oliviertassinari
308
+ - [docs] Add live Tailwind CSS demo (#30966) @oliviertassinari
309
+ - [website] Add banner for promoting priority open roles (#31076) @danilo-leal
310
+ - [website] Open Full-stack Engineer role for studio (#31038) @newguy-123
311
+ - [website] Minor security improvements (#31062) @oliviertassinari
312
+ - [website] Improve title of open roles (#30963) @DanailH
313
+ - [website] Add BIMI avatar (#30444) @oliviertassinari
314
+ - [website] Add Sycamore to About page (#31000) @samuelsycamore
315
+
316
+ ### Core
317
+
318
+ - [benchmark] Add missing dependency (#30994) @michaldudak
319
+ - [core] Bump date-io version (#31016) @michaldudak
320
+ - [core] Fix typo in useSlider (#31061) @ryohey
321
+ - [core] Remove unused draft-js types package (#30993) @michaldudak
322
+ - [test] Test if certain Base members are exported from Material UI (#31067) @michaldudak
323
+ - [core] Remove dead code (#31064) @oliviertassinari
324
+
325
+ All contributors of this release in alphabetical order: @agauravdev, @alisasanib, @DanailH, @danilo-leal, @huyenltnguyen, @l10nbot, @liradb2000, @mbrookes, @michaldudak, @mnajdova, @newguy-123, @oliviertassinari, @ryohey, @samuelsycamore, @siriwatknp, @sydneyjodon-wk
326
+
327
+ ## 5.4.1
328
+
329
+ <!-- generated comparing v5.4.0..master -->
330
+
331
+ _Feb 8, 2022_
332
+
333
+ A big thanks to the 24 contributors who made this release possible. Here are some highlights ✨:
334
+
335
+ - ♿️ Snackbar messages are now announced by NVDA when using Firefox (#30774) @eps1lon
336
+ - Several 🐛 bug fixes and 📚 documentation improvements.
337
+
338
+ ### `@mui/material@5.4.1`
339
+
340
+ - &#8203;<!-- 37 -->[AvatarGroup] Enable targeting of additional Avatar when max props is passed (#30794) @mogrady88
341
+ - &#8203;<!-- 36 -->[Badge] Fix showzero and invisible condition (#30899) @alisasanib
342
+ - &#8203;<!-- 35 -->[ButtonBase] Expose ref to TouchRipple (#30901) @m4theushw
343
+ - &#8203;<!-- 15 -->[Fab] Add support for the default theme colors (#30846) @alisasanib
344
+ - &#8203;<!-- 11 -->[SelectInput] Only attach click handler to label if a labelId is passed (#30239) @johsunds
345
+ - &#8203;<!-- 09 -->[Snackbar] Ensure messages are announced in NVDA+FF (#30774) @eps1lon
346
+
347
+ ### `@mui/base@5.0.0-alpha.68`
348
+
349
+ - &#8203;<!-- 10 -->[SelectUnstyled] Improve exported types (#30895) @michaldudak
350
+
351
+ ### `@mui/lab@5.0.0-alpha.68`
352
+
353
+ - &#8203;<!-- 12 -->[Pickers] Fix `onDismiss` handler in `MobileDatePicker` (#30768) @Ashish2097
354
+ - &#8203;<!-- 06 -->[TimePicker] Add font family for clock numbers (#30738) @alisasanib
355
+
356
+ ### `@mui/joy@5.0.0-alpha.14`
357
+
358
+ - &#8203;<!-- 14 -->[Joy] Add `IconButton` component (#30864) @siriwatknp
359
+ - &#8203;<!-- 13 -->[Joy] Use icon inside a Button (#30803) @siriwatknp
360
+
361
+ ### Docs
362
+
363
+ - &#8203;<!-- 16 -->[examples] Fix vitejs example and improve HMR (#30897) @mihailgaberov
364
+ - &#8203;<!-- 33 -->[docs] Improve autocomplete "limit tags" demo (#30910) @danilo-leal
365
+ - &#8203;<!-- 34 -->[docs] Sync translations with Crowdin (#30950) @l10nbot
366
+ - &#8203;<!-- 38 -->[docs] Improve description of the disableRestoreFocus prop of the `TrapFocus` (#30912) @flaviendelangle
367
+ - &#8203;<!-- 32 -->[docs] Remove ul with div children and replace with nav element (#30534) @joeframbach
368
+ - &#8203;<!-- 31 -->[docs] Add Saleor to showcase (#30924) @cherniavskii
369
+ - &#8203;<!-- 30 -->[docs] Include JSS in styling solution interoperability guide (#30736) @garronej
370
+ - &#8203;<!-- 29 -->[docs] Fix contents of link-underline-hover (#30904) @pppp606
371
+ - &#8203;<!-- 28 -->[docs] Fix markdown table format (#30947) @oliviertassinari
372
+ - &#8203;<!-- 27 -->[docs] Add missing import to RTL guide (#30891) @CFarhad
373
+ - &#8203;<!-- 26 -->[docs] Fix WithStyles import statement for @mui/styles (#30942) @altruity
374
+ - &#8203;<!-- 25 -->[docs] Fix broken roadmap table (#30943) @cherniavskii
375
+ - &#8203;<!-- 24 -->[docs] Fix broken URL in "Edit this page" button (#30923) @cherniavskii
376
+ - &#8203;<!-- 23 -->[docs] Migrate content to the new location (#30757) @siriwatknp
377
+ - &#8203;<!-- 22 -->[docs] Fix the link to the Vite.js example project (#30872) @GneyHabub
378
+ - &#8203;<!-- 21 -->[docs] Clarify the minimum configuration for TypeScript (#30790) @mnajdova
379
+ - &#8203;<!-- 20 -->[docs] Clarify what the name of @mui/material is (#30866) @oliviertassinari
380
+ - &#8203;<!-- 19 -->[docs] Remove migration from the releases page (#30863) @mnajdova
381
+ - &#8203;<!-- 18 -->[docs] Update Instructions for Google Maps Autocomplete (#30849) @kjschabra
382
+ - &#8203;<!-- 17 -->[docs] Hotfix notification (#30862) @siriwatknp
383
+ - &#8203;<!-- 04 -->[website] Sample GA to avoid hit limit (#30919) @oliviertassinari
384
+ - &#8203;<!-- 03 -->[website] Hide scrollbars of hero containers (#29474) @theiliad
385
+ - &#8203;<!-- 02 -->[website] Polishing spacing and other small things (#30828) @danilo-leal
386
+ - &#8203;<!-- 01 -->[website] Close the Developer Advocate role (#30867) @oliviertassinari
387
+
388
+ ### Core
389
+
390
+ - &#8203;<!-- 37 -->[core] Batch small fixes (#30952) @oliviertassinari
391
+ - &#8203;<!-- 34 -->[core] Rename the GitHub org (#30944) @oliviertassinari
392
+ - &#8203;<!-- 33 -->[core] Fix propTypes in components where OverridableStringUnion is used (#30682) @paales
393
+ - &#8203;<!-- 08 -->[test] Codify the difference between keyup and keydown in SelectUnstyled (#30857) @eps1lon
394
+ - &#8203;<!-- 07 -->[test] Fix typo (#30841) @caioagiani
395
+ - &#8203;<!-- 05 -->[utils] Use built-in hook when available for useId (#30654) @eps1lon
396
+
397
+ All contributors of this release in alphabetical order: @alisasanib, @altruity, @Ashish2097, @caioagiani, @CFarhad, @cherniavskii, @danilo-leal, @eps1lon, @flaviendelangle, @garronej, @GneyHabub, @joeframbach, @johsunds, @kjschabra, @m4theushw, @michaldudak, @mihailgaberov, @mnajdova, @mogrady88, @oliviertassinari, @paales, @pppp606, @siriwatknp, @theiliad
398
+
399
+ ## 5.4.0
400
+
401
+ <!-- generated comparing v5.3.1..master -->
402
+
403
+ _Feb 1, 2022_
404
+
405
+ A big thanks to the 22 contributors who made this release possible. Here are some highlights ✨:
406
+
407
+ - 🛠 @goncalovf added an example project using [MUI with Vite.js](https://github.com/mui/material-ui/tree/master/examples/vitejs) (#28241)
408
+ - Number of 🐛 bug fixes and 📚 documentation improvements.
409
+
410
+ ### `@mui/material@5.4.0`
411
+
412
+ #### Breaking changes
413
+
414
+ - &#8203;<!-- 27 -->[core] Do not reexport Base from Material (#30853) @michaldudak
415
+
416
+ All Base components were exported from the `@mui/material` package and treated as stable even though the `@mui/base` package is in development. It could create a lot of confusion if developers start using Base components, depend on them, and demand quality found in "proper" Material components. We admit it was a mistake to reexport these components without marking them as unstable.
417
+
418
+ Developers are still encouraged to evaluate the Base components, but they should do so by explicitly installing the `@mui/base` package.
419
+
420
+ This is technically a breaking change as it removes a number of components from the `@mui/material` package. However, we believe that removing the components now and potentially breaking the codebases will do less harm than introducing "silent" breaking changes to Base components while continuing reexporting them from `@mui/material`.
421
+
422
+ Note: the utility components, such as ClickAwayListener, NoSsr, Portal, and TextareaAutosize continue to be exported from both `@mui/material` and `@mui/base`.
423
+
424
+ If you're encountering build errors after upgrading @mui/material, do the following:
425
+
426
+ 1. Install @mui/base: npm install @mui/base or yarn add @mui/base
427
+ 2. Make sure the version of @mui/base match the version of @mui/material
428
+ 3. Change the import paths of unstyled components from @mui/material to @mui/base, e.g.:
429
+
430
+ ```diff
431
+ - @import ButtonUnstyled from '@mui/material/ButtonUnstyled';
432
+ + @import ButtonUnstyled from '@mui/base/ButtonUnstyled';
433
+ ```
434
+
435
+ #### Changes
436
+
437
+ - &#8203;<!-- 30 -->[Autocomplete] Add `readOnly` prop (#30706) @ZeeshanTamboli
438
+ - &#8203;<!-- 29 -->[Autocomplete] Fix typos in the page (#30737) @austinewuncler
439
+ - &#8203;<!-- 14 -->[FormControlLabel][formgroup] add Mui-error class (#30656) @alisasanib
440
+ - &#8203;<!-- 13 -->[Grid] Fix prop check for applying wrap-reverse (#30813) @Hubbz
441
+ - &#8203;<!-- 07 -->[TextField] Remove notch when no label is added (#30560) @alisasanib
442
+ - &#8203;<!-- 06 -->[TextField] Remove usage of dangerouslySetInnerHTML (#30776) @Jack-Works
443
+ - &#8203;<!-- 05 -->[TreeView] Select node when key `Enter` is pressed (#30795) @dryrainbow
444
+ - &#8203;<!-- 04 -->[useMediaQuery] Ensure no tearing in React 18 (#30655) @eps1lon
445
+
446
+ ### `@mui/base@5.0.0-alpha.67`
447
+
448
+ - &#8203;<!-- 11 -->[SelectUnstyled] Create unstyled select (+ hook) (#30113) @michaldudak
449
+
450
+ ### `@mui/lab@5.0.0-alpha.67`
451
+
452
+ - &#8203;<!-- 23 -->[DateTimePicker] Fix month view highlight wrong tab (#30773) @DiegoYungh
453
+ - &#8203;<!-- 12 -->[pickers] Enable the sx props on all components (#30749) @boutahlilsoufiane
454
+
455
+ ### Docs
456
+
457
+ - &#8203;<!-- 28 -->[blog] Introducing callback support in style overrides (#30668) @siriwatknp
458
+ - &#8203;<!-- 23 -->[docs] Add notifications for the blog posts (#30852) @siriwatknp
459
+ - &#8203;<!-- 22 -->[docs] Improve the interoperability guide (#30785) @mnajdova
460
+ - &#8203;<!-- 21 -->[docs] Improve the Getting Started documentation content (#30808) @mnajdova
461
+ - &#8203;<!-- 20 -->[docs] Fix typo in ad fallback (#30823) @cherniavskii
462
+ - &#8203;<!-- 19 -->[docs] Change ThemeProvider API links (#30705) @atakanzen
463
+ - &#8203;<!-- 18 -->[docs] Retain vendor prefixing in rtl example (#30710) @ryancogswell
464
+ - &#8203;<!-- 17 -->[docs] Fix typo in the Popper ScrollPlayground demo (#30780) @tanyabouman
465
+ - &#8203;<!-- 16 -->[docs] Small fixes on the jss-to-tss migration guide (#30734) @garronej
466
+ - &#8203;<!-- 15 -->[examples] Add Vite.js example (#28241) @goncalovf
467
+
468
+ ### Core
469
+
470
+ - &#8203;<!-- 29 -->[core] Clarify the label, to match with MUI X (#30831) @oliviertassinari
471
+ - &#8203;<!-- 26 -->[core] Remove none code related instructions from git (#30843) @oliviertassinari
472
+ - &#8203;<!-- 25 -->[core] Fix typos in comments for scripts (#30809) @aefox
473
+ - &#8203;<!-- 24 -->[core] Fix 301 link in the blog @oliviertassinari
474
+ - &#8203;<!-- 10 -->[test] Fix tests on Node 16 (#30819) @michaldudak
475
+ - &#8203;<!-- 09 -->[test] Add explicit types to support noImplicityAny=false (#30798) @m4theushw
476
+ - &#8203;<!-- 08 -->[test] Support React.useId format in \*DescriptionOf (#30657) @eps1lon
477
+ - &#8203;<!-- 03 -->[website] Fix SEO issues (#30829) @oliviertassinari
478
+ - &#8203;<!-- 02 -->[website] Add designer position page (#30708) @danilo-leal
479
+ - &#8203;<!-- 01 -->[website] Polish /about page (#30747) @oliviertassinari
480
+
481
+ All contributors of this release in alphabetical order: @aefox, @alisasanib, @atakanzen, @austinewuncler, @boutahlilsoufiane, @cherniavskii, @danilo-leal, @DiegoYungh, @dryrainbow, @eps1lon, @garronej, @goncalovf, @Hubbz, @Jack-Works, @m4theushw, @michaldudak, @mnajdova, @oliviertassinari, @ryancogswell, @siriwatknp, @tanyabouman, @ZeeshanTamboli
482
+
483
+ ## 5.3.1
484
+
485
+ <!-- generated comparing v5.3.0..master -->
486
+
487
+ _Jan 24, 2022_
488
+
489
+ A big thanks to the 12 contributors who made this release possible. Here are some highlights ✨:
490
+
491
+ - 🛠 @mnajdova added interoperability guide for using Tailwind CSS (#30700)
492
+ - A meaningful number of 🐛 bug fixes and 📚 documentation improvements.
493
+
494
+ ### `@mui/icons-material@5.3.1`
495
+
496
+ - &#8203;<!-- 04 -->[icons] Fix naming typos (#30512) @MrHBS
497
+ - &#8203;<!-- 03 -->[icons] Makes material-icons work with Joy (#30681) @siriwatknp
498
+
499
+ ### `@mui/base@5.0.0-alpha.66`
500
+
501
+ - &#8203;<!-- 02 -->[SliderUnstyled] Improve typings on some internal utils (#30614) @mnajdova
502
+
503
+ ### Core
504
+
505
+ - &#8203;<!-- 24 -->[core] Batch small changes (#30690) @oliviertassinari
506
+ - &#8203;<!-- 23 -->[core] Add new structure to ignore list crowdin (#30608) @siriwatknp
507
+ - &#8203;<!-- 22 -->[core] Correct version in package.json (#30677) @michaldudak
508
+ - &#8203;<!-- 01 -->[test] Fix buildApiUtils tests on Windows (#30698) @michaldudak
509
+
510
+ ### Docs
511
+
512
+ - &#8203;<!-- 26 -->[blog] Enable blog index (#30724) @siriwatknp
513
+ - &#8203;<!-- 25 -->[blog] Introducing the Row Grouping feature (#30598) @alexfauquette
514
+ - &#8203;<!-- 21 -->[docs] Fix SEO crawl errors (#30733) @oliviertassinari
515
+ - &#8203;<!-- 20 -->[docs] Update migration-v4.md (#30721) @ddecrulle
516
+ - &#8203;<!-- 19 -->[docs] Fix migration issues detected by `ahrefs` (#30751) @siriwatknp
517
+ - &#8203;<!-- 18 -->[docs] Add interoprability guide for using Tailwind CSS (#30700) @mnajdova
518
+ - &#8203;<!-- 17 -->[docs] Fix typo in containedSizeMedium class (#30723) @aaneitchik
519
+ - &#8203;<!-- 16 -->[docs] Hotfix the wrong URL in X marketing page (#30729) @siriwatknp
520
+ - &#8203;<!-- 15 -->[docs] Post migration preparation fix (#30716) @siriwatknp
521
+ - &#8203;<!-- 14 -->[docs] Update remix example to restore from error pages (#30592) @mnajdova
522
+ - &#8203;<!-- 13 -->[docs] Use new URLs when enable_redirects is true (#30704) @siriwatknp
523
+ - &#8203;<!-- 12 -->[docs] Add a missing bracket in the migration-v4 guide (#30616) @chaosmirage
524
+ - &#8203;<!-- 11 -->[docs] Add Checkbox color prop change (#30697) @aaneitchik
525
+ - &#8203;<!-- 10 -->[docs] Fix migration to have singular urls (#30695) @siriwatknp
526
+ - &#8203;<!-- 09 -->[docs] Update UXPin link to new landing page (#30691) @Evomatic
527
+ - &#8203;<!-- 08 -->[docs] Close user menu on click in the responsive app bar demo (#30664) @NoahYarian
528
+ - &#8203;<!-- 07 -->[docs] Clear the difference between UI and React components (#29930) @oliviertassinari
529
+ - &#8203;<!-- 06 -->[docs] Make Autocomplete docs gender neutral (#30679) @exequielbc
530
+ - &#8203;<!-- 05 -->[docs] Update doc structure for X components (#30684) @siriwatknp
531
+
532
+ All contributors of this release in alphabetical order: @aaneitchik, @alexfauquette, @chaosmirage, @ddecrulle, @Evomatic, @exequielbc, @michaldudak, @mnajdova, @MrHBS, @NoahYarian, @oliviertassinari, @siriwatknp
533
+
534
+ ## 5.3.0
535
+
536
+ <!-- generated comparing v5.2.8..master -->
537
+
538
+ _Jan 17, 2022_
539
+
540
+ A big thanks to the 15 contributors who made this release possible. Here are some highlights ✨:
541
+
542
+ - 🛠 @siriwatknp added support for callbacks in styleOverrides (#30524)
543
+ - 🧩 @ZeeshanTamboli and @VicHofs improved customization of components (#30515, #30212)
544
+ - 🛠 @hbjORbj fixed the use of ResizeObserver in Masonry component (#29896)
545
+ - 📄 @danilo-leal and @siriwatknp created our own blog home page (#30121)
546
+
547
+ ### `@mui/material@5.3.0`
548
+
549
+ - [Autocomplete] Add ability to pass props to `Paper` component (#30515) @ZeeshanTamboli
550
+ - [Select] Add defaultOpen prop (#30212) @VicHofs
551
+
552
+ ### `@mui/system@5.3.0`
553
+
554
+ - [system][box, grid, typography] `textTransform` prop should work directly on component (#30437) @hbjORbj
555
+ - [system] Support callback value in `styleOverrides` slot (#30524) @siriwatknp
556
+
557
+ ### `@mui/lab@5.0.0-alpha.65`
558
+
559
+ - [Masonry] Observe every masonry child to trigger computation when needed (#29896) @hbjORbj
560
+ - [MobileDatePicker] Fix calling onOpen when readOnly is true (#30561) @alisasanib
561
+
562
+ ### `@mui/codemod@5.3.0`
563
+
564
+ - [codemod] Bump `jscodeshift` to remove `colors` dependency (#30578) @siriwatknp
565
+
566
+ ### `@mui/styled-engine-sc@5.3.0`
567
+
568
+ - [styled-engine-sc] Add the withConfig API to enable using the babel plugin for styled-comonents (#30589) @mnajdova
569
+
570
+ ### `@mui/joy@5.0.0-alpha.11`
571
+
572
+ - [Joy] Add `SvgIcon` component (#30570) @hbjORbj
573
+
574
+ ### `@mui/base@5.0.0-alpha.65`
575
+
576
+ - [SliderUnstyled] Add useSlider hook and polish (#30094) @mnajdova
577
+
578
+ ### Docs
579
+
580
+ - [docs] End code block in test/README.md (#30531) @yaboi
581
+ - [docs] Remove redundant grouping in /components/radio-buttons/ (#30065) @eps1lon
582
+ - [docs] Update migration scripts and e2e tests (#30583) @siriwatknp
583
+ - [docs] Fix migration guides for versions older than v4 (#30595) @kkirsche
584
+ - [docs] Inform about specific files for DataGrid locales (#30411) @alexfauquette
585
+ - [docs] jss-to-tss migration advise to drop clsx in favor of cx (#30527) @garronej
586
+ - [docs] Fix integration with MUI X (#30593) @oliviertassinari
587
+ - [docs] Adding peer dependencies explanation on @mui/lab README.md (#30532) @glaucoheitor
588
+ - [docs] Add missing quote in migration docs (#30587) @Atralbus
589
+ - [docs] Update link to Doit sponsor (#30586) @oliviertassinari
590
+ - [docs] Add products identifier and drawer (#30283) @siriwatknp
591
+ - [website] Fix code button with installation command (#30622) @danilo-leal
592
+ - [website] Add a Blog index page (#30121) @danilo-leal
593
+ - [website] Migrate Twitter from @MaterialUI to @MUI_hq @oliviertassinari
594
+ - [website] Add Andrii to the About Us page (#30581) @cherniavskii
595
+
596
+ ### Core
597
+
598
+ - [core] Revert changes to peer dependencies (#30662) @oliviertassinari
599
+ - [core] Renovate should not try to update node (#30659) @oliviertassinari
600
+ - [core] Remove dead files (#30663) @oliviertassinari
601
+ - [core] Fix outdated TypeScript template (#30596) @oliviertassinari
602
+ - [core] Remove extra `</p>` from header of README.md (#30530) @yaboi
603
+ - [core] Fix `docs:api` script for Windows OS (#30533) @ZeeshanTamboli
604
+
605
+ All contributors of this release in alphabetical order: @alexfauquette, @alisasanib, @Atralbus, @cherniavskii, @danilo-leal, @eps1lon, @garronej, @glaucoheitor, @hbjORbj, @kkirsche, @mnajdova, @oliviertassinari, @siriwatknp, @VicHofs, @yaboi, @ZeeshanTamboli
606
+
607
+ ## 5.2.8
608
+
609
+ <!-- generated comparing v5.2.7..master -->
610
+
611
+ _Jan 10, 2022_
612
+
613
+ A big thanks to the 10 contributors who made this release possible. Here are some highlights ✨:
614
+
615
+ - A meaningful number of 🐛 bug fixes and 📚 documentation improvements.
616
+
617
+ ### `@mui/material@5.2.8`
618
+
619
+ - &#8203;<!-- 05 -->[TextField][inputlabel] Remove `pointer-events: none` property (#30493) @hbjORbj
620
+ - &#8203;<!-- 02 -->[Slider] Add `input` slot to components and componentsProps (#30362) @alexandre-lelain
621
+
622
+ ### `@mui/joy@5.0.0-alpha.10`
623
+
624
+ - &#8203;<!-- 04 -->[Joy] Add `Typography` component (#30489) @siriwatknp
625
+ - &#8203;<!-- 03 -->[Joy] Add functional `Switch` component (#30487) @siriwatknp
626
+
627
+ ### Docs
628
+
629
+ - &#8203;<!-- 18 -->[docs] Update markdown parser to remove backticks from description (#30495) @aefox
630
+ - &#8203;<!-- 17 -->[docs] Fix the crash when applying custom colors (#30563) @siriwatknp
631
+ - &#8203;<!-- 16 -->[docs] Location change of Sebastian (#30528) @eps1lon
632
+ - &#8203;<!-- 15 -->[docs] Lint markdown in the CI (#30395) @oliviertassinari
633
+ - &#8203;<!-- 14 -->[docs] Fix `componentsProps` API docs and PropTypes (#30502) @ZeeshanTamboli
634
+ - &#8203;<!-- 13 -->[docs] Codemod doc for overriding styles using tss (#30499) @garronej
635
+ - &#8203;<!-- 12 -->[docs] fix edge case when replacing data-grid url for migration (#30505) @siriwatknp
636
+ - &#8203;<!-- 11 -->[docs] fix replace url for migration (#30503) @siriwatknp
637
+ - &#8203;<!-- 10 -->[docs] Prepare scripts for migrating to new structure (#30386) @siriwatknp
638
+ - &#8203;<!-- 09 -->[docs] Adjust RTL Guide demos to fully support RTL (#30387) @noam-honig
639
+ - &#8203;<!-- 08 -->[docs] Move @eps1lon to community (#30473) @oliviertassinari
640
+ - &#8203;<!-- 07 -->[docs] Fix typo and spelling in the-sx-prop.md (#30482) @aefox
641
+ - &#8203;<!-- 06 -->[docs] More general docs polishing (#30371) @danilo-leal
642
+ - &#8203;<!-- 01 -->[website] Add José on the /about page (#30492) @danilo-leal
643
+
644
+ All contributors of this release in alphabetical order: @aefox, @alexandre-lelain, @danilo-leal, @eps1lon, @garronej, @hbjORbj, @noam-honig, @oliviertassinari, @siriwatknp, @ZeeshanTamboli
645
+
646
+ ## 5.2.7
647
+
648
+ <!-- generated comparing v5.2.6..master -->
649
+
650
+ _Jan 3, 2022_
651
+
652
+ A big thanks to the 14 contributors who made this release possible. Here are some highlights ✨:
653
+
654
+ - 📓 Improvements on the Vietnamese (vi-VN) and Finnish (fi-FI) locales (#30426, #30442) @hckhanh @Certificate
655
+ - And more 🐛 bug fixes and 📚 documentation improvements.
656
+
657
+ ### `@mui/material@5.2.7`
658
+
659
+ - &#8203;<!-- 14 -->[Autocomplete] Fix calling onChange for duplicate values (#30374) @alisasanib
660
+ - &#8203;<!-- 13 -->[Avatar] Fix TypeScript error on imgProps (#30255) @ahmad-reza619
661
+ - &#8203;<!-- 12 -->[Badge] Fix `classes` prop TypeScript type (#30427) @ZeeshanTamboli
662
+ - &#8203;<!-- 03 -->[SvgIcon] Allow viewBox to inherit from Component through inheritViewBox prop (#29954) @alex-dikusar
663
+ - &#8203;<!-- 04 -->[SvgIcon] Correct API docs and code style (#30470) @michaldudak
664
+
665
+ ### Docs
666
+
667
+ - &#8203;<!-- 11 -->[blog] 2021 (#30425) @oliviertassinari
668
+ - &#8203;<!-- 15 -->[docs] Fix typo on the Grid docs page (#30446) @abhi45
669
+ - &#8203;<!-- 07 -->[docs] Fix `useMediaQuery` SSR example to v5 theme API (#30454) @ValentinH
670
+ - &#8203;<!-- 11 -->[docs] Improve the migration guide and add examples for transforming to `tss-react` (#30388) @mnajdova
671
+ - &#8203;<!-- 09 -->[docs] Make the reference to the select clearer (#30460) @boazrymland
672
+ - &#8203;<!-- 08 -->[docs] Sync translations with Crowdin (#30385) @l10nbot
673
+ - &#8203;<!-- 06 -->[example] Avoid double rendering in the Remix example (#30366) @mnajdova
674
+ - &#8203;<!-- 05 -->[i18n] improve viVN locale (#30426) @hckhanh
675
+ - &#8203;<!-- 04 -->[l10n] Improve fiFI locale (#30442) @Certificate
676
+ - &#8203;<!-- 02 -->[website] Add new batch of open roles (#30282) @oliviertassinari
677
+ - &#8203;<!-- 01 -->[website] Refactor page context with next router (#30020) @siriwatknp
678
+
679
+ ### Core
680
+
681
+ - &#8203;<!-- 13 -->[core] Automatically close issues that are incomplete and inactive (#30459) @oliviertassinari
682
+ - &#8203;<!-- 10 -->[core] Remove contrib tweet (#30455) @oliviertassinari
683
+
684
+ All contributors of this release in alphabetical order: @abhi45, @ahmad-reza619, @alex-dikusar, @alisasanib, @boazrymland, @Certificate, @hckhanh, @l10nbot, @michaldudak, @mnajdova, @oliviertassinari, @siriwatknp, @ValentinH, @ZeeshanTamboli
685
+
686
+ ## 5.2.6
687
+
688
+ <!-- generated comparing v5.2.5..master -->
689
+
690
+ _Dec 27, 2021_
691
+
692
+ A big thanks to the 14 contributors who made this release possible. Here are some highlights ✨:
693
+
694
+ - 📓 The Norwegian Bokmål (nb-NO) locale was added (#27520) @wogsland
695
+ - 🛠 Introduced a new `useBadge` hook in the `@mui/base` package (#30246) @mnajdova
696
+ - And more 🐛 bug fixes and 📚 documentation improvements.
697
+
698
+ ### `@mui/material@5.2.6`
699
+
700
+ - &#8203;<!-- 24 -->[ButtonGroup] Fix typo in ButtonGroupContext's interface (#30376) @kealjones-wk
701
+ - &#8203;<!-- 03 -->[l10n] Add Norwegian Bokmål (nb-NO) locale (#27520) @wogsland
702
+
703
+ ### `@mui/base@5.0.0-alpha.62`
704
+
705
+ - &#8203;<!-- 26 -->[BadgeUnstyled] Add useBadge hook (#30246) @mnajdova
706
+
707
+ ### `@mui/joy@5.0.0-alpha.8`
708
+
709
+ - &#8203;<!-- 04 -->[Joy] Button API (#29962) @siriwatknp
710
+
711
+ ### Docs
712
+
713
+ - &#8203;<!-- 27 -->[docs] Fix color coercion (#30319) @Janpot
714
+ - &#8203;<!-- 25 -->[blog] Fix file import conflict resolution (#30391) @oliviertassinari
715
+ - &#8203;<!-- 21 -->[docs] Fix crash on Safari because of unsupported lookahead feature (#30345) @cherniavskii
716
+ - &#8203;<!-- 20 -->[docs] Update to new website domain (#30396) @ryota-murakami
717
+ - &#8203;<!-- 19 -->[docs] Fix text from material-ui to @mui to reflect v5 name changes (#30393) @pupudu
718
+ - &#8203;<!-- 18 -->[docs] Fix a11y in Menu demos (#30378) @ZeeshanTamboli
719
+ - &#8203;<!-- 17 -->[docs] Document how to unmount transition child (#30382) @oliviertassinari
720
+ - &#8203;<!-- 16 -->[docs] The current standard for quotes is QUOTATION MARK @oliviertassinari
721
+ - &#8203;<!-- 15 -->[docs] Fix 404 links (#30380) @oliviertassinari
722
+ - &#8203;<!-- 14 -->[docs] Fix Breadcrumb description (#30307) @jamesmelzer
723
+ - &#8203;<!-- 13 -->[docs] Modify injection order for Gatsby and SSR examples (#30358) @ShuPink
724
+ - &#8203;<!-- 12 -->[docs] Improve the translation experience (#30373) @oliviertassinari
725
+ - &#8203;<!-- 11 -->[docs] Sync translations with Crowdin (#30176) @l10nbot
726
+ - &#8203;<!-- 10 -->[docs] Fix link to /size-snapshot (#30363) @oliviertassinari
727
+ - &#8203;<!-- 09 -->[docs] Fix incorrect aria label in SpeedDial demo (#30354) @chwallen
728
+ - &#8203;<!-- 08 -->[docs] Fix incorrect number of breakpoint helpers (#30353) @chwallen
729
+ - &#8203;<!-- 07 -->[docs] Update outdated links (#30260) @oliviertassinari
730
+ - &#8203;<!-- 06 -->[docs] Support redirects from old urls to /material/\* (#30286) @siriwatknp
731
+ - &#8203;<!-- 05 -->[examples] Fix CSS modules integration (#30381) @oliviertassinari
732
+ - &#8203;<!-- 02 -->[website] Fix SEO issues (#30372) @oliviertassinari
733
+ - &#8203;<!-- 01 -->[website] Sync sponsors (#30259) @oliviertassinari
734
+
735
+ ### Core
736
+
737
+ - &#8203;<!-- 28 -->[core] Rename Material-UI to MUI (#30338) @ZeeshanTamboli
738
+ - &#8203;<!-- 23 -->[core] Fix warning in dev mode (#30368) @oliviertassinari
739
+ - &#8203;<!-- 22 -->[core] Update `buildApi` script to support new structure (#30245) @siriwatknp
740
+
741
+ All contributors of this release in alphabetical order: @cherniavskii, @chwallen, @jamesmelzer, @Janpot, @kealjones-wk, @l10nbot, @mnajdova, @oliviertassinari, @pupudu, @ryota-murakami, @ShuPink, @siriwatknp, @wogsland, @ZeeshanTamboli
742
+
743
+ ## 5.2.5
744
+
745
+ <!-- generated comparing v5.2.4..master -->
746
+
747
+ _Dec 20, 2021_
748
+
749
+ A big thanks to the 16 contributors who made this release possible. Here are some highlights ✨:
750
+
751
+ - 🛠 This release mostly improves what's behind the scenes: infrastructure and tests
752
+ - 📓 Danish (da-DK) locale was added (#29485) @mikk5829
753
+ - 🖌 Polished the design of Base components (#30149) and the docs in general (#29994) @danilo-leal
754
+ - 📚 Many additions and improvements to the documentation were made
755
+
756
+ ### `@mui/material@5.2.5`
757
+
758
+ - [l10n] Add Danish (da-DK) locale (#29485) @mikk5829
759
+ - [LoadingButton] Label progressbar by the LoadingButton (#30002) @eps1lon
760
+ - [Tabs] Remove unnecessary `Partial<>` type around TabIndicatorProps type (#30254) @ZeeshanTamboli
761
+
762
+ ### `@mui/system@5.2.5`
763
+
764
+ - [system] Use `useEnhancedEffect` to prevent flicker (#30216) @hbjORbj
765
+
766
+ ### `@mui/lab@5.0.0-alpha.61`
767
+
768
+ - [pickers] Fix the wrong MuiClockPicker's ArrowSwitcher slot name (#30226) @rejetto
769
+
770
+ ### Docs
771
+
772
+ - [docs] Run JS compiler on markdown output (#29732) @Janpot
773
+ - [Badge] Add tests for `anchorOrigin` prop (#30147) @daniel-sachs
774
+ - [docs] Add cssmodule injection order comments to Nextjs example (#30213) @ShuPink
775
+ - [docs] Remove extra word in Select component code example comments (#30281) @KThompso
776
+ - [docs] Improve the description of the Accordion (#30253) @jamesmelzer
777
+ - [docs] Heading capitalization convention @oliviertassinari
778
+ - [docs] Rename remaining 'unstyled' references to 'base' (#30206) @michaldudak
779
+ - [docs] Add to migration doc about ref type specificity (#30114) @hbjORbj
780
+ - [docs] Add script to clone pages (#30107) @siriwatknp
781
+ - [docs] Correct colors in breakpoints documentation (#30219) @michaldudak
782
+ - [docs] Sync icon search UI state with the url (#30075) @Janpot
783
+ - [docs] Base components demos design polish (#30149) @danilo-leal
784
+ - [docs] General documentation polish (#29994) @danilo-leal
785
+ - [examples] Fix typo in the remix example's README (#30289) @lemol
786
+ - [website] Remove expired gold sponsor (#30222) @oliviertassinari
787
+ - [website] Remove broken showcase links (#30217) @mnajdova
788
+
789
+ ### Core
790
+
791
+ - [test] Reduce bundle size comparison memory consumption (#30195) @Janpot
792
+ - [core] make snapshot comparison more resilient (#30183) @Janpot
793
+ - [core] update formatted ts demo to support new structure (#30248) @siriwatknp
794
+ - [core] cache dependencies in github actions (#30211) @siriwatknp
795
+ - [core] fix root package version (#30204) @siriwatknp
796
+ - [core] Fail the build when the dangerjs script errors (#30186) @Janpot
797
+ - [test] Add E2E website tests (#30128) @siriwatknp
798
+
799
+ All contributors of this release in alphabetical order: @daniel-sachs, @danilo-leal, @eps1lon, @hbjORbj, @jamesmelzer, @Janpot, @KThompso, @lemol, @michaldudak, @mikk5829, @mnajdova, @oliviertassinari, @rejetto, @ShuPink, @siriwatknp, @ZeeshanTamboli
800
+
801
+ ## 5.2.4
802
+
803
+ <!-- generated comparing v5.2.3..master -->
804
+
805
+ _Dec 14, 2021_
806
+
807
+ A big thanks to the 16 contributors who made this release possible. Here are some highlights ✨:
808
+
809
+ - ✨ Add `not` operator to `theme.breakpoints` (#29311) @Philipp000
810
+
811
+ ```js
812
+ const styles = (theme) => ({
813
+ root: {
814
+ backgroundColor: 'blue',
815
+ // Match [xs, md) and [md + 1, ∞)
816
+ // [xs, md) and [lg, ∞)
817
+ // [0px, 900px) and [1200px, ∞)
818
+ [theme.breakpoints.not('md')]: {
819
+ backgroundColor: 'red',
820
+ },
821
+ },
822
+ });
823
+ ```
824
+
825
+ - And many more 🐛 bug fixes and 📚 improvements.
826
+
827
+ ### `@mui/material@5.2.4`
828
+
829
+ - &#8203;<!-- 14 -->[esm] Correct a styles imports (#29976) @Janpot
830
+ - &#8203;<!-- 12 -->[GlobalStyles] Fix `theme` type (#30072) @mnajdova
831
+ - &#8203;<!-- 11 -->[Grid] Fix grid items to respond to the container's responsive columns (#29715) @kkorach
832
+ - &#8203;<!-- 04 -->[TextField] Fix missing space before asterisk in `OutlinedInput`'s label (#29630) @alisasanib
833
+ - &#8203;<!-- 03 -->[Transition] Allow any valid HTML attribute to be passed (#29888) @Janpot
834
+ - &#8203;<!-- 02 -->[types] Fix discrepancy between core and system `ThemeOptions` (#30095) @fmeum
835
+ - &#8203;<!-- 09 -->[InputBase] Add prop for disabling global styles (#29213) @bryan-hunter
836
+ - &#8203;<!-- 08 -->[Select] Improve multiple logic (#30135) @ladygo93
837
+
838
+ ### `@mui/system@5.2.4`
839
+
840
+ - &#8203;<!-- 06 -->[system] Don't transition when re-appearing (#30108) @eps1lon
841
+ - &#8203;<!-- 05 -->[system] Add `not` operator to `breakpoints` (#29311) @Philipp000
842
+
843
+ ### `@mui/base@5.0.0-alpha.60`
844
+
845
+ - &#8203;<!-- 25 -->[BadgeUnstyled] Make it conformant with other base components (#30141) @mnajdova
846
+
847
+ ### `@mui/icons-material@5.2.4`
848
+
849
+ - &#8203;<!-- 10 -->[icons] Correct location of icon download folder (#29839) @yaboi
850
+
851
+ ### Docs
852
+
853
+ - &#8203;<!-- 22 -->[docs] Explain the use of Select's label in FormControl (#30189) @michaldudak
854
+ - &#8203;<!-- 21 -->[docs] Don't run nprogress on shallow routing (#30087) @Janpot
855
+ - &#8203;<!-- 20 -->[docs] Add Data Driven Forms to related projects (#30078) @rvsia
856
+ - &#8203;<!-- 19 -->[docs] Sync translations with Crowdin (#30067) @l10nbot
857
+ - &#8203;<!-- 18 -->[docs] Fix link on "Custom variables" section in the Theming page #30100 @danilo-leal
858
+ - &#8203;<!-- 17 -->[docs] Fix justifyContent option in the Grid interactive demo (#30117) @danilo-leal
859
+ - &#8203;<!-- 16 -->[docs] Add tip to help access the docs of a previous version when finding answers in StackOverflow (#30101) @danilo-leal
860
+ - &#8203;<!-- 15 -->[docs] Fix import example inside Unstyled Backdrop section (#30098) @TheodosiouTh
861
+ - &#8203;<!-- 01 -->[website] Column pinning and Tree data are out (#30136) @oliviertassinari
862
+ - &#8203;<!-- 07 -->[survey] Remove survey promotion items (#30122) @danilo-leal
863
+
864
+ ### Core
865
+
866
+ - &#8203;<!-- 23 -->[core] Fix link to Open Collective @oliviertassinari
867
+ - &#8203;<!-- 26 -->[core] Update snapshots and s3 fallback (#30134) @Janpot
868
+ - &#8203;<!-- 24 -->[ci] Update CI bucket (#30080) @Janpot
869
+ - &#8203;<!-- 13 -->[fix] size:snapshot for mui-material-next and mui-joy components (#30106) @Janpot
870
+
871
+ All contributors of this release in alphabetical order: @alisasanib, @bryan-hunter, @danilo-leal, @eps1lon, @fmeum, @Janpot, @kkorach, @l10nbot, @ladygo93, @michaldudak, @mnajdova, @oliviertassinari, @Philipp000, @rvsia, @TheodosiouTh, @yaboi
872
+
873
+ ## 5.2.3
874
+
875
+ <!-- generated comparing v5.2.2..master -->
876
+
877
+ _Dec 6, 2021_
878
+
879
+ A big thanks to the 25 contributors who made this release possible. Here are some highlights ✨:
880
+
881
+ - ✨ We have introduced a new unstyled component in `@mui/base`: `TablePagination` (#29759) @mnajdova
882
+
883
+ <a href="https://mui.com/components/tables/#unstyled-table"><img width="800" alt="unstyled table" src="https://user-images.githubusercontent.com/4512430/144862194-584356ef-7d9d-462c-a631-186a7e716193.png"></a>
884
+
885
+ You can follow our progress with unstyled components at https://github.com/mui/material-ui/issues/27170.
886
+
887
+ - 🎉 We have added an example of how to use MUI with [Remix](https://remix.run/) (#29952) @mnajdova
888
+
889
+ - And many more 🐛 bug fixes and 📚 improvements.
890
+
891
+ ### `@mui/material@5.2.3`
892
+
893
+ - &#8203;<!-- 33 -->[Accordion] Add a test for handling `square` prop (#29972) @daniel-sachs
894
+ - &#8203;<!-- 32 -->[Alert] Fix `square` Paper prop (#30027) @ZeeshanTamboli
895
+ - &#8203;<!-- 31 -->[AvatarGroup] Allow specifying total number of avatars (#29898) @eduardomcv
896
+ - &#8203;<!-- 29 -->[Button] Fix regression from context API (#29982) @siriwatknp
897
+ - &#8203;<!-- 13 -->[Grid] Fix generated classes for `spacing` prop when the value is object (#29880) @jayeclark
898
+ - &#8203;<!-- 10 -->[Select] Should not crash when an empty array is passed with `multiple` enabled (#29957) @Domino987
899
+
900
+ ### `@mui/system@5.2.3`
901
+
902
+ - &#8203;<!-- 06 -->[system] Fix return type of `createBox` (#29989) @mnajdova
903
+ - &#8203;<!-- 05 -->[system] Support boolean values in typescript for the `sx` prop when used as array (#29911) @tasugi
904
+
905
+ ### `@mui/utils@5.2.3`
906
+
907
+ - &#8203;<!-- 03 -->[utils] Add typings for `@mui-material/styles/cssUtils` (#29621) @Semigradsky
908
+
909
+ ### `@mui/icons-material@5.2.1`
910
+
911
+ - &#8203;<!-- 12 -->[icons] Consolidate ignored icons into one list (#29843) @chao813
912
+
913
+ ### `@mui/base@5.0.0-alpha.59`
914
+
915
+ - &#8203;<!-- 30 -->[base] Fix missing ClickAwayListener barrel index export (#30000) @oliviertassinari
916
+ - &#8203;<!-- 04 -->[TablePaginationUnstyled] Introduce new component (#29759) @mnajdova
917
+
918
+ ### `@mui/lab@5.0.0-alpha.59`
919
+
920
+ - &#8203;<!-- 27 -->[DateRangePicker] Fix `DateRangePickerDayProps` interface (#29067) @jonathanrtuck
921
+ - &#8203;<!-- 10 -->[Pickers] Remove propagation of custom props to the `MonthPicker` component's DOM element (#30021) @ZeeshanTamboli
922
+ - &#8203;<!-- 08 -->[StaticDatePicker] Add className and slot to PickerStaticWrapper (#29619) @kkorach
923
+
924
+ ### `@mui/joy@5.0.0-alpha.5`
925
+
926
+ - &#8203;<!-- 11 -->[Joy] Theme setup (#29846) @siriwatknp
927
+
928
+ ### Docs
929
+
930
+ - &#8203;<!-- 34 -->[docs] Fix link in TypeScript doc page (#30044) @genzyy
931
+ - &#8203;<!-- 26 -->[docs] Remove the 'WIP' icon from the 'Group & Pivot' page title (#30077) @flaviendelangle
932
+ - &#8203;<!-- 25 -->[docs] Add warning that `@mui/styled-engine-sc` does not work in SSR (#30026) @mnajdova
933
+ - &#8203;<!-- 24 -->[docs] Add section for CSS specificity in the migration guide (#30008) @hbjORbj
934
+ - &#8203;<!-- 28 -->[docs] Clarify comment in migration doc (#30076) @hbjORbj
935
+ - &#8203;<!-- 23 -->[docs] Sync translations with Crowdin (#30041) @l10nbot
936
+ - &#8203;<!-- 22 -->[docs] Explain how Paper changes shade in dark mode (#30003) @michaldudak
937
+ - &#8203;<!-- 21 -->[docs] Update nextjs-typescript-example (#29974) @huydhoang
938
+ - &#8203;<!-- 20 -->[docs] Add missing global state classes to API docs generator (#29945) @michaldudak
939
+ - &#8203;<!-- 19 -->[docs] Fix benchmarks folder link (#29981) @fourjr
940
+ - &#8203;<!-- 18 -->[docs] Improve wording in StackOverflow section of support page (#29956) @ronwarner
941
+ - &#8203;<!-- 17 -->[docs] Remove Black Friday sale notification (#29936) @mbrookes
942
+ - &#8203;<!-- 16 -->[examples] Fix typos in the Remix example (#30071) @MichaelDeBoey
943
+ - &#8203;<!-- 15 -->[examples] Add Remix example (#29952) @mnajdova
944
+ - &#8203;<!-- 14 -->[examples] Fix lint issue for displayName missing in the Next.js examples (#29985) @ZeeshanTamboli
945
+ - &#8203;<!-- 09 -->[Stack] Document system props in Stack API (#30069) @ThewBear
946
+ - &#8203;<!-- 07 -->[survey] Add a banner and card for promoting the 2021 survey (#29950) @danilo-leal
947
+ - &#8203;<!-- 02 -->[website] Correct the Careers page description (#30073) @michaldudak
948
+ - &#8203;<!-- 01 -->[website] Fix 301 links (#30040) @oliviertassinari
949
+
950
+ ### Core
951
+
952
+ - &#8203;<!-- 31 -->[core] Batch small changes (#30042) @oliviertassinari
953
+ - &#8203;<!-- 28 -->[core] Transition to a new StackOverflow tag (#29967) @oliviertassinari
954
+
955
+ All contributors of this release in alphabetical order: @chao813, @daniel-sachs, @danilo-leal, @Domino987, @eduardomcv, @flaviendelangle, @fourjr, @genzyy, @hbjORbj, @huydhoang, @jayeclark, @jonathanrtuck, @kkorach, @l10nbot, @mbrookes, @MichaelDeBoey, @michaldudak, @mnajdova, @oliviertassinari, @ronwarner, @Semigradsky, @siriwatknp, @tasugi, @ThewBear, @ZeeshanTamboli
956
+
957
+ ## 5.2.2
958
+
959
+ <!-- generated comparing v5.2.1..master -->
960
+
961
+ _Nov 29, 2021_
962
+
963
+ A big thanks to the 9 contributors who made this release possible. Here are some highlights ✨:
964
+
965
+ - ♿️ Improved accessibility of `Snackbar` and `TextField` in `@mui/material` (#29782) (#29850) (#29852) @eps1lon.
966
+ - 🎉 Added support for `sx` syntax inside `styled()` utility (#29833) @mnajdova.
967
+ - 🎉 Added support for more options for `createCssVarsProvider` in `@mui/system` (#29845) (#29857) @hbjORbj.
968
+ - And many more 🐛 bug fixes and 📚 improvements.
969
+
970
+ ### `@mui/material@5.2.2`
971
+
972
+ - &#8203;<!-- 14 -->[MenuList] Add component prop (#29882) @Harshikerfuffle
973
+ - &#8203;<!-- 13 -->[Snackbar] Interrupt auto-hide on keyboard interaction (#29852) @eps1lon
974
+ - &#8203;<!-- 12 -->[Snackbar] Dismiss on Escape press (#29850) @eps1lon
975
+ - &#8203;<!-- 06 -->[TextField] Associate accessible name and description by default (#29782) @eps1lon
976
+
977
+ ### `@mui/joy@5.0.0-alpha.4`
978
+
979
+ - &#8203;<!-- 15 -->[Joy] Add `Button` - 1st iteration (#29464) @siriwatknp
980
+
981
+ ### `@mui/codemod@5.2.1`
982
+
983
+ - &#8203;<!-- 28 -->[codemod] Fix alias import for box-sx-prop (#29902) @siriwatknp
984
+
985
+ ### `@mui/system@5.2.2`
986
+
987
+ - &#8203;<!-- 11 -->[system] CSSVarsProvider cleans up `html[style]` when unmounting (#29946) @eps1lon
988
+ - &#8203;<!-- 10 -->[system] Add support for `disableTransitionOnChange` in `createCssVarsProvider` (#29857) @hbjORbj
989
+ - &#8203;<!-- 09 -->[system] Add support for `enableColorScheme` in `createCssVarsProvider` (#29845) @hbjORbj
990
+
991
+ ### `@mui/utils@5.2.2`
992
+
993
+ - &#8203;<!-- 05 -->[useId] Trade random collisions for collisions on overflow (#29781) @eps1lon
994
+ - &#8203;<!-- 04 -->[useIsFocusVisible] Convert to TypeScript (#29779) @eps1lon
995
+
996
+ ### Docs
997
+
998
+ - &#8203;<!-- 24 -->[docs] Fix v5-beta confusing example description (#29932) @oliviertassinari
999
+ - &#8203;<!-- 23 -->[docs] Apply the z-index on the right DOM element (#29934) @oliviertassinari
1000
+ - &#8203;<!-- 22 -->[docs] Improve git diff format (#29935) @oliviertassinari
1001
+ - &#8203;<!-- 21 -->[docs] Fix typo (#29866) @sinclairity
1002
+ - &#8203;<!-- 20 -->[docs] Fix key display (#29933) @oliviertassinari
1003
+ - &#8203;<!-- 19 -->[docs] Fix outdated link to next/link docs (#29937) @radlinskii
1004
+ - &#8203;<!-- 18 -->[docs] Add how to pass `sx` prop (#29905) @siriwatknp
1005
+ - &#8203;<!-- 17 -->[docs] Fix typo in notifications @mbrookes
1006
+ - &#8203;<!-- 16 -->[docs] Black Friday sale notification @mbrookes
1007
+ - &#8203;<!-- 03 -->[website] Fix canonical links (#29938) @oliviertassinari
1008
+ - &#8203;<!-- 02 -->[website] Fix SEO issues (#29939) @oliviertassinari
1009
+ - &#8203;<!-- 01 -->[website] Improvements to the /x product page (#28964) @danilo-leal
1010
+
1011
+ ### Core
1012
+
1013
+ - &#8203;<!-- 27 -->[core] Remove dead code (#29940) @oliviertassinari
1014
+ - &#8203;<!-- 26 -->[core] Move benchmark CI job from AZP to CircleCI (#29894) @eps1lon
1015
+ - &#8203;<!-- 25 -->[core] Fix PR detection pattern in test_bundle_size_monitor (#29895) @eps1lon
1016
+ - &#8203;<!-- 08 -->[test] Fix browser tests (#29929) @eps1lon
1017
+ - &#8203;<!-- 07 -->[test] Reject shorthand properties in style matchers (#29893) @eps1lon
1018
+
1019
+ All contributors of this release in alphabetical order: @danilo-leal, @eps1lon, @Harshikerfuffle, @hbjORbj, @mbrookes, @oliviertassinari, @radlinskii, @sinclairity, @siriwatknp
1020
+
1021
+ ## 5.2.1
1022
+
1023
+ <!-- generated comparing v5.2.0..master -->
1024
+
1025
+ _Nov 25, 2021_
1026
+
1027
+ A big thanks to the 7 contributors who made this release possible. Here are some highlights ✨:
1028
+
1029
+ This is an early release to fix `export 'useId' (imported as 'React') was not found in 'react'` when bundling code depending on MUI Core.
1030
+
1031
+ - &#8203;<!-- 10 -->[AppBar][docs] Add a fully responsive demo to docs (#29829) @karakib2k18
1032
+ - &#8203;<!-- 9 -->[core] Fix PR run detection in test_bundle_size_monitor (#29879) @eps1lon
1033
+ - &#8203;<!-- 8 -->[core] Move bundle size monitoring to CircleCI (#29876) @eps1lon
1034
+ - &#8203;<!-- 7 -->[docs] Add keys to Responsive AppBar demo (#29884) @mbrookes
1035
+ - &#8203;<!-- 6 -->[docs] MUI's 2021 Developer survey (#29765) @newguy-123
1036
+ - &#8203;<!-- 5 -->[docs] Smoother image loading UX (#29858) @oliviertassinari
1037
+ - &#8203;<!-- 4 -->[Select] Fix select display value with React Nodes (#29836) @kegi
1038
+ - &#8203;<!-- 3 -->[system] Add `experimental_sx` utility (#29833) @mnajdova
1039
+ - &#8203;<!-- 2 -->[test] Ignore "detected multiple renderers" warning for now (#29854) @eps1lon
1040
+ - &#8203;<!-- 1 -->[useMediaQuery][utils] Remove usage of React 18 APIs (#29870) @eps1lon
1041
+
1042
+ All contributors of this release in alphabetical order: @eps1lon, @karakib2k18, @kegi, @mbrookes, @mnajdova, @newguy-123, @oliviertassinari
1043
+
1044
+ ## 5.2.0
1045
+
1046
+ <!-- generated comparing v5.1.1..master -->
1047
+
1048
+ _Nov 23, 2021_
1049
+
1050
+ A big thanks to the 18 contributors who made this release possible. Here are some highlights ✨:
1051
+
1052
+ - 🧪 Created another unstyled component: [TabsUnstyled](https://mui.com/components/tabs/#unstyled) (#29597) @mnajdova.
1053
+ - 🎉 Updated the Material Icons set with the latest changes from Google (#29328) @michaldudak / (#29818) @chao813.
1054
+ This update adds 200 new icons and tweaks the appearance of many more.
1055
+ With it, we're getting close to having 2000 icons in our set.
1056
+ - 🐛 Fixed bugs and improved the infrastructure and documentation 📚.
1057
+
1058
+ ### `@mui/material@5.2.0`
1059
+
1060
+ - [IconButton] Remove on hover effect when `disableRipple` is set (#29298) @adamfitzgibbon
1061
+ - [i18n] Add the amharic language (#29153) @NatiG100
1062
+ - [material] Fix types for `variants.style` to accept callbacks (#29610) @mnajdova
1063
+ - [Popper] Simplify prop types (#29680) @michaldudak
1064
+ - [Select] Include aria-selected=false when option not selected (#29695) @michaldudak
1065
+ - [useMediaQuery] Fix crash in Safari < 14 and IE 11 (#29776) @eps1lon
1066
+ - [useMediaQuery] Ensure no tearing in React 18 (#28491) @eps1lon
1067
+
1068
+ ### `@mui/codemod@5.2.0`
1069
+
1070
+ - [codemod] Fix `jss-to-styled` to support multiple withStyles (#29824) @siriwatknp
1071
+
1072
+ ### `@mui/icons-material@5.2.0`
1073
+
1074
+ - [icons] Sync new Google Material Icons (#29818) @chao813
1075
+ - [icons] Sync recent Material Icons from Google (#29328) @michaldudak
1076
+
1077
+ ### `@mui/system@5.2.0`
1078
+
1079
+ - [Box] Fix `sx` prop runtime issue when used as function (#29830) @mnajdova
1080
+ - [system] Fix `sx` throw error when value is `null` or `undefined` (#29756) @siriwatknp
1081
+ - [system] Fix minor CssVars issues (#29747) @siriwatknp
1082
+
1083
+ ### `@mui/styled-engine@5.2.0`
1084
+
1085
+ - [styled-engine] Fix props inference in styled-engine (#29739) @Janpot
1086
+
1087
+ ### `@mui/base@5.0.0-alpha.56`
1088
+
1089
+ - [FormControlUnstyled] `focused` is always false unless explicitly set to `true` @mwilkins91
1090
+ - [TabsUnstyled] Introduce new component (#29597) @mnajdova
1091
+
1092
+ ### `@mui/lab@5.0.0-alpha.56`
1093
+
1094
+ - [DatePicker][timepicker] Add missing component declarations (#29517) @longzheng
1095
+ - [Masonry] exports from root package (#29754) @abhinav-22-tech
1096
+ - [pickers] Widen accepted `luxon` version range (#29761) @eps1lon
1097
+
1098
+ ### Docs
1099
+
1100
+ - [blog] MUI X v5 blog post (#29590) @DanailH
1101
+ - [blog] Polish the Benny Joo joins MUI post (#29697) @oliviertassinari
1102
+ - [CHANGELOG] Explain why we do breaking changes @oliviertassinari
1103
+ - [core] Update latest issue template for codesandbox CI (#29783) @eps1lon
1104
+ - [core] Ensure `@mui/core` is an alias for `@mui/base` (#29762) @eps1lon
1105
+ - [docs] Fix broken Next and Previous links (#29711) @scallaway
1106
+ - [docs] Add a note that ToggleButton exclusive does not enforce selection (#29812) @mmacu
1107
+ - [docs] Update the list of supported locales (#29831) @michaldudak
1108
+ - [docs] Update tooltip doc to better define touch action (#29717) @gnowland
1109
+ - [website] Standardize the background color from the MUI team photos (#29738) @danilo-leal
1110
+ - [website] Add Bharat to the About Us Page (#29714) @bharatkashyap
1111
+ - [website] Add about page entry for jan (#29701) @Janpot
1112
+ - [website] Adding Prakhar to the about page (#29737) @danilo-leal
1113
+
1114
+ ### Core
1115
+
1116
+ - [test] Allow debugging with Chrome and VSCode inspector (#29777) @eps1lon
1117
+ - [test] Use renderer clock instead of custom useFakeTimers call (#29778) @eps1lon
1118
+ - [test] Only mock Date in regression tests (#29763) @eps1lon
1119
+ - [test] Disable nightly integration tests on `next` branch (#29748) @eps1lon
1120
+ - [test] Allow configuring clock directly from `createRenderer` (#29684) @eps1lon
1121
+ - [test] Accept backslashes as path separators in test CLI (#29694) @michaldudak
1122
+ - [utils] Use built-in hook when available for useId (#26489) @eps1lon
1123
+
1124
+ All contributors of this release in alphabetical order: @abhinav-22-tech, @adamfitzgibbon, @bharatkashyap, @chao813, @DanailH, @danilo-leal, @eps1lon, @gnowland, @Janpot, @longzheng, @michaldudak, @mmacu, @mnajdova, @mwilkins91, @NatiG100, @oliviertassinari, @scallaway, @siriwatknp
1125
+
1126
+ ## 5.1.1
1127
+
1128
+ <!-- generated comparing v5.1.0..master -->
1129
+
1130
+ _Nov 16, 2021_
1131
+
1132
+ A big thanks to the 15 contributors who made this release possible. Here are some highlights ✨:
1133
+
1134
+ - 🛠 Renamed `@mui/core` to `@mui/base` (#29585) @michaldudak.
1135
+ - And many more 🐛 bug fixes and 📚 improvements.
1136
+
1137
+ ### `@mui/material@5.1.1`
1138
+
1139
+ - &#8203;<!-- 34 -->[Breadcrumbs][divider] Replace decimal spacing values with integers and css calc (#29526) @anikcreative
1140
+ - &#8203;<!-- 10 -->[Select][nativeselect] Add `multiple` class (#29566) @aaronholla
1141
+ - &#8203;<!-- 09 -->[Popper] Split into PopperUnstyled and Popper (#29488) @michaldudak
1142
+ - &#8203;<!-- 08 -->[Select] Make it clear that `Select` is not a root component (#29593) @hbjORbj
1143
+ - &#8203;<!-- 13 -->[l10n] Improved Dutch (nl-NL) locale (#29592) @flipvrijn
1144
+ - &#8203;<!-- 10 -->[Table] Improve pagination range, use "en dash" over "hyphen" (#29579) @narekmal
1145
+
1146
+ ### `@mui/base@5.0.0-alpha.55`
1147
+
1148
+ #### Breaking changes
1149
+
1150
+ - &#8203;<!-- 27 -->[core] Rename mui/core to mui/base (#29585) @michaldudak
1151
+
1152
+ Based on the results of the [poll](https://twitter.com/michaldudak/status/1452630484706635779) and our internal discussions, we decided to rename the `@mui/core` package to `@mui/base`. The main rationale for this is the fact that we use the term "Core" to refer to the core components product family, the one that includes Material Design components, unstyled components, System utilities, etc. Therefore, @mui/core was effectively a subset of MUI Core. This was confusing.
1153
+
1154
+ The new name better reflects the purpose of the package: it contains unstyled components, hooks, and utilities that serve as a **base** to build on.
1155
+
1156
+ ```diff
1157
+ -import { useSwitch } from '@mui/core/SwitchUnstyled';
1158
+ +import { useSwitch } from '@mui/base/SwitchUnstyled';
1159
+ ```
1160
+
1161
+ ### `@mui/lab@5.0.0-alpha.55`
1162
+
1163
+ - &#8203;<!-- 12 -->[LoadingButton] Text variant spacing fixed for both start and end (#29194) @joshua-lawrence
1164
+ - &#8203;<!-- 11 -->[Masonry] Check if container or child exists to prevent error (#29452) @hbjORbj
1165
+
1166
+ ### Docs
1167
+
1168
+ - &#8203;<!-- 25 -->[docs] Correct bundler configuration for using legacy MUI build (#29146) @petermikitsh
1169
+ - &#8203;<!-- 24 -->[docs] Fix typo on autocomplete.md (#29570) @netizer
1170
+ - &#8203;<!-- 23 -->[docs] Fix dark mode on branding pages (#29611) @alexfauquette
1171
+ - &#8203;<!-- 22 -->[docs] Do not render CSS section in API docs navbar if there are no CSS classes (#29622) @ZeeshanTamboli
1172
+ - &#8203;<!-- 21 -->[docs] Fix link locale handling (#29624) @oliviertassinari
1173
+ - &#8203;<!-- 20 -->[docs] Fix Search navigation (#29623) @oliviertassinari
1174
+ - &#8203;<!-- 19 -->[docs] Fix broken link & update MUI packages explanation (#29583) @siriwatknp
1175
+ - &#8203;<!-- 18 -->[docs] Do not repeat language snippet in url in Algolia search (#29483) @hbjORbj
1176
+ - &#8203;<!-- 17 -->[docs] Update `ThemeProvider` API link (#29573) @siriwatknp
1177
+ - &#8203;<!-- 16 -->[docs] Remove svg logos from the Support page (#29431) @oliviertassinari
1178
+ - &#8203;<!-- 15 -->[docs] Link UXPin integration (#29422) @oliviertassinari
1179
+ - &#8203;<!-- 14 -->[docs] Link to the new public roadmap for the design kits (#29433) @oliviertassinari
1180
+ - &#8203;<!-- 28 -->[docs] correct bundler configuration for using legacy MUI build (#29146) @petermikitsh
1181
+ - &#8203;<!-- 01 -->[website] Fix premium plan release date (#29430) @oliviertassinari
1182
+ - &#8203;<!-- 02 -->[website] Add GitHub icon button to the navbar (#29640) @danilo-leal
1183
+ - &#8203;<!-- 39 -->[blog] Support many authors in markdown pages (#29633) @m4theushw
1184
+
1185
+ ### Core
1186
+
1187
+ - &#8203;<!-- 33 -->[core] Add `experiments` index page (#29582) @siriwatknp
1188
+ - &#8203;<!-- 32 -->[core] Move s3 bucket ownership to mui-org (#29609) @eps1lon
1189
+ - &#8203;<!-- 31 -->[core] Improve support request message (#29614) @mnajdova
1190
+ - &#8203;<!-- 30 -->[core] Use support request Github Action (#29594) @mnajdova
1191
+ - &#8203;<!-- 29 -->[core] Remove unused `getJsxPreview` util (#29586) @ZeeshanTamboli
1192
+ - &#8203;<!-- 28 -->[core] Use GitHub issue forms (#28038) @oliviertassinari
1193
+ - &#8203;<!-- 26 -->[core] Add playground (#29423) @oliviertassinari
1194
+ - &#8203;<!-- 07 -->[test] Correctly identify what the `raf` helper is for (#29683) @eps1lon
1195
+ - &#8203;<!-- 06 -->[test] Verify a quilted ImageList is created as test title suggests (#29565) @daniel-sachs
1196
+ - &#8203;<!-- 05 -->[test] Replace `createServerRender` with `createRenderer` (#29503) @eps1lon
1197
+ - &#8203;<!-- 04 -->[test] Always ignore "useLayoutEffect has no effect on the server"-warning (#29502) @eps1lon
1198
+ - &#8203;<!-- 03 -->[test] Restore StrictMode by default (#29589) @eps1lon
1199
+ - &#8203;<!-- 02 -->[test] createPickerRender -> createPickerRenderer (#29575) @eps1lon
1200
+ - &#8203;<!-- 09 -->[test] Allow experimental CLI to run exact test (#29685) @eps1lon
1201
+
1202
+ All contributors of this release in alphabetical order: @aaronholla, @alexfauquette, @anikcreative, @daniel-sachs, @eps1lon, @flipvrijn, @hbjORbj, @joshua-lawrence, @michaldudak, @mnajdova, @netizer, @oliviertassinari, @petermikitsh, @siriwatknp, @ZeeshanTamboli
2
1203
 
3
1204
  ## 5.1.0
4
1205
 
@@ -142,16 +1343,16 @@ _Oct 26, 2021_
142
1343
  A big thanks to the 19 contributors who made this release possible. Here are some highlights ✨:
143
1344
 
144
1345
  - 🔧 Implement `Masonry` using Flexbox by @hbjORbj.
145
- - 🧪 Add three components to `@mui/core` by @rebeccahongsf and @hbjORbj.
1346
+ - 🧪 Add three components to `@mui/base` by @rebeccahongsf and @hbjORbj.
146
1347
 
147
1348
  ### `@mui/codemod@5.0.5`
148
1349
 
149
1350
  - &#8203;<!-- 38 -->[codemod] Support new package name in `link-underline-hover` transformer (#29214) @siriwatknp
150
1351
 
151
- ### `@mui/core@5.0.0-alpha.52`
1352
+ ### `@mui/base@5.0.0-alpha.52`
152
1353
 
153
1354
  - &#8203;<!-- 39 -->[ClickAwayListener] Move to the core package (#29186) @hbjORbj
154
- - &#8203;<!-- 13 -->[Popper] Move from mui-material to mui-core (#28923) @rebeccahongsf
1355
+ - &#8203;<!-- 13 -->[Popper] Move from mui-material to mui-base (#28923) @rebeccahongsf
155
1356
  - &#8203;<!-- 04 -->[TextareaAutosize] Move to the core package (#29148) @hbjORbj
156
1357
 
157
1358
  ### `@mui/lab@5.0.0-alpha.52`
@@ -220,7 +1421,7 @@ _Oct 14, 2021_
220
1421
 
221
1422
  A big thanks to the 17 contributors who made this release possible. Here are some highlights ✨:
222
1423
 
223
- - 🧪 Added `UnstyledInput` and `useInput` hook in the the first component in @mui/core package @michaldudak (#28053)
1424
+ - 🧪 Added `UnstyledInput` and `useInput` hook in the the first component in @mui/base package @michaldudak (#28053)
224
1425
  - 🐛 Fixed many bugs and improved the documentation 📚.
225
1426
 
226
1427
  ### `@mui/material@5.0.4`
@@ -235,7 +1436,7 @@ A big thanks to the 17 contributors who made this release possible. Here are som
235
1436
 
236
1437
  - &#8203;<!-- 05 -->[system] Update typing for `style` function (#28744) @hbjORbj
237
1438
 
238
- ### `@mui/core@5.0.0-alpha.51`
1439
+ ### `@mui/base@5.0.0-alpha.51`
239
1440
 
240
1441
  - &#8203;<!-- 07 -->[InputUnstyled] Create unstyled input and useInput hook (#28053) @michaldudak
241
1442
 
@@ -304,7 +1505,7 @@ A big thanks to the 19 contributors who made this release possible. Here are som
304
1505
 
305
1506
  - &#8203;<!-- 42 -->Don't allow styled-components APIs on mui styled function (#28807) @hbjORbj
306
1507
 
307
- ### `@mui/core@5.0.0-alpha.50`
1508
+ ### `@mui/base@5.0.0-alpha.50`
308
1509
 
309
1510
  - &#8203;<!-- 38 -->[ButtonUnstyled] Don't set redundant role=button (#28488) @michaldudak
310
1511
  - &#8203;<!-- 43 -->[SliderUnstyled] Prevent unknown-prop error when using marks prop (#28868) @hbjORbj
@@ -655,8 +1856,8 @@ _Sep 1, 2021_
655
1856
 
656
1857
  A big thanks to the 18 contributors who made this release possible. Here are some highlights ✨:
657
1858
 
658
- - 🎉 Renamed packages to `@mui/*` as part of rebranding the company, following the strategy of expanding the library scope beyond Material Design. For more details about it, check the [GitHub discussion](https://github.com/mui-org/material-ui/discussions/27803).
659
- - 🛠 Added `mui-replace` codemod for migrating `@material-ui/*` to new packages `@mui/*`. Check out this [codemod detail](https://github.com/mui-org/material-ui/blob/next/packages/mui-codemod/README.md#mui-replace) or head to [migration guide](https://mui.com/guides/migration-v4/#preset-safe)
1859
+ - 🎉 Renamed packages to `@mui/*` as part of rebranding the company, following the strategy of expanding the library scope beyond Material Design. For more details about it, check the [GitHub discussion](https://github.com/mui/material-ui/discussions/27803).
1860
+ - 🛠 Added `mui-replace` codemod for migrating `@material-ui/*` to new packages `@mui/*`. Check out this [codemod detail](https://github.com/mui/material-ui/blob/next/packages/mui-codemod/README.md#mui-replace) or head to [migration guide](https://mui.com/guides/migration-v4/#preset-safe)
660
1861
  - 🧪 Added new `<Mansory>` component to the lab, [check it out](https://mui.com/components/masonry/). It has been crafted by our first intern, @hbjORbj 👏!
661
1862
 
662
1863
  ### `@mui/material@5.0.0-rc.0`
@@ -667,7 +1868,7 @@ A big thanks to the 18 contributors who made this release possible. Here are som
667
1868
 
668
1869
  replace `@material-ui/*` prefix with `@mui/*`:
669
1870
 
670
- ```
1871
+ ```sh
671
1872
  @material-ui/system -> @mui/system
672
1873
  @material-ui/styles -> @mui/styles
673
1874
  @material-ui/lab -> @mui/lab
@@ -680,15 +1881,15 @@ A big thanks to the 18 contributors who made this release possible. Here are som
680
1881
 
681
1882
  except these 3 packages that are renamed.
682
1883
 
683
- ```
1884
+ ```sh
684
1885
  @material-ui/core => @mui/material // represents Material Design components.
685
1886
  @material-ui/icons => @mui/icons-material // represents Material Design icons.
686
- @material-ui/unstyled => @mui/core // fully functional components with minimum styles.
1887
+ @material-ui/unstyled => @mui/base // fully functional components with minimum styles.
687
1888
  ```
688
1889
 
689
- > **Note**: `@mui/core` (previously `@material-ui/unstyled`) is not the same as `@material-ui/core`.
1890
+ > **Note**: `@mui/base` (previously `@material-ui/unstyled`) is not the same as `@material-ui/core`.
690
1891
 
691
- We encourage you to use the [codemod](https://github.com/mui-org/material-ui/blob/next/packages/mui-codemod/README.md#mui-replace) for smooth migration.
1892
+ We encourage you to use the [codemod](https://github.com/mui/material-ui/blob/next/packages/mui-codemod/README.md#mui-replace) for smooth migration.
692
1893
 
693
1894
  #### Changes
694
1895
 
@@ -701,7 +1902,7 @@ A big thanks to the 18 contributors who made this release possible. Here are som
701
1902
  - &#8203;<!-- 05 -->[ToggleButtonGroup] Add "disabled" prop (#27998) @chetas411
702
1903
  - &#8203;<!-- 34 -->[core] Export types for module augmentation (#28078) @m4theushw
703
1904
 
704
- ### `@mui/core@5.0.0-alpha.45`
1905
+ ### `@mui/base@5.0.0-alpha.45`
705
1906
 
706
1907
  - &#8203;<!-- 38 -->[Button] Create ButtonUnstyled and useButton (#27600) @michaldudak
707
1908
 
@@ -756,7 +1957,7 @@ _Aug 24, 2021_
756
1957
 
757
1958
  A big thanks to the 26 contributors who made this release possible. Here are some highlights ✨:
758
1959
 
759
- - 🐛 Fixed a lot of bugs and regressions to get us closer to the [v5 stable release milestone](https://github.com/mui-org/material-ui/milestone/44)
1960
+ - 🐛 Fixed a lot of bugs and regressions to get us closer to the [v5 stable release milestone](https://github.com/mui/material-ui/milestone/44)
760
1961
  - 📚 Improved the docs and the migration guide for upgrading to v5
761
1962
 
762
1963
  ### `@material-ui/core@5.0.0-beta.5`
@@ -1151,7 +2352,7 @@ A big thanks to the 17 contributors who made this release possible. Here are som
1151
2352
 
1152
2353
  <a href="https://mui.com/components/switches/#unstyled"><img width="832" alt="switch" src="https://user-images.githubusercontent.com/3165635/125192249-236f8a80-e247-11eb-9df9-17d476379a32.png"></a>
1153
2354
 
1154
- You can follow our progress at https://github.com/mui-org/material-ui/issues/27170.
2355
+ You can follow our progress at https://github.com/mui/material-ui/issues/27170.
1155
2356
 
1156
2357
  - 💄 We have updated the default `info` `success` `warning` color to be more accessible (#26817) @siriwatknp.
1157
2358
  You can find the new [default values](https://mui.com/customization/palette/#default-values) in the documentation.
@@ -1257,9 +2458,9 @@ _Jul 01, 2021_
1257
2458
 
1258
2459
  A big thanks to the 13 contributors who made this release possible. Here are some highlights ✨:
1259
2460
 
1260
- - 🎉 This is the first beta release of v5! A huge thanks to everyone who helped to make this happen! We're targeting the 1st of September for a stable release, and will use the next two months to polish v5, and ease the migration from v4. You can follow [the v5 stable milestone](https://github.com/mui-org/material-ui/milestone/44) for more details. We now encourage any new projects to start on v5.
2461
+ - 🎉 This is the first beta release of v5! A huge thanks to everyone who helped to make this happen! We're targeting the 1st of September for a stable release, and will use the next two months to polish v5, and ease the migration from v4. You can follow [the v5 stable milestone](https://github.com/mui/material-ui/milestone/44) for more details. We now encourage any new projects to start on v5.
1261
2462
  - 🚀 We have completed all the planned breaking changes.
1262
- - ⚒️ We added the codemod CLI to simplify migration to v5 (#26941) @eps1lon. You can find it at [`@material-ui/codemod`](https://github.com/mui-org/material-ui/tree/HEAD/packages/mui-codemod).
2463
+ - ⚒️ We added the codemod CLI to simplify migration to v5 (#26941) @eps1lon. You can find it at [`@material-ui/codemod`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-codemod).
1263
2464
  - 🐛 The majority of other changes in this release were bug fixes, test utilities and docs.
1264
2465
 
1265
2466
  ### `@material-ui/core@5.0.0-beta.0`
@@ -1268,7 +2469,7 @@ A big thanks to the 13 contributors who made this release possible. Here are som
1268
2469
 
1269
2470
  - [Tabs] Remove unnecessary wrapper from Tab (#26926) @siriwatknp
1270
2471
 
1271
- `span` element that wraps children has been removed. `wrapper` classKey is also removed. More details about [this change](https://github.com/mui-org/material-ui/pull/26666).
2472
+ `span` element that wraps children has been removed. `wrapper` classKey is also removed. More details about [this change](https://github.com/mui/material-ui/pull/26666).
1272
2473
 
1273
2474
  ```diff
1274
2475
  <button class="MuiTab-root">
@@ -1281,7 +2482,7 @@ A big thanks to the 13 contributors who made this release possible. Here are som
1281
2482
 
1282
2483
  - [BottomNavigation] Remove wrapper from BottomNavigationAction (#26923) @siriwatknp
1283
2484
 
1284
- `span` element that wraps children has been removed. `wrapper` classKey is also removed. More details about [this change](https://github.com/mui-org/material-ui/pull/26666).
2485
+ `span` element that wraps children has been removed. `wrapper` classKey is also removed. More details about [this change](https://github.com/mui/material-ui/pull/26666).
1285
2486
 
1286
2487
  ```diff
1287
2488
  <button class="MuiBottomNavigationAction-root">
@@ -1393,7 +2594,7 @@ _Jun 23, 2021_
1393
2594
 
1394
2595
  A big thanks to the 18 contributors who made this release possible. Here are some highlights ✨:
1395
2596
 
1396
- - 🚀 We have only 2 left in the [breaking changes](https://github.com/mui-org/material-ui/issues/20012). The plan to release 5.0.0-beta.0 is on July 1st and will start to promote its usage over v4.
2597
+ - 🚀 We have only 2 left in the [breaking changes](https://github.com/mui/material-ui/issues/20012). The plan to release 5.0.0-beta.0 is on July 1st and will start to promote its usage over v4.
1397
2598
  - 🎨 We have updated `Slider` to match current [Material Design guidelines](https://material.io/components/sliders).
1398
2599
 
1399
2600
  <a href="https://mui.com/components/slider/#continuous-sliders"><img width="247" alt="" src="https://user-images.githubusercontent.com/3165635/121884800-a8808600-cd13-11eb-8cdf-e25de8f1ba73.png" style="margin: auto"></a>
@@ -1435,7 +2636,7 @@ A big thanks to the 18 contributors who made this release possible. Here are som
1435
2636
 
1436
2637
  - &#8203;<!-- 09 -->[theme] Improve default breakpoints (#26746) @siriwatknp
1437
2638
 
1438
- The default breakpoints were changed to better match the common use cases. They also better match the Material Design guidelines. [Read more about the change](https://github.com/mui-org/material-ui/issues/21902).
2639
+ The default breakpoints were changed to better match the common use cases. They also better match the Material Design guidelines. [Read more about the change](https://github.com/mui/material-ui/issues/21902).
1439
2640
 
1440
2641
  ```diff
1441
2642
  {
@@ -1489,7 +2690,7 @@ A big thanks to the 18 contributors who made this release possible. Here are som
1489
2690
 
1490
2691
  - &#8203;<!-- 14 -->[IconButton] Remove label span (#26801) @siriwatknp
1491
2692
 
1492
- `span` element that wraps children has been removed. `label` classKey is also removed. More details about [this change](https://github.com/mui-org/material-ui/pull/26666).
2693
+ `span` element that wraps children has been removed. `label` classKey is also removed. More details about [this change](https://github.com/mui/material-ui/pull/26666).
1493
2694
 
1494
2695
  ```diff
1495
2696
  <button class="MuiIconButton-root">
@@ -1610,7 +2811,7 @@ A big thanks to the 11 contributors who made this release possible. Here are som
1610
2811
 
1611
2812
  - ⚒️ We've introduced a new `useTheme` and `useThemeProps` hooks in the `@material-ui/system` package.
1612
2813
  We believe that this package can be used as a standalone styling solution for building custom design systems (#26649) @mnajdova.
1613
- - 💥 Made progress with the breaking changes. We have done 105 of the 109 changes [planned](https://github.com/mui-org/material-ui/issues/20012). We are getting closer to our goal of releasing 5.0.0-beta.0 on July 1st and start to promote its usage over v4. You can also follow [our milestone](https://github.com/mui-org/material-ui/milestone/35) for more details.
2814
+ - 💥 Made progress with the breaking changes. We have done 105 of the 109 changes [planned](https://github.com/mui/material-ui/issues/20012). We are getting closer to our goal of releasing 5.0.0-beta.0 on July 1st and start to promote its usage over v4. You can also follow [our milestone](https://github.com/mui/material-ui/milestone/35) for more details.
1614
2815
  - And many more 🐛 bug fixes and 📚 improvements.
1615
2816
 
1616
2817
  ### `@material-ui/core@5.0.0-alpha.37`
@@ -1821,8 +3022,8 @@ _May 31, 2021_
1821
3022
  A big thanks to the 14 contributors who made this release possible. Here are some highlights ✨:
1822
3023
 
1823
3024
  - 👩‍🎤 We have completed the migration to emotion of all the components (`@material-ui/core` and `@material-ui/lab`) @siriwatknp, @mnajdova.
1824
- - 📦 Save [10 kB gzipped](https://bundlephobia.com/result?p=@material-ui/core@5.0.0-alpha.34) by removing the dependency on `@material-ui/styles` (JSS) from the core and the lab (#26377, #26382, #26376) @mnajdova.
1825
- - ⚒️ Add many new [codemods](https://github.com/mui-org/material-ui/blob/HEAD/packages/mui-codemod/README.md) to automate the migration from v4 to v5 (#24867) @mbrookes.
3025
+ - 📦 Save [10 kB gzipped](https://bundlephobia.com/package/@material-ui/core@5.0.0-alpha.34) by removing the dependency on `@material-ui/styles` (JSS) from the core and the lab (#26377, #26382, #26376) @mnajdova.
3026
+ - ⚒️ Add many new [codemods](https://github.com/mui/material-ui/blob/HEAD/packages/mui-codemod/README.md) to automate the migration from v4 to v5 (#24867) @mbrookes.
1826
3027
  - And many more 🐛 bug fixes and 📚 improvements.
1827
3028
 
1828
3029
  ### `@material-ui/core@5.0.0-alpha.35`
@@ -1983,7 +3184,7 @@ _May 18, 2021_
1983
3184
 
1984
3185
  A big thanks to the 16 contributors who made this release possible. Here are some highlights ✨:
1985
3186
 
1986
- - 💥 Make progress with the breaking changes. We have done 89 of the 109 changes [planned](https://github.com/mui-org/material-ui/issues/20012). We will release 5.0.0-beta.0 on July 1st and start to promote its usage over v4. You can also follow [our milestone](https://github.com/mui-org/material-ui/milestone/35) for more details.
3187
+ - 💥 Make progress with the breaking changes. We have done 89 of the 109 changes [planned](https://github.com/mui/material-ui/issues/20012). We will release 5.0.0-beta.0 on July 1st and start to promote its usage over v4. You can also follow [our milestone](https://github.com/mui/material-ui/milestone/35) for more details.
1987
3188
  - 🚀 Make progress with components migration to emotion. We have done 153 of the 168 components (almost there!)
1988
3189
  - And many more 🐛 bug fixes and 📚 improvements.
1989
3190
 
@@ -2053,6 +3254,7 @@ A big thanks to the 16 contributors who made this release possible. Here are som
2053
3254
  ```
2054
3255
 
2055
3256
  - &#8203;<!-- 63 -->[Autocomplete] Rename getOptionSelected to isOptionEqualToValue (#26173) @m4theushw
3257
+
2056
3258
  ```diff
2057
3259
  <Autocomplete
2058
3260
  - getOptionSelected={(option, value) => option.title === value.title}
@@ -2146,7 +3348,7 @@ _May 9, 2021_
2146
3348
 
2147
3349
  A big thanks to the 17 contributors who made this release possible. Here are some highlights ✨:
2148
3350
 
2149
- - 💥 Make progress with the breaking changes. We have done 81 of the 109 changes [planned](https://github.com/mui-org/material-ui/issues/20012). We will release 5.0.0-beta.0 on July 1st and start to promote its usage over v4. You can also follow [our milestone](https://github.com/mui-org/material-ui/milestone/35) for more details.
3351
+ - 💥 Make progress with the breaking changes. We have done 81 of the 109 changes [planned](https://github.com/mui/material-ui/issues/20012). We will release 5.0.0-beta.0 on July 1st and start to promote its usage over v4. You can also follow [our milestone](https://github.com/mui/material-ui/milestone/35) for more details.
2150
3352
  - And many more 🐛 bug fixes and 📚 improvements.
2151
3353
 
2152
3354
  ### `@material-ui/core@5.0.0-alpha.33`
@@ -2586,7 +3788,7 @@ A big thanks to the 15 contributors who made this release possible. Here are som
2586
3788
  - &#8203;<!-- 53 -->[DateTimePicker] `date` is nullable in `onChange` (#25981) @eps1lon
2587
3789
  - &#8203;<!-- 39 -->[internal][pickers] Remove unused TView type argument (#25936) @eps1lon
2588
3790
  - &#8203;<!-- 48 -->[internal][pickers] Inline some BasePickerProps usages (#25971) @eps1lon
2589
- - &#8203;<!-- 44 -->[internal][pickers] Entangle what *Props vs All*Props means (#25938) @eps1lon
3791
+ - &#8203;<!-- 44 -->[internal][pickers] Entangle what Props vs AllProps means (#25938) @eps1lon
2590
3792
  - &#8203;<!-- 19 -->[lab] Update slot components to use overridesResolver (#25906) @mnajdova
2591
3793
  - &#8203;<!-- 40 -->[Timeline] Remove use of nth-child in favor of nth-of-type (#25915) @wellwellmissesanderson
2592
3794
  - &#8203;<!-- 06 -->[Timeline] Migrate Timeline to emotion (#25838) @siriwatknp
@@ -2651,7 +3853,7 @@ A big thanks to the 19 contributors who made this release possible. Here are som
2651
3853
  #### Breaking changes
2652
3854
 
2653
3855
  - [FormControl] Change default variant from standard to outlined (#24895) @petyosi
2654
- Standard has been removed from the Material Design guidelines. [This codemod](https://github.com/mui-org/material-ui/tree/next/packages/mui-codemod#variant-prop) will automatically update your code.
3856
+ Standard has been removed from the Material Design guidelines. [This codemod](https://github.com/mui/material-ui/tree/next/packages/mui-codemod#variant-prop) will automatically update your code.
2655
3857
 
2656
3858
  ```diff
2657
3859
  -<FormControl value="Standard" />
@@ -2663,7 +3865,7 @@ A big thanks to the 19 contributors who made this release possible. Here are som
2663
3865
  - [Menu] The `selectedMenu` variant will not vertically align the selected item with the anchor anymore. (#25691) @m4theushw
2664
3866
  - [Popover] Remove the `getContentAnchorEl` prop to simplify the positioning logic. (#25691) @m4theushw
2665
3867
  - [Select] Change default variant from standard to outlined (#24895) @petyosi
2666
- Standard has been removed from the Material Design guidelines. [This codemod](https://github.com/mui-org/material-ui/tree/next/packages/mui-codemod#variant-prop) will automatically update your code.
3868
+ Standard has been removed from the Material Design guidelines. [This codemod](https://github.com/mui/material-ui/tree/next/packages/mui-codemod#variant-prop) will automatically update your code.
2667
3869
 
2668
3870
  ```diff
2669
3871
  -<Select value="Standard" />
@@ -2867,7 +4069,7 @@ A big thanks to the 26 contributors who made this release possible. Here are som
2867
4069
  ```
2868
4070
 
2869
4071
  This feature was made possible by the recent migration to emotion.
2870
- You can [find the other issues](https://github.com/mui-org/material-ui/issues?q=is%3Aopen+is%3Aissue+label%3A%22component%3A+Grid%22) unlocked by the migration to emotion on the Grid component that are left to be solved.
4072
+ You can [find the other issues](https://github.com/mui/material-ui/issues?q=is%3Aopen+is%3Aissue+label%3A%22component%3A+Grid%22) unlocked by the migration to emotion on the Grid component that are left to be solved.
2871
4073
 
2872
4074
  - 👩‍🎤 Convert 3 components to emotion (#25541, #25516, #25521) @rajzik, @praveenkumar-kalidass, @siriwatknp.
2873
4075
  - 📚 Migrate 8 component demo pages to the `sx`, `Stack`, and `styled` API @vicasas.
@@ -3626,7 +4828,7 @@ All contributors of this release in alphabetical order: @artola, @CyanoFresh, @d
3626
4828
 
3627
4829
  ## 5.0.0-alpha.23
3628
4830
 
3629
- ###### _Jan 14, 2021_
4831
+ _Jan 14, 2021_
3630
4832
 
3631
4833
  A big thanks to the 15 contributors who made this release possible. Here are some highlights ✨:
3632
4834
 
@@ -3741,7 +4943,7 @@ A big thanks to the 15 contributors who made this release possible. Here are som
3741
4943
 
3742
4944
  ## 5.0.0-alpha.22
3743
4945
 
3744
- ###### _Jan 4, 2021_
4946
+ _Jan 4, 2021_
3745
4947
 
3746
4948
  A big thanks to the 14 contributors who made this release possible. Here are some highlights ✨:
3747
4949
 
@@ -3793,7 +4995,7 @@ A big thanks to the 14 contributors who made this release possible. Here are som
3793
4995
 
3794
4996
  ## 5.0.0-alpha.21
3795
4997
 
3796
- ###### _Dec 30, 2020_
4998
+ _Dec 30, 2020_
3797
4999
 
3798
5000
  A big thanks to the 14 contributors who made this release possible. Here are some highlights ✨:
3799
5001
 
@@ -3866,7 +5068,7 @@ A big thanks to the 14 contributors who made this release possible. Here are som
3866
5068
 
3867
5069
  ## 5.0.0-alpha.20
3868
5070
 
3869
- ###### _Dec 21, 2020_
5071
+ _Dec 21, 2020_
3870
5072
 
3871
5073
  A big thanks to the 13 contributors who made this release possible. Here are some highlights ✨:
3872
5074
 
@@ -3944,7 +5146,7 @@ A big thanks to the 13 contributors who made this release possible. Here are som
3944
5146
 
3945
5147
  ## 5.0.0-alpha.19
3946
5148
 
3947
- ###### _Dec 13, 2020_
5149
+ _Dec 13, 2020_
3948
5150
 
3949
5151
  A big thanks to the 24 contributors who made this release possible. Here are some highlights ✨:
3950
5152
 
@@ -4072,7 +5274,7 @@ A big thanks to the 24 contributors who made this release possible. Here are som
4072
5274
 
4073
5275
  ## 5.0.0-alpha.18
4074
5276
 
4075
- ###### _Dec 3, 2020_
5277
+ _Dec 3, 2020_
4076
5278
 
4077
5279
  A big thanks to the 17 contributors who made this release possible. Here are some highlights ✨:
4078
5280
 
@@ -4085,7 +5287,7 @@ A big thanks to the 17 contributors who made this release possible. Here are som
4085
5287
 
4086
5288
  - [Box] Remove deprecated props (#23716) @mnajdova
4087
5289
  All props are now available under the `sx` prop. A deprecation will be landing in v4.
4088
- Thanks to @mbrookes developers can automate the migration with a [codemod](https://github.com/mui-org/material-ui/blob/next/packages/mui-codemod/README.md#box-sx-prop).
5290
+ Thanks to @mbrookes developers can automate the migration with a [codemod](https://github.com/mui/material-ui/blob/next/packages/mui-codemod/README.md#box-sx-prop).
4089
5291
 
4090
5292
  ```diff
4091
5293
  -<Box p={2} bgColor="primary.main">
@@ -4164,7 +5366,7 @@ A big thanks to the 17 contributors who made this release possible. Here are som
4164
5366
 
4165
5367
  ## 5.0.0-alpha.17
4166
5368
 
4167
- ###### _Nov 23, 2020_
5369
+ _Nov 23, 2020_
4168
5370
 
4169
5371
  A big thanks to the 18 contributors who made this release possible. Here are some highlights ✨:
4170
5372
 
@@ -4331,14 +5533,14 @@ A big thanks to the 18 contributors who made this release possible. Here are som
4331
5533
 
4332
5534
  ## 5.0.0-alpha.16
4333
5535
 
4334
- ###### _Nov 14, 2020_
5536
+ _Nov 14, 2020_
4335
5537
 
4336
5538
  A big thanks to the 34 contributors who made this release possible. Here are some highlights ✨:
4337
5539
 
4338
5540
  - 📅 Migrate the date picker to the lab (#22692) @dmtrKovalenko.
4339
- We have integrated the components with the code infrastructure. Next we will migrate all the GitHub issues from [material-ui-pickers](https://github.com/mui-org/material-ui-pickers) and archive the repository. This migration will help provide first-class support for the date picker components. The component will stay in the lab as long as necessary to reach the high quality bar we have for core components. You can find the [new documentation here](https://mui.com/components/pickers/).
5541
+ We have integrated the components with the code infrastructure. Next we will migrate all the GitHub issues from [material-ui-pickers](https://github.com/mui/material-ui-pickers) and archive the repository. This migration will help provide first-class support for the date picker components. The component will stay in the lab as long as necessary to reach the high quality bar we have for core components. You can find the [new documentation here](https://mui.com/components/pickers/).
4340
5542
 
4341
- While the source code is currently hosted in the [main repository](https://github.com/mui-org/material-ui), we might move it to the [x repository](https://github.com/mui-org/material-ui-x) in the future, depending on what is easier for the commercial date range picker. The date picker will stay open source no matter what.
5543
+ While the source code is currently hosted in the [main repository](https://github.com/mui/material-ui), we might move it to the [x repository](https://github.com/mui/mui-x) in the future, depending on what is easier for the commercial date range picker. The date picker will stay open source no matter what.
4342
5544
 
4343
5545
  - 📚 Revamp the documentation for [the system](https://mui.com/system/basics/). The System contains CSS utilities. The documentation now promotes the use of the `sx` prop. It's ideal for adding one-off styles, e.g. padding, but when pushed to its limits, it can be used to implement quickly a complete page.
4344
5546
  - 👩‍🎨 Upgrade emotion to v11 (#23007) @mnajdova.
@@ -4349,7 +5551,7 @@ A big thanks to the 34 contributors who made this release possible. Here are som
4349
5551
  #### Breaking changes
4350
5552
 
4351
5553
  - [TextField] Change default variant from standard to outlined (#23503) @mbrookes
4352
- Standard has been removed from the Material Design guidelines. [This codemod](https://github.com/mui-org/material-ui/tree/next/packages/mui-codemod#variant-prop) will automatically update your code.
5554
+ Standard has been removed from the Material Design guidelines. [This codemod](https://github.com/mui/material-ui/tree/next/packages/mui-codemod#variant-prop) will automatically update your code.
4353
5555
 
4354
5556
  ```diff
4355
5557
  -<TextField value="Standard" />
@@ -4435,7 +5637,7 @@ A big thanks to the 34 contributors who made this release possible. Here are som
4435
5637
 
4436
5638
  ## 5.0.0-alpha.15
4437
5639
 
4438
- ###### _Nov 4, 2020_
5640
+ _Nov 4, 2020_
4439
5641
 
4440
5642
  A big thanks to the 20 contributors who made this release possible. Here are some highlights ✨:
4441
5643
 
@@ -4446,11 +5648,11 @@ A big thanks to the 20 contributors who made this release possible. Here are som
4446
5648
 
4447
5649
  **Why an unstyled package?**
4448
5650
 
4449
- While engineering teams are successfully building custom design systems by wrapping Material-UI, we [occasionally hear](https://github.com/mui-org/material-ui/issues/6218) that Material Design or our styling solution are something they don't need. Some teams prefer SASS, others prefer to customize the components starting from a pristine state. What all these teams have in common is that they value the features coming from the components, such as accessibility.
5651
+ While engineering teams are successfully building custom design systems by wrapping Material-UI, we [occasionally hear](https://github.com/mui/material-ui/issues/6218) that Material Design or our styling solution are something they don't need. Some teams prefer SASS, others prefer to customize the components starting from a pristine state. What all these teams have in common is that they value the features coming from the components, such as accessibility.
4450
5652
 
4451
5653
  The unstyled package goes one step down in the abstraction layer, providing more flexibility. Angular Material introduced this approach two years ago. Today their unstyled components account for [25% of the usage](https://npm-stat.com/charts.html?package=%40angular%2Fmaterial&package=%40angular%2Fcdk&from=2017-11-03&to=2020-11-03).
4452
5654
 
4453
- Another reason for introducing this package is to prepare the groundwork for a [second theme](https://github.com/mui-org/material-ui/issues/22485) (not Material Design based).
5655
+ Another reason for introducing this package is to prepare the groundwork for a [second theme](https://github.com/mui/material-ui/issues/22485) (not Material Design based).
4454
5656
 
4455
5657
  A note on the terminology: "unstyled" means that the components have the same API as the "styled" components but come without CSS. Material-UI also contains "headless" components that exposes a hook API, e.g. [useAutocomplete](https://mui.com/components/autocomplete/#useautocomplete) or [usePagination](https://mui.com/components/pagination/#usepagination).
4456
5658
 
@@ -4547,7 +5749,7 @@ A big thanks to the 20 contributors who made this release possible. Here are som
4547
5749
 
4548
5750
  ## 5.0.0-alpha.14
4549
5751
 
4550
- ###### _Oct 23, 2020_
5752
+ _Oct 23, 2020_
4551
5753
 
4552
5754
  A big thanks to the 23 contributors who made this release possible.
4553
5755
  Here are some highlights ✨:
@@ -4598,12 +5800,14 @@ Here are some highlights ✨:
4598
5800
  You can read [their migration guide](https://popper.js.org/docs/v2/migration-guide/) or the following summary:
4599
5801
 
4600
5802
  - The CSS prefixes have changed:
5803
+
4601
5804
  ```diff
4602
5805
  popper: {
4603
5806
  zIndex: 1,
4604
5807
  - '&[x-placement*="bottom"] $arrow': {
4605
5808
  + '&[data-popper-placement*="bottom"] $arrow': {
4606
5809
  ```
5810
+
4607
5811
  - Method names have changed.
4608
5812
 
4609
5813
  ```diff
@@ -4718,7 +5922,7 @@ Here are some highlights ✨:
4718
5922
 
4719
5923
  ## 5.0.0-alpha.13
4720
5924
 
4721
- ###### _Oct 17, 2020_
5925
+ _Oct 17, 2020_
4722
5926
 
4723
5927
  A big thanks to the 25 contributors who made this release possible.
4724
5928
  Here are some highlights ✨:
@@ -4844,7 +6048,7 @@ Here are some highlights ✨:
4844
6048
 
4845
6049
  ## 5.0.0-alpha.12
4846
6050
 
4847
- ###### _Oct 11, 2020_
6051
+ _Oct 11, 2020_
4848
6052
 
4849
6053
  A big thanks to the 45 contributors who made this release possible.
4850
6054
  Here are some highlights ✨:
@@ -5068,7 +6272,7 @@ Here are some highlights ✨:
5068
6272
 
5069
6273
  ## 5.0.0-alpha.11
5070
6274
 
5071
- ###### _Sep 26, 2020_
6275
+ _Sep 26, 2020_
5072
6276
 
5073
6277
  A big thanks to the 29 contributors who made this release possible.
5074
6278
  Here are some highlights ✨:
@@ -5084,7 +6288,7 @@ Here are some highlights ✨:
5084
6288
  Last but not least, the change allows us to take advantage dynamic style props. We will use them for dynamic color props, variant props, and new style props (an improved [system](https://mui.com/system/basics/)).
5085
6289
 
5086
6290
  This change has been in our roadmap for more than a year.
5087
- We announced it in the [v4 release blog post](https://medium.com/material-ui/material-ui-v4-is-out-4b7587d1e701) as a direction v5 would take.
6291
+ We announced it in the [v4 release blog post](https://mui.com/blog/material-ui-v4-is-out/) as a direction v5 would take.
5088
6292
 
5089
6293
  - 🛠 A first iteration on the unstyled components.
5090
6294
 
@@ -5302,7 +6506,7 @@ More documentation are coming.
5302
6506
 
5303
6507
  ## 5.0.0-alpha.10
5304
6508
 
5305
- ###### _Sep 15, 2020_
6509
+ _Sep 15, 2020_
5306
6510
 
5307
6511
  A big thanks to the 16 contributors who made this release possible.
5308
6512
  Here are some highlights ✨:
@@ -5367,13 +6571,13 @@ Here are some highlights ✨:
5367
6571
 
5368
6572
  Before:
5369
6573
 
5370
- ```
6574
+ ```sh
5371
6575
  theme.spacing(2) => 16
5372
6576
  ```
5373
6577
 
5374
6578
  After:
5375
6579
 
5376
- ```
6580
+ ```sh
5377
6581
  theme.spacing(2) => '16px'
5378
6582
  ```
5379
6583
 
@@ -5432,7 +6636,7 @@ Here are some highlights ✨:
5432
6636
 
5433
6637
  ## 5.0.0-alpha.9
5434
6638
 
5435
- ###### _Sep 6, 2020_
6639
+ _Sep 6, 2020_
5436
6640
 
5437
6641
  A big thanks to the 14 contributors who made this release possible.
5438
6642
  Here are some highlights ✨:
@@ -5485,7 +6689,7 @@ Here are some highlights ✨:
5485
6689
 
5486
6690
  ## 5.0.0-alpha.8
5487
6691
 
5488
- ###### _Aug 31, 2020_
6692
+ _Aug 31, 2020_
5489
6693
 
5490
6694
  A big thanks to the 19 contributors who made this release possible.
5491
6695
  Here are some highlights ✨:
@@ -5661,7 +6865,7 @@ const theme = createMuiTheme({
5661
6865
 
5662
6866
  ## 5.0.0-alpha.7
5663
6867
 
5664
- ###### _Aug 22, 2020_
6868
+ _Aug 22, 2020_
5665
6869
 
5666
6870
  A big thanks to the 22 contributors who made this release possible.
5667
6871
  Here are some highlights ✨:
@@ -5791,7 +6995,7 @@ Here are some highlights ✨:
5791
6995
 
5792
6996
  ## 5.0.0-alpha.6
5793
6997
 
5794
- ###### _Aug 13, 2020_
6998
+ _Aug 13, 2020_
5795
6999
 
5796
7000
  A big thanks to the 26 contributors who made this release possible.
5797
7001
  Here are some highlights ✨:
@@ -5834,7 +7038,7 @@ Here are some highlights ✨:
5834
7038
 
5835
7039
  ### `@material-ui/core@v5.0.0-alpha.6`
5836
7040
 
5837
- ### Breaking changes
7041
+ #### Breaking changes
5838
7042
 
5839
7043
  - [Avatar] Rename variant circle -> circular for consistency (#22015) @kodai3
5840
7044
  Rename `circle` to `circular` for consistency. The possible values should be adjectives, not nouns:
@@ -5993,7 +7197,7 @@ Here are some highlights ✨:
5993
7197
  +},
5994
7198
  ```
5995
7199
 
5996
- ### Changes
7200
+ #### Changes
5997
7201
 
5998
7202
  - [Avatar] Custom variant (#22139) @mnajdova
5999
7203
  - [Badge] Add missing class key (#22095) @kodai3
@@ -6013,7 +7217,7 @@ Here are some highlights ✨:
6013
7217
 
6014
7218
  ### `@material-ui/lab@v5.0.0-alpha.6`
6015
7219
 
6016
- ### Breaking changes
7220
+ #### Breaking changes
6017
7221
 
6018
7222
  - [Skeleton] Rename variant circle -> circular and rect -> rectangular for consistency (#22053) @kodai3
6019
7223
  Rename `circle` to `circular` and `rect` to `rectangular` for consistency. The possible values should be adjectives, not nouns:
@@ -6025,7 +7229,7 @@ Here are some highlights ✨:
6025
7229
  +<Skeleton variant="rectangular">
6026
7230
  ```
6027
7231
 
6028
- ### Changes
7232
+ #### Changes
6029
7233
 
6030
7234
  - [Autocomplete] Add support for "{label: string}" data type as a default for "options" (#21992) @DanailH
6031
7235
  - [TreeView] Add disabled prop (#20133) @netochaves
@@ -6077,7 +7281,7 @@ Here are some highlights ✨:
6077
7281
 
6078
7282
  ## 5.0.0-alpha.5
6079
7283
 
6080
- ###### _July 28, 2020_
7284
+ _July 28, 2020_
6081
7285
 
6082
7286
  A big thanks to the 18 contributors who made this release possible.
6083
7287
 
@@ -6148,7 +7352,7 @@ A big thanks to the 18 contributors who made this release possible.
6148
7352
 
6149
7353
  ## 5.0.0-alpha.4
6150
7354
 
6151
- ###### _July 19, 2020_
7355
+ _July 19, 2020_
6152
7356
 
6153
7357
  A big thanks to the 11 contributors who made this release possible.
6154
7358
 
@@ -6190,7 +7394,7 @@ A big thanks to the 11 contributors who made this release possible.
6190
7394
 
6191
7395
  ## 5.0.0-alpha.3
6192
7396
 
6193
- ###### _July 12, 2020_
7397
+ _July 12, 2020_
6194
7398
 
6195
7399
  A big thanks to the 14 contributors who made this release possible.
6196
7400
 
@@ -6239,7 +7443,7 @@ A big thanks to the 14 contributors who made this release possible.
6239
7443
 
6240
7444
  ## 5.0.0-alpha.2
6241
7445
 
6242
- ###### _July 4, 2020_
7446
+ _July 4, 2020_
6243
7447
 
6244
7448
  A big thanks to the 16 contributors who made this release possible.
6245
7449
 
@@ -6301,7 +7505,7 @@ A big thanks to the 16 contributors who made this release possible.
6301
7505
 
6302
7506
  ## 5.0.0-alpha.1
6303
7507
 
6304
- ###### _June 27, 2020_
7508
+ _June 27, 2020_
6305
7509
 
6306
7510
  A big thanks to the 33 contributors who made this release possible. Here are some highlights ✨:
6307
7511
 
@@ -6417,6 +7621,7 @@ A big thanks to the 33 contributors who made this release possible. Here are som
6417
7621
  ```
6418
7622
 
6419
7623
  - [Accordion] typescript: The `event` in `onChange` is no longer typed as a `React.ChangeEvent` but `React.SyntheticEvent`.
7624
+
6420
7625
  ```diff
6421
7626
  -<Accordion onChange={(event: React.ChangeEvent<{}>, expanded: boolean) => {}} />
6422
7627
  +<Accordion onChange={(event: React.SyntheticEvent, expanded: boolean) => {}} />
@@ -6503,4 +7708,4 @@ A big thanks to the 33 contributors who made this release possible. Here are som
6503
7708
 
6504
7709
  ## Older versions
6505
7710
 
6506
- Changes before 5.x are listed in our [changelog for older versions](https://github.com/mui-org/material-ui/blob/HEAD/CHANGELOG.old.md).
7711
+ Changes before 5.x are listed in our [changelog for older versions](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.old.md).