> ## Documentation Index
> Fetch the complete documentation index at: https://docs.twenty.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Select

> Choose one or more values from a popup list of options.

Use `Select` for a form value chosen from a list. Use [Menu](/ui/components/surfaces/menu) for commands and actions.

## Single selection

```tsx theme={null}
import { Select } from 'twenty-ui/input';

const PRIORITIES = [
  { value: 'low', label: 'Low' },
  { value: 'normal', label: 'Normal' },
  { value: 'high', label: 'High' },
];

export const PrioritySelect = () => (
  <Select.Root name="priority" defaultValue="normal" items={PRIORITIES}>
    <Select.Trigger aria-label="Priority">
      <Select.Value placeholder="Choose a priority" />
    </Select.Trigger>
    <Select.Popup>
      {PRIORITIES.map(({ value, label }) => (
        <Select.Item key={value} value={value}>
          {label}
        </Select.Item>
      ))}
    </Select.Popup>
  </Select.Root>
);
```

Supply `items` on `Root` so `Value` renders the selected item's label; without it, the trigger shows the raw value. `defaultValue` initializes uncontrolled state; use `value` and `onValueChange` for controlled state. The selected value can be `null` when nothing is selected.

## Multiple selection

```tsx theme={null}
import { useState } from 'react';
import { Select } from 'twenty-ui/input';

const LANGUAGES = [
  { value: 'en', label: 'English' },
  { value: 'fr', label: 'French' },
  { value: 'es', label: 'Spanish' },
];

export const LanguageSelect = () => {
  const [languages, setLanguages] = useState<string[]>(['en']);

  return (
    <Select.Root
      multiple
      value={languages}
      onValueChange={setLanguages}
      items={LANGUAGES}
    >
      <Select.Trigger aria-label="Languages">
        <Select.Value placeholder="Choose languages" />
      </Select.Trigger>
      <Select.Popup>
        {LANGUAGES.map(({ value, label }) => (
          <Select.Item key={value} value={value}>
            {label}
          </Select.Item>
        ))}
      </Select.Popup>
    </Select.Root>
  );
};
```

With `multiple`, the value is an array. The generic root types represent the option value and whether multiple selection is enabled.

## Parts and placement

| Part                  | Purpose                                                    |
| --------------------- | ---------------------------------------------------------- |
| `Root`                | Owns selection, open state, and form integration.          |
| `Trigger`             | Opens the list and supports `sm` or `md` sizing.           |
| `Value`               | Displays the selected label or a placeholder.              |
| `Popup`               | Provides the portal and positioned list.                   |
| `Item`                | Represents an option, with optional icons and description. |
| `Group`, `GroupLabel` | Group related options under an accessible label.           |
| `Separator`           | Separates groups visually.                                 |

