@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
19 lines (18 loc) • 702 B
TypeScript
import { ChangeDetectorRef, OnInit } from "@angular/core";
import { IWidgetErrorDisplayProperties } from "../../../components/widget/types";
import { IHasChangeDetector } from "../../../types";
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;
}