@mui/styled-engine-sc 5.10.14 โ 5.11.0
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 +256 -0
- package/index.js +1 -1
- package/legacy/index.js +1 -1
- package/modern/index.js +1 -1
- package/node/index.js +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,261 @@
|
|
|
1
1
|
# [Versions](https://mui.com/versions/)
|
|
2
2
|
|
|
3
|
+
## 5.11.0
|
|
4
|
+
|
|
5
|
+
<!-- generated comparing v5.10.17..master -->
|
|
6
|
+
|
|
7
|
+
_Dec 13, 2022_
|
|
8
|
+
|
|
9
|
+
A big thanks to the 19 contributors who made this release possible. Here are some highlights โจ:
|
|
10
|
+
|
|
11
|
+
- ๐ฅ @mnajdova enabled configuration of the `sx` prop in the `theme` (#35150)
|
|
12
|
+
- Many other ๐ bug fixes, ๐ documentation, and โ๏ธ infrastructure improvements.
|
|
13
|
+
|
|
14
|
+
### `@mui/material@5.11.0`
|
|
15
|
+
|
|
16
|
+
- [Alert] Update icon color in all variants (#35414) @danilo-leal
|
|
17
|
+
- [Select] Fix `MenuProps.PopoverClasses` being overriden (#35394) @vitorfrs-dev
|
|
18
|
+
- [SwipeableDrawer] Fixed typescript warning "prop open undefined" (#34710) @kraftware
|
|
19
|
+
|
|
20
|
+
### `@mui/icons-material@5.11.0`
|
|
21
|
+
|
|
22
|
+
- [icons] Restore the PhoneInTalk icons (#35409) @michaldudak
|
|
23
|
+
|
|
24
|
+
### `@mui/system@5.11.0`
|
|
25
|
+
|
|
26
|
+
#### BREAKING CHANGES
|
|
27
|
+
|
|
28
|
+
- [system] Enable configuring the `sx` prop in the `theme` (#35150) @mnajdova
|
|
29
|
+
|
|
30
|
+
The breaking change is regarding an experimental API:
|
|
31
|
+
|
|
32
|
+
```diff
|
|
33
|
+
-import { styled, experimental_sx } from '@mui/material/styles';
|
|
34
|
+
+import { styled } from '@mui/material/styles';
|
|
35
|
+
|
|
36
|
+
-const Component = styled('div)(experimental_sx({ p: 1 }});
|
|
37
|
+
+const Component = styled('div)(({ theme }) => theme.unstable_sx({ p: 1 }});
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
### `@mui/joy@5.0.0-alpha.58`
|
|
41
|
+
|
|
42
|
+
- [Joy] Miscellaneous fixes (#35447) @siriwatknp
|
|
43
|
+
|
|
44
|
+
### `@mui/base@5.0.0-alpha.110`
|
|
45
|
+
|
|
46
|
+
- [PopperUnstyled] Update PopperTooltip to have correct width when closing with transition (#34714) @EduardoSCosta
|
|
47
|
+
|
|
48
|
+
### `@mui/material-next@6.0.0-alpha.66`
|
|
49
|
+
|
|
50
|
+
- [Material You] Add ripple on the button (#35299) @mnajdova
|
|
51
|
+
|
|
52
|
+
### Docs
|
|
53
|
+
|
|
54
|
+
- [docs] Simplify state management in Text Field demo page (#35051) @PratikDev
|
|
55
|
+
- [docs] Improve `Responsive App bar with Drawer` demo (#35418) @ZeeshanTamboli
|
|
56
|
+
- [docs] Improve line-height readability (#35387) @oliviertassinari
|
|
57
|
+
- [docs] Improve a bit the Composition docs (#35329) @oliviertassinari
|
|
58
|
+
- [docs] Refactor `ToggleButtonSizes` demo (#35375) @Armanio
|
|
59
|
+
- [docs] Standardize the usage of callouts in the MUI Core docs (#35361) @samuelsycamore
|
|
60
|
+
- [docs] Format feedback to add a link to the commented section (#35381) @alexfauquette
|
|
61
|
+
- [docs] Direct users from Material UI to MUI Base for duplicated components (#35293) @samuelsycamore
|
|
62
|
+
- [docs] Fix typo in FormControl API docs (#35449) @Spanishiwa
|
|
63
|
+
- [docs] Update callouts design (#35390) @danilo-leal
|
|
64
|
+
- [website] New wave of open roles (#35240) @mnajdova
|
|
65
|
+
- [website] Developer survey 2022 (#35407) @joserodolfofreitas
|
|
66
|
+
|
|
67
|
+
### Core
|
|
68
|
+
|
|
69
|
+
- [core] Fix @mui/material package building (#35324) @timbset
|
|
70
|
+
- [core] Fix leaking theme color override (#35444) @oliviertassinari
|
|
71
|
+
- [typescript] Add null to return type of OverridableComponent (#35311) @tsollbach
|
|
72
|
+
- [website] Migrate X page to use CSS theme variables (#34922) @jesrodri
|
|
73
|
+
- [website] Migrate `/core` page to use CSS variables (#35366) @siriwatknp
|
|
74
|
+
|
|
75
|
+
All contributors of this release in alphabetical order: @alexfauquette, @Armanio, @danilo-leal, @EduardoSCosta, @flaviendelangle, @jesrodri, @joserodolfofreitas, @kraftware, @michaldudak, @mnajdova, @oliviertassinari, @PratikDev, @samuelsycamore, @siriwatknp, @Spanishiwa, @timbset, @tsollbach, @vitorfrs-dev, @ZeeshanTamboli
|
|
76
|
+
|
|
77
|
+
## 5.10.17
|
|
78
|
+
|
|
79
|
+
<!-- generated comparing v5.10.16..master -->
|
|
80
|
+
|
|
81
|
+
_Dec 6, 2022_
|
|
82
|
+
|
|
83
|
+
A big thanks to the 15 contributors who made this release possible. Here are some highlights โจ:
|
|
84
|
+
|
|
85
|
+
- โจ @mnajdova added a [Material You Button playground](https://mui.com/material-ui/react-button/#material-you-version) (#35222)
|
|
86
|
+
- ๐ง @hbjORbj renamed `components` / `componentProps` to `slots` / `slotProps` prop in Joy UI to create consistency across products (#34997)
|
|
87
|
+
- Many other ๐ bug fixes, ๐ documentation, and โ๏ธ infrastructure improvements
|
|
88
|
+
|
|
89
|
+
### `@mui/material@5.10.17`
|
|
90
|
+
|
|
91
|
+
- ​<!-- 31 -->[Slider] Fix `markActive` theme class not getting applied (#35067) @ZeeshanTamboli
|
|
92
|
+
- ​<!-- 30 -->[SwipeableDrawer] Fix missing close animation when initial open is true (#35010) @sai6855
|
|
93
|
+
- ​<!-- 28 -->[material-ui] Add channel colors if possible (#35178) @siriwatknp
|
|
94
|
+
- ​<!-- 10 -->[Fab] Increase disabled styles precedence (#35304) @Uzwername
|
|
95
|
+
- ​<!-- 05 -->[Rating] Apply `labelEmptyValueActive` style overrides from theme (#35315) @sai6855
|
|
96
|
+
|
|
97
|
+
### `@mui/system@5.10.17`
|
|
98
|
+
|
|
99
|
+
- ​<!-- 04 -->[system] Add support for nested CssVarsProvider (#35277) @siriwatknp
|
|
100
|
+
|
|
101
|
+
### `@mui/joy@5.0.0-alpha.57`
|
|
102
|
+
|
|
103
|
+
#### BREAKING CHANGE
|
|
104
|
+
|
|
105
|
+
- ​<!-- 08 -->[Joy] Add `slots`/`slotProps` props to the typing of all components and apply `useSlot` to all components (#34997) @hbjORbj
|
|
106
|
+
|
|
107
|
+
- Change all occurrences ofย `components`ย andย `componentsProps`ย props in Joy UI components toย `slots`ย andย `slotProps`, respectively.
|
|
108
|
+
|
|
109
|
+
```diff
|
|
110
|
+
-<Autocomplete components={{listbox: CustomListbox}} componentsProps={{listbox: { className: 'custom-listbox' }}} />
|
|
111
|
+
+<Autocomplete slots={{listbox: CustomListbox}} slotProps={{listbox: { className: 'custom-listbox' }}} />
|
|
112
|
+
```
|
|
113
|
+
|
|
114
|
+
You can use this [codemod](https://github.com/mui/material-ui/blob/master/packages/mui-codemod/README.md#joy-rename-components-to-slots) to help with the migration.
|
|
115
|
+
|
|
116
|
+
#### Changes
|
|
117
|
+
|
|
118
|
+
- ​<!-- 07 -->[Joy] Miscellaneous fixes (#35345) @siriwatknp
|
|
119
|
+
- ​<!-- 06 -->[Joy][textarea] Expose decorator classes (#35247) @zignis
|
|
120
|
+
|
|
121
|
+
### Docs
|
|
122
|
+
|
|
123
|
+
- ​<!-- 29 -->[docs] Improve spacing with ul (#35302) @oliviertassinari
|
|
124
|
+
- ​<!-- 23 -->[docs] Correct grammatically incorrect sentences in CONTRIBUTING.md (#34949) @Pandey-utkarsh
|
|
125
|
+
- ​<!-- 22 -->[docs] Move the demo higher in the API TOC (#35202) @oliviertassinari
|
|
126
|
+
- ​<!-- 21 -->[docs] Fix incorrect link in minimizing-bundle-size (#35297) @Juneezee
|
|
127
|
+
- ​<!-- 20 -->[docs] Revise and expand Joy UI "Breadcrumbs" page (#35292) @samuelsycamore
|
|
128
|
+
- ​<!-- 19 -->[docs] Fix wrong import in the unstyled tabs page (#35310) @guotie
|
|
129
|
+
- ​<!-- 18 -->[docs] Disable translations (#34820) @mnajdova
|
|
130
|
+
- ​<!-- 17 -->[docs] Fix typo (#35312) @flaviendelangle
|
|
131
|
+
- ​<!-- 16 -->[docs] Add Material You Button playground (#35222) @mnajdova
|
|
132
|
+
- ​<!-- 15 -->[docs] Fix experimental API page duplication (#35213) @oliviertassinari
|
|
133
|
+
- ​<!-- 14 -->[docs] Improve the autogenerated "Unstyled" and "API" text (#35185) @samuelsycamore
|
|
134
|
+
- ​<!-- 13 -->[docs] Fix ad margin on API pages (#35201) @oliviertassinari
|
|
135
|
+
- ​<!-- 12 -->[docs] Revise and expand the Joy UI "Badge" page (#35199) @samuelsycamore
|
|
136
|
+
- ​<!-- 11 -->[docs] Update MUI Base docs with latest style conventions (#35034) @samuelsycamore
|
|
137
|
+
- ​<!-- 09 -->[l10n] Improve Chinese (Taiwan) zh-TW locale (#35328) @happyincent
|
|
138
|
+
- ​<!-- 02 -->[website] Update MUI stats: GitHub stars, Twitter followers, etc. (#35318) @nomandhoni-cs
|
|
139
|
+
|
|
140
|
+
### Core
|
|
141
|
+
|
|
142
|
+
- ​<!-- 27 -->[core] Use componentStyles.name over componentName (#35303) @oliviertassinari
|
|
143
|
+
- ​<!-- 26 -->[core] Fix warning leak in production (#35313) @oliviertassinari
|
|
144
|
+
- ​<!-- 25 -->[core] Move the internal packages from docs/packages (#35305) @michaldudak
|
|
145
|
+
- ​<!-- 24 -->[core] Clean up the API docs generation scripts (#35244) @michaldudak
|
|
146
|
+
- ​<!-- 03 -->[test] Scope the tests to just Material UI components (#35219) @siriwatknp
|
|
147
|
+
- ​<!-- 01 -->[website] Remove BlackFriday notification @oliviertassinari
|
|
148
|
+
|
|
149
|
+
All contributors of this release in alphabetical order: @flaviendelangle, @guotie, @happyincent, @hbjORbj, @Juneezee, @michaldudak, @mnajdova, @nomandhoni-cs, @oliviertassinari, @Pandey-utkarsh, @sai6855, @samuelsycamore, @siriwatknp, @Uzwername, @zignis
|
|
150
|
+
|
|
151
|
+
## 5.10.16
|
|
152
|
+
|
|
153
|
+
<!-- generated comparing v5.10.15..master -->
|
|
154
|
+
|
|
155
|
+
_Nov 28, 2022_
|
|
156
|
+
|
|
157
|
+
A big thanks to the 13 contributors who made this release possible. This release contains various ๐ bug fixes, ๐ documentation, and โ๏ธ infrastructure improvements.
|
|
158
|
+
|
|
159
|
+
### `@mui/material@5.10.16`
|
|
160
|
+
|
|
161
|
+
- ​<!-- 21 -->[Autocomplete] Fix inferred value type when `multiple` prop is `true` (#35275) @fenghan34
|
|
162
|
+
- ​<!-- 19 -->[Chip] Add `skipFocusWhenDisabled` prop to not allow focussing deletable chip if disabled (#35065) @sai6855
|
|
163
|
+
- ​<!-- 18 -->[Chip] Remove unnecessary handleKeyDown event handler (#35231) @ZeeshanTamboli
|
|
164
|
+
- ​<!-- 05 -->[FormControl] Add missing types in `useFormControl` (#35168) @ZeeshanTamboli
|
|
165
|
+
- ​<!-- 04 -->[IconButton] Add missing color classes (#33820) @Zetta56
|
|
166
|
+
- ​<!-- 03 -->[SwipeableDrawer] Make paper ref accessible (#35082) @sai6855
|
|
167
|
+
|
|
168
|
+
### `@mui/system@5.10.16`
|
|
169
|
+
|
|
170
|
+
- ​<!-- 02 -->[system] Remove unnecessary parsed theme (#35239) @siriwatknp
|
|
171
|
+
- ​<!-- 01 -->[theme] Fix TypeScript type for custom variants in responsive font sizes (#35057) @ZeeshanTamboli
|
|
172
|
+
|
|
173
|
+
### `@mui/base@5.0.0-alpha.108`
|
|
174
|
+
|
|
175
|
+
- ​<!-- 20 -->[Base] Allow useSlotProps to receive undefined elementType (#35192) @leventdeniz
|
|
176
|
+
|
|
177
|
+
### Docs
|
|
178
|
+
|
|
179
|
+
- ​<!-- 13 -->[docs] Improve feedback precision (#34641) @alexfauquette
|
|
180
|
+
- ​<!-- 12 -->[docs] Add Black Friday notification @oliviertassinari
|
|
181
|
+
- ​<!-- 11 -->[docs] Fix migration feedback (#35232) @alexfauquette
|
|
182
|
+
- ​<!-- 10 -->[docs] Improve the useSelect demo styling (#33883) @michaldudak
|
|
183
|
+
- ​<!-- 09 -->[docs] Fix layout jump on first mistake (#35215) @oliviertassinari
|
|
184
|
+
- ​<!-- 08 -->[docs] Support demos with side effect imports (#35177) @m4theushw
|
|
185
|
+
- ​<!-- 07 -->[examples] Fix Next.js errors (#35246) @oliviertassinari
|
|
186
|
+
- ​<!-- 06 -->[examples] Updated Remix examples with the lates changes using React 18 (#35092) @58bits
|
|
187
|
+
|
|
188
|
+
### Core
|
|
189
|
+
|
|
190
|
+
- ​<!-- 17 -->[core] Remove unused pattern (#35165) @iamxukai
|
|
191
|
+
- ​<!-- 16 -->[core] Fix Base version in changelog (#35224) @siriwatknp
|
|
192
|
+
- ​<!-- 15 -->[core] Migrate `describeConformance` to TypeScript (#35193) @flaviendelangle
|
|
193
|
+
- ​<!-- 14 -->[core] Skip CI for docs and examples paths (#35225) @siriwatknp
|
|
194
|
+
|
|
195
|
+
All contributors of this release in alphabetical order: @58bits, @alexfauquette, @fenghan34, @flaviendelangle, @iamxukai, @leventdeniz, @m4theushw, @michaldudak, @oliviertassinari, @sai6855, @siriwatknp, @ZeeshanTamboli, @Zetta56
|
|
196
|
+
|
|
197
|
+
## 5.10.15
|
|
198
|
+
|
|
199
|
+
<!-- generated comparing v5.10.14..master -->
|
|
200
|
+
|
|
201
|
+
_Nov 21, 2022_
|
|
202
|
+
|
|
203
|
+
A big thanks to the 9 contributors who made this release possible. Here are some highlights โจ:
|
|
204
|
+
|
|
205
|
+
- ๐ @mnajdova added the button as the first component that implements [Material You](https://m3.material.io/) design (MD3)
|
|
206
|
+
- ๐ @MBilalShafi added Urdu (Pakistan) localization
|
|
207
|
+
- Many other ๐ bug fixes, ๐ documentation, and โ๏ธ infrastructure improvements
|
|
208
|
+
|
|
209
|
+
### `@mui/material@5.10.15`
|
|
210
|
+
|
|
211
|
+
- [Autocomplete] Fix keyboard navigation when using custom popover (#35160) @sai6855
|
|
212
|
+
- [typescript] Add `background.defaultChannel` to `CssVarsPalette` (#35174) @alexfauquette
|
|
213
|
+
- [l10n] Add Urdu (ur-PK) locale (#35154) @MBilalShafi
|
|
214
|
+
|
|
215
|
+
### `@mui/icons-material@5.10.15`
|
|
216
|
+
|
|
217
|
+
- [icons] Update the Material Design icons (#35194) @michaldudak
|
|
218
|
+
|
|
219
|
+
### `@mui/material-next@6.0.0-alpha.63`
|
|
220
|
+
|
|
221
|
+
- [Material You] Add theme structure & Button component (#34650) @mnajdova
|
|
222
|
+
|
|
223
|
+
### `@mui/base@5.0.0-alpha.107`
|
|
224
|
+
|
|
225
|
+
- [Select] Add attributes to conform with ARIA 1.2 (#35182) @michaldudak
|
|
226
|
+
|
|
227
|
+
### Docs
|
|
228
|
+
|
|
229
|
+
- [docs] Fix a couple documentation errors (#35217) @danilo-leal
|
|
230
|
+
- [docs] Change MUI -> Material UI in icons-material's readme (#35220) @michaldudak
|
|
231
|
+
- [docs] the pages have no <link rel=canonical so we need to tell Google to not index the staging envs @oliviertassinari
|
|
232
|
+
- [docs] Fix confusion in TOCs when reaching scroll bottom (#35214) @oliviertassinari
|
|
233
|
+
- [docs] Fix typos in section titles (#35025) @iamxukai
|
|
234
|
+
- [docs] Fix typo in legacy date picker migration guide @oliviertassinari
|
|
235
|
+
- [docs] Iterating on recent Joy UI Component page updates (#35162) @samuelsycamore
|
|
236
|
+
- [docs] Inform that pickers are in X repository (#35189) @alexfauquette
|
|
237
|
+
- [docs] Explain how the `error` prop works in the Unstyled Input (#35171) @michaldudak
|
|
238
|
+
- [docs] Hotfix missing styles in dark mode (#35179) @siriwatknp
|
|
239
|
+
- [docs] Add Joy UI theme typography page (#34811) @siriwatknp
|
|
240
|
+
- [docs] Fix undo/redo in live editor (#35163) @oliviertassinari
|
|
241
|
+
- [docs] Revise the Joy UI "Avatar" component page (#35152) @samuelsycamore
|
|
242
|
+
- [docs] Make navbar backdrop filter consistent with website (#35157) @danilo-leal
|
|
243
|
+
- [docs] Host CodeSandbox on MUI org (#35110) @oliviertassinari
|
|
244
|
+
- [docs] Uplift introduction demos & make consistent with Base (#34316) @danilo-leal
|
|
245
|
+
- [website] Add Security questionnaire in pricing (#35172) @oliviertassinari
|
|
246
|
+
- [website] Fix theme mode toggle state (#35216) @siriwatknp
|
|
247
|
+
- [website] Exclude experiment pages in production (#35180) @siriwatknp
|
|
248
|
+
- [website] Disable SEO for performance pages (#35173) @oliviertassinari
|
|
249
|
+
|
|
250
|
+
### Core
|
|
251
|
+
|
|
252
|
+
- [core] Convert icons scripts to ESM (#35101) @Janpot
|
|
253
|
+
- [core] Group renovate GitHub Action dependency updates @oliviertassinari
|
|
254
|
+
- [core] Upgrade eslint-config-airbnb-typescript (#34642) @Janpot
|
|
255
|
+
- [core] Ensure that prettier CI step fails when code is badly formatted (#35170) @michaldudak
|
|
256
|
+
|
|
257
|
+
All contributors of this release in alphabetical order: @alexfauquette, @danilo-leal, @iamxukai, @Janpot, @MBilalShafi, @michaldudak, @oliviertassinari, @samuelsycamore, @siriwatknp
|
|
258
|
+
|
|
3
259
|
## v5.10.14
|
|
4
260
|
|
|
5
261
|
<!-- generated comparing v5.10.13..master -->
|
package/index.js
CHANGED
package/legacy/index.js
CHANGED
package/modern/index.js
CHANGED
package/node/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mui/styled-engine-sc",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.11.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"author": "MUI Team",
|
|
6
6
|
"description": "styled() API wrapper package for styled-components.",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"url": "https://opencollective.com/mui"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@babel/runtime": "^7.20.
|
|
29
|
+
"@babel/runtime": "^7.20.6",
|
|
30
30
|
"prop-types": "^15.8.1"
|
|
31
31
|
},
|
|
32
32
|
"peerDependencies": {
|