@mui/private-theming 5.9.3 → 5.10.6

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,414 @@
1
1
  # [Versions](https://mui.com/versions/)
2
2
 
3
+ ## 5.10.6
4
+
5
+ <!-- generated comparing v5.10.5..master -->
6
+
7
+ _Sep 19, 2022_
8
+
9
+ A big thanks to the 11 contributors who made this release possible.
10
+ This release was mostly about 🐛 bug fixes and 📚 documentation improvements.
11
+
12
+ ### `@mui/material@5.10.6`
13
+
14
+ - [TextField] Fix conflict with `Bootstrap` even when label is not defined (#34343) @ZeeshanTamboli
15
+
16
+ ### `@mui/joy@5.0.0-alpha.46`
17
+
18
+ #### Breaking changes
19
+
20
+ - [button][joy] Replace `start/endIcon` prop with `start/endDecorator` (#34288) @hbjORbj
21
+
22
+ **BREAKING CHANGE**: replace `start/endIcon` with `start/endDecorator`.
23
+
24
+ ```jsx
25
+ // before
26
+ <Button startIcon={...} endIcon={...} />
27
+
28
+ // after
29
+ <Button startDecorator={...} endDecorator={...} />
30
+ ```
31
+
32
+ #### Changes
33
+
34
+ - [Joy] Adjust the `Input` and `Textarea` styles (#34281) @siriwatknp
35
+ - [menu][joy] Set disablePortal default to false (#34283) @tomasz-sodzawiczny
36
+
37
+ ### `@mui/base@5.0.0-alpha.98`
38
+
39
+ #### Breaking changes
40
+
41
+ - [Select][base] Add event parameter to the onChange callback (#34158) @michaldudak
42
+
43
+ The SelectUnstyled and MultiSelectUnstyled `onChange` callbacks did not have event as the first parameter, leading to inconsistency with other components and native HTML elements.
44
+ This PR adds the event parameter as the first one and moves the newly selected value to the second position. Because of this, it's a breaking change.
45
+ This also affects Select from Joy UI.
46
+
47
+ ```jsx
48
+ // before
49
+ <SelectUnstyled onChange={(newValue) => { /* ... */ }} />
50
+
51
+ // after
52
+ <SelectUnstyled onChange={(event, newValue) => { /* ... */ }} />
53
+ ```
54
+
55
+ ### Docs
56
+
57
+ - [blog] The Date Pickers gets a stable v5 release (#34152) @alexfauquette
58
+ - [blog] Improve image handling (#34222) @oliviertassinari
59
+ - [blog] Correct 2021 survey data interpretation (#34291) @samuelsycamore
60
+ - [docs] Remove expired AospExtended showcase @oliviertassinari
61
+ - [docs] Link the OpenSSF Best Practices card (#34331) @oliviertassinari
62
+ - [docs] Fix 301 link to external projects @oliviertassinari
63
+ - [docs] Move 12 component names to Title Case (#34188) @oliviertassinari
64
+ - [docs] Fix broken links (#34320) @alexfauquette
65
+ - [docs] Add notification for MUI Base announcement post (#34295) @samuelsycamore
66
+ - [website] Fix MUI X subscribe email border style (#34330) @oliviertassinari
67
+ - [website] Improve security header @oliviertassinari
68
+
69
+ ### Core
70
+
71
+ - [core] Lock file maintenance (#34161) @renovate[bot]
72
+ - [core] Issue template: move reproduction steps to the top (#34279) @Janpot
73
+ - [core] Create shared Next.js baseline config (#34259) @oliviertassinari
74
+ - [core] In `typescript-to-proptypes`, respect the value pass to the generic (#34311) @flaviendelangle
75
+
76
+ All contributors of this release in alphabetical order: @alexfauquette, @flaviendelangle, @hbjORbj, @Janpot, @michaldudak, @oliviertassinari, @renovate[bot], @samuelsycamore, @siriwatknp, @tomasz-sodzawiczny, @ZeeshanTamboli
77
+
78
+ ## 5.10.5
79
+
80
+ <!-- generated comparing v5.10.4..master -->
81
+
82
+ _Sep 12, 2022_
83
+
84
+ A big thanks to the 12 contributors who made this release possible. Here are some highlights ✨:
85
+
86
+ - 🚀 [Blog post](https://mui.com/blog/introducing-mui-base/) for announcing the release of the MUI Base package is out thanks to @michaldudak.
87
+ - 🚀 Added [`Alert`](https://mui.com/joy-ui/react-alert/), [`Modal`](https://mui.com/joy-ui/react-modal/), [`ListSubheader`](https://mui.com/joy-ui/react-list-subheader/), [`FormControl`](https://mui.com/joy-ui/react-form-control/), [`CircularProgress`](https://mui.com/joy-ui/react-circular-progress/) components to Joy UI (#33859) @hbjORbj @siriwatknp
88
+ - And more 🐛 bug fixes and 📚 documentation improvements.
89
+
90
+ ### `@mui/material@5.10.5`
91
+
92
+ - &#8203;<!-- 05 -->[ListItemText] Fix variant mapping in `primaryTypography` (#33880) @iamxukai
93
+ - &#8203;<!-- 03 -->[Timeline] Add left and right aligned timeline demos in docs (#34156) @ZeeshanTamboli
94
+
95
+ ### `@mui/joy@5.0.0-alpha.45`
96
+
97
+ - &#8203;<!-- 20 -->[Joy UI] Add `CircularProgress` component (#33869) @hbjORbj
98
+ - &#8203;<!-- 19 -->[Joy UI] Add `FormControl` component (#34187) @siriwatknp
99
+ - &#8203;<!-- 18 -->[Joy UI] Add `ListSubheader` component (#34191) @siriwatknp
100
+ - &#8203;<!-- 17 -->[Joy UI] Add `Modal` component (#34043) @siriwatknp
101
+ - &#8203;<!-- 10 -->[Joy] Fix list value of false or 0 (zero) text is incorrectly grey (#34255) @kushagra010
102
+ - &#8203;<!-- 09 -->[Joy] Adjust typography decorator margin (#34257) @siriwatknp
103
+ - &#8203;<!-- 08 -->[Joy] Miscellaneous fixes (#34193) @siriwatknp
104
+ - &#8203;<!-- 07 -->[Radio][joy] Integrate with form control (#34277) @siriwatknp
105
+ - &#8203;<!-- 06 -->[Joy][textarea] Pass `textarea` props from `componentsProps` (#34223) @HexM7
106
+
107
+ ### Docs
108
+
109
+ - &#8203;<!-- 16 -->[blog] Introducing MUI Base (#33778) @michaldudak
110
+ - &#8203;<!-- 13 -->[docs] Fix spelling error (#34209) @ChrystianDeMatos
111
+ - &#8203;<!-- 12 -->[docs] Improve link to the security policy (#34219) @oliviertassinari
112
+ - &#8203;<!-- 11 -->[docs] Fix typo in Joy UI's `Usage` docs (#34200) @zillion504
113
+ - &#8203;<!-- 02 -->[website] Add Lukas to the about page (#34284) @LukasTy
114
+ - &#8203;<!-- 01 -->[website] Update diamond sponsor URL (#34256) @oliviertassinari
115
+
116
+ ### Core
117
+
118
+ - &#8203;<!-- 04 -->[test] Replace argos-cli with @argos-ci/core (#34178) @michaldudak
119
+ - &#8203;<!-- 15 -->[core] Create a script to generate codeowners (#34175) @michaldudak
120
+ - &#8203;<!-- 14 -->[core] Add RFC GH issue template (#33871) @bytasv
121
+
122
+ All contributors of this release in alphabetical order: @bytasv, @ChrystianDeMatos, @hbjORbj, @HexM7, @iamxukai, @kushagra010, @LukasTy, @michaldudak, @oliviertassinari, @siriwatknp, @ZeeshanTamboli, @zillion504
123
+
124
+ ## 5.10.4
125
+
126
+ <!-- generated comparing v5.10.3..master -->
127
+
128
+ _Sep 5, 2022_
129
+
130
+ A big thanks to the 11 contributors who made this release possible. Here are some highlights ✨:
131
+
132
+ - 🚀 Added [`Alert`](https://mui.com/joy-ui/react-alert/) component to Joy UI (#33859) @hbjORbj
133
+ - Many other 🐛 bug fixes, 📚 documentation, and ⚙️ infrastructure improvements
134
+
135
+ ### `@mui/material@5.10.4`
136
+
137
+ - &#8203;<!-- 22 -->[Avatar] Use structured / semantic markup for avatars and avatar groups (#33994) @paulschreiber
138
+ - &#8203;<!-- 05 -->[Steps] Use structured / semantic markup for steps and steppers (#34138) @paulschreiber
139
+
140
+ ### `@mui/joy@5.0.0-alpha.44`
141
+
142
+ - &#8203;<!-- 23 -->[Alert][joy] Add `Alert` component (#33859) @hbjORbj
143
+ - &#8203;<!-- 08 -->[Joy] Make the description of `componentsProps` generic (#34140) @hbjORbj
144
+ - &#8203;<!-- 07 -->[Joy] Add tests / classes for `Breadcrumbs` component (#33860) @hbjORbj
145
+ - &#8203;<!-- 06 -->[Select][joy] Fix forwarding listbox `component` prop (#34172) @siriwatknp
146
+
147
+ ### `@mui/base@5.0.0-alpha.96`
148
+
149
+ - &#8203;<!-- 21 -->[Select][base] Fix type issues that appeared with TS 4.8 (#34132) @michaldudak
150
+
151
+ ### Docs
152
+
153
+ - &#8203;<!-- 15 -->[docs] Add `mui-color-input`, `mui-chips-input` and `mui-tel-input` into the related projects page (#34123) @viclafouch
154
+ - &#8203;<!-- 14 -->[docs] Update sponsors (#34157) @hbjORbj
155
+ - &#8203;<!-- 13 -->[docs] Move 5 component names to Title Case (#34118) @oliviertassinari
156
+ - &#8203;<!-- 12 -->[docs] Fix the color contrast on optional API methods (#34127) @oliviertassinari
157
+ - &#8203;<!-- 11 -->[docs] Fix crash due to using wrong variable (#34171) @siriwatknp
158
+ - &#8203;<!-- 10 -->[docs] Fix a few Base typos (#33986) @ropereraLK
159
+ - &#8203;<!-- 09 -->[docs] Revise Joy UI "Overview" page copy (#34087) @samuelsycamore
160
+ - &#8203;<!-- 20 -->[blog] Fix social cards (#34160) @oliviertassinari
161
+ - &#8203;<!-- 03 -->[website] Allow deep linking to sponsors @oliviertassinari
162
+ - &#8203;<!-- 02 -->[website] Update job descriptions (#34134) @DanailH
163
+ - &#8203;<!-- 01 -->[website] Link Toolpad landing page @oliviertassinari
164
+
165
+ ### Core
166
+
167
+ - &#8203;<!-- 19 -->[core] Move renovate config to the repository root (#34180) @oliviertassinari
168
+ - &#8203;<!-- 18 -->[core] Reinstate react/no-unused-prop-types eslint rule (#34125) @Janpot
169
+ - &#8203;<!-- 17 -->[core] Do not append `types` field to packages without index.d.ts (#33952) @michaldudak
170
+ - &#8203;<!-- 16 -->[core] Sanitize input in icon synonyms update script (#33989) @michaldudak
171
+ - &#8203;<!-- 04 -->[test] Allow to pass options to `mousePress` function (#34124) @cherniavskii
172
+
173
+ All contributors of this release in alphabetical order: @cherniavskii, @DanailH, @hbjORbj, @Janpot, @michaldudak, @oliviertassinari, @paulschreiber, @ropereraLK, @samuelsycamore, @siriwatknp, @viclafouch
174
+
175
+ ## 5.10.3
176
+
177
+ <!-- generated comparing v5.10.2..master -->
178
+
179
+ _Aug 29, 2022_
180
+
181
+ A big thanks to the 16 contributors who made this release possible. Here are some highlights ✨:
182
+
183
+ - ⚡ @mnajdova implemented an alternative to OverridableComponent to achieve better dev-time performance (#32735)
184
+ - Many other 🐛 bug fixes, 📚 documentation, and ⚙️ infrastructure improvements
185
+
186
+ ### `@mui/material@5.10.3`
187
+
188
+ - [Autocomplete][material] Fix value overflow when `disableClearable` is used (#34053) @mnajdova
189
+ - [Autocomplete] Update unstyled demo to not import Material UI (#34060) @oliviertassinari
190
+ - [Slider] Remove SliderInput export from d.ts (#34055) @pieetrus
191
+ - [TablePagination] Fix select variant not working (#33974) @ZeeshanTamboli
192
+
193
+ ### `@mui/system@5.10.3`
194
+
195
+ - [system] Fix mode blink when open multiple sessions (#33877) @siriwatknp
196
+
197
+ ### `@mui/base@5.0.0-alpha.95`
198
+
199
+ - [Button][base] Prevent too many ref updates (#33882) @michaldudak
200
+ - [Select][base] Fix typo in listbox blur event handler (#34120) @ZeeshanTamboli
201
+ - [TrapFocus] Improve tab test and simplify demo (#34008) @EthanStandel
202
+
203
+ ### `@mui/joy@5.0.0-alpha.43`
204
+
205
+ - [Joy] Fix `role` proptypes (#34119) @siriwatknp
206
+ - [Joy] Refine `componentsProps` for all components (#34077) @siriwatknp
207
+ - [Radio][joy] support `componentsProps` as a function (#34022) @siriwatknp
208
+ - [Select][joy] Improve the a11y on the select field demo (#34073) @mnajdova
209
+ - [Textarea][joy] Add `Textarea` component (#33975) @siriwatknp
210
+
211
+ ### Docs
212
+
213
+ - [blog] Add Grid v2 announcement (#33926) @siriwatknp
214
+ - [blog] Making customizable components (#33183) @alexfauquette
215
+ - [blog] Improve SEO metadata (#33954) @oliviertassinari
216
+ - [docs] Add introduction Base component demos & general uplift (#33896) @danilo-leal
217
+ - [docs] Fix Gatsby sample config in CSS variables (#34024) @bicstone
218
+ - [docs] Fix 404 link from Joy to React Router (#34115) @oliviertassinari
219
+ - [docs] Fix typo in `Select` component (#34091) @HexM7
220
+ - [docs] Fix 301 links to tss's docs @oliviertassinari
221
+ - [docs] Fixing Joy UI usage snippet (#34049) @JonathanAsbury-SPS
222
+ - [docs] Fix missing JSX closing tag in Tooltip docs (#34064) @hoangph271
223
+ - [website] Add Toolpad to Navigation (#33937) @bharatkashyap
224
+ - [website] Improve SEO meta description for MUI X @oliviertassinari
225
+ - [website] Improve visual look of code demos (#34070) @oliviertassinari
226
+ - [website] Fix `DatePicker` component demo on the home page (#34054) @NaveenPantra
227
+
228
+ ### Core
229
+
230
+ - [core] Offer alternative to `OverridableComponent` via module augmentation for better performance (#32735) @mnajdova
231
+ - [core] Fix prop-type warning in regression tests (#34086) @oliviertassinari
232
+ - [core] Specify code owners (#33995) @michaldudak
233
+ - [core] Fix scroll restoration (#34037) @oliviertassinari
234
+
235
+ All contributors of this release in alphabetical order: @alexfauquette, @bharatkashyap, @bicstone, @danilo-leal, @EthanStandel, @HexM7, @hoangph271, @JonathanAsbury-SPS, @michaldudak, @mnajdova, @NaveenPantra, @oliviertassinari, @pieetrus, @renovate[bot], @siriwatknp, @ZeeshanTamboli
236
+
237
+ ## 5.10.2
238
+
239
+ <!-- generated comparing v5.10.1..master -->
240
+
241
+ _Aug 22, 2022_
242
+
243
+ A big thanks to the 11 contributors who made this release possible. Here are some highlights ✨:
244
+
245
+ - ✨ @michaldudak synced the Material Icons set with the latest from Google (#33988).
246
+ A couple of icons changed their appearance. See the difference [on this Argos build](https://app.argos-ci.com/mui/material-ui/builds/4428]).
247
+
248
+ ### `@mui/material@5.10.2`
249
+
250
+ - &#8203;<!-- 16 -->[Autocomplete] Fix `keepMounted` Popper prop not working (#33957) @ZeeshanTamboli
251
+ - &#8203;<!-- 10 -->[IconButton] Fix hover effect when CSS Variables are enabled (#33971) @TheUnlocked
252
+ - &#8203;<!-- 07 -->[LoadingButton] Add support for CSS variables (#34001) @ZeeshanTamboli
253
+ - &#8203;<!-- 05 -->[TimelineConnector] Add support for CSS variables (#34002) @ZeeshanTamboli
254
+ - &#8203;<!-- 04 -->[TimelineDot] Add support for CSS variables (#34003) @ZeeshanTamboli
255
+ - &#8203;<!-- 03 -->[TreeItem] Add support for CSS variables (#34004) @ZeeshanTamboli
256
+
257
+ ### `@mui/system@5.10.2`
258
+
259
+ - &#8203;<!-- 06 -->[system] catch localStorage errors (#34027) @jsakas
260
+
261
+ ### `@mui/joy@5.0.0-alpha.42`
262
+
263
+ - &#8203;<!-- 08 -->[Joy] Add missing global exports (#33982) @tomasz-sodzawiczny
264
+
265
+ ### `@mui/icons-material@5.8.5`
266
+
267
+ - &#8203;<!-- 09 -->[icons] Sync the Material Icons (#33988) @michaldudak
268
+
269
+ ### Docs
270
+
271
+ - &#8203;<!-- 21 -->[docs] Fix typo in using-joy-ui-and-material-ui.md (#33997) @djohalo2 @danilo-leal
272
+ - &#8203;<!-- 20 -->[docs] Fix typo in the Transition docs (#34040) @alirezahekmati
273
+ - &#8203;<!-- 19 -->[docs] Typo fix in Joy UI Aspect Ratio doc (#33984) @AjeetSingh2016
274
+ - &#8203;<!-- 15 -->[docs] Fix broken Joy UI codesandbox export (#34007) @oliviertassinari
275
+ - &#8203;<!-- 14 -->[docs] Fix typos in `test` folder's README (#33976) @ropereraLK
276
+ - &#8203;<!-- 13 -->[docs] Fix interior section links in Base docs that feature hooks (#33948) @samuelsycamore
277
+ - &#8203;<!-- 12 -->[docs] Fix typo in Joy UI's List Component docs (#33956) @Cerebro92
278
+ - &#8203;<!-- 11 -->[docs] Fix typo in Joy UI's docs (#33938) @AjeetSingh2016
279
+
280
+ ### Core
281
+
282
+ - &#8203;<!-- 18 -->[website] Optimize meta description length (#34006) @oliviertassinari
283
+ - &#8203;<!-- 17 -->Revert "[core] Replace `getInitialProps` with `getStaticProps`" (#33991) @mnajdova
284
+ - &#8203;<!-- 02 -->[website] Move the React Engineer - X to next roles (#34030) @mnajdova
285
+ - &#8203;<!-- 01 -->[website] Add Icons8 gold sponsor (#33978) @michaldudak
286
+
287
+ All contributors of this release in alphabetical order: @AjeetSingh2016, @alirezahekmati, @Cerebro92, @danilo-leal, @djohalo2, @jsakas, @michaldudak, @mnajdova, @oliviertassinari, @ropereraLK, @samuelsycamore, @TheUnlocked, @tomasz-sodzawiczny, @ZeeshanTamboli
288
+
289
+ ## 5.10.1
290
+
291
+ <!-- generated comparing v5.10.0..master -->
292
+
293
+ _Aug 15, 2022_
294
+
295
+ A big thanks to the 18 contributors who made this release possible. This release was mostly around 🐛 bug fixes and 📚 documentation improvements.
296
+
297
+ ### `@mui/material@5.10.1`
298
+
299
+ - &#8203;<!-- 04 -->[TableCell] Enable variant overrides via TypeScript module augmentation (#33856) @arjunvijayanathakurup
300
+
301
+ ### `@mui/system@5.10.1`
302
+
303
+ - &#8203;<!-- 05 -->[system] Fix `ContainerProps` export (#33923) @bugzpodder
304
+
305
+ ### `@mui/base@5.0.0-alpha.93`
306
+
307
+ - &#8203;<!-- 31 -->[TrapFocus] Removes invisible tabbable elements from (#33543) @EthanStandel
308
+ - &#8203;<!-- 30 -->[Input][base] Pass the rows prop to the underlying textarea (#33873) @michaldudak
309
+ - &#8203;<!-- 06 -->[SelectUnstyled] Add ability to post the select's value when submitting a form (#33697) @michaldudak
310
+
311
+ ### `@mui/joy@5.0.0-alpha.41`
312
+
313
+ - &#8203;<!-- 07 -->[IconButton][joy] Fix large IconButton scaling (#33885) @cherewaty
314
+
315
+ ### Docs
316
+
317
+ - &#8203;<!-- 23 -->[docs] Expand on a11y section for Material UI `Link` component (#32839) @TKrishnasamy
318
+ - &#8203;<!-- 22 -->[docs] Fix typo in Joy UI's `AspectRatio` docs (#33895) @IsaacInsoll
319
+ - &#8203;<!-- 21 -->[docs] Improve the Base Usage page (#33272) @samuelsycamore
320
+ - &#8203;<!-- 20 -->[docs] Avoid refreshing the page when button on demo is clicked (#33852) @PunitSoniME
321
+ - &#8203;<!-- 19 -->[docs] Improve the HorizontalNonLinearStepper demo styling (#33886) @hayawata3626
322
+ - &#8203;<!-- 18 -->[docs] Remove dead NoSsr in the demos (#33910) @oliviertassinari
323
+ - &#8203;<!-- 17 -->[docs] Fix the reopening menu problem in MenuUnstyled demo (#33890) @michaldudak
324
+ - &#8203;<!-- 24 -->[docs] Fix a few link issues (#33909) @oliviertassinari
325
+ - &#8203;<!-- 16 -->[docs] Explain the icons package dependencies (#33592) @michaldudak
326
+ - &#8203;<!-- 15 -->[docs] Fix reported SEO issues (#33818) @oliviertassinari
327
+ - &#8203;<!-- 14 -->[docs] Add permanent notifications back (#33843) @oliviertassinari
328
+ - &#8203;<!-- 13 -->[docs] Enforce description for all pages (#33698) @oliviertassinari
329
+ - &#8203;<!-- 12 -->[docs] Clarify difference in startup times between named and default imports (#33109) @cmdcolin
330
+ - &#8203;<!-- 11 -->[docs] Update transform function in the sx prop sizing docs (#33850) @ZeeshanTamboli
331
+ - &#8203;<!-- 10 -->[docs] Adding missing accessibility labels (#33782) @PunitSoniME
332
+ - &#8203;<!-- 09 -->[docs] Fix `/system/getting-started/advanced/` does not exist (#33867) @MonstraG
333
+ - &#8203;<!-- 32 -->[docs] New Crowdin updates (#32213) @l10nbot
334
+ - &#8203;<!-- 08 -->[examples] Fix broken path to favicon.ico (#33906) @mmostafavi
335
+ - &#8203;<!-- 02 -->[website] Add new FAQ to pricing page (#33553) @oliviertassinari
336
+ - &#8203;<!-- 03 -->[website] Miscellaneous improvements to the marketing pages (#33897) @danilo-leal
337
+
338
+ ### Core
339
+
340
+ - &#8203;<!-- 29 -->[core] Add the download tracker package (#33899) @michaldudak
341
+ - &#8203;<!-- 28 -->[core] Use proper external build id for Argos uploads (#33929) @cherniavskii
342
+ - &#8203;<!-- 27 -->[core] Enforce 70 as the max width on the title on the docs (#33819) @oliviertassinari
343
+ - &#8203;<!-- 26 -->[core] Clear yarn installation warning (#33776) @michaldudak
344
+ - &#8203;<!-- 25 -->[core] Bump yarn to 1.22.19 (#33656) @michaldudak
345
+ - &#8203;<!-- 24 -->[core] Remove outdated Next.js options (#33845) @oliviertassinari
346
+ - &#8203;<!-- 34 -->[core] Add the download tracker build script (#33941) @michaldudak
347
+ - &#8203;<!-- 01 -->[website] Allow /r/store- redirection pattern @oliviertassinari
348
+
349
+ All contributors of this release in alphabetical order: @arjunvijayanathakurup, @bugzpodder, @cherewaty, @cherniavskii, @cmdcolin, @danilo-leal, @EthanStandel, @hayawata3626, @IsaacInsoll, @l10nbot, @michaldudak, @mmostafavi, @MonstraG, @oliviertassinari, @PunitSoniME, @samuelsycamore, @TKrishnasamy, @ZeeshanTamboli
350
+
351
+ ## 5.10.0
352
+
353
+ <!-- generated comparing v5.9.3..master -->
354
+
355
+ _Aug 8, 2022_
356
+
357
+ A big thanks to the 16 contributors who made this release possible. Here are some highlights ✨:
358
+
359
+ - ✨ [Stack](https://mui.com/system/react-stack/) component is added to MUI System and Joy UI #33760 #33800 @mnajdova
360
+ - ✨ [Breadcrumbs](https://mui.com/joy-ui/react-breadcrumbs/) component is added to Joy UI (#32697) @hbjORbj
361
+ - Many other 🐛 bug fixes, 📚 documentation, and ⚙️ infrastructure improvements
362
+
363
+ ### `@mui/material@5.10.0`
364
+
365
+ - [Grid] Prevent crash if spacing is set to zero in theme (#33777) @PunitSoniME
366
+ - [Grid] Export interface `RegularBreakpoints` to fix type error (#33751) @ZeeshanTamboli
367
+ - [Skeleton] Add `rounded` variant (#33687) @siriwatknp
368
+ - [Stepper] Fix classes for icon container (#33734) @pratikkarad
369
+ - [TableCell] Enable size prop overrides via module augmentation (#33816) @brentertz
370
+ - [Tooltip] Fix tooltip arrow css var background (#33753) @TimoWilhelm
371
+ - [useScrollTrigger] Add passive flag to scroll trigger event listener #32437 (#33749) @Dsalazar1685
372
+
373
+ ### `@mui/system@5.10.0`
374
+
375
+ - Fix unnecessary styles created from `sx` (#33752) @siriwatknp
376
+ - Fix duplicated styles in Box (#33774) @iamxukai
377
+ - Don't spread props to DOM for string tags (#33761) @siriwatknp
378
+ - Add `Stack` component (#33760) @mnajdova
379
+
380
+ ### `@mui/joy@5.0.0-alpha.40`
381
+
382
+ - [Stack] Add new component (#33800) @mnajdova
383
+ - [Breadcrumbs] Add `Breadcrumbs` component (#32697) @hbjORbj
384
+ - [Card] Fix wrong api description for `size` prop (#33862) @hbjORbj
385
+ - Miscellaneous fixes (#33796, #33750) @siriwatknp
386
+
387
+ ### Docs
388
+
389
+ - [docs] Create, revise, and expand System "Getting started" docs (#33503) @samuelsycamore
390
+ - [docs] Test new image best practice @oliviertassinari
391
+ - [docs] Fix typo in the ClickAwayListerner name (#33813) @pawelsmigielski
392
+ - [docs] Fix link to `Basics` section in `Trap Focus` docs (#33772) @ZeeshanTamboli
393
+ - [docs] z-index added in popper when used by split button (#33763) @PunitSoniME
394
+ - [docs] Improve the guide for using @mui/base with Tailwind CSS (#33670) @mnajdova
395
+ - [docs] Fix warnings related to Next.js' links (#33693) @mnajdova
396
+ - [docs] Add notification to aggregation blogpost (#33745) @joserodolfofreitas
397
+ - [docs] Add Grid version 2 docs (#33554) @siriwatknp
398
+ - [examples] Fix `NextLinkComposedProps` type error (#33842) @adham618
399
+
400
+ ### Core
401
+
402
+ - [blog] Add social card to Tenerife retreat post (#33764)
403
+ - [blog] Fix blue outline bug (#33707) @oliviertassinari
404
+ - [blog] Improve the width of the layout (#33706) @oliviertassinari@samuelsycamore
405
+ - [core] Remove unnecessary packageName attribute from pages (#33488) @cherniavskii
406
+ - [core] Remove duplicated CODE_OF_CONDUCT (#33702) @oliviertassinari
407
+ - [core] Update Playwright packages together (#33737) @michaldudak
408
+ - [website] Fix notifications not being marked as read in production (#33756) @cherniavskii
409
+
410
+ All contributors of this release in alphabetical order: @adham618, @brentertz, @cherniavskii, @Dsalazar1685, @hbjORbj, @iamxukai, @joserodolfofreitas, @michaldudak, @mnajdova, @oliviertassinari, @pawelsmigielski, @pratikkarad, @PunitSoniME, @siriwatknp, @TimoWilhelm, @ZeeshanTamboli
411
+
3
412
  ## 5.9.3
4
413
 
5
414
  <!-- generated comparing v5.9.2..master -->
@@ -6880,7 +7289,7 @@ A big thanks to the 34 contributors who made this release possible. Here are som
6880
7289
 
6881
7290
  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.
6882
7291
 
6883
- - 📚 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.
7292
+ - 📚 Revamp the documentation for [the system](https://mui.com/system/getting-started/overview/). 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.
6884
7293
  - 👩‍🎨 Upgrade emotion to v11 (#23007) @mnajdova.
6885
7294
  - And many more 🐛 bug fixes and 📚 improvements.
6886
7295
 
@@ -7282,7 +7691,7 @@ Here are some highlights ✨:
7282
7691
  If you target IE11, you need to use the new bundle (`legacy`). We are treating IE11 as a second class-citizen, which is a continuation of the direction taken in #22873.
7283
7692
 
7284
7693
  - 🚀 Improve the internal benchmark suite (#22923, #23058) @mnajdova.
7285
- This was a prerequisite step to improve the [system](https://mui.com/system/basics/). We needed to be able to measure performance. After #22945, we have measured that the `Box` component is x3 faster in v5-alpha compared to v4.
7694
+ This was a prerequisite step to improve the [system](https://mui.com/system/getting-started/overview/). We needed to be able to measure performance. After #22945, we have measured that the `Box` component is x3 faster in v5-alpha compared to v4.
7286
7695
  - ✏️ A new blog post: [Q3 2020 Update](https://mui.com/blog/2020-q3-update/) (#23055) @oliviertassinari.
7287
7696
  - 🐙 Migrate more tests to react-testing-library @deiga, @Morteza-Jenabzadeh, @nicholas-l.
7288
7697
  - And many more 🐛 bug fixes and 📚 improvements.
@@ -7623,7 +8032,7 @@ Here are some highlights ✨:
7623
8032
 
7624
8033
  The new styling solution saves 2kB gzipped in the bundle compared to JSS, and about 14 kB gzipped if you were already using emotion or styled-components.
7625
8034
 
7626
- 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/)).
8035
+ 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/getting-started/overview/)).
7627
8036
 
7628
8037
  This change has been in our roadmap for more than a year.
7629
8038
  We announced it in the [v4 release blog post](https://mui.com/blog/material-ui-v4-is-out/) as a direction v5 would take.
@@ -8876,7 +9285,7 @@ A big thanks to the 33 contributors who made this release possible. Here are som
8876
9285
  />
8877
9286
  ```
8878
9287
 
8879
- - [Typography] Replace the `srOnly` prop so as to not duplicate the capabilities of [System](https://mui.com/system/basics/) (#21413) @mnajdova.
9288
+ - [Typography] Replace the `srOnly` prop so as to not duplicate the capabilities of [System](https://mui.com/system/getting-started/overview/) (#21413) @mnajdova.
8880
9289
 
8881
9290
  ```diff
8882
9291
  -import Typography from '@material-ui/core/Typography';
package/index.js CHANGED
@@ -1,4 +1,4 @@
1
- /** @license MUI v5.9.3
1
+ /** @license MUI v5.10.6
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.9.3
1
+ /** @license MUI v5.10.6
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.9.3
1
+ /** @license MUI v5.10.6
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.9.3
1
+ /** @license MUI v5.10.6
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.9.3",
3
+ "version": "5.10.6",
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`.",
@@ -35,8 +35,8 @@
35
35
  }
36
36
  },
37
37
  "dependencies": {
38
- "@babel/runtime": "^7.17.2",
39
- "@mui/utils": "^5.9.3",
38
+ "@babel/runtime": "^7.19.0",
39
+ "@mui/utils": "^5.10.6",
40
40
  "prop-types": "^15.8.1"
41
41
  },
42
42
  "sideEffects": false,