@cccarv82/freya 1.0.62 → 1.0.64

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.
Files changed (2) hide show
  1. package/cli/web-ui.js +5 -1
  2. package/package.json +1 -1
package/cli/web-ui.js CHANGED
@@ -555,7 +555,7 @@
555
555
  for (const item of list) {
556
556
  const card = document.createElement('div');
557
557
  const mode = state.reportModes[item.relPath] || 'preview';
558
- const expanded = state.reportExpanded && state.reportExpanded[item.relPath];
558
+ const expanded = (state.reportExpanded && state.reportExpanded[item.relPath]) || mode === 'raw';
559
559
  card.className = 'reportCard' + (mode === 'raw' ? ' raw' : '') + (expanded ? ' expanded' : '');
560
560
 
561
561
  const meta = fmtWhen(item.mtimeMs);
@@ -657,6 +657,10 @@
657
657
  }
658
658
 
659
659
  grid.appendChild(card);
660
+
661
+ if (expanded && raw) {
662
+ requestAnimationFrame(() => autoGrowTextarea(raw));
663
+ }
660
664
  }
661
665
  }
662
666
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cccarv82/freya",
3
- "version": "1.0.62",
3
+ "version": "1.0.64",
4
4
  "description": "Personal AI Assistant with local-first persistence",
5
5
  "scripts": {
6
6
  "health": "node scripts/validate-data.js",