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

IgniteUI / igniteui-angular-wrappers / 4427504397

pending completion
4427504397

push

github

GitHub
Update README.md

281 of 305 branches covered (92.13%)

Branch coverage included in aggregate %.

668 of 713 relevant lines covered (93.69%)

219.79 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
})
10
export class IgQRCodeBarcodeComponent extends IgControlBase<IgQRCodeBarcode> {
1✔
11
    constructor(el: ElementRef, renderer: Renderer2, differs: IterableDiffers, kvalDiffers: KeyValueDiffers, cdr: ChangeDetectorRef) {
12
      super(el, renderer, differs, kvalDiffers, cdr);
1✔
13
    }
14

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

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

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

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

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