2016-08-18 15:46:11 +08:00
|
|
|
---
|
|
|
|
category: Components
|
2016-11-09 14:43:32 +08:00
|
|
|
type: Data Entry
|
2016-09-08 16:53:50 +08:00
|
|
|
title: InputNumber
|
2016-08-18 15:46:11 +08:00
|
|
|
---
|
|
|
|
|
|
|
|
Enter a number within certain range with the mouse or keyboard.
|
|
|
|
|
2016-09-10 13:43:30 +08:00
|
|
|
## When To Use
|
2016-08-18 15:46:11 +08:00
|
|
|
|
|
|
|
When a numeric value needs to be provided.
|
|
|
|
|
|
|
|
## API
|
|
|
|
|
2016-08-21 00:20:42 +08:00
|
|
|
| property | description | type | default |
|
2016-08-18 15:46:11 +08:00
|
|
|
|-------------|----------------|--------------------|--------------|
|
2017-01-20 20:10:50 +08:00
|
|
|
| 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 |
|
2017-05-22 17:40:12 +08:00
|
|
|
| precision | precision of input value | number | - |
|
2017-01-20 20:10:50 +08:00
|
|
|
| defaultValue | initial value | number | |
|
2017-03-10 11:18:31 +08:00
|
|
|
| onChange | The callback triggered when the value is changed. | function(value: number \| string) | |
|
2017-01-20 20:10:50 +08:00
|
|
|
| disabled | disable the input | boolean | false |
|
2017-03-06 11:40:23 +08:00
|
|
|
| size | width of input box | string | - |
|
2017-03-10 11:18:31 +08:00
|
|
|
| formatter | Specifies the format of the value presented | function(value: number \| string): string | - |
|
2017-03-22 15:10:03 +08:00
|
|
|
| parser | Specifies the value extracted from formatter | function( string): number | - |
|