Skip to content

ChipInput

A ChipInput allows users to create chips to filter content or make selections.

chip 1
chip 2
NameValue
Props
separateInput
status
disabled
readonly
View
Reading direction

Overview

When to use ChipInput

Use the ChipInput component when users need to enter multiple custom values in a single field, for example when applying filters during a search process.

If only a single input value is anticipated, use TextInput instead.

Avoid using ChipInput for simple filtering processes, or when you don't need to support entering custom values. To provide a set of static options to choose from, use a Checkbox group or Select instead. To provide a long, searchable list of predefined options to choose from, use MultiselectLookup.

About ChipInput

ChipInput includes the following elements.

Input

The user can type within this input to create chips.

Chips

The chips are stacked next to each other. Chips are editable and can be removed.

Examples

Basic Usage

By default, the chips appear within the text input. Alternately, they can be placed in a separate container above the text input.

chip 1
chip 2

Developer notes

Pass an array of chip data to the input using v-model:input-chips. When the user adds or removes a chip, the array will automatically be updated.

With chip icons

Chips added by the user cannot be added with icons, but icons can be included in chips provided by the parent component.

Camera
Article

Form field

A ChipInput 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.

You can place restrictions on what kind of chips can be added. In this example, each chip's label must have 10 characters or fewer.

Alternative names help others easily find the function
10

Developer notes

To test chip text before a new chip is added, pass in a validation function via the chipValidator prop. If the chip text fails validation, a new chip will not be added and the "error" status will be set.

If you need access to the current value of the text input, for validation or other purposes, you can use v-model to bind a string ref to the ChipInput, just like you would with a TextInput.

In the example below, the input value is bound with v-model and is used to show the number of remaining characters allowed as the user is typing. A chipValidator is passed in that tests whether the text is 10 or fewer characters.

Placeholder and other attributes of the <input> element can be bound to the ChipInput component and will be passed down to the <input> element within.

Technical implementation

Vue usage

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 nameDescriptionTypeDefault
inputChips(required)Current chips present in the input.

Provided by v-model binding in the parent component.
ChipInputItem[]
inputValueCurrent value of the text input. This prop is optional and should only be used if you need to keep track of the text input value for some reason (e.g. for validation).

Optionally provided by v-model:input-value binding in the parent component.
string|numbernull
separateInputWhether the text input should appear below the set of input chips.

By default, the input chips are inline with the input.
booleanfalse
statusstatus attribute of the input.ValidationStatusType'default'
chipValidatorValidation function for chip text. If it returns false, the chip will not be added and the error status will be set.ChipValidator(value: string|number)[]
disabledWhether the input is disabled.booleanfalse
readonlyWhether the ChipInput is readonly.booleanfalse

Events

Event namePropertiesDescription
update:input-chipsinputChips ChipInputItem[] - The new set of inputChipsWhen the input chips change.
update:input-valueinputValue string|number - The new input valueWhen the input value changes. Only emitted if the inputValue prop is provided.

Keyboard navigation

KeyFunction
TabIt moves the focus between the chips within the input. When the focus is placed on the last chip, it moves the focus to the input to create more chips. While typing in the input, pressing it creates a chip with the typed text and then moves the focus to the next interactive element in tab order.
Shift + TabIt moves the focus to the previous chip within the input or to the previous interactive element in the page.
EnterWhile typing in the input, pressing Enter creates a chip with the typed text and keeps the input focused. If focused on a chip, pressing Enter makes the chip editable.
EscWhile typing in the input, pressing Esc creates a chip with the typed text. Once the chip is created, the input loses focus. When any of the chips or input is focused, pressing Esc removes the focus from the focused element.
backspaceIf the focus is placed on a chip, this key removes the chip and moves the focus to the previous chip. If it removes the last chip, it moves the focus to the input. If the cursor is at the start of the input, it moves the focus to the last chip.
Left arrow / Right arrowArrow keys navigate between the chips within the input when they are focused.