Variable ViraTextAreaConst
ViraTextArea: DeclarativeElementDefinition<
"vira-text-area",
PartialWithUndefined<
{
hasError: boolean;
label: string;
preventResize: boolean;
rows: number;
},
> & { value: string } & PartialWithUndefined<
{
allowedInputs: string
| RegExp;
attributePassthrough: AttributeValues;
blockedInputs: string | RegExp;
disableBrowserHelps: boolean;
disabled: boolean;
fitText: boolean;
placeholder: string;
},
>,
{ randomId: string },
{ inputBlocked: DefineEvent<string>; valueChange: DefineEvent<string> },
| "vira-text-area-disabled"
| "vira-text-area-error"
| "vira-text-area-prevent-resize",
"vira-text-area-padding-horizontal"
| "vira-text-area-padding-vertical",
readonly [],
readonly [],
> = ...
A multi-line text area element with all listeners properly attached. Mirrors the look and feel of ViraInput but for multi-line text input.