open-agents-ai 0.187.63 → 0.187.64
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 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -280478,8 +280478,10 @@ ${CONTENT_BG_SEQ}`);
|
|
|
280478
280478
|
return;
|
|
280479
280479
|
}
|
|
280480
280480
|
if (key?.name === "return" || key?.name === "enter") {
|
|
280481
|
-
|
|
280482
|
-
|
|
280481
|
+
const currentLine = rl.line ?? "";
|
|
280482
|
+
rl.line = "";
|
|
280483
|
+
rl.cursor = 0;
|
|
280484
|
+
rl.emit("line", currentLine);
|
|
280483
280485
|
self2.updateFooterHeight();
|
|
280484
280486
|
self2.renderFooterAndPositionInput();
|
|
280485
280487
|
return;
|
package/package.json
CHANGED