You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| ref | No | <code>let</code> | Yes | <code>null | HTMLTextAreaElement</code> | <code>null</code> | Obtain a reference to the textarea HTML element |
4072
-
| value | No | <code>let</code> | Yes | <code>null | string</code> | <code>""</code> | Specify the textarea value. |
4073
-
| placeholder | No | <code>let</code> | No | <code>string</code> | <code>""</code> | Specify the placeholder text |
4074
-
| cols | No | <code>let</code> | No | <code>number</code> | <code>50</code> | Specify the number of cols|
4075
-
| rows | No | <code>let</code> | No | <code>number</code> | <code>4</code> | Specify the number of rows |
4076
-
| maxCount | No | <code>let</code> | No | <code>number</code> | <code>undefined</code> | Specify the max character count |
4077
-
| light | No | <code>let</code> | No | <code>boolean</code> | <code>false</code> | Set to `true` to enable the light variant |
4078
-
| disabled | No | <code>let</code> | No | <code>boolean</code> | <code>false</code> | Set to `true` to disable the input |
4079
-
| readonly | No | <code>let</code> | No | <code>boolean</code> | <code>false</code> | Set to `true` to use the read-only variant |
4080
-
| helperText | No | <code>let</code> | No | <code>string</code> | <code>""</code> | Specify the helper text |
4081
-
| labelText | No | <code>let</code> | No | <code>string</code> | <code>""</code> | Specify the label text |
4082
-
| hideLabel | No | <code>let</code> | No | <code>boolean</code> | <code>false</code> | Set to `true` to visually hide the label text |
4083
-
| invalid | No | <code>let</code> | No | <code>boolean</code> | <code>false</code> | Set to `true` to indicate an invalid state |
4084
-
| invalidText | No | <code>let</code> | No | <code>string</code> | <code>""</code> | Specify the text for the invalid state |
4085
-
| warn | No | <code>let</code> | No | <code>boolean</code> | <code>false</code> | Set to `true` to indicate a warning state |
4086
-
| warnText | No | <code>let</code> | No | <code>string</code> | <code>""</code> | Specify the warning state text |
4087
-
| id | No | <code>let</code> | No | <code>string</code> | <code>"ccs-" + Math.random().toString(36)</code> | Set an id for the textarea element |
4088
-
| name | No | <code>let</code> | No | <code>string</code> | <code>undefined</code> | Specify a name attribute for the input |
4069
+
| Prop name | Required | Kind | Reactive | Type | Default value | Description |
| ref | No | <code>let</code> | Yes | <code>null | HTMLTextAreaElement</code> | <code>null</code> | Obtain a reference to the textarea HTML element |
4072
+
| value | No | <code>let</code> | Yes | <code>null | string</code> | <code>""</code> | Specify the textarea value. |
4073
+
| placeholder | No | <code>let</code> | No | <code>string</code> | <code>""</code> | Specify the placeholder text |
4074
+
| cols | No | <code>let</code> | No | <code>number</code> | <code>undefined</code> | Specify the number of cols.<br />If specified, the textarea will not be resizable.<br />Override this using the `resize` style attribute.|
4075
+
| rows | No | <code>let</code> | No | <code>number</code> | <code>4</code> | Specify the number of rows |
4076
+
| maxCount | No | <code>let</code> | No | <code>number</code> | <code>undefined</code> | Specify the max character count |
4077
+
| light | No | <code>let</code> | No | <code>boolean</code> | <code>false</code> | Set to `true` to enable the light variant |
4078
+
| disabled | No | <code>let</code> | No | <code>boolean</code> | <code>false</code> | Set to `true` to disable the input |
4079
+
| readonly | No | <code>let</code> | No | <code>boolean</code> | <code>false</code> | Set to `true` to use the read-only variant |
4080
+
| helperText | No | <code>let</code> | No | <code>string</code> | <code>""</code> | Specify the helper text |
4081
+
| labelText | No | <code>let</code> | No | <code>string</code> | <code>""</code> | Specify the label text |
4082
+
| hideLabel | No | <code>let</code> | No | <code>boolean</code> | <code>false</code> | Set to `true` to visually hide the label text |
4083
+
| invalid | No | <code>let</code> | No | <code>boolean</code> | <code>false</code> | Set to `true` to indicate an invalid state |
4084
+
| invalidText | No | <code>let</code> | No | <code>string</code> | <code>""</code> | Specify the text for the invalid state |
4085
+
| warn | No | <code>let</code> | No | <code>boolean</code> | <code>false</code> | Set to `true` to indicate a warning state |
4086
+
| warnText | No | <code>let</code> | No | <code>string</code> | <code>""</code> | Specify the warning state text |
4087
+
| id | No | <code>let</code> | No | <code>string</code> | <code>"ccs-" + Math.random().toString(36)</code> | Set an id for the textarea element |
4088
+
| name | No | <code>let</code> | No | <code>string</code> | <code>undefined</code> | Specify a name attribute for the input |
0 commit comments