@idscan/idvc2 2.15.0 → 3.0.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 (51) hide show
  1. package/README.md +7 -0
  2. package/dist/idvc.js +1 -1
  3. package/dist/idvc.js.LICENSE.txt +6 -0
  4. package/dist/idvc.js.gzip +0 -0
  5. package/dist/index.html +8 -36
  6. package/dist/js/environment/documentTypes.ts +1 -1
  7. package/dist/networks/Blur-chunk.js +1 -1
  8. package/dist/networks/Face-chunk.js +1 -1
  9. package/dist/networks/GeneralTypeDetectionYolo-chunk.js +1 -1
  10. package/dist/networks/ZXing-chunk.js +1 -1
  11. package/dist/networks/blurWorker.js.gzip +0 -0
  12. package/dist/networks/mrzWorker.js.gzip +0 -0
  13. package/dist/networks/pdfWorker.js.gzip +0 -0
  14. package/dist/types/environment/documentTypes.d.ts +1 -1
  15. package/dist/types/eventListeners/selectDocumentType/selectHandler.d.ts +1 -1
  16. package/dist/types/modules/App/UI.d.ts +1 -1
  17. package/dist/types/modules/Loader/Loader.d.ts +1 -1
  18. package/dist/types/modules/ui/CardStep/Card.d.ts +3 -5
  19. package/dist/types/modules/ui/CardStep/card-template.d.ts +5 -0
  20. package/dist/types/modules/ui/{Component.d.ts → ComponentLit.d.ts} +9 -11
  21. package/dist/types/modules/ui/ControlButton/ControlButton.d.ts +7 -9
  22. package/dist/types/modules/ui/ControlButton/control-button-template.d.ts +4 -0
  23. package/dist/types/modules/ui/ControlButton/controlButtonTemplate.d.ts +1 -0
  24. package/dist/types/modules/ui/DesktopNotification/DesktopNotification.d.ts +4 -6
  25. package/dist/types/modules/ui/DesktopNotification/desktop-notification-template.d.ts +2 -0
  26. package/dist/types/modules/ui/IDVCVersionPlank/IDVCVersionPlank.d.ts +4 -6
  27. package/dist/types/modules/ui/IDVCVersionPlank/idvc-version-plank-template.d.ts +2 -0
  28. package/dist/types/modules/ui/InitScreeen/InitScreen.d.ts +20 -0
  29. package/dist/types/modules/ui/InitScreeen/init-screen-template.d.ts +4 -0
  30. package/dist/types/modules/ui/Loader/LoaderUI.d.ts +10 -0
  31. package/dist/types/modules/ui/Loader/loader-template.d.ts +2 -0
  32. package/dist/types/modules/ui/MainScreen/MainScreen.d.ts +3 -3
  33. package/dist/types/modules/ui/MessageBox/MessageBox.d.ts +5 -12
  34. package/dist/types/modules/ui/MessageBox/message-box-template.d.ts +2 -0
  35. package/dist/types/modules/ui/ModeSwitch/ModeSwitch.d.ts +7 -8
  36. package/dist/types/modules/ui/ModeSwitch/mode-switch-template.d.ts +4 -0
  37. package/dist/types/modules/ui/Notification/Notification.d.ts +5 -6
  38. package/dist/types/modules/ui/Notification/notification-template.d.ts +2 -0
  39. package/dist/types/modules/ui/StatusPlank/StatusPlank.d.ts +5 -6
  40. package/dist/types/modules/ui/StatusPlank/status-plank-template.d.ts +2 -0
  41. package/dist/types/modules/ui/StepsList/StepsScreen.d.ts +2 -2
  42. package/dist/types/modules/ui/Uploader/UploaderUI.d.ts +10 -16
  43. package/dist/types/modules/ui/Uploader/uploader-template.d.ts +9 -0
  44. package/dist/types/modules/ui/VideoWrapper/StepPreview/StepPreview.d.ts +3 -3
  45. package/dist/types/modules/ui/VideoWrapper/StepPreview/step-preview-template.d.ts +2 -0
  46. package/dist/types/modules/ui/{selectDocumentType/documentSelectedEvent.d.ts → documentSelectedEvent.d.ts} +1 -1
  47. package/dist/types/neural models/generalTypeDetectionYoloModel.d.ts +1 -0
  48. package/package.json +2 -4
  49. package/dist/types/modules/ui/DocumentsList/InitScreen.d.ts +0 -21
  50. package/dist/types/modules/ui/Spinner/LoaderUI.d.ts +0 -11
  51. /package/dist/types/modules/{blurModule.d.ts → BlurModule.d.ts} +0 -0
package/README.md CHANGED
@@ -81,6 +81,13 @@ import IDVC from '@idscan/idvc2'
81
81
 
82
82
  ## Version history
83
83
 
84
+ - **3.0.0**
85
+ - feat: added document type information in the 'sumbit' event output parameters
86
+ - feat: when the allowSubmitWithWarnings parameter is set to true, the user will be taken to the step selection screen where the submit button is displayed
87
+ - feat: camera access error text has been changed
88
+ - feat: improved quality of capturing all sides of the document when capturing from the camera
89
+ - feat: dynamically executable code was removed from internal wasm modules
90
+
84
91
  - **2.15.0**
85
92
  - feat: document type 'ID' has been removed and split into 2 types: 'DL' & 'IC'. The workflow of these document types is the same as 'ID'
86
93
  - feat: added option 'autocaptureConfidence'. The option specifies the strictness of the type recognition decision filter. The value must be a floating point number between 0 and 1. Where 1 is the strictest filter, 0 is the least strict.