agentfootprint-lens 0.23.8 → 0.23.10

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.cjs CHANGED
@@ -3157,7 +3157,8 @@ var TimeTravel = ({
3157
3157
  focusSeq,
3158
3158
  onFocusChange,
3159
3159
  isLive,
3160
- compact
3160
+ compact,
3161
+ stepStrip = true
3161
3162
  }) => {
3162
3163
  const max = Math.max(0, total - 1);
3163
3164
  const step = (delta) => {
@@ -3237,7 +3238,40 @@ var TimeTravel = ({
3237
3238
  children: isLive ? "\u25CF Live" : "\u27F3 Live"
3238
3239
  }
3239
3240
  ),
3240
- compact ? /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("div", { style: { flex: 1 } }) : /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("div", { style: { flex: 1, position: "relative", display: "flex", alignItems: "center" }, children: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
3241
+ compact ? stepStrip && total > 1 ? /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
3242
+ "div",
3243
+ {
3244
+ role: "group",
3245
+ "aria-label": "Steps",
3246
+ style: { flex: 1, display: "flex", alignItems: "center", gap: 2, minWidth: 120, padding: "0 4px" },
3247
+ children: Array.from({ length: total }, (_, i) => {
3248
+ const done = i < focusSeq;
3249
+ const here = i === focusSeq;
3250
+ return /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
3251
+ "button",
3252
+ {
3253
+ onClick: () => onFocusChange(i),
3254
+ disabled,
3255
+ title: `Step ${i + 1} / ${total}`,
3256
+ "aria-label": `Go to step ${i + 1}`,
3257
+ "aria-current": here ? "step" : void 0,
3258
+ style: {
3259
+ flex: 1,
3260
+ minWidth: 3,
3261
+ height: here ? 16 : 9,
3262
+ padding: 0,
3263
+ border: "none",
3264
+ borderRadius: 3,
3265
+ cursor: disabled ? "default" : "pointer",
3266
+ background: here ? T.warning : done ? T.success : T.border,
3267
+ transition: "height 0.12s ease, background 0.12s ease"
3268
+ }
3269
+ },
3270
+ i
3271
+ );
3272
+ })
3273
+ }
3274
+ ) : /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("div", { style: { flex: 1 } }) : /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("div", { style: { flex: 1, position: "relative", display: "flex", alignItems: "center" }, children: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
3241
3275
  "input",
3242
3276
  {
3243
3277
  type: "range",
@@ -5019,6 +5053,8 @@ var Lens = ({
5019
5053
  stepGraph,
5020
5054
  chart,
5021
5055
  view = "engineer",
5056
+ stepStrip = true,
5057
+ showSummary = true,
5022
5058
  humanizer,
5023
5059
  appName,
5024
5060
  commentaryTemplates,
@@ -5116,6 +5152,8 @@ var Lens = ({
5116
5152
  focusStep,
5117
5153
  onFocusChange: handleFocusChange,
5118
5154
  isLive,
5155
+ stepStrip,
5156
+ showSummary,
5119
5157
  liveStreamLine,
5120
5158
  drillPath,
5121
5159
  onDrillInto: drillInto,
@@ -5164,6 +5202,8 @@ var EngineerView = ({
5164
5202
  focusStep,
5165
5203
  onFocusChange,
5166
5204
  isLive,
5205
+ stepStrip,
5206
+ showSummary,
5167
5207
  liveStreamLine,
5168
5208
  drillPath,
5169
5209
  onDrillInto,
@@ -5399,7 +5439,7 @@ var EngineerView = ({
5399
5439
  },
5400
5440
  children: [
5401
5441
  /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("div", { style: { display: "flex", alignItems: "center", gap: 8 }, children: [
5402
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("div", { style: { flex: 1, minWidth: 0 }, children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(SummaryCard, { summary }) }),
5442
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("div", { style: { flex: 1, minWidth: 0 }, children: showSummary && /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(SummaryCard, { summary }) }),
5403
5443
  /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(
5404
5444
  CopyForLLMButton,
5405
5445
  {
@@ -5431,6 +5471,7 @@ var EngineerView = ({
5431
5471
  TimeTravel,
5432
5472
  {
5433
5473
  compact: true,
5474
+ stepStrip,
5434
5475
  total,
5435
5476
  focusSeq: focusStep,
5436
5477
  onFocusChange,
@@ -5558,7 +5599,7 @@ var EngineerView = ({
5558
5599
  /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(
5559
5600
  VLinePill,
5560
5601
  {
5561
- label: "Details",
5602
+ label: "Inspect",
5562
5603
  expanded: rightExpanded,
5563
5604
  side: "right",
5564
5605
  onClick: () => setRightExpanded((v2) => !v2)