nothumanallowed 13.2.22 → 13.2.23
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/package.json +1 -1
- package/src/constants.mjs +1 -1
- package/src/services/web-ui.mjs +6 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nothumanallowed",
|
|
3
|
-
"version": "13.2.
|
|
3
|
+
"version": "13.2.23",
|
|
4
4
|
"description": "NotHumanAllowed — 38 AI agents, 80 tools, Studio (visual agentic workflows). Email, calendar, browser automation, screen capture, canvas, cron/heartbeat, Alexandria E2E messaging, GitHub, Notion, Slack, voice chat, free AI (Liara), 28 languages. Zero-dependency CLI.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
package/src/constants.mjs
CHANGED
|
@@ -5,7 +5,7 @@ import { fileURLToPath } from 'url';
|
|
|
5
5
|
const __filename = fileURLToPath(import.meta.url);
|
|
6
6
|
const __dirname = path.dirname(__filename);
|
|
7
7
|
|
|
8
|
-
export const VERSION = '13.2.
|
|
8
|
+
export const VERSION = '13.2.23';
|
|
9
9
|
export const BASE_URL = 'https://nothumanallowed.com/cli';
|
|
10
10
|
export const API_BASE = 'https://nothumanallowed.com/api/v1';
|
|
11
11
|
|
package/src/services/web-ui.mjs
CHANGED
|
@@ -638,6 +638,11 @@ function onConversationSwitch(){
|
|
|
638
638
|
}
|
|
639
639
|
}
|
|
640
640
|
|
|
641
|
+
function openCanvasPanel(){
|
|
642
|
+
var cp = document.getElementById('canvasPanel');
|
|
643
|
+
if (cp) cp.classList.add('open');
|
|
644
|
+
}
|
|
645
|
+
|
|
641
646
|
function reopenCanvas(){
|
|
642
647
|
var d=getConvCanvasData();
|
|
643
648
|
canvasIdx=d.canvases.length-1;
|
|
@@ -2832,7 +2837,7 @@ function renderStudioResult() {
|
|
|
2832
2837
|
el.style.display = 'block';
|
|
2833
2838
|
var isHtml = studioState.result.trimStart().startsWith('<');
|
|
2834
2839
|
var body = isHtml
|
|
2835
|
-
? '<div style="display:flex;align-items:center;gap:12px;flex-wrap:wrap"><span style="color:var(--dim);font-size:13px">✓ Dashboard HTML generata nel pannello Canvas.</span><button onclick="
|
|
2840
|
+
? '<div style="display:flex;align-items:center;gap:12px;flex-wrap:wrap"><span style="color:var(--dim);font-size:13px">✓ Dashboard HTML generata nel pannello Canvas.</span><button onclick="openCanvasPanel()" style="padding:6px 14px;background:var(--greendim);border:1px solid var(--green3);border-radius:8px;color:var(--green);font-size:12px;cursor:pointer;font-weight:700">▣ Apri Canvas</button></div>'
|
|
2836
2841
|
: '<div class="md-body">' + renderMd(studioState.result) + '</div>';
|
|
2837
2842
|
el.innerHTML = '<div class="studio-result__title">✓ Workflow completato</div>' + body;
|
|
2838
2843
|
}
|