@idscan/idvc2 2.11.0 → 2.12.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 +18 -13
- package/dist/idvc.js +1 -1
- package/dist/idvc.js.gzip +0 -0
- package/dist/index.html +71 -39
- package/dist/js/defaultConfig.ts +45 -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/Face-chunk.js +1 -1
- 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/bl.d.ts +0 -1
- 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 +13 -1
- package/dist/types/helpers/canvas.d.ts +5 -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/helpers/styleInject.d.ts +1 -0
- package/dist/types/idvc.d.ts +2 -3
- package/dist/types/loop.d.ts +1 -0
- package/dist/types/modules/App/UI.d.ts +2 -4
- package/dist/types/modules/Config.d.ts +11 -1
- package/dist/types/modules/FrontProcessing.d.ts +2 -1
- package/dist/types/modules/Spinner/{Spinner.d.ts → Loader.d.ts} +5 -5
- package/dist/types/modules/face/MeshFace.d.ts +9 -1
- package/dist/types/modules/step-functions/pdf.d.ts +1 -1
- package/dist/types/modules/ui/MainScreen/MainScreen.d.ts +6 -3
- package/dist/types/modules/ui/Notification/Notification.d.ts +2 -0
- package/dist/types/modules/ui/Spinner/{SpinnerUI.d.ts → LoaderUI.d.ts} +3 -3
- package/dist/types/modules/ui/VideoWrapper/MaskCapture.d.ts +7 -4
- 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 +2 -1
- package/dist/css/idvc.css +0 -1
- package/dist/networks/generalTypeDetectionYolo29052024.onnx.gzip +0 -0
- package/dist/types/modules/ui/InitialLoader/initialLoader.d.ts +0 -12
- /package/dist/types/modules/step-functions/{front-mrz.d.ts → mrz.d.ts} +0 -0
|
Binary file
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { Component } from '../Component';
|
|
2
|
-
type InitialLoaderState = {
|
|
3
|
-
isHidden: boolean;
|
|
4
|
-
bottomText?: string;
|
|
5
|
-
topText?: string;
|
|
6
|
-
};
|
|
7
|
-
export declare class InitialLoader extends Component<InitialLoaderState> {
|
|
8
|
-
constructor(mountElement: any, state: InitialLoaderState);
|
|
9
|
-
protected addEventListeners(): void;
|
|
10
|
-
changeState(state: InitialLoaderState): void;
|
|
11
|
-
}
|
|
12
|
-
export {};
|
|
File without changes
|