@ondrej-svec/hog 1.24.2 → 1.24.3

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/cli.js CHANGED
@@ -7176,10 +7176,12 @@ function PanelLayout({
7176
7176
  /* @__PURE__ */ jsx23(Box22, { height: ACTIVITY_HEIGHT, children: activityPanel })
7177
7177
  ] });
7178
7178
  }
7179
+ const usableWidth = cols - 2;
7180
+ const halfWidth = Math.floor(usableWidth / 2);
7179
7181
  return /* @__PURE__ */ jsxs23(Box22, { flexDirection: "column", height: totalHeight, overflow: "hidden", children: [
7180
7182
  !hideLeftPanel ? /* @__PURE__ */ jsxs23(Box22, { height: STACKED_TOP_HEIGHT, flexShrink: 0, children: [
7181
- /* @__PURE__ */ jsx23(Box22, { width: Math.floor(cols / 2), overflow: "hidden", children: reposPanel }),
7182
- /* @__PURE__ */ jsx23(Box22, { flexGrow: 1, overflow: "hidden", children: statusesPanel })
7183
+ /* @__PURE__ */ jsx23(Box22, { width: halfWidth, overflow: "hidden", children: reposPanel }),
7184
+ /* @__PURE__ */ jsx23(Box22, { width: usableWidth - halfWidth, overflow: "hidden", children: statusesPanel })
7183
7185
  ] }) : null,
7184
7186
  /* @__PURE__ */ jsx23(Box22, { flexGrow: 1, flexDirection: "column", children: issuesPanel }),
7185
7187
  /* @__PURE__ */ jsx23(Box22, { height: ACTIVITY_HEIGHT, children: activityPanel })
@@ -7193,7 +7195,7 @@ var init_panel_layout = __esm({
7193
7195
  MEDIUM_THRESHOLD = 100;
7194
7196
  LEFT_COL_WIDTH = 24;
7195
7197
  ACTIVITY_HEIGHT = 5;
7196
- STACKED_TOP_HEIGHT = 7;
7198
+ STACKED_TOP_HEIGHT = 5;
7197
7199
  }
7198
7200
  });
7199
7201
 
@@ -9795,7 +9797,7 @@ async function resolveRef(ref, config2) {
9795
9797
  }
9796
9798
  }
9797
9799
  var program = new Command();
9798
- program.name("hog").description("Personal command deck \u2014 GitHub Projects dashboard with workflow orchestration").version("1.24.2").option("--json", "Force JSON output").option("--human", "Force human-readable output").hook("preAction", (thisCommand) => {
9800
+ program.name("hog").description("Personal command deck \u2014 GitHub Projects dashboard with workflow orchestration").version("1.24.3").option("--json", "Force JSON output").option("--human", "Force human-readable output").hook("preAction", (thisCommand) => {
9799
9801
  const opts = thisCommand.opts();
9800
9802
  if (opts.json) setFormat("json");
9801
9803
  if (opts.human) setFormat("human");