@mui/icons-material 5.11.0 → 5.11.11

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 +693 -2
  2. package/index.js +3 -1
  3. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -1,5 +1,696 @@
1
1
  # [Versions](https://mui.com/versions/)
2
2
 
3
+ ## 5.11.11
4
+
5
+ <!-- generated comparing v5.11.10..master -->
6
+
7
+ _Feb 27, 2023_
8
+
9
+ A big thanks to the 15 contributors who made this release possible. Here are some highlights ✨:
10
+
11
+ - 📚 added API documentation for the slots in MUI Base and Joy UI by @hbjORbj, for e.g. [SliderUnstyled API](https://mui.com/base/api/slider-unstyled/#slots)
12
+ - other 🐛 bug fixes and 📚 documentation improvements.
13
+
14
+ ### `@mui/material@5.11.11`
15
+
16
+ - &#8203;<!-- 30 -->[Autocomplete] Adds `sx` prop to `ListboxProps` type (#36243) @sai6855
17
+ - &#8203;<!-- 11 -->[material] Add global CSS class for `readOnly` prop (#32822) @jrparish
18
+ - &#8203;<!-- 10 -->[Stack][material] Use createStack from the system (#33795) @mnajdova
19
+ - &#8203;<!-- 07 -->[Select] Fix incorrect selecting of first element (#36024) @michaldudak
20
+ - &#8203;<!-- 06 -->[Slider] Miscellaneous improvements (#35941) @ZeeshanTamboli
21
+ - &#8203;<!-- 05 -->[Slider] Remove unnecessary `data-focusvisible` attribute (#36091) @ZeeshanTamboli
22
+ - &#8203;<!-- 04 -->[Snackbar] Replace component logic with `useSnackbar` hook (#36272) @ZeeshanTamboli
23
+ - &#8203;<!-- 03 -->[TextField] Fix floating label position (#36246) @oliviertassinari
24
+ - &#8203;<!-- 13 -->[TextField] Fix floating label position (#36288) @oliviertassinari
25
+
26
+ ### `@mui/base@5.0.0-alpha.119`
27
+
28
+ #### Breaking changes
29
+
30
+ - &#8203;<!-- 29 -->[base] Remove `classes` prop from the Base components that have it (#36157) @hbjORbj
31
+ These are the components affected by this change: ModalUnstyled, SliderUnstyled, TablePaginationUnstyled and TablePaginationActionsUnstyled.
32
+ You can replace the `classes` prop by providing the class name prop directly to the prop via `slotProps`. Below is an example of how the migration should look like:
33
+
34
+ ```diff
35
+ <TablePaginationUnstyled
36
+ - classes={{ toolbar: 'toolbar-classname', menuItem: 'menuItem-classname' }}
37
+ + slotProps={{ toolbar: { className: 'toolbar-classname' }, menuItem: { className: 'menuItem-classname'}}}
38
+ />
39
+ ```
40
+
41
+ - &#8203;<!-- 28 -->[base] Move hooks to their own directories (#36235) @hbjORbj
42
+ Base hooks (e.g., `useSelect`) are no longer exported from `{Component}Unstyled` directories and instead they have their own directories.
43
+ Below is an example of how the migration should look like:
44
+
45
+ ```diff
46
+ -import { useBadge } from '@mui/base/BadgeUnstyled';
47
+ +import useBadge from '@mui/base/useBadge';
48
+ ```
49
+
50
+ You can use this [codemod](https://github.com/mui/material-ui/blob/master/packages/mui-codemod/README.md#base-hook-imports) to help with the migration.
51
+
52
+ #### Changes
53
+
54
+ - &#8203;<!-- 31 -->[Autocomplete] Add docs interface for the hook (#36242) @HeVictor
55
+ - &#8203;<!-- 09 -->[MenuUnstyled] Remove extra useMemo (#36265) @ivp-dev
56
+ - &#8203;<!-- 31 -->[base] Export all slot prop overrides interfaces (#36323) @michaldudak
57
+
58
+ ### `@mui/codemod@5.11.11`
59
+
60
+ - &#8203;<!-- 35 -->[base] Codemod for hook directory migration (#36295) @hbjORbj
61
+
62
+ ### `@mui/joy@5.0.0-alpha.69`
63
+
64
+ - &#8203;<!-- 15 -->[Joy] Able to remove default tokens from theme types (#36006) @siriwatknp
65
+ - &#8203;<!-- 14 -->[Joy] Fix modal dialog overflow viewport (#36103) @siriwatknp
66
+ - &#8203;<!-- 13 -->[Joy] Select popup should have max-height (#36156) @Vivek-Prajapatii
67
+ - &#8203;<!-- 12 -->[Joy] Fix `ListDivider` to change semantic based on `List` (#36266) @siriwatknp
68
+
69
+ ### Docs
70
+
71
+ - &#8203;<!-- 27 -->[docs][base] List slots in API documentation (#36104) @hbjORbj
72
+ - &#8203;<!-- 26 -->[docs] Add missing sandbox adapter deps resolving (#36291) @LukasTy
73
+ - &#8203;<!-- 25 -->[docs] Allow to pass navigation bar banner from outside (#36299) @MBilalShafi
74
+ - &#8203;<!-- 24 -->[docs] Fix code on the Working with Tailwind CSS guide (#36090) @mnajdova
75
+ - &#8203;<!-- 23 -->[docs] Remove See Slots Section text from Material UI slots description (#36284) @hbjORbj
76
+ - &#8203;<!-- 22 -->[docs] Fix emotion warning `:first-child` (#36263) @siriwatknp
77
+ - &#8203;<!-- 21 -->[docs][joy] Improve the descriptions of props in API docs (#36307) @hbjORbj
78
+ - &#8203;<!-- 20 -->[docs][joy] List slots in API documentation (#36271) @hbjORbj
79
+ - &#8203;<!-- 19 -->[docs][joy] Build API documentations (#36008) @hbjORbj
80
+ - &#8203;<!-- 18 -->[examples] Update Next.js examples to use built-in font (#36315) @Juneezee
81
+ - &#8203;<!-- 17 -->[examples] Update curl link in `material-next-ts-v4-v5-migration` example README (#36321) @ZeeshanTamboli
82
+ - &#8203;<!-- 16 -->[examples] Convert Next.js \_document class components to function components (#36109) @ossan-engineer
83
+
84
+ ### Core
85
+
86
+ - &#8203;<!-- 08 -->[Rating] Add a comment in Rating component to use `readOnly` state class (#36357) @ZeeshanTamboli
87
+ - &#8203;<!-- 02 -->[website] Fix broken links to role levels (#36333) @oliviertassinari
88
+ - &#8203;<!-- 01 -->[website] Sync gold sponsors (#36312) @oliviertassinari
89
+
90
+ All contributors of this release in alphabetical order: @hbjORbj, @HeVictor, @ivp-dev, @jrparish, @Juneezee, @LukasTy, @MBilalShafi, @michaldudak, @mnajdova, @oliviertassinari, @ossan-engineer, @sai6855, @siriwatknp, @Vivek-Prajapatii, @ZeeshanTamboli
91
+
92
+ ## 5.11.10
93
+
94
+ <!-- generated comparing v5.11.9..master -->
95
+
96
+ _Feb 20, 2023_
97
+
98
+ A big thanks to the 11 contributors who made this release possible.
99
+ This release was mostly about 🐛 bug fixes and 📚 documentation improvements.
100
+
101
+ ### `@mui/material@5.11.10`
102
+
103
+ - &#8203;<!-- 22 -->[Avatar] Fix ownerState usage with styleOverrides when fallback is used (#36228) @sai6855
104
+ - &#8203;<!-- 21 -->[Badge][material] Replace `BadgeUnstyled` with `useBadge` hook (#36158) @hbjORbj
105
+ - &#8203;<!-- 03 -->[Switch] Fix DOM warning when `type` isn't `checkbox` or `radio` (#36170) @dani-mp
106
+ - &#8203;<!-- 02 -->[TextareaAutosize] Convert code to TypeScript (#35862) @sai6855
107
+ - &#8203;<!-- 01 -->[useMediaQuery] Fix behavior of noSsr with React 18 (#36056) @oliviertassinari
108
+
109
+ ### `@mui/joy@5.0.0-alpha.68`
110
+
111
+ - &#8203;<!-- 05 -->[Joy] Add `zIndex` to theme (#36236) @siriwatknp
112
+ - &#8203;<!-- 04 -->[Joy] Remove transition from all components (#35952) @hbjORbj
113
+
114
+ ### Docs
115
+
116
+ - &#8203;<!-- 20 -->[docs][base] Fix base Input demos for Safari (#36213) @mj12albert
117
+ - &#8203;<!-- 16 -->[docs] Fix 301 links @oliviertassinari
118
+ - &#8203;<!-- 15 -->[docs] Fix modal transition demos (#36137) @oliviertassinari
119
+ - &#8203;<!-- 14 -->[docs] Update links to pt examples (#36237) @Aleff13
120
+ - &#8203;<!-- 13 -->[docs] Update custom Typography variants example (#36185) @mj12albert
121
+ - &#8203;<!-- 12 -->[docs] Change markdown numbering syntax (#36187) @mj12albert
122
+ - &#8203;<!-- 11 -->[docs] Fix switch alignment in `Disabled tree items` section in Tree View docs (#36217) @PunitSoniME
123
+ - &#8203;<!-- 10 -->[docs] Standardize example names (#36112) @samuelsycamore
124
+ - &#8203;<!-- 09 -->[docs] Fix typo @oliviertassinari
125
+ - &#8203;<!-- 08 -->[docs] Fix markdown table alignments (#36136) @oliviertassinari
126
+ - &#8203;<!-- 07 -->[docs] Small color tweaks to the docs search bar (#36160) @danilo-leal
127
+ - &#8203;<!-- 06 -->[docs][joy] Update class name prefixes in the `Anatomy` section (#36210) @ZeeshanTamboli
128
+
129
+ ### Core
130
+
131
+ - &#8203;<!-- 19 -->[core] Migrate nprogress to emotion (#36181) @siriwatknp
132
+ - &#8203;<!-- 18 -->[core] Enforce namespace import for ReactDOM (#36208) @mj12albert
133
+ - &#8203;<!-- 17 -->[core] Fix deploy preview links (#36203) @siriwatknp
134
+
135
+ All contributors of this release in alphabetical order: @Aleff13, @dani-mp, @danilo-leal, @hbjORbj, @mj12albert, @oliviertassinari, @PunitSoniME, @sai6855, @samuelsycamore, @siriwatknp, @ZeeshanTamboli
136
+
137
+ ## 5.11.9
138
+
139
+ <!-- generated comparing v5.11.8..master -->
140
+
141
+ _Feb 14, 2023_
142
+
143
+ A big thanks to the 17 contributors who made this release possible. Here are some highlights ✨:
144
+
145
+ - 🐛 @rangoo94, @sai6855, and @michaldudak fixed a couple of bugs in the Autocomplete component (#36116, #35640, #36076, #36088)
146
+ - many other 🐛 bug fixes and 📚 documentation improvements
147
+
148
+ ### `@mui/material@5.11.9`
149
+
150
+ - [AppBar] Fix joinVars() not handling undefined (#36128) @donaldnevermore
151
+ - [Autocomplete] Fix tag removal regression (#36116) @michaldudak
152
+ - [Autocomplete] Correct padding of filled Autocomplete (#35640) @michaldudak
153
+ - [Grid][Stack] classNames prefixed with Mui (#36167) @sai6855
154
+
155
+ ### `@mui/styled-engine@5.11.9`
156
+
157
+ - [StyledEngineProvider] Fix issue with cache not being defined (#36162) @mnajdova
158
+
159
+ ### `@mui/joy@5.0.0-alpha.67`
160
+
161
+ - [Joy] Add order dashboard template (#36081) @siriwatknp
162
+ - [Joy] Remove classes prop from the components that have it (#36159) @hbjORbj
163
+ - [Joy] Miscellaneous fixes (#36163) @siriwatknp
164
+
165
+ ### `@mui/base@5.0.0-alpha.118`
166
+
167
+ - [base] Override the types of `slotProps` per slot (#35964) @hbjORbj
168
+ - [Select][base] Prevent unnecessary rerendering of Select options (#35946) @michaldudak
169
+ - [Select][base] Update the generated docs (#36183) @michaldudak
170
+ - [useAutocomplete] Pass only valid values for the getOptionLabel prop (#36088) @rangoo94
171
+ - [useAutocomplete] Fix `useAutocomplete` disabled prop not disabling the input (#36076) @sai6855
172
+ - [useInput] Add return value interface (#36036) @Shorifpatwary
173
+ - [UseTabPanel] Add explicit return type (#36053) @Shorifpatwary
174
+ - [useTabsList] Add explicit return type (#36048) @sai6855
175
+ - [Tab] Add explicit return type to useTab (#36046) @sai6855
176
+
177
+ ### `@mui/material-next@6.0.0-alpha.75`
178
+
179
+ - [Material You] Use `md` as a CSS var prefix (#36177) @siriwatknp
180
+
181
+ ### Docs
182
+
183
+ - [docs] Fix the prop type regression on the API pages (#36168) @mnajdova
184
+ - [docs] Fix virtualized table column resizing (#36066) @petyosi
185
+ - [docs] Fix react-spring demos (#36023) @oliviertassinari
186
+ - [docs] Fix classname mismatch on Joy docs (#36127) @siriwatknp
187
+ - [docs] Fix typo in the released version of @mui/styled-engine (#36121) @m4theushw
188
+ - [docs] Fix demos showing TypeScript instead of JavaScript (#35850) @mj12albert
189
+ - [docs] Update release instructions (#36113) @mj12albert
190
+ - [docs] Rename `v6-alpha` to `v6-next` in navigation (#36102) @LukasTy
191
+ - [docs] Revise Joy UI "Input" page (#35970) @LadyBluenotes
192
+ - [docs] Revise Joy UI "Typography" page (#35868) @LadyBluenotes
193
+
194
+ ### Examples
195
+
196
+ - [examples][vitejs] Load Roboto font (#35678) @oliv37
197
+
198
+ ### Core
199
+
200
+ - [blog] Fix the look and feel of the media description (#36069) @oliviertassinari
201
+ - [core] Add default preview url (#36118) @siriwatknp
202
+ - [core] Migrate all the internals exported by `tests/utils/index.js` to TypeScript (#35382) @flaviendelangle
203
+ - [core] Convert the waterfall module to an internal package (#35323) @michaldudak
204
+ - [website] Fix homepage MD theme demo (#36027) @oliviertassinari
205
+ - [website] Revise the Lead Designer role job ad (#35912) @danilo-leal
206
+ - [POC] Add deploy preview to PR body (#35995) @siriwatknp
207
+
208
+ All contributors of this release in alphabetical order: @danilo-leal, @donaldnevermore, @flaviendelangle, @hbjORbj, @LadyBluenotes, @LukasTy, @m4theushw, @michaldudak, @mj12albert, @mnajdova, @oliv37, @oliviertassinari, @petyosi, @rangoo94, @sai6855, @Shorifpatwary, @siriwatknp
209
+
210
+ ## 5.11.8
211
+
212
+ <!-- generated comparing v5.11.7..master -->
213
+
214
+ _Feb 7, 2023_
215
+
216
+ A big thanks to the 14 contributors who made this release possible. Here are some highlights ✨:
217
+
218
+ - @siriwatknp added a new [`Sign In` template](https://mui.com/joy-ui/getting-started/templates/sign-in-side/) to Joy UI (#36019)
219
+ - 📚 Documentation improvements and 🐛 bug fixes as usual
220
+
221
+ ### `@mui/material@5.11.8`
222
+
223
+ - &#8203;<!-- 10 -->[FormLabel] Export `FormLabelOwnProps` from `FormLabel` to fix type error (#36057) @yoskeoka
224
+
225
+ ### `@mui/joy@5.0.0-alpha.66`
226
+
227
+ - &#8203;<!-- 09 -->[Joy] Miscellaneous fixes (#36073) @siriwatknp
228
+ - &#8203;<!-- 08 -->[Joy] Add sign-in side template (#36019) @siriwatknp
229
+ - &#8203;<!-- 07 -->[Joy] Add missing `Table` export from root (#36010) @sai6855
230
+
231
+ ### `@mui/system@5.11.8`
232
+
233
+ - &#8203;<!-- 05 -->[System] Fix nested grid v2 (#35994) @siriwatknp
234
+
235
+ ### `@mui/styled-engine@5.11.8`
236
+
237
+ - &#8203;<!-- 06 -->[styled-engine] Create cache only if `document` is available (#36001) @m4theushw
238
+
239
+ ### Docs
240
+
241
+ - &#8203;<!-- 23 -->[blog] Fix dark mode support (#35969) @oliviertassinari
242
+ - &#8203;<!-- 19 -->[docs] Add banner pointing to "Whats new" in MUI X page (#36074) @joserodolfofreitas
243
+ - &#8203;<!-- 18 -->[docs] Revert unintended change @oliviertassinari
244
+ - &#8203;<!-- 17 -->[docs] [Joy] Fixed a typo in `customizing theme tokens` (#36067) @badalsaibo
245
+ - &#8203;<!-- 16 -->[docs] Improve inline preview's information (#35974) @oliviertassinari
246
+ - &#8203;<!-- 15 -->[docs] Fix wrong v5 migration instructions (#36022) @oliviertassinari
247
+ - &#8203;<!-- 14 -->[docs] Fix autocomplete render group key warning in the demo (#36025) @chuanyu0201
248
+ - &#8203;<!-- 13 -->[docs] Add hooks API pages for MUI Base (#35828) @mnajdova
249
+ - &#8203;<!-- 12 -->[docs] Fix grammar typo (#36016) @alexownejazayeri
250
+ - &#8203;<!-- 11 -->[docs][joy] Add JSDoc for the `AutocompleteProps` type (#36039) @ArthurPedroti
251
+
252
+ ### Core
253
+
254
+ - &#8203;<!-- 22 -->[core] Make it easier to find who is importing specific files (#35896) @oliviertassinari
255
+ - &#8203;<!-- 21 -->[core] Fix SEO redirections issues (#36041) @oliviertassinari
256
+ - &#8203;<!-- 20 -->[core] Fix a typo in the comment in setup test files (#36014) @ZeeshanTamboli
257
+ - &#8203;<!-- 04 -->[typescript] Explicitly define the component return types (#36013) @michaldudak
258
+ - &#8203;<!-- 03 -->[website] Fix layout shift (#36070) @oliviertassinari
259
+ - &#8203;<!-- 02 -->[website] Revise the Lead Designer role job ad (v1) (#36068) @oliviertassinari
260
+ - &#8203;<!-- 01 -->[website] Add Albert to the about page (#35954) @mj12albert
261
+
262
+ All contributors of this release in alphabetical order: @alexownejazayeri, @ArthurPedroti, @badalsaibo, @chuanyu0201, @joserodolfofreitas, @m4theushw, @michaldudak, @mj12albert, @mnajdova, @oliviertassinari, @sai6855, @siriwatknp, @yoskeoka, @ZeeshanTamboli
263
+
264
+ ## 5.11.7
265
+
266
+ <!-- generated comparing v5.11.6..master -->
267
+
268
+ _Jan 31, 2023_
269
+
270
+ A big thanks to the 15 contributors who made this release possible. Here are some highlights ✨:
271
+
272
+ - @siriwatknp added `Table` component to Joy UI (#35872)
273
+ - many other 🐛 bug fixes and 📚 documentation improvements
274
+
275
+ ### `@mui/material@5.11.7`
276
+
277
+ - &#8203;<!-- 30 -->[Autocomplete] Prevent reset scroll position when new options are added (#35735) @sai6855
278
+ - &#8203;<!-- 24 -->[CssVarsProvider] Skip `unstable_sxConfig` variables (#35932) @siriwatknp
279
+ - &#8203;<!-- 10 -->[InputLabel] Add missing `component` type (#35852) @sai6855
280
+ - &#8203;<!-- 05 -->[Tooltip] Fix tooltip position (#35909) @marktoman
281
+
282
+ ### `@mui/base@5.0.0-alpha.116`
283
+
284
+ - &#8203;<!-- 29 -->[ListboxUnstyled] Fix option state highlighted to prevent unnecessary focus (#35838) @SaidMarar
285
+
286
+ ### `@mui/joy@5.0.0-alpha.65`
287
+
288
+ #### Breaking changes
289
+
290
+ - &#8203;<!-- 05 -->[Joy] Replace `Joy[Component]` classname with `Mui[Component]` classname for all slots of components (#35718) @hbjORbj
291
+
292
+ - Renames the classname prefix of all Joy UI components from `'Joy'` to `'Mui'`.
293
+
294
+ ```diff
295
+ <Button
296
+ -sx={{ '& .JoyButton-root': { '& .JoyButton-button': {} } }}
297
+ +sx={{ '& .MuiButton-root': { '& .MuiButton-button': {} } }}
298
+ />
299
+ ```
300
+
301
+ You can use this [codemod](https://github.com/mui/material-ui/blob/master/packages/mui-codemod/README.md#joy-rename-classname-prefix) to help with the migration.
302
+
303
+ - &#8203;<!-- 04 -->[Joy] Replace `row` prop with `orientation` prop in all Joy UI components (#35721) @hbjORbj
304
+
305
+ - Transforms `row` prop to `orientation` prop across `Card`, `List` and `RadioGroup` components in Joy UI.
306
+
307
+ ```diff
308
+ <Card
309
+ -row
310
+ +orientation={"horizontal"}
311
+ />
312
+ ```
313
+
314
+ You can use this [codemod](https://github.com/mui/material-ui/blob/master/packages/mui-codemod/README.md#joy-rename-row-prop) to help with the migration.
315
+
316
+ #### Changes
317
+
318
+ - &#8203;<!-- 26 -->[Joy][Checkbox] Display correct icon in checkbox (#35943) @sai6855
319
+ - &#8203;<!-- 09 -->[Joy] Add `Table` component (#35872) @siriwatknp
320
+ - &#8203;<!-- 08 -->[Joy] Miscellaneous fixes (#35953) @siriwatknp
321
+
322
+ ### Docs
323
+
324
+ - &#8203;<!-- 28 -->[blog] Add RSS feed (#35777) @gorjiali
325
+ - &#8203;<!-- 27 -->[blog] Prevent horizontal scroll on blog posts (#35948) @oliviertassinari
326
+ - &#8203;<!-- 23 -->[docs] Add to codemod README about an added script (#35999) @hbjORbj
327
+ - &#8203;<!-- 22 -->[docs] Add a warning about to clear the local storage when `defaultMode` changes (#35937) @ArthurPedroti
328
+ - &#8203;<!-- 21 -->[docs] Fix Joy UI variables playground (#35950) @siriwatknp
329
+ - &#8203;<!-- 20 -->[docs] Fix typos in base components docs (#35985) @HeVictor
330
+ - &#8203;<!-- 19 -->[docs] Fix event's label reported to GA (#35930) @oliviertassinari
331
+ - &#8203;<!-- 18 -->[docs] Standardize "no longer" / "not documented" callouts in Material UI docs (#35957) @samuelsycamore
332
+ - &#8203;<!-- 17 -->[docs] Revise and expand Joy UI Checkbox doc (#35817) @samuelsycamore
333
+ - &#8203;<!-- 16 -->[docs] Add docs notification to Date and Time Pickers revamped (#35935) @joserodolfofreitas
334
+ - &#8203;<!-- 15 -->[docs] Update community theme builder to forked updated one (#35928) @idebeijer
335
+ - &#8203;<!-- 14 -->[docs] Add Joy default theme viewer (#35554) @siriwatknp
336
+ - &#8203;<!-- 13 -->[docs][joy] Fixed a typo in `Using icon libraries` page (#35989) @badalsaibo
337
+ - &#8203;<!-- 12 -->[docs][joy] Removed Badge info from Chip docs (#35955) @Vivek-Prajapatii
338
+ - &#8203;<!-- 11 -->[docs][system] Fix border color of Boxes in demos of `Configure the sx prop` page in dark mode (#35961) @ZeeshanTamboli
339
+
340
+ ### Core
341
+
342
+ - &#8203;<!-- 25 -->[core] Boolean props always have a default value of `false` in API docs (#35913) @hbjORbj
343
+ - &#8203;<!-- 04 -->[core] Improve types for usePreviousProps (#35833) @sai6855
344
+ - &#8203;<!-- 03 -->[website] Fix 404 link to store (#35973) @oliviertassinari
345
+ - &#8203;<!-- 02 -->[website] Fix 302 of diamond sponsor link @oliviertassinari
346
+ - &#8203;<!-- 01 -->[website] Fix outdated YouTube link @oliviertassinari
347
+
348
+ All contributors of this release in alphabetical order: @ArthurPedroti, @badalsaibo, @gorjiali, @hbjORbj, @HeVictor, @idebeijer, @joserodolfofreitas, @marktoman, @oliviertassinari, @sai6855, @SaidMarar, @samuelsycamore, @siriwatknp, @Vivek-Prajapatii, @ZeeshanTamboli
349
+
350
+ ## 5.11.6
351
+
352
+ <!-- generated comparing v5.11.5..master -->
353
+
354
+ _Jan 23, 2023_
355
+
356
+ A big thanks to the 13 contributors who made this release possible. Here are some highlights ✨:
357
+
358
+ - @ZeeshanTamboli improved the logic for handling the value label in the `SliderUnstyled` (#35805)
359
+ - many other 🐛 bug fixes and 📚 documentation improvements
360
+
361
+ ### `@mui/material@5.11.6`
362
+
363
+ - &#8203;<!-- 15 -->[Box] Fix usage of not supported features in TypeScript 3.5 (#35877) @mnajdova
364
+ - &#8203;<!-- 14 -->[Button] Fix border color for secondary disabled button (#35866) @SaidMarar
365
+ - &#8203;<!-- 03 -->[SwipeableDrawer] Add callback to customise touchstart ignore for swipeable drawer (#30759) @tech-meppem
366
+
367
+ ### `@mui/base@5.0.0-alpha.115`
368
+
369
+ #### Breaking changes
370
+
371
+ - &#8203;<!-- 04 -->[SliderUnstyled] Improved logic for displaying the value label (#35805) @ZeeshanTamboli
372
+
373
+ - The `valueLabelDisplay` prop is removed from `SliderUnstyled`. The prop was not working as intended in `SliderUnstyled` (See #35398). You can instead provide a `valueLabel` slot with the `slots` prop API to show the value label:
374
+
375
+ ```diff
376
+ - <SliderUnstyled valueLabelDisplay="on" />
377
+ + <SliderUnstyled slots={{ valueLabel: SliderValueLabel }} />
378
+ ```
379
+
380
+ 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
381
+
382
+ - The following classes are removed from `sliderUnstyledClasses` since they are not needed for the value label:
383
+
384
+ ```diff
385
+ - valueLabel
386
+ - valueLabelOpen
387
+ - valueLabelCircle
388
+ - valueLabelLabel
389
+ ```
390
+
391
+ In the custom value label component, you can define your own classNames and target them with CSS.
392
+
393
+ - The `SliderValueLabelUnstyled` component is removed from SliderUnstyled. You should provide your own custom component for the value label.
394
+
395
+ - To avoid using `React.cloneElement` API in value label, the component hierarchy structure of the value label is changed. The value label is now inside the Thumb slot - `Thumb` -> `Input`, `ValueLabel`.
396
+
397
+ #### Changes
398
+
399
+ - &#8203;<!-- 05 -->[InputUnstyled] Fix externally provided `inputRef` is ignored (#35807) @sai6855
400
+
401
+ ### `@mui/joy@5.0.0-alpha.64`
402
+
403
+ - &#8203;<!-- 17 -->[Avatar][joy] Remove `imgProps` prop and add Codemod script for migration (#35859) @hbjORbj
404
+
405
+ ### Docs
406
+
407
+ - &#8203;<!-- 16 -->[blog] Date and time pickers revamped (#35486) @joserodolfofreitas
408
+ - &#8203;<!-- 10 -->[docs] Fix incorrect breakpoint use (#34948) @rosita-dmello
409
+ - &#8203;<!-- 09 -->[docs] Replace react-virtualized with react-virtuoso in Table (#35700) @petyosi
410
+ - &#8203;<!-- 08 -->[docs] Fix account menu demo not closing with keyboard. (#35870) @mj12albert
411
+ - &#8203;<!-- 07 -->[docs] Fix typos in the docs of Joy UI (#35876) @HeVictor
412
+ - &#8203;<!-- 06 -->[docs] Fix wording in `Color` page (#35873) @oliv37
413
+
414
+ ### Core
415
+
416
+ - &#8203;<!-- 13 -->[core] Fix release changelog to handle commits with empty author field (#35921) @mnajdova
417
+ - &#8203;<!-- 12 -->[core] Revert `docs-utilities` migration to TypeScript and fix type (#35881) @ZeeshanTamboli
418
+ - &#8203;<!-- 11 -->[core] Migrate internal `docs-utilities` package to TypeScript (#35846) @ZeeshanTamboli
419
+ - &#8203;<!-- 02 -->[website] Designer don't spend their time writing code @oliviertassinari
420
+ - &#8203;<!-- 01 -->[website] Emphasis the technical background need for this role @oliviertassinari
421
+
422
+ All contributors of this release in alphabetical order: @HeVictor, @hbjORbj, @joserodolfofreitas, @mj12albert, @mnajdova, @oliv37, @oliviertassinari, @petyosi, @rosita-dmello, @sai6855, @SaidMarar, @tech-meppem, @ZeeshanTamboli
423
+
424
+ ## 5.11.5
425
+
426
+ <!-- generated comparing v5.11.4..master -->
427
+
428
+ _Jan 17, 2023_
429
+
430
+ A big thanks to the 17 contributors who made this release possible.
431
+ This release was mostly about 🐛 bug fixes and 📚 documentation improvements.
432
+
433
+ ### `@mui/material@5.11.5`
434
+
435
+ - [Material UI] Custom channel token should suppress the warning (#35804) @siriwatknp
436
+ - [Autocomplete] Fix value type when `strictNullChecks` is `false` (#35367) @fenghan34
437
+ - [Slider] Replace `SliderUnstyled` with `useSlider` hook (#35770) @ZeeshanTamboli
438
+ - [l10n] Add Belarusian translation (#35742) @volhalink
439
+
440
+ ### `@mui/system@5.11.5`
441
+
442
+ - [system] Improve the `createBox` types (#35532) @mnajdova
443
+
444
+ ### `@mui/codemod@5.11.5`
445
+
446
+ - Add `joy-text-field-to-input` codemod (#35462) @hbjORbj
447
+
448
+ ### `@mui/base@5.0.0-alpha.114`
449
+
450
+ - [base] Fix typos (#35802) @nnmax
451
+ - [Slider] Convert code to TypeScript (#35445) @sai6855
452
+
453
+ ### `@mui/joy@5.0.0-alpha.63`
454
+
455
+ - [Tabs][joy] Don't apply `:hover, :active` styles when `selected` (#35750) @sai6855
456
+ - Remove `TextField` component and replace its usage in docs with `FormControl`/`FormLabel`/`Input` (#35462) @hbjORbj
457
+ - [TextField] Throw error with migration message (#35845) @siriwatknp
458
+ - Miscellaneous fixes (#35847) @siriwatknp
459
+
460
+ ### Docs
461
+
462
+ - [docs] Improve pickers lab migration stressing `mui-x` usage (#35740) @LukasTy
463
+ - [docs] Fix incorrectly named AccessibleTable demo component (#35832) @HeVictor
464
+ - [docs] Clarify where to find docs for MUI Base components in Material UI (#35799) @samuelsycamore
465
+ - [docs] Fix typos (#35814) @alexfauquette
466
+ - [docs] Revise and expand the Joy UI Card page (#35745) @samuelsycamore
467
+ - [docs] Fix navigation layout shift (#35679) @oliviertassinari
468
+ - [docs] Fix typo in the Composition page (#35774) @msoyka
469
+ - [docs][joy] Update Customization section code example to use the correct API (#35765) @pupudu
470
+ - [docs][joy] Fix grammar in `Typography` docs (#35796) @atrefonas
471
+ - [examples] Remove `next-env.d.ts` from Next.js examples (#35772) @Juneezee
472
+
473
+ ### Core
474
+
475
+ - [website] Improve pricing page (#35767) @oliviertassinari
476
+ - [website] Add Greg in about page (#35816) @oliviertassinari
477
+ - [website] Update the Accessibility Engineer role (#35751) @oliviertassinari
478
+ - [website] Add docs for MUI for Figma @oliviertassinari
479
+
480
+ All contributors of this release in alphabetical order: @alexfauquette, @atrefonas, @fenghan34, @hbjORbj, @HeVictor, @Juneezee, @LukasTy, @mnajdova, @msoyka, @nnmax, @oliviertassinari, @pupudu, @sai6855, @samuelsycamore, @siriwatknp, @volhalink, @ZeeshanTamboli
481
+
482
+ ## 5.11.4
483
+
484
+ <!-- generated comparing v5.11.3..master -->
485
+
486
+ _Jan 9, 2023_
487
+
488
+ A big thanks to the 14 contributors who made this release possible.
489
+ This release was mostly about 🐛 bug fixes and 📚 documentation improvements.
490
+
491
+ ### `@mui/material@5.11.4`
492
+
493
+ - [Autocomplete] Add index to renderOption's AutocompleteRenderOptionState (#35578) @CowDotDev
494
+ - [Autocomplete] Fix grammar in console.error in `useAutocomplete` (#35723) @hamirmahal
495
+ - [Modal] Fix can't override Backdrop Props using new Slots API (#35140) @ZeeshanTamboli
496
+ - [Select] Revert "Update `renderValue` prop's TypeScript type (#34177)" (#35733) @michaldudak
497
+ - [Tabs] Throw error only if individual `Tab` is hidden, not the whole `Tabs` (#34026) @Ryczko
498
+ - [TextField] Improve WCAG 2.4.7 with error={true} (#35687) @oliviertassinari
499
+ - [Tooltip] Remove `data-foo` attribute (#35736) @koolskateguy89
500
+
501
+ ### `@mui/joy@5.0.0-alpha.62`
502
+
503
+ - [Autocomplete][joy] Specify `type` attribute for popup indicator (#35648) @hbjORbj
504
+ - [Joy] Miscellaneous improvements (#35769) @siriwatknp
505
+ - [Joy] Improve `onKeyDown` event handler for demo (#35642) @hbjORbj
506
+
507
+ ### `@mui/base@5.0.0-alpha.113`
508
+
509
+ - [Portal][base] Convert code to TypeScript (#35657) @sai6855
510
+
511
+ ### Docs
512
+
513
+ - [docs] Revise and expand Joy UI Button doc (#35737) @samuelsycamore
514
+ - [docs] Document the workaround for crashing a translated page (#35720) @michaldudak
515
+ - [docs] Fix API page for `MenuItem` to list all valid props (#35561) @mnajdova
516
+ - [docs] Fix ad exception in Joy UI (#35685) @oliviertassinari
517
+ - [docs] Fix content wider than screen regression @oliviertassinari
518
+ - [examples] Add `Vite.js with TypeScript` example (#35683) @miha53cevic
519
+
520
+ ### Core
521
+
522
+ - [core] Close 2022 developer survey @oliviertassinari
523
+ - [core] Fix the product license reference name (#35703) @oliviertassinari
524
+ - [core] Use TypeScript AST instead of TTP for component doc building (#35379) @flaviendelangle
525
+ - [test] Always use & for nesting styles (#35702) @oliviertassinari
526
+ - [website] Improve Lead Designer role description (#35684) @oliviertassinari
527
+
528
+ All contributors of this release in alphabetical order: @CowDotDev, @flaviendelangle, @hamirmahal, @hbjORbj, @koolskateguy89, @michaldudak, @miha53cevic, @mnajdova, @oliviertassinari, @Ryczko, @sai6855, @samuelsycamore, @siriwatknp, @ZeeshanTamboli
529
+
530
+ ## 5.11.3
531
+
532
+ <!-- generated comparing v5.11.2..master -->
533
+
534
+ _Jan 2, 2023_
535
+
536
+ A big thanks to the 6 contributors who made this release possible.
537
+ This release was mostly about 🐛 bug fixes and 📚 documentation improvements.
538
+
539
+ ### `@mui/material@5.11.3`
540
+
541
+ - &#8203;<!-- 02 -->[Select] Update `renderValue` prop's TypeScript type (#34177) @ZeeshanTamboli
542
+
543
+ ### `@mui/joy@5.0.0-alpha.61`
544
+
545
+ - &#8203;<!-- 14 -->[Autocomplete][joy] Export component (#35647) @mbranch
546
+
547
+ ### Docs
548
+
549
+ - &#8203;<!-- 13 -->[blog] Fix handling of markdown links (#35628) @oliviertassinari
550
+ - &#8203;<!-- 09 -->[docs] Fix demo code selection through copy shortcut key on Firefox browser (#35670) @ZeeshanTamboli
551
+ - &#8203;<!-- 08 -->[docs] Fix layout shift when streaming the page (#35627) @oliviertassinari
552
+ - &#8203;<!-- 07 -->[docs] Fix switch name to reflect the color (#35052) @rjhcnf
553
+ - &#8203;<!-- 06 -->[docs] Fix anchor link in the card's docs and fix a typo (#35634) @ZeeshanTamboli
554
+ - &#8203;<!-- 05 -->[docs] Fix layout shift with modal (#35591) @oliviertassinari
555
+ - &#8203;<!-- 04 -->[Joy][docs] Add documentation for `Input` component (#35482) @hbjORbj
556
+ - &#8203;<!-- 03 -->[docs][joy] Improved readability on theme tokens page (#35639) @badalsaibo
557
+
558
+ ### Core
559
+
560
+ - &#8203;<!-- 12 -->[core] Disable prefetch of footer links @oliviertassinari
561
+ - &#8203;<!-- 11 -->[core] A few SEO fixes (#35672) @oliviertassinari
562
+ - &#8203;<!-- 10 -->[core] Remove need for scopePathnames (#35584) @oliviertassinari
563
+ - &#8203;<!-- 01 -->[test] Fix Algolia noisy lvl1 anchor (#35686) @oliviertassinari
564
+
565
+ All contributors of this release in alphabetical order: @badalsaibo, @hbjORbj, @mbranch, @oliviertassinari, @rjhcnf, @ZeeshanTamboli
566
+
567
+ ## 5.11.2
568
+
569
+ <!-- generated comparing v5.11.1..master -->
570
+
571
+ _Dec 26, 2022_
572
+
573
+ A big thanks to the 20 contributors who made this release possible. Here are some highlights ✨:
574
+
575
+ - ⚙️ Several MUI Base components were converted to TypeScript by @trizotti, @leventdeniz and @danhuynhdev (#35005, #34793, #34771)
576
+ - Many other 🐛 bug fixes abd 📚 documentation improvements.
577
+
578
+ ### `@mui/material@5.11.2`
579
+
580
+ - &#8203;<!-- 10 -->[l10n] Add displayed rows label to `faIR` locale (#35587) @hootan-rocky
581
+ - &#8203;<!-- 09 -->[l10n] Add Kurdish (Kurmanji) locale (#32508) @JagarYousef
582
+ - &#8203;<!-- 06 -->[Select] Accept non-component children (#33530) @boutahlilsoufiane
583
+ - &#8203;<!-- 05 -->[SelectInput] Update menu to use select wrapper as anchor (#34229) @EduardoSCosta
584
+ - &#8203;<!-- 03 -->[TableCell] Fix `scope` prop to be not set when a data cell is rendered within a table head (#35559) @sai6855
585
+
586
+ ### `@mui/utils@5.11.2`
587
+
588
+ - &#8203;<!-- 02 -->[utils] `mergedeep` deeply clones source key if it's an object (#35364) @sldk-yuri
589
+
590
+ ### `@mui/base@5.0.0-alpha.112`
591
+
592
+ - &#8203;<!-- 16 -->[FocusTrap][base] Convert code to TypeScript (#35005) @trizotti
593
+ - &#8203;<!-- 08 -->[Modal][base] Convert code to TypeScript (#34793) @leventdeniz
594
+ - &#8203;<!-- 07 -->[Popper][base] Convert code to TypeScript (#34771) @danhuynhdev
595
+ - &#8203;<!-- 04 -->[Slider] Exclude `isRtl` from Material UI's Slider props (#35564) @michaldudak
596
+
597
+ ### `@mui/joy@5.0.0-alpha.60`
598
+
599
+ - &#8203;<!-- 15 -->[Joy] Fix radius adjustment (#35629) @siriwatknp
600
+ - &#8203;<!-- 14 -->[Joy] Apply color inversion to components (#34602) @siriwatknp
601
+ - &#8203;<!-- 13 -->[Joy] Improve cursor pointer and add fallback for outlined variant (#35573) @siriwatknp
602
+ - &#8203;<!-- 12 -->[Joy] Miscellaneous fixes (#35552) @siriwatknp
603
+ - &#8203;<!-- 11 -->[Radio][joy] Use precise dimensions for radio icon (#35548) @hbjORbj
604
+
605
+ ### `@mui/material-next@6.0.0-alpha.68`
606
+
607
+ - &#8203;<!-- 36 -->[Material You] Update Button test & add active class name (#35497) @mnajdova
608
+
609
+ ### Docs
610
+
611
+ - &#8203;<!-- 35 -->[docs] Fix GoogleMaps demo (#35545) @hbjORbj
612
+ - &#8203;<!-- 25 -->[docs] Remove flow, its legacy (#35624) @oliviertassinari
613
+ - &#8203;<!-- 24 -->[docs] Add a guide on using icon libraries with Joy UI (#35377) @siriwatknp
614
+ - &#8203;<!-- 23 -->[docs] Clarify comment about `sortStability()` use case (#35570) @frontendlane
615
+ - &#8203;<!-- 22 -->[docs] Improve the experimental API demos on the button page (#35560) @mnajdova
616
+ - &#8203;<!-- 21 -->[docs] Force `light` theme mode when `activePage` is null (#35575) @LukasTy
617
+ - &#8203;<!-- 20 -->[docs] Fix ListItem button deprecated use (#33970) @MickaelAustoni
618
+ - &#8203;<!-- 19 -->[docs] Fix typo in `Progress` docs (#35553) @jasonsturges
619
+ - &#8203;<!-- 18 -->[docs] Remove empty tags on the TransferList demos (#33127) @ekusiadadus
620
+ - &#8203;<!-- 17 -->[docs][joy] Add documentation for `Stack` component (#35373) @hbjORbj
621
+ - &#8203;<!-- 35 -->[docs][joy] Add documentation for `Grid` component (#35374) @hbjORbj
622
+ - &#8203;<!-- 01 -->[website] Update sponsor grid (#35452) @danilo-leal
623
+
624
+ ### Core
625
+
626
+ - &#8203;<!-- 34 -->[core] Shorthand notation to remove outline (#35623) @oliviertassinari
627
+ - &#8203;<!-- 33 -->[core] Fix header link layout shift and clash (#35626) @oliviertassinari
628
+ - &#8203;<!-- 32 -->[core] Hide keyboard shortcut if no hover feature (#35625) @oliviertassinari
629
+ - &#8203;<!-- 31 -->[core] Fix confusing duplicated name in the log @oliviertassinari
630
+ - &#8203;<!-- 30 -->[core] Fix API demos callout spacing (#35579) @oliviertassinari
631
+ - &#8203;<!-- 29 -->[core] Fix a few title case (#35547) @oliviertassinari
632
+ - &#8203;<!-- 28 -->[core] Cleanup mention of test-utils (#35577) @oliviertassinari
633
+ - &#8203;<!-- 27 -->[core] Remove oudated pickers prop-type logic (#35571) @oliviertassinari
634
+ - &#8203;<!-- 26 -->[core] Exclude documentation of Base props not used in styled libraries (#35562) @michaldudak
635
+
636
+ All contributors of this release in alphabetical order: @boutahlilsoufiane, @danhuynhdev, @danilo-leal, @EduardoSCosta, @ekusiadadus, @frontendlane, @hbjORbj, @hootan-rocky, @JagarYousef, @jasonsturges, @leventdeniz, @LukasTy, @michaldudak, @MickaelAustoni, @mnajdova, @oliviertassinari, @sai6855, @siriwatknp, @sldk-yuri, @trizotti
637
+
638
+ ## 5.11.1
639
+
640
+ <!-- generated comparing v5.11.0..master -->
641
+
642
+ _Dec 20, 2022_
643
+
644
+ A big thanks to the 15 contributors who made this release possible. Here are some highlights ✨:
645
+
646
+ - 💅 @mnajdova added motion and shape design tokens to Material You package (#35384 and #35393).
647
+ - Many other 🐛 bug fixes, 📚 documentation, and ⚙️ infrastructure improvements.
648
+
649
+ ### `@mui/material@5.11.1`
650
+
651
+ - [Chip] Fix hover and focus style with CSS Variables (#35502) @DimaAbr
652
+ - [InputLabel] Enable `size` prop overrides via TypeScript module augmentation (#35460) @MickaelAustoni
653
+ - [l10n] Change Kazakh locale name to match ISO-639-1 codes (#34664) @talgautb
654
+ - [TextField] Fix error focus style (#35167) @42tte
655
+ - [core] Bring `experimental_sx` back with error code (#35528) @siriwatknp
656
+
657
+ ### `@mui/utils@5.11.1`
658
+
659
+ - [Theme] Merge components and slots props (#35477) @siriwatknp
660
+
661
+ ### `@mui/material-next@6.0.0-alpha.67`
662
+
663
+ - [Material You] Add motion design tokens (#35384) @mnajdova
664
+ - [Material You] Add shape design tokens (#35393) @mnajdova
665
+
666
+ ### `@mui/joy@5.0.0-alpha.59`
667
+
668
+ - [Tooltip] Fix arrow does not appear (#35473) @siriwatknp
669
+ - [Input] Fix autofill styles (#35056) @siriwatknp
670
+ - [ChipDelete] Add onDelete prop to ChipDelete (#35412) @sai6855
671
+
672
+ ### `@mui/base@5.0.0-alpha.111`
673
+
674
+ - [Button][base] Set active class when a subcomponent is clicked (#35410) @michaldudak
675
+ - [Popper][base] Fix Tooltip Anchor Element Setter (#35469) @sydneyjodon-wk
676
+
677
+ ### Docs
678
+
679
+ - [docs] Fixed the `Select` component `onChange` event type in the migration guide (#35509) @tzynwang
680
+ - [docs] Add missing comma to `Providing the colors directly` section (#35507) @cassidoo
681
+ - [docs] Add `CardMedia` example without `component="img"` prop (#35470) @lucasmfredmark
682
+ - [docs] Fix `unstable_sxConfig` typo (#35478) @siriwatknp
683
+ - [docs] List component introduction example default code is missing ListItemContent component (#35492) @Miigaarino
684
+ - [website] Close our first people role @oliviertassinari
685
+ - [website] Update product icons (#35413) @danilo-leal
686
+
687
+ ### Core
688
+
689
+ - [test] Terminate BrowserStack after 5 minutes (#35454) @oliviertassinari
690
+ - [test] Fix broken master branch (#35446) @oliviertassinari
691
+
692
+ All contributors of this release in alphabetical order: @42tte, @cassidoo, @danilo-leal, @DimaAbr, @lucasmfredmark, @michaldudak, @MickaelAustoni, @Miigaarino, @mnajdova, @oliviertassinari, @sai6855, @siriwatknp, @sydneyjodon-wk, @talgautb, @tzynwang
693
+
3
694
  ## 5.11.0
4
695
 
5
696
  <!-- generated comparing v5.10.17..master -->
@@ -2957,7 +3648,7 @@ _Feb 1, 2022_
2957
3648
 
2958
3649
  A big thanks to the 22 contributors who made this release possible. Here are some highlights ✨:
2959
3650
 
2960
- - 🛠 @goncalovf added an example project using [MUI with Vite.js](https://github.com/mui/material-ui/tree/master/examples/vitejs) (#28241)
3651
+ - 🛠 @goncalovf added an example project using [Material UI with Vite.js](https://github.com/mui/material-ui/tree/master/examples/material-vite) (#28241)
2961
3652
  - Number of 🐛 bug fixes and 📚 documentation improvements.
2962
3653
 
2963
3654
  ### `@mui/material@5.4.0`
@@ -6933,7 +7624,7 @@ A big thanks to the 26 contributors who made this release possible. Here are som
6933
7624
 
6934
7625
  ```diff
6935
7626
  -<Tabs />
6936
- +<Tabs indicatorColor="primary" textColor="inherit" />
7627
+ +<Tabs indicatorColor="secondary" textColor="inherit" />
6937
7628
  ```
6938
7629
 
6939
7630
  #### Changes
package/index.js CHANGED
@@ -1,5 +1,7 @@
1
- /** @license MUI v5.11.0
1
+ /**
2
+ * @mui/icons-material v5.11.11
2
3
  *
4
+ * @license MIT
3
5
  * This source code is licensed under the MIT license found in the
4
6
  * LICENSE file in the root directory of this source tree.
5
7
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mui/icons-material",
3
- "version": "5.11.0",
3
+ "version": "5.11.11",
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.20.6"
41
+ "@babel/runtime": "^7.21.0"
42
42
  },
43
43
  "sideEffects": false,
44
44
  "publishConfig": {