Pular para o conteúdo

FormControl API

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

Importação

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

Provides context such as filled/focused/error/required for form inputs. Relying on the context provides high flexibility and ensures that the state always stays consistent across the children of the FormControl. This context is used by the following components:

  • FormLabel
  • FormHelperText
  • Input
  • InputLabel

You can find one composition example below and more going to the demos.

<FormControl>
  <InputLabel htmlFor="my-input">Email address</InputLabel>
  <Input id="my-input" aria-describedby="my-helper-text" />
  <FormHelperText id="my-helper-text">We'll never share your email.</FormHelperText>
</FormControl>

⚠️ Only one InputBase can be used within a FormControl because it create visual inconsistencies. For instance, only one input can be focused at the same time, the state shouldn't be shared.

Nome do componente

The name MuiFormControl 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
childrennode
O conteúdo do componente.
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
'primary'
A cor do componente. Ela da suporte para as cores do tema que fazem sentido para este componente.
componentelementType
The component used for the root node. Either a string to use a HTML element or a component.
disabledboolfalse
If true, the label, input and helper text should be displayed in a disabled state.
errorboolfalse
If true, the label should be displayed in an error state.
focusedboolfalse
If true, the component is displayed in focused state.
fullWidthboolfalse
If true, the component will take up the full width of its container.
hiddenLabelboolfalse
If true, the label is hidden. This is used to increase density for a FilledInput. Be sure to add aria-label to the input element.
margin'dense'
| 'none'
| 'normal'
'none'
If dense or normal, will adjust vertical spacing of this and contained components.
requiredboolfalse
If true, the label will indicate that the input is required.
size'medium'
| 'small'
| string
'medium'
The size of the autocomplete.
sxfunc
| object
The system prop that allows defining system overrides as well as additional CSS styles. See the `sx` page for more details.
variant'filled'
| 'outlined'
| 'standard'
'outlined'
A variante a usar.

O ref é encaminhado para o elemento raiz.

CSS

Nome da regraClasse globalDescrição
root.MuiFormControl-rootEstilos aplicados ao elemento raiz.
marginNormal.MuiFormControl-marginNormalEstilos aplicados para o elemento raiz se margin="normal".
marginDense.MuiFormControl-marginDenseEstilos aplicados para o elemento raiz se margin="dense".
fullWidth.MuiFormControl-fullWidthEstilos aplicados para o elemento raiz se fullWidth={true}.

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

Demonstrações