Users can make a selection from a predefined list of options.
The typeOptions
must be defined for this VCC to work correctly.
{
"key": "mySelect",
"name": "My Select",
"description": "This is my sample select",
"type": "select",
"typeOptions": {
"placeholder": "Choose an option...",
"options": [
{ "value": "one", "label": "Value one" },
{ "value": "two", "label": "Value two" },
{ "value": "three", "label": "Value three" }
]
}
}