@doku-dev/doku-fragment
Version:
A new Angular UI library that moving away from Bootstrap and built from scratch.
32 lines (31 loc) • 1 kB
TypeScript
import { NgClass } from '@angular/common';
import * as i0 from "@angular/core";
export declare class DokuProgressBar {
/**
* Size of the progress bar.
* @default 'medium'
*/
size: 'medium' | 'small';
/**
* Color of the completed bar.
* @default 'primary'
*/
color: 'primary' | 'green' | 'yellow';
/**
* Value of the completed bar.
* @default 0
*/
value: number;
/**
* Whether to show label of the progress bar value.
* @default false
*/
showValueLabel: boolean;
/**
* Provide custom height of the progress bar.
*/
height?: number;
protected get classes(): NgClass['ngClass'];
static ɵfac: i0.ɵɵFactoryDeclaration<DokuProgressBar, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<DokuProgressBar, "doku-progress-bar", ["dokuProgressBar"], { "size": "size"; "color": "color"; "value": "value"; "showValueLabel": "showValueLabel"; "height": "height"; }, {}, never, never, true>;
}