mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-27 12:39:49 +08:00
0baef0627e
- Layout 更名为 Grid
987 B
987 B
category | type | title |
---|---|---|
Components | Data Entry | InputNumber |
Enter a number within certain range with the mouse or keyboard.
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 |