Fab
Usage
<cf-fab [properties]="myFab1" (cfTriggerEvent)="log($event)" (cfActionButtonEvent)="log($event)"></cf-fab>myFab1: FabModel = {
direction: "right",
showButtons: true,
triggerButton: {
label: "Trigger",
labelPosition: "above",
disabled: true
},
actionButtons: [
{ icon: {name: "home"}, display: this.shown },
{ icon: {name: "star"}, label: "Item", labelPosition: "below" },
{ icon: {name: "stars"}, label: "Item", labelPosition: "above", disabled: true }
]
};
myFabStyles1 = {
container: {
class: 'container-class'
},
fabDial: {
trigger: {
class: 'trigger-class'
icon: {
class: 'trigger-icon-class'
}
},
actions: {
class: 'action-class'
icon: {
class: 'action-icon-class'
}
}
}
};Fab input properties
Fab button model properties
Fab output properties
Last updated