kwikui
Version:
KwikID's UI Component Library in Angular
21 lines (20 loc) • 960 B
TypeScript
import { OnChanges, OnInit, SimpleChanges } from "@angular/core";
import { TKwikUIProgressSegmentedSize } from "./progress-segmented.definitions";
import * as i0 from "@angular/core";
export declare class KwikUIProgressSegmentedComponent implements OnInit, OnChanges {
colors: string | string[];
id: string;
max: number;
size: TKwikUIProgressSegmentedSize;
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;
isColorsEmpty(): boolean;
static ɵfac: i0.ɵɵFactoryDeclaration<KwikUIProgressSegmentedComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<KwikUIProgressSegmentedComponent, "kwikui-progress-segmented", never, { "colors": "colors"; "id": "id"; "max": "max"; "size": "size"; "value": "value"; }, {}, never, never>;
}