UNPKG

@catull/igniteui-angular

Version:

Ignite UI for Angular is a dependency-free Angular toolkit for building modern web apps

22 lines (21 loc) 992 B
import { ElementRef, ChangeDetectorRef, QueryList } from '@angular/core'; import { IgxGridComponent } from './grid.component'; import { IgxRowDirective } from '../row.directive'; import { GridBaseAPIService } from '../api.service'; import { IgxGridSelectionService, IgxGridCRUDService } from '../selection/selection.service'; export declare class IgxGridRowComponent extends IgxRowDirective<IgxGridComponent> { gridAPI: GridBaseAPIService<IgxGridComponent>; crudService: IgxGridCRUDService; selectionService: IgxGridSelectionService; element: ElementRef; cdr: ChangeDetectorRef; constructor(gridAPI: GridBaseAPIService<IgxGridComponent>, crudService: IgxGridCRUDService, selectionService: IgxGridSelectionService, element: ElementRef, cdr: ChangeDetectorRef); private _cells; cells: QueryList<any>; readonly hasColumnLayouts: boolean; getContext(col: any, row: any): { $implicit: any; row: any; }; readonly expanded: boolean; }