62 lines
1.4 KiB
JavaScript
62 lines
1.4 KiB
JavaScript
const ToggleButtonProps = [
|
|
{
|
|
name: "modelValue",
|
|
type: "any",
|
|
default: "null",
|
|
description: "Value of the component."
|
|
},
|
|
{
|
|
name: "onIcon",
|
|
type: "string",
|
|
default: "null",
|
|
description: "Icon for the on state."
|
|
},
|
|
{
|
|
name: "offIcon",
|
|
type: "string",
|
|
default: "null",
|
|
description: "Icon for the off state."
|
|
},
|
|
{
|
|
name: "onLabel",
|
|
type: "string",
|
|
default: "yes",
|
|
description: "Label for the on state."
|
|
},
|
|
{
|
|
name: "offLabel",
|
|
type: "string",
|
|
default: "no",
|
|
description: "Label for the off state."
|
|
},
|
|
{
|
|
name: "iconPos",
|
|
type: "string",
|
|
default: "left",
|
|
description: 'Position of the icon, valid values are "left" and "right".'
|
|
}
|
|
];
|
|
|
|
const ToggleButtonEvents = [
|
|
{
|
|
name: "change",
|
|
description: "Callback to invoke on value change.",
|
|
arguments: [
|
|
{
|
|
name: "event",
|
|
type: "object",
|
|
description: "Browser event"
|
|
}
|
|
]
|
|
}
|
|
];
|
|
|
|
module.exports = {
|
|
togglebutton: {
|
|
name: "ToggleButton",
|
|
description: "ToggleButton is used to select a boolean value using a button.",
|
|
props: ToggleButtonProps,
|
|
events: ToggleButtonEvents
|
|
}
|
|
};
|