@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
34 lines (33 loc) • 1.51 kB
TypeScript
import { ChangeDetectorRef, OnDestroy, OnInit } from "@angular/core";
import { EventBus, IEvent, LoggerService } from "@nova-ui/bits";
import { PizzagnaService } from "../../../pizzagna/services/pizzagna.service";
import { BaseLayout } from "../../layouts/base-layout";
import * as i0 from "@angular/core";
export declare class WidgetBodyComponent extends BaseLayout implements OnInit, OnDestroy {
private eventBus;
static lateLoadKey: string;
/**
* The component's id
*/
componentId: string;
/**
* Keeps track of whether the dashboard is in edit mode
*/
editMode: boolean;
/**
* Pizzagna key for the widget body content
*/
content: string;
/**
* Optional class for styling
*/
elementClass: string;
classNames: string;
readonly defaultClasses = "d-flex h-100 w-100";
constructor(eventBus: EventBus<IEvent>, changeDetector: ChangeDetectorRef, pizzagnaService: PizzagnaService, logger: LoggerService);
ngOnInit(): void;
ngOnDestroy(): void;
getNodes: () => string[];
static ɵfac: i0.ɵɵFactoryDeclaration<WidgetBodyComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<WidgetBodyComponent, "nui-widget-body", never, { "componentId": { "alias": "componentId"; "required": false; }; "editMode": { "alias": "editMode"; "required": false; }; "content": { "alias": "content"; "required": false; }; "elementClass": { "alias": "elementClass"; "required": false; }; }, {}, never, never, false, never>;
}