-
-
Notifications
You must be signed in to change notification settings - Fork 32.4k
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
[Autocomplete] Add some missing props in useAutocomplete
#33269
Conversation
…seAutocomplete.d.ts`-> `disabled`, `readOnly` and `loading` Reference: https://mui.com/material-ui/api/autocomplete/
@mnajdova please, can you help me? I want understood if it require some update of the code from my PR... Thanks |
packages/mui-base/src/AutocompleteUnstyled/useAutocomplete.d.ts
Outdated
Show resolved
Hide resolved
packages/mui-base/src/AutocompleteUnstyled/useAutocomplete.d.ts
useAutocomplete
You should be able to run |
…styled/useAutocomplete.d.ts Co-authored-by: Marija Najdova <[email protected]>
@mnajdova I've take a look at |
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.
I sorted the props alphabetically. Now, this looks good to be merged.
Thanks, @henriqueholtz!
Co-authored-by: Marija Najdova <[email protected]> Co-authored-by: Michał Dudak <[email protected]>
Description:
feat: Add some props at
packages/mui-base/src/AutocompleteUnstyled/useAutocomplete.d.ts
disabled
readOnly
loading
Reference of default values and its descriptions: https://mui.com/material-ui/api/autocomplete/
Fixes #33239
Thanks.