@applitools/eyes-testcafe 1.17.3 → 1.17.4

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/CHANGELOG.md +8 -0
  2. package/package.json +27 -3
package/CHANGELOG.md CHANGED
@@ -13,6 +13,14 @@
13
13
 
14
14
 
15
15
 
16
+ ## 1.17.4 - 2022/8/25
17
+
18
+ ### Features
19
+ - Don't fail `eyes.open` when there is a failure to set viewport size in `UFG`.
20
+ ### Bug fixes
21
+ - Added `next` sub-module to support `index.d.ts`. added it both with `exports` and `typesVersions`
22
+ - fix selector issue in `testcafe`, the selector and the element are the same and once there are multi selector the it's only peak the element
23
+
16
24
  ## 1.17.3 - 2022/7/28
17
25
 
18
26
  ### Features
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applitools/eyes-testcafe",
3
- "version": "1.17.3",
3
+ "version": "1.17.4",
4
4
  "description": "Applitools Eyes SDK for TestCafe",
5
5
  "keywords": [
6
6
  "eyes-testcafe",
@@ -30,6 +30,30 @@
30
30
  ],
31
31
  "main": "./dist/index-legacy.js",
32
32
  "types": "./types/index-legacy.d.ts",
33
+ "typesVersions": {
34
+ "*": {
35
+ "dist": [
36
+ "./types/index.d.ts"
37
+ ],
38
+ "next": [
39
+ "./types/index.d.ts"
40
+ ]
41
+ }
42
+ },
43
+ "exports": {
44
+ ".": {
45
+ "types": "./types/index-legacy.d.ts",
46
+ "default": "./dist/index-legacy.js"
47
+ },
48
+ "./dist/*": {
49
+ "types": "./types/*.d.ts",
50
+ "default": "./dist/*.js"
51
+ },
52
+ "./next": {
53
+ "types": "./types/index.d.ts",
54
+ "default": "./dist/index.js"
55
+ }
56
+ },
33
57
  "files": [
34
58
  "dist",
35
59
  "types"
@@ -75,9 +99,9 @@
75
99
  },
76
100
  "dependencies": {
77
101
  "@applitools/eyes-api": "1.7.5",
78
- "@applitools/eyes-sdk-core": "13.8.19",
102
+ "@applitools/eyes-sdk-core": "13.8.23",
79
103
  "@applitools/utils": "1.3.10",
80
- "@applitools/visual-grid-client": "15.13.13"
104
+ "@applitools/visual-grid-client": "15.13.17"
81
105
  },
82
106
  "devDependencies": {
83
107
  "@applitools/api-extractor": "1.2.9",