@quanta-intellect/vessel-browser 0.1.28 → 0.1.30
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/README.md +32 -7
- package/out/main/index.js +198 -84
- package/out/preload/content-script.js +19 -0
- package/out/preload/index.js +1 -1
- package/out/renderer/assets/{index-D38a5Gkn.js → index-DVD9XuhC.js} +298 -187
- package/out/renderer/assets/{index-DP2yMHwF.css → index-eS3ccAls.css} +79 -22
- package/out/renderer/index.html +2 -2
- package/package.json +2 -1
|
@@ -177,6 +177,24 @@
|
|
|
177
177
|
}
|
|
178
178
|
}
|
|
179
179
|
|
|
180
|
+
.tab-item.closing {
|
|
181
|
+
animation: tab-close 200ms var(--ease-in-out) both;
|
|
182
|
+
pointer-events: none;
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
@keyframes tab-close {
|
|
186
|
+
from {
|
|
187
|
+
max-width: 200px;
|
|
188
|
+
padding: 0 12px;
|
|
189
|
+
opacity: 1;
|
|
190
|
+
}
|
|
191
|
+
to {
|
|
192
|
+
max-width: 0;
|
|
193
|
+
padding: 0;
|
|
194
|
+
opacity: 0;
|
|
195
|
+
}
|
|
196
|
+
}
|
|
197
|
+
|
|
180
198
|
.tab-item:hover {
|
|
181
199
|
background: rgba(255, 255, 255, 0.04);
|
|
182
200
|
color: var(--text-secondary);
|
|
@@ -585,17 +603,6 @@
|
|
|
585
603
|
animation: badge-enter var(--duration-enter) var(--ease-out-back) both;
|
|
586
604
|
}
|
|
587
605
|
|
|
588
|
-
@keyframes badge-enter {
|
|
589
|
-
from {
|
|
590
|
-
opacity: 0;
|
|
591
|
-
transform: scale(0);
|
|
592
|
-
}
|
|
593
|
-
to {
|
|
594
|
-
opacity: 1;
|
|
595
|
-
transform: scale(1);
|
|
596
|
-
}
|
|
597
|
-
}
|
|
598
|
-
|
|
599
606
|
|
|
600
607
|
/* ═══════════════════════════════════════
|
|
601
608
|
Bookmark toast notifications — animated
|
|
@@ -941,6 +948,30 @@
|
|
|
941
948
|
}
|
|
942
949
|
}
|
|
943
950
|
|
|
951
|
+
@keyframes command-bar-exit {
|
|
952
|
+
from {
|
|
953
|
+
opacity: 1;
|
|
954
|
+
transform: translateY(0) scale(1);
|
|
955
|
+
}
|
|
956
|
+
to {
|
|
957
|
+
opacity: 0;
|
|
958
|
+
transform: translateY(-12px) scale(0.97);
|
|
959
|
+
}
|
|
960
|
+
}
|
|
961
|
+
|
|
962
|
+
@keyframes overlay-fade-out {
|
|
963
|
+
from { opacity: 1; }
|
|
964
|
+
to { opacity: 0; }
|
|
965
|
+
}
|
|
966
|
+
|
|
967
|
+
.command-bar-overlay.closing {
|
|
968
|
+
animation: overlay-fade-out 200ms var(--ease-in-out) both;
|
|
969
|
+
}
|
|
970
|
+
|
|
971
|
+
.command-bar-overlay.closing .command-bar {
|
|
972
|
+
animation: command-bar-exit 200ms var(--ease-in-out) both;
|
|
973
|
+
}
|
|
974
|
+
|
|
944
975
|
.command-bar form {
|
|
945
976
|
display: flex;
|
|
946
977
|
align-items: center;
|
|
@@ -1307,17 +1338,6 @@
|
|
|
1307
1338
|
animation: badge-enter var(--duration-enter) var(--ease-out-back) both;
|
|
1308
1339
|
}
|
|
1309
1340
|
|
|
1310
|
-
@keyframes badge-enter {
|
|
1311
|
-
from {
|
|
1312
|
-
opacity: 0;
|
|
1313
|
-
transform: scale(0);
|
|
1314
|
-
}
|
|
1315
|
-
to {
|
|
1316
|
-
opacity: 1;
|
|
1317
|
-
transform: scale(1);
|
|
1318
|
-
}
|
|
1319
|
-
}
|
|
1320
|
-
|
|
1321
1341
|
.sidebar-messages {
|
|
1322
1342
|
flex: 1;
|
|
1323
1343
|
overflow-y: auto;
|
|
@@ -1587,6 +1607,27 @@
|
|
|
1587
1607
|
align-items: stretch;
|
|
1588
1608
|
}
|
|
1589
1609
|
|
|
1610
|
+
.bookmark-folder-delete-confirm {
|
|
1611
|
+
padding: 8px 12px;
|
|
1612
|
+
background: rgba(255, 142, 142, 0.04);
|
|
1613
|
+
border: 1px solid rgba(255, 142, 142, 0.12);
|
|
1614
|
+
border-radius: var(--radius-md);
|
|
1615
|
+
margin-top: 4px;
|
|
1616
|
+
}
|
|
1617
|
+
|
|
1618
|
+
.bookmark-delete-prompt {
|
|
1619
|
+
font-size: 12px;
|
|
1620
|
+
color: var(--text-secondary);
|
|
1621
|
+
margin: 0 0 8px;
|
|
1622
|
+
line-height: 1.4;
|
|
1623
|
+
}
|
|
1624
|
+
|
|
1625
|
+
.bookmark-delete-options {
|
|
1626
|
+
display: flex;
|
|
1627
|
+
gap: 6px;
|
|
1628
|
+
flex-wrap: wrap;
|
|
1629
|
+
}
|
|
1630
|
+
|
|
1590
1631
|
.bookmark-folder-form-fields {
|
|
1591
1632
|
display: flex;
|
|
1592
1633
|
flex: 1;
|
|
@@ -4522,6 +4563,11 @@ button:active:not(:disabled) {
|
|
|
4522
4563
|
loading-bar-enter var(--duration-normal) var(--ease-out-expo) both,
|
|
4523
4564
|
loading-bar-shimmer 1.6s ease-in-out infinite;
|
|
4524
4565
|
z-index: 10;
|
|
4566
|
+
transition: opacity 300ms var(--ease-in-out);
|
|
4567
|
+
}
|
|
4568
|
+
|
|
4569
|
+
.loading-bar.closing {
|
|
4570
|
+
opacity: 0;
|
|
4525
4571
|
}
|
|
4526
4572
|
|
|
4527
4573
|
@keyframes loading-bar-enter {
|
|
@@ -4656,3 +4702,14 @@ button:active:not(:disabled) {
|
|
|
4656
4702
|
[data-tooltip-pos="left"]:hover::after {
|
|
4657
4703
|
transform: translateY(-50%) translateX(0);
|
|
4658
4704
|
}
|
|
4705
|
+
|
|
4706
|
+
@keyframes badge-enter {
|
|
4707
|
+
from {
|
|
4708
|
+
opacity: 0;
|
|
4709
|
+
transform: scale(0);
|
|
4710
|
+
}
|
|
4711
|
+
to {
|
|
4712
|
+
opacity: 1;
|
|
4713
|
+
transform: scale(1);
|
|
4714
|
+
}
|
|
4715
|
+
}
|
package/out/renderer/index.html
CHANGED
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
6
6
|
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline'; img-src 'self' data:; connect-src 'self'; font-src 'self' data:;" />
|
|
7
7
|
<title>Vessel</title>
|
|
8
|
-
<script type="module" crossorigin src="./assets/index-
|
|
9
|
-
<link rel="stylesheet" crossorigin href="./assets/index-
|
|
8
|
+
<script type="module" crossorigin src="./assets/index-DVD9XuhC.js"></script>
|
|
9
|
+
<link rel="stylesheet" crossorigin href="./assets/index-eS3ccAls.css">
|
|
10
10
|
</head>
|
|
11
11
|
<body>
|
|
12
12
|
<div id="root"></div>
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quanta-intellect/vessel-browser",
|
|
3
3
|
"mcpName": "io.github.unmodeled-tyler/vessel-browser",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.30",
|
|
5
5
|
"description": "AI-native web browser for Linux — persistent browser runtime for autonomous agents with human supervision",
|
|
6
6
|
"main": "./out/main/index.js",
|
|
7
7
|
"bin": {
|
|
@@ -24,6 +24,7 @@
|
|
|
24
24
|
"typecheck": "tsc --noEmit",
|
|
25
25
|
"prepublishOnly": "npm run build",
|
|
26
26
|
"test:navigation-regression": "env -u ELECTRON_RUN_AS_NODE ELECTRON_DISABLE_SANDBOX=1 electron --no-sandbox --disable-setuid-sandbox scripts/run-navigation-regression.mjs",
|
|
27
|
+
"test:mcp-proxy": "node scripts/test-mcp-stdio-proxy.mjs",
|
|
27
28
|
"smoke:test": "node scripts/smoke-test.mjs",
|
|
28
29
|
"test:coverage": "c8 --reporter=text --reporter=html tsx --test tests/*.test.ts"
|
|
29
30
|
},
|