2016-08-22 09:53:39 +08:00
---
category: Components
2016-11-09 14:43:32 +08:00
type: Data Entry
2016-09-08 16:53:50 +08:00
title: Input
2016-08-22 09:53:39 +08:00
---
A basic widget for getting the user input is a text field.
Keyboard and mouse can be used for providing or changing data.
2016-09-10 13:43:30 +08:00
## When To Use
2016-08-22 09:53:39 +08:00
- A user input in a form field is needed.
- A search input is required.
## API
### Input
2017-10-25 10:25:44 +08:00
| Property | Description | Type | Default |
| -------- | ----------- | ---- | ------- |
| addonAfter | The label text displayed after (on the right side of) the input field. | string\|ReactNode | |
| addonBefore | The label text displayed before (on the left side of) the input field. | string\|ReactNode | |
| defaultValue | The initial input content | string | |
2017-09-04 15:24:08 +08:00
| disabled | Whether the input is disabled. | boolean | false |
2017-10-25 10:25:44 +08:00
| id | The ID for input | string | |
| prefix | The prefix icon for the Input. | string\|ReactNode | |
| size | The size of the input box. Note: in the context of a form, the `large` size is used. Available: `large` `default` `small` | string | `default` |
| suffix | The suffix icon for the Input. | string\|ReactNode | |
2017-11-30 09:53:32 +08:00
| type | The type of input, see: [MDN ](https://developer.mozilla.org/docs/Web/HTML/Element/input#Form_%3Cinput%3E_types )(use `Input.TextArea` instead of `type="textarea"` ) | string | `text` |
2017-10-25 10:25:44 +08:00
| value | The input content value | string | |
| onPressEnter | The callback function that is triggered when Enter key is pressed. | function(e) | |
2016-08-22 09:53:39 +08:00
2016-11-24 14:56:08 +08:00
> When `Input` is used in a `Form.Item` context, if the `Form.Item` has the `id` and `options` props defined
2017-10-25 10:25:44 +08:00
> then `value`, `defaultValue`, and `id` props of `Input` are automatically set.
2016-08-22 09:53:39 +08:00
2017-09-04 15:24:08 +08:00
The rest of the props of Input are exactly the same as the original [input ](https://facebook.github.io/react/docs/events.html#supported-events ).
2017-01-09 22:03:10 +08:00
2017-05-22 14:44:58 +08:00
### Input.TextArea
2017-08-31 17:13:28 +08:00
> If you are using `antd@<2.12`, please use `Input[type=textarea]`.
2017-05-22 14:44:58 +08:00
2017-10-25 10:25:44 +08:00
| Property | Description | Type | Default |
| -------- | ----------- | ---- | ------- |
2017-09-04 15:24:08 +08:00
| autosize | Height autosize feature, can be set to `true|false` or an object `{ minRows: 2, maxRows: 6 }` | boolean\|object | false |
2017-10-25 10:25:44 +08:00
| defaultValue | The initial input content | string | |
| value | The input content value | string | |
| onPressEnter | The callback function that is triggered when Enter key is pressed. | function(e) | |
2017-05-22 14:44:58 +08:00
2017-09-04 15:24:08 +08:00
The rest of the props of `Input.TextArea` are the same as the original [textarea ](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/textarea ).
2017-01-09 22:03:10 +08:00
2016-11-24 14:03:57 +08:00
#### Input.Search
2016-12-02 15:12:01 +08:00
`Added in 2.5.0`
2017-10-25 10:25:44 +08:00
| Property | Description | Type | Default |
| -------- | ----------- | ---- | ------- |
2017-09-15 17:03:43 +08:00
| enterButton | to show a enter button after input | boolean\|ReactNode | false |
2016-12-05 13:05:58 +08:00
| onSearch | The callback function that is triggered when you click on the search-icon or press Enter key. | function(value) | |
2016-11-24 14:56:08 +08:00
2017-09-04 15:24:08 +08:00
Supports all props of `Input` .
2016-11-24 14:03:57 +08:00
2016-08-22 09:53:39 +08:00
#### Input.Group
2017-10-25 10:25:44 +08:00
| Property | Description | Type | Default |
| -------- | ----------- | ---- | ------- |
| compact | Whether use compact style | boolean | false |
| size | The size of `Input.Group` specifies the size of the included `Input` fields. Available: `large` `default` `small` | string | `default` |
2016-08-22 09:53:39 +08:00
```html
2016-12-05 13:05:58 +08:00
< Input.Group >
2016-08-22 09:53:39 +08:00
< Input / >
< Input / >
< / Input.Group >
```