@mui/styled-engine 5.11.16 → 5.12.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,318 @@
1
1
  # [Versions](https://mui.com/versions/)
2
2
 
3
+ ## 5.12.3
4
+
5
+ <!-- generated comparing v5.12.2..master -->
6
+
7
+ _May 2, 2023_
8
+
9
+ A big thanks to the 18 contributors who made this release possible. Here are some highlights ✨:
10
+
11
+ - all planned breaking changes for Base UI are done. The first beta release should come next week 🎉
12
+ - 🐛 bug fixes and 📚 documentation improvements.
13
+
14
+ ### `@mui/material@5.12.3`
15
+
16
+ - &#8203;<!-- 43 -->[Accordion] Add missing `component` type (#37111) @sai6855
17
+ - &#8203;<!-- 23 -->[ButtonGroup] Should not retain divider color when it is disabled and variant is `text` (#36967) @DavidBoyer11
18
+ - &#8203;<!-- 21 -->[Divider] Fix styles on dividers with text (#35072) @maxdestors
19
+ - &#8203;<!-- 04 -->[TextField] Improve IntelliSense support for props (#36737) @sai6855
20
+ - &#8203;<!-- 03 -->[TextField] Fix running click event on disabled (#36892) @sai6855
21
+
22
+ ### `@mui/joy@5.0.0-alpha.78`
23
+
24
+ - &#8203;<!-- 09 -->[Joy] Miscellaneous fixes and docs improvement (#37026) @siriwatknp
25
+
26
+ ### `@mui/base@5.0.0-alpha.128`
27
+
28
+ #### Breaking changes
29
+
30
+ - The `component` prop is no longer supported because it can be replaced with the slots API. This is how the transformation will look like:
31
+
32
+ ```diff
33
+ <Button
34
+ - component="span"
35
+ + slots={{ root: "span" }}
36
+ />
37
+ ```
38
+
39
+ If using TypeScript, the custom component type should be added as a generic on the `Button` component.
40
+
41
+ ```diff
42
+ -<Button
43
+ +<Button<typeof CustomComponent>
44
+ slots={{ root: CustomComponent }}
45
+ customProp="foo"
46
+ />
47
+ ```
48
+
49
+ There is codemod that you can run in your project to do the transformation:
50
+
51
+ ```sh
52
+ npx @mui/codemod v5.0.0/base-remove-component-prop <path>
53
+ ```
54
+
55
+ The full documentation about the codemod can be found [here](https://github.com/mui/material-ui/blob/master/packages/mui-codemod/README.md#base-remove-component-prop).
56
+
57
+ This is the list of PR related to this change:
58
+
59
+ - &#8203;<!-- 40 -->[Button][base] Drop `component` prop (#36677) @mnajdova
60
+ - &#8203;<!-- 42 -->[Badge][base] Drop `component` prop (#37028) @hbjORbj
61
+ - &#8203;<!-- 37 -->[FormControl][base] Drop component prop (#37031) @hbjORbj
62
+ - &#8203;<!-- 35 -->[Input][base] Drop component prop (#37057) @hbjORbj
63
+ - &#8203;<!-- 34 -->[Menu][base] Drop component prop (#37033) @hbjORbj
64
+ - &#8203;<!-- 33 -->[MenuItem][base] Drop component prop (#37032) @hbjORbj
65
+ - &#8203;<!-- 32 -->[Modal][base] Drop component prop (#37058) @hbjORbj
66
+ - &#8203;<!-- 31 -->[Option][base] Drop component prop (#37052) @hbjORbj
67
+ - &#8203;<!-- 30 -->[OptionGroup][base] Drop component prop (#37055) @hbjORbj
68
+ - &#8203;<!-- 31 -->[Popper][base] Drop component prop (#37084) @hbjORbj
69
+ - &#8203;<!-- 29 -->[Select][base] Drop component prop (#37035) @hbjORbj
70
+ - &#8203;<!-- 28 -->[Slider][base] Drop component prop (#37056) @hbjORbj
71
+ - &#8203;<!-- 27 -->[Snackbar][base] Drop component prop (#37041) @nicolas-ot
72
+ - &#8203;<!-- 26 -->[Switch][base] Drop component prop (#37053) @hbjORbj
73
+ - &#8203;<!-- 25 -->[Tab][base] Drop component prop (#36768) @sai6855
74
+ - &#8203;<!-- 24 -->[Tabs][base] Drop component prop (#36770) @sai6855
75
+ - &#8203;<!-- 08 -->[TablePagination][base] Drop component prop (#37059) @sai6855
76
+ - &#8203;<!-- 07 -->[TabPanel][base] Drop component prop (#37054) @sai6855
77
+ - &#8203;<!-- 06 -->[TabsList][base] Drop component prop (#37042) @sai6855
78
+
79
+ - &#8203;<!-- 41 -->[base] Improve API consistency (#36970) @michaldudak
80
+
81
+ Brought consistency to Base UI components and hooks' parameters and return values:
82
+
83
+ 1. Whenever a hook needs a ref, it's now called `<slot_name>Ref`, which matches the `get<slot_name>Props` in the return value.
84
+ 2. All hooks that accept external refs now return merged refs, making combining multiple hooks on one element easier. This was proven necessary in several compound components (like menuItem being both a button and a list item). The type of this value is `React.RefCallback` as using the more general `React.Ref` caused variance issues.
85
+ 3. Type of accepted refs is standardized to `React.Ref<Element>`
86
+ 4. Naming and typing of the forwarded ref in unstyled components were standardized - it's forwardedRef: React.ForwardedRef<Element> (unless a more specific type is needed).
87
+ 5. The shape of the definition of unstyled components was standardized - it's React.forwardRef(function Component(props: Props, forwardedRef: React.Ref<Element>) { ... });. Specifically, the generic parameters of forwardRef were removed as they are specified in function arguments.
88
+
89
+ #### Changes
90
+
91
+ - &#8203;<!-- 36 -->[FormControl][base] Do not use optional fields in useFormControlContext's return value (#37037) @michaldudak
92
+
93
+ ### Docs
94
+
95
+ - &#8203;<!-- 39 -->[base][docs] Add Base UI Quickstart Guide (#36717) @mj12albert
96
+ - &#8203;<!-- 20 -->[docs] Fix Material UI's API linking to Base UI (#37121) @mnajdova
97
+ - &#8203;<!-- 19 -->[docs] Fix pagination in the DataGrid demo (#37114) @cherniavskii
98
+ - &#8203;<!-- 18 -->[docs] Add notification to the release of the new Time Picker UI (#37065) @joserodolfofreitas
99
+ - &#8203;<!-- 17 -->[docs] Specify "Material UI" (not "MUI") where appropriate throughout the docs (#37066) @samuelsycamore
100
+ - &#8203;<!-- 16 -->[docs] Use focus-visible instead of focus for Menu demos (#36847) @michaldudak
101
+ - &#8203;<!-- 15 -->[docs] Fix small regressions API pages (#36972) @oliviertassinari
102
+ - &#8203;<!-- 14 -->[docs] Handle a few docs-feedback (#36977) @oliviertassinari
103
+ - &#8203;<!-- 13 -->[docs] Fix anchor link in customization (#37004) @oliviertassinari
104
+ - &#8203;<!-- 12 -->[docs] Add a note about minimal required version for theme merging to the guides (#36973) @jakub-stastny
105
+ - &#8203;<!-- 11 -->[docs] smooth scrolling added for `back to top` (#37011) @PunitSoniME
106
+ - &#8203;<!-- 10 -->[docs] Remove `useFormControl` return values from demos page (#37036) @ZeeshanTamboli
107
+ - &#8203;<!-- 47 --> [docs][base] Move styles to the bottom of demos code for `SwitchUnstyled` (#36720) @varunmulay22
108
+ - &#8203;<!-- 46 --> [docs][base] Move styles to the bottom of demos code for `InputUnstyled` (#36724) @varunmulay22
109
+ - &#8203;<!-- 45 --> [docs][base] Move styles to the bottom of demos code for `SliderUnstyled` (#36721) @varunmulay22
110
+ - &#8203;<!-- 44 --> [docs][base] Move styles to the bottom of demos code for `Snackbar` (#36719) @varunmulay22
111
+ - &#8203;<!-- 38 -->[docs][base] Move styles to the bottom of demos code for `SelectUnstyled` (#36718) @varunmulay22
112
+ - &#8203;<!-- 05 -->[templates] Image not displayed in blog layout of React template. (#36991) @navedqb
113
+ - &#8203;<!-- 02 -->[website] Take the design role offline @oliviertassinari
114
+ - &#8203;<!-- 01 -->[website] Fix URL convention @oliviertassinari
115
+ - &#8203;<!-- 21 -->[docs] Turn off job banner on docs (#36080) @joserodolfofreitas
116
+
117
+ ### Core
118
+
119
+ - &#8203;<!-- 22 -->[core] Allow type alias as well in hooks API docs generation (#37034) @ZeeshanTamboli
120
+
121
+ All contributors of this release in alphabetical order: @cherniavskii, @DavidBoyer11, @hbjORbj, @jakub-stastny, @joserodolfofreitas, @maxdestors, @michaldudak, @mj12albert, @mnajdova, @navedqb, @nicolas-ot, @oliviertassinari, @PunitSoniME, @sai6855, @samuelsycamore, @siriwatknp, @varunmulay22, @ZeeshanTamboli
122
+
123
+ ## 5.12.2
124
+
125
+ <!-- generated comparing v5.12.1..master -->
126
+
127
+ _Apr 25, 2023_
128
+
129
+ A big thanks to the 12 contributors who made this release possible. Here are some highlights ✨:
130
+
131
+ - ⚠️ **[BREAKING CHANGE]** The `Unstyled` suffix has been removed from Base UI component names, including names of types and other related identifiers – a codemod script is provided to assist with the change.
132
+ - 🐛 bug fixes and 📚 documentation improvements.
133
+
134
+ ### `@mui/material@5.12.2`
135
+
136
+ - &#8203;<!-- 10 -->[FormControl] Fix `filled` when value is set through `inputProps` (#36741) @sai6855
137
+ - &#8203;<!-- 07 -->[Slider] `onChange` handler should be called only when value has changed (#36706) @gitstart
138
+ - &#8203;<!-- 06 -->[Table] Fix `Sorting & Selecting` tables (#36898) @oliviertassinari
139
+
140
+ ### `@mui/base@5.0.0-alpha.127`
141
+
142
+ #### Breaking changes
143
+
144
+ - &#8203;<!-- 27 -->[base] Remove unstyled suffix from Base components + Codemod script (#36873) @hbjORbj
145
+
146
+ The `Unstyled` suffix has been removed from all Base UI component names, including names of types and other related identifiers.
147
+
148
+ You can use this [codemod](https://github.com/mui/material-ui/blob/master/packages/mui-codemod/src/v5.0.0/base-remove-unstyled-suffix.js) to help with the migration:
149
+
150
+ ```sh
151
+ npx @mui/codemod v5.0.0/base-remove-unstyled-suffix <path>
152
+ ```
153
+
154
+ #### Changes
155
+
156
+ - &#8203;<!-- 26 -->[codemod][base] Improve the removal of `component` prop codemod script (#36952) @hbjORbj
157
+ - &#8203;<!-- 25 -->[codemod][base] Write a migration script for removal of `component` prop from components (#36831) @hbjORbj
158
+ - &#8203;<!-- 24 -->[Base][useButton] Allow useButton params to be completely optional (#36922) @mj12albert
159
+
160
+ ### `@mui/joy@5.0.0-alpha.77`
161
+
162
+ - &#8203;<!-- 23 -->[Joy][Chip] Chip button not showing up in Firefox browser (#36930) @TakhyunKim
163
+ - &#8203;<!-- 09 -->[Joy] Add `invertedColors` to Menu and Alert (#36975) @siriwatknp
164
+ - &#8203;<!-- 08 -->[joy][Select] Set focus visible on select options when navigating with arrow keys (#36689) @gitstart
165
+
166
+ ### Docs
167
+
168
+ - &#8203;<!-- 21 -->[docs] Fix console error introduced by #36408 (#36980) @alexfauquette
169
+ - &#8203;<!-- 20 -->[docs] Add stray Joy UI documentation improvements (#36921) @danilo-leal
170
+ - &#8203;<!-- 19 -->[docs] Add Joy profile dashboard template (#36931) @siriwatknp
171
+ - &#8203;<!-- 18 -->[docs] Fix 404 links (#36969) @oliviertassinari
172
+ - &#8203;<!-- 17 -->[docs] Clarify when bundle size optimization is needed (#36823) @oliviertassinari
173
+ - &#8203;<!-- 16 -->[docs] Fix Chakra UI theme scoping typo (#36950) @mj12albert
174
+ - &#8203;<!-- 15 -->[docs] Add snackbar example using sonner (#36926) @PupoSDC
175
+ - &#8203;<!-- 14 -->[docs] Adjust the Material Icons page design and formatting (#36937) @danilo-leal
176
+ - &#8203;<!-- 13 -->[docs] Allows to customize menu with any icon (#36408) @alexfauquette
177
+ - &#8203;<!-- 12 -->[docs] Add info about passing ref to input element (#36913) @tomaskebrle
178
+ - &#8203;<!-- 11 -->[docs][material] Tabs API section cleanup (#36942) @mnajdova
179
+
180
+ ### Core
181
+
182
+ - &#8203;<!-- 22 -->[core] Fix CI failure on `master` (#37016) @hbjORbj
183
+ - &#8203;<!-- 05 -->[typescript] Add the missing explicit component return types (#36924) @michaldudak
184
+ - &#8203;<!-- 04 -->[website] Update main data grid demo on X landing page (#37001) @cherniavskii
185
+ - &#8203;<!-- 03 -->[website] Design role updates (#36997) @danilo-leal
186
+ - &#8203;<!-- 02 -->[website] X component section improvements (#36598) @danilo-leal
187
+ - &#8203;<!-- 01 -->[website] Developer Advocate role filled @oliviertassinari
188
+
189
+ All contributors of this release in alphabetical order: @alexfauquette, @cherniavskii, @danilo-leal, @gitstart, @hbjORbj, @michaldudak, @mj12albert, @mnajdova, @oliviertassinari, @PupoSDC, @sai6855, @siriwatknp, @TakhyunKim, @tomaskebrle
190
+
191
+ ## 5.12.1
192
+
193
+ <!-- generated comparing v5.12.0..master -->
194
+
195
+ _Apr 17, 2023_
196
+
197
+ A big thanks to the 16 contributors who made this release possible. This release was mostly about 🐛 bug fixes and 📚 documentation improvements.
198
+
199
+ ### `@mui/material@5.12.1`
200
+
201
+ - &#8203;<!-- 24 -->[Autocomplete] Fix autocomplete left padding (#36649) @mj12albert
202
+ - &#8203;<!-- 17 -->[Button] Fix contained with inherit prop not adapting on dark mode (#34508) @jesrodri
203
+ - &#8203;<!-- 07 -->[FormControlLabel] Add `required` prop (#34207) @emlai
204
+ - &#8203;<!-- 04 -->[Tabs] Fix null reference in ScrollbarSize after unmounting (#36485) @rkdrnf
205
+ - &#8203;<!-- 03 -->[TextField] Fix type error when using `inputTypeSearch` class for `outlined` and `filled` inputs (#36740) @sai6855
206
+ - &#8203;<!-- 02 -->[ThemeProvider] Fix theme proptypes (#36852) @siriwatknp
207
+
208
+ ### `@mui/system@5.12.1`
209
+
210
+ #### Breaking changes
211
+
212
+ - &#8203;<!-- 06 -->[Grid2] Replace context with `cloneElement` (#36399) @siriwatknp
213
+
214
+ `Grid2` now uses `React.cloneElement` instead of React context for passing the spacing and columns to the next container. The change is close to how CSS flexbox behaves.
215
+
216
+ #### Changes
217
+
218
+ - &#8203;<!-- 14 -->[CssVarsProvider] Always generate new `css` object (#36853) @siriwatknp
219
+
220
+ ### `@mui/base@5.0.0-alpha.126`
221
+
222
+ #### Breaking changes
223
+
224
+ - &#8203;<!-- 23 -->[base] Refactor the compound components building blocks (#36400) @michaldudak
225
+ Components affected by the changes are:
226
+ - Menu
227
+ - `MenuUnstyledContext` is replaced by `MenuProvider`. The value to pass to the provider is returned by the `useMenu` hook.
228
+ - MenuUnstyled's `onClose` prop is replaced by `onOpenChange`. It has the `open` parameter and is called when a menu is opened or closed
229
+ - Select
230
+ - `SelectUnstyledContext` is replaced by `SelectProvider`. The value to pass to the provider is returned by the `useSelect` hook.
231
+ - `SelectUnstyled`'s popup is permanently mounted.
232
+ - The `defaultOpen` prop was added to the SelectUnstyled. The open/close state can now be controlled or uncontrolled, as a `value`.
233
+ - Tabs
234
+ - `TabsContext` is replaced by `TabsProvider`. The value to pass to the provider is returned by the `useTabs` hook.
235
+ - To deselect all tabs, pass in `null` to Tabs' `value` prop, instead of `false`. This is consistent with how Select works.
236
+ - The `value` prop is still technically not mandatory on TabUnstyled and TabPanel, but when omitted, the contents of the selected tab panel will not be rendered during SSR.
237
+
238
+ ### `@mui/joy@5.0.0-alpha.76`
239
+
240
+ - &#8203;<!-- 05 -->[Table][Joy] Replace uses of css selector `*-child` to `*-of-type` (#36839) @keyvanm
241
+
242
+ ### Docs
243
+
244
+ - &#8203;<!-- 25 --> [docs][base] Move styles to the bottom of demos code for `BadgeUnstyled` (#36723) @varunmulay22
245
+ - &#8203;<!-- 22 -->[docs][base] Mention that the hook does not accept any parameters in the `Parameters` section of the API docs (#36773) @ZeeshanTamboli
246
+ - &#8203;<!-- 21 -->[docs][base] Move styles to the bottom of demos code for `ModalUnstyled` (#36580) @gitstart
247
+ - &#8203;<!-- 20 -->[docs][base] Move styles to the bottom of demos code for `Tabs` (#36577) @gitstart
248
+ - &#8203;<!-- 19 -->[docs][base] Move styles to the bottom of demos code for `Popper` (#36578) @gitstart
249
+ - &#8203;<!-- 18 -->[docs][base] Move styles to the bottom of demos code for `TablePagination` (#36593) @gitstart
250
+ - &#8203;<!-- 13 -->[docs] Remove the incorrect info about useButton's ref parameter (#36883) @michaldudak
251
+ - &#8203;<!-- 12 -->[docs] Sync <Stack> between projects (#36785) @oliviertassinari
252
+ - &#8203;<!-- 11 -->[docs] Add guides to overriding component structure in Base UI and Joy UI docs (#34990) @samuelsycamore
253
+ - &#8203;<!-- 10 -->[docs] Content changed from 'row' to 'orientation=horizontal' (#36858) @navedqb
254
+ - &#8203;<!-- 09 -->[docs][Joy] `component`, `slots`, `slotProps` must be visible in Prop table in API docs (#36666) @hbjORbj
255
+ - &#8203;<!-- 08 -->[docs][Select] Fix duplicate ID in small size Select demo (#36792) @sai6855
256
+
257
+ ### Core
258
+
259
+ - &#8203;<!-- 16 -->[core] Use glob to find the test files in parseTest (#36305) @flaviendelangle
260
+ - &#8203;<!-- 15 -->[core] Fix minor SEO issues @oliviertassinari
261
+ - &#8203;<!-- 01 -->[website] Fix visual bug appbar (#36875) @oliviertassinari
262
+
263
+ All contributors of this release in alphabetical order: @emlai, @flaviendelangle, @gitstart, @hbjORbj, @jesrodri, @keyvanm, @michaldudak, @mj12albert, @navedqb, @oliviertassinari, @rkdrnf, @sai6855, @samuelsycamore, @siriwatknp, @varunmulay22, @ZeeshanTamboli
264
+
265
+ ## 5.12.0
266
+
267
+ <!-- generated comparing v5.11.16..master -->
268
+
269
+ _Apr 11, 2023_
270
+
271
+ A big thanks to the 9 contributors who made this release possible. Here are some highlights ✨:
272
+
273
+ - 💫 Added [theme scope](https://mui.com/material-ui/guides/styled-engine/#theme-scoping) for using multiple design systems (#36664) @siriwatknp
274
+ - 🐛 bug fixes and 📚 documentation improvements.
275
+
276
+ ### `@mui/system@5.12.0`
277
+
278
+ - &#8203;<!-- 05 -->[system] Introduce theme scope for using multiple design systems (#36664) @siriwatknp
279
+
280
+ ### `@mui/base@5.0.0-alpha.125`
281
+
282
+ - &#8203;<!-- 06 -->[PopperUnstyled] Do not merge internal `ownerState` with `ownerState` from props (#36599) @hbjORbj
283
+
284
+ ### `@mui/joy@5.0.0-alpha.75`
285
+
286
+ - &#8203;<!-- 08 -->[Joy] Add tests for slots/slotProps for all components (#36828) @hbjORbj
287
+ - &#8203;<!-- 07 -->[Joy] Support `slots`/`slotsProps` for every component (components with only root slot too) (#36540) @hbjORbj
288
+
289
+ ### Docs
290
+
291
+ - &#8203;<!-- 23 -->[docs][Backdrop] Improvements to the docs (#34244) @alirezahekmati
292
+ - &#8203;<!-- 20 -->[docs] Fix base API redirects (#36833) @mnajdova
293
+ - &#8203;<!-- 19 -->[docs] Improve perf on tab APIs (#36832) @mnajdova
294
+ - &#8203;<!-- 18 -->[docs] Revert CircularProgress component text to be proper noun instead (#36837) @ZeeshanTamboli
295
+ - &#8203;<!-- 17 -->[docs] Simplify language redirection @oliviertassinari
296
+ - &#8203;<!-- 16 -->[docs] Add missing `readOnly` state class in the list (#36788) @ZeeshanTamboli
297
+ - &#8203;<!-- 15 -->[docs] Improve side nav scroll into view (#36732) @oliviertassinari
298
+ - &#8203;<!-- 14 -->[docs][base & joy] Display "Classes" Section in API docs (#36589) @hbjORbj
299
+ - &#8203;<!-- 13 -->[docs] Fix 100+ typos throughout the Material UI docs (#36194) @Lioness100
300
+ - &#8203;<!-- 12 -->[docs] Change "coming soon" chip color (#36786) @danilo-leal
301
+ - &#8203;<!-- 11 -->[docs][Joy] Fix wrong prop descriptions (#36826) @hbjORbj
302
+ - &#8203;<!-- 10 -->[docs][material] Highlight global state classes in CSS table in API docs (#36633) @hbjORbj
303
+ - &#8203;<!-- 09 -->[examples] Fix `SliderUnstyled` slots `key` name (#36830) @sai6855
304
+ - &#8203;<!-- 04 -->[Tabs] Improve useTab() API page (#36725) @oliviertassinari
305
+
306
+ ### Core
307
+
308
+ - &#8203;<!-- 22 -->[core] Increase margin to scroll @oliviertassinari
309
+ - &#8203;<!-- 21 -->[core] Replace MUI Base with Base UI (#36716) @mnajdova
310
+ - &#8203;<!-- 03 -->[website] Fix broken career website links @oliviertassinari
311
+ - &#8203;<!-- 02 -->[website] Fix backlinks to homepage (#36801) @oliviertassinari
312
+ - &#8203;<!-- 01 -->[website] Tweaks to the Designer position ad (#36771) @danilo-leal
313
+
314
+ All contributors of this release in alphabetical order: @alirezahekmati, @danilo-leal, @hbjORbj, @Lioness100, @mnajdova, @oliviertassinari, @sai6855, @siriwatknp, @ZeeshanTamboli
315
+
3
316
  ## 5.11.16
4
317
 
5
318
  <!-- generated comparing v5.11.15..master -->
@@ -190,12 +503,12 @@ _Mar 14, 2023_
190
503
 
191
504
  A big thanks to the 13 contributors who made this release possible. Here are some highlights ✨:
192
505
 
193
- - @michaldudak added an option for [disabling the generation](https://mui.com/base/getting-started/customization/#disabling-default-css-classes) of the default classes in MUI Base (#35963)
506
+ - @michaldudak added an option for [disabling the generation](https://mui.com/base/getting-started/customization/#disabling-default-css-classes) of the default classes in Base UI (#35963)
194
507
  - other 🐛 bug fixes and 📚 documentation improvements.
195
508
 
196
509
  ### `@mui/material@5.11.13`
197
510
 
198
- - &#8203;<!-- 13 -->[core] Bump MUI Base's version in Material UI (#36492) @hbjORbj
511
+ - &#8203;<!-- 13 -->[core] Bump Base UI's version in Material UI (#36492) @hbjORbj
199
512
  - &#8203;<!-- 17 -->[material] Export `shouldSkipGeneratingVar` from Material UI (#36489) @siriwatknp
200
513
  - &#8203;<!-- 06 -->[Typography] Apply font properties to typography inherit variant (#33621) @oyar99
201
514
 
@@ -345,7 +658,7 @@ A big thanks to the 17 contributors who made this release possible. Here are som
345
658
  - &#8203;<!-- 23 -->[docs] Add instructions for deploying docs without a release (#36301) @cherniavskii
346
659
  - &#8203;<!-- 22 -->[docs] Fix 301 redirections on the docs @oliviertassinari
347
660
  - &#8203;<!-- 21 -->[docs] Update MUI X banner to reflect stable release (#36354) @MBilalShafi
348
- - &#8203;<!-- 20 -->[docs] Clarify the future plan for integrating MUI Base in Material UI (#36365) @mnajdova
661
+ - &#8203;<!-- 20 -->[docs] Clarify the future plan for integrating Base UI in Material UI (#36365) @mnajdova
349
662
  - &#8203;<!-- 19 -->[docs] Improve visual look of loose lists (#36190) @oliviertassinari
350
663
  - &#8203;<!-- 18 -->[docs] Fix @mui/styles example links (#36331) @oliviertassinari
351
664
  - &#8203;<!-- 17 -->[docs][joy] Build TS versions for List component demos (#36382) @sai6855
@@ -375,7 +688,7 @@ _Feb 27, 2023_
375
688
 
376
689
  A big thanks to the 15 contributors who made this release possible. Here are some highlights ✨:
377
690
 
378
- - 📚 added API documentation for the slots in MUI Base and Joy UI by @hbjORbj, for e.g. [SliderUnstyled API](https://mui.com/base/api/slider-unstyled/#slots)
691
+ - 📚 added API documentation for the slots in Base UI and Joy UI by @hbjORbj, for e.g. [SliderUnstyled API](https://mui.com/base/api/slider-unstyled/#slots)
379
692
  - other 🐛 bug fixes and 📚 documentation improvements.
380
693
 
381
694
  ### `@mui/material@5.11.11`
@@ -612,7 +925,7 @@ A big thanks to the 14 contributors who made this release possible. Here are som
612
925
  - &#8203;<!-- 16 -->[docs] Improve inline preview's information (#35974) @oliviertassinari
613
926
  - &#8203;<!-- 15 -->[docs] Fix wrong v5 migration instructions (#36022) @oliviertassinari
614
927
  - &#8203;<!-- 14 -->[docs] Fix autocomplete render group key warning in the demo (#36025) @chuanyu0201
615
- - &#8203;<!-- 13 -->[docs] Add hooks API pages for MUI Base (#35828) @mnajdova
928
+ - &#8203;<!-- 13 -->[docs] Add hooks API pages for Base UI (#35828) @mnajdova
616
929
  - &#8203;<!-- 12 -->[docs] Fix grammar typo (#36016) @alexownejazayeri
617
930
  - &#8203;<!-- 11 -->[docs][joy] Add JSDoc for the `AutocompleteProps` type (#36039) @ArthurPedroti
618
931
 
@@ -828,7 +1141,7 @@ This release was mostly about 🐛 bug fixes and 📚 documentation improvements
828
1141
 
829
1142
  - [docs] Improve pickers lab migration stressing `mui-x` usage (#35740) @LukasTy
830
1143
  - [docs] Fix incorrectly named AccessibleTable demo component (#35832) @HeVictor
831
- - [docs] Clarify where to find docs for MUI Base components in Material UI (#35799) @samuelsycamore
1144
+ - [docs] Clarify where to find docs for Base UI components in Material UI (#35799) @samuelsycamore
832
1145
  - [docs] Fix typos (#35814) @alexfauquette
833
1146
  - [docs] Revise and expand the Joy UI Card page (#35745) @samuelsycamore
834
1147
  - [docs] Fix navigation layout shift (#35679) @oliviertassinari
@@ -939,7 +1252,7 @@ _Dec 26, 2022_
939
1252
 
940
1253
  A big thanks to the 20 contributors who made this release possible. Here are some highlights ✨:
941
1254
 
942
- - ⚙️ Several MUI Base components were converted to TypeScript by @trizotti, @leventdeniz and @danhuynhdev (#35005, #34793, #34771)
1255
+ - ⚙️ Several Base UI components were converted to TypeScript by @trizotti, @leventdeniz and @danhuynhdev (#35005, #34793, #34771)
943
1256
  - Many other 🐛 bug fixes abd 📚 documentation improvements.
944
1257
 
945
1258
  ### `@mui/material@5.11.2`
@@ -1116,7 +1429,7 @@ A big thanks to the 19 contributors who made this release possible. Here are som
1116
1429
  - [docs] Refactor `ToggleButtonSizes` demo (#35375) @Armanio
1117
1430
  - [docs] Standardize the usage of callouts in the MUI Core docs (#35361) @samuelsycamore
1118
1431
  - [docs] Format feedback to add a link to the commented section (#35381) @alexfauquette
1119
- - [docs] Direct users from Material UI to MUI Base for duplicated components (#35293) @samuelsycamore
1432
+ - [docs] Direct users from Material UI to Base UI for duplicated components (#35293) @samuelsycamore
1120
1433
  - [docs] Fix typo in FormControl API docs (#35449) @Spanishiwa
1121
1434
  - [docs] Update callouts design (#35390) @danilo-leal
1122
1435
  - [website] New wave of open roles (#35240) @mnajdova
@@ -1191,7 +1504,7 @@ A big thanks to the 15 contributors who made this release possible. Here are som
1191
1504
  - &#8203;<!-- 14 -->[docs] Improve the autogenerated "Unstyled" and "API" text (#35185) @samuelsycamore
1192
1505
  - &#8203;<!-- 13 -->[docs] Fix ad margin on API pages (#35201) @oliviertassinari
1193
1506
  - &#8203;<!-- 12 -->[docs] Revise and expand the Joy UI "Badge" page (#35199) @samuelsycamore
1194
- - &#8203;<!-- 11 -->[docs] Update MUI Base docs with latest style conventions (#35034) @samuelsycamore
1507
+ - &#8203;<!-- 11 -->[docs] Update Base UI docs with latest style conventions (#35034) @samuelsycamore
1195
1508
  - &#8203;<!-- 09 -->[l10n] Improve Chinese (Taiwan) zh-TW locale (#35328) @happyincent
1196
1509
  - &#8203;<!-- 02 -->[website] Update MUI stats: GitHub stars, Twitter followers, etc. (#35318) @nomandhoni-cs
1197
1510
 
@@ -1524,7 +1837,7 @@ _Oct 25, 2022_
1524
1837
 
1525
1838
  A big thanks to the 10 contributors who made this release possible. Here are some highlights ✨:
1526
1839
 
1527
- - 🔧 Moved `components` to `slots` prop starting at MUI Base to create consistency across products
1840
+ - 🔧 Moved `components` to `slots` prop starting at Base UI to create consistency across products
1528
1841
  - Many other 🐛 bug fixes, 📚 documentation, and ⚙️ infrastructure improvements
1529
1842
 
1530
1843
  ### `@mui/material@5.10.11`
@@ -1606,7 +1919,7 @@ A big thanks to the 21 contributors who made this release possible. Here are som
1606
1919
 
1607
1920
  - 🖌 Thanks to the efforts of @bharatkashyap and @nihgwu, we now have editable demos across our docs (#34454)!
1608
1921
  - 🚀 The Tooltip component has been added to Joy UI by @hbjORbj (#34509).
1609
- - ⚙️ We started converting the remaining JS components in MUI Base to TypeScript.
1922
+ - ⚙️ We started converting the remaining JS components in Base UI to TypeScript.
1610
1923
  @mbayucot finished the first PR with the conversion of the NoSsr code (#34735).
1611
1924
  - And more 🐛 bug fixes and 📚 documentation improvements.
1612
1925
 
@@ -1737,7 +2050,7 @@ _Oct 3, 2022_
1737
2050
 
1738
2051
  A big thanks to the 18 contributors who made this release possible. Here are some highlights ✨:
1739
2052
 
1740
- - 🚀 [SnackbarUnstyled](https://mui.com/base/react-snackbar/) component & headless hook are added to MUI Base (#33227) @ZeeshanTamboli
2053
+ - 🚀 [SnackbarUnstyled](https://mui.com/base/react-snackbar/) component & headless hook are added to Base UI (#33227) @ZeeshanTamboli
1741
2054
  - 📚 [CSS variables documentation](https://mui.com/material-ui/experimental-api/css-theme-variables/overview/) for Material UI has been added by @siriwatknp (#33958)
1742
2055
  - And more 🐛 bug fixes and 📚 documentation improvements.
1743
2056
 
@@ -1839,7 +2152,7 @@ A big thanks to the 21 contributors who made this release possible. Here are som
1839
2152
 
1840
2153
  ### Docs
1841
2154
 
1842
- - [blog] MUI Base announcement typo fixed (#34409) @prakhargupta1
2155
+ - [blog] Base UI announcement typo fixed (#34409) @prakhargupta1
1843
2156
  - [blog] Fix typo in date-pickers v5 stable (#34386) @alexfauquette
1844
2157
  - [blog] Update date on date pickers v5 release blog post (#34406) @joserodolfofreitas
1845
2158
  - [docs] Update `useMenu` and `useMenuItem` hooks demo (#34166) @ZeeshanTamboli
@@ -1925,7 +2238,7 @@ This release was mostly about 🐛 bug fixes and 📚 documentation improvements
1925
2238
  - [docs] Fix 301 link to external projects @oliviertassinari
1926
2239
  - [docs] Move 12 component names to Title Case (#34188) @oliviertassinari
1927
2240
  - [docs] Fix broken links (#34320) @alexfauquette
1928
- - [docs] Add notification for MUI Base announcement post (#34295) @samuelsycamore
2241
+ - [docs] Add notification for Base UI announcement post (#34295) @samuelsycamore
1929
2242
  - [website] Fix MUI X subscribe email border style (#34330) @oliviertassinari
1930
2243
  - [website] Improve security header @oliviertassinari
1931
2244
 
@@ -1946,7 +2259,7 @@ _Sep 12, 2022_
1946
2259
 
1947
2260
  A big thanks to the 12 contributors who made this release possible. Here are some highlights ✨:
1948
2261
 
1949
- - 🚀 [Blog post](https://mui.com/blog/introducing-mui-base/) for announcing the release of the MUI Base package is out thanks to @michaldudak.
2262
+ - 🚀 [Blog post](https://mui.com/blog/introducing-mui-base/) for announcing the release of the Base UI package is out thanks to @michaldudak.
1950
2263
  - 🚀 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
1951
2264
  - And more 🐛 bug fixes and 📚 documentation improvements.
1952
2265
 
@@ -1969,7 +2282,7 @@ A big thanks to the 12 contributors who made this release possible. Here are som
1969
2282
 
1970
2283
  ### Docs
1971
2284
 
1972
- - &#8203;<!-- 16 -->[blog] Introducing MUI Base (#33778) @michaldudak
2285
+ - &#8203;<!-- 16 -->[blog] Introducing Base UI (#33778) @michaldudak
1973
2286
  - &#8203;<!-- 13 -->[docs] Fix spelling error (#34209) @ChrystianDeMatos
1974
2287
  - &#8203;<!-- 12 -->[docs] Improve link to the security policy (#34219) @oliviertassinari
1975
2288
  - &#8203;<!-- 11 -->[docs] Fix typo in Joy UI's `Usage` docs (#34200) @zillion504
@@ -2524,7 +2837,7 @@ A big thanks to the 19 contributors who made this release possible. Here are som
2524
2837
  - [docs] Add "refine" demo to showcase (#33240) @omeraplak
2525
2838
  - [docs] Add webpack alias for legacy utils package (#33376) @jgbae
2526
2839
  - [docs] Improve external link icons synonyms (#33257) @davidgarciab
2527
- - [examples] Update MUI Base with Tailwind CSS to use the latest versions of the dependencies (#33401) @mnajdova
2840
+ - [examples] Update Base UI with Tailwind CSS to use the latest versions of the dependencies (#33401) @mnajdova
2528
2841
  - [examples] Add MUI base example (#33154) @siriwatknp
2529
2842
 
2530
2843
  ### Core
@@ -2698,7 +3011,7 @@ A big thanks to the 14 contributors who made this release possible. Here are som
2698
3011
  - &#8203;<!-- 28 -->[blog] Update Blogpost to clear confusion on "no impact" disclaimer. (#33131) @joserodolfofreitas
2699
3012
  - &#8203;<!-- 27 -->[blog] Add post about v5 Migration guide update (#33063) @samuelsycamore
2700
3013
  - &#8203;<!-- 26 -->[blog] Fix display on Safari (#33102) @oliviertassinari
2701
- - &#8203;<!-- 18 -->[docs] Add guide on how to use MUI Base with Tailwind CSS (#33100) @mnajdova
3014
+ - &#8203;<!-- 18 -->[docs] Add guide on how to use Base UI with Tailwind CSS (#33100) @mnajdova
2702
3015
  - &#8203;<!-- 17 -->[docs] Improve Joy template UX (#33159) @siriwatknp
2703
3016
  - &#8203;<!-- 16 -->[docs] Update Shadow DOM guide (#33160) @cherniavskii
2704
3017
  - &#8203;<!-- 15 -->[docs] Fix SEO regressions (#33106) @oliviertassinari
@@ -2776,7 +3089,7 @@ A big thanks to the 24 contributors who made this release possible. Here are som
2776
3089
  - &#8203;<!-- 31 -->[docs] Move codesandbox to MUI org (#33122) @oliviertassinari
2777
3090
  - &#8203;<!-- 30 -->[docs] Add Shadow DOM guide (#33007) @cherniavskii
2778
3091
  - &#8203;<!-- 29 -->[docs] Fix typo in Material UI overview page (#33087) @oliviertassinari
2779
- - &#8203;<!-- 28 -->[docs] Miscellaneous fixes in `MUI Base` docs (#33091) @ZeeshanTamboli
3092
+ - &#8203;<!-- 28 -->[docs] Miscellaneous fixes in `Base UI` docs (#33091) @ZeeshanTamboli
2780
3093
  - &#8203;<!-- 27 -->[docs] Fix GitHub capitalization (#33071) @oliviertassinari
2781
3094
  - &#8203;<!-- 26 -->[docs] Fix a typo in `InputUnstyled` docs (#33077) @ZeeshanTamboli
2782
3095
  - &#8203;<!-- 25 -->[docs] Add notification for Joy blog post (#33059) @siriwatknp
@@ -3212,7 +3525,7 @@ A big thanks to the 13 contributors who made this release possible. Here are som
3212
3525
  - &#8203;<!-- 24 -->[docs] Base Button style revisions and final review (#32380) @samuelsycamore
3213
3526
  - &#8203;<!-- 23 -->[docs] Base NoSsr style revisions and final review (#32254) @samuelsycamore
3214
3527
  - &#8203;<!-- 22 -->[docs] Correctly capitalize Ctrl @oliviertassinari
3215
- - &#8203;<!-- 21 -->[docs] Fix styling in `Basic Popper` demo on the MUI Base docs (#32488) @ZeeshanTamboli
3528
+ - &#8203;<!-- 21 -->[docs] Fix styling in `Basic Popper` demo on the Base UI docs (#32488) @ZeeshanTamboli
3216
3529
  - &#8203;<!-- 20 -->[docs] Add "Overview" page to Base docs (#32310) @samuelsycamore
3217
3530
  - &#8203;<!-- 19 -->[docs] Add copy button to code block (#32390) @siriwatknp
3218
3531
  - &#8203;<!-- 18 -->[docs] Base Tabs style revisions and final review (#32423) @samuelsycamore
@@ -3466,7 +3779,7 @@ A big thanks to the 15 contributors who made this release possible. Here are som
3466
3779
 
3467
3780
  - &#8203;<!-- 28 -->[core] Update peer deps to support React 18 (#32063) @eps1lon
3468
3781
  - &#8203;<!-- 27 -->[core] Fix running docs:api on Windows (#32091) @michaldudak
3469
- - &#8203;<!-- 26 -->[core] Fix api build script for MUI Base (#32081) @siriwatknp
3782
+ - &#8203;<!-- 26 -->[core] Fix api build script for Base UI (#32081) @siriwatknp
3470
3783
 
3471
3784
  All contributors of this release in alphabetical order: @apeltop, @eps1lon, @flaviendelangle, @garronej, @ivan-ngchakming, @m4theushw, @MatthijsMud, @michaldudak, @mnajdova, @oliviertassinari, @psjishnu, @raigoinabox, @samuelsycamore, @siriwatknp, @TkaczykAdam
3472
3785
 
@@ -3693,7 +4006,7 @@ A big thanks to the 16 contributors who made this release possible. Here are som
3693
4006
 
3694
4007
  - &#8203;<!-- 24 -->[ClassNameGenerator] Prevent all `base` imports (#31297) @siriwatknp
3695
4008
 
3696
- `unstable_ClassNameGenerator` has been moved from `utils` to `className` folder to prevent all MUI Base module imports. If you use the module, please update the import as suggested in the diff below:
4009
+ `unstable_ClassNameGenerator` has been moved from `utils` to `className` folder to prevent all Base UI module imports. If you use the module, please update the import as suggested in the diff below:
3697
4010
 
3698
4011
  ```diff
3699
4012
  -import { unstable_ClassNameGenerator } from '@mui/material/utils';
@@ -17,5 +17,5 @@ export default function GlobalStyles(props) {
17
17
  }
18
18
  process.env.NODE_ENV !== "production" ? GlobalStyles.propTypes = {
19
19
  defaultTheme: PropTypes.object,
20
- styles: PropTypes.oneOfType([PropTypes.string, PropTypes.object, PropTypes.func])
20
+ styles: PropTypes.oneOfType([PropTypes.array, PropTypes.string, PropTypes.object, PropTypes.func])
21
21
  } : void 0;
package/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/styled-engine v5.11.16
2
+ * @mui/styled-engine v5.12.3
3
3
  *
4
4
  * @license MIT
5
5
  * This source code is licensed under the MIT license found in the
@@ -18,5 +18,5 @@ export default function GlobalStyles(props) {
18
18
  }
19
19
  process.env.NODE_ENV !== "production" ? GlobalStyles.propTypes = {
20
20
  defaultTheme: PropTypes.object,
21
- styles: PropTypes.oneOfType([PropTypes.string, PropTypes.object, PropTypes.func])
21
+ styles: PropTypes.oneOfType([PropTypes.array, PropTypes.string, PropTypes.object, PropTypes.func])
22
22
  } : void 0;
package/legacy/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/styled-engine v5.11.16
2
+ * @mui/styled-engine v5.12.3
3
3
  *
4
4
  * @license MIT
5
5
  * This source code is licensed under the MIT license found in the
@@ -17,5 +17,5 @@ export default function GlobalStyles(props) {
17
17
  }
18
18
  process.env.NODE_ENV !== "production" ? GlobalStyles.propTypes = {
19
19
  defaultTheme: PropTypes.object,
20
- styles: PropTypes.oneOfType([PropTypes.string, PropTypes.object, PropTypes.func])
20
+ styles: PropTypes.oneOfType([PropTypes.array, PropTypes.string, PropTypes.object, PropTypes.func])
21
21
  } : void 0;
package/modern/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/styled-engine v5.11.16
2
+ * @mui/styled-engine v5.12.3
3
3
  *
4
4
  * @license MIT
5
5
  * This source code is licensed under the MIT license found in the
@@ -26,5 +26,5 @@ function GlobalStyles(props) {
26
26
  }
27
27
  process.env.NODE_ENV !== "production" ? GlobalStyles.propTypes = {
28
28
  defaultTheme: _propTypes.default.object,
29
- styles: _propTypes.default.oneOfType([_propTypes.default.string, _propTypes.default.object, _propTypes.default.func])
29
+ styles: _propTypes.default.oneOfType([_propTypes.default.array, _propTypes.default.string, _propTypes.default.object, _propTypes.default.func])
30
30
  } : void 0;
package/node/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/styled-engine v5.11.16
2
+ * @mui/styled-engine v5.12.3
3
3
  *
4
4
  * @license MIT
5
5
  * This source code is licensed under the MIT license found in the
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mui/styled-engine",
3
- "version": "5.11.16",
3
+ "version": "5.12.3",
4
4
  "private": false,
5
5
  "author": "MUI Team",
6
6
  "description": "styled() API wrapper package for emotion.",
@@ -27,7 +27,7 @@
27
27
  },
28
28
  "dependencies": {
29
29
  "@babel/runtime": "^7.21.0",
30
- "@emotion/cache": "^11.10.5",
30
+ "@emotion/cache": "^11.10.8",
31
31
  "csstype": "^3.1.2",
32
32
  "prop-types": "^15.8.1"
33
33
  },