@regulaforensics/idv-document 3.3.305-rc → 3.4.309-nightly
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 +1 -8
- package/dist/main.iife.js +27 -27
- package/dist/main.js +102 -105
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
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';
|
|
5
4
|
import { TemplateResult } from 'lit-html';
|
|
6
5
|
|
|
7
6
|
declare abstract class BaseModule<TModuleProps = unknown, TModulesConfig = unknown> extends HTMLElement {
|
|
@@ -52,8 +51,7 @@ declare type DocumentModuleProps = DocumentGalleryProps | DocumentReaderProps;
|
|
|
52
51
|
|
|
53
52
|
declare type DocumentModulesConfig = {
|
|
54
53
|
docreader: {
|
|
55
|
-
devLicense
|
|
56
|
-
module?: ModuleType_2;
|
|
54
|
+
devLicense: string;
|
|
57
55
|
};
|
|
58
56
|
};
|
|
59
57
|
|
|
@@ -151,11 +149,6 @@ declare type IdvModuleProps<TModuleProps, TModulesConfig> = {
|
|
|
151
149
|
nonce?: string;
|
|
152
150
|
};
|
|
153
151
|
|
|
154
|
-
export declare enum ModuleType {
|
|
155
|
-
BarcodeMRZ = "BarcodeMRZ",
|
|
156
|
-
BoundsLite = "BoundsLite"
|
|
157
|
-
}
|
|
158
|
-
|
|
159
152
|
declare type PerformType = (typeof PerformTypes)[keyof typeof PerformTypes] | undefined;
|
|
160
153
|
|
|
161
154
|
declare const PerformTypes: {
|