@regulaforensics/idv-document 3.2.281-rc → 3.2.283
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/dist/index.d.ts +8 -1
- package/dist/main.iife.js +44 -44
- package/dist/main.js +55 -52
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { InternalScenarios } from '@regulaforensics/vp-frontend-document-components';
|
|
2
2
|
import { LitElement } from 'lit';
|
|
3
3
|
import { MirrorType } from '@regulaforensics/vp-frontend-document-components';
|
|
4
|
+
import { ModuleType as ModuleType_2 } from '@regulaforensics/vp-frontend-document-components';
|
|
4
5
|
import { TemplateResult } from 'lit-html';
|
|
5
6
|
|
|
6
7
|
declare abstract class BaseModule<TModuleProps = unknown, TModulesConfig = unknown> extends HTMLElement {
|
|
@@ -50,7 +51,8 @@ declare type DocumentModuleProps = DocumentGalleryProps | DocumentReaderProps;
|
|
|
50
51
|
|
|
51
52
|
declare type DocumentModulesConfig = {
|
|
52
53
|
docreader: {
|
|
53
|
-
devLicense
|
|
54
|
+
devLicense?: string;
|
|
55
|
+
module?: ModuleType_2;
|
|
54
56
|
};
|
|
55
57
|
};
|
|
56
58
|
|
|
@@ -146,6 +148,11 @@ declare type IdvModuleProps<TModuleProps, TModulesConfig> = {
|
|
|
146
148
|
nonce?: string;
|
|
147
149
|
};
|
|
148
150
|
|
|
151
|
+
export declare enum ModuleType {
|
|
152
|
+
BarcodeMRZ = "BarcodeMRZ",
|
|
153
|
+
BoundsLite = "BoundsLite"
|
|
154
|
+
}
|
|
155
|
+
|
|
149
156
|
declare type PerformType = (typeof performType)[keyof typeof performType] | undefined;
|
|
150
157
|
|
|
151
158
|
declare const performType: {
|