@regulaforensics/vp-frontend-document-components 7.5.1917-rc → 7.5.1924-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 +3 -0
- package/dist/index.d.ts +2 -1
- package/dist/main.iife.js +37 -37
- package/dist/main.js +10933 -10884
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -425,6 +425,7 @@ Available fields of `event.detail.data` object:
|
|
|
425
425
|
| `NO_CAMERA` | There is no camera available |
|
|
426
426
|
| `INCORRECT_CAMERA_ID` | Camera with this ID was not found |
|
|
427
427
|
| `CONNECTION_ERROR` | Connection errors |
|
|
428
|
+
| `BAD_CONFIGURATION` | Incompatible component settings are installed |
|
|
428
429
|
|
|
429
430
|
#### Remote action data
|
|
430
431
|
|
|
@@ -1233,6 +1234,8 @@ See the following table with localized labels, used in the components.
|
|
|
1233
1234
|
| **fromFilesDesktop** | Pick a document from the files and upload it | `document-reader` |
|
|
1234
1235
|
| **fromMobileDesktop** | Use your mobile camera to capture a document | `document-reader` |
|
|
1235
1236
|
| **fromGalleryMobile** | Pick a document from the gallery and upload it | `document-reader` |
|
|
1237
|
+
| **returnToComputer** | Return to the computer | `document-reader` |
|
|
1238
|
+
| **documentCaptured** | Your document has been captured | `document-reader` |
|
|
1236
1239
|
|
|
1237
1240
|
## Document Reader Processor
|
|
1238
1241
|
|
package/dist/index.d.ts
CHANGED
|
@@ -383,7 +383,8 @@ export declare enum ErrorTypes {
|
|
|
383
383
|
INCORRECT_CAMERA_ID = "INCORRECT_CAMERA_ID",
|
|
384
384
|
CONNECTION_ERROR = "CONNECTION_ERROR",
|
|
385
385
|
HTTP_NOT_SUPPORTED = "HTTP_NOT_SUPPORTED",
|
|
386
|
-
INSECURE_PAGE_CONTEXT = "INSECURE_PAGE_CONTEXT"
|
|
386
|
+
INSECURE_PAGE_CONTEXT = "INSECURE_PAGE_CONTEXT",
|
|
387
|
+
BAD_CONFIGURATION = "BAD_CONFIGURATION"
|
|
387
388
|
}
|
|
388
389
|
|
|
389
390
|
export declare enum EventActions {
|