idmission-web-sdk 1.0.341 → 1.0.343
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/face_liveness/FaceLivenessCapture.d.ts +3 -1
- package/dist/components/fallback_flows/SelfieCapture.d.ts +3 -1
- package/dist/sdk2.cjs.development.js +979 -993
- 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 +979 -993
- package/dist/sdk2.esm.js.map +1 -1
- package/dist/sdk2.umd.development.js +979 -993
- 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/stories/CustomerFlows/VideoIdValidation.stories.d.ts +1 -1
- package/dist/version.d.ts +1 -1
- package/package.json +1 -1
|
@@ -2,6 +2,7 @@ import { ReactElement } from 'react';
|
|
|
2
2
|
import { SelfieCaptureClassNames, SelfieCaptureColors, SelfieCaptureVerbiage } from '../selfie_capture/SelfieCapture';
|
|
3
3
|
import { SelfieProgressPreviewClassNames } from '../common/SelfieProgressPreview';
|
|
4
4
|
import { CustomerSuppliedVerbiage } from '../../lib/locales';
|
|
5
|
+
import { SelfieCaptureLoadingOverlayProps } from "../selfie_capture/SelfieCaptureLoadingOverlay";
|
|
5
6
|
export type FaceLivenessCaptureClassNames = SelfieCaptureClassNames & {
|
|
6
7
|
imagePreview?: SelfieProgressPreviewClassNames;
|
|
7
8
|
};
|
|
@@ -23,5 +24,6 @@ export type FaceLivenessCaptureProps = {
|
|
|
23
24
|
colors?: FaceLivenessCaptureColors;
|
|
24
25
|
verbiage?: FaceLivenessCaptureVerbiage;
|
|
25
26
|
debugMode?: boolean;
|
|
27
|
+
selfieCaptureLoadingOverlayProps?: SelfieCaptureLoadingOverlayProps;
|
|
26
28
|
};
|
|
27
|
-
export declare const FaceLivenessCapture: ({ onCapture, onSuccess, onTimeout, onExit, timeoutDurationMs, silentFallback, classNames, colors, verbiage: rawVerbiage, debugMode, }: FaceLivenessCaptureProps) => ReactElement;
|
|
29
|
+
export declare const FaceLivenessCapture: ({ onCapture, onSuccess, onTimeout, onExit, timeoutDurationMs, silentFallback, classNames, colors, verbiage: rawVerbiage, debugMode, selfieCaptureLoadingOverlayProps, }: FaceLivenessCaptureProps) => ReactElement;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ReactElement } from 'react';
|
|
2
2
|
import { CustomerSuppliedVerbiage } from '../../lib/locales';
|
|
3
3
|
import { LoaderButtonColors } from '../common/LoaderButton';
|
|
4
|
+
import { SelfieCaptureLoadingOverlayProps } from "../selfie_capture/SelfieCaptureLoadingOverlay";
|
|
4
5
|
export type SelfieCaptureFallbackClassNames = {
|
|
5
6
|
container?: string;
|
|
6
7
|
inner?: string;
|
|
@@ -30,5 +31,6 @@ export type SelfieCaptureFallbackProps = {
|
|
|
30
31
|
colors?: SelfieCaptureFallbackColors;
|
|
31
32
|
verbiage?: SelfieCaptureFallbackVerbiage;
|
|
32
33
|
silentFallback?: boolean;
|
|
34
|
+
selfieCaptureLoadingOverlayProps?: SelfieCaptureLoadingOverlayProps;
|
|
33
35
|
};
|
|
34
|
-
export declare const SelfieCaptureFallback: ({ onFinished, onCapture, classNames, colors, verbiage: rawVerbiage, silentFallback, }: SelfieCaptureFallbackProps) => ReactElement;
|
|
36
|
+
export declare const SelfieCaptureFallback: ({ onFinished, onCapture, classNames, colors, verbiage: rawVerbiage, silentFallback, selfieCaptureLoadingOverlayProps: overlayProps }: SelfieCaptureFallbackProps) => ReactElement;
|