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

21 lines (20 loc) 834 B
import { AfterViewInit, ChangeDetectorRef, NgZone, OnDestroy } from "@angular/core"; import { LoggerService } from "@nova-ui/bits"; import { PizzagnaService } from "../../../pizzagna/services/pizzagna.service"; import { BaseLayout } from "../base-layout"; export declare class TilesComponent extends BaseLayout implements OnDestroy, AfterViewInit { private ngZone; static lateLoadKey: string; nodes: string[]; direction: string; elementClass: string; prioritizeGridRows: boolean; private gridItemsContainer; private tilesResizeObserver; constructor(changeDetector: ChangeDetectorRef, pizzagnaService: PizzagnaService, logger: LoggerService, ngZone: NgZone); ngAfterViewInit(): void; ngOnDestroy(): void; getNodes(): string[]; private handleGridFlowOnResize; private onResize; }