@orchestrator/layout
Version:
> A set of simple layout components for Orchestrator library.
16 lines (15 loc) • 775 B
TypeScript
import { ComponentRef, EventEmitter } from '@angular/core';
import { OrchestratorConfigItem } from '@orchestrator/core';
import * as i0 from "@angular/core";
export declare class LayoutFlatComponent {
items: ReadonlyArray<OrchestratorConfigItem>;
/**
* Emitted after all, and if, all the `items` have been rendered
*/
afterItemsRendered: EventEmitter<ComponentRef<any>[]>;
readonly classLayoutFlat = true;
private _itemsRendered;
onComponentCreated(component: ComponentRef<any>): void;
static ɵfac: i0.ɵɵFactoryDeclaration<LayoutFlatComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<LayoutFlatComponent, "orc-layout-flat", never, { "items": "items"; }, { "afterItemsRendered": "afterItemsRendered"; }, never, never>;
}