@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
18 lines (17 loc) • 882 B
TypeScript
import { ChangeDetectorRef, OnChanges } from "@angular/core";
import { IconService } from "@nova-ui/bits";
import { IHasChangeDetector } from "../../../../types";
import { IFormatterData } from "../types";
import * as i0 from "@angular/core";
export declare class IconFormatterComponent implements OnChanges, IHasChangeDetector {
changeDetector: ChangeDetectorRef;
iconService: IconService;
static lateLoadKey: string;
constructor(changeDetector: ChangeDetectorRef, iconService: IconService);
isValid: boolean;
iconFound: boolean;
data?: IFormatterData;
ngOnChanges(): void;
static ɵfac: i0.ɵɵFactoryDeclaration<IconFormatterComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<IconFormatterComponent, "nui-dashboards-icon-formatter", never, { "data": { "alias": "data"; "required": false; }; }, {}, never, never, false, never>;
}