accessibility-insights-report 7.1.0 → 7.3.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/drop/index.d.ts +7 -0
- package/drop/index.js +597 -414
- package/package.json +1 -1
package/drop/index.d.ts
CHANGED
|
@@ -17,6 +17,7 @@ declare namespace AccessibilityInsightsReport {
|
|
|
17
17
|
serviceName: string;
|
|
18
18
|
scanContext: ScanContext;
|
|
19
19
|
feedbackURL?: string;
|
|
20
|
+
expandPassSectionDetails?: ExpandPassSectionParameter;
|
|
20
21
|
}
|
|
21
22
|
|
|
22
23
|
export type ScanSummaryDetails = {
|
|
@@ -105,6 +106,7 @@ declare namespace AccessibilityInsightsReport {
|
|
|
105
106
|
failed: FailuresGroup[],
|
|
106
107
|
passed?: AxeRuleData[],
|
|
107
108
|
notApplicable?: AxeRuleData[],
|
|
109
|
+
incomplete?: AxeRuleData[]
|
|
108
110
|
}
|
|
109
111
|
|
|
110
112
|
export type UrlResultCounts = {
|
|
@@ -134,6 +136,11 @@ declare namespace AccessibilityInsightsReport {
|
|
|
134
136
|
fromCombinedResults: (parameters: CombinedReportParameters) => Report;
|
|
135
137
|
};
|
|
136
138
|
|
|
139
|
+
export type ExpandPassSectionParameter = {
|
|
140
|
+
expandPassSection: boolean;
|
|
141
|
+
expandByTags?: string[];
|
|
142
|
+
}
|
|
143
|
+
|
|
137
144
|
export type ReporterFactory = () => Reporter;
|
|
138
145
|
|
|
139
146
|
export const reporterFactory: ReporterFactory;
|