@idscan/idvc2 2.12.2 → 2.13.0
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 -1
- package/dist/idvc.js +1 -1
- package/dist/idvc.js.gzip +0 -0
- package/dist/index.html +25 -29
- package/dist/js/defaultConfig.ts +1 -10
- package/dist/js/environment/documentTypes.ts +3 -10
- package/dist/js/environment/langs.js +1 -1
- package/dist/js/environment/stepsDescription.ts +1 -9
- package/dist/langs.js.gzip +0 -0
- package/dist/networks/Face-chunk.js +1 -1
- package/dist/networks/PDF-chunk.js +1 -1
- package/dist/types/constatnts/pdf.d.ts +1 -0
- package/dist/types/defaultConfig.d.ts +2 -1
- package/dist/types/environment/documentTypes.d.ts +3 -4
- package/dist/types/environment/langs.d.ts +6 -9
- package/dist/types/environment/stepsDescription.d.ts +1 -9
- package/dist/types/helpers/cornersCapture.d.ts +5 -0
- package/dist/types/modules/App/UI.d.ts +7 -6
- package/dist/types/modules/Config.d.ts +1 -4
- package/dist/types/modules/PdfModule.d.ts +1 -1
- package/dist/types/modules/camera/camera.d.ts +2 -1
- package/dist/types/modules/manualUploadProcessing.d.ts +20 -9
- package/dist/types/modules/step-functions/pdf.d.ts +0 -1
- package/dist/types/modules/step-result-processing/pdf.d.ts +1 -1
- package/dist/types/modules/stepFunctions.d.ts +1 -1
- package/dist/types/modules/stepResultProcessing.d.ts +1 -1
- package/dist/types/modules/ui/DocumentsList/{DocumentsList.d.ts → InitScreen.d.ts} +4 -4
- package/dist/types/modules/ui/MainScreen/MainScreen.d.ts +4 -5
- package/dist/types/modules/ui/MessageBox/MessageBox.d.ts +1 -1
- package/dist/types/modules/ui/SelectDocumentType.d.ts +3 -8
- package/dist/types/modules/ui/StepsList/{StepsList.d.ts → StepsScreen.d.ts} +2 -5
- package/dist/types/modules/ui/Uploader/UploaderUI.d.ts +1 -0
- package/dist/types/modules/ui/VideoWrapper/MaskCapture.d.ts +1 -1
- package/dist/types/modules/ui/VideoWrapper/UIHints.d.ts +2 -1
- package/dist/types/neural models/generalTypeYolo/exits.d.ts +1 -0
- package/dist/types/types/context.d.ts +2 -2
- package/dist/types/types/modules/camera.enum.d.ts +3 -1
- package/dist/types/util.d.ts +5 -18
- package/package.json +1 -1
- /package/dist/types/modules/{Spinner → Loader}/Loader.d.ts +0 -0
package/README.md
CHANGED
|
@@ -9,7 +9,6 @@ Upon being switched on, the library integrates the component of capturing the do
|
|
|
9
9
|
- Capture of MRZ
|
|
10
10
|
- Capture of faces
|
|
11
11
|
- Capture of QR code
|
|
12
|
-
- Capture of VIN
|
|
13
12
|
|
|
14
13
|
## Demo
|
|
15
14
|
|
|
@@ -82,6 +81,18 @@ import IDVC from '@idscan/idvc2'
|
|
|
82
81
|
|
|
83
82
|
## Version history
|
|
84
83
|
|
|
84
|
+
- **2.13.0**
|
|
85
|
+
- feat: an option 'enableFourCornerCapture' for back-side steps 'pdf', 'back', 'mrz' (not Passport) has been added. This option allows you to capture 4 corners of the document.
|
|
86
|
+
- feat: changed notification when loading an image with small resolution
|
|
87
|
+
- feat: 'VIN' document type and 'photo' step type have been removed
|
|
88
|
+
- feat: updated text in case there is a camera, but it is not suitable for document validation
|
|
89
|
+
- feat: visual changes for document capture bounding box
|
|
90
|
+
- feat: changed the logic of the document type change button for the case when there is only one document in the configuration
|
|
91
|
+
- fix: removed the ability to capture a document through page element code manipulation
|
|
92
|
+
- fix: spanish language UI issues
|
|
93
|
+
- fix: the 'Plus' element on the page was blinking in case the user uploaded the document using the Drag&Drop events
|
|
94
|
+
- fix: even if the 'fixFrontOrientAfterUpload' option is set to true, incorrect documents will not be rotated, but will be displayed in their original form along with a warning message
|
|
95
|
+
|
|
85
96
|
- **2.12.2**
|
|
86
97
|
- feat: improved manual upload capture
|
|
87
98
|
|