@regulaforensics/vp-frontend-document-components 8.1.2223-rc → 8.1.2224-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/index.d.ts +5 -2
- package/dist/main.iife.js +26 -26
- package/dist/main.js +12629 -12578
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -53,6 +53,10 @@ export declare interface CameraSnapshotSettings {
|
|
|
53
53
|
uploadFileButton?: boolean;
|
|
54
54
|
mirrorButton?: boolean;
|
|
55
55
|
mirrorType?: MirrorType;
|
|
56
|
+
statusPositionMultiplier?: number;
|
|
57
|
+
statusIcon?: boolean;
|
|
58
|
+
activityIndicatorPortraitPositionMultiplier?: number;
|
|
59
|
+
activityIndicatorLandscapePositionMultiplier?: number;
|
|
56
60
|
}
|
|
57
61
|
|
|
58
62
|
export declare type CaptureFrameType = {
|
|
@@ -174,6 +178,7 @@ export declare class DocumentReaderProcessor {
|
|
|
174
178
|
}
|
|
175
179
|
|
|
176
180
|
export declare type DocumentReaderProcessParam = Pick<ProcessParams, 'generateNumericCodes' | 'returnUncroppedImage' | 'log' | 'resultTypeOutput' | 'customParams' | 'imageOutputMaxHeight' | 'imageOutputMaxWidth' | 'fieldTypesFilter' | 'dateFormat' | 'measureSystem' | 'imageDpiOutMax' | 'alreadyCropped' | 'fastDocDetect' | 'updateOCRValidityByGlare' | 'returnCroppedBarcode' | 'respectImageQuality' | 'forceDocFormat' | 'noGraphics' | 'depersonalizeLog' | 'multiDocOnImage' | 'shiftExpiryDate' | 'minimalHolderAge' | 'mrzFormatsFilter' | 'forceReadMrzBeforeLocate' | 'parseBarcodes' | 'splitNames' | 'doublePageSpread' | 'strictImageQuality' | 'doDetectCan' | 'generateDoublePageSpreadImage' | 'mrzDetectMode' | 'strictBarcodeDigitalSignatureCheck' | 'selectLongestNames'> & {
|
|
181
|
+
generateAlpha2Codes?: boolean;
|
|
177
182
|
returnPackageForReprocess?: boolean;
|
|
178
183
|
scenario?: InternalScenarios;
|
|
179
184
|
multipageProcessing?: boolean;
|
|
@@ -263,8 +268,6 @@ export declare interface DocumentReaderSettings extends CameraSnapshotSettings {
|
|
|
263
268
|
backgroundMaskAlpha?: number;
|
|
264
269
|
cameraFramePortraitAspectRatio?: number;
|
|
265
270
|
cameraFrameLandscapeAspectRatio?: number;
|
|
266
|
-
statusPositionMultiplier?: number;
|
|
267
|
-
statusIcon?: boolean;
|
|
268
271
|
cameraFrameOffsetWidth?: number;
|
|
269
272
|
cameraFrameVerticalPositionMultiplier?: number;
|
|
270
273
|
cameraFrameHorizontalPositionMultiplier?: number;
|