Skip to content

Text Field Component

The text field component.

Properties

NameTypeDefaultDescription
valuestring''The value of the text field.
disabledbooleanfalseIndicates whether the text field is disabled.
errorbooleanfalseIndicates whether the text field has an error.
captionstring''The caption text for the text field.
labelstring''The label for the text field.
namestring''The name of the text field.
placeholderstring''The placeholder text for the text field.
type'text' | 'date' | 'month' | 'time' | 'week' | 'datetime-local' | 'number' | 'password' | 'search' | 'tel' | 'url' | 'email''text'The type of the text field.
autocompletestring''The autocomplete attribute for the text field.
maxnumberundefinedThe maximum value of the text field; only applying to text fields with these types: date, month, week, time, datetime-local, number.
minnumberundefinedThe minimum value of the text field; only applying to text fields with these types: date, month, week, time, datetime-local, number.
maxlengthnumberundefinedThe maximum length of the text field; only applying to text fields with these types: text, search, url, tel, email, password.
minlengthnumberundefinedThe minimum length of the text field; only applying to text fields with these types: text, search, url, tel, email, password.
patternstringundefinedThe allowed regex pattern of the text field; only applying to text fields with these types: text, search, url, tel, email, password.
stepnumberundefinedThe step of the text field; only applying to text fields with these types: date, month, week, time, datetime-local, number.

Slots

NameDescription
leading-iconthe leading icon slot of the text-field
trailingthe trailing slot of the text-field