@mui/icons-material 5.10.2 → 5.10.6
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 +234 -0
- package/index.d.ts +708 -708
- package/index.js +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,239 @@
|
|
|
1
1
|
# [Versions](https://mui.com/versions/)
|
|
2
2
|
|
|
3
|
+
## 5.10.6
|
|
4
|
+
|
|
5
|
+
<!-- generated comparing v5.10.5..master -->
|
|
6
|
+
|
|
7
|
+
_Sep 19, 2022_
|
|
8
|
+
|
|
9
|
+
A big thanks to the 11 contributors who made this release possible.
|
|
10
|
+
This release was mostly about 🐛 bug fixes and 📚 documentation improvements.
|
|
11
|
+
|
|
12
|
+
### `@mui/material@5.10.6`
|
|
13
|
+
|
|
14
|
+
- [TextField] Fix conflict with `Bootstrap` even when label is not defined (#34343) @ZeeshanTamboli
|
|
15
|
+
|
|
16
|
+
### `@mui/joy@5.0.0-alpha.46`
|
|
17
|
+
|
|
18
|
+
#### Breaking changes
|
|
19
|
+
|
|
20
|
+
- [button][joy] Replace `start/endIcon` prop with `start/endDecorator` (#34288) @hbjORbj
|
|
21
|
+
|
|
22
|
+
**BREAKING CHANGE**: replace `start/endIcon` with `start/endDecorator`.
|
|
23
|
+
|
|
24
|
+
```jsx
|
|
25
|
+
// before
|
|
26
|
+
<Button startIcon={...} endIcon={...} />
|
|
27
|
+
|
|
28
|
+
// after
|
|
29
|
+
<Button startDecorator={...} endDecorator={...} />
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
#### Changes
|
|
33
|
+
|
|
34
|
+
- [Joy] Adjust the `Input` and `Textarea` styles (#34281) @siriwatknp
|
|
35
|
+
- [menu][joy] Set disablePortal default to false (#34283) @tomasz-sodzawiczny
|
|
36
|
+
|
|
37
|
+
### `@mui/base@5.0.0-alpha.98`
|
|
38
|
+
|
|
39
|
+
#### Breaking changes
|
|
40
|
+
|
|
41
|
+
- [Select][base] Add event parameter to the onChange callback (#34158) @michaldudak
|
|
42
|
+
|
|
43
|
+
The SelectUnstyled and MultiSelectUnstyled `onChange` callbacks did not have event as the first parameter, leading to inconsistency with other components and native HTML elements.
|
|
44
|
+
This PR adds the event parameter as the first one and moves the newly selected value to the second position. Because of this, it's a breaking change.
|
|
45
|
+
This also affects Select from Joy UI.
|
|
46
|
+
|
|
47
|
+
```jsx
|
|
48
|
+
// before
|
|
49
|
+
<SelectUnstyled onChange={(newValue) => { /* ... */ }} />
|
|
50
|
+
|
|
51
|
+
// after
|
|
52
|
+
<SelectUnstyled onChange={(event, newValue) => { /* ... */ }} />
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
### Docs
|
|
56
|
+
|
|
57
|
+
- [blog] The Date Pickers gets a stable v5 release (#34152) @alexfauquette
|
|
58
|
+
- [blog] Improve image handling (#34222) @oliviertassinari
|
|
59
|
+
- [blog] Correct 2021 survey data interpretation (#34291) @samuelsycamore
|
|
60
|
+
- [docs] Remove expired AospExtended showcase @oliviertassinari
|
|
61
|
+
- [docs] Link the OpenSSF Best Practices card (#34331) @oliviertassinari
|
|
62
|
+
- [docs] Fix 301 link to external projects @oliviertassinari
|
|
63
|
+
- [docs] Move 12 component names to Title Case (#34188) @oliviertassinari
|
|
64
|
+
- [docs] Fix broken links (#34320) @alexfauquette
|
|
65
|
+
- [docs] Add notification for MUI Base announcement post (#34295) @samuelsycamore
|
|
66
|
+
- [website] Fix MUI X subscribe email border style (#34330) @oliviertassinari
|
|
67
|
+
- [website] Improve security header @oliviertassinari
|
|
68
|
+
|
|
69
|
+
### Core
|
|
70
|
+
|
|
71
|
+
- [core] Lock file maintenance (#34161) @renovate[bot]
|
|
72
|
+
- [core] Issue template: move reproduction steps to the top (#34279) @Janpot
|
|
73
|
+
- [core] Create shared Next.js baseline config (#34259) @oliviertassinari
|
|
74
|
+
- [core] In `typescript-to-proptypes`, respect the value pass to the generic (#34311) @flaviendelangle
|
|
75
|
+
|
|
76
|
+
All contributors of this release in alphabetical order: @alexfauquette, @flaviendelangle, @hbjORbj, @Janpot, @michaldudak, @oliviertassinari, @renovate[bot], @samuelsycamore, @siriwatknp, @tomasz-sodzawiczny, @ZeeshanTamboli
|
|
77
|
+
|
|
78
|
+
## 5.10.5
|
|
79
|
+
|
|
80
|
+
<!-- generated comparing v5.10.4..master -->
|
|
81
|
+
|
|
82
|
+
_Sep 12, 2022_
|
|
83
|
+
|
|
84
|
+
A big thanks to the 12 contributors who made this release possible. Here are some highlights ✨:
|
|
85
|
+
|
|
86
|
+
- 🚀 [Blog post](https://mui.com/blog/introducing-mui-base/) for announcing the release of the MUI Base package is out thanks to @michaldudak.
|
|
87
|
+
- 🚀 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
|
|
88
|
+
- And more 🐛 bug fixes and 📚 documentation improvements.
|
|
89
|
+
|
|
90
|
+
### `@mui/material@5.10.5`
|
|
91
|
+
|
|
92
|
+
- ​<!-- 05 -->[ListItemText] Fix variant mapping in `primaryTypography` (#33880) @iamxukai
|
|
93
|
+
- ​<!-- 03 -->[Timeline] Add left and right aligned timeline demos in docs (#34156) @ZeeshanTamboli
|
|
94
|
+
|
|
95
|
+
### `@mui/joy@5.0.0-alpha.45`
|
|
96
|
+
|
|
97
|
+
- ​<!-- 20 -->[Joy UI] Add `CircularProgress` component (#33869) @hbjORbj
|
|
98
|
+
- ​<!-- 19 -->[Joy UI] Add `FormControl` component (#34187) @siriwatknp
|
|
99
|
+
- ​<!-- 18 -->[Joy UI] Add `ListSubheader` component (#34191) @siriwatknp
|
|
100
|
+
- ​<!-- 17 -->[Joy UI] Add `Modal` component (#34043) @siriwatknp
|
|
101
|
+
- ​<!-- 10 -->[Joy] Fix list value of false or 0 (zero) text is incorrectly grey (#34255) @kushagra010
|
|
102
|
+
- ​<!-- 09 -->[Joy] Adjust typography decorator margin (#34257) @siriwatknp
|
|
103
|
+
- ​<!-- 08 -->[Joy] Miscellaneous fixes (#34193) @siriwatknp
|
|
104
|
+
- ​<!-- 07 -->[Radio][joy] Integrate with form control (#34277) @siriwatknp
|
|
105
|
+
- ​<!-- 06 -->[Joy][textarea] Pass `textarea` props from `componentsProps` (#34223) @HexM7
|
|
106
|
+
|
|
107
|
+
### Docs
|
|
108
|
+
|
|
109
|
+
- ​<!-- 16 -->[blog] Introducing MUI Base (#33778) @michaldudak
|
|
110
|
+
- ​<!-- 13 -->[docs] Fix spelling error (#34209) @ChrystianDeMatos
|
|
111
|
+
- ​<!-- 12 -->[docs] Improve link to the security policy (#34219) @oliviertassinari
|
|
112
|
+
- ​<!-- 11 -->[docs] Fix typo in Joy UI's `Usage` docs (#34200) @zillion504
|
|
113
|
+
- ​<!-- 02 -->[website] Add Lukas to the about page (#34284) @LukasTy
|
|
114
|
+
- ​<!-- 01 -->[website] Update diamond sponsor URL (#34256) @oliviertassinari
|
|
115
|
+
|
|
116
|
+
### Core
|
|
117
|
+
|
|
118
|
+
- ​<!-- 04 -->[test] Replace argos-cli with @argos-ci/core (#34178) @michaldudak
|
|
119
|
+
- ​<!-- 15 -->[core] Create a script to generate codeowners (#34175) @michaldudak
|
|
120
|
+
- ​<!-- 14 -->[core] Add RFC GH issue template (#33871) @bytasv
|
|
121
|
+
|
|
122
|
+
All contributors of this release in alphabetical order: @bytasv, @ChrystianDeMatos, @hbjORbj, @HexM7, @iamxukai, @kushagra010, @LukasTy, @michaldudak, @oliviertassinari, @siriwatknp, @ZeeshanTamboli, @zillion504
|
|
123
|
+
|
|
124
|
+
## 5.10.4
|
|
125
|
+
|
|
126
|
+
<!-- generated comparing v5.10.3..master -->
|
|
127
|
+
|
|
128
|
+
_Sep 5, 2022_
|
|
129
|
+
|
|
130
|
+
A big thanks to the 11 contributors who made this release possible. Here are some highlights ✨:
|
|
131
|
+
|
|
132
|
+
- 🚀 Added [`Alert`](https://mui.com/joy-ui/react-alert/) component to Joy UI (#33859) @hbjORbj
|
|
133
|
+
- Many other 🐛 bug fixes, 📚 documentation, and ⚙️ infrastructure improvements
|
|
134
|
+
|
|
135
|
+
### `@mui/material@5.10.4`
|
|
136
|
+
|
|
137
|
+
- ​<!-- 22 -->[Avatar] Use structured / semantic markup for avatars and avatar groups (#33994) @paulschreiber
|
|
138
|
+
- ​<!-- 05 -->[Steps] Use structured / semantic markup for steps and steppers (#34138) @paulschreiber
|
|
139
|
+
|
|
140
|
+
### `@mui/joy@5.0.0-alpha.44`
|
|
141
|
+
|
|
142
|
+
- ​<!-- 23 -->[Alert][joy] Add `Alert` component (#33859) @hbjORbj
|
|
143
|
+
- ​<!-- 08 -->[Joy] Make the description of `componentsProps` generic (#34140) @hbjORbj
|
|
144
|
+
- ​<!-- 07 -->[Joy] Add tests / classes for `Breadcrumbs` component (#33860) @hbjORbj
|
|
145
|
+
- ​<!-- 06 -->[Select][joy] Fix forwarding listbox `component` prop (#34172) @siriwatknp
|
|
146
|
+
|
|
147
|
+
### `@mui/base@5.0.0-alpha.96`
|
|
148
|
+
|
|
149
|
+
- ​<!-- 21 -->[Select][base] Fix type issues that appeared with TS 4.8 (#34132) @michaldudak
|
|
150
|
+
|
|
151
|
+
### Docs
|
|
152
|
+
|
|
153
|
+
- ​<!-- 15 -->[docs] Add `mui-color-input`, `mui-chips-input` and `mui-tel-input` into the related projects page (#34123) @viclafouch
|
|
154
|
+
- ​<!-- 14 -->[docs] Update sponsors (#34157) @hbjORbj
|
|
155
|
+
- ​<!-- 13 -->[docs] Move 5 component names to Title Case (#34118) @oliviertassinari
|
|
156
|
+
- ​<!-- 12 -->[docs] Fix the color contrast on optional API methods (#34127) @oliviertassinari
|
|
157
|
+
- ​<!-- 11 -->[docs] Fix crash due to using wrong variable (#34171) @siriwatknp
|
|
158
|
+
- ​<!-- 10 -->[docs] Fix a few Base typos (#33986) @ropereraLK
|
|
159
|
+
- ​<!-- 09 -->[docs] Revise Joy UI "Overview" page copy (#34087) @samuelsycamore
|
|
160
|
+
- ​<!-- 20 -->[blog] Fix social cards (#34160) @oliviertassinari
|
|
161
|
+
- ​<!-- 03 -->[website] Allow deep linking to sponsors @oliviertassinari
|
|
162
|
+
- ​<!-- 02 -->[website] Update job descriptions (#34134) @DanailH
|
|
163
|
+
- ​<!-- 01 -->[website] Link Toolpad landing page @oliviertassinari
|
|
164
|
+
|
|
165
|
+
### Core
|
|
166
|
+
|
|
167
|
+
- ​<!-- 19 -->[core] Move renovate config to the repository root (#34180) @oliviertassinari
|
|
168
|
+
- ​<!-- 18 -->[core] Reinstate react/no-unused-prop-types eslint rule (#34125) @Janpot
|
|
169
|
+
- ​<!-- 17 -->[core] Do not append `types` field to packages without index.d.ts (#33952) @michaldudak
|
|
170
|
+
- ​<!-- 16 -->[core] Sanitize input in icon synonyms update script (#33989) @michaldudak
|
|
171
|
+
- ​<!-- 04 -->[test] Allow to pass options to `mousePress` function (#34124) @cherniavskii
|
|
172
|
+
|
|
173
|
+
All contributors of this release in alphabetical order: @cherniavskii, @DanailH, @hbjORbj, @Janpot, @michaldudak, @oliviertassinari, @paulschreiber, @ropereraLK, @samuelsycamore, @siriwatknp, @viclafouch
|
|
174
|
+
|
|
175
|
+
## 5.10.3
|
|
176
|
+
|
|
177
|
+
<!-- generated comparing v5.10.2..master -->
|
|
178
|
+
|
|
179
|
+
_Aug 29, 2022_
|
|
180
|
+
|
|
181
|
+
A big thanks to the 16 contributors who made this release possible. Here are some highlights ✨:
|
|
182
|
+
|
|
183
|
+
- ⚡ @mnajdova implemented an alternative to OverridableComponent to achieve better dev-time performance (#32735)
|
|
184
|
+
- Many other 🐛 bug fixes, 📚 documentation, and ⚙️ infrastructure improvements
|
|
185
|
+
|
|
186
|
+
### `@mui/material@5.10.3`
|
|
187
|
+
|
|
188
|
+
- [Autocomplete][material] Fix value overflow when `disableClearable` is used (#34053) @mnajdova
|
|
189
|
+
- [Autocomplete] Update unstyled demo to not import Material UI (#34060) @oliviertassinari
|
|
190
|
+
- [Slider] Remove SliderInput export from d.ts (#34055) @pieetrus
|
|
191
|
+
- [TablePagination] Fix select variant not working (#33974) @ZeeshanTamboli
|
|
192
|
+
|
|
193
|
+
### `@mui/system@5.10.3`
|
|
194
|
+
|
|
195
|
+
- [system] Fix mode blink when open multiple sessions (#33877) @siriwatknp
|
|
196
|
+
|
|
197
|
+
### `@mui/base@5.0.0-alpha.95`
|
|
198
|
+
|
|
199
|
+
- [Button][base] Prevent too many ref updates (#33882) @michaldudak
|
|
200
|
+
- [Select][base] Fix typo in listbox blur event handler (#34120) @ZeeshanTamboli
|
|
201
|
+
- [TrapFocus] Improve tab test and simplify demo (#34008) @EthanStandel
|
|
202
|
+
|
|
203
|
+
### `@mui/joy@5.0.0-alpha.43`
|
|
204
|
+
|
|
205
|
+
- [Joy] Fix `role` proptypes (#34119) @siriwatknp
|
|
206
|
+
- [Joy] Refine `componentsProps` for all components (#34077) @siriwatknp
|
|
207
|
+
- [Radio][joy] support `componentsProps` as a function (#34022) @siriwatknp
|
|
208
|
+
- [Select][joy] Improve the a11y on the select field demo (#34073) @mnajdova
|
|
209
|
+
- [Textarea][joy] Add `Textarea` component (#33975) @siriwatknp
|
|
210
|
+
|
|
211
|
+
### Docs
|
|
212
|
+
|
|
213
|
+
- [blog] Add Grid v2 announcement (#33926) @siriwatknp
|
|
214
|
+
- [blog] Making customizable components (#33183) @alexfauquette
|
|
215
|
+
- [blog] Improve SEO metadata (#33954) @oliviertassinari
|
|
216
|
+
- [docs] Add introduction Base component demos & general uplift (#33896) @danilo-leal
|
|
217
|
+
- [docs] Fix Gatsby sample config in CSS variables (#34024) @bicstone
|
|
218
|
+
- [docs] Fix 404 link from Joy to React Router (#34115) @oliviertassinari
|
|
219
|
+
- [docs] Fix typo in `Select` component (#34091) @HexM7
|
|
220
|
+
- [docs] Fix 301 links to tss's docs @oliviertassinari
|
|
221
|
+
- [docs] Fixing Joy UI usage snippet (#34049) @JonathanAsbury-SPS
|
|
222
|
+
- [docs] Fix missing JSX closing tag in Tooltip docs (#34064) @hoangph271
|
|
223
|
+
- [website] Add Toolpad to Navigation (#33937) @bharatkashyap
|
|
224
|
+
- [website] Improve SEO meta description for MUI X @oliviertassinari
|
|
225
|
+
- [website] Improve visual look of code demos (#34070) @oliviertassinari
|
|
226
|
+
- [website] Fix `DatePicker` component demo on the home page (#34054) @NaveenPantra
|
|
227
|
+
|
|
228
|
+
### Core
|
|
229
|
+
|
|
230
|
+
- [core] Offer alternative to `OverridableComponent` via module augmentation for better performance (#32735) @mnajdova
|
|
231
|
+
- [core] Fix prop-type warning in regression tests (#34086) @oliviertassinari
|
|
232
|
+
- [core] Specify code owners (#33995) @michaldudak
|
|
233
|
+
- [core] Fix scroll restoration (#34037) @oliviertassinari
|
|
234
|
+
|
|
235
|
+
All contributors of this release in alphabetical order: @alexfauquette, @bharatkashyap, @bicstone, @danilo-leal, @EthanStandel, @HexM7, @hoangph271, @JonathanAsbury-SPS, @michaldudak, @mnajdova, @NaveenPantra, @oliviertassinari, @pieetrus, @renovate[bot], @siriwatknp, @ZeeshanTamboli
|
|
236
|
+
|
|
3
237
|
## 5.10.2
|
|
4
238
|
|
|
5
239
|
<!-- generated comparing v5.10.1..master -->
|