Skip to content

TextInput ​

A TextInput is a form element that lets users input and edit a single-line text value.

NameValue
Props
startIcon
endIcon
clearable
inputType
status
disabled
readonly
placeholder
View
Reading direction
Note: For icon properties, the relevant icon also needs to be imported from the @wikimedia/codex-icons package. See the usage documentation for more information.

Overview ​

When to use TextInput ​

Use the TextInput component in forms when the user’s answer to a prompt can not easily be predicted, or when there is significant variability in potential inputs. For search queries, use SearchInput instead.

You can provide autocomplete options that are tailored to the user’s input by using Lookup.

About TextInput ​

With a TextInput, users can input text, numbers, symbols, or mixed-format strings like dates or email addresses. TextInput includes the following elements.

Start icon (optional) ​

A start icon can be included to visually enhance the input's purpose. For example, the "user avatar" icon might be used in a username field.

  • Use a simple icon that is easily understandable to users.

Input ​

The following input types can be used:

  1. Text (default)
  2. Search
  3. Number
  4. Email
  5. Password
  6. Telephone
  7. URL
  8. Week
  9. Month
  10. Date
  11. Date and time
  12. Time
Placeholder text (optional) ​

Placeholder text provides an example of what type of information is being requested in the input.

  • Placeholder text should further illustrate and support the TextInput's label.
  • Placeholder text should never replace the label nor be the input's only description.

End icon (optional) ​

A secondary end icon can be included if needed.

Clear button (optional) ​

A 'clear' button can be included to remove the typed content within the input field.

Examples ​

Basic usage ​

Developer notes

This simple example demonstrates how to bind a reactive reference to the input's value via v-model. The reactive reference will automatically update when the input value changes.

Open up the browser console to review events emitted on input, change, focus, and blur.

With initial value ​


Input type ​

Any of the native input types can be used. Some types may result in a browser-provided user interface, like a date picker for a date input.

Input value:

Developer notes

Use the inputType prop to set the native <input> type attribute.

Clearable ​

A clearable TextInput will have a clear button when there is text in the input. When clicked, the clear button will set the input value to an empty string.

With icons ​

A TextInput can have a start icon, end icon, or both. Any Codex icon can be used.

  • Use simple icons that are easily understandable to users.

Note that a clearable TextInput with an end icon will display both the clear button and the end icon when the input is not empty. To review this behavior, type in the input below.

Form field ​

A TextInput can be wrapped in the Field component to add features like a semantic label, description and help text, validation messages, and more. Refer to the Field page for more information.

This username will be visible to other users.
Username must be between 4 and 20 characters.

Native validation ​

The TextInput component exposes native constraint validation methods. Refer to the methods below to review all of the supported features.

This demo sets the input type to "email" and validates the input on blur. When the input is invalid, it sets the Field's status to "error" and passes the native validation message to the Field component for display.

Technical implementation ​

Vue usage ​

v-model is used to track the current value of the input. Refer to the events table for details on emitted events and their properties.

Attributes passed to input

This component will pass any HTML attributes applied to it, except for CSS class, to the <input> element within the component.

Props ​

Prop nameDescriptionTypeValuesDefault
modelValueCurrent value of the input.

Provided by v-model binding in the parent component.
string|number-''
inputTypetype attribute of the input.TextInputType'text', 'search', 'number', 'email', 'password', 'tel', 'url', 'week', 'month', 'date', 'datetime-local', 'time''text'
statusstatus attribute of the input.ValidationStatusType-'default'
disabledWhether the input is disabled.boolean-false
startIconAn icon at the start of the input element. Similar to a ::before pseudo-element.Icon|undefined-undefined
endIconAn icon at the end of the input element. Similar to an ::after pseudo-element.Icon|undefined-undefined
clearableAdd a clear button at the end of the input element.

When the clear button is pressed, the input's value is set to an empty string. The clear button is displayed when input text is present.
boolean-false

Methods ​

Method nameDescriptionSignature
focusFocus the component's input element.Returns: void
blurBlur the component's input element.Returns: void
checkValidityCheck the validity of the input element according to its constraint attributes. Emits an 'invalid' event if the input is invalid. See: https://developer.mozilla.org/en-US/docs/Web/API/HTMLInputElement/checkValidityReturns: boolean Whether the input is valid
reportValidityCheck the validity of the input element and report it as a pop up on the UI. See: https://developer.mozilla.org/en-US/docs/Web/API/HTMLInputElement/reportValidityReturns: boolean Whether the input is valid
setCustomValiditySet custom validity and message for the input element. See: https://developer.mozilla.org/en-US/docs/Web/API/HTMLInputElement/setCustomValidityParams:
  • message string - The custom validation message to set
Returns: void

Events ​

Event namePropertiesDescription
update:modelValuemodelValue string|number - The new model valueWhen the input value changes
keydownundefined KeyboardEventWhen the user presses a key.

This event is not emitted when the user presses the Home or End key (T314728), but is emitted for Ctrl/Cmd+Home and Ctrl/Cmd+End.
inputevent InputEventWhen the input value changes via direct use of the input
changeevent EventWhen an input value change is committed by the user (e.g. on blur)
focusevent FocusEventWhen the input comes into focus
blurevent FocusEventWhen the input loses focus
clearevent MouseEventWhen the input value is cleared through the use of the clear button
invalidevent EventWhen the input value is invalid according to the input's constraint attributes (e.g. min, max, pattern). See: https://developer.mozilla.org/en-US/docs/Web/API/HTMLInputElement/invalid_event

CSS-only version ​

Markup structure ​

The CSS-only TextInput component consists of a <div> wrapping an <input> element.

With icons ​

You can use CSS-only icons to add start and end icons to the input.

You'll need the following CSS classes on the root element:

  • Start icon: .cdx-text-input--has-start-icon
  • End icon: .cdx-text-input--has-end-icon

The icons will be <span> elements with the .cdx-text-input__icon class, plus:

  • Start icon: .cdx-text-input__start-icon
  • End icon: .cdx-text-input__end-icon

You will need to add your own CSS classes to set the icon styles and background image.

Disabled ​

Add the disabled attribute to the <input> element for a disabled text input. This also works for the readonly attribute.

Error state ​

Add the .cdx-text-input--status-error class to the root element to show error styles.

Keyboard navigation ​

KeyFunction
Left arrow / Right arrowThe left and right arrows navigate through the text content within the input.
Up arrow / Down arrowUp arrow moves the focus from the last position of the input to the first one, while down arrow moves it from the first position to the last.