Interface DOMKeyboardDriverGroupOptions

Options used for creating a new DOMKeyboardDriverGroup.

interface DOMKeyboardDriverGroupOptions {
    domElem: HTMLElement;
    listenToKeys?: boolean;
    selectable?: true;
    wrapsAround: boolean;
}

Hierarchy (view full)

Properties

domElem: HTMLElement
listenToKeys?: boolean

If true (the default), event listeners will be added to listen for keys. If false, then the group will not listen for key presses, but will still keep the focsu as-is.

selectable
wrapsAround: boolean