@uuv/a11y 1.0.0-beta.7 → 1.0.0-beta.71

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.
Files changed (53) hide show
  1. package/CHANGELOG.md +691 -0
  2. package/LICENSE +0 -2
  3. package/README.md +7 -7
  4. package/bundle/uuv-a11y.bundle.js +2 -2
  5. package/bundle/uuv-a11y.bundle.js.LICENSE.txt +12 -0
  6. package/dist/CHANGELOG.md +691 -0
  7. package/dist/README.md +7 -7
  8. package/dist/lib/engine/engine.js +17 -7
  9. package/dist/lib/model/checker.d.ts +3 -12
  10. package/dist/lib/model/checker.js +0 -33
  11. package/dist/lib/model/checklist-checker.d.ts +15 -0
  12. package/dist/lib/model/checklist-checker.js +61 -0
  13. package/dist/lib/model/index.d.ts +2 -1
  14. package/dist/lib/model/index.js +2 -1
  15. package/dist/lib/model/reference.js +1 -1
  16. package/dist/lib/model/result.js +1 -1
  17. package/dist/lib/model/rule.d.ts +8 -8
  18. package/dist/lib/model/rule.js +3 -3
  19. package/dist/lib/model/uuv-a11y-result.d.ts +54 -0
  20. package/dist/lib/model/uuv-a11y-result.js +17 -0
  21. package/dist/lib/query/accessible-name.query.d.ts +2 -0
  22. package/dist/lib/query/accessible-name.query.js +8 -2
  23. package/dist/lib/query/compliant-attributes/attribut-specification.d.ts +24 -2
  24. package/dist/lib/query/compliant-attributes/attribut-specification.js +64 -2
  25. package/dist/lib/query/compliant-attributes/attribute-checker.d.ts +24 -0
  26. package/dist/lib/query/compliant-attributes/attribute-checker.js +36 -0
  27. package/dist/lib/reference/index.d.ts +1 -0
  28. package/dist/lib/reference/index.js +1 -0
  29. package/dist/lib/reference/rgaa/coverage/coverage-helper.js +18 -9
  30. package/dist/lib/reference/rgaa/coverage/coverage-statement.json +39 -2
  31. package/dist/lib/reference/rgaa/rgaa-checker.d.ts +3 -3
  32. package/dist/lib/reference/rgaa/rgaa-checker.js +2 -2
  33. package/dist/lib/reference/rgaa/rules/1-image.d.ts +4 -4
  34. package/dist/lib/reference/rgaa/rules/1-image.js +2 -2
  35. package/dist/lib/reference/rgaa/rules/11-form.d.ts +4 -4
  36. package/dist/lib/reference/rgaa/rules/2-frame.d.ts +4 -4
  37. package/dist/lib/reference/rgaa/rules/3-color.d.ts +4 -4
  38. package/dist/lib/reference/rgaa/rules/5-table.d.ts +12 -1
  39. package/dist/lib/reference/rgaa/rules/5-table.js +292 -1
  40. package/dist/lib/reference/rgaa/rules/6-link.d.ts +12 -1
  41. package/dist/lib/reference/rgaa/rules/6-link.js +147 -1
  42. package/dist/lib/reference/rgaa/rules/8-required-element.d.ts +4 -4
  43. package/dist/lib/reference/rgaa/rules/8-required-element.js +57 -3
  44. package/dist/lib/reference/rgaa/selector-helper.d.ts +36 -0
  45. package/dist/lib/reference/rgaa/selector-helper.js +73 -1
  46. package/dist/lib/reference/wcag/index.d.ts +1 -0
  47. package/dist/lib/reference/wcag/index.js +17 -0
  48. package/dist/lib/reference/wcag/wcag-checker.d.ts +14 -0
  49. package/dist/lib/reference/wcag/wcag-checker.js +86 -0
  50. package/dist/lib/reference/wcag/wcag-helper.d.ts +9 -0
  51. package/dist/lib/reference/wcag/wcag-helper.js +73 -0
  52. package/dist/package.json +17 -13
  53. package/package.json +15 -11
package/LICENSE CHANGED
@@ -2,8 +2,6 @@
2
2
 
3
3
  MIT License
4
4
 
5
- Copyright (c) 2023 Orange
6
-
7
5
  Permission is hereby granted, free of charge, to any person obtaining a copy of
8
6
  this software and associated documentation files (the "Software"), to deal in
9
7
  the Software without restriction, including without limitation the rights to use,
package/README.md CHANGED
@@ -1,9 +1,9 @@
1
1
 
2
2
  # @uuv/a11y
3
3
  <div align="center">
4
- <a href="https://orange-opensource.github.io/uuv/">
4
+ <a href="https://e2e-test-quest.github.io/uuv/">
5
5
  <picture>
6
- <img alt="UUV Logo" src="https://orange-opensource.github.io/uuv/img/uuv.png">
6
+ <img alt="UUV Logo" src="https://e2e-test-quest.github.io/uuv/img/uuv.png">
7
7
  </picture>
8
8
  </a>
9
9
  </div>
@@ -70,7 +70,7 @@ For each criterion of the RGAA, the following algorithm is executed :
70
70
 
71
71
  ![Diagram a11Y RGAA](https://unpkg.com/@uuv/a11y/docs/diagram-a11y-rgaa.png)
72
72
 
73
- **Consult [this page](https://orange-opensource.github.io/uuv/docs/tools/uuv-a11y#rgaa) to find out which RGAA verifications are implemented in the library**
73
+ **Consult [this page](https://e2e-test-quest.github.io/uuv/docs/tools/uuv-a11y#rgaa) to find out which RGAA verifications are implemented in the library**
74
74
  </p>
75
75
 
76
76
  ## Usage
@@ -156,22 +156,22 @@ For each criterion of the RGAA, the following algorithm is executed :
156
156
  }
157
157
  """
158
158
  ```
159
- You can also see the [French example](https://github.com/Orange-OpenSource/uuv/blob/main/example/fr-rgaa.feature) or the complete [English example](https://github.com/Orange-OpenSource/uuv/blob/main/example/en-rgaa.feature).
159
+ You can also see the [French example](https://github.com/e2e-test-quest/uuv/blob/main/example/fr-rgaa.feature) or the complete [English example](https://github.com/e2e-test-quest/uuv/blob/main/example/en-rgaa.feature).
160
160
  3. Then execute your tests :
161
161
  ```shell
162
162
  npx uuv e2e
163
163
  ```
164
164
 
165
165
  ## Want to contribute ?
166
- Your help is welcome, see the [Contributors guide](https://github.com/Orange-OpenSource/uuv/blob/main/packages/a11y/CONTRIBUTING.md).
166
+ Your help is welcome, see the [Contributors guide](https://github.com/e2e-test-quest/uuv/blob/main/packages/a11y/CONTRIBUTING.md).
167
167
 
168
168
  ## License
169
169
 
170
- [<a href="https://github.com/Orange-OpenSource/uuv/blob/main/LICENSE">
170
+ [<a href="https://github.com/e2e-test-quest/uuv/blob/main/LICENSE">
171
171
  <img src="https://img.shields.io/badge/license-MIT-blue" alt="MIT license"/>
172
172
  </a>](https://spdx.org/licenses/MIT.html)
173
173
 
174
- This project is licensed under the terms of the [MIT license](https://github.com/Orange-OpenSource/uuv/blob/main/LICENSE).
174
+ This project is licensed under the terms of the [MIT license](https://github.com/e2e-test-quest/uuv/blob/main/LICENSE).
175
175
 
176
176
  ## Authors
177
177