@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
25 lines (24 loc) • 1.51 kB
TypeScript
import { ChangeDetectorRef, EventEmitter, OnChanges, OnInit, SimpleChanges } from "@angular/core";
import { FormBuilder, FormGroup } from "@angular/forms";
import { LoggerService } from "@nova-ui/bits";
import { IHasChangeDetector, IHasForm } from "../../../../../types";
import * as i0 from "@angular/core";
export declare class TitleAndDescriptionConfigurationComponent implements IHasChangeDetector, IHasForm, OnInit, OnChanges {
changeDetector: ChangeDetectorRef;
private formBuilder;
private logger;
static lateLoadKey: string;
title: string;
url: string;
subtitle: string;
description: string;
collapsible: boolean;
formReady: EventEmitter<FormGroup<any>>;
form: FormGroup;
constructor(changeDetector: ChangeDetectorRef, formBuilder: FormBuilder, logger: LoggerService);
ngOnInit(): void;
ngOnChanges(changes: SimpleChanges): void;
getSecondaryText(): string;
static ɵfac: i0.ɵɵFactoryDeclaration<TitleAndDescriptionConfigurationComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<TitleAndDescriptionConfigurationComponent, "nui-title-and-description-configuration", never, { "title": { "alias": "title"; "required": false; }; "url": { "alias": "url"; "required": false; }; "subtitle": { "alias": "subtitle"; "required": false; }; "description": { "alias": "description"; "required": false; }; "collapsible": { "alias": "collapsible"; "required": false; }; }, { "formReady": "formReady"; }, never, never, false, never>;
}