open-agents-ai 0.187.82 → 0.187.83
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 +9 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -278570,6 +278570,13 @@ var init_status_bar = __esm({
|
|
|
278570
278570
|
syncEnd() {
|
|
278571
278571
|
this.termWrite("\x1B[?2026l");
|
|
278572
278572
|
}
|
|
278573
|
+
/** Force a complete footer redraw (public wrapper for renderFooterAndPositionInput) */
|
|
278574
|
+
redrawFooter() {
|
|
278575
|
+
if (!this.active)
|
|
278576
|
+
return;
|
|
278577
|
+
this.updateFooterHeight();
|
|
278578
|
+
this.renderFooterAndPositionInput();
|
|
278579
|
+
}
|
|
278573
278580
|
/** Callback to get available slash commands for suggestion matching */
|
|
278574
278581
|
_commandListProvider = null;
|
|
278575
278582
|
/** Callback to apply a selected suggestion to the input line */
|
|
@@ -311639,10 +311646,11 @@ ${result.content.slice(0, 2e3)}${result.content.length > 2e3 ? "\n[truncated]" :
|
|
|
311639
311646
|
if (statusBar.isActive) {
|
|
311640
311647
|
statusBar.lockFooter();
|
|
311641
311648
|
statusBar.syncBegin();
|
|
311649
|
+
statusBar.redrawFooter();
|
|
311650
|
+
statusBar.syncEnd();
|
|
311642
311651
|
}
|
|
311643
311652
|
processLine(input);
|
|
311644
311653
|
if (statusBar.isActive) {
|
|
311645
|
-
statusBar.syncEnd();
|
|
311646
311654
|
setTimeout(() => statusBar.unlockFooter(), 0);
|
|
311647
311655
|
}
|
|
311648
311656
|
return;
|
package/package.json
CHANGED