Autocomplete API
Importação
import Autocomplete from '@mui/material/Autocomplete';
// ou
import { Autocomplete } from '@mui/material';
Nome do componente
The nameMuiAutocomplete
can be used when providing default props or style overrides in the theme.Propriedades
Propriedades do componente nativo também estão disponíveis.
Nome | Tipo | Padrão | Descrição |
---|---|---|---|
options* | array | Array de opções. | |
renderInput* | func | Render the input. Signature: function(params: object) => ReactNode | |
autoComplete | bool | false | Se true , a porção da sugestão selecionada que não foi digitada pelo usuário, conhecida como a sequência de conclusão, aparece embutida após o cursor da entrada na caixa de texto. A sequência de conclusão é visualmente destacada e tem um estado selecionado. |
autoHighlight | bool | false | Se true , a primeira opção é destacada automaticamente. |
autoSelect | bool | false | Se true , a opção selecionada se torna o valor de entrada quando o Autocomplete perde o foco, a menos que o usuário escolha uma opção diferente ou mude um caractere da sequência na entrada. |
blurOnSelect | 'mouse' | 'touch' | bool | false | Controle se a entrada deve ficar borrada quando uma opção é selecionada: - false a entrada não é borrada. - true a entrada sempre é borrada. - touch a entrada é borrada após um evento de toque. - mouse a entrada é borrada após um evento de mouse. |
ChipProps | object | Props applied to the Chip element. | |
classes | object | Sobrescreve ou extende os estilos aplicados para o componente. Veja a API CSS abaixo para maiores detalhes. | |
clearIcon | node | <ClearIcon fontSize="small" /> | O ícone para exibir no lugar de um ícone de limpar padrão. |
clearOnBlur | bool | !props.freeSolo | If true , the input's text is cleared on blur if no value is selected.Set to true if you want to help the user enter a new value. Set to false if you want to help the user resume his search. |
clearOnEscape | bool | false | Se true , limpa todos os valores quando o usuário pressiona escape e o pop-up é fechado. |
clearText | string | 'Clear' | Override the default text for the clear icon button. For localization purposes, you can use the provided translations. |
closeText | string | 'Close' | Override the default text for the close popup icon button. For localization purposes, you can use the provided translations. |
componentsProps | { clearIndicator?: object, paper?: object, popper?: object, popupIndicator?: object } | {} | As propriedades usadas para cada slot dentro. |
defaultValue | any | props.multiple ? [] : null | The default input value. Use when the component is not controlled. |
disableClearable | bool | false | Se true , a entrada não pode ser limpa. |
disableCloseOnSelect | bool | false | Se true , o pop-up não fechará quando um valor é selecionado. |
disabled | bool | false | Se true , o componente está desabilitado. |
disabledItemsFocusable | bool | false | Se true , permitirá foco em itens desabilitados. |
disableListWrap | bool | false | Se true , a caixa de lista em um pop-up não irá envolver o foco. |
disablePortal | bool | false | Se true , o conteúdo de Popper estará abaixo da hierarquia DOM do componente pai. |
filterOptions | func | A function that determines the filtered options to be rendered on search. Signature: function(options: Array<T>, state: object) => Array<T> options: The options to render. state: The state of the component. | |
filterSelectedOptions | bool | false | Se true , oculta as opções selecionadas da caixa de lista. |
forcePopupIcon | 'auto' | bool | 'auto' | Force the visibility display of the popup icon. |
freeSolo | bool | false | Se true , o Autocomplete é um solo livre, o que significa que a entrada do usuário não está vinculada às opções fornecidas. |
fullWidth | bool | false | Se true , o input ocupará toda a largura de seu contêiner. |
getLimitTagsText | func | (more) => `+${more}` | O rótulo a ser exibido quando as tags são truncadas ( limitTags ).Assinatura: function (more: number) => ReactNode more: O número de tags truncadas. |
getOptionDisabled | func | Usado para determinar o estado desabilitado para uma determinada opção. Assinatura: function (option: T) => boolean option: A opção de teste. | |
getOptionLabel | func | (option) => option.label ?? option | Used to determine the string value for a given option. It's used to fill the input (and the list box options if renderOption is not provided).If used in free solo mode, it must accept both the type of the options and a string. Signature: function(option: T) => string |
groupBy | func | Se fornecido, as opções serão agrupadas sob a string retornada. O valor groupBy também é usado como o texto para os títulos dos grupos quando renderGroup não é fornecido.Assinatura: function (options: T) => string options: As opções para grupo. | |
handleHomeEndKeys | bool | !props.freeSolo | Se true , o componente lida com as teclas "Home" e "End" quando o pop-up estiver aberto. Deverá movimentar-se para a primeira opção e para a última opção, respectivamente. |
id | string | Esta propriedade é usada para ajudar a implementar a lógica de acessibilidade. Se você não fornecer um ‘id’, ela retornará um ‘id’ gerado aleatoriamente. | |
includeInputInList | bool | false | Se true , o destaque pode mover para a entrada. |
inputValue | string | O valor de entrada. | |
isOptionEqualToValue | func | Usado para determinar se a opção representa o valor dado. Usa uma igualdade estrita por padrão. ⚠️ Ambos os argumentos precisam ser manipulados, uma opção só pode corresponder com um valor. Assinatura: function (option: T, value: T) => boolean option: A opção de teste. value: O valor a ser testado. | |
limitTags | integer | -1 | O número máximo de tags que serão visíveis quando não estiver focado. Defina -1 para desativar o limite. |
ListboxComponent | elementType | 'ul' | O componente usado para renderizar a caixa de listagem. |
ListboxProps | object | Props aplicadas ao elemento Listbox. | |
loading | bool | false | If true , the component is in a loading state. |
loadingText | node | 'Loading…' | Text to display when in a loading state. For localization purposes, you can use the provided translations. |
multiple | bool | false | Se true , o value deve ser um array e o menu suportará múltiplas seleções. |
noOptionsText | node | 'No options' | Text to display when there are no options. For localization purposes, you can use the provided translations. |
onChange | func | Callback fired when the value changes. Signature: function(event: object, value: T | T[], reason: string, details?: string) => void event: The event source of the callback. value: The new value of the component. reason: One of "createOption", "selectOption", "removeOption", "blur" or "clear". | |
onClose | func | Callback fired when the popup requests to be closed. Use in controlled mode (see open). Signature: function(event: object, reason: string) => void event: The event source of the callback. reason: Can be: "toggleInput" , "escape" , "selectOption" , "removeOption" , "blur" . | |
onHighlightChange | func | Callback fired when the highlight option changes. Signature: function(event: object, option: T, reason: string) => void event: The event source of the callback. option: The highlighted option. reason: Can be: "keyboard" , "auto" , "mouse" . | |
onInputChange | func | Callback fired when the input value changes. Signature: function(event: object, value: string, reason: string) => void event: The event source of the callback. value: The new value of the text input. reason: Can be: "input" (user input), "reset" (programmatic change), "clear" . | |
onOpen | func | Callback fired when the popup requests to be opened. Use in controlled mode (see open). Signature: function(event: object) => void event: The event source of the callback. | |
open | bool | false | Control the popup` open state. |
openOnFocus | bool | false | Se true , o pop-up abrirá quando a entrada for focada. |
openText | string | 'Open' | Override the default text for the open popup icon button. For localization purposes, you can use the provided translations. |
PaperComponent | elementType | Paper | O componente usado para renderizar o corpo do pop-up. |
PopperComponent | elementType | Popper | O componente usado para posicionar o pop-up. |
popupIcon | node | <ArrowDropDownIcon /> | The icon to display in place of the default popup icon. |
readOnly | bool | false | If true , the component becomes readonly. It is also supported for multiple tags where the tag cannot be deleted. |
renderGroup | func | Render the group. Signature: function(option: any) => ReactNode option: The group to render. | |
renderOption | func | Render the option, use getOptionLabel by default.Signature: function(props: object, option: T, state: object) => ReactNode props: The props to apply on the li element. option: The option to render. state: The state of the component. | |
renderTags | func | Render the selected value. Signature: function(value: Array<T>, getTagProps: function, ownerState: object) => ReactNode value: The value provided to the component.getTagProps: A tag props getter. ownerState: The state of the Autocomplete component. | |
selectOnFocus | bool | !props.freeSolo | If true , the input's text is selected on focus. It helps the user clear the selected value. |
size | 'small' | 'medium' | string | 'medium' | The size of the autocomplete. |
slotProps | { clearIndicator?: object, paper?: object, popper?: object, popupIndicator?: object } | {} | |
sx | Array<func | object | bool> | func | object | The system prop that allows defining system overrides as well as additional CSS styles. See the `sx` page for more details. | |
value | any | The value of the autocomplete. The value must have reference equality with the option in order to be selected. You can customize the equality behavior with the isOptionEqualToValue prop. |
O
ref
é encaminhado para o elemento raiz.CSS
Nome da regra | Classe global | Descrição |
---|---|---|
root | .MuiAutocomplete-root | Estilos aplicados ao elemento raiz. |
fullWidth | .MuiAutocomplete-fullWidth | Estilos aplicados para o elemento raiz se fullWidth={true} . |
focused | .Mui-focused | Pseudo-class aplicada a o elemento raiz se focused. |
tag | .MuiAutocomplete-tag | Estilos aplicados para os elementos de tag, ex: os chips. |
tagSizeSmall | .MuiAutocomplete-tagSizeSmall | Estilos aplicados para os elementos de tag, e.g. the chips if size="small" . |
tagSizeMedium | .MuiAutocomplete-tagSizeMedium | Estilos aplicados para the tag elements, e.g. the chips if size="medium" . |
hasPopupIcon | .MuiAutocomplete-hasPopupIcon | Styles applied when the popup icon is rendered. |
hasClearIcon | .MuiAutocomplete-hasClearIcon | Styles applied when the clear icon is rendered. |
inputRoot | .MuiAutocomplete-inputRoot | Estilos aplicados a o elemento Input. |
input | .MuiAutocomplete-input | Estilos aplicados a o elemento input. |
inputFocused | .MuiAutocomplete-inputFocused | Estilos aplicados para o elemento input se the input is focused. |
endAdornment | .MuiAutocomplete-endAdornment | Estilos aplicados a o elemento endAdornment. |
clearIndicator | .MuiAutocomplete-clearIndicator | Estilos aplicados a o indicador de limpar. |
popupIndicator | .MuiAutocomplete-popupIndicator | Estilos aplicados a o indicador de pop-up. |
popupIndicatorOpen | .MuiAutocomplete-popupIndicatorOpen | Estilos aplicados para o indicador de pop-up se o pop-up estiver aberto. |
popper | .MuiAutocomplete-popper | Estilos aplicados a o elemento popper. |
popperDisablePortal | .MuiAutocomplete-popperDisablePortal | Estilos aplicados para o elemento popper se disablePortal={true} . |
paper | .MuiAutocomplete-paper | Estilos aplicados a o componente Paper. |
listbox | .MuiAutocomplete-listbox | Estilos aplicados a o componente listbox. |
loading | .MuiAutocomplete-loading | Estilos aplicados a o wrapper de carregamento. |
noOptions | .MuiAutocomplete-noOptions | Estilos aplicados a o wrapper de sem opção. |
option | .MuiAutocomplete-option | Estilos aplicados a os elementos de opção. |
groupLabel | .MuiAutocomplete-groupLabel | Estilos aplicados a os elementos de label dos groupos. |
groupUl | .MuiAutocomplete-groupUl | Estilos aplicados a os elementos de ul dos groupos. |
Você pode sobrescrever o estilo do componente usando uma dessas opções de customização:
- With a global class name.
- With a rule name as part of the component's
styleOverrides
property in a custom theme.