Rocky_Mountain_Vending/.pnpm-store/v10/files/d6/29088b4a9137eec11be6bb550da0246a1e04787efa3588afa49c79db8385791d559aa006ba6098b80b96739a6768177788d4a36f471766e7d95cf783d5b357
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

22 lines
No EOL
742 B
Text

// Copyright (c) 2020 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
export const ENTER_KEY = 'Enter';
export const ESCAPE_KEY = 'Escape';
export const TAB_KEY = 'Tab';
export const ARROW_KEYS = new Set([
"ArrowUp" /* ArrowKey.UP */,
"ArrowDown" /* ArrowKey.DOWN */,
"ArrowLeft" /* ArrowKey.LEFT */,
"ArrowRight" /* ArrowKey.RIGHT */,
]);
export function keyIsArrowKey(key) {
return ARROW_KEYS.has(key);
}
export function isEscKey(event) {
return event.key === 'Escape';
}
export function isEnterOrSpaceKey(event) {
return event.key === 'Enter' || event.key === ' ';
}
//# sourceMappingURL=KeyboardUtilities.js.map