ccqa 1.20.0 → 1.20.1
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/bin/ccqa.mjs +6 -1
- package/dist/package.json +1 -1
- package/package.json +1 -1
package/dist/bin/ccqa.mjs
CHANGED
|
@@ -19372,6 +19372,8 @@ const CSS = `
|
|
|
19372
19372
|
saying what it rests on. */
|
|
19373
19373
|
.badge.rr-needed { background: var(--amber-bg); color: var(--amber); border-color: var(--amber-border); }
|
|
19374
19374
|
.badge.rr-needed .d { background: var(--amber); }
|
|
19375
|
+
.badge.rr-repair { background: var(--fail-bg); color: var(--fail); border-color: var(--fail-border); }
|
|
19376
|
+
.badge.rr-repair .d { background: var(--fail); }
|
|
19375
19377
|
.badge.rr-unknown { background: var(--info-bg); color: var(--info); border-color: var(--info-border); }
|
|
19376
19378
|
.badge.rr-unknown .d { background: var(--info); }
|
|
19377
19379
|
.badge.rr-none { background: var(--surface-3); color: var(--muted); border-color: var(--border); }
|
|
@@ -21972,8 +21974,11 @@ const CLIENT_JS = `
|
|
|
21972
21974
|
// The primary column. The two axes beside it answer "why"; this one answers
|
|
21973
21975
|
// "who acts next", which is the only question a reader scanning a list of
|
|
21974
21976
|
// specs has. Exactly one value, needsRepair, asks for a person.
|
|
21977
|
+
// Same colours the summary bar uses, so a row and the bar above it cannot
|
|
21978
|
+
// disagree. needsRepair is the only verdict that asks for a person, so it
|
|
21979
|
+
// takes the attention colour and re-running — machine work — does not.
|
|
21975
21980
|
var VERDICT_BADGE = {
|
|
21976
|
-
needsRepair: "rr-
|
|
21981
|
+
needsRepair: "rr-repair", rerunNeeded: "rr-needed",
|
|
21977
21982
|
inProgress: "rr-none", verified: "passed"
|
|
21978
21983
|
};
|
|
21979
21984
|
|
package/dist/package.json
CHANGED