• 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

34.78
/projects/igniteui-angular/src/lib/grids/columns/templates.directive.ts
1
import { Directive, TemplateRef } from '@angular/core';
2
import { IgxCellTemplateContext, IgxColumnTemplateContext, IgxSummaryTemplateContext } from '../common/grid.interface';
3

4
@Directive({
5
    selector: '[igxFilterCellTemplate]',
6
    standalone: true
7
})
8
export class IgxFilterCellTemplateDirective {
2✔
UNCOV
9
    constructor(public template: TemplateRef<IgxColumnTemplateContext>) { }
×
10

11
    public static ngTemplateContextGuard(_directive: IgxFilterCellTemplateDirective,
12
        context: unknown): context is IgxColumnTemplateContext {
13
        return true;
×
14
    }
15
}
16

17
@Directive({
18
    selector: '[igxCell]',
19
    standalone: true
20
})
21
export class IgxCellTemplateDirective {
2✔
UNCOV
22
    constructor(public template: TemplateRef<IgxCellTemplateContext>) { }
×
23

24
    public static ngTemplateContextGuard(_directive: IgxCellTemplateDirective,
25
        context: unknown): context is IgxCellTemplateContext {
26
        return true;
×
27
    }
28
}
29

30
@Directive({
31
    selector: '[igxCellValidationError]',
32
    standalone: true
33
})
34
export class IgxCellValidationErrorDirective {
2✔
UNCOV
35
    constructor(public template: TemplateRef<IgxCellTemplateContext>) { }
×
36

37
    public static ngTemplateContextGuard(_directive: IgxCellValidationErrorDirective,
38
        context: unknown): context is IgxCellTemplateContext {
39
        return true;
×
40
    }
41
}
42

43
@Directive({
44
    selector: '[igxHeader]',
45
    standalone: true
46
})
47
export class IgxCellHeaderTemplateDirective {
2✔
UNCOV
48
    constructor(public template: TemplateRef<IgxColumnTemplateContext>) { }
×
49

50
    public static ngTemplateContextGuard(_directive: IgxCellHeaderTemplateDirective,
51
        context: unknown): context is IgxColumnTemplateContext {
52
        return true;
×
53
    }
54
}
55

56
/**
57
 * @hidden
58
 */
59
@Directive({
60
    selector: '[igxFooter]',
61
    standalone: true
62
})
63
export class IgxCellFooterTemplateDirective {
2✔
UNCOV
64
    constructor(public template: TemplateRef<any>) { }
×
65
}
66

67
@Directive({
68
    selector: '[igxCellEditor]',
69
    standalone: true
70
})
71
export class IgxCellEditorTemplateDirective {
2✔
UNCOV
72
    constructor(public template: TemplateRef<IgxCellTemplateContext>) { }
×
73

74
    public static ngTemplateContextGuard(_directive: IgxCellEditorTemplateDirective,
75
        context: unknown): context is IgxCellTemplateContext {
76
        return true;
×
77
    }
78
}
79

80
@Directive({
81
    selector: '[igxCollapsibleIndicator]',
82
    standalone: true
83
})
84
export class IgxCollapsibleIndicatorTemplateDirective {
2✔
UNCOV
85
    constructor(public template: TemplateRef<IgxColumnTemplateContext>) { }
×
86

87
    public static ngTemplateContextGuard(_directive: IgxCollapsibleIndicatorTemplateDirective,
88
        context: unknown): context is IgxColumnTemplateContext {
89
        return true;
×
90
    }
91
}
92

93
@Directive({
94
    selector: '[igxSummary]',
95
    standalone: true
96
})
97
export class IgxSummaryTemplateDirective {
2✔
UNCOV
98
    constructor(public template: TemplateRef<IgxSummaryTemplateContext>) { }
×
99

100
    public static ngTemplateContextGuard(_directive: IgxSummaryTemplateDirective,
101
        context: unknown): context is IgxSummaryTemplateContext {
102
        return true;
×
103
    }
104
}
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