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, suffix, and requireConfirm.

Extends#

Properties#

PropertyTypeDefault valueDescriptionInherited from
inputLabel?stringstring[]undefined-
inputLabelPosition?"top""left"undefined-
valuenumberundefined-InputOptions.value
setValue(value) => voidundefined-InputOptions.setValue
isDisabled?booleanundefined-InputOptions.isDisabled
suffix?Partialundefined-InputOptions.suffix
min?numberundefined--
max?numberundefined--
step?numberundefined--
requireConfirm?booleantrueWhether to require explicit confirmation (Enter/Escape/blur) before applying changes. When true, changes are only applied when user presses Enter/ESC or blurs the input. When false, changes are applied immediately on every keystroke.-