Pular para o conteúdo

InputBase API

Documentação da API para o componente React InputBase . Aprenda sobre as propriedades disponíveis e a API CSS.

Importação

import InputBase from '@mui/material/InputBase';
// ou
import { InputBase } from '@mui/material';
Você pode aprender sobre a diferença lendo este guia sobre como minimizar o tamanho do pacote.

InputBase contains as few styles as possible. It aims to be a simple building block for creating an input. It contains a load of style reset and some state logic.

Nome do componente

The name MuiInputBase can be used when providing default props or style overrides in the theme.

Propriedades

Props of the nativo component are also available.

NomeTipoPadrãoDescrição
autoCompletestring
This prop helps users to fill forms faster, especially on mobile devices. The name can be confusing, as it's more like an autofill. You can learn more about it following the specification.
autoFocusboolfalse
If true, the input element is focused during the first mount.
classesobject
Sobrescreve ou extende os estilos aplicados para o componente. Veja a API CSS abaixo para maiores detalhes.
color'primary'
| 'secondary'
| 'error'
| 'info'
| 'success'
| 'warning'
| string
The color of the component. It supports those theme colors that make sense for this component. The prop defaults to the value ('primary') inherited from the parent FormControl component.
components{ Input?: elementType, Root?: elementType }{}
The components used for each slot inside the InputBase. Either a string to use a HTML element or a component.
componentsPropsobject{}
The props used for each slot inside the Input.
defaultValueany
The default input value. Use when the component is not controlled.
disabledboolfalse
If true, the input element is disabled. The prop defaults to the value (false) inherited from the parent FormControl component.
endAdornmentnode
End InputAdornment for this component.
errorboolfalse
If true, the input will indicate an error. The prop defaults to the value (false) inherited from the parent FormControl component.
fullWidthboolfalse
If true, the input will take up the full width of its container.
idstring
The id of the input element.
inputComponentelement type'input'
The component used for the input element. Either a string to use a HTML element or a component.
⚠️ Needs to be able to hold a ref.
inputPropsobject{}
Attributes applied to the input element.
inputRefref
Pass a ref to the input element.
margin'dense'
| 'none'
If dense, will adjust vertical spacing. This is normally obtained via context from FormControl. The prop defaults to the value ('none') inherited from the parent FormControl component.
maxRowsnumber
| string
Maximum number of rows to display when multiline option is set to true.
minRowsnumber
| string
Minimum number of rows to display when multiline option is set to true.
multilineboolfalse
If true, a textarea element is rendered.
namestring
Name attribute of the input element.
onBlurfunc
Callback fired when the input is blurred.
Notice that the first argument (event) might be undefined.
onChangefunc
Callback fired when the value is changed.

Signature:
function(event: object) => void
event: The event source of the callback. You can pull out the new value by accessing event.target.value (string).
placeholderstring
The short hint displayed in the input before the user enters a value.
readOnlyboolfalse
It prevents the user from changing the value of the field (not from interacting with the field).
requiredboolfalse
If true, the input element is required. The prop defaults to the value (false) inherited from the parent FormControl component.
rowsnumber
| string
Number of rows to display when multiline option is set to true.
size'medium'
| 'small'
| string
The size of the autocomplete.
startAdornmentnode
Start InputAdornment for this component.
sxfunc
| object
The system prop that allows defining system overrides as well as additional CSS styles. See the `sx` page for more details.
typestring'text'
Type of the input element. It should be a valid HTML5 input type.
valueany
The value of the input element, required for a controlled component.

O ref é encaminhado para o elemento raiz.

CSS

Nome da regraClasse globalDescrição
root.MuiInputBase-rootEstilos aplicados ao elemento raiz.
formControl.MuiInputBase-formControlEstilos aplicados para o elemento raiz se the component is a descendant of FormControl.
focused.Mui-focusedEstilos aplicados para o elemento raiz se the component is focused.
disabled.Mui-disabledEstilos aplicados para o elemento raiz se disabled={true}.
adornedStart.MuiInputBase-adornedStartEstilos aplicados para o elemento raiz se startAdornment is provided.
adornedEnd.MuiInputBase-adornedEndEstilos aplicados para o elemento raiz se endAdornment is provided.
error.Mui-errorPseudo-class aplicada a o elemento raiz se error={true}.
sizeSmall.MuiInputBase-sizeSmallEstilos aplicados para the input element se size="small".
multiline.MuiInputBase-multilineEstilos aplicados para o elemento raiz se multiline={true}.
colorSecondary.MuiInputBase-colorSecondaryEstilos aplicados para o elemento raiz se the color is secondary.
fullWidth.MuiInputBase-fullWidthEstilos aplicados para o elemento raiz se fullWidth={true}.
hiddenLabel.MuiInputBase-hiddenLabelEstilos aplicados para o elemento raiz se hiddenLabel={true}.
input.MuiInputBase-inputEstilos aplicados a the input element.
inputSizeSmall.MuiInputBase-inputSizeSmallEstilos aplicados para the input element se size="small".
inputMultiline.MuiInputBase-inputMultilineEstilos aplicados para the input element se multiline={true}.
inputTypeSearch.MuiInputBase-inputTypeSearchEstilos aplicados para the input element se type="search".
inputAdornedStart.MuiInputBase-inputAdornedStartEstilos aplicados para the input element se startAdornment is provided.
inputAdornedEnd.MuiInputBase-inputAdornedEndEstilos aplicados para the input element se endAdornment is provided.
inputHiddenLabel.MuiInputBase-inputHiddenLabelEstilos aplicados para the input element se hiddenLabel={true}.

Você pode sobrescrever o estilo do componente usando uma dessas opções de customização:

Demonstrações