dynamic-mat-table
Version:
dynamic-mat-table is an Angular component for presenting large and complex data with a lightning fast performance (at least 10x faster) and excellent level of control over the presentation.
17 lines (16 loc) • 616 B
TypeScript
import { AbstractFilter, FilterOperation } from './abstract-filter';
import { TableIntl } from '../../../../international/table-Intl';
export declare class TextFilter extends AbstractFilter<string> {
languagePack: TableIntl;
private static sql;
private static operationList;
constructor(languagePack: TableIntl);
private _selectedIndex;
get selectedIndex(): number;
set selectedIndex(value: number);
get selectedValue(): FilterOperation;
getOperations(): FilterOperation[];
toString(dynamicVariable: any): string;
toPrint(): string;
toSql(): string;
}