open-agents-ai 0.184.90 → 0.184.91
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/index.js +14 -10
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -61248,12 +61248,9 @@ var init_status_bar = __esm({
|
|
|
61248
61248
|
return;
|
|
61249
61249
|
const w = process.stdout.columns ?? 80;
|
|
61250
61250
|
const overlay = renderHeaderButtons(w);
|
|
61251
|
-
if (
|
|
61252
|
-
|
|
61253
|
-
|
|
61254
|
-
writer(overlay);
|
|
61255
|
-
if (this.writeDepth === 0) {
|
|
61256
|
-
this.renderFooterAndPositionInput();
|
|
61251
|
+
if (overlay) {
|
|
61252
|
+
const writer = this._origWrite ?? process.stdout.write.bind(process.stdout);
|
|
61253
|
+
writer(overlay);
|
|
61257
61254
|
}
|
|
61258
61255
|
}
|
|
61259
61256
|
/** Set a callback to re-render the banner after resize/redraw */
|
|
@@ -62212,7 +62209,14 @@ ${CONTENT_BG_SEQ}`);
|
|
|
62212
62209
|
onCtrlO();
|
|
62213
62210
|
return;
|
|
62214
62211
|
}
|
|
62215
|
-
if (
|
|
62212
|
+
if (key?.name === "tab" && self.inputStateProvider) {
|
|
62213
|
+
const { line = "" } = self.inputStateProvider() ?? {};
|
|
62214
|
+
if (line.length === 0) {
|
|
62215
|
+
self.cycleFocus();
|
|
62216
|
+
return;
|
|
62217
|
+
}
|
|
62218
|
+
}
|
|
62219
|
+
if (s === "") {
|
|
62216
62220
|
self.cycleFocus();
|
|
62217
62221
|
return;
|
|
62218
62222
|
}
|
|
@@ -65960,9 +65964,6 @@ Rationale: ${proposal.rationale}${provenanceNote}`;
|
|
|
65960
65964
|
statusBar.handlePointerEvent(type, col, row);
|
|
65961
65965
|
});
|
|
65962
65966
|
process.stdin.pipe(mouseFilter);
|
|
65963
|
-
if (process.stdout.isTTY) {
|
|
65964
|
-
process.stdout.write("\x1B[?1002h\x1B[?1006h");
|
|
65965
|
-
}
|
|
65966
65967
|
process.stdin.on("error", (err) => {
|
|
65967
65968
|
if (err.code === "EIO" || err.code === "ENOTTY")
|
|
65968
65969
|
return;
|
|
@@ -66030,6 +66031,9 @@ Rationale: ${proposal.rationale}${provenanceNote}`;
|
|
|
66030
66031
|
if (process.stdin.isTTY && typeof process.stdin.setRawMode === "function") {
|
|
66031
66032
|
process.stdin.setRawMode(true);
|
|
66032
66033
|
}
|
|
66034
|
+
if (process.stdout.isTTY) {
|
|
66035
|
+
process.stdout.write("\x1B[?1002h\x1B[?1006h");
|
|
66036
|
+
}
|
|
66033
66037
|
function persistHistoryLine(line) {
|
|
66034
66038
|
if (!line.trim())
|
|
66035
66039
|
return;
|
package/package.json
CHANGED