Select

Display a dropdown list of items.

The Select contain an additional Hooks, see subsection useModal for details.

General

Basic usage.

Type

Differentiate states by color.

Disabled

Disable all options.

Disabled Option

disable specified options.

Without Icon

Hide icon on right.

Labels

show data as a group.

Divider

Multiple

Select supports multiple values to be selected.

Multiple without clear

Select supports multiple values to be selected without the clear icon.

Compose

Use with other components.

Over width

Option to show more text with adaptive width.

Set parent element

you can specify the container for drop-down box rendering.

APIs

Select.Props

AttributeDescriptionTypeAccepted valuesDefault
valueselected valuestring, string[]--
initialValueinitial valuestring, string[]--
placeholderplaceholder stringstring--
widthcss width value of selectstring-initial
typecurrent typeSelectTypesSelectTypesdefault
iconicon componentComponentType-SVG Component
pureremove icon componentboolean-false
multiplesupport multiple selectionboolean-false
clearableadd clear icon on multiple selection (ignored otherwise)boolean-true
disableddisable current radioboolean-false
onChangeselected value(val: string | string[]) => void --
dropdownClassNameclassName of dropdown menustring--
dropdownStylestyle of dropdown menuobject--
disableMatchWidthdisable Option from follow Select widthboolean-false
getPopupContainerdropdown render parent element, the default is body() => HTMLElement--
onDropdownVisibleChangedropdown change events(visible: boolean) => void--
refforwardRefSelectRefSelectRef-
...native propsHTMLAttributes'name', 'alt', ...-

Select.Option.Props

AttributeDescriptionTypeAccepted valuesDefault
value(required)unique ident valuestring--
disableddisable current optionboolean-false
dividerdisplay a lineboolean-false
labeldisplay a group titleboolean-false
...native propsHTMLAttributes'name', 'id', ...-

SelectRef

type SelectRef = {
  focus: () => void
  blur: () => void
  scrollTo?: (options?: ScrollToOptions) => void
}

SelectTypes

type SelectTypes = 'default' | 'secondary' | 'success' | 'warning' | 'error'