@quanta-intellect/vessel-browser 0.1.25 → 0.1.26
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 +6 -17
- package/out/main/index.js +210 -101
- package/out/preload/index.js +2 -0
- package/out/renderer/assets/{index-BynCvURs.css → index-DP2yMHwF.css} +67 -0
- package/out/renderer/assets/{index-32axMD1q.js → index-v71lXiVB.js} +656 -458
- package/out/renderer/index.html +2 -2
- package/package.json +1 -1
package/out/preload/index.js
CHANGED
|
@@ -86,6 +86,7 @@ const Channels = {
|
|
|
86
86
|
PREMIUM_CHECKOUT: "premium:checkout",
|
|
87
87
|
PREMIUM_PORTAL: "premium:portal",
|
|
88
88
|
PREMIUM_RESET: "premium:reset",
|
|
89
|
+
PREMIUM_TRACK_CONTEXT: "premium:track-context",
|
|
89
90
|
PREMIUM_UPDATE: "premium:update",
|
|
90
91
|
// Agent Credential Vault
|
|
91
92
|
VAULT_LIST: "vault:list",
|
|
@@ -288,6 +289,7 @@ const api = {
|
|
|
288
289
|
checkout: (email) => electron.ipcRenderer.invoke(Channels.PREMIUM_CHECKOUT, email),
|
|
289
290
|
portal: () => electron.ipcRenderer.invoke(Channels.PREMIUM_PORTAL),
|
|
290
291
|
reset: () => electron.ipcRenderer.invoke(Channels.PREMIUM_RESET),
|
|
292
|
+
trackContext: (step) => electron.ipcRenderer.invoke(Channels.PREMIUM_TRACK_CONTEXT, step),
|
|
291
293
|
onUpdate: (cb) => {
|
|
292
294
|
const handler = (_, state) => cb(state);
|
|
293
295
|
electron.ipcRenderer.on(Channels.PREMIUM_UPDATE, handler);
|
|
@@ -3402,6 +3402,73 @@
|
|
|
3402
3402
|
margin-top: 4px;
|
|
3403
3403
|
}
|
|
3404
3404
|
|
|
3405
|
+
.premium-chat-banner {
|
|
3406
|
+
align-items: stretch;
|
|
3407
|
+
text-align: left;
|
|
3408
|
+
margin-bottom: 8px;
|
|
3409
|
+
padding: 16px 14px;
|
|
3410
|
+
border-radius: var(--radius-lg);
|
|
3411
|
+
background:
|
|
3412
|
+
radial-gradient(circle at top right, rgba(196, 160, 90, 0.12), transparent 44%),
|
|
3413
|
+
linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
|
|
3414
|
+
border: 1px solid rgba(196, 160, 90, 0.18);
|
|
3415
|
+
}
|
|
3416
|
+
|
|
3417
|
+
.premium-chat-banner-body {
|
|
3418
|
+
max-width: none;
|
|
3419
|
+
}
|
|
3420
|
+
|
|
3421
|
+
.premium-chat-banner-actions {
|
|
3422
|
+
margin-top: 2px;
|
|
3423
|
+
}
|
|
3424
|
+
|
|
3425
|
+
.premium-inline-offer {
|
|
3426
|
+
margin: 10px 14px 2px;
|
|
3427
|
+
padding: 12px 12px 11px;
|
|
3428
|
+
border-radius: var(--radius-md);
|
|
3429
|
+
background:
|
|
3430
|
+
linear-gradient(180deg, rgba(196, 160, 90, 0.08), rgba(196, 160, 90, 0.03));
|
|
3431
|
+
border: 1px solid rgba(196, 160, 90, 0.18);
|
|
3432
|
+
}
|
|
3433
|
+
|
|
3434
|
+
.premium-inline-offer.compact {
|
|
3435
|
+
margin: 10px 0 2px;
|
|
3436
|
+
}
|
|
3437
|
+
|
|
3438
|
+
.premium-inline-kicker {
|
|
3439
|
+
font-size: 10px;
|
|
3440
|
+
font-weight: 700;
|
|
3441
|
+
letter-spacing: 0.08em;
|
|
3442
|
+
text-transform: uppercase;
|
|
3443
|
+
color: var(--accent-primary);
|
|
3444
|
+
}
|
|
3445
|
+
|
|
3446
|
+
.premium-inline-title {
|
|
3447
|
+
margin-top: 5px;
|
|
3448
|
+
font-size: 13px;
|
|
3449
|
+
font-weight: 600;
|
|
3450
|
+
color: var(--text-primary);
|
|
3451
|
+
}
|
|
3452
|
+
|
|
3453
|
+
.premium-inline-copy {
|
|
3454
|
+
margin: 6px 0 0;
|
|
3455
|
+
font-size: 11.5px;
|
|
3456
|
+
line-height: 1.55;
|
|
3457
|
+
color: var(--text-secondary);
|
|
3458
|
+
}
|
|
3459
|
+
|
|
3460
|
+
.premium-inline-actions {
|
|
3461
|
+
display: flex;
|
|
3462
|
+
flex-wrap: wrap;
|
|
3463
|
+
gap: 8px;
|
|
3464
|
+
margin-top: 10px;
|
|
3465
|
+
}
|
|
3466
|
+
|
|
3467
|
+
.premium-inline-primary,
|
|
3468
|
+
.premium-inline-secondary {
|
|
3469
|
+
min-height: 32px;
|
|
3470
|
+
}
|
|
3471
|
+
|
|
3405
3472
|
/* ── Scheduled jobs list ── */
|
|
3406
3473
|
|
|
3407
3474
|
.kit-sched-section {
|