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

17 lines (16 loc) 692 B
import { ChangeDetectorRef, OnDestroy, OnInit } from "@angular/core"; import { LoggerService } from "@nova-ui/bits"; import { PizzagnaService } from "../../../pizzagna/services/pizzagna.service"; import { BaseLayout } from "../base-layout"; export declare class StackComponent extends BaseLayout implements OnInit, OnDestroy { static lateLoadKey: string; nodes: string[]; direction: string; elementClass: string; classNames: string; readonly defaultClassNames = "h-100 w-100 d-flex"; constructor(changeDetector: ChangeDetectorRef, pizzagnaService: PizzagnaService, logger: LoggerService); ngOnInit(): void; ngOnDestroy(): void; getNodes(): string[]; }