StellarUI

<stellar-combobox-item>

Properties

Preview

Markup

Copy
<stellar-combobox-item
  value="luna"
  selected
>
  Luna
  <span slot="description">Confident explorer with bright green eyes.
</span>
</stellar-combobox-item>

API

Complete props, events, slots, and implementation notes for the shipped combobox item.

Props

PropTypeDefaultNotes
labelstring''
descriptionstring''
valuestring''
selectedbooleanfalse
disabledbooleanfalse

Events

EventSourceNotes

Slots

SlotNotes
defaultMain label content for the option row.
descriptionOptional helper copy shown below the label.

Notes

  • `stellar-combobox-item` is the option primitive used by `stellar-combobox`.
  • The combobox controller owns popup state, filtering, active movement, and committed selection.
  • Item rows support rich default slot content and an optional `description` slot for secondary copy.
  • `value` should stay stable so keyboard selection and host value syncing remain deterministic.