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

    A custom dropdown that renders an outlined button with a chevron indicator. Clicking the button opens a popover (no arrow pointer) containing a list of selectable options.

    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.