kwikui
Version:
KwikID's UI Component Library in Angular
21 lines (20 loc) • 924 B
TypeScript
import { OnChanges, OnInit, SimpleChanges } from "@angular/core";
import { TKwikUIProgressCircleSize } from "./progress-circle.definitions";
import * as i0 from "@angular/core";
export declare class KwikUIProgressCircleComponent implements OnInit, OnChanges {
color: string;
id: string;
max: number;
size: TKwikUIProgressCircleSize;
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<KwikUIProgressCircleComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<KwikUIProgressCircleComponent, "kwikui-progress-circle", never, { "color": "color"; "id": "id"; "max": "max"; "size": "size"; "value": "value"; }, {}, never, never>;
}