v3.0: Reapply fix for checkbox issue per #855

This commit is contained in:
Francisco Hodge 2021-03-16 22:02:15 -04:00
parent 82abc2b3ee
commit b518b6b7a0

View File

@ -44,7 +44,7 @@ export type CandidateBoxRenderParams = {
}
export type KeyboardElement = HTMLDivElement | HTMLButtonElement;
export type KeyboardHandlerEvent = PointerEvent & TouchEvent & KeyboardEvent & { target: HTMLDivElement | HTMLInputElement };
export type KeyboardHandlerEvent = PointerEvent & TouchEvent & KeyboardEvent & { target: HTMLDivElement & HTMLInputElement };
export interface KeyboardButtonElements {
[key: string]: KeyboardElement[]