open-agents-ai 0.187.72 → 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 +3 -2
- 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
|
}
|
package/package.json
CHANGED