@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) • 777 B
TypeScript
import { ChangeDetectorRef, EventEmitter, OnInit } from "@angular/core";
import { Subject } from "rxjs";
import { EventBus, IEvent } from "@nova-ui/bits";
import { IHasChangeDetector } from "../../../../types";
export declare class ListLeafItemComponent implements IHasChangeDetector, OnInit {
changeDetector: ChangeDetectorRef;
eventBus: EventBus<IEvent>;
static lateLoadKey: string;
icon: string;
status: string;
detailedUrl: string;
label: string;
canNavigate: boolean;
url: string;
navigated: EventEmitter<ListLeafItemComponent>;
searchTerm: string;
protected readonly destroy$: Subject<void>;
onButtonClick(): void;
constructor(changeDetector: ChangeDetectorRef, eventBus: EventBus<IEvent>);
ngOnInit(): void;
}