@mui/private-theming 5.11.13 โ†’ 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,500 @@
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
+
316
+ ## 5.11.16
317
+
318
+ <!-- generated comparing v5.11.15..master -->
319
+
320
+ _Apr 4, 2023_
321
+
322
+ A big thanks to the 17 contributors who made this release possible. Here are some highlights โœจ:
323
+
324
+ - ๐Ÿ’… Added tabs on API pages of Base UI to switch between component and hook references (#35938) @mnajdova
325
+ - ๐Ÿ› bug fixes and ๐Ÿ“š documentation improvements.
326
+
327
+ ### `@mui/material@5.11.16`
328
+
329
+ - [Autocomplete] Listen for click on the root element (#36369) @sai6855
330
+ - [Autocomplete] Fix navigation issue on mouse hover (#35196) @sai6855
331
+ - [Card] Fix Card focus effect overflowing parent card (#36329) @mj12albert
332
+ - [Grid] Missing slot (#36765) @siriwatknp
333
+ - [Select] Make error part of the `ownerState` to enable overriding styles with it in theme (#36422) @gitstart
334
+ - [Slider] Fix ValueLabel UI issues comes when size="small" and orientation="vertical (#36738) @yushanwebdev
335
+
336
+ ### `@mui/icons-material@5.11.16`
337
+
338
+ - [icons] Do not ignore popular icons (#36608) @michaldudak
339
+
340
+ ### `@mui/joy@5.0.0-alpha.74`
341
+
342
+ - [Joy] Add `ModalOverflow` component (#36262) @siriwatknp
343
+ - [Joy] Fix `Checkbox` custom color prop type warning (#36691) @amal-qb
344
+
345
+ ### Docs
346
+
347
+ - [docs][base] Add return type for `useFormControlUnstyledContext` hook (#36302) @HeVictor
348
+ - [docs][base] Move styles to the bottom of demos code for `FormControl` (#36579) @gitstart
349
+ - [docs][base] Move styles to the bottom of demos code for `Menu` (#36582) @gitstart
350
+ - [docs][base] Move styles code to bottom in the `Button` demos (#36590) @sai6855
351
+ - [docs][base] Show components & hooks API on the components page (#35938) @mnajdova
352
+ - [docs] Describe slotProps in MUI Base customization doc (#36206) @michaldudak
353
+ - [docs] Fix double API page redirection (#36743) @oliviertassinari
354
+ - [docs] Remove hash property and leverage pathname (#36764) @siriwatknp
355
+ - [docs] Introduce markdown permalink to source (#36729) @oliviertassinari
356
+ - [docs] Tabs API add slots section (#36769) @mnajdova
357
+ - [docs] Update feedbacks management on slack (#36705) @alexfauquette
358
+ - [docs] Fix Joy UI URL to tokens (#36742) @oliviertassinari
359
+ - [docs] Add toggle-button coming soon page (#36618) @siriwatknp
360
+ - [docs] Fix typo on the Joy UI theme builder (#36734) @danilo-leal
361
+ - [docs] Fix small typo (#36727) @RBerthier
362
+ - [docs] Fix Joy UI template broken image loading @oliviertassinari
363
+ - [docs] Hide the default API column if it's empty (#36715) @mnajdova
364
+ - [docs] Update Material UI Related Projects page (#34203) @viclafouch
365
+ - [docs] Revise Joy UI "Circular Progress" page (#36126) @LadyBluenotes
366
+ - [docs] Revise Joy UI "Radio" page (#35893) @DevinCLane
367
+ - [docs] Support Google Analytics 4 (#36123) @alexfauquette
368
+ - [docs][material] Keep consistency in description of classes (#36631) @hbjORbj
369
+ - [docs] Remove redundant files and fix regression (#36775) @ZeeshanTamboli
370
+
371
+ ### Core
372
+
373
+ - [blog] Compress images @oliviertassinari
374
+ - [core] Remove unused token (#36722) @oliviertassinari
375
+
376
+ All contributors of this release in alphabetical order: @alexfauquette, @amal-qb, @danilo-leal, @DevinCLane, @gitstart, @hbjORbj, @HeVictor, @LadyBluenotes, @michaldudak, @mj12albert, @mnajdova, @oliviertassinari, @RBerthier, @sai6855, @siriwatknp, @viclafouch, @yushanwebdev
377
+
378
+ ## 5.11.15
379
+
380
+ <!-- generated comparing v5.11.14..master -->
381
+
382
+ _Mar 28, 2023_
383
+
384
+ A big thanks to the 10 contributors who made this release possible. We have one big highlight this week โœจ:
385
+
386
+ - @siriwatknp made a [Theme Builder](https://mui.com/joy-ui/customization/theme-builder) for Joy UI ๐ŸŽจ (#35741)
387
+
388
+ ### `@mui/material@5.11.15`
389
+
390
+ - [Chip] Fix error when theme value is a CSS variable (#36654) @siriwatknp
391
+ - [Grid2] Support dynamic nested columns (#36401) @siriwatknp
392
+
393
+ ### `@mui/system@5.11.15`
394
+
395
+ - [system] Enable regressions tests & fix regressions (#36611) @mnajdova
396
+ - [Stack] Add `useFlexGap` prop (#36404) @siriwatknp
397
+
398
+ ### `@mui/base@5.0.0-alpha.122`
399
+
400
+ - [Autocomplete] Update `autoSelect` prop description (#36280) @sai6855
401
+ - [TablePagination][base] Improve `actions` type in `slotProps` (#36458) @sai6855
402
+ - [Base] Add JSDoc comments for classes of Base components (#36586) @hbjORbj
403
+ - [useSlider][base] Add API docs for the hook parameters and return type (#36576) @varunmulay22
404
+
405
+ ### `@mui/joy@5.0.0-alpha.73`
406
+
407
+ - [Joy] Miscellaneous fixes (#36628) @siriwatknp
408
+ - [Joy] Add palette customizer (#35741) @siriwatknp
409
+
410
+ ### Docs
411
+
412
+ - Revert "[docs] Use `theme.applyDarkStyles` for the rest of the docs" (#36602) @mnajdova
413
+ - [blog] Improvements on v6 announcement blog (#36505) @joserodolfofreitas
414
+ - [docs] Add `Snackbar` coming soon page (#36604) @danilo-leal
415
+ - [docs] Add accordion coming soon page (#36279) @siriwatknp
416
+ - [docs] Fix palette customizer theme augmentation (#36629) @siriwatknp
417
+ - [docs] Finish migration away from https://reactjs.org/ @oliviertassinari
418
+ - [docs] Remove duplicated slot descriptions (#36621) @hbjORbj
419
+ - [docs] Fix broken example link (#36607) @mnajdova
420
+ - [docs] Use `theme.applyDarkStyles` (#36606) @siriwatknp
421
+ - [docs] Improve API for theme default prop (#36490) @oliviertassinari
422
+ - [docs][Table] Refactor `Sorting & Selecting` table demo (#33236) @IFaniry
423
+
424
+ ### Core
425
+
426
+ - [core] Use Netlify function for feedback management (#36472) @alexfauquette
427
+
428
+ All contributors of this release in alphabetical order: @alexfauquette, @danilo-leal, @hbjORbj, @IFaniry, @joserodolfofreitas, @mnajdova, @oliviertassinari, @sai6855, @siriwatknp, @varunmulay22
429
+
430
+ ## 5.11.14
431
+
432
+ <!-- generated comparing v5.11.13..master -->
433
+
434
+ _Mar 21, 2023_
435
+
436
+ A big thanks to the 15 contributors who made this release possible.
437
+ This release was mostly about ๐Ÿ› bug fixes and ๐Ÿ“š documentation improvements.
438
+
439
+ ### `@mui/material@5.11.14`
440
+
441
+ - [Breadcrumbs] Add ability to change icon used in `BreadcrumbCollapsed` through slots (#33812) @pratikkarad
442
+ - [Stepper] Add aria-current to active StepButton (#36526) @michalak111
443
+ - [TabScrollButton] Add ability to change left and right icons (#33863) @pratikkarad
444
+ - [ListItemButton] Respect LinkComponent (#34159) @zaverden
445
+ - [l10n] Add Central Kurdish (ku-CKB) locale (#36592) @HediMuhamad
446
+
447
+ ### `@mui/system@5.11.14`
448
+
449
+ - [system] Fix sx prop regression for fontWeight values (#36543) @mnajdova
450
+
451
+ ### `@mui/base@5.0.0-alpha.121`
452
+
453
+ - [docs][base] Improve the Slots Table in API docs (#36330) @hbjORbj
454
+
455
+ ### `@mui/joy@5.0.0-alpha.72`
456
+
457
+ - [Joy] Ensure new CSS variable naming is everywhere (#36460) @hbjORbj
458
+ - [Menu][joy] Classname listbox is missing (#36520) @hbjORbj
459
+ - [Joy] Fix `--List-decorator*` vars (#36595) @siriwatknp
460
+
461
+ ### `@mui/lab@5.0.0-alpha.124`
462
+
463
+ - [Masonry] Include Masonry in theme augmentation interface (#36533) @hbjORbj
464
+
465
+ ### Docs
466
+
467
+ - [blog] Post blog about Chamonix retreat to the website (#36517) @mikailaread
468
+ - [blog] Fix image layout shift (#36522) @oliviertassinari
469
+ - [docs] Use `theme.applyDarkStyles` for the rest of the docs (#36161) @siriwatknp
470
+ - [docs] Fix 301 and 404 links (#36555) @oliviertassinari
471
+ - [docs] Keep slot code order in API docs (#36499) @oliviertassinari
472
+ - [docs] Missing className on Migrating from JSS example (#36536) @gabrielnafuzi
473
+ - [docs] Fix function name for Joy templates (#36512) @hbjORbj
474
+ - [docs] Add multiline Chip example (#36437) @dav1app
475
+ - [docs] Add a new gold sponsor (#36518) @hbjORbj
476
+ - [docs][joy] Improve the Slots Table in API docs (#36328) @hbjORbj
477
+ - [docs] Fix virtualElement demo for Popper (#36320) @sai6855
478
+ - [docs] Fix typo in API docs (#36388) @RomanHotsiy
479
+ - [docs] Ensure classname displayed under Slots section in API docs exists (#36539) @hbjORbj
480
+ - [docs][joy] Build TS versions for Modal component demos (#36385) @varunmulay22
481
+ - [docs][joy] Build TS versions for Menu component demos (#36383) @varunmulay22
482
+ - [docs][joy] Build TS versions for Switch component demos (#36379) @varunmulay22
483
+ - [docs] Remove `shouldSkipGeneratingVar` usage (#36581) @siriwatknp
484
+ - [docs][material] Update Table's demo to show pointer cursor on clickable rows (#36546) @varunmulay22
485
+ - [website] Designer role changes (#36528) @danilo-leal
486
+ - [website] No association between showcase and MUI @oliviertassinari
487
+ - [website] Open Head of Operations role (#36501) @oliviertassinari
488
+ - [website] Limit sponsors description to two rows @oliviertassinari
489
+
490
+ ### Core
491
+
492
+ - [core] Fix CI @oliviertassinari
493
+ - [core] Fix blank line @oliviertassinari
494
+ - [website] Simplify internal ops @oliviertassinari
495
+
496
+ All contributors of this release in alphabetical order: @danilo-leal, @dav1app, @gabrielnafuzi, @hbjORbj, @HediMuhamad, @michalak111, @mikailaread, @mnajdova, @oliviertassinari, @pratikkarad, @RomanHotsiy, @sai6855, @siriwatknp, @varunmulay22, @zaverden
497
+
3
498
  ## 5.11.13
4
499
 
5
500
  <!-- generated comparing v5.11.12..master -->
@@ -8,12 +503,12 @@ _Mar 14, 2023_
8
503
 
9
504
  A big thanks to the 13 contributors who made this release possible. Here are some highlights โœจ:
10
505
 
11
- - @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)
12
507
  - other ๐Ÿ› bug fixes and ๐Ÿ“š documentation improvements.
13
508
 
14
509
  ### `@mui/material@5.11.13`
15
510
 
16
- - &#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
17
512
  - &#8203;<!-- 17 -->[material] Export `shouldSkipGeneratingVar` from Material UI (#36489) @siriwatknp
18
513
  - &#8203;<!-- 06 -->[Typography] Apply font properties to typography inherit variant (#33621) @oyar99
19
514
 
@@ -163,7 +658,7 @@ A big thanks to the 17 contributors who made this release possible. Here are som
163
658
  - &#8203;<!-- 23 -->[docs] Add instructions for deploying docs without a release (#36301) @cherniavskii
164
659
  - &#8203;<!-- 22 -->[docs] Fix 301 redirections on the docs @oliviertassinari
165
660
  - &#8203;<!-- 21 -->[docs] Update MUI X banner to reflect stable release (#36354) @MBilalShafi
166
- - &#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
167
662
  - &#8203;<!-- 19 -->[docs] Improve visual look of loose lists (#36190) @oliviertassinari
168
663
  - &#8203;<!-- 18 -->[docs] Fix @mui/styles example links (#36331) @oliviertassinari
169
664
  - &#8203;<!-- 17 -->[docs][joy] Build TS versions for List component demos (#36382) @sai6855
@@ -193,7 +688,7 @@ _Feb 27, 2023_
193
688
 
194
689
  A big thanks to the 15 contributors who made this release possible. Here are some highlights โœจ:
195
690
 
196
- - ๐Ÿ“š 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)
197
692
  - other ๐Ÿ› bug fixes and ๐Ÿ“š documentation improvements.
198
693
 
199
694
  ### `@mui/material@5.11.11`
@@ -430,7 +925,7 @@ A big thanks to the 14 contributors who made this release possible. Here are som
430
925
  - &#8203;<!-- 16 -->[docs] Improve inline preview's information (#35974) @oliviertassinari
431
926
  - &#8203;<!-- 15 -->[docs] Fix wrong v5 migration instructions (#36022) @oliviertassinari
432
927
  - &#8203;<!-- 14 -->[docs] Fix autocomplete render group key warning in the demo (#36025) @chuanyu0201
433
- - &#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
434
929
  - &#8203;<!-- 12 -->[docs] Fix grammar typo (#36016) @alexownejazayeri
435
930
  - &#8203;<!-- 11 -->[docs][joy] Add JSDoc for the `AutocompleteProps` type (#36039) @ArthurPedroti
436
931
 
@@ -646,7 +1141,7 @@ This release was mostly about ๐Ÿ› bug fixes and ๐Ÿ“š documentation improvements
646
1141
 
647
1142
  - [docs] Improve pickers lab migration stressing `mui-x` usage (#35740) @LukasTy
648
1143
  - [docs] Fix incorrectly named AccessibleTable demo component (#35832) @HeVictor
649
- - [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
650
1145
  - [docs] Fix typos (#35814) @alexfauquette
651
1146
  - [docs] Revise and expand the Joy UI Card page (#35745) @samuelsycamore
652
1147
  - [docs] Fix navigation layout shift (#35679) @oliviertassinari
@@ -757,7 +1252,7 @@ _Dec 26, 2022_
757
1252
 
758
1253
  A big thanks to the 20 contributors who made this release possible. Here are some highlights โœจ:
759
1254
 
760
- - โš™๏ธ 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)
761
1256
  - Many other ๐Ÿ› bug fixes abd ๐Ÿ“š documentation improvements.
762
1257
 
763
1258
  ### `@mui/material@5.11.2`
@@ -934,7 +1429,7 @@ A big thanks to the 19 contributors who made this release possible. Here are som
934
1429
  - [docs] Refactor `ToggleButtonSizes` demo (#35375) @Armanio
935
1430
  - [docs] Standardize the usage of callouts in the MUI Core docs (#35361) @samuelsycamore
936
1431
  - [docs] Format feedback to add a link to the commented section (#35381) @alexfauquette
937
- - [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
938
1433
  - [docs] Fix typo in FormControl API docs (#35449) @Spanishiwa
939
1434
  - [docs] Update callouts design (#35390) @danilo-leal
940
1435
  - [website] New wave of open roles (#35240) @mnajdova
@@ -1009,7 +1504,7 @@ A big thanks to the 15 contributors who made this release possible. Here are som
1009
1504
  - &#8203;<!-- 14 -->[docs] Improve the autogenerated "Unstyled" and "API" text (#35185) @samuelsycamore
1010
1505
  - &#8203;<!-- 13 -->[docs] Fix ad margin on API pages (#35201) @oliviertassinari
1011
1506
  - &#8203;<!-- 12 -->[docs] Revise and expand the Joy UI "Badge" page (#35199) @samuelsycamore
1012
- - &#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
1013
1508
  - &#8203;<!-- 09 -->[l10n] Improve Chinese (Taiwan) zh-TW locale (#35328) @happyincent
1014
1509
  - &#8203;<!-- 02 -->[website] Update MUI stats: GitHub stars, Twitter followers, etc. (#35318) @nomandhoni-cs
1015
1510
 
@@ -1342,7 +1837,7 @@ _Oct 25, 2022_
1342
1837
 
1343
1838
  A big thanks to the 10 contributors who made this release possible. Here are some highlights โœจ:
1344
1839
 
1345
- - ๐Ÿ”ง 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
1346
1841
  - Many other ๐Ÿ› bug fixes, ๐Ÿ“š documentation, and โš™๏ธ infrastructure improvements
1347
1842
 
1348
1843
  ### `@mui/material@5.10.11`
@@ -1424,7 +1919,7 @@ A big thanks to the 21 contributors who made this release possible. Here are som
1424
1919
 
1425
1920
  - ๐Ÿ–Œ Thanks to the efforts of @bharatkashyap and @nihgwu, we now have editable demos across our docs (#34454)!
1426
1921
  - ๐Ÿš€ The Tooltip component has been added to Joy UI by @hbjORbj (#34509).
1427
- - โš™๏ธ 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.
1428
1923
  @mbayucot finished the first PR with the conversion of the NoSsr code (#34735).
1429
1924
  - And more ๐Ÿ› bug fixes and ๐Ÿ“š documentation improvements.
1430
1925
 
@@ -1555,7 +2050,7 @@ _Oct 3, 2022_
1555
2050
 
1556
2051
  A big thanks to the 18 contributors who made this release possible. Here are some highlights โœจ:
1557
2052
 
1558
- - ๐Ÿš€ [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
1559
2054
  - ๐Ÿ“š [CSS variables documentation](https://mui.com/material-ui/experimental-api/css-theme-variables/overview/) for Material UI has been added by @siriwatknp (#33958)
1560
2055
  - And more ๐Ÿ› bug fixes and ๐Ÿ“š documentation improvements.
1561
2056
 
@@ -1657,7 +2152,7 @@ A big thanks to the 21 contributors who made this release possible. Here are som
1657
2152
 
1658
2153
  ### Docs
1659
2154
 
1660
- - [blog] MUI Base announcement typo fixed (#34409) @prakhargupta1
2155
+ - [blog] Base UI announcement typo fixed (#34409) @prakhargupta1
1661
2156
  - [blog] Fix typo in date-pickers v5 stable (#34386) @alexfauquette
1662
2157
  - [blog] Update date on date pickers v5 release blog post (#34406) @joserodolfofreitas
1663
2158
  - [docs] Update `useMenu` and `useMenuItem` hooks demo (#34166) @ZeeshanTamboli
@@ -1743,7 +2238,7 @@ This release was mostly about ๐Ÿ› bug fixes and ๐Ÿ“š documentation improvements
1743
2238
  - [docs] Fix 301 link to external projects @oliviertassinari
1744
2239
  - [docs] Move 12 component names to Title Case (#34188) @oliviertassinari
1745
2240
  - [docs] Fix broken links (#34320) @alexfauquette
1746
- - [docs] Add notification for MUI Base announcement post (#34295) @samuelsycamore
2241
+ - [docs] Add notification for Base UI announcement post (#34295) @samuelsycamore
1747
2242
  - [website] Fix MUI X subscribe email border style (#34330) @oliviertassinari
1748
2243
  - [website] Improve security header @oliviertassinari
1749
2244
 
@@ -1764,7 +2259,7 @@ _Sep 12, 2022_
1764
2259
 
1765
2260
  A big thanks to the 12 contributors who made this release possible. Here are some highlights โœจ:
1766
2261
 
1767
- - ๐Ÿš€ [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.
1768
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
1769
2264
  - And more ๐Ÿ› bug fixes and ๐Ÿ“š documentation improvements.
1770
2265
 
@@ -1787,7 +2282,7 @@ A big thanks to the 12 contributors who made this release possible. Here are som
1787
2282
 
1788
2283
  ### Docs
1789
2284
 
1790
- - &#8203;<!-- 16 -->[blog] Introducing MUI Base (#33778) @michaldudak
2285
+ - &#8203;<!-- 16 -->[blog] Introducing Base UI (#33778) @michaldudak
1791
2286
  - &#8203;<!-- 13 -->[docs] Fix spelling error (#34209) @ChrystianDeMatos
1792
2287
  - &#8203;<!-- 12 -->[docs] Improve link to the security policy (#34219) @oliviertassinari
1793
2288
  - &#8203;<!-- 11 -->[docs] Fix typo in Joy UI's `Usage` docs (#34200) @zillion504
@@ -2342,7 +2837,7 @@ A big thanks to the 19 contributors who made this release possible. Here are som
2342
2837
  - [docs] Add "refine" demo to showcase (#33240) @omeraplak
2343
2838
  - [docs] Add webpack alias for legacy utils package (#33376) @jgbae
2344
2839
  - [docs] Improve external link icons synonyms (#33257) @davidgarciab
2345
- - [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
2346
2841
  - [examples] Add MUI base example (#33154) @siriwatknp
2347
2842
 
2348
2843
  ### Core
@@ -2516,7 +3011,7 @@ A big thanks to the 14 contributors who made this release possible. Here are som
2516
3011
  - &#8203;<!-- 28 -->[blog] Update Blogpost to clear confusion on "no impact" disclaimer. (#33131) @joserodolfofreitas
2517
3012
  - &#8203;<!-- 27 -->[blog] Add post about v5 Migration guide update (#33063) @samuelsycamore
2518
3013
  - &#8203;<!-- 26 -->[blog] Fix display on Safari (#33102) @oliviertassinari
2519
- - &#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
2520
3015
  - &#8203;<!-- 17 -->[docs] Improve Joy template UX (#33159) @siriwatknp
2521
3016
  - &#8203;<!-- 16 -->[docs] Update Shadow DOM guide (#33160) @cherniavskii
2522
3017
  - &#8203;<!-- 15 -->[docs] Fix SEO regressions (#33106) @oliviertassinari
@@ -2594,7 +3089,7 @@ A big thanks to the 24 contributors who made this release possible. Here are som
2594
3089
  - &#8203;<!-- 31 -->[docs] Move codesandbox to MUI org (#33122) @oliviertassinari
2595
3090
  - &#8203;<!-- 30 -->[docs] Add Shadow DOM guide (#33007) @cherniavskii
2596
3091
  - &#8203;<!-- 29 -->[docs] Fix typo in Material UI overview page (#33087) @oliviertassinari
2597
- - &#8203;<!-- 28 -->[docs] Miscellaneous fixes in `MUI Base` docs (#33091) @ZeeshanTamboli
3092
+ - &#8203;<!-- 28 -->[docs] Miscellaneous fixes in `Base UI` docs (#33091) @ZeeshanTamboli
2598
3093
  - &#8203;<!-- 27 -->[docs] Fix GitHub capitalization (#33071) @oliviertassinari
2599
3094
  - &#8203;<!-- 26 -->[docs] Fix a typo in `InputUnstyled` docs (#33077) @ZeeshanTamboli
2600
3095
  - &#8203;<!-- 25 -->[docs] Add notification for Joy blog post (#33059) @siriwatknp
@@ -3030,7 +3525,7 @@ A big thanks to the 13 contributors who made this release possible. Here are som
3030
3525
  - &#8203;<!-- 24 -->[docs] Base Button style revisions and final review (#32380) @samuelsycamore
3031
3526
  - &#8203;<!-- 23 -->[docs] Base NoSsr style revisions and final review (#32254) @samuelsycamore
3032
3527
  - &#8203;<!-- 22 -->[docs] Correctly capitalize Ctrl @oliviertassinari
3033
- - &#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
3034
3529
  - &#8203;<!-- 20 -->[docs] Add "Overview" page to Base docs (#32310) @samuelsycamore
3035
3530
  - &#8203;<!-- 19 -->[docs] Add copy button to code block (#32390) @siriwatknp
3036
3531
  - &#8203;<!-- 18 -->[docs] Base Tabs style revisions and final review (#32423) @samuelsycamore
@@ -3284,7 +3779,7 @@ A big thanks to the 15 contributors who made this release possible. Here are som
3284
3779
 
3285
3780
  - &#8203;<!-- 28 -->[core] Update peer deps to support React 18 (#32063) @eps1lon
3286
3781
  - &#8203;<!-- 27 -->[core] Fix running docs:api on Windows (#32091) @michaldudak
3287
- - &#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
3288
3783
 
3289
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
3290
3785
 
@@ -3511,7 +4006,7 @@ A big thanks to the 16 contributors who made this release possible. Here are som
3511
4006
 
3512
4007
  - &#8203;<!-- 24 -->[ClassNameGenerator] Prevent all `base` imports (#31297) @siriwatknp
3513
4008
 
3514
- `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:
3515
4010
 
3516
4011
  ```diff
3517
4012
  -import { unstable_ClassNameGenerator } from '@mui/material/utils';
@@ -5286,7 +5781,7 @@ _Sep 1, 2021_
5286
5781
  A big thanks to the 18 contributors who made this release possible. Here are some highlights โœจ:
5287
5782
 
5288
5783
  - ๐ŸŽ‰ Renamed packages to `@mui/*` as part of rebranding the company, following the strategy of expanding the library scope beyond Material Design. For more details about it, check the [GitHub discussion](https://github.com/mui/material-ui/discussions/27803).
5289
- - ๐Ÿ›  Added `mui-replace` codemod for migrating `@material-ui/*` to new packages `@mui/*`. Check out this [codemod detail](https://github.com/mui/material-ui/blob/next/packages/mui-codemod/README.md#mui-replace) or head to [migration guide](https://mui.com/material-ui/migration/migration-v4/#preset-safe)
5784
+ - ๐Ÿ›  Added `mui-replace` codemod for migrating `@material-ui/*` to new packages `@mui/*`. Check out this [codemod detail](https://github.com/mui/material-ui/blob/v5.0.0/packages/mui-codemod/README.md#mui-replace) or head to [migration guide](https://mui.com/material-ui/migration/migration-v4/#preset-safe)
5290
5785
  - ๐Ÿงช Added new `<Mansory>` component to the lab, [check it out](https://mui.com/components/masonry/). It has been crafted by our first intern, @hbjORbj ๐Ÿ‘!
5291
5786
 
5292
5787
  ### `@mui/material@5.0.0-rc.0`
@@ -5318,7 +5813,7 @@ A big thanks to the 18 contributors who made this release possible. Here are som
5318
5813
 
5319
5814
  > **Note**: `@mui/base` (previously `@material-ui/unstyled`) is not the same as `@material-ui/core`.
5320
5815
 
5321
- We encourage you to use the [codemod](https://github.com/mui/material-ui/blob/next/packages/mui-codemod/README.md#mui-replace) for smooth migration.
5816
+ We encourage you to use the [codemod](https://github.com/mui/material-ui/blob/v5.0.0/packages/mui-codemod/README.md#mui-replace) for smooth migration.
5322
5817
 
5323
5818
  #### Changes
5324
5819
 
@@ -6453,7 +6948,7 @@ A big thanks to the 14 contributors who made this release possible. Here are som
6453
6948
 
6454
6949
  - ๐Ÿ‘ฉโ€๐ŸŽค We have completed the migration to emotion of all the components (`@material-ui/core` and `@material-ui/lab`) @siriwatknp, @mnajdova.
6455
6950
  - ๐Ÿ“ฆ Save [10 kB gzipped](https://bundlephobia.com/package/@material-ui/core@5.0.0-alpha.34) by removing the dependency on `@material-ui/styles` (JSS) from the core and the lab (#26377, #26382, #26376) @mnajdova.
6456
- - โš’๏ธ Add many new [codemods](https://github.com/mui/material-ui/blob/HEAD/packages/mui-codemod/README.md) to automate the migration from v4 to v5 (#24867) @mbrookes.
6951
+ - โš’๏ธ Add many new [codemods](https://github.com/mui/material-ui/blob/v5.0.0/packages/mui-codemod/README.md) to automate the migration from v4 to v5 (#24867) @mbrookes.
6457
6952
  - And many more ๐Ÿ› bug fixes and ๐Ÿ“š improvements.
6458
6953
 
6459
6954
  ### `@material-ui/core@5.0.0-alpha.35`
@@ -8721,7 +9216,7 @@ A big thanks to the 17 contributors who made this release possible. Here are som
8721
9216
 
8722
9217
  - [Box] Remove deprecated props (#23716) @mnajdova
8723
9218
  All props are now available under the `sx` prop. A deprecation will be landing in v4.
8724
- Thanks to @mbrookes developers can automate the migration with a [codemod](https://github.com/mui/material-ui/blob/next/packages/mui-codemod/README.md#box-sx-prop).
9219
+ Thanks to @mbrookes developers can automate the migration with a [codemod](https://github.com/mui/material-ui/blob/v5.0.0/packages/mui-codemod/README.md#box-sx-prop).
8725
9220
 
8726
9221
  ```diff
8727
9222
  -<Box p={2} bgcolor="primary.main">
@@ -9076,7 +9571,7 @@ _Nov 4, 2020_
9076
9571
  A big thanks to the 20 contributors who made this release possible. Here are some highlights โœจ:
9077
9572
 
9078
9573
  - โš›๏ธ Add support for React 17 (#23311) @eps1lon.
9079
- React 17 release is unusual because it doesn't add any new developer-facing features. It was released a couple of days ago. You can learn more about it in the [introduction post](https://reactjs.org/blog/2020/10/20/react-v17.html). Material UI now supports `^16.8.0 || ^17.0.0`.
9574
+ React 17 release is unusual because it doesn't add any new developer-facing features. It was released a couple of days ago. You can learn more about it in the [introduction post](https://legacy.reactjs.org/blog/2020/10/20/react-v17.html). Material UI now supports `^16.8.0 || ^17.0.0`.
9080
9575
  - ๐Ÿ›  Introduce a new `@material-ui/unstyled` package (#23270) @mnajdova.
9081
9576
  This package will host the unstyled version of the components. In this first iteration, only the Slider is available. You can find it documented under the [same page](https://mui.com/components/slider-styled/#unstyled-slider) as the styled version.
9082
9577
 
@@ -10085,7 +10580,7 @@ Here are some highlights โœจ:
10085
10580
  #### Breaking changes
10086
10581
 
10087
10582
  - [Modal] Remove `onRendered` prop from Modal and Portal (#22464) @eps1lon
10088
- Depending on your use case either use a [callback ref](https://reactjs.org/docs/refs-and-the-dom.html#callback-refs) on the child element or an effect hook in the child component.
10583
+ Depending on your use case either use a [callback ref](https://legacy.reactjs.org/docs/refs-and-the-dom.html#callback-refs) on the child element or an effect hook in the child component.
10089
10584
 
10090
10585
  #### Changes
10091
10586
 
@@ -10548,7 +11043,7 @@ Here are some highlights โœจ:
10548
11043
 
10549
11044
  - [RootRef] Remove component (#21974) @eps1lon
10550
11045
  This component was removed. You can get a reference to the underlying DOM node of our components via `ref` prop.
10551
- The component relied on [`ReactDOM.findDOMNode`](https://reactjs.org/docs/react-dom.html#finddomnode) which is [deprecated in `React.StrictMode`](https://reactjs.org/docs/strict-mode.html#warning-about-deprecated-finddomnode-usage).
11046
+ The component relied on [`ReactDOM.findDOMNode`](https://legacy.reactjs.org/docs/react-dom.html#finddomnode) which is [deprecated in `React.StrictMode`](https://legacy.reactjs.org/docs/strict-mode.html#warning-about-deprecated-finddomnode-usage).
10552
11047
 
10553
11048
  ```diff
10554
11049
  -<RootRef rootRef={ref}>
package/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/private-theming v5.11.13
2
+ * @mui/private-theming v5.12.3
3
3
  *
4
4
  * @license MIT
5
5
  * This source code is licensed under the MIT license found in the
package/legacy/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/private-theming v5.11.13
2
+ * @mui/private-theming v5.12.3
3
3
  *
4
4
  * @license MIT
5
5
  * This source code is licensed under the MIT license found in the
package/modern/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/private-theming v5.11.13
2
+ * @mui/private-theming v5.12.3
3
3
  *
4
4
  * @license MIT
5
5
  * This source code is licensed under the MIT license found in the
package/node/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/private-theming v5.11.13
2
+ * @mui/private-theming 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/private-theming",
3
- "version": "5.11.13",
3
+ "version": "5.12.3",
4
4
  "private": false,
5
5
  "author": "MUI Team",
6
6
  "description": "Private - The React theme context to be shared between `@mui/styles` and `@mui/material`.",
@@ -36,7 +36,7 @@
36
36
  },
37
37
  "dependencies": {
38
38
  "@babel/runtime": "^7.21.0",
39
- "@mui/utils": "^5.11.13",
39
+ "@mui/utils": "^5.12.3",
40
40
  "prop-types": "^15.8.1"
41
41
  },
42
42
  "sideEffects": false,