idmission-web-sdk 1.0.302 → 1.0.304
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/components/video_id/IdVideoCapture.d.ts +2 -0
- package/dist/components/video_id/IdVideoCaptureSuccess.d.ts +5 -1
- package/dist/sdk2.cjs.development.js +188 -130
- package/dist/sdk2.cjs.development.js.map +1 -1
- package/dist/sdk2.cjs.production.js +1 -1
- package/dist/sdk2.cjs.production.js.map +1 -1
- package/dist/sdk2.esm.js +188 -130
- package/dist/sdk2.esm.js.map +1 -1
- package/dist/sdk2.umd.development.js +188 -130
- package/dist/sdk2.umd.development.js.map +1 -1
- package/dist/sdk2.umd.production.js +1 -1
- package/dist/sdk2.umd.production.js.map +1 -1
- package/dist/version.d.ts +1 -1
- package/package.json +1 -1
|
@@ -11,6 +11,7 @@ export type IdVideoCaptureClassNames = {
|
|
|
11
11
|
container?: string;
|
|
12
12
|
cameraFeed?: string;
|
|
13
13
|
readTextPrompt?: ReadTextPromptClassNames;
|
|
14
|
+
captureBtn?: string;
|
|
14
15
|
};
|
|
15
16
|
export type IdVideoCaptureColors = {
|
|
16
17
|
guidesSatisfiedColor?: string;
|
|
@@ -21,6 +22,7 @@ export type IdVideoCaptureVerbiage = {
|
|
|
21
22
|
guides?: IdVideoCaptureGuidesVerbiage;
|
|
22
23
|
readTextPrompt?: ReadTextPromptVerbiage;
|
|
23
24
|
faceNotCenteredText?: CustomerSuppliedVerbiage;
|
|
25
|
+
captureBtnText?: CustomerSuppliedVerbiage;
|
|
24
26
|
};
|
|
25
27
|
export type IdVideoCaptureProps = {
|
|
26
28
|
onComplete?: (videoUrl: string) => void;
|
|
@@ -5,6 +5,8 @@ export type IdVideoCaptureSuccessClassNames = {
|
|
|
5
5
|
container?: string;
|
|
6
6
|
inner?: string;
|
|
7
7
|
heading?: string;
|
|
8
|
+
assetSelectorOptions?: string;
|
|
9
|
+
assetSelectorOption?: string;
|
|
8
10
|
videoContainer?: string;
|
|
9
11
|
video?: string;
|
|
10
12
|
buttonsRow?: string;
|
|
@@ -22,10 +24,12 @@ export type IdVideoCaptureSuccessVerbiage = {
|
|
|
22
24
|
};
|
|
23
25
|
export type IdVideoCaptureSuccessProps = {
|
|
24
26
|
videoUrl: string;
|
|
27
|
+
idFrontImageUrl: string;
|
|
28
|
+
idBackImageUrl?: string;
|
|
25
29
|
onDoneClick?: () => void;
|
|
26
30
|
onRetryClick?: () => void;
|
|
27
31
|
classNames?: IdVideoCaptureSuccessClassNames;
|
|
28
32
|
colors?: IdVideoCaptureSuccessColors;
|
|
29
33
|
verbiage?: IdVideoCaptureSuccessVerbiage;
|
|
30
34
|
};
|
|
31
|
-
export declare const IdVideoCaptureSuccess: ({ videoUrl, onDoneClick, onRetryClick, classNames, colors, verbiage: rawVerbiage, }: IdVideoCaptureSuccessProps) => ReactElement;
|
|
35
|
+
export declare const IdVideoCaptureSuccess: ({ videoUrl, idFrontImageUrl, idBackImageUrl, onDoneClick, onRetryClick, classNames, colors, verbiage: rawVerbiage, }: IdVideoCaptureSuccessProps) => ReactElement;
|