# MultiSelect
The MultiSelect component allows users to select multiple options from a list with a dropdown. Typing filters the list to make selections from a large list easier. It can also be used without an options list if the creation of arbitrary tags is desired.
# Usage
To use MultiSelect, setup v-model
as an array and pass in your options array as an array of objects. See the Select docs for more information about how to create options.
See the Form Field docs for more information about labeling, descriptions, placeholders, error state, success state and more.
# Select All Option
Use the select-all-text
prop to pass in a string for your select all option. When present, the first item in the dropdown will be a select all option with the text provided. Clicking this option will select all items in the dropdown. The select all option is only visible when the user hasn't filtered the list with the input.
# Pasting options
A user can paste strings split by commas into input field, for example, Alabama, Alaska
. Pasted strings will be checked against the textKey
for options in the multiselect and aren't case sensitive. Strings that match an option will be added as tags.
String that do not match an option will be left in the input as text and emitted as an @error
event if allowCustomValues
is false. You can leverage this event to show an error, as shown here. Try pasting Albama, alaska, Arizona, Califrnia
below:
# Loading
Pass a boolean into the loading
prop to add a loading state to the component. The boolean hides and shows a Loading Spinner). This can be useful if you need to fetch options asynchronously.
In this demo we mock fetching options when the multi-select is opened.
# No results text
Use the no-results-text
prop to show text when no results match their input. This can help a user understand why the dropdown has disappeared.
Here we're also using the @input
event to use the value of the input in our message.
# Error Handling
Use the error
prop to set an error state and optional message. See the Form Field docs for more information about the error prop.
In this demo we we show no-results-text
if the user searches for someone who doesn't exist, an error if the user attempts to select a user who doesn't exist, and a different error if they attempt to click submit with no selections.
# Tag Variants
Use the tag-variant
prop to pass a function that would determine the variant of selected option tags. By default tag variant is set to muted
.
In this demo we set the tag variant to danger
if the selected person is not currently available.
# Fully Customized Options
Using scoped slots, you can construct a fully customized options list with whatever data and layout you desire.
First, determine the structure of your data and tell the component what your value-key
and text-key
are. Then, pass your template into the option
slot with slot-scope="props"
and construct the layout you want. You can reach inside the props.option
for the data based on your desired schema.
In this demo, we construct a dropdown of users with a name, avatar and job position. We use their name as the value of the input and the text to display in the dropdown when a user is selected. With a little bit of CSS we're able to get the layout we want as well.
# Allow Custom Values
Using the allow-custom-values
prop you can allow the multi-select component to accept options that were not initially defined in the option
prop. To display a custom message, like 'Add email address'
, set allow-custom-values
to the value of your custom message. Use $$
in the allow-custom-values
prop string to interpolate the input value in your custom message as shown in this demo.
# Custom Values & Validation
Couple validation with the allow-custom-values
prop to only allow custom values when an input meets validation criteria.
In this demo, if the input is not in the select list and it is not a valid email address, we display a message using no-results-text
, as soon as the input passes validation we remove the error state and update the allow-custom-values
prop to allow the user to select their custom value. If the user attempts to enter an invalid email address, set an error state and display an error message.
# Custom Filtering
Use the filter
prop to define how the options get filtered when the multi-select's input is used. This can be useful when you want to the filter to look through more properties than just the text.
In this demo, we allow users to filter options by name and/or position.
# Events
The MultiSelect component emits various events you can use.
Event | Arguments | Description |
---|---|---|
@open | - | Emitted when the popover is opened |
@input | The value inside the input | Emitted when the input field gets an input event |
@error | The value inside the input | Emitted when enter is pressed and there are no matches found |
@selectOption | The selected option object | Emitted when an option is selected |
@selectAll | - | Emitted when select all is clicked |
@unselect | The unselected option object | Emitted when an option is unselected by clicking the X in its tag |
@update | The array of selected options | Whenever an option(s) is selected or unselected |
@close | - | Emitted when the popover is closed |