open-agents-ai 0.187.73 → 0.187.75
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 +5 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -279671,10 +279671,12 @@ var init_status_bar = __esm({
|
|
|
279671
279671
|
beginContentWrite() {
|
|
279672
279672
|
if (!this.active)
|
|
279673
279673
|
return;
|
|
279674
|
+
this.writeDepth++;
|
|
279675
|
+
if (this.writeDepth > 1)
|
|
279676
|
+
return;
|
|
279674
279677
|
this.updateFooterHeight();
|
|
279675
279678
|
if (this._currentFooterHeight < 4)
|
|
279676
279679
|
this._currentFooterHeight = 4;
|
|
279677
|
-
this.writeDepth++;
|
|
279678
279680
|
this.cancelMouseIdle();
|
|
279679
279681
|
this.enableMouseTracking();
|
|
279680
279682
|
const rows = process.stdout.rows ?? 24;
|
|
@@ -294119,7 +294121,7 @@ async function handleUpdate(subcommand, ctx3) {
|
|
|
294119
294121
|
const boxFg = getBoxFg();
|
|
294120
294122
|
const bgSeq = getBgSeq();
|
|
294121
294123
|
const contentTop = 4;
|
|
294122
|
-
const contentBottom = rows -
|
|
294124
|
+
const contentBottom = rows - 4;
|
|
294123
294125
|
const contentHeight = Math.max(5, contentBottom - contentTop + 1);
|
|
294124
294126
|
let buf = "\x1B[?2026h\x1B7\x1B[?25l";
|
|
294125
294127
|
for (let r2 = contentTop; r2 <= contentBottom; r2++) {
|
|
@@ -294196,7 +294198,7 @@ async function handleUpdate(subcommand, ctx3) {
|
|
|
294196
294198
|
clearInterval(timer);
|
|
294197
294199
|
const rows = process.stdout.rows ?? 24;
|
|
294198
294200
|
const contentTop = 4;
|
|
294199
|
-
const contentBottom = rows -
|
|
294201
|
+
const contentBottom = rows - 4;
|
|
294200
294202
|
const { tuiBgSeq: getDismissBg } = (init_theme(), __toCommonJS(theme_exports));
|
|
294201
294203
|
let buf = "\x1B7";
|
|
294202
294204
|
for (let r2 = contentTop; r2 <= contentBottom; r2++) {
|
package/package.json
CHANGED