Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 1 addition & 6 deletions docs/pages/material-ui/api/autocomplete.json
Original file line number Diff line number Diff line change
Expand Up @@ -149,12 +149,7 @@
"describedArgs": ["value", "getItemProps", "ownerState"]
}
},
"resetHighlightOnMouseLeave": {
"type": { "name": "bool" },
"default": "false",
"deprecated": true,
"deprecationInfo": "This behavior will be enabled by default in the next major version."
},
"resetHighlightOnMouseLeave": { "type": { "name": "bool" }, "default": "false" },
"selectOnFocus": { "type": { "name": "bool" }, "default": "!props.freeSolo" },
"size": {
"type": {
Expand Down
1 change: 0 additions & 1 deletion packages/mui-material/src/Autocomplete/Autocomplete.js
Original file line number Diff line number Diff line change
Expand Up @@ -1202,7 +1202,6 @@ Autocomplete.propTypes /* remove-proptypes */ = {
renderValue: PropTypes.func,
/**
* If `true`, clears an option highlighted by mouse movement when the mouse leaves the listbox.
* @deprecated This behavior will be enabled by default in the next major version.
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why not?

Suggested change
* @deprecated This behavior will be enabled by default in the next major version.
* This behavior will be enabled by default in the next major version.

* @default false
*/
resetHighlightOnMouseLeave: PropTypes.bool,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,6 @@ export interface UseAutocompleteProps<
readOnly?: boolean | undefined;
/**
* If `true`, clears an option highlighted by mouse movement when the mouse leaves the listbox.
* @deprecated This behavior will be enabled by default in the next major version.
* @default false
*/
resetHighlightOnMouseLeave?: boolean | undefined;
Expand Down
Loading