Hi @SurabhiAc3 Over here you can create your own component and in the component definition, adjust the components to be shown to the author to avoid confusion with the multiple components.
{
"component": "select",
"label": "Option Type",
"name": "filterForm_optionType",
"valueType": "string",
"options": [
{ "name": "Option1", "value": "option1" },
{ "name": "Option2", "value": "option2" },
{ "name": "Option3", "value": "Option3" }
]
}
}
Followed by the retrieval logic in javascript file. Over here in the decorate function, we can get the value authored
export default async function decorate(){
const [optionTypeEl] = block.children[0];
}
In the above syntax the block.children[0] might vary based on the structure created in your project.
Thanks