@applitools/eyes 1.26.3 → 1.26.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.
- package/CHANGELOG.md +7 -0
- package/dist/input/CheckSettings.js +2 -2
- package/dist/input/Configuration.js +642 -605
- package/package.json +1 -1
- package/types/input/Configuration.d.ts +286 -268
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.26.4](https://github.com/Applitools-Dev/sdk/compare/js/eyes@1.26.3...js/eyes@1.26.4) (2024-11-11)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* organize configuration alphabetically and add getters and setters ([684490d](https://github.com/Applitools-Dev/sdk/commit/684490d8d85d1dd0f07bafdcc38febfcf7c58d08))
|
|
9
|
+
|
|
3
10
|
## [1.26.3](https://github.com/Applitools-Dev/sdk/compare/js/eyes@1.26.2...js/eyes@1.26.3) (2024-11-09)
|
|
4
11
|
|
|
5
12
|
|
|
@@ -391,7 +391,7 @@ class CheckSettingsImageFluent extends CheckSettingsBaseFluent {
|
|
|
391
391
|
enablePatterns: this._settings.enablePatterns,
|
|
392
392
|
ignoreDisplacements: this._settings.ignoreDisplacements,
|
|
393
393
|
ignoreCaret: this._settings.ignoreCaret,
|
|
394
|
-
ignoreRegions: (_a = this._settings.ignoreRegions) === null || _a === void 0 ? void 0 : _a.map(this.toCoreCodedRegion),
|
|
394
|
+
ignoreRegions: (_a = this._settings.ignoreRegions) === null || _a === void 0 ? void 0 : _a.map(this.toCoreCodedRegion),
|
|
395
395
|
layoutRegions: (_b = this._settings.layoutRegions) === null || _b === void 0 ? void 0 : _b.map(this.toCoreCodedRegion),
|
|
396
396
|
strictRegions: (_c = this._settings.strictRegions) === null || _c === void 0 ? void 0 : _c.map(this.toCoreCodedRegion),
|
|
397
397
|
contentRegions: (_d = this._settings.contentRegions) === null || _d === void 0 ? void 0 : _d.map(this.toCoreCodedRegion),
|
|
@@ -591,7 +591,7 @@ class CheckSettingsAutomationFluent extends CheckSettingsBaseFluent {
|
|
|
591
591
|
enablePatterns: this._settings.enablePatterns,
|
|
592
592
|
ignoreDisplacements: this._settings.ignoreDisplacements,
|
|
593
593
|
ignoreCaret: this._settings.ignoreCaret,
|
|
594
|
-
ignoreRegions: (_a = this._settings.ignoreRegions) === null || _a === void 0 ? void 0 : _a.map(this.toCoreCodedRegion),
|
|
594
|
+
ignoreRegions: (_a = this._settings.ignoreRegions) === null || _a === void 0 ? void 0 : _a.map(this.toCoreCodedRegion),
|
|
595
595
|
layoutRegions: (_b = this._settings.layoutRegions) === null || _b === void 0 ? void 0 : _b.map(this.toCoreCodedRegion),
|
|
596
596
|
strictRegions: (_c = this._settings.strictRegions) === null || _c === void 0 ? void 0 : _c.map(this.toCoreCodedRegion),
|
|
597
597
|
contentRegions: (_d = this._settings.contentRegions) === null || _d === void 0 ? void 0 : _d.map(this.toCoreCodedRegion),
|