UNPKG

design-angular-kit

Version:

Un toolkit Angular conforme alle linee guida di design per i servizi web della PA

32 lines (31 loc) 1.19 kB
import { ProgressBarColor } from '../../../interfaces/core'; import * as i0 from "@angular/core"; import * as i1 from "../../../utils/coercion"; export declare class ItProgressBarComponent { /** * The progress bar value [0, 100] */ value: number; /** * Show the progress label * @default false */ showLabel?: boolean; /** * Show the progress as indeterminate * @default false */ indeterminate?: boolean; /** * The progress bar color */ color: ProgressBarColor | undefined; /** * Return the background color */ get bgColor(): string; static ɵfac: i0.ɵɵFactoryDeclaration<ItProgressBarComponent, never>; static ɵcmp: i0.ɵɵComponentDeclaration<ItProgressBarComponent, "it-progress-bar", never, { "value": { "alias": "value"; "required": true; }; "showLabel": { "alias": "showLabel"; "required": false; }; "indeterminate": { "alias": "indeterminate"; "required": false; }; "color": { "alias": "color"; "required": false; }; }, {}, never, never, true, never>; static ngAcceptInputType_showLabel: i1.BooleanInput; static ngAcceptInputType_indeterminate: i1.BooleanInput; }