Skip to main content

Starwind UI v1.3.1 is now available! Get started

Select

Installation

Usage

Basic Select

The most basic select component consists of a trigger, value display, and content with items.

With Groups and Labels

Group related items together and add labels for better organization.

Positioning

You can control the position of the select dropdown using the side and sideOffset props on SelectContent.

Disabled State

You can disable the select trigger or individual items.

Event Handling

The select component emits a starwind-select:change event when a selection is made. The selected value can be accessed through event.detail.value.

<Select>
<SelectTrigger class="w-[180px]">
<SelectValue placeholder="Select option" />
</SelectTrigger>
<SelectContent>
<SelectItem value="1">Option 1</SelectItem>
<SelectItem value="2">Option 2</SelectItem>
</SelectContent>
</Select>
<script>
document.querySelector('.starwind-select')?.addEventListener('starwind-select:change', (event) => {
console.log('Selected value:', event.detail.value);
});
</script>

API Reference

Select

The root component that manages the select state. Accepts all standard HTML div attributes.

SelectTrigger

The button that toggles the select dropdown. Renders a native button element and accepts all standard HTML <button> attributes except role and type which are managed internally.

PropTypeDefault
requiredbooleanfalse
disabledbooleanfalse

SelectContent

The dropdown content that appears when the select is open.

PropTypeDefault
animationDurationnumber150
side"top" | "bottom""bottom"
sideOffsetnumber4

This component also accepts all standard HTML div attributes.

SelectItem

An item that can be selected. Requires a value prop.

PropTypeDefault
valuestring-
disabledbooleanfalse

This component also accepts all standard HTML div attributes.

SelectValue

The component that displays the selected value or placeholder text in the trigger.

PropTypeDefault
placeholderstring"select"

This component accepts all standard HTML span attributes.

SelectGroup

A component used to group related select items together. Currently serves as a semantic wrapper for grouping items.

SelectLabel

A label component used to give a title to a group of items. This component accepts all standard HTML div attributes.

SelectSeparator

A visual separator that can be used between select items. This component accepts all standard HTML div attributes.

Changelog

v1.1.0

  • tailwind-variants now implemented. This uses tailwind-merge under the hood to merge Tailwind classes without style conflicts, allowing you to override any existing classes using the “class” prop.