@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
12 lines (11 loc) • 602 B
TypeScript
import { ExpandRowService } from './expand-row.service';
import * as i0 from "@angular/core";
export declare class ExpandRowDirective<Data extends Record<string, any>> {
private readonly expandCell;
get isExpanded(): boolean;
element: Data;
constructor(expandCell: ExpandRowService<Data>);
onClick(): void;
static ɵfac: i0.ɵɵFactoryDeclaration<ExpandRowDirective<any>, never>;
static ɵdir: i0.ɵɵDirectiveDeclaration<ExpandRowDirective<any>, "tr[rxapExpandRow]", never, { "element": { "alias": "rxapExpandRow"; "required": true; }; }, {}, never, never, true, never>;
}