open-agents-ai 0.141.2 → 0.141.4
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 +6 -14
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -57912,24 +57912,16 @@ Rationale: ${proposal.rationale}${provenanceNote}`;
|
|
|
57912
57912
|
headerBtnActive = command;
|
|
57913
57913
|
(async () => {
|
|
57914
57914
|
try {
|
|
57915
|
-
|
|
57916
|
-
if (needsContentWrap && statusBar.isActive)
|
|
57917
|
-
statusBar.beginContentWrite();
|
|
57918
|
-
try {
|
|
57919
|
-
await handleSlashCommand(command, commandCtxRef);
|
|
57920
|
-
} finally {
|
|
57921
|
-
if (needsContentWrap && statusBar.isActive) {
|
|
57922
|
-
try {
|
|
57923
|
-
statusBar.endContentWrite();
|
|
57924
|
-
} catch {
|
|
57925
|
-
}
|
|
57926
|
-
}
|
|
57927
|
-
}
|
|
57915
|
+
await writeContentAsync(() => handleSlashCommand(command, commandCtxRef));
|
|
57928
57916
|
} catch {
|
|
57929
57917
|
}
|
|
57930
57918
|
headerBtnActive = null;
|
|
57931
|
-
if (statusBar.isActive)
|
|
57919
|
+
if (statusBar.isActive) {
|
|
57920
|
+
statusBar.disableMouseTracking();
|
|
57921
|
+
statusBar.enableMouseTracking();
|
|
57922
|
+
banner.renderCurrentFrame();
|
|
57932
57923
|
statusBar.refreshDisplay();
|
|
57924
|
+
}
|
|
57933
57925
|
})();
|
|
57934
57926
|
});
|
|
57935
57927
|
rl.output = null;
|
package/package.json
CHANGED