@anglr/grid
Version:
Angular module displaying grid
28 lines • 1.38 kB
TypeScript
import { TemplateRef } from '@angular/core';
import { GridContext } from '../../interfaces';
import * as i0 from "@angular/core";
/**
* Directive used for obtaining template for grid content renderer container
*/
export declare class GridContainerTemplateDirective {
/**
* Obtained template by this directive
*/
template: TemplateRef<GridContext>;
/**
* Array of column ids to be rendered in this grid container, if not specified or null all available columns will be rendered
*/
columns: string[] | undefined | null;
/**
* Indication whether list of columns will be excluded, not included in this grid container
*/
exclude: boolean;
/**
* Allows typechecking for template
*/
static ngTemplateContextGuard(_dir: GridContainerTemplateDirective, _ctx: unknown): _ctx is GridContext<any>;
static ɵfac: i0.ɵɵFactoryDeclaration<GridContainerTemplateDirective, never>;
static ɵdir: i0.ɵɵDirectiveDeclaration<GridContainerTemplateDirective, "[gridContainerTemplate]", never, { "columns": { "alias": "gridContainerTemplate"; "required": false; }; "exclude": { "alias": "gridContainerTemplateExclude"; "required": false; }; }, {}, never, never, true, never>;
static ngAcceptInputType_columns: string | undefined | null | string[];
}
//# sourceMappingURL=gridContainerTemplate.directive.d.ts.map