@rxap/material-table-system
Version:
This package provides a set of Angular directives, components, and services to enhance and customize Angular Material tables. It includes features such as row selection, column filtering, expandable rows, table actions, and more. The goal is to simplify c
15 lines (14 loc) • 706 B
TypeScript
import type { WindowRef } from '@rxap/window-system';
import type { Observable } from 'rxjs';
import { SelectRowService } from '../select-row/select-row.service';
import * as i0 from "@angular/core";
export declare class TableSelectControlsComponent {
private readonly selectRows;
private readonly windowRef;
hasNotSelected$: Observable<boolean>;
constructor(selectRows: SelectRowService<any>, windowRef: WindowRef);
cancel(): void;
select(): void;
static ɵfac: i0.ɵɵFactoryDeclaration<TableSelectControlsComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<TableSelectControlsComponent, "rxap-table-select-controls", never, {}, {}, never, never, true, never>;
}