@solidrt/cli 0.0.41 → 0.0.42

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@solidrt/cli",
3
- "version": "0.0.41",
3
+ "version": "0.0.42",
4
4
  "license": "MIT",
5
5
  "author": "Antoine van Wel",
6
6
  "type": "module",
@@ -28,17 +28,17 @@
28
28
  "zod": "^4.4.3"
29
29
  },
30
30
  "optionalDependencies": {
31
- "@solidrt/darwin-arm64": "0.0.41",
32
- "@solidrt/linux-arm64-gnu": "0.0.41",
33
- "@solidrt/linux-x64-gnu": "0.0.41",
34
- "@solidrt/win32-x64-msvc": "0.0.41"
31
+ "@solidrt/darwin-arm64": "0.0.42",
32
+ "@solidrt/linux-arm64-gnu": "0.0.42",
33
+ "@solidrt/linux-x64-gnu": "0.0.42",
34
+ "@solidrt/win32-x64-msvc": "0.0.42"
35
35
  },
36
36
  "peerDependencies": {
37
- "@solidrt/core": "0.0.41",
37
+ "@solidrt/core": "0.0.42",
38
38
  "typescript": "^7"
39
39
  },
40
40
  "devDependencies": {
41
- "@solidrt/flux-types": "0.0.41",
41
+ "@solidrt/flux-types": "0.0.42",
42
42
  "@types/babel__core": "^7.20.5",
43
43
  "@types/bun": "latest"
44
44
  }
@@ -350,8 +350,10 @@ flag: `"args": [..., "mcp", "--port", "N"]`.
350
350
  - console.log + get_logs is your primary probe into runtime state. For state
351
351
  you will want repeatedly (a pose, a mode, a counter), bind a debug key that
352
352
  logs it and read it back via get_logs.
353
- - Key events are delivered ONLY to the focused node (no bubbling): call
354
- setFocus(node.id) from the window's ref or onKeyDown never fires. `key` and
353
+ - Key events start at the focused node and bubble to the window root; with
354
+ nothing focused they go to the window root alone. So a debug key bound via
355
+ `<window onKeyDown>` always fires (unless a focused component consumes the
356
+ key with stopPropagation, as TextInput does for editing keys). `key` and
355
357
  `code` are W3C KeyboardEvent values, so arrow keys arrive as "ArrowLeft"/
356
358
  "ArrowRight"/"ArrowUp"/"ArrowDown" (not "Left"), alongside "Enter",
357
359
  "Escape", "a".
@@ -9,12 +9,12 @@
9
9
  "android": "srt client --android"
10
10
  },
11
11
  "dependencies": {
12
- "@solidrt/core": "0.0.41",
13
- "@solidrt/components": "0.0.41"
12
+ "@solidrt/core": "0.0.42",
13
+ "@solidrt/components": "0.0.42"
14
14
  },
15
15
  "devDependencies": {
16
- "@solidrt/cli": "0.0.41",
17
- "@solidrt/flux-types": "0.0.41",
16
+ "@solidrt/cli": "0.0.42",
17
+ "@solidrt/flux-types": "0.0.42",
18
18
  "typescript": "^7"
19
19
  }
20
20
  }