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\|string | 1 |
| defaultValue | initial value | number | |
2017-02-07 17:26:40 +08:00
| onChange | The callback triggered when the value is changed. | Function(value) | |
| disabled | disable the input | boolean | false |
| size | width of input box | string | none |