bry-biometric-collector 2.2.18-RC03 → 2.2.18

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 CHANGED
@@ -531,12 +531,11 @@ The web component listens to and emits a few events. The events emitted are:
531
531
  - **face-unconformities-validated**: When the photo is captured and after evaluating it, an event of this kind is emitted with their picture like so:
532
532
 
533
533
  ```ts
534
- {detail: {bodyParts[{bodyPart:'FACE', data: string, livenessBlob: string *, livenessResult: string},
535
- {bodyPart:'FACE', resized: true, data: string}]} *
534
+ {detail: {bodyParts[{bodyPart:'FACE', data: string, livenessBlob: string *, livenessResult: string}]}
536
535
  * only if liveness_enable=true
537
536
  ```
538
537
 
539
- - **low-face-quality**: When the photo is captured and the distance between the eyes is below the minimum required (min_eye_to_eye_dist), this event is emitted.
538
+ - **low-quality-face**: When the photo is captured and the distance between the eyes is below the minimum required (min_eye_to_eye_dist), this event is emitted.
540
539
 
541
540
  ```ts
542
541
  {detail: {bodyParts[{bodyPart: 'FACE', minEyeToEyeDist: number, capturedEyeToEyeDist: number}], errorCode: string, translatedError: string}}
@@ -592,7 +591,11 @@ Due to the computational power required to find finger matches in the browser, t
592
591
  enable_minutiae="true"
593
592
  collector_select="BOTH"
594
593
  >
595
- <img slot="validating-fingerprint-gif" src="https://www.w3schools.com/html/programming.gif" alt="" />
594
+ <img
595
+ slot="validating-fingerprint-gif"
596
+ src="https://www.w3schools.com/html/programming.gif"
597
+ style="height: 100px; width: 100px;"
598
+ alt="" />
596
599
  </biometric-collector>
597
600
  ```
598
601