open-agents-ai 0.138.89 → 0.138.90
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 +7 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -37855,7 +37855,8 @@ function tuiSelect(opts) {
|
|
|
37855
37855
|
cursor = first >= 0 ? first : 0;
|
|
37856
37856
|
}
|
|
37857
37857
|
const reservedTopBottom = 6;
|
|
37858
|
-
const
|
|
37858
|
+
const hasCrumbs = opts.breadcrumbs && opts.breadcrumbs.length > 0;
|
|
37859
|
+
const selectChrome = hasCrumbs ? 8 : 7;
|
|
37859
37860
|
const contentArea = opts.availableRows ?? Math.max(6, (process.stdout.rows ?? 24) - reservedTopBottom);
|
|
37860
37861
|
const maxVisible = opts.maxVisible ?? Math.max(3, contentArea - selectChrome);
|
|
37861
37862
|
let scrollOffset = 0;
|
|
@@ -43321,7 +43322,8 @@ async function handleVoiceMenu(ctx, save, hasLocal) {
|
|
|
43321
43322
|
const modeResult = await tuiSelect({
|
|
43322
43323
|
items: modeItems,
|
|
43323
43324
|
activeKey: currentMode,
|
|
43324
|
-
title: "
|
|
43325
|
+
title: "Mode",
|
|
43326
|
+
breadcrumbs: ["Voice"],
|
|
43325
43327
|
rl: ctx.rl,
|
|
43326
43328
|
availableRows: ctx.availableContentRows?.()
|
|
43327
43329
|
});
|
|
@@ -43348,7 +43350,8 @@ async function handleVoiceMenu(ctx, save, hasLocal) {
|
|
|
43348
43350
|
const voiceResult = await tuiSelect({
|
|
43349
43351
|
items: voiceItems,
|
|
43350
43352
|
activeKey: currentModel,
|
|
43351
|
-
title: "
|
|
43353
|
+
title: "Engine",
|
|
43354
|
+
breadcrumbs: ["Voice"],
|
|
43352
43355
|
rl: ctx.rl,
|
|
43353
43356
|
availableRows: ctx.availableContentRows?.(),
|
|
43354
43357
|
skipKeys: ["header-onnx", "header-mlx", "header-clone"]
|
|
@@ -56113,6 +56116,7 @@ async function startInteractive(config, repoPath) {
|
|
|
56113
56116
|
const { onOverlayLeave: onOverlayLeave2 } = await Promise.resolve().then(() => (init_overlay_lock(), overlay_lock_exports));
|
|
56114
56117
|
onOverlayLeave2(() => {
|
|
56115
56118
|
banner.renderCurrentFrame();
|
|
56119
|
+
statusBar.enableMouseTracking();
|
|
56116
56120
|
if (statusBar.isActive)
|
|
56117
56121
|
statusBar.handleResize();
|
|
56118
56122
|
});
|
package/package.json
CHANGED