@cccarv82/freya 1.0.38 → 1.0.39
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/cli/web-ui.css +14 -3
- package/cli/web-ui.js +5 -0
- package/package.json +1 -1
package/cli/web-ui.css
CHANGED
|
@@ -67,7 +67,8 @@ body {
|
|
|
67
67
|
.shell {
|
|
68
68
|
display: grid;
|
|
69
69
|
grid-template-columns: 290px minmax(520px, 1fr) 380px;
|
|
70
|
-
|
|
70
|
+
height: calc(100vh - 36px);
|
|
71
|
+
min-height: 0;
|
|
71
72
|
}
|
|
72
73
|
|
|
73
74
|
@media (max-width: 1200px) {
|
|
@@ -82,6 +83,8 @@ body {
|
|
|
82
83
|
|
|
83
84
|
/* LEFT */
|
|
84
85
|
.sidebar {
|
|
86
|
+
overflow: auto;
|
|
87
|
+
min-height: 0;
|
|
85
88
|
background: linear-gradient(180deg, rgba(255,250,242,.85), rgba(255,250,242,.60));
|
|
86
89
|
border-right: 1px solid var(--line);
|
|
87
90
|
padding: 14px;
|
|
@@ -164,7 +167,12 @@ body {
|
|
|
164
167
|
.miniIcon.warn { background: var(--chip2); color: var(--accent); }
|
|
165
168
|
|
|
166
169
|
/* CENTER */
|
|
167
|
-
.center {
|
|
170
|
+
.center {
|
|
171
|
+
background: rgba(255, 250, 242, .58);
|
|
172
|
+
display: flex;
|
|
173
|
+
flex-direction: column;
|
|
174
|
+
min-height: 0;
|
|
175
|
+
}
|
|
168
176
|
[data-theme="dark"] .center { background: rgba(10, 14, 26, .55); }
|
|
169
177
|
|
|
170
178
|
.topbar {
|
|
@@ -185,7 +193,7 @@ body {
|
|
|
185
193
|
[data-theme="dark"] .chip { background: rgba(0,0,0,.20); }
|
|
186
194
|
.toggle { border: 1px solid var(--line); border-radius: 999px; background: var(--paper2); padding: 7px 10px; cursor: pointer; color: var(--muted); font-weight: 800; font-size: 12px; }
|
|
187
195
|
|
|
188
|
-
.centerBody { padding: 16px; }
|
|
196
|
+
.centerBody { padding: 16px; overflow: auto; min-height: 0; }
|
|
189
197
|
.centerHead { display: flex; justify-content: space-between; align-items: flex-end; gap: 18px; margin-bottom: 14px; }
|
|
190
198
|
.statusLine { display:flex; align-items:center; justify-content:flex-end; gap: 12px; }
|
|
191
199
|
|
|
@@ -296,6 +304,8 @@ textarea:focus { box-shadow: var(--ring); border-color: rgba(37,99,235,.35); }
|
|
|
296
304
|
background: linear-gradient(180deg, rgba(255,250,242,.82), rgba(255,250,242,.60));
|
|
297
305
|
display: grid;
|
|
298
306
|
grid-template-rows: auto 1fr auto;
|
|
307
|
+
overflow: hidden;
|
|
308
|
+
min-height: 0;
|
|
299
309
|
}
|
|
300
310
|
[data-theme="dark"] .chatPane {
|
|
301
311
|
background: linear-gradient(180deg, rgba(17,24,39,.92), rgba(17,24,39,.68));
|
|
@@ -308,6 +318,7 @@ textarea:focus { box-shadow: var(--ring); border-color: rgba(37,99,235,.35); }
|
|
|
308
318
|
.chatThread {
|
|
309
319
|
padding: 14px;
|
|
310
320
|
overflow: auto;
|
|
321
|
+
min-height: 0;
|
|
311
322
|
display: flex;
|
|
312
323
|
flex-direction: column;
|
|
313
324
|
gap: 10px;
|
package/cli/web-ui.js
CHANGED
|
@@ -843,6 +843,11 @@
|
|
|
843
843
|
|
|
844
844
|
setOut(msg);
|
|
845
845
|
chatAppend('assistant', msg, { markdown: true });
|
|
846
|
+
|
|
847
|
+
// After apply, refresh panels so the UI reflects the new state (tasks/blockers/reports)
|
|
848
|
+
try { await refreshToday(); } catch {}
|
|
849
|
+
try { await refreshReports({ selectLatest: true }); } catch {}
|
|
850
|
+
|
|
846
851
|
setPill('ok', 'applied');
|
|
847
852
|
setTimeout(() => setPill('ok', 'pronto'), 800);
|
|
848
853
|
} catch (e) {
|