Upgrading @types/react-is in @mui/utils
Aligns with used versions of react and react-is
I hope this resolves https://github.com/mui/material-ui/issues/37068 for me and those affected by that bug, but I wasn't able to successfully test these changes locally.
- [X] I have followed (at least) the PR section of the contributing guide.
Netlify deploy preview
https://deploy-preview-37163--material-ui.netlify.app/
Bundle size report
Generated by :no_entry_sign: dangerJS against 2b3c1650842463a01a19f6975ebe4fce09e6ae09
+1 for getting this merged as the current state is causing issues
Nice change - would also like to see this issue fixed. Is it possible to go a step further and move the @types/react-is dependency to devDependencies so its not part of the prod dependencies?
+1 for this fix. It will unblock my react 18 migration.
While this issue is not merged, we can force the dependency resolution in our package.json.
This works with Yarn, I believe NPM uses overrides instead of resolutions.
{
...
"dependencies": {
...
}
"resolutions": {
"@types/react-is": "18.2.0"
}
}
We updated the @types/react-is version to 18.2.0 in https://github.com/mui/material-ui/pull/37098. Thanks for the PR.