UNPKG

@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

25 lines (24 loc) 1.24 kB
import type { QueryList } from '@angular/core'; import { AfterContentInit } from '@angular/core'; import { TableColumnOptionComponent } from './table-column-option/table-column-option.component'; import * as i0 from "@angular/core"; export declare class TableColumnMenuComponent implements AfterContentInit { get visibleColumns(): TableColumnOptionComponent[] | undefined; columns?: QueryList<TableColumnOptionComponent>; displayColumns: string[]; private _inline; get inline(): boolean | ''; /** * true - the menu is displayed inline and not absolute * @param value */ set inline(value: boolean | ''); set matCard(value: boolean | ''); private _matCardMode; ngAfterContentInit(): void; updateDisplayColumns(): void; activate(columnName: string): void; deactivate(columnName: string): void; static ɵfac: i0.ɵɵFactoryDeclaration<TableColumnMenuComponent, never>; static ɵcmp: i0.ɵɵComponentDeclaration<TableColumnMenuComponent, "rxap-table-column-menu", ["rxapTableColumns"], { "inline": { "alias": "inline"; "required": false; }; "matCard": { "alias": "matCard"; "required": false; }; }, {}, ["columns"], ["[mat-menu-item],mat-divider"], true, never>; }