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

20 lines (19 loc) 1.09 kB
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"; import * as i0 from "@angular/core"; 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[]; static ɵfac: i0.ɵɵFactoryDeclaration<StackComponent, never>; static ɵcmp: i0.ɵɵComponentDeclaration<StackComponent, "nui-stack", never, { "nodes": { "alias": "nodes"; "required": false; }; "direction": { "alias": "direction"; "required": false; }; "elementClass": { "alias": "elementClass"; "required": false; }; }, {}, never, never, false, never>; }