Emitted when the a change to the control value is committed by the user.
Emitted when the control receives user input.
Selects all text within the control.
Replaces the selected text in the control.
Sets the text selection range of the control
Controls whether and how text input is automatically capitalized as it is entered/edited by the user.
Specifies what if any permission the browser has to provide for automated assistance in filling out form field values, as well as guidance to the browser as to the type of information expected in the field. Refer to this page for additional information.
Hints at the type of data that might be entered by the user while editing the element or its contents. This allows a browser to display an appropriate virtual keyboard.
The label for the control.
The maximum number of characters (UTF-16 code units) that the user can enter. If this value isn't specified, the user can enter an unlimited number of characters.
The minimum number of characters (UTF-16 code units) required that the user should enter.
Whether the control will have outlined appearance.
The placeholder attribute of the control.
Makes the control a readonly field.
Controls whether the control can be resized.
When auto is set, the control will try to expand and fit its content.
The number of visible text lines for the control. If it is specified, it must be a positive integer. If it is not specified, the default value is 2.
Controls whether the element may be checked for spelling errors.
Enables validation rules to be evaluated without restricting user input. This applies to the maxLength property
when it is defined.
The value of the component
Indicates how the control should wrap the value for form submission. Refer to this page on MDN for explanation of the available values.
This element represents a multi-line plain-text editing control, useful when you want to allow users to enter a sizeable amount of free-form text, for example a comment on a review or feedback form.
Slot
Slot
prefix - Renders content before the input.
Slot
suffix - Renders content after input.
Slot
helper-text - Renders content below the input.
Slot
value-missing - Renders content when the required validation fails.
Slot
too-long - Renders content when the maxlength validation fails.
Slot
too-short - Renders content when the minlength validation fails.
Slot
custom-error - Renders content when setCustomValidity(message) is set.
Slot
invalid - Renders content when the component is in invalid state (validity.valid = false).
Csspart
container - The main wrapper that holds all main input elements of the textarea.
Csspart
input - The native input element of the igc-textarea.
Csspart
label - The native label element of the igc-textarea.
Csspart
prefix - The prefix wrapper of the igc-textarea.
Csspart
suffix - The suffix wrapper of the igc-textarea.
Csspart
helper-text - The helper text wrapper of the igc-textarea.