@nova-ui/bits
Version:
SolarWinds Nova Framework
32 lines (31 loc) • 1.8 kB
TypeScript
import { EventEmitter, OnChanges, TemplateRef } from "@angular/core";
import * as i0 from "@angular/core";
/**
* <example-url>./../examples/index.html#/progress</example-url>
*/
export declare class ProgressComponent implements OnChanges {
show: boolean;
showProgress: boolean;
message: string;
showNumber: boolean;
percent: number;
allowCancel: boolean;
cancelText: string;
helpText?: string;
stacked: boolean;
compactMode: boolean;
ariaLabel: string;
/**
* Help template content displayed under the progress bar.
* This can be used instead of the helpText string input for custom
* help text styling.
*/
helpTemplateRef: TemplateRef<any>;
cancel: EventEmitter<any>;
isIndeterminate: boolean;
ariaValueNow: string | undefined;
ngOnChanges(): void;
cancelProgress(): void;
static ɵfac: i0.ɵɵFactoryDeclaration<ProgressComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<ProgressComponent, "nui-progress", never, { "show": { "alias": "show"; "required": false; }; "showProgress": { "alias": "showProgress"; "required": false; }; "message": { "alias": "message"; "required": false; }; "showNumber": { "alias": "showNumber"; "required": false; }; "percent": { "alias": "percent"; "required": false; }; "allowCancel": { "alias": "allowCancel"; "required": false; }; "cancelText": { "alias": "cancelText"; "required": false; }; "helpText": { "alias": "helpText"; "required": false; }; "stacked": { "alias": "stacked"; "required": false; }; "compactMode": { "alias": "compactMode"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; "helpTemplateRef": { "alias": "helpTemplateRef"; "required": false; }; }, { "cancel": "cancel"; }, never, never, false, never>;
}