open-agents-ai 0.187.97 → 0.187.98
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 +4 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -279975,9 +279975,13 @@ ${CONTENT_BG_SEQ}`);
|
|
|
279975
279975
|
return origBound(chunk, ...args);
|
|
279976
279976
|
});
|
|
279977
279977
|
}
|
|
279978
|
+
this.termWrite("\x1B[?2026h");
|
|
279978
279979
|
process.stdout.write(`\x1B[?25l` + // hide cursor
|
|
279979
279980
|
CONTENT_BG_SEQ + // set content area bg (#111)
|
|
279980
279981
|
`\x1B[${this.scrollRegionTop};${scrollEnd}r\x1B[${scrollEnd};1H`);
|
|
279982
|
+
this.renderFooterAndPositionInput();
|
|
279983
|
+
process.stdout.write(`\x1B[${scrollEnd};1H`);
|
|
279984
|
+
this.termWrite("\x1B[?2026l");
|
|
279981
279985
|
}
|
|
279982
279986
|
/**
|
|
279983
279987
|
* Call AFTER writing content to the scrollable area.
|
|
@@ -311893,9 +311897,6 @@ ${result.content.slice(0, 2e3)}${result.content.length > 2e3 ? "\n[truncated]" :
|
|
|
311893
311897
|
if (pasteBuffer.length === 0 && input.startsWith("/")) {
|
|
311894
311898
|
if (statusBar.isActive) {
|
|
311895
311899
|
statusBar.lockFooter();
|
|
311896
|
-
statusBar.syncBegin();
|
|
311897
|
-
statusBar.redrawFooter();
|
|
311898
|
-
statusBar.syncEnd();
|
|
311899
311900
|
}
|
|
311900
311901
|
processLine(input);
|
|
311901
311902
|
if (statusBar.isActive) {
|
package/package.json
CHANGED