Run "yarn build:docs"

This commit is contained in:
Eric Liu 2022-02-19 17:38:10 -08:00
commit df3498d35b
3 changed files with 17 additions and 0 deletions

View file

@ -4113,6 +4113,7 @@ None.
| placeholder | <code>let</code> | No | <code>string</code> | <code>""</code> | Specify the placeholder text |
| cols | <code>let</code> | No | <code>number</code> | <code>50</code> | Specify the number of cols |
| rows | <code>let</code> | No | <code>number</code> | <code>4</code> | Specify the number of rows |
| maxCount | <code>let</code> | No | <code>number</code> | <code>undefined</code> | Specify the max character count |
| light | <code>let</code> | No | <code>boolean</code> | <code>false</code> | Set to `true` to enable the light variant |
| disabled | <code>let</code> | No | <code>boolean</code> | <code>false</code> | Set to `true` to disable the input |
| readonly | <code>let</code> | No | <code>boolean</code> | <code>false</code> | Set to `true` to use the read-only variant |

View file

@ -11421,6 +11421,16 @@
"constant": false,
"reactive": false
},
{
"name": "maxCount",
"kind": "let",
"description": "Specify the max character count",
"type": "number",
"isFunction": false,
"isFunctionDeclaration": false,
"constant": false,
"reactive": false
},
{
"name": "light",
"kind": "let",

View file

@ -27,6 +27,12 @@ export interface TextAreaProps
*/
rows?: number;
/**
* Specify the max character count
* @default undefined
*/
maxCount?: number;
/**
* Set to `true` to enable the light variant
* @default false