ListItem API
Importação
import ListItem from '@mui/material/ListItem';
// ou
import { ListItem } from '@mui/material';
Uses an additional container component if ListItemSecondaryAction
is the last child.
Nome do componente
The nameMuiListItem
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 |
---|---|---|---|
alignItems | 'center' | 'flex-start' | 'center' | Defines the align-items style property. |
autoFocus | bool | false | If true , the list item is focused during the first mount. Focus will also be triggered if the value changes from false to true. |
button | bool | false | If true , the list item is a button (using ButtonBase ). Props intended for ButtonBase can then be applied to ListItem . |
children | node | The content of the component if a ListItemSecondaryAction is used it must be the last child. | |
classes | object | Sobrescreve ou extende os estilos aplicados para o componente. Veja a API CSS abaixo para maiores detalhes. | |
component | elementType | The component used for the root node. Either a string to use a HTML element or a component. | |
components | { Root?: elementType } | {} | The components used for each slot inside the InputBase. Either a string to use a HTML element or a component. |
componentsProps | { root?: object } | {} | The props used for each slot inside the Input. |
ContainerComponent | element type | 'li' | The container component used when a ListItemSecondaryAction is the last child.⚠️ Needs to be able to hold a ref. |
ContainerProps | object | {} | Props applied to the container component if used. |
dense | bool | false | If true , compact vertical padding designed for keyboard and mouse input is used. The prop defaults to the value inherited from the parent List component. |
disabled | bool | false | Se true , o componente está desabilitado. |
disableGutters | bool | false | If true , the left and right padding is removed. |
disablePadding | bool | false | If true , all padding is removed. |
divider | bool | false | If true , a 1px light border is added to the bottom of the list item. |
secondaryAction | node | The element to display at the end of ListItem. | |
selected | bool | false | Use to apply selected styling. |
slotProps | { root?: object } | {} | |
slots | { root?: elementType } | {} | |
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. |
O
ref
é encaminhado para o elemento raiz.CSS
Nome da regra | Classe global | Descrição |
---|---|---|
root | .MuiListItem-root | Styles applied to the (normally root) `component` element. May be wrapped by a `container`. |
container | .MuiListItem-container | Estilos aplicados para the container element se children includes ListItemSecondaryAction . |
focusVisible | .Mui-focusVisible | Pseudo-class aplicada a the `component`'s `focusVisibleClassName` prop se button={true} . |
dense | .MuiListItem-dense | Estilos aplicados para the component element se dense. |
alignItemsFlexStart | .MuiListItem-alignItemsFlexStart | Estilos aplicados para the component element se alignItems="flex-start" . |
disabled | .Mui-disabled | Pseudo-class aplicada a the inner `component` element se disabled={true} . |
divider | .MuiListItem-divider | Estilos aplicados para the inner `component` element se divider={true} . |
gutters | .MuiListItem-gutters | Estilos aplicados em the inner `component` element a menos que disableGutters={true} . |
padding | .MuiListItem-padding | Estilos aplicados em o elemento raiz a menos que disablePadding={true} . |
button | .MuiListItem-button | Estilos aplicados para the inner `component` element se button={true} . |
secondaryAction | .MuiListItem-secondaryAction | Estilos aplicados para the component element se children includes ListItemSecondaryAction . |
selected | .Mui-selected | Pseudo-class aplicada a o elemento raiz se selected={true} . |
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.