@idscan/idvc2 2.10.4 → 2.11.1
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 +12 -0
- package/dist/css/idvc.css +1 -1
- package/dist/idvc.js +1 -1
- package/dist/idvc.js.gzip +0 -0
- package/dist/index.html +71 -38
- package/dist/js/defaultConfig.ts +61 -5
- package/dist/js/environment/langs.js +1 -1
- package/dist/js/environment/networkNames.json +1 -1
- package/dist/langs.js.gzip +0 -0
- package/dist/networks/GeneralTypeDetectionYolo-chunk.js +1 -1
- package/dist/networks/PDF-chunk.js +1 -1
- package/dist/networks/yoloFaceFingers.onnx.gzip +0 -0
- package/dist/types/constatnts/imageProcessing.d.ts +1 -0
- package/dist/types/constatnts/pdf.d.ts +1 -0
- package/dist/types/defaultConfig.d.ts +1 -1
- package/dist/types/environment/langs.d.ts +7 -1
- package/dist/types/eventListeners/eventListeners.d.ts +1 -0
- package/dist/types/helpers/canvas.d.ts +4 -1
- package/dist/types/helpers/color.d.ts +1 -1
- package/dist/types/helpers/html.d.ts +1 -0
- package/dist/types/helpers/image.d.ts +14 -0
- package/dist/types/helpers/logger.d.ts +9 -0
- package/dist/types/loop.d.ts +1 -0
- package/dist/types/modules/Config.d.ts +19 -1
- package/dist/types/modules/FrontProcessing.d.ts +2 -1
- package/dist/types/modules/ui/Notification/Notification.d.ts +2 -0
- package/dist/types/modules/ui/VideoWrapper/StepPreview/StepPreview.d.ts +1 -1
- package/dist/types/modules/ui/VideoWrapper/VideoWrapper.d.ts +2 -0
- package/dist/types/neural models/generalTypeDetectionYoloModel.d.ts +6 -6
- package/dist/types/neural models/generalTypeYolo/exits.d.ts +1 -1
- package/dist/types/neural models/neuralModel.d.ts +1 -1
- package/dist/types/util.d.ts +6 -1
- package/package.json +1 -1
- package/dist/networks/generalTypeDetectionYolo.onnx.gzip +0 -0
- package/dist/networks/generalTypeDetectionYolo29052024.onnx.gzip +0 -0
- /package/dist/types/modules/step-functions/{front-mrz.d.ts → mrz.d.ts} +0 -0
package/README.md
CHANGED
|
@@ -91,6 +91,18 @@ import '@idscan/idvc2/dist/css/idvc.css'
|
|
|
91
91
|
|
|
92
92
|
## Version history
|
|
93
93
|
|
|
94
|
+
- **2.11.1**
|
|
95
|
+
- feat: added face check on document in 'front' step
|
|
96
|
+
- feat: added check that all 4 corners of the document are in the frame at the 'front' step
|
|
97
|
+
- feat: added new option 'captureTimeout' - This option allows you to set a timer in seconds, how long after the start of video capture the hook 'onCaptureTimeout' will be triggered
|
|
98
|
+
- feat: added new hook 'onCaptureTimeout' - Callback-function which will be called after the user failed to capture the document from the camera in the time specified by the 'captureTimeout' option
|
|
99
|
+
- feat: added text in spinner, after auto submitting the collected images
|
|
100
|
+
|
|
101
|
+
- **2.11.0**
|
|
102
|
+
- fix: the message of supported documents has been changed
|
|
103
|
+
- feat: new option “playPreviewAnimations” that allows you to turn off step preview animations
|
|
104
|
+
- feat: new option “autoStart” that allows you not to display the document selection and step selection screens when selecting a document
|
|
105
|
+
|
|
94
106
|
- **2.10.4**
|
|
95
107
|
- fix: web library opens in the label "Second step" when selecting another document
|
|
96
108
|
- fix: step block scrolling speed is reduced
|