UNPKG

@universis/common

Version:

Universis - common directives and services

30 lines (29 loc) 889 B
import { EventEmitter } from '@angular/core'; /** * * Component for Card-Box element with Inputs: * Usage <universis-msgbox [title]="HelloWorld" ...></universis-msgbox> * @Input() title: Title of Box * @Input() icon: Icon displayed on the left of the element * @Input() info: The Status displayed on user * @Input() message: Explanation of the status * @Input() extraMessage: Some extra guidence * @Input() actionButton: Text displayed as Text in button * @Input() actionText: Text displayed as an action * @Input() disableBut: Disable button * @export */ export declare class MsgboxComponent { title: string; icon: string; info: string; message: string; extraMessage: string; actionButton: string; actionText: string; disableBut: boolean; buttonClass: string; action: EventEmitter<any>; btnClicked: boolean; clicked(): void; }