/**
A Groupbox displays controls as a vertically stacked group.
A header may be added by placing an onyx.GroupboxHeader as the first control in the Groupbox.
{kind: "onyx.Groupbox", components: [
{kind: "onyx.GroupboxHeader", content: "Sounds"},
{components: [
{content: "System Sounds"},
{kind: "onyx.ToggleButton", value: true}
]},
{kind: "onyx.InputDecorator", components: [
{kind: "onyx.Input"}
]}
]}
]}
*/
enyo.kind({
name: "onyx.Groupbox",
classes: "onyx-groupbox"
});
/**
A GroupboxHeader is designed to be placed inside an onyx.Groupbox. When a header for a group is desired,
make a GroupboxHeader the first control inside a Groupbox.
{kind: "onyx.Groupbox", components: [
{kind: "onyx.GroupboxHeader", content: "Sounds"},
{content: "Yawn"},
{content: "Beep"}
]}
*/
enyo.kind({
name: "onyx.GroupboxHeader",
classes: "onyx-groupbox-header"
});