ComponentsForm
Select
Dropdown selection from a list of options
Examples
Basic Select
With Placeholder
Schema
interface SelectSchema {
type: 'select';
name?: string;
label?: string;
options: { label: string; value: string | number }[];
placeholder?: string;
required?: boolean;
disabled?: boolean | string | { dialect?: string; source: string }; // boolean, predicate expression, or CEL envelope
}