3.1.3
Composable groups
You can now create multiple composable content editors for a single record by utilising groups.
This is a BREAKING CHANGE and will require action when upgrading a Koi project that uses composable content.
The crud config for composable content now requires top-level group name.
Before:
composable: {
:component1,
:component2,
}Now:
composable: {
main: [
:component1,
:component2,
]
}