asma-ui-core 3.78.8 → 3.78.9
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.
|
@@ -84,9 +84,8 @@ export declare const BUTTON_TYPES_WITHOUT_KNOWN_SURFACE: readonly ButtonType[];
|
|
|
84
84
|
* `boundary-outlined-hover` (F-13): outlined's hover/active border is gama-300, under 3:1 in all
|
|
85
85
|
* three themes.
|
|
86
86
|
* `outlined/error/focused/text` (F-16): white label on a beta-100 tint, 1.27:1 in every theme.
|
|
87
|
-
*
|
|
88
|
-
*
|
|
89
|
-
* gama-400 and lands at 2.24:1, which is F-07's root cause again.
|
|
87
|
+
* Error/focused boundaries now resolve after ASMA-8133. Default and greenish pass at 8.37:1;
|
|
88
|
+
* fretex still uses gama-400 at 2.24:1, so these rows remain under F-07.
|
|
90
89
|
*/
|
|
91
90
|
export declare const BUTTON_FINDINGS: Readonly<Record<string, string>>;
|
|
92
91
|
/**
|
|
@@ -104,7 +103,7 @@ export declare const BUTTON_FINDINGS: Readonly<Record<string, string>>;
|
|
|
104
103
|
* stay skipped.
|
|
105
104
|
*
|
|
106
105
|
* Values are produced by `contrastRatio`, which already truncates to two decimals, so the floor and
|
|
107
|
-
* the measurement are byte-identical and the comparison needs no epsilon.
|
|
108
|
-
*
|
|
106
|
+
* the measurement are byte-identical and the comparison needs no epsilon. Use
|
|
107
|
+
* printRegressionFloors.ts to inspect current measurements; review changes before updating floors.
|
|
109
108
|
*/
|
|
110
109
|
export declare const REGRESSION_FLOORS: Readonly<Record<string, Readonly<Record<string, number | null>>>>;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Prints candidate regression floors for review; never updates the gate automatically.
|
|
3
|
+
* Run: pnpm exec tsx src/a11y/contrast/printRegressionFloors.ts
|
|
4
|
+
*
|
|
5
|
+
* Compare the output with contrastPairs.ts. Raising a floor locks in an improvement;
|
|
6
|
+
* lowering one permits a regression and requires an explained, intentional token change.
|
|
7
|
+
* A null measurement requires investigation, not an automatic new skip.
|
|
8
|
+
*/
|
|
9
|
+
export {};
|