@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.
Files changed (48) hide show
  1. package/CHANGELOG.md +756 -0
  2. package/LICENSE +0 -2
  3. package/README.md +21 -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 +748 -0
  7. package/dist/README.md +21 -7
  8. package/dist/lib/model/checker.d.ts +3 -12
  9. package/dist/lib/model/checker.js +0 -33
  10. package/dist/lib/model/checklist-checker.d.ts +15 -0
  11. package/dist/lib/model/checklist-checker.js +61 -0
  12. package/dist/lib/model/index.d.ts +1 -0
  13. package/dist/lib/model/index.js +1 -0
  14. package/dist/lib/model/reference.js +1 -1
  15. package/dist/lib/model/result.js +1 -1
  16. package/dist/lib/model/rule.d.ts +8 -8
  17. package/dist/lib/model/rule.js +3 -3
  18. package/dist/lib/model/uuv-a11y-result.d.ts +54 -0
  19. package/dist/lib/model/uuv-a11y-result.js +17 -0
  20. package/dist/lib/query/accessible-name.query.d.ts +2 -0
  21. package/dist/lib/query/accessible-name.query.js +8 -2
  22. package/dist/lib/query/compliant-attributes/attribut-specification.d.ts +9 -0
  23. package/dist/lib/query/compliant-attributes/attribut-specification.js +29 -4
  24. package/dist/lib/query/compliant-attributes/attribute-checker.d.ts +12 -0
  25. package/dist/lib/query/compliant-attributes/attribute-checker.js +18 -0
  26. package/dist/lib/reference/index.d.ts +1 -0
  27. package/dist/lib/reference/index.js +1 -0
  28. package/dist/lib/reference/rgaa/coverage/coverage-helper.js +18 -9
  29. package/dist/lib/reference/rgaa/coverage/coverage-statement.json +22 -3
  30. package/dist/lib/reference/rgaa/rgaa-checker.d.ts +3 -3
  31. package/dist/lib/reference/rgaa/rgaa-checker.js +2 -2
  32. package/dist/lib/reference/rgaa/rules/1-image.d.ts +4 -4
  33. package/dist/lib/reference/rgaa/rules/11-form.d.ts +4 -4
  34. package/dist/lib/reference/rgaa/rules/2-frame.d.ts +4 -4
  35. package/dist/lib/reference/rgaa/rules/3-color.d.ts +4 -4
  36. package/dist/lib/reference/rgaa/rules/5-table.d.ts +4 -4
  37. package/dist/lib/reference/rgaa/rules/6-link.d.ts +12 -1
  38. package/dist/lib/reference/rgaa/rules/6-link.js +147 -1
  39. package/dist/lib/reference/rgaa/rules/8-required-element.d.ts +4 -4
  40. package/dist/lib/reference/rgaa/rules/8-required-element.js +57 -3
  41. package/dist/lib/reference/wcag/index.d.ts +1 -0
  42. package/dist/lib/reference/wcag/index.js +17 -0
  43. package/dist/lib/reference/wcag/wcag-checker.d.ts +14 -0
  44. package/dist/lib/reference/wcag/wcag-checker.js +86 -0
  45. package/dist/lib/reference/wcag/wcag-helper.d.ts +9 -0
  46. package/dist/lib/reference/wcag/wcag-helper.js +73 -0
  47. package/dist/package.json +20 -14
  48. package/package.json +18 -12
package/LICENSE CHANGED
@@ -2,8 +2,6 @@
2
2
 
3
3
  MIT License
4
4
 
5
- Copyright (c) 2024 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,36 @@ 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
+
176
+ ## Support UUV through Open Collective
177
+
178
+ If you want to help UUV grow, you can fund the project directly via [Open Collective](https://opencollective.com/uuv).
179
+ Every contribution helps us dedicate more time and energy to improving this open-source tool.
180
+
181
+ <a href="https://opencollective.com/uuv/contribute" target="_blank">
182
+ <img src="https://opencollective.com/uuv/contribute/button@2x.png?color=blue" width=300 />
183
+ </a>
184
+
185
+
186
+ Interested in becoming a sponsor?
187
+ We welcome sponsorships of all sizes!
188
+ Contact us via [GitHub](https://github.com/e2e-test-quest/uuv/discussions) or through [Open Collective](https://opencollective.com/uuv) to discuss opportunities.
175
189
 
176
190
  ## Authors
177
191