@quanta-intellect/vessel-browser 0.1.69 → 0.1.73
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 +14 -2
- package/out/main/index.js +2192 -416
- package/out/preload/index.js +52 -0
- package/out/renderer/assets/{index-BYk0kH1i.js → index-C2iAShPa.js} +1518 -879
- package/out/renderer/assets/{index-B_C8ayic.css → index-MB-_tN9U.css} +266 -7
- package/out/renderer/index.html +2 -2
- package/package.json +1 -1
|
@@ -195,6 +195,19 @@
|
|
|
195
195
|
}
|
|
196
196
|
}
|
|
197
197
|
|
|
198
|
+
.tab-item.pinned {
|
|
199
|
+
max-width: 40px;
|
|
200
|
+
min-width: 36px;
|
|
201
|
+
padding: 0 10px;
|
|
202
|
+
justify-content: center;
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
.tab-item.pinned .tab-favicon,
|
|
206
|
+
.tab-item.pinned .tab-favicon-fallback {
|
|
207
|
+
width: 14px;
|
|
208
|
+
height: 14px;
|
|
209
|
+
}
|
|
210
|
+
|
|
198
211
|
.tab-item:hover {
|
|
199
212
|
background: var(--surface-hover);
|
|
200
213
|
color: var(--text-secondary);
|
|
@@ -206,6 +219,85 @@
|
|
|
206
219
|
font-weight: 500;
|
|
207
220
|
}
|
|
208
221
|
|
|
222
|
+
.tab-item.group-blue,
|
|
223
|
+
.tab-group-chip.group-blue { --tab-group-color: #4b8dff; }
|
|
224
|
+
.tab-item.group-green,
|
|
225
|
+
.tab-group-chip.group-green { --tab-group-color: #45b36b; }
|
|
226
|
+
.tab-item.group-yellow,
|
|
227
|
+
.tab-group-chip.group-yellow { --tab-group-color: #d9b441; }
|
|
228
|
+
.tab-item.group-orange,
|
|
229
|
+
.tab-group-chip.group-orange { --tab-group-color: #df8742; }
|
|
230
|
+
.tab-item.group-red,
|
|
231
|
+
.tab-group-chip.group-red { --tab-group-color: #e35d6a; }
|
|
232
|
+
.tab-item.group-purple,
|
|
233
|
+
.tab-group-chip.group-purple { --tab-group-color: #9b73f0; }
|
|
234
|
+
.tab-item.group-gray,
|
|
235
|
+
.tab-group-chip.group-gray { --tab-group-color: #8b95a1; }
|
|
236
|
+
|
|
237
|
+
.tab-item[class*="group-"] {
|
|
238
|
+
box-shadow: inset 0 2px 0 color-mix(in srgb, var(--tab-group-color) 78%, transparent);
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
.tab-group-chip {
|
|
242
|
+
display: inline-flex;
|
|
243
|
+
align-items: center;
|
|
244
|
+
gap: 6px;
|
|
245
|
+
height: 24px;
|
|
246
|
+
max-width: 150px;
|
|
247
|
+
margin-bottom: 3px;
|
|
248
|
+
padding: 0 8px;
|
|
249
|
+
border-radius: 6px;
|
|
250
|
+
color: var(--text-secondary);
|
|
251
|
+
background: color-mix(in srgb, var(--tab-group-color) 18%, var(--bg-secondary));
|
|
252
|
+
border: 1px solid color-mix(in srgb, var(--tab-group-color) 48%, transparent);
|
|
253
|
+
flex-shrink: 0;
|
|
254
|
+
transition:
|
|
255
|
+
background var(--duration-fast) var(--ease-in-out),
|
|
256
|
+
color var(--duration-fast) var(--ease-in-out),
|
|
257
|
+
transform var(--duration-fast) var(--ease-out-expo);
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
.tab-group-chip:hover {
|
|
261
|
+
color: var(--text-primary);
|
|
262
|
+
background: color-mix(in srgb, var(--tab-group-color) 26%, var(--bg-secondary));
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
.tab-group-chip:active {
|
|
266
|
+
transform: scale(0.96);
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
.tab-group-chip.collapsed {
|
|
270
|
+
background: color-mix(in srgb, var(--tab-group-color) 12%, var(--bg-secondary));
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
.tab-group-dot {
|
|
274
|
+
width: 7px;
|
|
275
|
+
height: 7px;
|
|
276
|
+
border-radius: 999px;
|
|
277
|
+
background: var(--tab-group-color);
|
|
278
|
+
flex-shrink: 0;
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
.tab-group-name {
|
|
282
|
+
min-width: 0;
|
|
283
|
+
overflow: hidden;
|
|
284
|
+
text-overflow: ellipsis;
|
|
285
|
+
font-size: 10.5px;
|
|
286
|
+
font-weight: 600;
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
.tab-group-count {
|
|
290
|
+
min-width: 14px;
|
|
291
|
+
height: 14px;
|
|
292
|
+
padding: 0 4px;
|
|
293
|
+
border-radius: 999px;
|
|
294
|
+
background: color-mix(in srgb, var(--tab-group-color) 28%, transparent);
|
|
295
|
+
color: var(--text-muted);
|
|
296
|
+
font-size: 9px;
|
|
297
|
+
font-weight: 700;
|
|
298
|
+
line-height: 14px;
|
|
299
|
+
}
|
|
300
|
+
|
|
209
301
|
/* Subtle top accent line on active tab */
|
|
210
302
|
.tab-item.active::before {
|
|
211
303
|
content: '';
|
|
@@ -302,6 +394,42 @@
|
|
|
302
394
|
color: var(--text-primary);
|
|
303
395
|
}
|
|
304
396
|
|
|
397
|
+
.tab-audio {
|
|
398
|
+
width: 18px;
|
|
399
|
+
height: 18px;
|
|
400
|
+
display: inline-flex;
|
|
401
|
+
align-items: center;
|
|
402
|
+
justify-content: center;
|
|
403
|
+
border-radius: var(--radius-sm);
|
|
404
|
+
color: var(--accent-primary);
|
|
405
|
+
flex-shrink: 0;
|
|
406
|
+
margin-right: -2px;
|
|
407
|
+
transition:
|
|
408
|
+
background var(--duration-fast) var(--ease-in-out),
|
|
409
|
+
color var(--duration-fast) var(--ease-in-out),
|
|
410
|
+
transform var(--duration-fast) var(--ease-out-expo);
|
|
411
|
+
}
|
|
412
|
+
|
|
413
|
+
.tab-audio:hover {
|
|
414
|
+
background: var(--surface-active);
|
|
415
|
+
color: var(--text-primary);
|
|
416
|
+
}
|
|
417
|
+
|
|
418
|
+
.tab-audio:active {
|
|
419
|
+
transform: scale(0.9);
|
|
420
|
+
}
|
|
421
|
+
|
|
422
|
+
.tab-audio-pinned {
|
|
423
|
+
position: absolute;
|
|
424
|
+
right: 0;
|
|
425
|
+
bottom: 1px;
|
|
426
|
+
width: 14px;
|
|
427
|
+
height: 14px;
|
|
428
|
+
margin: 0;
|
|
429
|
+
background: var(--bg-primary);
|
|
430
|
+
box-shadow: 0 0 0 1px var(--border-subtle);
|
|
431
|
+
}
|
|
432
|
+
|
|
305
433
|
.tab-loading {
|
|
306
434
|
width: 8px;
|
|
307
435
|
height: 8px;
|
|
@@ -359,6 +487,25 @@
|
|
|
359
487
|
transform: scale(0.95);
|
|
360
488
|
}
|
|
361
489
|
|
|
490
|
+
.tab-new-private {
|
|
491
|
+
color: var(--text-muted);
|
|
492
|
+
opacity: 0.6;
|
|
493
|
+
font-size: 11px;
|
|
494
|
+
}
|
|
495
|
+
|
|
496
|
+
.tab-new-private:hover {
|
|
497
|
+
color: var(--accent-primary);
|
|
498
|
+
opacity: 1;
|
|
499
|
+
}
|
|
500
|
+
|
|
501
|
+
.tab-actions {
|
|
502
|
+
display: flex;
|
|
503
|
+
align-items: end;
|
|
504
|
+
gap: 1px;
|
|
505
|
+
flex-shrink: 0;
|
|
506
|
+
padding-bottom: 1px;
|
|
507
|
+
}
|
|
508
|
+
|
|
362
509
|
|
|
363
510
|
/* ═══════════════════════════════════════
|
|
364
511
|
Address bar — refined URL shell
|
|
@@ -435,7 +582,8 @@
|
|
|
435
582
|
background: var(--bg-secondary);
|
|
436
583
|
border: 1px solid var(--border-subtle);
|
|
437
584
|
border-radius: var(--radius-md);
|
|
438
|
-
overflow:
|
|
585
|
+
overflow: visible;
|
|
586
|
+
position: relative;
|
|
439
587
|
transition:
|
|
440
588
|
border-color var(--duration-normal) var(--ease-in-out),
|
|
441
589
|
box-shadow var(--duration-normal) var(--ease-in-out),
|
|
@@ -477,6 +625,94 @@
|
|
|
477
625
|
color: var(--text-muted);
|
|
478
626
|
}
|
|
479
627
|
|
|
628
|
+
/* Autocomplete dropdown */
|
|
629
|
+
|
|
630
|
+
.autocomplete-dropdown {
|
|
631
|
+
position: absolute;
|
|
632
|
+
top: 100%;
|
|
633
|
+
left: 0;
|
|
634
|
+
right: 0;
|
|
635
|
+
z-index: 100;
|
|
636
|
+
background: var(--bg-secondary);
|
|
637
|
+
border: 1px solid var(--border-subtle);
|
|
638
|
+
border-top: none;
|
|
639
|
+
border-radius: 0 0 var(--radius-md) var(--radius-md);
|
|
640
|
+
max-height: 280px;
|
|
641
|
+
overflow-y: auto;
|
|
642
|
+
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
|
|
643
|
+
}
|
|
644
|
+
|
|
645
|
+
.autocomplete-item {
|
|
646
|
+
display: flex;
|
|
647
|
+
align-items: center;
|
|
648
|
+
gap: 8px;
|
|
649
|
+
padding: 6px 12px;
|
|
650
|
+
cursor: pointer;
|
|
651
|
+
transition: background var(--duration-fast) var(--ease-in-out);
|
|
652
|
+
}
|
|
653
|
+
|
|
654
|
+
.autocomplete-item:hover,
|
|
655
|
+
.autocomplete-item.selected {
|
|
656
|
+
background: var(--surface-hover);
|
|
657
|
+
}
|
|
658
|
+
|
|
659
|
+
.autocomplete-item.selected {
|
|
660
|
+
background: color-mix(in srgb, var(--accent-primary) 12%, transparent);
|
|
661
|
+
}
|
|
662
|
+
|
|
663
|
+
.autocomplete-icon {
|
|
664
|
+
flex-shrink: 0;
|
|
665
|
+
width: 16px;
|
|
666
|
+
text-align: center;
|
|
667
|
+
color: var(--text-muted);
|
|
668
|
+
font-size: 11px;
|
|
669
|
+
}
|
|
670
|
+
|
|
671
|
+
.autocomplete-text {
|
|
672
|
+
display: flex;
|
|
673
|
+
flex-direction: column;
|
|
674
|
+
min-width: 0;
|
|
675
|
+
gap: 1px;
|
|
676
|
+
}
|
|
677
|
+
|
|
678
|
+
.autocomplete-title {
|
|
679
|
+
font-size: 12px;
|
|
680
|
+
color: var(--text-primary);
|
|
681
|
+
white-space: nowrap;
|
|
682
|
+
overflow: hidden;
|
|
683
|
+
text-overflow: ellipsis;
|
|
684
|
+
}
|
|
685
|
+
|
|
686
|
+
.autocomplete-url {
|
|
687
|
+
font-size: 10.5px;
|
|
688
|
+
color: var(--text-muted);
|
|
689
|
+
white-space: nowrap;
|
|
690
|
+
overflow: hidden;
|
|
691
|
+
text-overflow: ellipsis;
|
|
692
|
+
}
|
|
693
|
+
|
|
694
|
+
.private-badge {
|
|
695
|
+
display: flex;
|
|
696
|
+
align-items: center;
|
|
697
|
+
gap: 4px;
|
|
698
|
+
padding: 2px 8px;
|
|
699
|
+
margin: 0 4px;
|
|
700
|
+
background: color-mix(in srgb, var(--accent-primary) 15%, transparent);
|
|
701
|
+
border: 1px solid color-mix(in srgb, var(--accent-primary) 30%, transparent);
|
|
702
|
+
border-radius: var(--radius-sm);
|
|
703
|
+
color: var(--accent-primary);
|
|
704
|
+
font-size: 10.5px;
|
|
705
|
+
font-weight: 600;
|
|
706
|
+
letter-spacing: 0.03em;
|
|
707
|
+
white-space: nowrap;
|
|
708
|
+
flex-shrink: 0;
|
|
709
|
+
user-select: none;
|
|
710
|
+
}
|
|
711
|
+
|
|
712
|
+
.private-badge svg {
|
|
713
|
+
opacity: 0.8;
|
|
714
|
+
}
|
|
715
|
+
|
|
480
716
|
.agent-status-badge {
|
|
481
717
|
display: flex;
|
|
482
718
|
align-items: center;
|
|
@@ -1947,6 +2183,7 @@
|
|
|
1947
2183
|
}
|
|
1948
2184
|
|
|
1949
2185
|
.bookmark-save-card,
|
|
2186
|
+
.bookmark-export-card,
|
|
1950
2187
|
.bookmark-folder-section {
|
|
1951
2188
|
display: flex;
|
|
1952
2189
|
flex-direction: column;
|
|
@@ -1957,6 +2194,19 @@
|
|
|
1957
2194
|
border: 1px solid var(--border-glass);
|
|
1958
2195
|
}
|
|
1959
2196
|
|
|
2197
|
+
.bookmark-export-actions {
|
|
2198
|
+
display: flex;
|
|
2199
|
+
gap: 6px;
|
|
2200
|
+
flex-wrap: wrap;
|
|
2201
|
+
}
|
|
2202
|
+
|
|
2203
|
+
.bookmark-export-message {
|
|
2204
|
+
font-size: 11px;
|
|
2205
|
+
color: var(--text-secondary);
|
|
2206
|
+
line-height: 1.4;
|
|
2207
|
+
overflow-wrap: anywhere;
|
|
2208
|
+
}
|
|
2209
|
+
|
|
1960
2210
|
.bookmark-save-shell {
|
|
1961
2211
|
display: flex;
|
|
1962
2212
|
flex-direction: column;
|
|
@@ -5464,19 +5714,28 @@ button:active:not(:disabled) {
|
|
|
5464
5714
|
bottom: calc(100% + 6px);
|
|
5465
5715
|
left: 50%;
|
|
5466
5716
|
transform: translateX(-50%) translateY(4px);
|
|
5467
|
-
|
|
5717
|
+
min-height: 24px;
|
|
5718
|
+
width: max-content;
|
|
5719
|
+
max-width: min(240px, calc(100vw - 24px));
|
|
5720
|
+
padding: 6px 10px;
|
|
5468
5721
|
border-radius: var(--radius-md);
|
|
5469
5722
|
background: var(--bg-elevated);
|
|
5723
|
+
background-clip: padding-box;
|
|
5470
5724
|
border: 1px solid var(--border-visible);
|
|
5471
5725
|
color: var(--text-primary);
|
|
5472
5726
|
font-size: 11px;
|
|
5473
|
-
font-weight:
|
|
5474
|
-
line-height: 1.
|
|
5475
|
-
|
|
5727
|
+
font-weight: 600;
|
|
5728
|
+
line-height: 1.45;
|
|
5729
|
+
letter-spacing: 0;
|
|
5730
|
+
text-align: center;
|
|
5731
|
+
white-space: normal;
|
|
5732
|
+
overflow-wrap: break-word;
|
|
5476
5733
|
pointer-events: none;
|
|
5477
5734
|
opacity: 0;
|
|
5478
|
-
z-index:
|
|
5479
|
-
box-shadow:
|
|
5735
|
+
z-index: 2147483647;
|
|
5736
|
+
box-shadow:
|
|
5737
|
+
0 8px 24px var(--shadow-color-strong),
|
|
5738
|
+
0 0 0 1px color-mix(in srgb, var(--bg-primary) 70%, transparent);
|
|
5480
5739
|
transition:
|
|
5481
5740
|
opacity var(--duration-normal) var(--ease-in-out),
|
|
5482
5741
|
transform var(--duration-normal) var(--ease-out-expo);
|
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-C2iAShPa.js"></script>
|
|
9
|
+
<link rel="stylesheet" crossorigin href="./assets/index-MB-_tN9U.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.73",
|
|
5
5
|
"description": "AI-native web browser runtime for autonomous agents with human supervision",
|
|
6
6
|
"main": "./out/main/index.js",
|
|
7
7
|
"bin": {
|