@cccarv82/freya 2.12.0 → 2.13.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/cli/web-ui.css +2 -1
- package/cli/web.js +4 -2
- package/package.json +1 -1
package/cli/web-ui.css
CHANGED
|
@@ -569,10 +569,11 @@ body {
|
|
|
569
569
|
.promptShell {
|
|
570
570
|
display: flex;
|
|
571
571
|
justify-content: center;
|
|
572
|
+
width: 100%;
|
|
572
573
|
}
|
|
573
574
|
|
|
574
575
|
.promptBar {
|
|
575
|
-
width: min(
|
|
576
|
+
width: min(960px, 100%);
|
|
576
577
|
background: var(--paper);
|
|
577
578
|
backdrop-filter: blur(16px);
|
|
578
579
|
-webkit-backdrop-filter: blur(16px);
|
package/cli/web.js
CHANGED
|
@@ -1208,7 +1208,8 @@ function buildHtml(safeDefault, appVersion) {
|
|
|
1208
1208
|
|
|
1209
1209
|
<div class="centerBody">
|
|
1210
1210
|
<!-- Unified Input Panel -->
|
|
1211
|
-
<div class="
|
|
1211
|
+
<div class="promptShell">
|
|
1212
|
+
<div class="promptBar" style="border-radius: 16px; display: flex; flex-direction: column; overflow: hidden;">
|
|
1212
1213
|
<!-- Header -->
|
|
1213
1214
|
<div class="promptMeta" style="flex-shrink:0;">
|
|
1214
1215
|
<div class="promptTitle" style="display: flex; align-items: center; gap: 8px;">
|
|
@@ -1222,7 +1223,7 @@ function buildHtml(safeDefault, appVersion) {
|
|
|
1222
1223
|
</div>
|
|
1223
1224
|
|
|
1224
1225
|
<!-- Textarea -->
|
|
1225
|
-
<textarea id="inboxText" placeholder="Cole updates, decisões, blockers... ou faça uma pergunta à Freya. ▸ Salvar & Processar → extrai tarefas e blockers do texto ▸ Perguntar → consulta o histórico via busca semântica (RAG)" style="resize:none; min-height:
|
|
1226
|
+
<textarea id="inboxText" placeholder="Cole updates, decisões, blockers... ou faça uma pergunta à Freya. ▸ Salvar & Processar → extrai tarefas e blockers do texto ▸ Perguntar → consulta o histórico via busca semântica (RAG)" style="resize:none; min-height: 160px; border-radius: 0; border-left: none; border-right: none; border-top: none; border-bottom: 1px solid var(--border); padding: 14px 16px; font-size: 13px; line-height: 1.6;"
|
|
1226
1227
|
onkeydown="if((event.metaKey||event.ctrlKey)&&event.key==='Enter'){event.preventDefault();window.saveAndPlan();}"></textarea>
|
|
1227
1228
|
|
|
1228
1229
|
<!-- Actions bar -->
|
|
@@ -1258,6 +1259,7 @@ function buildHtml(safeDefault, appVersion) {
|
|
|
1258
1259
|
<!-- Chat thread: responses appear here after actions -->
|
|
1259
1260
|
<div id="chatThread" style="max-height: 280px; overflow-y:auto; overflow-x:hidden; padding:0 12px; display:flex; flex-direction:column; gap:8px; border-top: 1px solid var(--border);"></div>
|
|
1260
1261
|
</div>
|
|
1262
|
+
</div>
|
|
1261
1263
|
|
|
1262
1264
|
<div class="centerHead">
|
|
1263
1265
|
<div>
|
package/package.json
CHANGED