Fixed #2186 - Calendar input value added blur event

This commit is contained in:
Tuğçe Küçükoğlu 2022-02-18 11:00:08 +03:00 committed by Tuğçe Küçükoğlu
parent a90690a115
commit d2fc2d2bca
4 changed files with 25 additions and 7 deletions

View file

@ -349,9 +349,14 @@ const CalendarEvents = [
description: "Callback to invoke on blur of input field.",
arguments: [
{
name: "event",
name: "event.originalEvent",
type: "object",
description: "Blur event"
description: "Browser event"
},
{
name: "event.value",
type: "string",
description: "Input value"
}
]
},