@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
19 lines (18 loc) • 953 B
TypeScript
import { OnInit } from '@angular/core';
import { SelectRowService } from '../select-row.service';
import type { Observable } from 'rxjs';
import { MatCheckboxChange } from '@angular/material/checkbox';
import { CdkTable } from '@angular/cdk/table';
import * as i0 from "@angular/core";
export declare class CheckboxHeaderCellComponent<Data extends Record<string, any>> implements OnInit {
private readonly cdkTable;
private readonly selectRow;
indeterminate$: Observable<boolean>;
checked$: Observable<boolean>;
isMultipleSelection: boolean;
constructor(cdkTable: CdkTable<Data>, selectRow: SelectRowService<Data>);
ngOnInit(): void;
onChange($event: MatCheckboxChange): void;
static ɵfac: i0.ɵɵFactoryDeclaration<CheckboxHeaderCellComponent<any>, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<CheckboxHeaderCellComponent<any>, "th[rxap-checkbox-header-cell]", never, {}, {}, never, never, true, never>;
}