@validation-os/dashboard 0.15.3 → 0.15.5

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/styles.css CHANGED
@@ -433,7 +433,6 @@
433
433
  border: 1px solid var(--vos-border);
434
434
  border-radius: var(--vos-radius);
435
435
  box-shadow: var(--vos-shadow);
436
- overflow: hidden;
437
436
  }
438
437
  .vos-table-scroll {
439
438
  overflow-x: auto;
@@ -2743,27 +2742,28 @@ button.vos-verdict-title {
2743
2742
  align-self: center;
2744
2743
  }
2745
2744
  .vos-stage-grid-card {
2746
- padding: 16px 18px;
2745
+ padding: 22px 24px;
2747
2746
  }
2748
2747
  .vos-stage-grid-scroll {
2749
2748
  overflow-x: auto;
2749
+ padding: 4px;
2750
+ margin: -4px;
2750
2751
  }
2751
2752
  .vos-stage-grid {
2752
2753
  width: 100%;
2753
2754
  border-collapse: separate;
2754
- border-spacing: 0;
2755
+ border-spacing: 6px;
2755
2756
  font-size: 13px;
2756
2757
  }
2757
2758
  .vos-stage-grid th,
2758
2759
  .vos-stage-grid td {
2759
- border-bottom: 1px solid var(--vos-border);
2760
- border-right: 1px solid var(--vos-border);
2760
+ border: none;
2761
2761
  padding: 0;
2762
2762
  vertical-align: middle;
2763
2763
  }
2764
2764
  .vos-stage-grid th:last-child,
2765
2765
  .vos-stage-grid td:last-child {
2766
- border-right: none;
2766
+ border: none;
2767
2767
  }
2768
2768
  .vos-stage-grid-corner {
2769
2769
  text-align: left;
@@ -2809,31 +2809,28 @@ button.vos-verdict-title {
2809
2809
  }
2810
2810
  .vos-stage-grid-cell {
2811
2811
  text-align: center;
2812
- background: var(--vos-surface);
2813
- /* The heatmap fill — opacity set per-cell via --vos-cell-alpha. */
2814
- background: color-mix(
2815
- in srgb,
2816
- var(--vos-accent) calc(var(--vos-cell-alpha, 0) * 100%),
2817
- var(--vos-surface)
2818
- );
2812
+ background: transparent;
2819
2813
  }
2820
- .vos-stage-grid-cell-empty {
2814
+ .vos-stage-grid-cell-empty .vos-stage-grid-btn {
2821
2815
  background: var(--vos-surface-2);
2816
+ border-style: dashed;
2817
+ border-color: var(--vos-border);
2822
2818
  }
2823
2819
  .vos-stage-grid-btn {
2824
2820
  width: 100%;
2825
2821
  height: 100%;
2826
2822
  min-height: 56px;
2827
2823
  background: transparent;
2828
- border: none;
2824
+ border: 1px solid var(--vos-border);
2829
2825
  padding: 10px 12px;
2830
2826
  cursor: pointer;
2831
2827
  font: inherit;
2832
2828
  color: var(--vos-text);
2833
- border-radius: 0;
2829
+ border-radius: 8px;
2834
2830
  }
2835
2831
  .vos-stage-grid-btn:hover {
2836
2832
  background: color-mix(in srgb, var(--vos-accent) 14%, transparent);
2833
+ border-color: var(--vos-accent);
2837
2834
  }
2838
2835
  .vos-stage-grid-btn:focus-visible {
2839
2836
  outline: 2px solid var(--vos-accent);
@@ -2871,16 +2868,16 @@ button.vos-verdict-title {
2871
2868
  /* ── DEV-5879 redesign: unified nav, pipeline board, evidence-first details ── */
2872
2869
 
2873
2870
  /* Segmented toggle (Grid / View all) */
2874
- .vos-seg { display: inline-flex; gap: 0; border: 1px solid var(--vos-border); border-radius: var(--vos-radius); overflow: hidden; }
2871
+ .vos-seg { display: inline-flex; gap: 0; border: 1px solid var(--vos-border); border-radius: var(--vos-radius); overflow: hidden; align-self: center; }
2875
2872
  .vos-seg-btn { padding: 6px 14px; background: transparent; border: none; color: var(--vos-muted); font: inherit; cursor: pointer; border-right: 1px solid var(--vos-border); transition: background 0.15s, color 0.15s; }
2876
2873
  .vos-seg-btn:last-child { border-right: none; }
2877
2874
  .vos-seg-btn:hover { background: var(--vos-surface-2); }
2878
2875
  .vos-seg-btn.is-active { background: var(--vos-accent-weak); color: var(--vos-accent-text); }
2879
2876
 
2880
2877
  /* Stage grid cell button (clean count, 1 for single) */
2881
- .vos-stage-grid-cell { padding: 2px; }
2882
- .vos-stage-grid-btn { width: 100%; min-height: 56px; border: none; border-radius: 6px; cursor: pointer; font-size: 16px; font-weight: 600; color: var(--vos-text); transition: filter 0.15s; }
2883
- .vos-stage-grid-btn:hover:not(:disabled) { filter: brightness(1.1); }
2878
+ .vos-stage-grid-cell { padding: 0; }
2879
+ .vos-stage-grid-btn { width: 100%; min-height: 56px; border: 1px solid var(--vos-border); border-radius: 8px; cursor: pointer; font-size: 16px; font-weight: 600; color: var(--vos-text); transition: filter 0.15s, border-color 0.15s; }
2880
+ .vos-stage-grid-btn:hover:not(:disabled) { filter: brightness(1.05); border-color: var(--vos-accent); }
2884
2881
  .vos-stage-grid-btn:disabled { cursor: default; }
2885
2882
  .vos-heat-0 { background: var(--vos-surface); opacity: 0.4; color: var(--vos-muted); }
2886
2883
  .vos-heat-1 { background: color-mix(in srgb, var(--vos-accent) 18%, var(--vos-surface)); }
@@ -2965,7 +2962,7 @@ button.vos-verdict-title {
2965
2962
  .vos-score-label { font-size: 10px; color: var(--vos-muted); }
2966
2963
 
2967
2964
  /* Detail sections. Standardized 14px padding, 16px section gap. */
2968
- .vos-detail-section { padding: 14px; margin-bottom: 16px; }
2965
+ .vos-detail-section { padding: 14px; margin-bottom: 16px; overflow: visible; }
2969
2966
  .vos-detail-section-label { font-size: 11px; color: var(--vos-muted); text-transform: uppercase; letter-spacing: 0.4px; margin-bottom: 8px; }
2970
2967
 
2971
2968
  /* Evidence composition (per-rung bars). Rung label shrinks on narrow screens;
@@ -2975,6 +2972,9 @@ button.vos-verdict-title {
2975
2972
  .vos-comp-rung.is-empty { color: var(--vos-muted); }
2976
2973
  .vos-comp-bar { flex: 1 1 80px; min-width: 60px; height: 10px; background: var(--vos-surface-2); border-radius: 5px; overflow: hidden; }
2977
2974
  .vos-comp-fill { display: block; height: 100%; background: var(--vos-accent); border-radius: 5px; }
2975
+ .vos-comp-fill.vos-fill-good { background: var(--vos-good); }
2976
+ .vos-comp-fill.vos-fill-crit { background: var(--vos-crit); }
2977
+ .vos-comp-fill.vos-fill-accent { background: var(--vos-accent); }
2978
2978
  .vos-comp-val { width: 70px; flex-shrink: 0; text-align: right; font-size: 10px; color: var(--vos-muted); }
2979
2979
  .vos-comp-count { width: 52px; flex-shrink: 0; font-size: 9px; color: var(--vos-muted); }
2980
2980
 
@@ -3055,13 +3055,69 @@ button.vos-verdict-title {
3055
3055
  .vos-unstarted { border-style: dashed; }
3056
3056
  .vos-unstarted-bar { padding: 14px; margin-bottom: 8px; background: var(--vos-surface-2); border-radius: 6px; border: 1px dashed var(--vos-border); }
3057
3057
 
3058
- /* ── DEV-5879 fixes: donut gauge, experiment rows, collapsible readings ── */
3058
+ /* ── DEV-5879 polish pass: donut, evidence list, next-moves, grid, glossary ── */
3059
3059
 
3060
- /* Confidence donut gauge (SVG ring). Number centered via grid overlay. */
3060
+ /* Confidence donut gauge minimal thin ring, large centered number. */
3061
3061
  .vos-donut { position: relative; display: inline-grid; place-items: center; flex-shrink: 0; }
3062
3062
  .vos-donut-num { grid-area: 1 / 1; font-weight: 700; color: var(--vos-text); text-align: center; line-height: 1; }
3063
3063
 
3064
- /* Experiment list bigger rows with donut gauge. 14px padding, more breathing room. */
3064
+ /* Evidence row (assumption detail) stacked, scannable, source truncated. */
3065
+ .vos-evidence-row {
3066
+ display: flex;
3067
+ flex-direction: column;
3068
+ gap: 8px;
3069
+ text-align: left;
3070
+ background: var(--vos-surface-2);
3071
+ border: 1px solid var(--vos-border);
3072
+ border-left-width: 3px;
3073
+ border-radius: 8px;
3074
+ padding: 12px 14px;
3075
+ cursor: pointer;
3076
+ width: 100%;
3077
+ margin-bottom: 8px;
3078
+ font: inherit;
3079
+ color: var(--vos-text);
3080
+ transition: border-color 0.15s;
3081
+ }
3082
+ .vos-evidence-row:hover { border-color: var(--vos-accent); }
3083
+ .vos-evidence-row.vos-verdict-good { border-left-color: var(--vos-good); }
3084
+ .vos-evidence-row.vos-verdict-crit { border-left-color: var(--vos-crit); }
3085
+ .vos-evidence-row.vos-verdict-neutral { border-left-color: var(--vos-border); }
3086
+ .vos-evidence-row-head {
3087
+ display: flex;
3088
+ gap: 8px;
3089
+ align-items: baseline;
3090
+ flex-wrap: wrap;
3091
+ }
3092
+ .vos-evidence-date { font-size: 9px; color: var(--vos-muted); min-width: 74px; }
3093
+ .vos-evidence-title { flex: 1; font-size: 13px; font-weight: 500; min-width: 0; }
3094
+ .vos-evidence-score { font-size: 10px; font-weight: 600; margin-left: auto; }
3095
+ .vos-evidence-excerpt {
3096
+ padding: 8px 12px;
3097
+ border-left: 3px solid var(--vos-border);
3098
+ background: var(--vos-surface);
3099
+ border-radius: 0 6px 6px 0;
3100
+ font-style: italic;
3101
+ font-size: 12px;
3102
+ color: var(--vos-text);
3103
+ line-height: 1.5;
3104
+ }
3105
+ .vos-evidence-source {
3106
+ display: flex;
3107
+ gap: 6px;
3108
+ align-items: baseline;
3109
+ font-size: 10px;
3110
+ color: var(--vos-muted);
3111
+ flex-wrap: wrap;
3112
+ }
3113
+ .vos-evidence-source-link {
3114
+ max-width: 100%;
3115
+ overflow: hidden;
3116
+ text-overflow: ellipsis;
3117
+ white-space: nowrap;
3118
+ }
3119
+
3120
+ /* Experiment list — bigger rows with donut gauge. */
3065
3121
  .vos-exp-list { display: flex; flex-direction: column; gap: 10px; padding: 14px; }
3066
3122
  .vos-exp-row { display: flex; align-items: center; gap: 16px; padding: 14px 16px; background: var(--vos-surface-2); border: 1px solid var(--vos-border); border-radius: 10px; cursor: pointer; text-align: left; width: 100%; color: var(--vos-text); font: inherit; transition: border-color 0.15s; }
3067
3123
  .vos-exp-row:hover { border-color: var(--vos-accent); }
@@ -3069,9 +3125,8 @@ button.vos-verdict-title {
3069
3125
  .vos-exp-row-title { font-size: 14px; font-weight: 500; color: var(--vos-text); margin-bottom: 6px; }
3070
3126
  .vos-exp-row-meta { font-size: 11px; color: var(--vos-muted); }
3071
3127
 
3072
- /* Collapsible reading card (progressive disclosure).
3073
- Summary bar: 14px padding, hover state, balanced spacing. */
3074
- .vos-reading-collapse { border: 1px solid var(--vos-border); border-radius: 8px; margin-bottom: 8px; background: var(--vos-surface-2); overflow: hidden; transition: border-color 0.15s; }
3128
+ /* Collapsible reading card (experiment detail). */
3129
+ .vos-reading-collapse { border: 1px solid var(--vos-border); border-radius: 8px; margin-bottom: 8px; background: var(--vos-surface-2); transition: border-color 0.15s; }
3075
3130
  .vos-reading-collapse:hover { border-color: var(--vos-border-strong); }
3076
3131
  .vos-reading-collapse[open] { border-color: var(--vos-border-strong); }
3077
3132
  .vos-reading-collapse > summary { display: flex; gap: 12px; align-items: center; padding: 14px; cursor: pointer; list-style: none; user-select: none; transition: background 0.15s; }
@@ -3083,12 +3138,7 @@ button.vos-verdict-title {
3083
3138
  .vos-reading-beliefs-count { font-size: 10px; color: var(--vos-muted); margin-left: auto; flex-shrink: 0; }
3084
3139
  .vos-reading-card-body { padding: 0 14px 14px; }
3085
3140
 
3086
- /* Evidence composition fix the value display (signed contributions).
3087
- Width is set on the primary .vos-comp-val rule above; no override needed. */
3088
-
3089
- /* ── DEV-5879: confidence explainer + grading rationale labels ── */
3090
-
3091
- /* Grading rationale (NOT a quote — the grader's reason for the score) */
3141
+ /* Grading rationale + per-belief quote excerpts. */
3092
3142
  .vos-reading-rationale, .vos-belief-rationale {
3093
3143
  padding: 6px 10px;
3094
3144
  border-left: 3px solid var(--vos-border);
@@ -3098,8 +3148,17 @@ button.vos-verdict-title {
3098
3148
  font-size: 11px;
3099
3149
  color: var(--vos-text);
3100
3150
  }
3101
- .vos-reading-rationale { margin: 4px 0; }
3102
- .vos-belief-rationale { margin: 4px 0 6px; }
3151
+ .vos-belief-excerpt {
3152
+ padding: 8px 12px;
3153
+ border-left: 3px solid var(--vos-border);
3154
+ background: var(--vos-surface);
3155
+ border-radius: 0 6px 6px 0;
3156
+ margin: 6px 0;
3157
+ font-style: italic;
3158
+ font-size: 12px;
3159
+ color: var(--vos-text);
3160
+ line-height: 1.5;
3161
+ }
3103
3162
  .vos-belief-rationale-label, .vos-reading-rationale-label {
3104
3163
  font-size: 9px;
3105
3164
  color: var(--vos-muted);
@@ -3107,6 +3166,14 @@ button.vos-verdict-title {
3107
3166
  letter-spacing: 0.3px;
3108
3167
  margin-right: 6px;
3109
3168
  }
3169
+ .vos-verdict-quote {
3170
+ font-style: italic;
3171
+ font-size: 12px;
3172
+ color: var(--vos-text);
3173
+ margin: 4px 0 6px;
3174
+ padding-left: 10px;
3175
+ border-left: 3px solid var(--vos-border);
3176
+ }
3110
3177
 
3111
3178
  /* Confidence explainer (collapsible) */
3112
3179
  .vos-explainer { border: 1px solid var(--vos-border); }
@@ -3162,12 +3229,14 @@ button.vos-verdict-title {
3162
3229
  .vos-explainer-foot p { margin-bottom: 8px; }
3163
3230
  .vos-explainer-foot strong { color: var(--vos-text); }
3164
3231
 
3165
- /* Recommended experiment cards — expandable with body + accept inside */
3232
+ /* Recommended experiment cards — flat, no dropdown. */
3166
3233
  .vos-pipe-rec { overflow: hidden; }
3234
+ .vos-pipe-rec-flat { padding: 14px; border: 1px solid var(--vos-border); border-radius: 10px; background: var(--vos-surface); margin-bottom: 8px; }
3235
+ .vos-pipe-rec-head { display: flex; gap: 8px; align-items: baseline; margin-bottom: 8px; flex-wrap: wrap; }
3236
+ .vos-pipe-rec-type { font-size: 9px; padding: 1px 6px; border-radius: 4px; background: var(--vos-accent-weak); color: var(--vos-accent-text); }
3237
+ .vos-pipe-rec-title { flex: 1; font-size: 13px; color: var(--vos-text); font-weight: 500; }
3167
3238
  .vos-pipe-rec-body {
3168
- padding: 12px 14px 14px;
3169
- border-top: 1px solid var(--vos-border);
3170
- background: var(--vos-surface);
3239
+ padding: 12px 0 0;
3171
3240
  font-size: 12px;
3172
3241
  color: var(--vos-text);
3173
3242
  line-height: 1.6;
@@ -3177,18 +3246,15 @@ button.vos-verdict-title {
3177
3246
  .vos-pipe-rec-body p { margin-bottom: 8px; }
3178
3247
  .vos-pipe-rec-body ul { padding-left: 18px; margin-bottom: 8px; }
3179
3248
  .vos-pipe-rec-body li { margin-bottom: 4px; }
3180
- .vos-pipe-rec-expand {
3181
- background: none;
3182
- border: none;
3183
- cursor: pointer;
3184
- color: var(--vos-accent-text);
3185
- font-size: 11px;
3186
- padding: 4px 0;
3187
- margin-top: 6px;
3188
- }
3189
-
3190
- /* ── DEV-5879: Next moves two-column section ── */
3249
+ .vos-pipe-rec-chips { display: flex; gap: 6px; margin-bottom: 8px; flex-wrap: wrap; }
3250
+ .vos-pipe-rec-chip { font-size: 9px; padding: 2px 8px; border-radius: 4px; background: var(--vos-surface-2); border: 1px solid var(--vos-border); color: var(--vos-text); cursor: pointer; }
3251
+ .vos-pipe-rec-chip:hover { border-color: var(--vos-accent); }
3252
+ .vos-pipe-rec-rationale { font-size: 11px; color: var(--vos-muted); line-height: 1.5; margin-bottom: 8px; }
3253
+ .vos-pipe-rec-bar { font-size: 10px; color: var(--vos-muted); padding: 4px 8px; background: var(--vos-surface-2); border-radius: 4px; border-left: 3px solid var(--vos-good); margin-bottom: 8px; }
3254
+ .vos-pipe-rec-bar strong { color: var(--vos-good); }
3255
+ .vos-pipe-rec-actions { margin-top: 8px; }
3191
3256
 
3257
+ /* Next moves — two-column, one-per-lens, lens-tagged cards. */
3192
3258
  .vos-next-moves { margin-top: 16px; }
3193
3259
  .vos-next-moves-head {
3194
3260
  font-size: 11px;
@@ -3200,20 +3266,20 @@ button.vos-verdict-title {
3200
3266
  }
3201
3267
  .vos-next-moves-cols {
3202
3268
  display: grid;
3203
- grid-template-columns: 1fr 1.2fr;
3269
+ grid-template-columns: 1fr 1fr;
3204
3270
  gap: 16px;
3205
- align-items: start;
3271
+ align-items: stretch;
3206
3272
  }
3207
3273
  @media (max-width: 900px) {
3208
3274
  .vos-next-moves-cols { grid-template-columns: 1fr; }
3209
3275
  }
3210
- .vos-next-moves-col { padding: 14px; }
3276
+ .vos-next-moves-col { padding: 16px; display: flex; flex-direction: column; }
3211
3277
  .vos-next-moves-col-label {
3212
3278
  font-size: 11px;
3213
3279
  color: var(--vos-muted);
3214
3280
  text-transform: uppercase;
3215
3281
  letter-spacing: 0.3px;
3216
- margin-bottom: 12px;
3282
+ margin-bottom: 14px;
3217
3283
  font-weight: 600;
3218
3284
  }
3219
3285
  .vos-next-moves-empty { padding: 12px 14px; font-size: 12px; }
@@ -3230,16 +3296,62 @@ button.vos-verdict-title {
3230
3296
  color: var(--vos-text);
3231
3297
  font: inherit;
3232
3298
  transition: border-color 0.15s;
3299
+ flex: 1 1 auto;
3233
3300
  }
3234
3301
  .vos-next-moves-item:hover { border-color: var(--vos-accent); }
3235
3302
  .vos-next-moves-item-head {
3236
3303
  display: flex;
3237
3304
  align-items: baseline;
3238
3305
  justify-content: space-between;
3239
- margin-bottom: 4px;
3306
+ margin-bottom: 6px;
3307
+ gap: 8px;
3308
+ }
3309
+ .vos-next-moves-lens {
3310
+ font-size: 9px;
3311
+ font-weight: 600;
3312
+ padding: 1px 7px;
3313
+ border: 1px solid;
3314
+ border-radius: 999px;
3240
3315
  }
3241
- .vos-next-moves-item-id { font-size: 10px; color: var(--vos-muted); }
3242
3316
  .vos-next-moves-item-risk { font-size: 10px; font-weight: 600; }
3243
- .vos-next-moves-item-title { font-size: 12px; font-weight: 500; margin-bottom: 4px; line-height: 1.4; }
3317
+ .vos-next-moves-item-title { font-size: 12px; font-weight: 500; margin-bottom: 6px; line-height: 1.4; }
3318
+ .vos-next-moves-item-id { color: var(--vos-muted); margin-right: 2px; }
3244
3319
  .vos-next-moves-item-hint { font-size: 11px; color: var(--vos-muted); line-height: 1.4; }
3245
- .vos-next-moves-rec { margin-bottom: 8px; }
3320
+ .vos-next-moves-rec {
3321
+ background: var(--vos-surface-2);
3322
+ border: 1px solid var(--vos-border);
3323
+ border-radius: 8px;
3324
+ padding: 12px 14px;
3325
+ margin-bottom: 8px;
3326
+ flex: 1 1 auto;
3327
+ }
3328
+ .vos-next-moves-rec-head { display: flex; gap: 8px; align-items: baseline; margin-bottom: 6px; flex-wrap: wrap; }
3329
+ .vos-next-moves-rec-type { font-size: 9px; padding: 1px 6px; border-radius: 4px; background: var(--vos-accent-weak); color: var(--vos-accent-text); }
3330
+ .vos-next-moves-rec-risk { font-size: 10px; font-weight: 600; margin-left: auto; }
3331
+ .vos-next-moves-rec-title { font-size: 13px; font-weight: 500; margin-bottom: 6px; }
3332
+ .vos-next-moves-rec-rationale { font-size: 11px; color: var(--vos-muted); line-height: 1.5; margin-bottom: 8px; }
3333
+ .vos-next-moves-rec-chips { display: flex; gap: 6px; margin-bottom: 8px; flex-wrap: wrap; }
3334
+ .vos-next-moves-rec-chip { font-size: 9px; padding: 2px 8px; border-radius: 4px; background: var(--vos-surface); border: 1px solid var(--vos-border); color: var(--vos-text); cursor: pointer; }
3335
+ .vos-next-moves-rec-chip:hover { border-color: var(--vos-accent); }
3336
+ .vos-next-moves-rec-actions { margin-top: 8px; }
3337
+
3338
+ /* Grid: more spacing, taller cells, bigger text, subtle heat. */
3339
+ .vos-stage-grid { border-spacing: 10px !important; }
3340
+ .vos-stage-grid-btn { min-height: 68px !important; font-size: 20px !important; border-radius: 10px !important; }
3341
+ .vos-stage-grid-col { min-width: 150px !important; padding: 14px 16px !important; }
3342
+ .vos-stage-grid-rowhead { padding: 12px 16px !important; font-size: 14px !important; }
3343
+ .vos-stage-grid-stagename { font-size: 15px !important; }
3344
+ .vos-stage-grid-stagegloss { font-size: 11px !important; line-height: 1.4 !important; }
3345
+ .vos-stage-grid-corner { font-weight: 600; }
3346
+ .vos-heat-0 { background: var(--vos-surface); opacity: 0.45; color: var(--vos-muted); border-style: dashed; }
3347
+ .vos-heat-1 { background: color-mix(in srgb, var(--vos-accent) 16%, var(--vos-surface)); }
3348
+ .vos-heat-2 { background: color-mix(in srgb, var(--vos-accent) 30%, var(--vos-surface)); }
3349
+ .vos-heat-3 { background: color-mix(in srgb, var(--vos-accent) 44%, var(--vos-surface)); }
3350
+ .vos-heat-4 { background: color-mix(in srgb, var(--vos-accent) 58%, var(--vos-surface)); }
3351
+
3352
+ /* Glossary popover: parent cards no longer clip overflow, so the absolute
3353
+ * popover can show. High z-index in case it overlaps other stacked cards. */
3354
+ .vos-gloss-pop { z-index: 100; }
3355
+
3356
+ /* Topbar: hide the backend + agent indicators (clean header) */
3357
+ .vos-backend, .vos-hint:has(.vos-live-dot) { display: none !important; }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@validation-os/dashboard",
3
- "version": "0.15.3",
3
+ "version": "0.15.5",
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.15.3"
25
+ "@validation-os/core": "0.15.5"
26
26
  },
27
27
  "peerDependencies": {
28
28
  "react": ">=18",