• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

IgniteUI / igniteui-angular / 20960087204

13 Jan 2026 02:19PM UTC coverage: 12.713% (-78.8%) from 91.5%
20960087204

Pull #16746

github

web-flow
Merge 9afce6e5d into a967f087e
Pull Request #16746: fix(csv): export summaries - master

1008 of 16803 branches covered (6.0%)

19 of 23 new or added lines in 2 files covered. (82.61%)

24693 existing lines in 336 files now uncovered.

3985 of 31345 relevant lines covered (12.71%)

2.49 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

75.0
/projects/igniteui-angular/grids/grid/src/grid-row.component.ts
1
import { Component, ChangeDetectionStrategy, forwardRef } from '@angular/core';
2
import { NgTemplateOutlet, NgStyle, NgClass } from '@angular/common';
3
import {
4
    IgxGridCellComponent,
5
    IgxGridCellStyleClassesPipe,
6
    IgxGridCellStylesPipe,
7
    IgxGridDataMapperPipe,
8
    IgxGridNotGroupedPipe,
9
    IgxGridTopLevelColumns,
10
    IgxGridTransactionStatePipe,
11
    IgxRowDirective,
12
    IgxRowDragDirective
13
} from 'igniteui-angular/grids/core';
14
import { IgxGridExpandableCellComponent } from './expandable-cell.component';
15
import { IgxGridForOfDirective } from 'igniteui-angular/directives';
16
import { IgxCheckboxComponent } from 'igniteui-angular/checkbox';
17

18
/* blazorIndirectRender */
19
/* blazorElement */
20
@Component({
21
    changeDetection: ChangeDetectionStrategy.OnPush,
22
    selector: 'igx-grid-row',
23
    templateUrl: './grid-row.component.html',
24
    providers: [{ provide: IgxRowDirective, useExisting: forwardRef(() => IgxGridRowComponent) }],
11✔
25
    imports: [NgTemplateOutlet, IgxRowDragDirective, IgxGridForOfDirective, NgStyle, IgxCheckboxComponent, IgxGridCellComponent, NgClass, IgxGridExpandableCellComponent, IgxGridNotGroupedPipe, IgxGridTopLevelColumns, IgxGridCellStylesPipe, IgxGridCellStyleClassesPipe, IgxGridDataMapperPipe, IgxGridTransactionStatePipe]
26
})
27
export class IgxGridRowComponent extends IgxRowDirective {
3✔
28

29
    public getContext(col, row) {
30
        return {
102✔
31
            $implicit: col,
32
            row
33
        };
34
    }
35

36
    public getContextMRL(pinnedCols, row) {
UNCOV
37
        return {
×
38
            $implicit: pinnedCols,
39
            row
40
        };
41
    }
42
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc