@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
29 lines (28 loc) • 1.68 kB
TypeScript
import { ChangeDetectorRef, EventEmitter, OnChanges, OnInit, SimpleChanges } from "@angular/core";
import { FormBuilder, FormGroup } from "@angular/forms";
import { Observable } from "rxjs";
import { IHasChangeDetector, IHasForm, IPaletteColor } from "../../../../../types";
import * as i0 from "@angular/core";
export declare class KpiDescriptionConfigurationComponent implements OnInit, OnChanges, IHasChangeDetector, IHasForm {
changeDetector: ChangeDetectorRef;
private formBuilder;
static lateLoadKey: string;
defaultColor: {
label: string;
color: string;
};
componentId: string;
configurableUnits: boolean;
label: string;
backgroundColor: string;
units: string;
backgroundColors: IPaletteColor[];
formReady: EventEmitter<FormGroup<any>>;
form: FormGroup;
subtitle$: Observable<string>;
constructor(changeDetector: ChangeDetectorRef, formBuilder: FormBuilder);
ngOnInit(): void;
ngOnChanges(changes: SimpleChanges): void;
static ɵfac: i0.ɵɵFactoryDeclaration<KpiDescriptionConfigurationComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<KpiDescriptionConfigurationComponent, "nui-kpi-description-configuration", never, { "componentId": { "alias": "componentId"; "required": false; }; "configurableUnits": { "alias": "configurableUnits"; "required": false; }; "label": { "alias": "label"; "required": false; }; "backgroundColor": { "alias": "backgroundColor"; "required": false; }; "units": { "alias": "units"; "required": false; }; "backgroundColors": { "alias": "backgroundColors"; "required": false; }; }, { "formReady": "formReady"; }, never, never, false, never>;
}