@uuv/a11y 1.0.0-beta.5 → 1.0.0-beta.6

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 (51) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/CONTRIBUTING.md +1 -1
  3. package/bundle/uuv-a11y.bundle.js +2 -2
  4. package/dist/CHANGELOG.md +9 -0
  5. package/dist/CONTRIBUTING.md +1 -1
  6. package/dist/lib/engine/engine.js +15 -13
  7. package/dist/lib/model/result.d.ts +2 -1
  8. package/dist/lib/model/rule.d.ts +0 -7
  9. package/dist/lib/model/rule.js +0 -2
  10. package/dist/lib/query/00-query.d.ts +6 -1
  11. package/dist/lib/query/00-query.js +10 -0
  12. package/dist/lib/query/accessible-name.query.d.ts +2 -2
  13. package/dist/lib/query/accessible-name.query.js +1 -1
  14. package/dist/lib/query/by-role.query.d.ts +4 -3
  15. package/dist/lib/query/by-role.query.js +22 -6
  16. package/dist/lib/query/by-sibling.query.d.ts +12 -0
  17. package/dist/lib/query/by-sibling.query.js +100 -0
  18. package/dist/lib/query/by-tag.query.d.ts +2 -2
  19. package/dist/lib/query/by-tag.query.js +2 -1
  20. package/dist/lib/query/compliant-attributes/attribut-specification.d.ts +9 -0
  21. package/dist/lib/query/compliant-attributes/attribut-specification.js +27 -0
  22. package/dist/lib/query/compliant-attributes/attribute-checker.d.ts +18 -0
  23. package/dist/lib/query/compliant-attributes/attribute-checker.js +30 -0
  24. package/dist/lib/query/compliant-attributes/compliant-attributes.query.d.ts +9 -0
  25. package/dist/lib/query/compliant-attributes/compliant-attributes.query.js +24 -0
  26. package/dist/lib/query/doctype.query.d.ts +2 -2
  27. package/dist/lib/query/doctype.query.js +2 -1
  28. package/dist/lib/query/form.query.d.ts +2 -2
  29. package/dist/lib/query/index.d.ts +7 -0
  30. package/dist/lib/query/index.js +7 -0
  31. package/dist/lib/query/operators/and-query.d.ts +8 -0
  32. package/dist/lib/query/operators/and-query.js +25 -0
  33. package/dist/lib/query/operators/operator-query.d.ts +8 -0
  34. package/dist/lib/query/operators/operator-query.js +14 -0
  35. package/dist/lib/query/operators/or-query.d.ts +8 -0
  36. package/dist/lib/query/operators/or-query.js +24 -0
  37. package/dist/lib/reference/rgaa/coverage/coverage-statement.json +16 -16
  38. package/dist/lib/reference/rgaa/rules/1-image.d.ts +0 -1
  39. package/dist/lib/reference/rgaa/rules/1-image.js +51 -77
  40. package/dist/lib/reference/rgaa/rules/11-form.d.ts +0 -1
  41. package/dist/lib/reference/rgaa/rules/11-form.js +0 -1
  42. package/dist/lib/reference/rgaa/rules/2-frame.d.ts +0 -1
  43. package/dist/lib/reference/rgaa/rules/2-frame.js +0 -2
  44. package/dist/lib/reference/rgaa/rules/3-color.d.ts +0 -1
  45. package/dist/lib/reference/rgaa/rules/3-color.js +0 -3
  46. package/dist/lib/reference/rgaa/rules/8-required-element.d.ts +0 -1
  47. package/dist/lib/reference/rgaa/rules/8-required-element.js +0 -6
  48. package/dist/lib/reference/rgaa/selector-helper.d.ts +4 -1
  49. package/dist/lib/reference/rgaa/selector-helper.js +10 -10
  50. package/dist/package.json +2 -1
  51. package/package.json +2 -1
package/CHANGELOG.md CHANGED
@@ -1,3 +1,15 @@
1
+ ## [1.0.0-beta.6](https://github.com/Orange-OpenSource/uuv/compare/a11y-v1.0.0-beta.5...a11y-v1.0.0-beta.6) (2024-01-23)
2
+
3
+
4
+ ### Features
5
+
6
+ * **a11y:** add RGAA 1.1.6 and 1.1.3, [#429](https://github.com/Orange-OpenSource/uuv/issues/429) ([0e65889](https://github.com/Orange-OpenSource/uuv/commit/0e65889b479651c27e16c29fdb8e5123fe689f03))
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **runner-playwright:** update dependency axe-core to v4.8.3 ([4623485](https://github.com/Orange-OpenSource/uuv/commit/46234851677cf0e5f0479fe30bc786ae2a607f1e))
12
+
1
13
  ## [1.0.0-beta.5](https://github.com/Orange-OpenSource/uuv/compare/a11y-v1.0.0-beta.4...a11y-v1.0.0-beta.5) (2024-01-21)
2
14
 
3
15
 
package/CONTRIBUTING.md CHANGED
@@ -40,7 +40,7 @@ For example :
40
40
  help: "adapt these attributes to be relevant"
41
41
  })
42
42
  ```
43
- **Adding a new rule may require you to create a new query, in which case remember to write the corresponding automated tests in the `a11y/test/query/**` directory.**
43
+ **Adding a new rule may require you to create a new query, in which case remember to write the corresponding automated tests in the `a11y/test/query/**` directory and export it `index.ts` of same directory.**
44
44
 
45
45
 
46
46
  4. Create or enhance the automated topic test file in the directory `a11y/test/checker/**`.