@regulaforensics/idv-document 3.2.282-rc → 3.2.284-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 +4 -10
- package/dist/main.iife.js +40 -40
- package/dist/main.js +5269 -5258
- 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 {
|
|
@@ -51,8 +50,7 @@ declare type DocumentModuleProps = DocumentGalleryProps | DocumentReaderProps;
|
|
|
51
50
|
|
|
52
51
|
declare type DocumentModulesConfig = {
|
|
53
52
|
docreader: {
|
|
54
|
-
devLicense
|
|
55
|
-
module?: ModuleType_2;
|
|
53
|
+
devLicense: string;
|
|
56
54
|
};
|
|
57
55
|
};
|
|
58
56
|
|
|
@@ -137,6 +135,7 @@ declare type DocumentReaderProps = {
|
|
|
137
135
|
serviceToken?: string;
|
|
138
136
|
locale?: string;
|
|
139
137
|
backgroundColor?: string;
|
|
138
|
+
stepType?: string;
|
|
140
139
|
};
|
|
141
140
|
|
|
142
141
|
declare type IdvModuleProps<TModuleProps, TModulesConfig> = {
|
|
@@ -148,14 +147,9 @@ declare type IdvModuleProps<TModuleProps, TModulesConfig> = {
|
|
|
148
147
|
nonce?: string;
|
|
149
148
|
};
|
|
150
149
|
|
|
151
|
-
|
|
152
|
-
BarcodeMRZ = "BarcodeMRZ",
|
|
153
|
-
BoundsLite = "BoundsLite"
|
|
154
|
-
}
|
|
155
|
-
|
|
156
|
-
declare type PerformType = (typeof performType)[keyof typeof performType] | undefined;
|
|
150
|
+
declare type PerformType = (typeof PerformTypes)[keyof typeof PerformTypes] | undefined;
|
|
157
151
|
|
|
158
|
-
declare const
|
|
152
|
+
declare const PerformTypes: {
|
|
159
153
|
readonly FORM: "form";
|
|
160
154
|
readonly DATA: "data";
|
|
161
155
|
};
|