@cccarv82/freya 2.10.0 → 2.11.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.js +18 -37
- package/package.json +1 -1
package/cli/web.js
CHANGED
|
@@ -1279,9 +1279,7 @@ function buildHtml(safeDefault, appVersion) {
|
|
|
1279
1279
|
</div>
|
|
1280
1280
|
</div>
|
|
1281
1281
|
|
|
1282
|
-
<
|
|
1283
|
-
<!-- Hoje Panel gets more prominent focus -->
|
|
1284
|
-
<section class="panel midSpan" style="display:flex; flex-direction:column; min-height:0;">
|
|
1282
|
+
<section class="panel" style="display:flex; flex-direction:column; min-height:0; margin-bottom:16px;">
|
|
1285
1283
|
<!-- Header with live counters -->
|
|
1286
1284
|
<div class="panelHead" style="background: linear-gradient(90deg, var(--paper2), var(--paper)); border-left: 4px solid var(--accent); flex-shrink:0;">
|
|
1287
1285
|
<div style="display:flex; align-items:center; gap:10px;">
|
|
@@ -1319,42 +1317,25 @@ function buildHtml(safeDefault, appVersion) {
|
|
|
1319
1317
|
</div>
|
|
1320
1318
|
<div id="blockersInsights" style="padding: 4px 16px 12px; font-size:12px; color:var(--muted);"></div>
|
|
1321
1319
|
</div>
|
|
1322
|
-
|
|
1320
|
+
</section>
|
|
1323
1321
|
|
|
1324
|
-
|
|
1325
|
-
|
|
1326
|
-
|
|
1327
|
-
|
|
1328
|
-
|
|
1329
|
-
|
|
1330
|
-
</div>
|
|
1331
|
-
</div>
|
|
1332
|
-
<div class="panelBody panelScroll" style="max-height: 300px;">
|
|
1333
|
-
<input id="reportsFilter" placeholder="Filtrar relatórios..." style="width:100%; margin-bottom:10px" oninput="renderReportsList()" />
|
|
1334
|
-
<div id="reportsList" style="display:grid; gap:8px"></div>
|
|
1335
|
-
</div>
|
|
1336
|
-
</section>
|
|
1337
|
-
</div>
|
|
1338
|
-
<div class="panel">
|
|
1339
|
-
<div class="panelHead"><b>Configurações de publicação</b></div>
|
|
1340
|
-
<div class="panelBody">
|
|
1341
|
-
<label>Discord webhook URL</label>
|
|
1342
|
-
<input id="discord" placeholder="https://discord.com/api/webhooks/..." />
|
|
1343
|
-
<div style="height:10px"></div>
|
|
1344
|
-
|
|
1345
|
-
<label>Teams webhook URL</label>
|
|
1346
|
-
<input id="teams" placeholder="https://..." />
|
|
1347
|
-
<div class="help">Os webhooks ficam salvos na workspace em <code>data/settings/settings.json</code>.</div>
|
|
1348
|
-
|
|
1349
|
-
<div style="height:10px"></div>
|
|
1350
|
-
<label style="display:flex; align-items:center; gap:10px; user-select:none; margin: 6px 0 12px 0">
|
|
1351
|
-
<input id="prettyPublish" type="checkbox" checked style="width:auto" onchange="togglePrettyPublish()" />
|
|
1352
|
-
Publicação bonita (cards/embeds)
|
|
1353
|
-
</label>
|
|
1322
|
+
<div class="panel">
|
|
1323
|
+
<div class="panelHead"><b>Configurações de publicação</b></div>
|
|
1324
|
+
<div class="panelBody">
|
|
1325
|
+
<label>Discord webhook URL</label>
|
|
1326
|
+
<input id="discord" placeholder="https://discord.com/api/webhooks/..." />
|
|
1327
|
+
<div style="height:10px"></div>
|
|
1354
1328
|
|
|
1355
|
-
|
|
1356
|
-
|
|
1357
|
-
</div>
|
|
1329
|
+
<label>Teams webhook URL</label>
|
|
1330
|
+
<input id="teams" placeholder="https://..." />
|
|
1331
|
+
<div class="help">Os webhooks ficam salvos na workspace em <code>data/settings/settings.json</code>.</div>
|
|
1332
|
+
|
|
1333
|
+
<div style="height:10px"></div>
|
|
1334
|
+
<label style="display:flex; align-items:center; gap:10px; user-select:none; margin: 6px 0 12px 0">
|
|
1335
|
+
<input id="prettyPublish" type="checkbox" checked style="width:auto" onchange="togglePrettyPublish()" />
|
|
1336
|
+
Publicação bonita (cards/embeds)
|
|
1337
|
+
</label>
|
|
1338
|
+
</div>
|
|
1358
1339
|
</div>
|
|
1359
1340
|
</div>
|
|
1360
1341
|
</main>
|
package/package.json
CHANGED