UNPKG

@scandit/web-datacapture-barcode

Version:

Scandit Data Capture SDK for the Web

34 lines (31 loc) 1.11 kB
import { ScanditHTMLElement } from '@scandit/web-datacapture-core/build/js/private/utils/index.js'; import { Color } from '@scandit/web-datacapture-core'; declare class BarcodeStatusIconContainer extends ScanditHTMLElement { static tag: "scandit-status-icon-container"; private static readonly observedAttributes; private containerElement; private textContainer; private onToggleListener; constructor(); set text(name: string); get text(): string; set tip(value: boolean); get tip(): boolean; set textColor(color: Color); get textColor(): Color; static create(): BarcodeStatusIconContainer; static register(): void; private static createStyleElement; onToggle(): void; connectedCallback(): void; disconnectedCallback(): void; attributeChangedCallback(name: string, _oldValue: string, newValue: string): void; private updateText; private toggleTip; } declare global { interface HTMLElementTagNameMap { [BarcodeStatusIconContainer.tag]: BarcodeStatusIconContainer; } } export { BarcodeStatusIconContainer };