@mui/private-theming 5.13.1 → 5.14.4
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 +772 -17
- package/ThemeProvider/ThemeProvider.js +2 -4
- package/index.js +1 -1
- package/legacy/ThemeProvider/ThemeProvider.js +2 -4
- package/legacy/index.js +1 -1
- package/modern/ThemeProvider/ThemeProvider.js +2 -4
- package/modern/index.js +1 -1
- package/node/ThemeProvider/ThemeProvider.js +2 -4
- package/node/index.js +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,760 @@
|
|
|
1
1
|
# [Versions](https://mui.com/versions/)
|
|
2
2
|
|
|
3
|
+
## 5.14.4
|
|
4
|
+
|
|
5
|
+
<!-- generated comparing v5.14.3..master -->
|
|
6
|
+
|
|
7
|
+
_Aug 8, 2023_
|
|
8
|
+
|
|
9
|
+
A big thanks to the 18 contributors who made this release possible. Here are some highlights ✨:
|
|
10
|
+
|
|
11
|
+
- 🎉 Added [Number input](https://mui.com/base-ui/react-number-input) component & [useNumberInput](https://mui.com/base-ui/react-number-input#hook) hook in [Base UI](https://mui.com/base-ui/getting-started/) @mj12albert
|
|
12
|
+
|
|
13
|
+
### `@mui/material@5.14.4`
|
|
14
|
+
|
|
15
|
+
- ​<!-- 25 -->[Checkbox][material] Add size classes (#38182) @michaldudak
|
|
16
|
+
- ​<!-- 03 -->[Typography] Improve inherit variant logic (#38123) @ZeeshanTamboli
|
|
17
|
+
|
|
18
|
+
### `@mui/system@5.14.4`
|
|
19
|
+
|
|
20
|
+
- ​<!-- 34 -->Revert "[Box] Remove `component` from TypeMap (#38168)" (#38356) @michaldudak
|
|
21
|
+
|
|
22
|
+
### `@mui/base@5.0.0-beta.10`
|
|
23
|
+
|
|
24
|
+
#### Breaking changes
|
|
25
|
+
|
|
26
|
+
- ​<!-- 32 -->[base] Ban default exports (#38200) @michaldudak
|
|
27
|
+
|
|
28
|
+
Base UI default exports were changed to named ones. Previously we had a mix of default and named ones.
|
|
29
|
+
This was changed to improve consistency and avoid problems some bundlers have with default exports.
|
|
30
|
+
See https://github.com/mui/material-ui/issues/21862 for more context.
|
|
31
|
+
|
|
32
|
+
```diff
|
|
33
|
+
- import Button, { buttonClasses } from '@mui/base/Button';
|
|
34
|
+
+ import { Button, buttonClasses } from '@mui/base/Button';
|
|
35
|
+
- import BaseMenu from '@mui/base/Menu';
|
|
36
|
+
+ import { Menu as BaseMenu } from '@mui/base/Menu';
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
Additionally, the `ClassNameGenerator` has been moved to the directory matching its name:
|
|
40
|
+
|
|
41
|
+
```diff
|
|
42
|
+
- import ClassNameGenerator from '@mui/base/className';
|
|
43
|
+
+ import { ClassNameGenerator } from '@mui/base/ClassNameGenerator';
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
A codemod is provided to help with the migration:
|
|
47
|
+
|
|
48
|
+
```bash
|
|
49
|
+
npx @mui/codemod v5.0.0/base-use-named-imports <path>
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
#### Changes
|
|
53
|
+
|
|
54
|
+
- ​<!-- 31 -->[base] Create useNumberInput and NumberInput (#36119) @mj12albert
|
|
55
|
+
- ​<!-- 28 -->[Select][base] Fix flicker on click of controlled Select button (#37855) @VishruthR
|
|
56
|
+
- ​<!-- 09 -->[Dropdown] Fix imports of types (#38296) @yash-thakur
|
|
57
|
+
|
|
58
|
+
### `@mui/joy@5.0.0-beta.1`
|
|
59
|
+
|
|
60
|
+
- ​<!-- 06 -->[joy-ui][MenuButton] Fix disable of `MenuButton` (#38342) @sai6855
|
|
61
|
+
|
|
62
|
+
### Docs
|
|
63
|
+
|
|
64
|
+
- ​<!-- 33 -->[docs][AppBar] Fix `ResponsiveAppBar` demo logo href (#38346) @iownthegame
|
|
65
|
+
- ​<!-- 30 -->[docs][base] Add Tailwind CSS + plain CSS demo on the Button page (#38240) @alisasanib
|
|
66
|
+
- ​<!-- 29 -->[docs][Menu][base] Remove `Unstyled` prefix from demos' function names (#38270) @sai6855
|
|
67
|
+
- ​<!-- 22 -->[docs] Add themeable component guide (#37908) @siriwatknp
|
|
68
|
+
- ​<!-- 21 -->[docs] Fix Joy UI demo background color (#38307) @oliviertassinari
|
|
69
|
+
- ​<!-- 20 -->[docs] Update API docs for Number Input component (#38301) @ZeeshanTamboli
|
|
70
|
+
- ​<!-- 14 -->[docs][joy-ui] Revise the theme typography page (#38285) @danilo-leal
|
|
71
|
+
- ​<!-- 13 -->[docs][joy-ui] Add TS demo for Menu Bar (#38308) @sai6855
|
|
72
|
+
- ​<!-- 10 -->[docs][joy-ui] Updated Typography callout at getting started (#38289) @zanivan
|
|
73
|
+
- ​<!-- 12 -->[docs][joy-ui] Fix the Inter font installation instructions (#38284) @danilo-leal
|
|
74
|
+
- ​<!-- 11 -->[docs][material] Add note to Autocomplete about ref forwarding (#38305) @samuelsycamore
|
|
75
|
+
- ​<!-- 05 -->[docs][Skeleton] Make the demos feel more realistic (#38212) @oliviertassinari
|
|
76
|
+
|
|
77
|
+
- ​<!-- 08 -->[examples] Swap Next.js examples between App Router and Pages Router; update naming convention (#38204) @samuelsycamore
|
|
78
|
+
- ​<!-- 07 -->[examples][material-ui] Add Material UI + Next.js (App Router) example in JS (#38323) @samuelsycamore
|
|
79
|
+
- ​<!-- 27 -->[blog] Discord announcement blog (#38258) @richbustos
|
|
80
|
+
- ​<!-- 26 -->[blog] Fix 301 links to Toolpad @oliviertassinari
|
|
81
|
+
- ​<!-- 04 -->[website] Updating Charts demo with real charts usage for MUI X marketing page (#38317) @richbustos
|
|
82
|
+
- ​<!-- 03 -->[website] Adjust styles of the Product section on the homepage (#38366) @danilo-leal
|
|
83
|
+
- ​<!-- 02 -->[website] Add Nora teamMember card to 'About' (#38358) @noraleonte
|
|
84
|
+
- ​<!-- 01 -->[website] Fix image layout shift (#38326) @oliviertassinari
|
|
85
|
+
|
|
86
|
+
### Core
|
|
87
|
+
|
|
88
|
+
- ​<!-- 24 -->[core] Fix docs demo export function consistency (#38191) @oliviertassinari
|
|
89
|
+
- ​<!-- 23 -->[core] Fix the link-check script on Windows (#38276) @michaldudak
|
|
90
|
+
- ​<!-- 26 -->[core] Use @testing-library/user-event direct API (#38325) @mj12albert
|
|
91
|
+
- ​<!-- 29 -->[core] Port GitHub workflow for ensuring triage label is present (#38312) @DanailH
|
|
92
|
+
- ​<!-- 19 -->[docs-infra] Consider files ending with .types.ts as props files (#37533) @mnajdova
|
|
93
|
+
- ​<!-- 18 -->[docs-infra] Fix skip to content design (#38304) @oliviertassinari
|
|
94
|
+
- ​<!-- 17 -->[docs-infra] Add a general round of polish to the API content display (#38282) @danilo-leal
|
|
95
|
+
- ​<!-- 16 -->[docs-infra] Make the side nav collapse animation snappier (#38259) @danilo-leal
|
|
96
|
+
- ​<!-- 15 -->[docs-infra] New Component API design followup (#38183) @cherniavskii
|
|
97
|
+
- ​<!-- 06 -->[test] Remove unnecessary `async` keyword from test (#38373) @ZeeshanTamboli
|
|
98
|
+
|
|
99
|
+
All contributors of this release in alphabetical order: @alisasanib, @cherniavskii, @DanailH, @danilo-leal, @iownthegame, @michaldudak, @mj12albert, @mnajdova, @noraleonte, @oliviertassinari, @richbustos, @sai6855, @samuelsycamore, @siriwatknp, @VishruthR, @yash-thakur, @zanivan, @ZeeshanTamboli
|
|
100
|
+
|
|
101
|
+
## 5.14.3
|
|
102
|
+
|
|
103
|
+
<!-- generated comparing v5.14.2..master -->
|
|
104
|
+
|
|
105
|
+
_Jul 31, 2023_
|
|
106
|
+
|
|
107
|
+
A big thanks to the 17 contributors who made this release possible. Here are some highlights ✨:
|
|
108
|
+
|
|
109
|
+
- 🚀 [Joy UI](https://mui.com/joy-ui/getting-started/) is now in Beta
|
|
110
|
+
- ✨ Refine [Joy UI](https://mui.com/joy-ui/getting-started/)'s default theme @siriwatknp @zanivan
|
|
111
|
+
- 🎉 Added Dropdown higher-level menu component [Base UI](https://mui.com/base-ui/getting-started/) @michaldudak
|
|
112
|
+
- 💫 Added Material You [Badge](https://mui.com/material-ui/react-badge/#material-you-version) to `material-next` (#37850) @DiegoAndai
|
|
113
|
+
|
|
114
|
+
### `@mui/material@5.14.3`
|
|
115
|
+
|
|
116
|
+
- ​<!-- 36 -->[Autocomplete][material][joy] Add default `getOptionLabel` prop in ownerState (#38100) @DSK9012
|
|
117
|
+
- ​<!-- 26 -->[Menu][Divider][material] Do not allow focus on Divider when inside Menu list (#38102) @divyammadhok
|
|
118
|
+
- ​<!-- 06 -->[typescript][material] Rename one letter type parameters (#38155) @michaldudak
|
|
119
|
+
- ​<!-- 08 -->[Menu][material] Fixes slots and slotProps overriding defaults completely (#37902) @gitstart
|
|
120
|
+
- ​<!-- 07 -->[Theme][material] Add missing styleOverrides type for theme MuiStack (#38189) @DiegoAndai
|
|
121
|
+
- ​<!-- 04 -->[typescript][material] Add `component` field to `*Props` types (#38084) @michaldudak
|
|
122
|
+
|
|
123
|
+
### `@mui/base@5.0.0-beta.9`
|
|
124
|
+
|
|
125
|
+
#### Breaking changes
|
|
126
|
+
|
|
127
|
+
- ​<!-- 11 -->[Dropdown][base][joy] Introduce higher-level menu component (#37667) @michaldudak
|
|
128
|
+
|
|
129
|
+
#### Other changes
|
|
130
|
+
|
|
131
|
+
- ​<!-- 33 -->[typescript][base] Rename one letter type parameters (#38171) @michaldudak
|
|
132
|
+
|
|
133
|
+
### `@mui/joy@5.0.0-beta.0`
|
|
134
|
+
|
|
135
|
+
- ​<!-- 10 -->[joy] Refine the default theme (#36843) @siriwatknp
|
|
136
|
+
|
|
137
|
+
### `@mui/material-next@6.0.0-alpha.95`
|
|
138
|
+
|
|
139
|
+
- ​<!-- 35 -->[Badge][material-next] Add Badge component (#37850) @DiegoAndai
|
|
140
|
+
- ​<!-- 30 -->[Chip][material-next] Copy chip component from material (#38053) @DiegoAndai
|
|
141
|
+
- ​<!-- 09 -->[typescript][material-next] Rename one letter type parameters (#38172) @michaldudak
|
|
142
|
+
|
|
143
|
+
### `@mui/system@5.14.3`
|
|
144
|
+
|
|
145
|
+
- ​<!-- 32 -->[Box][system] Remove `component` from TypeMap (#38168) @michaldudak
|
|
146
|
+
- ​<!-- 05 -->[Stack][system] Fix CSS selector (#37525) @sai6855
|
|
147
|
+
|
|
148
|
+
### Docs
|
|
149
|
+
|
|
150
|
+
- ​<!-- 49 -->[docs] Update Joy UI's package README (#38262) @ZeeshanTamboli
|
|
151
|
+
- ​<!-- 48 -->[docs][base-ui] Add new batch of coming soon pages (#38025) @danilo-leal
|
|
152
|
+
- ​<!-- 44 -->[docs] fix links to standardized examples (#38193) @emmanuel-ferdman
|
|
153
|
+
- ​<!-- 43 -->[docs-infra] Small design polish to the Diamond Sponsor container (#38257) @danilo-leal
|
|
154
|
+
- ​<!-- 42 -->[docs-infra] Show props in the table of content (#38173) @alexfauquette
|
|
155
|
+
- ​<!-- 41 -->[docs-infra] Polish API page design (#38196) @oliviertassinari
|
|
156
|
+
- ​<!-- 40 -->[docs-infra] Search with productCategory when product is missing (#38239) @oliviertassinari
|
|
157
|
+
- ​<!-- 39 -->[docs][material] Revise and update Examples doc (#38205) @samuelsycamore
|
|
158
|
+
- ​<!-- 38 -->[docs] Fix typo in notifications.json @mbrookes
|
|
159
|
+
- ​<!-- 37 -->[docs-infra] Remove leftover standardNavIcon (#38252) @DiegoAndai
|
|
160
|
+
- ​<!-- 34 -->[docs][base] Add Tailwind CSS & plain CSS demos on the Popper page (#37953) @zanivan
|
|
161
|
+
- ​<!-- 31 -->[docs][Button][joy] Improve `loading` prop documentation (#38156) @sai6855
|
|
162
|
+
- ​<!-- 25 -->[docs] Prepare docs infra for Tree View migration to X (#38202) @flaviendelangle
|
|
163
|
+
- ​<!-- 24 -->[docs] Fix SEO issues reported by ahrefs @oliviertassinari
|
|
164
|
+
- ​<!-- 23 -->[docs] Fix palette pages - live edit not working (#38195) @oliviertassinari
|
|
165
|
+
- ​<!-- 22 -->[docs] Add Google Analytics action for the styling menu (#38085) @mnajdova
|
|
166
|
+
- ​<!-- 21 -->[docs] Fix Discord redirection chain @oliviertassinari
|
|
167
|
+
- ​<!-- 20 -->[docs] Cover pnpm in more places (#38161) @oliviertassinari
|
|
168
|
+
- ​<!-- 19 -->[docs] Avoid broken link (#38154) @oliviertassinari
|
|
169
|
+
- ​<!-- 18 -->[docs] Add notification for beta release of Toolpad (#38152) @prakhargupta1
|
|
170
|
+
- ​<!-- 17 -->[docs-infra] Remove sidenav icons (#38174) @oliviertassinari
|
|
171
|
+
- ​<!-- 16 -->[docs-infra] Fix search ranking when no productId (#38162) @oliviertassinari
|
|
172
|
+
- ​<!-- 15 -->[docs-infra] Adjust the side nav for deeper nested items (#38047) @cherniavskii
|
|
173
|
+
- ​<!-- 14 -->[docs][joy] Update TS file of adding more typography levels demo to match the corresponding JS file's styles (#38232) @ZeeshanTamboli
|
|
174
|
+
- ​<!-- 13 -->[docs][joy] Add TS demo for reusable component section in approaches page (#38210) @sai6855
|
|
175
|
+
- ​<!-- 12 -->[docs][joy] Add TS demo for theme typography new level customization (#38199) @sai6855
|
|
176
|
+
|
|
177
|
+
### Core
|
|
178
|
+
|
|
179
|
+
- ​<!-- 47 -->[blog] Fix blog post slug Base UI (#38254) @oliviertassinari
|
|
180
|
+
- ​<!-- 46 -->[core] Use native Node's fetch instead of node-fetch package (#38263) @michaldudak
|
|
181
|
+
- ​<!-- 45 -->[core] Remove dead code @oliviertassinari
|
|
182
|
+
- ​<!-- 29 -->[core] Polish Stack test to closer CSS injection order @oliviertassinari
|
|
183
|
+
- ​<!-- 28 -->[core] Remove unnecessary `Required` utility type from Typography font style type (#38203) @ZeeshanTamboli
|
|
184
|
+
- ​<!-- 27 -->[core] Fix generate Proptypes script skipping unstable items (#38198) @mj12albert
|
|
185
|
+
- ​<!-- 03 -->[website] Adding Rich Bustos Twitter handle in bio (#38213) @richbustos
|
|
186
|
+
- ​<!-- 02 -->[website] Prepare importing data from HiBob (#38238) @oliviertassinari
|
|
187
|
+
- ​<!-- 01 -->[website] Sync team member with HiBob, add Raffaella (#38201) @rluzists1
|
|
188
|
+
|
|
189
|
+
All contributors of this release in alphabetical order: @cherniavskii, @DiegoAndai, @divyammadhok, @DSK9012, @flaviendelangle, @gitstart, @michaldudak, @mj12albert, @mnajdova, @oliviertassinari, @prakhargupta1, @richbustos, @rluzists1, @sai6855, @siriwatknp, @zanivan, @ZeeshanTamboli
|
|
190
|
+
|
|
191
|
+
## 5.14.2
|
|
192
|
+
|
|
193
|
+
<!-- generated comparing v5.14.1..master -->
|
|
194
|
+
|
|
195
|
+
_Jul 25, 2023_
|
|
196
|
+
|
|
197
|
+
A big thanks to the 23 contributors who made this release possible.
|
|
198
|
+
|
|
199
|
+
### @mui/material@5.14.2
|
|
200
|
+
|
|
201
|
+
- ​<!-- 39 -->Revert "[core] Adds `component` prop to `OverrideProps` type (#35924)" (#38150) @michaldudak
|
|
202
|
+
- ​<!-- 32 -->[Chip][material] Fix base cursor style to be "auto" not "default" (#38076) @DiegoAndai
|
|
203
|
+
- ​<!-- 12 -->[Tabs] Refactor IntersectionObserver logic (#38133) @ZeeshanTamboli
|
|
204
|
+
- ​<!-- 11 -->[Tabs] Fix and improve visibility of tab scroll buttons using the IntersectionObserver API (#36071) @SaidMarar
|
|
205
|
+
|
|
206
|
+
### @mui/joy@5.0.0-alpha.89
|
|
207
|
+
|
|
208
|
+
- ​<!-- 15 -->[Joy] Replace leftover `Joy-` prefix with `Mui-` (#38086) @siriwatknp
|
|
209
|
+
- ​<!-- 14 -->[Skeleton][joy] Fix WebkitMaskImage CSS property (#38077) @Bestwebdesign
|
|
210
|
+
- ​<!-- 13 -->[Link][Joy UI] Fix font inherit (#38124) @oliviertassinari
|
|
211
|
+
|
|
212
|
+
### Docs
|
|
213
|
+
|
|
214
|
+
- ​<!-- 37 -->[docs] Add listbox placement demo for Select (#38130) @sai6855
|
|
215
|
+
- ​<!-- 36 -->[docs][base] Add Tailwind CSS & plain CSS demo on the Tabs page (#37910) @mnajdova
|
|
216
|
+
- ​<!-- 35 -->[docs][base] Add Tailwind CSS & plain CSS demos on the Textarea page (#37943) @zanivan
|
|
217
|
+
- ​<!-- 29 -->[docs] Fix Joy UI menu example (#38140) @harikrishnanp
|
|
218
|
+
- ​<!-- 28 -->[docs] Remove translations section from contributing guide (#38125) @nikohoffren
|
|
219
|
+
- ​<!-- 27 -->[docs] Fix Base UI Button Tailwind CSS padding @oliviertassinari
|
|
220
|
+
- ​<!-- 26 -->[docs] Mention in hompage hero that Core is free (#38075) @mbrookes
|
|
221
|
+
- ​<!-- 25 -->[docs] Fix a typo in notifications.json (#38078) @mbrookes
|
|
222
|
+
- ​<!-- 24 -->[docs] Add Tailwind CSS & plain CSS demo on the table pagination page (#37937) @mnajdova
|
|
223
|
+
- ​<!-- 23 -->[docs] Implement the new API display design (#37405) @alexfauquette
|
|
224
|
+
- ​<!-- 22 -->[docs] Update migration installation code blocks (#38028) @danilo-leal
|
|
225
|
+
- ​<!-- 21 -->[docs][joy] Revise the Joy UI Link page (#37829) @danilo-leal
|
|
226
|
+
- ​<!-- 20 -->[docs][joy] Add playground for Card component (#37820) @Studio384
|
|
227
|
+
- ​<!-- 19 -->[docs][joy] Add adjustments to the color inversion page (#37143) @danilo-leal
|
|
228
|
+
- ​<!-- 18 -->[docs][material] Improve documentation about adding custom colors (#37743) @DiegoAndai
|
|
229
|
+
- ​<!-- 17 -->[examples] Fix Joy UI Next.js App Router font loading (#38095) @IgnacioUtrilla
|
|
230
|
+
- ​<!-- 16 -->[examples] Fix material-next Font Usage with next/font (#38026) @onderonur
|
|
231
|
+
|
|
232
|
+
### Core
|
|
233
|
+
|
|
234
|
+
- ​<!-- 34 -->[blog] Update Discord invite link in Toolpad beta announcement (#38143) @samuelsycamore
|
|
235
|
+
- ​<!-- 33 -->[blog] Update discord server link (#38131) @prakhargupta1
|
|
236
|
+
- ​<!-- 31 -->[core] Fix rsc-builder removing the first line (#38134) @michaldudak
|
|
237
|
+
- ​<!-- 30 -->[core] Remove the deprecation rule in tslint (#38087) @michaldudak
|
|
238
|
+
- ​<!-- 09 -->[website] Mobile navigation: Toolpad to Beta (#38146) @bharatkashyap
|
|
239
|
+
- ​<!-- 08 -->[website] Fix typo on pricing page @oliviertassinari
|
|
240
|
+
- ​<!-- 07 -->[website] Fix a few regression (#38050) @oliviertassinari
|
|
241
|
+
- ​<!-- 06 -->[website] Update Demo footers on MUI X landing page (#38027) @richbustos
|
|
242
|
+
- ​<!-- 05 -->[website] Fix 301 redirection to base index page @oliviertassinari
|
|
243
|
+
- ​<!-- 04 -->[website] Fix Cell selection feature name (#38029) @oliviertassinari
|
|
244
|
+
- ​<!-- 03 -->[website] Improve button look (#38052) @oliviertassinari
|
|
245
|
+
- ​<!-- 02 -->[website] Link new core page to new Base UI landing page (#38030) @mj12albert
|
|
246
|
+
- ​<!-- 01 -->[website] Polish pricing page (#37975) @oliviertassinari
|
|
247
|
+
- ​<!-- 10 -->[test] Fail the CI when new unexpected files are created (#38039) @oliviertassinari
|
|
248
|
+
- ​<!-- 09 -->[test] Fix linting error by matching main component demo name to filename (#38122) @ZeeshanTamboli
|
|
249
|
+
|
|
250
|
+
All contributors of this release in alphabetical order: @alexfauquette, @Bestwebdesign, @bharatkashyap, @danilo-leal, @DiegoAndai, @harikrishnanp, @IgnacioUtrilla, @mbrookes, @michaldudak, @mj12albert, @mnajdova, @nikohoffren, @oliviertassinari, @onderonur, @prakhargupta1, @richbustos, @sai6855, @SaidMarar, @samuelsycamore, @siriwatknp, @Studio384, @zanivan, @ZeeshanTamboli
|
|
251
|
+
|
|
252
|
+
## 5.14.1
|
|
253
|
+
|
|
254
|
+
<!-- generated comparing v5.14.0..master -->
|
|
255
|
+
|
|
256
|
+
_Jul 19, 2023_
|
|
257
|
+
|
|
258
|
+
A big thanks to the 24 contributors who made this release possible. Here are some highlights ✨:
|
|
259
|
+
|
|
260
|
+
- 💫 Introducing some new components for Joy UI:
|
|
261
|
+
- [Skeleton](https://mui.com/joy-ui/react-skeleton/) component (#37893) @siriwatknp
|
|
262
|
+
- [ToggleButton](https://mui.com/joy-ui/react-toggle-button-group/) (#37716) @siriwatknp
|
|
263
|
+
- 🎉 Base UI has its own [landing page](https://www.mui.com/base-ui)!
|
|
264
|
+
- 🐛 bug fixes, 📚 documentation, and ⚙️ infrastructure improvements.
|
|
265
|
+
|
|
266
|
+
### `@mui/material@5.14.1`
|
|
267
|
+
|
|
268
|
+
- ​<!-- 14 -->[FormControlLabel] Fix misplaced asterisk when `labelPlacement` is provided (#37831) @ZeeshanTamboli
|
|
269
|
+
- ​<!-- 11 -->[Slider][material] Fix type dependency on @types/prop-types (#37853) @Methuselah96
|
|
270
|
+
- ​<!-- 10 -->[Menu] Add MuiMenuList to createTheme components key (#37956) @mj12albert
|
|
271
|
+
- ​<!-- 09 -->[Modal] Remove deprecated `BackdropComponent` and `BackdropProps` from tests (#38018) @sai6855
|
|
272
|
+
|
|
273
|
+
### `@mui/material-next@6.0.0-alpha.93`
|
|
274
|
+
|
|
275
|
+
- ​<!-- 54 -->[Slider][material-next] Add use client directive to useSliderElementsOverlap (#37955) @mj12albert
|
|
276
|
+
- ​<!-- 47 -->[Button][material-next] Fix some event handlers being ignored (#37647) @DiegoAndai
|
|
277
|
+
|
|
278
|
+
### `@mui/base@5.0.0-beta.8`
|
|
279
|
+
|
|
280
|
+
- ​<!-- 53 -->[Autocomplete] Make touch and click behavior on an option consistent (#37972) @divyammadhok
|
|
281
|
+
|
|
282
|
+
### `@mui/joy@5.0.0-alpha.88`
|
|
283
|
+
|
|
284
|
+
- ​<!-- 13 -->[Joy][Select] Fix type error caused by custom variant (#37996) @OmPr366
|
|
285
|
+
- ​<!-- 12 -->[ToggleButton][Joy] Add `ToggleButton` component (#37716) @siriwatknp
|
|
286
|
+
- ​<!-- 07 -->[Skeleton] Add Joy UI `Skeleton` component (#37893) @siriwatknp
|
|
287
|
+
|
|
288
|
+
### `@mui/utils@5.14.1`
|
|
289
|
+
|
|
290
|
+
- ​<!-- 06 -->[utils] Add function overload for `useEventCallback` (#37827) @cherniavskii
|
|
291
|
+
|
|
292
|
+
### Docs
|
|
293
|
+
|
|
294
|
+
- ​<!-- 52 -->[docs][base] Add Tailwind CSS & plain CSS demo on the form control page (#37914) @mnajdova
|
|
295
|
+
- ​<!-- 51 -->[docs][base] Make Base UI Select demos denser (#37836) @zanivan
|
|
296
|
+
- ​<!-- 38 -->[docs] Link Material UI from the landing page (#37971) @oliviertassinari
|
|
297
|
+
- ​<!-- 37 -->[docs] Fix the empty /components page (#38010) @brijeshb42
|
|
298
|
+
- ​<!-- 36 -->[docs] Checkout template follows user's color scheme preference (#37928) @OndrejHj04
|
|
299
|
+
- ​<!-- 35 -->[docs] Disable ad for onboarding pages (#37998) @oliviertassinari
|
|
300
|
+
- ​<!-- 34 -->[docs] Fix broken link to Base UI Next.js App Router (#37973) @oliviertassinari
|
|
301
|
+
- ​<!-- 33 -->[docs] Fix typo in next-js-app-router.md (#37974) @ericbrian
|
|
302
|
+
- ​<!-- 32 -->[docs] Add pnpm commands to Material UI Installation page (#36650) @officialrajdeepsingh
|
|
303
|
+
- ​<!-- 31 -->[docs] Link charts in the roadmap (#37944) @oliviertassinari
|
|
304
|
+
- ​<!-- 30 -->[docs] Improve changelog @oliviertassinari
|
|
305
|
+
- ​<!-- 29 -->[docs] Improve the Select docs (#37279) @michaldudak
|
|
306
|
+
- ​<!-- 16 -->[docs][menu] Add Tailwind CSS & plain CSS demo on the Menu page (#37856) @mnajdova
|
|
307
|
+
- ​<!-- 15 -->[example] Update EmotionCacheProvider to work with GlobalStyles (#37962) @siriwatknp
|
|
308
|
+
|
|
309
|
+
### Core
|
|
310
|
+
|
|
311
|
+
- ​<!-- 50 -->[blog] Add blog post about support for Next.js App Router (#37929) @samuelsycamore
|
|
312
|
+
- ​<!-- 49 -->[blog] Blog MUI X pro statement removed (#38015) @prakhargupta1
|
|
313
|
+
- ​<!-- 48 -->[blog] Add Toolpad beta announcement blog (#37799) @prakhargupta1
|
|
314
|
+
- ​<!-- 46 -->[core] Increase space available for sidenav @oliviertassinari
|
|
315
|
+
- ​<!-- 45 -->[core] Adds `component` prop to `OverrideProps` type (#35924) @sai6855
|
|
316
|
+
- ​<!-- 44 -->[core] Fix rsc build step in CI (#38019) @mj12albert
|
|
317
|
+
- ​<!-- 43 -->[core] Remove nx dependency (#37964) @Janpot
|
|
318
|
+
- ​<!-- 42 -->[core] Lock `@types/node` to v18 (#37965) @ZeeshanTamboli
|
|
319
|
+
- ​<!-- 41 -->[core] Update priority support issue template and prompt (#37824) @DanailH
|
|
320
|
+
- ​<!-- 40 -->[core] Remove warnings in docs:api (#37858) @alexfauquette
|
|
321
|
+
- ​<!-- 39 -->[core] Make rimraf work after a major update (#37930) @michaldudak
|
|
322
|
+
- ​<!-- 28 -->[docs-infra] Change the Diamond Sponsor block positioning on the side nav (#37933) @danilo-leal
|
|
323
|
+
- ​<!-- 27 -->[docs-infra] Support backticks in the codeblocks (#37950) @cherniavskii
|
|
324
|
+
- ​<!-- 26 -->[docs-infra] Improve performance hideToolbar: true (#37969) @oliviertassinari
|
|
325
|
+
- ​<!-- 25 -->[docs-infra] Fix button label on mobile (#37997) @oliviertassinari
|
|
326
|
+
- ​<!-- 24 -->[docs-infra] Square drawer corners (#37970) @oliviertassinari
|
|
327
|
+
- ​<!-- 23 -->[docs-infra] Improve tab contrast in codeblock (#38000) @oliviertassinari
|
|
328
|
+
- ​<!-- 22 -->[docs-infra] Fix API generation for Base UI (#37941) @oliviertassinari
|
|
329
|
+
- ​<!-- 21 -->[docs-infra] Fix layout shift on xGrid (#37954) @oliviertassinari
|
|
330
|
+
- ​<!-- 20 -->[docs-infra] Update installation commands to use the new tabs code component (#37927) @danilo-leal
|
|
331
|
+
- ​<!-- 19 -->[docs-infra] Improve disableToc={true} support (#37931) @oliviertassinari
|
|
332
|
+
- ​<!-- 18 -->[docs-infra] Remove icons and tweak the design of the side nav (#37860) @danilo-leal
|
|
333
|
+
- ​<!-- 17 -->[docs-infra] Fix TypeScrit error in demo export (#37830) @oliviertassinari
|
|
334
|
+
- ​<!-- 08 -->[notifications] Add notification for first Charts release (#37679) @joserodolfofreitas
|
|
335
|
+
- ​<!-- 05 -->[website] Add Base UI marketing page (#36622) @siriwatknp
|
|
336
|
+
- ​<!-- 04 -->[website] Update MUI X landing page (#37966) @cherniavskii
|
|
337
|
+
- ​<!-- 03 -->[website] Fix a11y issues (#37999) @oliviertassinari
|
|
338
|
+
- ​<!-- 02 -->[website] Make the Core page refer to group of products (#37608) @danilo-leal
|
|
339
|
+
- ​<!-- 01 -->[website] Add perpetual option to pricing page (#35504) @joserodolfofreitas
|
|
340
|
+
|
|
341
|
+
All contributors of this release in alphabetical order: @alexfauquette, @brijeshb42, @cherniavskii, @DanailH, @danilo-leal, @DiegoAndai, @divyammadhok, @ericbrian, @Janpot, @joserodolfofreitas, @Methuselah96, @michaldudak, @mj12albert, @mnajdova, @officialrajdeepsingh, @oliviertassinari, @OmPr366, @OndrejHj04, @prakhargupta1, @sai6855, @samuelsycamore, @siriwatknp, @zanivan, @ZeeshanTamboli
|
|
342
|
+
|
|
343
|
+
## 5.14.0
|
|
344
|
+
|
|
345
|
+
<!-- generated comparing v5.13.7..master -->
|
|
346
|
+
|
|
347
|
+
_Jul 11, 2023_
|
|
348
|
+
|
|
349
|
+
A big thanks to the 15 contributors who made this release possible. Here are some highlights ✨:
|
|
350
|
+
|
|
351
|
+
- 💫 Material UI, Joy UI, and Base UI are compatible with [NextJS App Router](https://nextjs.org/docs/app) (#37656) @mj12albert
|
|
352
|
+
- 📚 Added new guides for integrating with Next.js 13 App Router (#37656) @mj12albert
|
|
353
|
+
- Ⓜ️ [Material UI guide](https://mui.com/material-ui/guides/next-js-app-router/)
|
|
354
|
+
- 🅙 [Joy UI guide](https://mui.com/joy-ui/guides/next-js-app-router/)
|
|
355
|
+
- 🅱️ [Base UI guide](https://mui.com/base-ui/guides/next-js-app-router/)
|
|
356
|
+
- 🐛 bug fixes, 📚 documentation, and ⚙️ infrastructure improvements.
|
|
357
|
+
|
|
358
|
+
### `@mui/material@5.14.0`
|
|
359
|
+
|
|
360
|
+
- [Autocomplete] Enable global customization of different options (#36971) @nicolas-ot
|
|
361
|
+
|
|
362
|
+
### `@mui/material-next@6.0.0-alpha.92`
|
|
363
|
+
|
|
364
|
+
- [Slider][material-next] Slider restructure and style improvements (#37644) @DiegoAndai
|
|
365
|
+
|
|
366
|
+
### `@mui/joy@5.0.0-alpha.87`
|
|
367
|
+
|
|
368
|
+
- [ButtonGroup] Fix style for single Button (#37692) @MaybePixem
|
|
369
|
+
- Fix theme typography fallback value (#37845) @siriwatknp
|
|
370
|
+
|
|
371
|
+
### `@mui/icons-material@5.14.0`
|
|
372
|
+
|
|
373
|
+
- [icons-material] Rebuild icons with `"use client"` (#37894) @mj12albert
|
|
374
|
+
|
|
375
|
+
### Docs
|
|
376
|
+
|
|
377
|
+
- [docs] Polish Ukraine banner (#37905) @oliviertassinari
|
|
378
|
+
- [docs] Reduce Ukraine banner size (#34795) @oliviertassinari
|
|
379
|
+
- [docs] Add callouts about controlled vs uncontrolled components in Core docs (#37849) @samuelsycamore
|
|
380
|
+
- [docs] Add missing Portal elements to Tailwind CSS interoperability guide (#37807) @enrique-ramirez
|
|
381
|
+
- [docs] Small pickers migration improvement (#37815) @alexfauquette
|
|
382
|
+
- [docs] Fix pickers product name (#37825) @LukasTy
|
|
383
|
+
- [docs][Joy][Link] Set `variant` and `color` defaults for the playground (#37817) @Studio384
|
|
384
|
+
- [docs][Joy][Table] Add `undefined` as an option to `stripe` (#37816) @Studio384
|
|
385
|
+
- [docs][base] Add Tailwind CSS & plain CSS demo on the Snackbar page (#37812) @mnajdova
|
|
386
|
+
- [docs][base] Add Tailwind CSS & plain CSS demo on Badge page (#37768) @mnajdova
|
|
387
|
+
- [docs][base] Fix Nested modal demo positioning (#37506) @gitstart
|
|
388
|
+
- [docs][base] Add Tailwind CSS & plain CSS demo on the Switch page (#37728) @mnajdova
|
|
389
|
+
- [docs-infra] Remove code tags in ToC (#37834) @cherniavskii
|
|
390
|
+
- [docs-infra] Fixes in API pages generation (#37813) @mnajdova
|
|
391
|
+
- [docs-infra] Add test case when using sh (#37818) @oliviertassinari
|
|
392
|
+
- [docs-infra] Use icons instead of words for the code copy button (#37664) @danilo-leal
|
|
393
|
+
- [docs-infra] Fix code parser (#37828) @alexfauquette
|
|
394
|
+
- [docs-infra] Fix `marked` deprecation warning (#37769) @alexfauquette
|
|
395
|
+
- [docs-infra] Allows to use codeblock in the docs (#37643) @alexfauquette
|
|
396
|
+
- [docs-infra][joy] Change Joy UI's playground variant selector (#37821) @danilo-leal
|
|
397
|
+
|
|
398
|
+
### Core
|
|
399
|
+
|
|
400
|
+
- [core] Prepend "use-client" directive + add docs and examples for using MUI libraries with Next.js App Router (#37656) @mj12albert
|
|
401
|
+
- [core] Fix imports to React (#37863) @oliviertassinari
|
|
402
|
+
- [core] Disambiguate eslint plugin name @oliviertassinari
|
|
403
|
+
- [core] Sync the lint script name with the other repositories @oliviertassinari
|
|
404
|
+
- [core] Point to Crowdin directly @oliviertassinari
|
|
405
|
+
- [website] Sync career page (#37847) @oliviertassinari
|
|
406
|
+
|
|
407
|
+
All contributors of this release in alphabetical order: @alexfauquette, @cherniavskii, @danilo-leal, @DiegoAndai, @enrique-ramirez, @gitstart, @LukasTy, @MaybePixem, @mj12albert, @mnajdova, @nicolas-ot, @oliviertassinari, @samuelsycamore, @siriwatknp, @Studio384
|
|
408
|
+
|
|
409
|
+
## 5.13.7
|
|
410
|
+
|
|
411
|
+
<!-- generated comparing v5.13.6..master -->
|
|
412
|
+
|
|
413
|
+
_Jul 4, 2023_
|
|
414
|
+
|
|
415
|
+
A big thanks to the 21 contributors who made this release possible.
|
|
416
|
+
This release focuses primarily on 🐛 bug fixes, 📚 documentation, and ⚙️ infrastructure improvements.
|
|
417
|
+
|
|
418
|
+
### `@mui/material@5.13.7`
|
|
419
|
+
|
|
420
|
+
- [OutlinedInput] Fix form control properties in `ownerState` (#37668) @vonagam
|
|
421
|
+
|
|
422
|
+
### `@mui/system@5.13.7`
|
|
423
|
+
|
|
424
|
+
- [Stack] Fix spacing when there are `<style>` children (#34966) @cmd-johnson
|
|
425
|
+
|
|
426
|
+
### `@mui/icons-material@5.13.7`
|
|
427
|
+
|
|
428
|
+
- [icons] Add Microsoft logo (#37717) @zephyrus21
|
|
429
|
+
|
|
430
|
+
### `@mui/joy@5.0.0-alpha.86`
|
|
431
|
+
|
|
432
|
+
- [Autocomplete][joy] Fix Autocomplete and Modal components to work together (#37515) @saikathalderr
|
|
433
|
+
- [Menu][Joy] Improve UX of `Menu` usage demo (#37797) @sai6855
|
|
434
|
+
|
|
435
|
+
### `@mui/base@5.0.0-beta.6`
|
|
436
|
+
|
|
437
|
+
- [Slider][base][material][joy] Fix not draggable on the edge when `disableSwap={true}` (#35998) @sai6855
|
|
438
|
+
- [Slider][base] Provide slot state to Slider's thumb slot props callback (#37749) @mnajdova
|
|
439
|
+
- [Tabs] Wrap TabsList context creation in useMemo (#37370) @michaldudak
|
|
440
|
+
- [TextareaAutosize] Fix wrong height measurement (#37185) @bigteech
|
|
441
|
+
|
|
442
|
+
### `@mui/lab@5.0.0-alpha.135`
|
|
443
|
+
|
|
444
|
+
- [Timeline] Fix position `alternate-reverse` generated classname (#37678) @ZeeshanTamboli
|
|
445
|
+
|
|
446
|
+
### Docs
|
|
447
|
+
|
|
448
|
+
- [docs][base] Add demo for using the Button as a link (#37317) @AdamSundberg
|
|
449
|
+
- [docs][base] Add Tailwind CSS + plain CSS demo on the Select page (#37725) @mnajdova
|
|
450
|
+
- [docs][base] Make Base UI input demos denser (#37750) @zanivan
|
|
451
|
+
- [docs][base] Make Base UI button demos denser (#37689) @zanivan
|
|
452
|
+
- [docs][base] Add Tailwind CSS & plain CSS demos on the Input page (#37685) @mnajdova
|
|
453
|
+
- [docs][base] Fix horizontal scrolling on the mobile input page (#37688) @zanivan
|
|
454
|
+
- [docs] Improve Base UI index page (#37761) @oliviertassinari
|
|
455
|
+
- [docs] Fix incorrect package URL in README of example material-vite (#37755) @Dlouxgit
|
|
456
|
+
- [docs] Explain how to disable Base Select's portal (#37684) @michaldudak
|
|
457
|
+
- [docs] Shorten overview page URLs (#37660) @oliviertassinari
|
|
458
|
+
- [docs][material] Rename custom tab panel in Tabs demo to prevent confusion with @mui/lab (#37638) @MUK-Dev
|
|
459
|
+
- [docs][tabs] Document how to use routing with Tabs in Base UI (#37369) @michaldudak
|
|
460
|
+
- [docs] Rename product to productId (#37801) @siriwatknp
|
|
461
|
+
- [docs][base] Add Tailwind CSS & plain CSS demo on the Slider page (#37736) @mnajdova
|
|
462
|
+
|
|
463
|
+
### Core
|
|
464
|
+
|
|
465
|
+
- [docs–infra] Prevent displaying multiple ads (#37696) @oliviertassinari
|
|
466
|
+
- [blog] Fix mismatch between plan and link @oliviertassinari
|
|
467
|
+
- [core] Update yarn lockfile (#37802) @michaldudak
|
|
468
|
+
- [core] Add bundle size Toolpad app link to PRs (#36311) @Janpot
|
|
469
|
+
- [core] Fix priority support prompt action flow (#37726) @DanailH
|
|
470
|
+
- [core] Fix typo in priority support @oliviertassinari
|
|
471
|
+
- [core][docs] add Eslint rule to ensure main demo component match file… (#37278) @alexfauquette
|
|
472
|
+
- [docs-infra] Fix truncated TOCs scrollbar (#37770) @oliviertassinari
|
|
473
|
+
- [docs-infra] Adjust demo container to be glued to the toolbar (#37744) @danilo-leal
|
|
474
|
+
- [docs-infra] Fix layout shift ad (#37694) @oliviertassinari
|
|
475
|
+
- [docs-infra] Improve demos toolbar (#37762) @oliviertassinari
|
|
476
|
+
- [docs-infra] Make the GitHub link in the nav bar open in a new tab (#37766) @gateremark
|
|
477
|
+
- [docs-infra] Allow to persist icons in ToC (#37731) @cherniavskii
|
|
478
|
+
- [docs-infra] Improve product mapping (#37729) @oliviertassinari
|
|
479
|
+
- [docs-infra] Add design polish to the comment and anchor buttons (#37734) @danilo-leal
|
|
480
|
+
- [docs-infra] Tweak editable code blocks callout design (#37681) @danilo-leal
|
|
481
|
+
- [docs-infra] Improve the edit page experience (#37695) @oliviertassinari
|
|
482
|
+
- [docs-infra] Support rendering markdown outside of docs (#37691) @oliviertassinari
|
|
483
|
+
- [docs-infra] Polish demo toolbar button designs (#37680) @danilo-leal
|
|
484
|
+
- [docs-infra] Adjust demo component container design (#37659) @danilo-leal
|
|
485
|
+
- [test] Fix test:e2e local run (#37719) @oliviertassinari
|
|
486
|
+
- [test] Remove failing test in dev @oliviertassinari
|
|
487
|
+
- [website] Add no-op service worker to fix stale cache issue (#37607) @cherniavskii
|
|
488
|
+
- [website] Transition the Core page to be Material UI instead (#37583) @danilo-leal
|
|
489
|
+
- [website] Update the pricing page to reflect sales (#37751) @oliviertassinari
|
|
490
|
+
- [website] Match Copyright with the rest of the website @oliviertassinari
|
|
491
|
+
- [website] Support deep linking to pricing FAQ @oliviertassinari
|
|
492
|
+
|
|
493
|
+
All contributors of this release in alphabetical order: @AdamSundberg, @alexfauquette, @bigteech, @cherniavskii, @cmd-johnson, @DanailH, @danilo-leal, @Dlouxgit, @gateremark, @Janpot, @michaldudak, @mnajdova, @MUK-Dev, @oliviertassinari, @sai6855, @saikathalderr, @siriwatknp, @vonagam, @zanivan, @ZeeshanTamboli, @zephyrus21
|
|
494
|
+
|
|
495
|
+
## 5.13.6
|
|
496
|
+
|
|
497
|
+
_Jun 21, 2023_
|
|
498
|
+
|
|
499
|
+
A big thanks to the 25 contributors who made this release possible. Here are some highlights ✨:
|
|
500
|
+
|
|
501
|
+
- 💫 Added [Slider](https://mui.com/material-ui/react-slider/#material-you-version) component using the new Material You design language (#37520) @DiegoAndai.
|
|
502
|
+
- 📚 Added [examples](https://github.com/mui/material-ui/tree/master/examples/material-ui-nextjs-ts) showcasing how you can use Material UI with next.js's app directory (#37315) @smo043
|
|
503
|
+
|
|
504
|
+
### `@mui/material@5.13.6`
|
|
505
|
+
|
|
506
|
+
- ​<!-- 45 -->[Autocomplete] Fixed autocomplete's existing option selection (#37012) @bencevoros
|
|
507
|
+
- ​<!-- 44 -->[Autocomplete] Add hint demos to Material UI and Joy UI docs (#37496) @sai6855
|
|
508
|
+
- ​<!-- 13 -->[Masonry] Fix ResizeObserver loop limit exceeded error (#37208) @hbjORbj
|
|
509
|
+
- ​<!-- 11 -->[Tooltip][material] Improve warning when Tooltip receives string child (#37530) @DiegoAndai
|
|
510
|
+
- ​<!-- 10 -->[Modal] Add missing members to ModalOwnProps (#37568) @ivp-dev
|
|
511
|
+
- ​<!-- 09 -->[Slider] Arrow keys control does not work with float numbers (#37071) @gitstart
|
|
512
|
+
- ​<!-- 08 -->[SvgIcon] allow `svg` as a child (#37231) @siriwatknp
|
|
513
|
+
- ​<!-- 07 -->[Timeline] Add alternate reverse position (#37311) @abhinavkmrru
|
|
514
|
+
- ​<!-- 06 -->[Tooltip] Fix type of sx prop in `slotProps` (#37550) @SuperKXT
|
|
515
|
+
- ​<!-- 05 -->[TouchRipple] perf: avoid calling `clearTimeout()` (#37512) @romgrk
|
|
516
|
+
|
|
517
|
+
### `@mui/material-next@6.0.0-alpha.90`
|
|
518
|
+
|
|
519
|
+
- ​<!-- 12 -->[Material You] Add Slider component with Material You design (#37520) @DiegoAndai
|
|
520
|
+
|
|
521
|
+
### `@mui/joy@5.0.0-alpha.85`
|
|
522
|
+
|
|
523
|
+
- ​<!-- 37 -->[ButtonGroup][joy] Missing border when spacing is more than zero (#37577) @siriwatknp
|
|
524
|
+
- ​<!-- 36 -->[CardActions][joy] Add `CardActions` component (#37441) @siriwatknp
|
|
525
|
+
- ​<!-- 14 -->[Menu][joy] Fix closing of `Menu` in demos (#36917) @sai6855
|
|
526
|
+
|
|
527
|
+
### `@mui/base@5.0.0-beta.5`
|
|
528
|
+
|
|
529
|
+
- ​<!-- 39 -->[Menu][base] Add the resetHighlight action (#37392) @michaldudak
|
|
530
|
+
- ​<!-- 38 -->[Select][base] Expose the `areOptionsEqual` prop (#37615) @michaldudak
|
|
531
|
+
|
|
532
|
+
### `@mui/utils@5.13.2`
|
|
533
|
+
|
|
534
|
+
- ​<!-- 04 -->[utils] Allow nested imports in @mui/utils to speed up build (#37586) @flaviendelangle
|
|
535
|
+
|
|
536
|
+
### Docs
|
|
537
|
+
|
|
538
|
+
- ​<!-- 43 -->[docs][base] Improve Base UI all components images (#37590) @danilo-leal
|
|
539
|
+
- ​<!-- 42 -->[docs][base] Add pages for coming soon components (#37575) @danilo-leal
|
|
540
|
+
- ​<!-- 41 -->[docs][base] Add a Snackbar introduction demo (#37602) @danilo-leal
|
|
541
|
+
- ​<!-- 40 -->[docs][base] Add page for all Base UI components (#37536) @danilo-leal
|
|
542
|
+
- ​<!-- 33 -->[docs] Fix scrollbar on snackbar page (#37657) @oliviertassinari
|
|
543
|
+
- ​<!-- 32 -->[docs] Switch order of snackbar buttons in demos (#37389) @Primajin
|
|
544
|
+
- ​<!-- 31 -->[docs] Add support for Tailwind CSS and plain CSS demos (#37319) @mnajdova
|
|
545
|
+
- ​<!-- 30 -->[docs] Tree view color fix for dark mode in Gmail example (#37051) @PunitSoniME
|
|
546
|
+
- ​<!-- 29 -->[docs] Inline the Base UI demo (#37603) @oliviertassinari
|
|
547
|
+
- ​<!-- 28 -->[docs] Fix typo in themed components page (#37598) @vinayr
|
|
548
|
+
- ​<!-- 27 -->[docs] Fix render inline code in CSS description generation (#37448) @alexfauquette
|
|
549
|
+
- ​<!-- 26 -->[docs] Add styles to styled argument list (#37558) @DiegoAndai
|
|
550
|
+
- ​<!-- 25 -->[docs] Improve awkward wording in READMEs of example projects (#37110) @DIWAKARKASHYAP
|
|
551
|
+
- ​<!-- 24 -->[docs] Fix small base -> base-ui migration issue (#37594) @oliviertassinari
|
|
552
|
+
- ​<!-- 23 -->[docs] Fix GitHub typo (#37578) @oliviertassinari
|
|
553
|
+
- ​<!-- 22 -->[docs] Improve release guide (#37547) @DiegoAndai
|
|
554
|
+
- ​<!-- 21 -->[docs] Review fixes to the Material UI's "Example projects" page (#37444) @danilo-leal
|
|
555
|
+
- ​<!-- 17 -->[docs][joy] Add a messages template (#37546) @sernstberger
|
|
556
|
+
- ​<!-- 16 -->[docs][joy] Add pages for coming soon Joy UI components (#36920) @danilo-leal
|
|
557
|
+
- ​<!-- 15 -->[docs][joy] Add design and consistency tweaks to the Playground (#37580) @danilo-leal
|
|
558
|
+
- ​<!-- 37 -->[docs] Add and revise Base UI + Create React App examples (#36825) @samuelsycamore
|
|
559
|
+
- ​<!-- 20 -->[docs-infra] Fix demos border radius (#37658) @oliviertassinari
|
|
560
|
+
- ​<!-- 19 -->[docs-infra] Add analyticsTags to Algolia (#37600) @Janpot
|
|
561
|
+
- ​<!-- 18 -->[docs-infra] Simplify product id handling (#37593) @oliviertassinari
|
|
562
|
+
- ​<!-- 35 -->[CHANGELOG] Add missing release date for v5.13.5 @oliviertassinari
|
|
563
|
+
- ​<!-- 16 -->[examples] Shell command fix in the readme file of material-next-ts example (#37675) @bablukpik
|
|
564
|
+
- ​<!-- 15 -->[examples] Next.js v13 app router with Material UI (#37315) @smo043
|
|
565
|
+
|
|
566
|
+
### Core
|
|
567
|
+
|
|
568
|
+
- ​<!-- 34 -->[core] Update to Node.js v18 for `test-dev` CI (#37604) @ZeeshanTamboli
|
|
569
|
+
- ​<!-- 39 -->[core] Add priority support issue template (#37671) @DanailH
|
|
570
|
+
- ​<!-- 03 -->[website] Update roadmap page (#37587) @cherniavskii
|
|
571
|
+
- ​<!-- 02 -->[website] Add CSP to limit iframes to self @oliviertassinari
|
|
572
|
+
- ​<!-- 01 -->[website] Link mui-x Stack Overflow in footer link (#37509) @richbustos
|
|
573
|
+
|
|
574
|
+
All contributors of this release in alphabetical order: @abhinavkmrru, @alexfauquette, @bencevoros, @cherniavskii, @danilo-leal, @DiegoAndai, @DIWAKARKASHYAP, @flaviendelangle, @gitstart, @hbjORbj, @ivp-dev, @Janpot, @michaldudak, @mnajdova, @oliviertassinari, @Primajin, @PunitSoniME, @richbustos, @romgrk, @sai6855, @sernstberger, @siriwatknp, @SuperKXT, @vinayr, @ZeeshanTamboli
|
|
575
|
+
|
|
576
|
+
## 5.13.5
|
|
577
|
+
|
|
578
|
+
_Jun 12, 2023_
|
|
579
|
+
|
|
580
|
+
A big thanks to the 9 contributors who made this release possible. Here are some highlights ✨:
|
|
581
|
+
|
|
582
|
+
- 💫 Added `ButtonGroup` component in Joy UI (#37407) @siriwatknp.
|
|
583
|
+
- 🐛 bug fixes and 📚 documentation improvements.
|
|
584
|
+
|
|
585
|
+
### `@mui/material@5.13.5`
|
|
586
|
+
|
|
587
|
+
- ​<!-- 03 -->[Material][Popover] Add support for virtual element as anchorEl (#37465) @DiegoAndai
|
|
588
|
+
|
|
589
|
+
### `@mui/joy@5.0.0-alpha.84`
|
|
590
|
+
|
|
591
|
+
- ​<!-- 20 -->[ButtonGroup][joy] Replace `detached` prop with `spacing`. (#37562) @siriwatknp
|
|
592
|
+
- ​<!-- 19 -->[ButtonGroup][joy] Add `ButtonGroup` component (#37407) @siriwatknp
|
|
593
|
+
- ​<!-- 04 -->[Input][joy] Simplify focus with `:focus-within` and add examples (#37385) @siriwatknp
|
|
594
|
+
|
|
595
|
+
### Docs
|
|
596
|
+
|
|
597
|
+
- ​<!-- 17 -->[docs] Move Toolpad from alpha to beta (#37288) @bharatkashyap
|
|
598
|
+
- ​<!-- 16 -->[docs] Add usage of createCssVarsProvider (#37513) @brijeshb42
|
|
599
|
+
- ​<!-- 15 -->[docs] Update /base url references to /base-ui (#37412) @brijeshb42
|
|
600
|
+
- ​<!-- 14 -->[docs] Skip components and hooks due to duplicate index (#37539) @siriwatknp
|
|
601
|
+
- ​<!-- 13 -->[docs] Polish Sign in to your account joy demo (#37498) @oliviertassinari
|
|
602
|
+
- ​<!-- 12 -->[docs] Remove outdated Material UI FAQ @oliviertassinari
|
|
603
|
+
- ​<!-- 11 -->[docs] Fix crash access to localStorage in Firefox (#37518) @brijeshb42
|
|
604
|
+
- ​<!-- 10 -->[docs-infra] Enforce max length on description (#37565) @oliviertassinari
|
|
605
|
+
- ​<!-- 09 -->[docs-infra] Mandatory versions (#37497) @oliviertassinari
|
|
606
|
+
- ​<!-- 08 -->[docs-infra] Fix lighthouse img size issue (#37415) @oliviertassinari
|
|
607
|
+
- ​<!-- 07 -->[docs][joy] Replace JoyInput with Input component in JoyUI Text Field documentation (#37548) @musama619
|
|
608
|
+
- ​<!-- 06 -->[docs][joy] Add typography introduction demo component (#37553) @sernstberger
|
|
609
|
+
- ​<!-- 05 -->[docs][joy] Add a rental dashboard template (#37453) @sernstberger
|
|
610
|
+
|
|
611
|
+
### Core
|
|
612
|
+
|
|
613
|
+
- ​<!-- 21 -->Move the React Community Engineer - X in Open Roles (#37552) @DanailH
|
|
614
|
+
- ​<!-- 18 -->[core] Update Node.js version to v18 on CircleCI, CodeSandbox, and Netlify (#37173) @ZeeshanTamboli
|
|
615
|
+
- ​<!-- 02 -->[website] RIDI gold sponsorship end (#37517) @oliviertassinari
|
|
616
|
+
- ​<!-- 01 -->[website] Update X landing page (#37387) @cherniavskii
|
|
617
|
+
|
|
618
|
+
All contributors of this release in alphabetical order: @brijeshb42, @cherniavskii, @DanailH, @DiegoAndai, @musama619, @oliviertassinari, @sernstberger, @siriwatknp, @ZeeshanTamboli
|
|
619
|
+
|
|
620
|
+
## 5.13.4
|
|
621
|
+
|
|
622
|
+
<!-- generated comparing v5.13.3..master -->
|
|
623
|
+
|
|
624
|
+
_Jun 5, 2023_
|
|
625
|
+
|
|
626
|
+
A big thanks to the 12 contributors who made this release possible. Here are some highlights ✨:
|
|
627
|
+
|
|
628
|
+
### `@mui/material@5.13.4`
|
|
629
|
+
|
|
630
|
+
- ​<!-- 20 -->[Autocomplete][material] Add missing `focusVisible` class in AutocompleteClasses (#37502) @sai6855
|
|
631
|
+
- ​<!-- 04 -->[Menu][material] Fix MenuPaper class composition precedence (#37390) @DiegoAndai
|
|
632
|
+
- ​<!-- 03 -->[MenuList] Fix to allow conditional rendering for a menu item under ListSubheader (#36890) @danielplewes
|
|
633
|
+
- ​<!-- 02 -->[Stepper] Handle progress bar of mobile stepper when `steps` is one (#37079) @gitstart
|
|
634
|
+
|
|
635
|
+
### `@mui/base@5.0.0-beta.4`
|
|
636
|
+
|
|
637
|
+
- ​<!-- 16 -->[Input][base] Fix calling slotProps event handlers (#37463) @sai6855
|
|
638
|
+
|
|
639
|
+
### `@mui/joy@5.0.0-alpha.82`
|
|
640
|
+
|
|
641
|
+
- ​<!-- 19 -->[Avatar][joy] Fallback to `alt` when `src` or `srcSet` are not defined (#37469) @vishalthatipamula0219
|
|
642
|
+
- ​<!-- 15 -->[Card][joy] Improve usability of card family (#37474) @siriwatknp
|
|
643
|
+
|
|
644
|
+
### Docs
|
|
645
|
+
|
|
646
|
+
- ​<!-- 18 -->[docs][base] useAutocomplete demos & docs (#37029) @mj12albert
|
|
647
|
+
- ​<!-- 17 -->[docs][base] Remove usage of `component` prop in docs (#37462) @sai6855
|
|
648
|
+
- ​<!-- 13 -->[docs] Fix docs redirections @oliviertassinari
|
|
649
|
+
- ​<!-- 12 -->[docs] Fix Fluent -> Fluent UI @oliviertassinari
|
|
650
|
+
- ​<!-- 11 -->[docs] Fix MUI Base -> Base UI @oliviertassinari
|
|
651
|
+
- ​<!-- 10 -->[docs] Add base-vite-tailwind example repo (#36994) @mj12albert
|
|
652
|
+
- ​<!-- 09 -->[docs] Fix search bar layout shift (#37460) @oliviertassinari
|
|
653
|
+
- ​<!-- 08 -->[docs] Tweak Material UI's "Showcase" page design (#37259) @danilo-leal
|
|
654
|
+
- ​<!-- 07 -->[docs] Tweak Material UI's "Template" page design (#37260) @danilo-leal
|
|
655
|
+
- ​<!-- 06 -->[docs] Fix "Language" page removal leftovers (#37408) @danilo-leal
|
|
656
|
+
- ​<!-- 05 -->[docs] Move contents of css-variables to sibling pages (#37411) @brijeshb42
|
|
657
|
+
|
|
658
|
+
### Core
|
|
659
|
+
|
|
660
|
+
- ​<!-- 14 -->[core] Do not let Renovate handle `examples` packages updates (#37386) @ZeeshanTamboli
|
|
661
|
+
- ​<!-- 01 -->[website] Add header filters to the pricing table (#37455) @MBilalShafi
|
|
662
|
+
|
|
663
|
+
All contributors of this release in alphabetical order: @brijeshb42, @danielplewes, @danilo-leal, @DiegoAndai, @gitstart, @MBilalShafi, @mj12albert, @oliviertassinari, @sai6855, @siriwatknp, @vishalthatipamula0219, @ZeeshanTamboli
|
|
664
|
+
|
|
665
|
+
## 5.13.3
|
|
666
|
+
|
|
667
|
+
<!-- generated comparing v5.13.2..master -->
|
|
668
|
+
|
|
669
|
+
_May 29, 2023_
|
|
670
|
+
|
|
671
|
+
A big thanks to the 15 contributors who made this release possible.
|
|
672
|
+
This release focuses primarily on 🐛 bug fixes and 📚 documentation improvements.
|
|
673
|
+
|
|
674
|
+
### `@mui/material@5.13.3
|
|
675
|
+
|
|
676
|
+
- ​<!-- 22 -->[Autocomplete] Accept external Listbox ref (#37325) @sai6855
|
|
677
|
+
- ​<!-- 06 -->[Modal] Pass `className` from `BackdropProps` (#37399) @hbjORbj
|
|
678
|
+
|
|
679
|
+
### `@mui/base@5.0.0-beta.3`
|
|
680
|
+
|
|
681
|
+
- ​<!-- 20 -->[base] Maintain nodes document order in compound components (#36857) @michaldudak
|
|
682
|
+
- ​<!-- 19 -->[base][joy] Prevent persisting hover state styles onclick on mobile (#36704) @gitstart
|
|
683
|
+
- ​<!-- 18 -->[Menu][base] MenuItem as a link does not work (#37242) @nicolas-ot
|
|
684
|
+
- ​<!-- 17 -->[MenuItem][Base] Pass idGenerator function (#37364) @sai6855
|
|
685
|
+
- ​<!-- 16 -->[Slider][Base] Add Vertical slider demo (#37357) @sai6855
|
|
686
|
+
|
|
687
|
+
### `@mui/joy@5.0.0-alpha.82`
|
|
688
|
+
|
|
689
|
+
- ​<!-- 23 -->[Select][joy] Fix popup does not close (#37435) @siriwatknp
|
|
690
|
+
- ​<!-- 21 -->[Badge][Joy] Fix `slots` element type in API docs (#37329) @zignis
|
|
691
|
+
- ​<!-- 04 -->[Select] [joy] Handle long text content (#37289) @akash191095
|
|
692
|
+
- ​<!-- 07 -->[Tooltip][Joy] Interactive doesn't work (#37159) @nicolas-ot
|
|
693
|
+
|
|
694
|
+
### `@mui/codemod@5.13.3
|
|
695
|
+
|
|
696
|
+
- ​<!-- 05 -->[mui-codemod] Add missing script to README (#37377) @hbjORbj
|
|
697
|
+
|
|
698
|
+
### Docs
|
|
699
|
+
|
|
700
|
+
- ​<!-- 14 -->[docs] Clarify Hidden down props as exclusive (#36927) @canac
|
|
701
|
+
- ​<!-- 13 -->[docs] Add refine to Material UI "Related projects" and "More advanced example projects" pages (#37308) @necatiozmen
|
|
702
|
+
- ​<!-- 12 -->[docs] Remove todo link from sidebar (#37373) @brijeshb42
|
|
703
|
+
- ​<!-- 11 -->[docs] Clarify the peer dependency with react (#37360) @oliviertassinari
|
|
704
|
+
- ​<!-- 10 -->[docs] Divider vertical middle prop migration (#36840) @JhonnK08
|
|
705
|
+
- ​<!-- 09 -->[docs] Fix branding theme tabs and navigation bar regressions (#37362) @ZeeshanTamboli
|
|
706
|
+
- ​<!-- 08 -->[docs-infra] Throw on incorrect internal links (#37326) @oliviertassinari
|
|
707
|
+
|
|
708
|
+
### Core
|
|
709
|
+
|
|
710
|
+
- ​<!-- 15 -->[core] Include scoped JSX namespace when resolving props (#37404) @LukasTy
|
|
711
|
+
- ​<!-- 03 -->[test][useMediaQuery] Change SSR test description (#37403) @zignis
|
|
712
|
+
- ​<!-- 02 -->[website] Sync with Ashby @oliviertassinari
|
|
713
|
+
- ​<!-- 01 -->[website] Add David to about page (#37379) @DavidCnoops
|
|
714
|
+
|
|
715
|
+
All contributors of this release in alphabetical order: @akash191095, @brijeshb42, @canac, @DavidCnoops, @gitstart, @hbjORbj, @JhonnK08, @LukasTy, @michaldudak, @necatiozmen, @nicolas-ot, @oliviertassinari, @sai6855, @ZeeshanTamboli, @zignis
|
|
716
|
+
|
|
717
|
+
## 5.13.2
|
|
718
|
+
|
|
719
|
+
<!-- generated comparing v5.13.1..master -->
|
|
720
|
+
|
|
721
|
+
_May 22, 2023_
|
|
722
|
+
|
|
723
|
+
A big thanks to the 12 contributors who made this release possible.
|
|
724
|
+
📚 This release focuses primarily on documentation improvements.
|
|
725
|
+
|
|
726
|
+
### `@mui/material@5.13.2
|
|
727
|
+
|
|
728
|
+
- [Slider] Tooltip positioning fixed for vertical slider (#37049) @PunitSoniME
|
|
729
|
+
|
|
730
|
+
### Docs
|
|
731
|
+
|
|
732
|
+
- [docs][base] Remove default annotations from useTabsList return type (#37324) @TinaSay
|
|
733
|
+
- [docs][base] Remove default annotations from useTabPanel return type (#37323) @TinaSay
|
|
734
|
+
- [docs][base] Remove default annotations from useSwitch return type (#37322) @TinaSay
|
|
735
|
+
- [docs][base] Remove default annotations from useInput return type (#37321) @TinaSay
|
|
736
|
+
- [docs][base] Remove default annotations from useAutocomplete return type (#37320) @TinaSay
|
|
737
|
+
- [docs][base] Remove default annotations from useBadge's return type (#37313) @TinaSay
|
|
738
|
+
- [docs][base] Remove default annotations from useButton's return type (#37312) @TinaSay
|
|
739
|
+
- [docs][base] Remove default annotations from useSlider's return type (#37309) @TinaSay
|
|
740
|
+
- [docs] Remove Material UI's "Languages" page (#37314) @danilo-leal
|
|
741
|
+
- [docs] Prefer to link GitHub repository @oliviertassinari
|
|
742
|
+
- [docs] Move product versions to page context (#35078) @m4theushw
|
|
743
|
+
- [docs] Fix v5 migration npm install instruction (#37293) @oliviertassinari
|
|
744
|
+
- [docs][Tab] Add vertical tabs demo (#37292) @sai6855
|
|
745
|
+
- [docs][Transitions] Fix typo in code sample (#37300) @alexfauquette
|
|
746
|
+
- [examples] Remove `@babel/plugin-proposal-class-properties` from Material-Express-SSR example (#37305) @ZeeshanTamboli
|
|
747
|
+
- [Website] Add Brijesh to About page (#37318) @brijeshb42
|
|
748
|
+
- [website] Update pricing table (#37290) @cherniavskii
|
|
749
|
+
- [website] Update core open roles (#37224) @mnajdova
|
|
750
|
+
|
|
751
|
+
### Core
|
|
752
|
+
|
|
753
|
+
- Revert "[core] Remove outdated babel proposal plugins (#36795)" (#37331) @michaldudak
|
|
754
|
+
- [core] Move esmExternals to the shared next config (#37332) @michaldudak
|
|
755
|
+
|
|
756
|
+
All contributors of this release in alphabetical order: @alexfauquette, @brijeshb42, @cherniavskii, @danilo-leal, @m4theushw, @michaldudak, @mnajdova, @oliviertassinari, @PunitSoniME, @sai6855, @TinaSay, @ZeeshanTamboli
|
|
757
|
+
|
|
3
758
|
## 5.13.1
|
|
4
759
|
|
|
5
760
|
<!-- generated comparing v5.13.0..master -->
|
|
@@ -172,7 +927,7 @@ A big thanks to the 18 contributors who made this release possible. Here are som
|
|
|
172
927
|
|
|
173
928
|
There is codemod that you can run in your project to do the transformation:
|
|
174
929
|
|
|
175
|
-
```
|
|
930
|
+
```bash
|
|
176
931
|
npx @mui/codemod v5.0.0/base-remove-component-prop <path>
|
|
177
932
|
```
|
|
178
933
|
|
|
@@ -271,7 +1026,7 @@ A big thanks to the 12 contributors who made this release possible. Here are som
|
|
|
271
1026
|
|
|
272
1027
|
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:
|
|
273
1028
|
|
|
274
|
-
```
|
|
1029
|
+
```bash
|
|
275
1030
|
npx @mui/codemod v5.0.0/base-remove-unstyled-suffix <path>
|
|
276
1031
|
```
|
|
277
1032
|
|
|
@@ -627,7 +1382,7 @@ _Mar 14, 2023_
|
|
|
627
1382
|
|
|
628
1383
|
A big thanks to the 13 contributors who made this release possible. Here are some highlights ✨:
|
|
629
1384
|
|
|
630
|
-
- @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)
|
|
1385
|
+
- @michaldudak added an option for [disabling the generation](https://mui.com/base-ui/getting-started/customization/#disabling-default-css-classes) of the default classes in Base UI (#35963)
|
|
631
1386
|
- other 🐛 bug fixes and 📚 documentation improvements.
|
|
632
1387
|
|
|
633
1388
|
### `@mui/material@5.11.13`
|
|
@@ -812,7 +1567,7 @@ _Feb 27, 2023_
|
|
|
812
1567
|
|
|
813
1568
|
A big thanks to the 15 contributors who made this release possible. Here are some highlights ✨:
|
|
814
1569
|
|
|
815
|
-
- 📚 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)
|
|
1570
|
+
- 📚 added API documentation for the slots in Base UI and Joy UI by @hbjORbj, for e.g. [SliderUnstyled API](https://mui.com/base-ui/api/slider-unstyled/#slots)
|
|
816
1571
|
- other 🐛 bug fixes and 📚 documentation improvements.
|
|
817
1572
|
|
|
818
1573
|
### `@mui/material@5.11.11`
|
|
@@ -1181,7 +1936,7 @@ A big thanks to the 13 contributors who made this release possible. Here are som
|
|
|
1181
1936
|
+ <SliderUnstyled slots={{ valueLabel: SliderValueLabel }} />
|
|
1182
1937
|
```
|
|
1183
1938
|
|
|
1184
|
-
The following demo shows how to show a value label when it is hovered over with the thumb: https://mui.com/base/react-slider/#value-label
|
|
1939
|
+
The following demo shows how to show a value label when it is hovered over with the thumb: https://mui.com/base-ui/react-slider/#value-label
|
|
1185
1940
|
|
|
1186
1941
|
- The following classes are removed from `sliderUnstyledClasses` since they are not needed for the value label:
|
|
1187
1942
|
|
|
@@ -2174,7 +2929,7 @@ _Oct 3, 2022_
|
|
|
2174
2929
|
|
|
2175
2930
|
A big thanks to the 18 contributors who made this release possible. Here are some highlights ✨:
|
|
2176
2931
|
|
|
2177
|
-
- 🚀 [SnackbarUnstyled](https://mui.com/base/react-snackbar/) component & headless hook are added to Base UI (#33227) @ZeeshanTamboli
|
|
2932
|
+
- 🚀 [SnackbarUnstyled](https://mui.com/base-ui/react-snackbar/) component & headless hook are added to Base UI (#33227) @ZeeshanTamboli
|
|
2178
2933
|
- 📚 [CSS variables documentation](https://mui.com/material-ui/experimental-api/css-theme-variables/overview/) for Material UI has been added by @siriwatknp (#33958)
|
|
2179
2934
|
- And more 🐛 bug fixes and 📚 documentation improvements.
|
|
2180
2935
|
|
|
@@ -2383,7 +3138,7 @@ _Sep 12, 2022_
|
|
|
2383
3138
|
|
|
2384
3139
|
A big thanks to the 12 contributors who made this release possible. Here are some highlights ✨:
|
|
2385
3140
|
|
|
2386
|
-
- 🚀 [Blog post](https://mui.com/blog/introducing-
|
|
3141
|
+
- 🚀 [Blog post](https://mui.com/blog/introducing-base-ui/) for announcing the release of the Base UI package is out thanks to @michaldudak.
|
|
2387
3142
|
- 🚀 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
|
|
2388
3143
|
- And more 🐛 bug fixes and 📚 documentation improvements.
|
|
2389
3144
|
|
|
@@ -4452,7 +5207,7 @@ _Feb 1, 2022_
|
|
|
4452
5207
|
|
|
4453
5208
|
A big thanks to the 22 contributors who made this release possible. Here are some highlights ✨:
|
|
4454
5209
|
|
|
4455
|
-
- 🛠 @goncalovf added an example project using [Material UI with Vite.js](https://github.com/mui/material-ui/tree/master/examples/material-vite) (#28241)
|
|
5210
|
+
- 🛠 @goncalovf added an example project using [Material UI with Vite.js](https://github.com/mui/material-ui/tree/master/examples/material-ui-vite) (#28241)
|
|
4456
5211
|
- Number of 🐛 bug fixes and 📚 documentation improvements.
|
|
4457
5212
|
|
|
4458
5213
|
### `@mui/material@5.4.0`
|
|
@@ -5916,7 +6671,7 @@ A big thanks to the 18 contributors who made this release possible. Here are som
|
|
|
5916
6671
|
|
|
5917
6672
|
replace `@material-ui/*` prefix with `@mui/*`:
|
|
5918
6673
|
|
|
5919
|
-
```
|
|
6674
|
+
```bash
|
|
5920
6675
|
@material-ui/system -> @mui/system
|
|
5921
6676
|
@material-ui/styles -> @mui/styles
|
|
5922
6677
|
@material-ui/lab -> @mui/lab
|
|
@@ -5929,7 +6684,7 @@ A big thanks to the 18 contributors who made this release possible. Here are som
|
|
|
5929
6684
|
|
|
5930
6685
|
except these 3 packages that are renamed.
|
|
5931
6686
|
|
|
5932
|
-
```
|
|
6687
|
+
```bash
|
|
5933
6688
|
@material-ui/core => @mui/material // represents Material Design components.
|
|
5934
6689
|
@material-ui/icons => @mui/icons-material // represents Material Design icons.
|
|
5935
6690
|
@material-ui/unstyled => @mui/base // fully functional components with minimum styles.
|
|
@@ -9591,11 +10346,11 @@ _Nov 14, 2020_
|
|
|
9591
10346
|
A big thanks to the 34 contributors who made this release possible. Here are some highlights ✨:
|
|
9592
10347
|
|
|
9593
10348
|
- 📅 Migrate the date picker to the lab (#22692) @dmtrKovalenko.
|
|
9594
|
-
We have integrated the components with the code infrastructure. Next we will migrate all the GitHub issues from [material-ui-pickers](https://github.com/mui/material-ui-pickers) and archive the repository. This migration will help provide first-class support for the date picker components. The component will stay in the lab as long as necessary to reach the high
|
|
10349
|
+
We have integrated the components with the code infrastructure. Next we will migrate all the GitHub issues from [material-ui-pickers](https://github.com/mui/material-ui-pickers) and archive the repository. This migration will help provide first-class support for the date picker components. The component will stay in the lab as long as necessary to reach the high-quality bar we have for core components. You can find the [new documentation here](https://mui.com/components/pickers/).
|
|
9595
10350
|
|
|
9596
10351
|
While the source code is currently hosted in the [main repository](https://github.com/mui/material-ui), we might move it to the [x repository](https://github.com/mui/mui-x) in the future, depending on what is easier for the commercial date range picker. The date picker will stay open source no matter what.
|
|
9597
10352
|
|
|
9598
|
-
- 📚 Revamp the documentation for [the system](https://mui.com/system/getting-started/
|
|
10353
|
+
- 📚 Revamp the documentation for [the system](https://mui.com/system/getting-started/). The System contains CSS utilities. The documentation now promotes the use of the `sx` prop. It's ideal for adding one-off styles, e.g. padding, but when pushed to its limits, it can be used to implement quickly a complete page.
|
|
9599
10354
|
- 👩🎨 Upgrade emotion to v11 (#23007) @mnajdova.
|
|
9600
10355
|
- And many more 🐛 bug fixes and 📚 improvements.
|
|
9601
10356
|
|
|
@@ -9997,7 +10752,7 @@ Here are some highlights ✨:
|
|
|
9997
10752
|
If you target IE11, you need to use the new bundle (`legacy`). We are treating IE11 as a second class-citizen, which is a continuation of the direction taken in #22873.
|
|
9998
10753
|
|
|
9999
10754
|
- 🚀 Improve the internal benchmark suite (#22923, #23058) @mnajdova.
|
|
10000
|
-
This was a prerequisite step to improve the [system](https://mui.com/system/getting-started/
|
|
10755
|
+
This was a prerequisite step to improve the [system](https://mui.com/system/getting-started/). We needed to be able to measure performance. After #22945, we have measured that the `Box` component is x3 faster in v5-alpha compared to v4.
|
|
10001
10756
|
- ✏️ A new blog post: [Q3 2020 Update](https://mui.com/blog/2020-q3-update/) (#23055) @oliviertassinari.
|
|
10002
10757
|
- 🐙 Migrate more tests to react-testing-library @deiga, @Morteza-Jenabzadeh, @nicholas-l.
|
|
10003
10758
|
- And many more 🐛 bug fixes and 📚 improvements.
|
|
@@ -10338,7 +11093,7 @@ Here are some highlights ✨:
|
|
|
10338
11093
|
|
|
10339
11094
|
The new styling solution saves 2kB gzipped in the bundle compared to JSS, and about 14 kB gzipped if you were already using emotion or styled-components.
|
|
10340
11095
|
|
|
10341
|
-
Last but not least, the change allows us to take advantage dynamic style props. We will use them for dynamic color props, variant props, and new style props (an improved [system](https://mui.com/system/getting-started/
|
|
11096
|
+
Last but not least, the change allows us to take advantage dynamic style props. We will use them for dynamic color props, variant props, and new style props (an improved [system](https://mui.com/system/getting-started/)).
|
|
10342
11097
|
|
|
10343
11098
|
This change has been in our roadmap for more than a year.
|
|
10344
11099
|
We announced it in the [v4 release blog post](https://mui.com/blog/material-ui-v4-is-out/) as a direction v5 would take.
|
|
@@ -10624,13 +11379,13 @@ Here are some highlights ✨:
|
|
|
10624
11379
|
|
|
10625
11380
|
Before:
|
|
10626
11381
|
|
|
10627
|
-
```
|
|
11382
|
+
```bash
|
|
10628
11383
|
theme.spacing(2) => 16
|
|
10629
11384
|
```
|
|
10630
11385
|
|
|
10631
11386
|
After:
|
|
10632
11387
|
|
|
10633
|
-
```
|
|
11388
|
+
```bash
|
|
10634
11389
|
theme.spacing(2) => '16px'
|
|
10635
11390
|
```
|
|
10636
11391
|
|
|
@@ -11591,7 +12346,7 @@ A big thanks to the 33 contributors who made this release possible. Here are som
|
|
|
11591
12346
|
/>
|
|
11592
12347
|
```
|
|
11593
12348
|
|
|
11594
|
-
- [Typography] Replace the `srOnly` prop so as to not duplicate the capabilities of [System](https://mui.com/system/getting-started/
|
|
12349
|
+
- [Typography] Replace the `srOnly` prop so as to not duplicate the capabilities of [System](https://mui.com/system/getting-started/) (#21413) @mnajdova.
|
|
11595
12350
|
|
|
11596
12351
|
```diff
|
|
11597
12352
|
-import Typography from '@material-ui/core/Typography';
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import _extends from "@babel/runtime/helpers/esm/extends";
|
|
1
2
|
import * as React from 'react';
|
|
2
3
|
import PropTypes from 'prop-types';
|
|
3
4
|
import { exactProp } from '@mui/utils';
|
|
@@ -17,10 +18,7 @@ function mergeOuterLocalTheme(outerTheme, localTheme) {
|
|
|
17
18
|
}
|
|
18
19
|
return mergedTheme;
|
|
19
20
|
}
|
|
20
|
-
return {
|
|
21
|
-
...outerTheme,
|
|
22
|
-
...localTheme
|
|
23
|
-
};
|
|
21
|
+
return _extends({}, outerTheme, localTheme);
|
|
24
22
|
}
|
|
25
23
|
|
|
26
24
|
/**
|
package/index.js
CHANGED
|
@@ -1,6 +1,4 @@
|
|
|
1
|
-
import
|
|
2
|
-
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
3
|
-
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
1
|
+
import _extends from "@babel/runtime/helpers/esm/extends";
|
|
4
2
|
import * as React from 'react';
|
|
5
3
|
import PropTypes from 'prop-types';
|
|
6
4
|
import { exactProp } from '@mui/utils';
|
|
@@ -20,7 +18,7 @@ function mergeOuterLocalTheme(outerTheme, localTheme) {
|
|
|
20
18
|
}
|
|
21
19
|
return mergedTheme;
|
|
22
20
|
}
|
|
23
|
-
return
|
|
21
|
+
return _extends({}, outerTheme, localTheme);
|
|
24
22
|
}
|
|
25
23
|
|
|
26
24
|
/**
|
package/legacy/index.js
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import _extends from "@babel/runtime/helpers/esm/extends";
|
|
1
2
|
import * as React from 'react';
|
|
2
3
|
import PropTypes from 'prop-types';
|
|
3
4
|
import { exactProp } from '@mui/utils';
|
|
@@ -17,10 +18,7 @@ function mergeOuterLocalTheme(outerTheme, localTheme) {
|
|
|
17
18
|
}
|
|
18
19
|
return mergedTheme;
|
|
19
20
|
}
|
|
20
|
-
return {
|
|
21
|
-
...outerTheme,
|
|
22
|
-
...localTheme
|
|
23
|
-
};
|
|
21
|
+
return _extends({}, outerTheme, localTheme);
|
|
24
22
|
}
|
|
25
23
|
|
|
26
24
|
/**
|
package/modern/index.js
CHANGED
|
@@ -5,6 +5,7 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
5
5
|
value: true
|
|
6
6
|
});
|
|
7
7
|
exports.default = void 0;
|
|
8
|
+
var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
|
|
8
9
|
var React = _interopRequireWildcard(require("react"));
|
|
9
10
|
var _propTypes = _interopRequireDefault(require("prop-types"));
|
|
10
11
|
var _utils = require("@mui/utils");
|
|
@@ -25,10 +26,7 @@ function mergeOuterLocalTheme(outerTheme, localTheme) {
|
|
|
25
26
|
}
|
|
26
27
|
return mergedTheme;
|
|
27
28
|
}
|
|
28
|
-
return {
|
|
29
|
-
...outerTheme,
|
|
30
|
-
...localTheme
|
|
31
|
-
};
|
|
29
|
+
return (0, _extends2.default)({}, outerTheme, localTheme);
|
|
32
30
|
}
|
|
33
31
|
|
|
34
32
|
/**
|
package/node/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mui/private-theming",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.14.4",
|
|
4
4
|
"private": false,
|
|
5
5
|
"author": "MUI Team",
|
|
6
6
|
"description": "Private - The React theme context to be shared between `@mui/styles` and `@mui/material`.",
|
|
@@ -35,8 +35,8 @@
|
|
|
35
35
|
}
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@babel/runtime": "^7.
|
|
39
|
-
"@mui/utils": "^5.
|
|
38
|
+
"@babel/runtime": "^7.22.6",
|
|
39
|
+
"@mui/utils": "^5.14.4",
|
|
40
40
|
"prop-types": "^15.8.1"
|
|
41
41
|
},
|
|
42
42
|
"sideEffects": false,
|