@regulaforensics/ui-components 9.7.1050-rc → 9.7.1051-nightly
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/core/index.cjs +7 -7
- package/dist/core/index.css +1 -1
- package/dist/core/index.d.ts +10 -0
- package/dist/core/index.js +14674 -11800
- package/dist/main/index.cjs +7 -7
- package/dist/main/index.css +1 -1
- package/dist/main/index.d.ts +10 -0
- package/dist/main/index.js +14674 -11800
- package/dist/typings/index.cjs +1 -1
- package/dist/typings/index.d.ts +10 -0
- package/dist/typings/index.js +7 -2
- package/package.json +1 -1
package/dist/typings/index.d.ts
CHANGED
|
@@ -4433,6 +4433,11 @@ export declare interface iRImageQualityCheck {
|
|
|
4433
4433
|
* @type {eCheckResult}
|
|
4434
4434
|
*/
|
|
4435
4435
|
checkResult: eCheckResult;
|
|
4436
|
+
/**
|
|
4437
|
+
* Anomalous image areas
|
|
4438
|
+
* @type {AreaArray|undefined}
|
|
4439
|
+
*/
|
|
4440
|
+
areas?: AreaArray;
|
|
4436
4441
|
}
|
|
4437
4442
|
|
|
4438
4443
|
/**
|
|
@@ -8057,6 +8062,11 @@ export declare class RImageQualityCheck implements iRImageQualityCheck {
|
|
|
8057
8062
|
* @type {eCheckResult}
|
|
8058
8063
|
*/
|
|
8059
8064
|
checkResult: eCheckResult;
|
|
8065
|
+
/**
|
|
8066
|
+
* Anomalous image areas
|
|
8067
|
+
* @type {AreaArray|undefined}
|
|
8068
|
+
*/
|
|
8069
|
+
areas?: AreaArray;
|
|
8060
8070
|
}
|
|
8061
8071
|
|
|
8062
8072
|
/**
|
package/dist/typings/index.js
CHANGED
|
@@ -15107,7 +15107,12 @@ q([
|
|
|
15107
15107
|
F(),
|
|
15108
15108
|
V(j),
|
|
15109
15109
|
K("design:type", j === void 0 ? Object : j)
|
|
15110
|
-
], Rx.prototype, "checkResult", void 0)
|
|
15110
|
+
], Rx.prototype, "checkResult", void 0), q([
|
|
15111
|
+
I(),
|
|
15112
|
+
L(),
|
|
15113
|
+
Y(() => Fs),
|
|
15114
|
+
K("design:type", Fs === void 0 ? Object : Fs)
|
|
15115
|
+
], Rx.prototype, "areas", void 0);
|
|
15111
15116
|
//#endregion
|
|
15112
15117
|
//#region src/document-reader/typings/recipes/image/image-quality/models/image-quality.model.ts
|
|
15113
15118
|
var zx, Bx = class {
|
|
@@ -15183,7 +15188,7 @@ var Vx = (function() {
|
|
|
15183
15188
|
n.pageIndex = e.page_idx ?? 0, n.checks = [], n.checkResult = e.ImageQualityCheckList.result, e.ImageQualityCheckList.List.forEach((e) => {
|
|
15184
15189
|
if (e.result === void 0 || e.type === void 0) return;
|
|
15185
15190
|
let t = new Rx();
|
|
15186
|
-
t.checkResult = e.result, t.checkType = e.type, n.checks.push(t);
|
|
15191
|
+
t.checkResult = e.result, t.checkType = e.type, e.areas && (t.areas = e.areas), n.checks.push(t);
|
|
15187
15192
|
}), t.push(n);
|
|
15188
15193
|
}), t.filter((e) => e.checks.length);
|
|
15189
15194
|
}, Ux, Wx = class {
|