diff --git a/.changeset/plural-sequences.md b/.changeset/plural-sequences.md deleted file mode 100644 index 97685d35..00000000 --- a/.changeset/plural-sequences.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -'@tanstack/react-hotkeys': minor -'@tanstack/preact-hotkeys': minor -'@tanstack/vue-hotkeys': minor -'@tanstack/solid-hotkeys': minor -'@tanstack/svelte-hotkeys': minor -'@tanstack/angular-hotkeys': minor ---- - -Add plural sequence APIs (`useHotkeySequences`, `createHotkeySequences`, `createHotkeySequencesAttachment`, `injectHotkeySequences`) and align `enabled` across adapters: disabled registrations stay in the manager for devtools, only core dispatch is skipped, and toggling `enabled` updates handles via `setOptions` instead of churning unregister/register. diff --git a/examples/angular/injectHeldKeys/package.json b/examples/angular/injectHeldKeys/package.json index 843c1940..b21bed6d 100644 --- a/examples/angular/injectHeldKeys/package.json +++ b/examples/angular/injectHeldKeys/package.json @@ -17,7 +17,7 @@ "@angular/platform-browser": "^21.2.5", "@angular/platform-browser-dynamic": "^21.2.5", "@angular/router": "^21.2.5", - "@tanstack/angular-hotkeys": "^0.6.0", + "@tanstack/angular-hotkeys": "^0.7.0", "rxjs": "~7.8.2", "tslib": "^2.8.1", "zone.js": "~0.16.1" diff --git a/examples/angular/injectHotkey/package.json b/examples/angular/injectHotkey/package.json index 568cd429..7d7581e4 100644 --- a/examples/angular/injectHotkey/package.json +++ b/examples/angular/injectHotkey/package.json @@ -17,7 +17,7 @@ "@angular/platform-browser": "^21.2.5", "@angular/platform-browser-dynamic": "^21.2.5", "@angular/router": "^21.2.5", - "@tanstack/angular-hotkeys": "^0.6.0", + "@tanstack/angular-hotkeys": "^0.7.0", "rxjs": "~7.8.2", "tslib": "^2.8.1", "zone.js": "~0.16.1" diff --git a/examples/angular/injectHotkeyRecorder/package.json b/examples/angular/injectHotkeyRecorder/package.json index 156b017a..f4837510 100644 --- a/examples/angular/injectHotkeyRecorder/package.json +++ b/examples/angular/injectHotkeyRecorder/package.json @@ -17,7 +17,7 @@ "@angular/platform-browser": "^21.2.5", "@angular/platform-browser-dynamic": "^21.2.5", "@angular/router": "^21.2.5", - "@tanstack/angular-hotkeys": "^0.6.0", + "@tanstack/angular-hotkeys": "^0.7.0", "rxjs": "~7.8.2", "tslib": "^2.8.1", "zone.js": "~0.16.1" diff --git a/examples/angular/injectHotkeySequence/package.json b/examples/angular/injectHotkeySequence/package.json index a919cac0..19e761a7 100644 --- a/examples/angular/injectHotkeySequence/package.json +++ b/examples/angular/injectHotkeySequence/package.json @@ -17,7 +17,7 @@ "@angular/platform-browser": "^21.2.5", "@angular/platform-browser-dynamic": "^21.2.5", "@angular/router": "^21.2.5", - "@tanstack/angular-hotkeys": "^0.6.0", + "@tanstack/angular-hotkeys": "^0.7.0", "rxjs": "~7.8.2", "tslib": "^2.8.1", "zone.js": "~0.16.1" diff --git a/examples/angular/injectHotkeySequenceRecorder/package.json b/examples/angular/injectHotkeySequenceRecorder/package.json index a1364e20..883b61d8 100644 --- a/examples/angular/injectHotkeySequenceRecorder/package.json +++ b/examples/angular/injectHotkeySequenceRecorder/package.json @@ -17,7 +17,7 @@ "@angular/platform-browser": "^21.2.5", "@angular/platform-browser-dynamic": "^21.2.5", "@angular/router": "^21.2.5", - "@tanstack/angular-hotkeys": "^0.6.0", + "@tanstack/angular-hotkeys": "^0.7.0", "rxjs": "~7.8.2", "tslib": "^2.8.1", "zone.js": "~0.16.1" diff --git a/examples/angular/injectHotkeySequences/package.json b/examples/angular/injectHotkeySequences/package.json index b44eed2e..e036d916 100644 --- a/examples/angular/injectHotkeySequences/package.json +++ b/examples/angular/injectHotkeySequences/package.json @@ -17,7 +17,7 @@ "@angular/platform-browser": "^21.2.5", "@angular/platform-browser-dynamic": "^21.2.5", "@angular/router": "^21.2.5", - "@tanstack/angular-hotkeys": "^0.6.0", + "@tanstack/angular-hotkeys": "^0.7.0", "rxjs": "~7.8.2", "tslib": "^2.8.1", "zone.js": "~0.16.1" diff --git a/examples/angular/injectHotkeys/package.json b/examples/angular/injectHotkeys/package.json index 604d1281..f9874740 100644 --- a/examples/angular/injectHotkeys/package.json +++ b/examples/angular/injectHotkeys/package.json @@ -17,7 +17,7 @@ "@angular/platform-browser": "^21.2.5", "@angular/platform-browser-dynamic": "^21.2.5", "@angular/router": "^21.2.5", - "@tanstack/angular-hotkeys": "^0.6.0", + "@tanstack/angular-hotkeys": "^0.7.0", "rxjs": "~7.8.2", "tslib": "^2.8.1", "zone.js": "~0.16.1" diff --git a/examples/angular/injectKeyHold/package.json b/examples/angular/injectKeyHold/package.json index 89dd2cc0..9e9f0f47 100644 --- a/examples/angular/injectKeyHold/package.json +++ b/examples/angular/injectKeyHold/package.json @@ -17,7 +17,7 @@ "@angular/platform-browser": "^21.2.5", "@angular/platform-browser-dynamic": "^21.2.5", "@angular/router": "^21.2.5", - "@tanstack/angular-hotkeys": "^0.6.0", + "@tanstack/angular-hotkeys": "^0.7.0", "rxjs": "~7.8.2", "tslib": "^2.8.1", "zone.js": "~0.16.1" diff --git a/examples/preact/useHeldKeys/package.json b/examples/preact/useHeldKeys/package.json index e172ff68..6da3c374 100644 --- a/examples/preact/useHeldKeys/package.json +++ b/examples/preact/useHeldKeys/package.json @@ -11,7 +11,7 @@ "test:types": "tsc" }, "dependencies": { - "@tanstack/preact-hotkeys": "^0.6.0", + "@tanstack/preact-hotkeys": "^0.7.0", "preact": "^10.29.0" }, "devDependencies": { diff --git a/examples/preact/useHotkey/package.json b/examples/preact/useHotkey/package.json index 3579c4c9..9dcc7975 100644 --- a/examples/preact/useHotkey/package.json +++ b/examples/preact/useHotkey/package.json @@ -11,7 +11,7 @@ "test:types": "tsc" }, "dependencies": { - "@tanstack/preact-hotkeys": "^0.6.0", + "@tanstack/preact-hotkeys": "^0.7.0", "preact": "^10.29.0" }, "devDependencies": { diff --git a/examples/preact/useHotkeyRecorder/package.json b/examples/preact/useHotkeyRecorder/package.json index 4c149ad9..1c26c5ce 100644 --- a/examples/preact/useHotkeyRecorder/package.json +++ b/examples/preact/useHotkeyRecorder/package.json @@ -11,7 +11,7 @@ "test:types": "tsc" }, "dependencies": { - "@tanstack/preact-hotkeys": "^0.6.0", + "@tanstack/preact-hotkeys": "^0.7.0", "preact": "^10.29.0" }, "devDependencies": { diff --git a/examples/preact/useHotkeySequence/package.json b/examples/preact/useHotkeySequence/package.json index 1973c00c..13a55fa3 100644 --- a/examples/preact/useHotkeySequence/package.json +++ b/examples/preact/useHotkeySequence/package.json @@ -11,7 +11,7 @@ "test:types": "tsc" }, "dependencies": { - "@tanstack/preact-hotkeys": "^0.6.0", + "@tanstack/preact-hotkeys": "^0.7.0", "preact": "^10.29.0" }, "devDependencies": { diff --git a/examples/preact/useHotkeySequenceRecorder/package.json b/examples/preact/useHotkeySequenceRecorder/package.json index 2e3ca1c1..1ce34776 100644 --- a/examples/preact/useHotkeySequenceRecorder/package.json +++ b/examples/preact/useHotkeySequenceRecorder/package.json @@ -11,7 +11,7 @@ "test:types": "tsc" }, "dependencies": { - "@tanstack/preact-hotkeys": "^0.6.0", + "@tanstack/preact-hotkeys": "^0.7.0", "preact": "^10.29.0" }, "devDependencies": { diff --git a/examples/preact/useHotkeySequences/package.json b/examples/preact/useHotkeySequences/package.json index 2a5658ea..43e5aaee 100644 --- a/examples/preact/useHotkeySequences/package.json +++ b/examples/preact/useHotkeySequences/package.json @@ -11,7 +11,7 @@ "test:types": "tsc" }, "dependencies": { - "@tanstack/preact-hotkeys": "^0.6.0", + "@tanstack/preact-hotkeys": "^0.7.0", "preact": "^10.29.0" }, "devDependencies": { diff --git a/examples/preact/useHotkeys/package.json b/examples/preact/useHotkeys/package.json index a2555adb..38fbd78f 100644 --- a/examples/preact/useHotkeys/package.json +++ b/examples/preact/useHotkeys/package.json @@ -11,7 +11,7 @@ "test:types": "tsc" }, "dependencies": { - "@tanstack/preact-hotkeys": "^0.6.0", + "@tanstack/preact-hotkeys": "^0.7.0", "preact": "^10.29.0" }, "devDependencies": { diff --git a/examples/preact/useKeyhold/package.json b/examples/preact/useKeyhold/package.json index 2686acb6..0c7a43f0 100644 --- a/examples/preact/useKeyhold/package.json +++ b/examples/preact/useKeyhold/package.json @@ -11,7 +11,7 @@ "test:types": "tsc" }, "dependencies": { - "@tanstack/preact-hotkeys": "^0.6.0", + "@tanstack/preact-hotkeys": "^0.7.0", "preact": "^10.29.0" }, "devDependencies": { diff --git a/examples/react/useHeldKeys/package.json b/examples/react/useHeldKeys/package.json index ebe27840..ca3de28b 100644 --- a/examples/react/useHeldKeys/package.json +++ b/examples/react/useHeldKeys/package.json @@ -11,7 +11,7 @@ "test:types": "tsc" }, "dependencies": { - "@tanstack/react-hotkeys": "^0.6.0", + "@tanstack/react-hotkeys": "^0.7.0", "react": "^19.2.4", "react-dom": "^19.2.4" }, diff --git a/examples/react/useHotkey/package.json b/examples/react/useHotkey/package.json index 0c346c0e..b1fc43b7 100644 --- a/examples/react/useHotkey/package.json +++ b/examples/react/useHotkey/package.json @@ -11,7 +11,7 @@ "test:types": "tsc" }, "dependencies": { - "@tanstack/react-hotkeys": "^0.6.0", + "@tanstack/react-hotkeys": "^0.7.0", "react": "^19.2.4", "react-dom": "^19.2.4" }, diff --git a/examples/react/useHotkeyRecorder/package.json b/examples/react/useHotkeyRecorder/package.json index efb53d27..6ed79846 100644 --- a/examples/react/useHotkeyRecorder/package.json +++ b/examples/react/useHotkeyRecorder/package.json @@ -11,7 +11,7 @@ "test:types": "tsc" }, "dependencies": { - "@tanstack/react-hotkeys": "^0.6.0", + "@tanstack/react-hotkeys": "^0.7.0", "react": "^19.2.4", "react-dom": "^19.2.4" }, diff --git a/examples/react/useHotkeySequence/package.json b/examples/react/useHotkeySequence/package.json index 06a86915..e53e1897 100644 --- a/examples/react/useHotkeySequence/package.json +++ b/examples/react/useHotkeySequence/package.json @@ -11,7 +11,7 @@ "test:types": "tsc" }, "dependencies": { - "@tanstack/react-hotkeys": "^0.6.0", + "@tanstack/react-hotkeys": "^0.7.0", "react": "^19.2.4", "react-dom": "^19.2.4" }, diff --git a/examples/react/useHotkeySequenceRecorder/package.json b/examples/react/useHotkeySequenceRecorder/package.json index 75db6ce4..a09f2832 100644 --- a/examples/react/useHotkeySequenceRecorder/package.json +++ b/examples/react/useHotkeySequenceRecorder/package.json @@ -11,7 +11,7 @@ "test:types": "tsc" }, "dependencies": { - "@tanstack/react-hotkeys": "^0.6.0", + "@tanstack/react-hotkeys": "^0.7.0", "react": "^19.2.4", "react-dom": "^19.2.4" }, diff --git a/examples/react/useHotkeySequences/package.json b/examples/react/useHotkeySequences/package.json index 4a02f7f8..af40a9ba 100644 --- a/examples/react/useHotkeySequences/package.json +++ b/examples/react/useHotkeySequences/package.json @@ -11,7 +11,7 @@ "test:types": "tsc" }, "dependencies": { - "@tanstack/react-hotkeys": "^0.6.0", + "@tanstack/react-hotkeys": "^0.7.0", "react": "^19.2.4", "react-dom": "^19.2.4" }, diff --git a/examples/react/useHotkeys/package.json b/examples/react/useHotkeys/package.json index 94b762cb..16c7bbf9 100644 --- a/examples/react/useHotkeys/package.json +++ b/examples/react/useHotkeys/package.json @@ -11,7 +11,7 @@ "test:types": "tsc" }, "dependencies": { - "@tanstack/react-hotkeys": "^0.6.0", + "@tanstack/react-hotkeys": "^0.7.0", "react": "^19.2.4", "react-dom": "^19.2.4" }, diff --git a/examples/react/useKeyhold/package.json b/examples/react/useKeyhold/package.json index 1647c41d..8ac67086 100644 --- a/examples/react/useKeyhold/package.json +++ b/examples/react/useKeyhold/package.json @@ -11,7 +11,7 @@ "test:types": "tsc" }, "dependencies": { - "@tanstack/react-hotkeys": "^0.6.0", + "@tanstack/react-hotkeys": "^0.7.0", "react": "^19.2.4", "react-dom": "^19.2.4" }, diff --git a/examples/solid/createHeldKeys/package.json b/examples/solid/createHeldKeys/package.json index bc778bc2..e2748c4c 100644 --- a/examples/solid/createHeldKeys/package.json +++ b/examples/solid/createHeldKeys/package.json @@ -9,7 +9,7 @@ }, "dependencies": { "@tanstack/solid-devtools": "0.8.0", - "@tanstack/solid-hotkeys": "^0.6.0", + "@tanstack/solid-hotkeys": "^0.7.0", "@tanstack/solid-hotkeys-devtools": "^0.5.0", "solid-js": "^1.9.11" }, diff --git a/examples/solid/createHotkey/package.json b/examples/solid/createHotkey/package.json index 4564173f..6385069b 100644 --- a/examples/solid/createHotkey/package.json +++ b/examples/solid/createHotkey/package.json @@ -12,7 +12,7 @@ }, "dependencies": { "@tanstack/solid-devtools": "0.8.0", - "@tanstack/solid-hotkeys": "^0.6.0", + "@tanstack/solid-hotkeys": "^0.7.0", "@tanstack/solid-hotkeys-devtools": "^0.5.0", "solid-js": "^1.9.11" }, diff --git a/examples/solid/createHotkeyRecorder/package.json b/examples/solid/createHotkeyRecorder/package.json index d9767bca..b9183e08 100644 --- a/examples/solid/createHotkeyRecorder/package.json +++ b/examples/solid/createHotkeyRecorder/package.json @@ -9,7 +9,7 @@ }, "dependencies": { "@tanstack/solid-devtools": "0.8.0", - "@tanstack/solid-hotkeys": "^0.6.0", + "@tanstack/solid-hotkeys": "^0.7.0", "@tanstack/solid-hotkeys-devtools": "^0.5.0", "solid-js": "^1.9.11" }, diff --git a/examples/solid/createHotkeySequence/package.json b/examples/solid/createHotkeySequence/package.json index edd149cb..932760d1 100644 --- a/examples/solid/createHotkeySequence/package.json +++ b/examples/solid/createHotkeySequence/package.json @@ -9,7 +9,7 @@ }, "dependencies": { "@tanstack/solid-devtools": "0.8.0", - "@tanstack/solid-hotkeys": "^0.6.0", + "@tanstack/solid-hotkeys": "^0.7.0", "@tanstack/solid-hotkeys-devtools": "^0.5.0", "solid-js": "^1.9.11" }, diff --git a/examples/solid/createHotkeySequenceRecorder/package.json b/examples/solid/createHotkeySequenceRecorder/package.json index 58044db3..33054c85 100644 --- a/examples/solid/createHotkeySequenceRecorder/package.json +++ b/examples/solid/createHotkeySequenceRecorder/package.json @@ -9,7 +9,7 @@ }, "dependencies": { "@tanstack/solid-devtools": "0.8.0", - "@tanstack/solid-hotkeys": "^0.6.0", + "@tanstack/solid-hotkeys": "^0.7.0", "@tanstack/solid-hotkeys-devtools": "^0.5.0", "solid-js": "^1.9.11" }, diff --git a/examples/solid/createHotkeySequences/package.json b/examples/solid/createHotkeySequences/package.json index 1c5f2479..e5ba465e 100644 --- a/examples/solid/createHotkeySequences/package.json +++ b/examples/solid/createHotkeySequences/package.json @@ -9,7 +9,7 @@ }, "dependencies": { "@tanstack/solid-devtools": "0.8.0", - "@tanstack/solid-hotkeys": "^0.6.0", + "@tanstack/solid-hotkeys": "^0.7.0", "@tanstack/solid-hotkeys-devtools": "^0.5.0", "solid-js": "^1.9.11" }, diff --git a/examples/solid/createHotkeys/package.json b/examples/solid/createHotkeys/package.json index 41e72961..6ea9a582 100644 --- a/examples/solid/createHotkeys/package.json +++ b/examples/solid/createHotkeys/package.json @@ -12,7 +12,7 @@ }, "dependencies": { "@tanstack/solid-devtools": "0.8.0", - "@tanstack/solid-hotkeys": "^0.6.0", + "@tanstack/solid-hotkeys": "^0.7.0", "@tanstack/solid-hotkeys-devtools": "^0.5.0", "solid-js": "^1.9.11" }, diff --git a/examples/solid/createKeyHold/package.json b/examples/solid/createKeyHold/package.json index 2045a5d4..c912e30e 100644 --- a/examples/solid/createKeyHold/package.json +++ b/examples/solid/createKeyHold/package.json @@ -9,7 +9,7 @@ }, "dependencies": { "@tanstack/solid-devtools": "0.8.0", - "@tanstack/solid-hotkeys": "^0.6.0", + "@tanstack/solid-hotkeys": "^0.7.0", "@tanstack/solid-hotkeys-devtools": "^0.5.0", "solid-js": "^1.9.11" }, diff --git a/examples/svelte/create-hotkey-recorder/package.json b/examples/svelte/create-hotkey-recorder/package.json index d37e15af..82be4754 100644 --- a/examples/svelte/create-hotkey-recorder/package.json +++ b/examples/svelte/create-hotkey-recorder/package.json @@ -6,7 +6,7 @@ "dev": "vite --port=3069" }, "dependencies": { - "@tanstack/svelte-hotkeys": "0.6.0", + "@tanstack/svelte-hotkeys": "0.7.0", "svelte": "^5.54.1" }, "devDependencies": { diff --git a/examples/svelte/create-hotkey-sequence-recorder/package.json b/examples/svelte/create-hotkey-sequence-recorder/package.json index 13230c07..52260bb2 100644 --- a/examples/svelte/create-hotkey-sequence-recorder/package.json +++ b/examples/svelte/create-hotkey-sequence-recorder/package.json @@ -6,7 +6,7 @@ "dev": "vite --port=3069" }, "dependencies": { - "@tanstack/svelte-hotkeys": "0.6.0", + "@tanstack/svelte-hotkeys": "0.7.0", "svelte": "^5.54.1" }, "devDependencies": { diff --git a/examples/svelte/create-hotkey-sequence/package.json b/examples/svelte/create-hotkey-sequence/package.json index c0caed89..8c281000 100644 --- a/examples/svelte/create-hotkey-sequence/package.json +++ b/examples/svelte/create-hotkey-sequence/package.json @@ -6,7 +6,7 @@ "dev": "vite --port=3069" }, "dependencies": { - "@tanstack/svelte-hotkeys": "0.6.0", + "@tanstack/svelte-hotkeys": "0.7.0", "svelte": "^5.54.1" }, "devDependencies": { diff --git a/examples/svelte/create-hotkey-sequences/package.json b/examples/svelte/create-hotkey-sequences/package.json index e9641353..17536993 100644 --- a/examples/svelte/create-hotkey-sequences/package.json +++ b/examples/svelte/create-hotkey-sequences/package.json @@ -6,7 +6,7 @@ "dev": "vite --port=3069" }, "dependencies": { - "@tanstack/svelte-hotkeys": "0.6.0", + "@tanstack/svelte-hotkeys": "0.7.0", "svelte": "^5.54.1" }, "devDependencies": { diff --git a/examples/svelte/create-hotkey/package.json b/examples/svelte/create-hotkey/package.json index a99df82e..ebcdb879 100644 --- a/examples/svelte/create-hotkey/package.json +++ b/examples/svelte/create-hotkey/package.json @@ -11,7 +11,7 @@ "test:types": "tsc" }, "dependencies": { - "@tanstack/svelte-hotkeys": "0.6.0", + "@tanstack/svelte-hotkeys": "0.7.0", "svelte": "^5.54.1" }, "devDependencies": { diff --git a/examples/svelte/create-hotkeys/package.json b/examples/svelte/create-hotkeys/package.json index 04b18000..5c3e0ecb 100644 --- a/examples/svelte/create-hotkeys/package.json +++ b/examples/svelte/create-hotkeys/package.json @@ -11,7 +11,7 @@ "test:types": "tsc" }, "dependencies": { - "@tanstack/svelte-hotkeys": "0.6.0", + "@tanstack/svelte-hotkeys": "0.7.0", "svelte": "^5.54.1" }, "devDependencies": { diff --git a/examples/svelte/get-held-keys/package.json b/examples/svelte/get-held-keys/package.json index 90ccf1ef..ac40ae9f 100644 --- a/examples/svelte/get-held-keys/package.json +++ b/examples/svelte/get-held-keys/package.json @@ -6,7 +6,7 @@ "dev": "vite --port=3069" }, "dependencies": { - "@tanstack/svelte-hotkeys": "0.6.0", + "@tanstack/svelte-hotkeys": "0.7.0", "svelte": "^5.54.1" }, "devDependencies": { diff --git a/examples/svelte/get-is-key-held/package.json b/examples/svelte/get-is-key-held/package.json index 9f704aca..64d8974b 100644 --- a/examples/svelte/get-is-key-held/package.json +++ b/examples/svelte/get-is-key-held/package.json @@ -6,7 +6,7 @@ "dev": "vite --port=3069" }, "dependencies": { - "@tanstack/svelte-hotkeys": "0.6.0", + "@tanstack/svelte-hotkeys": "0.7.0", "svelte": "^5.54.1" }, "devDependencies": { diff --git a/examples/vue/useHeldKeys/package.json b/examples/vue/useHeldKeys/package.json index 0ce88166..3d886d92 100644 --- a/examples/vue/useHeldKeys/package.json +++ b/examples/vue/useHeldKeys/package.json @@ -11,7 +11,7 @@ "test:types": "tsc" }, "dependencies": { - "@tanstack/vue-hotkeys": "^0.6.0", + "@tanstack/vue-hotkeys": "^0.7.0", "vue": "^3.5.30" }, "devDependencies": { diff --git a/examples/vue/useHotkey/package.json b/examples/vue/useHotkey/package.json index 4e98fdc8..581ec674 100644 --- a/examples/vue/useHotkey/package.json +++ b/examples/vue/useHotkey/package.json @@ -11,7 +11,7 @@ "test:types": "tsc" }, "dependencies": { - "@tanstack/vue-hotkeys": "^0.6.0", + "@tanstack/vue-hotkeys": "^0.7.0", "vue": "^3.5.30" }, "devDependencies": { diff --git a/examples/vue/useHotkeyRecorder/package.json b/examples/vue/useHotkeyRecorder/package.json index 1d1b2ce6..52703865 100644 --- a/examples/vue/useHotkeyRecorder/package.json +++ b/examples/vue/useHotkeyRecorder/package.json @@ -11,7 +11,7 @@ "test:types": "tsc" }, "dependencies": { - "@tanstack/vue-hotkeys": "^0.6.0", + "@tanstack/vue-hotkeys": "^0.7.0", "vue": "^3.5.30" }, "devDependencies": { diff --git a/examples/vue/useHotkeySequence/package.json b/examples/vue/useHotkeySequence/package.json index 1cabca46..f4d86557 100644 --- a/examples/vue/useHotkeySequence/package.json +++ b/examples/vue/useHotkeySequence/package.json @@ -11,7 +11,7 @@ "test:types": "tsc" }, "dependencies": { - "@tanstack/vue-hotkeys": "^0.6.0", + "@tanstack/vue-hotkeys": "^0.7.0", "vue": "^3.5.30" }, "devDependencies": { diff --git a/examples/vue/useHotkeySequenceRecorder/package.json b/examples/vue/useHotkeySequenceRecorder/package.json index 52ffc25e..2a2501b7 100644 --- a/examples/vue/useHotkeySequenceRecorder/package.json +++ b/examples/vue/useHotkeySequenceRecorder/package.json @@ -11,7 +11,7 @@ "test:types": "tsc" }, "dependencies": { - "@tanstack/vue-hotkeys": "^0.6.0", + "@tanstack/vue-hotkeys": "^0.7.0", "vue": "^3.5.30" }, "devDependencies": { diff --git a/examples/vue/useHotkeySequences/package.json b/examples/vue/useHotkeySequences/package.json index 95ab61fd..1fc86614 100644 --- a/examples/vue/useHotkeySequences/package.json +++ b/examples/vue/useHotkeySequences/package.json @@ -11,7 +11,7 @@ "test:types": "tsc" }, "dependencies": { - "@tanstack/vue-hotkeys": "^0.6.0", + "@tanstack/vue-hotkeys": "^0.7.0", "vue": "^3.5.30" }, "devDependencies": { diff --git a/examples/vue/useHotkeys/package.json b/examples/vue/useHotkeys/package.json index f6b0c258..357dea4d 100644 --- a/examples/vue/useHotkeys/package.json +++ b/examples/vue/useHotkeys/package.json @@ -11,7 +11,7 @@ "test:types": "tsc" }, "dependencies": { - "@tanstack/vue-hotkeys": "^0.6.0", + "@tanstack/vue-hotkeys": "^0.7.0", "vue": "^3.5.30" }, "devDependencies": { diff --git a/examples/vue/useKeyhold/package.json b/examples/vue/useKeyhold/package.json index 5d04486b..de19994d 100644 --- a/examples/vue/useKeyhold/package.json +++ b/examples/vue/useKeyhold/package.json @@ -11,7 +11,7 @@ "test:types": "tsc" }, "dependencies": { - "@tanstack/vue-hotkeys": "^0.6.0", + "@tanstack/vue-hotkeys": "^0.7.0", "vue": "^3.5.30" }, "devDependencies": { diff --git a/packages/angular-hotkeys/CHANGELOG.md b/packages/angular-hotkeys/CHANGELOG.md index 5beb4bbf..46a783dd 100644 --- a/packages/angular-hotkeys/CHANGELOG.md +++ b/packages/angular-hotkeys/CHANGELOG.md @@ -1,5 +1,11 @@ # @tanstack/angular-hotkeys +## 0.7.0 + +### Minor Changes + +- Add plural sequence APIs (`useHotkeySequences`, `createHotkeySequences`, `createHotkeySequencesAttachment`, `injectHotkeySequences`) and align `enabled` across adapters: disabled registrations stay in the manager for devtools, only core dispatch is skipped, and toggling `enabled` updates handles via `setOptions` instead of churning unregister/register. ([#80](https://github.com/TanStack/hotkeys/pull/80)) + ## 0.6.0 ### Minor Changes diff --git a/packages/angular-hotkeys/package.json b/packages/angular-hotkeys/package.json index 547048b6..87936de0 100644 --- a/packages/angular-hotkeys/package.json +++ b/packages/angular-hotkeys/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/angular-hotkeys", - "version": "0.6.0", + "version": "0.7.0", "description": "Angular adapter for TanStack Hotkeys", "author": "Tanner Linsley", "license": "MIT", diff --git a/packages/preact-hotkeys/CHANGELOG.md b/packages/preact-hotkeys/CHANGELOG.md index 3946816c..3752788a 100644 --- a/packages/preact-hotkeys/CHANGELOG.md +++ b/packages/preact-hotkeys/CHANGELOG.md @@ -1,5 +1,11 @@ # @tanstack/preact-hotkeys +## 0.7.0 + +### Minor Changes + +- Add plural sequence APIs (`useHotkeySequences`, `createHotkeySequences`, `createHotkeySequencesAttachment`, `injectHotkeySequences`) and align `enabled` across adapters: disabled registrations stay in the manager for devtools, only core dispatch is skipped, and toggling `enabled` updates handles via `setOptions` instead of churning unregister/register. ([#80](https://github.com/TanStack/hotkeys/pull/80)) + ## 0.6.0 ### Minor Changes diff --git a/packages/preact-hotkeys/package.json b/packages/preact-hotkeys/package.json index cd512886..e99755b5 100644 --- a/packages/preact-hotkeys/package.json +++ b/packages/preact-hotkeys/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/preact-hotkeys", - "version": "0.6.0", + "version": "0.7.0", "description": "Preact adapter for TanStack Hotkeys", "author": "Tanner Linsley", "license": "MIT", diff --git a/packages/react-hotkeys/CHANGELOG.md b/packages/react-hotkeys/CHANGELOG.md index 91fa0b8f..bcfa9179 100644 --- a/packages/react-hotkeys/CHANGELOG.md +++ b/packages/react-hotkeys/CHANGELOG.md @@ -1,5 +1,11 @@ # @tanstack/react-hotkeys +## 0.7.0 + +### Minor Changes + +- Add plural sequence APIs (`useHotkeySequences`, `createHotkeySequences`, `createHotkeySequencesAttachment`, `injectHotkeySequences`) and align `enabled` across adapters: disabled registrations stay in the manager for devtools, only core dispatch is skipped, and toggling `enabled` updates handles via `setOptions` instead of churning unregister/register. ([#80](https://github.com/TanStack/hotkeys/pull/80)) + ## 0.6.0 ### Minor Changes diff --git a/packages/react-hotkeys/package.json b/packages/react-hotkeys/package.json index 967f05cf..1397d0c3 100644 --- a/packages/react-hotkeys/package.json +++ b/packages/react-hotkeys/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/react-hotkeys", - "version": "0.6.0", + "version": "0.7.0", "description": "React adapter for TanStack Hotkeys", "author": "Tanner Linsley", "license": "MIT", diff --git a/packages/solid-hotkeys/CHANGELOG.md b/packages/solid-hotkeys/CHANGELOG.md index 43da3b82..38f378f9 100644 --- a/packages/solid-hotkeys/CHANGELOG.md +++ b/packages/solid-hotkeys/CHANGELOG.md @@ -1,5 +1,11 @@ # @tanstack/solid-hotkeys +## 0.7.0 + +### Minor Changes + +- Add plural sequence APIs (`useHotkeySequences`, `createHotkeySequences`, `createHotkeySequencesAttachment`, `injectHotkeySequences`) and align `enabled` across adapters: disabled registrations stay in the manager for devtools, only core dispatch is skipped, and toggling `enabled` updates handles via `setOptions` instead of churning unregister/register. ([#80](https://github.com/TanStack/hotkeys/pull/80)) + ## 0.6.0 ### Minor Changes diff --git a/packages/solid-hotkeys/package.json b/packages/solid-hotkeys/package.json index ed0c909e..f163dde4 100644 --- a/packages/solid-hotkeys/package.json +++ b/packages/solid-hotkeys/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/solid-hotkeys", - "version": "0.6.0", + "version": "0.7.0", "description": "SolidJS adapter for TanStack Hotkeys", "author": "Tanner Linsley", "license": "MIT", diff --git a/packages/svelte-hotkeys/CHANGELOG.md b/packages/svelte-hotkeys/CHANGELOG.md index 84925311..826625f0 100644 --- a/packages/svelte-hotkeys/CHANGELOG.md +++ b/packages/svelte-hotkeys/CHANGELOG.md @@ -1,5 +1,11 @@ # @tanstack/svelte-hotkeys +## 0.7.0 + +### Minor Changes + +- Add plural sequence APIs (`useHotkeySequences`, `createHotkeySequences`, `createHotkeySequencesAttachment`, `injectHotkeySequences`) and align `enabled` across adapters: disabled registrations stay in the manager for devtools, only core dispatch is skipped, and toggling `enabled` updates handles via `setOptions` instead of churning unregister/register. ([#80](https://github.com/TanStack/hotkeys/pull/80)) + ## 0.6.0 ### Minor Changes diff --git a/packages/svelte-hotkeys/package.json b/packages/svelte-hotkeys/package.json index 33afc9a4..bd300c90 100644 --- a/packages/svelte-hotkeys/package.json +++ b/packages/svelte-hotkeys/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/svelte-hotkeys", - "version": "0.6.0", + "version": "0.7.0", "description": "Svelte adapter for TanStack Hotkeys", "author": "Kunal Rao", "license": "MIT", diff --git a/packages/vue-hotkeys/CHANGELOG.md b/packages/vue-hotkeys/CHANGELOG.md index 538f524d..be90947e 100644 --- a/packages/vue-hotkeys/CHANGELOG.md +++ b/packages/vue-hotkeys/CHANGELOG.md @@ -1,5 +1,11 @@ # @tanstack/vue-hotkeys +## 0.7.0 + +### Minor Changes + +- Add plural sequence APIs (`useHotkeySequences`, `createHotkeySequences`, `createHotkeySequencesAttachment`, `injectHotkeySequences`) and align `enabled` across adapters: disabled registrations stay in the manager for devtools, only core dispatch is skipped, and toggling `enabled` updates handles via `setOptions` instead of churning unregister/register. ([#80](https://github.com/TanStack/hotkeys/pull/80)) + ## 0.6.0 ### Minor Changes diff --git a/packages/vue-hotkeys/package.json b/packages/vue-hotkeys/package.json index 6a3d4aec..c2e20206 100644 --- a/packages/vue-hotkeys/package.json +++ b/packages/vue-hotkeys/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/vue-hotkeys", - "version": "0.6.0", + "version": "0.7.0", "description": "Vue adapter for TanStack Hotkeys", "author": "Tanner Linsley", "license": "MIT", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index d5db5ac8..0432dbde 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -105,7 +105,7 @@ importers: specifier: ^21.2.5 version: 21.2.5(@angular/common@21.2.5(@angular/core@21.2.5(@angular/compiler@21.2.5)(rxjs@7.8.2)(zone.js@0.16.1))(rxjs@7.8.2))(@angular/core@21.2.5(@angular/compiler@21.2.5)(rxjs@7.8.2)(zone.js@0.16.1))(@angular/platform-browser@21.2.5(@angular/common@21.2.5(@angular/core@21.2.5(@angular/compiler@21.2.5)(rxjs@7.8.2)(zone.js@0.16.1))(rxjs@7.8.2))(@angular/core@21.2.5(@angular/compiler@21.2.5)(rxjs@7.8.2)(zone.js@0.16.1)))(rxjs@7.8.2) '@tanstack/angular-hotkeys': - specifier: ^0.6.0 + specifier: ^0.7.0 version: link:../../../packages/angular-hotkeys rxjs: specifier: ~7.8.2 @@ -175,7 +175,7 @@ importers: specifier: ^21.2.5 version: 21.2.5(@angular/common@21.2.5(@angular/core@21.2.5(@angular/compiler@21.2.5)(rxjs@7.8.2)(zone.js@0.16.1))(rxjs@7.8.2))(@angular/core@21.2.5(@angular/compiler@21.2.5)(rxjs@7.8.2)(zone.js@0.16.1))(@angular/platform-browser@21.2.5(@angular/common@21.2.5(@angular/core@21.2.5(@angular/compiler@21.2.5)(rxjs@7.8.2)(zone.js@0.16.1))(rxjs@7.8.2))(@angular/core@21.2.5(@angular/compiler@21.2.5)(rxjs@7.8.2)(zone.js@0.16.1)))(rxjs@7.8.2) '@tanstack/angular-hotkeys': - specifier: ^0.6.0 + specifier: ^0.7.0 version: link:../../../packages/angular-hotkeys rxjs: specifier: ~7.8.2 @@ -245,7 +245,7 @@ importers: specifier: ^21.2.5 version: 21.2.5(@angular/common@21.2.5(@angular/core@21.2.5(@angular/compiler@21.2.5)(rxjs@7.8.2)(zone.js@0.16.1))(rxjs@7.8.2))(@angular/core@21.2.5(@angular/compiler@21.2.5)(rxjs@7.8.2)(zone.js@0.16.1))(@angular/platform-browser@21.2.5(@angular/common@21.2.5(@angular/core@21.2.5(@angular/compiler@21.2.5)(rxjs@7.8.2)(zone.js@0.16.1))(rxjs@7.8.2))(@angular/core@21.2.5(@angular/compiler@21.2.5)(rxjs@7.8.2)(zone.js@0.16.1)))(rxjs@7.8.2) '@tanstack/angular-hotkeys': - specifier: ^0.6.0 + specifier: ^0.7.0 version: link:../../../packages/angular-hotkeys rxjs: specifier: ~7.8.2 @@ -315,7 +315,7 @@ importers: specifier: ^21.2.5 version: 21.2.5(@angular/common@21.2.5(@angular/core@21.2.5(@angular/compiler@21.2.5)(rxjs@7.8.2)(zone.js@0.16.1))(rxjs@7.8.2))(@angular/core@21.2.5(@angular/compiler@21.2.5)(rxjs@7.8.2)(zone.js@0.16.1))(@angular/platform-browser@21.2.5(@angular/common@21.2.5(@angular/core@21.2.5(@angular/compiler@21.2.5)(rxjs@7.8.2)(zone.js@0.16.1))(rxjs@7.8.2))(@angular/core@21.2.5(@angular/compiler@21.2.5)(rxjs@7.8.2)(zone.js@0.16.1)))(rxjs@7.8.2) '@tanstack/angular-hotkeys': - specifier: ^0.6.0 + specifier: ^0.7.0 version: link:../../../packages/angular-hotkeys rxjs: specifier: ~7.8.2 @@ -385,7 +385,7 @@ importers: specifier: ^21.2.5 version: 21.2.5(@angular/common@21.2.5(@angular/core@21.2.5(@angular/compiler@21.2.5)(rxjs@7.8.2)(zone.js@0.16.1))(rxjs@7.8.2))(@angular/core@21.2.5(@angular/compiler@21.2.5)(rxjs@7.8.2)(zone.js@0.16.1))(@angular/platform-browser@21.2.5(@angular/common@21.2.5(@angular/core@21.2.5(@angular/compiler@21.2.5)(rxjs@7.8.2)(zone.js@0.16.1))(rxjs@7.8.2))(@angular/core@21.2.5(@angular/compiler@21.2.5)(rxjs@7.8.2)(zone.js@0.16.1)))(rxjs@7.8.2) '@tanstack/angular-hotkeys': - specifier: ^0.6.0 + specifier: ^0.7.0 version: link:../../../packages/angular-hotkeys rxjs: specifier: ~7.8.2 @@ -455,7 +455,7 @@ importers: specifier: ^21.2.5 version: 21.2.5(@angular/common@21.2.5(@angular/core@21.2.5(@angular/compiler@21.2.5)(rxjs@7.8.2)(zone.js@0.16.1))(rxjs@7.8.2))(@angular/core@21.2.5(@angular/compiler@21.2.5)(rxjs@7.8.2)(zone.js@0.16.1))(@angular/platform-browser@21.2.5(@angular/common@21.2.5(@angular/core@21.2.5(@angular/compiler@21.2.5)(rxjs@7.8.2)(zone.js@0.16.1))(rxjs@7.8.2))(@angular/core@21.2.5(@angular/compiler@21.2.5)(rxjs@7.8.2)(zone.js@0.16.1)))(rxjs@7.8.2) '@tanstack/angular-hotkeys': - specifier: ^0.6.0 + specifier: ^0.7.0 version: link:../../../packages/angular-hotkeys rxjs: specifier: ~7.8.2 @@ -525,7 +525,7 @@ importers: specifier: ^21.2.5 version: 21.2.5(@angular/common@21.2.5(@angular/core@21.2.5(@angular/compiler@21.2.5)(rxjs@7.8.2)(zone.js@0.16.1))(rxjs@7.8.2))(@angular/core@21.2.5(@angular/compiler@21.2.5)(rxjs@7.8.2)(zone.js@0.16.1))(@angular/platform-browser@21.2.5(@angular/common@21.2.5(@angular/core@21.2.5(@angular/compiler@21.2.5)(rxjs@7.8.2)(zone.js@0.16.1))(rxjs@7.8.2))(@angular/core@21.2.5(@angular/compiler@21.2.5)(rxjs@7.8.2)(zone.js@0.16.1)))(rxjs@7.8.2) '@tanstack/angular-hotkeys': - specifier: ^0.6.0 + specifier: ^0.7.0 version: link:../../../packages/angular-hotkeys rxjs: specifier: ~7.8.2 @@ -595,7 +595,7 @@ importers: specifier: ^21.2.5 version: 21.2.5(@angular/common@21.2.5(@angular/core@21.2.5(@angular/compiler@21.2.5)(rxjs@7.8.2)(zone.js@0.16.1))(rxjs@7.8.2))(@angular/core@21.2.5(@angular/compiler@21.2.5)(rxjs@7.8.2)(zone.js@0.16.1))(@angular/platform-browser@21.2.5(@angular/common@21.2.5(@angular/core@21.2.5(@angular/compiler@21.2.5)(rxjs@7.8.2)(zone.js@0.16.1))(rxjs@7.8.2))(@angular/core@21.2.5(@angular/compiler@21.2.5)(rxjs@7.8.2)(zone.js@0.16.1)))(rxjs@7.8.2) '@tanstack/angular-hotkeys': - specifier: ^0.6.0 + specifier: ^0.7.0 version: link:../../../packages/angular-hotkeys rxjs: specifier: ~7.8.2 @@ -644,7 +644,7 @@ importers: examples/preact/useHeldKeys: dependencies: '@tanstack/preact-hotkeys': - specifier: ^0.6.0 + specifier: ^0.7.0 version: link:../../../packages/preact-hotkeys preact: specifier: ^10.29.0 @@ -669,7 +669,7 @@ importers: examples/preact/useHotkey: dependencies: '@tanstack/preact-hotkeys': - specifier: ^0.6.0 + specifier: ^0.7.0 version: link:../../../packages/preact-hotkeys preact: specifier: ^10.29.0 @@ -694,7 +694,7 @@ importers: examples/preact/useHotkeyRecorder: dependencies: '@tanstack/preact-hotkeys': - specifier: ^0.6.0 + specifier: ^0.7.0 version: link:../../../packages/preact-hotkeys preact: specifier: ^10.29.0 @@ -719,7 +719,7 @@ importers: examples/preact/useHotkeySequence: dependencies: '@tanstack/preact-hotkeys': - specifier: ^0.6.0 + specifier: ^0.7.0 version: link:../../../packages/preact-hotkeys preact: specifier: ^10.29.0 @@ -744,7 +744,7 @@ importers: examples/preact/useHotkeySequenceRecorder: dependencies: '@tanstack/preact-hotkeys': - specifier: ^0.6.0 + specifier: ^0.7.0 version: link:../../../packages/preact-hotkeys preact: specifier: ^10.29.0 @@ -769,7 +769,7 @@ importers: examples/preact/useHotkeySequences: dependencies: '@tanstack/preact-hotkeys': - specifier: ^0.6.0 + specifier: ^0.7.0 version: link:../../../packages/preact-hotkeys preact: specifier: ^10.29.0 @@ -794,7 +794,7 @@ importers: examples/preact/useHotkeys: dependencies: '@tanstack/preact-hotkeys': - specifier: ^0.6.0 + specifier: ^0.7.0 version: link:../../../packages/preact-hotkeys preact: specifier: ^10.29.0 @@ -819,7 +819,7 @@ importers: examples/preact/useKeyhold: dependencies: '@tanstack/preact-hotkeys': - specifier: ^0.6.0 + specifier: ^0.7.0 version: link:../../../packages/preact-hotkeys preact: specifier: ^10.29.0 @@ -844,7 +844,7 @@ importers: examples/react/useHeldKeys: dependencies: '@tanstack/react-hotkeys': - specifier: ^0.6.0 + specifier: ^0.7.0 version: link:../../../packages/react-hotkeys react: specifier: ^19.2.4 @@ -878,7 +878,7 @@ importers: examples/react/useHotkey: dependencies: '@tanstack/react-hotkeys': - specifier: ^0.6.0 + specifier: ^0.7.0 version: link:../../../packages/react-hotkeys react: specifier: ^19.2.4 @@ -912,7 +912,7 @@ importers: examples/react/useHotkeyRecorder: dependencies: '@tanstack/react-hotkeys': - specifier: ^0.6.0 + specifier: ^0.7.0 version: link:../../../packages/react-hotkeys react: specifier: ^19.2.4 @@ -946,7 +946,7 @@ importers: examples/react/useHotkeySequence: dependencies: '@tanstack/react-hotkeys': - specifier: ^0.6.0 + specifier: ^0.7.0 version: link:../../../packages/react-hotkeys react: specifier: ^19.2.4 @@ -980,7 +980,7 @@ importers: examples/react/useHotkeySequenceRecorder: dependencies: '@tanstack/react-hotkeys': - specifier: ^0.6.0 + specifier: ^0.7.0 version: link:../../../packages/react-hotkeys react: specifier: ^19.2.4 @@ -1014,7 +1014,7 @@ importers: examples/react/useHotkeySequences: dependencies: '@tanstack/react-hotkeys': - specifier: ^0.6.0 + specifier: ^0.7.0 version: link:../../../packages/react-hotkeys react: specifier: ^19.2.4 @@ -1048,7 +1048,7 @@ importers: examples/react/useHotkeys: dependencies: '@tanstack/react-hotkeys': - specifier: ^0.6.0 + specifier: ^0.7.0 version: link:../../../packages/react-hotkeys react: specifier: ^19.2.4 @@ -1082,7 +1082,7 @@ importers: examples/react/useKeyhold: dependencies: '@tanstack/react-hotkeys': - specifier: ^0.6.0 + specifier: ^0.7.0 version: link:../../../packages/react-hotkeys react: specifier: ^19.2.4 @@ -1119,7 +1119,7 @@ importers: specifier: 0.8.0 version: 0.8.0(csstype@3.2.3)(solid-js@1.9.11) '@tanstack/solid-hotkeys': - specifier: ^0.6.0 + specifier: ^0.7.0 version: link:../../../packages/solid-hotkeys '@tanstack/solid-hotkeys-devtools': specifier: ^0.5.0 @@ -1141,7 +1141,7 @@ importers: specifier: 0.8.0 version: 0.8.0(csstype@3.2.3)(solid-js@1.9.11) '@tanstack/solid-hotkeys': - specifier: ^0.6.0 + specifier: ^0.7.0 version: link:../../../packages/solid-hotkeys '@tanstack/solid-hotkeys-devtools': specifier: ^0.5.0 @@ -1169,7 +1169,7 @@ importers: specifier: 0.8.0 version: 0.8.0(csstype@3.2.3)(solid-js@1.9.11) '@tanstack/solid-hotkeys': - specifier: ^0.6.0 + specifier: ^0.7.0 version: link:../../../packages/solid-hotkeys '@tanstack/solid-hotkeys-devtools': specifier: ^0.5.0 @@ -1191,7 +1191,7 @@ importers: specifier: 0.8.0 version: 0.8.0(csstype@3.2.3)(solid-js@1.9.11) '@tanstack/solid-hotkeys': - specifier: ^0.6.0 + specifier: ^0.7.0 version: link:../../../packages/solid-hotkeys '@tanstack/solid-hotkeys-devtools': specifier: ^0.5.0 @@ -1213,7 +1213,7 @@ importers: specifier: 0.8.0 version: 0.8.0(csstype@3.2.3)(solid-js@1.9.11) '@tanstack/solid-hotkeys': - specifier: ^0.6.0 + specifier: ^0.7.0 version: link:../../../packages/solid-hotkeys '@tanstack/solid-hotkeys-devtools': specifier: ^0.5.0 @@ -1235,7 +1235,7 @@ importers: specifier: 0.8.0 version: 0.8.0(csstype@3.2.3)(solid-js@1.9.11) '@tanstack/solid-hotkeys': - specifier: ^0.6.0 + specifier: ^0.7.0 version: link:../../../packages/solid-hotkeys '@tanstack/solid-hotkeys-devtools': specifier: ^0.5.0 @@ -1257,7 +1257,7 @@ importers: specifier: 0.8.0 version: 0.8.0(csstype@3.2.3)(solid-js@1.9.11) '@tanstack/solid-hotkeys': - specifier: ^0.6.0 + specifier: ^0.7.0 version: link:../../../packages/solid-hotkeys '@tanstack/solid-hotkeys-devtools': specifier: ^0.5.0 @@ -1285,7 +1285,7 @@ importers: specifier: 0.8.0 version: 0.8.0(csstype@3.2.3)(solid-js@1.9.11) '@tanstack/solid-hotkeys': - specifier: ^0.6.0 + specifier: ^0.7.0 version: link:../../../packages/solid-hotkeys '@tanstack/solid-hotkeys-devtools': specifier: ^0.5.0 @@ -1304,7 +1304,7 @@ importers: examples/svelte/create-hotkey: dependencies: '@tanstack/svelte-hotkeys': - specifier: 0.6.0 + specifier: 0.7.0 version: link:../../../packages/svelte-hotkeys svelte: specifier: ^5.54.1 @@ -1323,7 +1323,7 @@ importers: examples/svelte/create-hotkey-recorder: dependencies: '@tanstack/svelte-hotkeys': - specifier: 0.6.0 + specifier: 0.7.0 version: link:../../../packages/svelte-hotkeys svelte: specifier: ^5.54.1 @@ -1342,7 +1342,7 @@ importers: examples/svelte/create-hotkey-sequence: dependencies: '@tanstack/svelte-hotkeys': - specifier: 0.6.0 + specifier: 0.7.0 version: link:../../../packages/svelte-hotkeys svelte: specifier: ^5.54.1 @@ -1361,7 +1361,7 @@ importers: examples/svelte/create-hotkey-sequence-recorder: dependencies: '@tanstack/svelte-hotkeys': - specifier: 0.6.0 + specifier: 0.7.0 version: link:../../../packages/svelte-hotkeys svelte: specifier: ^5.54.1 @@ -1380,7 +1380,7 @@ importers: examples/svelte/create-hotkey-sequences: dependencies: '@tanstack/svelte-hotkeys': - specifier: 0.6.0 + specifier: 0.7.0 version: link:../../../packages/svelte-hotkeys svelte: specifier: ^5.54.1 @@ -1399,7 +1399,7 @@ importers: examples/svelte/create-hotkeys: dependencies: '@tanstack/svelte-hotkeys': - specifier: 0.6.0 + specifier: 0.7.0 version: link:../../../packages/svelte-hotkeys svelte: specifier: ^5.54.1 @@ -1418,7 +1418,7 @@ importers: examples/svelte/get-held-keys: dependencies: '@tanstack/svelte-hotkeys': - specifier: 0.6.0 + specifier: 0.7.0 version: link:../../../packages/svelte-hotkeys svelte: specifier: ^5.54.1 @@ -1437,7 +1437,7 @@ importers: examples/svelte/get-is-key-held: dependencies: '@tanstack/svelte-hotkeys': - specifier: 0.6.0 + specifier: 0.7.0 version: link:../../../packages/svelte-hotkeys svelte: specifier: ^5.54.1 @@ -1456,7 +1456,7 @@ importers: examples/vue/useHeldKeys: dependencies: '@tanstack/vue-hotkeys': - specifier: ^0.6.0 + specifier: ^0.7.0 version: link:../../../packages/vue-hotkeys vue: specifier: ^3.5.30 @@ -1481,7 +1481,7 @@ importers: examples/vue/useHotkey: dependencies: '@tanstack/vue-hotkeys': - specifier: ^0.6.0 + specifier: ^0.7.0 version: link:../../../packages/vue-hotkeys vue: specifier: ^3.5.30 @@ -1506,7 +1506,7 @@ importers: examples/vue/useHotkeyRecorder: dependencies: '@tanstack/vue-hotkeys': - specifier: ^0.6.0 + specifier: ^0.7.0 version: link:../../../packages/vue-hotkeys vue: specifier: ^3.5.30 @@ -1531,7 +1531,7 @@ importers: examples/vue/useHotkeySequence: dependencies: '@tanstack/vue-hotkeys': - specifier: ^0.6.0 + specifier: ^0.7.0 version: link:../../../packages/vue-hotkeys vue: specifier: ^3.5.30 @@ -1556,7 +1556,7 @@ importers: examples/vue/useHotkeySequenceRecorder: dependencies: '@tanstack/vue-hotkeys': - specifier: ^0.6.0 + specifier: ^0.7.0 version: link:../../../packages/vue-hotkeys vue: specifier: ^3.5.30 @@ -1581,7 +1581,7 @@ importers: examples/vue/useHotkeySequences: dependencies: '@tanstack/vue-hotkeys': - specifier: ^0.6.0 + specifier: ^0.7.0 version: link:../../../packages/vue-hotkeys vue: specifier: ^3.5.30 @@ -1606,7 +1606,7 @@ importers: examples/vue/useHotkeys: dependencies: '@tanstack/vue-hotkeys': - specifier: ^0.6.0 + specifier: ^0.7.0 version: link:../../../packages/vue-hotkeys vue: specifier: ^3.5.30 @@ -1631,7 +1631,7 @@ importers: examples/vue/useKeyhold: dependencies: '@tanstack/vue-hotkeys': - specifier: ^0.6.0 + specifier: ^0.7.0 version: link:../../../packages/vue-hotkeys vue: specifier: ^3.5.30