open-agents-ai 0.187.128 → 0.187.130
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 +3 -15
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -278794,15 +278794,7 @@ function leaveOverlay() {
|
|
|
278794
278794
|
} catch {
|
|
278795
278795
|
}
|
|
278796
278796
|
}
|
|
278797
|
-
const pending = _buffer;
|
|
278798
278797
|
_buffer = [];
|
|
278799
|
-
for (const { stream, data } of pending) {
|
|
278800
|
-
if (stream === "stdout") {
|
|
278801
|
-
process.stdout.write(data);
|
|
278802
|
-
} else {
|
|
278803
|
-
process.stderr.write(data);
|
|
278804
|
-
}
|
|
278805
|
-
}
|
|
278806
278798
|
}
|
|
278807
278799
|
}
|
|
278808
278800
|
var _overlayActive, _depth, _buffer, _origStdoutWrite, _origStderrWrite, _onLeaveCallback;
|
|
@@ -280236,6 +280228,9 @@ var init_status_bar = __esm({
|
|
|
280236
280228
|
const fh = this._currentFooterHeight;
|
|
280237
280229
|
const footerStart = termRows() - fh + 1;
|
|
280238
280230
|
if (row >= footerStart) return;
|
|
280231
|
+
if (type === "press" || type === "drag") {
|
|
280232
|
+
this.disableMouseTracking();
|
|
280233
|
+
}
|
|
280239
280234
|
}
|
|
280240
280235
|
/** Copy current selection to clipboard. Returns true if copied. */
|
|
280241
280236
|
copySelection() {
|
|
@@ -280523,13 +280518,6 @@ var init_status_bar = __esm({
|
|
|
280523
280518
|
this.writeDepth++;
|
|
280524
280519
|
if (this.writeDepth > 1) return;
|
|
280525
280520
|
if (isOverlayActive()) {
|
|
280526
|
-
if (!this._origWrite) {
|
|
280527
|
-
this._origWrite = this._trueStdoutWrite;
|
|
280528
|
-
process.stdout.write = ((chunk) => {
|
|
280529
|
-
bufferIfOverlay("stdout", chunk);
|
|
280530
|
-
return true;
|
|
280531
|
-
});
|
|
280532
|
-
}
|
|
280533
280521
|
return;
|
|
280534
280522
|
}
|
|
280535
280523
|
this.updateFooterHeight();
|
package/package.json
CHANGED