donobu 5.36.2 → 5.36.4
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.
|
@@ -13,6 +13,7 @@ exports.renderHtml = renderHtml;
|
|
|
13
13
|
const fs_1 = require("fs");
|
|
14
14
|
const path_1 = require("path");
|
|
15
15
|
const ansi_1 = require("../utils/ansi");
|
|
16
|
+
const MiscUtils_1 = require("../utils/MiscUtils");
|
|
16
17
|
const reportWalk_1 = require("./reportWalk");
|
|
17
18
|
// ---------------------------------------------------------------------------
|
|
18
19
|
// Helpers
|
|
@@ -1650,7 +1651,7 @@ body::before{content:'';position:fixed;top:-750px;left:50%;transform:translateX(
|
|
|
1650
1651
|
.summary-sub{font-size:13px;color:var(--text-muted);margin-bottom:14px}
|
|
1651
1652
|
.test-bar{display:flex;gap:4px;margin-bottom:16px;flex-wrap:wrap}
|
|
1652
1653
|
.test-bar-block{width:28px;height:28px;border-radius:4px;flex-shrink:0;transition:transform .1s;cursor:pointer;position:relative}
|
|
1653
|
-
.test-bar-block:hover{transform:scale(1.15)}
|
|
1654
|
+
.test-bar-block:hover{transform:scale(1.15);z-index:20}
|
|
1654
1655
|
.test-bar-block[data-tooltip]:hover::after{content:attr(data-tooltip);position:absolute;top:calc(100% + 8px);left:50%;transform:translateX(-50%);background:var(--surface);color:var(--text);border:1px solid var(--border);border-radius:var(--radius);padding:6px 10px;font-size:11px;font-family:var(--font);white-space:nowrap;z-index:10;pointer-events:none;box-shadow:0 4px 12px rgba(0,0,0,.2)}
|
|
1655
1656
|
.test-bar-block[data-tooltip]:hover::before{content:'';position:absolute;top:calc(100% + 2px);left:50%;transform:translateX(-50%);border:5px solid transparent;border-bottom-color:var(--border);z-index:10;pointer-events:none}
|
|
1656
1657
|
.test-bar-block.bar-passed{background:var(--bar-pass)}
|
|
@@ -1994,7 +1995,7 @@ details.ai-invocation[open]>summary .native-step-chevron{transform:rotate(90deg)
|
|
|
1994
1995
|
|
|
1995
1996
|
<div class="report-footer">
|
|
1996
1997
|
<div class="footer-brand"><span class="logo">${LOGO_SVG}</span> Donobu</div>
|
|
1997
|
-
<span>Report Generated By Donobu</span>
|
|
1998
|
+
<span>Report Generated By Donobu v${esc(MiscUtils_1.MiscUtils.DONOBU_VERSION)}</span>
|
|
1998
1999
|
</div>
|
|
1999
2000
|
</div>
|
|
2000
2001
|
|
package/dist/reporter/render.js
CHANGED
|
@@ -13,6 +13,7 @@ exports.renderHtml = renderHtml;
|
|
|
13
13
|
const fs_1 = require("fs");
|
|
14
14
|
const path_1 = require("path");
|
|
15
15
|
const ansi_1 = require("../utils/ansi");
|
|
16
|
+
const MiscUtils_1 = require("../utils/MiscUtils");
|
|
16
17
|
const reportWalk_1 = require("./reportWalk");
|
|
17
18
|
// ---------------------------------------------------------------------------
|
|
18
19
|
// Helpers
|
|
@@ -1650,7 +1651,7 @@ body::before{content:'';position:fixed;top:-750px;left:50%;transform:translateX(
|
|
|
1650
1651
|
.summary-sub{font-size:13px;color:var(--text-muted);margin-bottom:14px}
|
|
1651
1652
|
.test-bar{display:flex;gap:4px;margin-bottom:16px;flex-wrap:wrap}
|
|
1652
1653
|
.test-bar-block{width:28px;height:28px;border-radius:4px;flex-shrink:0;transition:transform .1s;cursor:pointer;position:relative}
|
|
1653
|
-
.test-bar-block:hover{transform:scale(1.15)}
|
|
1654
|
+
.test-bar-block:hover{transform:scale(1.15);z-index:20}
|
|
1654
1655
|
.test-bar-block[data-tooltip]:hover::after{content:attr(data-tooltip);position:absolute;top:calc(100% + 8px);left:50%;transform:translateX(-50%);background:var(--surface);color:var(--text);border:1px solid var(--border);border-radius:var(--radius);padding:6px 10px;font-size:11px;font-family:var(--font);white-space:nowrap;z-index:10;pointer-events:none;box-shadow:0 4px 12px rgba(0,0,0,.2)}
|
|
1655
1656
|
.test-bar-block[data-tooltip]:hover::before{content:'';position:absolute;top:calc(100% + 2px);left:50%;transform:translateX(-50%);border:5px solid transparent;border-bottom-color:var(--border);z-index:10;pointer-events:none}
|
|
1656
1657
|
.test-bar-block.bar-passed{background:var(--bar-pass)}
|
|
@@ -1994,7 +1995,7 @@ details.ai-invocation[open]>summary .native-step-chevron{transform:rotate(90deg)
|
|
|
1994
1995
|
|
|
1995
1996
|
<div class="report-footer">
|
|
1996
1997
|
<div class="footer-brand"><span class="logo">${LOGO_SVG}</span> Donobu</div>
|
|
1997
|
-
<span>Report Generated By Donobu</span>
|
|
1998
|
+
<span>Report Generated By Donobu v${esc(MiscUtils_1.MiscUtils.DONOBU_VERSION)}</span>
|
|
1998
1999
|
</div>
|
|
1999
2000
|
</div>
|
|
2000
2001
|
|