Represents options for a number input.
The NumberInputOptions interface provides a set of properties that control the
behavior and appearance of a number input. These options include settings for the
input label, input label position, value, value setter, disabled state, minimum value,
maximum value, step value, and suffix.
Extends#
InputOptions<number>
Properties#
| Property | Type | Inherited from |
|---|---|---|
inputLabel? | string | string[] |
inputLabelPosition? | "top" | "left" |
value | number | InputOptions.value |
setValue | (value) => void | InputOptions.setValue |
isDisabled? | boolean | InputOptions.isDisabled |
suffix? | Partial | InputOptions.suffix |
min? | number | - |
max? | number | - |
step? | number | - |