Option definition for enumerated configuration properties.
Represents a single selectable option with a display label and internal value. Used for configuration properties that have predefined valid values.
const optionsList: OptionsType[] = [ { label: 'Low Speed', value: 'low' }, { label: 'Medium Speed', value: 'medium' }, { label: 'High Speed', value: 'high' }]; Copy
const optionsList: OptionsType[] = [ { label: 'Low Speed', value: 'low' }, { label: 'Medium Speed', value: 'medium' }, { label: 'High Speed', value: 'high' }];
The internal value used by the system
The human-readable display label
Option definition for enumerated configuration properties.
Represents a single selectable option with a display label and internal value. Used for configuration properties that have predefined valid values.
Example: Basic Options