@diegovelasquezweb/a11y-engine 0.11.13 → 0.11.14

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/package.json +1 -1
  2. package/src/index.mjs +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@diegovelasquezweb/a11y-engine",
3
- "version": "0.11.13",
3
+ "version": "0.11.14",
4
4
  "description": "WCAG 2.2 accessibility audit engine — scanner, analyzer, and report builders",
5
5
  "type": "module",
6
6
  "license": "MIT",
package/src/index.mjs CHANGED
@@ -1031,7 +1031,7 @@ export async function getChecklist(options = {}) {
1031
1031
  }
1032
1032
 
1033
1033
  function setManualState(criterion, newState) {
1034
- const card = document.getElementById('manual-' + criterion.replace(/\./g, '-'));
1034
+ const card = document.getElementById('manual-' + criterion.replace(/\\./g, '-'));
1035
1035
  if (!card) return;
1036
1036
  const current = card.dataset.state || '';
1037
1037
  card.dataset.state = current === newState ? '' : newState;