Fixed #1748 - New change event for SelectButton

This commit is contained in:
Tuğçe Küçükoğlu 2021-11-12 16:10:50 +03:00
parent f2b9b8dd38
commit 3d343c9cdd
4 changed files with 25 additions and 1 deletions

View file

@ -56,6 +56,22 @@ const SelectButtonProps = [
];
const SelectButtonEvents = [
{
name: "change",
description: "Callback to invoke on value change.",
arguments: [
{
name: "event.originalEvent",
type: "object",
description: "Browser event"
},
{
name: "event.value",
type: "any",
description: "Single value or an array of values that are selected."
}
]
},
{
name: "focus",
description: "Callback to invoke on focus.",