open-agents-ai 0.185.0 → 0.185.1
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 +16 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -62091,8 +62091,10 @@ ${CONTENT_BG_SEQ}`);
|
|
|
62091
62091
|
for (let si = 0; si < this._suggestions.length; si++) {
|
|
62092
62092
|
const row = pos.suggestStartRow + si;
|
|
62093
62093
|
const cmd = this._suggestions[si];
|
|
62094
|
-
|
|
62095
|
-
buf +=
|
|
62094
|
+
buf += `\x1B[${row};1H${PANEL_BG_SEQ}\x1B[2K`;
|
|
62095
|
+
buf += `${PANEL_BG_SEQ}\x1B[38;5;${TEXT_DIM}m /`;
|
|
62096
|
+
buf += `\x1B[38;5;${TEXT_PRIMARY}m${cmd}`;
|
|
62097
|
+
buf += `${RESET}`;
|
|
62096
62098
|
}
|
|
62097
62099
|
} else {
|
|
62098
62100
|
buf += `\x1B[${pos.bufferRow};1H${PANEL_BG_SEQ}\x1B[2K${this.buildBufferContent(w)}${RESET}`;
|
|
@@ -62137,7 +62139,18 @@ ${CONTENT_BG_SEQ}`);
|
|
|
62137
62139
|
if (pos.tabBarRow > 0) {
|
|
62138
62140
|
buf += `\x1B[${pos.tabBarRow};1H${PANEL_BG_SEQ}\x1B[2K${RESET}`;
|
|
62139
62141
|
}
|
|
62140
|
-
|
|
62142
|
+
if (this._suggestions.length > 0 && pos.suggestStartRow > 0) {
|
|
62143
|
+
for (let si = 0; si < this._suggestions.length; si++) {
|
|
62144
|
+
const row = pos.suggestStartRow + si;
|
|
62145
|
+
const cmd = this._suggestions[si];
|
|
62146
|
+
buf += `\x1B[${row};1H${PANEL_BG_SEQ}\x1B[2K`;
|
|
62147
|
+
buf += `${PANEL_BG_SEQ}\x1B[38;5;${TEXT_DIM}m /`;
|
|
62148
|
+
buf += `\x1B[38;5;${TEXT_PRIMARY}m${cmd}${RESET}`;
|
|
62149
|
+
}
|
|
62150
|
+
} else {
|
|
62151
|
+
buf += `\x1B[${pos.bufferRow};1H${PANEL_BG_SEQ}\x1B[2K${this.buildBufferContent(w)}${RESET}`;
|
|
62152
|
+
}
|
|
62153
|
+
buf += `\x1B[${pos.metricsRow};1H${PANEL_BG_SEQ}\x1B[2K${this.buildMetricsLine()}${RESET}\x1B[?7h\x1B8` + // DEC restore cursor
|
|
62141
62154
|
(this.writeDepth === 0 ? "\x1B[?25h" : "");
|
|
62142
62155
|
this.termWrite(buf);
|
|
62143
62156
|
if (pos.tabBarRow > 0)
|
package/package.json
CHANGED