@onjmin/dtm
    Preparing search index...

    Type Alias PresetSelectInstance

    type PresetSelectInstance = {
        destroy: () => void;
        element: HTMLElement;
        getValue: () => string;
        select: HTMLSelectElement;
        setValue: (presetKey: string) => void;
    }
    Index

    Properties

    destroy: () => void

    UIを破棄する。

    element: HTMLElement

    生成したUIのルート要素(ラベル+select を内包)。

    getValue: () => string

    現在の選択プリセットキーを返す。

    select: HTMLSelectElement

    select 要素そのもの。

    setValue: (presetKey: string) => void

    選択値を変更する(changeイベントは発火しない)。