open-agents-ai 0.187.217 → 0.187.218
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 -4
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -291721,11 +291721,9 @@ function tuiSelect(opts) {
|
|
|
291721
291721
|
const first2 = findSelectable(0, 1);
|
|
291722
291722
|
cursor = first2 >= 0 ? first2 : 0;
|
|
291723
291723
|
}
|
|
291724
|
-
const reservedTopBottom = 0;
|
|
291725
291724
|
const hasCrumbs = opts.breadcrumbs && opts.breadcrumbs.length > 0;
|
|
291726
|
-
const selectChrome = (hasCrumbs ?
|
|
291727
|
-
|
|
291728
|
-
let maxVisible = opts.maxVisible ?? Math.max(3, contentArea - selectChrome);
|
|
291725
|
+
const selectChrome = (hasCrumbs ? 9 : 8) + 1;
|
|
291726
|
+
let maxVisible = opts.maxVisible ?? Math.max(3, termRows() - selectChrome);
|
|
291729
291727
|
let scrollOffset = 0;
|
|
291730
291728
|
let lastRenderedLines = 0;
|
|
291731
291729
|
return new Promise((resolve39) => {
|
package/package.json
CHANGED