Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependency @mui/material to v5.13.4 #125

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Jun 7, 2022

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@mui/material (source) 5.8.2 -> 5.13.4 age adoption passing confidence

Release Notes

mui/material-ui

v5.13.4

Compare Source

Jun 5, 2023

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

@mui/material@5.13.4
@mui/base@5.0.0-beta.4
@mui/joy@5.0.0-alpha.82
Docs
Core

All contributors of this release in alphabetical order: @​brijeshb42, @​danielplewes, @​danilo-leal, @​DiegoAndai, @​gitstart, @​MBilalShafi, @​mj12albert, @​oliviertassinari, @​sai6855, @​siriwatknp, @​vishalthatipamula0219, @​ZeeshanTamboli

v5.13.3

Compare Source

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
@mui/base@5.0.0-beta.3
@mui/joy@5.0.0-alpha.82
`@mui/codemod@5.13.3
Docs
Core

All contributors of this release in alphabetical order: @​akash191095, @​brijeshb42, @​canac, @​DavidCnoops, @​gitstart, @​hbjORbj, @​JhonnK08, @​LukasTy, @​michaldudak, @​necatiozmen, @​nicolas-ot, @​oliviertassinari, @​sai6855, @​ZeeshanTamboli, @​zignis

v5.13.2

Compare Source

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
Docs
Core

All contributors of this release in alphabetical order: @​alexfauquette, @​brijeshb42, @​cherniavskii, @​danilo-leal, @​m4theushw, @​michaldudak, @​mnajdova, @​oliviertassinari, @​PunitSoniME, @​sai6855, @​TinaSay, @​ZeeshanTamboli

v5.13.1

Compare Source

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) @​cccEric
  • 🐛 bug fixes and 📚 documentation improvements.
@mui/material@5.13.1
@mui/utils@5.13.1
@mui/base@5.0.0-beta.1
@mui/joy@5.0.0-alpha.80
Docs
Core

All contributors of this release in alphabetical order: @​Bastian, @​binh1298, @​cccEric, @​cherniavskii, @​DerTimonius, @​DiegoAndai, @​flaviendelangle, @​hbjORbj, @​jguddas, @​kkocdko, @​kriskw1999, @​mauwaz, @​michaldudak, @​mnajdova, @​nickiaconis, @​nicolas-ot, @​oliviertassinari, @​PunitSoniME, @​richbustos, @​safeamiiir, @​sai6855, @​siriwatknp, @​uuxxx, @​zanivan, @​ZeeshanTamboli

v5.13.0

Compare Source

May 10, 2023

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

  • 🚀 Base UI is now in beta - all planned breaking changes are now complete!
  • 🗺 We have a new project roadmap on GitHub where you can learn about what's coming next.
  • 🐛 Various bug fixes, 📚 documentation and 🧪 testing improvements
@mui/material@5.13.0
@mui/joy@5.0.0-alpha.79
@mui/base@5.0.0-beta.0
Docs
Core

All contributors of this release in alphabetical order: @​akash191095, @​DanailH, @​danilo-leal, @​DerTimonius, @​gerdadesign, @​hbjORbj, @​kriskw1999, @​michaldudak, @​mnajdova, @​oliviertassinari, @​PunitSoniME, @​romgrk, @​sai6855, @​ulrichstark, @​uuxxx, @​wewakekumar, @​ZeeshanTamboli, @​zignis

v5.12.3

Compare Source

May 2, 2023

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

  • all planned breaking changes for Base UI are done. The first beta release should come next week 🎉
  • 🐛 bug fixes and 📚 documentation improvements.
@mui/material@5.12.3
@mui/joy@5.0.0-alpha.78
@mui/base@5.0.0-alpha.128
Breaking changes
  • The component prop is no longer supported because it can be replaced with the slots API. This is how the transformation will look like:

     <Button
    -  component="span"
    +  slots={{ root: "span" }}
     />

    If using TypeScript, the custom component type should be added as a generic on the Button component.

    -<Button
    +<Button<typeof CustomComponent>
       slots={{ root: CustomComponent }}
       customProp="foo"
     />

    There is codemod that you can run in your project to do the transformation:

    npx @&#8203;mui/codemod v5.0.0/base-remove-component-prop <path>

    The full documentation about the codemod can be found here.

    This is the list of PR related to this change:

  • ​[base] Improve API consistency (#​36970) @​michaldudak

    Brought consistency to Base UI components and hooks' parameters and return values:

    1. Whenever a hook needs a ref, it's now called <slot_name>Ref, which matches the get<slot_name>Props in the return value.
    2. All hooks that accept external refs now return merged refs, making combining multiple hooks on one element easier. This was proven necessary in several compound components (like menuItem being both a button and a list item). The type of this value is React.RefCallback as using the more general React.Ref caused variance issues.
    3. Type of accepted refs is standardized to React.Ref<Element>
    4. Naming and typing of the forwarded ref in unstyled components were standardized - it's forwardedRef: React.ForwardedRef (unless a more specific type is needed).
    5. The shape of the definition of unstyled components was standardized - it's React.forwardRef(function Component(props: Props, forwardedRef: React.Ref) { ... });. Specifically, the generic parameters of forwardRef were removed as they are specified in function arguments.
Changes
Docs
Core

All contributors of this release in alphabetical order: @​cherniavskii, @​DavidBoyer11, @​hbjORbj, @​jakub-stastny, @​joserodolfofreitas, @​maxdestors, @​michaldudak, @​mj12albert, @​mnajdova, @​navedqb, @​nicolas-ot, @​oliviertassinari, @​PunitSoniME, @​sai6855, @​samuelsycamore, @​siriwatknp, @​varunmulay22, @​ZeeshanTamboli

v5.12.2

Compare Source

Apr 25, 2023

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

  • ⚠️ [BREAKING CHANGE] The Unstyled suffix has been removed from Base UI component names, including names of types and other related identifiers – a codemod script is provided to assist with the change.
  • 🐛 bug fixes and 📚 documentation improvements.
@mui/material@5.12.2
@mui/base@5.0.0-alpha.127
Breaking changes
  • ​[base] Remove unstyled suffix from Base components + Codemod script (#​36873) @​hbjORbj

    The Unstyled suffix has been removed from all Base UI component names, including names of types and other related identifiers.

    You can use this codemod to help with the migration:

    npx @&#8203;mui/codemod v5.0.0/base-remove-unstyled-suffix <path>
Changes
@mui/joy@5.0.0-alpha.77
Docs
Core

All contributors of this release in alphabetical order: @​alexfauquette, @​cherniavskii, @​danilo-leal, @​gitstart, @​hbjORbj, @​michaldudak, @​mj12albert, @​mnajdova, @​oliviertassinari, @​PupoSDC, @​sai6855, @​siriwatknp, @​TakhyunKim, @​tomaskebrle

v5.12.1

Compare Source

Apr 17, 2023

A big thanks to the 16 contributors who made this release possible. This release was mostly about 🐛 bug fixes and 📚 documentation improvements.

@mui/material@5.12.1
@mui/system@5.12.1
Breaking changes
  • ​[Grid2] Replace context with cloneElement (#​36399) @​siriwatknp

    Grid2 now uses React.cloneElement instead of React context for passing the spacing and columns to the next container. The change is close to how CSS flexbox behaves.

Changes
@mui/base@5.0.0-alpha.126
Breaking changes
  • ​[base] Refactor the compound components building blocks (#​36400) @​michaldudak
    Components affected by the changes are:
    • Menu
      • MenuUnstyledContext is replaced by MenuProvider. The value to pass to the provider is returned by the useMenu hook.
      • MenuUnstyled's onClose prop is replaced by onOpenChange. It has the open parameter and is called when a menu is opened or closed
    • Select
      • SelectUnstyledContext is replaced by SelectProvider. The value to pass to the provider is returned by the useSelect hook.
      • SelectUnstyled's popup is permanently mounted.
      • The defaultOpen prop was added to the SelectUnstyled. The open/close state can now be controlled or uncontrolled, as a value.
    • Tabs
      • TabsContext is replaced by TabsProvider. The value to pass to the provider is returned by the useTabs hook.
      • To deselect all tabs, pass in null to Tabs' value prop, instead of false. This is consistent with how Select works.
      • The value prop is still technically not mandatory on TabUnstyled and TabPanel, but when omitted, the contents of the selected tab panel will not be rendered during SSR.
@mui/joy@5.0.0-alpha.76
Docs
Core

All contributors of this release in alphabetical order: @​emlai, @​flaviendelangle, @​gitstart, [@​hbjORbj](https://togithub.co


Configuration

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

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

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

🔕 Ignore: Close this PR and you won't be reminded about this update again.


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

This PR has been generated by Mend Renovate. View repository job log here.

@vercel
Copy link

vercel bot commented Jun 7, 2022

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
research-sliit-system ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jun 5, 2023 8:52pm

@renovate renovate bot changed the title Update dependency @mui/material to v5.8.3 Update dependency @mui/material to v5.8.4 Jun 14, 2022
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch from feeb052 to 5089556 Compare June 14, 2022 15:28
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch from 5089556 to 44b951b Compare June 21, 2022 20:10
@renovate renovate bot changed the title Update dependency @mui/material to v5.8.4 Update dependency @mui/material to v5.8.5 Jun 21, 2022
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch from 44b951b to 7a6a792 Compare June 27, 2022 16:52
@renovate renovate bot changed the title Update dependency @mui/material to v5.8.5 Update dependency @mui/material to v5.8.6 Jun 27, 2022
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch from 7a6a792 to baff1fe Compare July 4, 2022 21:58
@renovate renovate bot changed the title Update dependency @mui/material to v5.8.6 Update dependency @mui/material to v5.8.7 Jul 4, 2022
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch from baff1fe to c04217e Compare July 12, 2022 10:55
@renovate renovate bot changed the title Update dependency @mui/material to v5.8.7 Update dependency @mui/material to v5.9.0 Jul 12, 2022
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch from c04217e to 8e42fc3 Compare July 18, 2022 18:39
@renovate renovate bot changed the title Update dependency @mui/material to v5.9.0 Update dependency @mui/material to v5.9.1 Jul 18, 2022
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch from 8e42fc3 to 057a7f6 Compare July 25, 2022 15:48
@renovate renovate bot changed the title Update dependency @mui/material to v5.9.1 Update dependency @mui/material to v5.9.2 Jul 25, 2022
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch from 057a7f6 to 3de3ffd Compare August 1, 2022 21:39
@renovate renovate bot changed the title Update dependency @mui/material to v5.9.2 Update dependency @mui/material to v5.9.3 Aug 1, 2022
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch from 3de3ffd to 60df5eb Compare September 25, 2022 14:41
@renovate renovate bot changed the title Update dependency @mui/material to v5.9.3 Update dependency @mui/material to v5.10.6 Sep 25, 2022
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch from 60df5eb to 387dc77 Compare November 20, 2022 14:23
@renovate renovate bot changed the title Update dependency @mui/material to v5.10.6 Update dependency @mui/material to v5.10.14 Nov 20, 2022
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch from 387dc77 to 72bd688 Compare March 11, 2023 10:04
@renovate renovate bot changed the title Update dependency @mui/material to v5.10.14 Update dependency @mui/material to v5.11.12 Mar 11, 2023
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch from 72bd688 to cb0aee0 Compare March 18, 2023 17:54
@renovate renovate bot changed the title Update dependency @mui/material to v5.11.12 Update dependency @mui/material to v5.11.13 Mar 18, 2023
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch from cb0aee0 to 47b45bf Compare March 30, 2023 21:57
@renovate renovate bot changed the title Update dependency @mui/material to v5.11.13 Update dependency @mui/material to v5.11.15 Mar 30, 2023
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch from 47b45bf to 31f7356 Compare April 17, 2023 13:16
@renovate renovate bot changed the title Update dependency @mui/material to v5.11.15 Update dependency @mui/material to v5.12.0 Apr 17, 2023
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch from 31f7356 to 3f48a89 Compare April 17, 2023 16:25
@renovate renovate bot changed the title Update dependency @mui/material to v5.12.0 Update dependency @mui/material to v5.12.1 Apr 17, 2023
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch from 3f48a89 to c211568 Compare May 28, 2023 11:14
@renovate renovate bot changed the title Update dependency @mui/material to v5.12.1 Update dependency @mui/material to v5.13.2 May 28, 2023
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch from c211568 to 4a86faf Compare May 29, 2023 12:29
@renovate renovate bot changed the title Update dependency @mui/material to v5.13.2 Update dependency @mui/material to v5.13.3 May 29, 2023
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch from 4a86faf to 01bdb3b Compare June 5, 2023 20:51
@renovate renovate bot changed the title Update dependency @mui/material to v5.13.3 Update dependency @mui/material to v5.13.4 Jun 5, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants