ant-design/components/input-number/index.en-US.md

25 lines
987 B
Markdown
Raw Normal View History

---
category: Components
type: Data Entry
2016-09-08 16:53:50 +08:00
title: InputNumber
---
Enter a number within certain range with the mouse or keyboard.
2016-09-10 13:43:30 +08:00
## When To Use
When a numeric value needs to be provided.
## API
| property | description | type | default |
|-------------|----------------|--------------------|--------------|
| min | min value | Number | -Infinity |
| max | max vale | Number | Infinity |
| value | current value | Number | |
| step | The number to which the current value is increased or decreased. It can be an integer or decimal. | Number or String | 1 |
| defaultValue | initial value | Number | |
| onChange | The callback triggered when the value is changed. | Function | |
| disabled | disable the input | Boolean | false |
| size | width of input box | String | none |