@opentui/solid 0.1.104 → 0.1.106

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": "index.d.ts",
6
6
  "type": "module",
7
- "version": "0.1.104",
7
+ "version": "0.1.106",
8
8
  "description": "SolidJS renderer for OpenTUI",
9
9
  "license": "MIT",
10
10
  "repository": {
@@ -35,20 +35,21 @@
35
35
  "dependencies": {
36
36
  "@babel/core": "7.28.0",
37
37
  "@babel/preset-typescript": "7.27.1",
38
- "@opentui/core": "0.1.104",
38
+ "@opentui/core": "0.1.106",
39
39
  "babel-plugin-module-resolver": "5.0.2",
40
- "babel-preset-solid": "1.9.10",
40
+ "babel-preset-solid": "1.9.12",
41
41
  "entities": "7.0.1",
42
42
  "s-js": "^0.4.9"
43
43
  },
44
44
  "devDependencies": {
45
+ "@opentui/keymap": "workspace:*",
45
46
  "@types/babel__core": "7.20.5",
46
47
  "@types/bun": "latest",
47
48
  "@types/node": "^24.0.0",
48
- "solid-js": "1.9.11",
49
+ "solid-js": "1.9.12",
49
50
  "typescript": "^5"
50
51
  },
51
52
  "peerDependencies": {
52
- "solid-js": "1.9.11"
53
+ "solid-js": "1.9.12"
53
54
  }
54
55
  }
@@ -6,6 +6,7 @@ export type NonStyledProps = "id" | "buffered" | "live" | "enableLayout" | "sele
6
6
  /** Solid-specific props for all components */
7
7
  export type ElementProps<TRenderable = unknown> = {
8
8
  ref?: Ref<TRenderable>;
9
+ [eventName: `on:${string}`]: ((...args: any[]) => void) | undefined;
9
10
  };
10
11
  /** Base type for any renderable constructor */
11
12
  export type RenderableConstructor<TRenderable extends BaseRenderable = BaseRenderable> = new (ctx: RenderContext, options: any) => TRenderable;