instar 1.3.804 → 1.3.805
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/dashboard/index.html +19 -1
- package/dashboard/subscriptions.js +513 -67
- package/dist/commands/server.d.ts.map +1 -1
- package/dist/commands/server.js +36 -0
- package/dist/commands/server.js.map +1 -1
- package/dist/core/EnrollmentWizard.d.ts +23 -0
- package/dist/core/EnrollmentWizard.d.ts.map +1 -1
- package/dist/core/EnrollmentWizard.js +42 -1
- package/dist/core/EnrollmentWizard.js.map +1 -1
- package/dist/server/routes.d.ts.map +1 -1
- package/dist/server/routes.js +128 -30
- package/dist/server/routes.js.map +1 -1
- package/package.json +1 -1
- package/src/data/builtin-manifest.json +46 -46
- package/upgrades/1.3.805.md +41 -0
- package/upgrades/side-effects/subs-setup-flow-ux.md +79 -0
- package/upgrades/subs-setup-flow-ux.eli16.md +31 -0
package/dashboard/index.html
CHANGED
|
@@ -3641,6 +3641,24 @@
|
|
|
3641
3641
|
.sub-matrix-status { font-size:11px; opacity:.8; margin-top:4px; }
|
|
3642
3642
|
.sub-matrix-signin { display:inline-block; margin-top:4px; }
|
|
3643
3643
|
.sub-matrix-url { font-size:11px; opacity:.7; word-break:break-all; margin-top:4px; }
|
|
3644
|
+
/* subs-setup-flow UX (topic 29836 D1–D5): in-cell flow, explicit terminal states */
|
|
3645
|
+
.sub-matrix-flow-step { font-size:11px; opacity:.85; margin-top:4px; }
|
|
3646
|
+
.sub-matrix-expected, .sub-pending-expected { font-size:12px; font-weight:600; color:#eab308; margin:6px 0 4px; }
|
|
3647
|
+
.sub-matrix-notice { font-size:11px; opacity:.75; margin-top:4px; }
|
|
3648
|
+
.sub-matrix-ttl { font-size:11px; opacity:.7; margin-top:4px; }
|
|
3649
|
+
.sub-matrix-cancel, .sub-matrix-collapse { margin-top:4px; margin-left:4px; padding:2px 8px; cursor:pointer; font-size:11px; opacity:.85; }
|
|
3650
|
+
.sub-matrix-held-detail { font-size:11px; color:#f87171; margin-top:4px; }
|
|
3651
|
+
.sub-matrix-done-detail { font-size:11px; margin-top:4px; }
|
|
3652
|
+
.sub-matrix-cell.sub-matrix-held .sub-matrix-glyph, .sub-matrix-cell.sub-matrix-expired .sub-matrix-glyph, .sub-matrix-cell.sub-matrix-broken .sub-matrix-glyph { color:#f87171; }
|
|
3653
|
+
.sub-matrix-cell.sub-matrix-done .sub-matrix-glyph { color:#22c55e; font-weight:600; }
|
|
3654
|
+
.sub-matrix-cell.sub-matrix-just-verified { background:rgba(22,163,74,.14); outline:2px solid #16a34a; animation:subVerifiedPulse 1.2s ease-in-out 3; }
|
|
3655
|
+
@keyframes subVerifiedPulse { 0%,100% { box-shadow:none; } 50% { box-shadow:0 0 0 4px rgba(22,163,74,.28); } }
|
|
3656
|
+
.sub-pending.sub-pending-done { border-color:#16a34a; background:rgba(22,163,74,.08); }
|
|
3657
|
+
.sub-pending-done-head { color:#22c55e; font-weight:600; }
|
|
3658
|
+
.sub-pending.sub-pending-failed { border-color:#f87171; background:rgba(248,113,113,.06); }
|
|
3659
|
+
.sub-pending-failed-head { color:#f87171; font-weight:600; }
|
|
3660
|
+
.sub-pending-outcome-body { font-size:12px; opacity:.85; margin-top:4px; }
|
|
3661
|
+
.sub-pending-status { font-size:12px; opacity:.85; margin-top:6px; }
|
|
3644
3662
|
</style>
|
|
3645
3663
|
<div id="subscriptionsPanel" class="ph-root" style="display:none;flex-direction:column;padding:28px;gap:24px;overflow-y:auto">
|
|
3646
3664
|
<h2 class="ph-title">Subscriptions</h2>
|
|
@@ -3664,7 +3682,7 @@
|
|
|
3664
3682
|
</section>
|
|
3665
3683
|
<section class="ph-section">
|
|
3666
3684
|
<h3 class="ph-h">Pending logins</h3>
|
|
3667
|
-
<p class="ph-h-sub">
|
|
3685
|
+
<p class="ph-h-sub">A mirror of every sign-in still in flight (each grid cell above carries its own complete flow) — plus explicit “done” and “didn’t finish” cards. An expired code is re-issued automatically.</p>
|
|
3668
3686
|
<div id="subPending"></div>
|
|
3669
3687
|
</section>
|
|
3670
3688
|
</div>
|