@validation-os/dashboard 0.7.1 → 0.8.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 +315 -108
- package/dist/index.js +699 -130
- package/dist/index.js.map +1 -1
- package/dist/styles.css +117 -0
- package/package.json +2 -2
package/dist/styles.css
CHANGED
|
@@ -412,6 +412,21 @@
|
|
|
412
412
|
font-size: 12.5px;
|
|
413
413
|
}
|
|
414
414
|
|
|
415
|
+
/* A ready-to-copy command block (Connect Claude Code, OPS-1349). */
|
|
416
|
+
.vos-code {
|
|
417
|
+
font-family: var(--vos-mono);
|
|
418
|
+
font-size: 12.5px;
|
|
419
|
+
line-height: 1.6;
|
|
420
|
+
background: var(--vos-surface-2);
|
|
421
|
+
border: 1px solid var(--vos-border);
|
|
422
|
+
border-radius: var(--vos-radius);
|
|
423
|
+
padding: 12px 14px;
|
|
424
|
+
margin: 16px 0;
|
|
425
|
+
white-space: pre-wrap;
|
|
426
|
+
word-break: break-all;
|
|
427
|
+
overflow-x: auto;
|
|
428
|
+
}
|
|
429
|
+
|
|
415
430
|
/* ── card + table ──────────────────────────────────────────────────────── */
|
|
416
431
|
.vos-card {
|
|
417
432
|
background: var(--vos-surface);
|
|
@@ -925,6 +940,11 @@ textarea.vos-input {
|
|
|
925
940
|
flex-direction: column;
|
|
926
941
|
gap: 14px;
|
|
927
942
|
}
|
|
943
|
+
.vos-field-error {
|
|
944
|
+
margin: 5px 0 0;
|
|
945
|
+
font-size: 12px;
|
|
946
|
+
color: var(--vos-crit);
|
|
947
|
+
}
|
|
928
948
|
.vos-sectitle {
|
|
929
949
|
font-size: 11px;
|
|
930
950
|
text-transform: uppercase;
|
|
@@ -1019,6 +1039,24 @@ textarea.vos-input {
|
|
|
1019
1039
|
font-size: 13px;
|
|
1020
1040
|
color: var(--vos-text);
|
|
1021
1041
|
}
|
|
1042
|
+
.vos-detail-links {
|
|
1043
|
+
display: inline-flex;
|
|
1044
|
+
flex-wrap: wrap;
|
|
1045
|
+
}
|
|
1046
|
+
.vos-inline-link {
|
|
1047
|
+
border: none;
|
|
1048
|
+
background: none;
|
|
1049
|
+
padding: 0;
|
|
1050
|
+
margin: 0;
|
|
1051
|
+
font: inherit;
|
|
1052
|
+
font-size: inherit;
|
|
1053
|
+
color: var(--vos-accent-text);
|
|
1054
|
+
text-decoration: underline;
|
|
1055
|
+
cursor: pointer;
|
|
1056
|
+
}
|
|
1057
|
+
.vos-inline-link:hover {
|
|
1058
|
+
opacity: 0.8;
|
|
1059
|
+
}
|
|
1022
1060
|
|
|
1023
1061
|
/* ── portfolio pipeline (OPS-1300) ─────────────────────────────────────── */
|
|
1024
1062
|
|
|
@@ -1598,6 +1636,14 @@ textarea.vos-input {
|
|
|
1598
1636
|
color: var(--vos-text);
|
|
1599
1637
|
margin: 4px 0 0;
|
|
1600
1638
|
}
|
|
1639
|
+
.vos-record-editor {
|
|
1640
|
+
border: 1px solid var(--vos-border);
|
|
1641
|
+
border-radius: var(--vos-radius);
|
|
1642
|
+
padding: 16px;
|
|
1643
|
+
}
|
|
1644
|
+
.vos-record-editor .vos-drawer-footer {
|
|
1645
|
+
margin: 14px -16px -16px;
|
|
1646
|
+
}
|
|
1601
1647
|
.vos-panels {
|
|
1602
1648
|
display: grid;
|
|
1603
1649
|
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
|
|
@@ -2275,6 +2321,77 @@ textarea.vos-input {
|
|
|
2275
2321
|
color: var(--vos-text);
|
|
2276
2322
|
}
|
|
2277
2323
|
|
|
2324
|
+
/* ── Cycles: the loop, round by round (OPS-1347) ─────────────────────────── */
|
|
2325
|
+
.vos-cyc-list {
|
|
2326
|
+
display: flex;
|
|
2327
|
+
gap: 10px;
|
|
2328
|
+
overflow-x: auto;
|
|
2329
|
+
list-style: none;
|
|
2330
|
+
margin: 0;
|
|
2331
|
+
padding: 2px 0 6px;
|
|
2332
|
+
}
|
|
2333
|
+
.vos-cyc-card {
|
|
2334
|
+
flex: 0 0 168px;
|
|
2335
|
+
border: 1px solid var(--vos-border);
|
|
2336
|
+
border-radius: var(--vos-radius);
|
|
2337
|
+
padding: 10px 12px;
|
|
2338
|
+
display: flex;
|
|
2339
|
+
flex-direction: column;
|
|
2340
|
+
gap: 6px;
|
|
2341
|
+
background: var(--vos-surface-2);
|
|
2342
|
+
}
|
|
2343
|
+
.vos-cyc-head {
|
|
2344
|
+
display: flex;
|
|
2345
|
+
align-items: baseline;
|
|
2346
|
+
justify-content: space-between;
|
|
2347
|
+
gap: 6px;
|
|
2348
|
+
}
|
|
2349
|
+
.vos-cyc-num {
|
|
2350
|
+
font-size: 10.5px;
|
|
2351
|
+
font-weight: 700;
|
|
2352
|
+
text-transform: uppercase;
|
|
2353
|
+
letter-spacing: 0.04em;
|
|
2354
|
+
color: var(--vos-faint);
|
|
2355
|
+
}
|
|
2356
|
+
.vos-cyc-date {
|
|
2357
|
+
font-size: 11px;
|
|
2358
|
+
color: var(--vos-muted);
|
|
2359
|
+
font-variant-numeric: tabular-nums;
|
|
2360
|
+
}
|
|
2361
|
+
.vos-cyc-title {
|
|
2362
|
+
font-size: 12.5px;
|
|
2363
|
+
color: var(--vos-text);
|
|
2364
|
+
overflow: hidden;
|
|
2365
|
+
text-overflow: ellipsis;
|
|
2366
|
+
display: -webkit-box;
|
|
2367
|
+
-webkit-line-clamp: 2;
|
|
2368
|
+
-webkit-box-orient: vertical;
|
|
2369
|
+
}
|
|
2370
|
+
.vos-cyc-dots {
|
|
2371
|
+
display: flex;
|
|
2372
|
+
gap: 4px;
|
|
2373
|
+
flex-wrap: wrap;
|
|
2374
|
+
}
|
|
2375
|
+
.vos-cyc-foot {
|
|
2376
|
+
display: flex;
|
|
2377
|
+
align-items: center;
|
|
2378
|
+
justify-content: space-between;
|
|
2379
|
+
gap: 6px;
|
|
2380
|
+
margin-top: auto;
|
|
2381
|
+
}
|
|
2382
|
+
.vos-cyc-push {
|
|
2383
|
+
display: flex;
|
|
2384
|
+
align-items: center;
|
|
2385
|
+
gap: 5px;
|
|
2386
|
+
font-family: var(--vos-mono);
|
|
2387
|
+
font-size: 11px;
|
|
2388
|
+
font-weight: 700;
|
|
2389
|
+
}
|
|
2390
|
+
.vos-cyc-track {
|
|
2391
|
+
flex: 0 0 34px;
|
|
2392
|
+
height: 7px;
|
|
2393
|
+
}
|
|
2394
|
+
|
|
2278
2395
|
/* ── Cross-surface cold start (OPS-1331) ────────────────────────────────── */
|
|
2279
2396
|
/* The shared first-run onboarding line — one tone across the two top-level
|
|
2280
2397
|
* surfaces (next + pipeline). Neutral text on a faint accent wash, so it
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@validation-os/dashboard",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.8.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.8.0"
|
|
26
26
|
},
|
|
27
27
|
"peerDependencies": {
|
|
28
28
|
"react": ">=18",
|