@geneui/components
Version:
The Gene UI components library designed for BI tools
21 lines (19 loc) • 403 B
JavaScript
const actionTypes = {
add: 'add',
edit: 'edit',
delete: 'delete'
};
const keyDownKeys = {
space: ' ',
enter: 'Enter',
escape: 'Escape',
arrowDown: 'ArrowDown',
arrowUp: 'ArrowUp',
arrowLeft: 'ArrowLeft',
arrowRight: 'ArrowRight',
backspace: 'Backspace',
delete: 'Delete',
tab: 'Tab'
};
const SPACE_HEIGHT = 8;
export { SPACE_HEIGHT as S, actionTypes as a, keyDownKeys as k };