-
-
Notifications
You must be signed in to change notification settings - Fork 32.5k
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
[lab] Remove @mui/base dependency #45602
Changes from all commits
e5f8eee
eb77fc2
e5acad8
f5901bd
b1e3da8
447ccfb
41999fb
99b26d2
df161b8
0a24dd3
31c02be
3d89701
3525234
ff043c0
2dc0f9d
2f62bd7
3e0b860
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
export { useAutocomplete as default } from '@mui/base'; | ||
export { default } from '@mui/material/useAutocomplete'; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The hook was already copied in @mui/material when we were removing the @mui/base dependency from there. Here, we are just changing the location of where we re-export. |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
export { useAutocomplete as default, createFilterOptions } from '@mui/base'; | ||
export { default, createFilterOptions } from '@mui/material/useAutocomplete'; |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Using the same import as in @mui/material.