A list of options that will be shown in the Autocomplete.
Render the input.
Signature: function(params: object) => ReactNode
If true
, the portion of the selected suggestion that the user hasn’t typed, known as the completion string, appears inline after the input cursor in the textbox. The inline completion string is visually highlighted and has a selected state.
If true
, the first option is automatically highlighted.
If true
, the selected option becomes the value of the input when the Autocomplete loses focus unless the user chooses a different option or changes the character string in the input.
When using the freeSolo
mode, the typed value will be the input value if the Autocomplete loses focus without highlighting an option.
Control if the input should be blurred when an option is selected:
false
the input is not blurred.true
the input is always blurred.touch
the input is blurred after a touch event.mouse
the input is blurred after a mouse event.… (rest of the content remains the same)