@ytspar/sweetlink 1.26.3 → 1.26.4-canary.01cbd39
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/dist/daemon/viewer.js
CHANGED
|
@@ -146,7 +146,7 @@ export async function generateViewer(manifest, options) {
|
|
|
146
146
|
.main { display: flex; flex: 1; overflow: hidden; }
|
|
147
147
|
.video-pane { flex: 62%; display: flex; flex-direction: column; border-right: 1px solid var(--color-border); position: relative; }
|
|
148
148
|
.video-container { flex: 1; position: relative; background: var(--color-bg); display: flex; align-items: center; justify-content: center; overflow: hidden; }
|
|
149
|
-
.video-container video, .video-container img { max-width: 100%; max-height: 100%; object-fit: contain; border-radius: var(--radius-sm); }
|
|
149
|
+
.video-container video, .video-container img { max-width: 100%; max-height: 100%; min-width: 0; min-height: 0; object-fit: contain; border-radius: var(--radius-sm); }
|
|
150
150
|
.overlay-canvas { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; }
|
|
151
151
|
.controls { height: 56px; background: var(--color-bg-card); border-top: 1px solid var(--color-border); display: flex; flex-direction: column; padding: 4px 16px; flex-shrink: 0; }
|
|
152
152
|
.scrub-track { position: relative; height: 10px; background: var(--color-border-subtle); border-radius: 5px; margin-bottom: 6px; cursor: pointer; border: 1px solid var(--color-border); }
|
|
@@ -62,10 +62,10 @@ export async function visualDiff(baseline, current, options) {
|
|
|
62
62
|
button{background:#334155;color:#e2e8f0;border:0;padding:6px 12px;border-radius:4px;cursor:pointer;font:inherit}
|
|
63
63
|
button.active{background:#0ea5e9;color:#000}
|
|
64
64
|
main{display:flex;gap:8px;padding:8px;flex-wrap:wrap;justify-content:center}
|
|
65
|
-
figure{margin:0;flex:1;min-width:300px;max-width:700px}
|
|
65
|
+
figure{margin:0;flex:1;min-width:min(300px,100%);max-width:700px}
|
|
66
66
|
figcaption{font-size:13px;color:#94a3b8;padding:4px 0 8px}
|
|
67
|
-
img{display:block;max-width:100%;border:1px solid #334155}
|
|
68
|
-
.stack{position:relative;display:inline-block;max-width:100
|
|
67
|
+
img{display:block;max-width:100%;height:auto;border:1px solid #334155}
|
|
68
|
+
.stack{position:relative;display:inline-block;max-width:100%;overflow:hidden}
|
|
69
69
|
.stack img{position:absolute;top:0;left:0}
|
|
70
70
|
.stack img:first-child{position:relative}
|
|
71
71
|
.stack img.overlay{mix-blend-mode:difference;filter:invert(1)}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ytspar/sweetlink",
|
|
3
|
-
"version": "1.26.
|
|
3
|
+
"version": "1.26.4-canary.01cbd39",
|
|
4
4
|
"description": "Autonomous development toolkit for AI agents - screenshots, DOM queries, console logs, and JavaScript execution via WebSocket and Chrome DevTools Protocol",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"autonomous-development",
|