From dc65414e283a19d1b62bde0aea9bb69b2bf46eec Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 3 Mar 2026 14:02:37 +0000 Subject: [PATCH] ci: Version Packages --- .changeset/fix-dead-key-fallback.md | 11 ---- examples/preact/useHeldKeys/package.json | 4 +- examples/preact/useHotkey/package.json | 4 +- .../preact/useHotkeyRecorder/package.json | 4 +- .../preact/useHotkeySequence/package.json | 4 +- examples/preact/useKeyhold/package.json | 4 +- examples/react/useHeldKeys/package.json | 4 +- examples/react/useHotkey/package.json | 4 +- examples/react/useHotkeyRecorder/package.json | 4 +- examples/react/useHotkeySequence/package.json | 4 +- examples/react/useKeyhold/package.json | 4 +- examples/solid/createHeldKeys/package.json | 4 +- examples/solid/createHotkey/package.json | 4 +- .../solid/createHotkeyRecorder/package.json | 4 +- .../solid/createHotkeySequence/package.json | 4 +- examples/solid/createKeyHold/package.json | 4 +- packages/hotkeys-devtools/CHANGELOG.md | 7 +++ packages/hotkeys-devtools/package.json | 2 +- packages/hotkeys/CHANGELOG.md | 12 ++++ packages/hotkeys/package.json | 2 +- packages/preact-hotkeys-devtools/CHANGELOG.md | 8 +++ packages/preact-hotkeys-devtools/package.json | 2 +- packages/preact-hotkeys/CHANGELOG.md | 8 +++ packages/preact-hotkeys/package.json | 2 +- packages/react-hotkeys-devtools/CHANGELOG.md | 7 +++ packages/react-hotkeys-devtools/package.json | 2 +- packages/react-hotkeys/CHANGELOG.md | 7 +++ packages/react-hotkeys/package.json | 2 +- packages/solid-hotkeys-devtools/CHANGELOG.md | 7 +++ packages/solid-hotkeys-devtools/package.json | 2 +- packages/solid-hotkeys/CHANGELOG.md | 7 +++ packages/solid-hotkeys/package.json | 2 +- pnpm-lock.yaml | 60 +++++++++---------- 33 files changed, 131 insertions(+), 79 deletions(-) delete mode 100644 .changeset/fix-dead-key-fallback.md create mode 100644 packages/preact-hotkeys-devtools/CHANGELOG.md create mode 100644 packages/preact-hotkeys/CHANGELOG.md diff --git a/.changeset/fix-dead-key-fallback.md b/.changeset/fix-dead-key-fallback.md deleted file mode 100644 index cecfaf6..0000000 --- a/.changeset/fix-dead-key-fallback.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -'@tanstack/hotkeys': patch ---- - -fix: handle dead keys in `matchesKeyboardEvent` - -When `event.key` is `'Dead'` (length 4), the existing `event.code` fallback—gated behind `eventKey.length === 1`—was never reached, causing hotkeys to silently fail. - -This most commonly affects macOS, where `Option+letter` combinations like `Option+E`, `Option+I`, `Option+U`, and `Option+N` produce dead keys for accent composition. It also affects Windows and Linux users with international keyboard layouts (e.g., US-International, German, French) where certain key combinations produce dead keys. - -Added an early check: when `event.key` normalizes to `'Dead'`, immediately fall back to `event.code` to extract the physical key via the `Key*`/`Digit*` prefixes. Punctuation dead keys (e.g., `'` on US-International, where `event.code` is `'Quote'`) correctly return `false` since their codes don't match letter or digit patterns. diff --git a/examples/preact/useHeldKeys/package.json b/examples/preact/useHeldKeys/package.json index 0f88274..2063943 100644 --- a/examples/preact/useHeldKeys/package.json +++ b/examples/preact/useHeldKeys/package.json @@ -11,13 +11,13 @@ "test:types": "tsc" }, "dependencies": { - "@tanstack/preact-hotkeys": "^0.3.0", + "@tanstack/preact-hotkeys": "^0.3.1", "preact": "^10.27.2" }, "devDependencies": { "@preact/preset-vite": "^2.10.2", "@tanstack/preact-devtools": "0.9.6", - "@tanstack/preact-hotkeys-devtools": "^0.3.0", + "@tanstack/preact-hotkeys-devtools": "^0.3.1", "typescript": "5.9.3", "vite": "^7.3.1" } diff --git a/examples/preact/useHotkey/package.json b/examples/preact/useHotkey/package.json index 1c27c64..1d4b500 100644 --- a/examples/preact/useHotkey/package.json +++ b/examples/preact/useHotkey/package.json @@ -11,13 +11,13 @@ "test:types": "tsc" }, "dependencies": { - "@tanstack/preact-hotkeys": "^0.3.0", + "@tanstack/preact-hotkeys": "^0.3.1", "preact": "^10.27.2" }, "devDependencies": { "@preact/preset-vite": "^2.10.2", "@tanstack/preact-devtools": "0.9.6", - "@tanstack/preact-hotkeys-devtools": "^0.3.0", + "@tanstack/preact-hotkeys-devtools": "^0.3.1", "typescript": "5.9.3", "vite": "^7.3.1" } diff --git a/examples/preact/useHotkeyRecorder/package.json b/examples/preact/useHotkeyRecorder/package.json index e001405..94461bf 100644 --- a/examples/preact/useHotkeyRecorder/package.json +++ b/examples/preact/useHotkeyRecorder/package.json @@ -11,13 +11,13 @@ "test:types": "tsc" }, "dependencies": { - "@tanstack/preact-hotkeys": "^0.3.0", + "@tanstack/preact-hotkeys": "^0.3.1", "preact": "^10.27.2" }, "devDependencies": { "@preact/preset-vite": "^2.10.2", "@tanstack/preact-devtools": "0.9.6", - "@tanstack/preact-hotkeys-devtools": "^0.3.0", + "@tanstack/preact-hotkeys-devtools": "^0.3.1", "typescript": "5.9.3", "vite": "^7.3.1" } diff --git a/examples/preact/useHotkeySequence/package.json b/examples/preact/useHotkeySequence/package.json index adf94b1..ddc3044 100644 --- a/examples/preact/useHotkeySequence/package.json +++ b/examples/preact/useHotkeySequence/package.json @@ -11,13 +11,13 @@ "test:types": "tsc" }, "dependencies": { - "@tanstack/preact-hotkeys": "^0.3.0", + "@tanstack/preact-hotkeys": "^0.3.1", "preact": "^10.27.2" }, "devDependencies": { "@preact/preset-vite": "^2.10.2", "@tanstack/preact-devtools": "0.9.6", - "@tanstack/preact-hotkeys-devtools": "^0.3.0", + "@tanstack/preact-hotkeys-devtools": "^0.3.1", "typescript": "5.9.3", "vite": "^7.3.1" } diff --git a/examples/preact/useKeyhold/package.json b/examples/preact/useKeyhold/package.json index 2f863ce..d87dcda 100644 --- a/examples/preact/useKeyhold/package.json +++ b/examples/preact/useKeyhold/package.json @@ -11,13 +11,13 @@ "test:types": "tsc" }, "dependencies": { - "@tanstack/preact-hotkeys": "^0.3.0", + "@tanstack/preact-hotkeys": "^0.3.1", "preact": "^10.27.2" }, "devDependencies": { "@preact/preset-vite": "^2.10.2", "@tanstack/preact-devtools": "0.9.6", - "@tanstack/preact-hotkeys-devtools": "^0.3.0", + "@tanstack/preact-hotkeys-devtools": "^0.3.1", "typescript": "5.9.3", "vite": "^7.3.1" } diff --git a/examples/react/useHeldKeys/package.json b/examples/react/useHeldKeys/package.json index 0c6359e..b4cf6c0 100644 --- a/examples/react/useHeldKeys/package.json +++ b/examples/react/useHeldKeys/package.json @@ -11,13 +11,13 @@ "test:types": "tsc" }, "dependencies": { - "@tanstack/react-hotkeys": "^0.3.0", + "@tanstack/react-hotkeys": "^0.3.1", "react": "^19.2.4", "react-dom": "^19.2.4" }, "devDependencies": { "@tanstack/react-devtools": "0.9.6", - "@tanstack/react-hotkeys-devtools": "^0.3.0", + "@tanstack/react-hotkeys-devtools": "^0.3.1", "@types/react": "^19.2.14", "@types/react-dom": "^19.2.3", "@vitejs/plugin-react": "^5.1.4", diff --git a/examples/react/useHotkey/package.json b/examples/react/useHotkey/package.json index 601f95e..fe81d54 100644 --- a/examples/react/useHotkey/package.json +++ b/examples/react/useHotkey/package.json @@ -11,13 +11,13 @@ "test:types": "tsc" }, "dependencies": { - "@tanstack/react-hotkeys": "^0.3.0", + "@tanstack/react-hotkeys": "^0.3.1", "react": "^19.2.4", "react-dom": "^19.2.4" }, "devDependencies": { "@tanstack/react-devtools": "0.9.6", - "@tanstack/react-hotkeys-devtools": "^0.3.0", + "@tanstack/react-hotkeys-devtools": "^0.3.1", "@types/react": "^19.2.14", "@types/react-dom": "^19.2.3", "@vitejs/plugin-react": "^5.1.4", diff --git a/examples/react/useHotkeyRecorder/package.json b/examples/react/useHotkeyRecorder/package.json index 865cc88..68c96ad 100644 --- a/examples/react/useHotkeyRecorder/package.json +++ b/examples/react/useHotkeyRecorder/package.json @@ -11,13 +11,13 @@ "test:types": "tsc" }, "dependencies": { - "@tanstack/react-hotkeys": "^0.3.0", + "@tanstack/react-hotkeys": "^0.3.1", "react": "^19.2.4", "react-dom": "^19.2.4" }, "devDependencies": { "@tanstack/react-devtools": "0.9.6", - "@tanstack/react-hotkeys-devtools": "^0.3.0", + "@tanstack/react-hotkeys-devtools": "^0.3.1", "@types/react": "^19.2.14", "@types/react-dom": "^19.2.3", "@vitejs/plugin-react": "^5.1.4", diff --git a/examples/react/useHotkeySequence/package.json b/examples/react/useHotkeySequence/package.json index 6a47fc7..2276df7 100644 --- a/examples/react/useHotkeySequence/package.json +++ b/examples/react/useHotkeySequence/package.json @@ -11,13 +11,13 @@ "test:types": "tsc" }, "dependencies": { - "@tanstack/react-hotkeys": "^0.3.0", + "@tanstack/react-hotkeys": "^0.3.1", "react": "^19.2.4", "react-dom": "^19.2.4" }, "devDependencies": { "@tanstack/react-devtools": "0.9.6", - "@tanstack/react-hotkeys-devtools": "^0.3.0", + "@tanstack/react-hotkeys-devtools": "^0.3.1", "@types/react": "^19.2.14", "@types/react-dom": "^19.2.3", "@vitejs/plugin-react": "^5.1.4", diff --git a/examples/react/useKeyhold/package.json b/examples/react/useKeyhold/package.json index f6d2ae3..1275ab7 100644 --- a/examples/react/useKeyhold/package.json +++ b/examples/react/useKeyhold/package.json @@ -11,13 +11,13 @@ "test:types": "tsc" }, "dependencies": { - "@tanstack/react-hotkeys": "^0.3.0", + "@tanstack/react-hotkeys": "^0.3.1", "react": "^19.2.4", "react-dom": "^19.2.4" }, "devDependencies": { "@tanstack/react-devtools": "0.9.6", - "@tanstack/react-hotkeys-devtools": "^0.3.0", + "@tanstack/react-hotkeys-devtools": "^0.3.1", "@types/react": "^19.2.14", "@types/react-dom": "^19.2.3", "@vitejs/plugin-react": "^5.1.4", diff --git a/examples/solid/createHeldKeys/package.json b/examples/solid/createHeldKeys/package.json index e721502..a98e79e 100644 --- a/examples/solid/createHeldKeys/package.json +++ b/examples/solid/createHeldKeys/package.json @@ -10,8 +10,8 @@ "dependencies": { "@tanstack/devtools-utils": "^0.3.0", "@tanstack/solid-devtools": "0.7.26", - "@tanstack/solid-hotkeys": "^0.3.0", - "@tanstack/solid-hotkeys-devtools": "^0.3.0", + "@tanstack/solid-hotkeys": "^0.3.1", + "@tanstack/solid-hotkeys-devtools": "^0.3.1", "solid-js": "^1.9.11" }, "devDependencies": { diff --git a/examples/solid/createHotkey/package.json b/examples/solid/createHotkey/package.json index 8ec486f..b95df67 100644 --- a/examples/solid/createHotkey/package.json +++ b/examples/solid/createHotkey/package.json @@ -13,8 +13,8 @@ "dependencies": { "@tanstack/devtools-utils": "^0.3.0", "@tanstack/solid-devtools": "0.7.26", - "@tanstack/solid-hotkeys": "^0.3.0", - "@tanstack/solid-hotkeys-devtools": "^0.3.0", + "@tanstack/solid-hotkeys": "^0.3.1", + "@tanstack/solid-hotkeys-devtools": "^0.3.1", "solid-js": "^1.9.11" }, "devDependencies": { diff --git a/examples/solid/createHotkeyRecorder/package.json b/examples/solid/createHotkeyRecorder/package.json index 9a06dcb..0dcfa1d 100644 --- a/examples/solid/createHotkeyRecorder/package.json +++ b/examples/solid/createHotkeyRecorder/package.json @@ -10,8 +10,8 @@ "dependencies": { "@tanstack/devtools-utils": "^0.3.0", "@tanstack/solid-devtools": "0.7.26", - "@tanstack/solid-hotkeys": "^0.3.0", - "@tanstack/solid-hotkeys-devtools": "^0.3.0", + "@tanstack/solid-hotkeys": "^0.3.1", + "@tanstack/solid-hotkeys-devtools": "^0.3.1", "solid-js": "^1.9.11" }, "devDependencies": { diff --git a/examples/solid/createHotkeySequence/package.json b/examples/solid/createHotkeySequence/package.json index 349fa4e..d586f23 100644 --- a/examples/solid/createHotkeySequence/package.json +++ b/examples/solid/createHotkeySequence/package.json @@ -10,8 +10,8 @@ "dependencies": { "@tanstack/devtools-utils": "^0.3.0", "@tanstack/solid-devtools": "0.7.26", - "@tanstack/solid-hotkeys": "^0.3.0", - "@tanstack/solid-hotkeys-devtools": "^0.3.0", + "@tanstack/solid-hotkeys": "^0.3.1", + "@tanstack/solid-hotkeys-devtools": "^0.3.1", "solid-js": "^1.9.11" }, "devDependencies": { diff --git a/examples/solid/createKeyHold/package.json b/examples/solid/createKeyHold/package.json index f087382..245b4ac 100644 --- a/examples/solid/createKeyHold/package.json +++ b/examples/solid/createKeyHold/package.json @@ -10,8 +10,8 @@ "dependencies": { "@tanstack/devtools-utils": "^0.3.0", "@tanstack/solid-devtools": "0.7.26", - "@tanstack/solid-hotkeys": "^0.3.0", - "@tanstack/solid-hotkeys-devtools": "^0.3.0", + "@tanstack/solid-hotkeys": "^0.3.1", + "@tanstack/solid-hotkeys-devtools": "^0.3.1", "solid-js": "^1.9.11" }, "devDependencies": { diff --git a/packages/hotkeys-devtools/CHANGELOG.md b/packages/hotkeys-devtools/CHANGELOG.md index 0bd5702..68ef297 100644 --- a/packages/hotkeys-devtools/CHANGELOG.md +++ b/packages/hotkeys-devtools/CHANGELOG.md @@ -1,5 +1,12 @@ # @tanstack/hotkeys-devtools +## 0.3.1 + +### Patch Changes + +- Updated dependencies [[`762cabf`](https://github.com/TanStack/hotkeys/commit/762cabfd6e765f6ced1efdacbbf296ead0a5a080)]: + - @tanstack/hotkeys@0.3.1 + ## 0.3.0 ### Minor Changes diff --git a/packages/hotkeys-devtools/package.json b/packages/hotkeys-devtools/package.json index e5099e7..0fa138c 100644 --- a/packages/hotkeys-devtools/package.json +++ b/packages/hotkeys-devtools/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/hotkeys-devtools", - "version": "0.3.0", + "version": "0.3.1", "description": "Devtools for TanStack Hotkeys", "author": "Tanner Linsley", "license": "MIT", diff --git a/packages/hotkeys/CHANGELOG.md b/packages/hotkeys/CHANGELOG.md index fd0a597..e7b7f29 100644 --- a/packages/hotkeys/CHANGELOG.md +++ b/packages/hotkeys/CHANGELOG.md @@ -1,5 +1,17 @@ # @tanstack/hotkeys +## 0.3.1 + +### Patch Changes + +- fix: handle dead keys in `matchesKeyboardEvent` ([#40](https://github.com/TanStack/hotkeys/pull/40)) + + When `event.key` is `'Dead'` (length 4), the existing `event.code` fallback—gated behind `eventKey.length === 1`—was never reached, causing hotkeys to silently fail. + + This most commonly affects macOS, where `Option+letter` combinations like `Option+E`, `Option+I`, `Option+U`, and `Option+N` produce dead keys for accent composition. It also affects Windows and Linux users with international keyboard layouts (e.g., US-International, German, French) where certain key combinations produce dead keys. + + Added an early check: when `event.key` normalizes to `'Dead'`, immediately fall back to `event.code` to extract the physical key via the `Key*`/`Digit*` prefixes. Punctuation dead keys (e.g., `'` on US-International, where `event.code` is `'Quote'`) correctly return `false` since their codes don't match letter or digit patterns. + ## 0.3.0 ### Minor Changes diff --git a/packages/hotkeys/package.json b/packages/hotkeys/package.json index 1d04238..d06cd8f 100644 --- a/packages/hotkeys/package.json +++ b/packages/hotkeys/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/hotkeys", - "version": "0.3.0", + "version": "0.3.1", "description": "Type-safe, framework-agnostic keyboard hotkey management for the browser", "author": "Tanner Linsley", "license": "MIT", diff --git a/packages/preact-hotkeys-devtools/CHANGELOG.md b/packages/preact-hotkeys-devtools/CHANGELOG.md new file mode 100644 index 0000000..db4ab4c --- /dev/null +++ b/packages/preact-hotkeys-devtools/CHANGELOG.md @@ -0,0 +1,8 @@ +# @tanstack/preact-hotkeys-devtools + +## 0.3.1 + +### Patch Changes + +- Updated dependencies []: + - @tanstack/hotkeys-devtools@0.3.1 diff --git a/packages/preact-hotkeys-devtools/package.json b/packages/preact-hotkeys-devtools/package.json index d4f461f..5c9e51a 100644 --- a/packages/preact-hotkeys-devtools/package.json +++ b/packages/preact-hotkeys-devtools/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/preact-hotkeys-devtools", - "version": "0.3.0", + "version": "0.3.1", "description": "Preact devtools for TanStack Hotkeys", "author": "Tanner Linsley", "license": "MIT", diff --git a/packages/preact-hotkeys/CHANGELOG.md b/packages/preact-hotkeys/CHANGELOG.md new file mode 100644 index 0000000..233f2e8 --- /dev/null +++ b/packages/preact-hotkeys/CHANGELOG.md @@ -0,0 +1,8 @@ +# @tanstack/preact-hotkeys + +## 0.3.1 + +### Patch Changes + +- Updated dependencies [[`762cabf`](https://github.com/TanStack/hotkeys/commit/762cabfd6e765f6ced1efdacbbf296ead0a5a080)]: + - @tanstack/hotkeys@0.3.1 diff --git a/packages/preact-hotkeys/package.json b/packages/preact-hotkeys/package.json index 8f3e34a..ae09655 100644 --- a/packages/preact-hotkeys/package.json +++ b/packages/preact-hotkeys/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/preact-hotkeys", - "version": "0.3.0", + "version": "0.3.1", "description": "Preact adapter for TanStack Hotkeys", "author": "Tanner Linsley", "license": "MIT", diff --git a/packages/react-hotkeys-devtools/CHANGELOG.md b/packages/react-hotkeys-devtools/CHANGELOG.md index 876addc..5ac7d28 100644 --- a/packages/react-hotkeys-devtools/CHANGELOG.md +++ b/packages/react-hotkeys-devtools/CHANGELOG.md @@ -1,5 +1,12 @@ # @tanstack/react-hotkeys-devtools +## 0.3.1 + +### Patch Changes + +- Updated dependencies []: + - @tanstack/hotkeys-devtools@0.3.1 + ## 0.3.0 ### Minor Changes diff --git a/packages/react-hotkeys-devtools/package.json b/packages/react-hotkeys-devtools/package.json index b6a9142..6ee6dd4 100644 --- a/packages/react-hotkeys-devtools/package.json +++ b/packages/react-hotkeys-devtools/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/react-hotkeys-devtools", - "version": "0.3.0", + "version": "0.3.1", "description": "React devtools for TanStack Hotkeys", "author": "Tanner Linsley", "license": "MIT", diff --git a/packages/react-hotkeys/CHANGELOG.md b/packages/react-hotkeys/CHANGELOG.md index 167cc68..12e345a 100644 --- a/packages/react-hotkeys/CHANGELOG.md +++ b/packages/react-hotkeys/CHANGELOG.md @@ -1,5 +1,12 @@ # @tanstack/react-hotkeys +## 0.3.1 + +### Patch Changes + +- Updated dependencies [[`762cabf`](https://github.com/TanStack/hotkeys/commit/762cabfd6e765f6ced1efdacbbf296ead0a5a080)]: + - @tanstack/hotkeys@0.3.1 + ## 0.3.0 ### Minor Changes diff --git a/packages/react-hotkeys/package.json b/packages/react-hotkeys/package.json index d024c0a..2f31d61 100644 --- a/packages/react-hotkeys/package.json +++ b/packages/react-hotkeys/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/react-hotkeys", - "version": "0.3.0", + "version": "0.3.1", "description": "React adapter for TanStack Hotkeys", "author": "Tanner Linsley", "license": "MIT", diff --git a/packages/solid-hotkeys-devtools/CHANGELOG.md b/packages/solid-hotkeys-devtools/CHANGELOG.md index e1b99ae..de1cdf5 100644 --- a/packages/solid-hotkeys-devtools/CHANGELOG.md +++ b/packages/solid-hotkeys-devtools/CHANGELOG.md @@ -1,5 +1,12 @@ # @tanstack/solid-hotkeys-devtools +## 0.3.1 + +### Patch Changes + +- Updated dependencies []: + - @tanstack/hotkeys-devtools@0.3.1 + ## 0.3.0 ### Minor Changes diff --git a/packages/solid-hotkeys-devtools/package.json b/packages/solid-hotkeys-devtools/package.json index fc85cc6..db25681 100644 --- a/packages/solid-hotkeys-devtools/package.json +++ b/packages/solid-hotkeys-devtools/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/solid-hotkeys-devtools", - "version": "0.3.0", + "version": "0.3.1", "description": "SolidJS devtools for TanStack Hotkeys", "author": "Tanner Linsley", "license": "MIT", diff --git a/packages/solid-hotkeys/CHANGELOG.md b/packages/solid-hotkeys/CHANGELOG.md index c6fb31b..72064ee 100644 --- a/packages/solid-hotkeys/CHANGELOG.md +++ b/packages/solid-hotkeys/CHANGELOG.md @@ -1,5 +1,12 @@ # @tanstack/solid-hotkeys +## 0.3.1 + +### Patch Changes + +- Updated dependencies [[`762cabf`](https://github.com/TanStack/hotkeys/commit/762cabfd6e765f6ced1efdacbbf296ead0a5a080)]: + - @tanstack/hotkeys@0.3.1 + ## 0.3.0 ### Minor Changes diff --git a/packages/solid-hotkeys/package.json b/packages/solid-hotkeys/package.json index cff11ea..f5311c7 100644 --- a/packages/solid-hotkeys/package.json +++ b/packages/solid-hotkeys/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/solid-hotkeys", - "version": "0.3.0", + "version": "0.3.1", "description": "SolidJS adapter for TanStack Hotkeys", "author": "Tanner Linsley", "license": "MIT", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index a663c03..aba3f62 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -84,7 +84,7 @@ importers: examples/preact/useHeldKeys: dependencies: '@tanstack/preact-hotkeys': - specifier: ^0.3.0 + specifier: ^0.3.1 version: link:../../../packages/preact-hotkeys preact: specifier: ^10.27.2 @@ -97,7 +97,7 @@ importers: specifier: 0.9.6 version: 0.9.6(csstype@3.2.3)(preact@10.28.4)(solid-js@1.9.11) '@tanstack/preact-hotkeys-devtools': - specifier: ^0.3.0 + specifier: ^0.3.1 version: link:../../../packages/preact-hotkeys-devtools typescript: specifier: 5.9.3 @@ -109,7 +109,7 @@ importers: examples/preact/useHotkey: dependencies: '@tanstack/preact-hotkeys': - specifier: ^0.3.0 + specifier: ^0.3.1 version: link:../../../packages/preact-hotkeys preact: specifier: ^10.27.2 @@ -122,7 +122,7 @@ importers: specifier: 0.9.6 version: 0.9.6(csstype@3.2.3)(preact@10.28.4)(solid-js@1.9.11) '@tanstack/preact-hotkeys-devtools': - specifier: ^0.3.0 + specifier: ^0.3.1 version: link:../../../packages/preact-hotkeys-devtools typescript: specifier: 5.9.3 @@ -134,7 +134,7 @@ importers: examples/preact/useHotkeyRecorder: dependencies: '@tanstack/preact-hotkeys': - specifier: ^0.3.0 + specifier: ^0.3.1 version: link:../../../packages/preact-hotkeys preact: specifier: ^10.27.2 @@ -147,7 +147,7 @@ importers: specifier: 0.9.6 version: 0.9.6(csstype@3.2.3)(preact@10.28.4)(solid-js@1.9.11) '@tanstack/preact-hotkeys-devtools': - specifier: ^0.3.0 + specifier: ^0.3.1 version: link:../../../packages/preact-hotkeys-devtools typescript: specifier: 5.9.3 @@ -159,7 +159,7 @@ importers: examples/preact/useHotkeySequence: dependencies: '@tanstack/preact-hotkeys': - specifier: ^0.3.0 + specifier: ^0.3.1 version: link:../../../packages/preact-hotkeys preact: specifier: ^10.27.2 @@ -172,7 +172,7 @@ importers: specifier: 0.9.6 version: 0.9.6(csstype@3.2.3)(preact@10.28.4)(solid-js@1.9.11) '@tanstack/preact-hotkeys-devtools': - specifier: ^0.3.0 + specifier: ^0.3.1 version: link:../../../packages/preact-hotkeys-devtools typescript: specifier: 5.9.3 @@ -184,7 +184,7 @@ importers: examples/preact/useKeyhold: dependencies: '@tanstack/preact-hotkeys': - specifier: ^0.3.0 + specifier: ^0.3.1 version: link:../../../packages/preact-hotkeys preact: specifier: ^10.27.2 @@ -197,7 +197,7 @@ importers: specifier: 0.9.6 version: 0.9.6(csstype@3.2.3)(preact@10.28.4)(solid-js@1.9.11) '@tanstack/preact-hotkeys-devtools': - specifier: ^0.3.0 + specifier: ^0.3.1 version: link:../../../packages/preact-hotkeys-devtools typescript: specifier: 5.9.3 @@ -209,7 +209,7 @@ importers: examples/react/useHeldKeys: dependencies: '@tanstack/react-hotkeys': - specifier: ^0.3.0 + specifier: ^0.3.1 version: link:../../../packages/react-hotkeys react: specifier: ^19.2.4 @@ -222,7 +222,7 @@ importers: specifier: 0.9.6 version: 0.9.6(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(csstype@3.2.3)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(solid-js@1.9.11) '@tanstack/react-hotkeys-devtools': - specifier: ^0.3.0 + specifier: ^0.3.1 version: link:../../../packages/react-hotkeys-devtools '@types/react': specifier: ^19.2.14 @@ -243,7 +243,7 @@ importers: examples/react/useHotkey: dependencies: '@tanstack/react-hotkeys': - specifier: ^0.3.0 + specifier: ^0.3.1 version: link:../../../packages/react-hotkeys react: specifier: ^19.2.4 @@ -256,7 +256,7 @@ importers: specifier: 0.9.6 version: 0.9.6(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(csstype@3.2.3)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(solid-js@1.9.11) '@tanstack/react-hotkeys-devtools': - specifier: ^0.3.0 + specifier: ^0.3.1 version: link:../../../packages/react-hotkeys-devtools '@types/react': specifier: ^19.2.14 @@ -277,7 +277,7 @@ importers: examples/react/useHotkeyRecorder: dependencies: '@tanstack/react-hotkeys': - specifier: ^0.3.0 + specifier: ^0.3.1 version: link:../../../packages/react-hotkeys react: specifier: ^19.2.4 @@ -290,7 +290,7 @@ importers: specifier: 0.9.6 version: 0.9.6(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(csstype@3.2.3)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(solid-js@1.9.11) '@tanstack/react-hotkeys-devtools': - specifier: ^0.3.0 + specifier: ^0.3.1 version: link:../../../packages/react-hotkeys-devtools '@types/react': specifier: ^19.2.14 @@ -311,7 +311,7 @@ importers: examples/react/useHotkeySequence: dependencies: '@tanstack/react-hotkeys': - specifier: ^0.3.0 + specifier: ^0.3.1 version: link:../../../packages/react-hotkeys react: specifier: ^19.2.4 @@ -324,7 +324,7 @@ importers: specifier: 0.9.6 version: 0.9.6(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(csstype@3.2.3)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(solid-js@1.9.11) '@tanstack/react-hotkeys-devtools': - specifier: ^0.3.0 + specifier: ^0.3.1 version: link:../../../packages/react-hotkeys-devtools '@types/react': specifier: ^19.2.14 @@ -345,7 +345,7 @@ importers: examples/react/useKeyhold: dependencies: '@tanstack/react-hotkeys': - specifier: ^0.3.0 + specifier: ^0.3.1 version: link:../../../packages/react-hotkeys react: specifier: ^19.2.4 @@ -358,7 +358,7 @@ importers: specifier: 0.9.6 version: 0.9.6(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(csstype@3.2.3)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(solid-js@1.9.11) '@tanstack/react-hotkeys-devtools': - specifier: ^0.3.0 + specifier: ^0.3.1 version: link:../../../packages/react-hotkeys-devtools '@types/react': specifier: ^19.2.14 @@ -385,10 +385,10 @@ importers: specifier: 0.7.26 version: 0.7.26(csstype@3.2.3)(solid-js@1.9.11) '@tanstack/solid-hotkeys': - specifier: ^0.3.0 + specifier: ^0.3.1 version: link:../../../packages/solid-hotkeys '@tanstack/solid-hotkeys-devtools': - specifier: ^0.3.0 + specifier: ^0.3.1 version: link:../../../packages/solid-hotkeys-devtools solid-js: specifier: ^1.9.11 @@ -410,10 +410,10 @@ importers: specifier: 0.7.26 version: 0.7.26(csstype@3.2.3)(solid-js@1.9.11) '@tanstack/solid-hotkeys': - specifier: ^0.3.0 + specifier: ^0.3.1 version: link:../../../packages/solid-hotkeys '@tanstack/solid-hotkeys-devtools': - specifier: ^0.3.0 + specifier: ^0.3.1 version: link:../../../packages/solid-hotkeys-devtools solid-js: specifier: ^1.9.11 @@ -441,10 +441,10 @@ importers: specifier: 0.7.26 version: 0.7.26(csstype@3.2.3)(solid-js@1.9.11) '@tanstack/solid-hotkeys': - specifier: ^0.3.0 + specifier: ^0.3.1 version: link:../../../packages/solid-hotkeys '@tanstack/solid-hotkeys-devtools': - specifier: ^0.3.0 + specifier: ^0.3.1 version: link:../../../packages/solid-hotkeys-devtools solid-js: specifier: ^1.9.11 @@ -466,10 +466,10 @@ importers: specifier: 0.7.26 version: 0.7.26(csstype@3.2.3)(solid-js@1.9.11) '@tanstack/solid-hotkeys': - specifier: ^0.3.0 + specifier: ^0.3.1 version: link:../../../packages/solid-hotkeys '@tanstack/solid-hotkeys-devtools': - specifier: ^0.3.0 + specifier: ^0.3.1 version: link:../../../packages/solid-hotkeys-devtools solid-js: specifier: ^1.9.11 @@ -491,10 +491,10 @@ importers: specifier: 0.7.26 version: 0.7.26(csstype@3.2.3)(solid-js@1.9.11) '@tanstack/solid-hotkeys': - specifier: ^0.3.0 + specifier: ^0.3.1 version: link:../../../packages/solid-hotkeys '@tanstack/solid-hotkeys-devtools': - specifier: ^0.3.0 + specifier: ^0.3.1 version: link:../../../packages/solid-hotkeys-devtools solid-js: specifier: ^1.9.11