1 | import { ElementRef, KeyValueDiffers, EventEmitter, ChangeDetectorRef, DoCheck } from '@angular/core';
|
2 | import { TreeStatus } from './body-cell.component';
|
3 | import { ScrollbarHelper } from '../../services/scrollbar-helper.service';
|
4 | import * as i0 from "@angular/core";
|
5 | export declare class DataTableBodyRowComponent implements DoCheck {
|
6 | private differs;
|
7 | private scrollbarHelper;
|
8 | private cd;
|
9 | set columns(val: any[]);
|
10 | get columns(): any[];
|
11 | set innerWidth(val: number);
|
12 | get innerWidth(): number;
|
13 | expanded: boolean;
|
14 | rowClass: any;
|
15 | row: any;
|
16 | group: any;
|
17 | isSelected: boolean;
|
18 | rowIndex: number;
|
19 | displayCheck: any;
|
20 | treeStatus: TreeStatus;
|
21 | set offsetX(val: number);
|
22 | get offsetX(): number;
|
23 | get cssClass(): string;
|
24 | rowHeight: number;
|
25 | get columnsTotalWidths(): string;
|
26 | activate: EventEmitter<any>;
|
27 | treeAction: EventEmitter<any>;
|
28 | _element: any;
|
29 | _columnGroupWidths: any;
|
30 | _columnsByPin: any;
|
31 | _offsetX: number;
|
32 | _columns: any[];
|
33 | _innerWidth: number;
|
34 | _groupStyles: {
|
35 | [prop: string]: {};
|
36 | };
|
37 | private _rowDiffer;
|
38 | constructor(differs: KeyValueDiffers, scrollbarHelper: ScrollbarHelper, cd: ChangeDetectorRef, element: ElementRef);
|
39 | ngDoCheck(): void;
|
40 | trackByGroups(index: number, colGroup: any): any;
|
41 | columnTrackingFn(index: number, column: any): any;
|
42 | buildStylesByGroup(): void;
|
43 | calcStylesByGroup(group: string): {
|
44 | width: string;
|
45 | };
|
46 | onActivate(event: any, index: number): void;
|
47 | onKeyDown(event: KeyboardEvent): void;
|
48 | onMouseenter(event: any): void;
|
49 | recalculateColumns(val?: any[]): void;
|
50 | onTreeAction(): void;
|
51 | static ɵfac: i0.ɵɵFactoryDeclaration<DataTableBodyRowComponent, [null, { skipSelf: true; }, null, null]>;
|
52 | static ɵcmp: i0.ɵɵComponentDeclaration<DataTableBodyRowComponent, "datatable-body-row", never, { "columns": "columns"; "innerWidth": "innerWidth"; "expanded": "expanded"; "rowClass": "rowClass"; "row": "row"; "group": "group"; "isSelected": "isSelected"; "rowIndex": "rowIndex"; "displayCheck": "displayCheck"; "treeStatus": "treeStatus"; "offsetX": "offsetX"; "rowHeight": "rowHeight"; }, { "activate": "activate"; "treeAction": "treeAction"; }, never, never>;
|
53 | }
|