v1.2.0

Speed Dial

A floating action button can display related actions in a speed dial. Clicking the FAB reveals a set of action buttons.

Basic (Up)

<me-speed-dial aria-label="Speed dial"> <me-speed-dial-action tooltip-title="Copy"> <svg ...></svg> </me-speed-dial-action> <me-speed-dial-action tooltip-title="Print"> <svg ...></svg> </me-speed-dial-action> </me-speed-dial>

Direction

Up
Down
Left
Right
<me-speed-dial direction="up">...</me-speed-dial> <me-speed-dial direction="down">...</me-speed-dial> <me-speed-dial direction="left">...</me-speed-dial> <me-speed-dial direction="right">...</me-speed-dial>

API — SpeedDial

AttributeTypeDefaultDescription
openbooleanfalseWhether the speed dial is open.
directionup | down | left | rightupDirection actions expand.
aria-labelstringAccessible label for the FAB button.

API — SpeedDialAction

AttributeTypeDescription
tooltip-titlestringTooltip label shown on hover.
disabledbooleanDisables the action button.

Events

EventDescription
me-open-changeFired when the open state changes. detail.open is the new state.
me-clickFired on SpeedDialAction when the action is clicked.