UNPKG

@taiga-ui/kit

Version:
16 lines (15 loc) 754 B
import { ChangeDetectorRef } from '@angular/core'; import { NgControl } from '@angular/forms'; import { AbstractTuiControl, TuiFocusableElementAccessor, TuiNativeFocusableElement } from '@taiga-ui/cdk'; export declare class TuiInputInlineComponent extends AbstractTuiControl<string | number> implements TuiFocusableElementAccessor { maxLength: number | null; private readonly native?; constructor(control: NgControl | null, changeDetectorRef: ChangeDetectorRef); get nativeFocusableElement(): TuiNativeFocusableElement | null; get focused(): boolean; get hasValue(): boolean; get maskedValue(): string; onValueChange(value: string): void; onFocused(focused: boolean): void; protected getFallbackValue(): string; }