2021-05-12 09:35:29 +00:00
|
|
|
const InputSwitchProps = [
|
|
|
|
{
|
|
|
|
name: "modelValue",
|
|
|
|
type: "boolean",
|
|
|
|
default: "null",
|
|
|
|
description: "Specifies whether a inputswitch should be checked or not."
|
2021-06-14 14:03:46 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "class",
|
|
|
|
type: "string",
|
|
|
|
default: "null",
|
|
|
|
description: "Style class of the component."
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "style",
|
|
|
|
type: "any",
|
|
|
|
default: "null",
|
|
|
|
description: "Inline of the component."
|
2021-08-25 06:53:23 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "trueValue",
|
|
|
|
type: "any",
|
2022-02-11 07:20:00 +00:00
|
|
|
default: "null",
|
2021-08-25 06:53:23 +00:00
|
|
|
description: "Value in checked state."
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "falseValue",
|
|
|
|
type: "any",
|
2022-02-11 07:20:00 +00:00
|
|
|
default: "null",
|
2021-08-25 06:53:23 +00:00
|
|
|
description: "Value in unchecked state."
|
2021-06-14 14:03:46 +00:00
|
|
|
}
|
|
|
|
];
|
|
|
|
|
|
|
|
const InputSwitchEvents = [
|
|
|
|
{
|
|
|
|
name: "click",
|
|
|
|
description: "Callback to invoke on click."
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "change",
|
|
|
|
description: "Callback to invoke on value change."
|
2021-08-25 06:30:41 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "input",
|
|
|
|
description: "Callback to invoke on value change."
|
2021-05-12 09:35:29 +00:00
|
|
|
}
|
|
|
|
];
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
inputswitch: {
|
|
|
|
name: "InputSwitch",
|
|
|
|
description: "InputSwitch is used to select a boolean value.",
|
2021-06-14 14:03:46 +00:00
|
|
|
props: InputSwitchProps,
|
|
|
|
events: InputSwitchEvents
|
2021-05-12 09:35:29 +00:00
|
|
|
}
|
|
|
|
};
|