File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 3737| ` initialValue ` | Initial value of the Spinner | String<br >Number | ` 0 ` | |
3838| ` inputStyle ` | Input Style (Text number at middle) | Object | | Could overwrite other props |
3939| ` maxLength ` | Limits the maximum number of characters that can be entered. | Number | | |
40- | ` max ` | Max number permitted | String<br >Number | ` 0 ` | |
41- | ` min ` | Min value permitted | String<br >Number | ` 99 ` | |
40+ | ` max ` | Max number permitted | String<br >Number | ` null ` | |
41+ | ` min ` | Min value permitted | String<br >Number | ` 0 ` | |
4242| ` onBlur ` | Callback that is called when the text input is blurred. | (e) => { ... } |
4343| ` onChange ` | Get the number of the Spinner | Function | | ` (num) => { ... } ` |
4444| ` onDecrease ` | When decrease button is clicked get value decreased | Function | | ` (decreased) => { ... } ` |
Original file line number Diff line number Diff line change @@ -108,8 +108,8 @@ Check the "[Props List](PROPS.md)" file to have the complete list of component p
108108| ` editable ` | Set if input number field is editable or not | Boolean | ` true ` | |
109109| ` initialValue ` | Initial value of the Spinner | String<br >Number | ` 0 ` | |
110110| ` maxLength ` | Limits the maximum number of characters that can be entered. | Number | | |
111- | ` max ` | Max number permitted | String<br >Number | ` 0 ` |
112- | ` min ` | Min value permitted | String<br >Number | ` 99 ` |
111+ | ` max ` | Max number permitted | String<br >Number | ` null ` |
112+ | ` min ` | Min value permitted | String<br >Number | ` 0 ` |
113113| ` precision ` | Max numbers permitted after comma | Integer | ` 2 ` |
114114| ` prepend ` | Custom element after left button | Component | |
115115| ` returnKeyLabel ` | Sets the return key to the label. Use it instead of ` returnKeyType ` . | String | | |
You can’t perform that action at this time.
0 commit comments