@theredhead — Frontend Library - v1.0.0
    Preparing search index...

    A standalone value-picker control — an outlined trigger button that opens a popover list of selectable options. The trigger label updates to reflect the current selection.

    This is a bare form control, not a toolbar tool. Use it directly in forms, filter bars, or any layout outside a <ui-toolbar>.

    • For toolbar integration use UISelectTool, which wraps this component and wires it into the toolbar's toolAction event system.
    • For a command menu (fixed trigger label, no persistent selection) use UIDropdownTool inside a toolbar instead.

    API-compatible with UISelect — uses the same SelectOption items and two-way value binding.

    <ui-dropdown-list
    [options]="fieldOptions"
    [(value)]="selectedField"
    ariaLabel="Choose field"
    />
    Index

    Constructors

    Properties

    ariaLabel: InputSignal<string | undefined> = ...

    Accessible label forwarded to the trigger button.

    Required when no visible <label> is associated with the control.

    disabled: InputSignal<boolean> = ...

    Whether the control is disabled.

    options: InputSignal<readonly SelectOption[]> = ...

    Available options.

    placeholder: InputSignal<string> = ...

    Placeholder text shown when no value is selected.

    value: ModelSignal<string> = ...

    Currently selected value (two-way bindable via [(value)]).

    valueChange: ModelSignal<string> = ...

    Emits the selected value when the user picks an option.