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

IgniteUI / igniteui-angular / 26023601418

18 May 2026 08:57AM UTC coverage: 4.854% (-85.3%) from 90.174%
26023601418

Pull #17281

github

web-flow
Merge e7ce7a18e into 5a85df190
Pull Request #17281: feat: Added virtual scroll component and sample implementation

400 of 17347 branches covered (2.31%)

Branch coverage included in aggregate %.

63 of 222 new or added lines in 4 files covered. (28.38%)

27932 existing lines in 341 files now uncovered.

2022 of 32547 relevant lines covered (6.21%)

0.72 hits per line

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

16.67
/projects/igniteui-angular/bottom-nav/src/bottom-nav/bottom-nav-header.component.ts
1
import { Component, HostBinding } from '@angular/core';
2
import { IgxTabHeaderBase, IgxTabHeaderDirective } from 'igniteui-angular/tabs';
3

4
@Component({
5
    selector: 'igx-bottom-nav-header',
6
    templateUrl: 'bottom-nav-header.component.html',
7
    providers: [{ provide: IgxTabHeaderBase, useExisting: IgxBottomNavHeaderComponent }],
8
    standalone: true
9
})
10
export class IgxBottomNavHeaderComponent extends IgxTabHeaderDirective {
3✔
11

12
    /** @hidden */
13
    @HostBinding('class.igx-bottom-nav__menu-item--selected')
14
    public get cssClassSelected(): boolean {
UNCOV
15
        return this.tab.selected;
×
16
    }
17

18
    /** @hidden */
19
    @HostBinding('class.igx-bottom-nav__menu-item--disabled')
20
    public get cssClassDisabled(): boolean {
UNCOV
21
        return this.tab.disabled;
×
22
    }
23

24
    /** @hidden */
25
    @HostBinding('class.igx-bottom-nav__menu-item')
26
    public get cssClass(): boolean {
UNCOV
27
        return (!this.tab.disabled && !this.tab.selected);
×
28
    }
29
}
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