lumencode 1.0.0 → 1.1.0
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/index.js +74 -63
- package/lib/git.js +51 -18
- package/lib/parsers/claude.js +321 -316
- package/lib/parsers/codex.js +360 -316
- package/lib/parsers/opencode.js +236 -216
- package/lib/record-utils.js +36 -35
- package/lib/report.js +41 -4
- package/lib/server.js +573 -523
- package/package.json +1 -1
- package/public/app.js +827 -809
- package/public/style.css +3 -2
package/public/style.css
CHANGED
|
@@ -123,7 +123,7 @@ input, textarea { font-family: inherit; color: inherit; }
|
|
|
123
123
|
|
|
124
124
|
/* ── Layout ── */
|
|
125
125
|
#app { min-height: 100vh; background: var(--background); color: var(--foreground); }
|
|
126
|
-
.app-grid { display: grid; grid-template-columns: 260px 1fr;
|
|
126
|
+
.app-grid { display: grid; grid-template-columns: 260px 1fr; }
|
|
127
127
|
.app-grid.rail-collapsed { grid-template-columns: 56px 1fr; }
|
|
128
128
|
|
|
129
129
|
/* ── Rail ── */
|
|
@@ -131,6 +131,7 @@ input, textarea { font-family: inherit; color: inherit; }
|
|
|
131
131
|
background: var(--rail);
|
|
132
132
|
color: var(--rail-foreground);
|
|
133
133
|
min-height: 100vh;
|
|
134
|
+
min-width: 0;
|
|
134
135
|
display: flex;
|
|
135
136
|
flex-direction: column;
|
|
136
137
|
position: sticky;
|
|
@@ -313,7 +314,7 @@ input, textarea { font-family: inherit; color: inherit; }
|
|
|
313
314
|
.rail.collapsed .rail-toggle { display: flex; }
|
|
314
315
|
|
|
315
316
|
/* ── Main ── */
|
|
316
|
-
.main-content { min-height: 100vh; }
|
|
317
|
+
.main-content { min-height: 100vh; min-width: 0; overflow-x: hidden; }
|
|
317
318
|
|
|
318
319
|
/* ── Primitives ── */
|
|
319
320
|
.font-mono { font-family: var(--font-mono); }
|