@inkline/inkline
Version:
Inkline is the intuitive UI Components library that gives you a developer-friendly foundation for building high-quality, accessible, and customizable Vue.js 3 Design Systems.
16 lines (15 loc) • 372 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.keymap = void 0;
const keymap = exports.keymap = {
tab: ["Tab", 9],
enter: ["Enter", 13],
esc: ["Escape", 27],
space: [" ", "Space", 32],
left: ["ArrowLeft", "Left", 37],
up: ["ArrowUp", "Up", 38],
right: ["ArrowRight", "Right", 39],
down: ["ArrowDown", "Down", 40]
};