@regulaforensics/vp-frontend-document-components 7.5.1925-nightly → 7.5.1929-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 +10 -5
- package/dist/main.iife.js +2 -2
- package/dist/main.js +364 -364
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1119,16 +1119,21 @@ you have an option to delegate scanning to another available device (i.e. phone)
|
|
|
1119
1119
|
#### 2. Configure Delegate page component on delegateURL:
|
|
1120
1120
|
- configure [backend reprocessing](#backend-reprocessing)
|
|
1121
1121
|
- backendProcessing setting for the device and delegateProcessing setting for the main page must match
|
|
1122
|
+
- set transaction tag
|
|
1123
|
+
```javascript
|
|
1124
|
+
processor.recognizerProcessParam = {
|
|
1125
|
+
tag: new URL(window.location.href).searchParams.get('tag') // assume session Id tag was added to URL params
|
|
1126
|
+
}
|
|
1127
|
+
```
|
|
1122
1128
|
- use the same tag as on the main page
|
|
1123
1129
|
```javascript
|
|
1124
|
-
|
|
1125
|
-
|
|
1126
|
-
|
|
1127
|
-
|
|
1130
|
+
element.settings = {
|
|
1131
|
+
startScreen: false, // From camera recognition is expected
|
|
1132
|
+
mobileDelegate: true
|
|
1133
|
+
}
|
|
1128
1134
|
```
|
|
1129
1135
|
- use finalizePackage() to send the data for further reprocessing
|
|
1130
1136
|
|
|
1131
|
-
|
|
1132
1137
|
### Appearance Customization
|
|
1133
1138
|
|
|
1134
1139
|
#### Font and Colors
|