axe-core 4.8.0 → 4.8.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/axe.js +6 -6
- package/axe.min.js +2 -2
- package/locales/_template.json +4 -4
- package/package.json +1 -1
- package/sri-history.json +4 -0
package/axe.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! axe v4.8.
|
|
1
|
+
/*! axe v4.8.1
|
|
2
2
|
* Copyright (c) 2015 - 2023 Deque Systems, Inc.
|
|
3
3
|
*
|
|
4
4
|
* Your use of this Source Code Form is subject to the terms of the Mozilla Public
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
}, _typeof(obj);
|
|
23
23
|
}
|
|
24
24
|
var axe = axe || {};
|
|
25
|
-
axe.version = '4.8.
|
|
25
|
+
axe.version = '4.8.1';
|
|
26
26
|
if (typeof define === 'function' && define.amd) {
|
|
27
27
|
define('axe-core', [], function() {
|
|
28
28
|
return axe;
|
|
@@ -28321,11 +28321,11 @@
|
|
|
28321
28321
|
'target-offset': {
|
|
28322
28322
|
impact: 'serious',
|
|
28323
28323
|
messages: {
|
|
28324
|
-
pass: 'Target has sufficient space from its closest neighbors
|
|
28325
|
-
fail: 'Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of {
|
|
28324
|
+
pass: 'Target has sufficient space from its closest neighbors. Safe clickable space has a diameter of ${data.closestOffset}px which is at least ${data.minOffset}px.',
|
|
28325
|
+
fail: 'Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of ${data.closestOffset}px instead of at least ${data.minOffset}px.',
|
|
28326
28326
|
incomplete: {
|
|
28327
|
-
default: 'Element with negative tabindex has insufficient space to its closest neighbors. Safe clickable space has a diameter of {
|
|
28328
|
-
nonTabbableNeighbor: 'Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of {
|
|
28327
|
+
default: 'Element with negative tabindex has insufficient space to its closest neighbors. Safe clickable space has a diameter of ${data.closestOffset}px instead of at least ${data.minOffset}px. Is this a target?',
|
|
28328
|
+
nonTabbableNeighbor: 'Target has insufficient space to its closest neighbors. Safe clickable space has a diameter of ${data.closestOffset}px instead of at least ${data.minOffset}px. Is the neighbor a target?'
|
|
28329
28329
|
}
|
|
28330
28330
|
}
|
|
28331
28331
|
},
|