open-agents-ai 0.187.417 → 0.187.419
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 +2 -2
- package/npm-shrinkwrap.json +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -532705,7 +532705,7 @@ var init_status_bar = __esm({
|
|
|
532705
532705
|
return identity3.separatorOffsets.map((offset) => chrome.contentStartCol + offset).filter((col) => col > 1 && col < termWidth);
|
|
532706
532706
|
}
|
|
532707
532707
|
if (panel.meta.kind === "system" && this._sysSeparatorOffset !== null) {
|
|
532708
|
-
const col = chrome.contentStartCol + this._sysSeparatorOffset;
|
|
532708
|
+
const col = chrome.contentStartCol + this._sysSeparatorOffset + 1;
|
|
532709
532709
|
if (col > 1 && col < termWidth) return [col];
|
|
532710
532710
|
}
|
|
532711
532711
|
return [];
|
|
@@ -559399,7 +559399,7 @@ var init_stream_renderer = __esm({
|
|
|
559399
559399
|
* wrap on the NEXT partial flush (avoiding bottom-row token pile-up). */
|
|
559400
559400
|
writeRaw(text) {
|
|
559401
559401
|
if (isTTY8) {
|
|
559402
|
-
process.stdout.write(`\x1B[?7l${text}\x1B[?7h`);
|
|
559402
|
+
process.stdout.write(`\x1B[?25l\x1B[?7l${text}\x1B[?7h`);
|
|
559403
559403
|
} else {
|
|
559404
559404
|
process.stdout.write(text);
|
|
559405
559405
|
}
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "open-agents-ai",
|
|
3
|
-
"version": "0.187.
|
|
3
|
+
"version": "0.187.419",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "open-agents-ai",
|
|
9
|
-
"version": "0.187.
|
|
9
|
+
"version": "0.187.419",
|
|
10
10
|
"hasInstallScript": true,
|
|
11
11
|
"license": "CC-BY-NC-4.0",
|
|
12
12
|
"dependencies": {
|
package/package.json
CHANGED