mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-02 15:59:38 +08:00
77b78a9389
* Unify name of ReactNode type in document * Lowser all string type name * Lowercase all number type name * Lowercase all boolean type name * Unify array type * Lowercase all object type name * Unify mutilple types
985 B
985 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|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 |