@nova-ui/dashboards
Version:
Nova Dashboards is a framework designed to provide feature developers with a common solution for presenting data coming from various sources within a single view, as well as a set of predefined widget visualizations that are 100% configuration-driven and
23 lines (22 loc) • 711 B
TypeScript
import { ChangeDetectorRef, EventEmitter } from "@angular/core";
import { IDashwizButtonsComponent } from "../types";
export declare class DashwizButtonsComponent implements IDashwizButtonsComponent {
changeDetector: ChangeDetectorRef;
static lateLoadKey: string;
constructor(changeDetector: ChangeDetectorRef);
busy: boolean;
canFinish: boolean;
canProceed: boolean;
isFirstStepActive: boolean;
isLastStepActive: boolean;
nextText: string;
finishText: string;
cancel: EventEmitter<void>;
next: EventEmitter<void>;
back: EventEmitter<void>;
finish: EventEmitter<void>;
onCancel(): void;
onNext(): void;
onBack(): void;
onFinish(): void;
}