@danypops/pi-packed 0.19.4 → 0.19.5

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.
@@ -865,14 +865,13 @@ function renderUnifiedPanel(
865
865
  tui.requestRender();
866
866
  },
867
867
  };
868
- // row is a real percentage of terminal height (0%=top, 100%=bottom) --
869
- // unlike anchor:"top-center"+offsetY (a fixed row count, effectively
870
- // pinned to the very top on any terminal size), this scales with the
871
- // actual screen. anchor:"center" still governs horizontal centering
872
- // (row overrides only the vertical resolution). Note this isn't fully
873
- // content-height-independent -- pi-tui's own row-percentage formula
874
- // interpolates over the range of positions that still fit the current
875
- // content height, so a shorter/taller row count shifts this somewhat;
876
- // only exactly 0%/100% are perfectly jitter-free in that library.
877
- }, { overlay: true, overlayOptions: { width: "70%", maxHeight: "70%", anchor: "center", row: "40%" } });
868
+ // Pinned to the very top (anchor:"top-center"+offsetY:1 -- a fixed row
869
+ // count regardless of terminal size), not row:"40%". The percentage
870
+ // positioning was tried instead but reverted: pi-tui's row-percentage
871
+ // formula interpolates over the range of positions that still fit the
872
+ // CURRENT content height, so the panel visibly jittered up and down
873
+ // every time a tab with a different content height (Packages' table vs.
874
+ // Config's shorter list) became active. A fixed top offset keeps the
875
+ // header pinned in place and only the footer moves as content grows.
876
+ }, { overlay: true, overlayOptions: { width: "70%", maxHeight: "70%", anchor: "top-center", offsetY: 1 } });
878
877
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@danypops/pi-packed",
3
- "version": "0.19.4",
3
+ "version": "0.19.5",
4
4
  "description": "Pi package tools, commands, profiles, and TUI for the Packed daemon",
5
5
  "type": "module",
6
6
  "keywords": ["pi-package"],