Closed renovate[bot] closed 1 year ago
Merging #166 (6624de8) into main (e0428de) will decrease coverage by
0.02%
. The diff coverage isn/a
.:exclamation: Current head 6624de8 differs from pull request most recent head 7748eaa. Consider uploading reports for the commit 7748eaa to get more accurate results
@@ Coverage Diff @@
## main #166 +/- ##
==========================================
- Coverage 54.56% 54.54% -0.02%
==========================================
Files 83 83
Lines 2005 2002 -3
Branches 184 183 -1
==========================================
- Hits 1094 1092 -2
+ Misses 897 896 -1
Partials 14 14
see 2 files with indirect coverage changes
:mega: Weβre building smart automated test selection to slash your CI/CD build times. Learn more
This PR contains the following updates:
17.6.1
->17.6.5
17.6.1
->17.6.5
11.10.8
->11.11.0
11.10.8
->11.11.1
11.10.0
->11.11.0
11.10.8
->11.11.0
3.1.0
->3.1.1
5.0.0-alpha.128
->5.0.0-alpha.134
5.12.2
->5.13.5
6.4.0
->6.8.0
1.33.0
->1.35.1
29.5.1
->29.5.2
18.16.3
->18.16.18
18.2.0
->18.2.12
18.2.1
->18.2.5
5.59.2
->5.59.11
5.59.2
->5.59.11
2.14.0
->2.15.1
2.2.0
->2.4.0
3.4.0
->3.5.0
16.0.3
->16.3.0
8.39.0
->8.43.0
13.3.4
->13.4.6
2.5.0
->2.5.1
13.3.4
->13.4.6
8.4.23
->8.4.24
8.0.5
->8.1.0
9.1.2
->9.1.3
2.9.3
->2.10.1
2.9.3
->2.10.1
5.0.4
->5.1.3
Release Notes
conventional-changelog/commitlint (@commitlint/cli)
### [`v17.6.5`](https://togithub.com/conventional-changelog/commitlint/blob/HEAD/@commitlint/cli/CHANGELOG.md#1765-httpsgithubcomconventional-changelogcommitlintcomparev1764v1765-2023-05-30) [Compare Source](https://togithub.com/conventional-changelog/commitlint/compare/v17.6.3...v17.6.5) **Note:** Version bump only for package [@commitlint/cli](https://togithub.com/commitlint/cli) ### [`v17.6.3`](https://togithub.com/conventional-changelog/commitlint/blob/HEAD/@commitlint/cli/CHANGELOG.md#1763-httpsgithubcomconventional-changelogcommitlintcomparev1762v1763-2023-05-04) [Compare Source](https://togithub.com/conventional-changelog/commitlint/compare/v17.6.1...v17.6.3) **Note:** Version bump only for package [@commitlint/cli](https://togithub.com/commitlint/cli)conventional-changelog/commitlint (@commitlint/config-conventional)
### [`v17.6.5`](https://togithub.com/conventional-changelog/commitlint/blob/HEAD/@commitlint/config-conventional/CHANGELOG.md#1765-httpsgithubcomconventional-changelogcommitlintcomparev1764v1765-2023-05-30) [Compare Source](https://togithub.com/conventional-changelog/commitlint/compare/v17.6.3...v17.6.5) **Note:** Version bump only for package [@commitlint/config-conventional](https://togithub.com/commitlint/config-conventional) ### [`v17.6.3`](https://togithub.com/conventional-changelog/commitlint/blob/HEAD/@commitlint/config-conventional/CHANGELOG.md#1763-httpsgithubcomconventional-changelogcommitlintcomparev1762v1763-2023-05-04) [Compare Source](https://togithub.com/conventional-changelog/commitlint/compare/v17.6.1...v17.6.3) **Note:** Version bump only for package [@commitlint/config-conventional](https://togithub.com/commitlint/config-conventional)emotion-js/emotion
### [`v11.11.0`](https://togithub.com/emotion-js/emotion/releases/tag/%40emotion/babel-plugin%4011.11.0) [Compare Source](https://togithub.com/emotion-js/emotion/compare/@emotion/cache@11.10.8...@emotion/cache@11.11.0) ##### Patch Changes - [#3031](https://togithub.com/emotion-js/emotion/pull/3031) [`336f3d50`](https://togithub.com/emotion-js/emotion/commit/336f3d50fd684ccbb160fff0c63d5560936f1ee5) Thanks [@Andarist](https://togithub.com/Andarist)! - Updated the underlying parser ([stylis](https://togithub.com/thysultan/stylis)) to 4.2.0 - [#3029](https://togithub.com/emotion-js/emotion/pull/3029) [`eed5e6cf`](https://togithub.com/emotion-js/emotion/commit/eed5e6cf00f94f3011b93825ccce43cb2270c247) Thanks [@Andarist](https://togithub.com/Andarist)! - Fixed importing in Node ESM - Updated dependencies \[[`eed5e6cf`](https://togithub.com/emotion-js/emotion/commit/eed5e6cf00f94f3011b93825ccce43cb2270c247)]: - [@emotion/hash](https://togithub.com/emotion/hash)[@0](https://togithub.com/0).9.1 - [@emotion/memoize](https://togithub.com/emotion/memoize)[@0](https://togithub.com/0).8.1 - [@emotion/serialize](https://togithub.com/emotion/serialize)[@1](https://togithub.com/1).1.2react-hook-form/resolvers
### [`v3.1.1`](https://togithub.com/react-hook-form/resolvers/releases/tag/v3.1.1) [Compare Source](https://togithub.com/react-hook-form/resolvers/compare/v3.1.0...v3.1.1) #### BREAKING CHANGES ##### Bug Fixes - **Yup resolver:** schema type error ([#563](https://togithub.com/react-hook-form/resolvers/issues/563)) ([420e862](https://togithub.com/react-hook-form/resolvers/commit/420e86200a311e09405b90ab1759ed2086392d4a)), closes [#549](https://togithub.com/react-hook-form/resolvers/issues/549) **You don't need to explicitly provide the type when using the useForm function because it automatically infers the types from the Yup schema.** **Before** ```tsx const schema = Yup.shape({ name: string }); const { register } = useForm<{name: string}>({ resolver: yupResolver(schema) }); ``` **After** ```tsx const schema = Yup.shape({ name: string }); const { register } = useForm({ resolver: yupResolver(schema) }); ```mui/material-ui (@mui/lab)
### [`v5.0.0-alpha.134`](https://togithub.com/mui/material-ui/compare/a522d82df32d3bfab46b25f5ff24eeb9670c83fb...24b3af68ebe79c1891e45c60c6bcfd26f8818f73) [Compare Source](https://togithub.com/mui/material-ui/compare/a522d82df32d3bfab46b25f5ff24eeb9670c83fb...24b3af68ebe79c1891e45c60c6bcfd26f8818f73) ### [`v5.0.0-alpha.133`](https://togithub.com/mui/material-ui/compare/70d4a2bb49dca9fef7854a1463a392094222812b...a522d82df32d3bfab46b25f5ff24eeb9670c83fb) [Compare Source](https://togithub.com/mui/material-ui/compare/70d4a2bb49dca9fef7854a1463a392094222812b...a522d82df32d3bfab46b25f5ff24eeb9670c83fb) ### [`v5.0.0-alpha.132`](https://togithub.com/mui/material-ui/compare/f661923e9aa9d9cc634750affbb04bf2007bc57d...70d4a2bb49dca9fef7854a1463a392094222812b) [Compare Source](https://togithub.com/mui/material-ui/compare/f661923e9aa9d9cc634750affbb04bf2007bc57d...70d4a2bb49dca9fef7854a1463a392094222812b) ### [`v5.0.0-alpha.131`](https://togithub.com/mui/material-ui/compare/0c58832b6e182f782e73b118ed9681055db3e249...f661923e9aa9d9cc634750affbb04bf2007bc57d) [Compare Source](https://togithub.com/mui/material-ui/compare/0c58832b6e182f782e73b118ed9681055db3e249...f661923e9aa9d9cc634750affbb04bf2007bc57d) ### [`v5.0.0-alpha.130`](https://togithub.com/mui/material-ui/compare/9710ff34b16a0f271107a8619a28546ae3ca7c18...0c58832b6e182f782e73b118ed9681055db3e249) [Compare Source](https://togithub.com/mui/material-ui/compare/9710ff34b16a0f271107a8619a28546ae3ca7c18...0c58832b6e182f782e73b118ed9681055db3e249) ### [`v5.0.0-alpha.129`](https://togithub.com/mui/material-ui/compare/5b7e9c52e37ef0c3274a762f38cd7ef7ffc9e7a8...9710ff34b16a0f271107a8619a28546ae3ca7c18) [Compare Source](https://togithub.com/mui/material-ui/compare/5b7e9c52e37ef0c3274a762f38cd7ef7ffc9e7a8...9710ff34b16a0f271107a8619a28546ae3ca7c18)mui/material-ui (@mui/material)
### [`v5.13.5`](https://togithub.com/mui/material-ui/blob/HEAD/CHANGELOG.md#5135) [Compare Source](https://togithub.com/mui/material-ui/compare/v5.13.4...v5.13.5) A big thanks to the 9 contributors who made this release possible. Here are some highlights β¨: - π« Added `ButtonGroup` component in Joy UI ([#37407](https://togithub.com/mui/material-ui/issues/37407)) [@siriwatknp](https://togithub.com/siriwatknp). - π bug fixes and π documentation improvements. ##### `@mui/material@5.13.5` - β\[Material]\[Popover] Add support for virtual element as anchorEl ([#37465](https://togithub.com/mui/material-ui/issues/37465)) [@DiegoAndai](https://togithub.com/DiegoAndai) ##### `@mui/joy@5.0.0-alpha.84` - β\[ButtonGroup]\[joy] Replace `detached` prop with `spacing`. ([#37562](https://togithub.com/mui/material-ui/issues/37562)) [@siriwatknp](https://togithub.com/siriwatknp) - β\[ButtonGroup]\[joy] Add `ButtonGroup` component ([#37407](https://togithub.com/mui/material-ui/issues/37407)) [@siriwatknp](https://togithub.com/siriwatknp) - β\[Input]\[joy] Simplify focus with `:focus-within` and add examples ([#37385](https://togithub.com/mui/material-ui/issues/37385)) [@siriwatknp](https://togithub.com/siriwatknp) ##### Docs - β\[docs] Move Toolpad from alpha to beta ([#37288](https://togithub.com/mui/material-ui/issues/37288)) [@bharatkashyap](https://togithub.com/bharatkashyap) - β\[docs] Add usage of createCssVarsProvider ([#37513](https://togithub.com/mui/material-ui/issues/37513)) [@brijeshb42](https://togithub.com/brijeshb42) - β\[docs] Update /base url references to /base-ui ([#37412](https://togithub.com/mui/material-ui/issues/37412)) [@brijeshb42](https://togithub.com/brijeshb42) - β\[docs] Skip components and hooks due to duplicate index ([#37539](https://togithub.com/mui/material-ui/issues/37539)) [@siriwatknp](https://togithub.com/siriwatknp) - β\[docs] Polish Sign in to your account joy demo ([#37498](https://togithub.com/mui/material-ui/issues/37498)) [@oliviertassinari](https://togithub.com/oliviertassinari) - β\[docs] Remove outdated Material UI FAQ [@oliviertassinari](https://togithub.com/oliviertassinari) - β\[docs] Fix crash access to localStorage in Firefox ([#37518](https://togithub.com/mui/material-ui/issues/37518)) [@brijeshb42](https://togithub.com/brijeshb42) - β\[docs-infra] Enforce max length on description ([#37565](https://togithub.com/mui/material-ui/issues/37565)) [@oliviertassinari](https://togithub.com/oliviertassinari) - β\[docs-infra] Mandatory versions ([#37497](https://togithub.com/mui/material-ui/issues/37497)) [@oliviertassinari](https://togithub.com/oliviertassinari) - β\[docs-infra] Fix lighthouse img size issue ([#37415](https://togithub.com/mui/material-ui/issues/37415)) [@oliviertassinari](https://togithub.com/oliviertassinari) - β\[docs]\[joy] Replace JoyInput with Input component in JoyUI Text Field documentation ([#37548](https://togithub.com/mui/material-ui/issues/37548)) [@musama619](https://togithub.com/musama619) - β\[docs]\[joy] Add typography introduction demo component ([#37553](https://togithub.com/mui/material-ui/issues/37553)) [@sernstberger](https://togithub.com/sernstberger) - β\[docs]\[joy] Add a rental dashboard template ([#37453](https://togithub.com/mui/material-ui/issues/37453)) [@sernstberger](https://togithub.com/sernstberger) ##### Core - βMove the React Community Engineer - X in Open Roles ([#37552](https://togithub.com/mui/material-ui/issues/37552)) [@DanailH](https://togithub.com/DanailH) - β\[core] Update Node.js version to v18 on CircleCI, CodeSandbox, and Netlify ([#37173](https://togithub.com/mui/material-ui/issues/37173)) [@ZeeshanTamboli](https://togithub.com/ZeeshanTamboli) - β\[website] RIDI gold sponsorship end ([#37517](https://togithub.com/mui/material-ui/issues/37517)) [@oliviertassinari](https://togithub.com/oliviertassinari) - β\[website] Update X landing page ([#37387](https://togithub.com/mui/material-ui/issues/37387)) [@cherniavskii](https://togithub.com/cherniavskii) All contributors of this release in alphabetical order: [@brijeshb42](https://togithub.com/brijeshb42), [@cherniavskii](https://togithub.com/cherniavskii), [@DanailH](https://togithub.com/DanailH), [@DiegoAndai](https://togithub.com/DiegoAndai), [@musama619](https://togithub.com/musama619), [@oliviertassinari](https://togithub.com/oliviertassinari), [@sernstberger](https://togithub.com/sernstberger), [@siriwatknp](https://togithub.com/siriwatknp), [@ZeeshanTamboli](https://togithub.com/ZeeshanTamboli) ### [`v5.13.4`](https://togithub.com/mui/material-ui/blob/HEAD/CHANGELOG.md#5134) [Compare Source](https://togithub.com/mui/material-ui/compare/v5.13.3...v5.13.4) *Jun 5, 2023* A big thanks to the 12 contributors who made this release possible. Here are some highlights β¨: ##### `@mui/material@5.13.4` - β\[Autocomplete]\[material] Add missing `focusVisible` class in AutocompleteClasses ([#37502](https://togithub.com/mui/material-ui/issues/37502)) [@sai6855](https://togithub.com/sai6855) - β\[Menu]\[material] Fix MenuPaper class composition precedence ([#37390](https://togithub.com/mui/material-ui/issues/37390)) [@DiegoAndai](https://togithub.com/DiegoAndai) - β\[MenuList] Fix to allow conditional rendering for a menu item under ListSubheader ([#36890](https://togithub.com/mui/material-ui/issues/36890)) [@danielplewes](https://togithub.com/danielplewes) - β\[Stepper] Handle progress bar of mobile stepper when `steps` is one ([#37079](https://togithub.com/mui/material-ui/issues/37079)) [@gitstart](https://togithub.com/gitstart) ##### `@mui/base@5.0.0-beta.4` - β\[Input]\[base] Fix calling slotProps event handlers ([#37463](https://togithub.com/mui/material-ui/issues/37463)) [@sai6855](https://togithub.com/sai6855) ##### `@mui/joy@5.0.0-alpha.82` - β\[Avatar]\[joy] Fallback to `alt` when `src` or `srcSet` are not defined ([#37469](https://togithub.com/mui/material-ui/issues/37469)) [@vishalthatipamula0219](https://togithub.com/vishalthatipamula0219) - β\[Card]\[joy] Improve usability of card family ([#37474](https://togithub.com/mui/material-ui/issues/37474)) [@siriwatknp](https://togithub.com/siriwatknp) ##### Docs - β\[docs]\[base] useAutocomplete demos & docs ([#37029](https://togithub.com/mui/material-ui/issues/37029)) [@mj12albert](https://togithub.com/mj12albert) - β\[docs]\[base] Remove usage of `component` prop in docs ([#37462](https://togithub.com/mui/material-ui/issues/37462)) [@sai6855](https://togithub.com/sai6855) - β\[docs] Fix docs redirections [@oliviertassinari](https://togithub.com/oliviertassinari) - β\[docs] Fix Fluent -> Fluent UI [@oliviertassinari](https://togithub.com/oliviertassinari) - β\[docs] Fix MUI Base -> Base UI [@oliviertassinari](https://togithub.com/oliviertassinari) - β\[docs] Add base-vite-tailwind example repo ([#36994](https://togithub.com/mui/material-ui/issues/36994)) [@mj12albert](https://togithub.com/mj12albert) - β\[docs] Fix search bar layout shift ([#37460](https://togithub.com/mui/material-ui/issues/37460)) [@oliviertassinari](https://togithub.com/oliviertassinari) - β\[docs] Tweak Material UI's "Showcase" page design ([#37259](https://togithub.com/mui/material-ui/issues/37259)) [@danilo-leal](https://togithub.com/danilo-leal) - β\[docs] Tweak Material UI's "Template" page design ([#37260](https://togithub.com/mui/material-ui/issues/37260)) [@danilo-leal](https://togithub.com/danilo-leal) - β\[docs] Fix "Language" page removal leftovers ([#37408](https://togithub.com/mui/material-ui/issues/37408)) [@danilo-leal](https://togithub.com/danilo-leal) - β\[docs] Move contents of css-variables to sibling pages ([#37411](https://togithub.com/mui/material-ui/issues/37411)) [@brijeshb42](https://togithub.com/brijeshb42) ##### Core - β\[core] Do not let Renovate handle `examples` packages updates ([#37386](https://togithub.com/mui/material-ui/issues/37386)) [@ZeeshanTamboli](https://togithub.com/ZeeshanTamboli) - β\[website] Add header filters to the pricing table ([#37455](https://togithub.com/mui/material-ui/issues/37455)) [@MBilalShafi](https://togithub.com/MBilalShafi) All contributors of this release in alphabetical order: [@brijeshb42](https://togithub.com/brijeshb42), [@danielplewes](https://togithub.com/danielplewes), [@danilo-leal](https://togithub.com/danilo-leal), [@DiegoAndai](https://togithub.com/DiegoAndai), [@gitstart](https://togithub.com/gitstart), [@MBilalShafi](https://togithub.com/MBilalShafi), [@mj12albert](https://togithub.com/mj12albert), [@oliviertassinari](https://togithub.com/oliviertassinari), [@sai6855](https://togithub.com/sai6855), [@siriwatknp](https://togithub.com/siriwatknp), [@vishalthatipamula0219](https://togithub.com/vishalthatipamula0219), [@ZeeshanTamboli](https://togithub.com/ZeeshanTamboli) ### [`v5.13.3`](https://togithub.com/mui/material-ui/blob/HEAD/CHANGELOG.md#5133) [Compare Source](https://togithub.com/mui/material-ui/compare/v5.13.2...v5.13.3) *May 29, 2023* A big thanks to the 15 contributors who made this release possible. This release focuses primarily on π bug fixes and π documentation improvements. ##### \`@mui/material@5.13.3 - β\[Autocomplete] Accept external Listbox ref ([#37325](https://togithub.com/mui/material-ui/issues/37325)) [@sai6855](https://togithub.com/sai6855) - β\[Modal] Pass `className` from `BackdropProps` ([#37399](https://togithub.com/mui/material-ui/issues/37399)) [@hbjORbj](https://togithub.com/hbjORbj) ##### `@mui/base@5.0.0-beta.3` - β\[base] Maintain nodes document order in compound components ([#36857](https://togithub.com/mui/material-ui/issues/36857)) [@michaldudak](https://togithub.com/michaldudak) - β\[base]\[joy] Prevent persisting hover state styles onclick on mobile ([#36704](https://togithub.com/mui/material-ui/issues/36704)) [@gitstart](https://togithub.com/gitstart) - β\[Menu]\[base] MenuItem as a link does not work ([#37242](https://togithub.com/mui/material-ui/issues/37242)) [@nicolas-ot](https://togithub.com/nicolas-ot) - β\[MenuItem]\[Base] Pass idGenerator function ([#37364](https://togithub.com/mui/material-ui/issues/37364)) [@sai6855](https://togithub.com/sai6855) - β\[Slider]\[Base] Add Vertical slider demo ([#37357](https://togithub.com/mui/material-ui/issues/37357)) [@sai6855](https://togithub.com/sai6855) ##### `@mui/joy@5.0.0-alpha.82` - β\[Select]\[joy] Fix popup does not close ([#37435](https://togithub.com/mui/material-ui/issues/37435)) [@siriwatknp](https://togithub.com/siriwatknp) - β\[Badge]\[Joy] Fix `slots` element type in API docs ([#37329](https://togithub.com/mui/material-ui/issues/37329)) [@zignis](https://togithub.com/zignis) - β\[Select] \[joy] Handle long text content ([#37289](https://togithub.com/mui/material-ui/issues/37289)) [@akash191095](https://togithub.com/akash191095) - β\[Tooltip]\[Joy] Interactive doesn't work ([#37159](https://togithub.com/mui/material-ui/issues/37159)) [@nicolas-ot](https://togithub.com/nicolas-ot) ##### \`@mui/codemod@5.13.3 - β\[mui-codemod] Add missing script to README ([#37377](https://togithub.com/mui/material-ui/issues/37377)) [@hbjORbj](https://togithub.com/hbjORbj) ##### Docs - β\[docs] Clarify Hidden down props as exclusive ([#36927](https://togithub.com/mui/material-ui/issues/36927)) [@canac](https://togithub.com/canac) - β\[docs] Add refine to Material UI "Related projects" and "More advanced example projects" pages ([#37308](https://togithub.com/mui/material-ui/issues/37308)) [@necatiozmen](https://togithub.com/necatiozmen) - β\[docs] Remove todo link from sidebar ([#37373](https://togithub.com/mui/material-ui/issues/37373)) [@brijeshb42](https://togithub.com/brijeshb42) - β\[docs] Clarify the peer dependency with react ([#37360](https://togithub.com/mui/material-ui/issues/37360)) [@oliviertassinari](https://togithub.com/oliviertassinari) - β\[docs] Divider vertical middle prop migration ([#36840](https://togithub.com/mui/material-ui/issues/36840)) [@JhonnK08](https://togithub.com/JhonnK08) - β\[docs] Fix branding theme tabs and navigation bar regressions ([#37362](https://togithub.com/mui/material-ui/issues/37362)) [@ZeeshanTamboli](https://togithub.com/ZeeshanTamboli) - β\[docs-infra] Throw on incorrect internal links ([#37326](https://togithub.com/mui/material-ui/issues/37326)) [@oliviertassinari](https://togithub.com/oliviertassinari) ##### Core - β\[core] Include scoped JSX namespace when resolving props ([#37404](https://togithub.com/mui/material-ui/issues/37404)) [@LukasTy](https://togithub.com/LukasTy) - β\[test]\[useMediaQuery] Change SSR test description ([#37403](https://togithub.com/mui/material-ui/issues/37403)) [@zignis](https://togithub.com/zignis) - β\[website] Sync with Ashby [@oliviertassinari](https://togithub.com/oliviertassinari) - β\[website] Add David to about page ([#37379](https://togithub.com/mui/material-ui/issues/37379)) [@DavidCnoops](https://togithub.com/DavidCnoops) All contributors of this release in alphabetical order: [@akash191095](https://togithub.com/akash191095), [@brijeshb42](https://togithub.com/brijeshb42), [@canac](https://togithub.com/canac), [@DavidCnoops](https://togithub.com/DavidCnoops), [@gitstart](https://togithub.com/gitstart), [@hbjORbj](https://togithub.com/hbjORbj), [@JhonnK08](https://togithub.com/JhonnK08), [@LukasTy](https://togithub.com/LukasTy), [@michaldudak](https://togithub.com/michaldudak), [@necatiozmen](https://togithub.com/necatiozmen), [@nicolas-ot](https://togithub.com/nicolas-ot), [@oliviertassinari](https://togithub.com/oliviertassinari), [@sai6855](https://togithub.com/sai6855), [@ZeeshanTamboli](https://togithub.com/ZeeshanTamboli), [@zignis](https://togithub.com/zignis) ### [`v5.13.2`](https://togithub.com/mui/material-ui/blob/HEAD/CHANGELOG.md#5132) [Compare Source](https://togithub.com/mui/material-ui/compare/v5.13.1...v5.13.2) *May 22, 2023* A big thanks to the 12 contributors who made this release possible. π This release focuses primarily on documentation improvements. ##### \`@mui/material@5.13.2 - \[Slider] Tooltip positioning fixed for vertical slider ([#37049](https://togithub.com/mui/material-ui/issues/37049)) [@PunitSoniME](https://togithub.com/PunitSoniME) ##### Docs - \[docs]\[base] Remove default annotations from useTabsList return type ([#37324](https://togithub.com/mui/material-ui/issues/37324)) [@TinaSay](https://togithub.com/TinaSay) - \[docs]\[base] Remove default annotations from useTabPanel return type ([#37323](https://togithub.com/mui/material-ui/issues/37323)) [@TinaSay](https://togithub.com/TinaSay) - \[docs]\[base] Remove default annotations from useSwitch return type ([#37322](https://togithub.com/mui/material-ui/issues/37322)) [@TinaSay](https://togithub.com/TinaSay) - \[docs]\[base] Remove default annotations from useInput return type ([#37321](https://togithub.com/mui/material-ui/issues/37321)) [@TinaSay](https://togithub.com/TinaSay) - \[docs]\[base] Remove default annotations from useAutocomplete return type ([#37320](https://togithub.com/mui/material-ui/issues/37320)) [@TinaSay](https://togithub.com/TinaSay) - \[docs]\[base] Remove default annotations from useBadge's return type ([#37313](https://togithub.com/mui/material-ui/issues/37313)) [@TinaSay](https://togithub.com/TinaSay) - \[docs]\[base] Remove default annotations from useButton's return type ([#37312](https://togithub.com/mui/material-ui/issues/37312)) [@TinaSay](https://togithub.com/TinaSay) - \[docs]\[base] Remove default annotations from useSlider's return type ([#37309](https://togithub.com/mui/material-ui/issues/37309)) [@TinaSay](https://togithub.com/TinaSay) - \[docs] Remove Material UI's "Languages" page ([#37314](https://togithub.com/mui/material-ui/issues/37314)) [@danilo-leal](https://togithub.com/danilo-leal) - \[docs] Prefer to link GitHub repository [@oliviertassinari](https://togithub.com/oliviertassinari) - \[docs] Move product versions to page context ([#35078](https://togithub.com/mui/material-ui/issues/35078)) [@m4theushw](https://togithub.com/m4theushw) - \[docs] Fix v5 migration npm install instruction ([#37293](https://togithub.com/mui/material-ui/issues/37293)) [@oliviertassinari](https://togithub.com/oliviertassinari) - \[docs]\[Tab] Add vertical tabs demo ([#37292](https://togithub.com/mui/material-ui/issues/37292)) [@sai6855](https://togithub.com/sai6855) - \[docs]\[Transitions] Fix typo in code sample ([#37300](https://togithub.com/mui/material-ui/issues/37300)) [@alexfauquette](https://togithub.com/alexfauquette) - \[examples] Remove `@babel/plugin-proposal-class-properties` from Material-Express-SSR example ([#37305](https://togithub.com/mui/material-ui/issues/37305)) [@ZeeshanTamboli](https://togithub.com/ZeeshanTamboli) - \[Website] Add Brijesh to About page ([#37318](https://togithub.com/mui/material-ui/issues/37318)) [@brijeshb42](https://togithub.com/brijeshb42) - \[website] Update pricing table ([#37290](https://togithub.com/mui/material-ui/issues/37290)) [@cherniavskii](https://togithub.com/cherniavskii) - \[website] Update core open roles ([#37224](https://togithub.com/mui/material-ui/issues/37224)) [@mnajdova](https://togithub.com/mnajdova) ##### Core - Revert "\[core] Remove outdated babel proposal plugins ([#36795](https://togithub.com/mui/material-ui/issues/36795))" ([#37331](https://togithub.com/mui/material-ui/issues/37331)) [@michaldudak](https://togithub.com/michaldudak) - \[core] Move esmExternals to the shared next config ([#37332](https://togithub.com/mui/material-ui/issues/37332)) [@michaldudak](https://togithub.com/michaldudak) All contributors of this release in alphabetical order: [@alexfauquette](https://togithub.com/alexfauquette), [@brijeshb42](https://togithub.com/brijeshb42), [@cherniavskii](https://togithub.com/cherniavskii), [@danilo-leal](https://togithub.com/danilo-leal), [@m4theushw](https://togithub.com/m4theushw), [@michaldudak](https://togithub.com/michaldudak), [@mnajdova](https://togithub.com/mnajdova), [@oliviertassinari](https://togithub.com/oliviertassinari), [@PunitSoniME](https://togithub.com/PunitSoniME), [@sai6855](https://togithub.com/sai6855), [@TinaSay](https://togithub.com/TinaSay), [@ZeeshanTamboli](https://togithub.com/ZeeshanTamboli) ### [`v5.13.1`](https://togithub.com/mui/material-ui/blob/HEAD/CHANGELOG.md#5131) [Compare Source](https://togithub.com/mui/material-ui/compare/v5.13.0...v5.13.1) *May 16, 2023* A big thanks to the 25 contributors who made this release possible. Here are some highlights β¨: - π Added Central Myanmar (my-MY), Malay (ms-MS), Nepali (ne-NP), Tagalog (tl-TL) locales ([#37017](https://togithub.com/mui/material-ui/issues/37017)) [@cccEric](https://togithub.com/cccEric) - π bug fixes and π documentation improvements. ##### `@mui/material@5.13.1` - \[Autocomplete] Allow tooltip text selection ([#36503](https://togithub.com/mui/material-ui/issues/36503)) [@safeamiiir](https://togithub.com/safeamiiir) - \[Dialog] Fixed broken dialog when using maxWidth="xs" and custom breakpoint unit ([#37237](https://togithub.com/mui/material-ui/issues/37237)) [@jguddas](https://togithub.com/jguddas) - \[l10n] Add Central Myanmar (my-MY), Malay (ms-MS), Nepali (ne-NP), Tagalog (tl-TL) locales ([#37017](https://togithub.com/mui/material-ui/issues/37017)) [@cccEric](https://togithub.com/cccEric) ##### `@mui/utils@5.13.1` - \[utils] Fix downstream bundlers remove React 17 useId compatibility ([#37183](https://togithub.com/mui/material-ui/issues/37183)) [@nickiaconis](https://togithub.com/nickiaconis) ##### `@mui/base@5.0.0-beta.1` - \[Select]\[base] Keep focus on the trigger element when listbox is open ([#37244](https://togithub.com/mui/material-ui/issues/37244)) [@michaldudak](https://togithub.com/michaldudak) ##### `@mui/joy@5.0.0-alpha.80` - \[Autocomplete] Fixed scroll into view ([#37217](https://togithub.com/mui/material-ui/issues/37217)) [@sai6855](https://togithub.com/sai6855) - \[AutocompleteOption]\[Avatar] js test replaced with ts test ([#37088](https://togithub.com/mui/material-ui/issues/37088)) [@PunitSoniME](https://togithub.com/PunitSoniME) - \[Breadcrumbs] Replace js-tests with ts-tests ([#37107](https://togithub.com/mui/material-ui/issues/37107)) [@mauwaz](https://togithub.com/mauwaz) - \[RadioGroup] Turn JS test to TS test ([#37138](https://togithub.com/mui/material-ui/issues/37138)) [@uuxxx](https://togithub.com/uuxxx) - \[SvgIcon] Turn JS test to TS test ([#37151](https://togithub.com/mui/material-ui/issues/37151)) [@nicolas-ot](https://togithub.com/nicolas-ot) - \[Tooltip] Turn JS test to TS test ([#37149](https://togithub.com/mui/material-ui/issues/37149)) [@nicolas-ot](https://togithub.com/nicolas-ot) - \[Typography] Convert Typography test to TypeScript ([#37165](https://togithub.com/mui/material-ui/issues/37165)) [@DerTimonius](https://togithub.com/DerTimonius) - \[Sheet]\[Slider]\[Stack]\[Switch] Replace js-tests with ts-tests ([#37139](https://togithub.com/mui/material-ui/issues/37139)) [@mauwaz](https://togithub.com/mauwaz) - Miscellaneous fixes ([#37274](https://togithub.com/mui/material-ui/issues/37274)) [@siriwatknp](https://togithub.com/siriwatknp) ##### Docs - \[docs] Remove upload button ([#36844](https://togithub.com/mui/material-ui/issues/36844)) [@Bastian](https://togithub.com/Bastian) - \[docs] Update link to overriding component structure guide ([#36870](https://togithub.com/mui/material-ui/issues/36870)) [@hbjORbj](https://togithub.com/hbjORbj) - \[docs] Fix Material Design templates ([#37187](https://togithub.com/mui/material-ui/issues/37187)) [@oliviertassinari](https://togithub.com/oliviertassinari) - \[docs] Fix link to Joy UI GitHub issues [@oliviertassinari](https://togithub.com/oliviertassinari) - \[docs] Show default value for `filterOptions` prop in Autocomplete's API docs ([#37230](https://togithub.com/mui/material-ui/issues/37230)) [@ZeeshanTamboli](https://togithub.com/ZeeshanTamboli) - \[docs] Add summary and improve `test_static` CI doc in CONTRIBUTING readme file ([#36711](https://togithub.com/mui/material-ui/issues/36711)) [@kriskw1999](https://togithub.com/kriskw1999) - \[docs] Update theme customization typescript ([#35551](https://togithub.com/mui/material-ui/issues/35551)) [@siriwatknp](https://togithub.com/siriwatknp) - \[docs] Add Joy Frames X web blocks template ([#37203](https://togithub.com/mui/material-ui/issues/37203)) [@siriwatknp](https://togithub.com/siriwatknp) - \[docs] Change Base UI `alpha` to `beta` in README ([#37228](https://togithub.com/mui/material-ui/issues/37228)) [@ZeeshanTamboli](https://togithub.com/ZeeshanTamboli) - \[docs] Improve Base UI overview page ([#37227](https://togithub.com/mui/material-ui/issues/37227)) [@mnajdova](https://togithub.com/mnajdova) - \[docs] Update Joy + Material guide ([#36911](https://togithub.com/mui/material-ui/issues/36911)) [@cherniavskii](https://togithub.com/cherniavskii) ##### Core - \[core] Remove `toEqualDateTime` chai matcher ([#37073](https://togithub.com/mui/material-ui/issues/37073)) [@flaviendelangle](https://togithub.com/flaviendelangle) - \[core] Check dependency cycles inside packages directory only ([#37223](https://togithub.com/mui/material-ui/issues/37223)) [@michaldudak](https://togithub.com/michaldudak) - \[core] Remove outdated babel proposal plugins ([#36795](https://togithub.com/mui/material-ui/issues/36795)) [@kkocdko](https://togithub.com/kkocdko) - \[website] Add Diego to About Us page ([#37284](https://togithub.com/mui/material-ui/issues/37284)) [@DiegoAndai](https://togithub.com/DiegoAndai) - \[website] Add Victor teamMember card to 'About' ([#37283](https://togithub.com/mui/material-ui/issues/37283)) [@zanivan](https://togithub.com/zanivan) - \[website] Add Rich to the 'About' page ([#37221](https://togithub.com/mui/material-ui/issues/37221)) [@richbustos](https://togithub.com/richbustos) All contributors of this release in alphabetical order: [@Bastian](https://togithub.com/Bastian), [@binh1298](https://togithub.com/binh1298), [@cccEric](https://togithub.com/cccEric), [@cherniavskii](https://togithub.com/cherniavskii), [@DerTimonius](https://togithub.com/DerTimonius), [@DiegoAndai](https://togithub.com/DiegoAndai), [@flaviendelangle](https://togithub.com/flaviendelangle), [@hbjORbj](https://togithub.com/hbjORbj), [@jguddas](https://togithub.com/jguddas), [@kkocdko](https://togithub.com/kkocdko), [@kriskw1999](https://togithub.com/kriskw1999), [@mauwaz](https://togithub.com/mauwaz), [@michaldudak](https://togithub.com/michaldudak), [@mnajdova](https://togithub.com/mnajdova), [@nickiaconis](https://togithub.com/nickiaconis), [@nicolas-ot](https://togithub.com/nicolas-ot), [@oliviertassinari](https://togithub.comConfiguration
π Schedule: Branch creation - "before 3am on the first day of the month" (UTC), Automerge - At any time (no schedule defined).
π¦ Automerge: Disabled because a matching PR was automerged previously.
β» Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
π» Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR has been generated by Mend Renovate. View repository job log here.