NumberInput
What is this?
NumberInputs represent a control for regular numerical input, where you expect the user to modify it by a few incremental steps.
Value
Use the properties value and onChange to handle value changes. Note that the onChange represents a function with the new value as a parameter.
Step
The NumberInputs has two buttons, one to increment the value and the other to decrement it. By default, you can increase or decrease the value one by one, but you can also set a step, so the value will increase or decrease according to it.
Min and Max
It is possible to define limits so that the value is never less than the minimum or greater than the maximum. If you reach one of these limits, the buttons for increasing and decreasing the value will be disabled. The min and max properties should have a value defined to activate this behavior.
Help text
Use the helpText property to indicate the proper way to fill in the numerical input.
Error
Use the error property to control and indicate whether it is a valid input or not.
Disabled
Disable the NumberInput by setting the disabled property to true.