`Popup` defaults to `side="bottom"`, `align="start"`, and `sideOffset={8}`. Set `alignItemWithTrigger` to align the selected option over the trigger. It uses the [theme's portal container](/ui/theming#scope-an-override) unless you provide `container`.

Keyboard users can open the list from the trigger, navigate options with arrow keys, and type to find an option. Escape dismisses the popup. Label the trigger or integrate the select with [Field](/ui/components/input/field); a placeholder alone does not name the control.

## Props

The reference is generated from the public component types. Native attributes, including accessible names and event handlers, are also accepted on parts that render elements.

### Select.Root

<ParamField body="Root.actionsRef" type="RefObject<SelectRootActions | null>">
  A ref to imperative actions.

  * `unmount`: Manually unmounts the select.
    Call this after any externally controlled closing animation finishes.
</ParamField>

<ParamField body="Root.autoComplete" type="string">
  Provides a hint to the browser for autofill.
</ParamField>

<ParamField body="Root.defaultOpen" type="boolean" default="false">
  Whether the select popup is initially open.

  To render a controlled select popup, use the `open` prop instead.
</ParamField>

<ParamField body="Root.defaultValue" type="SelectValueType<Value, Multiple> | null">
  The uncontrolled value of the select when it's initially rendered.

  To render a controlled select, use the `value` prop instead.
</ParamField>

<ParamField body="Root.disabled" type="boolean" default="false">
  Whether the component should ignore user interaction.
</ParamField>

<ParamField body="Root.form" type="string">
  Identifies the form that owns the hidden input.
  Useful when the select is rendered outside the form.
</ParamField>

<ParamField body="Root.highlightItemOnHover" type="boolean" default="true">
  Whether moving the pointer over items should highlight them.
  Disabling this prop allows CSS `:hover` to be differentiated from the `:focus` (`data-highlighted`) state.
</ParamField>

<ParamField body="Root.id" type="string">
  The id of the Select.
</ParamField>

<ParamField body="Root.inputRef" type="Ref<HTMLInputElement>">
  A ref to access the hidden input element.
</ParamField>

<ParamField body="Root.isItemEqualToValue" type="((itemValue: Value, value: Value) => boolean)">
  Custom comparison logic used to determine if a select item value matches the current selected value. Useful when item values are objects without matching referentially.
  Defaults to `Object.is` comparison.
</ParamField>

<ParamField body="Root.items" type="Record<string, ReactNode> | readonly { label: ReactNode; value: any; }[] | readonly Group<any>[]">
  Data structure of the items rendered in the select popup.
  When specified, `<Select.Value>` renders the label of the selected item instead of the raw value.
</ParamField>

<ParamField body="Root.itemToStringLabel" type="((itemValue: Value) => string)">
  When the item values are objects (`<Select.Item value={object}>`), this function converts the object value to a string representation for display in the trigger.
  If the shape of the object is `{ value, label }`, the label will be used automatically without needing to specify this prop.
</ParamField>

<ParamField body="Root.itemToStringValue" type="((itemValue: Value) => string)">
  When the item values are objects (`<Select.Item value={object}>`), this function converts the object value to a string representation for form submission.
  If the shape of the object is `{ value, label }`, the value will be used automatically without needing to specify this prop.
</ParamField>

<ParamField body="Root.modal" type="boolean" default="true">
  Determines if the select enters a modal state when open.

  * `true`: user interaction is limited to the select: document page scroll is locked and pointer interactions on outside elements are disabled.
  * `false`: user interaction with the rest of the document is allowed.

  On touch devices, a `true` modal blocks outside taps but leaves the page scrollable unless the popup spans nearly the full viewport width, matching native iOS behavior.
</ParamField>

<ParamField body="Root.multiple" type="boolean" default="false">
  Whether multiple items can be selected.
</ParamField>

<ParamField body="Root.name" type="string">
  Identifies the field when a form is submitted.
</ParamField>

<ParamField body="Root.onOpenChange" type="((open: boolean, eventDetails: SelectRootChangeEventDetails) => void)">
  Event handler called when the select popup is opened or closed.
</ParamField>

<ParamField body="Root.onOpenChangeComplete" type="((open: boolean) => void)">
  Event handler called after any animations complete when the select popup is opened or closed.
</ParamField>

<ParamField body="Root.onValueChange" type="((value: SelectValueType<Value, Multiple> | (Multiple extends true ? never : null), eventDetails: SelectRootChangeEventDetails) => void)">
  Event handler called when the value of the select changes.
</ParamField>

<ParamField body="Root.open" type="boolean">
  Whether the select popup is currently open.
</ParamField>

<ParamField body="Root.readOnly" type="boolean" default="false">
  Whether the user should be unable to choose a different option from the select popup.
</ParamField>

<ParamField body="Root.required" type="boolean" default="false">
  Whether the user must choose a value before submitting a form.
</ParamField>

<ParamField body="Root.value" type="SelectValueType<Value, Multiple> | null">
  The value of the select. Use when controlled.
</ParamField>

### Select.Trigger

<ParamField body="Trigger.className" type="string | ((state: SelectTriggerState) => string | undefined)">
  CSS class applied to the element, or a function that
  returns a class based on the component's state.
</ParamField>

<ParamField body="Trigger.disabled" type="boolean">
  Whether the component should ignore user interaction.
</ParamField>

<ParamField body="Trigger.nativeButton" type="boolean" default="true">
  Whether the component renders a native `<button>` element when replacing it
  via the `render` prop.
  Set to `false` if the rendered element is not a button (for example, `<div>`).
</ParamField>

<ParamField body="Trigger.render" type="ReactElement<unknown, string | JSXElementConstructor<any>> | ComponentRenderFn<HTMLProps, SelectTriggerState>">
  Allows you to replace the component's HTML element
  with a different tag, or compose it with another component.

  Accepts a `ReactElement` or a function that returns the element to render.
</ParamField>

<ParamField body="Trigger.size" type="&#x22;sm&#x22; | &#x22;md&#x22;" default="md">
  Visual size of the trigger.
</ParamField>

<ParamField body="Trigger.style" type="CSSProperties | ((state: SelectTriggerState) => CSSProperties | undefined)">
  Style applied to the element, or a function that
  returns a style object based on the component's state.
</ParamField>

### Select.Value

<ParamField body="Value.children" type="ReactNode | ((value: any) => ReactNode)">
  Accepts a function that returns a `ReactNode` to format the selected value.
  Treat the value as read-only: in `multiple` mode it may be a shared frozen array
  when nothing is selected.
</ParamField>

<ParamField body="Value.className" type="string | ((state: SelectValueState) => string | undefined)">
  CSS class applied to the element, or a function that
  returns a class based on the component's state.
</ParamField>

<ParamField body="Value.placeholder" type="ReactNode">
  The placeholder value to display when no value is selected.
  This is overridden by `children` if specified, or by a null item's label in `items`.
</ParamField>

<ParamField body="Value.render" type="ReactElement<unknown, string | JSXElementConstructor<any>> | ComponentRenderFn<HTMLProps, SelectValueState>">
  Allows you to replace the component's HTML element
  with a different tag, or compose it with another component.

  Accepts a `ReactElement` or a function that returns the element to render.
</ParamField>

<ParamField body="Value.style" type="CSSProperties | ((state: SelectValueState) => CSSProperties | undefined)">
  Style applied to the element, or a function that
  returns a style object based on the component's state.
</ParamField>

### Select.Popup

<ParamField body="Popup.align" type="&#x22;center&#x22; | &#x22;start&#x22; | &#x22;end&#x22;" default="start">
  How to align the popup relative to the specified side.
</ParamField>

<ParamField body="Popup.alignItemWithTrigger" type="boolean" default="false">
  Whether the positioner overlaps the trigger so the selected item's text is aligned with the trigger's value text. This only applies to mouse input and is automatically disabled if there is not enough space.
</ParamField>

<ParamField body="Popup.alignOffset" type="number | OffsetFunction" default="0">
  Additional offset along the alignment axis in pixels.
  Also accepts a function that returns the offset to read the dimensions of the anchor
  and positioner elements, along with its side and alignment.

  The function takes a `data` object parameter with the following properties:

  * `data.anchor`: the dimensions of the anchor element with properties `width` and `height`.
  * `data.positioner`: the dimensions of the positioner element with properties `width` and `height`.
  * `data.side`: which side of the anchor element the positioner is aligned against.
  * `data.align`: how the positioner is aligned relative to the specified side.
</ParamField>

<ParamField body="Popup.anchor" type="Element | VirtualElement | RefObject<Element | null> | (() => Element | VirtualElement | null) | null">
  An element to position the popup against.
  By default, the popup will be positioned against the trigger.
</ParamField>

<ParamField body="Popup.className" type="string | ((state: SelectPopupState) => string | undefined)">
  CSS class applied to the element, or a function that
  returns a class based on the component's state.
</ParamField>

<ParamField body="Popup.container" type="HTMLElement | ShadowRoot | RefObject<HTMLElement | ShadowRoot | null> | null">
  Element the popup is portaled into. Defaults to the theme's portal
  container.
</ParamField>

<ParamField body="Popup.finalFocus" type="boolean | RefObject<HTMLElement | null> | ((closeType: InteractionType) => boolean | void | HTMLElement | null)">
  Determines the element to focus when the select popup is closed.

  * `false`: Do not move focus.
  * `true`: Move focus based on the default behavior (trigger or previously focused element).
  * `RefObject`: Move focus to the ref element.
  * `function`: Called with the interaction type (`mouse`, `touch`, `pen`, or `keyboard`).
    Return an element to focus, `true` to use the default behavior, or `false`/`undefined` to do nothing.
</ParamField>

<ParamField body="Popup.render" type="ReactElement<unknown, string | JSXElementConstructor<any>> | ComponentRenderFn<HTMLProps, SelectPopupState>">
  Allows you to replace the component's HTML element
  with a different tag, or compose it with another component.

  Accepts a `ReactElement` or a function that returns the element to render.
</ParamField>

<ParamField body="Popup.side" type="&#x22;top&#x22; | &#x22;bottom&#x22; | &#x22;left&#x22; | &#x22;right&#x22; | &#x22;inline-end&#x22; | &#x22;inline-start&#x22;" default="bottom">
  Which side of the anchor element to align the popup against.
  May automatically change to avoid collisions.
</ParamField>

<ParamField body="Popup.sideOffset" type="number | OffsetFunction" default="8">
  Distance between the anchor and the popup in pixels.
  Also accepts a function that returns the distance to read the dimensions of the anchor
  and positioner elements, along with its side and alignment.

  The function takes a `data` object parameter with the following properties:

  * `data.anchor`: the dimensions of the anchor element with properties `width` and `height`.
  * `data.positioner`: the dimensions of the positioner element with properties `width` and `height`.
  * `data.side`: which side of the anchor element the positioner is aligned against.
  * `data.align`: how the positioner is aligned relative to the specified side.
</ParamField>

<ParamField body="Popup.style" type="CSSProperties | ((state: SelectPopupState) => CSSProperties | undefined)">
  Style applied to the element, or a function that
  returns a style object based on the component's state.
</ParamField>

### Select.Item

<ParamField body="Item.className" type="string | ((state: SelectItemState) => string | undefined)">
  CSS class applied to the element, or a function that
  returns a class based on the component's state.
</ParamField>

<ParamField body="Item.description" type="ReactNode">
  Supporting text, placed according to `descriptionPlacement`.
</ParamField>

<ParamField body="Item.descriptionPlacement" type="&#x22;inline&#x22; | &#x22;end&#x22;" default="inline">
  Where the description renders: inline after the content or at the end of
  the row.
</ParamField>

<ParamField body="Item.disabled" type="boolean" default="false">
  Whether the component should ignore user interaction.
</ParamField>

<ParamField body="Item.endIcon" type="ReactNode">
  Icon rendered after the content.
</ParamField>

<ParamField body="Item.label" type="string">
  Specifies the text label to use when the item is matched during keyboard text navigation.

  Defaults to the item text content if not provided.
</ParamField>

<ParamField body="Item.nativeButton" type="boolean" default="false">
  Whether the component renders a native `<button>` element when replacing it
  via the `render` prop.
  Set to `true` if the rendered element is a native button.
</ParamField>

<ParamField body="Item.render" type="ReactElement<unknown, string | JSXElementConstructor<any>> | ComponentRenderFn<HTMLProps, SelectItemState>">
  Allows you to replace the component's HTML element
  with a different tag, or compose it with another component.

  Accepts a `ReactElement` or a function that returns the element to render.
</ParamField>

<ParamField body="Item.startIcon" type="ReactNode">
  Icon rendered before the content.
</ParamField>

<ParamField body="Item.style" type="CSSProperties | ((state: SelectItemState) => CSSProperties | undefined)">
  Style applied to the element, or a function that
  returns a style object based on the component's state.
</ParamField>

<ParamField body="Item.value" type="any" default="null">
  A unique value that identifies this select item.
</ParamField>

### Select.Group

<ParamField body="Group.className" type="string | ((state: SelectGroupState) => string | undefined)">
  CSS class applied to the element, or a function that
  returns a class based on the component's state.
</ParamField>

<ParamField body="Group.render" type="ReactElement<unknown, string | JSXElementConstructor<any>> | ComponentRenderFn<HTMLProps, SelectGroupState>">
  Allows you to replace the component's HTML element
  with a different tag, or compose it with another component.

  Accepts a `ReactElement` or a function that returns the element to render.
</ParamField>

<ParamField body="Group.style" type="CSSProperties | ((state: SelectGroupState) => CSSProperties | undefined)">
  Style applied to the element, or a function that
  returns a style object based on the component's state.
</ParamField>

### Select.GroupLabel

<ParamField body="GroupLabel.className" type="string | ((state: SelectGroupLabelState) => string | undefined)">
  CSS class applied to the element, or a function that
  returns a class based on the component's state.
</ParamField>

<ParamField body="GroupLabel.render" type="ReactElement<unknown, string | JSXElementConstructor<any>> | ComponentRenderFn<HTMLProps, SelectGroupLabelState>">
  Allows you to replace the component's HTML element
  with a different tag, or compose it with another component.

  Accepts a `ReactElement` or a function that returns the element to render.
</ParamField>

<ParamField body="GroupLabel.style" type="CSSProperties | ((state: SelectGroupLabelState) => CSSProperties | undefined)">
  Style applied to the element, or a function that
  returns a style object based on the component's state.
</ParamField>

### Select.Separator

<ParamField body="Separator.className" type="string | ((state: SelectSeparatorState) => string | undefined)">
  CSS class applied to the element, or a function that
  returns a class based on the component's state.
</ParamField>

<ParamField body="Separator.orientation" type="&#x22;horizontal&#x22; | &#x22;vertical&#x22;" default="horizontal">
  The orientation of the separator.
</ParamField>

<ParamField body="Separator.render" type="ReactElement<unknown, string | JSXElementConstructor<any>> | ComponentRenderFn<HTMLProps, SelectSeparatorState>">
  Allows you to replace the component's HTML element
  with a different tag, or compose it with another component.

  Accepts a `ReactElement` or a function that returns the element to render.
</ParamField>

<ParamField body="Separator.style" type="CSSProperties | ((state: SelectSeparatorState) => CSSProperties | undefined)">
  Style applied to the element, or a function that
  returns a style object based on the component's state.
</ParamField>
