@idscan/idvc2 2.8.11 → 2.10.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 -0
- package/dist/css/idvc.css +1 -1
- package/dist/idvc.js +2 -1688
- package/dist/idvc.js.LICENSE.txt +42 -0
- package/dist/idvc.js.gzip +0 -0
- package/dist/index.html +46 -47
- package/dist/js/defaultConfig.ts +5 -5
- package/dist/js/environment/generalTypeCenters.json +5569 -0
- package/dist/js/environment/langs.js +1 -1
- package/dist/js/environment/networkNames.json +3 -3
- package/dist/js/environment/stepsDescription.ts +6 -5
- package/dist/langs.js.gzip +0 -0
- package/dist/networks/Blur-chunk.js +1 -1
- package/dist/networks/Bubble-chunk.js +1 -1
- package/dist/networks/Face-chunk.js +1 -1
- package/dist/networks/GeneralTypeDetectionYolo-chunk.js +1 -0
- package/dist/networks/MRZ-chunk.js +1 -1
- package/dist/networks/PDF-chunk.js +1 -1
- package/dist/networks/ZXing-chunk.js +1 -1
- package/dist/networks/blurWorker.js.gzip +0 -0
- package/dist/networks/bubbleWorker.js.gzip +0 -0
- package/dist/networks/generalTypeDetectionYolo.onnx.gzip +0 -0
- package/dist/networks/generalTypeDetectionYolo29052024.onnx.gzip +0 -0
- package/dist/networks/mrzWorker.js.gzip +0 -0
- package/dist/networks/ort-wasm-simd.wasm.gzip +0 -0
- package/dist/networks/ort-wasm.wasm.gzip +0 -0
- package/dist/networks/pdfWorker.js.gzip +0 -0
- package/dist/types/bl.d.ts +3 -2
- package/dist/types/constatnts/animations.d.ts +1 -0
- package/dist/types/context.d.ts +1 -129
- package/dist/types/controllers/ModuleController.d.ts +26 -7
- package/dist/types/defaultConfig.d.ts +1 -1
- package/dist/types/environment/langs.d.ts +69 -8
- package/dist/types/environment/stepsDescription.d.ts +1 -0
- package/dist/types/eventListeners/eventListeners.d.ts +1 -1
- package/dist/types/eventListeners/selectDocumentType/selectHandler.d.ts +1 -3
- package/dist/types/helpers/cameraConstraints.d.ts +6 -0
- package/dist/types/helpers/canvas.d.ts +9 -3
- package/dist/types/helpers/color.d.ts +1 -0
- package/dist/types/helpers/detectLanguage.d.ts +1 -0
- package/dist/types/helpers/image.d.ts +13 -13
- package/dist/types/helpers/layoutBreakpoints.d.ts +10 -0
- package/dist/types/helpers/math.d.ts +2 -0
- package/dist/types/helpers/step-background.d.ts +2 -2
- package/dist/types/idvc.d.ts +2 -1
- package/dist/types/loader/loaderGeneralTypeDetectionYolo.d.ts +2 -0
- package/dist/types/loop.d.ts +2 -2
- package/dist/types/{modules/manualUpload.d.ts → manualUpload.d.ts} +3 -3
- package/dist/types/modules/App/UI-Types.d.ts +9 -0
- package/dist/types/modules/App/UI.d.ts +52 -0
- package/dist/types/modules/App/WebLibManualUploader.d.ts +13 -0
- package/dist/types/modules/Config.d.ts +2 -2
- package/dist/types/modules/FrontProcessing.d.ts +5 -5
- package/dist/types/modules/MrzModule.d.ts +6 -6
- package/dist/types/modules/PdfModule.d.ts +3 -3
- package/dist/types/modules/Slider.d.ts +10 -0
- package/dist/types/modules/Spinner/Spinner.d.ts +22 -0
- package/dist/types/modules/Step.d.ts +7 -3
- package/dist/types/modules/camera/camera.d.ts +2 -2
- package/dist/types/modules/camera/cameraManager.d.ts +6 -2
- package/dist/types/modules/manualUploadProcessing.d.ts +9 -9
- package/dist/types/modules/ui/CardStep/Card.d.ts +33 -0
- package/dist/types/modules/ui/CardStep/CardStep.d.ts +10 -0
- package/dist/types/modules/ui/Component.d.ts +32 -0
- package/dist/types/modules/ui/ControlButton/ControlButton.d.ts +22 -0
- package/dist/types/modules/ui/DesktopNotification/DesktopNotification.d.ts +17 -0
- package/dist/types/modules/ui/DocumentsList/DocumentsList.d.ts +21 -0
- package/dist/types/modules/ui/IDVCVersionPlank/IDVCVersionPlank.d.ts +10 -0
- package/dist/types/modules/ui/InitialLoader/initialLoader.d.ts +12 -0
- package/dist/types/modules/ui/MainScreen/MainScreen.d.ts +75 -0
- package/dist/types/modules/ui/MessageBox/MessageBox.d.ts +30 -0
- package/dist/types/modules/ui/Modal.d.ts +5 -7
- package/dist/types/modules/ui/ModeSwitch/ModeSwitch.d.ts +20 -0
- package/dist/types/modules/ui/Notification/Notification.d.ts +24 -0
- package/dist/types/modules/ui/SelectDocumentType.d.ts +8 -11
- package/dist/types/modules/ui/Spinner/SpinnerUI.d.ts +11 -0
- package/dist/types/modules/ui/StepsList/StepsList.d.ts +48 -0
- package/dist/types/modules/ui/Uploader/UploaderUI.d.ts +39 -0
- package/dist/types/modules/ui/VideoWrapper/CanvasWrapper.d.ts +46 -0
- package/dist/types/modules/ui/{Flashlight.d.ts → VideoWrapper/Flashlight.d.ts} +8 -8
- package/dist/types/modules/ui/VideoWrapper/MaskCapture.d.ts +47 -0
- package/dist/types/modules/ui/VideoWrapper/StepPreview/StepPreview.d.ts +16 -0
- package/dist/types/modules/ui/VideoWrapper/UIHints.d.ts +27 -0
- package/dist/types/modules/ui/VideoWrapper/VideoWrapper.d.ts +44 -0
- package/dist/types/modules/ui/selectDocumentType/documentSelectedEvent.d.ts +2 -2
- package/dist/types/neural models/anglesModel.d.ts +1 -0
- package/dist/types/neural models/generalTypeDetectionYoloModel.d.ts +24 -0
- package/dist/types/neural models/generalTypeYolo/exits.d.ts +5 -0
- package/dist/types/neural models/mrzModel.d.ts +2 -2
- package/dist/types/neural models/neuralModel.d.ts +1 -1
- package/dist/types/stepProcessing.d.ts +3 -3
- package/dist/types/types/context.d.ts +121 -0
- package/dist/types/util.d.ts +1 -1
- package/package.json +7 -4
- package/dist/networks/ClassLocal-chunk.js +0 -1
- package/dist/networks/classLocal03032023.onnx.gzip +0 -0
- package/dist/types/loader/loaderClassLocal.d.ts +0 -3
- package/dist/types/modules/heic.d.ts +0 -11
- package/dist/types/modules/ui/MaskCapture.d.ts +0 -76
- package/dist/types/modules/ui/MessageBox.d.ts +0 -21
- package/dist/types/modules/ui/canvas.d.ts +0 -48
- package/dist/types/modules/ui/forceCaptruringBtn.d.ts +0 -12
- package/dist/types/modules/ui/hints.d.ts +0 -17
- package/dist/types/modules/ui/limitations.d.ts +0 -2
- package/dist/types/modules/ui/manualSwitchBtn.d.ts +0 -30
- package/dist/types/modules/ui/spinner.d.ts +0 -13
- package/dist/types/modules/uploader.d.ts +0 -58
- package/dist/types/neural models/classLocal/exits.d.ts +0 -4
- package/dist/types/neural models/classLocalModel.d.ts +0 -28
- package/dist/types/ui.d.ts +0 -93
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.10.0**
|
|
95
|
+
- feat: the UI has been completely updated
|
|
96
|
+
- feat: added option 'allowSubmitWithWarnings'
|
|
97
|
+
- feat: the 'hideDocumentTitle' option is deprecated
|
|
98
|
+
- feat: obsolete modules have been removed
|
|
99
|
+
|
|
100
|
+
- **2.9.0**
|
|
101
|
+
- feat: added a new public method to show the loader.
|
|
102
|
+
Method: showLoader(val: boolean, bottomText?: string, topText?: string)
|
|
103
|
+
- feat: improved document recognition and detection.
|
|
104
|
+
- fix: license error display
|
|
105
|
+
|
|
94
106
|
- **2.8.11**
|
|
95
107
|
- fix: spinner does not close after config update
|
|
96
108
|
|