Hey,
I’m trying to use the “large textarea with buttons” which I can define in fields in a blueprint which uses layouts. As far as I can see, the layout only accepts fieldsets, which in turn doesn’t know the textarea, only the single line “text” fieldset.
I’d like to extend this blueprint with the layout component. It looks like I can’t combine sections and layout either, but that’s fine.
columns:
main:
width: 2/3
sections:
fields:
type: fields
fields:
banner:
type: files
label: Banner
multiple: false
text:
type: textarea
size: huge
media:
type: blocks
size: huge
fieldsets:
- maps
- text
- image
- gallery
- heading
I’d like to achieve something like this:
columns:
main:
width: 2/3
fields:
layout:
type: layout
layouts:
- "1/1"
- "1/2, 1/2"
- "1/4, 1/4, 1/4, 1/4"
- "1/1, 1/3, 2/3"
- "1/1, 2/3, 1/3"
- "1/2, 1/2, 1/3, 1/3, 1/3"
fieldsets:
- maps
- image
- gallery
- heading
# wishful thinking starts here
- text:
label: text
type: textarea
Is this possible to achieve by default and I’m just bad with yml or do I need to extend something?
Thanks for your help!