@regulaforensics/vp-frontend-document-components 7.5.1916-nightly → 7.5.1917-rc
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 -3
- package/dist/index.d.ts +1 -2
- package/dist/main.iife.js +37 -37
- package/dist/main.js +10884 -10933
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -425,7 +425,6 @@ 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 |
|
|
429
428
|
|
|
430
429
|
#### Remote action data
|
|
431
430
|
|
|
@@ -1234,8 +1233,6 @@ See the following table with localized labels, used in the components.
|
|
|
1234
1233
|
| **fromFilesDesktop** | Pick a document from the files and upload it | `document-reader` |
|
|
1235
1234
|
| **fromMobileDesktop** | Use your mobile camera to capture a document | `document-reader` |
|
|
1236
1235
|
| **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` |
|
|
1239
1236
|
|
|
1240
1237
|
## Document Reader Processor
|
|
1241
1238
|
|
package/dist/index.d.ts
CHANGED
|
@@ -383,8 +383,7 @@ 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"
|
|
387
|
-
BAD_CONFIGURATION = "BAD_CONFIGURATION"
|
|
386
|
+
INSECURE_PAGE_CONTEXT = "INSECURE_PAGE_CONTEXT"
|
|
388
387
|
}
|
|
389
388
|
|
|
390
389
|
export declare enum EventActions {
|