@mui/styled-engine 5.10.3 → 5.10.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 +51 -0
- package/index.d.ts +5 -1
- 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 +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,56 @@
|
|
|
1
1
|
# [Versions](https://mui.com/versions/)
|
|
2
2
|
|
|
3
|
+
## 5.10.4
|
|
4
|
+
|
|
5
|
+
<!-- generated comparing v5.10.3..master -->
|
|
6
|
+
|
|
7
|
+
_Sep 5, 2022_
|
|
8
|
+
|
|
9
|
+
A big thanks to the 11 contributors who made this release possible. Here are some highlights ✨:
|
|
10
|
+
|
|
11
|
+
- 🚀 Added [`Alert`](https://mui.com/joy-ui/react-alert/) component to Joy UI (#33859) @hbjORbj
|
|
12
|
+
- Many other 🐛 bug fixes, 📚 documentation, and ⚙️ infrastructure improvements
|
|
13
|
+
|
|
14
|
+
### `@mui/material@5.10.4`
|
|
15
|
+
|
|
16
|
+
- ​<!-- 22 -->[Avatar] Use structured / semantic markup for avatars and avatar groups (#33994) @paulschreiber
|
|
17
|
+
- ​<!-- 05 -->[Steps] Use structured / semantic markup for steps and steppers (#34138) @paulschreiber
|
|
18
|
+
|
|
19
|
+
### `@mui/joy@5.0.0-alpha.44`
|
|
20
|
+
|
|
21
|
+
- ​<!-- 23 -->[Alert][joy] Add `Alert` component (#33859) @hbjORbj
|
|
22
|
+
- ​<!-- 08 -->[Joy] Make the description of `componentsProps` generic (#34140) @hbjORbj
|
|
23
|
+
- ​<!-- 07 -->[Joy] Add tests / classes for `Breadcrumbs` component (#33860) @hbjORbj
|
|
24
|
+
- ​<!-- 06 -->[Select][joy] Fix forwarding listbox `component` prop (#34172) @siriwatknp
|
|
25
|
+
|
|
26
|
+
### `@mui/base@5.0.0-alpha.96`
|
|
27
|
+
|
|
28
|
+
- ​<!-- 21 -->[Select][base] Fix type issues that appeared with TS 4.8 (#34132) @michaldudak
|
|
29
|
+
|
|
30
|
+
### Docs
|
|
31
|
+
|
|
32
|
+
- ​<!-- 15 -->[docs] Add `mui-color-input`, `mui-chips-input` and `mui-tel-input` into the related projects page (#34123) @viclafouch
|
|
33
|
+
- ​<!-- 14 -->[docs] Update sponsors (#34157) @hbjORbj
|
|
34
|
+
- ​<!-- 13 -->[docs] Move 5 component names to Title Case (#34118) @oliviertassinari
|
|
35
|
+
- ​<!-- 12 -->[docs] Fix the color contrast on optional API methods (#34127) @oliviertassinari
|
|
36
|
+
- ​<!-- 11 -->[docs] Fix crash due to using wrong variable (#34171) @siriwatknp
|
|
37
|
+
- ​<!-- 10 -->[docs] Fix a few Base typos (#33986) @ropereraLK
|
|
38
|
+
- ​<!-- 09 -->[docs] Revise Joy UI "Overview" page copy (#34087) @samuelsycamore
|
|
39
|
+
- ​<!-- 20 -->[blog] Fix social cards (#34160) @oliviertassinari
|
|
40
|
+
- ​<!-- 03 -->[website] Allow deep linking to sponsors @oliviertassinari
|
|
41
|
+
- ​<!-- 02 -->[website] Update job descriptions (#34134) @DanailH
|
|
42
|
+
- ​<!-- 01 -->[website] Link Toolpad landing page @oliviertassinari
|
|
43
|
+
|
|
44
|
+
### Core
|
|
45
|
+
|
|
46
|
+
- ​<!-- 19 -->[core] Move renovate config to the repository root (#34180) @oliviertassinari
|
|
47
|
+
- ​<!-- 18 -->[core] Reinstate react/no-unused-prop-types eslint rule (#34125) @Janpot
|
|
48
|
+
- ​<!-- 17 -->[core] Do not append `types` field to packages without index.d.ts (#33952) @michaldudak
|
|
49
|
+
- ​<!-- 16 -->[core] Sanitize input in icon synonyms update script (#33989) @michaldudak
|
|
50
|
+
- ​<!-- 04 -->[test] Allow to pass options to `mousePress` function (#34124) @cherniavskii
|
|
51
|
+
|
|
52
|
+
All contributors of this release in alphabetical order: @cherniavskii, @DanailH, @hbjORbj, @Janpot, @michaldudak, @oliviertassinari, @paulschreiber, @ropereraLK, @samuelsycamore, @siriwatknp, @viclafouch
|
|
53
|
+
|
|
3
54
|
## 5.10.3
|
|
4
55
|
|
|
5
56
|
<!-- generated comparing v5.10.2..master -->
|
package/index.d.ts
CHANGED
|
@@ -131,7 +131,11 @@ export interface CreateStyledComponent<
|
|
|
131
131
|
): StyledComponent<ComponentProps & AdditionalProps, SpecificComponentProps, JSXProps>;
|
|
132
132
|
}
|
|
133
133
|
|
|
134
|
-
export interface CreateMUIStyled<
|
|
134
|
+
export interface CreateMUIStyled<
|
|
135
|
+
MUIStyledCommonProps extends {},
|
|
136
|
+
MuiStyledOptions,
|
|
137
|
+
Theme extends object,
|
|
138
|
+
> {
|
|
135
139
|
<
|
|
136
140
|
C extends React.ComponentClass<React.ComponentProps<C>>,
|
|
137
141
|
ForwardedProps extends keyof React.ComponentProps<C> = keyof React.ComponentProps<C>,
|
package/index.js
CHANGED
package/legacy/index.js
CHANGED
package/modern/index.js
CHANGED
package/node/index.js
CHANGED