@nanobpm/nano-workforce 0.171.3 → 0.171.4

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/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ ## [0.171.4](https://github.com/nanobpm/nano-workforce/compare/v0.171.3...v0.171.4) (2026-09-01)
2
+
3
+ ### Bug Fixes
4
+
5
+ * **cockpit:** remove nested transcript scrollbar inside App-View iframe ([#680](https://github.com/nanobpm/nano-workforce/issues/680)) ([2660f38](https://github.com/nanobpm/nano-workforce/commit/2660f382386665f44308f1e719cee253e81fc891)), closes [#679](https://github.com/nanobpm/nano-workforce/issues/679)
6
+
1
7
  ## [0.171.3](https://github.com/nanobpm/nano-workforce/compare/v0.171.2...v0.171.3) (2026-08-31)
2
8
 
3
9
  ### Code Refactoring
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nanobpm/nano-workforce",
3
- "version": "0.171.3",
3
+ "version": "0.171.4",
4
4
  "description": "Nano Workforce — an Agent Graph Orchestration application for Agentic SDLC: durable BPMN processes that coordinate a graph of AI agents across the software delivery lifecycle.",
5
5
  "type": "module",
6
6
  "main": "main.ts",
@@ -310,13 +310,15 @@
310
310
  terminal shows for both a live drill and a past-session replay, in place of a raw nwfTranscriptEvent
311
311
  dump. Mounted into `.cockpit-terminal-host` by renderDerivedTranscript(). */
312
312
 
313
+ /* No own scroll container: the transcript grows with its content and the single
314
+ outer scroller — the `appView` iframe viewport (fill: min(80vh,48rem)), or the
315
+ phone page in the standalone shell — scrolls it. A `max-height`/`overflow` here
316
+ nested a second scrollbar inside the already-bounded iframe (scroll-in-scroll). */
313
317
  .cockpit-transcript-derived {
314
318
  display: grid;
315
319
  gap: 12px;
316
320
  padding: 8px;
317
321
  font: 12.5px/1.5 ui-monospace, SFMono-Regular, Menlo, monospace;
318
- max-height: 60vh;
319
- overflow: auto;
320
322
  }
321
323
 
322
324
  .cockpit-transcript-empty {