@angular-mdl/fab-menu
Version:
Angular Material Design Lite - Fab menu Component
59 lines (47 loc) • 1.57 kB
Markdown
npm i --save @angular-mdl/popover @angular-mdl/fab-menu
import { MdlSelectModule } from '@angular-mdl/fab-menu';
If you need to support IE11 please add https://www.npmjs.com/package/custom-event-polyfill
to your polyfills.
```angular2html
<mdl-fab-menu
<mdl-fab-menu-item
[]="mainFabMenu"
icon="note_add"
label="make a note"
(menu-clicked)="log('we need to do something here')">
</mdl-fab-menu-item>
<mdl-fab-menu-item
[]="mainFabMenu"
icon="refresh"
label="refresh"
(menu-clicked)="/*do something here*/">
</mdl-fab-menu-item>
<mdl-fab-menu-item
[]="mainFabMenu"
icon="refresh"
label="refresh"
(menu-clicked)="/*do something here*/">
</mdl-fab-menu-item>
</mdl-fab-menu>
```
```angular2html
<mdl-fab-menu
...
</mdl-fab-menu>
```
| Name | Type | Description |
| --- | --- | --- |
| `[alwaysShowTooltips]` | boolean | decide if either or not the tooltips should always be displayed (let it unbinds to always display them on touch screens and on mouseover on "mouse-screen")
#### mdl-fab-menu-item
| Name | Type | Description |
| --- | --- | --- |
| `[fabMenu]` | MdlFabMenu | the enclosing menu
| `[icon]` | string | mini-fab icon
| `[label]` | string | tooltip content
| `(menu-clicked)` | event<void> | the item has been clicked