@uuv/a11y 0.0.1 → 1.0.0-beta.1
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 +51 -0
- package/README.md +1 -1
- package/bundle/uuv-a11y.bundle.js +1 -1
- package/dist/README.md +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +17 -17
- package/dist/lib/engine/engine.d.ts +12 -12
- package/dist/lib/engine/engine.js +123 -123
- package/dist/lib/index.d.ts +3 -3
- package/dist/lib/index.js +19 -19
- package/dist/lib/model/checker.d.ts +14 -14
- package/dist/lib/model/checker.js +35 -35
- package/dist/lib/model/index.d.ts +4 -4
- package/dist/lib/model/index.js +20 -20
- package/dist/lib/model/reference.d.ts +55 -55
- package/dist/lib/model/reference.js +66 -66
- package/dist/lib/model/result.d.ts +57 -57
- package/dist/lib/model/result.js +144 -144
- package/dist/lib/model/rule.d.ts +99 -99
- package/dist/lib/model/rule.js +53 -53
- package/dist/lib/query/00-query.d.ts +4 -4
- package/dist/lib/query/00-query.js +2 -2
- package/dist/lib/query/accessible-name.query.d.ts +8 -8
- package/dist/lib/query/accessible-name.query.js +34 -34
- package/dist/lib/query/by-role.query.d.ts +8 -8
- package/dist/lib/query/by-role.query.js +27 -27
- package/dist/lib/query/by-tag.query.d.ts +7 -7
- package/dist/lib/query/by-tag.query.js +20 -20
- package/dist/lib/query/doctype.query.d.ts +5 -5
- package/dist/lib/query/doctype.query.js +15 -15
- package/dist/lib/query/form.query.d.ts +8 -8
- package/dist/lib/query/form.query.js +87 -87
- package/dist/lib/query/index.d.ts +6 -6
- package/dist/lib/query/index.js +22 -22
- package/dist/lib/reference/alix/alix-checker.js +82 -82
- package/dist/lib/reference/alix/alix-rules.js +1028 -1028
- package/dist/lib/reference/alix/index.js +3 -3
- package/dist/lib/reference/index.d.ts +1 -1
- package/dist/lib/reference/index.js +18 -18
- package/dist/lib/reference/rgaa/common.d.ts +2 -2
- package/dist/lib/reference/rgaa/common.js +5 -5
- package/dist/lib/reference/rgaa/coverage/coverage-helper.d.ts +2 -2
- package/dist/lib/reference/rgaa/coverage/coverage-helper.js +100 -100
- package/dist/lib/reference/rgaa/coverage/coverage-statement.json +90 -90
- package/dist/lib/reference/rgaa/index.d.ts +2 -2
- package/dist/lib/reference/rgaa/index.js +18 -18
- package/dist/lib/reference/rgaa/rgaa-checker.d.ts +8 -8
- package/dist/lib/reference/rgaa/rgaa-checker.js +31 -31
- package/dist/lib/reference/rgaa/rgaa-reference.d.ts +2 -2
- package/dist/lib/reference/rgaa/rgaa-reference.js +44 -44
- package/dist/lib/reference/rgaa/rgaa_4.1.criteres.json +4144 -4144
- package/dist/lib/reference/rgaa/rules/1-image.d.ts +14 -14
- package/dist/lib/reference/rgaa/rules/1-image.js +644 -644
- package/dist/lib/reference/rgaa/rules/10-display.d.ts +2 -2
- package/dist/lib/reference/rgaa/rules/10-display.js +3 -3
- package/dist/lib/reference/rgaa/rules/11-form.d.ts +14 -14
- package/dist/lib/reference/rgaa/rules/11-form.js +16 -16
- package/dist/lib/reference/rgaa/rules/12-navigation.d.ts +2 -2
- package/dist/lib/reference/rgaa/rules/12-navigation.js +3 -3
- package/dist/lib/reference/rgaa/rules/13-visit.d.ts +2 -2
- package/dist/lib/reference/rgaa/rules/13-visit.js +3 -3
- package/dist/lib/reference/rgaa/rules/2-frame.d.ts +14 -14
- package/dist/lib/reference/rgaa/rules/2-frame.js +34 -34
- package/dist/lib/reference/rgaa/rules/3-color.d.ts +14 -14
- package/dist/lib/reference/rgaa/rules/3-color.js +50 -50
- package/dist/lib/reference/rgaa/rules/4-multimedia.d.ts +2 -2
- package/dist/lib/reference/rgaa/rules/4-multimedia.js +3 -3
- package/dist/lib/reference/rgaa/rules/5-table.d.ts +2 -2
- package/dist/lib/reference/rgaa/rules/5-table.js +3 -3
- package/dist/lib/reference/rgaa/rules/6-link.d.ts +2 -2
- package/dist/lib/reference/rgaa/rules/6-link.js +3 -3
- package/dist/lib/reference/rgaa/rules/7-script.d.ts +2 -2
- package/dist/lib/reference/rgaa/rules/7-script.js +3 -3
- package/dist/lib/reference/rgaa/rules/8-required-element.d.ts +14 -14
- package/dist/lib/reference/rgaa/rules/8-required-element.js +78 -78
- package/dist/lib/reference/rgaa/rules/9-structure.d.ts +2 -2
- package/dist/lib/reference/rgaa/rules/9-structure.js +3 -3
- package/dist/lib/reference/rgaa/selector-helper.d.ts +17 -17
- package/dist/lib/reference/rgaa/selector-helper.js +33 -33
- package/dist/package.json +1 -0
- package/docs/diagram-a11y-rgaa.excalidraw +1654 -0
- package/docs/diagram-a11y-rgaa.png +0 -0
- package/package.json +2 -1
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
## 1.0.0-beta.1 (2024-01-08)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **a11y:** initialize @uuv/a11y lib, [#330](https://github.com/Orange-OpenSource/uuv/issues/330) ([3c27ac5](https://github.com/Orange-OpenSource/uuv/commit/3c27ac5a1698a407289123aac85e500508e2d8c6))
|
|
7
|
+
* add accessibility tab and arrows, [#166](https://github.com/Orange-OpenSource/uuv/issues/166) ([9b926cd](https://github.com/Orange-OpenSource/uuv/commit/9b926cd322049860a5f06810027dbeb7efe6d795))
|
|
8
|
+
* **assistant:** setting up electron, fixes [#132](https://github.com/Orange-OpenSource/uuv/issues/132) ([6d6e99c](https://github.com/Orange-OpenSource/uuv/commit/6d6e99cbbdb498e1d5f24a0386e52ae38fa1b161))
|
|
9
|
+
* **docs:** add autocompletion searchfield to steps definition page, [#255](https://github.com/Orange-OpenSource/uuv/issues/255) ([a0323ee](https://github.com/Orange-OpenSource/uuv/commit/a0323eec01a6351f9b60399398d145cb2bc86779))
|
|
10
|
+
* **runner-playwright:** add error details and screenshot to report, fixes [#110](https://github.com/Orange-OpenSource/uuv/issues/110) ([3c4a3cd](https://github.com/Orange-OpenSource/uuv/commit/3c4a3cd192b90242dd07bbdc4bb3ece780ee0c40))
|
|
11
|
+
* **runner-playwright:** add tags option for runner-playwright, [#416](https://github.com/Orange-OpenSource/uuv/issues/416) ([8787581](https://github.com/Orange-OpenSource/uuv/commit/87875818114bbf77ff4b35ff8ccb26d525eba450))
|
|
12
|
+
* **runner-playwright:** regenerate .spec when update, add or remove a .feature in open mode, [#236](https://github.com/Orange-OpenSource/uuv/issues/236) ([8a2599a](https://github.com/Orange-OpenSource/uuv/commit/8a2599a3fa4e577b9e626929537f2cc5f8e57bcc))
|
|
13
|
+
* setup assistant-electron package, [#132](https://github.com/Orange-OpenSource/uuv/issues/132) ([76d69c2](https://github.com/Orange-OpenSource/uuv/commit/76d69c2b5d311b40cb42c9511d224d7911133e10))
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Bug Fixes
|
|
17
|
+
|
|
18
|
+
* **assistant:** fix assistant css problem, [#120](https://github.com/Orange-OpenSource/uuv/issues/120) ([026d66a](https://github.com/Orange-OpenSource/uuv/commit/026d66ad6ad7e9090282f1734335c5a7b1e417c6))
|
|
19
|
+
* **assistant:** moving test app in component ([5bdc75b](https://github.com/Orange-OpenSource/uuv/commit/5bdc75b9ae4aec75f7a944513af0d57a4107cefd))
|
|
20
|
+
* **deps:** update dependency @cucumber/cucumber to v9.3.0 ([212250b](https://github.com/Orange-OpenSource/uuv/commit/212250be47e040e34de18af33986a1f26f7b00a2))
|
|
21
|
+
* **deps:** update dependency @cucumber/cucumber to v9.6.0 ([d0ac7ca](https://github.com/Orange-OpenSource/uuv/commit/d0ac7ca26b3d9d1fddd17d7cb6c7034ff640e483))
|
|
22
|
+
* **deps:** update dependency @cucumber/cucumber to v9.6.0 ([52a3e4c](https://github.com/Orange-OpenSource/uuv/commit/52a3e4c14fbe3b87b9b7f97b56a3e437f71f36bf))
|
|
23
|
+
* **deps:** update dependency @cypress/webpack-preprocessor to v5.17.1 ([9570e56](https://github.com/Orange-OpenSource/uuv/commit/9570e5689387a2c770994576d779a34ff242ca76))
|
|
24
|
+
* **deps:** update dependency antd to v5.11.4 ([33a0cf4](https://github.com/Orange-OpenSource/uuv/commit/33a0cf4d6973e8bcc50c805a091b11deaa9afe72))
|
|
25
|
+
* **deps:** update dependency antd to v5.12.2 ([0c472ee](https://github.com/Orange-OpenSource/uuv/commit/0c472eef7a05ed343c6aa9576092ba001c9ffb00))
|
|
26
|
+
* **deps:** update dependency antd to v5.7.3 ([452fc3c](https://github.com/Orange-OpenSource/uuv/commit/452fc3c3861509e8aba46b3efa248f365bbfb747))
|
|
27
|
+
* **deps:** update dependency axe-core to v4.7.2 ([965b9dc](https://github.com/Orange-OpenSource/uuv/commit/965b9dcb1445c369c770ed056ab990e3f966197b))
|
|
28
|
+
* **deps:** update dependency axe-core to v4.8.2 ([66b7dc2](https://github.com/Orange-OpenSource/uuv/commit/66b7dc2fbd63a9d4429964abb50f63a88e06e99b))
|
|
29
|
+
* **deps:** update dependency cypress to v12.17.2 ([49a3012](https://github.com/Orange-OpenSource/uuv/commit/49a3012f7ebf0e6ecc879d21ff86147938967607))
|
|
30
|
+
* **deps:** update dependency cypress to v12.17.3 ([35c812b](https://github.com/Orange-OpenSource/uuv/commit/35c812bdabd1a3a2d27e972d3bb5c9323497c449))
|
|
31
|
+
* **deps:** update dependency cypress to v12.17.4 ([998b754](https://github.com/Orange-OpenSource/uuv/commit/998b754038941de8b035abbd47800d45b1dac022))
|
|
32
|
+
* **deps:** update dependency cypress-axe to v1.5.0 ([816775f](https://github.com/Orange-OpenSource/uuv/commit/816775f89ec46d385e3fb6d8322a70165c7e5ea5))
|
|
33
|
+
* **deps:** update dependency cypress-real-events to v1.10.1 ([f60978d](https://github.com/Orange-OpenSource/uuv/commit/f60978da4bdd76483bcb2479324ccbbf3b36d87b))
|
|
34
|
+
* **deps:** update dependency cypress-real-events to v1.10.3 ([9e3c991](https://github.com/Orange-OpenSource/uuv/commit/9e3c9914420c6d527f7ad8b0017a0f8e26250f86))
|
|
35
|
+
* **deps:** update dependency cypress-real-events to v1.11.0 ([1694807](https://github.com/Orange-OpenSource/uuv/commit/169480777dc4c87f14a2deb5c10beb9cb0e43238))
|
|
36
|
+
* **deps:** update dependency figlet to v1.7.0 ([8fbde74](https://github.com/Orange-OpenSource/uuv/commit/8fbde7405cef7576b1cd4151785be463a823e6ef))
|
|
37
|
+
* **deps:** update dependency multiple-cucumber-html-reporter to v3.5.0 ([b8a9dab](https://github.com/Orange-OpenSource/uuv/commit/b8a9dabed814d5cea192be9aeefdeb8af93249ce))
|
|
38
|
+
* **deps:** update dependency nanoid to v3.3.6 ([82fa0c3](https://github.com/Orange-OpenSource/uuv/commit/82fa0c31207a9004a8b365fe0e92fcaac38e1be3))
|
|
39
|
+
* **deps:** update dependency nanoid to v3.3.7 ([7d1d60e](https://github.com/Orange-OpenSource/uuv/commit/7d1d60e32fd7f799c61beaace586a9869791f55b))
|
|
40
|
+
* **deps:** update dependency primereact to v9.6.3 ([f52ee84](https://github.com/Orange-OpenSource/uuv/commit/f52ee84daccc1380586e2da95d10592f9dd87e8b))
|
|
41
|
+
* **deps:** update dependency primereact to v9.6.4 ([ed3e76c](https://github.com/Orange-OpenSource/uuv/commit/ed3e76c6da6af1d9c17f98e0802ffbb1a46124a4))
|
|
42
|
+
* **deps:** update dependency ts-node to v10.9.2 ([b5c5ebb](https://github.com/Orange-OpenSource/uuv/commit/b5c5ebbc1eb9556d66c9494d45b089018580ba70))
|
|
43
|
+
* **deps:** update dependency tslib to v2.6.2 ([f43d897](https://github.com/Orange-OpenSource/uuv/commit/f43d8972746b85a386320ad67b80d9c7aa7bc313))
|
|
44
|
+
* **deps:** update docusaurus monorepo to v2.4.1 ([9c0f5fb](https://github.com/Orange-OpenSource/uuv/commit/9c0f5fb6a641f54fc97d0940acfebdfb5106a790))
|
|
45
|
+
* **deps:** update docusaurus monorepo to v2.4.3 ([9e7ccf7](https://github.com/Orange-OpenSource/uuv/commit/9e7ccf78176e5b38da147d6d26097730c7859da8))
|
|
46
|
+
* prototype pollution in lodash - cve-2019-10744, [#219](https://github.com/Orange-OpenSource/uuv/issues/219) ([4b16741](https://github.com/Orange-OpenSource/uuv/commit/4b16741d53f814958ad0ee6d761e82d92374e5e8))
|
|
47
|
+
* release 1.4.0 package.json and rchangelog was not updated, [#117](https://github.com/Orange-OpenSource/uuv/issues/117) ([cd7723d](https://github.com/Orange-OpenSource/uuv/commit/cd7723d6d790dd5fd928a5d9d41bfd075159378a))
|
|
48
|
+
* **runner-cypress:** relocate cypress-real-events dependency into project package.json, [#213](https://github.com/Orange-OpenSource/uuv/issues/213) ([ffca8dd](https://github.com/Orange-OpenSource/uuv/commit/ffca8dd21d3858d0020f6bf1974437bbf38fe6c4))
|
|
49
|
+
* **runner-playwright:** fix workspace lint during ci, [#108](https://github.com/Orange-OpenSource/uuv/issues/108) ([a3ac0d6](https://github.com/Orange-OpenSource/uuv/commit/a3ac0d68d27c34f36237b6f74b94e160b7cde9b8))
|
|
50
|
+
* **runner-playwright:** regenerate package-lock.json to fix lint, [#109](https://github.com/Orange-OpenSource/uuv/issues/109) ([70044df](https://github.com/Orange-OpenSource/uuv/commit/70044dfd9efb2c6776a85cadd18966610d2d61f2))
|
|
51
|
+
* **runner-playwright:** update @cucumber/cucumber dep version, [#93](https://github.com/Orange-OpenSource/uuv/issues/93) ([a891a70](https://github.com/Orange-OpenSource/uuv/commit/a891a70daad1cb5d7d34f25097a31d89f92b92c6))
|
package/README.md
CHANGED
|
@@ -68,7 +68,7 @@ The following references are available :
|
|
|
68
68
|
|
|
69
69
|
For each criterion of the RGAA, the following algorithm is executed :
|
|
70
70
|
|
|
71
|
-

|
|
72
72
|
|
|
73
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**
|
|
74
74
|
</p>
|