This commit is contained in:
Tuğçe Küçükoğlu 2021-05-12 12:35:29 +03:00
parent 367d4a5f14
commit 8681911998
92 changed files with 7793 additions and 2 deletions

View file

@ -0,0 +1,61 @@
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
}
};