Adds more functionality to the schema group property.
Example usage:
groups: [
{
key: "custom_group",
label: "Custom group", // Custom label
collapsable: true, // Set to true to make group collapsable
collapsed: true, // Set to true to make group collapsed by default
},
],
schema: [
{
prop: "custom_group_prop",
label: "Some custom group prop",
type: "number",
responsive: true,
group: "custom_group", // Set group to custom group key
},
This change adds collapse functionality, but still works with original group: 'key' behavior.
Description:
Adds more functionality to the schema
group
property.Example usage:
This change adds collapse functionality, but still works with original
group: 'key'
behavior.