@validation-os/dashboard 0.15.4 → 0.15.6

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;
@@ -2868,9 +2867,9 @@ button.vos-verdict-title {
2868
2867
 
2869
2868
  /* ── DEV-5879 redesign: unified nav, pipeline board, evidence-first details ── */
2870
2869
 
2871
- /* Segmented toggle (Grid / View all) */
2872
- .vos-seg { display: inline-flex; gap: 0; border: 1px solid var(--vos-border); border-radius: var(--vos-radius); overflow: hidden; align-self: center; }
2873
- .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; }
2870
+ /* Segmented toggle (Grid / View all) — compact, right-aligned in header */
2871
+ .vos-seg { display: inline-flex; gap: 0; border: 1px solid var(--vos-border); border-radius: 6px; overflow: hidden; align-self: center; }
2872
+ .vos-seg-btn { padding: 5px 12px; background: transparent; border: none; color: var(--vos-muted); font-size: 12px; font-family: inherit; cursor: pointer; border-right: 1px solid var(--vos-border); transition: background 0.15s, color 0.15s; }
2874
2873
  .vos-seg-btn:last-child { border-right: none; }
2875
2874
  .vos-seg-btn:hover { background: var(--vos-surface-2); }
2876
2875
  .vos-seg-btn.is-active { background: var(--vos-accent-weak); color: var(--vos-accent-text); }
@@ -2963,7 +2962,7 @@ button.vos-verdict-title {
2963
2962
  .vos-score-label { font-size: 10px; color: var(--vos-muted); }
2964
2963
 
2965
2964
  /* Detail sections. Standardized 14px padding, 16px section gap. */
2966
- .vos-detail-section { padding: 14px; margin-bottom: 16px; }
2965
+ .vos-detail-section { padding: 14px; margin-bottom: 16px; overflow: visible; }
2967
2966
  .vos-detail-section-label { font-size: 11px; color: var(--vos-muted); text-transform: uppercase; letter-spacing: 0.4px; margin-bottom: 8px; }
2968
2967
 
2969
2968
  /* Evidence composition (per-rung bars). Rung label shrinks on narrow screens;
@@ -2973,6 +2972,9 @@ button.vos-verdict-title {
2973
2972
  .vos-comp-rung.is-empty { color: var(--vos-muted); }
2974
2973
  .vos-comp-bar { flex: 1 1 80px; min-width: 60px; height: 10px; background: var(--vos-surface-2); border-radius: 5px; overflow: hidden; }
2975
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); }
2976
2978
  .vos-comp-val { width: 70px; flex-shrink: 0; text-align: right; font-size: 10px; color: var(--vos-muted); }
2977
2979
  .vos-comp-count { width: 52px; flex-shrink: 0; font-size: 9px; color: var(--vos-muted); }
2978
2980
 
@@ -3053,13 +3055,69 @@ button.vos-verdict-title {
3053
3055
  .vos-unstarted { border-style: dashed; }
3054
3056
  .vos-unstarted-bar { padding: 14px; margin-bottom: 8px; background: var(--vos-surface-2); border-radius: 6px; border: 1px dashed var(--vos-border); }
3055
3057
 
3056
- /* ── DEV-5879 fixes: donut gauge, experiment rows, collapsible readings ── */
3058
+ /* ── DEV-5879 polish pass: donut, evidence list, next-moves, grid, glossary ── */
3057
3059
 
3058
- /* Confidence donut gauge (SVG ring). Number centered via grid overlay. */
3060
+ /* Confidence donut gauge minimal thin ring, large centered number. */
3059
3061
  .vos-donut { position: relative; display: inline-grid; place-items: center; flex-shrink: 0; }
3060
3062
  .vos-donut-num { grid-area: 1 / 1; font-weight: 700; color: var(--vos-text); text-align: center; line-height: 1; }
3061
3063
 
3062
- /* 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. */
3063
3121
  .vos-exp-list { display: flex; flex-direction: column; gap: 10px; padding: 14px; }
3064
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; }
3065
3123
  .vos-exp-row:hover { border-color: var(--vos-accent); }
