@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
24 lines (23 loc) • 1.44 kB
TypeScript
import { ChangeDetectorRef, EventEmitter, OnChanges, OnDestroy, OnInit, SimpleChanges } from "@angular/core";
import { FormBuilder, FormGroup } from "@angular/forms";
import { IHasChangeDetector } from "../../../../../../../types";
import * as i0 from "@angular/core";
export declare class DescriptionConfigurationComponent implements OnInit, OnDestroy, OnChanges, IHasChangeDetector {
private formBuilder;
changeDetector: ChangeDetectorRef;
static lateLoadKey: string;
label: string;
isActive: string;
width: number;
isWidthMessageDisplayed: boolean;
formReady: EventEmitter<FormGroup>;
formDestroy: EventEmitter<FormGroup>;
form: FormGroup;
constructor(formBuilder: FormBuilder, changeDetector: ChangeDetectorRef);
ngOnInit(): void;
ngOnChanges(changes: SimpleChanges): void;
stub(): void;
ngOnDestroy(): void;
static ɵfac: i0.ɵɵFactoryDeclaration<DescriptionConfigurationComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<DescriptionConfigurationComponent, "nui-table-column-description-configuration", never, { "label": { "alias": "label"; "required": false; }; "isActive": { "alias": "isActive"; "required": false; }; "width": { "alias": "width"; "required": false; }; "isWidthMessageDisplayed": { "alias": "isWidthMessageDisplayed"; "required": false; }; }, { "formReady": "formReady"; "formDestroy": "formDestroy"; }, never, never, false, never>;
}