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

Support MUI v6.0 #1113

Open
TheWeirdDev opened this issue Aug 31, 2024 · 3 comments
Open

Support MUI v6.0 #1113

TheWeirdDev opened this issue Aug 31, 2024 · 3 comments
Labels

Comments

@TheWeirdDev
Copy link

Is your feature request related to a problem? Please describe.
The stable version of MUI v6.0 has been released recently. It does not have significant differences compared to v5, so upgrading is easy and straight forward.

Describe the solution you'd like
It would be nice if 'react-awesome-query-builder' supported both v5 and v6 by using something like: ^5.15.0 || ^6.0.0

Describe alternatives you've considered
Staying on v5 until more libraries support it.

Additional context
None

@rrust
Copy link

rrust commented Sep 26, 2024

MUI 6 can be used since #951
But @react-awesome-query-builder/[email protected] still depends on @mui/icons-material@"^5.2.4"

@TheWeirdDev
Copy link
Author

MUI 6 can be used since #951 But @react-awesome-query-builder/[email protected] still depends on @mui/icons-material@"^5.2.4"

Yeah, I get these peer dependency warnings:

├─┬ @react-awesome-query-builder/mui 6.6.3
│ ├── ✕ unmet peer @mui/material@^5.2.4: found 6.1.1
│ └── ✕ unmet peer @mui/icons-material@^5.2.4: found 6.0.1

@rrust
Copy link

rrust commented Sep 27, 2024

One way to work around this for now could be an "overrides" in your package.json:

"overrides": {
    "@mui/icons-material": "6.1.1",
    "@mui/material": "6.1.1"
  }

@ukrbublik ukrbublik added the MUI label Nov 12, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

3 participants