We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Since mui/material-ui#13142 Material UI changed global export name to MaterialUI instead material-ui
MaterialUI
material-ui
Material dependencies are failed when library exported into global namespace of window (not import commonjs, amd)
Imports ok
Just use direct script imports of material and material-pickers
<script src="material.umd.js" /> <script src="material-pickers.umd.js" />
Externals support
Webpack with linked externals
The text was updated successfully, but these errors were encountered:
My solution Create extra js file between material and pickers
window['material-ui']=window['MaterialUI'];
Sorry, something went wrong.
umd build are only for prototyping and legacy
No branches or pull requests
Since mui/material-ui#13142 Material UI changed global export name to
MaterialUI
insteadmaterial-ui
Current Behavior 😯
Material dependencies are failed when library exported into global namespace of window (not import commonjs, amd)
Expected Behavior 🤔
Imports ok
Steps to Reproduce 🕹
Just use direct script imports of material and material-pickers
Context 🔦
Externals support
Your Environment 🌎
Webpack with linked externals
The text was updated successfully, but these errors were encountered: