Update material-ui monorepo #123

Merged
kjuulh merged 1 commits from renovate/material-ui-monorepo into main 2023-08-08 12:45:38 +02:00
Owner

This PR contains the following updates:

Package Type Update Change
@mui/lab (source) dependencies patch 5.0.0-alpha.138 -> 5.0.0-alpha.139
@mui/material (source) dependencies patch 5.14.3 -> 5.14.4

Release Notes

mui/material-ui (@​mui/lab)

v5.0.0-alpha.139

Compare Source

mui/material-ui (@​mui/material)

v5.14.4

Compare Source

Aug 8, 2023

A big thanks to the 18 contributors who made this release possible. Here are some highlights :

@mui/material@5.14.4
@mui/system@5.14.4
@mui/base@5.0.0-beta.10
Breaking changes
  • ​[base] Ban default exports (#​38200) @​michaldudak

    Base UI default exports were changed to named ones. Previously we had a mix of default and named ones.
    This was changed to improve consistency and avoid problems some bundlers have with default exports.
    See https://github.com/mui/material-ui/issues/21862 for more context.

    - import Button, { buttonClasses } from '@​mui/base/Button';
    + import { Button, buttonClasses } from '@​mui/base/Button';
    - import BaseMenu from '@​mui/base/Menu';
    + import { Menu as BaseMenu } from '@​mui/base/Menu';
    

    Additionally, the ClassNameGenerator has been moved to the directory matching its name:

    - import ClassNameGenerator from '@​mui/base/className';
    + import { ClassNameGenerator } from '@​mui/base/ClassNameGenerator';
    

    A codemod is provided to help with the migration:

    npx @&#8203;mui/codemod v5.0.0/base-use-named-imports <path>
    
Changes
@mui/joy@5.0.0-beta.1
Docs
Core

All contributors of this release in alphabetical order: @​alisasanib, @​cherniavskii, @​DanailH, @​danilo-leal, @​iownthegame, @​michaldudak, @​mj12albert, @​mnajdova, @​noraleonte, @​oliviertassinari, @​richbustos, @​sai6855, @​samuelsycamore, @​siriwatknp, @​VishruthR, @​yash-thakur, @​zanivan, @​ZeeshanTamboli


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [@mui/lab](https://mui.com/material-ui/about-the-lab/) ([source](https://github.com/mui/material-ui)) | dependencies | patch | [`5.0.0-alpha.138` -> `5.0.0-alpha.139`](https://renovatebot.com/diffs/npm/@mui%2flab/5.0.0-alpha.138/5.0.0-alpha.139) | | [@mui/material](https://mui.com/material-ui/getting-started/) ([source](https://github.com/mui/material-ui)) | dependencies | patch | [`5.14.3` -> `5.14.4`](https://renovatebot.com/diffs/npm/@mui%2fmaterial/5.14.3/5.14.4) | --- ### Release Notes <details> <summary>mui/material-ui (@&#8203;mui/lab)</summary> ### [`v5.0.0-alpha.139`](https://github.com/mui/material-ui/compare/2deea341c9abfb640f22520e0c277027f3f91cd0...40f4b275022f03e48cf4809cd53d0d0dabb40424) [Compare Source](https://github.com/mui/material-ui/compare/2deea341c9abfb640f22520e0c277027f3f91cd0...40f4b275022f03e48cf4809cd53d0d0dabb40424) </details> <details> <summary>mui/material-ui (@&#8203;mui/material)</summary> ### [`v5.14.4`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#&#8203;5144) [Compare Source](https://github.com/mui/material-ui/compare/v5.14.3...v5.14.4) <!-- generated comparing v5.14.3..master --> *Aug 8, 2023* A big thanks to the 18 contributors who made this release possible. Here are some highlights ✨: - 🎉 Added [Number input](https://mui.com/base-ui/react-number-input) component & [useNumberInput](https://mui.com/base-ui/react-number-input#hook) hook in [Base UI](https://mui.com/base-ui/getting-started/) [@&#8203;mj12albert](https://github.com/mj12albert) ##### `@mui/material@5.14.4` - ​<!-- 25 -->\[Checkbox]\[material] Add size classes ([#&#8203;38182](https://github.com/mui/material-ui/issues/38182)) [@&#8203;michaldudak](https://github.com/michaldudak) - ​<!-- 03 -->\[Typography] Improve inherit variant logic ([#&#8203;38123](https://github.com/mui/material-ui/issues/38123)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) ##### `@mui/system@5.14.4` - ​<!-- 34 -->Revert "\[Box] Remove `component` from TypeMap ([#&#8203;38168](https://github.com/mui/material-ui/issues/38168))" ([#&#8203;38356](https://github.com/mui/material-ui/issues/38356)) [@&#8203;michaldudak](https://github.com/michaldudak) ##### `@mui/base@5.0.0-beta.10` ##### Breaking changes - ​<!-- 32 -->\[base] Ban default exports ([#&#8203;38200](https://github.com/mui/material-ui/issues/38200)) [@&#8203;michaldudak](https://github.com/michaldudak) Base UI default exports were changed to named ones. Previously we had a mix of default and named ones. This was changed to improve consistency and avoid problems some bundlers have with default exports. See https://github.com/mui/material-ui/issues/21862 for more context. ```diff - import Button, { buttonClasses } from '@&#8203;mui/base/Button'; + import { Button, buttonClasses } from '@&#8203;mui/base/Button'; - import BaseMenu from '@&#8203;mui/base/Menu'; + import { Menu as BaseMenu } from '@&#8203;mui/base/Menu'; ``` Additionally, the `ClassNameGenerator` has been moved to the directory matching its name: ```diff - import ClassNameGenerator from '@&#8203;mui/base/className'; + import { ClassNameGenerator } from '@&#8203;mui/base/ClassNameGenerator'; ``` A codemod is provided to help with the migration: ```bash npx @&#8203;mui/codemod v5.0.0/base-use-named-imports <path> ``` ##### Changes - ​<!-- 31 -->\[base] Create useNumberInput and NumberInput ([#&#8203;36119](https://github.com/mui/material-ui/issues/36119)) [@&#8203;mj12albert](https://github.com/mj12albert) - ​<!-- 28 -->\[Select]\[base] Fix flicker on click of controlled Select button ([#&#8203;37855](https://github.com/mui/material-ui/issues/37855)) [@&#8203;VishruthR](https://github.com/VishruthR) - ​<!-- 09 -->\[Dropdown] Fix imports of types ([#&#8203;38296](https://github.com/mui/material-ui/issues/38296)) [@&#8203;yash-thakur](https://github.com/yash-thakur) ##### `@mui/joy@5.0.0-beta.1` - ​<!-- 06 -->\[joy-ui]\[MenuButton] Fix disable of `MenuButton` ([#&#8203;38342](https://github.com/mui/material-ui/issues/38342)) [@&#8203;sai6855](https://github.com/sai6855) ##### Docs - ​<!-- 33 -->\[docs]\[AppBar] Fix `ResponsiveAppBar` demo logo href ([#&#8203;38346](https://github.com/mui/material-ui/issues/38346)) [@&#8203;iownthegame](https://github.com/iownthegame) - ​<!-- 30 -->\[docs]\[base] Add Tailwind CSS + plain CSS demo on the Button page ([#&#8203;38240](https://github.com/mui/material-ui/issues/38240)) [@&#8203;alisasanib](https://github.com/alisasanib) - ​<!-- 29 -->\[docs]\[Menu]\[base] Remove `Unstyled` prefix from demos' function names ([#&#8203;38270](https://github.com/mui/material-ui/issues/38270)) [@&#8203;sai6855](https://github.com/sai6855) - ​<!-- 22 -->\[docs] Add themeable component guide ([#&#8203;37908](https://github.com/mui/material-ui/issues/37908)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 21 -->\[docs] Fix Joy UI demo background color ([#&#8203;38307](https://github.com/mui/material-ui/issues/38307)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 20 -->\[docs] Update API docs for Number Input component ([#&#8203;38301](https://github.com/mui/material-ui/issues/38301)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) - ​<!-- 14 -->\[docs]\[joy-ui] Revise the theme typography page ([#&#8203;38285](https://github.com/mui/material-ui/issues/38285)) [@&#8203;danilo-leal](https://github.com/danilo-leal) - ​<!-- 13 -->\[docs]\[joy-ui] Add TS demo for Menu Bar ([#&#8203;38308](https://github.com/mui/material-ui/issues/38308)) [@&#8203;sai6855](https://github.com/sai6855) - ​<!-- 10 -->\[docs]\[joy-ui] Updated Typography callout at getting started ([#&#8203;38289](https://github.com/mui/material-ui/issues/38289)) [@&#8203;zanivan](https://github.com/zanivan) - ​<!-- 12 -->\[docs]\[joy-ui] Fix the Inter font installation instructions ([#&#8203;38284](https://github.com/mui/material-ui/issues/38284)) [@&#8203;danilo-leal](https://github.com/danilo-leal) - ​<!-- 11 -->\[docs]\[material] Add note to Autocomplete about ref forwarding ([#&#8203;38305](https://github.com/mui/material-ui/issues/38305)) [@&#8203;samuelsycamore](https://github.com/samuelsycamore) - ​<!-- 05 -->\[docs]\[Skeleton] Make the demos feel more realistic ([#&#8203;38212](https://github.com/mui/material-ui/issues/38212)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 08 -->\[examples] Swap Next.js examples between App Router and Pages Router; update naming convention ([#&#8203;38204](https://github.com/mui/material-ui/issues/38204)) [@&#8203;samuelsycamore](https://github.com/samuelsycamore) - ​<!-- 07 -->\[examples]\[material-ui] Add Material UI + Next.js (App Router) example in JS ([#&#8203;38323](https://github.com/mui/material-ui/issues/38323)) [@&#8203;samuelsycamore](https://github.com/samuelsycamore) - ​<!-- 27 -->\[blog] Discord announcement blog ([#&#8203;38258](https://github.com/mui/material-ui/issues/38258)) [@&#8203;richbustos](https://github.com/richbustos) - ​<!-- 26 -->\[blog] Fix 301 links to Toolpad [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 04 -->\[website] Updating Charts demo with real charts usage for MUI X marketing page ([#&#8203;38317](https://github.com/mui/material-ui/issues/38317)) [@&#8203;richbustos](https://github.com/richbustos) - ​<!-- 03 -->\[website] Adjust styles of the Product section on the homepage ([#&#8203;38366](https://github.com/mui/material-ui/issues/38366)) [@&#8203;danilo-leal](https://github.com/danilo-leal) - ​<!-- 02 -->\[website] Add Nora teamMember card to 'About' ([#&#8203;38358](https://github.com/mui/material-ui/issues/38358)) [@&#8203;noraleonte](https://github.com/noraleonte) - ​<!-- 01 -->\[website] Fix image layout shift ([#&#8203;38326](https://github.com/mui/material-ui/issues/38326)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) ##### Core - ​<!-- 24 -->\[core] Fix docs demo export function consistency ([#&#8203;38191](https://github.com/mui/material-ui/issues/38191)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 23 -->\[core] Fix the link-check script on Windows ([#&#8203;38276](https://github.com/mui/material-ui/issues/38276)) [@&#8203;michaldudak](https://github.com/michaldudak) - ​<!-- 26 -->\[core] Use [@&#8203;testing-library/user-event](https://github.com/testing-library/user-event) direct API ([#&#8203;38325](https://github.com/mui/material-ui/issues/38325)) [@&#8203;mj12albert](https://github.com/mj12albert) - ​<!-- 29 -->\[core] Port GitHub workflow for ensuring triage label is present ([#&#8203;38312](https://github.com/mui/material-ui/issues/38312)) [@&#8203;DanailH](https://github.com/DanailH) - ​<!-- 19 -->\[docs-infra] Consider files ending with .types.ts as props files ([#&#8203;37533](https://github.com/mui/material-ui/issues/37533)) [@&#8203;mnajdova](https://github.com/mnajdova) - ​<!-- 18 -->\[docs-infra] Fix skip to content design ([#&#8203;38304](https://github.com/mui/material-ui/issues/38304)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 17 -->\[docs-infra] Add a general round of polish to the API content display ([#&#8203;38282](https://github.com/mui/material-ui/issues/38282)) [@&#8203;danilo-leal](https://github.com/danilo-leal) - ​<!-- 16 -->\[docs-infra] Make the side nav collapse animation snappier ([#&#8203;38259](https://github.com/mui/material-ui/issues/38259)) [@&#8203;danilo-leal](https://github.com/danilo-leal) - ​<!-- 15 -->\[docs-infra] New Component API design followup ([#&#8203;38183](https://github.com/mui/material-ui/issues/38183)) [@&#8203;cherniavskii](https://github.com/cherniavskii) - ​<!-- 06 -->\[test] Remove unnecessary `async` keyword from test ([#&#8203;38373](https://github.com/mui/material-ui/issues/38373)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) All contributors of this release in alphabetical order: [@&#8203;alisasanib](https://github.com/alisasanib), [@&#8203;cherniavskii](https://github.com/cherniavskii), [@&#8203;DanailH](https://github.com/DanailH), [@&#8203;danilo-leal](https://github.com/danilo-leal), [@&#8203;iownthegame](https://github.com/iownthegame), [@&#8203;michaldudak](https://github.com/michaldudak), [@&#8203;mj12albert](https://github.com/mj12albert), [@&#8203;mnajdova](https://github.com/mnajdova), [@&#8203;noraleonte](https://github.com/noraleonte), [@&#8203;oliviertassinari](https://github.com/oliviertassinari), [@&#8203;richbustos](https://github.com/richbustos), [@&#8203;sai6855](https://github.com/sai6855), [@&#8203;samuelsycamore](https://github.com/samuelsycamore), [@&#8203;siriwatknp](https://github.com/siriwatknp), [@&#8203;VishruthR](https://github.com/VishruthR), [@&#8203;yash-thakur](https://github.com/yash-thakur), [@&#8203;zanivan](https://github.com/zanivan), [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC4xNjAuMCIsInVwZGF0ZWRJblZlciI6IjM0LjE2MC4wIn0=-->
kjuulh added 1 commit 2023-08-08 12:22:32 +02:00
Update material-ui monorepo
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
077926bea7
kjuulh merged commit 077926bea7 into main 2023-08-08 12:45:38 +02:00
Sign in to join this conversation.
No Reviewers
No Label
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: OpenFood/openfood#123
No description provided.