open-agents-ai 0.187.71 → 0.187.73
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 -4
- 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
|
}
|
|
@@ -294118,7 +294119,7 @@ async function handleUpdate(subcommand, ctx3) {
|
|
|
294118
294119
|
const boxFg = getBoxFg();
|
|
294119
294120
|
const bgSeq = getBgSeq();
|
|
294120
294121
|
const contentTop = 4;
|
|
294121
|
-
const contentBottom = rows -
|
|
294122
|
+
const contentBottom = rows - 2;
|
|
294122
294123
|
const contentHeight = Math.max(5, contentBottom - contentTop + 1);
|
|
294123
294124
|
let buf = "\x1B[?2026h\x1B7\x1B[?25l";
|
|
294124
294125
|
for (let r2 = contentTop; r2 <= contentBottom; r2++) {
|
|
@@ -294195,7 +294196,7 @@ async function handleUpdate(subcommand, ctx3) {
|
|
|
294195
294196
|
clearInterval(timer);
|
|
294196
294197
|
const rows = process.stdout.rows ?? 24;
|
|
294197
294198
|
const contentTop = 4;
|
|
294198
|
-
const contentBottom = rows -
|
|
294199
|
+
const contentBottom = rows - 2;
|
|
294199
294200
|
const { tuiBgSeq: getDismissBg } = (init_theme(), __toCommonJS(theme_exports));
|
|
294200
294201
|
let buf = "\x1B7";
|
|
294201
294202
|
for (let r2 = contentTop; r2 <= contentBottom; r2++) {
|
package/package.json
CHANGED