From 566296f73147c22abb53971371de480e11437130 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 8 Mar 2026 01:46:53 +0000 Subject: [PATCH 1/3] ci: Version Packages --- .changeset/odd-ties-clap.md | 13 -- examples/angular/injectHeldKeys/CHANGELOG.md | 8 ++ examples/angular/injectHeldKeys/package.json | 4 +- examples/angular/injectHotkey/CHANGELOG.md | 8 ++ examples/angular/injectHotkey/package.json | 4 +- .../angular/injectHotkeyRecorder/CHANGELOG.md | 8 ++ .../angular/injectHotkeyRecorder/package.json | 4 +- .../angular/injectHotkeySequence/CHANGELOG.md | 8 ++ .../angular/injectHotkeySequence/package.json | 4 +- examples/angular/injectKeyHold/CHANGELOG.md | 8 ++ examples/angular/injectKeyHold/package.json | 4 +- 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/angular-hotkeys/CHANGELOG.md | 12 ++ packages/angular-hotkeys/package.json | 2 +- packages/hotkeys-devtools/CHANGELOG.md | 11 ++ packages/hotkeys-devtools/package.json | 2 +- packages/hotkeys/CHANGELOG.md | 6 + packages/hotkeys/package.json | 2 +- packages/preact-hotkeys-devtools/CHANGELOG.md | 11 ++ packages/preact-hotkeys-devtools/package.json | 2 +- packages/preact-hotkeys/CHANGELOG.md | 11 ++ packages/preact-hotkeys/package.json | 2 +- packages/react-hotkeys-devtools/CHANGELOG.md | 11 ++ packages/react-hotkeys-devtools/package.json | 2 +- packages/react-hotkeys/CHANGELOG.md | 11 ++ packages/react-hotkeys/package.json | 2 +- packages/solid-hotkeys-devtools/CHANGELOG.md | 11 ++ packages/solid-hotkeys-devtools/package.json | 2 +- packages/solid-hotkeys/CHANGELOG.md | 11 ++ packages/solid-hotkeys/package.json | 2 +- pnpm-lock.yaml | 114 +++++++++--------- 45 files changed, 241 insertions(+), 119 deletions(-) delete mode 100644 .changeset/odd-ties-clap.md create mode 100644 examples/angular/injectHeldKeys/CHANGELOG.md create mode 100644 examples/angular/injectHotkey/CHANGELOG.md create mode 100644 examples/angular/injectHotkeyRecorder/CHANGELOG.md create mode 100644 examples/angular/injectHotkeySequence/CHANGELOG.md create mode 100644 examples/angular/injectKeyHold/CHANGELOG.md create mode 100644 packages/angular-hotkeys/CHANGELOG.md diff --git a/.changeset/odd-ties-clap.md b/.changeset/odd-ties-clap.md deleted file mode 100644 index 2902bf2..0000000 --- a/.changeset/odd-ties-clap.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -'@tanstack/angular-hotkeys': minor -'@tanstack/hotkeys': minor -'@tanstack/hotkeys-devtools': minor -'@tanstack/preact-hotkeys': minor -'@tanstack/preact-hotkeys-devtools': minor -'@tanstack/react-hotkeys': minor -'@tanstack/react-hotkeys-devtools': minor -'@tanstack/solid-hotkeys': minor -'@tanstack/solid-hotkeys-devtools': minor ---- - -add angular adapter and upgrade packages diff --git a/examples/angular/injectHeldKeys/CHANGELOG.md b/examples/angular/injectHeldKeys/CHANGELOG.md new file mode 100644 index 0000000..607b9ab --- /dev/null +++ b/examples/angular/injectHeldKeys/CHANGELOG.md @@ -0,0 +1,8 @@ +# inject-held-keys + +## 0.0.1 + +### Patch Changes + +- Updated dependencies [[`c173ed0`](https://github.com/TanStack/hotkeys/commit/c173ed079c6b0f282c9cf8dcb6d9523408eca5a0)]: + - @tanstack/angular-hotkeys@0.4.0 diff --git a/examples/angular/injectHeldKeys/package.json b/examples/angular/injectHeldKeys/package.json index bea4808..e9aa86a 100644 --- a/examples/angular/injectHeldKeys/package.json +++ b/examples/angular/injectHeldKeys/package.json @@ -1,6 +1,6 @@ { "name": "inject-held-keys", - "version": "0.0.0", + "version": "0.0.1", "scripts": { "ng": "ng", "start": "ng serve --port=3069", @@ -18,7 +18,7 @@ "@angular/platform-browser": "^21.2.1", "@angular/platform-browser-dynamic": "^21.2.1", "@angular/router": "^21.2.1", - "@tanstack/angular-hotkeys": "^0.3.3", + "@tanstack/angular-hotkeys": "^0.4.0", "rxjs": "~7.8.2", "tslib": "^2.8.1", "zone.js": "~0.16.1" diff --git a/examples/angular/injectHotkey/CHANGELOG.md b/examples/angular/injectHotkey/CHANGELOG.md new file mode 100644 index 0000000..df13432 --- /dev/null +++ b/examples/angular/injectHotkey/CHANGELOG.md @@ -0,0 +1,8 @@ +# inject-hotkey + +## 0.0.1 + +### Patch Changes + +- Updated dependencies [[`c173ed0`](https://github.com/TanStack/hotkeys/commit/c173ed079c6b0f282c9cf8dcb6d9523408eca5a0)]: + - @tanstack/angular-hotkeys@0.4.0 diff --git a/examples/angular/injectHotkey/package.json b/examples/angular/injectHotkey/package.json index eefbd8c..20c6c92 100644 --- a/examples/angular/injectHotkey/package.json +++ b/examples/angular/injectHotkey/package.json @@ -1,6 +1,6 @@ { "name": "inject-hotkey", - "version": "0.0.0", + "version": "0.0.1", "scripts": { "ng": "ng", "start": "ng serve --port=3069", @@ -18,7 +18,7 @@ "@angular/platform-browser": "^21.2.1", "@angular/platform-browser-dynamic": "^21.2.1", "@angular/router": "^21.2.1", - "@tanstack/angular-hotkeys": "^0.3.3", + "@tanstack/angular-hotkeys": "^0.4.0", "rxjs": "~7.8.2", "tslib": "^2.8.1", "zone.js": "~0.16.1" diff --git a/examples/angular/injectHotkeyRecorder/CHANGELOG.md b/examples/angular/injectHotkeyRecorder/CHANGELOG.md new file mode 100644 index 0000000..76b02c8 --- /dev/null +++ b/examples/angular/injectHotkeyRecorder/CHANGELOG.md @@ -0,0 +1,8 @@ +# inject-hotkey-recorder + +## 0.0.1 + +### Patch Changes + +- Updated dependencies [[`c173ed0`](https://github.com/TanStack/hotkeys/commit/c173ed079c6b0f282c9cf8dcb6d9523408eca5a0)]: + - @tanstack/angular-hotkeys@0.4.0 diff --git a/examples/angular/injectHotkeyRecorder/package.json b/examples/angular/injectHotkeyRecorder/package.json index b6d1884..191bece 100644 --- a/examples/angular/injectHotkeyRecorder/package.json +++ b/examples/angular/injectHotkeyRecorder/package.json @@ -1,6 +1,6 @@ { "name": "inject-hotkey-recorder", - "version": "0.0.0", + "version": "0.0.1", "scripts": { "ng": "ng", "start": "ng serve --port=3069", @@ -18,7 +18,7 @@ "@angular/platform-browser": "^21.2.1", "@angular/platform-browser-dynamic": "^21.2.1", "@angular/router": "^21.2.1", - "@tanstack/angular-hotkeys": "^0.3.3", + "@tanstack/angular-hotkeys": "^0.4.0", "rxjs": "~7.8.2", "tslib": "^2.8.1", "zone.js": "~0.16.1" diff --git a/examples/angular/injectHotkeySequence/CHANGELOG.md b/examples/angular/injectHotkeySequence/CHANGELOG.md new file mode 100644 index 0000000..d9955da --- /dev/null +++ b/examples/angular/injectHotkeySequence/CHANGELOG.md @@ -0,0 +1,8 @@ +# inject-hotkey-sequence + +## 0.0.1 + +### Patch Changes + +- Updated dependencies [[`c173ed0`](https://github.com/TanStack/hotkeys/commit/c173ed079c6b0f282c9cf8dcb6d9523408eca5a0)]: + - @tanstack/angular-hotkeys@0.4.0 diff --git a/examples/angular/injectHotkeySequence/package.json b/examples/angular/injectHotkeySequence/package.json index 5715824..5d6e86d 100644 --- a/examples/angular/injectHotkeySequence/package.json +++ b/examples/angular/injectHotkeySequence/package.json @@ -1,6 +1,6 @@ { "name": "inject-hotkey-sequence", - "version": "0.0.0", + "version": "0.0.1", "scripts": { "ng": "ng", "start": "ng serve --port=3069", @@ -18,7 +18,7 @@ "@angular/platform-browser": "^21.2.1", "@angular/platform-browser-dynamic": "^21.2.1", "@angular/router": "^21.2.1", - "@tanstack/angular-hotkeys": "^0.3.3", + "@tanstack/angular-hotkeys": "^0.4.0", "rxjs": "~7.8.2", "tslib": "^2.8.1", "zone.js": "~0.16.1" diff --git a/examples/angular/injectKeyHold/CHANGELOG.md b/examples/angular/injectKeyHold/CHANGELOG.md new file mode 100644 index 0000000..589bc86 --- /dev/null +++ b/examples/angular/injectKeyHold/CHANGELOG.md @@ -0,0 +1,8 @@ +# inject-key-hold + +## 0.0.1 + +### Patch Changes + +- Updated dependencies [[`c173ed0`](https://github.com/TanStack/hotkeys/commit/c173ed079c6b0f282c9cf8dcb6d9523408eca5a0)]: + - @tanstack/angular-hotkeys@0.4.0 diff --git a/examples/angular/injectKeyHold/package.json b/examples/angular/injectKeyHold/package.json index 40eaa48..b821da3 100644 --- a/examples/angular/injectKeyHold/package.json +++ b/examples/angular/injectKeyHold/package.json @@ -1,6 +1,6 @@ { "name": "inject-key-hold", - "version": "0.0.0", + "version": "0.0.1", "scripts": { "ng": "ng", "start": "ng serve --port=3069", @@ -18,7 +18,7 @@ "@angular/platform-browser": "^21.2.1", "@angular/platform-browser-dynamic": "^21.2.1", "@angular/router": "^21.2.1", - "@tanstack/angular-hotkeys": "^0.3.3", + "@tanstack/angular-hotkeys": "^0.4.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 2a94825..729a6ea 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.3", + "@tanstack/preact-hotkeys": "^0.4.0", "preact": "^10.28.4" }, "devDependencies": { "@preact/preset-vite": "^2.10.3", "@tanstack/preact-devtools": "0.9.15", - "@tanstack/preact-hotkeys-devtools": "^0.3.3", + "@tanstack/preact-hotkeys-devtools": "^0.4.0", "typescript": "5.9.3", "vite": "^7.3.1" } diff --git a/examples/preact/useHotkey/package.json b/examples/preact/useHotkey/package.json index a9c8988..232d1d9 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.3", + "@tanstack/preact-hotkeys": "^0.4.0", "preact": "^10.28.4" }, "devDependencies": { "@preact/preset-vite": "^2.10.3", "@tanstack/preact-devtools": "0.9.15", - "@tanstack/preact-hotkeys-devtools": "^0.3.3", + "@tanstack/preact-hotkeys-devtools": "^0.4.0", "typescript": "5.9.3", "vite": "^7.3.1" } diff --git a/examples/preact/useHotkeyRecorder/package.json b/examples/preact/useHotkeyRecorder/package.json index 30b3876..f215805 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.3", + "@tanstack/preact-hotkeys": "^0.4.0", "preact": "^10.28.4" }, "devDependencies": { "@preact/preset-vite": "^2.10.3", "@tanstack/preact-devtools": "0.9.15", - "@tanstack/preact-hotkeys-devtools": "^0.3.3", + "@tanstack/preact-hotkeys-devtools": "^0.4.0", "typescript": "5.9.3", "vite": "^7.3.1" } diff --git a/examples/preact/useHotkeySequence/package.json b/examples/preact/useHotkeySequence/package.json index 776458b..00bc298 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.3", + "@tanstack/preact-hotkeys": "^0.4.0", "preact": "^10.28.4" }, "devDependencies": { "@preact/preset-vite": "^2.10.3", "@tanstack/preact-devtools": "0.9.15", - "@tanstack/preact-hotkeys-devtools": "^0.3.3", + "@tanstack/preact-hotkeys-devtools": "^0.4.0", "typescript": "5.9.3", "vite": "^7.3.1" } diff --git a/examples/preact/useKeyhold/package.json b/examples/preact/useKeyhold/package.json index 2a9cddc..bdf729f 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.3", + "@tanstack/preact-hotkeys": "^0.4.0", "preact": "^10.28.4" }, "devDependencies": { "@preact/preset-vite": "^2.10.3", "@tanstack/preact-devtools": "0.9.15", - "@tanstack/preact-hotkeys-devtools": "^0.3.3", + "@tanstack/preact-hotkeys-devtools": "^0.4.0", "typescript": "5.9.3", "vite": "^7.3.1" } diff --git a/examples/react/useHeldKeys/package.json b/examples/react/useHeldKeys/package.json index c46ab14..7c08526 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.3", + "@tanstack/react-hotkeys": "^0.4.0", "react": "^19.2.4", "react-dom": "^19.2.4" }, "devDependencies": { "@tanstack/react-devtools": "0.9.10", - "@tanstack/react-hotkeys-devtools": "^0.3.3", + "@tanstack/react-hotkeys-devtools": "^0.4.0", "@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 a1afd80..9f819c3 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.3", + "@tanstack/react-hotkeys": "^0.4.0", "react": "^19.2.4", "react-dom": "^19.2.4" }, "devDependencies": { "@tanstack/react-devtools": "0.9.10", - "@tanstack/react-hotkeys-devtools": "^0.3.3", + "@tanstack/react-hotkeys-devtools": "^0.4.0", "@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 a993274..fb338f7 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.3", + "@tanstack/react-hotkeys": "^0.4.0", "react": "^19.2.4", "react-dom": "^19.2.4" }, "devDependencies": { "@tanstack/react-devtools": "0.9.10", - "@tanstack/react-hotkeys-devtools": "^0.3.3", + "@tanstack/react-hotkeys-devtools": "^0.4.0", "@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 de51faa..a8886be 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.3", + "@tanstack/react-hotkeys": "^0.4.0", "react": "^19.2.4", "react-dom": "^19.2.4" }, "devDependencies": { "@tanstack/react-devtools": "0.9.10", - "@tanstack/react-hotkeys-devtools": "^0.3.3", + "@tanstack/react-hotkeys-devtools": "^0.4.0", "@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 fd7ef57..7f85194 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.3", + "@tanstack/react-hotkeys": "^0.4.0", "react": "^19.2.4", "react-dom": "^19.2.4" }, "devDependencies": { "@tanstack/react-devtools": "0.9.10", - "@tanstack/react-hotkeys-devtools": "^0.3.3", + "@tanstack/react-hotkeys-devtools": "^0.4.0", "@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 4d7409e..3ac7bbd 100644 --- a/examples/solid/createHeldKeys/package.json +++ b/examples/solid/createHeldKeys/package.json @@ -10,8 +10,8 @@ "dependencies": { "@tanstack/devtools-utils": "^0.3.2", "@tanstack/solid-devtools": "0.7.30", - "@tanstack/solid-hotkeys": "^0.3.3", - "@tanstack/solid-hotkeys-devtools": "^0.3.3", + "@tanstack/solid-hotkeys": "^0.4.0", + "@tanstack/solid-hotkeys-devtools": "^0.4.0", "solid-js": "^1.9.11" }, "devDependencies": { diff --git a/examples/solid/createHotkey/package.json b/examples/solid/createHotkey/package.json index 7ec1692..7bba0ac 100644 --- a/examples/solid/createHotkey/package.json +++ b/examples/solid/createHotkey/package.json @@ -13,8 +13,8 @@ "dependencies": { "@tanstack/devtools-utils": "^0.3.2", "@tanstack/solid-devtools": "0.7.30", - "@tanstack/solid-hotkeys": "^0.3.3", - "@tanstack/solid-hotkeys-devtools": "^0.3.3", + "@tanstack/solid-hotkeys": "^0.4.0", + "@tanstack/solid-hotkeys-devtools": "^0.4.0", "solid-js": "^1.9.11" }, "devDependencies": { diff --git a/examples/solid/createHotkeyRecorder/package.json b/examples/solid/createHotkeyRecorder/package.json index 8bc22ba..658276c 100644 --- a/examples/solid/createHotkeyRecorder/package.json +++ b/examples/solid/createHotkeyRecorder/package.json @@ -10,8 +10,8 @@ "dependencies": { "@tanstack/devtools-utils": "^0.3.2", "@tanstack/solid-devtools": "0.7.30", - "@tanstack/solid-hotkeys": "^0.3.3", - "@tanstack/solid-hotkeys-devtools": "^0.3.3", + "@tanstack/solid-hotkeys": "^0.4.0", + "@tanstack/solid-hotkeys-devtools": "^0.4.0", "solid-js": "^1.9.11" }, "devDependencies": { diff --git a/examples/solid/createHotkeySequence/package.json b/examples/solid/createHotkeySequence/package.json index 01cab67..de8a1bd 100644 --- a/examples/solid/createHotkeySequence/package.json +++ b/examples/solid/createHotkeySequence/package.json @@ -10,8 +10,8 @@ "dependencies": { "@tanstack/devtools-utils": "^0.3.2", "@tanstack/solid-devtools": "0.7.30", - "@tanstack/solid-hotkeys": "^0.3.3", - "@tanstack/solid-hotkeys-devtools": "^0.3.3", + "@tanstack/solid-hotkeys": "^0.4.0", + "@tanstack/solid-hotkeys-devtools": "^0.4.0", "solid-js": "^1.9.11" }, "devDependencies": { diff --git a/examples/solid/createKeyHold/package.json b/examples/solid/createKeyHold/package.json index 39f8397..e73c3c7 100644 --- a/examples/solid/createKeyHold/package.json +++ b/examples/solid/createKeyHold/package.json @@ -10,8 +10,8 @@ "dependencies": { "@tanstack/devtools-utils": "^0.3.2", "@tanstack/solid-devtools": "0.7.30", - "@tanstack/solid-hotkeys": "^0.3.3", - "@tanstack/solid-hotkeys-devtools": "^0.3.3", + "@tanstack/solid-hotkeys": "^0.4.0", + "@tanstack/solid-hotkeys-devtools": "^0.4.0", "solid-js": "^1.9.11" }, "devDependencies": { diff --git a/packages/angular-hotkeys/CHANGELOG.md b/packages/angular-hotkeys/CHANGELOG.md new file mode 100644 index 0000000..26a038e --- /dev/null +++ b/packages/angular-hotkeys/CHANGELOG.md @@ -0,0 +1,12 @@ +# @tanstack/angular-hotkeys + +## 0.4.0 + +### Minor Changes + +- add angular adapter and upgrade packages ([#31](https://github.com/TanStack/hotkeys/pull/31)) + +### Patch Changes + +- Updated dependencies [[`c173ed0`](https://github.com/TanStack/hotkeys/commit/c173ed079c6b0f282c9cf8dcb6d9523408eca5a0)]: + - @tanstack/hotkeys@0.4.0 diff --git a/packages/angular-hotkeys/package.json b/packages/angular-hotkeys/package.json index b9467ce..89e97b7 100644 --- a/packages/angular-hotkeys/package.json +++ b/packages/angular-hotkeys/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/angular-hotkeys", - "version": "0.3.3", + "version": "0.4.0", "description": "Angular adapter for TanStack Hotkeys", "author": "Tanner Linsley", "license": "MIT", diff --git a/packages/hotkeys-devtools/CHANGELOG.md b/packages/hotkeys-devtools/CHANGELOG.md index 448e457..79fc47b 100644 --- a/packages/hotkeys-devtools/CHANGELOG.md +++ b/packages/hotkeys-devtools/CHANGELOG.md @@ -1,5 +1,16 @@ # @tanstack/hotkeys-devtools +## 1.0.0 + +### Minor Changes + +- add angular adapter and upgrade packages ([#31](https://github.com/TanStack/hotkeys/pull/31)) + +### Patch Changes + +- Updated dependencies [[`c173ed0`](https://github.com/TanStack/hotkeys/commit/c173ed079c6b0f282c9cf8dcb6d9523408eca5a0)]: + - @tanstack/hotkeys@0.4.0 + ## 0.3.3 ### Patch Changes diff --git a/packages/hotkeys-devtools/package.json b/packages/hotkeys-devtools/package.json index 2ab5e4c..be28ed1 100644 --- a/packages/hotkeys-devtools/package.json +++ b/packages/hotkeys-devtools/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/hotkeys-devtools", - "version": "0.3.3", + "version": "1.0.0", "description": "Devtools for TanStack Hotkeys", "author": "Tanner Linsley", "license": "MIT", diff --git a/packages/hotkeys/CHANGELOG.md b/packages/hotkeys/CHANGELOG.md index e223ed9..13364e6 100644 --- a/packages/hotkeys/CHANGELOG.md +++ b/packages/hotkeys/CHANGELOG.md @@ -1,5 +1,11 @@ # @tanstack/hotkeys +## 0.4.0 + +### Minor Changes + +- add angular adapter and upgrade packages ([#31](https://github.com/TanStack/hotkeys/pull/31)) + ## 0.3.3 ### Patch Changes diff --git a/packages/hotkeys/package.json b/packages/hotkeys/package.json index 4451c00..753cea5 100644 --- a/packages/hotkeys/package.json +++ b/packages/hotkeys/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/hotkeys", - "version": "0.3.3", + "version": "0.4.0", "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 index e998055..407a0ab 100644 --- a/packages/preact-hotkeys-devtools/CHANGELOG.md +++ b/packages/preact-hotkeys-devtools/CHANGELOG.md @@ -1,5 +1,16 @@ # @tanstack/preact-hotkeys-devtools +## 0.4.0 + +### Minor Changes + +- add angular adapter and upgrade packages ([#31](https://github.com/TanStack/hotkeys/pull/31)) + +### Patch Changes + +- Updated dependencies [[`c173ed0`](https://github.com/TanStack/hotkeys/commit/c173ed079c6b0f282c9cf8dcb6d9523408eca5a0)]: + - @tanstack/hotkeys-devtools@1.0.0 + ## 0.3.3 ### Patch Changes diff --git a/packages/preact-hotkeys-devtools/package.json b/packages/preact-hotkeys-devtools/package.json index 4f9973f..fa44987 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.3", + "version": "0.4.0", "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 index cc9ee56..2dff523 100644 --- a/packages/preact-hotkeys/CHANGELOG.md +++ b/packages/preact-hotkeys/CHANGELOG.md @@ -1,5 +1,16 @@ # @tanstack/preact-hotkeys +## 0.4.0 + +### Minor Changes + +- add angular adapter and upgrade packages ([#31](https://github.com/TanStack/hotkeys/pull/31)) + +### Patch Changes + +- Updated dependencies [[`c173ed0`](https://github.com/TanStack/hotkeys/commit/c173ed079c6b0f282c9cf8dcb6d9523408eca5a0)]: + - @tanstack/hotkeys@0.4.0 + ## 0.3.3 ### Patch Changes diff --git a/packages/preact-hotkeys/package.json b/packages/preact-hotkeys/package.json index 302ce77..ded8fbd 100644 --- a/packages/preact-hotkeys/package.json +++ b/packages/preact-hotkeys/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/preact-hotkeys", - "version": "0.3.3", + "version": "0.4.0", "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 f9f995a..a33db65 100644 --- a/packages/react-hotkeys-devtools/CHANGELOG.md +++ b/packages/react-hotkeys-devtools/CHANGELOG.md @@ -1,5 +1,16 @@ # @tanstack/react-hotkeys-devtools +## 0.4.0 + +### Minor Changes + +- add angular adapter and upgrade packages ([#31](https://github.com/TanStack/hotkeys/pull/31)) + +### Patch Changes + +- Updated dependencies [[`c173ed0`](https://github.com/TanStack/hotkeys/commit/c173ed079c6b0f282c9cf8dcb6d9523408eca5a0)]: + - @tanstack/hotkeys-devtools@1.0.0 + ## 0.3.3 ### Patch Changes diff --git a/packages/react-hotkeys-devtools/package.json b/packages/react-hotkeys-devtools/package.json index 8154780..e0920d7 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.3", + "version": "0.4.0", "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 9d8549b..bbd70d0 100644 --- a/packages/react-hotkeys/CHANGELOG.md +++ b/packages/react-hotkeys/CHANGELOG.md @@ -1,5 +1,16 @@ # @tanstack/react-hotkeys +## 0.4.0 + +### Minor Changes + +- add angular adapter and upgrade packages ([#31](https://github.com/TanStack/hotkeys/pull/31)) + +### Patch Changes + +- Updated dependencies [[`c173ed0`](https://github.com/TanStack/hotkeys/commit/c173ed079c6b0f282c9cf8dcb6d9523408eca5a0)]: + - @tanstack/hotkeys@0.4.0 + ## 0.3.3 ### Patch Changes diff --git a/packages/react-hotkeys/package.json b/packages/react-hotkeys/package.json index 0e178f7..0f36851 100644 --- a/packages/react-hotkeys/package.json +++ b/packages/react-hotkeys/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/react-hotkeys", - "version": "0.3.3", + "version": "0.4.0", "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 f29d1ea..f7b037b 100644 --- a/packages/solid-hotkeys-devtools/CHANGELOG.md +++ b/packages/solid-hotkeys-devtools/CHANGELOG.md @@ -1,5 +1,16 @@ # @tanstack/solid-hotkeys-devtools +## 0.4.0 + +### Minor Changes + +- add angular adapter and upgrade packages ([#31](https://github.com/TanStack/hotkeys/pull/31)) + +### Patch Changes + +- Updated dependencies [[`c173ed0`](https://github.com/TanStack/hotkeys/commit/c173ed079c6b0f282c9cf8dcb6d9523408eca5a0)]: + - @tanstack/hotkeys-devtools@1.0.0 + ## 0.3.3 ### Patch Changes diff --git a/packages/solid-hotkeys-devtools/package.json b/packages/solid-hotkeys-devtools/package.json index abda230..5e12ac8 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.3", + "version": "0.4.0", "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 59dbf42..842676b 100644 --- a/packages/solid-hotkeys/CHANGELOG.md +++ b/packages/solid-hotkeys/CHANGELOG.md @@ -1,5 +1,16 @@ # @tanstack/solid-hotkeys +## 0.4.0 + +### Minor Changes + +- add angular adapter and upgrade packages ([#31](https://github.com/TanStack/hotkeys/pull/31)) + +### Patch Changes + +- Updated dependencies [[`c173ed0`](https://github.com/TanStack/hotkeys/commit/c173ed079c6b0f282c9cf8dcb6d9523408eca5a0)]: + - @tanstack/hotkeys@0.4.0 + ## 0.3.3 ### Patch Changes diff --git a/packages/solid-hotkeys/package.json b/packages/solid-hotkeys/package.json index 986ffb6..4de761b 100644 --- a/packages/solid-hotkeys/package.json +++ b/packages/solid-hotkeys/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/solid-hotkeys", - "version": "0.3.3", + "version": "0.4.0", "description": "SolidJS adapter for TanStack Hotkeys", "author": "Tanner Linsley", "license": "MIT", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index b25a3ed..1277775 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -105,7 +105,7 @@ importers: specifier: ^21.2.1 version: 21.2.1(@angular/common@21.2.1(@angular/core@21.2.1(@angular/compiler@21.2.1)(rxjs@7.8.2)(zone.js@0.16.1))(rxjs@7.8.2))(@angular/core@21.2.1(@angular/compiler@21.2.1)(rxjs@7.8.2)(zone.js@0.16.1))(@angular/platform-browser@21.2.1(@angular/common@21.2.1(@angular/core@21.2.1(@angular/compiler@21.2.1)(rxjs@7.8.2)(zone.js@0.16.1))(rxjs@7.8.2))(@angular/core@21.2.1(@angular/compiler@21.2.1)(rxjs@7.8.2)(zone.js@0.16.1)))(rxjs@7.8.2) '@tanstack/angular-hotkeys': - specifier: ^0.3.3 + specifier: ^0.4.0 version: link:../../../packages/angular-hotkeys rxjs: specifier: ~7.8.2 @@ -175,7 +175,7 @@ importers: specifier: ^21.2.1 version: 21.2.1(@angular/common@21.2.1(@angular/core@21.2.1(@angular/compiler@21.2.1)(rxjs@7.8.2)(zone.js@0.16.1))(rxjs@7.8.2))(@angular/core@21.2.1(@angular/compiler@21.2.1)(rxjs@7.8.2)(zone.js@0.16.1))(@angular/platform-browser@21.2.1(@angular/common@21.2.1(@angular/core@21.2.1(@angular/compiler@21.2.1)(rxjs@7.8.2)(zone.js@0.16.1))(rxjs@7.8.2))(@angular/core@21.2.1(@angular/compiler@21.2.1)(rxjs@7.8.2)(zone.js@0.16.1)))(rxjs@7.8.2) '@tanstack/angular-hotkeys': - specifier: ^0.3.3 + specifier: ^0.4.0 version: link:../../../packages/angular-hotkeys rxjs: specifier: ~7.8.2 @@ -245,7 +245,7 @@ importers: specifier: ^21.2.1 version: 21.2.1(@angular/common@21.2.1(@angular/core@21.2.1(@angular/compiler@21.2.1)(rxjs@7.8.2)(zone.js@0.16.1))(rxjs@7.8.2))(@angular/core@21.2.1(@angular/compiler@21.2.1)(rxjs@7.8.2)(zone.js@0.16.1))(@angular/platform-browser@21.2.1(@angular/common@21.2.1(@angular/core@21.2.1(@angular/compiler@21.2.1)(rxjs@7.8.2)(zone.js@0.16.1))(rxjs@7.8.2))(@angular/core@21.2.1(@angular/compiler@21.2.1)(rxjs@7.8.2)(zone.js@0.16.1)))(rxjs@7.8.2) '@tanstack/angular-hotkeys': - specifier: ^0.3.3 + specifier: ^0.4.0 version: link:../../../packages/angular-hotkeys rxjs: specifier: ~7.8.2 @@ -315,7 +315,7 @@ importers: specifier: ^21.2.1 version: 21.2.1(@angular/common@21.2.1(@angular/core@21.2.1(@angular/compiler@21.2.1)(rxjs@7.8.2)(zone.js@0.16.1))(rxjs@7.8.2))(@angular/core@21.2.1(@angular/compiler@21.2.1)(rxjs@7.8.2)(zone.js@0.16.1))(@angular/platform-browser@21.2.1(@angular/common@21.2.1(@angular/core@21.2.1(@angular/compiler@21.2.1)(rxjs@7.8.2)(zone.js@0.16.1))(rxjs@7.8.2))(@angular/core@21.2.1(@angular/compiler@21.2.1)(rxjs@7.8.2)(zone.js@0.16.1)))(rxjs@7.8.2) '@tanstack/angular-hotkeys': - specifier: ^0.3.3 + specifier: ^0.4.0 version: link:../../../packages/angular-hotkeys rxjs: specifier: ~7.8.2 @@ -385,7 +385,7 @@ importers: specifier: ^21.2.1 version: 21.2.1(@angular/common@21.2.1(@angular/core@21.2.1(@angular/compiler@21.2.1)(rxjs@7.8.2)(zone.js@0.16.1))(rxjs@7.8.2))(@angular/core@21.2.1(@angular/compiler@21.2.1)(rxjs@7.8.2)(zone.js@0.16.1))(@angular/platform-browser@21.2.1(@angular/common@21.2.1(@angular/core@21.2.1(@angular/compiler@21.2.1)(rxjs@7.8.2)(zone.js@0.16.1))(rxjs@7.8.2))(@angular/core@21.2.1(@angular/compiler@21.2.1)(rxjs@7.8.2)(zone.js@0.16.1)))(rxjs@7.8.2) '@tanstack/angular-hotkeys': - specifier: ^0.3.3 + specifier: ^0.4.0 version: link:../../../packages/angular-hotkeys rxjs: specifier: ~7.8.2 @@ -434,7 +434,7 @@ importers: examples/preact/useHeldKeys: dependencies: '@tanstack/preact-hotkeys': - specifier: ^0.3.3 + specifier: ^0.4.0 version: link:../../../packages/preact-hotkeys preact: specifier: ^10.28.4 @@ -447,7 +447,7 @@ importers: specifier: 0.9.15 version: 0.9.15(csstype@3.2.3)(preact@10.28.4)(solid-js@1.9.11) '@tanstack/preact-hotkeys-devtools': - specifier: ^0.3.3 + specifier: ^0.4.0 version: link:../../../packages/preact-hotkeys-devtools typescript: specifier: 5.9.3 @@ -459,7 +459,7 @@ importers: examples/preact/useHotkey: dependencies: '@tanstack/preact-hotkeys': - specifier: ^0.3.3 + specifier: ^0.4.0 version: link:../../../packages/preact-hotkeys preact: specifier: ^10.28.4 @@ -472,7 +472,7 @@ importers: specifier: 0.9.15 version: 0.9.15(csstype@3.2.3)(preact@10.28.4)(solid-js@1.9.11) '@tanstack/preact-hotkeys-devtools': - specifier: ^0.3.3 + specifier: ^0.4.0 version: link:../../../packages/preact-hotkeys-devtools typescript: specifier: 5.9.3 @@ -484,7 +484,7 @@ importers: examples/preact/useHotkeyRecorder: dependencies: '@tanstack/preact-hotkeys': - specifier: ^0.3.3 + specifier: ^0.4.0 version: link:../../../packages/preact-hotkeys preact: specifier: ^10.28.4 @@ -497,7 +497,7 @@ importers: specifier: 0.9.15 version: 0.9.15(csstype@3.2.3)(preact@10.28.4)(solid-js@1.9.11) '@tanstack/preact-hotkeys-devtools': - specifier: ^0.3.3 + specifier: ^0.4.0 version: link:../../../packages/preact-hotkeys-devtools typescript: specifier: 5.9.3 @@ -509,7 +509,7 @@ importers: examples/preact/useHotkeySequence: dependencies: '@tanstack/preact-hotkeys': - specifier: ^0.3.3 + specifier: ^0.4.0 version: link:../../../packages/preact-hotkeys preact: specifier: ^10.28.4 @@ -522,7 +522,7 @@ importers: specifier: 0.9.15 version: 0.9.15(csstype@3.2.3)(preact@10.28.4)(solid-js@1.9.11) '@tanstack/preact-hotkeys-devtools': - specifier: ^0.3.3 + specifier: ^0.4.0 version: link:../../../packages/preact-hotkeys-devtools typescript: specifier: 5.9.3 @@ -534,7 +534,7 @@ importers: examples/preact/useKeyhold: dependencies: '@tanstack/preact-hotkeys': - specifier: ^0.3.3 + specifier: ^0.4.0 version: link:../../../packages/preact-hotkeys preact: specifier: ^10.28.4 @@ -547,7 +547,7 @@ importers: specifier: 0.9.15 version: 0.9.15(csstype@3.2.3)(preact@10.28.4)(solid-js@1.9.11) '@tanstack/preact-hotkeys-devtools': - specifier: ^0.3.3 + specifier: ^0.4.0 version: link:../../../packages/preact-hotkeys-devtools typescript: specifier: 5.9.3 @@ -559,7 +559,7 @@ importers: examples/react/useHeldKeys: dependencies: '@tanstack/react-hotkeys': - specifier: ^0.3.3 + specifier: ^0.4.0 version: link:../../../packages/react-hotkeys react: specifier: ^19.2.4 @@ -572,7 +572,7 @@ importers: specifier: 0.9.10 version: 0.9.10(@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.3 + specifier: ^0.4.0 version: link:../../../packages/react-hotkeys-devtools '@types/react': specifier: ^19.2.14 @@ -593,7 +593,7 @@ importers: examples/react/useHotkey: dependencies: '@tanstack/react-hotkeys': - specifier: ^0.3.3 + specifier: ^0.4.0 version: link:../../../packages/react-hotkeys react: specifier: ^19.2.4 @@ -606,7 +606,7 @@ importers: specifier: 0.9.10 version: 0.9.10(@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.3 + specifier: ^0.4.0 version: link:../../../packages/react-hotkeys-devtools '@types/react': specifier: ^19.2.14 @@ -627,7 +627,7 @@ importers: examples/react/useHotkeyRecorder: dependencies: '@tanstack/react-hotkeys': - specifier: ^0.3.3 + specifier: ^0.4.0 version: link:../../../packages/react-hotkeys react: specifier: ^19.2.4 @@ -640,7 +640,7 @@ importers: specifier: 0.9.10 version: 0.9.10(@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.3 + specifier: ^0.4.0 version: link:../../../packages/react-hotkeys-devtools '@types/react': specifier: ^19.2.14 @@ -661,7 +661,7 @@ importers: examples/react/useHotkeySequence: dependencies: '@tanstack/react-hotkeys': - specifier: ^0.3.3 + specifier: ^0.4.0 version: link:../../../packages/react-hotkeys react: specifier: ^19.2.4 @@ -674,7 +674,7 @@ importers: specifier: 0.9.10 version: 0.9.10(@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.3 + specifier: ^0.4.0 version: link:../../../packages/react-hotkeys-devtools '@types/react': specifier: ^19.2.14 @@ -695,7 +695,7 @@ importers: examples/react/useKeyhold: dependencies: '@tanstack/react-hotkeys': - specifier: ^0.3.3 + specifier: ^0.4.0 version: link:../../../packages/react-hotkeys react: specifier: ^19.2.4 @@ -708,7 +708,7 @@ importers: specifier: 0.9.10 version: 0.9.10(@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.3 + specifier: ^0.4.0 version: link:../../../packages/react-hotkeys-devtools '@types/react': specifier: ^19.2.14 @@ -735,10 +735,10 @@ importers: specifier: 0.7.30 version: 0.7.30(csstype@3.2.3)(solid-js@1.9.11) '@tanstack/solid-hotkeys': - specifier: ^0.3.3 + specifier: ^0.4.0 version: link:../../../packages/solid-hotkeys '@tanstack/solid-hotkeys-devtools': - specifier: ^0.3.3 + specifier: ^0.4.0 version: link:../../../packages/solid-hotkeys-devtools solid-js: specifier: ^1.9.11 @@ -760,10 +760,10 @@ importers: specifier: 0.7.30 version: 0.7.30(csstype@3.2.3)(solid-js@1.9.11) '@tanstack/solid-hotkeys': - specifier: ^0.3.3 + specifier: ^0.4.0 version: link:../../../packages/solid-hotkeys '@tanstack/solid-hotkeys-devtools': - specifier: ^0.3.3 + specifier: ^0.4.0 version: link:../../../packages/solid-hotkeys-devtools solid-js: specifier: ^1.9.11 @@ -791,10 +791,10 @@ importers: specifier: 0.7.30 version: 0.7.30(csstype@3.2.3)(solid-js@1.9.11) '@tanstack/solid-hotkeys': - specifier: ^0.3.3 + specifier: ^0.4.0 version: link:../../../packages/solid-hotkeys '@tanstack/solid-hotkeys-devtools': - specifier: ^0.3.3 + specifier: ^0.4.0 version: link:../../../packages/solid-hotkeys-devtools solid-js: specifier: ^1.9.11 @@ -816,10 +816,10 @@ importers: specifier: 0.7.30 version: 0.7.30(csstype@3.2.3)(solid-js@1.9.11) '@tanstack/solid-hotkeys': - specifier: ^0.3.3 + specifier: ^0.4.0 version: link:../../../packages/solid-hotkeys '@tanstack/solid-hotkeys-devtools': - specifier: ^0.3.3 + specifier: ^0.4.0 version: link:../../../packages/solid-hotkeys-devtools solid-js: specifier: ^1.9.11 @@ -841,10 +841,10 @@ importers: specifier: 0.7.30 version: 0.7.30(csstype@3.2.3)(solid-js@1.9.11) '@tanstack/solid-hotkeys': - specifier: ^0.3.3 + specifier: ^0.4.0 version: link:../../../packages/solid-hotkeys '@tanstack/solid-hotkeys-devtools': - specifier: ^0.3.3 + specifier: ^0.4.0 version: link:../../../packages/solid-hotkeys-devtools solid-js: specifier: ^1.9.11 @@ -8247,35 +8247,35 @@ snapshots: '@babel/preset-env': 7.29.0(@babel/core@7.29.0) '@babel/runtime': 7.28.6 '@discoveryjs/json-ext': 0.6.3 - '@ngtools/webpack': 21.2.1(@angular/compiler-cli@21.2.1(@angular/compiler@21.2.1)(typescript@5.9.3))(typescript@5.9.3)(webpack@5.105.2(esbuild@0.27.3)) + '@ngtools/webpack': 21.2.1(@angular/compiler-cli@21.2.1(@angular/compiler@21.2.1)(typescript@5.9.3))(typescript@5.9.3)(webpack@5.105.2) ansi-colors: 4.1.3 autoprefixer: 10.4.27(postcss@8.5.6) - babel-loader: 10.0.0(@babel/core@7.29.0)(webpack@5.105.2(esbuild@0.27.3)) + babel-loader: 10.0.0(@babel/core@7.29.0)(webpack@5.105.2) browserslist: 4.28.1 - copy-webpack-plugin: 14.0.0(webpack@5.105.2(esbuild@0.27.3)) - css-loader: 7.1.3(webpack@5.105.2(esbuild@0.27.3)) + copy-webpack-plugin: 14.0.0(webpack@5.105.2) + css-loader: 7.1.3(webpack@5.105.2) esbuild-wasm: 0.27.3 http-proxy-middleware: 3.0.5 istanbul-lib-instrument: 6.0.3 jsonc-parser: 3.3.1 karma-source-map-support: 1.4.0 less: 4.4.2 - less-loader: 12.3.1(less@4.4.2)(webpack@5.105.2(esbuild@0.27.3)) - license-webpack-plugin: 4.0.2(webpack@5.105.2(esbuild@0.27.3)) + less-loader: 12.3.1(less@4.4.2)(webpack@5.105.2) + license-webpack-plugin: 4.0.2(webpack@5.105.2) loader-utils: 3.3.1 - mini-css-extract-plugin: 2.10.0(webpack@5.105.2(esbuild@0.27.3)) + mini-css-extract-plugin: 2.10.0(webpack@5.105.2) open: 11.0.0 ora: 9.3.0 picomatch: 4.0.3 piscina: 5.1.4 postcss: 8.5.6 - postcss-loader: 8.2.0(postcss@8.5.6)(typescript@5.9.3)(webpack@5.105.2(esbuild@0.27.3)) + postcss-loader: 8.2.0(postcss@8.5.6)(typescript@5.9.3)(webpack@5.105.2) resolve-url-loader: 5.0.0 rxjs: 7.8.2 sass: 1.97.3 - sass-loader: 16.0.7(sass@1.97.3)(webpack@5.105.2(esbuild@0.27.3)) + sass-loader: 16.0.7(sass@1.97.3)(webpack@5.105.2) semver: 7.7.4 - source-map-loader: 5.0.0(webpack@5.105.2(esbuild@0.27.3)) + source-map-loader: 5.0.0(webpack@5.105.2) source-map-support: 0.5.21 terser: 5.46.0 tinyglobby: 0.2.15 @@ -8286,7 +8286,7 @@ snapshots: webpack-dev-middleware: 7.4.5(tslib@2.8.1)(webpack@5.105.2(esbuild@0.27.3)) webpack-dev-server: 5.2.3(tslib@2.8.1)(webpack@5.105.2(esbuild@0.27.3)) webpack-merge: 6.0.1 - webpack-subresource-integrity: 5.1.0(webpack@5.105.2(esbuild@0.27.3)) + webpack-subresource-integrity: 5.1.0(webpack@5.105.2) optionalDependencies: '@angular/core': 21.2.1(@angular/compiler@21.2.1)(rxjs@7.8.2)(zone.js@0.16.1) '@angular/platform-browser': 21.2.1(@angular/common@21.2.1(@angular/core@21.2.1(@angular/compiler@21.2.1)(rxjs@7.8.2)(zone.js@0.16.1))(rxjs@7.8.2))(@angular/core@21.2.1(@angular/compiler@21.2.1)(rxjs@7.8.2)(zone.js@0.16.1)) @@ -10110,7 +10110,7 @@ snapshots: '@tybys/wasm-util': 0.10.1 optional: true - '@ngtools/webpack@21.2.1(@angular/compiler-cli@21.2.1(@angular/compiler@21.2.1)(typescript@5.9.3))(typescript@5.9.3)(webpack@5.105.2(esbuild@0.27.3))': + '@ngtools/webpack@21.2.1(@angular/compiler-cli@21.2.1(@angular/compiler@21.2.1)(typescript@5.9.3))(typescript@5.9.3)(webpack@5.105.2)': dependencies: '@angular/compiler-cli': 21.2.1(@angular/compiler@21.2.1)(typescript@5.9.3) typescript: 5.9.3 @@ -11604,7 +11604,7 @@ snapshots: axobject-query@4.1.0: {} - babel-loader@10.0.0(@babel/core@7.29.0)(webpack@5.105.2(esbuild@0.27.3)): + babel-loader@10.0.0(@babel/core@7.29.0)(webpack@5.105.2): dependencies: '@babel/core': 7.29.0 find-up: 5.0.0 @@ -11999,7 +11999,7 @@ snapshots: dependencies: is-what: 3.14.1 - copy-webpack-plugin@14.0.0(webpack@5.105.2(esbuild@0.27.3)): + copy-webpack-plugin@14.0.0(webpack@5.105.2): dependencies: glob-parent: 6.0.2 normalize-path: 3.0.0 @@ -12034,7 +12034,7 @@ snapshots: shebang-command: 2.0.0 which: 2.0.2 - css-loader@7.1.3(webpack@5.105.2(esbuild@0.27.3)): + css-loader@7.1.3(webpack@5.105.2): dependencies: icss-utils: 5.1.0(postcss@8.5.6) postcss: 8.5.6 @@ -13563,7 +13563,7 @@ snapshots: picocolors: 1.1.1 shell-quote: 1.8.3 - less-loader@12.3.1(less@4.4.2)(webpack@5.105.2(esbuild@0.27.3)): + less-loader@12.3.1(less@4.4.2)(webpack@5.105.2): dependencies: less: 4.4.2 optionalDependencies: @@ -13588,7 +13588,7 @@ snapshots: prelude-ls: 1.2.1 type-check: 0.4.0 - license-webpack-plugin@4.0.2(webpack@5.105.2(esbuild@0.27.3)): + license-webpack-plugin@4.0.2(webpack@5.105.2): dependencies: webpack-sources: 3.3.4 optionalDependencies: @@ -13809,7 +13809,7 @@ snapshots: min-indent@1.0.1: {} - mini-css-extract-plugin@2.10.0(webpack@5.105.2(esbuild@0.27.3)): + mini-css-extract-plugin@2.10.0(webpack@5.105.2): dependencies: schema-utils: 4.3.3 tapable: 2.3.0 @@ -14359,7 +14359,7 @@ snapshots: possible-typed-array-names@1.1.0: {} - postcss-loader@8.2.0(postcss@8.5.6)(typescript@5.9.3)(webpack@5.105.2(esbuild@0.27.3)): + postcss-loader@8.2.0(postcss@8.5.6)(typescript@5.9.3)(webpack@5.105.2): dependencies: cosmiconfig: 9.0.0(typescript@5.9.3) jiti: 2.6.1 @@ -14766,7 +14766,7 @@ snapshots: safer-buffer@2.1.2: {} - sass-loader@16.0.7(sass@1.97.3)(webpack@5.105.2(esbuild@0.27.3)): + sass-loader@16.0.7(sass@1.97.3)(webpack@5.105.2): dependencies: neo-async: 2.6.2 optionalDependencies: @@ -15089,7 +15089,7 @@ snapshots: source-map-js@1.2.1: {} - source-map-loader@5.0.0(webpack@5.105.2(esbuild@0.27.3)): + source-map-loader@5.0.0(webpack@5.105.2): dependencies: iconv-lite: 0.6.3 source-map-js: 1.2.1 @@ -15697,7 +15697,7 @@ snapshots: webpack-sources@3.3.4: {} - webpack-subresource-integrity@5.1.0(webpack@5.105.2(esbuild@0.27.3)): + webpack-subresource-integrity@5.1.0(webpack@5.105.2): dependencies: typed-assert: 1.0.9 webpack: 5.105.2(esbuild@0.27.3) From 2332f3209548adb891a41601e684144f2a7041c4 Mon Sep 17 00:00:00 2001 From: Kevin Van Cott Date: Sat, 7 Mar 2026 19:53:01 -0600 Subject: [PATCH 2/3] fix the release because changesets dumb --- examples/angular/injectHeldKeys/CHANGELOG.md | 8 -------- examples/angular/injectHotkey/CHANGELOG.md | 8 -------- examples/angular/injectHotkeyRecorder/CHANGELOG.md | 8 -------- examples/angular/injectHotkeySequence/CHANGELOG.md | 8 -------- examples/angular/injectKeyHold/CHANGELOG.md | 8 -------- packages/hotkeys-devtools/CHANGELOG.md | 2 +- packages/hotkeys-devtools/package.json | 2 +- 7 files changed, 2 insertions(+), 42 deletions(-) delete mode 100644 examples/angular/injectHeldKeys/CHANGELOG.md delete mode 100644 examples/angular/injectHotkey/CHANGELOG.md delete mode 100644 examples/angular/injectHotkeyRecorder/CHANGELOG.md delete mode 100644 examples/angular/injectHotkeySequence/CHANGELOG.md delete mode 100644 examples/angular/injectKeyHold/CHANGELOG.md diff --git a/examples/angular/injectHeldKeys/CHANGELOG.md b/examples/angular/injectHeldKeys/CHANGELOG.md deleted file mode 100644 index 607b9ab..0000000 --- a/examples/angular/injectHeldKeys/CHANGELOG.md +++ /dev/null @@ -1,8 +0,0 @@ -# inject-held-keys - -## 0.0.1 - -### Patch Changes - -- Updated dependencies [[`c173ed0`](https://github.com/TanStack/hotkeys/commit/c173ed079c6b0f282c9cf8dcb6d9523408eca5a0)]: - - @tanstack/angular-hotkeys@0.4.0 diff --git a/examples/angular/injectHotkey/CHANGELOG.md b/examples/angular/injectHotkey/CHANGELOG.md deleted file mode 100644 index df13432..0000000 --- a/examples/angular/injectHotkey/CHANGELOG.md +++ /dev/null @@ -1,8 +0,0 @@ -# inject-hotkey - -## 0.0.1 - -### Patch Changes - -- Updated dependencies [[`c173ed0`](https://github.com/TanStack/hotkeys/commit/c173ed079c6b0f282c9cf8dcb6d9523408eca5a0)]: - - @tanstack/angular-hotkeys@0.4.0 diff --git a/examples/angular/injectHotkeyRecorder/CHANGELOG.md b/examples/angular/injectHotkeyRecorder/CHANGELOG.md deleted file mode 100644 index 76b02c8..0000000 --- a/examples/angular/injectHotkeyRecorder/CHANGELOG.md +++ /dev/null @@ -1,8 +0,0 @@ -# inject-hotkey-recorder - -## 0.0.1 - -### Patch Changes - -- Updated dependencies [[`c173ed0`](https://github.com/TanStack/hotkeys/commit/c173ed079c6b0f282c9cf8dcb6d9523408eca5a0)]: - - @tanstack/angular-hotkeys@0.4.0 diff --git a/examples/angular/injectHotkeySequence/CHANGELOG.md b/examples/angular/injectHotkeySequence/CHANGELOG.md deleted file mode 100644 index d9955da..0000000 --- a/examples/angular/injectHotkeySequence/CHANGELOG.md +++ /dev/null @@ -1,8 +0,0 @@ -# inject-hotkey-sequence - -## 0.0.1 - -### Patch Changes - -- Updated dependencies [[`c173ed0`](https://github.com/TanStack/hotkeys/commit/c173ed079c6b0f282c9cf8dcb6d9523408eca5a0)]: - - @tanstack/angular-hotkeys@0.4.0 diff --git a/examples/angular/injectKeyHold/CHANGELOG.md b/examples/angular/injectKeyHold/CHANGELOG.md deleted file mode 100644 index 589bc86..0000000 --- a/examples/angular/injectKeyHold/CHANGELOG.md +++ /dev/null @@ -1,8 +0,0 @@ -# inject-key-hold - -## 0.0.1 - -### Patch Changes - -- Updated dependencies [[`c173ed0`](https://github.com/TanStack/hotkeys/commit/c173ed079c6b0f282c9cf8dcb6d9523408eca5a0)]: - - @tanstack/angular-hotkeys@0.4.0 diff --git a/packages/hotkeys-devtools/CHANGELOG.md b/packages/hotkeys-devtools/CHANGELOG.md index 79fc47b..a1d2aa0 100644 --- a/packages/hotkeys-devtools/CHANGELOG.md +++ b/packages/hotkeys-devtools/CHANGELOG.md @@ -1,6 +1,6 @@ # @tanstack/hotkeys-devtools -## 1.0.0 +## 0.4.0 ### Minor Changes diff --git a/packages/hotkeys-devtools/package.json b/packages/hotkeys-devtools/package.json index be28ed1..fb9b63d 100644 --- a/packages/hotkeys-devtools/package.json +++ b/packages/hotkeys-devtools/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/hotkeys-devtools", - "version": "1.0.0", + "version": "0.4.0", "description": "Devtools for TanStack Hotkeys", "author": "Tanner Linsley", "license": "MIT", From 5b965696f42d67c8cef503b15c1d35dc26e91c38 Mon Sep 17 00:00:00 2001 From: Kevin Van Cott Date: Sat, 7 Mar 2026 19:54:26 -0600 Subject: [PATCH 3/3] remove version numbers from angular examples --- examples/angular/injectHeldKeys/package.json | 1 - examples/angular/injectHotkey/package.json | 1 - examples/angular/injectHotkeyRecorder/package.json | 1 - examples/angular/injectHotkeySequence/package.json | 1 - examples/angular/injectKeyHold/package.json | 1 - 5 files changed, 5 deletions(-) diff --git a/examples/angular/injectHeldKeys/package.json b/examples/angular/injectHeldKeys/package.json index e9aa86a..9077404 100644 --- a/examples/angular/injectHeldKeys/package.json +++ b/examples/angular/injectHeldKeys/package.json @@ -1,6 +1,5 @@ { "name": "inject-held-keys", - "version": "0.0.1", "scripts": { "ng": "ng", "start": "ng serve --port=3069", diff --git a/examples/angular/injectHotkey/package.json b/examples/angular/injectHotkey/package.json index 20c6c92..10229e1 100644 --- a/examples/angular/injectHotkey/package.json +++ b/examples/angular/injectHotkey/package.json @@ -1,6 +1,5 @@ { "name": "inject-hotkey", - "version": "0.0.1", "scripts": { "ng": "ng", "start": "ng serve --port=3069", diff --git a/examples/angular/injectHotkeyRecorder/package.json b/examples/angular/injectHotkeyRecorder/package.json index 191bece..d108186 100644 --- a/examples/angular/injectHotkeyRecorder/package.json +++ b/examples/angular/injectHotkeyRecorder/package.json @@ -1,6 +1,5 @@ { "name": "inject-hotkey-recorder", - "version": "0.0.1", "scripts": { "ng": "ng", "start": "ng serve --port=3069", diff --git a/examples/angular/injectHotkeySequence/package.json b/examples/angular/injectHotkeySequence/package.json index 5d6e86d..46db7af 100644 --- a/examples/angular/injectHotkeySequence/package.json +++ b/examples/angular/injectHotkeySequence/package.json @@ -1,6 +1,5 @@ { "name": "inject-hotkey-sequence", - "version": "0.0.1", "scripts": { "ng": "ng", "start": "ng serve --port=3069", diff --git a/examples/angular/injectKeyHold/package.json b/examples/angular/injectKeyHold/package.json index b821da3..3382125 100644 --- a/examples/angular/injectKeyHold/package.json +++ b/examples/angular/injectKeyHold/package.json @@ -1,6 +1,5 @@ { "name": "inject-key-hold", - "version": "0.0.1", "scripts": { "ng": "ng", "start": "ng serve --port=3069",