mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-21 04:39:19 +00:00
Run "yarn build:docs"
This commit is contained in:
parent
5cede07630
commit
df3498d35b
3 changed files with 17 additions and 0 deletions
|
@ -4113,6 +4113,7 @@ None.
|
||||||
| placeholder | <code>let</code> | No | <code>string</code> | <code>""</code> | Specify the placeholder text |
|
| 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 |
|
| 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 |
|
| 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 |
|
| 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 |
|
| 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 |
|
| readonly | <code>let</code> | No | <code>boolean</code> | <code>false</code> | Set to `true` to use the read-only variant |
|
||||||
|
|
|
@ -11421,6 +11421,16 @@
|
||||||
"constant": false,
|
"constant": false,
|
||||||
"reactive": 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",
|
"name": "light",
|
||||||
"kind": "let",
|
"kind": "let",
|
||||||
|
|
6
types/TextArea/TextArea.svelte.d.ts
vendored
6
types/TextArea/TextArea.svelte.d.ts
vendored
|
@ -27,6 +27,12 @@ export interface TextAreaProps
|
||||||
*/
|
*/
|
||||||
rows?: number;
|
rows?: number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Specify the max character count
|
||||||
|
* @default undefined
|
||||||
|
*/
|
||||||
|
maxCount?: number;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Set to `true` to enable the light variant
|
* Set to `true` to enable the light variant
|
||||||
* @default false
|
* @default false
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue