test-a11y-js 0.5.5 → 0.6.2
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/README.md +8 -1
- package/dist/{chunk-SC53YK5A.mjs → chunk-JFZXPUZY.mjs} +1185 -57
- package/dist/index.d.mts +7 -0
- package/dist/index.d.ts +7 -0
- package/dist/index.js +1185 -57
- package/dist/index.mjs +1 -1
- package/dist/linter/eslint-plugin/index.js +1185 -57
- package/dist/linter/eslint-plugin/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -17,6 +17,13 @@ declare class A11yChecker {
|
|
|
17
17
|
static checkHeadingOrder(element: Element): A11yViolation[];
|
|
18
18
|
static checkLinkText(element: Element): A11yViolation[];
|
|
19
19
|
static checkIframeTitle(element: Element): A11yViolation[];
|
|
20
|
+
static checkFieldsetLegend(element: Element): A11yViolation[];
|
|
21
|
+
static checkTableStructure(element: Element): A11yViolation[];
|
|
22
|
+
static checkDetailsSummary(element: Element): A11yViolation[];
|
|
23
|
+
static checkVideoCaptions(element: Element): A11yViolation[];
|
|
24
|
+
static checkAudioCaptions(element: Element): A11yViolation[];
|
|
25
|
+
static checkLandmarks(element: Element): A11yViolation[];
|
|
26
|
+
static checkDialogModal(element: Element): A11yViolation[];
|
|
20
27
|
static check(element: Element): Promise<A11yResults>;
|
|
21
28
|
}
|
|
22
29
|
|
package/dist/index.d.ts
CHANGED
|
@@ -17,6 +17,13 @@ declare class A11yChecker {
|
|
|
17
17
|
static checkHeadingOrder(element: Element): A11yViolation[];
|
|
18
18
|
static checkLinkText(element: Element): A11yViolation[];
|
|
19
19
|
static checkIframeTitle(element: Element): A11yViolation[];
|
|
20
|
+
static checkFieldsetLegend(element: Element): A11yViolation[];
|
|
21
|
+
static checkTableStructure(element: Element): A11yViolation[];
|
|
22
|
+
static checkDetailsSummary(element: Element): A11yViolation[];
|
|
23
|
+
static checkVideoCaptions(element: Element): A11yViolation[];
|
|
24
|
+
static checkAudioCaptions(element: Element): A11yViolation[];
|
|
25
|
+
static checkLandmarks(element: Element): A11yViolation[];
|
|
26
|
+
static checkDialogModal(element: Element): A11yViolation[];
|
|
20
27
|
static check(element: Element): Promise<A11yResults>;
|
|
21
28
|
}
|
|
22
29
|
|