Fixed #1234 - Add input, focus, blur events for InputSwitch

This commit is contained in:
Cagatay Civici 2021-08-25 09:30:41 +03:00
parent 51976dacda
commit b13d8d517f
4 changed files with 37 additions and 5 deletions

View file

@ -27,6 +27,18 @@ const InputSwitchEvents = [
{
name: "change",
description: "Callback to invoke on value change."
},
{
name: "input",
description: "Callback to invoke on value change."
},
{
name: "focus",
description: "Callback to invoke when element receives focus."
},
{
name: "blur",
description: "Callback to invoke when element loses focus."
}
];