1 | import { EventEmitter, OnChanges } from '@angular/core';
|
2 | import { Grid } from '../../../lib/grid';
|
3 | import { Row } from '../../../lib/data-set/row';
|
4 | import { Cell } from '../../../lib/data-set/cell';
|
5 | export declare class TheadFormRowComponent implements OnChanges {
|
6 | grid: Grid;
|
7 | row: Row;
|
8 | createConfirm: EventEmitter<any>;
|
9 | create: EventEmitter<any>;
|
10 | isMultiSelectVisible: boolean;
|
11 | showActionColumnLeft: boolean;
|
12 | showActionColumnRight: boolean;
|
13 | addInputClass: string;
|
14 | onCreate(event: any): void;
|
15 | ngOnChanges(): void;
|
16 | getVisibleCells(cells: Array<Cell>): Array<Cell>;
|
17 | }
|