@taiga-ui/kit
Version:
Taiga UI Angular main components kit
23 lines (22 loc) • 1.23 kB
TypeScript
import type { AfterViewInit } from '@angular/core';
import { ElementRef } from '@angular/core';
import { TuiTextfieldComponent } from '@taiga-ui/core/components/textfield';
import type { TuiTextareaOptions } from './textarea.options';
import * as i0 from "@angular/core";
import * as i1 from "@taiga-ui/core/components/textfield";
export declare class TuiTextarea implements AfterViewInit {
private readonly template?;
private readonly options;
private readonly vcr;
protected readonly text?: ElementRef<HTMLElement>;
protected readonly el: HTMLTextAreaElement;
protected readonly textfield: TuiTextfieldComponent<any>;
protected readonly isMobile: boolean;
min: number;
max: number;
content: TuiTextareaOptions['content'];
ngAfterViewInit(): void;
protected onScroll(): void;
static ɵfac: i0.ɵɵFactoryDeclaration<TuiTextarea, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<TuiTextarea, "textarea[tuiTextarea]", never, { "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; "content": { "alias": "content"; "required": false; }; }, {}, never, never, true, [{ directive: typeof i1.TuiWithTextfield; inputs: {}; outputs: {}; }]>;
}