UNPKG

@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

25 lines (24 loc) 1.38 kB
import { ChangeDetectorRef, EventEmitter, OnInit } from "@angular/core"; import { Subject } from "rxjs"; import { EventBus, IEvent } from "@nova-ui/bits"; import { IHasChangeDetector } from "../../../../types"; import * as i0 from "@angular/core"; 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; static ɵfac: i0.ɵɵFactoryDeclaration<ListLeafItemComponent, never>; static ɵcmp: i0.ɵɵComponentDeclaration<ListLeafItemComponent, "nui-list-leaf-item", never, { "icon": { "alias": "icon"; "required": false; }; "status": { "alias": "status"; "required": false; }; "detailedUrl": { "alias": "detailedUrl"; "required": false; }; "label": { "alias": "label"; "required": false; }; "canNavigate": { "alias": "canNavigate"; "required": false; }; "url": { "alias": "url"; "required": false; }; }, { "navigated": "navigated"; }, never, never, false, never>; }