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