@percy/core 1.22.0 → 1.23.0

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/config.js +40 -0
  2. package/package.json +6 -6
package/dist/config.js CHANGED
@@ -607,6 +607,46 @@ export const comparisonSchema = {
607
607
  }
608
608
  }
609
609
  }
610
+ },
611
+ ignoredElementsData: {
612
+ type: 'object',
613
+ additionalProperties: false,
614
+ required: ['ignoreElementsData'],
615
+ properties: {
616
+ ignoreElementsData: {
617
+ type: 'array',
618
+ items: {
619
+ type: 'object',
620
+ additionalProperties: false,
621
+ properties: {
622
+ selector: {
623
+ type: 'string'
624
+ },
625
+ coOrdinates: {
626
+ type: 'object',
627
+ properties: {
628
+ top: {
629
+ type: 'integer',
630
+ minimum: 0
631
+ },
632
+ left: {
633
+ type: 'integer',
634
+ minimum: 0
635
+ },
636
+ bottom: {
637
+ type: 'integer',
638
+ minimum: 0
639
+ },
640
+ right: {
641
+ type: 'integer',
642
+ minimum: 0
643
+ }
644
+ }
645
+ }
646
+ }
647
+ }
648
+ }
649
+ }
610
650
  }
611
651
  }
612
652
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@percy/core",
3
- "version": "1.22.0",
3
+ "version": "1.23.0",
4
4
  "license": "MIT",
5
5
  "repository": {
6
6
  "type": "git",
@@ -39,10 +39,10 @@
39
39
  "test:types": "tsd"
40
40
  },
41
41
  "dependencies": {
42
- "@percy/client": "1.22.0",
43
- "@percy/config": "1.22.0",
44
- "@percy/dom": "1.22.0",
45
- "@percy/logger": "1.22.0",
42
+ "@percy/client": "1.23.0",
43
+ "@percy/config": "1.23.0",
44
+ "@percy/dom": "1.23.0",
45
+ "@percy/logger": "1.23.0",
46
46
  "content-disposition": "^0.5.4",
47
47
  "cross-spawn": "^7.0.3",
48
48
  "extract-zip": "^2.0.1",
@@ -53,5 +53,5 @@
53
53
  "rimraf": "^3.0.2",
54
54
  "ws": "^8.0.0"
55
55
  },
56
- "gitHead": "473ae8925585bc77f584bbcaa7058fc967bd3c61"
56
+ "gitHead": "cd9a0de3f51233e414cd2657997ce02e8faa19e2"
57
57
  }