@@ -3067,9 +3125,8 @@ button.vos-verdict-title {
3067
3125
  .vos-exp-row-title { font-size: 14px; font-weight: 500; color: var(--vos-text); margin-bottom: 6px; }
3068
3126
  .vos-exp-row-meta { font-size: 11px; color: var(--vos-muted); }
3069
3127
 
3070
- /* Collapsible reading card (progressive disclosure).
3071
- Summary bar: 14px padding, hover state, balanced spacing. */
3072
- .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; }
3073
3130
  .vos-reading-collapse:hover { border-color: var(--vos-border-strong); }
3074
3131
  .vos-reading-collapse[open] { border-color: var(--vos-border-strong); }
3075
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; }
@@ -3081,12 +3138,7 @@ button.vos-verdict-title {
3081
3138
  .vos-reading-beliefs-count { font-size: 10px; color: var(--vos-muted); margin-left: auto; flex-shrink: 0; }
3082
3139
  .vos-reading-card-body { padding: 0 14px 14px; }
3083
3140
 
3084
- /* Evidence composition fix the value display (signed contributions).
3085
- Width is set on the primary .vos-comp-val rule above; no override needed. */
3086
-
3087
- /* ── DEV-5879: confidence explainer + grading rationale labels ── */
3088
-
3089
- /* Grading rationale (NOT a quote — the grader's reason for the score) */
3141
+ /* Grading rationale + per-belief quote excerpts. */
3090
3142
  .vos-reading-rationale, .vos-belief-rationale {
3091
3143
  padding: 6px 10px;
3092
3144
  border-left: 3px solid var(--vos-border);
@@ -3096,8 +3148,17 @@ button.vos-verdict-title {
3096
3148
  font-size: 11px;
3097
3149
  color: var(--vos-text);
3098
3150
  }
3099
- .vos-reading-rationale { margin: 4px 0; }
3100
- .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
+ }
3101
3162
  .vos-belief-rationale-label, .vos-reading-rationale-label {
3102
3163
  font-size: 9px;
3103
3164
  color: var(--vos-muted);
@@ -3105,6 +3166,14 @@ button.vos-verdict-title {
3105
3166
  letter-spacing: 0.3px;
3106
3167
  margin-right: 6px;
3107
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
+ }
3108
3177
 
3109
3178
  /* Confidence explainer (collapsible) */
3110
3179
  .vos-explainer { border: 1px solid var(--vos-border); }
@@ -3160,12 +3229,14 @@ button.vos-verdict-title {
3160
3229
  .vos-explainer-foot p { margin-bottom: 8px; }
3161
3230
  .vos-explainer-foot strong { color: var(--vos-text); }
3162
3231
 
3163
- /* Recommended experiment cards — expandable with body + accept inside */
3232
+ /* Recommended experiment cards — flat, no dropdown. */
3164
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; }
3165
3238
  .vos-pipe-rec-body {
3166
- padding: 12px 14px 14px;
3167
- border-top: 1px solid var(--vos-border);
3168
- background: var(--vos-surface);
3239
+ padding: 12px 0 0;
3169
3240
  font-size: 12px;
3170
3241
  color: var(--vos-text);
3171
3242
  line-height: 1.6;
@@ -3175,18 +3246,15 @@ button.vos-verdict-title {
3175
3246
  .vos-pipe-rec-body p { margin-bottom: 8px; }
3176
3247
  .vos-pipe-rec-body ul { padding-left: 18px; margin-bottom: 8px; }
3177
3248
  .vos-pipe-rec-body li { margin-bottom: 4px; }
3178
- .vos-pipe-rec-expand {
3179
- background: none;
3180
- border: none;
3181
- cursor: pointer;
3182
- color: var(--vos-accent-text);
3183
- font-size: 11px;
3184
- padding: 4px 0;
3185
- margin-top: 6px;
3186
- }
3187
-
3188
- /* ── 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; }
3189
3256
 
3257
+ /* Next moves — two-column, one-per-lens, lens-tagged cards. */
3190
3258
  .vos-next-moves { margin-top: 16px; }
3191
3259
  .vos-next-moves-head {
3192
3260
  font-size: 11px;
@@ -3198,20 +3266,20 @@ button.vos-verdict-title {
3198
3266
  }
3199
3267
  .vos-next-moves-cols {
3200
3268
  display: grid;
3201
- grid-template-columns: 1fr 1.2fr;
3269
+ grid-template-columns: 1fr 1fr;
3202
3270
  gap: 16px;
3203
- align-items: start;
3271
+ align-items: stretch;
3204
3272
  }
3205
3273
  @media (max-width: 900px) {
3206
3274
  .vos-next-moves-cols { grid-template-columns: 1fr; }
3207
3275
  }
3208
- .vos-next-moves-col { padding: 14px; }
3276
+ .vos-next-moves-col { padding: 16px; display: flex; flex-direction: column; }
3209
3277
  .vos-next-moves-col-label {
3210
3278
  font-size: 11px;
3211
3279
  color: var(--vos-muted);
3212
3280
  text-transform: uppercase;
3213
3281
  letter-spacing: 0.3px;
3214
- margin-bottom: 12px;
3282
+ margin-bottom: 14px;
3215
3283
  font-weight: 600;
3216
3284
  }
3217
3285
  .vos-next-moves-empty { padding: 12px 14px; font-size: 12px; }
@@ -3228,52 +3296,94 @@ button.vos-verdict-title {
3228
3296
  color: var(--vos-text);
3229
3297
  font: inherit;
3230
3298
  transition: border-color 0.15s;
3299
+ flex: 1 1 auto;
3231
3300
  }
3232
3301
  .vos-next-moves-item:hover { border-color: var(--vos-accent); }
3233
3302
  .vos-next-moves-item-head {
3234
3303
  display: flex;
3235
3304
  align-items: baseline;
3236
3305
  justify-content: space-between;
3237
- 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;
3238
3315
  }
3239
- .vos-next-moves-item-id { font-size: 10px; color: var(--vos-muted); }
3240
3316
  .vos-next-moves-item-risk { font-size: 10px; font-weight: 600; }
3241
- .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; }
3242
3319
  .vos-next-moves-item-hint { font-size: 11px; color: var(--vos-muted); line-height: 1.4; }
3243
- .vos-next-moves-rec { margin-bottom: 8px; }
3244
-
3245
- /* ── DEV-5879: grid text breathing room + next-move box consistency + header cleanup ── */
3246
-
3247
- /* Grid: more spacing between cells, taller cells, bigger text */
3248
- .vos-stage-grid { border-spacing: 8px !important; }
3249
- .vos-stage-grid-btn { min-height: 64px !important; font-size: 18px !important; }
3250
- .vos-stage-grid-col { min-width: 140px !important; padding: 12px 14px !important; }
3251
- .vos-stage-grid-rowhead { padding: 10px 14px !important; }
3252
- .vos-stage-grid-stagename { font-size: 14px !important; }
3253
- .vos-stage-grid-stagegloss { font-size: 11px !important; line-height: 1.4 !important; }
3254
-
3255
- /* Next-moves: equal-width columns, equal-height boxes, adaptable */
3256
- .vos-next-moves-cols {
3257
- grid-template-columns: 1fr 1fr !important;
3258
- align-items: stretch !important;
3259
- }
3260
- .vos-next-moves-col {
3261
- display: flex !important;
3262
- flex-direction: column !important;
3263
- padding: 16px !important;
3264
- }
3265
- .vos-next-moves-col-label { margin-bottom: 14px !important; }
3266
- /* Equal-height items within each column */
3267
- .vos-next-moves-item, .vos-next-moves-rec {
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;
3268
3326
  flex: 1 1 auto;
3269
- min-height: 80px;
3270
3327
  }
3271
- /* The proposed experiment summary should match the needs-framing item height */
3272
- .vos-next-moves-rec > summary {
3273
- min-height: 80px;
3274
- display: flex;
3275
- align-items: center;
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
+ /* Compact proposed-experiment card — just lens + type + title + risk + → */
3339
+ .vos-next-moves-rec-compact {
3340
+ display: block;
3341
+ width: 100%;
3342
+ text-align: left;
3343
+ background: var(--vos-surface-2);
3344
+ border: 1px solid var(--vos-border);
3345
+ border-radius: 8px;
3346
+ padding: 10px 12px;
3347
+ margin-bottom: 8px;
3348
+ cursor: pointer;
3349
+ position: relative;
3350
+ transition: border-color 0.15s, background 0.15s;
3351
+ }
3352
+ .vos-next-moves-rec-compact:hover { border-color: var(--vos-accent); background: var(--vos-surface); }
3353
+ .vos-next-moves-rec-compact .vos-next-moves-rec-title { margin: 0; padding-right: 18px; }
3354
+ .vos-next-moves-rec-open {
3355
+ position: absolute;
3356
+ right: 10px;
3357
+ top: 50%;
3358
+ transform: translateY(-50%);
3359
+ color: var(--vos-muted);
3360
+ font-size: 14px;
3361
+ pointer-events: none;
3276
3362
  }
3277
3363
 
3364
+ /* Recommended-experiment drawer */
3365
+ .vos-rec-drawer .vos-rec-drawer-section { display: flex; flex-direction: column; gap: 6px; }
3366
+ .vos-rec-drawer .vos-rec-drawer-rationale { font-size: 13px; color: var(--vos-muted); line-height: 1.5; margin: 0; }
3367
+ .vos-rec-drawer .vos-rec-drawer-bar { font-size: 13px; color: var(--vos-text); line-height: 1.5; }
3368
+ .vos-rec-drawer .vos-rec-drawer-body { font-size: 13px; color: var(--vos-text); line-height: 1.6; }
3369
+
3370
+ /* Grid: more spacing, taller cells, bigger text, subtle heat. */
3371
+ .vos-stage-grid { border-spacing: 10px !important; }
3372
+ .vos-stage-grid-btn { min-height: 68px !important; font-size: 20px !important; border-radius: 10px !important; }
3373
+ .vos-stage-grid-col { min-width: 150px !important; padding: 14px 16px !important; }
3374
+ .vos-stage-grid-rowhead { padding: 12px 16px !important; font-size: 14px !important; }
3375
+ .vos-stage-grid-stagename { font-size: 15px !important; }
3376
+ .vos-stage-grid-stagegloss { font-size: 11px !important; line-height: 1.4 !important; }
3377
+ .vos-stage-grid-corner { font-weight: 600; }
3378
+ .vos-heat-0 { background: var(--vos-surface); opacity: 0.45; color: var(--vos-muted); border-style: dashed; }
3379
+ .vos-heat-1 { background: color-mix(in srgb, var(--vos-accent) 16%, var(--vos-surface)); }
3380
+ .vos-heat-2 { background: color-mix(in srgb, var(--vos-accent) 30%, var(--vos-surface)); }
3381
+ .vos-heat-3 { background: color-mix(in srgb, var(--vos-accent) 44%, var(--vos-surface)); }
3382
+ .vos-heat-4 { background: color-mix(in srgb, var(--vos-accent) 58%, var(--vos-surface)); }
3383
+
3384
+ /* Glossary popover: parent cards no longer clip overflow, so the absolute
3385
+ * popover can show. High z-index in case it overlaps other stacked cards. */
3386
+ .vos-gloss-pop { z-index: 100; }
3387
+
3278
3388
  /* Topbar: hide the backend + agent indicators (clean header) */
3279
3389
  .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.4",
3
+ "version": "0.15.6",
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.4"
25
+ "@validation-os/core": "0.15.6"
26
26
  },
27
27
  "peerDependencies": {
28
28
  "react": ">=18",