@validation-os/dashboard 0.15.6 → 0.16.0
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/index.d.ts +9 -1
- package/dist/index.js +290 -189
- package/dist/index.js.map +1 -1
- package/dist/styles.css +46 -0
- package/package.json +2 -2
package/dist/styles.css
CHANGED
|
@@ -3387,3 +3387,49 @@ button.vos-verdict-title {
|
|
|
3387
3387
|
|
|
3388
3388
|
/* Topbar: hide the backend + agent indicators (clean header) */
|
|
3389
3389
|
.vos-backend, .vos-hint:has(.vos-live-dot) { display: none !important; }
|
|
3390
|
+
|
|
3391
|
+
/* ── DEV-5890: Question Type + stage threshold tags ────────────────────── */
|
|
3392
|
+
.vos-pipe-tag {
|
|
3393
|
+
font-size: 9px;
|
|
3394
|
+
padding: 1px 5px;
|
|
3395
|
+
border: 1px solid var(--vos-border);
|
|
3396
|
+
border-radius: 4px;
|
|
3397
|
+
color: var(--vos-muted);
|
|
3398
|
+
white-space: nowrap;
|
|
3399
|
+
}
|
|
3400
|
+
.vos-pipe-tag-qt { border-color: var(--vos-accent); color: var(--vos-accent); }
|
|
3401
|
+
.vos-pipe-tag-stage { border-color: var(--vos-border); }
|
|
3402
|
+
.vos-pipe-tag-thresh { font-weight: 600; }
|
|
3403
|
+
.vos-pipe-tag-cleared { color: var(--vos-good); border-color: var(--vos-good); }
|
|
3404
|
+
.vos-pipe-tag-needs { color: var(--vos-warn); border-color: var(--vos-warn); }
|
|
3405
|
+
.vos-detail-tag-qt { border-color: var(--vos-accent); color: var(--vos-accent); }
|
|
3406
|
+
|
|
3407
|
+
/* Stage-keyed Risk threshold indicator (assumption detail) */
|
|
3408
|
+
.vos-threshold-indicator { padding: 10px 14px; }
|
|
3409
|
+
.vos-threshold-label { font-size: 9px; color: var(--vos-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; }
|
|
3410
|
+
.vos-threshold-row { display: flex; gap: 12px; align-items: center; font-size: 12px; }
|
|
3411
|
+
.vos-threshold-bar { color: var(--vos-muted); }
|
|
3412
|
+
.vos-threshold-status { font-weight: 600; }
|
|
3413
|
+
.vos-threshold-cleared { color: var(--vos-good); }
|
|
3414
|
+
.vos-threshold-needs { color: var(--vos-warn); }
|
|
3415
|
+
.vos-threshold-hint { font-size: 11px; color: var(--vos-muted); margin-top: 4px; }
|
|
3416
|
+
|
|
3417
|
+
/* Probative vs flagged-as-non-evidence grouping (assumption detail evidence list) */
|
|
3418
|
+
.vos-evidence-group { margin-top: 8px; }
|
|
3419
|
+
.vos-evidence-group-label {
|
|
3420
|
+
font-size: 9px;
|
|
3421
|
+
color: var(--vos-muted);
|
|
3422
|
+
text-transform: uppercase;
|
|
3423
|
+
letter-spacing: 0.06em;
|
|
3424
|
+
margin-bottom: 6px;
|
|
3425
|
+
}
|
|
3426
|
+
.vos-evidence-group-flagged .vos-evidence-group-label { color: var(--vos-warn); }
|
|
3427
|
+
.vos-evidence-row-flagged { opacity: 0.65; border-left-style: dashed; }
|
|
3428
|
+
.vos-evidence-flag {
|
|
3429
|
+
font-size: 9px;
|
|
3430
|
+
padding: 1px 5px;
|
|
3431
|
+
border-radius: 4px;
|
|
3432
|
+
background: var(--vos-warn-bg, rgba(234, 179, 8, 0.12));
|
|
3433
|
+
color: var(--vos-warn, #b45309);
|
|
3434
|
+
white-space: nowrap;
|
|
3435
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@validation-os/dashboard",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.16.0",
|
|
4
4
|
"description": "React dashboard components + hooks for validation-os, consuming the DataProvider seam.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"access": "public"
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@validation-os/core": "0.
|
|
25
|
+
"@validation-os/core": "0.16.0"
|
|
26
26
|
},
|
|
27
27
|
"peerDependencies": {
|
|
28
28
|
"react": ">=18",
|