@idscan/idvc2 2.12.2 → 2.14.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.
Files changed (41) hide show
  1. package/README.md +17 -1
  2. package/dist/idvc.js +1 -1
  3. package/dist/idvc.js.gzip +0 -0
  4. package/dist/index.html +28 -32
  5. package/dist/js/defaultConfig.ts +1 -18
  6. package/dist/js/environment/documentTypes.ts +3 -10
  7. package/dist/js/environment/langs.js +1 -1
  8. package/dist/js/environment/stepsDescription.ts +1 -9
  9. package/dist/langs.js.gzip +0 -0
  10. package/dist/networks/Face-chunk.js +1 -1
  11. package/dist/networks/PDF-chunk.js +1 -1
  12. package/dist/types/constatnts/imageProcessing.d.ts +3 -0
  13. package/dist/types/constatnts/pdf.d.ts +1 -0
  14. package/dist/types/defaultConfig.d.ts +2 -1
  15. package/dist/types/environment/documentTypes.d.ts +3 -4
  16. package/dist/types/environment/langs.d.ts +7 -9
  17. package/dist/types/environment/stepsDescription.d.ts +1 -9
  18. package/dist/types/helpers/cornersCapture.d.ts +5 -0
  19. package/dist/types/modules/App/UI.d.ts +7 -6
  20. package/dist/types/modules/Config.d.ts +4 -9
  21. package/dist/types/modules/PdfModule.d.ts +2 -1
  22. package/dist/types/modules/camera/camera.d.ts +2 -1
  23. package/dist/types/modules/manualUploadProcessing.d.ts +20 -9
  24. package/dist/types/modules/step-functions/pdf.d.ts +0 -1
  25. package/dist/types/modules/step-result-processing/pdf.d.ts +1 -1
  26. package/dist/types/modules/stepFunctions.d.ts +1 -1
  27. package/dist/types/modules/stepResultProcessing.d.ts +1 -1
  28. package/dist/types/modules/ui/DocumentsList/{DocumentsList.d.ts → InitScreen.d.ts} +4 -4
  29. package/dist/types/modules/ui/MainScreen/MainScreen.d.ts +4 -5
  30. package/dist/types/modules/ui/MessageBox/MessageBox.d.ts +1 -1
  31. package/dist/types/modules/ui/SelectDocumentType.d.ts +3 -8
  32. package/dist/types/modules/ui/StepsList/{StepsList.d.ts → StepsScreen.d.ts} +2 -5
  33. package/dist/types/modules/ui/Uploader/UploaderUI.d.ts +1 -0
  34. package/dist/types/modules/ui/VideoWrapper/MaskCapture.d.ts +1 -1
  35. package/dist/types/modules/ui/VideoWrapper/UIHints.d.ts +2 -1
  36. package/dist/types/neural models/generalTypeYolo/exits.d.ts +1 -0
  37. package/dist/types/types/context.d.ts +2 -2
  38. package/dist/types/types/modules/camera.enum.d.ts +3 -1
  39. package/dist/types/util.d.ts +5 -18
  40. package/package.json +1 -1
  41. /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,23 @@ import IDVC from '@idscan/idvc2'
82
81
 
83
82
  ## Version history
84
83
 
84
+ - **2.14.0**
85
+ - feat: added capture limits depending on document type for the 'front' step. For example, now it will not be possible to validate the 'front' step using a passport if the 'Green Card' document is selected, etc.
86
+ - feat: new pdf track string format in manual upload mode
87
+ - fix: fixed a issue where a user had a non-valid license key, but the web library would still start if the 'autoStart' option was set to true.
88
+
89
+ - **2.13.0**
90
+ - 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.
91
+ - feat: changed notification when loading an image with small resolution
92
+ - feat: 'VIN' document type and 'photo' step type have been removed
93
+ - feat: updated text in case there is a camera, but it is not suitable for document validation
94
+ - feat: visual changes for document capture bounding box
95
+ - feat: changed the logic of the document type change button for the case when there is only one document in the configuration
96
+ - fix: removed the ability to capture a document through page element code manipulation
97
+ - fix: spanish language UI issues
98
+ - fix: the 'Plus' element on the page was blinking in case the user uploaded the document using the Drag&Drop events
99
+ - 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
100
+
85
101
  - **2.12.2**
86
102
  - feat: improved manual upload capture
87
103