Accessibility for ToggleButton

This commit is contained in:
Tuğçe Küçükoğlu 2022-07-06 16:41:58 +03:00
parent 9368b036a5
commit b18b6f0858
5 changed files with 122 additions and 14 deletions

View file

@ -48,6 +48,28 @@ const ToggleButtonEvents = [
description: "Browser event"
}
]
},
{
name: "focus",
description: "Callback to invoke when the component receives focus.",
arguments: [
{
name: "event",
type: "object",
description: "Browser event"
}
]
},
{
name: "blur",
description: "Callback to invoke when the component loses focus.",
arguments: [
{
name: "event",
type: "object",
description: "Browser event"
}
]
}
];