Pular para o conteúdo

TreeItem API

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

Importação

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

Nome do componente

The name MuiTreeItem 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
nodeId*string
The id of the node.
childrennode
O conteúdo do componente.
classesobject
Sobrescreve ou extende os estilos aplicados para o componente. Veja a API CSS abaixo para maiores detalhes.
collapseIconnode
The icon used to collapse the node.
ContentComponentelement typeTreeItemContent
The component used for the content node.
⚠️ Needs to be able to hold a ref.
ContentPropsobject
Props applied to ContentComponent
disabledboolfalse
If true, the node is disabled.
endIconnode
The icon displayed next to a end node.
expandIconnode
The icon used to expand the node.
iconnode
The icon to display next to the tree node's label.
labelnode
The tree node label.
onFocusunsupportedProp
This prop isn't supported. Use the onNodeFocus callback on the tree if you need to monitor a node's focus.
sxfunc
| object
The system prop that allows defining system overrides as well as additional CSS styles. See the `sx` page for more details.
TransitionComponentelementTypeCollapse
O componente usado para a transição. Siga este guia para saber mais sobre os requisitos para este componente.
TransitionPropsobject
Propriedades aplicadas ao elemento de transição. Por padrão, o elemento é baseado neste componente Transition.

O ref é encaminhado para o elemento raiz.

CSS

Nome da regraClasse globalDescrição
root.MuiTreeItem-rootEstilos aplicados ao elemento raiz.
group.MuiTreeItem-groupEstilos aplicados a the transition component.
content.MuiTreeItem-contentEstilos aplicados a the content element.
expanded.Mui-expandedPseudo-class applied to the content element when expanded.
selected.Mui-selectedPseudo-class applied to the content element when selected.
focused.Mui-focusedPseudo-class applied to the content element when focused.
disabled.Mui-disabledPseudo-class applied to the element when disabled.
iconContainer.MuiTreeItem-iconContainerEstilos aplicados a the tree node icon.
label.MuiTreeItem-labelEstilos aplicados a the label element.

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

Demonstrações