The ui5-step-input consists of an input field and buttons with icons to increase/decrease the value
with the predefined step.
The user can change the value of the component by pressing the increase/decrease buttons,
by typing a number directly, by using the keyboard up/down and page up/down,
or by using the mouse scroll wheel. Decimal values are supported.
The default step is 1 but the app developer can set a different one.
App developers can set a maximum and minimum value for the StepInput.
The increase/decrease button and the up/down keyboard navigation become disabled when
the value reaches the max/min or a new value is entered from the input which is greater/less than the max/min.
Fired before the value state of the component is updated internally. The event is preventable, meaning that if it's default action is prevented, the component will not update the value state.
Type
CustomEvent<StepInputValueStateChangeEventDetail>
Parameters
valid: boolean Indicator if the value is in between the min and max value. valueState: string The new valueState that will be set.