mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-20 12:23:02 +00:00
docs(text-area): add maximum character count
This commit is contained in:
parent
df3498d35b
commit
2dded2fa06
1 changed files with 8 additions and 0 deletions
|
@ -11,6 +11,14 @@ components: ["TextArea", "TextAreaSkeleton"]
|
|||
|
||||
<TextArea labelText="App description" placeholder="Enter a description..." />
|
||||
|
||||
### Maximum character count
|
||||
|
||||
Specify the max character count using the `maxCount` prop. A character counter will be displayed to the right of the label.
|
||||
|
||||
You can always use the native `maxlength` attribute if you'd prefer that a counter not be shown.
|
||||
|
||||
<TextArea labelText="App description" placeholder="Enter a description..." maxCount={100} />
|
||||
|
||||
### With helper text
|
||||
|
||||
<TextArea labelText="App description" helperText="A rich description helps us better recommend related products and services" placeholder="Enter a description..." />
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue