<baht-select>
Single-choice dropdown from field.options. Renders its own listbox (light DOM, tokens) instead of the native <select> — identical on iOS/macOS, no OS picker. APG select-only combobox: arrows, Home/End, Enter/Space, Escape, type-to-select.
Basic
Events (name)
<baht-select></baht-select>
<script>
const el = document.querySelector('baht-select');
el.field = {
"order": 1,
"type": "dropdown",
"key": "plan",
"label": "Plan",
"placeholder": "Choose a plan",
"options": [
{
"key": "free",
"label": "Free"
},
{
"key": "pro",
"label": "Pro, ฿20/mo"
},
{
"key": "team",
"label": "Team"
}
]
};
el.value = null;
</script>| Name | Type | Default | Description |
|---|---|---|---|
fieldJS | FieldDescriptor | — | Field spec: { order, type, key, label?, placeholder?, options?, … } |
valueJS | unknown | null | Controlled value. Re-feed on every baht-input |
disabled | boolean | false | Disable the control |
readonly | boolean | false | Read-only |
required | boolean | false | Show required mark |
show-optional | boolean | false | Append the localized "(optional)" marker to the label when not required (set by <baht-form show-optional>). |
errorJS | string | null | null | Validation message to display |
debounce | number | undefined | — | Debounce for typed edits (ms); unset = BahtFieldBase.defaultDebounce. |
Events
Section titled “Events”| Event | detail | Description |
|---|---|---|
name | CustomEvent | |
baht-input | { key, value } | Fired on every user edit |