You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Output Summary and Status remain in the right Asset Manager V2 panel.
8
+
- Output Summary now has an explicit `asset-manager-v2__accordion--output` layout hook.
9
+
- Status keeps its explicit `asset-manager-v2__accordion--status` layout hook.
10
+
- The Status header remains a non-nested button pattern: the header is keyboard-focusable with `role="button"`, while the Clear button stays inside the same visual header row.
11
+
12
+
## Behavior
13
+
14
+
- Output Summary collapse:
15
+
- toggles `aria-expanded` from `true` to `false`
16
+
- sets `#inspectorContent.hidden`
17
+
- shrinks the Output Summary section to header height
18
+
- releases vertical space in the right panel
19
+
- Output Summary expand:
20
+
- restores `#inspectorContent`
21
+
- lets `#inspectorOutput` fill the available content height above Status
22
+
- Status collapse:
23
+
- toggles `aria-expanded` from `true` to `false`
24
+
- sets `#statusLogContent.hidden`
25
+
- shrinks the Status section to header height
26
+
- keeps the collapsed Status header at the bottom-right of the right panel
27
+
- Status expand:
28
+
- restores the status log content
29
+
- keeps the expanded Status section at the bottom-right
30
+
31
+
## Layout Notes
32
+
33
+
- The right panel uses `justify-content: space-between` so Output Summary stays at the top and Status stays at the bottom when either section collapses.
34
+
- Expanded Output Summary uses flexible height; expanded Status uses a fixed 260px basis.
35
+
- Collapsed right-panel accordions use `flex: 0 0 auto` and hidden content, so they release vertical space.
36
+
37
+
## Validation
38
+
39
+
-`npm run test:workspace-v2`: passed, 10 tests.
40
+
- Playwright asserts Output Summary collapse/expand, Status collapse/expand, hidden content state, section height shrinkage, Output Summary fill behavior, and Status bottom placement.
41
+
- A direct browser layout probe during implementation measured Status at 15px from the right-panel bottom after Output Summary collapsed, after Output Summary re-expanded, and after Status collapsed.
0 commit comments