• 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

50.0
/projects/igniteui-angular/grids/core/src/resizing/resizer.component.ts
1
import { ChangeDetectionStrategy, Component, Input, ViewChild, inject } from '@angular/core';
2
import { IgxColumnResizingService } from './resizing.service';
3
import { IgxColumnResizerDirective } from './resizer.directive';
4

5
@Component({
6
    changeDetection: ChangeDetectionStrategy.OnPush,
7
    selector: 'igx-grid-column-resizer',
8
    templateUrl: './resizer.component.html',
9
    imports: [IgxColumnResizerDirective]
10
})
11
export class IgxGridColumnResizerComponent {
3✔
UNCOV
12
    public colResizingService = inject(IgxColumnResizingService);
×
13

14
    @Input()
15
    public restrictResizerTop: number;
16

17
    @ViewChild(IgxColumnResizerDirective, { static: true })
18
    public resizer: IgxColumnResizerDirective;
19
}
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