@mui/styled-engine 5.11.0 → 5.11.8

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,489 @@
1
1
  # [Versions](https://mui.com/versions/)
2
2
 
3
+ ## 5.11.8
4
+
5
+ <!-- generated comparing v5.11.7..master -->
6
+
7
+ _Feb 7, 2023_
8
+
9
+ A big thanks to the 14 contributors who made this release possible. Here are some highlights ✨:
10
+
11
+ - @siriwatknp added a new [`Sign In` template](https://mui.com/joy-ui/getting-started/templates/sign-in-side/) to Joy UI (#36019)
12
+ - 📚 Documentation improvements and 🐛 bug fixes as usual
13
+
14
+ ### `@mui/material@5.11.8`
15
+
16
+ - &#8203;<!-- 10 -->[FormLabel] Export `FormLabelOwnProps` from `FormLabel` to fix type error (#36057) @yoskeoka
17
+
18
+ ### `@mui/joy@5.0.0-alpha.66`
19
+
20
+ - &#8203;<!-- 09 -->[Joy] Miscellaneous fixes (#36073) @siriwatknp
21
+ - &#8203;<!-- 08 -->[Joy] Add sign-in side template (#36019) @siriwatknp
22
+ - &#8203;<!-- 07 -->[Joy] Add missing `Table` export from root (#36010) @sai6855
23
+
24
+ ### `@mui/system@5.11.8`
25
+
26
+ - &#8203;<!-- 05 -->[System] Fix nested grid v2 (#35994) @siriwatknp
27
+
28
+ ### `@mui/styled-engine@5.11.1`
29
+
30
+ - &#8203;<!-- 06 -->[styled-engine] Create cache only if `document` is available (#36001) @m4theushw
31
+
32
+ ### Docs
33
+
34
+ - &#8203;<!-- 23 -->[blog] Fix dark mode support (#35969) @oliviertassinari
35
+ - &#8203;<!-- 19 -->[docs] Add banner pointing to "Whats new" in MUI X page (#36074) @joserodolfofreitas
36
+ - &#8203;<!-- 18 -->[docs] Revert unintended change @oliviertassinari
37
+ - &#8203;<!-- 17 -->[docs] [Joy] Fixed a typo in `customizing theme tokens` (#36067) @badalsaibo
38
+ - &#8203;<!-- 16 -->[docs] Improve inline preview's information (#35974) @oliviertassinari
39
+ - &#8203;<!-- 15 -->[docs] Fix wrong v5 migration instructions (#36022) @oliviertassinari
40
+ - &#8203;<!-- 14 -->[docs] Fix autocomplete render group key warning in the demo (#36025) @chuanyu0201
41
+ - &#8203;<!-- 13 -->[docs] Add hooks API pages for MUI Base (#35828) @mnajdova
42
+ - &#8203;<!-- 12 -->[docs] Fix grammar typo (#36016) @alexownejazayeri
43
+ - &#8203;<!-- 11 -->[docs][joy] Add JSDoc for the `AutocompleteProps` type (#36039) @ArthurPedroti
44
+
45
+ ### Core
46
+
47
+ - &#8203;<!-- 22 -->[core] Make it easier to find who is importing specific files (#35896) @oliviertassinari
48
+ - &#8203;<!-- 21 -->[core] Fix SEO redirections issues (#36041) @oliviertassinari
49
+ - &#8203;<!-- 20 -->[core] Fix a typo in the comment in setup test files (#36014) @ZeeshanTamboli
50
+ - &#8203;<!-- 04 -->[typescript] Explicitly define the component return types (#36013) @michaldudak
51
+ - &#8203;<!-- 03 -->[website] Fix layout shift (#36070) @oliviertassinari
52
+ - &#8203;<!-- 02 -->[website] Revise the Lead Designer role job ad (v1) (#36068) @oliviertassinari
53
+ - &#8203;<!-- 01 -->[website] Add Albert to the about page (#35954) @mj12albert
54
+
55
+ All contributors of this release in alphabetical order: @alexownejazayeri, @ArthurPedroti, @badalsaibo, @chuanyu0201, @joserodolfofreitas, @m4theushw, @michaldudak, @mj12albert, @mnajdova, @oliviertassinari, @sai6855, @siriwatknp, @yoskeoka, @ZeeshanTamboli
56
+
57
+ ## 5.11.7
58
+
59
+ <!-- generated comparing v5.11.6..master -->
60
+
61
+ _Jan 31, 2023_
62
+
63
+ A big thanks to the 15 contributors who made this release possible. Here are some highlights ✨:
64
+
65
+ - @siriwatknp added `Table` component to Joy UI (#35872)
66
+ - many other 🐛 bug fixes and 📚 documentation improvements
67
+
68
+ ### `@mui/material@5.11.7`
69
+
70
+ - &#8203;<!-- 30 -->[Autocomplete] Prevent reset scroll position when new options are added (#35735) @sai6855
71
+ - &#8203;<!-- 24 -->[CssVarsProvider] Skip `unstable_sxConfig` variables (#35932) @siriwatknp
72
+ - &#8203;<!-- 10 -->[InputLabel] Add missing `component` type (#35852) @sai6855
73
+ - &#8203;<!-- 05 -->[Tooltip] Fix tooltip position (#35909) @marktoman
74
+
75
+ ### `@mui/base@5.0.0-alpha.116`
76
+
77
+ - &#8203;<!-- 29 -->[ListboxUnstyled] Fix option state highlighted to prevent unnecessary focus (#35838) @SaidMarar
78
+
79
+ ### `@mui/joy@5.0.0-alpha.65`
80
+
81
+ #### Breaking changes
82
+
83
+ - &#8203;<!-- 05 -->[Joy] Replace `Joy[Component]` classname with `Mui[Component]` classname for all slots of components (#35718) @hbjORbj
84
+
85
+ - Renames the classname prefix of all Joy UI components from `'Joy'` to `'Mui'`.
86
+
87
+ ```diff
88
+ <Button
89
+ -sx={{ '& .JoyButton-root': { '& .JoyButton-button': {} } }}
90
+ +sx={{ '& .MuiButton-root': { '& .MuiButton-button': {} } }}
91
+ />
92
+ ```
93
+
94
+ You can use this [codemod](https://github.com/mui/material-ui/blob/master/packages/mui-codemod/README.md#joy-rename-classname-prefix) to help with the migration.
95
+
96
+ - &#8203;<!-- 04 -->[Joy] Replace `row` prop with `orientation` prop in all Joy UI components (#35721) @hbjORbj
97
+
98
+ - Transforms `row` prop to `orientation` prop across `Card`, `List` and `RadioGroup` components in Joy UI.
99
+
100
+ ```diff
101
+ <Card
102
+ -row
103
+ +orientation={"horizontal"}
104
+ />
105
+ ```
106
+
107
+ You can use this [codemod](https://github.com/mui/material-ui/blob/master/packages/mui-codemod/README.md#joy-rename-row-prop) to help with the migration.
108
+
109
+ #### Changes
110
+
111
+ - &#8203;<!-- 26 -->[Joy][Checkbox] Display correct icon in checkbox (#35943) @sai6855
112
+ - &#8203;<!-- 09 -->[Joy] Add `Table` component (#35872) @siriwatknp
113
+ - &#8203;<!-- 08 -->[Joy] Miscellaneous fixes (#35953) @siriwatknp
114
+
115
+ ### Docs
116
+
117
+ - &#8203;<!-- 28 -->[blog] Add RSS feed (#35777) @gorjiali
118
+ - &#8203;<!-- 27 -->[blog] Prevent horizontal scroll on blog posts (#35948) @oliviertassinari
119
+ - &#8203;<!-- 23 -->[docs] Add to codemod README about an added script (#35999) @hbjORbj
120
+ - &#8203;<!-- 22 -->[docs] Add a warning about to clear the local storage when `defaultMode` changes (#35937) @ArthurPedroti
121
+ - &#8203;<!-- 21 -->[docs] Fix Joy UI variables playground (#35950) @siriwatknp
122
+ - &#8203;<!-- 20 -->[docs] Fix typos in base components docs (#35985) @HeVictor
123
+ - &#8203;<!-- 19 -->[docs] Fix event's label reported to GA (#35930) @oliviertassinari
124
+ - &#8203;<!-- 18 -->[docs] Standardize "no longer" / "not documented" callouts in Material UI docs (#35957) @samuelsycamore
125
+ - &#8203;<!-- 17 -->[docs] Revise and expand Joy UI Checkbox doc (#35817) @samuelsycamore
126
+ - &#8203;<!-- 16 -->[docs] Add docs notification to Date and Time Pickers revamped (#35935) @joserodolfofreitas
127
+ - &#8203;<!-- 15 -->[docs] Update community theme builder to forked updated one (#35928) @idebeijer
128
+ - &#8203;<!-- 14 -->[docs] Add Joy default theme viewer (#35554) @siriwatknp
129
+ - &#8203;<!-- 13 -->[docs][joy] Fixed a typo in `Using icon libraries` page (#35989) @badalsaibo
130
+ - &#8203;<!-- 12 -->[docs][joy] Removed Badge info from Chip docs (#35955) @Vivek-Prajapatii
131
+ - &#8203;<!-- 11 -->[docs][system] Fix border color of Boxes in demos of `Configure the sx prop` page in dark mode (#35961) @ZeeshanTamboli
132
+
133
+ ### Core
134
+
135
+ - &#8203;<!-- 25 -->[core] Boolean props always have a default value of `false` in API docs (#35913) @hbjORbj
136
+ - &#8203;<!-- 04 -->[core] Improve types for usePreviousProps (#35833) @sai6855
137
+ - &#8203;<!-- 03 -->[website] Fix 404 link to store (#35973) @oliviertassinari
138
+ - &#8203;<!-- 02 -->[website] Fix 302 of diamond sponsor link @oliviertassinari
139
+ - &#8203;<!-- 01 -->[website] Fix outdated YouTube link @oliviertassinari
140
+
141
+ All contributors of this release in alphabetical order: @ArthurPedroti, @badalsaibo, @gorjiali, @hbjORbj, @HeVictor, @idebeijer, @joserodolfofreitas, @marktoman, @oliviertassinari, @sai6855, @SaidMarar, @samuelsycamore, @siriwatknp, @Vivek-Prajapatii, @ZeeshanTamboli
142
+
143
+ ## 5.11.6
144
+
145
+ <!-- generated comparing v5.11.5..master -->
146
+
147
+ _Jan 23, 2023_
148
+
149
+ A big thanks to the 13 contributors who made this release possible. Here are some highlights ✨:
150
+
151
+ - @ZeeshanTamboli improved the logic for handling the value label in the `SliderUnstyled` (#35805)
152
+ - many other 🐛 bug fixes and 📚 documentation improvements
153
+
154
+ ### `@mui/material@5.11.6`
155
+
156
+ - &#8203;<!-- 15 -->[Box] Fix usage of not supported features in TypeScript 3.5 (#35877) @mnajdova
157
+ - &#8203;<!-- 14 -->[Button] Fix border color for secondary disabled button (#35866) @SaidMarar
158
+ - &#8203;<!-- 03 -->[SwipeableDrawer] Add callback to customise touchstart ignore for swipeable drawer (#30759) @tech-meppem
159
+
160
+ ### `@mui/base@5.0.0-alpha.115`
161
+
162
+ #### Breaking changes
163
+
164
+ - &#8203;<!-- 04 -->[SliderUnstyled] Improved logic for displaying the value label (#35805) @ZeeshanTamboli
165
+
166
+ - The `valueLabelDisplay` prop is removed from `SliderUnstyled`. The prop was not working as intended in `SliderUnstyled` (See #35398). You can instead provide a `valueLabel` slot with the `slots` prop API to show the value label:
167
+
168
+ ```diff
169
+ - <SliderUnstyled valueLabelDisplay="on" />
170
+ + <SliderUnstyled slots={{ valueLabel: SliderValueLabel }} />
171
+ ```
172
+
173
+ The following demo shows how to show a value label when it is hovered over with the thumb: https://mui.com/base/react-slider/#value-label
174
+
175
+ - The following classes are removed from `sliderUnstyledClasses` since they are not needed for the value label:
176
+
177
+ ```diff
178
+ - valueLabel
179
+ - valueLabelOpen
180
+ - valueLabelCircle
181
+ - valueLabelLabel
182
+ ```
183
+
184
+ In the custom value label component, you can define your own classNames and target them with CSS.
185
+
186
+ - The `SliderValueLabelUnstyled` component is removed from SliderUnstyled. You should provide your own custom component for the value label.
187
+
188
+ - To avoid using `React.cloneElement` API in value label, the component hierarchy structure of the value label is changed. The value label is now inside the Thumb slot - `Thumb` -> `Input`, `ValueLabel`.
189
+
190
+ #### Changes
191
+
192
+ - &#8203;<!-- 05 -->[InputUnstyled] Fix externally provided `inputRef` is ignored (#35807) @sai6855
193
+
194
+ ### `@mui/joy@5.0.0-alpha.64`
195
+
196
+ - &#8203;<!-- 17 -->[Avatar][joy] Remove `imgProps` prop and add Codemod script for migration (#35859) @hbjORbj
197
+
198
+ ### Docs
199
+
200
+ - &#8203;<!-- 16 -->[blog] Date and time pickers revamped (#35486) @joserodolfofreitas
201
+ - &#8203;<!-- 10 -->[docs] Fix incorrect breakpoint use (#34948) @rosita-dmello
202
+ - &#8203;<!-- 09 -->[docs] Replace react-virtualized with react-virtuoso in Table (#35700) @petyosi
203
+ - &#8203;<!-- 08 -->[docs] Fix account menu demo not closing with keyboard. (#35870) @mj12albert
204
+ - &#8203;<!-- 07 -->[docs] Fix typos in the docs of Joy UI (#35876) @HeVictor
205
+ - &#8203;<!-- 06 -->[docs] Fix wording in `Color` page (#35873) @oliv37
206
+
207
+ ### Core
208
+
209
+ - &#8203;<!-- 13 -->[core] Fix release changelog to handle commits with empty author field (#35921) @mnajdova
210
+ - &#8203;<!-- 12 -->[core] Revert `docs-utilities` migration to TypeScript and fix type (#35881) @ZeeshanTamboli
211
+ - &#8203;<!-- 11 -->[core] Migrate internal `docs-utilities` package to TypeScript (#35846) @ZeeshanTamboli
212
+ - &#8203;<!-- 02 -->[website] Designer don't spend their time writing code @oliviertassinari
213
+ - &#8203;<!-- 01 -->[website] Emphasis the technical background need for this role @oliviertassinari
214
+
215
+ All contributors of this release in alphabetical order: @HeVictor, @hbjORbj, @joserodolfofreitas, @mj12albert, @mnajdova, @oliv37, @oliviertassinari, @petyosi, @rosita-dmello, @sai6855, @SaidMarar, @tech-meppem, @ZeeshanTamboli
216
+
217
+ ## 5.11.5
218
+
219
+ <!-- generated comparing v5.11.4..master -->
220
+
221
+ _Jan 17, 2023_
222
+
223
+ A big thanks to the 17 contributors who made this release possible.
224
+ This release was mostly about 🐛 bug fixes and 📚 documentation improvements.
225
+
226
+ ### `@mui/material@5.11.5`
227
+
228
+ - [Material UI] Custom channel token should suppress the warning (#35804) @siriwatknp
229
+ - [Autocomplete] Fix value type when `strictNullChecks` is `false` (#35367) @fenghan34
230
+ - [Slider] Replace `SliderUnstyled` with `useSlider` hook (#35770) @ZeeshanTamboli
231
+ - [l10n] Add Belarusian translation (#35742) @volhalink
232
+
233
+ ### `@mui/system@5.11.5`
234
+
235
+ - [system] Improve the `createBox` types (#35532) @mnajdova
236
+
237
+ ### `@mui/codemod@5.11.5`
238
+
239
+ - Add `joy-text-field-to-input` codemod (#35462) @hbjORbj
240
+
241
+ ### `@mui/base@5.0.0-alpha.114`
242
+
243
+ - [base] Fix typos (#35802) @nnmax
244
+ - [Slider] Convert code to TypeScript (#35445) @sai6855
245
+
246
+ ### `@mui/joy@5.0.0-alpha.63`
247
+
248
+ - [Tabs][joy] Don't apply `:hover, :active` styles when `selected` (#35750) @sai6855
249
+ - Remove `TextField` component and replace its usage in docs with `FormControl`/`FormLabel`/`Input` (#35462) @hbjORbj
250
+ - [TextField] Throw error with migration message (#35845) @siriwatknp
251
+ - Miscellaneous fixes (#35847) @siriwatknp
252
+
253
+ ### Docs
254
+
255
+ - [docs] Improve pickers lab migration stressing `mui-x` usage (#35740) @LukasTy
256
+ - [docs] Fix incorrectly named AccessibleTable demo component (#35832) @HeVictor
257
+ - [docs] Clarify where to find docs for MUI Base components in Material UI (#35799) @samuelsycamore
258
+ - [docs] Fix typos (#35814) @alexfauquette
259
+ - [docs] Revise and expand the Joy UI Card page (#35745) @samuelsycamore
260
+ - [docs] Fix navigation layout shift (#35679) @oliviertassinari
261
+ - [docs] Fix typo in the Composition page (#35774) @msoyka
262
+ - [docs][joy] Update Customization section code example to use the correct API (#35765) @pupudu
263
+ - [docs][joy] Fix grammar in `Typography` docs (#35796) @atrefonas
264
+ - [examples] Remove `next-env.d.ts` from Next.js examples (#35772) @Juneezee
265
+
266
+ ### Core
267
+
268
+ - [website] Improve pricing page (#35767) @oliviertassinari
269
+ - [website] Add Greg in about page (#35816) @oliviertassinari
270
+ - [website] Update the Accessibility Engineer role (#35751) @oliviertassinari
271
+ - [website] Add docs for MUI for Figma @oliviertassinari
272
+
273
+ All contributors of this release in alphabetical order: @alexfauquette, @atrefonas, @fenghan34, @hbjORbj, @HeVictor, @Juneezee, @LukasTy, @mnajdova, @msoyka, @nnmax, @oliviertassinari, @pupudu, @sai6855, @samuelsycamore, @siriwatknp, @volhalink, @ZeeshanTamboli
274
+
275
+ ## 5.11.4
276
+
277
+ <!-- generated comparing v5.11.3..master -->
278
+
279
+ _Jan 9, 2023_
280
+
281
+ A big thanks to the 14 contributors who made this release possible.
282
+ This release was mostly about 🐛 bug fixes and 📚 documentation improvements.
283
+
284
+ ### `@mui/material@5.11.4`
285
+
286
+ - [Autocomplete] Add index to renderOption's AutocompleteRenderOptionState (#35578) @CowDotDev
287
+ - [Autocomplete] Fix grammar in console.error in `useAutocomplete` (#35723) @hamirmahal
288
+ - [Modal] Fix can't override Backdrop Props using new Slots API (#35140) @ZeeshanTamboli
289
+ - [Select] Revert "Update `renderValue` prop's TypeScript type (#34177)" (#35733) @michaldudak
290
+ - [Tabs] Throw error only if individual `Tab` is hidden, not the whole `Tabs` (#34026) @Ryczko
291
+ - [TextField] Improve WCAG 2.4.7 with error={true} (#35687) @oliviertassinari
292
+ - [Tooltip] Remove `data-foo` attribute (#35736) @koolskateguy89
293
+
294
+ ### `@mui/joy@5.0.0-alpha.62`
295
+
296
+ - [Autocomplete][joy] Specify `type` attribute for popup indicator (#35648) @hbjORbj
297
+ - [Joy] Miscellaneous improvements (#35769) @siriwatknp
298
+ - [Joy] Improve `onKeyDown` event handler for demo (#35642) @hbjORbj
299
+
300
+ ### `@mui/base@5.0.0-alpha.113`
301
+
302
+ - [Portal][base] Convert code to TypeScript (#35657) @sai6855
303
+
304
+ ### Docs
305
+
306
+ - [docs] Revise and expand Joy UI Button doc (#35737) @samuelsycamore
307
+ - [docs] Document the workaround for crashing a translated page (#35720) @michaldudak
308
+ - [docs] Fix API page for `MenuItem` to list all valid props (#35561) @mnajdova
309
+ - [docs] Fix ad exception in Joy UI (#35685) @oliviertassinari
310
+ - [docs] Fix content wider than screen regression @oliviertassinari
311
+ - [examples] Add `Vite.js with TypeScript` example (#35683) @miha53cevic
312
+
313
+ ### Core
314
+
315
+ - [core] Close 2022 developer survey @oliviertassinari
316
+ - [core] Fix the product license reference name (#35703) @oliviertassinari
317
+ - [core] Use TypeScript AST instead of TTP for component doc building (#35379) @flaviendelangle
318
+ - [test] Always use & for nesting styles (#35702) @oliviertassinari
319
+ - [website] Improve Lead Designer role description (#35684) @oliviertassinari
320
+
321
+ All contributors of this release in alphabetical order: @CowDotDev, @flaviendelangle, @hamirmahal, @hbjORbj, @koolskateguy89, @michaldudak, @miha53cevic, @mnajdova, @oliviertassinari, @Ryczko, @sai6855, @samuelsycamore, @siriwatknp, @ZeeshanTamboli
322
+
323
+ ## 5.11.3
324
+
325
+ <!-- generated comparing v5.11.2..master -->
326
+
327
+ _Jan 2, 2023_
328
+
329
+ A big thanks to the 6 contributors who made this release possible.
330
+ This release was mostly about 🐛 bug fixes and 📚 documentation improvements.
331
+
332
+ ### `@mui/material@5.11.3`
333
+
334
+ - &#8203;<!-- 02 -->[Select] Update `renderValue` prop's TypeScript type (#34177) @ZeeshanTamboli
335
+
336
+ ### `@mui/joy@5.0.0-alpha.61`
337
+
338
+ - &#8203;<!-- 14 -->[Autocomplete][joy] Export component (#35647) @mbranch
339
+
340
+ ### Docs
341
+
342
+ - &#8203;<!-- 13 -->[blog] Fix handling of markdown links (#35628) @oliviertassinari
343
+ - &#8203;<!-- 09 -->[docs] Fix demo code selection through copy shortcut key on Firefox browser (#35670) @ZeeshanTamboli
344
+ - &#8203;<!-- 08 -->[docs] Fix layout shift when streaming the page (#35627) @oliviertassinari
345
+ - &#8203;<!-- 07 -->[docs] Fix switch name to reflect the color (#35052) @rjhcnf
346
+ - &#8203;<!-- 06 -->[docs] Fix anchor link in the card's docs and fix a typo (#35634) @ZeeshanTamboli
347
+ - &#8203;<!-- 05 -->[docs] Fix layout shift with modal (#35591) @oliviertassinari
348
+ - &#8203;<!-- 04 -->[Joy][docs] Add documentation for `Input` component (#35482) @hbjORbj
349
+ - &#8203;<!-- 03 -->[docs][joy] Improved readability on theme tokens page (#35639) @badalsaibo
350
+
351
+ ### Core
352
+
353
+ - &#8203;<!-- 12 -->[core] Disable prefetch of footer links @oliviertassinari
354
+ - &#8203;<!-- 11 -->[core] A few SEO fixes (#35672) @oliviertassinari
355
+ - &#8203;<!-- 10 -->[core] Remove need for scopePathnames (#35584) @oliviertassinari
356
+ - &#8203;<!-- 01 -->[test] Fix Algolia noisy lvl1 anchor (#35686) @oliviertassinari
357
+
358
+ All contributors of this release in alphabetical order: @badalsaibo, @hbjORbj, @mbranch, @oliviertassinari, @rjhcnf, @ZeeshanTamboli
359
+
360
+ ## 5.11.2
361
+
362
+ <!-- generated comparing v5.11.1..master -->
363
+
364
+ _Dec 26, 2022_
365
+
366
+ A big thanks to the 20 contributors who made this release possible. Here are some highlights ✨:
367
+
368
+ - ⚙️ Several MUI Base components were converted to TypeScript by @trizotti, @leventdeniz and @danhuynhdev (#35005, #34793, #34771)
369
+ - Many other 🐛 bug fixes abd 📚 documentation improvements.
370
+
371
+ ### `@mui/material@5.11.2`
372
+
373
+ - &#8203;<!-- 10 -->[l10n] Add displayed rows label to `faIR` locale (#35587) @hootan-rocky
374
+ - &#8203;<!-- 09 -->[l10n] Add Kurdish (Kurmanji) locale (#32508) @JagarYousef
375
+ - &#8203;<!-- 06 -->[Select] Accept non-component children (#33530) @boutahlilsoufiane
376
+ - &#8203;<!-- 05 -->[SelectInput] Update menu to use select wrapper as anchor (#34229) @EduardoSCosta
377
+ - &#8203;<!-- 03 -->[TableCell] Fix `scope` prop to be not set when a data cell is rendered within a table head (#35559) @sai6855
378
+
379
+ ### `@mui/utils@5.11.2`
380
+
381
+ - &#8203;<!-- 02 -->[utils] `mergedeep` deeply clones source key if it's an object (#35364) @sldk-yuri
382
+
383
+ ### `@mui/base@5.0.0-alpha.112`
384
+
385
+ - &#8203;<!-- 16 -->[FocusTrap][base] Convert code to TypeScript (#35005) @trizotti
386
+ - &#8203;<!-- 08 -->[Modal][base] Convert code to TypeScript (#34793) @leventdeniz
387
+ - &#8203;<!-- 07 -->[Popper][base] Convert code to TypeScript (#34771) @danhuynhdev
388
+ - &#8203;<!-- 04 -->[Slider] Exclude `isRtl` from Material UI's Slider props (#35564) @michaldudak
389
+
390
+ ### `@mui/joy@5.0.0-alpha.60`
391
+
392
+ - &#8203;<!-- 15 -->[Joy] Fix radius adjustment (#35629) @siriwatknp
393
+ - &#8203;<!-- 14 -->[Joy] Apply color inversion to components (#34602) @siriwatknp
394
+ - &#8203;<!-- 13 -->[Joy] Improve cursor pointer and add fallback for outlined variant (#35573) @siriwatknp
395
+ - &#8203;<!-- 12 -->[Joy] Miscellaneous fixes (#35552) @siriwatknp
396
+ - &#8203;<!-- 11 -->[Radio][joy] Use precise dimensions for radio icon (#35548) @hbjORbj
397
+
398
+ ### `@mui/material-next@6.0.0-alpha.68`
399
+
400
+ - &#8203;<!-- 36 -->[Material You] Update Button test & add active class name (#35497) @mnajdova
401
+
402
+ ### Docs
403
+
404
+ - &#8203;<!-- 35 -->[docs] Fix GoogleMaps demo (#35545) @hbjORbj
405
+ - &#8203;<!-- 25 -->[docs] Remove flow, its legacy (#35624) @oliviertassinari
406
+ - &#8203;<!-- 24 -->[docs] Add a guide on using icon libraries with Joy UI (#35377) @siriwatknp
407
+ - &#8203;<!-- 23 -->[docs] Clarify comment about `sortStability()` use case (#35570) @frontendlane
408
+ - &#8203;<!-- 22 -->[docs] Improve the experimental API demos on the button page (#35560) @mnajdova
409
+ - &#8203;<!-- 21 -->[docs] Force `light` theme mode when `activePage` is null (#35575) @LukasTy
410
+ - &#8203;<!-- 20 -->[docs] Fix ListItem button deprecated use (#33970) @MickaelAustoni
411
+ - &#8203;<!-- 19 -->[docs] Fix typo in `Progress` docs (#35553) @jasonsturges
412
+ - &#8203;<!-- 18 -->[docs] Remove empty tags on the TransferList demos (#33127) @ekusiadadus
413
+ - &#8203;<!-- 17 -->[docs][joy] Add documentation for `Stack` component (#35373) @hbjORbj
414
+ - &#8203;<!-- 35 -->[docs][joy] Add documentation for `Grid` component (#35374) @hbjORbj
415
+ - &#8203;<!-- 01 -->[website] Update sponsor grid (#35452) @danilo-leal
416
+
417
+ ### Core
418
+
419
+ - &#8203;<!-- 34 -->[core] Shorthand notation to remove outline (#35623) @oliviertassinari
420
+ - &#8203;<!-- 33 -->[core] Fix header link layout shift and clash (#35626) @oliviertassinari
421
+ - &#8203;<!-- 32 -->[core] Hide keyboard shortcut if no hover feature (#35625) @oliviertassinari
422
+ - &#8203;<!-- 31 -->[core] Fix confusing duplicated name in the log @oliviertassinari
423
+ - &#8203;<!-- 30 -->[core] Fix API demos callout spacing (#35579) @oliviertassinari
424
+ - &#8203;<!-- 29 -->[core] Fix a few title case (#35547) @oliviertassinari
425
+ - &#8203;<!-- 28 -->[core] Cleanup mention of test-utils (#35577) @oliviertassinari
426
+ - &#8203;<!-- 27 -->[core] Remove oudated pickers prop-type logic (#35571) @oliviertassinari
427
+ - &#8203;<!-- 26 -->[core] Exclude documentation of Base props not used in styled libraries (#35562) @michaldudak
428
+
429
+ All contributors of this release in alphabetical order: @boutahlilsoufiane, @danhuynhdev, @danilo-leal, @EduardoSCosta, @ekusiadadus, @frontendlane, @hbjORbj, @hootan-rocky, @JagarYousef, @jasonsturges, @leventdeniz, @LukasTy, @michaldudak, @MickaelAustoni, @mnajdova, @oliviertassinari, @sai6855, @siriwatknp, @sldk-yuri, @trizotti
430
+
431
+ ## 5.11.1
432
+
433
+ <!-- generated comparing v5.11.0..master -->
434
+
435
+ _Dec 20, 2022_
436
+
437
+ A big thanks to the 15 contributors who made this release possible. Here are some highlights ✨:
438
+
439
+ - 💅 @mnajdova added motion and shape design tokens to Material You package (#35384 and #35393).
440
+ - Many other 🐛 bug fixes, 📚 documentation, and ⚙️ infrastructure improvements.
441
+
442
+ ### `@mui/material@5.11.1`
443
+
444
+ - [Chip] Fix hover and focus style with CSS Variables (#35502) @DimaAbr
445
+ - [InputLabel] Enable `size` prop overrides via TypeScript module augmentation (#35460) @MickaelAustoni
446
+ - [l10n] Change Kazakh locale name to match ISO-639-1 codes (#34664) @talgautb
447
+ - [TextField] Fix error focus style (#35167) @42tte
448
+ - [core] Bring `experimental_sx` back with error code (#35528) @siriwatknp
449
+
450
+ ### `@mui/utils@5.11.1`
451
+
452
+ - [Theme] Merge components and slots props (#35477) @siriwatknp
453
+
454
+ ### `@mui/material-next@6.0.0-alpha.67`
455
+
456
+ - [Material You] Add motion design tokens (#35384) @mnajdova
457
+ - [Material You] Add shape design tokens (#35393) @mnajdova
458
+
459
+ ### `@mui/joy@5.0.0-alpha.59`
460
+
461
+ - [Tooltip] Fix arrow does not appear (#35473) @siriwatknp
462
+ - [Input] Fix autofill styles (#35056) @siriwatknp
463
+ - [ChipDelete] Add onDelete prop to ChipDelete (#35412) @sai6855
464
+
465
+ ### `@mui/base@5.0.0-alpha.111`
466
+
467
+ - [Button][base] Set active class when a subcomponent is clicked (#35410) @michaldudak
468
+ - [Popper][base] Fix Tooltip Anchor Element Setter (#35469) @sydneyjodon-wk
469
+
470
+ ### Docs
471
+
472
+ - [docs] Fixed the `Select` component `onChange` event type in the migration guide (#35509) @tzynwang
473
+ - [docs] Add missing comma to `Providing the colors directly` section (#35507) @cassidoo
474
+ - [docs] Add `CardMedia` example without `component="img"` prop (#35470) @lucasmfredmark
475
+ - [docs] Fix `unstable_sxConfig` typo (#35478) @siriwatknp
476
+ - [docs] List component introduction example default code is missing ListItemContent component (#35492) @Miigaarino
477
+ - [website] Close our first people role @oliviertassinari
478
+ - [website] Update product icons (#35413) @danilo-leal
479
+
480
+ ### Core
481
+
482
+ - [test] Terminate BrowserStack after 5 minutes (#35454) @oliviertassinari
483
+ - [test] Fix broken master branch (#35446) @oliviertassinari
484
+
485
+ All contributors of this release in alphabetical order: @42tte, @cassidoo, @danilo-leal, @DimaAbr, @lucasmfredmark, @michaldudak, @MickaelAustoni, @Miigaarino, @mnajdova, @oliviertassinari, @sai6855, @siriwatknp, @sydneyjodon-wk, @talgautb, @tzynwang
486
+
3
487
  ## 5.11.0
4
488
 
5
489
  <!-- generated comparing v5.10.17..master -->
@@ -6933,7 +7417,7 @@ A big thanks to the 26 contributors who made this release possible. Here are som
6933
7417
 
6934
7418
  ```diff
6935
7419
  -<Tabs />
6936
- +<Tabs indicatorColor="primary" textColor="inherit" />
7420
+ +<Tabs indicatorColor="secondary" textColor="inherit" />
6937
7421
  ```
6938
7422
 
6939
7423
  #### Changes
@@ -6,10 +6,13 @@ import createCache from '@emotion/cache';
6
6
  // prepend: true moves MUI styles to the top of the <head> so they're loaded first.
7
7
  // It allows developers to easily override MUI styles with other styling solutions, like CSS modules.
8
8
  import { jsx as _jsx } from "react/jsx-runtime";
9
- const cache = createCache({
10
- key: 'css',
11
- prepend: true
12
- });
9
+ let cache;
10
+ if (typeof document === 'object') {
11
+ cache = createCache({
12
+ key: 'css',
13
+ prepend: true
14
+ });
15
+ }
13
16
  export default function StyledEngineProvider(props) {
14
17
  const {
15
18
  injectFirst,
package/index.js CHANGED
@@ -1,5 +1,7 @@
1
- /** @license MUI v5.11.0
1
+ /**
2
+ * @mui/styled-engine v5.11.8
2
3
  *
4
+ * @license MIT
3
5
  * This source code is licensed under the MIT license found in the
4
6
  * LICENSE file in the root directory of this source tree.
5
7
  */
@@ -1,3 +1,4 @@
1
+ import _typeof from "@babel/runtime/helpers/esm/typeof";
1
2
  import * as React from 'react';
2
3
  import PropTypes from 'prop-types';
3
4
  import { CacheProvider } from '@emotion/react';
@@ -6,10 +7,13 @@ import createCache from '@emotion/cache';
6
7
  // prepend: true moves MUI styles to the top of the <head> so they're loaded first.
7
8
  // It allows developers to easily override MUI styles with other styling solutions, like CSS modules.
8
9
  import { jsx as _jsx } from "react/jsx-runtime";
9
- var cache = createCache({
10
- key: 'css',
11
- prepend: true
12
- });
10
+ var cache;
11
+ if ((typeof document === "undefined" ? "undefined" : _typeof(document)) === 'object') {
12
+ cache = createCache({
13
+ key: 'css',
14
+ prepend: true
15
+ });
16
+ }
13
17
  export default function StyledEngineProvider(props) {
14
18
  var injectFirst = props.injectFirst,
15
19
  children = props.children;
package/legacy/index.js CHANGED
@@ -1,5 +1,7 @@
1
- /** @license MUI v5.11.0
1
+ /**
2
+ * @mui/styled-engine v5.11.8
2
3
  *
4
+ * @license MIT
3
5
  * This source code is licensed under the MIT license found in the
4
6
  * LICENSE file in the root directory of this source tree.
5
7
  */
@@ -6,10 +6,13 @@ import createCache from '@emotion/cache';
6
6
  // prepend: true moves MUI styles to the top of the <head> so they're loaded first.
7
7
  // It allows developers to easily override MUI styles with other styling solutions, like CSS modules.
8
8
  import { jsx as _jsx } from "react/jsx-runtime";
9
- const cache = createCache({
10
- key: 'css',
11
- prepend: true
12
- });
9
+ let cache;
10
+ if (typeof document === 'object') {
11
+ cache = createCache({
12
+ key: 'css',
13
+ prepend: true
14
+ });
15
+ }
13
16
  export default function StyledEngineProvider(props) {
14
17
  const {
15
18
  injectFirst,
package/modern/index.js CHANGED
@@ -1,5 +1,7 @@
1
- /** @license MUI v5.11.0
1
+ /**
2
+ * @mui/styled-engine v5.11.8
2
3
  *
4
+ * @license MIT
3
5
  * This source code is licensed under the MIT license found in the
4
6
  * LICENSE file in the root directory of this source tree.
5
7
  */
@@ -14,10 +14,13 @@ function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "functio
14
14
  function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
15
15
  // prepend: true moves MUI styles to the top of the <head> so they're loaded first.
16
16
  // It allows developers to easily override MUI styles with other styling solutions, like CSS modules.
17
- const cache = (0, _cache.default)({
18
- key: 'css',
19
- prepend: true
20
- });
17
+ let cache;
18
+ if (typeof document === 'object') {
19
+ cache = (0, _cache.default)({
20
+ key: 'css',
21
+ prepend: true
22
+ });
23
+ }
21
24
  function StyledEngineProvider(props) {
22
25
  const {
23
26
  injectFirst,
package/node/index.js CHANGED
@@ -1,5 +1,7 @@
1
- /** @license MUI v5.11.0
1
+ /**
2
+ * @mui/styled-engine v5.11.8
2
3
  *
4
+ * @license MIT
3
5
  * This source code is licensed under the MIT license found in the
4
6
  * LICENSE file in the root directory of this source tree.
5
7
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mui/styled-engine",
3
- "version": "5.11.0",
3
+ "version": "5.11.8",
4
4
  "private": false,
5
5
  "author": "MUI Team",
6
6
  "description": "styled() API wrapper package for emotion.",
@@ -26,7 +26,7 @@
26
26
  "url": "https://opencollective.com/mui"
27
27
  },
28
28
  "dependencies": {
29
- "@babel/runtime": "^7.20.6",
29
+ "@babel/runtime": "^7.20.7",
30
30
  "@emotion/cache": "^11.10.5",
31
31
  "csstype": "^3.1.1",
32
32
  "prop-types": "^15.8.1"