Fixed #2235 - Added InputNumber focus and blur events

This commit is contained in:
Tuğçe Küçükoğlu 2022-03-01 12:45:08 +03:00 committed by Tuğçe Küçükoğlu
parent 1dde367cee
commit aba41078f9
4 changed files with 72 additions and 4 deletions

View file

@ -173,6 +173,33 @@ const InputNumberEvents = [
description: "New value"
}
]
},
{
name: "focus",
description: "Callback to invoke on focus of input field.",
arguments: [
{
name: "event",
type: "object",
description: "Focus event"
}
]
},
{
name: "blur",
description: "Callback to invoke on blur of input field.",
arguments: [
{
name: "event.originalEvent",
type: "object",
description: "Browser event"
},
{
name: "event.value",
type: "string",
description: "Input value"
}
]
}
];