@regulaforensics/vp-frontend-document-components 7.5.1874-nightly → 7.5.1876-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/README.md +0 -4
- package/dist/index.d.ts +3 -6
- package/dist/main.iife.js +37 -37
- package/dist/main.js +8997 -9190
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1125,9 +1125,6 @@ See the following table with localized labels, used in the components.
|
|
|
1125
1125
|
| **preparingCamera** | Preparing the camera... | `document-reader`, `camera-snapshot` |
|
|
1126
1126
|
| **noCameraAvailable** | No camera available | `document-reader`, `camera-snapshot` |
|
|
1127
1127
|
| **incorrectCameraId** | No camera with the specified ID found. | `document-reader`, `camera-snapshot` |
|
|
1128
|
-
| **allowAccessToCamera** | Allow access to the camera and reload this page to continue. | `document-reader`, `camera-snapshot` |
|
|
1129
|
-
| **cameraConnection** | Make sure the camera is connected correctly. | `document-reader`, `camera-snapshot` |
|
|
1130
|
-
| **checkCameraId** | Check if the specified camera ID is correct. | `document-reader`, `camera-snapshot` |
|
|
1131
1128
|
| **gallery** | Gallery | `document-reader`, `camera-snapshot` |
|
|
1132
1129
|
| **files** | Files | `document-reader`, `camera-snapshot` |
|
|
1133
1130
|
| **camera** | Camera | `document-reader`, `camera-snapshot` |
|
|
@@ -1136,7 +1133,6 @@ See the following table with localized labels, used in the components.
|
|
|
1136
1133
|
| **httpNotSupported** | HTTPS is not used | `document-reader` |
|
|
1137
1134
|
| **insecurePageContext** | Insecure page context | `document-reader` |
|
|
1138
1135
|
| **timeout** | Timeout | `document-reader` |
|
|
1139
|
-
| **processing** | Processing... | `document-reader` |
|
|
1140
1136
|
| **preparingService** | Preparing the service... | `document-reader` |
|
|
1141
1137
|
| **placeDocumentIntoFrame** | Fit the document into the frame | `document-reader` |
|
|
1142
1138
|
| **noFocus** | No camera focus | `document-reader` |
|
package/dist/index.d.ts
CHANGED
|
@@ -380,7 +380,9 @@ export declare enum ErrorTypes {
|
|
|
380
380
|
CAMERA_PERMISSION_DENIED = "CAMERA_PERMISSION_DENIED",
|
|
381
381
|
NO_CAMERA = "NO_CAMERA",
|
|
382
382
|
INCORRECT_CAMERA_ID = "INCORRECT_CAMERA_ID",
|
|
383
|
-
CONNECTION_ERROR = "CONNECTION_ERROR"
|
|
383
|
+
CONNECTION_ERROR = "CONNECTION_ERROR",
|
|
384
|
+
HTTP_NOT_SUPPORTED = "HTTP_NOT_SUPPORTED",
|
|
385
|
+
INSECURE_PAGE_CONTEXT = "INSECURE_PAGE_CONTEXT"
|
|
384
386
|
}
|
|
385
387
|
|
|
386
388
|
export declare enum EventActions {
|
|
@@ -393,10 +395,6 @@ export declare enum EventActions {
|
|
|
393
395
|
PRESS_CHANGE_CAMERA_BUTTON = "PRESS_CHANGE_CAMERA_BUTTON",
|
|
394
396
|
PRESS_REMOTE_DEVICE_BUTTON = "PRESS_REMOTE_DEVICE_BUTTON",
|
|
395
397
|
PRESS_MIRRORING_BUTTON = "PRESS_MIRRORING_BUTTON",
|
|
396
|
-
PRESS_CONNECT_BUTTON = "PRESS_CONNECT_BUTTON",
|
|
397
|
-
PRESS_DISCONNECT_BUTTON = "PRESS_DISCONNECT_BUTTON",
|
|
398
|
-
PRESS_AUTOSCAN_BUTTON = "PRESS_AUTOSCAN_BUTTON",
|
|
399
|
-
PRESS_PROCESS_BUTTON = "PRESS_PROCESS_BUTTON",
|
|
400
398
|
NEW_PAGE_AVAILABLE = "NEW_PAGE_AVAILABLE",
|
|
401
399
|
NEW_PAGE_STARTED = "NEW_PAGE_STARTED",
|
|
402
400
|
CLOSE = "CLOSE",
|
|
@@ -405,7 +403,6 @@ export declare enum EventActions {
|
|
|
405
403
|
VIDEO_STARTED = "VIDEO_STARTED",
|
|
406
404
|
VIDEO_STOPPED = "VIDEO_STOPPED",
|
|
407
405
|
FILE_PROCESS_STARTED = "FILE_PROCESS_STARTED",
|
|
408
|
-
PROCESS_STARTED = "PROCESS_STARTED",
|
|
409
406
|
PROCESS_FINISHED = "PROCESS_FINISHED",
|
|
410
407
|
SERVICE_INITIALIZED = "SERVICE_INITIALIZED",
|
|
411
408
|
REMOTE_TRANSACTION_UPLOADED = "REMOTE_TRANSACTION_UPLOADED",
|