@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
24 lines (23 loc) • 1.17 kB
TypeScript
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";
import * as i0 from "@angular/core";
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;
static ɵfac: i0.ɵɵFactoryDeclaration<TilesComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<TilesComponent, "nui-tiles", never, { "nodes": { "alias": "nodes"; "required": false; }; "direction": { "alias": "direction"; "required": false; }; }, {}, never, never, false, never>;
}