Dropdown
Last updated
Was this helpful?
Last updated
Was this helpful?
Was this helpful?
params: [
{
name: 'heading',
type: 'dropdown',
label: 'Heading',
description: 'Heading tag',
options: {
oneline: true // title and droplist in one-line
values: {
h1: 'Heading h1',
h2: 'Heading h2',
h3: 'Heading h3'
}
},
}
]params: [
{
name: 'heading',
type: 'dropdown',
label: 'Heading',
description: 'Heading tag',
value: 'h1',
options: {
values: [
{
title: 'Group 1',
values:{
value: 'Label',
value2: 'Label 2',
}
},
{
title: 'Group 2',
values:{
value3: 'Label 3',
value4: 'Label 4',
}
},
],
oneline: true
},
}
]