UNPKG

primeng

Version:

PrimeNG is an open source UI library for Angular featuring a rich set of 80+ components, a theme designer, various theme alternatives such as Material, Bootstrap, Tailwind, premium templates and professional support. In addition, it integrates with PrimeB

46 lines (45 loc) 1.12 kB
import { BaseStyle } from 'primeng/base'; import * as i0 from "@angular/core"; export declare class ProgressBarStyle extends BaseStyle { name: string; theme: ({ dt }: { dt: any; }) => string; classes: { root: ({ instance }: { instance: any; }) => (string | { 'p-progressbar-determinate': any; 'p-progressbar-indeterminate': any; })[]; value: string; label: string; }; static ɵfac: i0.ɵɵFactoryDeclaration<ProgressBarStyle, never>; static ɵprov: i0.ɵɵInjectableDeclaration<ProgressBarStyle>; } /** * * ProgressBar is a process status indicator. * * [Live Demo](https://www.primeng.org/progressbar) * * @module progressbarstyle * */ export declare enum ProgressBarClasses { /** * Class name of the root element */ root = "p-progressbar", /** * Class name of the value element */ value = "p-progressbar-value", /** * Class name of the label element */ label = "p-progressbar-label" } export interface ProgressBarStyle extends BaseStyle { }