@mui/private-theming 5.8.0 โ†’ 5.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,537 @@
1
1
  # [Versions](https://mui.com/versions/)
2
2
 
3
+ ## 5.9.0
4
+
5
+ <!-- generated comparing v5.8.7..master -->
6
+
7
+ _Jul 12, 2022_
8
+
9
+ A big thanks to the 19 contributors who made this release possible. Here are some highlights โœจ:
10
+
11
+ - ๐Ÿงช Exported Grid v2 as `Unstable_Grid2` (#33479) @siriwatknp
12
+ - ๐Ÿ“– Added a guide for using Joy UI and Material UI together (#33396) @siriwatknp
13
+ - ๐Ÿ› Fixed a few bugs in Material UI components. Thanks to @ZeeshanTamboli, @ivan-ngchakming, and @joebingham-wk.
14
+ - many other ๐Ÿ› bug fixes and ๐Ÿ“š documentation improvements
15
+ - our documentation site is now running with React 18! (#33196) @mnajdova
16
+
17
+ ### `@mui/material@5.9.0`
18
+
19
+ - [CssBaseline] Fixes in overriding style (#33338) @ZeeshanTamboli
20
+ - [Autocomplete] Remove unnecessary `clsx` wrapper for single className (#33398) @ZeeshanTamboli
21
+ - [Grid] Export new grid as unstable (#33479) @siriwatknp
22
+ - [Tooltip] Fix children mouse over detection (#32321) @ivan-ngchakming
23
+ - [TypeScript] getCssVar autocomplete for Material UI (#33464) @siriwatknp
24
+ - [TypeScript] Fix theme options components types to use `Theme` (#33434) @siriwatknp
25
+ - [TypeScript] Reexports necessary types for module augmentation (#33397) @siriwatknp
26
+ - [ScopedCssBaseline] Add sx typings (#33474) @joebingham-wk
27
+
28
+ ### `@mui/system@5.9.0`
29
+
30
+ - [System] Add offset feature to Grid (#33415) @siriwatknp
31
+ - [system] Add new `Grid` implementation (#32746) @siriwatknp
32
+
33
+ ### `@mui/lab@5.0.0-alpha.90`
34
+
35
+ - [lab] Remove the pickers (#33386) @flaviendelangle
36
+ - [Masonry] Support `rem`/`em` values for `spacing` prop (#33384) @hbjORbj
37
+
38
+ ### `@mui/base@5.0.0-alpha.89`
39
+
40
+ - Base] Change the order of class names merged in useSlotProps (#33383) @michaldudak
41
+ - [ModalUnstyled] Accept callbacks in componentsProps (#33181) @michaldudak
42
+ - [SelectUnstyled] Accept callbacks in componentsProps (#33197) @michaldudak
43
+ - [TabsUnstyled] Accept callbacks in componentsProps (#33284) @michaldudak
44
+
45
+ ### `@mui/joy@5.0.0-alpha.36`
46
+
47
+ - [Joy] Add guide about using Joy and Material UI together (#33396) @siriwatknp
48
+ - [Joy] Fix variants color palette regressions (#33394) @danilo-leal
49
+
50
+ ### Docs
51
+
52
+ - [docs] Correcting small grammatical error (#33393) @robyyo
53
+ - [docs] Link to the correct package on Joy component pages (#33439) @cherniavskii
54
+ - [docs] Fix e2e tests (#33477) @siriwatknp
55
+ - [docs] Fix dead links (#33462) @oliviertassinari
56
+ - [docs] Cleanup the migration (#33463) @siriwatknp
57
+ - [docs] Fix broken Sponsoring services links @samuelsycamore
58
+ - [docs] Improve repo README with light/dark logos, relative links and more (#33356) @samuelsycamore
59
+ - [docs] Update links to MUI X Overview and Introduction pages (#33201) @samuelsycamore
60
+ - [docs] Update to React 18 (#33196) @mnajdova
61
+ - [docs] Simplify "Upload button" demo (#33326) @baharalidurrani
62
+ - [docs] Add "refine" demo to showcase (#33240) @omeraplak
63
+ - [docs] Add webpack alias for legacy utils package (#33376) @jgbae
64
+ - [docs] Improve external link icons synonyms (#33257) @davidgarciab
65
+ - [examples] Update MUI Base with Tailwind CSS to use the latest versions of the dependencies (#33401) @mnajdova
66
+ - [examples] Add MUI base example (#33154) @siriwatknp
67
+
68
+ ### Core
69
+
70
+ - [core] Fix @mui/monorepo regression for the import of the docs infra (#33390) @Janpot
71
+ - [core] Remove old babel resolve rule (#33432) @oliviertassinari
72
+ - [website] Shorten the plan descriptions on the pricing page (#32984) @joserodolfofreitas
73
+ - [website] Link EULA in the license quantity section (#33292) @oliviertassinari
74
+
75
+ All contributors of this release in alphabetical order: @baharalidurrani, @cherniavskii, @danilo-leal, @davidgarciab, @flaviendelangle, @hbjORbj, @ivan-ngchakming, @Janpot, @jgbae, @joebingham-wk, @joserodolfofreitas, @michaldudak, @mnajdova, @oliviertassinari, @omeraplak, @robyyo, @samuelsycamore, @siriwatknp, @ZeeshanTamboli
76
+
77
+ ## 5.8.7
78
+
79
+ <!-- generated comparing v5.8.6..master -->
80
+
81
+ _Jul 4, 2022_
82
+
83
+ A big thanks to the 13 contributors who made this release possible. Here are some highlights โœจ:
84
+
85
+ - ๐Ÿ› Fixed an issue causing Typescript errors when building a project with Material UI v5.8.6 (@michaldudak)
86
+ - ๐Ÿ› Fixed a few bugs in Material UI components. Thanks @henriqueholtz, @jake-collibra, @MattiasMartens and @TimoWilhelm!
87
+ - many other ๐Ÿ› bug fixes and ๐Ÿ“š documentation improvements
88
+
89
+ ### `@mui/material@5.8.7`
90
+
91
+ - [Autocomplete] Add some missing props in `useAutocomplete` (#33269) @henriqueholtz
92
+ - [Autocomplete] Extend `componentsProps` to include `popper` and `popupIndicator` slots (#33283) @jake-collibra
93
+ - [Select] Annotate empty string as valid value prop (#33088) @MattiasMartens
94
+ - [SnackbarContent] Fix message text color with css var provider (#33285) @TimoWilhelm
95
+
96
+ ### `@mui/styled-engine@5.8.7`
97
+
98
+ - [styled-engine] Add missing type dependency on csstype (#33310) @Methuselah96
99
+
100
+ ### `@mui/system@5.8.7`
101
+
102
+ - [system] Simplify theme input types for `CssVarsProvider` (#33381) @siriwatknp
103
+ - [system] Export required types (#33324) @michaldudak
104
+
105
+ ### `@mui/joy@5.0.0-alpha.35`
106
+
107
+ - [Joy] Add radio button documentation (#33254) @siriwatknp
108
+ - [Joy] Add switch documentation (#33302) @siriwatknp
109
+ - [Joy] Batch a couple of documentation refinements (#33158)
110
+ - [Joy] Enable Joy and Material UI compatibility (#33379) @siriwatknp
111
+
112
+ ### `@mui/base@5.0.0-alpha.88`
113
+
114
+ - [base] Remove a type incompatible with Typescript 3.5 (#33361) @michaldudak
115
+ - [BadgeUnstyled] Export BadgeUnstyledOwnProps interface to fix typescript compiler error (#33314) @aaronlademann-wf
116
+ - [TablePaginationUnstyled] Accept callbacks in componentsProps (#33309) @michaldudak
117
+
118
+ ### Docs
119
+
120
+ - [docs] Fix Link typings in the react-router example (#32308) @aaarichter
121
+ - [docs] Add caveat about class components with Tooltip (#33325) @joshkel
122
+ - [docs] Fix SEO issues (#33288) @oliviertassinari
123
+ - [docs] Fix Slider's "player" demo (#33267) @xlianghang
124
+ - [website] Link MUI Toolpad in mui.com (#33287) @oliviertassinari
125
+
126
+ All contributors of this release in alphabetical order: @aaarichter, @aaronlademann-wf, @danilo-leal, @henriqueholtz, @jake-collibra, @joshkel, @MattiasMartens, @Methuselah96, @michaldudak, @oliviertassinari, @siriwatknp, @TimoWilhelm, @xlianghang
127
+
128
+ ## 5.8.6
129
+
130
+ <!-- generated comparing v5.8.5..master -->
131
+
132
+ _Jun 27, 2022_
133
+
134
+ A big thanks to the 13 contributors who made this release possible. Here are some highlights โœจ:
135
+
136
+ - โš’๏ธ Fixed React 18 issues in few components
137
+ - ๐Ÿš€ Improved the TypeScript augmentation when using CSS variables with `@mui/material`
138
+ - many other ๐Ÿ› bug fixes and ๐Ÿ“š documentation improvements
139
+
140
+ ### `@mui/material@5.8.6`
141
+
142
+ - &#8203;<!-- 27 -->[Alert] Add support for CSS vars (#32624) @haneenmahd
143
+ - &#8203;<!-- 26 -->[Alert] Use `getContrastText` for filled variant font color (#29813) @SamoraMabuya
144
+
145
+ Note: The color of the text in the warning contained `Alert` in dark mode was changed to black in order to improve the color contrast ratio
146
+
147
+ - &#8203;<!-- 11 -->[OutlinedInput] Fix `ownerState` undefined in theme style overrides (#33241) @siriwatknp
148
+ - &#8203;<!-- 08 -->[Tabs] Fix crash when used with React 18 & Suspense (#33277) @mnajdova
149
+ - &#8203;<!-- 05 -->[TypeScript] Add CSS vars type augmentation for Material UI (#33211) @siriwatknp
150
+
151
+ ### `@mui/system@5.8.6`
152
+
153
+ - &#8203;<!-- 09 -->[system] Add enableColorScheme option to getInitColorSchemeScript (#33261) @siriwatknp
154
+
155
+ ### `@mui/utils@5.8.6`
156
+
157
+ - &#8203;<!-- 04 -->[utils] Allow state prefix to be configurable (#32972) @siriwatknp
158
+
159
+ ### `@mui/base@5.0.0-alpha.87`
160
+
161
+ - &#8203;<!-- 25 -->[base] Improve the return type of useSlotProps (#33279) @michaldudak
162
+ - &#8203;<!-- 24 -->[base] Improve some types (#33270) @mnajdova
163
+ - &#8203;<!-- 13 -->[MenuUnstyled] Fix keyboard accessibility of menu items (#33145) @michaldudak
164
+ - &#8203;<!-- 12 -->[ModalManager] Lock body scroll when container is inside shadow DOM (#33168) @jacobweberbowery
165
+ - &#8203;<!-- 10 -->[SliderUnstyled] Use useSlotProps (#33132) @michaldudak
166
+ - &#8203;<!-- 07 -->[TextareaAutosize] Fix crash when used with React 18 & Suspense (#33238) @howlettt
167
+ - &#8203;<!-- 06 -->[TextareaAutosize] Fix warnings for too many renders in React 18 (#33253) @mnajdova
168
+
169
+ ### `@mui/joy@5.0.0-alpha.34`
170
+
171
+ - &#8203;<!-- 14 -->[Joy] Add `Sheet` doc (#32820) @hbjORbj
172
+
173
+ ### Docs
174
+
175
+ - &#8203;<!-- 23 -->[blog] Polish Why you should migrate to Material UI v5 today (#33244) @oliviertassinari
176
+ - &#8203;<!-- 21 -->[docs] Add note in docs about `componentsProps.root` taking precedence (#33097) @ZeeshanTamboli
177
+ - &#8203;<!-- 20 -->[docs] Remove a note about Base components being reexported from Material UI (#33265) @michaldudak
178
+ - &#8203;<!-- 19 -->[docs] Update code snippet in docs for custom color palette (#32946) @ZeeshanTamboli
179
+ - &#8203;<!-- 18 -->[docs] Fix the docs for production class generation (#31933) @Fafruch
180
+ - &#8203;<!-- 17 -->[docs] Fix internal link in Box page (#33149) @davidgarciab
181
+ - &#8203;<!-- 16 -->[docs] Badge component link in Base docs should be under Data Display section (#33249) @ZeeshanTamboli
182
+ - &#8203;<!-- 15 -->[examples] Fix comment typo (#33256) @WinmezzZ
183
+
184
+ ### Core
185
+
186
+ - &#8203;<!-- 22 -->[core] Remove dead code (#33243) @oliviertassinari
187
+ - &#8203;<!-- 03 -->[website] Fix the scroll-top for all the website (#33215) @oliviertassinari
188
+ - &#8203;<!-- 02 -->[website] List new core role @oliviertassinari
189
+ - &#8203;<!-- 01 -->[website] Fix navigation menu close behavior (#33203) @oliviertassinari
190
+
191
+ All contributors of this release in alphabetical order: @davidgarciab, @Fafruch, @haneenmahd, @hbjORbj, @howlettt, @jacobweberbowery, @michaldudak, @mnajdova, @oliviertassinari, @SamoraMabuya, @siriwatknp, @WinmezzZ, @ZeeshanTamboli
192
+
193
+ ## 5.8.5
194
+
195
+ <!-- generated comparing v5.8.4..master -->
196
+
197
+ _Jun 20, 2022_
198
+
199
+ A big thanks to the 14 contributors who made this release possible. Here are some highlights โœจ:
200
+
201
+ - ๐Ÿš€ Added support for CSS variables in the `Avatar` component and the `SpeedDialAction` component respectively by @vicasas and @gin1314
202
+ - many other ๐Ÿ› bug fixes and ๐Ÿ“š documentation improvements
203
+
204
+ ### `@mui/material@5.8.5`
205
+
206
+ - &#8203;<!-- 30 -->[Avatar] Add support for CSS variables (#32499) @vicasas
207
+ - &#8203;<!-- 19 -->[Dialog] Fix broken styles if `maxWidth` is set to `false` (#32987) @kmurgic
208
+ - &#8203;<!-- 04 -->[SpeedDialAction] Add support for CSS variables (#32608) @gin1314
209
+ - &#8203;<!-- 02 -->[Tabs] Increment scroll of the minimum amount possible (#33103) @oliviertassinari
210
+
211
+ ### `@mui/codemod@5.8.5`
212
+
213
+ - &#8203;<!-- 24 -->[codemod] Preserve comments within jss-to-tss-react (#33170) @ryancogswell
214
+
215
+ ### `@mui/lab@5.0.0-alpha.87`
216
+
217
+ - &#8203;<!-- 06 -->[Masonry] Fix flickering when used with React 18 (#33163) @mnajdova
218
+
219
+ ### `@mui/base@5.0.0-alpha.86`
220
+
221
+ - &#8203;<!-- 29 -->[BadgeUnstyled] Accept callbacks in componentsProps (#33176) @michaldudak
222
+ - &#8203;<!-- 25 -->[ButtonUnstyled] Use useSlotProps (#33096) @michaldudak
223
+ - &#8203;<!-- 11 -->[FormControlUnstyled] Accept callbacks in componentsProps (#33180) @michaldudak
224
+ - &#8203;<!-- 10 -->[InputUnstyled] Use useSlotProps (#33094) @michaldudak
225
+ - &#8203;<!-- 05 -->[ModalUnstyled] Define ownerState and slot props' types (#32901) @michaldudak
226
+ - &#8203;<!-- 03 -->[SwitchUnstyled] Use useSlotProps (#33174) @michaldudak
227
+
228
+ ### `@mui/joy@5.0.0-alpha.33`
229
+
230
+ - &#8203;<!-- 09 -->[Joy] Add Checkbox documentation (#33171) @siriwatknp
231
+ - &#8203;<!-- 08 -->[Joy] Add List documentation (#33120) @siriwatknp
232
+ - &#8203;<!-- 07 -->[Joy] Make slider displays Joy classname (#33051) @siriwatknp
233
+
234
+ ### Docs
235
+
236
+ - &#8203;<!-- 28 -->[blog] Update Blogpost to clear confusion on "no impact" disclaimer. (#33131) @joserodolfofreitas
237
+ - &#8203;<!-- 27 -->[blog] Add post about v5 Migration guide update (#33063) @samuelsycamore
238
+ - &#8203;<!-- 26 -->[blog] Fix display on Safari (#33102) @oliviertassinari
239
+ - &#8203;<!-- 18 -->[docs] Add guide on how to use MUI Base with Tailwind CSS (#33100) @mnajdova
240
+ - &#8203;<!-- 17 -->[docs] Improve Joy template UX (#33159) @siriwatknp
241
+ - &#8203;<!-- 16 -->[docs] Update Shadow DOM guide (#33160) @cherniavskii
242
+ - &#8203;<!-- 15 -->[docs] Fix SEO regressions (#33106) @oliviertassinari
243
+ - &#8203;<!-- 14 -->[docs] Add job ad in table of content (#33143) @mnajdova
244
+ - &#8203;<!-- 13 -->[docs] Add customization as a value proposition (#33014) @oliviertassinari
245
+ - &#8203;<!-- 12 -->[examples] Add example using nextjs & @mui/styles as a starter for the migration to v5 (#33005) @mnajdova
246
+ - &#8203;<!-- 01 -->[website] Replace Airtable with Ashby links for applying to a opened position (#33193) @DanailH
247
+
248
+ ### Core
249
+
250
+ - &#8203;<!-- 31 -->[core] Add CSS variables support for Material UI components (#32835) @siriwatknp
251
+ - &#8203;<!-- 23 -->[core] Add name to workspace root package.json (#33226) @Janpot
252
+ - &#8203;<!-- 22 -->[core] Update bug template with generic instruction (#33153) @joserodolfofreitas
253
+ - &#8203;<!-- 21 -->[core] Remove dead and redundant code (#33125) @oliviertassinari
254
+ - &#8203;<!-- 20 -->[core] Improve inline code rendering within the details tag (#33086) @Harmouch101
255
+
256
+ All contributors of this release in alphabetical order: @cherniavskii, @DanailH, @gin1314, @Harmouch101, @Janpot, @joserodolfofreitas, @kmurgic, @michaldudak, @mnajdova, @oliviertassinari, @ryancogswell, @samuelsycamore, @siriwatknp, @vicasas
257
+
258
+ ## 5.8.4
259
+
260
+ <!-- generated comparing v5.8.3..master -->
261
+
262
+ _Jun 14, 2022_
263
+
264
+ A big thanks to the 24 contributors who made this release possible. Here are some highlights โœจ:
265
+
266
+ - ๐Ÿš€ Added support for custom breakpoints in the `Grid` component by @boutahlilsoufiane
267
+ - ๐Ÿ“š Added guide on how to use Material UI with Shadow DOM by @cherniavskii
268
+ - many other ๐Ÿ› bug fixes and ๐Ÿ“š documentation improvements
269
+
270
+ ### `@mui/material@5.8.4`
271
+
272
+ - &#8203;<!-- 36 -->[Button] Add missing classes in `ButtonClasses` type (#33040) @ZeeshanTamboli
273
+ - &#8203;<!-- 20 -->[Grid] Fix prop-type key regression (#33123) @oliviertassinari
274
+ - &#8203;<!-- 19 -->[Grid] Support custom breakpoints (#31998) @boutahlilsoufiane
275
+ - &#8203;<!-- 18 -->[Grow] Limit CSS transition bug workaround to Safari 15.4 only (#32996) @igordanchenko
276
+ - &#8203;<!-- 17 -->[Hidden] Remove dependency on hoist-non-react-statics (#33015) @oliviertassinari
277
+ - &#8203;<!-- 12 -->[Link] Add support for CSS variables (#33036) @winderica
278
+ - &#8203;<!-- 07 -->[Popover] Export `getOffsetTop` & `getOffsetLeft` from Popover's index and add typings (#32959) @rart
279
+ - &#8203;<!-- 06 -->[Slider] Fix SliderValueLabelProps type (#32895) @oliviertassinari
280
+ - &#8203;<!-- 05 -->[Snackbar] Remove `RTL` direction specific logic (#32808) @aaarichter
281
+ - &#8203;<!-- 04 -->[StepIcon] Fix text centering when changing browser font size (#32706) @alansouzati
282
+ - &#8203;<!-- 02 -->[Tabs] Scroll by width of the first visible tab if only one tab is partially visible (#32778) @frankkluijtmans
283
+
284
+ ### `@mui/system@5.8.4`
285
+
286
+ - &#8203;<!-- 38 -->[Stack, system] Apply correct responsive styles if any custom breakpoints are provided (#32913) @ZeeshanTamboli
287
+ - &#8203;<!-- 03 -->[system] Fix missing typings for ColorFormat (#32417) @l-zoy
288
+
289
+ ### `@mui/codemod@5.8.4`
290
+
291
+ - &#8203;<!-- 35 -->[codemod] Add support for `@mui/styles/makeStyles` imports (#32962) @joshkel
292
+
293
+ ### `@mui/lab@5.0.0-alpha.86`
294
+
295
+ - &#8203;<!-- 08 -->[pickers] Fix broken ref forwarding (#33107) @oliviertassinari
296
+ - &#8203;<!-- 13 -->[lab] Fix React's `forwardRef` warning when importing from the index (#33134) @mnajdova
297
+
298
+ ### `@mui/base@5.0.0-alpha.85`
299
+
300
+ - &#8203;<!-- 11 -->[MenuUnstyled] Accept callbacks in componentsProps (#32997) @michaldudak
301
+ - &#8203;<!-- 10 -->[ModalUnstyled] Fix errors from the W3C validator about incorrect aria-hidden attribute on some elements (#30920) @mkrtchian
302
+ - &#8203;<!-- 09 -->[ModalUnstyled] Fix behavior of not respecting props ariaHidden value (#32055) @tech-meppem
303
+
304
+ ### `@mui/joy@5.0.0-alpha.32`
305
+
306
+ - &#8203;<!-- 16 -->[Joy] Miscellaneous card fixes (#33129) @siriwatknp
307
+ - &#8203;<!-- 15 -->[Joy] Miscellaneous fixes (#33073) @siriwatknp
308
+ - &#8203;<!-- 14 -->[Joy] Add typography and link docs (#33047) @siriwatknp
309
+
310
+ ### Docs
311
+
312
+ - &#8203;<!-- 40 -->[Contributing.md] Local install instructions (#32975) @Moizsohail
313
+ - &#8203;<!-- 32 -->[docs] Add responsive AppBar with drawer (#32769) @dvlprAlamin
314
+ - &#8203;<!-- 31 -->[docs] Move codesandbox to MUI org (#33122) @oliviertassinari
315
+ - &#8203;<!-- 30 -->[docs] Add Shadow DOM guide (#33007) @cherniavskii
316
+ - &#8203;<!-- 29 -->[docs] Fix typo in Material UI overview page (#33087) @oliviertassinari
317
+ - &#8203;<!-- 28 -->[docs] Miscellaneous fixes in `MUI Base` docs (#33091) @ZeeshanTamboli
318
+ - &#8203;<!-- 27 -->[docs] Fix GitHub capitalization (#33071) @oliviertassinari
319
+ - &#8203;<!-- 26 -->[docs] Fix a typo in `InputUnstyled` docs (#33077) @ZeeshanTamboli
320
+ - &#8203;<!-- 25 -->[docs] Add notification for Joy blog post (#33059) @siriwatknp
321
+ - &#8203;<!-- 24 -->[docs] Improve aspect ratio docs and integration (#33065) @siriwatknp
322
+ - &#8203;<!-- 34 -->[docs] Update code block copy label (#33128) @siriwatknp
323
+ - &#8203;<!-- 23 -->[docs] Fix typo in Autocomplete CSS API (#32838) @KeaghanKennedy
324
+ - &#8203;<!-- 22 -->[docs] Improvements for Radio Group Rating Docs (#32843) @Kai-W
325
+ - &#8203;<!-- 21 -->[docs] Enable Joy pages (#33064) @siriwatknp
326
+ - &#8203;<!-- 02 -->[website] Add Joy UI to the pricing page (#33099) @danilo-leal
327
+ - &#8203;<!-- 01 -->[website] Clarify the pricing a bit (#33069) @oliviertassinari
328
+
329
+ ### Core
330
+
331
+ - &#8203;<!-- 39 -->yarn proptypes @oliviertassinari
332
+ - &#8203;<!-- 34 -->[core] Update dependencies to fix security vulnerabilities (#33095) @michaldudak
333
+ - &#8203;<!-- 33 -->[core] Import new line convention (#33068) @oliviertassinari
334
+ - &#8203;<!-- 37 -->[core] Make repository configurable in changelog script (#33130) @Janpot
335
+
336
+ All contributors of this release in alphabetical order: @aaarichter, @alansouzati, @boutahlilsoufiane, @cherniavskii, @danilo-leal, @dvlprAlamin, @frankkluijtmans, @igordanchenko, @Janpot, @joshkel, @Kai-W, @KeaghanKennedy, @l-zoy, @michaldudak, @mkrtchian, @mnajdova, @Moizsohail, @oliviertassinari, @pushys, @rart, @siriwatknp, @tech-meppem, @winderica, @ZeeshanTamboli
337
+
338
+ ## 5.8.3
339
+
340
+ <!-- generated comparing v5.8.2..master -->
341
+
342
+ _Jun 7, 2022_
343
+
344
+ A big thanks to the 15 contributors who made this release possible.
345
+ This release is mostly about ๐Ÿ› bug fixes and ๐Ÿ“š documentation improvements.
346
+
347
+ ### `@mui/material@5.8.3`
348
+
349
+ - [Alert] Constrain message width and allow overflow (#32747) @Janpot
350
+ - [Checkbox] Add support for CSS variables (#32579) @haneenmahd
351
+ - [Slider] Fix positioning of tooltips on vertical slider (#32919) @abhinav-22-tech
352
+
353
+ ### `@mui/system@5.8.3`
354
+
355
+ - [system] Configurable attributes for libraries (#32971) @siriwatknp
356
+
357
+ ### `@mui/codemod@5.8.3`
358
+
359
+ - [codemod] Fix infinite loop in jss-to-tss-react and add TODO (#33048) @ryancogswell
360
+
361
+ ### `@mui/lab@5.0.0-alpha.85`
362
+
363
+ - [pickers] Add deprecations when importing pickers from the lab (#32950) @flaviendelangle
364
+
365
+ ### `@mui/joy@5.0.0-alpha.31`
366
+
367
+ - [Joy] Add `Slider` component and demos (#32694) @hbjORbj
368
+ - [Joy] Add articles about customization approaches (#32887) @siriwatknp
369
+ - [Joy] Add automatic adjustment page to core features (#32980) @siriwatknp
370
+ - [Joy] Add docs about dark mode (#33002) @siriwatknp
371
+ - [Joy] Add template UIs & first look blog post (#32791) @danilo-leal
372
+
373
+ ### `@mui/base@5.0.0-alpha.84`
374
+
375
+ - [base] Remove @mui/system in tests (#32945) @kevinji
376
+ - [ButtonUnstyled] Accept callbacks in componentsProps (#32991) @michaldudak
377
+ - [SwitchUnstyled] Accept callbacks in componentsProps (#32993) @michaldudak
378
+ - [TablePaginationUnstyled] Define ownerState and slot props' types (#32905) @michaldudak
379
+ - [TabPanelUnstyled] Define ownerState and slot props' types (#32928) @michaldudak
380
+ - [TabsListUnstyled] Define ownerState and slot props' types (#32925) @michaldudak
381
+
382
+ ### Docs
383
+
384
+ - [blog] Fix anchor link scroll (#32994) @oliviertassinari
385
+ - [docs] Add "Migration" section to sidebar and revise v4-v5 content (#32740) @samuelsycamore
386
+ - [docs] Add What doesn't count as a breaking change? (#32850) @oliviertassinari
387
+ - [docs] Fix 301 link @oliviertassinari
388
+ - [docs] Fix icon color in `BadgeUnstyled` docs (#32976) @ZeeshanTamboli
389
+ - [docs] Improve product identifier (#32707) @danilo-leal
390
+ - [docs] Improve UX with back to top (#32896) @oliviertassinari
391
+ - [docs] Polish overview page to Material UI (#32954) @oliviertassinari
392
+ - [docs] Redirect older URLs (#33037) @oliviertassinari
393
+ - [docs] Remove pickers page from the Lab section (#32961) @DanailH
394
+ - [docs] Show product identifier on updated MUI X Introduction pages (#32966) @samuelsycamore
395
+ - [docs] Throw on 301 links (#32939) @oliviertassinari
396
+ - [website] Add Gerda to the about page (#33038) @danilo-leal
397
+ - [website] Polish the pricing page (#32811) @oliviertassinari
398
+ - [website] Remove unnecessary `address` dependency (#32957) @michaldudak
399
+
400
+ ### Core
401
+
402
+ - [core] Improve icon synonyms (#32742) @oliviertassinari
403
+ - [core] Prepare Next.js config for React 18 (#32963) @michaldudak
404
+ - [core] Remove dead logic (#32940) @oliviertassinari
405
+ - [core] Update dependencies to fix security vulnerabilities (#32947) @michaldudak
406
+ - Add security link to README for Tidelift @mbrookes
407
+
408
+ All contributors of this release in alphabetical order: @abhinav-22-tech, @DanailH, @danilo-leal, @flaviendelangle, @haneenmahd, @hbjORbj, @Janpot, @kevinji, @mbrookes, @michaldudak, @oliviertassinari, @ryancogswell, @samuelsycamore, @siriwatknp, @ZeeshanTamboli
409
+
410
+ ## 5.8.2
411
+
412
+ <!-- generated comparing v5.8.1..master -->
413
+
414
+ _May 30, 2022_
415
+
416
+ A big thanks to the 8 contributors who made this release possible. Here are some highlights โœจ:
417
+
418
+ - ๐Ÿ› bug fixes and ๐Ÿ“š documentation improvements.
419
+
420
+ ### `@mui/system@5.8.2`
421
+
422
+ - &#8203;<!-- 04 -->[system] Add `getColorSchemeSelector` util (#32868) @siriwatknp
423
+
424
+ ### `@mui/lab@5.0.0-alpha.84`
425
+
426
+ - &#8203;<!-- 07 -->[Masonry] Place items to the left when there are less objects than specified in `column` prop (#32873) @hbjORbj
427
+
428
+ ### `@mui/base@5.0.0-alpha.83`
429
+
430
+ - &#8203;<!-- 24 -->[BadgeUnstyled] Define ownerState and slot props' types (#32750) @michaldudak
431
+ - &#8203;<!-- 06 -->[SliderUnstyled] Define ownerState and slot props' types (#32739) @michaldudak
432
+ - &#8203;<!-- 05 -->[SwitchUnstyled] Define ownerState and slot props' types (#32573) @michaldudak
433
+ - &#8203;<!-- 03 -->[TabsUnstyled] Define ownerState and slot props' types (#32918) @michaldudak
434
+ - &#8203;<!-- 02 -->[TabUnstyled] Define ownerState and slot props' types (#32915) @michaldudak
435
+
436
+ ### `@mui/joy@5.0.0-alpha.30`
437
+
438
+ - &#8203;<!-- 13 -->[Joy] use `textColor` prop for Typography and Link (#32938) @siriwatknp
439
+ - &#8203;<!-- 12 -->[Joy] Make variants for more flexible (#32931) @siriwatknp
440
+ - &#8203;<!-- 11 -->[Joy] Improve automatic adjustment (#32923) @siriwatknp
441
+ - &#8203;<!-- 10 -->[Joy] Add `Chip` doc (#32819) @hbjORbj
442
+ - &#8203;<!-- 09 -->[Joy] Add `AspectRatio` demos (#32848) @siriwatknp
443
+ - &#8203;<!-- 08 -->[Joy] Fix wrong urls (#32883) @siriwatknp
444
+
445
+ ### Docs
446
+
447
+ - &#8203;<!-- 24 -->[docs] Iterate on the job ad for React engineer in Core (#32900) @mnajdova
448
+ - &#8203;<!-- 23 -->[blog] Fix avatar image resolution (#32890) @oliviertassinari
449
+ - &#8203;<!-- 19 -->[docs] Link the first page of the product (#32943) @oliviertassinari
450
+ - &#8203;<!-- 18 -->[docs] Batch small changes (#32170) @michaldudak
451
+ - &#8203;<!-- 17 -->[docs] Allow function prop to return undefined (#32766) @m4theushw
452
+ - &#8203;<!-- 16 -->[docs] Fix wrong link to Material Icons (#32847) @oliviertassinari
453
+ - &#8203;<!-- 15 -->[docs] Fix ClassNameGenerator content (#32800) @siriwatknp
454
+ - &#8203;<!-- 14 -->[docs] Fix navigation links (#32851) @oliviertassinari
455
+ - &#8203;<!-- 14 -->[docs] Document the `size` prop for InputLabel (#32936) @romelperez
456
+ - &#8203;<!-- 21 -->[docs] Add note about transparent background on the outlined Alert variant (#32810) @aaarichter
457
+ - &#8203;<!-- 01 -->[website] Update the careers's page with the new roles (#32535) @oliviertassinari
458
+
459
+ ### Core
460
+
461
+ - &#8203;<!-- 22 -->[core] Improve the incomplete issues workflow (#32878) @mnajdova
462
+ - &#8203;<!-- 21 -->[core] Add CI check that the PR has label (#32886) @mnajdova
463
+ - &#8203;<!-- 20 -->[core] Avoid leaking @babel/runtime (#32874) @oliviertassinari
464
+
465
+ All contributors of this release in alphabetical order: @aaarichter, @hbjORbj, @m4theushw, @michaldudak, @mnajdova, @oliviertassinari, @romelperez, @siriwatknp
466
+
467
+ ## 5.8.1
468
+
469
+ <!-- generated comparing v5.8.0..master -->
470
+
471
+ _May 23, 2022_
472
+
473
+ A big thanks to the 21 contributors who made this release possible. Here are some highlights โœจ:
474
+
475
+ - ๐Ÿ’… Added CSS variables support for two more Material UI components by @diggis00 and @alisasanib
476
+ - And more ๐Ÿ› bug fixes and ๐Ÿ“š documentation improvements.
477
+
478
+ ### `@mui/material@5.8.1`
479
+
480
+ - &#8203;<!-- 33 -->[Alert] Fix missing `ownerState` on the `action` slot (#32801) @mnajdova
481
+ - &#8203;<!-- 20 -->[Fab] Make the `color` prop type extendable (#31830) @paales
482
+ - &#8203;<!-- 14 -->[ListItemButton] Render as link if href specified (#32403) @o-dubrovskyi
483
+ - &#8203;<!-- 13 -->[Paper] Add support for CSS variables (#32570) @diggis00
484
+ - &#8203;<!-- 11 -->[Radio] Add support for CSS variables (#32599) @alisasanib
485
+ - &#8203;<!-- 10 -->[Slider] Prevent rendering for marks that are out of the min & max bounds (#32436) @abriginets
486
+ - &#8203;<!-- 09 -->[Slider] Slider having marks should be customizable in theme (#32816) @ZeeshanTamboli
487
+ - &#8203;<!-- 03 -->[TouchRipple] Allows call imperative methods without event (#31955) @alexfauquette
488
+
489
+ ### `@mui/system@5.8.1`
490
+
491
+ - &#8203;<!-- 07 -->[system] Simplify stylesheet injection logic (#32869) @siriwatknp
492
+ - &#8203;<!-- 06 -->[system] Fix color scheme specificity (#32628) @siriwatknp
493
+ - &#8203;<!-- 05 -->[system] Fix `borderRadius` errors when used inside `CssVarsProvider` (#32817) @mnajdova
494
+ - &#8203;<!-- 04 -->[system] Fix toolbar media query mixin getting merged in wrong order (#32713) @ZeeshanTamboli
495
+
496
+ ### `@mui/lab@5.0.0-alpha.83`
497
+
498
+ - &#8203;<!-- 15 -->[lab] Add missing `peerDependencies` (#32623) @nate-summercook
499
+ - &#8203;<!-- 12 -->[pickers] Update @mui/x-date-pickers to be usable with React 18 (#32828) @flaviendelangle
500
+
501
+ ### `@mui/base@5.0.0-alpha.82`
502
+
503
+ - &#8203;<!-- 08 -->[SliderUnstyled] Fix `disabledSwap` not being respected in `onChangeCommitted` (#32647) @JeanPetrov
504
+
505
+ ### `@mui/joy@5.0.0-alpha.29`
506
+
507
+ - &#8203;<!-- 19 -->[Joy] Show Joy pages on master (#32866) @siriwatknp
508
+ - &#8203;<!-- 18 -->[Joy] Add an overview page (#32836) @danilo-leal
509
+ - &#8203;<!-- 17 -->[Joy] Add doc for the card components (#32825) @siriwatknp
510
+ - &#8203;<!-- 16 -->[Joy] Miscellaneous fixes (#32815) @siriwatknp
511
+
512
+ ### Docs
513
+
514
+ - &#8203;<!-- 31 -->[docs] Simplify header DOM structure (#32844) @oliviertassinari
515
+ - &#8203;<!-- 30 -->[docs] Fix CodeSandbox & StackBlitz generation (#32726) @siriwatknp
516
+ - &#8203;<!-- 29 -->[docs] Fix urls to columns pages in pricing table (#32842) @alexfauquette
517
+ - &#8203;<!-- 28 -->[docs] Fix Tailwind CSS integration docs (#32512) @robertwt7
518
+ - &#8203;<!-- 27 -->[docs] Fixed wrong command for the `link-underline-hover` codemod (#32793) @veronikaslc
519
+ - &#8203;<!-- 26 -->[docs] Fixed broken link on the icons page (#32780) @SamuelMaddox
520
+ - &#8203;<!-- 25 -->[docs] Add "back to top" button (#30441) @VibhorJaiswal
521
+ - &#8203;<!-- 24 -->[docs] Fix typo in notifications @mbrookes
522
+ - &#8203;<!-- 32 -->[docs] New WAI-ARIA guidelines location (#32865) @oliviertassinari
523
+ - &#8203;<!-- 23 -->[docs] Mention the ESLint plugin for detecting unused classes in tss-react (#32666) @garronej
524
+ - &#8203;<!-- 22 -->[docs] Update `useAutocomplete` demos to use `Mui-focused` class (#32757) @ZeeshanTamboli
525
+ - &#8203;<!-- 21 -->[examples] Fix `NextLinkComposedProps` gives a TypeScript error (#32655) @ZeeshanTamboli
526
+ - &#8203;<!-- 01 -->[website] Add Pedro to About Us page (#32803) @apedroferreira
527
+
528
+ ### Core
529
+
530
+ - &#8203;<!-- 32 -->[core] Upgrade MUI X dependency (#32824) @oliviertassinari
531
+ - &#8203;<!-- 02 -->[typescript] Allow module augmentation for `Mixins` (#32798) @mnajdova
532
+
533
+ All contributors of this release in alphabetical order: @abriginets, @alexfauquette, @alisasanib, @apedroferreira, @danilo-leal, @diggis00, @flaviendelangle, @garronej, @JeanPetrov, @mbrookes, @mnajdova, @nate-summercook, @o-dubrovskyi, @oliviertassinari, @paales, @robertwt7, @SamuelMaddox, @siriwatknp, @veronikaslc, @VibhorJaiswal, @ZeeshanTamboli
534
+
3
535
  ## 5.8.0
4
536
 
5
537
  <!-- generated comparing v5.7.0..master -->
@@ -824,7 +1356,7 @@ A big thanks to the 17 contributors who made this release possible. Here are som
824
1356
  - &#8203;<!-- 25 -->[core] Update playwright docker to match the specified version (#31236) @siriwatknp
825
1357
  - &#8203;<!-- 24 -->[core] Remove parallel on buildTypes (#31189) @siriwatknp
826
1358
  - &#8203;<!-- 23 -->[core] Fix propTypes generation for optional any props (#31141) @m4theushw
827
- - &#8203;<!-- 04 -->[Typescript] Remove variants deprecation (#31239) @siriwatknp
1359
+ - &#8203;<!-- 04 -->[typescript] Remove variants deprecation (#31239) @siriwatknp
828
1360
 
829
1361
  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
830
1362
 
@@ -889,7 +1421,7 @@ A big thanks to the 16 contributors who made this release possible. Here are som
889
1421
  - [Select] Allow customizing Select based on its variant (#30788) @michaldudak
890
1422
  - [Portal] Re-export 'Portal' in material (#31003) @liradb2000
891
1423
  - [ToggleButton] Add prop types for `onClick` and `onChange` (#30883) @sydneyjodon-wk
892
- - [Typescript] Added TypeText declaration to the exports file (#30890) @agauravdev
1424
+ - [typescript] Added TypeText declaration to the exports file (#30890) @agauravdev
893
1425
 
894
1426
  ### `@mui/system@5.4.2`
895
1427
 
@@ -923,7 +1455,7 @@ A big thanks to the 16 contributors who made this release possible. Here are som
923
1455
  - [docs] Fix force redirection to a different locale (#30967) @oliviertassinari
924
1456
  - [docs] Add live Tailwind CSS demo (#30966) @oliviertassinari
925
1457
  - [website] Add banner for promoting priority open roles (#31076) @danilo-leal
926
- - [website] Open Full-stack Engineer role for studio (#31038) @newguy-123
1458
+ - [website] Open Full-stack Engineer role for studio (#31038) @prakhargupta1
927
1459
  - [website] Minor security improvements (#31062) @oliviertassinari
928
1460
  - [website] Improve title of open roles (#30963) @DanailH
929
1461
  - [website] Add BIMI avatar (#30444) @oliviertassinari
@@ -938,7 +1470,7 @@ A big thanks to the 16 contributors who made this release possible. Here are som
938
1470
  - [test] Test if certain Base members are exported from Material UI (#31067) @michaldudak
939
1471
  - [core] Remove dead code (#31064) @oliviertassinari
940
1472
 
941
- 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
1473
+ All contributors of this release in alphabetical order: @agauravdev, @alisasanib, @DanailH, @danilo-leal, @huyenltnguyen, @l10nbot, @liradb2000, @mbrookes, @michaldudak, @mnajdova, @prakhargupta1, @oliviertassinari, @ryohey, @samuelsycamore, @siriwatknp, @sydneyjodon-wk
942
1474
 
943
1475
  ## 5.4.1
944
1476
 
@@ -1648,14 +2180,14 @@ This is an early release to fix `export 'useId' (imported as 'React') was not fo
1648
2180
  - &#8203;<!-- 9 -->[core] Fix PR run detection in test_bundle_size_monitor (#29879) @eps1lon
1649
2181
  - &#8203;<!-- 8 -->[core] Move bundle size monitoring to CircleCI (#29876) @eps1lon
1650
2182
  - &#8203;<!-- 7 -->[docs] Add keys to Responsive AppBar demo (#29884) @mbrookes
1651
- - &#8203;<!-- 6 -->[docs] MUI's 2021 Developer survey (#29765) @newguy-123
2183
+ - &#8203;<!-- 6 -->[docs] MUI's 2021 Developer survey (#29765) @prakhargupta1
1652
2184
  - &#8203;<!-- 5 -->[docs] Smoother image loading UX (#29858) @oliviertassinari
1653
2185
  - &#8203;<!-- 4 -->[Select] Fix select display value with React Nodes (#29836) @kegi
1654
2186
  - &#8203;<!-- 3 -->[system] Add `experimental_sx` utility (#29833) @mnajdova
1655
2187
  - &#8203;<!-- 2 -->[test] Ignore "detected multiple renderers" warning for now (#29854) @eps1lon
1656
2188
  - &#8203;<!-- 1 -->[useMediaQuery][utils] Remove usage of React 18 APIs (#29870) @eps1lon
1657
2189
 
1658
- All contributors of this release in alphabetical order: @eps1lon, @karakib2k18, @kegi, @mbrookes, @mnajdova, @newguy-123, @oliviertassinari
2190
+ All contributors of this release in alphabetical order: @eps1lon, @karakib2k18, @kegi, @mbrookes, @mnajdova, @prakhargupta1, @oliviertassinari
1659
2191
 
1660
2192
  ## 5.2.0
1661
2193
 
@@ -1803,7 +2335,7 @@ A big thanks to the 15 contributors who made this release possible. Here are som
1803
2335
  - &#8203;<!-- 33 -->[core] Add `experiments` index page (#29582) @siriwatknp
1804
2336
  - &#8203;<!-- 32 -->[core] Move s3 bucket ownership to mui-org (#29609) @eps1lon
1805
2337
  - &#8203;<!-- 31 -->[core] Improve support request message (#29614) @mnajdova
1806
- - &#8203;<!-- 30 -->[core] Use support request Github Action (#29594) @mnajdova
2338
+ - &#8203;<!-- 30 -->[core] Use support request GitHub Action (#29594) @mnajdova
1807
2339
  - &#8203;<!-- 29 -->[core] Remove unused `getJsxPreview` util (#29586) @ZeeshanTamboli
1808
2340
  - &#8203;<!-- 28 -->[core] Use GitHub issue forms (#28038) @oliviertassinari
1809
2341
  - &#8203;<!-- 26 -->[core] Add playground (#29423) @oliviertassinari
@@ -2473,7 +3005,7 @@ _Sep 1, 2021_
2473
3005
  A big thanks to the 18 contributors who made this release possible. Here are some highlights โœจ:
2474
3006
 
2475
3007
  - ๐ŸŽ‰ 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).
2476
- - ๐Ÿ›  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/material-ui/guides/migration-v4/#preset-safe)
3008
+ - ๐Ÿ›  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/material-ui/migration/migration-v4/#preset-safe)
2477
3009
  - ๐Ÿงช Added new `<Mansory>` component to the lab, [check it out](https://mui.com/components/masonry/). It has been crafted by our first intern, @hbjORbj ๐Ÿ‘!
2478
3010
 
2479
3011
  ### `@mui/material@5.0.0-rc.0`
@@ -3878,7 +4410,7 @@ A big thanks to the 16 contributors who made this release possible. Here are som
3878
4410
  />
3879
4411
  ```
3880
4412
 
3881
- > Follow [this link](https://mui.com/material-ui/guides/migration-v4/#main-content) for full migration from v4 => v5
4413
+ > Follow [this link](https://mui.com/material-ui/migration/migration-v4/) for full migration from v4 => v5
3882
4414
 
3883
4415
  #### Changes
3884
4416
 
@@ -4327,8 +4859,8 @@ A big thanks to the 15 contributors who made this release possible. Here are som
4327
4859
  - &#8203;<!-- 29 -->[Button] Rename `pending` prop to `loading` in LoadingButton (#25874) @m4theushw
4328
4860
 
4329
4861
  ```diff
4330
- -<LoadingButton pending pendingIndicator="Pending..." pendingPosition="end" />
4331
- +<LoadingButton loading loadingIndicator="Pending..." loadingPosition="end" />
4862
+ -<LoadingButton pending pendingIndicator="Pendingโ€ฆ" pendingPosition="end" />
4863
+ +<LoadingButton loading loadingIndicator="Pendingโ€ฆ" loadingPosition="end" />
4332
4864
  ```
4333
4865
 
4334
4866
  - &#8203;<!-- 25 -->[ButtonBase] Remove buttonRef prop (#25896) @m4theushw
@@ -5858,7 +6390,7 @@ A big thanks to the 24 contributors who made this release possible. Here are som
5858
6390
  - [docs] Fix duplicated styles generated from emotion (#23809) @mnajdova
5859
6391
  - [docs] Fix icon alignment in /components/breadcrumbs (#23818) @eps1lon
5860
6392
  - [docs] Fix production deploy (#23963) @eps1lon
5861
- - [docs] Fix source on Github links (#23821) @praveenkumar-kalidass
6393
+ - [docs] Fix source on GitHub links (#23821) @praveenkumar-kalidass
5862
6394
  - [docs] Fix StickyHeaderTable round borders (#23882) @antoniopacheco
5863
6395
  - [docs] Fix typo in date picker dayjs adapter name (#23935) @andresmrm
5864
6396
  - [docs] Improve system properties page (#23961) @mnajdova
package/index.js CHANGED
@@ -1,4 +1,4 @@
1
- /** @license MUI v5.8.0
1
+ /** @license MUI v5.9.0
2
2
  *
3
3
  * This source code is licensed under the MIT license found in the
4
4
  * LICENSE file in the root directory of this source tree.
package/legacy/index.js CHANGED
@@ -1,4 +1,4 @@
1
- /** @license MUI v5.8.0
1
+ /** @license MUI v5.9.0
2
2
  *
3
3
  * This source code is licensed under the MIT license found in the
4
4
  * LICENSE file in the root directory of this source tree.
package/modern/index.js CHANGED
@@ -1,4 +1,4 @@
1
- /** @license MUI v5.8.0
1
+ /** @license MUI v5.9.0
2
2
  *
3
3
  * This source code is licensed under the MIT license found in the
4
4
  * LICENSE file in the root directory of this source tree.
package/node/index.js CHANGED
@@ -1,4 +1,4 @@
1
- /** @license MUI v5.8.0
1
+ /** @license MUI v5.9.0
2
2
  *
3
3
  * This source code is licensed under the MIT license found in the
4
4
  * LICENSE file in the root directory of this source tree.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mui/private-theming",
3
- "version": "5.8.0",
3
+ "version": "5.9.0",
4
4
  "private": false,
5
5
  "author": "MUI Team",
6
6
  "description": "Private - The React theme context to be shared between `@mui/styles` and `@mui/material`.",
@@ -36,7 +36,7 @@
36
36
  },
37
37
  "dependencies": {
38
38
  "@babel/runtime": "^7.17.2",
39
- "@mui/utils": "^5.8.0",
39
+ "@mui/utils": "^5.9.0",
40
40
  "prop-types": "^15.8.1"
41
41
  },
42
42
  "sideEffects": false,