Select

A select displays a collapsible list of options and allows a user to select one of them.

Theme 
Favorite Animal
 
 
selectionMode 
isDisabled 
Example
Select.tsx
Select.css
import {Select, SelectItem} from './Select';

<Select label="Favorite Animal">
  <SelectItem>Aardvark</SelectItem>
  <SelectItem>Cat</SelectItem>
  <SelectItem>Dog</SelectItem>
  <SelectItem>Kangaroo</SelectItem>
  <SelectItem>Panda</SelectItem>
  <SelectItem>Snake</SelectItem>
</Select>

Content

Select reuses the ListBox component, following the Collection Components API. It supports ListBox features such as static and dynamic collections, sections, disabled items, links, text slots, asynchronous loading, etc. See the ListBox docs for more details.

The following example shows a dynamic collection of items, grouped into sections.

Preferred fruit or vegetable
import {Select, SelectItem} from './Select';
import {ListBoxSection, Collection, Header} from 'react-aria-components';

function Example() {
return ( <Select label="Preferred fruit or vegetable" items={options}> {section => ( <ListBoxSection id={section.name}> <Header>{section.name}</Header> <Collection items={section.children}> {item => <SelectItem id={item.name}>{item.name}</SelectItem>} </Collection> </ListBoxSection> )} </Select> ); }

Autocomplete

Select can include additional components as siblings of the ListBox. This example uses an Autocomplete with a SearchField to let the user filter the items.

Category
import {Select, Label, SelectValue, Autocomplete, useFilter} from 'react-aria-components';
import {Button} from './Button';
import {SelectListBox, SelectItem} from './Select';
import {Popover} from './Popover';
import {SearchField} from './SearchField';
import {ChevronDown} from 'lucide-react';

function Example() {
  let {contains} = useFilter({sensitivity: 'base'});

  return (
    <Select>
      <Label>Category</Label>
      <Button>
        <SelectValue />
        <ChevronDown size={18} />
      </Button>
      <Popover hideArrow className="select-popover" style={{display: 'flex', flexDirection: 'column'}}>
        <Autocomplete filter={contains}>
          <SearchField aria-label="Search tags" placeholder="Search tags" autoFocus style={{margin: 4}} />
          <SelectListBox>
            <SelectItem>News</SelectItem>
            <SelectItem>Travel</SelectItem>
            <SelectItem>Shopping</SelectItem>
            <SelectItem>Business</SelectItem>
            <SelectItem>Entertainment</SelectItem>
            <SelectItem>Food</SelectItem>
            <SelectItem>Technology</SelectItem>
            <SelectItem>Health</SelectItem>
            <SelectItem>Science</SelectItem>
          </SelectListBox>
        </Autocomplete>
      </Popover>
    </Select>
  );
}

TagGroup

Use the SelectValue render prop function to display the selected items as a TagGroup.

States
No selected items
Example
MultiSelect.css
import {Autocomplete, Select, SelectValue, Group, useFilter} from 'react-aria-components';
import {Button} from './Button';
import {SelectListBox, SelectItem} from './Select';
import {Label} from './Form';
import {Popover} from './Popover';
import {Plus} from 'lucide-react';
import {SearchField} from './SearchField';
import {Tag, TagGroup} from './TagGroup';
import {useRef} from 'react';
import './MultiSelect.css';

