axe-core 4.11.0 → 4.11.1-canary.0d4e4e7

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.
@@ -81,6 +81,10 @@
81
81
  "description": "Ensure all elements with a role attribute use a valid value",
82
82
  "help": "ARIA roles used must conform to valid values"
83
83
  },
84
+ "aria-tab-name": {
85
+ "description": "Ensure every ARIA tab node has an accessible name",
86
+ "help": "ARIA tab nodes must have an accessible name"
87
+ },
84
88
  "aria-text": {
85
89
  "description": "Ensure role=\"text\" is used on elements with no focusable descendants",
86
90
  "help": "\"role=text\" should have no focusable descendants"
@@ -358,7 +362,7 @@
358
362
  "help": "scope attribute should be used correctly"
359
363
  },
360
364
  "scrollable-region-focusable": {
361
- "description": "Ensure elements that have scrollable content are accessible by keyboard",
365
+ "description": "Ensure elements that have scrollable content are accessible by keyboard in Safari",
362
366
  "help": "Scrollable region must have keyboard access"
363
367
  },
364
368
  "select-name": {
@@ -462,6 +466,7 @@
462
466
  "fail": {
463
467
  "singular": "aria-errormessage value `${data.values}` must use a technique to announce the message (e.g., aria-live, aria-describedby, role=alert, etc.)",
464
468
  "plural": "aria-errormessage values `${data.values}` must use a technique to announce the message (e.g., aria-live, aria-describedby, role=alert, etc.)",
469
+ "unsupported": "Multiple IDs in aria-errormessage is not widely supported in assistive technologies",
465
470
  "hidden": "aria-errormessage value `${data.values}` cannot reference a hidden element"
466
471
  },
467
472
  "incomplete": {
@@ -628,7 +633,8 @@
628
633
  "equalRatio": "Element has a 1:1 contrast ratio with the background",
629
634
  "shortTextContent": "Element content is too short to determine if it is actual text content",
630
635
  "nonBmp": "Element content contains only non-text characters",
631
- "pseudoContent": "Element's background color could not be determined due to a pseudo element"
636
+ "pseudoContent": "Element's background color could not be determined due to a pseudo element",
637
+ "colorParse": "Could not parse color string ${data.colorParse}"
632
638
  }
633
639
  },
634
640
  "color-contrast": {
@@ -655,7 +661,8 @@
655
661
  "equalRatio": "Element has a 1:1 contrast ratio with the background",
656
662
  "shortTextContent": "Element content is too short to determine if it is actual text content",
657
663
  "nonBmp": "Element content contains only non-text characters",
658
- "pseudoContent": "Element's background color could not be determined due to a pseudo element"
664
+ "pseudoContent": "Element's background color could not be determined due to a pseudo element",
665
+ "colorParse": "Could not parse color string ${data.colorParse}"
659
666
  }
660
667
  },
661
668
  "link-in-text-block-style": {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "axe-core",
3
3
  "description": "Accessibility engine for automated Web UI testing",
4
- "version": "4.11.0",
4
+ "version": "4.11.1-canary.0d4e4e7",
5
5
  "license": "MPL-2.0",
6
6
  "engines": {
7
7
  "node": ">=4"
@@ -78,7 +78,7 @@
78
78
  "build": "grunt",
79
79
  "patch": "npx patch-package",
80
80
  "unpatch": "npx patch-package --reverse",
81
- "eslint": "eslint --color --format stylish '{lib,test,build,doc}/**/*.js' 'Gruntfile.js'",
81
+ "eslint": "eslint --color --format stylish '{lib,test,build,doc}/**/*.js' 'Gruntfile.js' '.github/bin/*.mjs'",
82
82
  "test": "npm run test:tsc && run-s \"test:unit:* -- {@}\" --",
83
83
  "test:tsc": "tsc",
84
84
  "test:unit": "karma start test/karma.conf.js",
@@ -108,7 +108,6 @@
108
108
  "version": "echo \"use 'npm run release' to bump axe-core version\" && exit 1",
109
109
  "release": "git fetch origin --tags --force && standard-version -a",
110
110
  "rule-gen": "node build/rule-generator",
111
- "next-release": "standard-version --scripts.prebump=./build/next-version.js --skip.commit=true --skip.tag=true",
112
111
  "sri-update": "grunt build && node build/sri-update && git add sri-history.json",
113
112
  "sri-validate": "node build/sri-update --validate",
114
113
  "fmt": "prettier --write .",
@@ -128,7 +127,6 @@
128
127
  "@types/node": "^4.9.5",
129
128
  "aria-practices": "github:w3c/aria-practices#ce0336bd82d7d3651abcbde86af644197ddbc629",
130
129
  "aria-query": "^5.1.3",
131
- "browser-driver-manager": "1.0.4",
132
130
  "chai": "^4.3.7",
133
131
  "chalk": "^4.x",
134
132
  "chromedriver": "latest",
@@ -146,7 +144,7 @@
146
144
  "eslint-plugin-mocha-no-only": "^1.2.0",
147
145
  "execa": "5.x",
148
146
  "glob": "^10.3.10",
149
- "globals": "^16.0.0",
147
+ "globals": "^17.1.0",
150
148
  "grunt": "^1.5.3",
151
149
  "grunt-babel": "^8.0.0",
152
150
  "grunt-bytesize": "^0.2.0",
@@ -158,7 +156,7 @@
158
156
  "http-server": "^14.1.1",
159
157
  "husky": "^9.0.7",
160
158
  "inquirer": "^8.2.5",
161
- "jquery": "^3.6.3",
159
+ "jquery": "^4.0.0",
162
160
  "jsdoc": "^4.0.2",
163
161
  "jsdom": "^27.0.0",
164
162
  "karma": "^6.4.1",
@@ -194,7 +192,7 @@
194
192
  "*.{md,json,ts,html}": [
195
193
  "prettier --write"
196
194
  ],
197
- "*.js": [
195
+ "*.{js,mjs}": [
198
196
  "prettier --write",
199
197
  "eslint --fix"
200
198
  ]
package/sri-history.json CHANGED
@@ -398,5 +398,9 @@
398
398
  "4.11.0": {
399
399
  "axe.js": "sha256-RKE4K0g6QAePcUi+Tcnr567YKVEwnoToqe+Qd7w1mzo=",
400
400
  "axe.min.js": "sha256-6eWGPDOodPCbwBrNkjS348hxR59e74gC+lglREZebQE="
401
+ },
402
+ "4.11.1": {
403
+ "axe.js": "sha256-fJzJf10MFoA2ixvyHh+fGvPuVq6JXm+IdhMVfaKAnYY=",
404
+ "axe.min.js": "sha256-fb+r38YGKTbXnIc927X4EaEhn8o5KL2Myd2B8eZfRyA="
401
405
  }
402
406
  }