kwikui
Version:
KwikID's UI Component Library in Angular
22 lines (21 loc) • 959 B
TypeScript
import { OnChanges, OnInit, SimpleChanges } from "@angular/core";
import { TKwikUIProgressBarSize } from "./progress-bar.definitions";
import * as i0 from "@angular/core";
export declare class KwikUIProgressBarComponent implements OnInit, OnChanges {
color: string;
id: string;
isShowLabel: boolean;
max: number;
size: TKwikUIProgressBarSize;
value: number;
constructor();
ngOnInit(): void;
ngOnChanges(changes: SimpleChanges): void;
/**
* @description Handles setting up of error and focus on the input field is it invalid
*/
private validateInputProperty;
isColorEmpty(): boolean;
static ɵfac: i0.ɵɵFactoryDeclaration<KwikUIProgressBarComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<KwikUIProgressBarComponent, "kwikui-progress-bar", never, { "color": "color"; "id": "id"; "isShowLabel": "isShowLabel"; "max": "max"; "size": "size"; "value": "value"; }, {}, never, never>;
}