function SelectWithTagGroup() { let triggerRef = useRef<HTMLDivElement | null>(null); let {contains} = useFilter({sensitivity: 'base'}); return ( <Select selectionMode="multiple" className="multi-select">
<Label>States</Label> <Group aria-label="States" ref={triggerRef}> <SelectValue<typeof states[0]> style={{flex: 1}}> {({selectedItems, state}) => ( <TagGroup aria-label="Selected states" items={selectedItems.filter(item => item != null)} renderEmptyState={() => 'No selected items'} onRemove={(keys) => { // Remove keys from Select state. if (Array.isArray(state.value)) { state.setValue(state.value.filter(k => !keys.has(k))); } }}> {item => <Tag>{item.name}</Tag>} </TagGroup> )} </SelectValue> <Button variant="primary"><Plus /></Button> </Group> <Popover // Position popover relative to the wrapping div instead of the Button triggerRef={triggerRef} hideArrow className="select-popover" style={{display: 'flex', flexDirection: 'column', width: 250, padding: 4}}> <Autocomplete filter={contains}> <SearchField aria-label="Search states" placeholder="Search states" autoFocus style={{marginBottom: 4}} /> <SelectListBox items={states}> {state => <SelectItem>{state.name}</SelectItem>} </SelectListBox> </Autocomplete> </Popover> </Select> ); }

Value

Use the defaultValue or value prop to set the selected item. The value corresponds to the id prop of an item. When selectionMode="multiple", value and onChange accept an array. Items can be disabled with the isDisabled prop.

Pick an animal
Current selection: "bison"
selectionMode 
import {Select, SelectItem} from './Select';
import {useState} from 'react';

function Example(props) {
  let [animal, setAnimal] = useState("bison");

  return (
    <>
      <Select
        {...props}
        label="Pick an animal"
        value={animal}
        onChange={setAnimal}
      >
        <SelectItem id="koala">Koala</SelectItem>
        <SelectItem id="kangaroo">Kangaroo</SelectItem>
        <SelectItem id="platypus" isDisabled>Platypus</SelectItem>
        <SelectItem id="eagle">Bald Eagle</SelectItem>
        <SelectItem id="bison">Bison</SelectItem>
        <SelectItem id="skunk">Skunk</SelectItem>
      </Select>
      <pre style={{fontSize: 12}}>Current selection: {JSON.stringify(animal)}</pre>
    </>
  );
}

Forms

Use the name prop to submit the id of the selected item to the server. Set the isRequired prop to validate that the user selects an option, or implement custom client or server-side validation. See the Forms guide to learn more.

AnimalPlease select an animal.
import {Select, SelectItem} from './Select';
import {Button} from './Button';
import {Form} from './Form';

<Form>
  <Select
    label="Animal"
    name="animal"
    isRequired
    description="Please select an animal.">
    <SelectItem id="aardvark">Aardvark</SelectItem>
    <SelectItem id="cat">Cat</SelectItem>
    <SelectItem id="dog">Dog</SelectItem>
    <SelectItem id="kangaroo">Kangaroo</SelectItem>
    <SelectItem id="panda">Panda</SelectItem>
    <SelectItem id="snake">Snake</SelectItem>
  </Select>
  <Button type="submit">Submit</Button>
</Form>

API

Option 1Option 1LabelLabelButtonLabelLabelOption 1Option 2ItemItem labelDescriptionDescriptionOption 3DescriptionItem descriptionSECTION TITLESection headerSectionPopoverListBoxValueHelp text​​Help text (description or error message)
<Select>
  <Label />
  <Button>
    <SelectValue />
  </Button>
  <Text slot="description" />
  <FieldError />
  <Popover>
    <ListBox />
  </Popover>
</Select>

Select

NameTypeDefault
placeholderstringDefault: 'Select an item' (localized)
Temporary text that occupies the select when it is empty.
allowsEmptyCollectionbooleanDefault:
Whether the select should be allowed to be open when the collection is empty.
isDisabledbooleanDefault:
Whether the input is disabled.
children<>Default:
The children of the component. A function may be provided to alter the children based on component state.
selectionModeDefault: 'single'
Whether single or multiple selection is enabled.
disabledKeysIterable<Key>Default:
The item keys that are disabled. These items cannot be selected, focused, or otherwise interacted with.
value<>Default:
The current value (controlled).
defaultValue<>Default:
The default value (uncontrolled).
onChange(value: T) => voidDefault:
Handler that is called when the value changes.

Default className: react-aria-Select

Render PropCSS Selector
isFocusedCSS Selector: [data-focused]
Whether the select is focused, either via a mouse or keyboard.
isFocusVisibleCSS Selector: [data-focus-visible]
Whether the select is keyboard focused.
isDisabledCSS Selector: [data-disabled]
Whether the select is disabled.
isOpenCSS Selector: [data-open]
Whether the select is currently open.
isInvalidCSS Selector: [data-invalid]
Whether the select is invalid.
isRequiredCSS Selector: [data-required]
Whether the select is required.

SelectValue

SelectValue renders the current value of a Select, or a placeholder if no value is selected. It is usually placed within the button element.

NameType
children<<object>>
The children of the component. A function may be provided to alter the children based on component state.

Default className: react-aria-SelectValue