@taiga-ui/core
Version:
Core library for creating Angular components and applications using Taiga UI
20 lines (19 loc) • 1.01 kB
TypeScript
import { TuiTextfieldBase } from './textfield.directive';
import * as i0 from "@angular/core";
import * as i1 from "@taiga-ui/cdk/directives/native-validator";
import * as i2 from "@taiga-ui/core/directives/appearance";
/**
* @deprecated use {@link TuiSelect} from @taiga-ui/kit instead, drop in v5
*/
export declare class TuiSelect<T> extends TuiTextfieldBase<T> {
private readonly nav;
private readonly doc;
placeholder: string;
setValue(value: T): void;
focus(): void;
protected get ariaLabel(): string | null;
protected get stringified(): string;
protected onCopy(): Promise<void>;
static ɵfac: i0.ɵɵFactoryDeclaration<TuiSelect<any>, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<TuiSelect<any>, "select[tuiTextfield]", never, { "placeholder": { "alias": "placeholder"; "required": false; }; }, {}, never, never, true, [{ directive: typeof i1.TuiNativeValidator; inputs: {}; outputs: {}; }, { directive: typeof i2.TuiAppearance; inputs: {}; outputs: {}; }]>;
}