open-agents-ai 0.187.72 → 0.187.74
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 +6 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -278471,11 +278471,12 @@ var init_status_bar = __esm({
|
|
|
278471
278471
|
buf += `\x1B[2;1H${PANEL_BG_SEQ}\x1B[2K`;
|
|
278472
278472
|
buf += `${BOX_FG}\u2502${RESET}${PANEL_BG_SEQ}`;
|
|
278473
278473
|
buf += leftArrow;
|
|
278474
|
+
buf += ` `;
|
|
278474
278475
|
buf += `\x1B[38;5;${TEXT_PRIMARY}m${PANEL_BG_SEQ}`;
|
|
278475
278476
|
buf += content;
|
|
278476
|
-
buf += `\x1B[2;${w -
|
|
278477
|
+
buf += `\x1B[2;${w - 2}H`;
|
|
278477
278478
|
buf += rightArrow;
|
|
278478
|
-
buf +=
|
|
278479
|
+
buf += ` ${BOX_FG}\u2502${RESET}`;
|
|
278479
278480
|
buf += "\x1B8";
|
|
278480
278481
|
this.termWrite(buf);
|
|
278481
278482
|
}
|
|
@@ -279670,10 +279671,12 @@ var init_status_bar = __esm({
|
|
|
279670
279671
|
beginContentWrite() {
|
|
279671
279672
|
if (!this.active)
|
|
279672
279673
|
return;
|
|
279674
|
+
this.writeDepth++;
|
|
279675
|
+
if (this.writeDepth > 1)
|
|
279676
|
+
return;
|
|
279673
279677
|
this.updateFooterHeight();
|
|
279674
279678
|
if (this._currentFooterHeight < 4)
|
|
279675
279679
|
this._currentFooterHeight = 4;
|
|
279676
|
-
this.writeDepth++;
|
|
279677
279680
|
this.cancelMouseIdle();
|
|
279678
279681
|
this.enableMouseTracking();
|
|
279679
279682
|
const rows = process.stdout.rows ?? 24;
|
package/package.json
CHANGED