@percy/client 1.27.0-beta.0 → 1.27.0-beta.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/dist/client.js +3 -1
- package/package.json +4 -4
package/dist/client.js
CHANGED
|
@@ -365,7 +365,8 @@ export class PercyClient {
|
|
|
365
365
|
tiles = [],
|
|
366
366
|
externalDebugUrl,
|
|
367
367
|
ignoredElementsData,
|
|
368
|
-
domInfoSha
|
|
368
|
+
domInfoSha,
|
|
369
|
+
consideredElementsData
|
|
369
370
|
} = {}) {
|
|
370
371
|
validateId('snapshot', snapshotId);
|
|
371
372
|
// Remove post percy api deploy
|
|
@@ -385,6 +386,7 @@ export class PercyClient {
|
|
|
385
386
|
attributes: {
|
|
386
387
|
'external-debug-url': externalDebugUrl || null,
|
|
387
388
|
'ignore-elements-data': ignoredElementsData || null,
|
|
389
|
+
'consider-elements-data': consideredElementsData || null,
|
|
388
390
|
'dom-info-sha': domInfoSha || null
|
|
389
391
|
},
|
|
390
392
|
relationships: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@percy/client",
|
|
3
|
-
"version": "1.27.0-beta.
|
|
3
|
+
"version": "1.27.0-beta.1",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -32,8 +32,8 @@
|
|
|
32
32
|
"test:coverage": "yarn test --coverage"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@percy/env": "1.27.0-beta.
|
|
36
|
-
"@percy/logger": "1.27.0-beta.
|
|
35
|
+
"@percy/env": "1.27.0-beta.1",
|
|
36
|
+
"@percy/logger": "1.27.0-beta.1"
|
|
37
37
|
},
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "40cdf9c38613ccaf5e3707cd2cd2d2778ffbd5dd"
|
|
39
39
|
}
|