Pular para o conteúdo

SpeedDial API

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

Importação

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

Nome do componente

The name MuiSpeedDial 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
ariaLabel*string
The aria-label of the button element. Also used to provide the id for the SpeedDial element and its children.
childrennode
SpeedDialActions to display when the SpeedDial is open.
classesobject
Sobrescreve ou extende os estilos aplicados para o componente. Veja a API CSS abaixo para maiores detalhes.
direction'down'
| 'left'
| 'right'
| 'up'
'up'
The direction the actions open relative to the floating action button.
FabPropsobject{}
Props applied to the Fab element.
hiddenboolfalse
If true, the SpeedDial is hidden.
iconnode
The icon to display in the SpeedDial Fab. The SpeedDialIcon component provides a default Icon with animation.
onClosefunc
Callback fired when the component requests to be closed.

Signature:
function(event: object, reason: string) => void
event: The event source of the callback.
reason: Can be: "toggle", "blur", "mouseLeave", "escapeKeyDown".
onOpenfunc
Callback fired when the component requests to be open.

Signature:
function(event: object, reason: string) => void
event: The event source of the callback.
reason: Can be: "toggle", "focus", "mouseEnter".
openboolfalse
Control the popup` open state.
openIconnode
The icon to display in the SpeedDial Fab when the SpeedDial is open.
sxfunc
| object
The system prop that allows defining system overrides as well as additional CSS styles. See the `sx` page for more details.
TransitionComponentelementTypeZoom
O componente usado para a transição. Siga este guia para saber mais sobre os requisitos para este componente.
transitionDurationnumber
| { appear?: number, enter?: number, exit?: number }
{ enter: duration.enteringScreen, exit: duration.leavingScreen, }
The duration for the transition, in milliseconds. You may specify a single timeout for all transitions, or individually with an object.
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.MuiSpeedDial-rootEstilos aplicados ao elemento raiz.
fab.MuiSpeedDial-fabEstilos aplicados a the Fab component.
directionUp.MuiSpeedDial-directionUpStyles applied to the root element if direction="up"
directionDown.MuiSpeedDial-directionDownStyles applied to the root element if direction="down"
directionLeft.MuiSpeedDial-directionLeftStyles applied to the root element if direction="left"
directionRight.MuiSpeedDial-directionRightStyles applied to the root element if direction="right"
actions.MuiSpeedDial-actionsEstilos aplicados a the actions (`children` wrapper) element.
actionsClosed.MuiSpeedDial-actionsClosedEstilos aplicados para the actions (`children` wrapper) element se open={false}.

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

Demonstrações