@uuv/a11y 1.0.0-beta.8 → 1.0.0-beta.80
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/CHANGELOG.md +756 -0
- package/LICENSE +0 -2
- package/README.md +21 -7
- package/bundle/uuv-a11y.bundle.js +2 -2
- package/bundle/uuv-a11y.bundle.js.LICENSE.txt +12 -0
- package/dist/CHANGELOG.md +748 -0
- package/dist/README.md +21 -7
- package/dist/lib/model/checker.d.ts +3 -12
- package/dist/lib/model/checker.js +0 -33
- package/dist/lib/model/checklist-checker.d.ts +15 -0
- package/dist/lib/model/checklist-checker.js +61 -0
- package/dist/lib/model/index.d.ts +1 -0
- package/dist/lib/model/index.js +1 -0
- package/dist/lib/model/reference.js +1 -1
- package/dist/lib/model/result.js +1 -1
- package/dist/lib/model/rule.d.ts +8 -8
- package/dist/lib/model/rule.js +3 -3
- package/dist/lib/model/uuv-a11y-result.d.ts +54 -0
- package/dist/lib/model/uuv-a11y-result.js +17 -0
- package/dist/lib/query/accessible-name.query.d.ts +2 -0
- package/dist/lib/query/accessible-name.query.js +8 -2
- package/dist/lib/query/compliant-attributes/attribut-specification.d.ts +9 -0
- package/dist/lib/query/compliant-attributes/attribut-specification.js +29 -4
- package/dist/lib/query/compliant-attributes/attribute-checker.d.ts +12 -0
- package/dist/lib/query/compliant-attributes/attribute-checker.js +18 -0
- package/dist/lib/reference/index.d.ts +1 -0
- package/dist/lib/reference/index.js +1 -0
- package/dist/lib/reference/rgaa/coverage/coverage-helper.js +18 -9
- package/dist/lib/reference/rgaa/coverage/coverage-statement.json +22 -3
- package/dist/lib/reference/rgaa/rgaa-checker.d.ts +3 -3
- package/dist/lib/reference/rgaa/rgaa-checker.js +2 -2
- package/dist/lib/reference/rgaa/rules/1-image.d.ts +4 -4
- package/dist/lib/reference/rgaa/rules/11-form.d.ts +4 -4
- package/dist/lib/reference/rgaa/rules/2-frame.d.ts +4 -4
- package/dist/lib/reference/rgaa/rules/3-color.d.ts +4 -4
- package/dist/lib/reference/rgaa/rules/5-table.d.ts +4 -4
- package/dist/lib/reference/rgaa/rules/6-link.d.ts +12 -1
- package/dist/lib/reference/rgaa/rules/6-link.js +147 -1
- package/dist/lib/reference/rgaa/rules/8-required-element.d.ts +4 -4
- package/dist/lib/reference/rgaa/rules/8-required-element.js +57 -3
- package/dist/lib/reference/wcag/index.d.ts +1 -0
- package/dist/lib/reference/wcag/index.js +17 -0
- package/dist/lib/reference/wcag/wcag-checker.d.ts +14 -0
- package/dist/lib/reference/wcag/wcag-checker.js +86 -0
- package/dist/lib/reference/wcag/wcag-helper.d.ts +9 -0
- package/dist/lib/reference/wcag/wcag-helper.js +73 -0
- package/dist/package.json +20 -14
- package/package.json +18 -12
package/package.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uuv/a11y",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.80",
|
|
4
4
|
"type": "commonjs",
|
|
5
5
|
"author": "Louis Fredice NJAKO MOLOM (https://github.com/luifr10) & Stanley SERVICAL (https://github.com/stanlee974)",
|
|
6
6
|
"description": "A javascript lib for running a11y validation based on multiple reference(RGAA, etc)",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"repository": {
|
|
9
9
|
"type": "git",
|
|
10
|
-
"url": "https://github.com/
|
|
10
|
+
"url": "https://github.com/e2e-test-quest/uuv"
|
|
11
11
|
},
|
|
12
|
-
"homepage": "https://
|
|
12
|
+
"homepage": "https://e2e-test-quest.github.io/uuv/",
|
|
13
13
|
"keywords": [
|
|
14
14
|
"a11y",
|
|
15
15
|
"rgaa",
|
|
@@ -32,13 +32,14 @@
|
|
|
32
32
|
],
|
|
33
33
|
"scripts": {
|
|
34
34
|
"package": "npm pack --pack-destination=\"../../dist/packages\"",
|
|
35
|
-
"test": "
|
|
36
|
-
"test:run": "jest --coverage",
|
|
35
|
+
"test": "npm run e2e-test:run --",
|
|
36
|
+
"e2e-test:run": "jest --coverage",
|
|
37
37
|
"dev": "ts-node watch.ts"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@testing-library/dom": "^
|
|
41
|
-
"
|
|
40
|
+
"@testing-library/dom": "^10.0.0",
|
|
41
|
+
"axe-core": "^4.10.0",
|
|
42
|
+
"dom-accessibility-api": "^0.7.0",
|
|
42
43
|
"emulate-tab": "^1.2.1",
|
|
43
44
|
"jquery": "^3.7.1",
|
|
44
45
|
"lodash": "^4.17.21",
|
|
@@ -50,13 +51,14 @@
|
|
|
50
51
|
"@babel/preset-typescript": "^7.23.3",
|
|
51
52
|
"babel-loader": "^9.1.3",
|
|
52
53
|
"babel-plugin-lodash": "^3.3.4",
|
|
53
|
-
"chokidar": "^
|
|
54
|
-
"jest-
|
|
55
|
-
"puppeteer": "
|
|
54
|
+
"chokidar": "^4.0.0",
|
|
55
|
+
"jest-junit": "^16.0.0",
|
|
56
|
+
"jest-puppeteer": "11.0.0",
|
|
57
|
+
"puppeteer": "23.11.1",
|
|
56
58
|
"tslib": "^2.3.0",
|
|
57
|
-
"webpack": "^5.
|
|
59
|
+
"webpack": "^5.94.0",
|
|
58
60
|
"webpack-cli": "^5.1.4",
|
|
59
|
-
"webpack-dev-server": "^
|
|
61
|
+
"webpack-dev-server": "^5.0.0"
|
|
60
62
|
},
|
|
61
63
|
"files": [
|
|
62
64
|
"dist/**/*",
|
|
@@ -71,5 +73,9 @@
|
|
|
71
73
|
"types": "./dist/index.d.ts"
|
|
72
74
|
},
|
|
73
75
|
"./bundle": "./bundle/uuv-a11y.bundle.js"
|
|
76
|
+
},
|
|
77
|
+
"funding": {
|
|
78
|
+
"type": "opencollective",
|
|
79
|
+
"url": "https://opencollective.com/uuv"
|
|
74
80
|
}
|
|
75
81
|
}
|