nereo-material
Version:
This project contains [Material Design](https://material.io/design/) components built with Angular and Angular Material. Its goal is to provide components that are not yet implemented in [Angular Material](https://material.angular.io/).
17 lines (16 loc) • 543 B
TypeScript
import { OnInit, EventEmitter } from '@angular/core';
import { ActionElement } from '../model/action-element';
export declare class FabSpeedDialComponent implements OnInit {
mainIcon: string;
actions: ActionElement[];
selectedAction: EventEmitter<ActionElement>;
showActions: boolean;
displayedIcon: string;
fabSpeedDialState: string;
isCorrectActionsNumber: boolean;
constructor();
ngOnInit(): void;
checkActions(): void;
toggleSpeedDial(): void;
actionSelected(action: ActionElement): void;
}