mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-29 05:29:37 +08:00
75741854c9
Small update on the API section.
1017 B
1017 B
category | chinese | type | english |
---|---|---|---|
Components | 数字输入框 | Form Controls | 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 |