open-agents-ai 0.138.43 → 0.138.44
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 -4
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -52158,15 +52158,14 @@ ${CONTENT_BG_SEQ}`);
|
|
|
52158
52158
|
const w1 = this._origWrite ?? this._trueStdoutWrite;
|
|
52159
52159
|
w1.call(process.stdout, buf);
|
|
52160
52160
|
} else {
|
|
52161
|
-
let buf = "\
|
|
52161
|
+
let buf = "\x1B[?7l";
|
|
52162
52162
|
for (let i = 0; i < inputWrap.lines.length; i++) {
|
|
52163
52163
|
const row = pos.inputStartRow + i;
|
|
52164
52164
|
const prefix = i === 0 ? this.promptText : " ".repeat(this.promptWidth);
|
|
52165
52165
|
buf += `\x1B[${row};1H${PANEL_BG_SEQ}\x1B[2K${prefix}${inputWrap.lines[i]}${RESET}`;
|
|
52166
52166
|
}
|
|
52167
|
-
buf += "\x1B[?7h
|
|
52168
|
-
|
|
52169
|
-
w2.call(process.stdout, buf);
|
|
52167
|
+
buf += "\x1B[?7h";
|
|
52168
|
+
this.termWrite(buf);
|
|
52170
52169
|
}
|
|
52171
52170
|
}
|
|
52172
52171
|
/**
|
package/package.json
CHANGED