Search
Loading...
Skip to content

Interface: NumberInputOptions

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#

Properties#

PropertyTypeInherited from
inputLabel?stringstring[]
inputLabelPosition?"top""left"
valuenumberInputOptions.value
setValue(value) => voidInputOptions.setValue
isDisabled?booleanInputOptions.isDisabled
suffix?Partial<Omit<ButtonOptions, "label""inputLabel"
min?number-
max?number-
step?number-