@applitools/eyes-storybook 3.62.0 → 3.62.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/CHANGELOG.md CHANGED
@@ -1,5 +1,43 @@
1
1
  # Changelog
2
2
 
3
+ ## [3.62.1](https://github.com/Applitools-Dev/sdk/compare/js/eyes-storybook@3.62.0...js/eyes-storybook@3.62.1) (2025-11-03)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * waitBeforeCapture from story parameter | FLD-3569 ([#3316](https://github.com/Applitools-Dev/sdk/issues/3316)) ([76f3c5a](https://github.com/Applitools-Dev/sdk/commit/76f3c5a3e52e2d031ad90a0ffab4991a33dce8e5))
9
+
10
+
11
+ ### Dependencies
12
+
13
+ * @applitools/dom-snapshot bumped to 4.14.0
14
+ #### Features
15
+
16
+ * logging errors from dom snapshot to the backend | AD-11641 ([#3291](https://github.com/Applitools-Dev/sdk/issues/3291)) ([7f5b487](https://github.com/Applitools-Dev/sdk/commit/7f5b48701ff93bf980924c9346a8241ed87f5a56))
17
+
18
+
19
+ #### Bug Fixes
20
+
21
+ * sandbox prototype pollution | FLD-3738 ([#3310](https://github.com/Applitools-Dev/sdk/issues/3310)) ([3185558](https://github.com/Applitools-Dev/sdk/commit/31855586851d5372169aae7bf0268cec139abc59))
22
+
23
+
24
+ #### Code Refactoring
25
+
26
+ * blob generation error handling ([#2501](https://github.com/Applitools-Dev/sdk/issues/2501)) ([94bc14f](https://github.com/Applitools-Dev/sdk/commit/94bc14faf3de0fd9a8ca24af4870f839756a8aad))
27
+ * @applitools/ufg-client bumped to 1.18.0
28
+ #### Features
29
+
30
+ * logging errors from dom snapshot to the backend | AD-11641 ([#3291](https://github.com/Applitools-Dev/sdk/issues/3291)) ([7f5b487](https://github.com/Applitools-Dev/sdk/commit/7f5b48701ff93bf980924c9346a8241ed87f5a56))
31
+ * @applitools/core bumped to 4.51.0
32
+ #### Features
33
+
34
+ * logging errors from dom snapshot to the backend | AD-11641 ([#3291](https://github.com/Applitools-Dev/sdk/issues/3291)) ([7f5b487](https://github.com/Applitools-Dev/sdk/commit/7f5b48701ff93bf980924c9346a8241ed87f5a56))
35
+
36
+
37
+
38
+ * @applitools/eyes bumped to 1.36.14
39
+
40
+
3
41
  ## [3.62.0](https://github.com/Applitools-Dev/sdk/compare/js/eyes-storybook@3.61.4...js/eyes-storybook@3.62.0) (2025-10-27)
4
42
 
5
43
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applitools/eyes-storybook",
3
- "version": "3.62.0",
3
+ "version": "3.62.1",
4
4
  "description": "",
5
5
  "keywords": [
6
6
  "applitools",
@@ -59,14 +59,14 @@
59
59
  "up:framework": "cd test/fixtures/storybook-versions/${APPLITOOLS_FRAMEWORK_VERSION} && npm ci"
60
60
  },
61
61
  "dependencies": {
62
- "@applitools/core": "4.50.4",
62
+ "@applitools/core": "4.51.0",
63
63
  "@applitools/driver": "1.24.0",
64
- "@applitools/eyes": "1.36.13",
64
+ "@applitools/eyes": "1.36.14",
65
65
  "@applitools/functional-commons": "1.6.0",
66
66
  "@applitools/logger": "2.2.4",
67
67
  "@applitools/monitoring-commons": "1.0.19",
68
68
  "@applitools/spec-driver-puppeteer": "1.6.6",
69
- "@applitools/ufg-client": "1.17.5",
69
+ "@applitools/ufg-client": "1.18.0",
70
70
  "@applitools/utils": "1.12.0",
71
71
  "@inquirer/prompts": "7.0.1",
72
72
  "boxen": "4.2.0",
@@ -46,7 +46,7 @@ function makeGetStoryData({logger, takeDomSnapshots, reloadPagePerStory, navigat
46
46
  await renderStoryLegacy();
47
47
  }
48
48
 
49
- const wait = story.config.waitBeforeCapture;
49
+ const wait = eyesParameters?.waitBeforeCapture ?? story.config?.waitBeforeCapture;
50
50
  if (typeof wait === 'number') {
51
51
  utils.guard.isGreaterThenOrEqual(wait, 0, {name: 'waitBeforeCapture'});
52
52
  }