@axe-core/react 4.4.3-alpha.289 → 4.4.3-alpha.290

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 (2) hide show
  1. package/README.md +0 -11
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -102,14 +102,3 @@ npm run test:debug
102
102
  ## Compatibility
103
103
 
104
104
  react-axe uses advanced console logging features and works best in the Chrome browser, with limited functionality in Safari and Firefox.
105
-
106
- ## Advantages
107
-
108
- I have been asked how this is different from modules like react-a11y which test the jsx.
109
-
110
- The main difference is that react-axe tests the accessibility of the rendered DOM. This is important because many accessibility issues exist at the intersection of the DOM and the CSS and unless you have a fully rendered DOM, you will get two sorts of inaccuracies:
111
-
112
- 1. False negatives because of lacking information. Example is in order to test color contrast you must know the foreground and background colors, and
113
- 1. False positives because the element being evaluated is not in its final state and the information to communicate this to the testing algorithm is not available. Example is an inert piece of code that will be augmented once it becomes active.
114
-
115
- If you have nice clean code, number 2 will be negligible but number 1 will always be a concern.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@axe-core/react",
3
- "version": "4.4.3-alpha.289+9b2b375",
3
+ "version": "4.4.3-alpha.290+785b879",
4
4
  "description": "Dynamic accessibility analysis for React using axe-core",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -80,5 +80,5 @@
80
80
  "<rootDir>/test/jest.setup.js"
81
81
  ]
82
82
  },
83
- "gitHead": "9b2b375616988640dc836dad99a29f0c88bb20b8"
83
+ "gitHead": "785b8799a00e77c61c2186276e325c062772f1f3"
84
84
  }