DocSpace-client/web/ASC.Web.Components/src/components/textarea/README.md

29 lines
2.0 KiB
Markdown
Raw Normal View History

# Input: Textarea
## Usage
```js
import { Textarea } from 'asc-web-components';
```
#### Description
Textarea is used for displaying custom textarea
#### Usage
```js
<Textarea placeholder="Add comment" onChange={event => alert(event.target.value)} value='value' />
```
#### Properties
| Props | Type | Required | Values | Default | Description |
| ---------------------- | -------- | :------: | ---------------------------- | ------- | ------------------------------------------------------------------------------------------------------ |
| `value` | `string` | - | - | - | Value for Textarea |
| `placeholder` | `string` | - | - | - | Placeholder for Textarea |
| `onChange` | `func` | - | - | - | Allow you to handle changing events of component
| `id` | `string` | - | - | - | Used as HTML `id` property |
| `name` | `string` | - | - | - | Used as HTML `name` property | |
| `isDisabled` | `bool` | - | - | `false` | Indicates that the field cannot be used |
| `isReadOnly` | `bool` | - | - | `false` | Indicates that the field is displaying read-only content|