bry-biometric-collector 2.2.7 → 2.2.8-RC01
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 +24 -1
- package/dist/CameraBtn_acfe282c_2.2.8-RC01.js +641 -0
- package/dist/DocumentCollector_81c6ec20_2.2.8-RC01.js +1394 -0
- package/dist/FaceCollector_8301e4cd_2.2.8-RC01.js +2369 -0
- package/dist/bry-biometric-collector-main.js +2 -1
- package/dist/{en-us_55a6748c_2.2.7.js → en-us_dfe3f804_2.2.8-RC01.js} +17 -14
- package/dist/es_14b74e4b_2.2.8-RC01.js +252 -0
- package/dist/face_api_0e3ce8c8_2.2.8-RC01.js +36289 -0
- package/dist/fingersApi_49c3f701_2.2.8-RC01.js +147 -0
- package/dist/index-no-detector_acb82d83_2.2.8-RC01.js +10396 -0
- package/dist/index.d.ts +8 -2
- package/dist/index.js +2 -1
- package/dist/main_62d50f90_2.2.8-RC01.js +25579 -0
- package/dist/{pt-br_3ddd5d1d_2.2.7.js → pt-br_2a12cf43_2.2.8-RC01.js} +5 -2
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/dist/CameraBtn_ced4ca16_2.2.7.js +0 -513
- package/dist/DocumentCollector_515a55ec_2.2.7.js +0 -1009
- package/dist/FaceCollector_f4ebbfa6_2.2.7.js +0 -1679
- package/dist/face_api_0e3ce8c8_2.2.7.js +0 -36288
- package/dist/fingersApi_11bef636_2.2.7.js +0 -146
- package/dist/index-no-detector_acb82d83_2.2.7.js +0 -10395
- package/dist/main_dd4c53c5_2.2.7.js +0 -23738
package/README.md
CHANGED
@@ -46,6 +46,12 @@ Currently supported tag parameters:
|
|
46
46
|
|
47
47
|
Example: `lottie_color="221 89 234"` -->
|
48
48
|
|
49
|
+
- **weights_path**: Should point to folder containing the weights, it will be used to perform image recognition.
|
50
|
+
|
51
|
+
Default: `"https://unpkg.com/bry-biometric-collector@latest/dist/weights/"`
|
52
|
+
|
53
|
+
Example: `weights_path="https://myapp.mydomain.com/public/weights/"`
|
54
|
+
|
49
55
|
- **extension_name**: The extension name that the webcomponent should use to perform finger capturing.
|
50
56
|
We require the extension to be able to access the fingerprint scanner. The webcomponent uses this extension by calling window[extension_name].
|
51
57
|
|
@@ -143,12 +149,29 @@ Currently supported tag parameters:
|
|
143
149
|
|
144
150
|
Example: `video_filter=white`
|
145
151
|
|
146
|
-
- **show_config_button**: Wether to hide config button. It will be shown below the video.
|
152
|
+
- **show_config_button**: Wether to hide config button. It will be shown below the video on the left side.
|
147
153
|
|
148
154
|
Default: `true`
|
149
155
|
|
150
156
|
Example: `show_config_button=false`
|
151
157
|
|
158
|
+
- **show_auto_capture_button**: Whether to hide the auto capture button. If you enable a button to trigger automatic capture, it will be shown below the oval.
|
159
|
+
|
160
|
+
Default: `false`
|
161
|
+
|
162
|
+
Example: `show_auto_capture_button`
|
163
|
+
|
164
|
+
- **language**: Language of the webcomponent that should override the browser language. Possible values are `"pt", "en", "es"`.
|
165
|
+
|
166
|
+
Default: `Browser language`
|
167
|
+
|
168
|
+
Example: `language="es"`
|
169
|
+
|
170
|
+
- **show_camera_button**: Wether to hide swap camera button. It will be shown below the video on the right side.
|
171
|
+
|
172
|
+
Default: `true`
|
173
|
+
Example: `show_camera_button=false`
|
174
|
+
|
152
175
|
### **Run-time Configuration**
|
153
176
|
|
154
177
|
#### **Functions**
|