Textarea
The <sdpi-textarea>
component provides a styled wrapper of <textarea>
.
Exampleâ
Property Inspector HTML
<sdpi-item label="Textarea">
<sdpi-textarea
setting="short_description"
maxlength="250"
rows="3"
showlength>
</sdpi-textarea>
</sdpi-item>
Resultâ
value
The value of <sdpi-textarea>
is represented as a string
.
{
"short_description": "Hello World"
}
Configurationâ
The component supports the following configuration.
Name | Type | Description |
---|---|---|
disabled | boolean | Determines whether the input is disabled. |
maxlength | number | Optional maximum length of the value. |
rows | number | Defines the size, in rows, of the text area. |
showlength | boolean | When present, the current length and maximum length are displayed. |
value | string | The value of the component, and the persisted setting. |
Persistenceâ
The value of the component can be automatically persisted to the Stream Deck with the following configuration.
Name | Type | Description |
global | boolean | When present, the value will be persisted to the global settings. |
setting | string | The path of the property where the value should be persisted in the settings. |
setting
The setting
represents the path of a property. If required, this path can denote a nested property within the settings, e.g. if the setting
were foo.bar.prop
, the value would be saved to:
{
"foo": {
"bar": {
"prop": <value>
}
}
}