Search
Loading...
Skip to content

Interface: TextInputOptions

Represents options for a text input.

The TextInputOptions interface provides a set of properties that control the behavior and appearance of a text input. These options include settings for the input label, input label position, value, value setter, disabled state, placeholder, suffix, and requireConfirm.

Extends#

Properties#

PropertyTypeDefault valueDescriptionInherited from
inputLabel?stringstring[]undefined-
inputLabelPosition?"top""left"undefined-
valuestringundefined-InputOptions.value
setValue(value) => voidundefined-InputOptions.setValue
isDisabled?booleanundefined-InputOptions.isDisabled
suffix?Partialundefined-InputOptions.suffix
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.-