@mui/icons-material 5.10.3 → 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.
Files changed (3) hide show
  1. package/CHANGELOG.md +172 -0
  2. package/index.js +1 -1
  3. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -1,5 +1,177 @@
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
+ - &#8203;<!-- 05 -->[ListItemText] Fix variant mapping in `primaryTypography` (#33880) @iamxukai
93
+ - &#8203;<!-- 03 -->[Timeline] Add left and right aligned timeline demos in docs (#34156) @ZeeshanTamboli
94
+
95
+ ### `@mui/joy@5.0.0-alpha.45`
96
+
97
+ - &#8203;<!-- 20 -->[Joy UI] Add `CircularProgress` component (#33869) @hbjORbj
98
+ - &#8203;<!-- 19 -->[Joy UI] Add `FormControl` component (#34187) @siriwatknp
99
+ - &#8203;<!-- 18 -->[Joy UI] Add `ListSubheader` component (#34191) @siriwatknp
100
+ - &#8203;<!-- 17 -->[Joy UI] Add `Modal` component (#34043) @siriwatknp
101
+ - &#8203;<!-- 10 -->[Joy] Fix list value of false or 0 (zero) text is incorrectly grey (#34255) @kushagra010
102
+ - &#8203;<!-- 09 -->[Joy] Adjust typography decorator margin (#34257) @siriwatknp
103
+ - &#8203;<!-- 08 -->[Joy] Miscellaneous fixes (#34193) @siriwatknp
104
+ - &#8203;<!-- 07 -->[Radio][joy] Integrate with form control (#34277) @siriwatknp
105
+ - &#8203;<!-- 06 -->[Joy][textarea] Pass `textarea` props from `componentsProps` (#34223) @HexM7
106
+
107
+ ### Docs
108
+
109
+ - &#8203;<!-- 16 -->[blog] Introducing MUI Base (#33778) @michaldudak
110
+ - &#8203;<!-- 13 -->[docs] Fix spelling error (#34209) @ChrystianDeMatos
111
+ - &#8203;<!-- 12 -->[docs] Improve link to the security policy (#34219) @oliviertassinari
112
+ - &#8203;<!-- 11 -->[docs] Fix typo in Joy UI's `Usage` docs (#34200) @zillion504
113
+ - &#8203;<!-- 02 -->[website] Add Lukas to the about page (#34284) @LukasTy
114
+ - &#8203;<!-- 01 -->[website] Update diamond sponsor URL (#34256) @oliviertassinari
115
+
116
+ ### Core
117
+
118
+ - &#8203;<!-- 04 -->[test] Replace argos-cli with @argos-ci/core (#34178) @michaldudak
119
+ - &#8203;<!-- 15 -->[core] Create a script to generate codeowners (#34175) @michaldudak
120
+ - &#8203;<!-- 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
+ - &#8203;<!-- 22 -->[Avatar] Use structured / semantic markup for avatars and avatar groups (#33994) @paulschreiber
138
+ - &#8203;<!-- 05 -->[Steps] Use structured / semantic markup for steps and steppers (#34138) @paulschreiber
139
+
140
+ ### `@mui/joy@5.0.0-alpha.44`
141
+
142
+ - &#8203;<!-- 23 -->[Alert][joy] Add `Alert` component (#33859) @hbjORbj
143
+ - &#8203;<!-- 08 -->[Joy] Make the description of `componentsProps` generic (#34140) @hbjORbj
144
+ - &#8203;<!-- 07 -->[Joy] Add tests / classes for `Breadcrumbs` component (#33860) @hbjORbj
145
+ - &#8203;<!-- 06 -->[Select][joy] Fix forwarding listbox `component` prop (#34172) @siriwatknp
146
+
147
+ ### `@mui/base@5.0.0-alpha.96`
148
+
149
+ - &#8203;<!-- 21 -->[Select][base] Fix type issues that appeared with TS 4.8 (#34132) @michaldudak
150
+
151
+ ### Docs
152
+
153
+ - &#8203;<!-- 15 -->[docs] Add `mui-color-input`, `mui-chips-input` and `mui-tel-input` into the related projects page (#34123) @viclafouch
154
+ - &#8203;<!-- 14 -->[docs] Update sponsors (#34157) @hbjORbj
155
+ - &#8203;<!-- 13 -->[docs] Move 5 component names to Title Case (#34118) @oliviertassinari
156
+ - &#8203;<!-- 12 -->[docs] Fix the color contrast on optional API methods (#34127) @oliviertassinari
157
+ - &#8203;<!-- 11 -->[docs] Fix crash due to using wrong variable (#34171) @siriwatknp
158
+ - &#8203;<!-- 10 -->[docs] Fix a few Base typos (#33986) @ropereraLK
159
+ - &#8203;<!-- 09 -->[docs] Revise Joy UI "Overview" page copy (#34087) @samuelsycamore
160
+ - &#8203;<!-- 20 -->[blog] Fix social cards (#34160) @oliviertassinari
161
+ - &#8203;<!-- 03 -->[website] Allow deep linking to sponsors @oliviertassinari
162
+ - &#8203;<!-- 02 -->[website] Update job descriptions (#34134) @DanailH
163
+ - &#8203;<!-- 01 -->[website] Link Toolpad landing page @oliviertassinari
164
+
165
+ ### Core
166
+
167
+ - &#8203;<!-- 19 -->[core] Move renovate config to the repository root (#34180) @oliviertassinari
168
+ - &#8203;<!-- 18 -->[core] Reinstate react/no-unused-prop-types eslint rule (#34125) @Janpot
169
+ - &#8203;<!-- 17 -->[core] Do not append `types` field to packages without index.d.ts (#33952) @michaldudak
170
+ - &#8203;<!-- 16 -->[core] Sanitize input in icon synonyms update script (#33989) @michaldudak
171
+ - &#8203;<!-- 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
+
3
175
  ## 5.10.3
4
176
 
5
177
  <!-- generated comparing v5.10.2..master -->
package/index.js CHANGED
@@ -1,4 +1,4 @@
1
- /** @license MUI v5.10.3
1
+ /** @license MUI v5.10.6
2
2
  *
3
3
  * This source code is licensed under the MIT license found in the
4
4
  * LICENSE file in the root directory of this source tree.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mui/icons-material",
3
- "version": "5.10.3",
3
+ "version": "5.10.6",
4
4
  "private": false,
5
5
  "author": "MUI Team",
6
6
  "description": "Material Design icons distributed as SVG React components.",
@@ -38,7 +38,7 @@
38
38
  }
39
39
  },
40
40
  "dependencies": {
41
- "@babel/runtime": "^7.18.9"
41
+ "@babel/runtime": "^7.19.0"
42
42
  },
43
43
  "sideEffects": false,
44
44
  "publishConfig": {