@vibeflow-tools/cli 0.6.1 → 0.8.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/CHANGELOG.md +30 -0
- package/README.md +2 -0
- package/dist/cli/index.js +59 -29
- package/dist/client/kanban-browser.js +13 -14
- package/dist/client/overlay-browser.js +34 -4
- package/dist/index.js +59 -29
- package/dist/overlay.css +31 -0
- package/package.json +1 -1
package/dist/overlay.css
CHANGED
|
@@ -1541,3 +1541,34 @@
|
|
|
1541
1541
|
color: rgba(255,255,255,0.7);
|
|
1542
1542
|
}
|
|
1543
1543
|
.rq-btn-secondary:hover { background: #475569; }
|
|
1544
|
+
|
|
1545
|
+
/* ── Corner trigger context menu (right-click to hide overlay) ─────── */
|
|
1546
|
+
.vibeflow-trigger-ctx-menu {
|
|
1547
|
+
position: fixed;
|
|
1548
|
+
background: #1e293b;
|
|
1549
|
+
border: 1px solid #334155;
|
|
1550
|
+
border-radius: 6px;
|
|
1551
|
+
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
|
|
1552
|
+
padding: 2px;
|
|
1553
|
+
z-index: 2147483647;
|
|
1554
|
+
pointer-events: auto;
|
|
1555
|
+
}
|
|
1556
|
+
|
|
1557
|
+
.vibeflow-trigger-ctx-menu button {
|
|
1558
|
+
display: block;
|
|
1559
|
+
width: 100%;
|
|
1560
|
+
text-align: left;
|
|
1561
|
+
padding: 4px 10px;
|
|
1562
|
+
border: none;
|
|
1563
|
+
background: none;
|
|
1564
|
+
color: #e2e8f0;
|
|
1565
|
+
font-size: 12px;
|
|
1566
|
+
font-family: system-ui, sans-serif;
|
|
1567
|
+
cursor: pointer;
|
|
1568
|
+
border-radius: 4px;
|
|
1569
|
+
white-space: nowrap;
|
|
1570
|
+
}
|
|
1571
|
+
|
|
1572
|
+
.vibeflow-trigger-ctx-menu button:hover {
|
|
1573
|
+
background: #334155;
|
|
1574
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vibeflow-tools/cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.8.0",
|
|
4
4
|
"description": "Vibeflow CLI for frontend prototyping with LLM assistance — review, annotate, and iterate on HTML prototypes",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": "Tomislav Zorcec <vibeflow.tools@gmail.com>",
|