Skip to content

Commit 99adbb2

Browse files
committed
released v3.13.12 #515
1 parent afa1bae commit 99adbb2

File tree

6 files changed

+23
-8
lines changed

6 files changed

+23
-8
lines changed

dist/hotkeys.common.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**!
2-
* hotkeys-js v3.13.11
2+
* hotkeys-js v3.13.12
33
* A simple micro-library for defining and dispatching keyboard shortcuts. It has no dependencies.
44
*
55
* Copyright (c) 2025 kenny wong <[email protected]>
@@ -80,6 +80,11 @@ const _keyMap = {
8080
up: 38,
8181
right: 39,
8282
down: 40,
83+
/// https://w3c.github.io/uievents/#events-keyboard-key-location
84+
arrowup: 38,
85+
arrowdown: 40,
86+
arrowleft: 37,
87+
arrowright: 39,
8388
del: 46,
8489
delete: 46,
8590
ins: 45,

dist/hotkeys.common.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/hotkeys.esm.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**!
2-
* hotkeys-js v3.13.11
2+
* hotkeys-js v3.13.12
33
* A simple micro-library for defining and dispatching keyboard shortcuts. It has no dependencies.
44
*
55
* Copyright (c) 2025 kenny wong <[email protected]>
@@ -78,6 +78,11 @@ const _keyMap = {
7878
up: 38,
7979
right: 39,
8080
down: 40,
81+
/// https://w3c.github.io/uievents/#events-keyboard-key-location
82+
arrowup: 38,
83+
arrowdown: 40,
84+
arrowleft: 37,
85+
arrowright: 39,
8186
del: 46,
8287
delete: 46,
8388
ins: 45,

dist/hotkeys.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**!
2-
* hotkeys-js v3.13.11
2+
* hotkeys-js v3.13.12
33
* A simple micro-library for defining and dispatching keyboard shortcuts. It has no dependencies.
44
*
55
* Copyright (c) 2025 kenny wong <[email protected]>
@@ -84,6 +84,11 @@
8484
up: 38,
8585
right: 39,
8686
down: 40,
87+
/// https://w3c.github.io/uievents/#events-keyboard-key-location
88+
arrowup: 38,
89+
arrowdown: 40,
90+
arrowleft: 37,
91+
arrowright: 39,
8792
del: 46,
8893
delete: 46,
8994
ins: 45,

0 commit comments

Comments
 (0)