@regulaforensics/idv-face 3.6.345-nightly → 3.6.347-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 +0 -27
- package/dist/main.iife.js +118 -117
- package/dist/main.js +15533 -12001
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -54,9 +54,6 @@ declare type FaceModuleProps = {
|
|
|
54
54
|
onboardingScreenTitleLabelFontSize?: number;
|
|
55
55
|
onboardingScreenSubtitleLabelFontSize: number;
|
|
56
56
|
onboardingScreenMessageLabelsFontSize?: number;
|
|
57
|
-
onboardingScreenIllumination: IdvAsset;
|
|
58
|
-
onboardingScreenAccessories: IdvAsset;
|
|
59
|
-
onboardingScreenCameraLevel: IdvAsset;
|
|
60
57
|
cameraScreenStrokeNormalColor?: string;
|
|
61
58
|
cameraScreenSectorTargetColor?: string;
|
|
62
59
|
cameraScreenStrokeActiveColor?: string;
|
|
@@ -76,15 +73,11 @@ declare type FaceModuleProps = {
|
|
|
76
73
|
retryScreenTitleLabelFontSize?: number;
|
|
77
74
|
retryScreenSubtitleLabelFontSize?: number;
|
|
78
75
|
retryScreenHintLabelsFontSize?: number;
|
|
79
|
-
retryScreenHintSubject: IdvAsset;
|
|
80
|
-
retryScreenHintEnvironment: IdvAsset;
|
|
81
|
-
retryScreenHintGeo: IdvAsset;
|
|
82
76
|
processingScreenBackgroundColor?: string;
|
|
83
77
|
processingScreenProgressColor?: string;
|
|
84
78
|
processingScreenTitleColor?: string;
|
|
85
79
|
processingScreenFontSize?: number;
|
|
86
80
|
successScreenBackgroundColor?: string;
|
|
87
|
-
successScreenImage: IdvAsset;
|
|
88
81
|
infoScreenBackgroundColor?: string;
|
|
89
82
|
infoScreenTitleTextColor: string;
|
|
90
83
|
infoScreenTitleTextFontSize?: number;
|
|
@@ -107,7 +100,6 @@ declare type FaceModuleProps = {
|
|
|
107
100
|
serviceToken?: string;
|
|
108
101
|
stepType?: string;
|
|
109
102
|
failedAssets?: FailedAssets;
|
|
110
|
-
preloadAssetsRequired?: boolean;
|
|
111
103
|
};
|
|
112
104
|
|
|
113
105
|
declare type FailedAssets = {
|
|
@@ -116,10 +108,6 @@ declare type FailedAssets = {
|
|
|
116
108
|
blockingAssets: Set<string>;
|
|
117
109
|
};
|
|
118
110
|
|
|
119
|
-
declare type IdvAsset = {
|
|
120
|
-
idvAsset: ImageLike;
|
|
121
|
-
};
|
|
122
|
-
|
|
123
111
|
declare type IdvModuleProps<TModuleProps, TModulesConfig> = {
|
|
124
112
|
isProcessing?: (isProcessing: boolean) => void;
|
|
125
113
|
moduleProps: TModuleProps;
|
|
@@ -129,21 +117,6 @@ declare type IdvModuleProps<TModuleProps, TModulesConfig> = {
|
|
|
129
117
|
nonce?: string;
|
|
130
118
|
};
|
|
131
119
|
|
|
132
|
-
declare type ImageBase = {
|
|
133
|
-
imageURL?: string;
|
|
134
|
-
imageId?: string;
|
|
135
|
-
base64?: string;
|
|
136
|
-
prepareRequired?: boolean;
|
|
137
|
-
failurePolicy?: ImageFailurePolicy;
|
|
138
|
-
timeout?: number;
|
|
139
|
-
};
|
|
140
|
-
|
|
141
|
-
declare type ImageFailurePolicy = 'ignore' | 'placeholderImage' | 'error';
|
|
142
|
-
|
|
143
|
-
declare type ImageLike = ImageBase & {
|
|
144
|
-
placeholderImage?: ImageLike;
|
|
145
|
-
};
|
|
146
|
-
|
|
147
120
|
declare type PerformType = (typeof PerformTypes)[keyof typeof PerformTypes] | undefined;
|
|
148
121
|
|
|
149
122
|
declare const PerformTypes: {
|