@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
15 lines (14 loc) • 755 B
TypeScript
import { OnDestroy, OnInit } from '@angular/core';
import { NgModel } from '@angular/forms';
import { TableFullTextSearchService } from './table-full-text-search.service';
import * as i0 from "@angular/core";
export declare class TableFilterInputDirective implements OnInit, OnDestroy {
private readonly ngModel;
private readonly stringFilterService;
private _subscription?;
constructor(ngModel: NgModel, stringFilterService: TableFullTextSearchService);
ngOnDestroy(): void;
ngOnInit(): void;
static ɵfac: i0.ɵɵFactoryDeclaration<TableFilterInputDirective, never>;
static ɵdir: i0.ɵɵDirectiveDeclaration<TableFilterInputDirective, "input[ngModel][rxapTableFilterInput]", never, {}, {}, never, never, true, never>;
}