@agent-api/cli 0.4.24 → 0.4.26
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/dist/runtime.d.ts +1 -1
- package/dist/runtime.js +1 -1
- package/dist/tui/mouse.d.ts +1 -1
- package/dist/tui/mouse.js +1 -1
- package/package.json +2 -2
package/dist/runtime.d.ts
CHANGED
package/dist/runtime.js
CHANGED
package/dist/tui/mouse.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import type { WorkbenchTerminalMouseEvent } from "@agent-api/app-engine/terminal";
|
|
2
|
-
export declare const enableMouseReporting = "\u001B[?1000h\u001B[?
|
|
2
|
+
export declare const enableMouseReporting = "\u001B[?1000h\u001B[?1006h";
|
|
3
3
|
export declare const disableMouseReporting = "\u001B[?1000l\u001B[?1002l\u001B[?1006l";
|
|
4
4
|
export declare function parseMouseEvent(input: string): WorkbenchTerminalMouseEvent | null;
|
package/dist/tui/mouse.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export const enableMouseReporting = "\x1b[?1000h\x1b[?
|
|
1
|
+
export const enableMouseReporting = "\x1b[?1000h\x1b[?1006h";
|
|
2
2
|
export const disableMouseReporting = "\x1b[?1000l\x1b[?1002l\x1b[?1006l";
|
|
3
3
|
export function parseMouseEvent(input) {
|
|
4
4
|
const match = /(?:\x1b)?\[<(\d+);(\d+);(\d+)([mM])/.exec(input);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agent-api/cli",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.26",
|
|
4
4
|
"description": "First-class command line interface for Agent API",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://github.com/scalebox-dev/agent-tui#readme",
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"test": "npm run sync-version && npm run build && npm run smoke -w @agent-api/app-engine && node --test test/*.test.mjs"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@agent-api/app-engine": "^0.1.
|
|
38
|
+
"@agent-api/app-engine": "^0.1.25",
|
|
39
39
|
"commander": "^14.0.3",
|
|
40
40
|
"ink": "^6.8.0",
|
|
41
41
|
"react": "^19.2.7"
|