# Textarea (fw-textarea)

fw-textarea displays an input box on the user interface and enables assigning multi-line text value to it. The size of the input box is based on the cols and rows attributes.

# Demo

`hint-text`, `warning-text`, `error-text` can be passed as slots

Enter location details
Show Code

# Usage

# Properties

Property Attribute Description Type Default
cols cols Width of the input box, specified as number of columns. number undefined
disabled disabled Disables the text area on the interface. If the attribute’s value is undefined, the value is set to false. boolean false
errorText error-text Error text displayed below the text box. string ''
hintText hint-text Hint text displayed below the text box. string ''
label label Label displayed on the interface, for the component. string ''
maxRows max-rows Max number of rows the textarea can create when user writes content greater than regular rows. number undefined
maxRowsDebounceTimer max-rows-debounce-timer Debounce timer for setting rows dynamically based on user input and maxRows, default is 200ms. number undefined
maxlength maxlength Maximum number of characters a user can enter in the input box. number undefined
minlength minlength Minimum number of characters a user must enter in the input box for the value to be valid. number undefined
name name Name of the component, saved as part of form data. string ''
placeholder placeholder Text displayed in the input box before a user enters a value. string undefined
readonly readonly If true, the user cannot enter a value in the input box. If the attribute’s value is undefined, the value is set to false. boolean false
required required Specifies the input box as a mandatory field and displays an asterisk next to the label. If the attribute’s value is undefined, the value is set to false. boolean false
resize resize Specifies the way in which the text area can be resized "both" \| "horizontal" \| "none" \| "vertical" 'both'
rows rows Height of the input box, specified as number of rows. number undefined
state state Theme based on which the input box is styled. "error" \| "normal" \| "warning" 'normal'
value value Default value displayed in the input box. string ''
warningText warning-text Warning text displayed below the text box. string ''
wrap wrap Type of text wrapping used by the input box. If the value is hard, the text in the textarea is wrapped (contains line breaks) when the form data is saved. If the value is soft, the text in the textarea is saved as a single line, when the form data is saved. "hard" \| "soft" 'soft'

# Events

Event Description Type
fwBlur Triggered when the input box loses focus. CustomEvent<any>
fwFocus Triggered when the input box comes into focus. CustomEvent<void>
fwInput Triggered when a value is entered in the input box. CustomEvent<any>

# Methods

# setFocus() => Promise<void>

Sets focus on a specific fw-textarea. Use this method instead of the global input.focus().

# Returns

Type: Promise<void>

# CSS Custom Properties

Name Description
--fw-error-color Color of the error text.
--fw-hint-color Color of the hint text.
--fw-textarea-input-color Color of the textarea input
--fw-textarea-margin-bottom Bottom margin for the textarea
--fw-textarea-min-height Min-Height of the textarea.
--fw-textarea-width Width of the textarea.
--fw-warning-color Color of the warning text.

# Dependencies

# Used by

# Graph

graph TD;
  fw-form-control --> fw-textarea
  style fw-textarea fill:#f9f,stroke:#333,stroke-width:4px

Built with ❤ at Freshworks