@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
22 lines (21 loc) • 1.18 kB
TypeScript
import { ChangeDetectorRef, OnInit } from "@angular/core";
import { IWidgetErrorDisplayProperties } from "../../../components/widget/types";
import { IHasChangeDetector } from "../../../types";
import * as i0 from "@angular/core";
export declare class WidgetErrorComponent implements OnInit, IHasChangeDetector, IWidgetErrorDisplayProperties {
changeDetector: ChangeDetectorRef;
static lateLoadKey: string;
readonly defaultClasses = "d-flex flex-column justify-content-center w-100 p-3";
image: string;
title: string;
description: string;
/**
* Optional class for styling
*/
elementClass: string;
classNames: string;
constructor(changeDetector: ChangeDetectorRef);
ngOnInit(): void;
static ɵfac: i0.ɵɵFactoryDeclaration<WidgetErrorComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<WidgetErrorComponent, "nui-widget-error", never, { "image": { "alias": "image"; "required": false; }; "title": { "alias": "title"; "required": false; }; "description": { "alias": "description"; "required": false; }; "elementClass": { "alias": "elementClass"; "required": false; }; }, {}, never, never, false, never>;
}