UNPKG

lucid-ui

Version:

A UI component library from Xandr.

16 lines 622 B
"use strict"; /* * Follows the Keyboard event matrix at: * https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent/keyCode */ Object.defineProperty(exports, "__esModule", { value: true }); exports.ArrowDown = exports.ArrowRight = exports.ArrowUp = exports.ArrowLeft = exports.Space = exports.Escape = exports.Enter = exports.Tab = void 0; exports.Tab = 0x09; // 9 exports.Enter = 0x0d; // 13 exports.Escape = 0x1b; // 27 exports.Space = 0x20; // 32 exports.ArrowLeft = 0x25; // 37 exports.ArrowUp = 0x26; // 38 exports.ArrowRight = 0x27; // 39 exports.ArrowDown = 0x28; // 40 //# sourceMappingURL=key-code.js.map