@percy/dom 1.31.11-beta.0 → 1.31.11

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/dist/bundle.js +2 -2
  2. package/package.json +3 -3
package/dist/bundle.js CHANGED
@@ -578,8 +578,8 @@
578
578
  }
579
579
  }
580
580
  }
581
- if (config.selector && Array.isArray(config.selector)) {
582
- for (const selector of config.selector) {
581
+ if (config.selectors && Array.isArray(config.selectors)) {
582
+ for (const selector of config.selectors) {
583
583
  try {
584
584
  const matched = Array.from(dom.querySelectorAll(selector));
585
585
  if (!matched.length) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@percy/dom",
3
- "version": "1.31.11-beta.0",
3
+ "version": "1.31.11",
4
4
  "license": "MIT",
5
5
  "repository": {
6
6
  "type": "git",
@@ -9,7 +9,7 @@
9
9
  },
10
10
  "publishConfig": {
11
11
  "access": "public",
12
- "tag": "beta"
12
+ "tag": "latest"
13
13
  },
14
14
  "main": "dist/bundle.js",
15
15
  "browser": "dist/bundle.js",
@@ -35,5 +35,5 @@
35
35
  "devDependencies": {
36
36
  "interactor.js": "^2.0.0-beta.10"
37
37
  },
38
- "gitHead": "eda81f78ff9e58dac7c1c64e5f92001e5cbf3368"
38
+ "gitHead": "1f8ad9da90c9a42f8ae678f33dc4198f7d2a32d0"
39
39
  }