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

IgniteUI / igniteui-angular / 23353730325

20 Mar 2026 05:03PM UTC coverage: 9.784% (-79.5%) from 89.264%
23353730325

Pull #17069

github

web-flow
Merge cfa7e86d1 into a4dc50177
Pull Request #17069: fix(IgxGrid): Do not apply width constraint to groups.

921 of 16963 branches covered (5.43%)

Branch coverage included in aggregate %.

1 of 3 new or added lines in 1 file covered. (33.33%)

25213 existing lines in 340 files now uncovered.

3842 of 31721 relevant lines covered (12.11%)

6.13 hits per line

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

33.33
/projects/igniteui-angular/directives/src/directives/tooltip/tooltip-close-button.component.ts
1
import { Component, Output, EventEmitter, HostListener, Input, TemplateRef } from '@angular/core';
2
import { IgxIconComponent } from 'igniteui-angular/icon';
3
import { CommonModule } from '@angular/common';
4

5
@Component({
6
  selector: 'igx-tooltip-close-button',
7
  template: `
8
        @if (customTemplate) {
9
          <ng-container *ngTemplateOutlet="customTemplate"></ng-container>
10
        } @else {
11
          <igx-icon aria-hidden="true" family="default" name="close"></igx-icon>
12
        }
13
        `,
14
  imports: [IgxIconComponent, CommonModule],
15
})
16
export class IgxTooltipCloseButtonComponent {
3✔
17
    @Input()
18
    public customTemplate: TemplateRef<any>;
19

20
    @Output()
UNCOV
21
    public clicked = new EventEmitter<void>();
×
22

23
    @HostListener('click')
24
    public handleClick() {
UNCOV
25
        this.clicked.emit();
×
26
    }
27
}
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