@rxap/table-system
Version:
This package provides a set of Angular directives, components, and services to enhance data tables with features like row expansion, full-text search, and row selection with checkboxes. It includes modules for easy integration of these features into exist
13 lines (12 loc) • 831 B
TypeScript
import { TemplateRef } from '@angular/core';
import * as i0 from "@angular/core";
export interface ExpandCellContentDirectiveContext<Data extends Record<string, any>> {
$implicit: Data;
}
export declare class ExpandRowContentDirective<Data extends Record<string, any>> {
readonly template: TemplateRef<ExpandCellContentDirectiveContext<Data>>;
static ngTemplateContextGuard<Data extends Record<string, any>>(dir: ExpandRowContentDirective<Data>, ctx: any): ctx is ExpandCellContentDirectiveContext<Data>;
constructor(template: TemplateRef<ExpandCellContentDirectiveContext<Data>>);
static ɵfac: i0.ɵɵFactoryDeclaration<ExpandRowContentDirective<any>, never>;
static ɵdir: i0.ɵɵDirectiveDeclaration<ExpandRowContentDirective<any>, "[rxapExpandRowContent]", never, {}, {}, never, never, true, never>;
}