systelab-components
Version:
systelab-components is a set of components that use wide accepted and adopted standard technologies like Angular and Bootstrap, as well as other popular libraries. Please read the ATTRIBUTION.md file for a complete list of dependencies.
15 lines (14 loc) • 787 B
TypeScript
import { ElementRef, EventEmitter } from '@angular/core';
import * as i0 from "@angular/core";
export declare class ButtonComponent {
private element;
action: EventEmitter<any>;
disabled: boolean;
type: 'regular' | 'primary' | 'warning' | 'danger' | 'success' | 'link';
size: 'small' | 'medium' | 'large';
constructor(element: ElementRef);
getId(): any;
doClick(event: any): void;
static ɵfac: i0.ɵɵFactoryDeclaration<ButtonComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<ButtonComponent, "systelab-button", never, { "disabled": { "alias": "disabled"; "required": false; }; "type": { "alias": "type"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, { "action": "action"; }, never, ["*"], false, never>;
}