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

IgniteUI / igniteui-angular / 13331632524

14 Feb 2025 02:51PM CUT coverage: 22.015% (-69.6%) from 91.622%
13331632524

Pull #15372

github

web-flow
Merge d52d57714 into bcb78ae0a
Pull Request #15372: chore(*): test ci passing

1990 of 15592 branches covered (12.76%)

431 of 964 new or added lines in 18 files covered. (44.71%)

19956 existing lines in 307 files now uncovered.

6452 of 29307 relevant lines covered (22.02%)

249.17 hits per line

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

54.55
/projects/igniteui-angular/src/lib/list/list.common.ts
1
import { Directive, TemplateRef, EventEmitter, QueryList, Optional, ElementRef } from '@angular/core';
2

3
export interface IListChild {
4
    index: number;
5
}
6

7
/** @hidden */
8
@Directive({
9
    selector: '[igxListBase]',
10
    standalone: true
11
})
12
export class IgxListBaseDirective {
2✔
13
    public itemClicked: EventEmitter<any>;
14
    public allowLeftPanning: boolean;
15
    public allowRightPanning: boolean;
16
    public panEndTriggeringThreshold: number;
17
    public leftPan: EventEmitter<any>;
18
    public rightPan: EventEmitter<any>;
19
    public startPan: EventEmitter<any>;
20
    public endPan: EventEmitter<any>;
21
    public resetPan: EventEmitter<any>;
22
    public panStateChange: EventEmitter<any>;
23
    public children: QueryList<any>;
24
    public listItemLeftPanningTemplate: IgxListItemLeftPanningTemplateDirective;
25
    public listItemRightPanningTemplate: IgxListItemRightPanningTemplateDirective;
26

UNCOV
27
    constructor(@Optional() protected el: ElementRef) {}
×
28
}
29

30
export enum IgxListPanState { NONE, LEFT, RIGHT }
2✔
31

32
@Directive({
33
    selector: '[igxEmptyList]',
34
    standalone: true
35
})
36
export class IgxEmptyListTemplateDirective {
2✔
UNCOV
37
    constructor(public template: TemplateRef<any>) { }
×
38
}
39

40
@Directive({
41
    selector: '[igxDataLoading]',
42
    standalone: true
43
})
44
export class IgxDataLoadingTemplateDirective {
2✔
UNCOV
45
    constructor(public template: TemplateRef<any>) { }
×
46
}
47

48
@Directive({
49
    selector: '[igxListItemLeftPanning]',
50
    standalone: true
51
})
52
export class IgxListItemLeftPanningTemplateDirective {
2✔
UNCOV
53
    constructor(public template: TemplateRef<any>) { }
×
54
}
55

56
@Directive({
57
    selector: '[igxListItemRightPanning]',
58
    standalone: true
59
})
60
export class IgxListItemRightPanningTemplateDirective {
2✔
UNCOV
61
    constructor(public template: TemplateRef<any>) { }
×
62
}
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

© 2025 Coveralls, Inc