Select API
Importação
import Select from '@mui/material/Select';
// ou
import { Select } from '@mui/material';Nome do componente
The nameMuiSelect can be used when providing default props or style overrides in the theme.Propriedades
Propriedades do componente OutlinedInput também estão disponíveis.
| Nome | Tipo | Padrão | Descrição | 
|---|---|---|---|
| autoWidth | bool | false | If  true, the width of the popover will automatically be set according to the items inside the menu, otherwise it will be at least the width of the select input. | 
| children | node | The option elements to populate the select with. Can be some  MenuItemwhennativeis false andoptionwhennativeis true.⚠️The MenuItemelements must be direct descendants whennativeis false. | |
| classes | object | {} | Sobrescreve ou extende os estilos aplicados para o componente. Veja a API CSS abaixo para maiores detalhes. | 
| defaultOpen | bool | false | If  true, the component is initially open. Use when the component open state is not controlled (i.e. theopenprop is not defined). You can only use it when thenativeprop isfalse(default). | 
| defaultValue | any | The default input value. Use when the component is not controlled. | |
| displayEmpty | bool | false | If  true, a value is displayed even if no items are selected.In order to display a meaningful value, a function can be passed to the renderValueprop which returns the value to be displayed when no items are selected.⚠️ When using this prop, make sure the label doesn't overlap with the empty displayed value. The label should either be hidden or forced to a shrunk state. | 
| IconComponent | elementType | ArrowDropDownIcon | The icon that displays the arrow. | 
| id | string | The  idof the wrapper element or theselectelement whennative. | |
| input | element | An  Inputelement; does not have to be a material-ui specificInput. | |
| inputProps | object | Attributes applied to the  inputelement. Whennativeistrue, the attributes are applied on theselectelement. | |
| label | node | ||
| labelId | string | The ID of an element that acts as an additional label. The Select will be labelled by the additional label and the selected value. | |
| MenuProps | object | Props applied to the  Menuelement. | |
| multiple | bool | false | If  true,valuemust be an array and the menu will support multiple selections. | 
| native | bool | false | If  true, the component uses a nativeselectelement. | 
| onChange | func | Callback fired when a menu item is selected. Signature: function(event: object, child?: object) => voidevent: The event source of the callback. You can pull out the new value by accessing event.target.value(any). Warning: This is a generic event not a change event.child: The react element that was selected when nativeisfalse(default). | |
| onClose | func | Callback fired when the component requests to be closed. Use in controlled mode (see open). Signature: function(event: object) => voidevent: The event source of the callback. | |
| onOpen | func | Callback fired when the component requests to be opened. Use in controlled mode (see open). Signature: function(event: object) => voidevent: The event source of the callback. | |
| open | bool | false | Control  selectopen state. You can only use it when thenativeprop isfalse(default). | 
| renderValue | func | Render the selected value. You can only use it when the  nativeprop isfalse(default).Signature: function(value: any) => ReactNodevalue: The valueprovided to the component. | |
| SelectDisplayProps | object | Props applied to the clickable div element. | |
| 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  inputvalue. Providing an empty string will select no options. This prop is required when thenativeprop isfalse(default). Set to an empty string''if you don't want any of the available options to be selected.If the value is an object it must have reference equality with the option in order to be selected. If the value is not an object, the string representation must match with the string representation of the option in order to be selected. | |
| variant | 'filled' | 'outlined' | 'standard' | 'outlined' | A variante a usar. | 
O
ref é encaminhado para o elemento raiz.Herança
While not explicitly documented above, the props of the OutlinedInput component are also available on Select. You can take advantage of this to target nested components.CSS
| Nome da regra | Classe global | Descrição | 
|---|---|---|
| select | .MuiSelect-select | Estilos aplicados a the select component `select` class. | 
| multiple | .MuiSelect-multiple | Styles applied to the select component if multiple={true}. | 
| filled | .MuiSelect-filled | Estilos aplicados para the select component se variant="filled". | 
| outlined | .MuiSelect-outlined | Estilos aplicados para the select component se variant="outlined". | 
| standard | .MuiSelect-standard | Estilos aplicados para the select component se variant="standard". | 
| disabled | .Mui-disabled | Pseudo-class applied to the select component `disabled` class. | 
| icon | .MuiSelect-icon | Estilos aplicados a the icon component. | 
| iconOpen | .MuiSelect-iconOpen | Estilos aplicados para the icon component se the popup is open. | 
| iconFilled | .MuiSelect-iconFilled | Estilos aplicados para the icon component se variant="filled". | 
| iconOutlined | .MuiSelect-iconOutlined | Estilos aplicados para the icon component se variant="outlined". | 
| iconStandard | .MuiSelect-iconStandard | Estilos aplicados para the icon component se variant="standard". | 
| nativeInput | .MuiSelect-nativeInput | Estilos aplicados a the underlying native input component. | 
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 styleOverridesproperty in a custom theme.