@regulaforensics/idv-face 3.2.285-nightly → 3.2.287-rc
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 +47 -35
- package/dist/main.iife.js +198 -67
- package/dist/main.js +7714 -7606
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -39,41 +39,54 @@ declare type FaceModuleProps = {
|
|
|
39
39
|
metadata?: Record<string, unknown>;
|
|
40
40
|
};
|
|
41
41
|
customization?: {
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
onboardingScreenIllumination?: string;
|
|
45
|
-
onboardingScreenAccessories?: string;
|
|
46
|
-
onboardingScreenCameraLevel?: string;
|
|
47
|
-
cameraScreenFrontHintLabelText?: string;
|
|
48
|
-
cameraScreenFrontHintLabelBackground?: string;
|
|
49
|
-
cameraScreenStrokeNormal?: string;
|
|
50
|
-
cameraScreenSectorTarget?: string;
|
|
51
|
-
cameraScreenSectorActive?: string;
|
|
52
|
-
processingScreenProgress?: string;
|
|
53
|
-
successScreenImage?: string;
|
|
54
|
-
retryScreenRetryButtonTitle?: string;
|
|
55
|
-
retryScreenRetryButtonBackground?: string;
|
|
56
|
-
retryScreenHintSubject?: string;
|
|
57
|
-
retryScreenHintEnvironment?: string;
|
|
58
|
-
onboardingScreenStartButton?: string;
|
|
59
|
-
onboardingScreenTitleLabelText?: string;
|
|
60
|
-
onboardingScreenTitleLabel?: string;
|
|
61
|
-
onboardingScreenSubtitleLabelText?: string;
|
|
62
|
-
onboardingScreenSubtitleLabel?: string;
|
|
63
|
-
cameraScreenHintLabel?: string;
|
|
64
|
-
retryScreenTitleLabelText?: string;
|
|
65
|
-
retryScreenTitleLabel?: string;
|
|
66
|
-
retryScreenSubtitleLabelText?: string;
|
|
67
|
-
retryScreenSubtitleLabel?: string;
|
|
68
|
-
retryScreenHintLabelsText?: string;
|
|
69
|
-
retryScreenHintLabels?: string;
|
|
70
|
-
retryScreenRetryButton?: string;
|
|
71
|
-
fontSize?: string;
|
|
72
|
-
fontFamily?: string;
|
|
42
|
+
onboardingScreenBackgroundColor?: string;
|
|
43
|
+
onboardingScreenStartButtonBackgroundColor?: string;
|
|
73
44
|
onboardingScreenStartButtonBackgroundHover?: string;
|
|
45
|
+
onboardingScreenStartButtonTitleColor?: string;
|
|
46
|
+
onboardingScreenTitleLabelTextColor?: string;
|
|
74
47
|
onboardingScreenStartButtonTitleHover?: string;
|
|
75
|
-
|
|
48
|
+
onboardingScreenSubtitleLabelTextColor?: string;
|
|
49
|
+
onboardingScreenMessageLabelsTextColor?: string;
|
|
50
|
+
onboardingScreenStartButtonFontSize?: number;
|
|
51
|
+
onboardingScreenTitleLabelFontSize?: number;
|
|
52
|
+
onboardingScreenSubtitleLabelFontSize: number;
|
|
53
|
+
onboardingScreenMessageLabelsFontSize?: number;
|
|
54
|
+
cameraScreenStrokeNormalColor?: string;
|
|
55
|
+
cameraScreenSectorTargetColor?: string;
|
|
56
|
+
cameraScreenStrokeActiveColor?: string;
|
|
57
|
+
cameraScreenSectorActiveColor?: string;
|
|
58
|
+
cameraScreenFrontHintLabelBackgroundColor?: string;
|
|
59
|
+
cameraScreenFrontHintLabelTextColor?: string;
|
|
60
|
+
cameraScreenHintLabelFontSize?: number;
|
|
61
|
+
retryScreenBackgroundColor?: string;
|
|
62
|
+
retryScreenRetryButtonBackgroundColor?: string;
|
|
76
63
|
retryScreenRetryButtonBackgroundHover?: string;
|
|
64
|
+
retryScreenRetryButtonTitleColor?: string;
|
|
65
|
+
retryScreenTitleLabelTextColor?: string;
|
|
66
|
+
retryScreenSubtitleLabelTextColor?: string;
|
|
67
|
+
retryScreenRetryButtonTitleHover?: string;
|
|
68
|
+
retryScreenHintLabelsTextColor?: string;
|
|
69
|
+
retryScreenRetryButtonFontSize?: number;
|
|
70
|
+
retryScreenTitleLabelFontSize?: number;
|
|
71
|
+
retryScreenSubtitleLabelFontSize?: number;
|
|
72
|
+
retryScreenHintLabelsFontSize?: number;
|
|
73
|
+
processingScreenBackgroundColor?: string;
|
|
74
|
+
processingScreenProgressColor?: string;
|
|
75
|
+
processingScreenTitleColor?: string;
|
|
76
|
+
processingScreenFontSize?: number;
|
|
77
|
+
successScreenBackgroundColor?: string;
|
|
78
|
+
infoScreenBackgroundColor?: string;
|
|
79
|
+
infoScreenTitleTextColor: string;
|
|
80
|
+
infoScreenTitleTextFontSize?: number;
|
|
81
|
+
infoScreenSubtitleTextColor?: string;
|
|
82
|
+
infoScreenSubtitleTextFontSize?: number;
|
|
83
|
+
infoScreenRetryButtonFontSize?: number;
|
|
84
|
+
infoScreenRetryButtonBackgroundColor?: string;
|
|
85
|
+
infoScreenRetryButtonTitleColor?: string;
|
|
86
|
+
infoScreenRetryButtonTitleHover?: string;
|
|
87
|
+
infoScreenRetryButtonBackgroundHover?: string;
|
|
88
|
+
infoScreenErrorCodeColor?: string;
|
|
89
|
+
infoScreenErrorCodeTextFontSize?: number;
|
|
77
90
|
};
|
|
78
91
|
copyright: boolean;
|
|
79
92
|
serviceURL?: string;
|
|
@@ -82,7 +95,6 @@ declare type FaceModuleProps = {
|
|
|
82
95
|
templateId: string;
|
|
83
96
|
sessionId?: string;
|
|
84
97
|
serviceToken?: string;
|
|
85
|
-
stepType?: string;
|
|
86
98
|
};
|
|
87
99
|
|
|
88
100
|
declare type IdvModuleProps<TModuleProps, TModulesConfig> = {
|
|
@@ -94,9 +106,9 @@ declare type IdvModuleProps<TModuleProps, TModulesConfig> = {
|
|
|
94
106
|
nonce?: string;
|
|
95
107
|
};
|
|
96
108
|
|
|
97
|
-
declare type PerformType = (typeof
|
|
109
|
+
declare type PerformType = (typeof performType)[keyof typeof performType] | undefined;
|
|
98
110
|
|
|
99
|
-
declare const
|
|
111
|
+
declare const performType: {
|
|
100
112
|
readonly FORM: "form";
|
|
101
113
|
readonly DATA: "data";
|
|
102
114
|
};
|