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

IgniteUI / igniteui-angular / 16053471080

03 Jul 2025 02:41PM UTC coverage: 4.981% (-86.4%) from 91.409%
16053471080

Pull #16021

github

web-flow
Merge 7c49966eb into 7e40671a1
Pull Request #16021: fix(radio-group): dynamically added radio buttons do not initialize

178 of 15753 branches covered (1.13%)

13 of 14 new or added lines in 2 files covered. (92.86%)

25644 existing lines in 324 files now uncovered.

1478 of 29670 relevant lines covered (4.98%)

0.51 hits per line

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

16.67
/projects/igniteui-angular/src/lib/query-builder/query-builder-header.component.ts
1
import { Component, HostBinding, Input } from '@angular/core';
2
import { IQueryBuilderResourceStrings, QueryBuilderResourceStringsEN } from '../core/i18n/query-builder-resources';
3
import { getCurrentResourceStrings } from '../core/i18n/resources';
4

5
@Component({
6
    selector: 'igx-query-builder-header',
7
    templateUrl: 'query-builder-header.component.html'
8
})
9
export class IgxQueryBuilderHeaderComponent {
3✔
10

UNCOV
11
    private _resourceStrings = getCurrentResourceStrings(QueryBuilderResourceStringsEN);
×
12

13
    /**
14
     * @hidden @internal
15
     */
16
    @HostBinding('class') public get getClass() {
UNCOV
17
        return 'igx-query-builder__header';
×
18
    }
19

20
    /**
21
     * Sets the title of the `IgxQueryBuilderHeaderComponent`.
22
     *
23
     * @example
24
     * ```html
25
     * <igx-query-builder-header title="Sample Query Builder"></igx-query-builder-header>
26
     * ```
27
     */
28
    @Input()
29
    public title: string;
30

31
    /**
32
     * Show/hide the legend.
33
     *
34
     * @example
35
     * ```html
36
     * <igx-query-builder-header [showLegend]="false"></igx-query-builder-header>
37
     * ```
38
     * @deprecated in version 19.1.0.
39
     */
40
    @Input()
UNCOV
41
    public showLegend = true;
×
42

43
    /**
44
     * Sets the resource strings.
45
     * By default it uses EN resources.
46
     *
47
     * @deprecated in version 19.1.0.
48
     */
49
    @Input()
50
    public set resourceStrings(value: IQueryBuilderResourceStrings) {
51
        this._resourceStrings = Object.assign({}, this._resourceStrings, value);
×
52
    }
53

54
    /**
55
     * Returns the resource strings.
56
     */
57
    public get resourceStrings(): IQueryBuilderResourceStrings {
58
        return this._resourceStrings;
×
59
    }
60
}
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