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

IgniteUI / igniteui-angular-wrappers / 14488031304

16 Apr 2025 08:18AM UTC coverage: 93.131% (-0.09%) from 93.222%
14488031304

push

github

web-flow
Merge pull request #400 from IgniteUI/dkamburov/ng-19

chore(*): update to ng 19

281 of 305 branches covered (92.13%)

Branch coverage included in aggregate %.

668 of 714 relevant lines covered (93.56%)

236.36 hits per line

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

66.67
/projects/igniteui-angular-wrappers/src/lib/igqrcodebarcode/igqrcodebarcode.component.ts
1
import { Component, ElementRef, IterableDiffers, KeyValueDiffers, ChangeDetectorRef, Renderer2 } from '@angular/core';
2
import { IgControlBase } from '../igcontrolbase/igcontrolbase';
3

4
@Component({
5
    selector: 'ig-q-r-code-barcode',
6
    template: '<ng-content></ng-content>',
7
    inputs: ['widgetId', 'options', 'changeDetectionInterval', 'disabled', 'create', 'width', 'height', 'backingBrush', 'backingOutline', 'backingStrokeThickness', 'barBrush', 'fontBrush', 'font', 'data', 'errorMessageText', 'stretch', 'barsFillMode', 'widthToHeightRatio', 'xDimension', 'errorCorrectionLevel', 'sizeVersion', 'encodingMode', 'eciNumber', 'eciHeaderDisplayMode', 'fnc1Mode', 'applicationIndicator'],
8
    outputs: ['errorMessageDisplaying', 'dataChanged'],
9
    standalone: false
10
})
11
export class IgQRCodeBarcodeComponent extends IgControlBase<IgQRCodeBarcode> {
1✔
12
    constructor(el: ElementRef, renderer: Renderer2, differs: IterableDiffers, kvalDiffers: KeyValueDiffers, cdr: ChangeDetectorRef) {
13
      super(el, renderer, differs, kvalDiffers, cdr);
1✔
14
    }
15

16
    public option(): void { return; }
×
17

18
    /**
19
     * Returns information about how the barcode is rendered.
20
     */
21
    /* istanbul ignore next */
22
    public exportVisualData(): object { return; }
23

24
    /**
25
     * Causes all pending changes of the barcode e.g. by changed property values to be rendered immediately.
26
     */
27
    /* istanbul ignore next */
28
    public flush(): void { return; }
29

30
    /**
31
     * Destroys widget.
32
     */
33
    /* istanbul ignore next */
34
    public destroy(): void { return; }
35

36
    /**
37
     * Re-polls the css styles for the widget. Use this method when the css styles have been modified.
38
     */
39
    /* istanbul ignore next */
40
    public styleUpdated(): void { return; }
41
}
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