ObjectUIObjectUI

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;
}

On this page