@opentui/react 0.0.0-20250924-d06b64fa → 0.0.0-20250924-9d06e8e4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "main": "index.js",
5
5
  "types": "src/index.d.ts",
6
6
  "type": "module",
7
- "version": "0.0.0-20250924-d06b64fa",
7
+ "version": "0.0.0-20250924-9d06e8e4",
8
8
  "description": "React renderer for building terminal user interfaces using OpenTUI core",
9
9
  "license": "MIT",
10
10
  "repository": {
@@ -35,7 +35,7 @@
35
35
  }
36
36
  },
37
37
  "dependencies": {
38
- "@opentui/core": "0.0.0-20250924-d06b64fa",
38
+ "@opentui/core": "0.0.0-20250924-9d06e8e4",
39
39
  "react-reconciler": "^0.32.0"
40
40
  },
41
41
  "devDependencies": {
@@ -1,2 +1,2 @@
1
- import type { ParsedKey } from "@opentui/core";
2
- export declare const useKeyboard: (handler: (key: ParsedKey) => void) => void;
1
+ import type { KeyEvent } from "@opentui/core";
2
+ export declare const useKeyboard: (handler: (key: KeyEvent) => void) => void;